commit ac11d9475fee30c0707523ede564a336c9dcacba Author: Toshaan Bharvani Date: Mon Jul 11 00:09:12 2022 +0200 initial package creation Signed-off-by: Toshaan Bharvani diff --git a/SOURCES/generate-fmtutilcnf b/SOURCES/generate-fmtutilcnf new file mode 100755 index 0000000..88b7d70 --- /dev/null +++ b/SOURCES/generate-fmtutilcnf @@ -0,0 +1,22 @@ +#!/bin/bash + +# Regenerate the fmtutil.cnf file from the pieces which are currently present +# in the fmtutil.cnf.d directory. + +# Abort immediately if any command fails +set -o errexit +shopt -s nullglob + +texdir=$1 +[[ -z $texdir ]] && texdir=/usr/share/texlive +web2cdir=$texdir/texmf-dist/web2c + +rm -f $web2cdir/fmtutil.cnf.rpmtmp + +echo "# Generated by $0 on $(date)" > $web2cdir/fmtutil.cnf.rpmtmp + +cat $web2cdir/fmtutil-hdr.cnf \ + $texdir/fmtutil.cnf.d/* \ + >> $web2cdir/fmtutil.cnf.rpmtmp + +mv $web2cdir/fmtutil.cnf.rpmtmp $web2cdir/fmtutil.cnf diff --git a/SOURCES/macros.texlive b/SOURCES/macros.texlive new file mode 100644 index 0000000..2aa1342 --- /dev/null +++ b/SOURCES/macros.texlive @@ -0,0 +1,26 @@ +# macros to keep trees in texlive consistent +%_texmf /usr/share/texlive/texmf-local +%_texmf_main /usr/share/texlive/texmf-dist +%_texmf_vendor /usr/share/texlive/texmf-dist +%_texmf_var /var/lib/texmf +%_texmf_conf /usr/share/texlive/texmf-config + +%texlive_post \ +mkdir -p /var/run/texlive \ +touch /var/run/texlive/run-texhash \ +touch /var/run/texlive/run-mtxrun \ +: + +%texlive_postun \ +if [ $1 == 1 ]; then \ + mkdir -p /var/run/texlive \ + touch /var/run/run-texhash \ +else \ + %{_bindir}/texhash 2> /dev/null \ +fi \ +: + +%texlive_posttrans \ +if [ -e /var/run/texlive/run-texhash ] && [ -e %{_bindir}/texhash ]; then %{_bindir}/texhash 2> /dev/null; rm -f /var/run/texlive/run-texhash; fi \ +if [ -e /var/run/texlive/run-mtxrun ]; then export TEXMF=/usr/share/texlive/texmf-dist; export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; export TEXMFCACHE=/var/lib/texmf; %{_bindir}/mtxrun --generate &> /dev/null; rm -f /var/run/texlive/run-mtxrun; fi \ +: diff --git a/SOURCES/texlive-2016-kpathsea-texlive-path.patch b/SOURCES/texlive-2016-kpathsea-texlive-path.patch new file mode 100644 index 0000000..7b32fb2 --- /dev/null +++ b/SOURCES/texlive-2016-kpathsea-texlive-path.patch @@ -0,0 +1,40 @@ +diff -up source/texk/kpathsea/texmf.cnf.fixme source/texk/kpathsea/texmf.cnf +--- source/texk/kpathsea/texmf.cnf.fixme 2016-10-19 15:35:25.804218872 -0400 ++++ source/texk/kpathsea/texmf.cnf 2016-10-19 15:37:19.308035612 -0400 +@@ -491,17 +491,17 @@ RUBYINPUTS = .;$TEXMF/scripts/{$progna + % + TEXMFCNF = {\ + $SELFAUTOLOC,\ +-$SELFAUTOLOC/share/texmf-local/web2c,\ +-$SELFAUTOLOC/share/texmf-dist/web2c,\ +-$SELFAUTOLOC/share/texmf/web2c,\ ++$SELFAUTOLOC/share/texlive/texmf-local/web2c,\ ++$SELFAUTOLOC/share/texlive/texmf-dist/web2c,\ ++$SELFAUTOLOC/share/texlive/texmf/web2c,\ + $SELFAUTOLOC/texmf-local/web2c,\ + $SELFAUTOLOC/texmf-dist/web2c,\ + $SELFAUTOLOC/texmf/web2c,\ + \ + $SELFAUTODIR,\ +-$SELFAUTODIR/share/texmf-local/web2c,\ +-$SELFAUTODIR/share/texmf-dist/web2c,\ +-$SELFAUTODIR/share/texmf/web2c,\ ++$SELFAUTODIR/share/texlive/texmf-local/web2c,\ ++$SELFAUTODIR/share/texlive/texmf-dist/web2c,\ ++$SELFAUTODIR/share/texlive/texmf/web2c,\ + $SELFAUTODIR/texmf-local/web2c,\ + $SELFAUTODIR/texmf-dist/web2c,\ + $SELFAUTODIR/texmf/web2c,\ +@@ -509,9 +509,9 @@ $SELFAUTODIR/texmf/web2c,\ + $SELFAUTOGRANDPARENT/texmf-local/web2c,\ + $SELFAUTOPARENT,\ + \ +-$SELFAUTOPARENT/share/texmf-local/web2c,\ +-$SELFAUTOPARENT/share/texmf-dist/web2c,\ +-$SELFAUTOPARENT/share/texmf/web2c,\ ++$SELFAUTOPARENT/share/texlive/texmf-local/web2c,\ ++$SELFAUTOPARENT/share/texlive/texmf-dist/web2c,\ ++$SELFAUTOPARENT/share/texlive/texmf/web2c,\ + $SELFAUTOPARENT/texmf-local/web2c,\ + $SELFAUTOPARENT/texmf-dist/web2c,\ + $SELFAUTOPARENT/texmf/web2c\ diff --git a/SOURCES/texlive-20180414-annocheck.patch b/SOURCES/texlive-20180414-annocheck.patch new file mode 100644 index 0000000..7804a29 --- /dev/null +++ b/SOURCES/texlive-20180414-annocheck.patch @@ -0,0 +1,11 @@ +--- texlive-20180414/source/libs/luajit/Makefile.in.annocheck 2018-01-10 01:37:05.000000000 +0100 ++++ texlive-20180414/source/libs/luajit/Makefile.in 2019-01-11 22:45:34.503080977 +0100 +@@ -680,7 +680,7 @@ + NEVER_NAMES_LT = -o -name .libs -o -name '*.lo' + AM_CPPFLAGS = -I$(srcdir)/$(LUAJIT_TREE)/src $(LUAJIT_DEFINES) -U_FORTIFY_SOURCE + AM_CFLAGS = $(LUAJIT_CFLAGS) $(LUAJIT_HAS_NOT_LOG2) -Wall +-AM_CCASFLAGS = $(LUAJIT_CFLAGS) $(LUAJIT_HAS_NOT_LOG2) ++AM_CCASFLAGS = $(LUAJIT_CFLAGS) $(LUAJIT_HAS_NOT_LOG2) -Wa,--generate-missing-build-notes=yes + SUBDIRS = . native include + lib_LTLIBRARIES = libtexluajit.la + libtexluajit_la_LDFLAGS = -bindir @bindir@ -no-undefined -version-info $(LUAJIT_LT_VERSINFO) $(LIBLUAJIT_LDEXTRA) diff --git a/SOURCES/texlive-20190410-dvisvgm-fix-libgs-detection.patch b/SOURCES/texlive-20190410-dvisvgm-fix-libgs-detection.patch new file mode 100644 index 0000000..d797831 --- /dev/null +++ b/SOURCES/texlive-20190410-dvisvgm-fix-libgs-detection.patch @@ -0,0 +1,25 @@ +diff -up texlive-base-20190410/source/texk/dvisvgm/configure.ac.fix-libgs-detection texlive-base-20190410/source/texk/dvisvgm/configure.ac +--- texlive-base-20190410/source/texk/dvisvgm/configure.ac.fix-libgs-detection 2019-03-10 14:21:29.000000000 -0400 ++++ texlive-base-20190410/source/texk/dvisvgm/configure.ac 2019-05-23 19:07:30.447057345 -0400 +@@ -66,7 +66,8 @@ AS_IF([test "x$have_libgs" = "xno"], + # Ghostscript not found, check for dlopen + [AC_CHECK_LIB(dl, dlopen,, + [AC_DEFINE(DISABLE_GS, 1, [Set to 1 if PostScript support should be disabled])] +- [AC_MSG_WARN(PostScript support disabled)])]) ++ [AC_MSG_WARN(PostScript support disabled)])], ++ [test "x$have_libgs" = "xyes"], [HAVE_LIBGS=1]) + fi + + if test -z "$HAVE_LIBGS" || test "$HAVE_LIBGS" -eq 0; then +diff -up texlive-base-20190410/source/texk/dvisvgm/configure.fix-libgs-detection texlive-base-20190410/source/texk/dvisvgm/configure +--- texlive-base-20190410/source/texk/dvisvgm/configure.fix-libgs-detection 2019-05-23 19:07:45.568703333 -0400 ++++ texlive-base-20190410/source/texk/dvisvgm/configure 2019-05-23 19:09:31.341219687 -0400 +@@ -22013,6 +22013,8 @@ $as_echo "#define DISABLE_GS 1" >>confde + $as_echo "$as_me: WARNING: PostScript support disabled" >&2;} + fi + ++elif test "x$have_libgs" = "xyes"; then : ++ HAVE_LIBGS=1 + fi + fi + diff --git a/SOURCES/texlive-20190410-tlmgr-ignore-warning.patch b/SOURCES/texlive-20190410-tlmgr-ignore-warning.patch new file mode 100644 index 0000000..34636dd --- /dev/null +++ b/SOURCES/texlive-20190410-tlmgr-ignore-warning.patch @@ -0,0 +1,79 @@ +diff -up ./scripts/texlive/tlmgr.pl.ignore-warning ./scripts/texlive/tlmgr.pl +--- ./scripts/texlive/tlmgr.pl.ignore-warning 2019-05-24 21:35:57.384845754 -0400 ++++ ./scripts/texlive/tlmgr.pl 2019-05-24 21:39:32.703577109 -0400 +@@ -231,6 +231,7 @@ my %action_specification = ( + "dry-run|n" => 1, + "file" => 1, + "force" => 1, ++ "ignore-warning" => 1, + "no-depends" => 1, + "no-depends-at-all" => 1, + "reinstall" => 1, +@@ -331,6 +332,7 @@ my %action_specification = ( + "dry-run|n" => 1, + "exclude" => "=s@", + "force" => 1, ++ "ignore-warning" => 1, + "list" => 1, + "no-auto-install" => 1, + "no-auto-remove" => 1, +@@ -2613,6 +2615,15 @@ sub upd_info { + } + + sub action_update { ++ if (!($opts{"ignore-warning"})) { ++ print("*** WARNING ***: Performing this action will likely destroy the Fedora TeXLive install on your system.\n"); ++ print("*** WARNING ***: This is almost NEVER what you want to do.\n"); ++ print("*** WARNING ***: Try using dnf install/update instead.\n"); ++ print("*** WARNING ***: If performing this action is really what you want to do, pass the \"ignore-warning\" option.\n"); ++ print("*** WARNING ***: But please do not file any bugs with the OS Vendor.\n"); ++ exit; ++ } ++ + init_local_db(1); + $opts{"no-depends"} = 1 if $opts{"no-depends-at-all"}; + +@@ -3618,6 +3629,15 @@ sub check_announce_format_triggers { + # anymore! That has all to be done by the caller. + # + sub action_install { ++ if (!($opts{"ignore-warning"})) { ++ print("*** WARNING ***: Performing this action will likely destroy the Fedora TeXLive install on your system.\n"); ++ print("*** WARNING ***: This is almost NEVER what you want to do.\n"); ++ print("*** WARNING ***: Try using dnf install/update instead.\n"); ++ print("*** WARNING ***: If performing this action is really what you want to do, pass the \"ignore-warning\" option.\n"); ++ print("*** WARNING ***: But please do not file any bugs with the OS Vendor.\n"); ++ exit; ++ } ++ + init_local_db(1); + my $ret = $F_OK; + return ($F_ERROR) if !check_on_writable(); +@@ -8151,6 +8171,13 @@ If updates to C itself (or other + infrastructure) are present, C will bail out and not perform the + installation unless this option is given. Not recommended. + ++=item B<--ignore-warning> ++ ++The tlmgr tool can really ruin a Fedora install of TeXLive. ++We have added a warning check here to try to keep you from ++blindly following a tutorial and doing this. If you still want to ++proceed, just use this option. ++ + =item B<--no-depends> + + Do not install dependencies. (By default, installing a package ensures +@@ -8846,6 +8873,13 @@ In short: + Nothing is actually installed; instead, the actions to be performed are + written to the terminal. This is a more detailed report than C<--list>. + ++=item B<--ignore-warning> ++ ++The tlmgr tool can really ruin a Fedora install of TeXLive. ++We have added a warning check here to try to keep you from ++blindly following a tutorial and doing this. If you still want to ++proceed, just use this option. ++ + =item B<--list> [I] + + Concisely list the packages which would be updated, newly installed, or diff --git a/SOURCES/texlive-20200327-disable-more-failing-tests.patch b/SOURCES/texlive-20200327-disable-more-failing-tests.patch new file mode 100644 index 0000000..8c277e2 --- /dev/null +++ b/SOURCES/texlive-20200327-disable-more-failing-tests.patch @@ -0,0 +1,142 @@ +diff -up texlive-base-20200327/source/texk/web2c/am/texmf.am.dt texlive-base-20200327/source/texk/web2c/am/texmf.am +--- texlive-base-20200327/source/texk/web2c/am/texmf.am.dt 2019-12-17 14:24:59.000000000 -0500 ++++ texlive-base-20200327/source/texk/web2c/am/texmf.am 2020-04-20 14:33:43.465656684 -0400 +@@ -75,7 +75,7 @@ DISTCLEANFILES += $(nodist_tex_SOURCES) + + # TeX tests + # +-tex_tests = triptest.test tests/write18-quote-test.pl tests/tex-closeout.test ++tex_tests = tests/write18-quote-test.pl tests/tex-closeout.test + triptest.log: tex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + tests/write18-quote-test.log tests/tex-closeout.test: tex$(EXEEXT) + EXTRA_DIST += $(tex_tests) +@@ -203,7 +203,7 @@ DISTCLEANFILES += $(nodist_libmf_a_SOURC + + # Metafont tests + # +-mf_tests = mftraptest.test ++mf_tests = + mftraptest.log: mf$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mf_tests) + if MF +diff -up texlive-base-20200327/source/texk/web2c/eptexdir/am/eptex.am.dt texlive-base-20200327/source/texk/web2c/eptexdir/am/eptex.am +--- texlive-base-20200327/source/texk/web2c/eptexdir/am/eptex.am.dt 2020-04-20 14:32:46.325851485 -0400 ++++ texlive-base-20200327/source/texk/web2c/eptexdir/am/eptex.am 2020-04-20 14:34:20.015892398 -0400 +@@ -83,7 +83,7 @@ EXTRA_DIST += \ + + # e-pTeX Tests + # +-eptex_tests = eptexdir/eptriptest.test eptexdir/pdfprimitive.test eptexdir/epver.test ++eptex_tests = eptexdir/epver.test + eptexdir/eptriptest.log: eptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + eptexdir/pdfprimitive.log: eptex$(EXEEXT) + eptexdir/epver.log: eptex$(EXEEXT) +diff -up texlive-base-20200327/source/texk/web2c/euptexdir/am/euptex.am.dt texlive-base-20200327/source/texk/web2c/euptexdir/am/euptex.am +--- texlive-base-20200327/source/texk/web2c/euptexdir/am/euptex.am.dt 2020-04-20 14:32:46.326851464 -0400 ++++ texlive-base-20200327/source/texk/web2c/euptexdir/am/euptex.am 2020-04-20 14:34:55.625147806 -0400 +@@ -84,7 +84,7 @@ EXTRA_DIST += \ + + # e-upTeX Tests + # +-euptex_tests = euptexdir/euptriptest.test euptexdir/pdfprimitive.test euptexdir/eupver.test ++euptex_tests = euptexdir/eupver.test + euptexdir/euptriptest.log: euptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + euptexdir/pdfprimitive.log: euptex$(EXEEXT) + euptexdir/eupver.log: euptex$(EXEEXT) +diff -up texlive-base-20200327/source/texk/web2c/mfluadir/am/mflua.am.dt texlive-base-20200327/source/texk/web2c/mfluadir/am/mflua.am +--- texlive-base-20200327/source/texk/web2c/mfluadir/am/mflua.am.dt 2017-04-16 06:11:22.000000000 -0400 ++++ texlive-base-20200327/source/texk/web2c/mfluadir/am/mflua.am 2020-04-20 14:32:46.326851464 -0400 +@@ -110,7 +110,7 @@ EXTRA_DIST += \ + + # MFLua tests + # +-mflua_tests = mfluadir/mfluatraptest.test ++mflua_tests = + mfluadir/mfluatraptest.log: mflua$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mflua_tests) + +diff -up texlive-base-20200327/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt texlive-base-20200327/source/texk/web2c/mfluajitdir/am/mfluajit.am +--- texlive-base-20200327/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt 2017-04-16 06:11:22.000000000 -0400 ++++ texlive-base-20200327/source/texk/web2c/mfluajitdir/am/mfluajit.am 2020-04-20 14:32:46.326851464 -0400 +@@ -106,7 +106,7 @@ EXTRA_DIST += \ + + # MFLuaJIT tests + # +-mfluajit_tests = mfluajitdir/mfluajittraptest.test ++mfluajit_tests = + mfluajitdir/mfluajittraptest.log: mfluajit$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mfluajit_tests) + +diff -up texlive-base-20200327/source/texk/web2c/pdftexdir/am/pdftex.am.dt texlive-base-20200327/source/texk/web2c/pdftexdir/am/pdftex.am +--- texlive-base-20200327/source/texk/web2c/pdftexdir/am/pdftex.am.dt 2020-04-20 14:32:46.326851464 -0400 ++++ texlive-base-20200327/source/texk/web2c/pdftexdir/am/pdftex.am 2020-04-20 14:35:48.451043188 -0400 +@@ -95,8 +95,8 @@ EXTRA_DIST += \ + + # pdfTeX tests + # +-pdftex_tests = pdftexdir/wprob.test pdftexdir/pdftex.test \ +- pdftexdir/pdfimage.test pdftexdir/expanded.test \ ++pdftex_tests = pdftexdir/pdftex.test \ ++ pdftexdir/expanded.test \ + pdftexdir/tests/cnfline.test + + pdftexdir/wprob.log pdftexdir/pdftex.log \ +diff -up texlive-base-20200327/source/texk/web2c/ptexdir/am/ptex.am.dt texlive-base-20200327/source/texk/web2c/ptexdir/am/ptex.am +--- texlive-base-20200327/source/texk/web2c/ptexdir/am/ptex.am.dt 2020-04-20 14:32:46.327851443 -0400 ++++ texlive-base-20200327/source/texk/web2c/ptexdir/am/ptex.am 2020-04-20 14:36:23.750305069 -0400 +@@ -168,7 +168,7 @@ EXTRA_DIST += \ + + # pTeX Tests + # +-ptex_tests = ptexdir/ptriptest.test ptexdir/pver.test ++ptex_tests = ptexdir/pver.test + ptexdir/ptriptest.log: ptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + ptexdir/pver.log: ptex$(EXEEXT) + pweb_tests = \ +diff -up texlive-base-20200327/source/texk/web2c/uptexdir/am/uptex.am.dt texlive-base-20200327/source/texk/web2c/uptexdir/am/uptex.am +--- texlive-base-20200327/source/texk/web2c/uptexdir/am/uptex.am.dt 2020-04-20 14:32:46.327851443 -0400 ++++ texlive-base-20200327/source/texk/web2c/uptexdir/am/uptex.am 2020-04-20 14:36:53.266687857 -0400 +@@ -158,7 +158,7 @@ EXTRA_DIST += \ + uptexdir/ChangeLog + + # upTeX Tests +-uptex_tests = uptexdir/uptriptest.test uptexdir/upver.test ++uptex_tests = uptexdir/upver.test + uptexdir/uptriptest.log: uptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + uptexdir/upver.log: uptex$(EXEEXT) + upweb_tests = \ +diff -up texlive-base-20200327/source/texk/web2c/xetexdir/am/xetex.am.dt texlive-base-20200327/source/texk/web2c/xetexdir/am/xetex.am +--- texlive-base-20200327/source/texk/web2c/xetexdir/am/xetex.am.dt 2020-04-20 14:32:46.327851443 -0400 ++++ texlive-base-20200327/source/texk/web2c/xetexdir/am/xetex.am 2020-04-20 14:37:13.223270564 -0400 +@@ -201,7 +201,6 @@ EXTRA_DIST += \ + # + xetex_tests = \ + xetexdir/xetex-filedump.test \ +- xetexdir/xetex-bug73.test \ + xetexdir/xetex.test + xetexdir/xetex-filedump.log xetexdir/xetex-bug73.log xetexdir/xetex.log: xetex$(EXEEXT) + +diff -up texlive-base-20200327/source/texk/kpathsea/Makefile.am.dt texlive-base-20200327/source/texk/kpathsea/Makefile.am +--- texlive-base-20200327/source/texk/kpathsea/Makefile.am.dt 2020-04-20 15:49:39.282325550 -0400 ++++ texlive-base-20200327/source/texk/kpathsea/Makefile.am 2020-04-20 15:49:51.475074045 -0400 +@@ -275,7 +275,7 @@ uninstall-local: + AM_TESTS_ENVIRONMENT = LN_S='$(LN_S)'; export LN_S; + AM_TESTS_ENVIRONMENT += LT_OBJDIR='$(LT_OBJDIR)'; export LT_OBJDIR; + # +-TESTS = tests/cnfline.test tests/cnfnewline.test ++TESTS = tests/cnfnewline.test + TESTS += tests/cnfnull.test tests/cnfprog.test + TESTS += tests/kpseaccess.test + TESTS += tests/kpsereadlink.test tests/kpsestat.test tests/kpsewhich.test +diff -up texlive-base-20200327/source/texk/kpathsea/Makefile.in.dt texlive-base-20200327/source/texk/kpathsea/Makefile.in +--- texlive-base-20200327/source/texk/kpathsea/Makefile.in.dt 2020-04-21 10:17:29.766949867 -0400 ++++ texlive-base-20200327/source/texk/kpathsea/Makefile.in 2020-04-21 10:17:36.926798780 -0400 +@@ -858,7 +858,7 @@ dist_noinst_DATA = texmf.cnf + AM_TESTS_ENVIRONMENT = LN_S='$(LN_S)'; export LN_S; \ + LT_OBJDIR='$(LT_OBJDIR)'; export LT_OBJDIR; + # +-TESTS = tests/cnfline.test tests/cnfnewline.test tests/cnfnull.test \ ++TESTS = tests/cnfnewline.test tests/cnfnull.test \ + tests/cnfprog.test tests/kpseaccess.test \ + tests/kpsereadlink.test tests/kpsestat.test \ + tests/kpsewhich.test diff --git a/SOURCES/texlive-20200327-poppler-0.90.patch b/SOURCES/texlive-20200327-poppler-0.90.patch new file mode 100644 index 0000000..e76b436 --- /dev/null +++ b/SOURCES/texlive-20200327-poppler-0.90.patch @@ -0,0 +1,20 @@ +diff -up texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler090 texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler090 2020-07-14 13:13:31.620607263 -0400 ++++ texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc 2020-07-14 13:16:01.530248309 -0400 +@@ -766,7 +766,7 @@ read_pdf_info(char *image_name, char *pa + if (page_name) { + // get page by name + GString name(page_name); +- LinkDest *link = pdf_doc->doc->findDest(&name); ++ std::unique_ptr link = pdf_doc->doc->findDest(&name); + if (link == 0 || !link->isOk()) + pdftex_fail("PDF inclusion: invalid destination <%s>", page_name); + Ref ref = link->getPageRef(); +@@ -774,7 +774,6 @@ read_pdf_info(char *image_name, char *pa + if (page_num == 0) + pdftex_fail("PDF inclusion: destination is not a page <%s>", + page_name); +- delete link; + } else { + // get page by number + if (page_num <= 0 || page_num > epdf_num_pages) diff --git a/SOURCES/texlive-20210325-new-poppler.patch b/SOURCES/texlive-20210325-new-poppler.patch new file mode 100644 index 0000000..2f5ba71 --- /dev/null +++ b/SOURCES/texlive-20210325-new-poppler.patch @@ -0,0 +1,578 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler 2020-05-14 17:45:48.000000000 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-06 17:39:49.308416042 -0400 +@@ -1,5 +1,5 @@ + /* +-Copyright 1996-2016 Han The Thanh, ++Copyright 1996-2017 Han The Thanh, + + This file is part of pdfTeX. + +@@ -17,6 +17,15 @@ You should have received a copy of the G + with this program. If not, see . + */ + ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. A little modifications are made to avoid a crash for ++some kind of pdf images, such as figure_missing.pdf in gnuplot. ++The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -75,31 +84,6 @@ extern integer zround(double); + #define MASK_SUPPRESS_PTEX_PAGENUMBER 0x04 + #define MASK_SUPPRESS_PTEX_INFODICT 0x08 + +-// PdfObject encapsulates the xpdf Object type, +-// and properly frees its resources on destruction. +-// Use obj-> to access members of the Object, +-// and &obj to get a pointer to the object. +-// It is no longer necessary to call Object::free explicitely. +- +-class PdfObject { +- public: +- PdfObject() { // nothing +- } ~PdfObject() { +- iObject.free(); +- } +- Object *operator->() { +- return &iObject; +- } +- Object *operator&() { +- return &iObject; +- } +- private: // no copying or assigning +- PdfObject(const PdfObject &); +- void operator=(const PdfObject &); +- public: +- Object iObject; +-}; +- + // When copying the Resources of the selected page, all objects are copied + // recusively top-down. Indirect objects however are not fetched during + // copying, but get a new object number from pdfTeX and then will be +@@ -203,18 +187,6 @@ static void delete_document(PdfDocument + delete pdf_doc; + } + +-// Replacement for +-// Object *initDict(Dict *dict1){ initObj(objDict); dict = dict1; return this; } +- +-static void initDictFromDict(PdfObject & obj, Dict * dict) +-{ +- obj->initDict(xref); +- for (int i = 0, l = dict->getLength(); i < l; i++) { +- Object obj1; +- obj->dictAdd(copyString(dict->getKey(i)), dict->getValNF(i, &obj1)); +- } +-} +- + // -------------------------------------------------------------------- + + static int addEncoding(GfxFont * gfont) +@@ -311,10 +283,10 @@ static void copyName(char *s) + + static void copyDictEntry(Object * obj, int i) + { +- PdfObject obj1; ++ Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj->dictGetValNF(i, &obj1); ++ obj1 = obj->dictGetValNF(i); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -367,17 +339,17 @@ static void copyStream(Stream * str) + static void copyProcSet(Object * obj) + { + int i, l; +- PdfObject procset; ++ Object procset; + if (!obj->isArray()) + pdftex_fail("PDF inclusion: invalid ProcSet array type <%s>", + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &procset); +- if (!procset->isName()) ++ procset = obj->arrayGetNF(i); ++ if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", +- procset->getTypeName()); +- copyName(procset->getName()); ++ procset.getTypeName()); ++ copyName(procset.getName()); + pdf_puts(" "); + } + pdf_puts("]\n"); +@@ -385,10 +357,29 @@ static void copyProcSet(Object * obj) + + #define REPLACE_TYPE1C true + ++static bool embeddableFont(Object * fontdesc) ++{ ++ Object fontfile, ffsubtype; ++ ++ if (!fontdesc->isDict()) ++ return false; ++ fontfile = fontdesc->dictLookup("FontFile"); ++ if (fontfile.isStream()) ++ return true; ++ if (REPLACE_TYPE1C) { ++ fontfile = fontdesc->dictLookup("FontFile3"); ++ if (!fontfile.isStream()) ++ return false; ++ ffsubtype = fontfile.streamGetDict()->lookup("Subtype"); ++ return ffsubtype.isName() && !strcmp(ffsubtype.getName(), "Type1C"); ++ } ++ return false; ++} ++ + static void copyFont(char *tag, Object * fontRef) + { +- PdfObject fontdict, subtype, basefont, fontdescRef, fontdesc, charset, +- fontfile, ffsubtype, stemV; ++ Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, ++ stemV; + GfxFont *gfont; + fd_entry *fd; + fm_entry *fontmap; +@@ -404,33 +395,39 @@ static void copyFont(char *tag, Object * + } + // Only handle included Type1 (and Type1C) fonts; anything else will be copied. + // Type1C fonts are replaced by Type1 fonts, if REPLACE_TYPE1C is true. +- if (!fixedinclusioncopyfont && fontRef->fetch(xref, &fontdict)->isDict() +- && fontdict->dictLookup("Subtype", &subtype)->isName() +- && !strcmp(subtype->getName(), "Type1") +- && fontdict->dictLookup("BaseFont", &basefont)->isName() +- && fontdict->dictLookupNF("FontDescriptor", &fontdescRef)->isRef() +- && fontdescRef->fetch(xref, &fontdesc)->isDict() +- && (fontdesc->dictLookup("FontFile", &fontfile)->isStream() +- || (REPLACE_TYPE1C +- && fontdesc->dictLookup("FontFile3", &fontfile)->isStream() +- && fontfile->streamGetDict()->lookup("Subtype", +- &ffsubtype)->isName() +- && !strcmp(ffsubtype->getName(), "Type1C"))) +- && (fontmap = lookup_fontmap(basefont->getName())) != NULL) { ++ fontdict = fontRef->fetch(xref); ++ fontdesc = Object(objNull); ++ if (fontdict.isDict()) { ++ subtype = fontdict.dictLookup("Subtype"); ++ basefont = fontdict.dictLookup("BaseFont"); ++ fontdescRef = fontdict.dictLookupNF("FontDescriptor"); ++ if (fontdescRef.isRef()) { ++ fontdesc = fontdescRef.fetch(xref); ++ } ++ } ++ if (!fixedinclusioncopyfont && fontdict.isDict() ++ && subtype.isName() ++ && !strcmp(subtype.getName(), "Type1") ++ && basefont.isName() ++ && fontdescRef.isRef() ++ && fontdesc.isDict() ++ && embeddableFont(&fontdesc) ++ && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +- fontdesc->dictLookup("StemV", &stemV); +- fd = epdf_create_fontdescriptor(fontmap, zround(stemV->getNum())); +- if (fontdesc->dictLookup("CharSet", &charset) && +- charset->isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset->getString()->getCString()); ++ stemV = fontdesc.dictLookup("StemV"); ++ fd = epdf_create_fontdescriptor(fontmap, zround(stemV.getNum())); ++ charset = fontdesc.dictLookup("CharSet"); ++ if (!charset.isNull() && ++ charset.isString() && is_subsetable(fontmap)) ++ epdf_mark_glyphs(fd, charset.getString()->getCString()); + else + embed_whole_font(fd); +- addFontDesc(fontdescRef->getRef(), fd); ++ addFontDesc(fontdescRef.getRef(), fd); + copyName(tag); + gfont = GfxFont::makeFont(xref, tag, fontRef->getRef(), +- fontdict->getDict()); ++ fontdict.getDict()); + pdf_printf(" %d 0 R ", addFont(fontRef->getRef(), fd, + addEncoding(gfont))); + } else { +@@ -442,24 +439,24 @@ static void copyFont(char *tag, Object * + + static void copyFontResources(Object * obj) + { +- PdfObject fontRef; ++ Object fontRef; + int i, l; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid font resources dict type <%s>", + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- obj->dictGetValNF(i, &fontRef); +- if (fontRef->isRef()) ++ fontRef = obj->dictGetValNF(i); ++ if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); +- else if (fontRef->isDict()) { // some programs generate pdf with embedded font object ++ else if (fontRef.isDict()) { // some programs generate pdf with embedded font object + copyName(obj->dictGetKey(i)); + pdf_puts(" "); + copyObject(&fontRef); + } + else + pdftex_fail("PDF inclusion: invalid font in reference type <%s>", +- fontRef->getTypeName()); ++ fontRef.getTypeName()); + } + pdf_puts(">>\n"); + } +@@ -548,7 +545,7 @@ static char *convertNumToPDF(double n) + + static void copyObject(Object * obj) + { +- PdfObject obj1; ++ Object obj1; + int i, l, c; + Ref ref; + char *p; +@@ -592,8 +589,8 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &obj1); +- if (!obj1->isName()) ++ obj1 = obj->arrayGetNF(i); ++ if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); + } +@@ -603,9 +600,8 @@ static void copyObject(Object * obj) + copyDict(obj); + pdf_puts(">>"); + } else if (obj->isStream()) { +- initDictFromDict(obj1, obj->streamGetDict()); + pdf_puts("<<\n"); +- copyDict(&obj1); ++ copyDict(obj->getStream()->getDictObject()); + pdf_puts(">>\n"); + pdf_puts("stream\n"); + copyStream(obj->getStream()->getUndecodedStream()); +@@ -629,9 +625,8 @@ static void writeRefs() + InObj *r; + for (r = inObjList; r != 0; r = r->next) { + if (!r->written) { +- Object obj1; + r->written = 1; +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ Object obj1 = xref->fetch(r->ref.num, r->ref.gen); + if (r->type == objFont) { + assert(!obj1.isStream()); + pdfbeginobj(r->num, 2); // \pdfobjcompresslevel = 2 is for this +@@ -647,7 +642,6 @@ static void writeRefs() + pdf_puts("\n"); + pdfendobj(); + } +- obj1.free(); + } + } + } +@@ -805,8 +799,8 @@ void write_epdf(void) + Page *page; + Ref *pageRef; + Dict *pageDict; +- PdfObject contents, obj1, obj2, pageObj, dictObj; +- PdfObject groupDict; ++ Object contents, obj1, obj2, pageObj, dictObj; ++ Object groupDict; + bool writeSepGroup = false; + Object info; + char *key; +@@ -833,8 +827,8 @@ void write_epdf(void) + encodingList = 0; + page = pdf_doc->doc->getCatalog()->getPage(epdf_selected_page); + pageRef = pdf_doc->doc->getCatalog()->getPageRef(epdf_selected_page); +- xref->fetch(pageRef->num, pageRef->gen, &pageObj); +- pageDict = pageObj->getDict(); ++ pageObj = xref->fetch(pageRef->num, pageRef->gen); ++ pageDict = pageObj.getDict(); + rotate = page->getRotate(); + PDFRectangle *pagebox; + // write the Page header +@@ -852,7 +846,7 @@ void write_epdf(void) + pdf_printf("/%s.PageNumber %i\n", pdfkeyprefix, (int) epdf_selected_page); + } + if ((suppress_ptex_info & MASK_SUPPRESS_PTEX_INFODICT) == 0) { +- pdf_doc->doc->getDocInfoNF(&info); ++ info = pdf_doc->doc->getDocInfoNF(); + if (info.isRef()) { + // the info dict must be indirect (PDF Ref p. 61) + pdf_printf("/%s.InfoDict ", pdfkeyprefix); +@@ -908,14 +902,14 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- pageDict->lookupNF("Metadata", &dictObj); +- if (!dictObj->isNull() && !dictObj->isRef()) ++ dictObj = pageDict->lookupNF("Metadata"); ++ if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- pageDict->lookupNF(pageDictKeys[i], &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); + copyObject(&dictObj); // preserves indirection +@@ -923,8 +917,8 @@ void write_epdf(void) + } + + // handle page group +- pageDict->lookupNF("Group", &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF("Group"); ++ if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the + // same page; copy the Group entry as is. See manual for +@@ -938,11 +932,36 @@ void write_epdf(void) + copyObject(&dictObj); + } else { + // write Group dict as a separate object, since the Page dict also refers to it +- pageDict->lookup("Group", &dictObj); +- if (!dictObj->isDict()) ++ dictObj = pageDict->lookup("Group"); ++ if (!dictObj.isDict()) + pdftex_fail("PDF inclusion: /Group dict missing"); + writeSepGroup = true; +- initDictFromDict(groupDict, page->getGroup()); ++/* ++This part is only a single line ++ groupDict = Object(page->getGroup()); ++in the original patch. In this case, however, pdftex crashes at ++"delete pdf_doc->doc" in "delete_document()" for inclusion of some ++kind of pdf images, for example, figure_missing.pdf in gnuplot. ++A change ++ groupDict = Object(page->getGroup()).copy(); ++does not improve the situation. ++The changes below seem to work fine. ++*/ ++// begin modification ++ groupDict = pageDict->lookup("Group"); ++ const Dict& dic1 = page->getGroup(); ++ const Dict& dic2 = groupDict.getDict(); ++ // replace dic2 in groupDict with dic1 ++ l = dic2.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictRemove(dic2.getKey(i)); ++ } ++ l = dic1.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictAdd(copyString(dic1.getKey(i)), ++ dic1.getValNF(i)); ++ } ++// end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); + } + } +@@ -955,14 +974,14 @@ void write_epdf(void) + pdftex_warn + ("PDF inclusion: /Resources missing. 'This practice is not recommended' (PDF Ref)"); + } else { +- initDictFromDict(obj1, page->getResourceDict()); ++ Object *obj1 = page->getResourceDictObject(); + if (!obj1->isDict()) + pdftex_fail("PDF inclusion: invalid resources dict type <%s>", + obj1->getTypeName()); + pdf_newline(); + pdf_puts("/Resources <<\n"); + for (i = 0, l = obj1->dictGetLength(); i < l; ++i) { +- obj1->dictGetVal(i, &obj2); ++ obj2 = obj1->dictGetVal(i); + key = obj1->dictGetKey(i); + if (strcmp("Font", key) == 0) + copyFontResources(&obj2); +@@ -975,8 +994,8 @@ void write_epdf(void) + } + + // write the page contents +- page->getContents(&contents); +- if (contents->isStream()) { ++ contents = page->getContents(); ++ if (contents.isStream()) { + + // Variant A: get stream and recompress under control + // of \pdfcompresslevel +@@ -987,36 +1006,35 @@ void write_epdf(void) + + // Variant B: copy stream without recompressing + // +- contents->streamGetDict()->lookup("F", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("F"); ++ if (!obj1.isNull()) { + pdftex_fail("PDF inclusion: Unsupported external stream"); + } +- contents->streamGetDict()->lookup("Length", &obj1); +- assert(!obj1->isNull()); ++ obj1 = contents.streamGetDict()->lookup("Length"); ++ assert(!obj1.isNull()); + pdf_puts("/Length "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("Filter", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("Filter"); ++ if (!obj1.isNull()) { + pdf_puts("/Filter "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("DecodeParms", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("DecodeParms"); ++ if (!obj1.isNull()) { + pdf_puts("/DecodeParms "); + copyObject(&obj1); + pdf_puts("\n"); + } + } + pdf_puts(">>\nstream\n"); +- copyStream(contents->getStream()->getUndecodedStream()); ++ copyStream(contents.getStream()->getUndecodedStream()); + pdfendstream(); +- } else if (contents->isArray()) { ++ } else if (contents.isArray()) { + pdfbeginstream(); +- for (i = 0, l = contents->arrayGetLength(); i < l; ++i) { +- Object contentsobj; +- copyStream((contents->arrayGet(i, &contentsobj))->getStream()); +- contentsobj.free(); ++ for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { ++ Object contentsobj = contents.arrayGet(i); ++ copyStream(contentsobj.getStream()); + if (i < l - 1) + pdf_newline(); // add a newline after each stream except the last + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler 2020-05-14 17:45:48.000000000 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 17:50:38.863177570 -0400 +@@ -16,6 +16,14 @@ GNU General Public License for more deta + You should have received a copy of the GNU General Public License along + with this program. If not, see . + */ ++ ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + #include + + #include +@@ -77,22 +85,20 @@ int main(int argc, char *argv[]) + objgen = atoi(argv[3]); + } + xref = doc->getXRef(); +- catalogDict.initNull(); +- xref->getCatalog(&catalogDict); ++ catalogDict = xref->getCatalog(); + if (!catalogDict.isDict("Catalog")) { + fprintf(stderr, "No Catalog found\n"); + exit(1); + } +- srcStream.initNull(); ++ srcStream = Object(objNull); + if (objnum == 0) { +- catalogDict.dictLookup("SourceObject", &srcStream); ++ srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; + if (!srcStream.isStream(const_SourceFile)) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +- srcName.initNull(); +- srcStream.getStream()->getDict()->lookup("SourceName", &srcName); ++ srcName = srcStream.getStream()->getDict()->lookup("SourceName"); + if (!srcName.isString()) { + fprintf(stderr, "No SourceName found\n"); + exit(1); +@@ -101,7 +107,7 @@ int main(int argc, char *argv[]) + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +- xref->fetch(objnum, objgen, &srcStream); ++ srcStream = xref->fetch(objnum, objgen); + if (!srcStream.isStream()) { + fprintf(stderr, "Not a Stream object\n"); + exit(1); +@@ -151,26 +157,24 @@ int main(int argc, char *argv[]) + int localOffset = 0; + Guint firstOffset; + +- assert(xref->fetch(e->offset, 0, &objStr)->isStream()); +- nObjects = objStr.streamGetDict()->lookup("N", &obj1)->getInt(); +- obj1.free(); +- first = objStr.streamGetDict()->lookup("First", &obj1)->getInt(); +- obj1.free(); ++ objStr = xref->fetch(e->offset, 0); ++ assert(objStr.isStream()); ++ obj1 = objStr.streamGetDict()->lookup("N"); ++ nObjects = obj1.getInt(); ++ obj1 = objStr.streamGetDict()->lookup("First"); ++ first = obj1.getInt(); + firstOffset = objStr.getStream()->getBaseStream()->getStart() + first; + + // parse the header: object numbers and offsets + objStr.streamReset(); +- obj1.initNull(); +- str = new EmbedStream(objStr.getStream(), &obj1, gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); + lexer = new Lexer(xref, str); + parser = new Parser(xref, lexer, gFalse); + for (n = 0; n < nObjects; ++n) { +- parser->getObj(&obj1); +- parser->getObj(&obj2); ++ obj1 = parser->getObj(); ++ obj2 = parser->getObj(); + if (n == e->gen) + localOffset = obj2.getInt(); +- obj1.free(); +- obj2.free(); + } + #if defined(XPDF304) + while (str->getChar() != EOF) ; +@@ -178,7 +182,6 @@ int main(int argc, char *argv[]) + lexer->skipToEOF(); + #endif + delete parser; +- objStr.free(); + + fprintf(outfile, "%.10lu 00000 n\n", + (long unsigned)(firstOffset + localOffset)); +@@ -189,7 +192,6 @@ int main(int argc, char *argv[]) + s->reset(); + while ((c = s->getChar()) != EOF) + fputc(c, outfile); +- srcStream.free(); + } + if (objnum == 0) + fprintf(stderr, "Source file extracted to %s\n", outname); +@@ -198,7 +200,6 @@ int main(int argc, char *argv[]) + else + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); +- catalogDict.free(); + delete doc; + delete globalParams; + } diff --git a/SOURCES/texlive-20210325-poppler-0.73.patch b/SOURCES/texlive-20210325-poppler-0.73.patch new file mode 100644 index 0000000..4b24f29 --- /dev/null +++ b/SOURCES/texlive-20210325-poppler-0.73.patch @@ -0,0 +1,200 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 2021-05-06 18:01:35.847959461 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-06 18:08:20.143955577 -0400 +@@ -114,7 +114,7 @@ struct UsedEncoding { + + static InObj *inObjList; + static UsedEncoding *encodingList; +-static GBool isInit = gFalse; ++static bool isInit = false; + + // -------------------------------------------------------------------- + // Maintain list of open embedded PDF files +@@ -269,7 +269,7 @@ static int getNewObjectNumber(Ref ref) + + static void copyObject(Object *); + +-static void copyName(char *s) ++static void copyName(const char *s) + { + pdf_puts("/"); + for (; *s != 0; s++) { +@@ -304,7 +304,7 @@ static void copyDict(Object * obj) + static void copyFontDict(Object * obj, InObj * r) + { + int i, l; +- char *key; ++ const char *key; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid dict type <%s>", + obj->getTypeName()); +@@ -376,7 +376,7 @@ static bool embeddableFont(Object * font + return false; + } + +-static void copyFont(char *tag, Object * fontRef) ++static void copyFont(const char *tag, Object * fontRef) + { + Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + stemV; +@@ -412,7 +412,7 @@ static void copyFont(char *tag, Object * + && fontdescRef.isRef() + && fontdesc.isDict() + && embeddableFont(&fontdesc) +- && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { ++ && (fontmap = lookup_fontmap((char *)basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +@@ -421,7 +421,7 @@ static void copyFont(char *tag, Object * + charset = fontdesc.dictLookup("CharSet"); + if (!charset.isNull() && + charset.isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset.getString()->getCString()); ++ epdf_mark_glyphs(fd, (char *)charset.getString()->c_str()); + else + embed_whole_font(fd); + addFontDesc(fontdescRef.getRef(), fd); +@@ -461,7 +461,7 @@ static void copyFontResources(Object * o + pdf_puts(">>\n"); + } + +-static void copyOtherResources(Object * obj, char *key) ++static void copyOtherResources(Object * obj, const char *key) + { + // copies all other resources (write_epdf handles Fonts and ProcSets), + +@@ -548,8 +548,8 @@ static void copyObject(Object * obj) + Object obj1; + int i, l, c; + Ref ref; +- char *p; +- GString *s; ++ const char *p; ++ const GString *s; + if (obj->isBool()) { + pdf_printf("%s", obj->getBool()? "true" : "false"); + } else if (obj->isInt()) { +@@ -560,7 +560,7 @@ static void copyObject(Object * obj) + pdf_printf("%s", convertNumToPDF(obj->getNum())); + } else if (obj->isString()) { + s = obj->getString(); +- p = s->getCString(); ++ p = s->c_str(); + l = s->getLength(); + if (strlen(p) == (unsigned int) l) { + pdf_puts("("); +@@ -658,7 +658,7 @@ static void writeEncodings() + ("PDF inclusion: CID fonts are not supported" + " (try to disable font replacement to fix this)"); + } +- if ((s = ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) ++ if ((s = (char *) ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) + glyphNames[i] = s; + else + glyphNames[i] = notdef; +@@ -673,7 +673,7 @@ static void writeEncodings() + } + + // get the pagebox according to the pagebox_spec +-static PDFRectangle *get_pagebox(Page * page, int pagebox_spec) ++static const PDFRectangle *get_pagebox(Page * page, int pagebox_spec) + { + if (pagebox_spec == pdfboxspecmedia) + return page->getMediaBox(); +@@ -705,13 +705,13 @@ read_pdf_info(char *image_name, char *pa + { + PdfDocument *pdf_doc; + Page *page; +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + float pdf_version_found, pdf_version_wanted; + // initialize + if (!isInit) { + globalParams = new GlobalParams(); +- globalParams->setErrQuiet(gFalse); +- isInit = gTrue; ++ globalParams->setErrQuiet(false); ++ isInit = true; + } + // open PDF file + pdf_doc = find_add_document(image_name); +@@ -803,7 +803,7 @@ void write_epdf(void) + Object groupDict; + bool writeSepGroup = false; + Object info; +- char *key; ++ const char *key; + char s[256]; + int i, l; + int rotate; +@@ -830,7 +830,7 @@ void write_epdf(void) + pageObj = xref->fetch(pageRef->num, pageRef->gen); + pageDict = pageObj.getDict(); + rotate = page->getRotate(); +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + // write the Page header + pdf_puts("/Type /XObject\n"); + pdf_puts("/Subtype /Form\n"); +@@ -958,7 +958,7 @@ The changes below seem to work fine. + } + l = dic1.getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictAdd(copyString(dic1.getKey(i)), ++ groupDict.dictAdd(dic1.getKey(i), + dic1.getValNF(i)); + } + // end modification +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 2021-05-06 18:01:35.847959461 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 18:01:35.854959565 -0400 +@@ -103,7 +103,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "No SourceName found\n"); + exit(1); + } +- outname = srcName.getString()->getCString(); ++ outname = (char *)srcName.getString()->c_str(); + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +@@ -112,7 +112,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Not a Stream object\n"); + exit(1); + } +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + if (objgen == 0) +@@ -122,7 +122,7 @@ int main(int argc, char *argv[]) + outname = buf; + } else { // objnum < 0 means we are extracting the XRef table + extract_xref_table = true; +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + sprintf(p, ".xref"); +@@ -155,7 +155,7 @@ int main(int argc, char *argv[]) + Object objStr, obj1, obj2; + int nObjects, first, n; + int localOffset = 0; +- Guint firstOffset; ++ unsigned int firstOffset; + + objStr = xref->fetch(e->offset, 0); + assert(objStr.isStream()); +@@ -167,9 +167,9 @@ int main(int argc, char *argv[]) + + // parse the header: object numbers and offsets + objStr.streamReset(); +- str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), true, first); + lexer = new Lexer(xref, str); +- parser = new Parser(xref, lexer, gFalse); ++ parser = new Parser(xref, lexer, false); + for (n = 0; n < nObjects; ++n) { + obj1 = parser->getObj(); + obj2 = parser->getObj(); +diff -up texlive-base-20210325/source/texk/web2c/xetexdir/pdfimage.cpp.poppler-0.73 texlive-base-20210325/source/texk/web2c/xetexdir/pdfimage.cpp diff --git a/SOURCES/texlive-20210325-poppler-0.84.patch b/SOURCES/texlive-20210325-poppler-0.84.patch new file mode 100644 index 0000000..37cb1c3 --- /dev/null +++ b/SOURCES/texlive-20210325-poppler-0.84.patch @@ -0,0 +1,228 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.84 2021-05-06 18:21:18.379430999 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-10 11:15:09.572907304 -0400 +@@ -26,6 +26,15 @@ The poppler should be 0.59.0 or newer ve + POPPLER_VERSION should be defined. + */ + ++#ifdef POPPLER_VERSION ++#include ++#define xpdfVersion POPPLER_VERSION ++#define xpdfString "poppler" ++#else ++#include /* just to get the xpdf version */ ++#define xpdfString "xpdf" ++#endif ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -286,7 +295,7 @@ static void copyDictEntry(Object * obj, + Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj1 = obj->dictGetValNF(i); ++ obj1 = obj->dictGetValNF(i).copy(); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -345,7 +354,7 @@ static void copyProcSet(Object * obj) + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- procset = obj->arrayGetNF(i); ++ procset = obj->arrayGetNF(i).copy(); + if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", + procset.getTypeName()); +@@ -400,7 +409,7 @@ static void copyFont(const char *tag, Ob + if (fontdict.isDict()) { + subtype = fontdict.dictLookup("Subtype"); + basefont = fontdict.dictLookup("BaseFont"); +- fontdescRef = fontdict.dictLookupNF("FontDescriptor"); ++ fontdescRef = fontdict.dictLookupNF("FontDescriptor").copy(); + if (fontdescRef.isRef()) { + fontdesc = fontdescRef.fetch(xref); + } +@@ -446,7 +455,7 @@ static void copyFontResources(Object * o + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- fontRef = obj->dictGetValNF(i); ++ fontRef = obj->dictGetValNF(i).copy(); + if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); + else if (fontRef.isDict()) { // some programs generate pdf with embedded font object +@@ -589,7 +598,7 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj1 = obj->arrayGetNF(i); ++ obj1 = obj->arrayGetNF(i).copy(); + if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); +@@ -709,7 +718,7 @@ read_pdf_info(char *image_name, char *pa + float pdf_version_found, pdf_version_wanted; + // initialize + if (!isInit) { +- globalParams = new GlobalParams(); ++ globalParams = std::unique_ptr(new GlobalParams()); + globalParams->setErrQuiet(false); + isInit = true; + } +@@ -742,7 +751,7 @@ read_pdf_info(char *image_name, char *pa + if (link == 0 || !link->isOk()) + pdftex_fail("PDF inclusion: invalid destination <%s>", page_name); + Ref ref = link->getPageRef(); +- page_num = pdf_doc->doc->getCatalog()->findPage(ref.num, ref.gen); ++ page_num = pdf_doc->doc->getCatalog()->findPage(ref); + if (page_num == 0) + pdftex_fail("PDF inclusion: destination is not a page <%s>", + page_name); +@@ -902,13 +911,13 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- dictObj = pageDict->lookupNF("Metadata"); ++ dictObj = pageDict->lookupNF("Metadata").copy(); + if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ dictObj = pageDict->lookupNF(pageDictKeys[i]).copy(); + if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); +@@ -917,7 +926,7 @@ void write_epdf(void) + } + + // handle page group +- dictObj = pageDict->lookupNF("Group"); ++ dictObj = pageDict->lookupNF("Group").copy(); + if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the +@@ -959,7 +968,7 @@ The changes below seem to work fine. + l = dic1.getLength(); + for (i = 0; i < l; i++) { + groupDict.dictAdd(dic1.getKey(i), +- dic1.getValNF(i)); ++ dic1.getValNF(i).copy()); + } + // end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); +@@ -1089,6 +1098,6 @@ void epdf_check_mem() + delete_document(p); + } + // see above for globalParams +- delete globalParams; ++ globalParams.reset(); + } + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.84 2021-05-06 18:21:18.379430999 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 18:21:18.383431058 -0400 +@@ -24,6 +24,15 @@ by Arch Linux. The poppler should be 0.5 + POPPLER_VERSION should be defined. + */ + ++#ifdef POPPLER_VERSION ++#include ++#define xpdfVersion POPPLER_VERSION ++#define xpdfString "poppler" ++#else ++#include /* just to get the xpdf version */ ++#define xpdfString "xpdf" ++#endif ++ + #include + + #include +@@ -73,7 +82,7 @@ int main(int argc, char *argv[]) + exit(1); + } + fileName = new GString(argv[1]); +- globalParams = new GlobalParams(); ++ globalParams = std::unique_ptr(new GlobalParams()); + doc = new PDFDoc(fileName); + if (!doc->isOk()) { + fprintf(stderr, "Invalid PDF file\n"); +@@ -94,7 +103,7 @@ int main(int argc, char *argv[]) + if (objnum == 0) { + srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; +- if (!srcStream.isStream(const_SourceFile)) { ++ if (!(srcStream.isStream() && srcStream.getDict()->is(const_SourceFile))) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +@@ -150,7 +159,6 @@ int main(int argc, char *argv[]) + (e->type == xrefEntryFree ? "f" : "n")); + else { // e->offset is the object number of the object stream + Stream *str; +- Lexer *lexer; + Parser *parser; + Object objStr, obj1, obj2; + int nObjects, first, n; +@@ -168,8 +176,7 @@ int main(int argc, char *argv[]) + // parse the header: object numbers and offsets + objStr.streamReset(); + str = new EmbedStream(objStr.getStream(), Object(objNull), true, first); +- lexer = new Lexer(xref, str); +- parser = new Parser(xref, lexer, false); ++ parser = new Parser(xref, str, false); + for (n = 0; n < nObjects; ++n) { + obj1 = parser->getObj(); + obj2 = parser->getObj(); +@@ -201,5 +208,5 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); + delete doc; +- delete globalParams; ++ globalParams.reset(); + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c +--- texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c.poppler-0.84 2019-12-29 19:37:32.000000000 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c 2021-05-06 18:21:18.383431058 -0400 +@@ -32,14 +32,6 @@ with this program. If not, see + #include "ptexlib.h" + #include +-#ifdef POPPLER_VERSION +-/* POPPLER_VERSION should be a proper version string */ +-#define xpdfVersion POPPLER_VERSION +-#define xpdfString "poppler" +-#else +-#include /* just to get the xpdf version */ +-#define xpdfString "xpdf" +-#endif + + #define check_nprintf(size_get, size_want) \ + if ((unsigned)(size_get) >= (unsigned)(size_want)) \ +@@ -977,12 +969,10 @@ void initversionstring(char **versions) + { + const_string fmt = + "Compiled with libpng %s; using libpng %s\n" +- "Compiled with zlib %s; using zlib %s\n" +- "Compiled with %s version %s\n"; ++ "Compiled with zlib %s; using zlib %s\n"; + size_t len = strlen(fmt) + + strlen(PNG_LIBPNG_VER_STRING) + strlen(png_libpng_ver) + + strlen(ZLIB_VERSION) + strlen(zlib_version) +- + strlen(xpdfString) + strlen(xpdfVersion) + + 1; + + /* len will be more than enough, because of the placeholder chars in fmt +@@ -990,7 +980,7 @@ void initversionstring(char **versions) + *versions = xmalloc(len); + sprintf(*versions, fmt, + PNG_LIBPNG_VER_STRING, png_libpng_ver, +- ZLIB_VERSION, zlib_version, xpdfString, xpdfVersion); ++ ZLIB_VERSION, zlib_version); + } + + +diff -up texlive-base-20210325/source/texk/web2c/xetexdir/XeTeX_ext.c.poppler-0.84 texlive-base-20210325/source/texk/web2c/xetexdir/XeTeX_ext.c diff --git a/SOURCES/texlive-20210325-texinfo-path-fix.patch b/SOURCES/texlive-20210325-texinfo-path-fix.patch new file mode 100644 index 0000000..e1ad38b --- /dev/null +++ b/SOURCES/texlive-20210325-texinfo-path-fix.patch @@ -0,0 +1,22 @@ +diff -up texlive-base-20210325/source/texk/kpathsea/texmf.cnf.texinfo-fix texlive-base-20210325/source/texk/kpathsea/texmf.cnf +--- texlive-base-20210325/source/texk/kpathsea/texmf.cnf.texinfo-fix 2021-05-06 17:53:44.616943275 -0400 ++++ texlive-base-20210325/source/texk/kpathsea/texmf.cnf 2021-05-06 17:55:40.097662674 -0400 +@@ -83,6 +83,9 @@ TEXMFSYSCONFIG = $TEXMFROOT/texmf-config + % to %USERPROFILE% on Windows, $HOME otherwise. + TEXMFHOME = ~/texmf + ++% Texinfo on Fedora lives out of $TEXMFROOT ++TEXINFOHOME = $SELFAUTODIR/share/texmf ++ + % TEXMFVAR, where texconfig/updmap/fmtutil store cached runtime data. + TEXMFVAR = ~/.texlive2021/texmf-var + +@@ -108,7 +111,7 @@ TEXMFAUXTREES = {} + % The odd-looking $TEXMFAUXTREES$TEXMF... construct is so that if no auxtree is + % ever defined (the 99% common case), no extra elements will be added to + % the search paths. tlmgr takes care to end any value with a trailing comma. +-TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} ++TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,$TEXINFOHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} + + % Where to look for, and where mktexlsr creates, ls-R files. By default, + % this is all and only the !! elements of TEXMF, so that mktexlsr does not diff --git a/SOURCES/texlive-base-20180414-disable-omegafonts-check-test.patch b/SOURCES/texlive-base-20180414-disable-omegafonts-check-test.patch new file mode 100644 index 0000000..1879359 --- /dev/null +++ b/SOURCES/texlive-base-20180414-disable-omegafonts-check-test.patch @@ -0,0 +1,12 @@ +diff -up texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest texlive-base-20180414/source/texk/web2c/omegafonts/check.test +--- texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest 2018-10-04 13:24:17.965126655 -0400 ++++ texlive-base-20180414/source/texk/web2c/omegafonts/check.test 2018-10-04 13:24:26.068945230 -0400 +@@ -4,6 +4,8 @@ + # Copyright 2014, 2015 Peter Breitenlohner + # You may freely use, modify and/or distribute this file. + ++exit 0 ++ + test -d tests || mkdir -p tests + + TEXMFCNF=$srcdir/../../kpathsea diff --git a/SOURCES/texlive-base-20200327-out-of-memory.patch b/SOURCES/texlive-base-20200327-out-of-memory.patch new file mode 100644 index 0000000..9381ca1 --- /dev/null +++ b/SOURCES/texlive-base-20200327-out-of-memory.patch @@ -0,0 +1,12 @@ +diff -up texlive-base-20200327/source/texk/kpathsea/texmf.cnf.me texlive-base-20200327/source/texk/kpathsea/texmf.cnf +--- texlive-base-20200327/source/texk/kpathsea/texmf.cnf.me 2020-09-23 09:35:26.729192291 +0200 ++++ texlive-base-20200327/source/texk/kpathsea/texmf.cnf 2020-09-23 09:36:01.849651692 +0200 +@@ -786,7 +786,7 @@ texmf_casefold_search = 1 + % For some xy-pic samples, you may need as much as 700000 words of memory. + % For the vast majority of documents, 60000 or less will do. + % +-main_memory = 5000000 % words of inimemory available; also applies to inimf&mp ++main_memory = 6000000 % words of inimemory available; also applies to inimf&mp + extra_mem_top = 0 % extra high memory for chars, tokens, etc. + extra_mem_bot = 0 % extra low memory for boxes, glue, breakpoints, etc. + diff --git a/SOURCES/texlive-base-20210325-configure-poppler-xpdf-fix.patch b/SOURCES/texlive-base-20210325-configure-poppler-xpdf-fix.patch new file mode 100644 index 0000000..61b144c --- /dev/null +++ b/SOURCES/texlive-base-20210325-configure-poppler-xpdf-fix.patch @@ -0,0 +1,159 @@ +diff -up texlive-base-20210325/source/configure.poppler-xpdf-fix texlive-base-20210325/source/configure +--- texlive-base-20210325/source/configure.poppler-xpdf-fix 2021-03-24 17:28:22.000000000 -0400 ++++ texlive-base-20210325/source/configure 2021-05-10 15:21:08.254142588 -0400 +@@ -21497,7 +21497,27 @@ if test "x$with_mpfr_libdir" != x && tes + MPFR_LIBS="-L$with_mpfr_libdir $MPFR_LIBS" + fi + +-: "kpse_xpdf_system_flags - no-op" ++if $PKG_CONFIG poppler --atleast-version=0.30; then ++ POPPLER_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ POPPLER_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_poppler:$with_system_poppler" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.30 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++POPPLER_INCLUDES="$POPPLER_VERSION $POPPLER_INCLUDES" ++ ++if $PKG_CONFIG poppler --atleast-version=0.12; then ++ XPDF_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ XPDF_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_xpdf:$with_system_xpdf" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.12 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++XPDF_INCLUDES="$POPPLER_VERSION $XPDF_INCLUDES" ++ ++# : "kpse_xpdf_system_flags - no-op" + + if $PKG_CONFIG zziplib --atleast-version=0.12; then + ZZIPLIB_INCLUDES=`$PKG_CONFIG zziplib --cflags` +diff -up texlive-base-20210325/source/texk/web2c/configure.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/configure +--- texlive-base-20210325/source/texk/web2c/configure.poppler-xpdf-fix 2021-02-16 22:03:54.000000000 -0500 ++++ texlive-base-20210325/source/texk/web2c/configure 2021-05-10 15:21:08.256142617 -0400 +@@ -25500,9 +25500,21 @@ fi + ##tldbg _KPSE_LIB_FLAGS: Setup xpdf (-lxpdf) flags. + echo 'tldbg:_KPSE_LIB_FLAGS called: libdir=xpdf, libname=xpdf, options=, tlincl=-DPDF_PARSER_ONLY -IBLD/libs/xpdf -IBLD/libs/xpdf/goo -IBLD/libs/xpdf/xpdf, tllib=BLD/libs/xpdf/libxpdf.a, tlextra=, rebuildsrcdeps=, rebuildblddeps=${top_builddir}/../../libs/xpdf/xpdf/Stream.h.' >&5 + ##tldbg _KPSE_LIB_FLAGS_TL: xpdf (xpdf) . +-: "kpse_xpdf_options - no-op" ++# Check whether --with-system-xpdf was given. ++if test "${with_system_xpdf+set}" = set; then : ++ withval=$with_system_xpdf; ++fi ++ + if test "x$with_system_xpdf" = xyes; then +- : "kpse_xpdf_system_flags - no-op" ++ if $PKG_CONFIG poppler --atleast-version=0.12; then ++ XPDF_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ XPDF_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_xpdf:$with_system_xpdf" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.12 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++XPDF_INCLUDES="$POPPLER_VERSION $XPDF_INCLUDES" + else + XPDF_INCLUDES="-DPDF_PARSER_ONLY -I$kpse_BLD/libs/xpdf -I$kpse_BLD/libs/xpdf/goo -I$kpse_BLD/libs/xpdf/xpdf" + XPDF_LIBS="$kpse_BLD/libs/xpdf/libxpdf.a" +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-xpdf-fix 2021-05-10 15:56:50.770034767 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-10 16:05:07.939283063 -0400 +@@ -49,10 +49,16 @@ POPPLER_VERSION should be defined. + #include + #include + +-#include +-#include +-#include +-#include ++#ifdef POPPLER_VERSION ++#include ++#include ++#include ++#include ++#include ++#define GString GooString ++#else ++#error POPPLER_VERSION should be defined. ++#endif + #include + + #include "Object.h" +@@ -676,7 +682,7 @@ static void writeEncodings() + } + for (r = encodingList; r != 0; r = n) { + n = r->next; +- delete r->font; ++ r->font->decRefCnt(); + delete r; + } + } +@@ -715,7 +721,7 @@ read_pdf_info(char *image_name, char *pa + PdfDocument *pdf_doc; + Page *page; + const PDFRectangle *pagebox; +- float pdf_version_found, pdf_version_wanted; ++ int pdf_major_version_found, pdf_minor_version_found; + // initialize + if (!isInit) { + globalParams = std::unique_ptr(new GlobalParams()); +@@ -730,17 +736,18 @@ read_pdf_info(char *image_name, char *pa + // this works only for PDF 1.x -- but since any versions of PDF newer + // than 1.x will not be backwards compatible to PDF 1.x, pdfTeX will + // then have to changed drastically anyway. +- pdf_version_found = pdf_doc->doc->getPDFVersion(); +- pdf_version_wanted = major_pdf_version_wanted + (minor_pdf_version_wanted * 0.1); +- if (pdf_version_found > pdf_version_wanted + 0.01) { +- char msg[] = +- "PDF inclusion: found PDF version <%.1f>, but at most version <%.1f> allowed"; ++ pdf_major_version_found = pdf_doc->doc->getPDFMajorVersion(); ++ pdf_minor_version_found = pdf_doc->doc->getPDFMinorVersion(); ++ if ((pdf_major_version_found > major_pdf_version_wanted) ++ || (pdf_minor_version_found > minor_pdf_version_wanted)) { ++ const char *msg = ++ "PDF inclusion: found PDF version <%d.%d>, but at most version <%d.%d> allowed"; + if (pdf_inclusion_errorlevel > 0) { +- pdftex_fail(msg, pdf_version_found, pdf_version_wanted); ++ pdftex_fail(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); + } else if (pdf_inclusion_errorlevel < 0) { + ; /* do nothing */ + } else { /* = 0, give warning */ +- pdftex_warn(msg, pdf_version_found, pdf_version_wanted); ++ pdftex_warn(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); + } + } + epdf_num_pages = pdf_doc->doc->getCatalog()->getNumPages(); +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-xpdf-fix 2021-05-10 15:26:43.545060694 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-10 16:06:58.614896618 -0400 +@@ -41,10 +41,15 @@ POPPLER_VERSION should be defined. + #include + #include + +-#include +-#include +-#include +-#include ++#ifdef POPPLER_VERSION ++#define GString GooString ++#include ++#include ++#include ++#include ++#else ++#error POPPLER_VERSION should be defined. ++#endif + #include + + #include "Object.h" +@@ -183,7 +188,7 @@ int main(int argc, char *argv[]) + if (n == e->gen) + localOffset = obj2.getInt(); + } +-#if defined(XPDF304) ++#if defined(POPPLER_VERSION) || defined(XPDF304) + while (str->getChar() != EOF) ; + #else /* xpdf 4.00 */ + lexer->skipToEOF(); diff --git a/SOURCES/texlive-base-20210325-mendex-weird-arch-fixes.patch b/SOURCES/texlive-base-20210325-mendex-weird-arch-fixes.patch new file mode 100644 index 0000000..97fdf59 --- /dev/null +++ b/SOURCES/texlive-base-20210325-mendex-weird-arch-fixes.patch @@ -0,0 +1,168 @@ +diff -U0 texlive-base-20210325/source/texk/mendexk/ChangeLog.archfix texlive-base-20210325/source/texk/mendexk/ChangeLog +--- texlive-base-20210325/source/texk/mendexk/ChangeLog.archfix 2021-05-27 15:01:46.888501972 -0400 ++++ texlive-base-20210325/source/texk/mendexk/ChangeLog 2021-05-27 15:02:10.669627643 -0400 +@@ -0,0 +1,13 @@ ++2021-05-09 Karl Berry ++ ++ * mendex.h (page.attr): use int, not char, since we do signed ++ comparison and aarch64 apparently treats char as unsigned. ++ (index.words): use unsigned char for consistency. ++ * fwrite.c (printpage): factor out beginning/end page values. ++ * tests/rangetwo.idx, ++ * tests/rangetwo.ind, ++ * tests/rangetwo.ist: new simple test. ++ * tests/mendex.test: run the rangetwo test. ++ Report from Johannes Hielscher, ++ https://tug.org/pipermail/tlbuild/2021q1/004873.html. ++ +diff -up texlive-base-20210325/source/texk/mendexk/fwrite.c.archfix texlive-base-20210325/source/texk/mendexk/fwrite.c +--- texlive-base-20210325/source/texk/mendexk/fwrite.c.archfix 2021-05-27 15:02:37.867771347 -0400 ++++ texlive-base-20210325/source/texk/mendexk/fwrite.c 2021-05-27 15:07:00.875160968 -0400 +@@ -326,7 +326,11 @@ static void printpage(struct index *ind, + for(j=0;jj) { +- if (pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0])==pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])) { ++ int epage = pnumconv(ind[num].p[cc].page, ++ ind[num].p[cc].attr[0]); ++ int bpage = pnumconv(ind[num].p[j].page, ++ ind[num].p[j].attr[0]); ++ if (epage==bpage) { + j=cc-1; + continue; + } +@@ -337,20 +341,18 @@ static void printpage(struct index *ind, + if (strlen(ind[num].p[j].enc)>0) { + SPRINTF(buff,"%s%s%s",encap_prefix,ind[num].p[j].enc,encap_infix); + } +- if (strlen(suffix_3p)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))==2) { +- SAPPENDF(buff,"%s",ind[num].p[j].page); ++ /* print beginning of range */ ++ SAPPENDF(buff,"%s",ind[num].p[j].page); ++ if (strlen(suffix_3p)>0 && (epage-bpage)==2) { + SAPPENDF(buff,"%s",suffix_3p); + } +- else if (strlen(suffix_mp)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))>=2) { +- SAPPENDF(buff,"%s",ind[num].p[j].page); ++ else if (strlen(suffix_mp)>0 && (epage-bpage)>=2) { + SAPPENDF(buff,"%s",suffix_mp); + } +- else if (strlen(suffix_2p)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))==1) { +- SAPPENDF(buff,"%s",ind[num].p[j].page); ++ else if (strlen(suffix_2p)>0 && (epage-bpage)==1) { + SAPPENDF(buff,"%s",suffix_2p); + } + else { +- SAPPENDF(buff,"%s",ind[num].p[j].page); + SAPPENDF(buff,"%s",delim_r); + SAPPENDF(buff,"%s",ind[num].p[cc].page); + } +diff -up texlive-base-20210325/source/texk/mendexk/mendex.h.archfix texlive-base-20210325/source/texk/mendexk/mendex.h +--- texlive-base-20210325/source/texk/mendexk/mendex.h.archfix 2021-05-27 15:07:31.173321042 -0400 ++++ texlive-base-20210325/source/texk/mendexk/mendex.h 2021-05-27 15:07:50.429422834 -0400 +@@ -14,12 +14,12 @@ + struct page { + char *page; + char *enc; +- char attr[3]; ++ int attr[3]; + }; + + struct index { + int num; +- char words; ++ unsigned char words; + char *org[3]; + char *dic[3]; + char *idx[3]; +diff -up texlive-base-20210325/source/texk/mendexk/tests/mendex.test.archfix texlive-base-20210325/source/texk/mendexk/tests/mendex.test +--- texlive-base-20210325/source/texk/mendexk/tests/mendex.test.archfix 2021-05-27 15:08:12.848541283 -0400 ++++ texlive-base-20210325/source/texk/mendexk/tests/mendex.test 2021-05-27 15:13:28.110189451 -0400 +@@ -1,6 +1,6 @@ + #! /bin/sh -vx + # $Id: mendex.test 58575 2021-03-21 08:54:52Z takuji $ +-# Copyright 2017 Karl Berry ++# Copyright 2017-2021 Karl Berry + # Copyright 2013 Peter Breitenlohner + # You may freely use, modify and/or distribute this file. + +@@ -24,13 +24,21 @@ cat $srcdir/tests/uni.idx | \ + >uni.ind2 2>uni.ilg2 \ + && diff $srcdir/tests/uni.ind uni.ind2 || exit 1 + +-# test for page_precedence +-./mendex -s $srcdir/tests/pprec0.ist $srcdir/tests/pprecA.idx -o pprecA-0.ind1 -t pprecA-0.ilg \ ++# test for two-element range suffix_2p ++./mendex -s $srcdir/tests/rangetwo.ist $srcdir/tests/rangetwo.idx \ ++ -o rangetwo.ind1 -t rangetwo.ilg \ ++ && diff $srcdir/tests/rangetwo.ind rangetwo.ind1 || exit 1 ++ ++# test for page_precedence and suffix_3p ++./mendex -s $srcdir/tests/pprec0.ist $srcdir/tests/pprecA.idx \ ++ -o pprecA-0.ind1 -t pprecA-0.ilg \ + && diff $srcdir/tests/pprecA-0.ind pprecA-0.ind1 || exit 1 + +-./mendex -s $srcdir/tests/pprec1.ist $srcdir/tests/pprecA.idx -o pprecA-1.ind1 -t pprecA-1.ilg \ ++./mendex -s $srcdir/tests/pprec1.ist $srcdir/tests/pprecA.idx \ ++ -o pprecA-1.ind1 -t pprecA-1.ilg \ + && diff $srcdir/tests/pprecA-1.ind pprecA-1.ind1 || exit 1 + +-./mendex -s $srcdir/tests/pprec2.ist $srcdir/tests/pprecA.idx -o pprecA-2.ind1 -t pprecA-2.ilg \ ++./mendex -s $srcdir/tests/pprec2.ist $srcdir/tests/pprecA.idx \ ++ -o pprecA-2.ind1 -t pprecA-2.ilg \ + && diff $srcdir/tests/pprecA-2.ind pprecA-2.ind1 || exit 1 + +diff -up texlive-base-20210325/source/texk/mendexk/tests/rangetwo.idx.archfix texlive-base-20210325/source/texk/mendexk/tests/rangetwo.idx +--- texlive-base-20210325/source/texk/mendexk/tests/rangetwo.idx.archfix 2021-05-27 15:14:09.048403077 -0400 ++++ texlive-base-20210325/source/texk/mendexk/tests/rangetwo.idx 2021-05-27 15:14:03.416373688 -0400 +@@ -0,0 +1,2 @@ ++\indexentry{entryA}{1} ++\indexentry{entryA}{2} +diff -up texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ind.archfix texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ind +--- texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ind.archfix 2021-05-27 15:14:30.601515549 -0400 ++++ texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ind 2021-05-27 15:14:59.970668807 -0400 +@@ -0,0 +1,5 @@ ++\begin{theindex} ++ ++ \item entryA, 1[[sfx2p]] ++ ++\end{theindex} +diff -up texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ist.archfix texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ist +--- texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ist.archfix 2021-05-27 15:15:24.712797920 -0400 ++++ texlive-base-20210325/source/texk/mendexk/tests/rangetwo.ist 2021-05-27 15:15:51.412937250 -0400 +@@ -0,0 +1,2 @@ ++suffix_2p "[[sfx2p]]" ++ +diff -U0 texlive-base-20210325/source/texk/upmendex/ChangeLog.archfix texlive-base-20210325/source/texk/upmendex/ChangeLog +--- texlive-base-20210325/source/texk/upmendex/ChangeLog.archfix 2021-05-27 14:58:11.836365567 -0400 ++++ texlive-base-20210325/source/texk/upmendex/ChangeLog 2021-05-27 14:59:42.613845327 -0400 +@@ -0,0 +1,11 @@ ++2021-05-09 Karl Berry ++ * mendex.h (page.attr): use int, not char, since we do signed ++ comparison and aarch64 apparently treats char as unsigned. ++ (index.words): use unsigned char for consistency. ++ ++ Same fixes as for mendex; see mendexk/ChangeLog. ++ Report from Johannes Hielscher, ++ https://tug.org/pipermail/tlbuild/2021q1/004873.html ++ and follow-up: ++ https://tug.org/pipermail/tlbuild/2021q2/004911.html ++ +diff -up texlive-base-20210325/source/texk/upmendex/mendex.h.archfix texlive-base-20210325/source/texk/upmendex/mendex.h +--- texlive-base-20210325/source/texk/upmendex/mendex.h.archfix 2021-05-27 14:59:52.774899013 -0400 ++++ texlive-base-20210325/source/texk/upmendex/mendex.h 2021-05-27 15:01:33.381430577 -0400 +@@ -14,12 +14,12 @@ + struct page { + char *page; + char *enc; +- char attr[3]; ++ int attr[3]; + }; + + struct index { + int num; +- char words; ++ unsigned char words; + UChar *dic[3]; + UChar *org[3]; + UChar *idx[3]; diff --git a/SOURCES/texlive-base-20210325-no-setpdfwrite.patch b/SOURCES/texlive-base-20210325-no-setpdfwrite.patch new file mode 100644 index 0000000..a68f83c --- /dev/null +++ b/SOURCES/texlive-base-20210325-no-setpdfwrite.patch @@ -0,0 +1,10 @@ +diff -up texlive-base-20210325/source/utils/asymptote/patches/dvipdf.no-setpdfwrite texlive-base-20210325/source/utils/asymptote/patches/dvipdf +--- texlive-base-20210325/source/utils/asymptote/patches/dvipdf.no-setpdfwrite 2021-06-21 10:05:10.392585479 -0400 ++++ texlive-base-20210325/source/utils/asymptote/patches/dvipdf 2021-06-21 10:05:30.969698895 -0400 +@@ -50,5 +50,5 @@ fi + + # We have to include the options twice because -I only takes effect if it + # appears before other options. +-exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite - ++exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c 3000000 setvmthreshold - + diff --git a/SOURCES/texlive-base-20210325-pdftoepdf-fix-crash.patch b/SOURCES/texlive-base-20210325-pdftoepdf-fix-crash.patch new file mode 100644 index 0000000..b19d483 --- /dev/null +++ b/SOURCES/texlive-base-20210325-pdftoepdf-fix-crash.patch @@ -0,0 +1,34 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.debug texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.debug 2022-01-20 10:25:58.454233201 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-01-20 12:57:04.241513707 -0500 +@@ -962,21 +962,30 @@ A change + does not improve the situation. + The changes below seem to work fine. + */ ++ if (page->getGroup() != NULL) { ++ groupDict = Object(page->getGroup()); ++ } else { ++ pdftex_fail("PDF inclusion: getGroup failed"); ++ } ++/* + // begin modification + groupDict = pageDict->lookup("Group"); + Dict *dic1 = page->getGroup(); + Dict *dic2 = groupDict.getDict(); + // replace dic2 in groupDict with dic1 + l = dic2->getLength(); ++ pdftex_warn("dic2 length is %d", l); + for (i = 0; i < l; i++) { + groupDict.dictRemove(dic2->getKey(i)); + } + l = dic1->getLength(); ++ pdftex_warn("dic1 length is %d", l); + for (i = 0; i < l; i++) { + groupDict.dictAdd(dic1->getKey(i), + dic1->getValNF(i).copy()); + } + // end modification ++*/ + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); + } + } diff --git a/SOURCES/texlive-base-20210325-poppler-22.01.0.patch b/SOURCES/texlive-base-20210325-poppler-22.01.0.patch new file mode 100644 index 0000000..483eb6a --- /dev/null +++ b/SOURCES/texlive-base-20210325-poppler-22.01.0.patch @@ -0,0 +1,49 @@ +diff -up texlive-base-20210325/source/texk/web2c/Makefile.in.poppler22 texlive-base-20210325/source/texk/web2c/Makefile.in +--- texlive-base-20210325/source/texk/web2c/Makefile.in.poppler22 2022-01-15 16:57:15.020632269 -0500 ++++ texlive-base-20210325/source/texk/web2c/Makefile.in 2022-01-15 17:00:20.852711238 -0500 +@@ -4573,7 +4573,7 @@ ttf2afm_tests = pdftexdir/ttf2afm.test + # Force Automake to use CXXLD for linking + nodist_EXTRA_pdftosrc_SOURCES = dummy.cxx + pdftosrc_CPPFLAGS = $(pdftex_cppflags) +-pdftosrc_CXXFLAGS = $(WARNING_CXXFLAGS) ++pdftosrc_CXXFLAGS = $(WARNING_CXXFLAGS) -std=c++17 + pdftosrc_SOURCES = pdftexdir/pdftosrc.cc + pdftosrc_LDADD = $(pdftex_ldadd) $(LDADD) + pdftosrc_DEPENDENCIES = $(pdftex_dependencies) +@@ -18343,7 +18343,7 @@ xetex-xetex-pool.obj: xetex-pool.c + @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + + pdftexdir/libpdftex_a-pdftoepdf.o: pdftexdir/pdftoepdf.cc +-@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpdftex_a_CPPFLAGS) $(CPPFLAGS) $(libpdftex_a_CXXFLAGS) $(CXXFLAGS) -MT pdftexdir/libpdftex_a-pdftoepdf.o -MD -MP -MF pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo -c -o pdftexdir/libpdftex_a-pdftoepdf.o `test -f 'pdftexdir/pdftoepdf.cc' || echo '$(srcdir)/'`pdftexdir/pdftoepdf.cc ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpdftex_a_CPPFLAGS) $(CPPFLAGS) -std=c++17 $(libpdftex_a_CXXFLAGS) $(CXXFLAGS) -MT pdftexdir/libpdftex_a-pdftoepdf.o -MD -MP -MF pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo -c -o pdftexdir/libpdftex_a-pdftoepdf.o `test -f 'pdftexdir/pdftoepdf.cc' || echo '$(srcdir)/'`pdftexdir/pdftoepdf.cc + @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Po + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='pdftexdir/pdftoepdf.cc' object='pdftexdir/libpdftex_a-pdftoepdf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler22 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler22 2022-01-14 15:01:29.811105995 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-01-14 15:01:29.831106120 -0500 +@@ -964,17 +964,17 @@ The changes below seem to work fine. + */ + // begin modification + groupDict = pageDict->lookup("Group"); +- const Dict& dic1 = page->getGroup(); +- const Dict& dic2 = groupDict.getDict(); ++ Dict *dic1 = page->getGroup(); ++ Dict *dic2 = groupDict.getDict(); + // replace dic2 in groupDict with dic1 +- l = dic2.getLength(); ++ l = dic2->getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictRemove(dic2.getKey(i)); ++ groupDict.dictRemove(dic2->getKey(i)); + } +- l = dic1.getLength(); ++ l = dic1->getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictAdd(dic1.getKey(i), +- dic1.getValNF(i).copy()); ++ groupDict.dictAdd(dic1->getKey(i), ++ dic1->getValNF(i).copy()); + } + // end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); diff --git a/SOURCES/texlive.tlpdb b/SOURCES/texlive.tlpdb new file mode 100644 index 0000000..563f9c7 --- /dev/null +++ b/SOURCES/texlive.tlpdb @@ -0,0 +1,345510 @@ +name 00texlive.config +category TLCore +revision 54074 +shortdesc TeX Live network archive option settings +longdesc This package contains configuration options for the TeX Live +longdesc archive. If container_split_{doc,src}_files/1 are dependencies, +longdesc the {doc,src} files are split into separate containers +longdesc (.tar.xz) during container build time. This has NO effect on +longdesc the appearance within texlive.tlpdb. It is only on the +longdesc container level. The container_format/WHATEVER specifies the +longdesc format, currently "xz" is the only supported value (generating +longdesc .tar.xz files). release/YYYY specifies the release number as +longdesc used in the installer. minrelease/ZZZZ specifies the minimum +longdesc release for which this repository is valid, i.e., a release of +longdesc ZZZZ or later can theoretically be upgraded. Further +longdesc information concerning upgrades can be found at +longdesc http://www.tug.org/texlive/upgrade.html frozen/[01] specifies +longdesc whether the release has been frozen The default values are +longdesc taken from TeXLive::TLConfig::TLPDBConfigs hash values at tlpdb +longdesc creation time but can be overridden here if necessary. For +longdesc information on the 00texlive prefix see +longdesc 00texlive.installation(.tlpsrc) +depend container_format/xz +depend container_split_doc_files/1 +depend container_split_src_files/1 +depend frozen/0 +depend minrelease/2016 +depend release/2021 +depend revision/59092 + +name 00texlive.image +category TLCore +revision 59079 +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 +longdesc repository, the installer archives, and, for archival purposes, +longdesc distributed as an extra tarball under source/. The +longdesc IgnorePatterns in the check_files routine in tlmgr.pl augment +longdesc this list. Those are not included in the source/ tarball. For +longdesc information on the 00texlive prefix see +longdesc 00texlive.installation(.tlpsrc) +runfiles size=13860 + .mkisofsrc + autorun.inf + texmf-dist/README + texmf-dist/doc/man/Makefile + texmf-dist/doc/man/man1/Makefile + texmf-dist/doc/man/man5/Makefile + texmf-dist/fonts/map/dvipdfmx/updmap/kanjix.map + texmf-dist/fonts/map/dvips/updmap/builtin35.map + texmf-dist/fonts/map/dvips/updmap/download35.map + texmf-dist/fonts/map/dvips/updmap/ps2pk.map + texmf-dist/fonts/map/dvips/updmap/psfonts.map + texmf-dist/fonts/map/dvips/updmap/psfonts_pk.map + texmf-dist/fonts/map/dvips/updmap/psfonts_t1.map + texmf-dist/fonts/map/pdftex/updmap/pdftex.map + texmf-dist/fonts/map/pdftex/updmap/pdftex_dl14.map + texmf-dist/fonts/map/pdftex/updmap/pdftex_ndl14.map + texmf-dist/scripts/texlive-extra/README + texmf-dist/scripts/texlive/Makefile + texmf-dist/scripts/texlive/README + texmf-dist/scripts/texlive/mktexlsr.bat + tlpkg/bin/archive/svnchangelog + tlpkg/bin/archive/tl-dump-texcatalogue + tlpkg/bin/archive/tl-fix-container-infos + tlpkg/bin/archive/tl-update-keywords + tlpkg/bin/archive/tl-update-testcow + tlpkg/bin/c2b + tlpkg/bin/c2l + tlpkg/bin/c2lx + tlpkg/bin/cmp-textfiles + tlpkg/bin/ctan2tl + tlpkg/bin/deref-symlinks + tlpkg/bin/htmltext + tlpkg/bin/pdflatex-preserve-pdf + tlpkg/bin/tl-check-files-by-format + tlpkg/bin/tl-check-fmttriggers + tlpkg/bin/tl-check-symlinks + tlpkg/bin/tl-check-tlnet-consistency + tlpkg/bin/tl-check-wrapper-consistency + tlpkg/bin/tl-compare-tlpdbs + tlpkg/bin/tl-dump-texcatalogue + tlpkg/bin/tl-fix-container-links + tlpkg/bin/tl-makeself-from-tlnet + tlpkg/bin/tl-prune-platforms + tlpkg/bin/tl-sign-file + tlpkg/bin/tl-try-install + tlpkg/bin/tl-try-makeself + tlpkg/bin/tl-update-4ht + tlpkg/bin/tl-update-asy + tlpkg/bin/tl-update-auto + tlpkg/bin/tl-update-bindir + tlpkg/bin/tl-update-containers + tlpkg/bin/tl-update-ctan-mirrors + tlpkg/bin/tl-update-docindex + tlpkg/bin/tl-update-images + tlpkg/bin/tl-update-install-pkg + tlpkg/bin/tl-update-linked-scripts + tlpkg/bin/tl-update-man + tlpkg/bin/tl-update-messages + tlpkg/bin/tl-update-nsis + tlpkg/bin/tl-update-tlcritical + tlpkg/bin/tl-update-tlnet + tlpkg/bin/tl-update-tlpdb + tlpkg/bin/tl-update-txi + tlpkg/bin/tlcritical-diff + tlpkg/bin/tlgpg + tlpkg/bin/tlgpg-verify + tlpkg/bin/tlpfiles + tlpkg/bin/tlpkg-by-size + tlpkg/bin/tlpkg-ctan-check + tlpkg/bin/tlpkginfo + tlpkg/bin/tlprm + tlpkg/bin/tlpsizes + tlpkg/bin/tltestnet + tlpkg/dev/README + tlpkg/dev/check-tk-used-font.pl + tlpkg/dev/dev.multi-source-support-v2.patch + tlpkg/dev/dev.mupdmap-integration + tlpkg/dev/dev.sys_redir.README + tlpkg/dev/dev.sys_redir.pl + tlpkg/dev/dev.update-tlpdb-option-on-the-fly.README + tlpkg/dev/dev.update-tlpdb-option-on-the-fly.patch + tlpkg/dev/groff-utf8/devps/AB + tlpkg/dev/groff-utf8/devps/ABI + tlpkg/dev/groff-utf8/devps/AI + tlpkg/dev/groff-utf8/devps/AR + tlpkg/dev/groff-utf8/devps/BMB + tlpkg/dev/groff-utf8/devps/BMBI + tlpkg/dev/groff-utf8/devps/BMI + tlpkg/dev/groff-utf8/devps/BMR + tlpkg/dev/groff-utf8/devps/CB + tlpkg/dev/groff-utf8/devps/CBI + tlpkg/dev/groff-utf8/devps/CI + tlpkg/dev/groff-utf8/devps/CR + tlpkg/dev/groff-utf8/devps/EURO + tlpkg/dev/groff-utf8/devps/HB + tlpkg/dev/groff-utf8/devps/HBI + tlpkg/dev/groff-utf8/devps/HI + tlpkg/dev/groff-utf8/devps/HNB + tlpkg/dev/groff-utf8/devps/HNBI + tlpkg/dev/groff-utf8/devps/HNI + tlpkg/dev/groff-utf8/devps/HNR + tlpkg/dev/groff-utf8/devps/HR + tlpkg/dev/groff-utf8/devps/NB + tlpkg/dev/groff-utf8/devps/NBI + tlpkg/dev/groff-utf8/devps/NI + tlpkg/dev/groff-utf8/devps/NR + tlpkg/dev/groff-utf8/devps/PB + tlpkg/dev/groff-utf8/devps/PBI + tlpkg/dev/groff-utf8/devps/PI + tlpkg/dev/groff-utf8/devps/PR + tlpkg/dev/groff-utf8/devps/S + tlpkg/dev/groff-utf8/devps/SS + tlpkg/dev/groff-utf8/devps/TB + tlpkg/dev/groff-utf8/devps/TBI + tlpkg/dev/groff-utf8/devps/TI + tlpkg/dev/groff-utf8/devps/TR + tlpkg/dev/groff-utf8/devps/ZCMI + tlpkg/dev/groff-utf8/devps/ZD + tlpkg/dev/groff-utf8/devps/ZDR + tlpkg/dev/groff-utf8/devps/a010013l.pfa + tlpkg/dev/groff-utf8/devps/a010015l.pfa + tlpkg/dev/groff-utf8/devps/a010033l.pfa + tlpkg/dev/groff-utf8/devps/a010035l.pfa + tlpkg/dev/groff-utf8/devps/b018012l.pfa + tlpkg/dev/groff-utf8/devps/b018015l.pfa + tlpkg/dev/groff-utf8/devps/b018032l.pfa + tlpkg/dev/groff-utf8/devps/b018035l.pfa + tlpkg/dev/groff-utf8/devps/c059013l.pfa + tlpkg/dev/groff-utf8/devps/c059016l.pfa + tlpkg/dev/groff-utf8/devps/c059033l.pfa + tlpkg/dev/groff-utf8/devps/c059036l.pfa + tlpkg/dev/groff-utf8/devps/d050000l.pfa + tlpkg/dev/groff-utf8/devps/download + tlpkg/dev/groff-utf8/devps/freeeuro.afm + tlpkg/dev/groff-utf8/devps/freeeuro.pfa + tlpkg/dev/groff-utf8/devps/n019003l.pfa + tlpkg/dev/groff-utf8/devps/n019004l.pfa + tlpkg/dev/groff-utf8/devps/n019023l.pfa + tlpkg/dev/groff-utf8/devps/n019024l.pfa + tlpkg/dev/groff-utf8/devps/n019043l.pfa + tlpkg/dev/groff-utf8/devps/n019044l.pfa + tlpkg/dev/groff-utf8/devps/n019063l.pfa + tlpkg/dev/groff-utf8/devps/n019064l.pfa + tlpkg/dev/groff-utf8/devps/n021003l.pfa + tlpkg/dev/groff-utf8/devps/n021004l.pfa + tlpkg/dev/groff-utf8/devps/n021023l.pfa + tlpkg/dev/groff-utf8/devps/n021024l.pfa + tlpkg/dev/groff-utf8/devps/n022003l.pfa + tlpkg/dev/groff-utf8/devps/n022004l.pfa + tlpkg/dev/groff-utf8/devps/n022023l.pfa + tlpkg/dev/groff-utf8/devps/n022024l.pfa + tlpkg/dev/groff-utf8/devps/p052003l.pfa + tlpkg/dev/groff-utf8/devps/p052004l.pfa + tlpkg/dev/groff-utf8/devps/p052023l.pfa + tlpkg/dev/groff-utf8/devps/p052024l.pfa + tlpkg/dev/groff-utf8/devps/s050000l.pfa + tlpkg/dev/groff-utf8/devps/symbol.afm + tlpkg/dev/groff-utf8/devps/symbolmap + tlpkg/dev/groff-utf8/devps/symbolsl.afm + tlpkg/dev/groff-utf8/devps/z003034l.pfa + tlpkg/dev/groff-utf8/devps/zapfdr.afm + tlpkg/dev/makeself-runscript.sh + tlpkg/dev/mktextex.pl + tlpkg/dev/mktexupd.texlua + tlpkg/dev/profiles/README + tlpkg/dev/profiles/TLcomma.pro + tlpkg/dev/profiles/TLctx.pro + tlpkg/dev/profiles/TLfmt.pro + tlpkg/dev/profiles/TLfull.pro + tlpkg/dev/profiles/TLinfra+exe.pro + tlpkg/dev/profiles/TLinfra+none.pro + tlpkg/dev/profiles/TLinfra+sys.pro + tlpkg/dev/profiles/TLinfra.pro + tlpkg/dev/profiles/TLlink.pro + tlpkg/dev/profiles/TLmed.pro + tlpkg/dev/profiles/TLmeddoc.pro + tlpkg/dev/profiles/TLmedfmt.pro + tlpkg/dev/profiles/TLmin.pro + tlpkg/dev/profiles/TLmindoc.pro + tlpkg/dev/profiles/TLminfmt.pro + tlpkg/dev/profiles/TLminfmtpaper.pro + tlpkg/dev/profiles/TLroot.pro + tlpkg/dev/profiles/TLsmall.pro + tlpkg/dev/profiles/TLspace.pro + tlpkg/dev/profiles/TLtetex.pro + tlpkg/dev/python/parse_tlpdb.py + tlpkg/dev/srclist.txt + tlpkg/dev/tlnet-disabled-packages.txt + tlpkg/dev/tlpdb-read-test + tlpkg/dev/udfhd.pl + tlpkg/doc/00texlive-packages.txt + tlpkg/doc/articles/bachotex08/install08gui.png + tlpkg/doc/articles/bachotex08/install08text.pdf + tlpkg/doc/articles/bachotex08/install08text.tex + tlpkg/doc/articles/bachotex08/tlinst-BT08-abstract.pdf + tlpkg/doc/articles/bachotex08/tlinst-BT08-abstract.tex + tlpkg/doc/articles/bachotex08/tlinst-BT08.pdf + tlpkg/doc/articles/bachotex08/tlinst-BT08.tex + tlpkg/doc/articles/cstug08/berry.jpg + tlpkg/doc/articles/cstug08/cstug08.pdf + tlpkg/doc/articles/cstug08/cstug08.tex + tlpkg/doc/articles/cstug08/dviout.png + tlpkg/doc/articles/cstug08/gui-collections.png + tlpkg/doc/articles/cstug08/gui-installer.png + tlpkg/doc/articles/cstug08/gui-lang.png + tlpkg/doc/articles/cstug08/gui-scheme.png + tlpkg/doc/articles/cstug08/gui-systems.png + tlpkg/doc/articles/cstug08/install-directory.png + tlpkg/doc/articles/cstug08/install-options.png + tlpkg/doc/articles/cstug08/install08text-crop.pdf + tlpkg/doc/articles/cstug08/psview.png + tlpkg/doc/articles/cstug08/rahtz.png + tlpkg/doc/articles/cstug08/start_impressive.sh + tlpkg/doc/articles/cstug08/talk-bacho08.tex + tlpkg/doc/articles/cstug08/talk-guit2008.tex + tlpkg/doc/articles/cstug08/texcollection2008-large.png + tlpkg/doc/articles/cstug08/texlive2008-logo-2.png + tlpkg/doc/articles/cstug08/tlmgrgui-update.png + tlpkg/doc/articles/cstug08/update-tlmgr-finish.png + tlpkg/doc/articles/cstug08/update-tlmgr-w32.png + tlpkg/doc/articles/guit07/tlinfra-guit07.pdf + tlpkg/doc/articles/guit07/tlinfra-guit07.tex + tlpkg/doc/articles/guit08/Makefile + tlpkg/doc/articles/guit08/dviout.png + tlpkg/doc/articles/guit08/gui-collections.png + tlpkg/doc/articles/guit08/gui-installer-de.png + tlpkg/doc/articles/guit08/gui-installer.png + tlpkg/doc/articles/guit08/gui-lang.png + tlpkg/doc/articles/guit08/gui-progress.png + tlpkg/doc/articles/guit08/gui-scheme.png + tlpkg/doc/articles/guit08/gui-systems.png + tlpkg/doc/articles/guit08/install08text.tex + tlpkg/doc/articles/guit08/psview.png + tlpkg/doc/articles/guit08/tlmgr-article.bib + tlpkg/doc/articles/guit08/tlmgr-article.pdf + tlpkg/doc/articles/guit08/tlmgr-article.tex + tlpkg/doc/articles/guit08/tlmgr-dtk.ltx + tlpkg/doc/articles/guit08/tlmgr-dtk.pdf + tlpkg/doc/articles/guit08/tlmgr-dtk.tex + tlpkg/doc/articles/guit08/tlmgrgui-arch-de.png + tlpkg/doc/articles/guit08/tlmgrgui-arch.png + tlpkg/doc/articles/guit08/tlmgrgui-install-de.png + tlpkg/doc/articles/guit08/tlmgrgui-install.png + tlpkg/doc/articles/guit08/tlmgrgui-log-de.png + tlpkg/doc/articles/guit08/tlmgrgui-options-de.png + tlpkg/doc/articles/guit08/tlmgrgui-options.png + tlpkg/doc/articles/guit08/tlmgrgui-remove-de.png + tlpkg/doc/articles/guit08/tlmgrgui-remove.png + tlpkg/doc/articles/guit08/tlmgrgui-update-de.png + tlpkg/doc/articles/guit08/tlmgrgui-update.png + tlpkg/doc/coding-style.txt + tlpkg/doc/graphics/GNUmakefile + tlpkg/doc/graphics/README + tlpkg/doc/graphics/TeXLive-square.png + tlpkg/doc/graphics/TeXLive-square.xcf + tlpkg/doc/graphics/lion-small.png + tlpkg/doc/graphics/lion.png + tlpkg/doc/graphics/texlive-installer-graphics-horiz.png + tlpkg/doc/graphics/texlive-installer-graphics-vert.png + tlpkg/doc/graphics/texlive-installer-graphics.pdf + tlpkg/doc/graphics/texlive-installer-graphics.tex + tlpkg/doc/graphics/texlive-yearless.pdf + tlpkg/doc/graphics/texlive-yearless.svg + tlpkg/doc/graphics/texlive-yearless.tex + tlpkg/doc/graphics/tl-lion-black.eps + tlpkg/doc/graphics/tl-lion-black.pdf + tlpkg/doc/historic/Perl-API.txt + tlpkg/doc/historic/Shell-API.txt + tlpkg/doc/historic/installer-layout.txt + tlpkg/doc/historic/list-file-format.txt + tlpkg/doc/historic/multi-repository.txt + tlpkg/doc/historic/new-installer-layout.txt + tlpkg/doc/historic/specification.txt + tlpkg/doc/historic/texlive2008-wizard.png + tlpkg/doc/historic/texlive2008.png + tlpkg/doc/historic/texlive2009-wizard.png + tlpkg/doc/historic/texlive2010.png + tlpkg/doc/historic/texlive2011.png + tlpkg/doc/historic/texlive2012.png + tlpkg/doc/historic/texlive2013-horizontal.png + tlpkg/doc/historic/texlive2014-horizontal.png + tlpkg/doc/historic/texlive2014.png + tlpkg/doc/historic/texlive2015-horizontal.png + tlpkg/doc/historic/texlive2015.png + tlpkg/doc/historic/texlive2016-horizontal.png + tlpkg/doc/historic/texlive2016.png + tlpkg/doc/historic/texlive2017-horizontal.png + tlpkg/doc/historic/texlive2017.png + tlpkg/doc/historic/texlive2018-horizontal.png + tlpkg/doc/historic/texlive2018.png + tlpkg/doc/historic/tl-security-proposal.txt + tlpkg/doc/historic/tlmgr-keyword-search-interface.txt + tlpkg/doc/historic/tlmgr-shell.txt + tlpkg/doc/howto-translations.txt + tlpkg/doc/integrated-pool.tex + tlpkg/doc/json-formats.txt + tlpkg/doc/packages.txt + tlpkg/doc/releng.txt + tlpkg/doc/repository-setup.txt + tlpkg/libexec/bin-cjkutils.pl + tlpkg/libexec/c90.pl + tlpkg/libexec/cjk-build.pl + tlpkg/libexec/cjk.pl + tlpkg/libexec/ctan2tds + tlpkg/libexec/dnp.pl + tlpkg/libexec/garuda-c90.pl + tlpkg/libexec/install-tl.nsi + tlpkg/libexec/makeself-header.sh + tlpkg/libexec/mptopdf-extract + tlpkg/libexec/norasi-c90.pl + tlpkg/libexec/place + tlpkg/libexec/rename + tlpkg/libexec/svnchangelog.sed + tlpkg/libexec/tl-merge-tlpdb + tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc + tlpkg/tlpsrc/00texlive.config.tlpsrc + tlpkg/tlpsrc/00texlive.image.tlpsrc + tlpkg/tlpsrc/00texlive.installation.tlpsrc + tlpkg/tlpsrc/00texlive.installer.tlpsrc + tlpkg/tlpsrc/12many.tlpsrc + tlpkg/tlpsrc/2up.tlpsrc + tlpkg/tlpsrc/Asana-Math.tlpsrc + tlpkg/tlpsrc/ESIEEcv.tlpsrc + tlpkg/tlpsrc/GS1.tlpsrc + tlpkg/tlpsrc/HA-prosper.tlpsrc + tlpkg/tlpsrc/IEEEconf.tlpsrc + tlpkg/tlpsrc/IEEEtran.tlpsrc + tlpkg/tlpsrc/MemoirChapStyles.tlpsrc + tlpkg/tlpsrc/SIstyle.tlpsrc + tlpkg/tlpsrc/SIunits.tlpsrc + tlpkg/tlpsrc/Tabbing.tlpsrc + tlpkg/tlpsrc/Type1fonts.tlpsrc + tlpkg/tlpsrc/a0poster.tlpsrc + tlpkg/tlpsrc/a2ping.tlpsrc + tlpkg/tlpsrc/a4wide.tlpsrc + tlpkg/tlpsrc/a5comb.tlpsrc + tlpkg/tlpsrc/aaai-named.tlpsrc + tlpkg/tlpsrc/aalok.tlpsrc + tlpkg/tlpsrc/aastex.tlpsrc + tlpkg/tlpsrc/abbr.tlpsrc + tlpkg/tlpsrc/abc.tlpsrc + tlpkg/tlpsrc/abnt.tlpsrc + tlpkg/tlpsrc/abntex2.tlpsrc + tlpkg/tlpsrc/abraces.tlpsrc + tlpkg/tlpsrc/abstract.tlpsrc + tlpkg/tlpsrc/abstyles.tlpsrc + tlpkg/tlpsrc/academicons.tlpsrc + tlpkg/tlpsrc/accanthis.tlpsrc + tlpkg/tlpsrc/accents.tlpsrc + tlpkg/tlpsrc/accessibility.tlpsrc + tlpkg/tlpsrc/accfonts.tlpsrc + tlpkg/tlpsrc/accsupp.tlpsrc + tlpkg/tlpsrc/achemso.tlpsrc + tlpkg/tlpsrc/acmart.tlpsrc + tlpkg/tlpsrc/acmconf.tlpsrc + tlpkg/tlpsrc/acro.tlpsrc + tlpkg/tlpsrc/acronym.tlpsrc + tlpkg/tlpsrc/acroterm.tlpsrc + tlpkg/tlpsrc/active-conf.tlpsrc + tlpkg/tlpsrc/actuarialangle.tlpsrc + tlpkg/tlpsrc/actuarialsymbol.tlpsrc + tlpkg/tlpsrc/addfont.tlpsrc + tlpkg/tlpsrc/addliga.tlpsrc + tlpkg/tlpsrc/addlines.tlpsrc + tlpkg/tlpsrc/adfathesis.tlpsrc + tlpkg/tlpsrc/adforn.tlpsrc + tlpkg/tlpsrc/adfsymbols.tlpsrc + tlpkg/tlpsrc/adhocfilelist.tlpsrc + tlpkg/tlpsrc/adigraph.tlpsrc + tlpkg/tlpsrc/adjmulticol.tlpsrc + tlpkg/tlpsrc/adjustbox.tlpsrc + tlpkg/tlpsrc/adobemapping.tlpsrc + tlpkg/tlpsrc/adrconv.tlpsrc + tlpkg/tlpsrc/adtrees.tlpsrc + tlpkg/tlpsrc/advdate.tlpsrc + tlpkg/tlpsrc/ae.tlpsrc + tlpkg/tlpsrc/aeguill.tlpsrc + tlpkg/tlpsrc/aesupp.tlpsrc + tlpkg/tlpsrc/afm2pl.tlpsrc + tlpkg/tlpsrc/afparticle.tlpsrc + tlpkg/tlpsrc/afthesis.tlpsrc + tlpkg/tlpsrc/aguplus.tlpsrc + tlpkg/tlpsrc/aiaa.tlpsrc + tlpkg/tlpsrc/aichej.tlpsrc + tlpkg/tlpsrc/ajl.tlpsrc + tlpkg/tlpsrc/akktex.tlpsrc + tlpkg/tlpsrc/akletter.tlpsrc + tlpkg/tlpsrc/akshar.tlpsrc + tlpkg/tlpsrc/albatross.tlpsrc + tlpkg/tlpsrc/alegreya.tlpsrc + tlpkg/tlpsrc/aleph.tlpsrc + tlpkg/tlpsrc/alertmessage.tlpsrc + tlpkg/tlpsrc/alfaslabone.tlpsrc + tlpkg/tlpsrc/alg.tlpsrc + tlpkg/tlpsrc/algobox.tlpsrc + tlpkg/tlpsrc/algolrevived.tlpsrc + tlpkg/tlpsrc/algorithm2e.tlpsrc + tlpkg/tlpsrc/algorithmicx.tlpsrc + tlpkg/tlpsrc/algorithms.tlpsrc + tlpkg/tlpsrc/algpseudocodex.tlpsrc + tlpkg/tlpsrc/algxpar.tlpsrc + tlpkg/tlpsrc/aligned-overset.tlpsrc + tlpkg/tlpsrc/alkalami.tlpsrc + tlpkg/tlpsrc/allrunes.tlpsrc + tlpkg/tlpsrc/almendra.tlpsrc + tlpkg/tlpsrc/almfixed.tlpsrc + tlpkg/tlpsrc/alnumsec.tlpsrc + tlpkg/tlpsrc/alpha-persian.tlpsrc + tlpkg/tlpsrc/alphalph.tlpsrc + tlpkg/tlpsrc/altfont.tlpsrc + tlpkg/tlpsrc/ametsoc.tlpsrc + tlpkg/tlpsrc/amiri.tlpsrc + tlpkg/tlpsrc/amiweb2c-guide.tlpsrc + tlpkg/tlpsrc/amsaddr.tlpsrc + tlpkg/tlpsrc/amscdx.tlpsrc + tlpkg/tlpsrc/amscls-doc.tlpsrc + tlpkg/tlpsrc/amscls.tlpsrc + tlpkg/tlpsrc/amsfonts.tlpsrc + tlpkg/tlpsrc/amslatex-primer.tlpsrc + tlpkg/tlpsrc/amsldoc-it.tlpsrc + tlpkg/tlpsrc/amsldoc-vn.tlpsrc + tlpkg/tlpsrc/amsmath-it.tlpsrc + tlpkg/tlpsrc/amsmath.tlpsrc + tlpkg/tlpsrc/amsrefs.tlpsrc + tlpkg/tlpsrc/amstex.tlpsrc + tlpkg/tlpsrc/amsthdoc-it.tlpsrc + tlpkg/tlpsrc/animate.tlpsrc + tlpkg/tlpsrc/annee-scolaire.tlpsrc + tlpkg/tlpsrc/annotate.tlpsrc + tlpkg/tlpsrc/anonchap.tlpsrc + tlpkg/tlpsrc/anonymous-acm.tlpsrc + tlpkg/tlpsrc/anonymouspro.tlpsrc + tlpkg/tlpsrc/answers.tlpsrc + tlpkg/tlpsrc/antanilipsum.tlpsrc + tlpkg/tlpsrc/antiqua.tlpsrc + tlpkg/tlpsrc/antomega.tlpsrc + tlpkg/tlpsrc/antt.tlpsrc + tlpkg/tlpsrc/anufinalexam.tlpsrc + tlpkg/tlpsrc/anyfontsize.tlpsrc + tlpkg/tlpsrc/anysize.tlpsrc + tlpkg/tlpsrc/aobs-tikz.tlpsrc + tlpkg/tlpsrc/aomart.tlpsrc + tlpkg/tlpsrc/apa.tlpsrc + tlpkg/tlpsrc/apa6.tlpsrc + tlpkg/tlpsrc/apa6e.tlpsrc + tlpkg/tlpsrc/apa7.tlpsrc + tlpkg/tlpsrc/apacite.tlpsrc + tlpkg/tlpsrc/apalike-german.tlpsrc + tlpkg/tlpsrc/apalike2.tlpsrc + tlpkg/tlpsrc/apnum.tlpsrc + tlpkg/tlpsrc/appendix.tlpsrc + tlpkg/tlpsrc/appendixnumberbeamer.tlpsrc + tlpkg/tlpsrc/apprendre-a-programmer-en-tex.tlpsrc + tlpkg/tlpsrc/apprends-latex.tlpsrc + tlpkg/tlpsrc/apptools.tlpsrc + tlpkg/tlpsrc/apxproof.tlpsrc + tlpkg/tlpsrc/arabi-add.tlpsrc + tlpkg/tlpsrc/arabi.tlpsrc + tlpkg/tlpsrc/arabicfront.tlpsrc + tlpkg/tlpsrc/arabluatex.tlpsrc + tlpkg/tlpsrc/arabtex.tlpsrc + tlpkg/tlpsrc/arabxetex.tlpsrc + tlpkg/tlpsrc/aramaic-serto.tlpsrc + tlpkg/tlpsrc/arara.tlpsrc + tlpkg/tlpsrc/archaeologie.tlpsrc + tlpkg/tlpsrc/archaic.tlpsrc + tlpkg/tlpsrc/archivo.tlpsrc + tlpkg/tlpsrc/arcs.tlpsrc + tlpkg/tlpsrc/arev.tlpsrc + tlpkg/tlpsrc/arimo.tlpsrc + tlpkg/tlpsrc/armtex.tlpsrc + tlpkg/tlpsrc/around-the-bend.tlpsrc + tlpkg/tlpsrc/arphic-ttf.tlpsrc + tlpkg/tlpsrc/arphic.tlpsrc + tlpkg/tlpsrc/arraycols.tlpsrc + tlpkg/tlpsrc/arrayjobx.tlpsrc + tlpkg/tlpsrc/arraysort.tlpsrc + tlpkg/tlpsrc/arsclassica.tlpsrc + tlpkg/tlpsrc/articleingud.tlpsrc + tlpkg/tlpsrc/arvo.tlpsrc + tlpkg/tlpsrc/arydshln.tlpsrc + tlpkg/tlpsrc/asaetr.tlpsrc + tlpkg/tlpsrc/asapsym.tlpsrc + tlpkg/tlpsrc/ascelike.tlpsrc + tlpkg/tlpsrc/ascii-chart.tlpsrc + tlpkg/tlpsrc/ascii-font.tlpsrc + tlpkg/tlpsrc/asciilist.tlpsrc + tlpkg/tlpsrc/ascmac.tlpsrc + tlpkg/tlpsrc/askinclude.tlpsrc + tlpkg/tlpsrc/askmaps.tlpsrc + tlpkg/tlpsrc/asmeconf.tlpsrc + tlpkg/tlpsrc/asmejour.tlpsrc + tlpkg/tlpsrc/aspectratio.tlpsrc + tlpkg/tlpsrc/assignment.tlpsrc + tlpkg/tlpsrc/assoccnt.tlpsrc + tlpkg/tlpsrc/association-matrix.tlpsrc + tlpkg/tlpsrc/astro.tlpsrc + tlpkg/tlpsrc/asyfig.tlpsrc + tlpkg/tlpsrc/asymptote-by-example-zh-cn.tlpsrc + tlpkg/tlpsrc/asymptote-faq-zh-cn.tlpsrc + tlpkg/tlpsrc/asymptote-manual-zh-cn.tlpsrc + tlpkg/tlpsrc/asymptote.tlpsrc + tlpkg/tlpsrc/asypictureb.tlpsrc + tlpkg/tlpsrc/atbegshi.tlpsrc + tlpkg/tlpsrc/atenddvi.tlpsrc + tlpkg/tlpsrc/atkinson.tlpsrc + tlpkg/tlpsrc/attachfile.tlpsrc + tlpkg/tlpsrc/attachfile2.tlpsrc + tlpkg/tlpsrc/atveryend.tlpsrc + tlpkg/tlpsrc/aucklandthesis.tlpsrc + tlpkg/tlpsrc/augie.tlpsrc + tlpkg/tlpsrc/auncial-new.tlpsrc + tlpkg/tlpsrc/aurical.tlpsrc + tlpkg/tlpsrc/aurl.tlpsrc + tlpkg/tlpsrc/authoraftertitle.tlpsrc + tlpkg/tlpsrc/authorarchive.tlpsrc + tlpkg/tlpsrc/authordate.tlpsrc + tlpkg/tlpsrc/authorindex.tlpsrc + tlpkg/tlpsrc/auto-pst-pdf-lua.tlpsrc + tlpkg/tlpsrc/auto-pst-pdf.tlpsrc + tlpkg/tlpsrc/autoaligne.tlpsrc + tlpkg/tlpsrc/autoarea.tlpsrc + tlpkg/tlpsrc/autobreak.tlpsrc + tlpkg/tlpsrc/autofancyhdr.tlpsrc + tlpkg/tlpsrc/automata.tlpsrc + tlpkg/tlpsrc/autonum.tlpsrc + tlpkg/tlpsrc/autopdf.tlpsrc + tlpkg/tlpsrc/autosp.tlpsrc + tlpkg/tlpsrc/auxhook.tlpsrc + tlpkg/tlpsrc/avantgar.tlpsrc + tlpkg/tlpsrc/avremu.tlpsrc + tlpkg/tlpsrc/awesomebox.tlpsrc + tlpkg/tlpsrc/axessibility.tlpsrc + tlpkg/tlpsrc/axodraw2.tlpsrc + tlpkg/tlpsrc/b1encoding.tlpsrc + tlpkg/tlpsrc/babel-albanian.tlpsrc + tlpkg/tlpsrc/babel-azerbaijani.tlpsrc + tlpkg/tlpsrc/babel-basque.tlpsrc + tlpkg/tlpsrc/babel-belarusian.tlpsrc + tlpkg/tlpsrc/babel-bosnian.tlpsrc + tlpkg/tlpsrc/babel-breton.tlpsrc + tlpkg/tlpsrc/babel-bulgarian.tlpsrc + tlpkg/tlpsrc/babel-catalan.tlpsrc + tlpkg/tlpsrc/babel-croatian.tlpsrc + tlpkg/tlpsrc/babel-czech.tlpsrc + tlpkg/tlpsrc/babel-danish.tlpsrc + tlpkg/tlpsrc/babel-dutch.tlpsrc + tlpkg/tlpsrc/babel-english.tlpsrc + tlpkg/tlpsrc/babel-esperanto.tlpsrc + tlpkg/tlpsrc/babel-estonian.tlpsrc + tlpkg/tlpsrc/babel-finnish.tlpsrc + tlpkg/tlpsrc/babel-french.tlpsrc + tlpkg/tlpsrc/babel-friulan.tlpsrc + tlpkg/tlpsrc/babel-galician.tlpsrc + tlpkg/tlpsrc/babel-georgian.tlpsrc + tlpkg/tlpsrc/babel-german.tlpsrc + tlpkg/tlpsrc/babel-greek.tlpsrc + tlpkg/tlpsrc/babel-hebrew.tlpsrc + tlpkg/tlpsrc/babel-hungarian.tlpsrc + tlpkg/tlpsrc/babel-icelandic.tlpsrc + tlpkg/tlpsrc/babel-indonesian.tlpsrc + tlpkg/tlpsrc/babel-interlingua.tlpsrc + tlpkg/tlpsrc/babel-irish.tlpsrc + tlpkg/tlpsrc/babel-italian.tlpsrc + tlpkg/tlpsrc/babel-japanese.tlpsrc + tlpkg/tlpsrc/babel-kurmanji.tlpsrc + tlpkg/tlpsrc/babel-latin.tlpsrc + tlpkg/tlpsrc/babel-latvian.tlpsrc + tlpkg/tlpsrc/babel-macedonian.tlpsrc + tlpkg/tlpsrc/babel-malay.tlpsrc + tlpkg/tlpsrc/babel-norsk.tlpsrc + tlpkg/tlpsrc/babel-occitan.tlpsrc + tlpkg/tlpsrc/babel-piedmontese.tlpsrc + tlpkg/tlpsrc/babel-polish.tlpsrc + tlpkg/tlpsrc/babel-portuges.tlpsrc + tlpkg/tlpsrc/babel-romanian.tlpsrc + tlpkg/tlpsrc/babel-romansh.tlpsrc + tlpkg/tlpsrc/babel-russian.tlpsrc + tlpkg/tlpsrc/babel-samin.tlpsrc + tlpkg/tlpsrc/babel-scottish.tlpsrc + tlpkg/tlpsrc/babel-serbian.tlpsrc + tlpkg/tlpsrc/babel-serbianc.tlpsrc + tlpkg/tlpsrc/babel-slovak.tlpsrc + tlpkg/tlpsrc/babel-slovenian.tlpsrc + tlpkg/tlpsrc/babel-sorbian.tlpsrc + tlpkg/tlpsrc/babel-spanish.tlpsrc + tlpkg/tlpsrc/babel-swedish.tlpsrc + tlpkg/tlpsrc/babel-thai.tlpsrc + tlpkg/tlpsrc/babel-turkish.tlpsrc + tlpkg/tlpsrc/babel-ukrainian.tlpsrc + tlpkg/tlpsrc/babel-vietnamese.tlpsrc + tlpkg/tlpsrc/babel-welsh.tlpsrc + tlpkg/tlpsrc/babel.tlpsrc + tlpkg/tlpsrc/babelbib.tlpsrc + tlpkg/tlpsrc/background.tlpsrc + tlpkg/tlpsrc/backnaur.tlpsrc + tlpkg/tlpsrc/baekmuk.tlpsrc + tlpkg/tlpsrc/bagpipe.tlpsrc + tlpkg/tlpsrc/bangorcsthesis.tlpsrc + tlpkg/tlpsrc/bangorexam.tlpsrc + tlpkg/tlpsrc/bangtex.tlpsrc + tlpkg/tlpsrc/bankstatement.tlpsrc + tlpkg/tlpsrc/barcodes.tlpsrc + tlpkg/tlpsrc/bardiag.tlpsrc + tlpkg/tlpsrc/barr.tlpsrc + tlpkg/tlpsrc/barracuda.tlpsrc + tlpkg/tlpsrc/bartel-chess-fonts.tlpsrc + tlpkg/tlpsrc/bashful.tlpsrc + tlpkg/tlpsrc/basicarith.tlpsrc + tlpkg/tlpsrc/baskervald.tlpsrc + tlpkg/tlpsrc/baskervaldx.tlpsrc + tlpkg/tlpsrc/baskervillef.tlpsrc + tlpkg/tlpsrc/basque-book.tlpsrc + tlpkg/tlpsrc/basque-date.tlpsrc + tlpkg/tlpsrc/bath-bst.tlpsrc + tlpkg/tlpsrc/bbcard.tlpsrc + tlpkg/tlpsrc/bbding.tlpsrc + tlpkg/tlpsrc/bbm-macros.tlpsrc + tlpkg/tlpsrc/bbm.tlpsrc + tlpkg/tlpsrc/bbold-type1.tlpsrc + tlpkg/tlpsrc/bbold.tlpsrc + tlpkg/tlpsrc/bchart.tlpsrc + tlpkg/tlpsrc/bclogo.tlpsrc + tlpkg/tlpsrc/beamer-FUBerlin.tlpsrc + tlpkg/tlpsrc/beamer-rl.tlpsrc + tlpkg/tlpsrc/beamer-tut-pt.tlpsrc + tlpkg/tlpsrc/beamer-verona.tlpsrc + tlpkg/tlpsrc/beamer.tlpsrc + tlpkg/tlpsrc/beamer2thesis.tlpsrc + tlpkg/tlpsrc/beamerappendixnote.tlpsrc + tlpkg/tlpsrc/beameraudience.tlpsrc + tlpkg/tlpsrc/beamerauxtheme.tlpsrc + tlpkg/tlpsrc/beamercolorthemeowl.tlpsrc + tlpkg/tlpsrc/beamerdarkthemes.tlpsrc + tlpkg/tlpsrc/beamerposter.tlpsrc + tlpkg/tlpsrc/beamersubframe.tlpsrc + tlpkg/tlpsrc/beamerswitch.tlpsrc + tlpkg/tlpsrc/beamertheme-cuerna.tlpsrc + tlpkg/tlpsrc/beamertheme-detlevcm.tlpsrc + tlpkg/tlpsrc/beamertheme-epyt.tlpsrc + tlpkg/tlpsrc/beamertheme-focus.tlpsrc + tlpkg/tlpsrc/beamertheme-light.tlpsrc + tlpkg/tlpsrc/beamertheme-metropolis.tlpsrc + tlpkg/tlpsrc/beamertheme-npbt.tlpsrc + tlpkg/tlpsrc/beamertheme-phnompenh.tlpsrc + tlpkg/tlpsrc/beamertheme-pure-minimalistic.tlpsrc + tlpkg/tlpsrc/beamertheme-saintpetersburg.tlpsrc + tlpkg/tlpsrc/beamertheme-trigon.tlpsrc + tlpkg/tlpsrc/beamertheme-upenn-bc.tlpsrc + tlpkg/tlpsrc/beamerthemejltree.tlpsrc + tlpkg/tlpsrc/beamerthemelalic.tlpsrc + tlpkg/tlpsrc/beamerthemenirma.tlpsrc + tlpkg/tlpsrc/beamerthemenord.tlpsrc + tlpkg/tlpsrc/bearwear.tlpsrc + tlpkg/tlpsrc/beaulivre.tlpsrc + tlpkg/tlpsrc/beebe.tlpsrc + tlpkg/tlpsrc/begingreek.tlpsrc + tlpkg/tlpsrc/begriff.tlpsrc + tlpkg/tlpsrc/beilstein.tlpsrc + tlpkg/tlpsrc/belleek.tlpsrc + tlpkg/tlpsrc/bengali.tlpsrc + tlpkg/tlpsrc/bera.tlpsrc + tlpkg/tlpsrc/berenisadf.tlpsrc + tlpkg/tlpsrc/besjournals.tlpsrc + tlpkg/tlpsrc/bestpapers.tlpsrc + tlpkg/tlpsrc/betababel.tlpsrc + tlpkg/tlpsrc/beton.tlpsrc + tlpkg/tlpsrc/beuron.tlpsrc + tlpkg/tlpsrc/bewerbung.tlpsrc + tlpkg/tlpsrc/bez123.tlpsrc + tlpkg/tlpsrc/bezierplot.tlpsrc + tlpkg/tlpsrc/bgteubner.tlpsrc + tlpkg/tlpsrc/bguq.tlpsrc + tlpkg/tlpsrc/bhcexam.tlpsrc + tlpkg/tlpsrc/bib-fr.tlpsrc + tlpkg/tlpsrc/bib2gls.tlpsrc + tlpkg/tlpsrc/bibarts.tlpsrc + tlpkg/tlpsrc/biber.tlpsrc + tlpkg/tlpsrc/bibexport.tlpsrc + tlpkg/tlpsrc/bibhtml.tlpsrc + tlpkg/tlpsrc/biblatex-abnt.tlpsrc + tlpkg/tlpsrc/biblatex-ajc2020unofficial.tlpsrc + tlpkg/tlpsrc/biblatex-anonymous.tlpsrc + tlpkg/tlpsrc/biblatex-apa.tlpsrc + tlpkg/tlpsrc/biblatex-apa6.tlpsrc + tlpkg/tlpsrc/biblatex-archaeology.tlpsrc + tlpkg/tlpsrc/biblatex-arthistory-bonn.tlpsrc + tlpkg/tlpsrc/biblatex-bath.tlpsrc + tlpkg/tlpsrc/biblatex-bookinarticle.tlpsrc + tlpkg/tlpsrc/biblatex-bookinother.tlpsrc + tlpkg/tlpsrc/biblatex-bwl.tlpsrc + tlpkg/tlpsrc/biblatex-caspervector.tlpsrc + tlpkg/tlpsrc/biblatex-cheatsheet.tlpsrc + tlpkg/tlpsrc/biblatex-chem.tlpsrc + tlpkg/tlpsrc/biblatex-chicago.tlpsrc + tlpkg/tlpsrc/biblatex-claves.tlpsrc + tlpkg/tlpsrc/biblatex-dw.tlpsrc + tlpkg/tlpsrc/biblatex-enc.tlpsrc + tlpkg/tlpsrc/biblatex-ext.tlpsrc + tlpkg/tlpsrc/biblatex-fiwi.tlpsrc + tlpkg/tlpsrc/biblatex-gb7714-2015.tlpsrc + tlpkg/tlpsrc/biblatex-german-legal.tlpsrc + tlpkg/tlpsrc/biblatex-gost.tlpsrc + tlpkg/tlpsrc/biblatex-historian.tlpsrc + tlpkg/tlpsrc/biblatex-ieee.tlpsrc + tlpkg/tlpsrc/biblatex-ijsra.tlpsrc + tlpkg/tlpsrc/biblatex-iso690.tlpsrc + tlpkg/tlpsrc/biblatex-jura2.tlpsrc + tlpkg/tlpsrc/biblatex-juradiss.tlpsrc + tlpkg/tlpsrc/biblatex-license.tlpsrc + tlpkg/tlpsrc/biblatex-lni.tlpsrc + tlpkg/tlpsrc/biblatex-luh-ipw.tlpsrc + tlpkg/tlpsrc/biblatex-manuscripts-philology.tlpsrc + tlpkg/tlpsrc/biblatex-mla.tlpsrc + tlpkg/tlpsrc/biblatex-morenames.tlpsrc + tlpkg/tlpsrc/biblatex-multiple-dm.tlpsrc + tlpkg/tlpsrc/biblatex-musuos.tlpsrc + tlpkg/tlpsrc/biblatex-nature.tlpsrc + tlpkg/tlpsrc/biblatex-nejm.tlpsrc + tlpkg/tlpsrc/biblatex-nottsclassic.tlpsrc + tlpkg/tlpsrc/biblatex-opcit-booktitle.tlpsrc + tlpkg/tlpsrc/biblatex-oxref.tlpsrc + tlpkg/tlpsrc/biblatex-philosophy.tlpsrc + tlpkg/tlpsrc/biblatex-phys.tlpsrc + tlpkg/tlpsrc/biblatex-publist.tlpsrc + tlpkg/tlpsrc/biblatex-realauthor.tlpsrc + tlpkg/tlpsrc/biblatex-sbl.tlpsrc + tlpkg/tlpsrc/biblatex-science.tlpsrc + tlpkg/tlpsrc/biblatex-shortfields.tlpsrc + tlpkg/tlpsrc/biblatex-socialscienceshuberlin.tlpsrc + tlpkg/tlpsrc/biblatex-software.tlpsrc + tlpkg/tlpsrc/biblatex-source-division.tlpsrc + tlpkg/tlpsrc/biblatex-subseries.tlpsrc + tlpkg/tlpsrc/biblatex-swiss-legal.tlpsrc + tlpkg/tlpsrc/biblatex-trad.tlpsrc + tlpkg/tlpsrc/biblatex-true-citepages-omit.tlpsrc + tlpkg/tlpsrc/biblatex-unified.tlpsrc + tlpkg/tlpsrc/biblatex-vancouver.tlpsrc + tlpkg/tlpsrc/biblatex.tlpsrc + tlpkg/tlpsrc/biblatex2bibitem.tlpsrc + tlpkg/tlpsrc/bibleref-french.tlpsrc + tlpkg/tlpsrc/bibleref-german.tlpsrc + tlpkg/tlpsrc/bibleref-lds.tlpsrc + tlpkg/tlpsrc/bibleref-mouth.tlpsrc + tlpkg/tlpsrc/bibleref-parse.tlpsrc + tlpkg/tlpsrc/bibleref.tlpsrc + tlpkg/tlpsrc/bibletext.tlpsrc + tlpkg/tlpsrc/biblist.tlpsrc + tlpkg/tlpsrc/bibtex.tlpsrc + tlpkg/tlpsrc/bibtex8.tlpsrc + tlpkg/tlpsrc/bibtexperllibs.tlpsrc + tlpkg/tlpsrc/bibtexu.tlpsrc + tlpkg/tlpsrc/bibtopic.tlpsrc + tlpkg/tlpsrc/bibtopicprefix.tlpsrc + tlpkg/tlpsrc/bibunits.tlpsrc + tlpkg/tlpsrc/bidi-atbegshi.tlpsrc + tlpkg/tlpsrc/bidi.tlpsrc + tlpkg/tlpsrc/bidicontour.tlpsrc + tlpkg/tlpsrc/bidihl.tlpsrc + tlpkg/tlpsrc/bidipagegrid.tlpsrc + tlpkg/tlpsrc/bidipresentation.tlpsrc + tlpkg/tlpsrc/bidishadowtext.tlpsrc + tlpkg/tlpsrc/bigfoot.tlpsrc + tlpkg/tlpsrc/bigintcalc.tlpsrc + tlpkg/tlpsrc/bigints.tlpsrc + tlpkg/tlpsrc/binarytree.tlpsrc + tlpkg/tlpsrc/binomexp.tlpsrc + tlpkg/tlpsrc/biochemistry-colors.tlpsrc + tlpkg/tlpsrc/biocon.tlpsrc + tlpkg/tlpsrc/biolett-bst.tlpsrc + tlpkg/tlpsrc/bitelist.tlpsrc + tlpkg/tlpsrc/bithesis.tlpsrc + tlpkg/tlpsrc/bitpattern.tlpsrc + tlpkg/tlpsrc/bitset.tlpsrc + tlpkg/tlpsrc/bitter.tlpsrc + tlpkg/tlpsrc/bizcard.tlpsrc + tlpkg/tlpsrc/blacklettert1.tlpsrc + tlpkg/tlpsrc/blindtext.tlpsrc + tlpkg/tlpsrc/blkarray.tlpsrc + tlpkg/tlpsrc/blochsphere.tlpsrc + tlpkg/tlpsrc/block.tlpsrc + tlpkg/tlpsrc/blockdraw_mp.tlpsrc + tlpkg/tlpsrc/bloques.tlpsrc + tlpkg/tlpsrc/blowup.tlpsrc + tlpkg/tlpsrc/blox.tlpsrc + tlpkg/tlpsrc/bnumexpr.tlpsrc + tlpkg/tlpsrc/bodegraph.tlpsrc + tlpkg/tlpsrc/bohr.tlpsrc + tlpkg/tlpsrc/boisik.tlpsrc + tlpkg/tlpsrc/boites.tlpsrc + tlpkg/tlpsrc/bold-extra.tlpsrc + tlpkg/tlpsrc/boldtensors.tlpsrc + tlpkg/tlpsrc/bondgraph.tlpsrc + tlpkg/tlpsrc/bondgraphs.tlpsrc + tlpkg/tlpsrc/bookcover.tlpsrc + tlpkg/tlpsrc/bookdb.tlpsrc + tlpkg/tlpsrc/bookest.tlpsrc + tlpkg/tlpsrc/bookhands.tlpsrc + tlpkg/tlpsrc/booklet.tlpsrc + tlpkg/tlpsrc/bookman.tlpsrc + tlpkg/tlpsrc/bookmark.tlpsrc + tlpkg/tlpsrc/bookshelf.tlpsrc + tlpkg/tlpsrc/booktabs-de.tlpsrc + tlpkg/tlpsrc/booktabs-fr.tlpsrc + tlpkg/tlpsrc/booktabs.tlpsrc + tlpkg/tlpsrc/boolexpr.tlpsrc + tlpkg/tlpsrc/boondox.tlpsrc + tlpkg/tlpsrc/bophook.tlpsrc + tlpkg/tlpsrc/borceux.tlpsrc + tlpkg/tlpsrc/bosisio.tlpsrc + tlpkg/tlpsrc/boxedminipage.tlpsrc + tlpkg/tlpsrc/boxhandler.tlpsrc + tlpkg/tlpsrc/bpchem.tlpsrc + tlpkg/tlpsrc/bpolynomial.tlpsrc + tlpkg/tlpsrc/br-lex.tlpsrc + tlpkg/tlpsrc/bracketkey.tlpsrc + tlpkg/tlpsrc/braids.tlpsrc + tlpkg/tlpsrc/braille.tlpsrc + tlpkg/tlpsrc/braket.tlpsrc + tlpkg/tlpsrc/brandeis-dissertation.tlpsrc + tlpkg/tlpsrc/brandeis-problemset.tlpsrc + tlpkg/tlpsrc/brandeis-thesis.tlpsrc + tlpkg/tlpsrc/breakcites.tlpsrc + tlpkg/tlpsrc/breakurl.tlpsrc + tlpkg/tlpsrc/bredzenie.tlpsrc + tlpkg/tlpsrc/breqn.tlpsrc + tlpkg/tlpsrc/bropd.tlpsrc + tlpkg/tlpsrc/brushscr.tlpsrc + tlpkg/tlpsrc/bubblesort.tlpsrc + tlpkg/tlpsrc/buctthesis.tlpsrc + tlpkg/tlpsrc/bullcntr.tlpsrc + tlpkg/tlpsrc/bundledoc.tlpsrc + tlpkg/tlpsrc/burmese.tlpsrc + tlpkg/tlpsrc/businesscard-qrcode.tlpsrc + tlpkg/tlpsrc/bussproofs-extra.tlpsrc + tlpkg/tlpsrc/bussproofs.tlpsrc + tlpkg/tlpsrc/bxbase.tlpsrc + tlpkg/tlpsrc/bxcalc.tlpsrc + tlpkg/tlpsrc/bxcjkjatype.tlpsrc + tlpkg/tlpsrc/bxdpx-beamer.tlpsrc + tlpkg/tlpsrc/bxdvidriver.tlpsrc + tlpkg/tlpsrc/bxeepic.tlpsrc + tlpkg/tlpsrc/bxenclose.tlpsrc + tlpkg/tlpsrc/bxghost.tlpsrc + tlpkg/tlpsrc/bxjaholiday.tlpsrc + tlpkg/tlpsrc/bxjalipsum.tlpsrc + tlpkg/tlpsrc/bxjaprnind.tlpsrc + tlpkg/tlpsrc/bxjatoucs.tlpsrc + tlpkg/tlpsrc/bxjscls.tlpsrc + tlpkg/tlpsrc/bxnewfont.tlpsrc + tlpkg/tlpsrc/bxorigcapt.tlpsrc + tlpkg/tlpsrc/bxpapersize.tlpsrc + tlpkg/tlpsrc/bxpdfver.tlpsrc + tlpkg/tlpsrc/bxtexlogo.tlpsrc + tlpkg/tlpsrc/bxwareki.tlpsrc + tlpkg/tlpsrc/byo-twemojis.tlpsrc + tlpkg/tlpsrc/bytefield.tlpsrc + tlpkg/tlpsrc/c-pascal.tlpsrc + tlpkg/tlpsrc/c90.tlpsrc + tlpkg/tlpsrc/cabin.tlpsrc + tlpkg/tlpsrc/cachepic.tlpsrc + tlpkg/tlpsrc/caladea.tlpsrc + tlpkg/tlpsrc/calcage.tlpsrc + tlpkg/tlpsrc/calctab.tlpsrc + tlpkg/tlpsrc/calculation.tlpsrc + tlpkg/tlpsrc/calculator.tlpsrc + tlpkg/tlpsrc/calligra-type1.tlpsrc + tlpkg/tlpsrc/calligra.tlpsrc + tlpkg/tlpsrc/callouts.tlpsrc + tlpkg/tlpsrc/calrsfs.tlpsrc + tlpkg/tlpsrc/cals.tlpsrc + tlpkg/tlpsrc/calxxxx-yyyy.tlpsrc + tlpkg/tlpsrc/cancel.tlpsrc + tlpkg/tlpsrc/canoniclayout.tlpsrc + tlpkg/tlpsrc/cantarell.tlpsrc + tlpkg/tlpsrc/capt-of.tlpsrc + tlpkg/tlpsrc/captcont.tlpsrc + tlpkg/tlpsrc/captdef.tlpsrc + tlpkg/tlpsrc/caption.tlpsrc + tlpkg/tlpsrc/carbohydrates.tlpsrc + tlpkg/tlpsrc/carlisle.tlpsrc + tlpkg/tlpsrc/carlito.tlpsrc + tlpkg/tlpsrc/carolmin-ps.tlpsrc + tlpkg/tlpsrc/cascade.tlpsrc + tlpkg/tlpsrc/cascadia-code.tlpsrc + tlpkg/tlpsrc/cascadilla.tlpsrc + tlpkg/tlpsrc/cases.tlpsrc + tlpkg/tlpsrc/casyl.tlpsrc + tlpkg/tlpsrc/catchfile.tlpsrc + tlpkg/tlpsrc/catchfilebetweentags.tlpsrc + tlpkg/tlpsrc/catcodes.tlpsrc + tlpkg/tlpsrc/catechis.tlpsrc + tlpkg/tlpsrc/catoptions.tlpsrc + tlpkg/tlpsrc/causets.tlpsrc + tlpkg/tlpsrc/cbcoptic.tlpsrc + tlpkg/tlpsrc/cbfonts-fd.tlpsrc + tlpkg/tlpsrc/cbfonts.tlpsrc + tlpkg/tlpsrc/cc-pl.tlpsrc + tlpkg/tlpsrc/ccaption.tlpsrc + tlpkg/tlpsrc/ccfonts.tlpsrc + tlpkg/tlpsrc/ccicons.tlpsrc + tlpkg/tlpsrc/cclicenses.tlpsrc + tlpkg/tlpsrc/ccool.tlpsrc + tlpkg/tlpsrc/cd-cover.tlpsrc + tlpkg/tlpsrc/cd.tlpsrc + tlpkg/tlpsrc/cdpbundl.tlpsrc + tlpkg/tlpsrc/cell.tlpsrc + tlpkg/tlpsrc/cellprops.tlpsrc + tlpkg/tlpsrc/cellspace.tlpsrc + tlpkg/tlpsrc/celtic.tlpsrc + tlpkg/tlpsrc/censor.tlpsrc + tlpkg/tlpsrc/centeredline.tlpsrc + tlpkg/tlpsrc/centerlastline.tlpsrc + tlpkg/tlpsrc/cesenaexam.tlpsrc + tlpkg/tlpsrc/cfr-initials.tlpsrc + tlpkg/tlpsrc/cfr-lm.tlpsrc + tlpkg/tlpsrc/changebar.tlpsrc + tlpkg/tlpsrc/changelayout.tlpsrc + tlpkg/tlpsrc/changelog.tlpsrc + tlpkg/tlpsrc/changepage.tlpsrc + tlpkg/tlpsrc/changes.tlpsrc + tlpkg/tlpsrc/chappg.tlpsrc + tlpkg/tlpsrc/chapterfolder.tlpsrc + tlpkg/tlpsrc/charissil.tlpsrc + tlpkg/tlpsrc/charter.tlpsrc + tlpkg/tlpsrc/chbibref.tlpsrc + tlpkg/tlpsrc/cheatsheet.tlpsrc + tlpkg/tlpsrc/checkcites.tlpsrc + tlpkg/tlpsrc/checkend.tlpsrc + tlpkg/tlpsrc/checklistings.tlpsrc + tlpkg/tlpsrc/chem-journal.tlpsrc + tlpkg/tlpsrc/chemarrow.tlpsrc + tlpkg/tlpsrc/chembst.tlpsrc + tlpkg/tlpsrc/chemcompounds.tlpsrc + tlpkg/tlpsrc/chemcono.tlpsrc + tlpkg/tlpsrc/chemexec.tlpsrc + tlpkg/tlpsrc/chemfig.tlpsrc + tlpkg/tlpsrc/chemformula.tlpsrc + tlpkg/tlpsrc/chemgreek.tlpsrc + tlpkg/tlpsrc/chemmacros.tlpsrc + tlpkg/tlpsrc/chemnum.tlpsrc + tlpkg/tlpsrc/chemplants.tlpsrc + tlpkg/tlpsrc/chemschemex.tlpsrc + tlpkg/tlpsrc/chemsec.tlpsrc + tlpkg/tlpsrc/chemstyle.tlpsrc + tlpkg/tlpsrc/cherokee.tlpsrc + tlpkg/tlpsrc/chess-problem-diagrams.tlpsrc + tlpkg/tlpsrc/chess.tlpsrc + tlpkg/tlpsrc/chessboard.tlpsrc + tlpkg/tlpsrc/chessfss.tlpsrc + tlpkg/tlpsrc/chet.tlpsrc + tlpkg/tlpsrc/chextras.tlpsrc + tlpkg/tlpsrc/chhaya.tlpsrc + tlpkg/tlpsrc/chicago-annote.tlpsrc + tlpkg/tlpsrc/chicago.tlpsrc + tlpkg/tlpsrc/chicagoa.tlpsrc + tlpkg/tlpsrc/chickenize.tlpsrc + tlpkg/tlpsrc/chifoot.tlpsrc + tlpkg/tlpsrc/childdoc.tlpsrc + tlpkg/tlpsrc/chinese-jfm.tlpsrc + tlpkg/tlpsrc/chivo.tlpsrc + tlpkg/tlpsrc/chkfloat.tlpsrc + tlpkg/tlpsrc/chklref.tlpsrc + tlpkg/tlpsrc/chktex.tlpsrc + tlpkg/tlpsrc/chletter.tlpsrc + tlpkg/tlpsrc/chngcntr.tlpsrc + tlpkg/tlpsrc/chordbars.tlpsrc + tlpkg/tlpsrc/chordbox.tlpsrc + tlpkg/tlpsrc/chronology.tlpsrc + tlpkg/tlpsrc/chronosys.tlpsrc + tlpkg/tlpsrc/chs-physics-report.tlpsrc + tlpkg/tlpsrc/chscite.tlpsrc + tlpkg/tlpsrc/churchslavonic.tlpsrc + tlpkg/tlpsrc/cinzel.tlpsrc + tlpkg/tlpsrc/circ.tlpsrc + tlpkg/tlpsrc/circledsteps.tlpsrc + tlpkg/tlpsrc/circuit-macros.tlpsrc + tlpkg/tlpsrc/circuitikz.tlpsrc + tlpkg/tlpsrc/cite.tlpsrc + tlpkg/tlpsrc/citeall.tlpsrc + tlpkg/tlpsrc/citeref.tlpsrc + tlpkg/tlpsrc/cje.tlpsrc + tlpkg/tlpsrc/cjhebrew.tlpsrc + tlpkg/tlpsrc/cjk-gs-integrate.tlpsrc + tlpkg/tlpsrc/cjk-ko.tlpsrc + tlpkg/tlpsrc/cjk.tlpsrc + tlpkg/tlpsrc/cjkpunct.tlpsrc + tlpkg/tlpsrc/cjkutils.tlpsrc + tlpkg/tlpsrc/clara.tlpsrc + tlpkg/tlpsrc/classics.tlpsrc + tlpkg/tlpsrc/classicthesis.tlpsrc + tlpkg/tlpsrc/classpack.tlpsrc + tlpkg/tlpsrc/cleanthesis.tlpsrc + tlpkg/tlpsrc/clearsans.tlpsrc + tlpkg/tlpsrc/clefval.tlpsrc + tlpkg/tlpsrc/cleveref.tlpsrc + tlpkg/tlpsrc/clipboard.tlpsrc + tlpkg/tlpsrc/clock.tlpsrc + tlpkg/tlpsrc/clojure-pamphlet.tlpsrc + tlpkg/tlpsrc/cloze.tlpsrc + tlpkg/tlpsrc/clrdblpg.tlpsrc + tlpkg/tlpsrc/clrscode.tlpsrc + tlpkg/tlpsrc/clrscode3e.tlpsrc + tlpkg/tlpsrc/clrstrip.tlpsrc + tlpkg/tlpsrc/cluttex.tlpsrc + tlpkg/tlpsrc/cm-lgc.tlpsrc + tlpkg/tlpsrc/cm-mf-extra-bold.tlpsrc + tlpkg/tlpsrc/cm-super.tlpsrc + tlpkg/tlpsrc/cm-unicode.tlpsrc + tlpkg/tlpsrc/cm.tlpsrc + tlpkg/tlpsrc/cmap.tlpsrc + tlpkg/tlpsrc/cmarrows.tlpsrc + tlpkg/tlpsrc/cmathbb.tlpsrc + tlpkg/tlpsrc/cmbright.tlpsrc + tlpkg/tlpsrc/cmcyr.tlpsrc + tlpkg/tlpsrc/cmdstring.tlpsrc + tlpkg/tlpsrc/cmdtrack.tlpsrc + tlpkg/tlpsrc/cmexb.tlpsrc + tlpkg/tlpsrc/cmextra.tlpsrc + tlpkg/tlpsrc/cmll.tlpsrc + tlpkg/tlpsrc/cmpica.tlpsrc + tlpkg/tlpsrc/cmpj.tlpsrc + tlpkg/tlpsrc/cmsd.tlpsrc + tlpkg/tlpsrc/cmsrb.tlpsrc + tlpkg/tlpsrc/cmtiup.tlpsrc + tlpkg/tlpsrc/cmupint.tlpsrc + tlpkg/tlpsrc/cnbwp.tlpsrc + tlpkg/tlpsrc/cnltx.tlpsrc + tlpkg/tlpsrc/cns.tlpsrc + tlpkg/tlpsrc/cntformats.tlpsrc + tlpkg/tlpsrc/cntperchap.tlpsrc + tlpkg/tlpsrc/cochineal.tlpsrc + tlpkg/tlpsrc/codeanatomy.tlpsrc + tlpkg/tlpsrc/codedoc.tlpsrc + tlpkg/tlpsrc/codepage.tlpsrc + tlpkg/tlpsrc/codesection.tlpsrc + tlpkg/tlpsrc/codicefiscaleitaliano.tlpsrc + tlpkg/tlpsrc/coelacanth.tlpsrc + tlpkg/tlpsrc/collcell.tlpsrc + tlpkg/tlpsrc/collectbox.tlpsrc + tlpkg/tlpsrc/collection-basic.tlpsrc + tlpkg/tlpsrc/collection-bibtexextra.tlpsrc + tlpkg/tlpsrc/collection-binextra.tlpsrc + tlpkg/tlpsrc/collection-context.tlpsrc + tlpkg/tlpsrc/collection-fontsextra.tlpsrc + tlpkg/tlpsrc/collection-fontsrecommended.tlpsrc + tlpkg/tlpsrc/collection-fontutils.tlpsrc + tlpkg/tlpsrc/collection-formatsextra.tlpsrc + tlpkg/tlpsrc/collection-games.tlpsrc + tlpkg/tlpsrc/collection-humanities.tlpsrc + tlpkg/tlpsrc/collection-langarabic.tlpsrc + tlpkg/tlpsrc/collection-langchinese.tlpsrc + tlpkg/tlpsrc/collection-langcjk.tlpsrc + tlpkg/tlpsrc/collection-langcyrillic.tlpsrc + tlpkg/tlpsrc/collection-langczechslovak.tlpsrc + tlpkg/tlpsrc/collection-langenglish.tlpsrc + tlpkg/tlpsrc/collection-langeuropean.tlpsrc + tlpkg/tlpsrc/collection-langfrench.tlpsrc + tlpkg/tlpsrc/collection-langgerman.tlpsrc + tlpkg/tlpsrc/collection-langgreek.tlpsrc + tlpkg/tlpsrc/collection-langitalian.tlpsrc + tlpkg/tlpsrc/collection-langjapanese.tlpsrc + tlpkg/tlpsrc/collection-langkorean.tlpsrc + tlpkg/tlpsrc/collection-langother.tlpsrc + tlpkg/tlpsrc/collection-langpolish.tlpsrc + tlpkg/tlpsrc/collection-langportuguese.tlpsrc + tlpkg/tlpsrc/collection-langspanish.tlpsrc + tlpkg/tlpsrc/collection-latex.tlpsrc + tlpkg/tlpsrc/collection-latexextra.tlpsrc + tlpkg/tlpsrc/collection-latexrecommended.tlpsrc + tlpkg/tlpsrc/collection-luatex.tlpsrc + tlpkg/tlpsrc/collection-mathscience.tlpsrc + tlpkg/tlpsrc/collection-metapost.tlpsrc + tlpkg/tlpsrc/collection-music.tlpsrc + tlpkg/tlpsrc/collection-pictures.tlpsrc + tlpkg/tlpsrc/collection-plaingeneric.tlpsrc + tlpkg/tlpsrc/collection-pstricks.tlpsrc + tlpkg/tlpsrc/collection-publishers.tlpsrc + tlpkg/tlpsrc/collection-texworks.tlpsrc + tlpkg/tlpsrc/collection-wintools.tlpsrc + tlpkg/tlpsrc/collection-xetex.tlpsrc + tlpkg/tlpsrc/collref.tlpsrc + tlpkg/tlpsrc/colophon.tlpsrc + tlpkg/tlpsrc/color-edits.tlpsrc + tlpkg/tlpsrc/colordoc.tlpsrc + tlpkg/tlpsrc/colorinfo.tlpsrc + tlpkg/tlpsrc/coloring.tlpsrc + tlpkg/tlpsrc/colorist.tlpsrc + tlpkg/tlpsrc/colorprofiles.tlpsrc + tlpkg/tlpsrc/colorsep.tlpsrc + tlpkg/tlpsrc/colorspace.tlpsrc + tlpkg/tlpsrc/colortab.tlpsrc + tlpkg/tlpsrc/colortbl.tlpsrc + tlpkg/tlpsrc/colorwav.tlpsrc + tlpkg/tlpsrc/colorweb.tlpsrc + tlpkg/tlpsrc/colourchange.tlpsrc + tlpkg/tlpsrc/combelow.tlpsrc + tlpkg/tlpsrc/combine.tlpsrc + tlpkg/tlpsrc/combinedgraphics.tlpsrc + tlpkg/tlpsrc/combofont.tlpsrc + tlpkg/tlpsrc/comfortaa.tlpsrc + tlpkg/tlpsrc/comicneue.tlpsrc + tlpkg/tlpsrc/comma.tlpsrc + tlpkg/tlpsrc/commado.tlpsrc + tlpkg/tlpsrc/commath.tlpsrc + tlpkg/tlpsrc/commedit.tlpsrc + tlpkg/tlpsrc/comment.tlpsrc + tlpkg/tlpsrc/commutative-diagrams.tlpsrc + tlpkg/tlpsrc/compactbib.tlpsrc + tlpkg/tlpsrc/compare.tlpsrc + tlpkg/tlpsrc/competences.tlpsrc + tlpkg/tlpsrc/complexity.tlpsrc + tlpkg/tlpsrc/components-of-TeX.tlpsrc + tlpkg/tlpsrc/comprehensive.tlpsrc + tlpkg/tlpsrc/computational-complexity.tlpsrc + tlpkg/tlpsrc/concepts.tlpsrc + tlpkg/tlpsrc/concmath-fonts.tlpsrc + tlpkg/tlpsrc/concmath.tlpsrc + tlpkg/tlpsrc/concprog.tlpsrc + tlpkg/tlpsrc/concrete.tlpsrc + tlpkg/tlpsrc/conditext.tlpsrc + tlpkg/tlpsrc/confproc.tlpsrc + tlpkg/tlpsrc/constants.tlpsrc + tlpkg/tlpsrc/conteq.tlpsrc + tlpkg/tlpsrc/context-account.tlpsrc + tlpkg/tlpsrc/context-algorithmic.tlpsrc + tlpkg/tlpsrc/context-animation.tlpsrc + tlpkg/tlpsrc/context-annotation.tlpsrc + tlpkg/tlpsrc/context-bnf.tlpsrc + tlpkg/tlpsrc/context-chromato.tlpsrc + tlpkg/tlpsrc/context-cmscbf.tlpsrc + tlpkg/tlpsrc/context-cmttbf.tlpsrc + tlpkg/tlpsrc/context-construction-plan.tlpsrc + tlpkg/tlpsrc/context-cyrillicnumbers.tlpsrc + tlpkg/tlpsrc/context-degrade.tlpsrc + tlpkg/tlpsrc/context-fancybreak.tlpsrc + tlpkg/tlpsrc/context-filter.tlpsrc + tlpkg/tlpsrc/context-french.tlpsrc + tlpkg/tlpsrc/context-fullpage.tlpsrc + tlpkg/tlpsrc/context-gantt.tlpsrc + tlpkg/tlpsrc/context-gnuplot.tlpsrc + tlpkg/tlpsrc/context-handlecsv.tlpsrc + tlpkg/tlpsrc/context-inifile.tlpsrc + tlpkg/tlpsrc/context-layout.tlpsrc + tlpkg/tlpsrc/context-letter.tlpsrc + tlpkg/tlpsrc/context-lettrine.tlpsrc + tlpkg/tlpsrc/context-mathsets.tlpsrc + tlpkg/tlpsrc/context-notes-zh-cn.tlpsrc + tlpkg/tlpsrc/context-rst.tlpsrc + tlpkg/tlpsrc/context-ruby.tlpsrc + tlpkg/tlpsrc/context-simplefonts.tlpsrc + tlpkg/tlpsrc/context-simpleslides.tlpsrc + tlpkg/tlpsrc/context-title.tlpsrc + tlpkg/tlpsrc/context-transliterator.tlpsrc + tlpkg/tlpsrc/context-typearea.tlpsrc + tlpkg/tlpsrc/context-typescripts.tlpsrc + tlpkg/tlpsrc/context-vim.tlpsrc + tlpkg/tlpsrc/context-visualcounter.tlpsrc + tlpkg/tlpsrc/context.tlpsrc + tlpkg/tlpsrc/continue.tlpsrc + tlpkg/tlpsrc/contour.tlpsrc + tlpkg/tlpsrc/contracard.tlpsrc + tlpkg/tlpsrc/conv-xkv.tlpsrc + tlpkg/tlpsrc/convbkmk.tlpsrc + tlpkg/tlpsrc/cooking-units.tlpsrc + tlpkg/tlpsrc/cooking.tlpsrc + tlpkg/tlpsrc/cookingsymbols.tlpsrc + tlpkg/tlpsrc/cool.tlpsrc + tlpkg/tlpsrc/coollist.tlpsrc + tlpkg/tlpsrc/coolstr.tlpsrc + tlpkg/tlpsrc/coolthms.tlpsrc + tlpkg/tlpsrc/cooltooltips.tlpsrc + tlpkg/tlpsrc/coordsys.tlpsrc + tlpkg/tlpsrc/copyedit.tlpsrc + tlpkg/tlpsrc/copyrightbox.tlpsrc + tlpkg/tlpsrc/cormorantgaramond.tlpsrc + tlpkg/tlpsrc/correctmathalign.tlpsrc + tlpkg/tlpsrc/coseoul.tlpsrc + tlpkg/tlpsrc/countriesofeurope.tlpsrc + tlpkg/tlpsrc/counttexruns.tlpsrc + tlpkg/tlpsrc/courier-scaled.tlpsrc + tlpkg/tlpsrc/courier.tlpsrc + tlpkg/tlpsrc/courierten.tlpsrc + tlpkg/tlpsrc/courseoutline.tlpsrc + tlpkg/tlpsrc/coursepaper.tlpsrc + tlpkg/tlpsrc/coverpage.tlpsrc + tlpkg/tlpsrc/covington.tlpsrc + tlpkg/tlpsrc/cprotect.tlpsrc + tlpkg/tlpsrc/cqubeamer.tlpsrc + tlpkg/tlpsrc/cquthesis.tlpsrc + tlpkg/tlpsrc/crbox.tlpsrc + tlpkg/tlpsrc/crimson.tlpsrc + tlpkg/tlpsrc/crimsonpro.tlpsrc + tlpkg/tlpsrc/crop.tlpsrc + tlpkg/tlpsrc/crossreference.tlpsrc + tlpkg/tlpsrc/crossreftools.tlpsrc + tlpkg/tlpsrc/crossrefware.tlpsrc + tlpkg/tlpsrc/crossword.tlpsrc + tlpkg/tlpsrc/crosswrd.tlpsrc + tlpkg/tlpsrc/cryptocode.tlpsrc + tlpkg/tlpsrc/cryst.tlpsrc + tlpkg/tlpsrc/cs.tlpsrc + tlpkg/tlpsrc/csbulletin.tlpsrc + tlpkg/tlpsrc/cslatex.tlpsrc + tlpkg/tlpsrc/csplain.tlpsrc + tlpkg/tlpsrc/csquotes-de.tlpsrc + tlpkg/tlpsrc/csquotes.tlpsrc + tlpkg/tlpsrc/css-colors.tlpsrc + tlpkg/tlpsrc/cstex.tlpsrc + tlpkg/tlpsrc/cstypo.tlpsrc + tlpkg/tlpsrc/csvmerge.tlpsrc + tlpkg/tlpsrc/csvsimple.tlpsrc + tlpkg/tlpsrc/ctable.tlpsrc + tlpkg/tlpsrc/ctablestack.tlpsrc + tlpkg/tlpsrc/ctan-o-mat.tlpsrc + tlpkg/tlpsrc/ctan_chk.tlpsrc + tlpkg/tlpsrc/ctanbib.tlpsrc + tlpkg/tlpsrc/ctanify.tlpsrc + tlpkg/tlpsrc/ctanupload.tlpsrc + tlpkg/tlpsrc/ctex-faq.tlpsrc + tlpkg/tlpsrc/ctex.tlpsrc + tlpkg/tlpsrc/ctib.tlpsrc + tlpkg/tlpsrc/ctie.tlpsrc + tlpkg/tlpsrc/cuisine.tlpsrc + tlpkg/tlpsrc/cuprum.tlpsrc + tlpkg/tlpsrc/currency.tlpsrc + tlpkg/tlpsrc/currfile.tlpsrc + tlpkg/tlpsrc/currvita.tlpsrc + tlpkg/tlpsrc/cursolatex.tlpsrc + tlpkg/tlpsrc/curve.tlpsrc + tlpkg/tlpsrc/curve2e.tlpsrc + tlpkg/tlpsrc/curves.tlpsrc + tlpkg/tlpsrc/custom-bib.tlpsrc + tlpkg/tlpsrc/cutwin.tlpsrc + tlpkg/tlpsrc/cv.tlpsrc + tlpkg/tlpsrc/cv4tw.tlpsrc + tlpkg/tlpsrc/cweb-latex.tlpsrc + tlpkg/tlpsrc/cweb-old.tlpsrc + tlpkg/tlpsrc/cweb.tlpsrc + tlpkg/tlpsrc/cyber.tlpsrc + tlpkg/tlpsrc/cybercic.tlpsrc + tlpkg/tlpsrc/cyklop.tlpsrc + tlpkg/tlpsrc/cyrillic-bin.tlpsrc + tlpkg/tlpsrc/cyrillic.tlpsrc + tlpkg/tlpsrc/cyrplain.tlpsrc + tlpkg/tlpsrc/dad.tlpsrc + tlpkg/tlpsrc/dancers.tlpsrc + tlpkg/tlpsrc/dantelogo.tlpsrc + tlpkg/tlpsrc/dashbox.tlpsrc + tlpkg/tlpsrc/dashrule.tlpsrc + tlpkg/tlpsrc/dashundergaps.tlpsrc + tlpkg/tlpsrc/dataref.tlpsrc + tlpkg/tlpsrc/datatool.tlpsrc + tlpkg/tlpsrc/datax.tlpsrc + tlpkg/tlpsrc/dateiliste.tlpsrc + tlpkg/tlpsrc/datenumber.tlpsrc + tlpkg/tlpsrc/datetime.tlpsrc + tlpkg/tlpsrc/datetime2-bahasai.tlpsrc + tlpkg/tlpsrc/datetime2-basque.tlpsrc + tlpkg/tlpsrc/datetime2-breton.tlpsrc + tlpkg/tlpsrc/datetime2-bulgarian.tlpsrc + tlpkg/tlpsrc/datetime2-catalan.tlpsrc + tlpkg/tlpsrc/datetime2-croatian.tlpsrc + tlpkg/tlpsrc/datetime2-czech.tlpsrc + tlpkg/tlpsrc/datetime2-danish.tlpsrc + tlpkg/tlpsrc/datetime2-dutch.tlpsrc + tlpkg/tlpsrc/datetime2-en-fulltext.tlpsrc + tlpkg/tlpsrc/datetime2-english.tlpsrc + tlpkg/tlpsrc/datetime2-esperanto.tlpsrc + tlpkg/tlpsrc/datetime2-estonian.tlpsrc + tlpkg/tlpsrc/datetime2-finnish.tlpsrc + tlpkg/tlpsrc/datetime2-french.tlpsrc + tlpkg/tlpsrc/datetime2-galician.tlpsrc + tlpkg/tlpsrc/datetime2-german.tlpsrc + tlpkg/tlpsrc/datetime2-greek.tlpsrc + tlpkg/tlpsrc/datetime2-hebrew.tlpsrc + tlpkg/tlpsrc/datetime2-icelandic.tlpsrc + tlpkg/tlpsrc/datetime2-irish.tlpsrc + tlpkg/tlpsrc/datetime2-it-fulltext.tlpsrc + tlpkg/tlpsrc/datetime2-italian.tlpsrc + tlpkg/tlpsrc/datetime2-latin.tlpsrc + tlpkg/tlpsrc/datetime2-lsorbian.tlpsrc + tlpkg/tlpsrc/datetime2-magyar.tlpsrc + tlpkg/tlpsrc/datetime2-norsk.tlpsrc + tlpkg/tlpsrc/datetime2-polish.tlpsrc + tlpkg/tlpsrc/datetime2-portuges.tlpsrc + tlpkg/tlpsrc/datetime2-romanian.tlpsrc + tlpkg/tlpsrc/datetime2-russian.tlpsrc + tlpkg/tlpsrc/datetime2-samin.tlpsrc + tlpkg/tlpsrc/datetime2-scottish.tlpsrc + tlpkg/tlpsrc/datetime2-serbian.tlpsrc + tlpkg/tlpsrc/datetime2-slovak.tlpsrc + tlpkg/tlpsrc/datetime2-slovene.tlpsrc + tlpkg/tlpsrc/datetime2-spanish.tlpsrc + tlpkg/tlpsrc/datetime2-swedish.tlpsrc + tlpkg/tlpsrc/datetime2-turkish.tlpsrc + tlpkg/tlpsrc/datetime2-ukrainian.tlpsrc + tlpkg/tlpsrc/datetime2-usorbian.tlpsrc + tlpkg/tlpsrc/datetime2-welsh.tlpsrc + tlpkg/tlpsrc/datetime2.tlpsrc + tlpkg/tlpsrc/dblfloatfix.tlpsrc + tlpkg/tlpsrc/dccpaper.tlpsrc + tlpkg/tlpsrc/dcpic.tlpsrc + tlpkg/tlpsrc/ddphonism.tlpsrc + tlpkg/tlpsrc/de-macro.tlpsrc + tlpkg/tlpsrc/decimal.tlpsrc + tlpkg/tlpsrc/decision-table.tlpsrc + tlpkg/tlpsrc/decorule.tlpsrc + tlpkg/tlpsrc/dehyph-exptl.tlpsrc + tlpkg/tlpsrc/dehyph.tlpsrc + tlpkg/tlpsrc/dejavu-otf.tlpsrc + tlpkg/tlpsrc/dejavu.tlpsrc + tlpkg/tlpsrc/delim.tlpsrc + tlpkg/tlpsrc/delimseasy.tlpsrc + tlpkg/tlpsrc/delimset.tlpsrc + tlpkg/tlpsrc/delimtxt.tlpsrc + tlpkg/tlpsrc/denisbdoc.tlpsrc + tlpkg/tlpsrc/derivative.tlpsrc + tlpkg/tlpsrc/detex.tlpsrc + tlpkg/tlpsrc/dhua.tlpsrc + tlpkg/tlpsrc/diabetes-logbook.tlpsrc + tlpkg/tlpsrc/diadia.tlpsrc + tlpkg/tlpsrc/diagbox.tlpsrc + tlpkg/tlpsrc/diagmac2.tlpsrc + tlpkg/tlpsrc/diagnose.tlpsrc + tlpkg/tlpsrc/dialogl.tlpsrc + tlpkg/tlpsrc/dice.tlpsrc + tlpkg/tlpsrc/dichokey.tlpsrc + tlpkg/tlpsrc/dickimaw.tlpsrc + tlpkg/tlpsrc/dictsym.tlpsrc + tlpkg/tlpsrc/diffcoeff.tlpsrc + tlpkg/tlpsrc/digiconfigs.tlpsrc + tlpkg/tlpsrc/dijkstra.tlpsrc + tlpkg/tlpsrc/dimnum.tlpsrc + tlpkg/tlpsrc/din1505.tlpsrc + tlpkg/tlpsrc/dinat.tlpsrc + tlpkg/tlpsrc/dinbrief.tlpsrc + tlpkg/tlpsrc/dingbat.tlpsrc + tlpkg/tlpsrc/directory.tlpsrc + tlpkg/tlpsrc/dirtree.tlpsrc + tlpkg/tlpsrc/dirtytalk.tlpsrc + tlpkg/tlpsrc/disser.tlpsrc + tlpkg/tlpsrc/ditaa.tlpsrc + tlpkg/tlpsrc/dithesis.tlpsrc + tlpkg/tlpsrc/dk-bib.tlpsrc + tlpkg/tlpsrc/dlfltxb.tlpsrc + tlpkg/tlpsrc/dnaseq.tlpsrc + tlpkg/tlpsrc/dnp.tlpsrc + tlpkg/tlpsrc/doc-pictex.tlpsrc + tlpkg/tlpsrc/docbytex.tlpsrc + tlpkg/tlpsrc/doclicense.tlpsrc + tlpkg/tlpsrc/docmfp.tlpsrc + tlpkg/tlpsrc/docmute.tlpsrc + tlpkg/tlpsrc/docsurvey.tlpsrc + tlpkg/tlpsrc/doctools.tlpsrc + tlpkg/tlpsrc/documentation.tlpsrc + tlpkg/tlpsrc/docutils.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 + tlpkg/tlpsrc/dotlessi.tlpsrc + tlpkg/tlpsrc/dotseqn.tlpsrc + tlpkg/tlpsrc/dottex.tlpsrc + tlpkg/tlpsrc/doublestroke.tlpsrc + tlpkg/tlpsrc/doulossil.tlpsrc + tlpkg/tlpsrc/dowith.tlpsrc + tlpkg/tlpsrc/download.tlpsrc + tlpkg/tlpsrc/dox.tlpsrc + tlpkg/tlpsrc/dozenal.tlpsrc + tlpkg/tlpsrc/dpcircling.tlpsrc + tlpkg/tlpsrc/dpfloat.tlpsrc + tlpkg/tlpsrc/dprogress.tlpsrc + tlpkg/tlpsrc/drac.tlpsrc + tlpkg/tlpsrc/draftcopy.tlpsrc + tlpkg/tlpsrc/draftfigure.tlpsrc + tlpkg/tlpsrc/draftwatermark.tlpsrc + tlpkg/tlpsrc/dramatist.tlpsrc + tlpkg/tlpsrc/dratex.tlpsrc + tlpkg/tlpsrc/drawmatrix.tlpsrc + tlpkg/tlpsrc/drawstack.tlpsrc + tlpkg/tlpsrc/drm.tlpsrc + tlpkg/tlpsrc/droid.tlpsrc + tlpkg/tlpsrc/droit-fr.tlpsrc + tlpkg/tlpsrc/drs.tlpsrc + tlpkg/tlpsrc/drv.tlpsrc + tlpkg/tlpsrc/dsptricks.tlpsrc + tlpkg/tlpsrc/dsserif.tlpsrc + tlpkg/tlpsrc/dtk-bibliography.tlpsrc + tlpkg/tlpsrc/dtk.tlpsrc + tlpkg/tlpsrc/dtl.tlpsrc + tlpkg/tlpsrc/dtxdescribe.tlpsrc + tlpkg/tlpsrc/dtxgallery.tlpsrc + tlpkg/tlpsrc/dtxgen.tlpsrc + tlpkg/tlpsrc/dtxtut.tlpsrc + tlpkg/tlpsrc/ducksay.tlpsrc + tlpkg/tlpsrc/duckuments.tlpsrc + tlpkg/tlpsrc/duerer-latex.tlpsrc + tlpkg/tlpsrc/duerer.tlpsrc + tlpkg/tlpsrc/duotenzor.tlpsrc + tlpkg/tlpsrc/dutchcal.tlpsrc + tlpkg/tlpsrc/dvdcoll.tlpsrc + tlpkg/tlpsrc/dvgloss.tlpsrc + tlpkg/tlpsrc/dvi2tty.tlpsrc + tlpkg/tlpsrc/dviasm.tlpsrc + tlpkg/tlpsrc/dvicopy.tlpsrc + tlpkg/tlpsrc/dvidvi.tlpsrc + tlpkg/tlpsrc/dviincl.tlpsrc + tlpkg/tlpsrc/dviinfox.tlpsrc + tlpkg/tlpsrc/dviljk.tlpsrc + tlpkg/tlpsrc/dviout-util.tlpsrc + tlpkg/tlpsrc/dviout.win32.tlpsrc + tlpkg/tlpsrc/dvipdfmx.tlpsrc + tlpkg/tlpsrc/dvipng.tlpsrc + tlpkg/tlpsrc/dvipos.tlpsrc + tlpkg/tlpsrc/dvips.tlpsrc + tlpkg/tlpsrc/dvipsconfig.tlpsrc + tlpkg/tlpsrc/dvisvgm.tlpsrc + tlpkg/tlpsrc/dynamicnumber.tlpsrc + tlpkg/tlpsrc/dynblocks.tlpsrc + tlpkg/tlpsrc/dynkin-diagrams.tlpsrc + tlpkg/tlpsrc/dyntree.tlpsrc + tlpkg/tlpsrc/e-french.tlpsrc + tlpkg/tlpsrc/ean.tlpsrc + tlpkg/tlpsrc/ean13isbn.tlpsrc + tlpkg/tlpsrc/easy-todo.tlpsrc + tlpkg/tlpsrc/easy.tlpsrc + tlpkg/tlpsrc/easybook.tlpsrc + tlpkg/tlpsrc/easyfig.tlpsrc + tlpkg/tlpsrc/easyfloats.tlpsrc + tlpkg/tlpsrc/easyformat.tlpsrc + tlpkg/tlpsrc/easylist.tlpsrc + tlpkg/tlpsrc/easyreview.tlpsrc + tlpkg/tlpsrc/ebezier.tlpsrc + tlpkg/tlpsrc/ebgaramond-maths.tlpsrc + tlpkg/tlpsrc/ebgaramond.tlpsrc + tlpkg/tlpsrc/ebong.tlpsrc + tlpkg/tlpsrc/ebook.tlpsrc + tlpkg/tlpsrc/ebproof.tlpsrc + tlpkg/tlpsrc/ebsthesis.tlpsrc + tlpkg/tlpsrc/ec.tlpsrc + tlpkg/tlpsrc/ecc.tlpsrc + tlpkg/tlpsrc/ecclesiastic.tlpsrc + tlpkg/tlpsrc/ecgdraw.tlpsrc + tlpkg/tlpsrc/ecltree.tlpsrc + tlpkg/tlpsrc/eco.tlpsrc + tlpkg/tlpsrc/ecobiblatex.tlpsrc + tlpkg/tlpsrc/econ-bst.tlpsrc + tlpkg/tlpsrc/econlipsum.tlpsrc + tlpkg/tlpsrc/econometrics.tlpsrc + tlpkg/tlpsrc/economic.tlpsrc + tlpkg/tlpsrc/ecothesis.tlpsrc + tlpkg/tlpsrc/ecv.tlpsrc + tlpkg/tlpsrc/eczar.tlpsrc + tlpkg/tlpsrc/ed.tlpsrc + tlpkg/tlpsrc/edfnotes.tlpsrc + tlpkg/tlpsrc/edichokey.tlpsrc + tlpkg/tlpsrc/edmac.tlpsrc + tlpkg/tlpsrc/edmargin.tlpsrc + tlpkg/tlpsrc/ednotes.tlpsrc + tlpkg/tlpsrc/eemeir.tlpsrc + tlpkg/tlpsrc/eepic.tlpsrc + tlpkg/tlpsrc/efbox.tlpsrc + tlpkg/tlpsrc/egameps.tlpsrc + tlpkg/tlpsrc/egplot.tlpsrc + tlpkg/tlpsrc/ehhline.tlpsrc + tlpkg/tlpsrc/eiad-ltx.tlpsrc + tlpkg/tlpsrc/eiad.tlpsrc + tlpkg/tlpsrc/eijkhout.tlpsrc + tlpkg/tlpsrc/einfart.tlpsrc + tlpkg/tlpsrc/ejpecp.tlpsrc + tlpkg/tlpsrc/ekaia.tlpsrc + tlpkg/tlpsrc/ekdosis.tlpsrc + tlpkg/tlpsrc/ektype-tanka.tlpsrc + tlpkg/tlpsrc/elbioimp.tlpsrc + tlpkg/tlpsrc/electrum.tlpsrc + tlpkg/tlpsrc/eledform.tlpsrc + tlpkg/tlpsrc/eledmac.tlpsrc + tlpkg/tlpsrc/elegantbook.tlpsrc + tlpkg/tlpsrc/elegantnote.tlpsrc + tlpkg/tlpsrc/elegantpaper.tlpsrc + tlpkg/tlpsrc/elements.tlpsrc + tlpkg/tlpsrc/ellipse.tlpsrc + tlpkg/tlpsrc/ellipsis.tlpsrc + tlpkg/tlpsrc/elmath.tlpsrc + tlpkg/tlpsrc/elocalloc.tlpsrc + tlpkg/tlpsrc/elpres.tlpsrc + tlpkg/tlpsrc/els-cas-templates.tlpsrc + tlpkg/tlpsrc/elsarticle.tlpsrc + tlpkg/tlpsrc/elteikthesis.tlpsrc + tlpkg/tlpsrc/eltex.tlpsrc + tlpkg/tlpsrc/elvish.tlpsrc + tlpkg/tlpsrc/elzcards.tlpsrc + tlpkg/tlpsrc/emarks.tlpsrc + tlpkg/tlpsrc/embedall.tlpsrc + tlpkg/tlpsrc/embedfile.tlpsrc + tlpkg/tlpsrc/embrac.tlpsrc + tlpkg/tlpsrc/emf.tlpsrc + tlpkg/tlpsrc/emisa.tlpsrc + tlpkg/tlpsrc/emoji.tlpsrc + tlpkg/tlpsrc/emojicite.tlpsrc + tlpkg/tlpsrc/emp.tlpsrc + tlpkg/tlpsrc/emptypage.tlpsrc + tlpkg/tlpsrc/emulateapj.tlpsrc + tlpkg/tlpsrc/enctex.tlpsrc + tlpkg/tlpsrc/encxvlna.tlpsrc + tlpkg/tlpsrc/endfloat.tlpsrc + tlpkg/tlpsrc/endheads.tlpsrc + tlpkg/tlpsrc/endiagram.tlpsrc + tlpkg/tlpsrc/endnotes-hy.tlpsrc + tlpkg/tlpsrc/endnotes.tlpsrc + tlpkg/tlpsrc/endnotesj.tlpsrc + tlpkg/tlpsrc/endofproofwd.tlpsrc + tlpkg/tlpsrc/engpron.tlpsrc + tlpkg/tlpsrc/engrec.tlpsrc + tlpkg/tlpsrc/engtlc.tlpsrc + tlpkg/tlpsrc/enigma.tlpsrc + tlpkg/tlpsrc/enotez.tlpsrc + tlpkg/tlpsrc/enumitem-zref.tlpsrc + tlpkg/tlpsrc/enumitem.tlpsrc + tlpkg/tlpsrc/envbig.tlpsrc + tlpkg/tlpsrc/environ.tlpsrc + tlpkg/tlpsrc/envlab.tlpsrc + tlpkg/tlpsrc/epigrafica.tlpsrc + tlpkg/tlpsrc/epigram.tlpsrc + tlpkg/tlpsrc/epigraph-keys.tlpsrc + tlpkg/tlpsrc/epigraph.tlpsrc + tlpkg/tlpsrc/epiolmec.tlpsrc + tlpkg/tlpsrc/eplain.tlpsrc + tlpkg/tlpsrc/epsdice.tlpsrc + tlpkg/tlpsrc/epsf-dvipdfmx.tlpsrc + tlpkg/tlpsrc/epsf.tlpsrc + tlpkg/tlpsrc/epsincl.tlpsrc + tlpkg/tlpsrc/epslatex-fr.tlpsrc + tlpkg/tlpsrc/epspdf.tlpsrc + tlpkg/tlpsrc/epspdfconversion.tlpsrc + tlpkg/tlpsrc/epstopdf-pkg.tlpsrc + tlpkg/tlpsrc/epstopdf.tlpsrc + tlpkg/tlpsrc/eq-pin2corr.tlpsrc + tlpkg/tlpsrc/eqell.tlpsrc + tlpkg/tlpsrc/eqexpl.tlpsrc + tlpkg/tlpsrc/eqlist.tlpsrc + tlpkg/tlpsrc/eqnalign.tlpsrc + tlpkg/tlpsrc/eqname.tlpsrc + tlpkg/tlpsrc/eqnarray.tlpsrc + tlpkg/tlpsrc/eqnnumwarn.tlpsrc + tlpkg/tlpsrc/eqparbox.tlpsrc + tlpkg/tlpsrc/erdc.tlpsrc + tlpkg/tlpsrc/erewhon-math.tlpsrc + tlpkg/tlpsrc/erewhon.tlpsrc + tlpkg/tlpsrc/errata.tlpsrc + tlpkg/tlpsrc/erw-l3.tlpsrc + tlpkg/tlpsrc/es-tex-faq.tlpsrc + tlpkg/tlpsrc/esami.tlpsrc + tlpkg/tlpsrc/esdiff.tlpsrc + tlpkg/tlpsrc/esindex.tlpsrc + tlpkg/tlpsrc/esint-type1.tlpsrc + tlpkg/tlpsrc/esint.tlpsrc + tlpkg/tlpsrc/esk.tlpsrc + tlpkg/tlpsrc/eskd.tlpsrc + tlpkg/tlpsrc/eskdx.tlpsrc + tlpkg/tlpsrc/eso-pic.tlpsrc + tlpkg/tlpsrc/esrelation.tlpsrc + tlpkg/tlpsrc/esstix.tlpsrc + tlpkg/tlpsrc/estcpmm.tlpsrc + tlpkg/tlpsrc/esvect.tlpsrc + tlpkg/tlpsrc/etaremune.tlpsrc + tlpkg/tlpsrc/etbb.tlpsrc + tlpkg/tlpsrc/etdipa.tlpsrc + tlpkg/tlpsrc/etex-pkg.tlpsrc + tlpkg/tlpsrc/etex.tlpsrc + tlpkg/tlpsrc/etexcmds.tlpsrc + tlpkg/tlpsrc/etextools.tlpsrc + tlpkg/tlpsrc/ethiop-t1.tlpsrc + tlpkg/tlpsrc/ethiop.tlpsrc + tlpkg/tlpsrc/etoc.tlpsrc + tlpkg/tlpsrc/etoolbox-de.tlpsrc + tlpkg/tlpsrc/etoolbox.tlpsrc + tlpkg/tlpsrc/etsvthor.tlpsrc + tlpkg/tlpsrc/euclideangeometry.tlpsrc + tlpkg/tlpsrc/euenc.tlpsrc + tlpkg/tlpsrc/euflag.tlpsrc + tlpkg/tlpsrc/eukdate.tlpsrc + tlpkg/tlpsrc/euler.tlpsrc + tlpkg/tlpsrc/eulerpx.tlpsrc + tlpkg/tlpsrc/eulervm.tlpsrc + tlpkg/tlpsrc/euro-ce.tlpsrc + tlpkg/tlpsrc/euro.tlpsrc + tlpkg/tlpsrc/europasscv.tlpsrc + tlpkg/tlpsrc/europecv.tlpsrc + tlpkg/tlpsrc/eurosym.tlpsrc + tlpkg/tlpsrc/euxm.tlpsrc + tlpkg/tlpsrc/everyhook.tlpsrc + tlpkg/tlpsrc/everypage.tlpsrc + tlpkg/tlpsrc/everysel.tlpsrc + tlpkg/tlpsrc/everyshi.tlpsrc + tlpkg/tlpsrc/exam-n.tlpsrc + tlpkg/tlpsrc/exam-randomizechoices.tlpsrc + tlpkg/tlpsrc/exam.tlpsrc + tlpkg/tlpsrc/examdesign.tlpsrc + tlpkg/tlpsrc/example.tlpsrc + tlpkg/tlpsrc/examplep.tlpsrc + tlpkg/tlpsrc/exceltex.tlpsrc + tlpkg/tlpsrc/excludeonly.tlpsrc + tlpkg/tlpsrc/exercise.tlpsrc + tlpkg/tlpsrc/exercisebank.tlpsrc + tlpkg/tlpsrc/exercisepoints.tlpsrc + tlpkg/tlpsrc/exercises.tlpsrc + tlpkg/tlpsrc/exesheet.tlpsrc + tlpkg/tlpsrc/exframe.tlpsrc + tlpkg/tlpsrc/exp-testopt.tlpsrc + tlpkg/tlpsrc/expdlist.tlpsrc + tlpkg/tlpsrc/expex.tlpsrc + tlpkg/tlpsrc/expkv-cs.tlpsrc + tlpkg/tlpsrc/expkv-def.tlpsrc + tlpkg/tlpsrc/expkv-opt.tlpsrc + tlpkg/tlpsrc/expkv.tlpsrc + tlpkg/tlpsrc/export.tlpsrc + tlpkg/tlpsrc/expose-expl3-dunkerque-2019.tlpsrc + tlpkg/tlpsrc/expressg.tlpsrc + tlpkg/tlpsrc/exsheets.tlpsrc + tlpkg/tlpsrc/exsol.tlpsrc + tlpkg/tlpsrc/extarrows.tlpsrc + tlpkg/tlpsrc/exteps.tlpsrc + tlpkg/tlpsrc/extpfeil.tlpsrc + tlpkg/tlpsrc/extract.tlpsrc + tlpkg/tlpsrc/extsizes.tlpsrc + tlpkg/tlpsrc/facsimile.tlpsrc + tlpkg/tlpsrc/factura.tlpsrc + tlpkg/tlpsrc/facture-belge-simple-sans-tva.tlpsrc + tlpkg/tlpsrc/facture.tlpsrc + tlpkg/tlpsrc/faktor.tlpsrc + tlpkg/tlpsrc/fancybox.tlpsrc + tlpkg/tlpsrc/fancyhandout.tlpsrc + tlpkg/tlpsrc/fancyhdr-it.tlpsrc + tlpkg/tlpsrc/fancyhdr.tlpsrc + tlpkg/tlpsrc/fancylabel.tlpsrc + tlpkg/tlpsrc/fancynum.tlpsrc + tlpkg/tlpsrc/fancypar.tlpsrc + tlpkg/tlpsrc/fancyref.tlpsrc + tlpkg/tlpsrc/fancyslides.tlpsrc + tlpkg/tlpsrc/fancytabs.tlpsrc + tlpkg/tlpsrc/fancytooltips.tlpsrc + tlpkg/tlpsrc/fancyvrb.tlpsrc + tlpkg/tlpsrc/fandol.tlpsrc + tlpkg/tlpsrc/fascicules.tlpsrc + tlpkg/tlpsrc/fast-diagram.tlpsrc + tlpkg/tlpsrc/fbb.tlpsrc + tlpkg/tlpsrc/fbithesis.tlpsrc + tlpkg/tlpsrc/fbox.tlpsrc + tlpkg/tlpsrc/fbs.tlpsrc + tlpkg/tlpsrc/fc.tlpsrc + tlpkg/tlpsrc/fcavtex.tlpsrc + tlpkg/tlpsrc/fcltxdoc.tlpsrc + tlpkg/tlpsrc/fcolumn.tlpsrc + tlpkg/tlpsrc/fdsymbol.tlpsrc + tlpkg/tlpsrc/fduthesis.tlpsrc + tlpkg/tlpsrc/featpost.tlpsrc + tlpkg/tlpsrc/fei.tlpsrc + tlpkg/tlpsrc/fenixpar.tlpsrc + tlpkg/tlpsrc/fetamont.tlpsrc + tlpkg/tlpsrc/fetchcls.tlpsrc + tlpkg/tlpsrc/feupphdteses.tlpsrc + tlpkg/tlpsrc/fewerfloatpages.tlpsrc + tlpkg/tlpsrc/feyn.tlpsrc + tlpkg/tlpsrc/feynmf.tlpsrc + tlpkg/tlpsrc/feynmp-auto.tlpsrc + tlpkg/tlpsrc/ffslides.tlpsrc + tlpkg/tlpsrc/fge.tlpsrc + tlpkg/tlpsrc/fgruler.tlpsrc + tlpkg/tlpsrc/fibeamer.tlpsrc + tlpkg/tlpsrc/fifinddo-info.tlpsrc + tlpkg/tlpsrc/fifo-stack.tlpsrc + tlpkg/tlpsrc/fig4latex.tlpsrc + tlpkg/tlpsrc/figbas.tlpsrc + tlpkg/tlpsrc/figbib.tlpsrc + tlpkg/tlpsrc/figchild.tlpsrc + tlpkg/tlpsrc/figflow.tlpsrc + tlpkg/tlpsrc/figsize.tlpsrc + tlpkg/tlpsrc/filecontents.tlpsrc + tlpkg/tlpsrc/filecontentsdef.tlpsrc + tlpkg/tlpsrc/filedate.tlpsrc + tlpkg/tlpsrc/filehook.tlpsrc + tlpkg/tlpsrc/fileinfo.tlpsrc + tlpkg/tlpsrc/filemod.tlpsrc + tlpkg/tlpsrc/finbib.tlpsrc + tlpkg/tlpsrc/findhyph.tlpsrc + tlpkg/tlpsrc/fink.tlpsrc + tlpkg/tlpsrc/finstrut.tlpsrc + tlpkg/tlpsrc/fira.tlpsrc + tlpkg/tlpsrc/firamath-otf.tlpsrc + tlpkg/tlpsrc/firamath.tlpsrc + tlpkg/tlpsrc/first-latex-doc.tlpsrc + tlpkg/tlpsrc/firstaid.tlpsrc + tlpkg/tlpsrc/fitbox.tlpsrc + tlpkg/tlpsrc/fithesis.tlpsrc + tlpkg/tlpsrc/fix2col.tlpsrc + tlpkg/tlpsrc/fixcmex.tlpsrc + tlpkg/tlpsrc/fixfoot.tlpsrc + tlpkg/tlpsrc/fixjfm.tlpsrc + tlpkg/tlpsrc/fixlatvian.tlpsrc + tlpkg/tlpsrc/fixltxhyph.tlpsrc + tlpkg/tlpsrc/fixme.tlpsrc + tlpkg/tlpsrc/fixmetodonotes.tlpsrc + tlpkg/tlpsrc/fixpdfmag.tlpsrc + tlpkg/tlpsrc/fiziko.tlpsrc + tlpkg/tlpsrc/fjodor.tlpsrc + tlpkg/tlpsrc/flabels.tlpsrc + tlpkg/tlpsrc/flacards.tlpsrc + tlpkg/tlpsrc/flagderiv.tlpsrc + tlpkg/tlpsrc/flashcards.tlpsrc + tlpkg/tlpsrc/flashmovie.tlpsrc + tlpkg/tlpsrc/flipbook.tlpsrc + tlpkg/tlpsrc/flippdf.tlpsrc + tlpkg/tlpsrc/float.tlpsrc + tlpkg/tlpsrc/floatflt.tlpsrc + tlpkg/tlpsrc/floatrow.tlpsrc + tlpkg/tlpsrc/flowchart.tlpsrc + tlpkg/tlpsrc/flowfram.tlpsrc + tlpkg/tlpsrc/fltpoint.tlpsrc + tlpkg/tlpsrc/fmp.tlpsrc + tlpkg/tlpsrc/fmtcount.tlpsrc + tlpkg/tlpsrc/fn2end.tlpsrc + tlpkg/tlpsrc/fnbreak.tlpsrc + tlpkg/tlpsrc/fncychap.tlpsrc + tlpkg/tlpsrc/fncylab.tlpsrc + tlpkg/tlpsrc/fnpara.tlpsrc + tlpkg/tlpsrc/fnpct.tlpsrc + tlpkg/tlpsrc/fnspe.tlpsrc + tlpkg/tlpsrc/fntproof.tlpsrc + tlpkg/tlpsrc/fnumprint.tlpsrc + tlpkg/tlpsrc/foekfont.tlpsrc + tlpkg/tlpsrc/foilhtml.tlpsrc + tlpkg/tlpsrc/foliono.tlpsrc + tlpkg/tlpsrc/fonetika.tlpsrc + tlpkg/tlpsrc/font-change-xetex.tlpsrc + tlpkg/tlpsrc/font-change.tlpsrc + tlpkg/tlpsrc/fontawesome.tlpsrc + tlpkg/tlpsrc/fontawesome5.tlpsrc + tlpkg/tlpsrc/fontaxes.tlpsrc + tlpkg/tlpsrc/fontbook.tlpsrc + tlpkg/tlpsrc/fontch.tlpsrc + tlpkg/tlpsrc/fontinst.tlpsrc + tlpkg/tlpsrc/fontmfizz.tlpsrc + tlpkg/tlpsrc/fontname.tlpsrc + tlpkg/tlpsrc/fontools.tlpsrc + tlpkg/tlpsrc/fonts-churchslavonic.tlpsrc + tlpkg/tlpsrc/fonts-tlwg.tlpsrc + tlpkg/tlpsrc/fontsetup.tlpsrc + tlpkg/tlpsrc/fontsize.tlpsrc + tlpkg/tlpsrc/fontspec.tlpsrc + tlpkg/tlpsrc/fonttable.tlpsrc + tlpkg/tlpsrc/fontware.tlpsrc + tlpkg/tlpsrc/fontwrap.tlpsrc + tlpkg/tlpsrc/footbib.tlpsrc + tlpkg/tlpsrc/footmisc.tlpsrc + tlpkg/tlpsrc/footmisx.tlpsrc + tlpkg/tlpsrc/footnotebackref.tlpsrc + tlpkg/tlpsrc/footnotehyper.tlpsrc + tlpkg/tlpsrc/footnoterange.tlpsrc + tlpkg/tlpsrc/footnpag.tlpsrc + tlpkg/tlpsrc/forarray.tlpsrc + tlpkg/tlpsrc/foreign.tlpsrc + tlpkg/tlpsrc/forest-quickstart.tlpsrc + tlpkg/tlpsrc/forest.tlpsrc + tlpkg/tlpsrc/forloop.tlpsrc + tlpkg/tlpsrc/formation-latex-ul.tlpsrc + tlpkg/tlpsrc/formlett.tlpsrc + tlpkg/tlpsrc/forms16be.tlpsrc + tlpkg/tlpsrc/formular.tlpsrc + tlpkg/tlpsrc/forum.tlpsrc + tlpkg/tlpsrc/fouridx.tlpsrc + tlpkg/tlpsrc/fourier.tlpsrc + tlpkg/tlpsrc/fouriernc.tlpsrc + tlpkg/tlpsrc/fp.tlpsrc + tlpkg/tlpsrc/fpl.tlpsrc + tlpkg/tlpsrc/fragmaster.tlpsrc + tlpkg/tlpsrc/fragments.tlpsrc + tlpkg/tlpsrc/frame.tlpsrc + tlpkg/tlpsrc/framed.tlpsrc + tlpkg/tlpsrc/francais-bst.tlpsrc + tlpkg/tlpsrc/frankenstein.tlpsrc + tlpkg/tlpsrc/frcursive.tlpsrc + tlpkg/tlpsrc/frederika2016.tlpsrc + tlpkg/tlpsrc/frege.tlpsrc + tlpkg/tlpsrc/frenchmath.tlpsrc + tlpkg/tlpsrc/frimurer.tlpsrc + tlpkg/tlpsrc/frletter.tlpsrc + tlpkg/tlpsrc/frontespizio.tlpsrc + tlpkg/tlpsrc/froufrou.tlpsrc + tlpkg/tlpsrc/frpseudocode.tlpsrc + tlpkg/tlpsrc/ftc-notebook.tlpsrc + tlpkg/tlpsrc/ftcap.tlpsrc + tlpkg/tlpsrc/ftnxtra.tlpsrc + tlpkg/tlpsrc/fullblck.tlpsrc + tlpkg/tlpsrc/fullminipage.tlpsrc + tlpkg/tlpsrc/fullwidth.tlpsrc + tlpkg/tlpsrc/functan.tlpsrc + tlpkg/tlpsrc/fundus-calligra.tlpsrc + tlpkg/tlpsrc/fundus-cyr.tlpsrc + tlpkg/tlpsrc/fundus-sueterlin.tlpsrc + tlpkg/tlpsrc/fvextra.tlpsrc + tlpkg/tlpsrc/fwlw.tlpsrc + tlpkg/tlpsrc/g-brief.tlpsrc + tlpkg/tlpsrc/gaceta.tlpsrc + tlpkg/tlpsrc/galois.tlpsrc + tlpkg/tlpsrc/gamebook.tlpsrc + tlpkg/tlpsrc/gammas.tlpsrc + tlpkg/tlpsrc/garamond-libre.tlpsrc + tlpkg/tlpsrc/garamond-math.tlpsrc + tlpkg/tlpsrc/garrigues.tlpsrc + tlpkg/tlpsrc/garuda-c90.tlpsrc + tlpkg/tlpsrc/gastex.tlpsrc + tlpkg/tlpsrc/gatech-thesis.tlpsrc + tlpkg/tlpsrc/gates.tlpsrc + tlpkg/tlpsrc/gatherenum.tlpsrc + tlpkg/tlpsrc/gauss.tlpsrc + tlpkg/tlpsrc/gb4e.tlpsrc + tlpkg/tlpsrc/gbt7714.tlpsrc + tlpkg/tlpsrc/gcard.tlpsrc + tlpkg/tlpsrc/gchords.tlpsrc + tlpkg/tlpsrc/gcite.tlpsrc + tlpkg/tlpsrc/gckanbun.tlpsrc + tlpkg/tlpsrc/gender.tlpsrc + tlpkg/tlpsrc/gene-logic.tlpsrc + tlpkg/tlpsrc/genealogy.tlpsrc + tlpkg/tlpsrc/genealogytree.tlpsrc + tlpkg/tlpsrc/genmpage.tlpsrc + tlpkg/tlpsrc/gentium-tug.tlpsrc + tlpkg/tlpsrc/gentle.tlpsrc + tlpkg/tlpsrc/gentombow.tlpsrc + tlpkg/tlpsrc/geometry.tlpsrc + tlpkg/tlpsrc/german.tlpsrc + tlpkg/tlpsrc/germbib.tlpsrc + tlpkg/tlpsrc/germkorr.tlpsrc + tlpkg/tlpsrc/geschichtsfrkl.tlpsrc + tlpkg/tlpsrc/getfiledate.tlpsrc + tlpkg/tlpsrc/getitems.tlpsrc + tlpkg/tlpsrc/getmap.tlpsrc + tlpkg/tlpsrc/getoptk.tlpsrc + tlpkg/tlpsrc/gettitlestring.tlpsrc + tlpkg/tlpsrc/gfnotation.tlpsrc + tlpkg/tlpsrc/gfsartemisia.tlpsrc + tlpkg/tlpsrc/gfsbaskerville.tlpsrc + tlpkg/tlpsrc/gfsbodoni.tlpsrc + tlpkg/tlpsrc/gfscomplutum.tlpsrc + tlpkg/tlpsrc/gfsdidot.tlpsrc + tlpkg/tlpsrc/gfsdidotclassic.tlpsrc + tlpkg/tlpsrc/gfsneohellenic.tlpsrc + tlpkg/tlpsrc/gfsneohellenicmath.tlpsrc + tlpkg/tlpsrc/gfsporson.tlpsrc + tlpkg/tlpsrc/gfssolomos.tlpsrc + tlpkg/tlpsrc/ghab.tlpsrc + tlpkg/tlpsrc/ghsystem.tlpsrc + tlpkg/tlpsrc/gillcm.tlpsrc + tlpkg/tlpsrc/gillius.tlpsrc + tlpkg/tlpsrc/gincltex.tlpsrc + tlpkg/tlpsrc/gindex.tlpsrc + tlpkg/tlpsrc/ginpenc.tlpsrc + tlpkg/tlpsrc/git-latexdiff.tlpsrc + tlpkg/tlpsrc/gitfile-info.tlpsrc + tlpkg/tlpsrc/gitinfo.tlpsrc + tlpkg/tlpsrc/gitinfo2.tlpsrc + tlpkg/tlpsrc/gitlog.tlpsrc + tlpkg/tlpsrc/gitver.tlpsrc + tlpkg/tlpsrc/globalvals.tlpsrc + tlpkg/tlpsrc/glosmathtools.tlpsrc + tlpkg/tlpsrc/gloss-occitan.tlpsrc + tlpkg/tlpsrc/gloss.tlpsrc + tlpkg/tlpsrc/glossaries-danish.tlpsrc + tlpkg/tlpsrc/glossaries-dutch.tlpsrc + tlpkg/tlpsrc/glossaries-english.tlpsrc + tlpkg/tlpsrc/glossaries-estonian.tlpsrc + tlpkg/tlpsrc/glossaries-extra.tlpsrc + tlpkg/tlpsrc/glossaries-finnish.tlpsrc + tlpkg/tlpsrc/glossaries-french.tlpsrc + tlpkg/tlpsrc/glossaries-german.tlpsrc + tlpkg/tlpsrc/glossaries-irish.tlpsrc + tlpkg/tlpsrc/glossaries-italian.tlpsrc + tlpkg/tlpsrc/glossaries-magyar.tlpsrc + tlpkg/tlpsrc/glossaries-nynorsk.tlpsrc + tlpkg/tlpsrc/glossaries-polish.tlpsrc + tlpkg/tlpsrc/glossaries-portuges.tlpsrc + tlpkg/tlpsrc/glossaries-serbian.tlpsrc + tlpkg/tlpsrc/glossaries-slovene.tlpsrc + tlpkg/tlpsrc/glossaries-spanish.tlpsrc + tlpkg/tlpsrc/glossaries.tlpsrc + tlpkg/tlpsrc/glyphlist.tlpsrc + tlpkg/tlpsrc/gmdoc-enhance.tlpsrc + tlpkg/tlpsrc/gmdoc.tlpsrc + tlpkg/tlpsrc/gmiflink.tlpsrc + tlpkg/tlpsrc/gmp.tlpsrc + tlpkg/tlpsrc/gmutils.tlpsrc + tlpkg/tlpsrc/gmverb.tlpsrc + tlpkg/tlpsrc/gmverse.tlpsrc + tlpkg/tlpsrc/gnu-freefont.tlpsrc + tlpkg/tlpsrc/gnuplottex.tlpsrc + tlpkg/tlpsrc/go.tlpsrc + tlpkg/tlpsrc/gobble.tlpsrc + tlpkg/tlpsrc/gofonts.tlpsrc + tlpkg/tlpsrc/gost.tlpsrc + tlpkg/tlpsrc/gothic.tlpsrc + tlpkg/tlpsrc/gotoh.tlpsrc + tlpkg/tlpsrc/grabbox.tlpsrc + tlpkg/tlpsrc/gradientframe.tlpsrc + tlpkg/tlpsrc/gradstudentresume.tlpsrc + tlpkg/tlpsrc/grafcet.tlpsrc + tlpkg/tlpsrc/grant.tlpsrc + tlpkg/tlpsrc/graph35.tlpsrc + tlpkg/tlpsrc/graphbox.tlpsrc + tlpkg/tlpsrc/graphics-cfg.tlpsrc + tlpkg/tlpsrc/graphics-def.tlpsrc + tlpkg/tlpsrc/graphics-pln.tlpsrc + tlpkg/tlpsrc/graphics.tlpsrc + tlpkg/tlpsrc/graphicx-psmin.tlpsrc + tlpkg/tlpsrc/graphicxbox.tlpsrc + tlpkg/tlpsrc/graphicxpsd.tlpsrc + tlpkg/tlpsrc/graphpaper.tlpsrc + tlpkg/tlpsrc/graphviz.tlpsrc + tlpkg/tlpsrc/grayhints.tlpsrc + tlpkg/tlpsrc/greek-fontenc.tlpsrc + tlpkg/tlpsrc/greek-inputenc.tlpsrc + tlpkg/tlpsrc/greekdates.tlpsrc + tlpkg/tlpsrc/greektex.tlpsrc + tlpkg/tlpsrc/greektonoi.tlpsrc + tlpkg/tlpsrc/greenpoint.tlpsrc + tlpkg/tlpsrc/gregoriotex.tlpsrc + tlpkg/tlpsrc/grfext.tlpsrc + tlpkg/tlpsrc/grffile.tlpsrc + tlpkg/tlpsrc/grfpaste.tlpsrc + tlpkg/tlpsrc/grid-system.tlpsrc + tlpkg/tlpsrc/grid.tlpsrc + tlpkg/tlpsrc/gridpapers.tlpsrc + tlpkg/tlpsrc/gridset.tlpsrc + tlpkg/tlpsrc/gridslides.tlpsrc + tlpkg/tlpsrc/grotesq.tlpsrc + tlpkg/tlpsrc/grundgesetze.tlpsrc + tlpkg/tlpsrc/gsemthesis.tlpsrc + tlpkg/tlpsrc/gsftopk.tlpsrc + tlpkg/tlpsrc/gtl.tlpsrc + tlpkg/tlpsrc/gtrcrd.tlpsrc + tlpkg/tlpsrc/gtrlib-largetrees.tlpsrc + tlpkg/tlpsrc/gu.tlpsrc + tlpkg/tlpsrc/gudea.tlpsrc + tlpkg/tlpsrc/guide-to-latex.tlpsrc + tlpkg/tlpsrc/guitar.tlpsrc + tlpkg/tlpsrc/guitarchordschemes.tlpsrc + tlpkg/tlpsrc/guitartabs.tlpsrc + tlpkg/tlpsrc/guitlogo.tlpsrc + tlpkg/tlpsrc/gustlib.tlpsrc + tlpkg/tlpsrc/gustprog.tlpsrc + tlpkg/tlpsrc/gzt.tlpsrc + tlpkg/tlpsrc/h2020proposal.tlpsrc + tlpkg/tlpsrc/hackthefootline.tlpsrc + tlpkg/tlpsrc/hacm.tlpsrc + tlpkg/tlpsrc/hagenberg-thesis.tlpsrc + tlpkg/tlpsrc/halloweenmath.tlpsrc + tlpkg/tlpsrc/handin.tlpsrc + tlpkg/tlpsrc/handout.tlpsrc + tlpkg/tlpsrc/hands.tlpsrc + tlpkg/tlpsrc/hang.tlpsrc + tlpkg/tlpsrc/hanging.tlpsrc + tlpkg/tlpsrc/hanoi.tlpsrc + tlpkg/tlpsrc/happy4th.tlpsrc + tlpkg/tlpsrc/har2nat.tlpsrc + tlpkg/tlpsrc/haranoaji-extra.tlpsrc + tlpkg/tlpsrc/haranoaji.tlpsrc + tlpkg/tlpsrc/hardwrap.tlpsrc + tlpkg/tlpsrc/harmony.tlpsrc + tlpkg/tlpsrc/harnon-cv.tlpsrc + tlpkg/tlpsrc/harpoon.tlpsrc + tlpkg/tlpsrc/harvard.tlpsrc + tlpkg/tlpsrc/harveyballs.tlpsrc + tlpkg/tlpsrc/harvmac.tlpsrc + tlpkg/tlpsrc/hatching.tlpsrc + tlpkg/tlpsrc/hausarbeit-jura.tlpsrc + tlpkg/tlpsrc/havannah.tlpsrc + tlpkg/tlpsrc/hc.tlpsrc + tlpkg/tlpsrc/he-she.tlpsrc + tlpkg/tlpsrc/hecthese.tlpsrc + tlpkg/tlpsrc/helmholtz-ellis-ji-notation.tlpsrc + tlpkg/tlpsrc/helvetic.tlpsrc + tlpkg/tlpsrc/hep-paper.tlpsrc + tlpkg/tlpsrc/hep.tlpsrc + tlpkg/tlpsrc/hepnames.tlpsrc + tlpkg/tlpsrc/hepparticles.tlpsrc + tlpkg/tlpsrc/hepthesis.tlpsrc + tlpkg/tlpsrc/hepunits.tlpsrc + tlpkg/tlpsrc/here.tlpsrc + tlpkg/tlpsrc/heuristica.tlpsrc + tlpkg/tlpsrc/hexgame.tlpsrc + tlpkg/tlpsrc/hf-tikz.tlpsrc + tlpkg/tlpsrc/hfbright.tlpsrc + tlpkg/tlpsrc/hfoldsty.tlpsrc + tlpkg/tlpsrc/hhtensor.tlpsrc + tlpkg/tlpsrc/highlightlatex.tlpsrc + tlpkg/tlpsrc/hindawi-latex-template.tlpsrc + tlpkg/tlpsrc/hindmadurai.tlpsrc + tlpkg/tlpsrc/histogr.tlpsrc + tlpkg/tlpsrc/historische-zeitschrift.tlpsrc + tlpkg/tlpsrc/hitec.tlpsrc + tlpkg/tlpsrc/hithesis.tlpsrc + tlpkg/tlpsrc/hitreport.tlpsrc + tlpkg/tlpsrc/hitszbeamer.tlpsrc + tlpkg/tlpsrc/hitszthesis.tlpsrc + tlpkg/tlpsrc/hletter.tlpsrc + tlpkg/tlpsrc/hlist.tlpsrc + tlpkg/tlpsrc/hmtrump.tlpsrc + tlpkg/tlpsrc/hobby.tlpsrc + tlpkg/tlpsrc/hobete.tlpsrc + tlpkg/tlpsrc/hobsub.tlpsrc + tlpkg/tlpsrc/hologo.tlpsrc + tlpkg/tlpsrc/hook-pre-commit-pkg.tlpsrc + tlpkg/tlpsrc/hopatch.tlpsrc + tlpkg/tlpsrc/horoscop.tlpsrc + tlpkg/tlpsrc/hpsdiss.tlpsrc + tlpkg/tlpsrc/hrefhide.tlpsrc + tlpkg/tlpsrc/hrlatex.tlpsrc + tlpkg/tlpsrc/hu-berlin-bundle.tlpsrc + tlpkg/tlpsrc/huawei.tlpsrc + tlpkg/tlpsrc/hulipsum.tlpsrc + tlpkg/tlpsrc/hustthesis.tlpsrc + tlpkg/tlpsrc/hvarabic.tlpsrc + tlpkg/tlpsrc/hvfloat.tlpsrc + tlpkg/tlpsrc/hvindex.tlpsrc + tlpkg/tlpsrc/hvqrurl.tlpsrc + tlpkg/tlpsrc/hycolor.tlpsrc + tlpkg/tlpsrc/hypdestopt.tlpsrc + tlpkg/tlpsrc/hypdvips.tlpsrc + tlpkg/tlpsrc/hyper.tlpsrc + tlpkg/tlpsrc/hyperbar.tlpsrc + tlpkg/tlpsrc/hypernat.tlpsrc + tlpkg/tlpsrc/hyperref.tlpsrc + tlpkg/tlpsrc/hyperxmp.tlpsrc + tlpkg/tlpsrc/hyph-utf8.tlpsrc + tlpkg/tlpsrc/hyphen-afrikaans.tlpsrc + tlpkg/tlpsrc/hyphen-ancientgreek.tlpsrc + tlpkg/tlpsrc/hyphen-arabic.tlpsrc + tlpkg/tlpsrc/hyphen-armenian.tlpsrc + tlpkg/tlpsrc/hyphen-base.tlpsrc + tlpkg/tlpsrc/hyphen-basque.tlpsrc + tlpkg/tlpsrc/hyphen-belarusian.tlpsrc + tlpkg/tlpsrc/hyphen-bulgarian.tlpsrc + tlpkg/tlpsrc/hyphen-catalan.tlpsrc + tlpkg/tlpsrc/hyphen-chinese.tlpsrc + tlpkg/tlpsrc/hyphen-churchslavonic.tlpsrc + tlpkg/tlpsrc/hyphen-coptic.tlpsrc + tlpkg/tlpsrc/hyphen-croatian.tlpsrc + tlpkg/tlpsrc/hyphen-czech.tlpsrc + tlpkg/tlpsrc/hyphen-danish.tlpsrc + tlpkg/tlpsrc/hyphen-dutch.tlpsrc + tlpkg/tlpsrc/hyphen-english.tlpsrc + tlpkg/tlpsrc/hyphen-esperanto.tlpsrc + tlpkg/tlpsrc/hyphen-estonian.tlpsrc + tlpkg/tlpsrc/hyphen-ethiopic.tlpsrc + tlpkg/tlpsrc/hyphen-farsi.tlpsrc + tlpkg/tlpsrc/hyphen-finnish.tlpsrc + tlpkg/tlpsrc/hyphen-french.tlpsrc + tlpkg/tlpsrc/hyphen-friulan.tlpsrc + tlpkg/tlpsrc/hyphen-galician.tlpsrc + tlpkg/tlpsrc/hyphen-georgian.tlpsrc + tlpkg/tlpsrc/hyphen-german.tlpsrc + tlpkg/tlpsrc/hyphen-greek.tlpsrc + tlpkg/tlpsrc/hyphen-hungarian.tlpsrc + tlpkg/tlpsrc/hyphen-icelandic.tlpsrc + tlpkg/tlpsrc/hyphen-indic.tlpsrc + tlpkg/tlpsrc/hyphen-indonesian.tlpsrc + tlpkg/tlpsrc/hyphen-interlingua.tlpsrc + tlpkg/tlpsrc/hyphen-irish.tlpsrc + tlpkg/tlpsrc/hyphen-italian.tlpsrc + tlpkg/tlpsrc/hyphen-kurmanji.tlpsrc + tlpkg/tlpsrc/hyphen-latin.tlpsrc + tlpkg/tlpsrc/hyphen-latvian.tlpsrc + tlpkg/tlpsrc/hyphen-lithuanian.tlpsrc + tlpkg/tlpsrc/hyphen-macedonian.tlpsrc + tlpkg/tlpsrc/hyphen-mongolian.tlpsrc + tlpkg/tlpsrc/hyphen-norwegian.tlpsrc + tlpkg/tlpsrc/hyphen-occitan.tlpsrc + tlpkg/tlpsrc/hyphen-piedmontese.tlpsrc + tlpkg/tlpsrc/hyphen-polish.tlpsrc + tlpkg/tlpsrc/hyphen-portuguese.tlpsrc + tlpkg/tlpsrc/hyphen-romanian.tlpsrc + tlpkg/tlpsrc/hyphen-romansh.tlpsrc + tlpkg/tlpsrc/hyphen-russian.tlpsrc + tlpkg/tlpsrc/hyphen-sanskrit.tlpsrc + tlpkg/tlpsrc/hyphen-serbian.tlpsrc + tlpkg/tlpsrc/hyphen-slovak.tlpsrc + tlpkg/tlpsrc/hyphen-slovenian.tlpsrc + tlpkg/tlpsrc/hyphen-spanish.tlpsrc + tlpkg/tlpsrc/hyphen-swedish.tlpsrc + tlpkg/tlpsrc/hyphen-thai.tlpsrc + tlpkg/tlpsrc/hyphen-turkish.tlpsrc + tlpkg/tlpsrc/hyphen-turkmen.tlpsrc + tlpkg/tlpsrc/hyphen-ukrainian.tlpsrc + tlpkg/tlpsrc/hyphen-uppersorbian.tlpsrc + tlpkg/tlpsrc/hyphen-welsh.tlpsrc + tlpkg/tlpsrc/hyphenat.tlpsrc + tlpkg/tlpsrc/hyphenex.tlpsrc + tlpkg/tlpsrc/hyplain.tlpsrc + tlpkg/tlpsrc/ibarra.tlpsrc + tlpkg/tlpsrc/ibycus-babel.tlpsrc + tlpkg/tlpsrc/ibygrk.tlpsrc + tlpkg/tlpsrc/icite.tlpsrc + tlpkg/tlpsrc/icsv.tlpsrc + tlpkg/tlpsrc/identkey.tlpsrc + tlpkg/tlpsrc/idxcmds.tlpsrc + tlpkg/tlpsrc/idxlayout.tlpsrc + tlpkg/tlpsrc/ieeepes.tlpsrc + tlpkg/tlpsrc/ietfbibs.tlpsrc + tlpkg/tlpsrc/iffont.tlpsrc + tlpkg/tlpsrc/ifmslide.tlpsrc + tlpkg/tlpsrc/ifmtarg.tlpsrc + tlpkg/tlpsrc/ifnextok.tlpsrc + tlpkg/tlpsrc/ifoddpage.tlpsrc + tlpkg/tlpsrc/ifplatform.tlpsrc + tlpkg/tlpsrc/ifptex.tlpsrc + tlpkg/tlpsrc/ifsym.tlpsrc + tlpkg/tlpsrc/iftex.tlpsrc + tlpkg/tlpsrc/ifthenx.tlpsrc + tlpkg/tlpsrc/ifxptex.tlpsrc + tlpkg/tlpsrc/iitem.tlpsrc + tlpkg/tlpsrc/ijmart.tlpsrc + tlpkg/tlpsrc/ijqc.tlpsrc + tlpkg/tlpsrc/ijsra.tlpsrc + tlpkg/tlpsrc/imac.tlpsrc + tlpkg/tlpsrc/image-gallery.tlpsrc + tlpkg/tlpsrc/imakeidx.tlpsrc + tlpkg/tlpsrc/imfellenglish.tlpsrc + tlpkg/tlpsrc/impatient-cn.tlpsrc + tlpkg/tlpsrc/impatient-fr.tlpsrc + tlpkg/tlpsrc/impatient.tlpsrc + tlpkg/tlpsrc/impnattypo.tlpsrc + tlpkg/tlpsrc/import.tlpsrc + tlpkg/tlpsrc/imsproc.tlpsrc + tlpkg/tlpsrc/imtekda.tlpsrc + tlpkg/tlpsrc/incgraph.tlpsrc + tlpkg/tlpsrc/includernw.tlpsrc + tlpkg/tlpsrc/inconsolata.tlpsrc + tlpkg/tlpsrc/index.tlpsrc + tlpkg/tlpsrc/indextools.tlpsrc + tlpkg/tlpsrc/infwarerr.tlpsrc + tlpkg/tlpsrc/initials.tlpsrc + tlpkg/tlpsrc/inkpaper.tlpsrc + tlpkg/tlpsrc/inline-images.tlpsrc + tlpkg/tlpsrc/inlinebib.tlpsrc + tlpkg/tlpsrc/inlinedef.tlpsrc + tlpkg/tlpsrc/innerscript.tlpsrc + tlpkg/tlpsrc/inputenx.tlpsrc + tlpkg/tlpsrc/inputtrc.tlpsrc + tlpkg/tlpsrc/inriafonts.tlpsrc + tlpkg/tlpsrc/insbox.tlpsrc + tlpkg/tlpsrc/install-latex-guide-zh-cn.tlpsrc + tlpkg/tlpsrc/installfont.tlpsrc + tlpkg/tlpsrc/intcalc.tlpsrc + tlpkg/tlpsrc/inter.tlpsrc + tlpkg/tlpsrc/interactiveworkbook.tlpsrc + tlpkg/tlpsrc/interchar.tlpsrc + tlpkg/tlpsrc/interfaces.tlpsrc + tlpkg/tlpsrc/interpreter.tlpsrc + tlpkg/tlpsrc/interval.tlpsrc + tlpkg/tlpsrc/intopdf.tlpsrc + tlpkg/tlpsrc/intro-scientific.tlpsrc + tlpkg/tlpsrc/inversepath.tlpsrc + tlpkg/tlpsrc/invoice-class.tlpsrc + tlpkg/tlpsrc/invoice.tlpsrc + tlpkg/tlpsrc/invoice2.tlpsrc + tlpkg/tlpsrc/iodhbwm.tlpsrc + tlpkg/tlpsrc/ionumbers.tlpsrc + tlpkg/tlpsrc/iopart-num.tlpsrc + tlpkg/tlpsrc/ipaex-type1.tlpsrc + tlpkg/tlpsrc/ipaex.tlpsrc + tlpkg/tlpsrc/is-bst.tlpsrc + tlpkg/tlpsrc/iscram.tlpsrc + tlpkg/tlpsrc/iso.tlpsrc + tlpkg/tlpsrc/iso10303.tlpsrc + tlpkg/tlpsrc/isodate.tlpsrc + tlpkg/tlpsrc/isodoc.tlpsrc + tlpkg/tlpsrc/isomath.tlpsrc + tlpkg/tlpsrc/isonums.tlpsrc + tlpkg/tlpsrc/isopt.tlpsrc + tlpkg/tlpsrc/isorot.tlpsrc + tlpkg/tlpsrc/isotope.tlpsrc + tlpkg/tlpsrc/issuulinks.tlpsrc + tlpkg/tlpsrc/istgame.tlpsrc + tlpkg/tlpsrc/itnumpar.tlpsrc + tlpkg/tlpsrc/iwhdp.tlpsrc + tlpkg/tlpsrc/iwona.tlpsrc + tlpkg/tlpsrc/jablantile.tlpsrc + tlpkg/tlpsrc/jacow.tlpsrc + tlpkg/tlpsrc/jadetex.tlpsrc + tlpkg/tlpsrc/jamtimes.tlpsrc + tlpkg/tlpsrc/japanese-otf-uptex.tlpsrc + tlpkg/tlpsrc/japanese-otf.tlpsrc + tlpkg/tlpsrc/jbact.tlpsrc + tlpkg/tlpsrc/jfmutil.tlpsrc + tlpkg/tlpsrc/jigsaw.tlpsrc + tlpkg/tlpsrc/jkmath.tlpsrc + tlpkg/tlpsrc/jknapltx.tlpsrc + tlpkg/tlpsrc/jlabels.tlpsrc + tlpkg/tlpsrc/jlreq-deluxe.tlpsrc + tlpkg/tlpsrc/jlreq.tlpsrc + tlpkg/tlpsrc/jmb.tlpsrc + tlpkg/tlpsrc/jmlr.tlpsrc + tlpkg/tlpsrc/jmn.tlpsrc + tlpkg/tlpsrc/jneurosci.tlpsrc + tlpkg/tlpsrc/jnuexam.tlpsrc + tlpkg/tlpsrc/josefin.tlpsrc + tlpkg/tlpsrc/jpsj.tlpsrc + tlpkg/tlpsrc/js-misc.tlpsrc + tlpkg/tlpsrc/jsclasses.tlpsrc + tlpkg/tlpsrc/jslectureplanner.tlpsrc + tlpkg/tlpsrc/jumplines.tlpsrc + tlpkg/tlpsrc/junicode.tlpsrc + tlpkg/tlpsrc/jupynotex.tlpsrc + tlpkg/tlpsrc/jura.tlpsrc + tlpkg/tlpsrc/juraabbrev.tlpsrc + tlpkg/tlpsrc/jurabib.tlpsrc + tlpkg/tlpsrc/juramisc.tlpsrc + tlpkg/tlpsrc/jurarsp.tlpsrc + tlpkg/tlpsrc/jvlisting.tlpsrc + tlpkg/tlpsrc/kalendarium.tlpsrc + tlpkg/tlpsrc/kanaparser.tlpsrc + tlpkg/tlpsrc/kantlipsum.tlpsrc + tlpkg/tlpsrc/karnaugh-map.tlpsrc + tlpkg/tlpsrc/karnaugh.tlpsrc + tlpkg/tlpsrc/karnaughmap.tlpsrc + tlpkg/tlpsrc/kastrup.tlpsrc + tlpkg/tlpsrc/kblocks.tlpsrc + tlpkg/tlpsrc/kdgdocs.tlpsrc + tlpkg/tlpsrc/kerkis.tlpsrc + tlpkg/tlpsrc/kerntest.tlpsrc + tlpkg/tlpsrc/ketcindy.tlpsrc + tlpkg/tlpsrc/keycommand.tlpsrc + tlpkg/tlpsrc/keyfloat.tlpsrc + tlpkg/tlpsrc/keyindex.tlpsrc + tlpkg/tlpsrc/keyreader.tlpsrc + tlpkg/tlpsrc/keystroke.tlpsrc + tlpkg/tlpsrc/keyval2e.tlpsrc + tlpkg/tlpsrc/keyvaltable.tlpsrc + tlpkg/tlpsrc/kix.tlpsrc + tlpkg/tlpsrc/kixfont.tlpsrc + tlpkg/tlpsrc/kluwer.tlpsrc + tlpkg/tlpsrc/knitting.tlpsrc + tlpkg/tlpsrc/knittingpattern.tlpsrc + tlpkg/tlpsrc/knowledge.tlpsrc + tlpkg/tlpsrc/knuth-errata.tlpsrc + tlpkg/tlpsrc/knuth-lib.tlpsrc + tlpkg/tlpsrc/knuth-local.tlpsrc + tlpkg/tlpsrc/knuth-pdf.tlpsrc + tlpkg/tlpsrc/koma-moderncvclassic.tlpsrc + tlpkg/tlpsrc/koma-script-examples.tlpsrc + tlpkg/tlpsrc/koma-script-sfs.tlpsrc + tlpkg/tlpsrc/koma-script.tlpsrc + tlpkg/tlpsrc/komacv-rg.tlpsrc + tlpkg/tlpsrc/komacv.tlpsrc + tlpkg/tlpsrc/kotex-oblivoir.tlpsrc + tlpkg/tlpsrc/kotex-plain.tlpsrc + tlpkg/tlpsrc/kotex-utf.tlpsrc + tlpkg/tlpsrc/kotex-utils.tlpsrc + tlpkg/tlpsrc/kpathsea.tlpsrc + tlpkg/tlpsrc/kpfonts-otf.tlpsrc + tlpkg/tlpsrc/kpfonts.tlpsrc + tlpkg/tlpsrc/ksfh_nat.tlpsrc + tlpkg/tlpsrc/ksp-thesis.tlpsrc + tlpkg/tlpsrc/ktv-texdata.tlpsrc + tlpkg/tlpsrc/ku-template.tlpsrc + tlpkg/tlpsrc/kurdishlipsum.tlpsrc + tlpkg/tlpsrc/kurier.tlpsrc + tlpkg/tlpsrc/kvdefinekeys.tlpsrc + tlpkg/tlpsrc/kvmap.tlpsrc + tlpkg/tlpsrc/kvoptions.tlpsrc + tlpkg/tlpsrc/kvsetkeys.tlpsrc + tlpkg/tlpsrc/l2picfaq.tlpsrc + tlpkg/tlpsrc/l2tabu-english.tlpsrc + tlpkg/tlpsrc/l2tabu-french.tlpsrc + tlpkg/tlpsrc/l2tabu-italian.tlpsrc + tlpkg/tlpsrc/l2tabu-spanish.tlpsrc + tlpkg/tlpsrc/l2tabu.tlpsrc + tlpkg/tlpsrc/l3backend.tlpsrc + tlpkg/tlpsrc/l3build.tlpsrc + tlpkg/tlpsrc/l3experimental.tlpsrc + tlpkg/tlpsrc/l3kernel.tlpsrc + tlpkg/tlpsrc/l3packages.tlpsrc + tlpkg/tlpsrc/labbook.tlpsrc + tlpkg/tlpsrc/labels.tlpsrc + tlpkg/tlpsrc/labels4easylist.tlpsrc + tlpkg/tlpsrc/labelschanged.tlpsrc + tlpkg/tlpsrc/labyrinth.tlpsrc + tlpkg/tlpsrc/lacheck.tlpsrc + tlpkg/tlpsrc/ladder.tlpsrc + tlpkg/tlpsrc/lambda-lists.tlpsrc + tlpkg/tlpsrc/lambda.tlpsrc + tlpkg/tlpsrc/langcode.tlpsrc + tlpkg/tlpsrc/langsci-avm.tlpsrc + tlpkg/tlpsrc/langsci.tlpsrc + tlpkg/tlpsrc/lapdf.tlpsrc + tlpkg/tlpsrc/lastpackage.tlpsrc + tlpkg/tlpsrc/lastpage.tlpsrc + tlpkg/tlpsrc/latex-amsmath-dev.tlpsrc + tlpkg/tlpsrc/latex-base-dev.tlpsrc + tlpkg/tlpsrc/latex-bin-dev.tlpsrc + tlpkg/tlpsrc/latex-bin.tlpsrc + tlpkg/tlpsrc/latex-brochure.tlpsrc + tlpkg/tlpsrc/latex-course.tlpsrc + tlpkg/tlpsrc/latex-doc-ptr.tlpsrc + tlpkg/tlpsrc/latex-firstaid-dev.tlpsrc + tlpkg/tlpsrc/latex-fonts.tlpsrc + tlpkg/tlpsrc/latex-git-log.tlpsrc + tlpkg/tlpsrc/latex-graphics-companion.tlpsrc + tlpkg/tlpsrc/latex-graphics-dev.tlpsrc + tlpkg/tlpsrc/latex-make.tlpsrc + tlpkg/tlpsrc/latex-mr.tlpsrc + tlpkg/tlpsrc/latex-notes-zh-cn.tlpsrc + tlpkg/tlpsrc/latex-papersize.tlpsrc + tlpkg/tlpsrc/latex-refsheet.tlpsrc + tlpkg/tlpsrc/latex-tools-dev.tlpsrc + tlpkg/tlpsrc/latex-uni8.tlpsrc + tlpkg/tlpsrc/latex-veryshortguide.tlpsrc + tlpkg/tlpsrc/latex-via-exemplos.tlpsrc + tlpkg/tlpsrc/latex-web-companion.tlpsrc + tlpkg/tlpsrc/latex.tlpsrc + tlpkg/tlpsrc/latex2e-help-texinfo-fr.tlpsrc + tlpkg/tlpsrc/latex2e-help-texinfo-spanish.tlpsrc + tlpkg/tlpsrc/latex2e-help-texinfo.tlpsrc + tlpkg/tlpsrc/latex2man.tlpsrc + tlpkg/tlpsrc/latex2nemeth.tlpsrc + tlpkg/tlpsrc/latex4musicians.tlpsrc + tlpkg/tlpsrc/latex4wp-it.tlpsrc + tlpkg/tlpsrc/latex4wp.tlpsrc + tlpkg/tlpsrc/latexbangla.tlpsrc + tlpkg/tlpsrc/latexbug.tlpsrc + tlpkg/tlpsrc/latexcheat-de.tlpsrc + tlpkg/tlpsrc/latexcheat-esmx.tlpsrc + tlpkg/tlpsrc/latexcheat-ptbr.tlpsrc + tlpkg/tlpsrc/latexcheat.tlpsrc + tlpkg/tlpsrc/latexcolors.tlpsrc + tlpkg/tlpsrc/latexconfig.tlpsrc + tlpkg/tlpsrc/latexcourse-rug.tlpsrc + tlpkg/tlpsrc/latexdemo.tlpsrc + tlpkg/tlpsrc/latexdiff.tlpsrc + tlpkg/tlpsrc/latexfileinfo-pkgs.tlpsrc + tlpkg/tlpsrc/latexfileversion.tlpsrc + tlpkg/tlpsrc/latexgit.tlpsrc + tlpkg/tlpsrc/latexindent.tlpsrc + tlpkg/tlpsrc/latexmk.tlpsrc + tlpkg/tlpsrc/latexmp.tlpsrc + tlpkg/tlpsrc/latexpand.tlpsrc + tlpkg/tlpsrc/latino-sine-flexione.tlpsrc + tlpkg/tlpsrc/lato.tlpsrc + tlpkg/tlpsrc/layaureo.tlpsrc + tlpkg/tlpsrc/layouts.tlpsrc + tlpkg/tlpsrc/lazylist.tlpsrc + tlpkg/tlpsrc/lccaps.tlpsrc + tlpkg/tlpsrc/lcd.tlpsrc + tlpkg/tlpsrc/lcdftypetools.tlpsrc + tlpkg/tlpsrc/lcg.tlpsrc + tlpkg/tlpsrc/lcyw.tlpsrc + tlpkg/tlpsrc/leading.tlpsrc + tlpkg/tlpsrc/leadsheets.tlpsrc + tlpkg/tlpsrc/leaflet.tlpsrc + tlpkg/tlpsrc/lebhart.tlpsrc + tlpkg/tlpsrc/lecturer.tlpsrc + tlpkg/tlpsrc/lectures.tlpsrc + tlpkg/tlpsrc/lectureslides.tlpsrc + tlpkg/tlpsrc/ledmac.tlpsrc + tlpkg/tlpsrc/leftidx.tlpsrc + tlpkg/tlpsrc/leftindex.tlpsrc + tlpkg/tlpsrc/leipzig.tlpsrc + tlpkg/tlpsrc/lengthconvert.tlpsrc + tlpkg/tlpsrc/letltxmacro.tlpsrc + tlpkg/tlpsrc/letterspacing.tlpsrc + tlpkg/tlpsrc/letterswitharrows.tlpsrc + tlpkg/tlpsrc/lettre.tlpsrc + tlpkg/tlpsrc/lettrine.tlpsrc + tlpkg/tlpsrc/levy.tlpsrc + tlpkg/tlpsrc/lewis.tlpsrc + tlpkg/tlpsrc/lexend.tlpsrc + tlpkg/tlpsrc/lexikon.tlpsrc + tlpkg/tlpsrc/lexref.tlpsrc + tlpkg/tlpsrc/lfb.tlpsrc + tlpkg/tlpsrc/lgreek.tlpsrc + tlpkg/tlpsrc/lh.tlpsrc + tlpkg/tlpsrc/lhcyr.tlpsrc + tlpkg/tlpsrc/lhelp.tlpsrc + tlpkg/tlpsrc/libertine.tlpsrc + tlpkg/tlpsrc/libertinegc.tlpsrc + tlpkg/tlpsrc/libertinus-fonts.tlpsrc + tlpkg/tlpsrc/libertinus-otf.tlpsrc + tlpkg/tlpsrc/libertinus-type1.tlpsrc + tlpkg/tlpsrc/libertinus.tlpsrc + tlpkg/tlpsrc/libertinust1math.tlpsrc + tlpkg/tlpsrc/libgreek.tlpsrc + tlpkg/tlpsrc/librarian.tlpsrc + tlpkg/tlpsrc/librebaskerville.tlpsrc + tlpkg/tlpsrc/librebodoni.tlpsrc + tlpkg/tlpsrc/librecaslon.tlpsrc + tlpkg/tlpsrc/librefranklin.tlpsrc + tlpkg/tlpsrc/libris.tlpsrc + tlpkg/tlpsrc/lie-hasse.tlpsrc + tlpkg/tlpsrc/light-latex-make.tlpsrc + tlpkg/tlpsrc/lilyglyphs.tlpsrc + tlpkg/tlpsrc/limap.tlpsrc + tlpkg/tlpsrc/limecv.tlpsrc + tlpkg/tlpsrc/linearA.tlpsrc + tlpkg/tlpsrc/linegoal.tlpsrc + tlpkg/tlpsrc/lineno.tlpsrc + tlpkg/tlpsrc/ling-macros.tlpsrc + tlpkg/tlpsrc/linguex.tlpsrc + tlpkg/tlpsrc/linguisticspro.tlpsrc + tlpkg/tlpsrc/linop.tlpsrc + tlpkg/tlpsrc/lion-msc.tlpsrc + tlpkg/tlpsrc/lipsum.tlpsrc + tlpkg/tlpsrc/lisp-on-tex.tlpsrc + tlpkg/tlpsrc/listbib.tlpsrc + tlpkg/tlpsrc/listing.tlpsrc + tlpkg/tlpsrc/listings-ext.tlpsrc + tlpkg/tlpsrc/listings.tlpsrc + tlpkg/tlpsrc/listingsutf8.tlpsrc + tlpkg/tlpsrc/listlbls.tlpsrc + tlpkg/tlpsrc/listliketab.tlpsrc + tlpkg/tlpsrc/listofitems.tlpsrc + tlpkg/tlpsrc/listofsymbols.tlpsrc + tlpkg/tlpsrc/lithuanian.tlpsrc + tlpkg/tlpsrc/liturg.tlpsrc + tlpkg/tlpsrc/lkproof.tlpsrc + tlpkg/tlpsrc/llncsconf.tlpsrc + tlpkg/tlpsrc/lm-math.tlpsrc + tlpkg/tlpsrc/lm.tlpsrc + tlpkg/tlpsrc/lmake.tlpsrc + tlpkg/tlpsrc/lni.tlpsrc + tlpkg/tlpsrc/lobster2.tlpsrc + tlpkg/tlpsrc/locality.tlpsrc + tlpkg/tlpsrc/localloc.tlpsrc + tlpkg/tlpsrc/logbox.tlpsrc + tlpkg/tlpsrc/logical-markup-utils.tlpsrc + tlpkg/tlpsrc/logicproof.tlpsrc + tlpkg/tlpsrc/logicpuzzle.tlpsrc + tlpkg/tlpsrc/logix.tlpsrc + tlpkg/tlpsrc/logpap.tlpsrc + tlpkg/tlpsrc/logreq.tlpsrc + tlpkg/tlpsrc/lollipop.tlpsrc + tlpkg/tlpsrc/longdivision.tlpsrc + tlpkg/tlpsrc/longfbox.tlpsrc + tlpkg/tlpsrc/longfigure.tlpsrc + tlpkg/tlpsrc/longnamefilelist.tlpsrc + tlpkg/tlpsrc/loops.tlpsrc + tlpkg/tlpsrc/lpform.tlpsrc + tlpkg/tlpsrc/lpic.tlpsrc + tlpkg/tlpsrc/lplfitch.tlpsrc + tlpkg/tlpsrc/lps.tlpsrc + tlpkg/tlpsrc/lroundrect.tlpsrc + tlpkg/tlpsrc/lsc.tlpsrc + tlpkg/tlpsrc/lshort-bulgarian.tlpsrc + tlpkg/tlpsrc/lshort-chinese.tlpsrc + tlpkg/tlpsrc/lshort-czech.tlpsrc + tlpkg/tlpsrc/lshort-dutch.tlpsrc + tlpkg/tlpsrc/lshort-english.tlpsrc + tlpkg/tlpsrc/lshort-estonian.tlpsrc + tlpkg/tlpsrc/lshort-finnish.tlpsrc + tlpkg/tlpsrc/lshort-french.tlpsrc + tlpkg/tlpsrc/lshort-german.tlpsrc + tlpkg/tlpsrc/lshort-italian.tlpsrc + tlpkg/tlpsrc/lshort-japanese.tlpsrc + tlpkg/tlpsrc/lshort-korean.tlpsrc + tlpkg/tlpsrc/lshort-mongol.tlpsrc + tlpkg/tlpsrc/lshort-persian.tlpsrc + tlpkg/tlpsrc/lshort-polish.tlpsrc + tlpkg/tlpsrc/lshort-portuguese.tlpsrc + tlpkg/tlpsrc/lshort-russian.tlpsrc + tlpkg/tlpsrc/lshort-slovak.tlpsrc + tlpkg/tlpsrc/lshort-slovenian.tlpsrc + tlpkg/tlpsrc/lshort-spanish.tlpsrc + tlpkg/tlpsrc/lshort-thai.tlpsrc + tlpkg/tlpsrc/lshort-turkish.tlpsrc + tlpkg/tlpsrc/lshort-ukr.tlpsrc + tlpkg/tlpsrc/lshort-vietnamese.tlpsrc + tlpkg/tlpsrc/lstaddons.tlpsrc + tlpkg/tlpsrc/lstbayes.tlpsrc + tlpkg/tlpsrc/lstfiracode.tlpsrc + tlpkg/tlpsrc/lt3graph.tlpsrc + tlpkg/tlpsrc/ltablex.tlpsrc + tlpkg/tlpsrc/ltabptch.tlpsrc + tlpkg/tlpsrc/ltb2bib.tlpsrc + tlpkg/tlpsrc/ltxcmds.tlpsrc + tlpkg/tlpsrc/ltxdockit.tlpsrc + tlpkg/tlpsrc/ltxfileinfo.tlpsrc + tlpkg/tlpsrc/ltxguidex.tlpsrc + tlpkg/tlpsrc/ltximg.tlpsrc + tlpkg/tlpsrc/ltxkeys.tlpsrc + tlpkg/tlpsrc/ltxmisc.tlpsrc + tlpkg/tlpsrc/ltxnew.tlpsrc + tlpkg/tlpsrc/ltxtools.tlpsrc + tlpkg/tlpsrc/lua-alt-getopt.tlpsrc + tlpkg/tlpsrc/lua-check-hyphen.tlpsrc + tlpkg/tlpsrc/lua-physical.tlpsrc + tlpkg/tlpsrc/lua-typo.tlpsrc + tlpkg/tlpsrc/lua-uca.tlpsrc + tlpkg/tlpsrc/lua-ul.tlpsrc + tlpkg/tlpsrc/lua-uni-algos.tlpsrc + tlpkg/tlpsrc/lua-visual-debug.tlpsrc + tlpkg/tlpsrc/luabibentry.tlpsrc + tlpkg/tlpsrc/luabidi.tlpsrc + tlpkg/tlpsrc/luacode.tlpsrc + tlpkg/tlpsrc/luacolor.tlpsrc + tlpkg/tlpsrc/luahbtex.tlpsrc + tlpkg/tlpsrc/luahyphenrules.tlpsrc + tlpkg/tlpsrc/luaimageembed.tlpsrc + tlpkg/tlpsrc/luaindex.tlpsrc + tlpkg/tlpsrc/luainputenc.tlpsrc + tlpkg/tlpsrc/luaintro.tlpsrc + tlpkg/tlpsrc/luajittex.tlpsrc + tlpkg/tlpsrc/luakeys.tlpsrc + tlpkg/tlpsrc/lualatex-doc-de.tlpsrc + tlpkg/tlpsrc/lualatex-doc.tlpsrc + tlpkg/tlpsrc/lualatex-math.tlpsrc + tlpkg/tlpsrc/lualatex-truncate.tlpsrc + tlpkg/tlpsrc/lualibs.tlpsrc + tlpkg/tlpsrc/luamesh.tlpsrc + tlpkg/tlpsrc/luamplib.tlpsrc + tlpkg/tlpsrc/luaotfload.tlpsrc + tlpkg/tlpsrc/luapackageloader.tlpsrc + tlpkg/tlpsrc/luaprogtable.tlpsrc + tlpkg/tlpsrc/luarandom.tlpsrc + tlpkg/tlpsrc/luasseq.tlpsrc + tlpkg/tlpsrc/luatex.tlpsrc + tlpkg/tlpsrc/luatex85.tlpsrc + tlpkg/tlpsrc/luatexbase.tlpsrc + tlpkg/tlpsrc/luatexja.tlpsrc + tlpkg/tlpsrc/luatexko.tlpsrc + tlpkg/tlpsrc/luatextra.tlpsrc + tlpkg/tlpsrc/luatodonotes.tlpsrc + tlpkg/tlpsrc/luavlna.tlpsrc + tlpkg/tlpsrc/luaxml.tlpsrc + tlpkg/tlpsrc/lwarp.tlpsrc + tlpkg/tlpsrc/lxfonts.tlpsrc + tlpkg/tlpsrc/ly1.tlpsrc + tlpkg/tlpsrc/lyluatex.tlpsrc + tlpkg/tlpsrc/m-tx.tlpsrc + tlpkg/tlpsrc/macros2e.tlpsrc + tlpkg/tlpsrc/macroswap.tlpsrc + tlpkg/tlpsrc/mafr.tlpsrc + tlpkg/tlpsrc/magaz.tlpsrc + tlpkg/tlpsrc/magicnum.tlpsrc + tlpkg/tlpsrc/magra.tlpsrc + tlpkg/tlpsrc/mahjong.tlpsrc + tlpkg/tlpsrc/mailing.tlpsrc + tlpkg/tlpsrc/mailmerge.tlpsrc + tlpkg/tlpsrc/make4ht.tlpsrc + tlpkg/tlpsrc/makebarcode.tlpsrc + tlpkg/tlpsrc/makebase.tlpsrc + tlpkg/tlpsrc/makebox.tlpsrc + tlpkg/tlpsrc/makecell.tlpsrc + tlpkg/tlpsrc/makecirc.tlpsrc + tlpkg/tlpsrc/makecmds.tlpsrc + tlpkg/tlpsrc/makecookbook.tlpsrc + tlpkg/tlpsrc/makedtx.tlpsrc + tlpkg/tlpsrc/makeglos.tlpsrc + tlpkg/tlpsrc/makeindex.tlpsrc + tlpkg/tlpsrc/makeplot.tlpsrc + tlpkg/tlpsrc/maker.tlpsrc + tlpkg/tlpsrc/makerobust.tlpsrc + tlpkg/tlpsrc/makeshape.tlpsrc + tlpkg/tlpsrc/mandi.tlpsrc + tlpkg/tlpsrc/manfnt-font.tlpsrc + tlpkg/tlpsrc/manfnt.tlpsrc + tlpkg/tlpsrc/manuscript.tlpsrc + tlpkg/tlpsrc/manyind.tlpsrc + tlpkg/tlpsrc/marathi.tlpsrc + tlpkg/tlpsrc/marcellus.tlpsrc + tlpkg/tlpsrc/margbib.tlpsrc + tlpkg/tlpsrc/marginfit.tlpsrc + tlpkg/tlpsrc/marginfix.tlpsrc + tlpkg/tlpsrc/marginnote.tlpsrc + tlpkg/tlpsrc/markdown.tlpsrc + tlpkg/tlpsrc/marvosym.tlpsrc + tlpkg/tlpsrc/matapli.tlpsrc + tlpkg/tlpsrc/matc3.tlpsrc + tlpkg/tlpsrc/matc3mem.tlpsrc + tlpkg/tlpsrc/match_parens.tlpsrc + tlpkg/tlpsrc/math-into-latex-4.tlpsrc + tlpkg/tlpsrc/mathabx-type1.tlpsrc + tlpkg/tlpsrc/mathabx.tlpsrc + tlpkg/tlpsrc/mathalpha.tlpsrc + tlpkg/tlpsrc/mathastext.tlpsrc + tlpkg/tlpsrc/mathcommand.tlpsrc + tlpkg/tlpsrc/mathcomp.tlpsrc + tlpkg/tlpsrc/mathdesign.tlpsrc + tlpkg/tlpsrc/mathdots.tlpsrc + tlpkg/tlpsrc/mathexam.tlpsrc + tlpkg/tlpsrc/mathfam256.tlpsrc + tlpkg/tlpsrc/mathfixs.tlpsrc + tlpkg/tlpsrc/mathfont.tlpsrc + tlpkg/tlpsrc/mathlig.tlpsrc + tlpkg/tlpsrc/mathpartir.tlpsrc + tlpkg/tlpsrc/mathpazo.tlpsrc + tlpkg/tlpsrc/mathpunctspace.tlpsrc + tlpkg/tlpsrc/maths-symbols.tlpsrc + tlpkg/tlpsrc/mathspec.tlpsrc + tlpkg/tlpsrc/mathspic.tlpsrc + tlpkg/tlpsrc/mathtools.tlpsrc + tlpkg/tlpsrc/matlab-prettifier.tlpsrc + tlpkg/tlpsrc/matrix-skeleton.tlpsrc + tlpkg/tlpsrc/mattens.tlpsrc + tlpkg/tlpsrc/maybemath.tlpsrc + tlpkg/tlpsrc/mcaption.tlpsrc + tlpkg/tlpsrc/mceinleger.tlpsrc + tlpkg/tlpsrc/mcexam.tlpsrc + tlpkg/tlpsrc/mcf2graph.tlpsrc + tlpkg/tlpsrc/mcite.tlpsrc + tlpkg/tlpsrc/mciteplus.tlpsrc + tlpkg/tlpsrc/mcmthesis.tlpsrc + tlpkg/tlpsrc/mdframed.tlpsrc + tlpkg/tlpsrc/mdputu.tlpsrc + tlpkg/tlpsrc/mdsymbol.tlpsrc + tlpkg/tlpsrc/mdwtools.tlpsrc + tlpkg/tlpsrc/media4svg.tlpsrc + tlpkg/tlpsrc/media9.tlpsrc + tlpkg/tlpsrc/medstarbeamer.tlpsrc + tlpkg/tlpsrc/meetingmins.tlpsrc + tlpkg/tlpsrc/membranecomputing.tlpsrc + tlpkg/tlpsrc/memdesign.tlpsrc + tlpkg/tlpsrc/memexsupp.tlpsrc + tlpkg/tlpsrc/memoir.tlpsrc + tlpkg/tlpsrc/memory.tlpsrc + tlpkg/tlpsrc/memorygraphs.tlpsrc + tlpkg/tlpsrc/mendex-doc.tlpsrc + tlpkg/tlpsrc/mensa-tex.tlpsrc + tlpkg/tlpsrc/mentis.tlpsrc + tlpkg/tlpsrc/menu.tlpsrc + tlpkg/tlpsrc/menucard.tlpsrc + tlpkg/tlpsrc/menukeys.tlpsrc + tlpkg/tlpsrc/mercatormap.tlpsrc + tlpkg/tlpsrc/merriweather.tlpsrc + tlpkg/tlpsrc/metafont-beginners.tlpsrc + tlpkg/tlpsrc/metafont.tlpsrc + tlpkg/tlpsrc/metago.tlpsrc + tlpkg/tlpsrc/metalogo.tlpsrc + tlpkg/tlpsrc/metalogox.tlpsrc + tlpkg/tlpsrc/metanorma.tlpsrc + tlpkg/tlpsrc/metaobj.tlpsrc + tlpkg/tlpsrc/metaplot.tlpsrc + tlpkg/tlpsrc/metapost-colorbrewer.tlpsrc + tlpkg/tlpsrc/metapost-examples.tlpsrc + tlpkg/tlpsrc/metapost.tlpsrc + tlpkg/tlpsrc/metastr.tlpsrc + tlpkg/tlpsrc/metatex.tlpsrc + tlpkg/tlpsrc/metatype1.tlpsrc + tlpkg/tlpsrc/metauml.tlpsrc + tlpkg/tlpsrc/method.tlpsrc + tlpkg/tlpsrc/metre.tlpsrc + tlpkg/tlpsrc/metrix.tlpsrc + tlpkg/tlpsrc/mex.tlpsrc + tlpkg/tlpsrc/mf2pt1.tlpsrc + tlpkg/tlpsrc/mfirstuc.tlpsrc + tlpkg/tlpsrc/mflogo-font.tlpsrc + tlpkg/tlpsrc/mflogo.tlpsrc + tlpkg/tlpsrc/mflua.tlpsrc + tlpkg/tlpsrc/mfnfss.tlpsrc + tlpkg/tlpsrc/mfpic.tlpsrc + tlpkg/tlpsrc/mfpic4ode.tlpsrc + tlpkg/tlpsrc/mftinc.tlpsrc + tlpkg/tlpsrc/mfware.tlpsrc + tlpkg/tlpsrc/mgltex.tlpsrc + tlpkg/tlpsrc/mhchem.tlpsrc + tlpkg/tlpsrc/mhequ.tlpsrc + tlpkg/tlpsrc/mi-solns.tlpsrc + tlpkg/tlpsrc/miama.tlpsrc + tlpkg/tlpsrc/microtype-de.tlpsrc + tlpkg/tlpsrc/microtype.tlpsrc + tlpkg/tlpsrc/midnight.tlpsrc + tlpkg/tlpsrc/midpage.tlpsrc + tlpkg/tlpsrc/miller.tlpsrc + tlpkg/tlpsrc/milog.tlpsrc + tlpkg/tlpsrc/milsymb.tlpsrc + tlpkg/tlpsrc/mindflow.tlpsrc + tlpkg/tlpsrc/minibox.tlpsrc + tlpkg/tlpsrc/minidocument.tlpsrc + tlpkg/tlpsrc/minifp.tlpsrc + tlpkg/tlpsrc/minimalist.tlpsrc + tlpkg/tlpsrc/minipage-marginpar.tlpsrc + tlpkg/tlpsrc/miniplot.tlpsrc + tlpkg/tlpsrc/minitoc.tlpsrc + tlpkg/tlpsrc/minorrevision.tlpsrc + tlpkg/tlpsrc/minted.tlpsrc + tlpkg/tlpsrc/mintspirit.tlpsrc + tlpkg/tlpsrc/minutes.tlpsrc + tlpkg/tlpsrc/mismath.tlpsrc + tlpkg/tlpsrc/missaali.tlpsrc + tlpkg/tlpsrc/mkgrkindex.tlpsrc + tlpkg/tlpsrc/mkjobtexmf.tlpsrc + tlpkg/tlpsrc/mkpattern.tlpsrc + tlpkg/tlpsrc/mkpic.tlpsrc + tlpkg/tlpsrc/mla-paper.tlpsrc + tlpkg/tlpsrc/mlacls.tlpsrc + tlpkg/tlpsrc/mleftright.tlpsrc + tlpkg/tlpsrc/mlist.tlpsrc + tlpkg/tlpsrc/mlmodern.tlpsrc + tlpkg/tlpsrc/mltex.tlpsrc + tlpkg/tlpsrc/mluexercise.tlpsrc + tlpkg/tlpsrc/mmap.tlpsrc + tlpkg/tlpsrc/mnotes.tlpsrc + tlpkg/tlpsrc/mnras.tlpsrc + tlpkg/tlpsrc/mnsymbol.tlpsrc + tlpkg/tlpsrc/modeles-factures-belges-assocs.tlpsrc + tlpkg/tlpsrc/moderncv.tlpsrc + tlpkg/tlpsrc/modernposter.tlpsrc + tlpkg/tlpsrc/moderntimeline.tlpsrc + tlpkg/tlpsrc/modes.tlpsrc + tlpkg/tlpsrc/modiagram.tlpsrc + tlpkg/tlpsrc/modref.tlpsrc + tlpkg/tlpsrc/modroman.tlpsrc + tlpkg/tlpsrc/modular.tlpsrc + tlpkg/tlpsrc/modulus.tlpsrc + tlpkg/tlpsrc/mongolian-babel.tlpsrc + tlpkg/tlpsrc/monofill.tlpsrc + tlpkg/tlpsrc/montex.tlpsrc + tlpkg/tlpsrc/montserrat.tlpsrc + tlpkg/tlpsrc/moodle.tlpsrc + tlpkg/tlpsrc/moreenum.tlpsrc + tlpkg/tlpsrc/morefloats.tlpsrc + tlpkg/tlpsrc/morehype.tlpsrc + tlpkg/tlpsrc/moresize.tlpsrc + tlpkg/tlpsrc/moreverb.tlpsrc + tlpkg/tlpsrc/morewrites.tlpsrc + tlpkg/tlpsrc/morisawa.tlpsrc + tlpkg/tlpsrc/movie15.tlpsrc + tlpkg/tlpsrc/mp3d.tlpsrc + tlpkg/tlpsrc/mparhack.tlpsrc + tlpkg/tlpsrc/mparrows.tlpsrc + tlpkg/tlpsrc/mpattern.tlpsrc + tlpkg/tlpsrc/mpcolornames.tlpsrc + tlpkg/tlpsrc/mpfonts.tlpsrc + tlpkg/tlpsrc/mpgraphics.tlpsrc + tlpkg/tlpsrc/mpman-ru.tlpsrc + tlpkg/tlpsrc/mpostinl.tlpsrc + tlpkg/tlpsrc/mptopdf.tlpsrc + tlpkg/tlpsrc/mptrees.tlpsrc + tlpkg/tlpsrc/ms.tlpsrc + tlpkg/tlpsrc/msc.tlpsrc + tlpkg/tlpsrc/msg.tlpsrc + tlpkg/tlpsrc/mslapa.tlpsrc + tlpkg/tlpsrc/msu-thesis.tlpsrc + tlpkg/tlpsrc/mtgreek.tlpsrc + tlpkg/tlpsrc/mucproc.tlpsrc + tlpkg/tlpsrc/mugsthesis.tlpsrc + tlpkg/tlpsrc/muling.tlpsrc + tlpkg/tlpsrc/multenum.tlpsrc + tlpkg/tlpsrc/multiaudience.tlpsrc + tlpkg/tlpsrc/multibbl.tlpsrc + tlpkg/tlpsrc/multibib.tlpsrc + tlpkg/tlpsrc/multibibliography.tlpsrc + tlpkg/tlpsrc/multicap.tlpsrc + tlpkg/tlpsrc/multicolrule.tlpsrc + tlpkg/tlpsrc/multidef.tlpsrc + tlpkg/tlpsrc/multido.tlpsrc + tlpkg/tlpsrc/multienv.tlpsrc + tlpkg/tlpsrc/multiexpand.tlpsrc + tlpkg/tlpsrc/multilang.tlpsrc + tlpkg/tlpsrc/multiobjective.tlpsrc + tlpkg/tlpsrc/multirow.tlpsrc + tlpkg/tlpsrc/munich.tlpsrc + tlpkg/tlpsrc/musical.tlpsrc + tlpkg/tlpsrc/musicography.tlpsrc + tlpkg/tlpsrc/musikui.tlpsrc + tlpkg/tlpsrc/musixguit.tlpsrc + tlpkg/tlpsrc/musixtex-fonts.tlpsrc + tlpkg/tlpsrc/musixtex.tlpsrc + tlpkg/tlpsrc/musixtnt.tlpsrc + tlpkg/tlpsrc/musuos.tlpsrc + tlpkg/tlpsrc/muthesis.tlpsrc + tlpkg/tlpsrc/mversion.tlpsrc + tlpkg/tlpsrc/mwcls.tlpsrc + tlpkg/tlpsrc/mwe.tlpsrc + tlpkg/tlpsrc/mweights.tlpsrc + tlpkg/tlpsrc/mxedruli.tlpsrc + tlpkg/tlpsrc/mycv.tlpsrc + tlpkg/tlpsrc/mylatex.tlpsrc + tlpkg/tlpsrc/mylatexformat.tlpsrc + tlpkg/tlpsrc/mynsfc.tlpsrc + tlpkg/tlpsrc/na-box.tlpsrc + tlpkg/tlpsrc/na-position.tlpsrc + tlpkg/tlpsrc/nag.tlpsrc + tlpkg/tlpsrc/nameauth.tlpsrc + tlpkg/tlpsrc/namedef.tlpsrc + tlpkg/tlpsrc/namespc.tlpsrc + tlpkg/tlpsrc/nanicolle.tlpsrc + tlpkg/tlpsrc/nanumtype1.tlpsrc + tlpkg/tlpsrc/nar.tlpsrc + tlpkg/tlpsrc/natbib.tlpsrc + tlpkg/tlpsrc/natded.tlpsrc + tlpkg/tlpsrc/nath.tlpsrc + tlpkg/tlpsrc/nature.tlpsrc + tlpkg/tlpsrc/navigator.tlpsrc + tlpkg/tlpsrc/navydocs.tlpsrc + tlpkg/tlpsrc/ncclatex.tlpsrc + tlpkg/tlpsrc/ncctools.tlpsrc + tlpkg/tlpsrc/ncntrsbk.tlpsrc + tlpkg/tlpsrc/nddiss.tlpsrc + tlpkg/tlpsrc/ndsu-thesis.tlpsrc + tlpkg/tlpsrc/needspace.tlpsrc + tlpkg/tlpsrc/nestquot.tlpsrc + tlpkg/tlpsrc/neuralnetwork.tlpsrc + tlpkg/tlpsrc/nevelok.tlpsrc + tlpkg/tlpsrc/newcommand.tlpsrc + tlpkg/tlpsrc/newcomputermodern.tlpsrc + tlpkg/tlpsrc/newenviron.tlpsrc + tlpkg/tlpsrc/newfile.tlpsrc + tlpkg/tlpsrc/newfloat.tlpsrc + tlpkg/tlpsrc/newlfm.tlpsrc + tlpkg/tlpsrc/newpax.tlpsrc + tlpkg/tlpsrc/newpx.tlpsrc + tlpkg/tlpsrc/newsletr.tlpsrc + tlpkg/tlpsrc/newspaper.tlpsrc + tlpkg/tlpsrc/newtx.tlpsrc + tlpkg/tlpsrc/newtxsf.tlpsrc + tlpkg/tlpsrc/newtxtt.tlpsrc + tlpkg/tlpsrc/newunicodechar.tlpsrc + tlpkg/tlpsrc/newvbtm.tlpsrc + tlpkg/tlpsrc/newverbs.tlpsrc + tlpkg/tlpsrc/nextpage.tlpsrc + tlpkg/tlpsrc/nfssext-cfr.tlpsrc + tlpkg/tlpsrc/nicefilelist.tlpsrc + tlpkg/tlpsrc/niceframe-type1.tlpsrc + tlpkg/tlpsrc/niceframe.tlpsrc + tlpkg/tlpsrc/nicematrix.tlpsrc + tlpkg/tlpsrc/nicetext.tlpsrc + tlpkg/tlpsrc/nidanfloat.tlpsrc + tlpkg/tlpsrc/nih.tlpsrc + tlpkg/tlpsrc/nihbiosketch.tlpsrc + tlpkg/tlpsrc/nimbus15.tlpsrc + tlpkg/tlpsrc/nimsticks.tlpsrc + tlpkg/tlpsrc/ninecolors.tlpsrc + tlpkg/tlpsrc/njurepo.tlpsrc + tlpkg/tlpsrc/nkarta.tlpsrc + tlpkg/tlpsrc/nl-interval.tlpsrc + tlpkg/tlpsrc/nlctdoc.tlpsrc + tlpkg/tlpsrc/nmbib.tlpsrc + tlpkg/tlpsrc/nnext.tlpsrc + tlpkg/tlpsrc/noconflict.tlpsrc + tlpkg/tlpsrc/nodetree.tlpsrc + tlpkg/tlpsrc/noindentafter.tlpsrc + tlpkg/tlpsrc/noitcrul.tlpsrc + tlpkg/tlpsrc/nolbreaks.tlpsrc + tlpkg/tlpsrc/nomencl.tlpsrc + tlpkg/tlpsrc/nomentbl.tlpsrc + tlpkg/tlpsrc/nonfloat.tlpsrc + tlpkg/tlpsrc/nonumonpart.tlpsrc + tlpkg/tlpsrc/nopageno.tlpsrc + tlpkg/tlpsrc/norasi-c90.tlpsrc + tlpkg/tlpsrc/normalcolor.tlpsrc + tlpkg/tlpsrc/nostarch.tlpsrc + tlpkg/tlpsrc/notes.tlpsrc + tlpkg/tlpsrc/notes2bib.tlpsrc + tlpkg/tlpsrc/notespages.tlpsrc + tlpkg/tlpsrc/notestex.tlpsrc + tlpkg/tlpsrc/notex-bst.tlpsrc + tlpkg/tlpsrc/noto-emoji.tlpsrc + tlpkg/tlpsrc/noto.tlpsrc + tlpkg/tlpsrc/notoccite.tlpsrc + tlpkg/tlpsrc/notomath.tlpsrc + tlpkg/tlpsrc/novel.tlpsrc + tlpkg/tlpsrc/nowidow.tlpsrc + tlpkg/tlpsrc/nox.tlpsrc + tlpkg/tlpsrc/npp-for-context.tlpsrc + tlpkg/tlpsrc/nrc.tlpsrc + tlpkg/tlpsrc/ntgclass.tlpsrc + tlpkg/tlpsrc/nth.tlpsrc + tlpkg/tlpsrc/ntheorem-vn.tlpsrc + tlpkg/tlpsrc/ntheorem.tlpsrc + tlpkg/tlpsrc/nuc.tlpsrc + tlpkg/tlpsrc/nucleardata.tlpsrc + tlpkg/tlpsrc/numberedblock.tlpsrc + tlpkg/tlpsrc/numberpt.tlpsrc + tlpkg/tlpsrc/numerica.tlpsrc + tlpkg/tlpsrc/numericplots.tlpsrc + tlpkg/tlpsrc/numname.tlpsrc + tlpkg/tlpsrc/numnameru.tlpsrc + tlpkg/tlpsrc/numprint.tlpsrc + tlpkg/tlpsrc/numspell.tlpsrc + tlpkg/tlpsrc/nunito.tlpsrc + tlpkg/tlpsrc/nwejm.tlpsrc + tlpkg/tlpsrc/oberdiek.tlpsrc + tlpkg/tlpsrc/objectz.tlpsrc + tlpkg/tlpsrc/obnov.tlpsrc + tlpkg/tlpsrc/ocg-p.tlpsrc + tlpkg/tlpsrc/ocgx.tlpsrc + tlpkg/tlpsrc/ocgx2.tlpsrc + tlpkg/tlpsrc/ocherokee.tlpsrc + tlpkg/tlpsrc/ocr-b-outline.tlpsrc + tlpkg/tlpsrc/ocr-b.tlpsrc + tlpkg/tlpsrc/ocr-latex.tlpsrc + tlpkg/tlpsrc/octave.tlpsrc + tlpkg/tlpsrc/octavo.tlpsrc + tlpkg/tlpsrc/odsfile.tlpsrc + tlpkg/tlpsrc/ofs.tlpsrc + tlpkg/tlpsrc/ogham.tlpsrc + tlpkg/tlpsrc/oinuit.tlpsrc + tlpkg/tlpsrc/old-arrows.tlpsrc + tlpkg/tlpsrc/oldlatin.tlpsrc + tlpkg/tlpsrc/oldstandard.tlpsrc + tlpkg/tlpsrc/oldstyle.tlpsrc + tlpkg/tlpsrc/olsak-misc.tlpsrc + tlpkg/tlpsrc/omega.tlpsrc + tlpkg/tlpsrc/omegaware.tlpsrc + tlpkg/tlpsrc/onedown.tlpsrc + tlpkg/tlpsrc/onlyamsmath.tlpsrc + tlpkg/tlpsrc/onrannual.tlpsrc + tlpkg/tlpsrc/opcit.tlpsrc + tlpkg/tlpsrc/opensans.tlpsrc + tlpkg/tlpsrc/oplotsymbl.tlpsrc + tlpkg/tlpsrc/opteng.tlpsrc + tlpkg/tlpsrc/optex.tlpsrc + tlpkg/tlpsrc/optidef.tlpsrc + tlpkg/tlpsrc/optional.tlpsrc + tlpkg/tlpsrc/options.tlpsrc + tlpkg/tlpsrc/orcidlink.tlpsrc + tlpkg/tlpsrc/ordinalpt.tlpsrc + tlpkg/tlpsrc/orientation.tlpsrc + tlpkg/tlpsrc/orkhun.tlpsrc + tlpkg/tlpsrc/oscola.tlpsrc + tlpkg/tlpsrc/oswald.tlpsrc + tlpkg/tlpsrc/ot-tableau.tlpsrc + tlpkg/tlpsrc/othello.tlpsrc + tlpkg/tlpsrc/othelloboard.tlpsrc + tlpkg/tlpsrc/otibet.tlpsrc + tlpkg/tlpsrc/oubraces.tlpsrc + tlpkg/tlpsrc/oup-authoring-template.tlpsrc + tlpkg/tlpsrc/outerhbox.tlpsrc + tlpkg/tlpsrc/outline.tlpsrc + tlpkg/tlpsrc/outliner.tlpsrc + tlpkg/tlpsrc/outlines.tlpsrc + tlpkg/tlpsrc/outlining.tlpsrc + tlpkg/tlpsrc/overlays.tlpsrc + tlpkg/tlpsrc/overlock.tlpsrc + tlpkg/tlpsrc/overpic.tlpsrc + tlpkg/tlpsrc/pacioli.tlpsrc + tlpkg/tlpsrc/padauk.tlpsrc + tlpkg/tlpsrc/padcount.tlpsrc + tlpkg/tlpsrc/pagecolor.tlpsrc + tlpkg/tlpsrc/pagecont.tlpsrc + tlpkg/tlpsrc/pagenote.tlpsrc + tlpkg/tlpsrc/pagerange.tlpsrc + tlpkg/tlpsrc/pagesel.tlpsrc + tlpkg/tlpsrc/pageslts.tlpsrc + tlpkg/tlpsrc/palatino.tlpsrc + tlpkg/tlpsrc/paper.tlpsrc + tlpkg/tlpsrc/papercdcase.tlpsrc + tlpkg/tlpsrc/papermas.tlpsrc + tlpkg/tlpsrc/papertex.tlpsrc + tlpkg/tlpsrc/paracol.tlpsrc + tlpkg/tlpsrc/parades.tlpsrc + tlpkg/tlpsrc/paralist.tlpsrc + tlpkg/tlpsrc/parallel.tlpsrc + tlpkg/tlpsrc/paratype.tlpsrc + tlpkg/tlpsrc/paresse.tlpsrc + tlpkg/tlpsrc/parnotes.tlpsrc + tlpkg/tlpsrc/parrun.tlpsrc + tlpkg/tlpsrc/parsa.tlpsrc + tlpkg/tlpsrc/parselines.tlpsrc + tlpkg/tlpsrc/parskip.tlpsrc + tlpkg/tlpsrc/pas-cours.tlpsrc + tlpkg/tlpsrc/pas-crosswords.tlpsrc + tlpkg/tlpsrc/pas-cv.tlpsrc + tlpkg/tlpsrc/pas-tableur.tlpsrc + tlpkg/tlpsrc/passivetex.tlpsrc + tlpkg/tlpsrc/patch.tlpsrc + tlpkg/tlpsrc/patchcmd.tlpsrc + tlpkg/tlpsrc/patgen.tlpsrc + tlpkg/tlpsrc/patgen2-tutorial.tlpsrc + tlpkg/tlpsrc/path.tlpsrc + tlpkg/tlpsrc/pauldoc.tlpsrc + tlpkg/tlpsrc/pawpict.tlpsrc + tlpkg/tlpsrc/pax.tlpsrc + tlpkg/tlpsrc/pb-diagram.tlpsrc + tlpkg/tlpsrc/pbalance.tlpsrc + tlpkg/tlpsrc/pbibtex-base.tlpsrc + tlpkg/tlpsrc/pbox.tlpsrc + tlpkg/tlpsrc/pbsheet.tlpsrc + tlpkg/tlpsrc/pdf-trans.tlpsrc + tlpkg/tlpsrc/pdf14.tlpsrc + tlpkg/tlpsrc/pdfarticle.tlpsrc + tlpkg/tlpsrc/pdfbook2.tlpsrc + tlpkg/tlpsrc/pdfcolmk.tlpsrc + tlpkg/tlpsrc/pdfcomment.tlpsrc + tlpkg/tlpsrc/pdfcprot.tlpsrc + tlpkg/tlpsrc/pdfcrop.tlpsrc + tlpkg/tlpsrc/pdfescape.tlpsrc + tlpkg/tlpsrc/pdfjam.tlpsrc + tlpkg/tlpsrc/pdflatexpicscale.tlpsrc + tlpkg/tlpsrc/pdflscape.tlpsrc + tlpkg/tlpsrc/pdfmanagement-testphase.tlpsrc + tlpkg/tlpsrc/pdfmarginpar.tlpsrc + tlpkg/tlpsrc/pdfoverlay.tlpsrc + tlpkg/tlpsrc/pdfpagediff.tlpsrc + tlpkg/tlpsrc/pdfpages.tlpsrc + tlpkg/tlpsrc/pdfpc-movie.tlpsrc + tlpkg/tlpsrc/pdfpc.tlpsrc + tlpkg/tlpsrc/pdfprivacy.tlpsrc + tlpkg/tlpsrc/pdfreview.tlpsrc + tlpkg/tlpsrc/pdfscreen.tlpsrc + tlpkg/tlpsrc/pdfslide.tlpsrc + tlpkg/tlpsrc/pdfsync.tlpsrc + tlpkg/tlpsrc/pdftex-quiet.tlpsrc + tlpkg/tlpsrc/pdftex.tlpsrc + tlpkg/tlpsrc/pdftexcmds.tlpsrc + tlpkg/tlpsrc/pdftosrc.tlpsrc + tlpkg/tlpsrc/pdftricks.tlpsrc + tlpkg/tlpsrc/pdftricks2.tlpsrc + tlpkg/tlpsrc/pdfwin.tlpsrc + tlpkg/tlpsrc/pdfx.tlpsrc + tlpkg/tlpsrc/pdfxup.tlpsrc + tlpkg/tlpsrc/pecha.tlpsrc + tlpkg/tlpsrc/pedigree-perl.tlpsrc + tlpkg/tlpsrc/penrose.tlpsrc + tlpkg/tlpsrc/perception.tlpsrc + tlpkg/tlpsrc/perfectcut.tlpsrc + tlpkg/tlpsrc/perltex.tlpsrc + tlpkg/tlpsrc/permute.tlpsrc + tlpkg/tlpsrc/persian-bib.tlpsrc + tlpkg/tlpsrc/petiteannonce.tlpsrc + tlpkg/tlpsrc/petri-nets.tlpsrc + tlpkg/tlpsrc/pfarrei.tlpsrc + tlpkg/tlpsrc/pgf-blur.tlpsrc + tlpkg/tlpsrc/pgf-cmykshadings.tlpsrc + tlpkg/tlpsrc/pgf-pie.tlpsrc + tlpkg/tlpsrc/pgf-soroban.tlpsrc + tlpkg/tlpsrc/pgf-spectra.tlpsrc + tlpkg/tlpsrc/pgf-umlcd.tlpsrc + tlpkg/tlpsrc/pgf-umlsd.tlpsrc + tlpkg/tlpsrc/pgf.tlpsrc + tlpkg/tlpsrc/pgfgantt.tlpsrc + tlpkg/tlpsrc/pgfkeyx.tlpsrc + tlpkg/tlpsrc/pgfmolbio.tlpsrc + tlpkg/tlpsrc/pgfmorepages.tlpsrc + tlpkg/tlpsrc/pgfopts.tlpsrc + tlpkg/tlpsrc/pgfornament-han.tlpsrc + tlpkg/tlpsrc/pgfornament.tlpsrc + tlpkg/tlpsrc/pgfplots.tlpsrc + tlpkg/tlpsrc/phaistos.tlpsrc + tlpkg/tlpsrc/phffullpagefigure.tlpsrc + tlpkg/tlpsrc/phfnote.tlpsrc + tlpkg/tlpsrc/phfparen.tlpsrc + tlpkg/tlpsrc/phfqit.tlpsrc + tlpkg/tlpsrc/phfquotetext.tlpsrc + tlpkg/tlpsrc/phfsvnwatermark.tlpsrc + tlpkg/tlpsrc/phfthm.tlpsrc + tlpkg/tlpsrc/philex.tlpsrc + tlpkg/tlpsrc/philokalia.tlpsrc + tlpkg/tlpsrc/philosophersimprint.tlpsrc + tlpkg/tlpsrc/phonenumbers.tlpsrc + tlpkg/tlpsrc/phonetic.tlpsrc + tlpkg/tlpsrc/phonrule.tlpsrc + tlpkg/tlpsrc/photo.tlpsrc + tlpkg/tlpsrc/physconst.tlpsrc + tlpkg/tlpsrc/physics.tlpsrc + tlpkg/tlpsrc/physunits.tlpsrc + tlpkg/tlpsrc/piano.tlpsrc + tlpkg/tlpsrc/picinpar.tlpsrc + tlpkg/tlpsrc/pict2e.tlpsrc + tlpkg/tlpsrc/pictex.tlpsrc + tlpkg/tlpsrc/pictex2.tlpsrc + tlpkg/tlpsrc/pictexsum.tlpsrc + tlpkg/tlpsrc/picture.tlpsrc + tlpkg/tlpsrc/piechartmp.tlpsrc + tlpkg/tlpsrc/piff.tlpsrc + tlpkg/tlpsrc/pigpen.tlpsrc + tlpkg/tlpsrc/pinlabel.tlpsrc + tlpkg/tlpsrc/pinoutikz.tlpsrc + tlpkg/tlpsrc/pitex.tlpsrc + tlpkg/tlpsrc/pittetd.tlpsrc + tlpkg/tlpsrc/pixelart.tlpsrc + tlpkg/tlpsrc/pkfix-helper.tlpsrc + tlpkg/tlpsrc/pkfix.tlpsrc + tlpkg/tlpsrc/pkgloader.tlpsrc + tlpkg/tlpsrc/pkuthss.tlpsrc + tlpkg/tlpsrc/pl.tlpsrc + tlpkg/tlpsrc/placeat.tlpsrc + tlpkg/tlpsrc/placeins-plain.tlpsrc + tlpkg/tlpsrc/placeins.tlpsrc + tlpkg/tlpsrc/plain-doc.tlpsrc + tlpkg/tlpsrc/plain.tlpsrc + tlpkg/tlpsrc/plainpkg.tlpsrc + tlpkg/tlpsrc/plainyr.tlpsrc + tlpkg/tlpsrc/plantslabels.tlpsrc + tlpkg/tlpsrc/plantuml.tlpsrc + tlpkg/tlpsrc/plari.tlpsrc + tlpkg/tlpsrc/plates.tlpsrc + tlpkg/tlpsrc/platex-tools.tlpsrc + tlpkg/tlpsrc/platex.tlpsrc + tlpkg/tlpsrc/platexcheat.tlpsrc + tlpkg/tlpsrc/plautopatch.tlpsrc + tlpkg/tlpsrc/play.tlpsrc + tlpkg/tlpsrc/playfair.tlpsrc + tlpkg/tlpsrc/plex-otf.tlpsrc + tlpkg/tlpsrc/plex.tlpsrc + tlpkg/tlpsrc/plimsoll.tlpsrc + tlpkg/tlpsrc/plipsum.tlpsrc + tlpkg/tlpsrc/plnfss.tlpsrc + tlpkg/tlpsrc/plstmary.tlpsrc + tlpkg/tlpsrc/plweb.tlpsrc + tlpkg/tlpsrc/pm-isomath.tlpsrc + tlpkg/tlpsrc/pmboxdraw.tlpsrc + tlpkg/tlpsrc/pmgraph.tlpsrc + tlpkg/tlpsrc/pmhanguljamo.tlpsrc + tlpkg/tlpsrc/pmx.tlpsrc + tlpkg/tlpsrc/pmxchords.tlpsrc + tlpkg/tlpsrc/pnas2009.tlpsrc + tlpkg/tlpsrc/poemscol.tlpsrc + tlpkg/tlpsrc/poetry.tlpsrc + tlpkg/tlpsrc/poetrytex.tlpsrc + tlpkg/tlpsrc/poiretone.tlpsrc + tlpkg/tlpsrc/polexpr.tlpsrc + tlpkg/tlpsrc/polski.tlpsrc + tlpkg/tlpsrc/poltawski.tlpsrc + tlpkg/tlpsrc/polyglossia.tlpsrc + tlpkg/tlpsrc/polynom.tlpsrc + tlpkg/tlpsrc/polynomial.tlpsrc + tlpkg/tlpsrc/polytable.tlpsrc + tlpkg/tlpsrc/poormanlog.tlpsrc + tlpkg/tlpsrc/postage.tlpsrc + tlpkg/tlpsrc/postcards.tlpsrc + tlpkg/tlpsrc/poster-mac.tlpsrc + tlpkg/tlpsrc/powerdot-fuberlin.tlpsrc + tlpkg/tlpsrc/powerdot-tuliplab.tlpsrc + tlpkg/tlpsrc/powerdot.tlpsrc + tlpkg/tlpsrc/ppr-prv.tlpsrc + tlpkg/tlpsrc/pracjourn.tlpsrc + tlpkg/tlpsrc/practicalreports.tlpsrc + tlpkg/tlpsrc/prelim2e.tlpsrc + tlpkg/tlpsrc/preprint.tlpsrc + tlpkg/tlpsrc/prerex.tlpsrc + tlpkg/tlpsrc/present.tlpsrc + tlpkg/tlpsrc/pressrelease.tlpsrc + tlpkg/tlpsrc/prettyref.tlpsrc + tlpkg/tlpsrc/preview.tlpsrc + tlpkg/tlpsrc/prftree.tlpsrc + tlpkg/tlpsrc/principia.tlpsrc + tlpkg/tlpsrc/printlen.tlpsrc + tlpkg/tlpsrc/proba.tlpsrc + tlpkg/tlpsrc/probsoln.tlpsrc + tlpkg/tlpsrc/procIAGssymp.tlpsrc + tlpkg/tlpsrc/prodint.tlpsrc + tlpkg/tlpsrc/productbox.tlpsrc + tlpkg/tlpsrc/profcollege.tlpsrc + tlpkg/tlpsrc/program.tlpsrc + tlpkg/tlpsrc/progress.tlpsrc + tlpkg/tlpsrc/progressbar.tlpsrc + tlpkg/tlpsrc/proof-at-the-end.tlpsrc + tlpkg/tlpsrc/proofread.tlpsrc + tlpkg/tlpsrc/prooftrees.tlpsrc + tlpkg/tlpsrc/properties.tlpsrc + tlpkg/tlpsrc/proposal.tlpsrc + tlpkg/tlpsrc/prosper.tlpsrc + tlpkg/tlpsrc/protex.tlpsrc + tlpkg/tlpsrc/protocol.tlpsrc + tlpkg/tlpsrc/prtec.tlpsrc + tlpkg/tlpsrc/przechlewski-book.tlpsrc + tlpkg/tlpsrc/ps2eps.tlpsrc + tlpkg/tlpsrc/ps2pk.tlpsrc + tlpkg/tlpsrc/psbao.tlpsrc + tlpkg/tlpsrc/pseudo.tlpsrc + tlpkg/tlpsrc/pseudocode.tlpsrc + tlpkg/tlpsrc/psfrag-italian.tlpsrc + tlpkg/tlpsrc/psfrag.tlpsrc + tlpkg/tlpsrc/psfragx.tlpsrc + tlpkg/tlpsrc/psgo.tlpsrc + tlpkg/tlpsrc/psizzl.tlpsrc + tlpkg/tlpsrc/pslatex.tlpsrc + tlpkg/tlpsrc/psnfss.tlpsrc + tlpkg/tlpsrc/pspicture.tlpsrc + tlpkg/tlpsrc/pst-2dplot.tlpsrc + tlpkg/tlpsrc/pst-3d.tlpsrc + tlpkg/tlpsrc/pst-3dplot.tlpsrc + tlpkg/tlpsrc/pst-abspos.tlpsrc + tlpkg/tlpsrc/pst-am.tlpsrc + tlpkg/tlpsrc/pst-antiprism.tlpsrc + tlpkg/tlpsrc/pst-arrow.tlpsrc + tlpkg/tlpsrc/pst-asr.tlpsrc + tlpkg/tlpsrc/pst-bar.tlpsrc + tlpkg/tlpsrc/pst-barcode.tlpsrc + tlpkg/tlpsrc/pst-bezier.tlpsrc + tlpkg/tlpsrc/pst-blur.tlpsrc + tlpkg/tlpsrc/pst-bspline.tlpsrc + tlpkg/tlpsrc/pst-calculate.tlpsrc + tlpkg/tlpsrc/pst-calendar.tlpsrc + tlpkg/tlpsrc/pst-cie.tlpsrc + tlpkg/tlpsrc/pst-circ.tlpsrc + tlpkg/tlpsrc/pst-coil.tlpsrc + tlpkg/tlpsrc/pst-contourplot.tlpsrc + tlpkg/tlpsrc/pst-cox.tlpsrc + tlpkg/tlpsrc/pst-dart.tlpsrc + tlpkg/tlpsrc/pst-dbicons.tlpsrc + tlpkg/tlpsrc/pst-diffraction.tlpsrc + tlpkg/tlpsrc/pst-electricfield.tlpsrc + tlpkg/tlpsrc/pst-eps.tlpsrc + tlpkg/tlpsrc/pst-eucl-translation-bg.tlpsrc + tlpkg/tlpsrc/pst-eucl.tlpsrc + tlpkg/tlpsrc/pst-exa.tlpsrc + tlpkg/tlpsrc/pst-feyn.tlpsrc + tlpkg/tlpsrc/pst-fill.tlpsrc + tlpkg/tlpsrc/pst-fit.tlpsrc + tlpkg/tlpsrc/pst-fr3d.tlpsrc + tlpkg/tlpsrc/pst-fractal.tlpsrc + tlpkg/tlpsrc/pst-fun.tlpsrc + tlpkg/tlpsrc/pst-func.tlpsrc + tlpkg/tlpsrc/pst-gantt.tlpsrc + tlpkg/tlpsrc/pst-geo.tlpsrc + tlpkg/tlpsrc/pst-geometrictools.tlpsrc + tlpkg/tlpsrc/pst-ghsb.tlpsrc + tlpkg/tlpsrc/pst-gr3d.tlpsrc + tlpkg/tlpsrc/pst-grad.tlpsrc + tlpkg/tlpsrc/pst-graphicx.tlpsrc + tlpkg/tlpsrc/pst-infixplot.tlpsrc + tlpkg/tlpsrc/pst-intersect.tlpsrc + tlpkg/tlpsrc/pst-jtree.tlpsrc + tlpkg/tlpsrc/pst-knot.tlpsrc + tlpkg/tlpsrc/pst-labo.tlpsrc + tlpkg/tlpsrc/pst-layout.tlpsrc + tlpkg/tlpsrc/pst-lens.tlpsrc + tlpkg/tlpsrc/pst-light3d.tlpsrc + tlpkg/tlpsrc/pst-lsystem.tlpsrc + tlpkg/tlpsrc/pst-magneticfield.tlpsrc + tlpkg/tlpsrc/pst-marble.tlpsrc + tlpkg/tlpsrc/pst-math.tlpsrc + tlpkg/tlpsrc/pst-mirror.tlpsrc + tlpkg/tlpsrc/pst-moire.tlpsrc + tlpkg/tlpsrc/pst-node.tlpsrc + tlpkg/tlpsrc/pst-ob3d.tlpsrc + tlpkg/tlpsrc/pst-ode.tlpsrc + tlpkg/tlpsrc/pst-optexp.tlpsrc + tlpkg/tlpsrc/pst-optic.tlpsrc + tlpkg/tlpsrc/pst-osci.tlpsrc + tlpkg/tlpsrc/pst-ovl.tlpsrc + tlpkg/tlpsrc/pst-pad.tlpsrc + tlpkg/tlpsrc/pst-pdf.tlpsrc + tlpkg/tlpsrc/pst-pdgr.tlpsrc + tlpkg/tlpsrc/pst-perspective.tlpsrc + tlpkg/tlpsrc/pst-platon.tlpsrc + tlpkg/tlpsrc/pst-plot.tlpsrc + tlpkg/tlpsrc/pst-poker.tlpsrc + tlpkg/tlpsrc/pst-poly.tlpsrc + tlpkg/tlpsrc/pst-pulley.tlpsrc + tlpkg/tlpsrc/pst-qtree.tlpsrc + tlpkg/tlpsrc/pst-rputover.tlpsrc + tlpkg/tlpsrc/pst-rubans.tlpsrc + tlpkg/tlpsrc/pst-shell.tlpsrc + tlpkg/tlpsrc/pst-sigsys.tlpsrc + tlpkg/tlpsrc/pst-slpe.tlpsrc + tlpkg/tlpsrc/pst-solarsystem.tlpsrc + tlpkg/tlpsrc/pst-solides3d.tlpsrc + tlpkg/tlpsrc/pst-soroban.tlpsrc + tlpkg/tlpsrc/pst-spectra.tlpsrc + tlpkg/tlpsrc/pst-spinner.tlpsrc + tlpkg/tlpsrc/pst-stru.tlpsrc + tlpkg/tlpsrc/pst-support.tlpsrc + tlpkg/tlpsrc/pst-text.tlpsrc + tlpkg/tlpsrc/pst-thick.tlpsrc + tlpkg/tlpsrc/pst-tools.tlpsrc + tlpkg/tlpsrc/pst-tree.tlpsrc + tlpkg/tlpsrc/pst-turtle.tlpsrc + tlpkg/tlpsrc/pst-tvz.tlpsrc + tlpkg/tlpsrc/pst-uml.tlpsrc + tlpkg/tlpsrc/pst-vectorian.tlpsrc + tlpkg/tlpsrc/pst-vehicle.tlpsrc + tlpkg/tlpsrc/pst-venn.tlpsrc + tlpkg/tlpsrc/pst-vowel.tlpsrc + tlpkg/tlpsrc/pst2pdf.tlpsrc + tlpkg/tlpsrc/pstool.tlpsrc + tlpkg/tlpsrc/pstricks-add.tlpsrc + tlpkg/tlpsrc/pstricks.tlpsrc + tlpkg/tlpsrc/pstricks_calcnotes.tlpsrc + tlpkg/tlpsrc/pstring.tlpsrc + tlpkg/tlpsrc/psutils.tlpsrc + tlpkg/tlpsrc/ptex-base.tlpsrc + tlpkg/tlpsrc/ptex-fontmaps.tlpsrc + tlpkg/tlpsrc/ptex-fonts.tlpsrc + tlpkg/tlpsrc/ptex-manual.tlpsrc + tlpkg/tlpsrc/ptex.tlpsrc + tlpkg/tlpsrc/ptex2pdf.tlpsrc + tlpkg/tlpsrc/ptext.tlpsrc + tlpkg/tlpsrc/ptolemaicastronomy.tlpsrc + tlpkg/tlpsrc/ptptex.tlpsrc + tlpkg/tlpsrc/punk-latex.tlpsrc + tlpkg/tlpsrc/punk.tlpsrc + tlpkg/tlpsrc/punknova.tlpsrc + tlpkg/tlpsrc/purifyeps.tlpsrc + tlpkg/tlpsrc/puyotikz.tlpsrc + tlpkg/tlpsrc/pwebmac.tlpsrc + tlpkg/tlpsrc/pxbase.tlpsrc + tlpkg/tlpsrc/pxchfon.tlpsrc + tlpkg/tlpsrc/pxcjkcat.tlpsrc + tlpkg/tlpsrc/pxfonts.tlpsrc + tlpkg/tlpsrc/pxgreeks.tlpsrc + tlpkg/tlpsrc/pxjahyper.tlpsrc + tlpkg/tlpsrc/pxjodel.tlpsrc + tlpkg/tlpsrc/pxpgfmark.tlpsrc + tlpkg/tlpsrc/pxpic.tlpsrc + tlpkg/tlpsrc/pxrubrica.tlpsrc + tlpkg/tlpsrc/pxtatescale.tlpsrc + tlpkg/tlpsrc/pxtxalfa.tlpsrc + tlpkg/tlpsrc/pxufont.tlpsrc + tlpkg/tlpsrc/pygmentex.tlpsrc + tlpkg/tlpsrc/python.tlpsrc + tlpkg/tlpsrc/pythonhighlight.tlpsrc + tlpkg/tlpsrc/pythontex.tlpsrc + tlpkg/tlpsrc/qcircuit.tlpsrc + tlpkg/tlpsrc/qcm.tlpsrc + tlpkg/tlpsrc/qobitree.tlpsrc + tlpkg/tlpsrc/qpxqtx.tlpsrc + tlpkg/tlpsrc/qrbill.tlpsrc + tlpkg/tlpsrc/qrcode.tlpsrc + tlpkg/tlpsrc/qsharp.tlpsrc + tlpkg/tlpsrc/qstest.tlpsrc + tlpkg/tlpsrc/qsymbols.tlpsrc + tlpkg/tlpsrc/qtree.tlpsrc + tlpkg/tlpsrc/qualitype.tlpsrc + tlpkg/tlpsrc/quantikz.tlpsrc + tlpkg/tlpsrc/quantumarticle.tlpsrc + tlpkg/tlpsrc/quattrocento.tlpsrc + tlpkg/tlpsrc/quicktype.tlpsrc + tlpkg/tlpsrc/quiz2socrative.tlpsrc + tlpkg/tlpsrc/quotchap.tlpsrc + tlpkg/tlpsrc/quoting.tlpsrc + tlpkg/tlpsrc/quotmark.tlpsrc + tlpkg/tlpsrc/quran-bn.tlpsrc + tlpkg/tlpsrc/quran-de.tlpsrc + tlpkg/tlpsrc/quran-ur.tlpsrc + tlpkg/tlpsrc/quran.tlpsrc + tlpkg/tlpsrc/qyxf-book.tlpsrc + tlpkg/tlpsrc/r_und_s.tlpsrc + tlpkg/tlpsrc/ragged2e.tlpsrc + tlpkg/tlpsrc/raleway.tlpsrc + tlpkg/tlpsrc/ran_toks.tlpsrc + tlpkg/tlpsrc/randbild.tlpsrc + tlpkg/tlpsrc/random.tlpsrc + tlpkg/tlpsrc/randomlist.tlpsrc + tlpkg/tlpsrc/randomwalk.tlpsrc + tlpkg/tlpsrc/randtext.tlpsrc + tlpkg/tlpsrc/rank-2-roots.tlpsrc + tlpkg/tlpsrc/rccol.tlpsrc + tlpkg/tlpsrc/rcs-multi.tlpsrc + tlpkg/tlpsrc/rcs.tlpsrc + tlpkg/tlpsrc/rcsinfo.tlpsrc + tlpkg/tlpsrc/readablecv.tlpsrc + tlpkg/tlpsrc/readarray.tlpsrc + tlpkg/tlpsrc/realboxes.tlpsrc + tlpkg/tlpsrc/realhats.tlpsrc + tlpkg/tlpsrc/realscripts.tlpsrc + tlpkg/tlpsrc/realtranspose.tlpsrc + tlpkg/tlpsrc/rec-thy.tlpsrc + tlpkg/tlpsrc/recipe.tlpsrc + tlpkg/tlpsrc/recipebook.tlpsrc + tlpkg/tlpsrc/recipecard.tlpsrc + tlpkg/tlpsrc/rectopma.tlpsrc + tlpkg/tlpsrc/recycle.tlpsrc + tlpkg/tlpsrc/refcheck.tlpsrc + tlpkg/tlpsrc/refcount.tlpsrc + tlpkg/tlpsrc/refenums.tlpsrc + tlpkg/tlpsrc/reflectgraphics.tlpsrc + tlpkg/tlpsrc/refman.tlpsrc + tlpkg/tlpsrc/refstyle.tlpsrc + tlpkg/tlpsrc/regcount.tlpsrc + tlpkg/tlpsrc/regexpatch.tlpsrc + tlpkg/tlpsrc/register.tlpsrc + tlpkg/tlpsrc/regstats.tlpsrc + tlpkg/tlpsrc/reledmac.tlpsrc + tlpkg/tlpsrc/relenc.tlpsrc + tlpkg/tlpsrc/relsize.tlpsrc + tlpkg/tlpsrc/reotex.tlpsrc + tlpkg/tlpsrc/repeatindex.tlpsrc + tlpkg/tlpsrc/repere.tlpsrc + tlpkg/tlpsrc/repltext.tlpsrc + tlpkg/tlpsrc/rerunfilecheck.tlpsrc + tlpkg/tlpsrc/resphilosophica.tlpsrc + tlpkg/tlpsrc/rest-api.tlpsrc + tlpkg/tlpsrc/resumecls.tlpsrc + tlpkg/tlpsrc/resumemac.tlpsrc + tlpkg/tlpsrc/returntogrid.tlpsrc + tlpkg/tlpsrc/reverxii.tlpsrc + tlpkg/tlpsrc/revquantum.tlpsrc + tlpkg/tlpsrc/revtex.tlpsrc + tlpkg/tlpsrc/revtex4-1.tlpsrc + tlpkg/tlpsrc/revtex4.tlpsrc + tlpkg/tlpsrc/rgltxdoc.tlpsrc + tlpkg/tlpsrc/ribbonproofs.tlpsrc + tlpkg/tlpsrc/rjlparshap.tlpsrc + tlpkg/tlpsrc/rlepsf.tlpsrc + tlpkg/tlpsrc/rmathbr.tlpsrc + tlpkg/tlpsrc/rmpage.tlpsrc + tlpkg/tlpsrc/roboto.tlpsrc + tlpkg/tlpsrc/robustcommand.tlpsrc + tlpkg/tlpsrc/robustindex.tlpsrc + tlpkg/tlpsrc/roex.tlpsrc + tlpkg/tlpsrc/rojud.tlpsrc + tlpkg/tlpsrc/romanbar.tlpsrc + tlpkg/tlpsrc/romanbarpagenumber.tlpsrc + tlpkg/tlpsrc/romande.tlpsrc + tlpkg/tlpsrc/romanneg.tlpsrc + tlpkg/tlpsrc/romannum.tlpsrc + tlpkg/tlpsrc/rosario.tlpsrc + tlpkg/tlpsrc/rotfloat.tlpsrc + tlpkg/tlpsrc/rotpages.tlpsrc + tlpkg/tlpsrc/roundbox.tlpsrc + tlpkg/tlpsrc/roundrect.tlpsrc + tlpkg/tlpsrc/rrgtrees.tlpsrc + tlpkg/tlpsrc/rsc.tlpsrc + tlpkg/tlpsrc/rsfs.tlpsrc + tlpkg/tlpsrc/rsfso.tlpsrc + tlpkg/tlpsrc/rterface.tlpsrc + tlpkg/tlpsrc/rtkinenc.tlpsrc + tlpkg/tlpsrc/rtklage.tlpsrc + tlpkg/tlpsrc/rubik.tlpsrc + tlpkg/tlpsrc/ruhyphen.tlpsrc + tlpkg/tlpsrc/ruler.tlpsrc + tlpkg/tlpsrc/rulerbox.tlpsrc + tlpkg/tlpsrc/rulercompass.tlpsrc + tlpkg/tlpsrc/runcode.tlpsrc + tlpkg/tlpsrc/russ.tlpsrc + tlpkg/tlpsrc/rutitlepage.tlpsrc + tlpkg/tlpsrc/rviewport.tlpsrc + tlpkg/tlpsrc/rvwrite.tlpsrc + tlpkg/tlpsrc/ryersonsgsthesis.tlpsrc + tlpkg/tlpsrc/ryethesis.tlpsrc + tlpkg/tlpsrc/sa-tikz.tlpsrc + tlpkg/tlpsrc/sageep.tlpsrc + tlpkg/tlpsrc/sanitize-umlaut.tlpsrc + tlpkg/tlpsrc/sankey.tlpsrc + tlpkg/tlpsrc/sanskrit-t1.tlpsrc + tlpkg/tlpsrc/sanskrit.tlpsrc + tlpkg/tlpsrc/sansmath.tlpsrc + tlpkg/tlpsrc/sansmathaccent.tlpsrc + tlpkg/tlpsrc/sansmathfonts.tlpsrc + tlpkg/tlpsrc/sapthesis.tlpsrc + tlpkg/tlpsrc/sasnrdisplay.tlpsrc + tlpkg/tlpsrc/sauerj.tlpsrc + tlpkg/tlpsrc/sauter.tlpsrc + tlpkg/tlpsrc/sauterfonts.tlpsrc + tlpkg/tlpsrc/savefnmark.tlpsrc + tlpkg/tlpsrc/savesym.tlpsrc + tlpkg/tlpsrc/savetrees.tlpsrc + tlpkg/tlpsrc/scale.tlpsrc + tlpkg/tlpsrc/scalebar.tlpsrc + tlpkg/tlpsrc/scalerel.tlpsrc + tlpkg/tlpsrc/scanpages.tlpsrc + tlpkg/tlpsrc/schedule.tlpsrc + tlpkg/tlpsrc/schemabloc.tlpsrc + tlpkg/tlpsrc/schemata.tlpsrc + tlpkg/tlpsrc/scheme-basic.tlpsrc + tlpkg/tlpsrc/scheme-context.tlpsrc + tlpkg/tlpsrc/scheme-full.tlpsrc + tlpkg/tlpsrc/scheme-gust.tlpsrc + tlpkg/tlpsrc/scheme-infraonly.tlpsrc + tlpkg/tlpsrc/scheme-medium.tlpsrc + tlpkg/tlpsrc/scheme-minimal.tlpsrc + tlpkg/tlpsrc/scheme-small.tlpsrc + tlpkg/tlpsrc/scheme-tetex.tlpsrc + tlpkg/tlpsrc/scholax.tlpsrc + tlpkg/tlpsrc/schooldocs.tlpsrc + tlpkg/tlpsrc/schule.tlpsrc + tlpkg/tlpsrc/schulmathematik.tlpsrc + tlpkg/tlpsrc/schulschriften.tlpsrc + tlpkg/tlpsrc/schwalbe-chess.tlpsrc + tlpkg/tlpsrc/scientific-thesis-cover.tlpsrc + tlpkg/tlpsrc/sciposter.tlpsrc + tlpkg/tlpsrc/sclang-prettifier.tlpsrc + tlpkg/tlpsrc/scontents.tlpsrc + tlpkg/tlpsrc/scratch.tlpsrc + tlpkg/tlpsrc/scratch3.tlpsrc + tlpkg/tlpsrc/scratchx.tlpsrc + tlpkg/tlpsrc/screenplay-pkg.tlpsrc + tlpkg/tlpsrc/screenplay.tlpsrc + tlpkg/tlpsrc/scrjrnl.tlpsrc + tlpkg/tlpsrc/scrlayer-fancyhdr.tlpsrc + tlpkg/tlpsrc/scrlttr2copy.tlpsrc + tlpkg/tlpsrc/scsnowman.tlpsrc + tlpkg/tlpsrc/sdaps.tlpsrc + tlpkg/tlpsrc/sdrt.tlpsrc + tlpkg/tlpsrc/sduthesis.tlpsrc + tlpkg/tlpsrc/secdot.tlpsrc + tlpkg/tlpsrc/secnum.tlpsrc + tlpkg/tlpsrc/section.tlpsrc + tlpkg/tlpsrc/sectionbox.tlpsrc + tlpkg/tlpsrc/sectionbreak.tlpsrc + tlpkg/tlpsrc/sectsty.tlpsrc + tlpkg/tlpsrc/seealso.tlpsrc + tlpkg/tlpsrc/seetexk.tlpsrc + tlpkg/tlpsrc/selectp.tlpsrc + tlpkg/tlpsrc/selinput.tlpsrc + tlpkg/tlpsrc/selnolig.tlpsrc + tlpkg/tlpsrc/semantex.tlpsrc + tlpkg/tlpsrc/semantic-markup.tlpsrc + tlpkg/tlpsrc/semantic.tlpsrc + tlpkg/tlpsrc/semaphor.tlpsrc + tlpkg/tlpsrc/semesterplanner.tlpsrc + tlpkg/tlpsrc/seminar.tlpsrc + tlpkg/tlpsrc/semioneside.tlpsrc + tlpkg/tlpsrc/semproc.tlpsrc + tlpkg/tlpsrc/semtex.tlpsrc + tlpkg/tlpsrc/sepfootnotes.tlpsrc + tlpkg/tlpsrc/sepnum.tlpsrc + tlpkg/tlpsrc/seqsplit.tlpsrc + tlpkg/tlpsrc/serbian-apostrophe.tlpsrc + tlpkg/tlpsrc/serbian-date-lat.tlpsrc + tlpkg/tlpsrc/serbian-def-cyr.tlpsrc + tlpkg/tlpsrc/serbian-lig.tlpsrc + tlpkg/tlpsrc/sesamanuel.tlpsrc + tlpkg/tlpsrc/sesstime.tlpsrc + tlpkg/tlpsrc/setdeck.tlpsrc + tlpkg/tlpsrc/setspace.tlpsrc + tlpkg/tlpsrc/seuthesis.tlpsrc + tlpkg/tlpsrc/seuthesix.tlpsrc + tlpkg/tlpsrc/sexam.tlpsrc + tlpkg/tlpsrc/sf298.tlpsrc + tlpkg/tlpsrc/sffms.tlpsrc + tlpkg/tlpsrc/sfg.tlpsrc + tlpkg/tlpsrc/sfmath.tlpsrc + tlpkg/tlpsrc/sgame.tlpsrc + tlpkg/tlpsrc/shade.tlpsrc + tlpkg/tlpsrc/shadethm.tlpsrc + tlpkg/tlpsrc/shadow.tlpsrc + tlpkg/tlpsrc/shadowtext.tlpsrc + tlpkg/tlpsrc/shapepar.tlpsrc + tlpkg/tlpsrc/shapes.tlpsrc + tlpkg/tlpsrc/shdoc.tlpsrc + tlpkg/tlpsrc/shipunov.tlpsrc + tlpkg/tlpsrc/shobhika.tlpsrc + tlpkg/tlpsrc/short-math-guide.tlpsrc + tlpkg/tlpsrc/shortmathj.tlpsrc + tlpkg/tlpsrc/shorttoc.tlpsrc + tlpkg/tlpsrc/show2e.tlpsrc + tlpkg/tlpsrc/showcharinbox.tlpsrc + tlpkg/tlpsrc/showdim.tlpsrc + tlpkg/tlpsrc/showexpl.tlpsrc + tlpkg/tlpsrc/showhyphens.tlpsrc + tlpkg/tlpsrc/showlabels.tlpsrc + tlpkg/tlpsrc/showtags.tlpsrc + tlpkg/tlpsrc/shtthesis.tlpsrc + tlpkg/tlpsrc/shuffle.tlpsrc + tlpkg/tlpsrc/sidecap.tlpsrc + tlpkg/tlpsrc/sidenotes.tlpsrc + tlpkg/tlpsrc/sides.tlpsrc + tlpkg/tlpsrc/signchart.tlpsrc + tlpkg/tlpsrc/silence.tlpsrc + tlpkg/tlpsrc/simple-resume-cv.tlpsrc + tlpkg/tlpsrc/simple-thesis-dissertation.tlpsrc + tlpkg/tlpsrc/simplebnf.tlpsrc + tlpkg/tlpsrc/simplecd.tlpsrc + tlpkg/tlpsrc/simplecv.tlpsrc + tlpkg/tlpsrc/simpleinvoice.tlpsrc + tlpkg/tlpsrc/simplekv.tlpsrc + tlpkg/tlpsrc/simpleoptics.tlpsrc + tlpkg/tlpsrc/simpler-wick.tlpsrc + tlpkg/tlpsrc/simplewick.tlpsrc + tlpkg/tlpsrc/simplified-latex.tlpsrc + tlpkg/tlpsrc/simplivre.tlpsrc + tlpkg/tlpsrc/simurgh.tlpsrc + tlpkg/tlpsrc/sitem.tlpsrc + tlpkg/tlpsrc/siunitx.tlpsrc + tlpkg/tlpsrc/skak.tlpsrc + tlpkg/tlpsrc/skaknew.tlpsrc + tlpkg/tlpsrc/skb.tlpsrc + tlpkg/tlpsrc/skdoc.tlpsrc + tlpkg/tlpsrc/skeldoc.tlpsrc + tlpkg/tlpsrc/skeycommand.tlpsrc + tlpkg/tlpsrc/skeyval.tlpsrc + tlpkg/tlpsrc/skills.tlpsrc + tlpkg/tlpsrc/skmath.tlpsrc + tlpkg/tlpsrc/skrapport.tlpsrc + tlpkg/tlpsrc/skull.tlpsrc + tlpkg/tlpsrc/slantsc.tlpsrc + tlpkg/tlpsrc/slideshow.tlpsrc + tlpkg/tlpsrc/smalltableof.tlpsrc + tlpkg/tlpsrc/smartdiagram.tlpsrc + tlpkg/tlpsrc/smartref.tlpsrc + tlpkg/tlpsrc/smartunits.tlpsrc + tlpkg/tlpsrc/smflatex.tlpsrc + tlpkg/tlpsrc/snapshot.tlpsrc + tlpkg/tlpsrc/snotez.tlpsrc + tlpkg/tlpsrc/songbook.tlpsrc + tlpkg/tlpsrc/songs.tlpsrc + tlpkg/tlpsrc/sort-by-letters.tlpsrc + tlpkg/tlpsrc/soton.tlpsrc + tlpkg/tlpsrc/soul.tlpsrc + tlpkg/tlpsrc/soulpos.tlpsrc + tlpkg/tlpsrc/soulutf8.tlpsrc + tlpkg/tlpsrc/soup.tlpsrc + tlpkg/tlpsrc/sourcecodepro.tlpsrc + tlpkg/tlpsrc/sourcesanspro.tlpsrc + tlpkg/tlpsrc/sourceserifpro.tlpsrc + tlpkg/tlpsrc/spacingtricks.tlpsrc + tlpkg/tlpsrc/spalign.tlpsrc + tlpkg/tlpsrc/spark-otf.tlpsrc + tlpkg/tlpsrc/sparklines.tlpsrc + tlpkg/tlpsrc/spath3.tlpsrc + tlpkg/tlpsrc/spectral.tlpsrc + tlpkg/tlpsrc/spectralsequences.tlpsrc + tlpkg/tlpsrc/spelling.tlpsrc + tlpkg/tlpsrc/sphack.tlpsrc + tlpkg/tlpsrc/sphdthesis.tlpsrc + tlpkg/tlpsrc/spie.tlpsrc + tlpkg/tlpsrc/spix.tlpsrc + tlpkg/tlpsrc/splines.tlpsrc + tlpkg/tlpsrc/splitbib.tlpsrc + tlpkg/tlpsrc/splitindex.tlpsrc + tlpkg/tlpsrc/spot.tlpsrc + tlpkg/tlpsrc/spotcolor.tlpsrc + tlpkg/tlpsrc/spreadtab.tlpsrc + tlpkg/tlpsrc/spverbatim.tlpsrc + tlpkg/tlpsrc/sr-vorl.tlpsrc + tlpkg/tlpsrc/srbook-mem.tlpsrc + tlpkg/tlpsrc/srcltx.tlpsrc + tlpkg/tlpsrc/srcredact.tlpsrc + tlpkg/tlpsrc/srdp-mathematik.tlpsrc + tlpkg/tlpsrc/sseq.tlpsrc + tlpkg/tlpsrc/sslides.tlpsrc + tlpkg/tlpsrc/stack.tlpsrc + tlpkg/tlpsrc/stackengine.tlpsrc + tlpkg/tlpsrc/stage.tlpsrc + tlpkg/tlpsrc/standalone.tlpsrc + tlpkg/tlpsrc/stanli.tlpsrc + tlpkg/tlpsrc/starfont.tlpsrc + tlpkg/tlpsrc/startex.tlpsrc + tlpkg/tlpsrc/startlatex2e.tlpsrc + tlpkg/tlpsrc/statex.tlpsrc + tlpkg/tlpsrc/statex2.tlpsrc + tlpkg/tlpsrc/statistics.tlpsrc + tlpkg/tlpsrc/statistik.tlpsrc + tlpkg/tlpsrc/statmath.tlpsrc + tlpkg/tlpsrc/staves.tlpsrc + tlpkg/tlpsrc/stdclsdv.tlpsrc + tlpkg/tlpsrc/stdpage.tlpsrc + tlpkg/tlpsrc/stealcaps.tlpsrc + tlpkg/tlpsrc/steinmetz.tlpsrc + tlpkg/tlpsrc/stellenbosch.tlpsrc + tlpkg/tlpsrc/step.tlpsrc + tlpkg/tlpsrc/stepgreek.tlpsrc + tlpkg/tlpsrc/stex.tlpsrc + tlpkg/tlpsrc/stickstoo.tlpsrc + tlpkg/tlpsrc/stix.tlpsrc + tlpkg/tlpsrc/stix2-otf.tlpsrc + tlpkg/tlpsrc/stix2-type1.tlpsrc + tlpkg/tlpsrc/stmaryrd.tlpsrc + tlpkg/tlpsrc/storebox.tlpsrc + tlpkg/tlpsrc/storecmd.tlpsrc + tlpkg/tlpsrc/stricttex.tlpsrc + tlpkg/tlpsrc/stringenc.tlpsrc + tlpkg/tlpsrc/stringstrings.tlpsrc + tlpkg/tlpsrc/structmech.tlpsrc + tlpkg/tlpsrc/struktex.tlpsrc + tlpkg/tlpsrc/sttools.tlpsrc + tlpkg/tlpsrc/stubs.tlpsrc + tlpkg/tlpsrc/studenthandouts.tlpsrc + tlpkg/tlpsrc/sty2dtx.tlpsrc + tlpkg/tlpsrc/suanpan.tlpsrc + tlpkg/tlpsrc/subdepth.tlpsrc + tlpkg/tlpsrc/subdocs.tlpsrc + tlpkg/tlpsrc/subeqn.tlpsrc + tlpkg/tlpsrc/subeqnarray.tlpsrc + tlpkg/tlpsrc/subfig.tlpsrc + tlpkg/tlpsrc/subfigmat.tlpsrc + tlpkg/tlpsrc/subfigure.tlpsrc + tlpkg/tlpsrc/subfiles.tlpsrc + tlpkg/tlpsrc/subfloat.tlpsrc + tlpkg/tlpsrc/substances.tlpsrc + tlpkg/tlpsrc/substitutefont.tlpsrc + tlpkg/tlpsrc/substr.tlpsrc + tlpkg/tlpsrc/subsupscripts.tlpsrc + tlpkg/tlpsrc/subtext.tlpsrc + tlpkg/tlpsrc/sudoku.tlpsrc + tlpkg/tlpsrc/sudokubundle.tlpsrc + tlpkg/tlpsrc/suftesi.tlpsrc + tlpkg/tlpsrc/sugconf.tlpsrc + tlpkg/tlpsrc/superiors.tlpsrc + tlpkg/tlpsrc/supertabular.tlpsrc + tlpkg/tlpsrc/suppose.tlpsrc + tlpkg/tlpsrc/susy.tlpsrc + tlpkg/tlpsrc/svg-inkscape.tlpsrc + tlpkg/tlpsrc/svg.tlpsrc + tlpkg/tlpsrc/svgcolor.tlpsrc + tlpkg/tlpsrc/svn-multi.tlpsrc + tlpkg/tlpsrc/svn-prov.tlpsrc + tlpkg/tlpsrc/svn.tlpsrc + tlpkg/tlpsrc/svninfo.tlpsrc + tlpkg/tlpsrc/svrsymbols.tlpsrc + tlpkg/tlpsrc/swebib.tlpsrc + tlpkg/tlpsrc/swfigure.tlpsrc + tlpkg/tlpsrc/swimgraf.tlpsrc + tlpkg/tlpsrc/swrule.tlpsrc + tlpkg/tlpsrc/syllogism.tlpsrc + tlpkg/tlpsrc/symbol.tlpsrc + tlpkg/tlpsrc/sympytexpackage.tlpsrc + tlpkg/tlpsrc/synctex.tlpsrc + tlpkg/tlpsrc/synproof.tlpsrc + tlpkg/tlpsrc/syntax.tlpsrc + tlpkg/tlpsrc/syntaxdi.tlpsrc + tlpkg/tlpsrc/syntrace.tlpsrc + tlpkg/tlpsrc/synttree.tlpsrc + tlpkg/tlpsrc/systeme.tlpsrc + tlpkg/tlpsrc/t-angles.tlpsrc + tlpkg/tlpsrc/t1utils.tlpsrc + tlpkg/tlpsrc/t2.tlpsrc + tlpkg/tlpsrc/tabfigures.tlpsrc + tlpkg/tlpsrc/table-fct.tlpsrc + tlpkg/tlpsrc/tableaux.tlpsrc + tlpkg/tlpsrc/tablefootnote.tlpsrc + tlpkg/tlpsrc/tableof.tlpsrc + tlpkg/tlpsrc/tablestyles.tlpsrc + tlpkg/tlpsrc/tablists.tlpsrc + tlpkg/tlpsrc/tablor.tlpsrc + tlpkg/tlpsrc/tabls.tlpsrc + tlpkg/tlpsrc/tablvar.tlpsrc + tlpkg/tlpsrc/tabriz-thesis.tlpsrc + tlpkg/tlpsrc/tabstackengine.tlpsrc + tlpkg/tlpsrc/tabto-generic.tlpsrc + tlpkg/tlpsrc/tabto-ltx.tlpsrc + tlpkg/tlpsrc/tabu.tlpsrc + tlpkg/tlpsrc/tabularborder.tlpsrc + tlpkg/tlpsrc/tabularcalc.tlpsrc + tlpkg/tlpsrc/tabularew.tlpsrc + tlpkg/tlpsrc/tabulary.tlpsrc + tlpkg/tlpsrc/tabvar.tlpsrc + tlpkg/tlpsrc/tagging.tlpsrc + tlpkg/tlpsrc/tagpair.tlpsrc + tlpkg/tlpsrc/tagpdf.tlpsrc + tlpkg/tlpsrc/talk.tlpsrc + tlpkg/tlpsrc/tamefloats.tlpsrc + tlpkg/tlpsrc/tamethebeast.tlpsrc + tlpkg/tlpsrc/tap.tlpsrc + tlpkg/tlpsrc/tapir.tlpsrc + tlpkg/tlpsrc/tasks.tlpsrc + tlpkg/tlpsrc/tcldoc.tlpsrc + tlpkg/tlpsrc/tcolorbox.tlpsrc + tlpkg/tlpsrc/tdclock.tlpsrc + tlpkg/tlpsrc/tds.tlpsrc + tlpkg/tlpsrc/tdsfrmath.tlpsrc + tlpkg/tlpsrc/technics.tlpsrc + tlpkg/tlpsrc/technion-thesis-template.tlpsrc + tlpkg/tlpsrc/ted.tlpsrc + tlpkg/tlpsrc/templates-fenn.tlpsrc + tlpkg/tlpsrc/templates-sommer.tlpsrc + tlpkg/tlpsrc/templatetools.tlpsrc + tlpkg/tlpsrc/tempora.tlpsrc + tlpkg/tlpsrc/tengwarscript.tlpsrc + tlpkg/tlpsrc/tensind.tlpsrc + tlpkg/tlpsrc/tensor.tlpsrc + tlpkg/tlpsrc/termcal-de.tlpsrc + tlpkg/tlpsrc/termcal.tlpsrc + tlpkg/tlpsrc/termlist.tlpsrc + tlpkg/tlpsrc/termmenu.tlpsrc + tlpkg/tlpsrc/testhyphens.tlpsrc + tlpkg/tlpsrc/testidx.tlpsrc + tlpkg/tlpsrc/tetragonos.tlpsrc + tlpkg/tlpsrc/teubner.tlpsrc + tlpkg/tlpsrc/tex-ewd.tlpsrc + tlpkg/tlpsrc/tex-font-errors-cheatsheet.tlpsrc + tlpkg/tlpsrc/tex-gyre-math.tlpsrc + tlpkg/tlpsrc/tex-gyre.tlpsrc + tlpkg/tlpsrc/tex-ini-files.tlpsrc + tlpkg/tlpsrc/tex-label.tlpsrc + tlpkg/tlpsrc/tex-locale.tlpsrc + tlpkg/tlpsrc/tex-nutshell.tlpsrc + tlpkg/tlpsrc/tex-overview.tlpsrc + tlpkg/tlpsrc/tex-ps.tlpsrc + tlpkg/tlpsrc/tex-refs.tlpsrc + tlpkg/tlpsrc/tex-virtual-academy-pl.tlpsrc + tlpkg/tlpsrc/tex.tlpsrc + tlpkg/tlpsrc/tex4ebook.tlpsrc + tlpkg/tlpsrc/tex4ht.tlpsrc + tlpkg/tlpsrc/texapi.tlpsrc + tlpkg/tlpsrc/texbytopic.tlpsrc + tlpkg/tlpsrc/texcount.tlpsrc + tlpkg/tlpsrc/texdate.tlpsrc + tlpkg/tlpsrc/texdef.tlpsrc + tlpkg/tlpsrc/texdiff.tlpsrc + tlpkg/tlpsrc/texdirflatten.tlpsrc + tlpkg/tlpsrc/texdoc.tlpsrc + tlpkg/tlpsrc/texdoctk.tlpsrc + tlpkg/tlpsrc/texdraw.tlpsrc + tlpkg/tlpsrc/texfot.tlpsrc + tlpkg/tlpsrc/texilikechaps.tlpsrc + tlpkg/tlpsrc/texilikecover.tlpsrc + tlpkg/tlpsrc/texinfo.tlpsrc + tlpkg/tlpsrc/texlive-common.tlpsrc + tlpkg/tlpsrc/texlive-cz.tlpsrc + tlpkg/tlpsrc/texlive-de.tlpsrc + tlpkg/tlpsrc/texlive-docindex.tlpsrc + tlpkg/tlpsrc/texlive-en.tlpsrc + tlpkg/tlpsrc/texlive-es.tlpsrc + tlpkg/tlpsrc/texlive-fr.tlpsrc + tlpkg/tlpsrc/texlive-it.tlpsrc + tlpkg/tlpsrc/texlive-ja.tlpsrc + tlpkg/tlpsrc/texlive-msg-translations.tlpsrc + tlpkg/tlpsrc/texlive-pl.tlpsrc + tlpkg/tlpsrc/texlive-ru.tlpsrc + tlpkg/tlpsrc/texlive-scripts-extra.tlpsrc + tlpkg/tlpsrc/texlive-scripts.tlpsrc + tlpkg/tlpsrc/texlive-sr.tlpsrc + tlpkg/tlpsrc/texlive-zh-cn.tlpsrc + tlpkg/tlpsrc/texlive.infra.tlpsrc + tlpkg/tlpsrc/texliveonfly.tlpsrc + tlpkg/tlpsrc/texloganalyser.tlpsrc + tlpkg/tlpsrc/texlogos.tlpsrc + tlpkg/tlpsrc/texmate.tlpsrc + tlpkg/tlpsrc/texments.tlpsrc + tlpkg/tlpsrc/texnegar.tlpsrc + tlpkg/tlpsrc/texonly.tlpsrc + tlpkg/tlpsrc/texosquery.tlpsrc + tlpkg/tlpsrc/texplate.tlpsrc + tlpkg/tlpsrc/texpower.tlpsrc + tlpkg/tlpsrc/texproposal.tlpsrc + tlpkg/tlpsrc/texshade.tlpsrc + tlpkg/tlpsrc/texsis.tlpsrc + tlpkg/tlpsrc/textcase.tlpsrc + tlpkg/tlpsrc/textfit.tlpsrc + tlpkg/tlpsrc/textglos.tlpsrc + tlpkg/tlpsrc/textgreek.tlpsrc + tlpkg/tlpsrc/textmerg.tlpsrc + tlpkg/tlpsrc/textopo.tlpsrc + tlpkg/tlpsrc/textpath.tlpsrc + tlpkg/tlpsrc/textpos.tlpsrc + tlpkg/tlpsrc/textualicomma.tlpsrc + tlpkg/tlpsrc/texvc.tlpsrc + tlpkg/tlpsrc/texware.tlpsrc + tlpkg/tlpsrc/texworks.tlpsrc + tlpkg/tlpsrc/tfrupee.tlpsrc + tlpkg/tlpsrc/thaienum.tlpsrc + tlpkg/tlpsrc/thaispec.tlpsrc + tlpkg/tlpsrc/thalie.tlpsrc + tlpkg/tlpsrc/theanodidot.tlpsrc + tlpkg/tlpsrc/theanomodern.tlpsrc + tlpkg/tlpsrc/theanooldstyle.tlpsrc + tlpkg/tlpsrc/theatre.tlpsrc + tlpkg/tlpsrc/theoremref.tlpsrc + tlpkg/tlpsrc/thesis-ekf.tlpsrc + tlpkg/tlpsrc/thesis-gwu.tlpsrc + tlpkg/tlpsrc/thesis-qom.tlpsrc + tlpkg/tlpsrc/thesis-titlepage-fhac.tlpsrc + tlpkg/tlpsrc/thinsp.tlpsrc + tlpkg/tlpsrc/thmbox.tlpsrc + tlpkg/tlpsrc/thmtools.tlpsrc + tlpkg/tlpsrc/threadcol.tlpsrc + tlpkg/tlpsrc/threeddice.tlpsrc + tlpkg/tlpsrc/threeparttable.tlpsrc + tlpkg/tlpsrc/threeparttablex.tlpsrc + tlpkg/tlpsrc/thuaslogos.tlpsrc + tlpkg/tlpsrc/thucoursework.tlpsrc + tlpkg/tlpsrc/thumb.tlpsrc + tlpkg/tlpsrc/thumbpdf.tlpsrc + tlpkg/tlpsrc/thumbs.tlpsrc + tlpkg/tlpsrc/thumby.tlpsrc + tlpkg/tlpsrc/thuthesis.tlpsrc + tlpkg/tlpsrc/ticket.tlpsrc + tlpkg/tlpsrc/ticollege.tlpsrc + tlpkg/tlpsrc/tie.tlpsrc + tlpkg/tlpsrc/tikz-3dplot.tlpsrc + tlpkg/tlpsrc/tikz-among-us.tlpsrc + tlpkg/tlpsrc/tikz-bayesnet.tlpsrc + tlpkg/tlpsrc/tikz-bbox.tlpsrc + tlpkg/tlpsrc/tikz-cd.tlpsrc + tlpkg/tlpsrc/tikz-dependency.tlpsrc + tlpkg/tlpsrc/tikz-dimline.tlpsrc + tlpkg/tlpsrc/tikz-feynhand.tlpsrc + tlpkg/tlpsrc/tikz-feynman.tlpsrc + tlpkg/tlpsrc/tikz-imagelabels.tlpsrc + tlpkg/tlpsrc/tikz-inet.tlpsrc + tlpkg/tlpsrc/tikz-kalender.tlpsrc + tlpkg/tlpsrc/tikz-karnaugh.tlpsrc + tlpkg/tlpsrc/tikz-ladder.tlpsrc + tlpkg/tlpsrc/tikz-lake-fig.tlpsrc + tlpkg/tlpsrc/tikz-layers.tlpsrc + tlpkg/tlpsrc/tikz-nef.tlpsrc + tlpkg/tlpsrc/tikz-network.tlpsrc + tlpkg/tlpsrc/tikz-opm.tlpsrc + tlpkg/tlpsrc/tikz-optics.tlpsrc + tlpkg/tlpsrc/tikz-page.tlpsrc + tlpkg/tlpsrc/tikz-palattice.tlpsrc + tlpkg/tlpsrc/tikz-planets.tlpsrc + tlpkg/tlpsrc/tikz-qtree.tlpsrc + tlpkg/tlpsrc/tikz-relay.tlpsrc + tlpkg/tlpsrc/tikz-sfc.tlpsrc + tlpkg/tlpsrc/tikz-timing.tlpsrc + tlpkg/tlpsrc/tikz-trackschematic.tlpsrc + tlpkg/tlpsrc/tikz-truchet.tlpsrc + tlpkg/tlpsrc/tikzcodeblocks.tlpsrc + tlpkg/tlpsrc/tikzducks.tlpsrc + tlpkg/tlpsrc/tikzinclude.tlpsrc + tlpkg/tlpsrc/tikzlings.tlpsrc + tlpkg/tlpsrc/tikzmark.tlpsrc + tlpkg/tlpsrc/tikzmarmots.tlpsrc + tlpkg/tlpsrc/tikzorbital.tlpsrc + tlpkg/tlpsrc/tikzpackets.tlpsrc + tlpkg/tlpsrc/tikzpagenodes.tlpsrc + tlpkg/tlpsrc/tikzpeople.tlpsrc + tlpkg/tlpsrc/tikzpfeile.tlpsrc + tlpkg/tlpsrc/tikzposter.tlpsrc + tlpkg/tlpsrc/tikzscale.tlpsrc + tlpkg/tlpsrc/tikzsymbols.tlpsrc + tlpkg/tlpsrc/tikztosvg.tlpsrc + tlpkg/tlpsrc/tile-graphic.tlpsrc + tlpkg/tlpsrc/timbreicmc.tlpsrc + tlpkg/tlpsrc/times.tlpsrc + tlpkg/tlpsrc/timetable.tlpsrc + tlpkg/tlpsrc/timing-diagrams.tlpsrc + tlpkg/tlpsrc/tinos.tlpsrc + tlpkg/tlpsrc/tipa-de.tlpsrc + tlpkg/tlpsrc/tipa.tlpsrc + tlpkg/tlpsrc/tipauni.tlpsrc + tlpkg/tlpsrc/tipfr.tlpsrc + tlpkg/tlpsrc/titlecaps.tlpsrc + tlpkg/tlpsrc/titlefoot.tlpsrc + tlpkg/tlpsrc/titlepages.tlpsrc + tlpkg/tlpsrc/titlepic.tlpsrc + tlpkg/tlpsrc/titleref.tlpsrc + tlpkg/tlpsrc/titlesec.tlpsrc + tlpkg/tlpsrc/titling.tlpsrc + tlpkg/tlpsrc/tkz-base.tlpsrc + tlpkg/tlpsrc/tkz-berge.tlpsrc + tlpkg/tlpsrc/tkz-doc.tlpsrc + tlpkg/tlpsrc/tkz-euclide.tlpsrc + tlpkg/tlpsrc/tkz-fct.tlpsrc + tlpkg/tlpsrc/tkz-graph.tlpsrc + tlpkg/tlpsrc/tkz-orm.tlpsrc + tlpkg/tlpsrc/tkz-tab.tlpsrc + tlpkg/tlpsrc/tlc-article.tlpsrc + tlpkg/tlpsrc/tlc2.tlpsrc + tlpkg/tlpsrc/tlcockpit.tlpsrc + tlpkg/tlpsrc/tlgs.win32.tlpsrc + tlpkg/tlpsrc/tlmgr-intro-zh-cn.tlpsrc + tlpkg/tlpsrc/tlmgrbasics.tlpsrc + tlpkg/tlpsrc/tlperl.win32.tlpsrc + tlpkg/tlpsrc/tlshell.tlpsrc + tlpkg/tlpsrc/tocbibind.tlpsrc + tlpkg/tlpsrc/tocdata.tlpsrc + tlpkg/tlpsrc/tocloft.tlpsrc + tlpkg/tlpsrc/tocvsec2.tlpsrc + tlpkg/tlpsrc/todo.tlpsrc + tlpkg/tlpsrc/todonotes.tlpsrc + tlpkg/tlpsrc/tokcycle.tlpsrc + tlpkg/tlpsrc/tokenizer.tlpsrc + tlpkg/tlpsrc/toolbox.tlpsrc + tlpkg/tlpsrc/tools.tlpsrc + tlpkg/tlpsrc/topfloat.tlpsrc + tlpkg/tlpsrc/topiclongtable.tlpsrc + tlpkg/tlpsrc/topletter.tlpsrc + tlpkg/tlpsrc/toptesi.tlpsrc + tlpkg/tlpsrc/totalcount.tlpsrc + tlpkg/tlpsrc/totcount.tlpsrc + tlpkg/tlpsrc/totpages.tlpsrc + tlpkg/tlpsrc/tpic2pdftex.tlpsrc + tlpkg/tlpsrc/tpslifonts.tlpsrc + tlpkg/tlpsrc/tqft.tlpsrc + tlpkg/tlpsrc/tracklang.tlpsrc + tlpkg/tlpsrc/trajan.tlpsrc + tlpkg/tlpsrc/tram.tlpsrc + tlpkg/tlpsrc/translation-array-fr.tlpsrc + tlpkg/tlpsrc/translation-arsclassica-de.tlpsrc + tlpkg/tlpsrc/translation-biblatex-de.tlpsrc + tlpkg/tlpsrc/translation-chemsym-de.tlpsrc + tlpkg/tlpsrc/translation-dcolumn-fr.tlpsrc + tlpkg/tlpsrc/translation-ecv-de.tlpsrc + tlpkg/tlpsrc/translation-enumitem-de.tlpsrc + tlpkg/tlpsrc/translation-europecv-de.tlpsrc + tlpkg/tlpsrc/translation-filecontents-de.tlpsrc + tlpkg/tlpsrc/translation-moreverb-de.tlpsrc + tlpkg/tlpsrc/translation-natbib-fr.tlpsrc + tlpkg/tlpsrc/translation-tabbing-fr.tlpsrc + tlpkg/tlpsrc/translations.tlpsrc + tlpkg/tlpsrc/translator.tlpsrc + tlpkg/tlpsrc/transparent.tlpsrc + tlpkg/tlpsrc/tree-dvips.tlpsrc + tlpkg/tlpsrc/treetex.tlpsrc + tlpkg/tlpsrc/trfsigns.tlpsrc + tlpkg/tlpsrc/trigonometry.tlpsrc + tlpkg/tlpsrc/trimspaces.tlpsrc + tlpkg/tlpsrc/trivfloat.tlpsrc + tlpkg/tlpsrc/trsym.tlpsrc + tlpkg/tlpsrc/truncate.tlpsrc + tlpkg/tlpsrc/tsemlines.tlpsrc + tlpkg/tlpsrc/ttfutils.tlpsrc + tlpkg/tlpsrc/tucv.tlpsrc + tlpkg/tlpsrc/tuda-ci.tlpsrc + tlpkg/tlpsrc/tudscr.tlpsrc + tlpkg/tlpsrc/tufte-latex.tlpsrc + tlpkg/tlpsrc/tugboat-plain.tlpsrc + tlpkg/tlpsrc/tugboat.tlpsrc + tlpkg/tlpsrc/tui.tlpsrc + tlpkg/tlpsrc/turabian-formatting.tlpsrc + tlpkg/tlpsrc/turabian.tlpsrc + tlpkg/tlpsrc/turkmen.tlpsrc + tlpkg/tlpsrc/turnstile.tlpsrc + tlpkg/tlpsrc/turnthepage.tlpsrc + tlpkg/tlpsrc/twemoji-colr.tlpsrc + tlpkg/tlpsrc/twoinone.tlpsrc + tlpkg/tlpsrc/twoup.tlpsrc + tlpkg/tlpsrc/txfonts.tlpsrc + tlpkg/tlpsrc/txfontsb.tlpsrc + tlpkg/tlpsrc/txgreeks.tlpsrc + tlpkg/tlpsrc/txuprcal.tlpsrc + tlpkg/tlpsrc/type1cm.tlpsrc + tlpkg/tlpsrc/typed-checklist.tlpsrc + tlpkg/tlpsrc/typeface.tlpsrc + tlpkg/tlpsrc/typehtml.tlpsrc + tlpkg/tlpsrc/typeoutfileinfo.tlpsrc + tlpkg/tlpsrc/typewriter.tlpsrc + tlpkg/tlpsrc/typicons.tlpsrc + tlpkg/tlpsrc/typoaid.tlpsrc + tlpkg/tlpsrc/typogrid.tlpsrc + tlpkg/tlpsrc/tzplot.tlpsrc + tlpkg/tlpsrc/uaclasses.tlpsrc + tlpkg/tlpsrc/uafthesis.tlpsrc + tlpkg/tlpsrc/uantwerpendocs.tlpsrc + tlpkg/tlpsrc/uassign.tlpsrc + tlpkg/tlpsrc/ucalgmthesis.tlpsrc + tlpkg/tlpsrc/ucbthesis.tlpsrc + tlpkg/tlpsrc/ucdavisthesis.tlpsrc + tlpkg/tlpsrc/ucharcat.tlpsrc + tlpkg/tlpsrc/ucharclasses.tlpsrc + tlpkg/tlpsrc/ucs.tlpsrc + tlpkg/tlpsrc/ucsmonograph.tlpsrc + tlpkg/tlpsrc/ucthesis.tlpsrc + tlpkg/tlpsrc/udesoftec.tlpsrc + tlpkg/tlpsrc/uebungsblatt.tlpsrc + tlpkg/tlpsrc/uestcthesis.tlpsrc + tlpkg/tlpsrc/uhc.tlpsrc + tlpkg/tlpsrc/uhhassignment.tlpsrc + tlpkg/tlpsrc/uhrzeit.tlpsrc + tlpkg/tlpsrc/uiucredborder.tlpsrc + tlpkg/tlpsrc/uiucthesis.tlpsrc + tlpkg/tlpsrc/ukrhyph.tlpsrc + tlpkg/tlpsrc/ulem.tlpsrc + tlpkg/tlpsrc/ulqda.tlpsrc + tlpkg/tlpsrc/ulthese.tlpsrc + tlpkg/tlpsrc/umbclegislation.tlpsrc + tlpkg/tlpsrc/umich-thesis.tlpsrc + tlpkg/tlpsrc/uml.tlpsrc + tlpkg/tlpsrc/umlaute.tlpsrc + tlpkg/tlpsrc/umoline.tlpsrc + tlpkg/tlpsrc/umthesis.tlpsrc + tlpkg/tlpsrc/umtypewriter.tlpsrc + tlpkg/tlpsrc/unam-thesis.tlpsrc + tlpkg/tlpsrc/unamth-template.tlpsrc + tlpkg/tlpsrc/unamthesis.tlpsrc + tlpkg/tlpsrc/undergradmath.tlpsrc + tlpkg/tlpsrc/underlin.tlpsrc + tlpkg/tlpsrc/underoverlap.tlpsrc + tlpkg/tlpsrc/underscore.tlpsrc + tlpkg/tlpsrc/undolabl.tlpsrc + tlpkg/tlpsrc/unfonts-core.tlpsrc + tlpkg/tlpsrc/unfonts-extra.tlpsrc + tlpkg/tlpsrc/uni-wtal-ger.tlpsrc + tlpkg/tlpsrc/uni-wtal-lin.tlpsrc + tlpkg/tlpsrc/unicode-alphabets.tlpsrc + tlpkg/tlpsrc/unicode-bidi.tlpsrc + tlpkg/tlpsrc/unicode-data.tlpsrc + tlpkg/tlpsrc/unicode-math.tlpsrc + tlpkg/tlpsrc/unifith.tlpsrc + tlpkg/tlpsrc/uninormalize.tlpsrc + tlpkg/tlpsrc/uniquecounter.tlpsrc + tlpkg/tlpsrc/unisugar.tlpsrc + tlpkg/tlpsrc/unitconv.tlpsrc + tlpkg/tlpsrc/unitipa.tlpsrc + tlpkg/tlpsrc/unitn-bimrep.tlpsrc + tlpkg/tlpsrc/units.tlpsrc + tlpkg/tlpsrc/unitsdef.tlpsrc + tlpkg/tlpsrc/universa.tlpsrc + tlpkg/tlpsrc/universalis.tlpsrc + tlpkg/tlpsrc/univie-ling.tlpsrc + tlpkg/tlpsrc/unizgklasa.tlpsrc + tlpkg/tlpsrc/unravel.tlpsrc + tlpkg/tlpsrc/unswcover.tlpsrc + tlpkg/tlpsrc/uothesis.tlpsrc + tlpkg/tlpsrc/uowthesis.tlpsrc + tlpkg/tlpsrc/uowthesistitlepage.tlpsrc + tlpkg/tlpsrc/upca.tlpsrc + tlpkg/tlpsrc/uplatex.tlpsrc + tlpkg/tlpsrc/upmethodology.tlpsrc + tlpkg/tlpsrc/uppunctlm.tlpsrc + tlpkg/tlpsrc/upquote.tlpsrc + tlpkg/tlpsrc/uptex-base.tlpsrc + tlpkg/tlpsrc/uptex-fonts.tlpsrc + tlpkg/tlpsrc/uptex.tlpsrc + tlpkg/tlpsrc/upzhkinsoku.tlpsrc + tlpkg/tlpsrc/urcls.tlpsrc + tlpkg/tlpsrc/uri.tlpsrc + tlpkg/tlpsrc/url.tlpsrc + tlpkg/tlpsrc/urlbst.tlpsrc + tlpkg/tlpsrc/urwchancal.tlpsrc + tlpkg/tlpsrc/usebib.tlpsrc + tlpkg/tlpsrc/ushort.tlpsrc + tlpkg/tlpsrc/uspace.tlpsrc + tlpkg/tlpsrc/uspatent.tlpsrc + tlpkg/tlpsrc/ut-thesis.tlpsrc + tlpkg/tlpsrc/utexasthesis.tlpsrc + tlpkg/tlpsrc/utf8add.tlpsrc + tlpkg/tlpsrc/utf8mex.tlpsrc + tlpkg/tlpsrc/utfsym.tlpsrc + tlpkg/tlpsrc/utopia.tlpsrc + tlpkg/tlpsrc/uwmslide.tlpsrc + tlpkg/tlpsrc/uwthesis.tlpsrc + tlpkg/tlpsrc/vak.tlpsrc + tlpkg/tlpsrc/vancouver.tlpsrc + tlpkg/tlpsrc/variablelm.tlpsrc + tlpkg/tlpsrc/variations.tlpsrc + tlpkg/tlpsrc/varindex.tlpsrc + tlpkg/tlpsrc/varisize.tlpsrc + tlpkg/tlpsrc/varsfromjobname.tlpsrc + tlpkg/tlpsrc/varwidth.tlpsrc + tlpkg/tlpsrc/vaucanson-g.tlpsrc + tlpkg/tlpsrc/vcell.tlpsrc + tlpkg/tlpsrc/vdmlisting.tlpsrc + tlpkg/tlpsrc/velthuis.tlpsrc + tlpkg/tlpsrc/venn.tlpsrc + tlpkg/tlpsrc/venndiagram.tlpsrc + tlpkg/tlpsrc/venturisadf.tlpsrc + tlpkg/tlpsrc/verbasef.tlpsrc + tlpkg/tlpsrc/verbatimbox.tlpsrc + tlpkg/tlpsrc/verbatimcopy.tlpsrc + tlpkg/tlpsrc/verbdef.tlpsrc + tlpkg/tlpsrc/verbments.tlpsrc + tlpkg/tlpsrc/verifica.tlpsrc + tlpkg/tlpsrc/verifiche.tlpsrc + tlpkg/tlpsrc/verse.tlpsrc + tlpkg/tlpsrc/version.tlpsrc + tlpkg/tlpsrc/versions.tlpsrc + tlpkg/tlpsrc/versonotes.tlpsrc + tlpkg/tlpsrc/vertbars.tlpsrc + tlpkg/tlpsrc/vgrid.tlpsrc + tlpkg/tlpsrc/vhistory.tlpsrc + tlpkg/tlpsrc/visualfaq.tlpsrc + tlpkg/tlpsrc/visualpstricks.tlpsrc + tlpkg/tlpsrc/visualtikz.tlpsrc + tlpkg/tlpsrc/vlna.tlpsrc + tlpkg/tlpsrc/vmargin.tlpsrc + tlpkg/tlpsrc/vntex.tlpsrc + tlpkg/tlpsrc/vocaltract.tlpsrc + tlpkg/tlpsrc/volumes.tlpsrc + tlpkg/tlpsrc/voss-mathcol.tlpsrc + tlpkg/tlpsrc/vpe.tlpsrc + tlpkg/tlpsrc/vruler.tlpsrc + tlpkg/tlpsrc/vtable.tlpsrc + tlpkg/tlpsrc/vwcol.tlpsrc + tlpkg/tlpsrc/wadalab.tlpsrc + tlpkg/tlpsrc/wallcalendar.tlpsrc + tlpkg/tlpsrc/wallpaper.tlpsrc + tlpkg/tlpsrc/warning.tlpsrc + tlpkg/tlpsrc/warpcol.tlpsrc + tlpkg/tlpsrc/was.tlpsrc + tlpkg/tlpsrc/wasy-type1.tlpsrc + tlpkg/tlpsrc/wasy.tlpsrc + tlpkg/tlpsrc/wasysym.tlpsrc + tlpkg/tlpsrc/web.tlpsrc + tlpkg/tlpsrc/webguide.tlpsrc + tlpkg/tlpsrc/webquiz.tlpsrc + tlpkg/tlpsrc/widetable.tlpsrc + tlpkg/tlpsrc/widows-and-orphans.tlpsrc + tlpkg/tlpsrc/williams.tlpsrc + tlpkg/tlpsrc/willowtreebook.tlpsrc + tlpkg/tlpsrc/windycity.tlpsrc + tlpkg/tlpsrc/wintools.win32.tlpsrc + tlpkg/tlpsrc/withargs.tlpsrc + tlpkg/tlpsrc/witharrows.tlpsrc + tlpkg/tlpsrc/wnri-latex.tlpsrc + tlpkg/tlpsrc/wnri.tlpsrc + tlpkg/tlpsrc/wordcount.tlpsrc + tlpkg/tlpsrc/wordlike.tlpsrc + tlpkg/tlpsrc/worksheet.tlpsrc + tlpkg/tlpsrc/worldflags.tlpsrc + tlpkg/tlpsrc/wrapfig.tlpsrc + tlpkg/tlpsrc/wsemclassic.tlpsrc + tlpkg/tlpsrc/wsuipa.tlpsrc + tlpkg/tlpsrc/wtref.tlpsrc + tlpkg/tlpsrc/xargs.tlpsrc + tlpkg/tlpsrc/xassoccnt.tlpsrc + tlpkg/tlpsrc/xbmks.tlpsrc + tlpkg/tlpsrc/xcharter.tlpsrc + tlpkg/tlpsrc/xcite.tlpsrc + tlpkg/tlpsrc/xcjk2uni.tlpsrc + tlpkg/tlpsrc/xcntperchap.tlpsrc + tlpkg/tlpsrc/xcolor-material.tlpsrc + tlpkg/tlpsrc/xcolor-solarized.tlpsrc + tlpkg/tlpsrc/xcolor.tlpsrc + tlpkg/tlpsrc/xcomment.tlpsrc + tlpkg/tlpsrc/xcookybooky.tlpsrc + tlpkg/tlpsrc/xcpdftips.tlpsrc + tlpkg/tlpsrc/xdoc.tlpsrc + tlpkg/tlpsrc/xduthesis.tlpsrc + tlpkg/tlpsrc/xdvi.tlpsrc + tlpkg/tlpsrc/xebaposter.tlpsrc + tlpkg/tlpsrc/xechangebar.tlpsrc + tlpkg/tlpsrc/xecjk.tlpsrc + tlpkg/tlpsrc/xecolor.tlpsrc + tlpkg/tlpsrc/xecyr.tlpsrc + tlpkg/tlpsrc/xecyrmongolian.tlpsrc + tlpkg/tlpsrc/xeindex.tlpsrc + tlpkg/tlpsrc/xelatex-dev.tlpsrc + tlpkg/tlpsrc/xellipsis.tlpsrc + tlpkg/tlpsrc/xepersian-hm.tlpsrc + tlpkg/tlpsrc/xepersian.tlpsrc + tlpkg/tlpsrc/xesearch.tlpsrc + tlpkg/tlpsrc/xespotcolor.tlpsrc + tlpkg/tlpsrc/xetex-devanagari.tlpsrc + tlpkg/tlpsrc/xetex-itrans.tlpsrc + tlpkg/tlpsrc/xetex-pstricks.tlpsrc + tlpkg/tlpsrc/xetex-tibetan.tlpsrc + tlpkg/tlpsrc/xetex.tlpsrc + tlpkg/tlpsrc/xetexconfig.tlpsrc + tlpkg/tlpsrc/xetexfontinfo.tlpsrc + tlpkg/tlpsrc/xetexko.tlpsrc + tlpkg/tlpsrc/xetexref.tlpsrc + tlpkg/tlpsrc/xevlna.tlpsrc + tlpkg/tlpsrc/xfakebold.tlpsrc + tlpkg/tlpsrc/xfor.tlpsrc + tlpkg/tlpsrc/xgreek.tlpsrc + tlpkg/tlpsrc/xhfill.tlpsrc + tlpkg/tlpsrc/xifthen.tlpsrc + tlpkg/tlpsrc/xii-lat.tlpsrc + tlpkg/tlpsrc/xii.tlpsrc + tlpkg/tlpsrc/xindex.tlpsrc + tlpkg/tlpsrc/xindy-persian.tlpsrc + tlpkg/tlpsrc/xindy.tlpsrc + tlpkg/tlpsrc/xint.tlpsrc + tlpkg/tlpsrc/xintsession.tlpsrc + tlpkg/tlpsrc/xits.tlpsrc + tlpkg/tlpsrc/xkcdcolors.tlpsrc + tlpkg/tlpsrc/xkeyval.tlpsrc + tlpkg/tlpsrc/xlop.tlpsrc + tlpkg/tlpsrc/xltabular.tlpsrc + tlpkg/tlpsrc/xltxtra.tlpsrc + tlpkg/tlpsrc/xml2pmx.tlpsrc + tlpkg/tlpsrc/xmltex.tlpsrc + tlpkg/tlpsrc/xmltexconfig.tlpsrc + tlpkg/tlpsrc/xmpincl.tlpsrc + tlpkg/tlpsrc/xmuthesis.tlpsrc + tlpkg/tlpsrc/xnewcommand.tlpsrc + tlpkg/tlpsrc/xoptarg.tlpsrc + tlpkg/tlpsrc/xpatch.tlpsrc + tlpkg/tlpsrc/xpdfopen.tlpsrc + tlpkg/tlpsrc/xpeek.tlpsrc + tlpkg/tlpsrc/xpiano.tlpsrc + tlpkg/tlpsrc/xpicture.tlpsrc + tlpkg/tlpsrc/xpinyin.tlpsrc + tlpkg/tlpsrc/xprintlen.tlpsrc + tlpkg/tlpsrc/xpunctuate.tlpsrc + tlpkg/tlpsrc/xq.tlpsrc + tlpkg/tlpsrc/xsavebox.tlpsrc + tlpkg/tlpsrc/xsim.tlpsrc + tlpkg/tlpsrc/xskak.tlpsrc + tlpkg/tlpsrc/xstring.tlpsrc + tlpkg/tlpsrc/xtab.tlpsrc + tlpkg/tlpsrc/xtuthesis.tlpsrc + tlpkg/tlpsrc/xunicode.tlpsrc + tlpkg/tlpsrc/xurl.tlpsrc + tlpkg/tlpsrc/xwatermark.tlpsrc + tlpkg/tlpsrc/xyling.tlpsrc + tlpkg/tlpsrc/xymtex.tlpsrc + tlpkg/tlpsrc/xypic-tut-pt.tlpsrc + tlpkg/tlpsrc/xypic.tlpsrc + tlpkg/tlpsrc/xytree.tlpsrc + tlpkg/tlpsrc/yafoot.tlpsrc + tlpkg/tlpsrc/yagusylo.tlpsrc + tlpkg/tlpsrc/yaletter.tlpsrc + tlpkg/tlpsrc/yannisgr.tlpsrc + tlpkg/tlpsrc/yathesis.tlpsrc + tlpkg/tlpsrc/yax.tlpsrc + tlpkg/tlpsrc/yazd-thesis.tlpsrc + tlpkg/tlpsrc/ycbook.tlpsrc + tlpkg/tlpsrc/ydoc.tlpsrc + tlpkg/tlpsrc/yfonts-t1.tlpsrc + tlpkg/tlpsrc/yfonts.tlpsrc + tlpkg/tlpsrc/yhmath.tlpsrc + tlpkg/tlpsrc/yinit-otf.tlpsrc + tlpkg/tlpsrc/york-thesis.tlpsrc + tlpkg/tlpsrc/youngtab.tlpsrc + tlpkg/tlpsrc/yplan.tlpsrc + tlpkg/tlpsrc/yquant.tlpsrc + tlpkg/tlpsrc/ytableau.tlpsrc + tlpkg/tlpsrc/zapfchan.tlpsrc + tlpkg/tlpsrc/zapfding.tlpsrc + tlpkg/tlpsrc/zbmath-review-template.tlpsrc + tlpkg/tlpsrc/zebra-goodies.tlpsrc + tlpkg/tlpsrc/zed-csp.tlpsrc + tlpkg/tlpsrc/zhlineskip.tlpsrc + tlpkg/tlpsrc/zhlipsum.tlpsrc + tlpkg/tlpsrc/zhmetrics-uptex.tlpsrc + tlpkg/tlpsrc/zhmetrics.tlpsrc + tlpkg/tlpsrc/zhnumber.tlpsrc + tlpkg/tlpsrc/zhspacing.tlpsrc + tlpkg/tlpsrc/ziffer.tlpsrc + tlpkg/tlpsrc/zlmtt.tlpsrc + tlpkg/tlpsrc/zootaxa-bst.tlpsrc + tlpkg/tlpsrc/zref.tlpsrc + tlpkg/tlpsrc/zwgetfdate.tlpsrc + tlpkg/tlpsrc/zwpagelayout.tlpsrc + tlpkg/tlpsrc/zxjafbfont.tlpsrc + tlpkg/tlpsrc/zxjafont.tlpsrc + tlpkg/tlpsrc/zxjatype.tlpsrc + tlpkg/tlpsrc/zztex.tlpsrc + +name 00texlive.installation +category TLCore +revision 54074 +shortdesc TeX Live configuration settings +longdesc This package serves on an installed system as configuration +longdesc file. We have to remember these settings for additional package +longdesc installation, removal, etc. There are two types here: 1) If the +longdesc key starts with opt_ this is an option that can be set by the +longdesc user either at installation time or via tlmgr later. 2) If the +longdesc key starts with setting_ this value cannot be changed by the +longdesc user directly with tlmgr, but only by other actions. Currently +longdesc there are only two settings supported, and the second is only +longdesc used in unusual cases: 2a) setting_available_architectures +longdesc lists all available platforms and should be always present 2b) +longdesc setting_platform *overrides* the auto-detected platform. This +longdesc value will only be present when you forced a specific +longdesc architecture with -force-arch to install-tl The value of +longdesc __MASTER__ for the location field tells the installer to use +longdesc the present directory itself. For example, the DVD can be +longdesc mounted anywhere and we want the installer to work. Concerning +longdesc the 00* names: All packages starting with 00texlive are +longdesc ``virtual packages'', in the sense that no containers are +longdesc generated and these packages are never split into .src and .doc +longdesc sub-packages in the tlpdb. +depend opt_autobackup:1 +depend opt_backupdir:tlpkg/backups +depend opt_create_formats:1 +depend opt_desktop_integration:1 +depend opt_file_assocs:1 +depend opt_generate_updmap:0 +depend opt_install_docfiles:1 +depend opt_install_srcfiles:1 +depend opt_location:__MASTER__ +depend opt_post_code:1 +depend opt_sys_bin:/usr/local/bin +depend opt_sys_info:/usr/local/share/info +depend opt_sys_man:/usr/local/share/man +depend opt_w32_multi_user:1 +depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd armhf-linux i386-cygwin i386-freebsd i386-linux i386-netbsd i386-solaris universal-darwin win32 x86_64-cygwin x86_64-darwinlegacy x86_64-linux x86_64-linuxmusl x86_64-solaris + +name 00texlive.installer +category TLCore +revision 59083 +shortdesc TeX Live standalone installer package +longdesc This package defines the files to go into the installer +longdesc archives (install-tl-unx.tar.gz, install-tl.zip) built by the +longdesc tl-make-installer script. Most of what's here is also included +longdesc in the texlive.infra package -- ordinarily, duplicates are not +longdesc allowed, but in this case, 00texlive.installer is never used +longdesc *except* to build the installer archives, so it's ok. For +longdesc information on the 00texlive prefix see +longdesc 00texlive.installation(.tlpsrc) +runfiles size=782 + install-tl + release-texlive.txt + tlpkg/installer/COPYING.MinGW-runtime.txt + tlpkg/installer/config.guess + tlpkg/installer/ctan-mirrors.pl + tlpkg/installer/curl/curl-ca-bundle.crt + tlpkg/installer/curl/curl.exe + tlpkg/installer/install-menu-extl.pl + tlpkg/installer/install-menu-text.pl + tlpkg/installer/install-tl-gui.tcl + tlpkg/installer/installer-options.txt + tlpkg/installer/texlion.gif + tlpkg/installer/tl-cmd.bat + tlpkg/installer/tl-tray-menu.ini + tlpkg/tltcl/tlmgr.gif + tlpkg/tltcl/tltcl.tcl +binfiles arch=aarch64-linux size=47 + tlpkg/installer/xz/xz.aarch64-linux +binfiles arch=amd64-freebsd size=206 + tlpkg/installer/wget/wget.amd64-freebsd + tlpkg/installer/xz/xz.amd64-freebsd +binfiles arch=amd64-netbsd size=552 + tlpkg/installer/wget/wget.amd64-netbsd + tlpkg/installer/xz/xz.amd64-netbsd +binfiles arch=armhf-linux size=42 + tlpkg/installer/xz/xz.armhf-linux +binfiles arch=i386-cygwin size=50 + tlpkg/installer/xz/xz.i386-cygwin.exe +binfiles arch=i386-freebsd size=179 + tlpkg/installer/wget/wget.i386-freebsd + tlpkg/installer/xz/xz.i386-freebsd +binfiles arch=i386-linux size=51 + tlpkg/installer/xz/xz.i386-linux +binfiles arch=i386-netbsd size=457 + tlpkg/installer/wget/wget.i386-netbsd + tlpkg/installer/xz/xz.i386-netbsd +binfiles arch=i386-solaris size=162 + tlpkg/installer/wget/wget.i386-solaris + tlpkg/installer/xz/xz.i386-solaris +binfiles arch=universal-darwin size=107 + tlpkg/installer/xz/xz.universal-darwin +binfiles arch=win32 size=15632 + install-tl-windows.bat + tlpkg/installer/tar.exe + tlpkg/installer/wget/wget.exe + tlpkg/installer/xz/xz.exe + tlpkg/tlperl/README.TEXLIVE + tlpkg/tlperl/bin/libgcc_s_dw2-1.dll + tlpkg/tlperl/bin/libstdc++-6.dll + tlpkg/tlperl/bin/libwinpthread-1.dll + tlpkg/tlperl/bin/perl.exe + tlpkg/tlperl/bin/perl532.dll + tlpkg/tlperl/bin/perlglob.exe + tlpkg/tlperl/bin/wperl.exe + tlpkg/tlperl/lib/.packlist + tlpkg/tlperl/lib/AnyDBM_File.pm + tlpkg/tlperl/lib/App/Cpan.pm + tlpkg/tlperl/lib/App/Prove.pm + tlpkg/tlperl/lib/App/Prove/State.pm + tlpkg/tlperl/lib/App/Prove/State/Result.pm + tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm + tlpkg/tlperl/lib/Archive/Tar.pm + tlpkg/tlperl/lib/Archive/Tar/Constant.pm + tlpkg/tlperl/lib/Archive/Tar/File.pm + tlpkg/tlperl/lib/Attribute/Handlers.pm + tlpkg/tlperl/lib/AutoLoader.pm + tlpkg/tlperl/lib/AutoSplit.pm + tlpkg/tlperl/lib/B.pm + tlpkg/tlperl/lib/B/Concise.pm + tlpkg/tlperl/lib/B/Deparse.pm + tlpkg/tlperl/lib/B/Op_private.pm + tlpkg/tlperl/lib/B/Showlex.pm + tlpkg/tlperl/lib/B/Terse.pm + tlpkg/tlperl/lib/B/Xref.pm + tlpkg/tlperl/lib/Benchmark.pm + tlpkg/tlperl/lib/CORE.pod + tlpkg/tlperl/lib/CORE/EXTERN.h + tlpkg/tlperl/lib/CORE/INTERN.h + tlpkg/tlperl/lib/CORE/XSUB.h + tlpkg/tlperl/lib/CORE/arpa/inet.h + tlpkg/tlperl/lib/CORE/av.h + tlpkg/tlperl/lib/CORE/bitcount.h + tlpkg/tlperl/lib/CORE/charclass_invlists.h + tlpkg/tlperl/lib/CORE/config.h + tlpkg/tlperl/lib/CORE/cop.h + tlpkg/tlperl/lib/CORE/cv.h + tlpkg/tlperl/lib/CORE/dirent.h + tlpkg/tlperl/lib/CORE/dosish.h + tlpkg/tlperl/lib/CORE/ebcdic_tables.h + tlpkg/tlperl/lib/CORE/embed.h + tlpkg/tlperl/lib/CORE/embedvar.h + tlpkg/tlperl/lib/CORE/fakesdio.h + tlpkg/tlperl/lib/CORE/feature.h + tlpkg/tlperl/lib/CORE/form.h + tlpkg/tlperl/lib/CORE/git_version.h + tlpkg/tlperl/lib/CORE/gv.h + tlpkg/tlperl/lib/CORE/handy.h + tlpkg/tlperl/lib/CORE/hv.h + tlpkg/tlperl/lib/CORE/hv_func.h + tlpkg/tlperl/lib/CORE/hv_macro.h + tlpkg/tlperl/lib/CORE/inline.h + tlpkg/tlperl/lib/CORE/intrpvar.h + tlpkg/tlperl/lib/CORE/invlist_inline.h + tlpkg/tlperl/lib/CORE/iperlsys.h + tlpkg/tlperl/lib/CORE/keywords.h + tlpkg/tlperl/lib/CORE/l1_char_class_tab.h + tlpkg/tlperl/lib/CORE/libperl532.a + tlpkg/tlperl/lib/CORE/malloc_ctl.h + tlpkg/tlperl/lib/CORE/metaconfig.h + tlpkg/tlperl/lib/CORE/mg.h + tlpkg/tlperl/lib/CORE/mg_data.h + tlpkg/tlperl/lib/CORE/mg_raw.h + tlpkg/tlperl/lib/CORE/mg_vtable.h + tlpkg/tlperl/lib/CORE/mydtrace.h + tlpkg/tlperl/lib/CORE/netdb.h + tlpkg/tlperl/lib/CORE/nostdio.h + tlpkg/tlperl/lib/CORE/op.h + tlpkg/tlperl/lib/CORE/op_reg_common.h + tlpkg/tlperl/lib/CORE/opcode.h + tlpkg/tlperl/lib/CORE/opnames.h + tlpkg/tlperl/lib/CORE/overload.h + tlpkg/tlperl/lib/CORE/pad.h + tlpkg/tlperl/lib/CORE/parser.h + tlpkg/tlperl/lib/CORE/patchlevel.h + tlpkg/tlperl/lib/CORE/perl.h + tlpkg/tlperl/lib/CORE/perl_inc_macro.h + tlpkg/tlperl/lib/CORE/perl_langinfo.h + tlpkg/tlperl/lib/CORE/perlapi.h + tlpkg/tlperl/lib/CORE/perlhost.h + tlpkg/tlperl/lib/CORE/perlio.h + tlpkg/tlperl/lib/CORE/perliol.h + tlpkg/tlperl/lib/CORE/perlsdio.h + tlpkg/tlperl/lib/CORE/perlvars.h + tlpkg/tlperl/lib/CORE/perly.h + tlpkg/tlperl/lib/CORE/pp.h + tlpkg/tlperl/lib/CORE/pp_proto.h + tlpkg/tlperl/lib/CORE/proto.h + tlpkg/tlperl/lib/CORE/reentr.h + tlpkg/tlperl/lib/CORE/regcharclass.h + tlpkg/tlperl/lib/CORE/regcomp.h + tlpkg/tlperl/lib/CORE/regexp.h + tlpkg/tlperl/lib/CORE/regnodes.h + tlpkg/tlperl/lib/CORE/sbox32_hash.h + tlpkg/tlperl/lib/CORE/scope.h + tlpkg/tlperl/lib/CORE/stadtx_hash.h + tlpkg/tlperl/lib/CORE/sv.h + tlpkg/tlperl/lib/CORE/sys/errno2.h + tlpkg/tlperl/lib/CORE/sys/socket.h + tlpkg/tlperl/lib/CORE/thread.h + tlpkg/tlperl/lib/CORE/time64.h + tlpkg/tlperl/lib/CORE/time64_config.h + tlpkg/tlperl/lib/CORE/uconfig.h + tlpkg/tlperl/lib/CORE/uni_keywords.h + tlpkg/tlperl/lib/CORE/unicode_constants.h + tlpkg/tlperl/lib/CORE/unixish.h + tlpkg/tlperl/lib/CORE/utf8.h + tlpkg/tlperl/lib/CORE/utfebcdic.h + tlpkg/tlperl/lib/CORE/util.h + tlpkg/tlperl/lib/CORE/uudmap.h + tlpkg/tlperl/lib/CORE/vdir.h + tlpkg/tlperl/lib/CORE/vmem.h + tlpkg/tlperl/lib/CORE/vutil.h + tlpkg/tlperl/lib/CORE/warnings.h + tlpkg/tlperl/lib/CORE/win32.h + tlpkg/tlperl/lib/CORE/win32iop.h + tlpkg/tlperl/lib/CORE/win32thread.h + tlpkg/tlperl/lib/CORE/zaphod32_hash.h + tlpkg/tlperl/lib/CPAN.pm + tlpkg/tlperl/lib/CPAN/API/HOWTO.pod + tlpkg/tlperl/lib/CPAN/Author.pm + tlpkg/tlperl/lib/CPAN/Bundle.pm + tlpkg/tlperl/lib/CPAN/CacheMgr.pm + tlpkg/tlperl/lib/CPAN/Complete.pm + tlpkg/tlperl/lib/CPAN/Debug.pm + tlpkg/tlperl/lib/CPAN/DeferredCode.pm + tlpkg/tlperl/lib/CPAN/Distribution.pm + tlpkg/tlperl/lib/CPAN/Distroprefs.pm + tlpkg/tlperl/lib/CPAN/Distrostatus.pm + tlpkg/tlperl/lib/CPAN/Exception/RecursiveDependency.pm + tlpkg/tlperl/lib/CPAN/Exception/blocked_urllist.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_not_installed.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_process_error.pm + tlpkg/tlperl/lib/CPAN/FTP.pm + tlpkg/tlperl/lib/CPAN/FTP/netrc.pm + tlpkg/tlperl/lib/CPAN/FirstTime.pm + tlpkg/tlperl/lib/CPAN/HTTP/Client.pm + tlpkg/tlperl/lib/CPAN/HTTP/Credentials.pm + tlpkg/tlperl/lib/CPAN/HandleConfig.pm + tlpkg/tlperl/lib/CPAN/Index.pm + tlpkg/tlperl/lib/CPAN/InfoObj.pm + tlpkg/tlperl/lib/CPAN/Kwalify.pm + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.dd + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.yml + tlpkg/tlperl/lib/CPAN/LWP/UserAgent.pm + tlpkg/tlperl/lib/CPAN/Meta.pm + tlpkg/tlperl/lib/CPAN/Meta/Converter.pm + tlpkg/tlperl/lib/CPAN/Meta/Feature.pm + tlpkg/tlperl/lib/CPAN/Meta/History.pm + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_0.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_1.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_2.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_3.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_4.pod + tlpkg/tlperl/lib/CPAN/Meta/Merge.pm + tlpkg/tlperl/lib/CPAN/Meta/Prereqs.pm + tlpkg/tlperl/lib/CPAN/Meta/Requirements.pm + tlpkg/tlperl/lib/CPAN/Meta/Spec.pm + tlpkg/tlperl/lib/CPAN/Meta/Validator.pm + tlpkg/tlperl/lib/CPAN/Meta/YAML.pm + tlpkg/tlperl/lib/CPAN/Mirrors.pm + tlpkg/tlperl/lib/CPAN/Module.pm + tlpkg/tlperl/lib/CPAN/Nox.pm + tlpkg/tlperl/lib/CPAN/Plugin.pm + tlpkg/tlperl/lib/CPAN/Plugin/Specfile.pm + tlpkg/tlperl/lib/CPAN/Prompt.pm + tlpkg/tlperl/lib/CPAN/Queue.pm + tlpkg/tlperl/lib/CPAN/Shell.pm + tlpkg/tlperl/lib/CPAN/Tarzip.pm + tlpkg/tlperl/lib/CPAN/URL.pm + tlpkg/tlperl/lib/CPAN/Version.pm + tlpkg/tlperl/lib/Carp.pm + tlpkg/tlperl/lib/Carp/Heavy.pm + tlpkg/tlperl/lib/Class/Struct.pm + tlpkg/tlperl/lib/Compress/Raw/Bzip2.pm + tlpkg/tlperl/lib/Compress/Raw/Zlib.pm + tlpkg/tlperl/lib/Compress/Zlib.pm + tlpkg/tlperl/lib/Config.pm + tlpkg/tlperl/lib/Config.pm.orig + tlpkg/tlperl/lib/Config.pod + tlpkg/tlperl/lib/Config/Extensions.pm + tlpkg/tlperl/lib/Config/Perl/V.pm + tlpkg/tlperl/lib/Config_git.pl + tlpkg/tlperl/lib/Config_heavy.pl + tlpkg/tlperl/lib/Config_heavy.pl.orig + tlpkg/tlperl/lib/Cwd.pm + tlpkg/tlperl/lib/DB.pm + tlpkg/tlperl/lib/DBM_Filter.pm + tlpkg/tlperl/lib/DBM_Filter/compress.pm + tlpkg/tlperl/lib/DBM_Filter/encode.pm + tlpkg/tlperl/lib/DBM_Filter/int32.pm + tlpkg/tlperl/lib/DBM_Filter/null.pm + tlpkg/tlperl/lib/DBM_Filter/utf8.pm + tlpkg/tlperl/lib/Data/Dumper.pm + tlpkg/tlperl/lib/Devel/PPPort.pm + tlpkg/tlperl/lib/Devel/Peek.pm + tlpkg/tlperl/lib/Devel/SelfStubber.pm + tlpkg/tlperl/lib/Digest.pm + tlpkg/tlperl/lib/Digest/MD5.pm + tlpkg/tlperl/lib/Digest/SHA.pm + tlpkg/tlperl/lib/Digest/base.pm + tlpkg/tlperl/lib/Digest/file.pm + tlpkg/tlperl/lib/DirHandle.pm + tlpkg/tlperl/lib/Dumpvalue.pm + tlpkg/tlperl/lib/DynaLoader.pm + tlpkg/tlperl/lib/Encode.pm + tlpkg/tlperl/lib/Encode/Alias.pm + tlpkg/tlperl/lib/Encode/Byte.pm + tlpkg/tlperl/lib/Encode/CJKConstants.pm + tlpkg/tlperl/lib/Encode/CN.pm + tlpkg/tlperl/lib/Encode/CN/HZ.pm + tlpkg/tlperl/lib/Encode/Changes.e2x + tlpkg/tlperl/lib/Encode/Config.pm + tlpkg/tlperl/lib/Encode/ConfigLocal_PM.e2x + tlpkg/tlperl/lib/Encode/EBCDIC.pm + tlpkg/tlperl/lib/Encode/Encoder.pm + tlpkg/tlperl/lib/Encode/Encoding.pm + tlpkg/tlperl/lib/Encode/GSM0338.pm + tlpkg/tlperl/lib/Encode/Guess.pm + tlpkg/tlperl/lib/Encode/JP.pm + tlpkg/tlperl/lib/Encode/JP/H2Z.pm + tlpkg/tlperl/lib/Encode/JP/JIS7.pm + tlpkg/tlperl/lib/Encode/KR.pm + tlpkg/tlperl/lib/Encode/KR/2022_KR.pm + tlpkg/tlperl/lib/Encode/MIME/Header.pm + tlpkg/tlperl/lib/Encode/MIME/Header/ISO_2022_JP.pm + tlpkg/tlperl/lib/Encode/MIME/Name.pm + tlpkg/tlperl/lib/Encode/Makefile_PL.e2x + tlpkg/tlperl/lib/Encode/PerlIO.pod + tlpkg/tlperl/lib/Encode/README.e2x + tlpkg/tlperl/lib/Encode/Supported.pod + tlpkg/tlperl/lib/Encode/Symbol.pm + tlpkg/tlperl/lib/Encode/TW.pm + tlpkg/tlperl/lib/Encode/Unicode.pm + tlpkg/tlperl/lib/Encode/Unicode/UTF7.pm + tlpkg/tlperl/lib/Encode/_PM.e2x + tlpkg/tlperl/lib/Encode/_T.e2x + tlpkg/tlperl/lib/Encode/encode.h + tlpkg/tlperl/lib/English.pm + tlpkg/tlperl/lib/Env.pm + tlpkg/tlperl/lib/Errno.pm + tlpkg/tlperl/lib/Exporter.pm + tlpkg/tlperl/lib/Exporter/Heavy.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm + tlpkg/tlperl/lib/ExtUtils/Command.pm + tlpkg/tlperl/lib/ExtUtils/Command/MM.pm + tlpkg/tlperl/lib/ExtUtils/Constant.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Base.pm + tlpkg/tlperl/lib/ExtUtils/Constant/ProxySubs.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Utils.pm + tlpkg/tlperl/lib/ExtUtils/Constant/XS.pm + tlpkg/tlperl/lib/ExtUtils/Embed.pm + tlpkg/tlperl/lib/ExtUtils/Install.pm + tlpkg/tlperl/lib/ExtUtils/Installed.pm + tlpkg/tlperl/lib/ExtUtils/Liblist.pm + tlpkg/tlperl/lib/ExtUtils/Liblist/Kid.pm + tlpkg/tlperl/lib/ExtUtils/MANIFEST.SKIP + tlpkg/tlperl/lib/ExtUtils/MM.pm + tlpkg/tlperl/lib/ExtUtils/MM_AIX.pm + tlpkg/tlperl/lib/ExtUtils/MM_Any.pm + tlpkg/tlperl/lib/ExtUtils/MM_BeOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Cygwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_DOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_MacOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_NW5.pm + tlpkg/tlperl/lib/ExtUtils/MM_OS2.pm + tlpkg/tlperl/lib/ExtUtils/MM_QNX.pm + tlpkg/tlperl/lib/ExtUtils/MM_UWIN.pm + tlpkg/tlperl/lib/ExtUtils/MM_Unix.pm + tlpkg/tlperl/lib/ExtUtils/MM_VMS.pm + tlpkg/tlperl/lib/ExtUtils/MM_VOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win32.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win95.pm + tlpkg/tlperl/lib/ExtUtils/MY.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Config.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/FAQ.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Locale.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Tutorial.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/version.pm + tlpkg/tlperl/lib/ExtUtils/Manifest.pm + tlpkg/tlperl/lib/ExtUtils/Miniperl.pm + tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm + tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm + tlpkg/tlperl/lib/ExtUtils/Packlist.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pod + tlpkg/tlperl/lib/ExtUtils/ParseXS/Constants.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/CountLines.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Eval.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Utilities.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Cmd.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/InputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/OutputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Type.pm + tlpkg/tlperl/lib/ExtUtils/testlib.pm + tlpkg/tlperl/lib/ExtUtils/typemap + tlpkg/tlperl/lib/ExtUtils/xsubpp + tlpkg/tlperl/lib/Fatal.pm + tlpkg/tlperl/lib/Fcntl.pm + tlpkg/tlperl/lib/File/Basename.pm + tlpkg/tlperl/lib/File/Compare.pm + tlpkg/tlperl/lib/File/Copy.pm + tlpkg/tlperl/lib/File/DosGlob.pm + tlpkg/tlperl/lib/File/Fetch.pm + tlpkg/tlperl/lib/File/Find.pm + tlpkg/tlperl/lib/File/Glob.pm + tlpkg/tlperl/lib/File/GlobMapper.pm + tlpkg/tlperl/lib/File/Path.pm + tlpkg/tlperl/lib/File/Spec.pm + tlpkg/tlperl/lib/File/Spec/AmigaOS.pm + tlpkg/tlperl/lib/File/Spec/Cygwin.pm + tlpkg/tlperl/lib/File/Spec/Epoc.pm + tlpkg/tlperl/lib/File/Spec/Functions.pm + tlpkg/tlperl/lib/File/Spec/Mac.pm + tlpkg/tlperl/lib/File/Spec/OS2.pm + tlpkg/tlperl/lib/File/Spec/Unix.pm + tlpkg/tlperl/lib/File/Spec/VMS.pm + tlpkg/tlperl/lib/File/Spec/Win32.pm + tlpkg/tlperl/lib/File/Temp.pm + tlpkg/tlperl/lib/File/stat.pm + tlpkg/tlperl/lib/FileCache.pm + tlpkg/tlperl/lib/FileHandle.pm + tlpkg/tlperl/lib/Filter/Simple.pm + tlpkg/tlperl/lib/Filter/Util/Call.pm + tlpkg/tlperl/lib/FindBin.pm + tlpkg/tlperl/lib/Getopt/Long.pm + tlpkg/tlperl/lib/Getopt/Std.pm + tlpkg/tlperl/lib/HTTP/Tiny.pm + tlpkg/tlperl/lib/Hash/Util.pm + tlpkg/tlperl/lib/Hash/Util/FieldHash.pm + tlpkg/tlperl/lib/I18N/Collate.pm + tlpkg/tlperl/lib/I18N/LangTags.pm + tlpkg/tlperl/lib/I18N/LangTags/Detect.pm + tlpkg/tlperl/lib/I18N/LangTags/List.pm + tlpkg/tlperl/lib/I18N/Langinfo.pm + tlpkg/tlperl/lib/IO.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Compress/Base.pm + tlpkg/tlperl/lib/IO/Compress/Base/Common.pm + tlpkg/tlperl/lib/IO/Compress/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/FAQ.pod + tlpkg/tlperl/lib/IO/Compress/Gzip.pm + tlpkg/tlperl/lib/IO/Compress/Gzip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/RawDeflate.pm + tlpkg/tlperl/lib/IO/Compress/Zip.pm + tlpkg/tlperl/lib/IO/Compress/Zip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Extra.pm + tlpkg/tlperl/lib/IO/Dir.pm + tlpkg/tlperl/lib/IO/File.pm + tlpkg/tlperl/lib/IO/Handle.pm + tlpkg/tlperl/lib/IO/Pipe.pm + tlpkg/tlperl/lib/IO/Poll.pm + tlpkg/tlperl/lib/IO/Seekable.pm + tlpkg/tlperl/lib/IO/Select.pm + tlpkg/tlperl/lib/IO/Socket.pm + tlpkg/tlperl/lib/IO/Socket/INET.pm + tlpkg/tlperl/lib/IO/Socket/IP.pm + tlpkg/tlperl/lib/IO/Socket/UNIX.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyUncompress.pm + tlpkg/tlperl/lib/IO/Uncompress/Base.pm + tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Gunzip.pm + tlpkg/tlperl/lib/IO/Uncompress/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/RawInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm + tlpkg/tlperl/lib/IO/Zlib.pm + tlpkg/tlperl/lib/IPC/Cmd.pm + tlpkg/tlperl/lib/IPC/Open2.pm + tlpkg/tlperl/lib/IPC/Open3.pm + tlpkg/tlperl/lib/Internals.pod + tlpkg/tlperl/lib/JSON/PP.pm + tlpkg/tlperl/lib/JSON/PP/Boolean.pm + tlpkg/tlperl/lib/List/Util.pm + tlpkg/tlperl/lib/List/Util/XS.pm + tlpkg/tlperl/lib/Locale/Maketext.pm + tlpkg/tlperl/lib/Locale/Maketext.pod + tlpkg/tlperl/lib/Locale/Maketext/Cookbook.pod + tlpkg/tlperl/lib/Locale/Maketext/Guts.pm + tlpkg/tlperl/lib/Locale/Maketext/GutsLoader.pm + tlpkg/tlperl/lib/Locale/Maketext/Simple.pm + tlpkg/tlperl/lib/Locale/Maketext/TPJ13.pod + tlpkg/tlperl/lib/MIME/Base64.pm + tlpkg/tlperl/lib/MIME/QuotedPrint.pm + tlpkg/tlperl/lib/Math/BigFloat.pm + tlpkg/tlperl/lib/Math/BigFloat/Trace.pm + tlpkg/tlperl/lib/Math/BigInt.pm + tlpkg/tlperl/lib/Math/BigInt/Calc.pm + tlpkg/tlperl/lib/Math/BigInt/FastCalc.pm + tlpkg/tlperl/lib/Math/BigInt/Lib.pm + tlpkg/tlperl/lib/Math/BigInt/Trace.pm + tlpkg/tlperl/lib/Math/BigRat.pm + tlpkg/tlperl/lib/Math/Complex.pm + tlpkg/tlperl/lib/Math/Trig.pm + tlpkg/tlperl/lib/Memoize.pm + tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm + tlpkg/tlperl/lib/Memoize/Expire.pm + tlpkg/tlperl/lib/Memoize/ExpireFile.pm + tlpkg/tlperl/lib/Memoize/ExpireTest.pm + tlpkg/tlperl/lib/Memoize/NDBM_File.pm + tlpkg/tlperl/lib/Memoize/SDBM_File.pm + tlpkg/tlperl/lib/Memoize/Storable.pm + tlpkg/tlperl/lib/Module/CoreList.pm + tlpkg/tlperl/lib/Module/CoreList.pod + tlpkg/tlperl/lib/Module/CoreList/Utils.pm + tlpkg/tlperl/lib/Module/Load.pm + tlpkg/tlperl/lib/Module/Load/Conditional.pm + tlpkg/tlperl/lib/Module/Loaded.pm + tlpkg/tlperl/lib/Module/Metadata.pm + tlpkg/tlperl/lib/NEXT.pm + tlpkg/tlperl/lib/Net/Cmd.pm + tlpkg/tlperl/lib/Net/Config.pm + tlpkg/tlperl/lib/Net/Domain.pm + tlpkg/tlperl/lib/Net/FTP.pm + tlpkg/tlperl/lib/Net/FTP/A.pm + tlpkg/tlperl/lib/Net/FTP/E.pm + tlpkg/tlperl/lib/Net/FTP/I.pm + tlpkg/tlperl/lib/Net/FTP/L.pm + tlpkg/tlperl/lib/Net/FTP/dataconn.pm + tlpkg/tlperl/lib/Net/NNTP.pm + tlpkg/tlperl/lib/Net/Netrc.pm + tlpkg/tlperl/lib/Net/POP3.pm + tlpkg/tlperl/lib/Net/Ping.pm + tlpkg/tlperl/lib/Net/SMTP.pm + tlpkg/tlperl/lib/Net/Time.pm + tlpkg/tlperl/lib/Net/hostent.pm + tlpkg/tlperl/lib/Net/libnetFAQ.pod + tlpkg/tlperl/lib/Net/netent.pm + tlpkg/tlperl/lib/Net/protoent.pm + tlpkg/tlperl/lib/Net/servent.pm + tlpkg/tlperl/lib/O.pm + tlpkg/tlperl/lib/Opcode.pm + tlpkg/tlperl/lib/POSIX.pm + tlpkg/tlperl/lib/POSIX.pod + tlpkg/tlperl/lib/Params/Check.pm + tlpkg/tlperl/lib/Parse/CPAN/Meta.pm + tlpkg/tlperl/lib/Perl/OSType.pm + tlpkg/tlperl/lib/PerlIO.pm + tlpkg/tlperl/lib/PerlIO/encoding.pm + tlpkg/tlperl/lib/PerlIO/mmap.pm + tlpkg/tlperl/lib/PerlIO/scalar.pm + tlpkg/tlperl/lib/PerlIO/via.pm + tlpkg/tlperl/lib/PerlIO/via/QuotedPrint.pm + tlpkg/tlperl/lib/Pod/Checker.pm + tlpkg/tlperl/lib/Pod/Escapes.pm + tlpkg/tlperl/lib/Pod/Functions.pm + tlpkg/tlperl/lib/Pod/Html.pm + tlpkg/tlperl/lib/Pod/Man.pm + tlpkg/tlperl/lib/Pod/ParseLink.pm + tlpkg/tlperl/lib/Pod/Perldoc.pm + tlpkg/tlperl/lib/Pod/Perldoc/BaseTo.pm + tlpkg/tlperl/lib/Pod/Perldoc/GetOptsOO.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToANSI.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToChecker.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToMan.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToNroff.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToPod.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToRtf.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTerm.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTk.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToXml.pm + tlpkg/tlperl/lib/Pod/Simple.pm + tlpkg/tlperl/lib/Pod/Simple.pod + tlpkg/tlperl/lib/Pod/Simple/BlackBox.pm + tlpkg/tlperl/lib/Pod/Simple/Checker.pm + tlpkg/tlperl/lib/Pod/Simple/Debug.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsText.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsXML.pm + tlpkg/tlperl/lib/Pod/Simple/HTML.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLBatch.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLLegacy.pm + tlpkg/tlperl/lib/Pod/Simple/JustPod.pm + tlpkg/tlperl/lib/Pod/Simple/LinkSection.pm + tlpkg/tlperl/lib/Pod/Simple/Methody.pm + tlpkg/tlperl/lib/Pod/Simple/Progress.pm + tlpkg/tlperl/lib/Pod/Simple/PullParser.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserEndToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserStartToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserTextToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserToken.pm + tlpkg/tlperl/lib/Pod/Simple/RTF.pm + tlpkg/tlperl/lib/Pod/Simple/Search.pm + tlpkg/tlperl/lib/Pod/Simple/SimpleTree.pm + tlpkg/tlperl/lib/Pod/Simple/Subclassing.pod + tlpkg/tlperl/lib/Pod/Simple/Text.pm + tlpkg/tlperl/lib/Pod/Simple/TextContent.pm + tlpkg/tlperl/lib/Pod/Simple/TiedOutFH.pm + tlpkg/tlperl/lib/Pod/Simple/Transcode.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeDumb.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeSmart.pm + tlpkg/tlperl/lib/Pod/Simple/XHTML.pm + tlpkg/tlperl/lib/Pod/Simple/XMLOutStream.pm + tlpkg/tlperl/lib/Pod/Text.pm + tlpkg/tlperl/lib/Pod/Text/Color.pm + tlpkg/tlperl/lib/Pod/Text/Overstrike.pm + tlpkg/tlperl/lib/Pod/Text/Termcap.pm + tlpkg/tlperl/lib/Pod/Usage.pm + tlpkg/tlperl/lib/SDBM_File.pm + tlpkg/tlperl/lib/Safe.pm + tlpkg/tlperl/lib/Scalar/Util.pm + tlpkg/tlperl/lib/Search/Dict.pm + tlpkg/tlperl/lib/SelectSaver.pm + tlpkg/tlperl/lib/SelfLoader.pm + tlpkg/tlperl/lib/Socket.pm + tlpkg/tlperl/lib/Storable.pm + tlpkg/tlperl/lib/Sub/Util.pm + tlpkg/tlperl/lib/Symbol.pm + tlpkg/tlperl/lib/Sys/Hostname.pm + tlpkg/tlperl/lib/TAP/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Color.pm + tlpkg/tlperl/lib/TAP/Formatter/Console.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/ParallelSession.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/File.pm + tlpkg/tlperl/lib/TAP/Formatter/File/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/Session.pm + tlpkg/tlperl/lib/TAP/Harness.pm + tlpkg/tlperl/lib/TAP/Harness/Beyond.pod + tlpkg/tlperl/lib/TAP/Harness/Env.pm + tlpkg/tlperl/lib/TAP/Object.pm + tlpkg/tlperl/lib/TAP/Parser.pm + tlpkg/tlperl/lib/TAP/Parser/Aggregator.pm + tlpkg/tlperl/lib/TAP/Parser/Grammar.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Array.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Process.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Stream.pm + tlpkg/tlperl/lib/TAP/Parser/IteratorFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Multiplexer.pm + tlpkg/tlperl/lib/TAP/Parser/Result.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Bailout.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Comment.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Plan.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Pragma.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Test.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Unknown.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Version.pm + tlpkg/tlperl/lib/TAP/Parser/Result/YAML.pm + tlpkg/tlperl/lib/TAP/Parser/ResultFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Job.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Spinner.pm + tlpkg/tlperl/lib/TAP/Parser/Source.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Executable.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/File.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Handle.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Perl.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/RawTAP.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Reader.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Writer.pm + tlpkg/tlperl/lib/Term/ANSIColor.pm + tlpkg/tlperl/lib/Term/Cap.pm + tlpkg/tlperl/lib/Term/Complete.pm + tlpkg/tlperl/lib/Term/ReadLine.pm + tlpkg/tlperl/lib/Test.pm + tlpkg/tlperl/lib/Test/Builder.pm + tlpkg/tlperl/lib/Test/Builder/Formatter.pm + tlpkg/tlperl/lib/Test/Builder/IO/Scalar.pm + tlpkg/tlperl/lib/Test/Builder/Module.pm + tlpkg/tlperl/lib/Test/Builder/Tester.pm + tlpkg/tlperl/lib/Test/Builder/Tester/Color.pm + tlpkg/tlperl/lib/Test/Builder/TodoDiag.pm + tlpkg/tlperl/lib/Test/Harness.pm + tlpkg/tlperl/lib/Test/More.pm + tlpkg/tlperl/lib/Test/Simple.pm + tlpkg/tlperl/lib/Test/Tester.pm + tlpkg/tlperl/lib/Test/Tester/Capture.pm + tlpkg/tlperl/lib/Test/Tester/CaptureRunner.pm + tlpkg/tlperl/lib/Test/Tester/Delegate.pm + tlpkg/tlperl/lib/Test/Tutorial.pod + tlpkg/tlperl/lib/Test/use/ok.pm + tlpkg/tlperl/lib/Test2.pm + tlpkg/tlperl/lib/Test2/API.pm + tlpkg/tlperl/lib/Test2/API/Breakage.pm + tlpkg/tlperl/lib/Test2/API/Context.pm + tlpkg/tlperl/lib/Test2/API/Instance.pm + tlpkg/tlperl/lib/Test2/API/Stack.pm + tlpkg/tlperl/lib/Test2/Event.pm + tlpkg/tlperl/lib/Test2/Event/Bail.pm + tlpkg/tlperl/lib/Test2/Event/Diag.pm + tlpkg/tlperl/lib/Test2/Event/Encoding.pm + tlpkg/tlperl/lib/Test2/Event/Exception.pm + tlpkg/tlperl/lib/Test2/Event/Fail.pm + tlpkg/tlperl/lib/Test2/Event/Generic.pm + tlpkg/tlperl/lib/Test2/Event/Note.pm + tlpkg/tlperl/lib/Test2/Event/Ok.pm + tlpkg/tlperl/lib/Test2/Event/Pass.pm + tlpkg/tlperl/lib/Test2/Event/Plan.pm + tlpkg/tlperl/lib/Test2/Event/Skip.pm + tlpkg/tlperl/lib/Test2/Event/Subtest.pm + tlpkg/tlperl/lib/Test2/Event/TAP/Version.pm + tlpkg/tlperl/lib/Test2/Event/V2.pm + tlpkg/tlperl/lib/Test2/Event/Waiting.pm + tlpkg/tlperl/lib/Test2/EventFacet.pm + tlpkg/tlperl/lib/Test2/EventFacet/About.pm + tlpkg/tlperl/lib/Test2/EventFacet/Amnesty.pm + tlpkg/tlperl/lib/Test2/EventFacet/Assert.pm + tlpkg/tlperl/lib/Test2/EventFacet/Control.pm + tlpkg/tlperl/lib/Test2/EventFacet/Error.pm + tlpkg/tlperl/lib/Test2/EventFacet/Hub.pm + tlpkg/tlperl/lib/Test2/EventFacet/Info.pm + tlpkg/tlperl/lib/Test2/EventFacet/Info/Table.pm + tlpkg/tlperl/lib/Test2/EventFacet/Meta.pm + tlpkg/tlperl/lib/Test2/EventFacet/Parent.pm + tlpkg/tlperl/lib/Test2/EventFacet/Plan.pm + tlpkg/tlperl/lib/Test2/EventFacet/Render.pm + tlpkg/tlperl/lib/Test2/EventFacet/Trace.pm + tlpkg/tlperl/lib/Test2/Formatter.pm + tlpkg/tlperl/lib/Test2/Formatter/TAP.pm + tlpkg/tlperl/lib/Test2/Hub.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor/Terminator.pm + tlpkg/tlperl/lib/Test2/Hub/Subtest.pm + tlpkg/tlperl/lib/Test2/IPC.pm + tlpkg/tlperl/lib/Test2/IPC/Driver.pm + tlpkg/tlperl/lib/Test2/IPC/Driver/Files.pm + tlpkg/tlperl/lib/Test2/Tools/Tiny.pm + tlpkg/tlperl/lib/Test2/Transition.pod + tlpkg/tlperl/lib/Test2/Util.pm + tlpkg/tlperl/lib/Test2/Util/ExternalMeta.pm + tlpkg/tlperl/lib/Test2/Util/Facets2Legacy.pm + tlpkg/tlperl/lib/Test2/Util/HashBase.pm + tlpkg/tlperl/lib/Test2/Util/Trace.pm + tlpkg/tlperl/lib/Text/Abbrev.pm + tlpkg/tlperl/lib/Text/Balanced.pm + tlpkg/tlperl/lib/Text/ParseWords.pm + tlpkg/tlperl/lib/Text/Tabs.pm + tlpkg/tlperl/lib/Text/Wrap.pm + tlpkg/tlperl/lib/Thread.pm + tlpkg/tlperl/lib/Thread/Queue.pm + tlpkg/tlperl/lib/Thread/Semaphore.pm + tlpkg/tlperl/lib/Tie/Array.pm + tlpkg/tlperl/lib/Tie/File.pm + tlpkg/tlperl/lib/Tie/Handle.pm + tlpkg/tlperl/lib/Tie/Hash.pm + tlpkg/tlperl/lib/Tie/Hash/NamedCapture.pm + tlpkg/tlperl/lib/Tie/Memoize.pm + tlpkg/tlperl/lib/Tie/RefHash.pm + tlpkg/tlperl/lib/Tie/Scalar.pm + tlpkg/tlperl/lib/Tie/StdHandle.pm + tlpkg/tlperl/lib/Tie/SubstrHash.pm + tlpkg/tlperl/lib/Time/HiRes.pm + tlpkg/tlperl/lib/Time/Local.pm + tlpkg/tlperl/lib/Time/Piece.pm + tlpkg/tlperl/lib/Time/Seconds.pm + tlpkg/tlperl/lib/Time/gmtime.pm + tlpkg/tlperl/lib/Time/localtime.pm + tlpkg/tlperl/lib/Time/tm.pm + tlpkg/tlperl/lib/UNIVERSAL.pm + tlpkg/tlperl/lib/Unicode/Collate.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Big5.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/GB2312.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/JISX0208.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Korean.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Pinyin.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Stroke.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Zhuyin.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale/af.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ar.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/as.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/az.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/be.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/bn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cs.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/da.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_at_ph.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/dsb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ee.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/eo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es_trad.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/et.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fil.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fr_ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/gu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ha.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/haw.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/he.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ig.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/is.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ja.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ko.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kok.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lkt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ln.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ml.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nso.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/om.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/or.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ro.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/se.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si_dict.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sq.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv_refo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ta.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/te.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/th.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/to.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ug_cyrl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/uk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ur.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wae.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/yo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_big5.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_gb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_pin.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_strk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_zhu.pl + tlpkg/tlperl/lib/Unicode/Collate/allkeys.txt + tlpkg/tlperl/lib/Unicode/Collate/keys.txt + tlpkg/tlperl/lib/Unicode/Normalize.pm + tlpkg/tlperl/lib/Unicode/UCD.pm + tlpkg/tlperl/lib/User/grent.pm + tlpkg/tlperl/lib/User/pwent.pm + tlpkg/tlperl/lib/Win32.pm + tlpkg/tlperl/lib/Win32API/File.pm + tlpkg/tlperl/lib/Win32API/File/cFile.pc + tlpkg/tlperl/lib/Win32CORE.pm + tlpkg/tlperl/lib/XSLoader.pm + tlpkg/tlperl/lib/_charnames.pm + tlpkg/tlperl/lib/attributes.pm + tlpkg/tlperl/lib/auto/B/B.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Bzip2/Bzip2.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Zlib/Zlib.dll + tlpkg/tlperl/lib/auto/Cwd/Cwd.dll + tlpkg/tlperl/lib/auto/Data/Dumper/Dumper.dll + tlpkg/tlperl/lib/auto/Devel/Peek/Peek.dll + tlpkg/tlperl/lib/auto/Digest/MD5/MD5.dll + tlpkg/tlperl/lib/auto/Digest/SHA/SHA.dll + tlpkg/tlperl/lib/auto/Encode/Byte/Byte.dll + tlpkg/tlperl/lib/auto/Encode/CN/CN.dll + tlpkg/tlperl/lib/auto/Encode/EBCDIC/EBCDIC.dll + tlpkg/tlperl/lib/auto/Encode/Encode.dll + tlpkg/tlperl/lib/auto/Encode/JP/JP.dll + tlpkg/tlperl/lib/auto/Encode/KR/KR.dll + tlpkg/tlperl/lib/auto/Encode/Symbol/Symbol.dll + tlpkg/tlperl/lib/auto/Encode/TW/TW.dll + tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.dll + tlpkg/tlperl/lib/auto/Fcntl/Fcntl.dll + tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.dll + tlpkg/tlperl/lib/auto/File/Glob/Glob.dll + tlpkg/tlperl/lib/auto/Filter/Util/Call/Call.dll + tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.dll + tlpkg/tlperl/lib/auto/Hash/Util/Util.dll + tlpkg/tlperl/lib/auto/I18N/Langinfo/Langinfo.dll + tlpkg/tlperl/lib/auto/IO/IO.dll + tlpkg/tlperl/lib/auto/List/Util/Util.dll + tlpkg/tlperl/lib/auto/MIME/Base64/Base64.dll + tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.dll + tlpkg/tlperl/lib/auto/Opcode/Opcode.dll + tlpkg/tlperl/lib/auto/POSIX/POSIX.dll + tlpkg/tlperl/lib/auto/PerlIO/encoding/encoding.dll + tlpkg/tlperl/lib/auto/PerlIO/mmap/mmap.dll + tlpkg/tlperl/lib/auto/PerlIO/scalar/scalar.dll + tlpkg/tlperl/lib/auto/PerlIO/via/via.dll + tlpkg/tlperl/lib/auto/SDBM_File/SDBM_File.dll + tlpkg/tlperl/lib/auto/Socket/Socket.dll + tlpkg/tlperl/lib/auto/Storable/Storable.dll + tlpkg/tlperl/lib/auto/Sys/Hostname/Hostname.dll + tlpkg/tlperl/lib/auto/Time/HiRes/HiRes.dll + tlpkg/tlperl/lib/auto/Time/Piece/Piece.dll + tlpkg/tlperl/lib/auto/Unicode/Collate/Collate.dll + tlpkg/tlperl/lib/auto/Unicode/Normalize/Normalize.dll + tlpkg/tlperl/lib/auto/Win32/Win32.dll + tlpkg/tlperl/lib/auto/Win32API/File/File.dll + tlpkg/tlperl/lib/auto/Win32CORE/extralibs.ld + tlpkg/tlperl/lib/auto/attributes/attributes.dll + tlpkg/tlperl/lib/auto/mro/mro.dll + tlpkg/tlperl/lib/auto/re/re.dll + tlpkg/tlperl/lib/auto/threads/shared/shared.dll + tlpkg/tlperl/lib/auto/threads/threads.dll + tlpkg/tlperl/lib/autodie.pm + tlpkg/tlperl/lib/autodie/Scope/Guard.pm + tlpkg/tlperl/lib/autodie/Scope/GuardStack.pm + tlpkg/tlperl/lib/autodie/Util.pm + tlpkg/tlperl/lib/autodie/exception.pm + tlpkg/tlperl/lib/autodie/exception/system.pm + tlpkg/tlperl/lib/autodie/hints.pm + tlpkg/tlperl/lib/autodie/skip.pm + tlpkg/tlperl/lib/autouse.pm + tlpkg/tlperl/lib/base.pm + tlpkg/tlperl/lib/bigint.pm + tlpkg/tlperl/lib/bignum.pm + tlpkg/tlperl/lib/bigrat.pm + tlpkg/tlperl/lib/blib.pm + tlpkg/tlperl/lib/bytes.pm + tlpkg/tlperl/lib/bytes_heavy.pl + tlpkg/tlperl/lib/charnames.pm + tlpkg/tlperl/lib/constant.pm + tlpkg/tlperl/lib/deprecate.pm + tlpkg/tlperl/lib/diagnostics.pm + tlpkg/tlperl/lib/dumpvar.pl + tlpkg/tlperl/lib/encoding.pm + tlpkg/tlperl/lib/encoding/warnings.pm + tlpkg/tlperl/lib/experimental.pm + tlpkg/tlperl/lib/feature.pm + tlpkg/tlperl/lib/fields.pm + tlpkg/tlperl/lib/filetest.pm + tlpkg/tlperl/lib/if.pm + tlpkg/tlperl/lib/integer.pm + tlpkg/tlperl/lib/less.pm + tlpkg/tlperl/lib/lib.pm + tlpkg/tlperl/lib/locale.pm + tlpkg/tlperl/lib/meta_notation.pm + tlpkg/tlperl/lib/mro.pm + tlpkg/tlperl/lib/ok.pm + tlpkg/tlperl/lib/open.pm + tlpkg/tlperl/lib/ops.pm + tlpkg/tlperl/lib/overload.pm + tlpkg/tlperl/lib/overload/numbers.pm + tlpkg/tlperl/lib/overloading.pm + tlpkg/tlperl/lib/parent.pm + tlpkg/tlperl/lib/perl5db.pl + tlpkg/tlperl/lib/perlfaq.pm + tlpkg/tlperl/lib/perllocal.pod + tlpkg/tlperl/lib/re.pm + tlpkg/tlperl/lib/sigtrap.pm + tlpkg/tlperl/lib/sort.pm + tlpkg/tlperl/lib/strict.pm + tlpkg/tlperl/lib/subs.pm + tlpkg/tlperl/lib/threads.pm + tlpkg/tlperl/lib/threads/shared.pm + tlpkg/tlperl/lib/unicore/Blocks.txt + tlpkg/tlperl/lib/unicore/CombiningClass.pl + tlpkg/tlperl/lib/unicore/Decomposition.pl + tlpkg/tlperl/lib/unicore/Name.pl + tlpkg/tlperl/lib/unicore/Name.pm + tlpkg/tlperl/lib/unicore/NamedSequences.txt + tlpkg/tlperl/lib/unicore/SpecialCasing.txt + tlpkg/tlperl/lib/unicore/To/Age.pl + tlpkg/tlperl/lib/unicore/To/Bc.pl + tlpkg/tlperl/lib/unicore/To/Bmg.pl + tlpkg/tlperl/lib/unicore/To/Bpb.pl + tlpkg/tlperl/lib/unicore/To/Bpt.pl + tlpkg/tlperl/lib/unicore/To/Cf.pl + tlpkg/tlperl/lib/unicore/To/Digit.pl + tlpkg/tlperl/lib/unicore/To/Ea.pl + tlpkg/tlperl/lib/unicore/To/EqUIdeo.pl + tlpkg/tlperl/lib/unicore/To/Fold.pl + tlpkg/tlperl/lib/unicore/To/GCB.pl + tlpkg/tlperl/lib/unicore/To/Gc.pl + tlpkg/tlperl/lib/unicore/To/Hst.pl + tlpkg/tlperl/lib/unicore/To/Identif2.pl + tlpkg/tlperl/lib/unicore/To/Identifi.pl + tlpkg/tlperl/lib/unicore/To/InPC.pl + tlpkg/tlperl/lib/unicore/To/InSC.pl + tlpkg/tlperl/lib/unicore/To/Isc.pl + tlpkg/tlperl/lib/unicore/To/Jg.pl + tlpkg/tlperl/lib/unicore/To/Jt.pl + tlpkg/tlperl/lib/unicore/To/Lb.pl + tlpkg/tlperl/lib/unicore/To/Lc.pl + tlpkg/tlperl/lib/unicore/To/Lower.pl + tlpkg/tlperl/lib/unicore/To/NFCQC.pl + tlpkg/tlperl/lib/unicore/To/NFDQC.pl + tlpkg/tlperl/lib/unicore/To/NFKCCF.pl + tlpkg/tlperl/lib/unicore/To/NFKCQC.pl + tlpkg/tlperl/lib/unicore/To/NFKDQC.pl + tlpkg/tlperl/lib/unicore/To/Na1.pl + tlpkg/tlperl/lib/unicore/To/NameAlia.pl + tlpkg/tlperl/lib/unicore/To/Nt.pl + tlpkg/tlperl/lib/unicore/To/Nv.pl + tlpkg/tlperl/lib/unicore/To/PerlDeci.pl + tlpkg/tlperl/lib/unicore/To/SB.pl + tlpkg/tlperl/lib/unicore/To/Sc.pl + tlpkg/tlperl/lib/unicore/To/Scx.pl + tlpkg/tlperl/lib/unicore/To/Tc.pl + tlpkg/tlperl/lib/unicore/To/Title.pl + tlpkg/tlperl/lib/unicore/To/Uc.pl + tlpkg/tlperl/lib/unicore/To/Upper.pl + tlpkg/tlperl/lib/unicore/To/Vo.pl + tlpkg/tlperl/lib/unicore/To/WB.pl + tlpkg/tlperl/lib/unicore/To/_PerlLB.pl + tlpkg/tlperl/lib/unicore/To/_PerlSCX.pl + tlpkg/tlperl/lib/unicore/UCD.pl + tlpkg/tlperl/lib/unicore/lib/Age/NA.pl + tlpkg/tlperl/lib/unicore/lib/Age/V100.pl + tlpkg/tlperl/lib/unicore/lib/Age/V11.pl + tlpkg/tlperl/lib/unicore/lib/Age/V110.pl + tlpkg/tlperl/lib/unicore/lib/Age/V120.pl + tlpkg/tlperl/lib/unicore/lib/Age/V130.pl + tlpkg/tlperl/lib/unicore/lib/Age/V20.pl + tlpkg/tlperl/lib/unicore/lib/Age/V30.pl + tlpkg/tlperl/lib/unicore/lib/Age/V31.pl + tlpkg/tlperl/lib/unicore/lib/Age/V32.pl + tlpkg/tlperl/lib/unicore/lib/Age/V40.pl + tlpkg/tlperl/lib/unicore/lib/Age/V41.pl + tlpkg/tlperl/lib/unicore/lib/Age/V50.pl + tlpkg/tlperl/lib/unicore/lib/Age/V51.pl + tlpkg/tlperl/lib/unicore/lib/Age/V52.pl + tlpkg/tlperl/lib/unicore/lib/Age/V60.pl + tlpkg/tlperl/lib/unicore/lib/Age/V61.pl + tlpkg/tlperl/lib/unicore/lib/Age/V70.pl + tlpkg/tlperl/lib/unicore/lib/Age/V80.pl + tlpkg/tlperl/lib/unicore/lib/Age/V90.pl + tlpkg/tlperl/lib/unicore/lib/Alpha/Y.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/B.pl + tlpkg/tlperl/lib/unicore/lib/Bc/BN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/CS.pl + tlpkg/tlperl/lib/unicore/lib/Bc/EN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ES.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ET.pl + tlpkg/tlperl/lib/unicore/lib/Bc/L.pl + tlpkg/tlperl/lib/unicore/lib/Bc/NSM.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ON.pl + tlpkg/tlperl/lib/unicore/lib/Bc/R.pl + tlpkg/tlperl/lib/unicore/lib/Bc/WS.pl + tlpkg/tlperl/lib/unicore/lib/BidiC/Y.pl + tlpkg/tlperl/lib/unicore/lib/BidiM/Y.pl + tlpkg/tlperl/lib/unicore/lib/Blk/NB.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/C.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/N.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/O.pl + tlpkg/tlperl/lib/unicore/lib/CE/Y.pl + tlpkg/tlperl/lib/unicore/lib/CI/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWKCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWL/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWT/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWU/Y.pl + tlpkg/tlperl/lib/unicore/lib/Cased/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/A.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/ATAR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/B.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/BR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/DB.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NK.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/OV.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/VR.pl + tlpkg/tlperl/lib/unicore/lib/CompEx/Y.pl + tlpkg/tlperl/lib/unicore/lib/DI/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dash/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dep/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dia/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Com.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Enc.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Fin.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Font.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Init.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Iso.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Med.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nar.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nb.pl + tlpkg/tlperl/lib/unicore/lib/Dt/NonCanon.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sqr.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sub.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sup.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Vert.pl + tlpkg/tlperl/lib/unicore/lib/EBase/Y.pl + tlpkg/tlperl/lib/unicore/lib/EComp/Y.pl + tlpkg/tlperl/lib/unicore/lib/EPres/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ea/A.pl + tlpkg/tlperl/lib/unicore/lib/Ea/H.pl + tlpkg/tlperl/lib/unicore/lib/Ea/N.pl + tlpkg/tlperl/lib/unicore/lib/Ea/Na.pl + tlpkg/tlperl/lib/unicore/lib/Ea/W.pl + tlpkg/tlperl/lib/unicore/lib/Emoji/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ext/Y.pl + tlpkg/tlperl/lib/unicore/lib/ExtPict/Y.pl + tlpkg/tlperl/lib/unicore/lib/GCB/CN.pl + tlpkg/tlperl/lib/unicore/lib/GCB/EX.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LV.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LVT.pl + tlpkg/tlperl/lib/unicore/lib/GCB/PP.pl + tlpkg/tlperl/lib/unicore/lib/GCB/SM.pl + tlpkg/tlperl/lib/unicore/lib/GCB/XX.pl + tlpkg/tlperl/lib/unicore/lib/Gc/C.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/L.pl + tlpkg/tlperl/lib/unicore/lib/Gc/LC.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ll.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lo.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lu.pl + tlpkg/tlperl/lib/unicore/lib/Gc/M.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Me.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/N.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nl.pl + tlpkg/tlperl/lib/unicore/lib/Gc/No.pl + tlpkg/tlperl/lib/unicore/lib/Gc/P.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pe.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pi.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Po.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ps.pl + tlpkg/tlperl/lib/unicore/lib/Gc/S.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sk.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/So.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Z.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Zs.pl + tlpkg/tlperl/lib/unicore/lib/GrBase/Y.pl + tlpkg/tlperl/lib/unicore/lib/GrExt/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hex/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hst/NA.pl + tlpkg/tlperl/lib/unicore/lib/Hyphen/T.pl + tlpkg/tlperl/lib/unicore/lib/IDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/IDS/Y.pl + tlpkg/tlperl/lib/unicore/lib/IdStatus/Allowed.pl + tlpkg/tlperl/lib/unicore/lib/IdStatus/Restrict.pl + tlpkg/tlperl/lib/unicore/lib/IdType/DefaultI.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Exclusio.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Inclusio.pl + tlpkg/tlperl/lib/unicore/lib/IdType/LimitedU.pl + tlpkg/tlperl/lib/unicore/lib/IdType/NotChara.pl + tlpkg/tlperl/lib/unicore/lib/IdType/NotNFKC.pl + tlpkg/tlperl/lib/unicore/lib/IdType/NotXID.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Obsolete.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Recommen.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Technica.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Uncommon.pl + tlpkg/tlperl/lib/unicore/lib/Ideo/Y.pl + tlpkg/tlperl/lib/unicore/lib/In/10_0.pl + tlpkg/tlperl/lib/unicore/lib/In/11_0.pl + tlpkg/tlperl/lib/unicore/lib/In/12_0.pl + tlpkg/tlperl/lib/unicore/lib/In/12_1.pl + tlpkg/tlperl/lib/unicore/lib/In/13_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_0.pl + tlpkg/tlperl/lib/unicore/lib/In/3_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_2.pl + tlpkg/tlperl/lib/unicore/lib/In/4_0.pl + tlpkg/tlperl/lib/unicore/lib/In/4_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_0.pl + tlpkg/tlperl/lib/unicore/lib/In/5_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_0.pl + tlpkg/tlperl/lib/unicore/lib/In/6_1.pl + tlpkg/tlperl/lib/unicore/lib/In/6_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_3.pl + tlpkg/tlperl/lib/unicore/lib/In/7_0.pl + tlpkg/tlperl/lib/unicore/lib/In/8_0.pl + tlpkg/tlperl/lib/unicore/lib/In/9_0.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Bottom.pl + tlpkg/tlperl/lib/unicore/lib/InPC/BottomAn.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Left.pl + tlpkg/tlperl/lib/unicore/lib/InPC/LeftAndR.pl + tlpkg/tlperl/lib/unicore/lib/InPC/NA.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Overstru.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Right.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Top.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndBo.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndL2.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndLe.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndRi.pl + tlpkg/tlperl/lib/unicore/lib/InPC/VisualOr.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Avagraha.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Bindu.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Cantilla.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona2.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona3.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona4.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona5.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona6.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona7.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona8.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona9.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consonan.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Invisibl.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Nukta.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Number.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Other.pl + tlpkg/tlperl/lib/unicore/lib/InSC/PureKill.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Syllable.pl + tlpkg/tlperl/lib/unicore/lib/InSC/ToneMark.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Virama.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Visarga.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Vowel.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelDep.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelInd.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Ain.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Alef.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Beh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Dal.pl + tlpkg/tlperl/lib/unicore/lib/Jg/FarsiYeh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Feh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Gaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Hah.pl + tlpkg/tlperl/lib/unicore/lib/Jg/HanifiRo.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Kaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Lam.pl + tlpkg/tlperl/lib/unicore/lib/Jg/NoJoinin.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Qaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Reh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Sad.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Seen.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Waw.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Yeh.pl + tlpkg/tlperl/lib/unicore/lib/Jt/C.pl + tlpkg/tlperl/lib/unicore/lib/Jt/D.pl + tlpkg/tlperl/lib/unicore/lib/Jt/L.pl + tlpkg/tlperl/lib/unicore/lib/Jt/R.pl + tlpkg/tlperl/lib/unicore/lib/Jt/T.pl + tlpkg/tlperl/lib/unicore/lib/Jt/U.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AI.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BB.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CJ.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CM.pl + tlpkg/tlperl/lib/unicore/lib/Lb/EX.pl + tlpkg/tlperl/lib/unicore/lib/Lb/GL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/ID.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IN.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/NS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/NU.pl + tlpkg/tlperl/lib/unicore/lib/Lb/OP.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PO.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PR.pl + tlpkg/tlperl/lib/unicore/lib/Lb/QU.pl + tlpkg/tlperl/lib/unicore/lib/Lb/SA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/XX.pl + tlpkg/tlperl/lib/unicore/lib/Lower/Y.pl + tlpkg/tlperl/lib/unicore/lib/Math/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/M.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Di.pl + tlpkg/tlperl/lib/unicore/lib/Nt/None.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Nu.pl + tlpkg/tlperl/lib/unicore/lib/Nv/0.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10.pl + tlpkg/tlperl/lib/unicore/lib/Nv/100.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/100000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/11.pl + tlpkg/tlperl/lib/unicore/lib/Nv/12.pl + tlpkg/tlperl/lib/unicore/lib/Nv/13.pl + tlpkg/tlperl/lib/unicore/lib/Nv/14.pl + tlpkg/tlperl/lib/unicore/lib/Nv/15.pl + tlpkg/tlperl/lib/unicore/lib/Nv/16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/17.pl + tlpkg/tlperl/lib/unicore/lib/Nv/18.pl + tlpkg/tlperl/lib/unicore/lib/Nv/19.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_6.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/20.pl + tlpkg/tlperl/lib/unicore/lib/Nv/200.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/20000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/30.pl + tlpkg/tlperl/lib/unicore/lib/Nv/300.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/30000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/40.pl + tlpkg/tlperl/lib/unicore/lib/Nv/400.pl + tlpkg/tlperl/lib/unicore/lib/Nv/4000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/40000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50.pl + tlpkg/tlperl/lib/unicore/lib/Nv/500.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/6.pl + tlpkg/tlperl/lib/unicore/lib/Nv/60.pl + tlpkg/tlperl/lib/unicore/lib/Nv/600.pl + tlpkg/tlperl/lib/unicore/lib/Nv/6000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/60000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/7.pl + tlpkg/tlperl/lib/unicore/lib/Nv/70.pl + tlpkg/tlperl/lib/unicore/lib/Nv/700.pl + tlpkg/tlperl/lib/unicore/lib/Nv/7000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/70000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/80.pl + tlpkg/tlperl/lib/unicore/lib/Nv/800.pl + tlpkg/tlperl/lib/unicore/lib/Nv/8000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/80000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/9.pl + tlpkg/tlperl/lib/unicore/lib/Nv/90.pl + tlpkg/tlperl/lib/unicore/lib/Nv/900.pl + tlpkg/tlperl/lib/unicore/lib/Nv/9000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/90000.pl + tlpkg/tlperl/lib/unicore/lib/PCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/PatSyn/Y.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Alnum.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Assigned.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Blank.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Graph.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PerlWord.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PosixPun.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Print.pl + tlpkg/tlperl/lib/unicore/lib/Perl/SpacePer.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Title.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Word.pl + tlpkg/tlperl/lib/unicore/lib/Perl/XPosixPu.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlAny.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCh2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCha.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlFol.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDC.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDS.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIsI.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlNch.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPat.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPr2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPro.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlQuo.pl + tlpkg/tlperl/lib/unicore/lib/QMark/Y.pl + tlpkg/tlperl/lib/unicore/lib/SB/AT.pl + tlpkg/tlperl/lib/unicore/lib/SB/CL.pl + tlpkg/tlperl/lib/unicore/lib/SB/EX.pl + tlpkg/tlperl/lib/unicore/lib/SB/FO.pl + tlpkg/tlperl/lib/unicore/lib/SB/LE.pl + tlpkg/tlperl/lib/unicore/lib/SB/LO.pl + tlpkg/tlperl/lib/unicore/lib/SB/NU.pl + tlpkg/tlperl/lib/unicore/lib/SB/SC.pl + tlpkg/tlperl/lib/unicore/lib/SB/ST.pl + tlpkg/tlperl/lib/unicore/lib/SB/Sp.pl + tlpkg/tlperl/lib/unicore/lib/SB/UP.pl + tlpkg/tlperl/lib/unicore/lib/SB/XX.pl + tlpkg/tlperl/lib/unicore/lib/SD/Y.pl + tlpkg/tlperl/lib/unicore/lib/STerm/Y.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gong.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gonm.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Han.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Adlm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Armn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bhks.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bopo.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cakm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cham.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Copt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Diak.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Ethi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gong.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gonm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Han.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hebr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hmng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hmnp.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khar.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khmr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khoj.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Kthi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lao.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lina.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mymr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Nand.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Phlp.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Rohg.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Shrd.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sind.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tagb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Takr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Talu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tang.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Thaa.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tibt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tirh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Xsux.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Yezi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Yi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zzzz.pl + tlpkg/tlperl/lib/unicore/lib/Term/Y.pl + tlpkg/tlperl/lib/unicore/lib/UIdeo/Y.pl + tlpkg/tlperl/lib/unicore/lib/Upper/Y.pl + tlpkg/tlperl/lib/unicore/lib/Vo/R.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tr.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tu.pl + tlpkg/tlperl/lib/unicore/lib/Vo/U.pl + tlpkg/tlperl/lib/unicore/lib/WB/EX.pl + tlpkg/tlperl/lib/unicore/lib/WB/Extend.pl + tlpkg/tlperl/lib/unicore/lib/WB/FO.pl + tlpkg/tlperl/lib/unicore/lib/WB/HL.pl + tlpkg/tlperl/lib/unicore/lib/WB/KA.pl + tlpkg/tlperl/lib/unicore/lib/WB/LE.pl + tlpkg/tlperl/lib/unicore/lib/WB/MB.pl + tlpkg/tlperl/lib/unicore/lib/WB/ML.pl + tlpkg/tlperl/lib/unicore/lib/WB/MN.pl + tlpkg/tlperl/lib/unicore/lib/WB/NU.pl + tlpkg/tlperl/lib/unicore/lib/WB/WSegSpac.pl + tlpkg/tlperl/lib/unicore/lib/WB/XX.pl + tlpkg/tlperl/lib/unicore/lib/XIDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/XIDS/Y.pl + tlpkg/tlperl/lib/unicore/uni_keywords.pl + tlpkg/tlperl/lib/unicore/version + tlpkg/tlperl/lib/utf8.pm + tlpkg/tlperl/lib/vars.pm + tlpkg/tlperl/lib/version.pm + tlpkg/tlperl/lib/version.pod + tlpkg/tlperl/lib/version/Internals.pod + tlpkg/tlperl/lib/version/regex.pm + tlpkg/tlperl/lib/vmsish.pm + tlpkg/tlperl/lib/warnings.pm + tlpkg/tlperl/lib/warnings/register.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Boolean.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Type.pm + tlpkg/tlperl/site/lib/Date/Format.pm + tlpkg/tlperl/site/lib/Date/Language.pm + tlpkg/tlperl/site/lib/Date/Language/Afar.pm + tlpkg/tlperl/site/lib/Date/Language/Amharic.pm + tlpkg/tlperl/site/lib/Date/Language/Austrian.pm + tlpkg/tlperl/site/lib/Date/Language/Brazilian.pm + tlpkg/tlperl/site/lib/Date/Language/Bulgarian.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese_GB.pm + tlpkg/tlperl/site/lib/Date/Language/Czech.pm + tlpkg/tlperl/site/lib/Date/Language/Danish.pm + tlpkg/tlperl/site/lib/Date/Language/Dutch.pm + tlpkg/tlperl/site/lib/Date/Language/English.pm + tlpkg/tlperl/site/lib/Date/Language/Finnish.pm + tlpkg/tlperl/site/lib/Date/Language/French.pm + tlpkg/tlperl/site/lib/Date/Language/Gedeo.pm + tlpkg/tlperl/site/lib/Date/Language/German.pm + tlpkg/tlperl/site/lib/Date/Language/Greek.pm + tlpkg/tlperl/site/lib/Date/Language/Hungarian.pm + tlpkg/tlperl/site/lib/Date/Language/Icelandic.pm + tlpkg/tlperl/site/lib/Date/Language/Italian.pm + tlpkg/tlperl/site/lib/Date/Language/Norwegian.pm + tlpkg/tlperl/site/lib/Date/Language/Occitan.pm + tlpkg/tlperl/site/lib/Date/Language/Oromo.pm + tlpkg/tlperl/site/lib/Date/Language/Romanian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_cp1251.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_koi8r.pm + tlpkg/tlperl/site/lib/Date/Language/Sidama.pm + tlpkg/tlperl/site/lib/Date/Language/Somali.pm + tlpkg/tlperl/site/lib/Date/Language/Spanish.pm + tlpkg/tlperl/site/lib/Date/Language/Swedish.pm + tlpkg/tlperl/site/lib/Date/Language/Tigrinya.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEritrean.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEthiopian.pm + tlpkg/tlperl/site/lib/Date/Language/Turkish.pm + tlpkg/tlperl/site/lib/Date/Parse.pm + tlpkg/tlperl/site/lib/Digest/SHA.pm + tlpkg/tlperl/site/lib/Encode/Locale.pm + tlpkg/tlperl/site/lib/Encode/compat.pm + tlpkg/tlperl/site/lib/Encode/compat/5006001.pm + tlpkg/tlperl/site/lib/Encode/compat/Alias.pm + tlpkg/tlperl/site/lib/Encode/compat/common.pm + tlpkg/tlperl/site/lib/File/Listing.pm + tlpkg/tlperl/site/lib/File/Which.pm + tlpkg/tlperl/site/lib/HTML/Entities.pm + tlpkg/tlperl/site/lib/HTML/Filter.pm + tlpkg/tlperl/site/lib/HTML/HeadParser.pm + tlpkg/tlperl/site/lib/HTML/LinkExtor.pm + tlpkg/tlperl/site/lib/HTML/Parser.pm + tlpkg/tlperl/site/lib/HTML/PullParser.pm + tlpkg/tlperl/site/lib/HTML/Tagset.pm + tlpkg/tlperl/site/lib/HTML/TokeParser.pm + tlpkg/tlperl/site/lib/HTTP/Config.pm + tlpkg/tlperl/site/lib/HTTP/Cookies.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Microsoft.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Netscape.pm + tlpkg/tlperl/site/lib/HTTP/Daemon.pm + tlpkg/tlperl/site/lib/HTTP/Date.pm + tlpkg/tlperl/site/lib/HTTP/Headers.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Auth.pm + tlpkg/tlperl/site/lib/HTTP/Headers/ETag.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Util.pm + tlpkg/tlperl/site/lib/HTTP/Message.pm + tlpkg/tlperl/site/lib/HTTP/Negotiate.pm + tlpkg/tlperl/site/lib/HTTP/Request.pm + tlpkg/tlperl/site/lib/HTTP/Request/Common.pm + tlpkg/tlperl/site/lib/HTTP/Response.pm + tlpkg/tlperl/site/lib/HTTP/Status.pm + tlpkg/tlperl/site/lib/IO/HTML.pm + tlpkg/tlperl/site/lib/IO/String.pm + tlpkg/tlperl/site/lib/JSON/MaybeXS.pm + tlpkg/tlperl/site/lib/LWP.pm + tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm + tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm + tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm + tlpkg/tlperl/site/lib/LWP/ConnCache.pm + tlpkg/tlperl/site/lib/LWP/Debug.pm + tlpkg/tlperl/site/lib/LWP/Debug/TraceHTTP.pm + tlpkg/tlperl/site/lib/LWP/DebugFile.pm + tlpkg/tlperl/site/lib/LWP/MediaTypes.pm + tlpkg/tlperl/site/lib/LWP/MemberMixin.pm + tlpkg/tlperl/site/lib/LWP/Protocol.pm + tlpkg/tlperl/site/lib/LWP/Protocol/cpan.pm + tlpkg/tlperl/site/lib/LWP/Protocol/data.pm + tlpkg/tlperl/site/lib/LWP/Protocol/file.pm + tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/gopher.pm + tlpkg/tlperl/site/lib/LWP/Protocol/http.pm + tlpkg/tlperl/site/lib/LWP/Protocol/loopback.pm + tlpkg/tlperl/site/lib/LWP/Protocol/mailto.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nntp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nogo.pm + tlpkg/tlperl/site/lib/LWP/RobotUA.pm + tlpkg/tlperl/site/lib/LWP/Simple.pm + tlpkg/tlperl/site/lib/LWP/UserAgent.pm + tlpkg/tlperl/site/lib/LWP/media.types + tlpkg/tlperl/site/lib/Math/Int64.pm + tlpkg/tlperl/site/lib/Math/Int64/die_on_overflow.pm + tlpkg/tlperl/site/lib/Math/Int64/native_if_available.pm + tlpkg/tlperl/site/lib/Math/UInt64.pm + tlpkg/tlperl/site/lib/Mozilla/CA.pm + tlpkg/tlperl/site/lib/Mozilla/CA/cacert.pem + tlpkg/tlperl/site/lib/Mozilla/mk-ca-bundle.pl + tlpkg/tlperl/site/lib/Net/HTTP.pm + tlpkg/tlperl/site/lib/Net/HTTP/Methods.pm + tlpkg/tlperl/site/lib/Net/HTTP/NB.pm + tlpkg/tlperl/site/lib/Net/HTTPS.pm + tlpkg/tlperl/site/lib/Socket.pm + tlpkg/tlperl/site/lib/Test/Fatal.pm + tlpkg/tlperl/site/lib/Test/Needs.pm + tlpkg/tlperl/site/lib/Test/RequiresInternet.pm + tlpkg/tlperl/site/lib/Tie/Registry.pm + tlpkg/tlperl/site/lib/Time/Zone.pm + tlpkg/tlperl/site/lib/TimeDate.pm + tlpkg/tlperl/site/lib/Try/Tiny.pm + tlpkg/tlperl/site/lib/URI.pm + tlpkg/tlperl/site/lib/URI/Escape.pm + tlpkg/tlperl/site/lib/URI/Heuristic.pm + tlpkg/tlperl/site/lib/URI/IRI.pm + tlpkg/tlperl/site/lib/URI/QueryParam.pm + tlpkg/tlperl/site/lib/URI/Split.pm + tlpkg/tlperl/site/lib/URI/URL.pm + tlpkg/tlperl/site/lib/URI/WithBase.pm + tlpkg/tlperl/site/lib/URI/_foreign.pm + tlpkg/tlperl/site/lib/URI/_generic.pm + tlpkg/tlperl/site/lib/URI/_idna.pm + tlpkg/tlperl/site/lib/URI/_ldap.pm + tlpkg/tlperl/site/lib/URI/_login.pm + tlpkg/tlperl/site/lib/URI/_punycode.pm + tlpkg/tlperl/site/lib/URI/_query.pm + tlpkg/tlperl/site/lib/URI/_segment.pm + tlpkg/tlperl/site/lib/URI/_server.pm + tlpkg/tlperl/site/lib/URI/_userpass.pm + tlpkg/tlperl/site/lib/URI/data.pm + tlpkg/tlperl/site/lib/URI/file.pm + tlpkg/tlperl/site/lib/URI/file/Base.pm + tlpkg/tlperl/site/lib/URI/file/FAT.pm + tlpkg/tlperl/site/lib/URI/file/Mac.pm + tlpkg/tlperl/site/lib/URI/file/OS2.pm + tlpkg/tlperl/site/lib/URI/file/QNX.pm + tlpkg/tlperl/site/lib/URI/file/Unix.pm + tlpkg/tlperl/site/lib/URI/file/Win32.pm + tlpkg/tlperl/site/lib/URI/ftp.pm + tlpkg/tlperl/site/lib/URI/gopher.pm + tlpkg/tlperl/site/lib/URI/http.pm + tlpkg/tlperl/site/lib/URI/https.pm + tlpkg/tlperl/site/lib/URI/ldap.pm + tlpkg/tlperl/site/lib/URI/ldapi.pm + tlpkg/tlperl/site/lib/URI/ldaps.pm + tlpkg/tlperl/site/lib/URI/mailto.pm + tlpkg/tlperl/site/lib/URI/mms.pm + tlpkg/tlperl/site/lib/URI/news.pm + tlpkg/tlperl/site/lib/URI/nntp.pm + tlpkg/tlperl/site/lib/URI/pop.pm + tlpkg/tlperl/site/lib/URI/rlogin.pm + tlpkg/tlperl/site/lib/URI/rsync.pm + tlpkg/tlperl/site/lib/URI/rtsp.pm + tlpkg/tlperl/site/lib/URI/rtspu.pm + tlpkg/tlperl/site/lib/URI/sftp.pm + tlpkg/tlperl/site/lib/URI/sip.pm + tlpkg/tlperl/site/lib/URI/sips.pm + tlpkg/tlperl/site/lib/URI/snews.pm + tlpkg/tlperl/site/lib/URI/ssh.pm + tlpkg/tlperl/site/lib/URI/telnet.pm + tlpkg/tlperl/site/lib/URI/tn3270.pm + tlpkg/tlperl/site/lib/URI/urn.pm + tlpkg/tlperl/site/lib/URI/urn/isbn.pm + tlpkg/tlperl/site/lib/URI/urn/oid.pm + tlpkg/tlperl/site/lib/WWW/RobotRules.pm + tlpkg/tlperl/site/lib/WWW/RobotRules/AnyDBM_File.pm + tlpkg/tlperl/site/lib/Win32/API.pm + tlpkg/tlperl/site/lib/Win32/API/Callback.pm + tlpkg/tlperl/site/lib/Win32/API/Callback/IATPatch.pod + tlpkg/tlperl/site/lib/Win32/API/Struct.pm + tlpkg/tlperl/site/lib/Win32/API/Type.pm + tlpkg/tlperl/site/lib/Win32/Console.pm + tlpkg/tlperl/site/lib/Win32/Shortcut.pm + tlpkg/tlperl/site/lib/Win32/TieRegistry.pm + tlpkg/tlperl/site/lib/Win32/WinError.pm + tlpkg/tlperl/site/lib/Win32API/Registry.pm + tlpkg/tlperl/site/lib/Win32API/Registry/cRegistry.pc + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/.packlist + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/XS.dll + tlpkg/tlperl/site/lib/auto/Date/Parse/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA/SHA.dll + tlpkg/tlperl/site/lib/auto/Encode/Locale/.packlist + tlpkg/tlperl/site/lib/auto/Encode/compat/.packlist + tlpkg/tlperl/site/lib/auto/File/Listing/.packlist + tlpkg/tlperl/site/lib/auto/File/Which/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/Parser.dll + tlpkg/tlperl/site/lib/auto/HTML/Tagset/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Cookies/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Daemon/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Date/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Message/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Negotiate/.packlist + tlpkg/tlperl/site/lib/auto/IO/HTML/.packlist + tlpkg/tlperl/site/lib/auto/IO/String/.packlist + tlpkg/tlperl/site/lib/auto/JSON/MaybeXS/.packlist + tlpkg/tlperl/site/lib/auto/LWP/MediaTypes/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/Int64.dll + tlpkg/tlperl/site/lib/auto/Mozilla/CA/.packlist + tlpkg/tlperl/site/lib/auto/Net/HTTP/.packlist + tlpkg/tlperl/site/lib/auto/Socket/.packlist + tlpkg/tlperl/site/lib/auto/Socket/Socket.dll + tlpkg/tlperl/site/lib/auto/Test/Fatal/.packlist + tlpkg/tlperl/site/lib/auto/Test/Needs/.packlist + tlpkg/tlperl/site/lib/auto/Test/RequiresInternet/.packlist + tlpkg/tlperl/site/lib/auto/Try/Tiny/.packlist + tlpkg/tlperl/site/lib/auto/URI/.packlist + tlpkg/tlperl/site/lib/auto/WWW/RobotRules/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/API.dll + tlpkg/tlperl/site/lib/auto/Win32/API/Callback/Callback.dll + tlpkg/tlperl/site/lib/auto/Win32/Console/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Console/Console.dll + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/Shortcut.dll + tlpkg/tlperl/site/lib/auto/Win32/TieRegistry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/Registry.dll + tlpkg/tlperl/site/lib/auto/libwww/perl/.packlist + tlpkg/tlperl/site/lib/libwww/lwpcook.pod + tlpkg/tlperl/site/lib/libwww/lwptut.pod + tlpkg/tltcl/bin/tcl86.dll + tlpkg/tltcl/bin/tclsh.exe + tlpkg/tltcl/bin/tclsh86.exe + tlpkg/tltcl/bin/tk86.dll + tlpkg/tltcl/bin/wish.exe + tlpkg/tltcl/bin/wish86.exe + tlpkg/tltcl/bin/zlib1.dll + tlpkg/tltcl/lib/dde1.4/libtcldde14.dll.a + tlpkg/tltcl/lib/dde1.4/pkgIndex.tcl + tlpkg/tltcl/lib/dde1.4/tcldde14.dll + tlpkg/tltcl/lib/itcl4.2.1/itcl.tcl + tlpkg/tltcl/lib/itcl4.2.1/itcl421.dll + tlpkg/tltcl/lib/itcl4.2.1/itclConfig.sh + tlpkg/tltcl/lib/itcl4.2.1/itclHullCmds.tcl + tlpkg/tltcl/lib/itcl4.2.1/itclWidget.tcl + tlpkg/tltcl/lib/itcl4.2.1/libitclstub421.a + tlpkg/tltcl/lib/itcl4.2.1/pkgIndex.tcl + tlpkg/tltcl/lib/libtcl86.dll.a + tlpkg/tltcl/lib/libtclstub86.a + tlpkg/tltcl/lib/libtk86.dll.a + tlpkg/tltcl/lib/libtkstub86.a + tlpkg/tltcl/lib/reg1.3/libtclreg13.dll.a + tlpkg/tltcl/lib/reg1.3/pkgIndex.tcl + tlpkg/tltcl/lib/reg1.3/tclreg13.dll + tlpkg/tltcl/lib/sqlite3.34.0/pkgIndex.tcl + tlpkg/tltcl/lib/sqlite3.34.0/sqlite3340.dll + tlpkg/tltcl/lib/tcl8.6/auto.tcl + tlpkg/tltcl/lib/tcl8.6/clock.tcl + tlpkg/tltcl/lib/tcl8.6/encoding/ascii.enc + tlpkg/tltcl/lib/tcl8.6/encoding/big5.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1250.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1251.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1252.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1253.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1254.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1255.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1256.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1257.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1258.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp437.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp737.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp775.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp850.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp852.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp855.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp857.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp860.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp861.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp862.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp863.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp864.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp865.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp866.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp869.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp874.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp932.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp936.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp949.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp950.enc + tlpkg/tltcl/lib/tcl8.6/encoding/dingbats.enc + tlpkg/tltcl/lib/tcl8.6/encoding/ebcdic.enc + tlpkg/tltcl/lib/tcl8.6/encoding/euc-cn.enc + tlpkg/tltcl/lib/tcl8.6/encoding/euc-jp.enc + tlpkg/tltcl/lib/tcl8.6/encoding/euc-kr.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb12345.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb1988.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb2312-raw.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb2312.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso2022-jp.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso2022-kr.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso2022.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-1.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-10.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-13.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-14.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-15.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-16.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-2.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-3.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-4.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-5.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-6.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-7.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-8.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-9.enc + tlpkg/tltcl/lib/tcl8.6/encoding/jis0201.enc + tlpkg/tltcl/lib/tcl8.6/encoding/jis0208.enc + tlpkg/tltcl/lib/tcl8.6/encoding/jis0212.enc + tlpkg/tltcl/lib/tcl8.6/encoding/koi8-r.enc + tlpkg/tltcl/lib/tcl8.6/encoding/koi8-u.enc + tlpkg/tltcl/lib/tcl8.6/encoding/ksc5601.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macCentEuro.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macCroatian.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macCyrillic.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macDingbats.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macGreek.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macIceland.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macJapan.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macRoman.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macRomania.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macThai.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macTurkish.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macUkraine.enc + tlpkg/tltcl/lib/tcl8.6/encoding/shiftjis.enc + tlpkg/tltcl/lib/tcl8.6/encoding/symbol.enc + tlpkg/tltcl/lib/tcl8.6/encoding/tis-620.enc + tlpkg/tltcl/lib/tcl8.6/history.tcl + tlpkg/tltcl/lib/tcl8.6/http1.0/http.tcl + tlpkg/tltcl/lib/tcl8.6/http1.0/pkgIndex.tcl + tlpkg/tltcl/lib/tcl8.6/init.tcl + tlpkg/tltcl/lib/tcl8.6/msgs/af.msg + tlpkg/tltcl/lib/tcl8.6/msgs/af_za.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_jo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_lb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_sy.msg + tlpkg/tltcl/lib/tcl8.6/msgs/be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/bg.msg + tlpkg/tltcl/lib/tcl8.6/msgs/bn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/bn_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ca.msg + tlpkg/tltcl/lib/tcl8.6/msgs/cs.msg + tlpkg/tltcl/lib/tcl8.6/msgs/da.msg + tlpkg/tltcl/lib/tcl8.6/msgs/de.msg + tlpkg/tltcl/lib/tcl8.6/msgs/de_at.msg + tlpkg/tltcl/lib/tcl8.6/msgs/de_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/el.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_au.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_bw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_ca.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_gb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_hk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_ie.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_nz.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_ph.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_sg.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_za.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_zw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/eo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ar.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_bo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_cl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_co.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_cr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_do.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ec.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_gt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_hn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_mx.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ni.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_pa.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_pe.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_pr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_py.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_sv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_uy.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ve.msg + tlpkg/tltcl/lib/tcl8.6/msgs/et.msg + tlpkg/tltcl/lib/tcl8.6/msgs/eu.msg + tlpkg/tltcl/lib/tcl8.6/msgs/eu_es.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fa.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fa_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fa_ir.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fi.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fo_fo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr_ca.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr_ch.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ga.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ga_ie.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gl_es.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gv_gb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/he.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hi.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hi_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hu.msg + tlpkg/tltcl/lib/tcl8.6/msgs/id.msg + tlpkg/tltcl/lib/tcl8.6/msgs/id_id.msg + tlpkg/tltcl/lib/tcl8.6/msgs/is.msg + tlpkg/tltcl/lib/tcl8.6/msgs/it.msg + tlpkg/tltcl/lib/tcl8.6/msgs/it_ch.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ja.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kl_gl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ko.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ko_kr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kok.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kok_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kw_gb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/lt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/lv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mr_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ms.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ms_my.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nl_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/pl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/pt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/pt_br.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ro.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ru.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ru_ua.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sh.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sq.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ta.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ta_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/te.msg + tlpkg/tltcl/lib/tcl8.6/msgs/te_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/th.msg + tlpkg/tltcl/lib/tcl8.6/msgs/tr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/uk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/vi.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_cn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_hk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_sg.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_tw.msg + tlpkg/tltcl/lib/tcl8.6/opt0.4/optparse.tcl + tlpkg/tltcl/lib/tcl8.6/opt0.4/pkgIndex.tcl + tlpkg/tltcl/lib/tcl8.6/package.tcl + tlpkg/tltcl/lib/tcl8.6/parray.tcl + tlpkg/tltcl/lib/tcl8.6/safe.tcl + tlpkg/tltcl/lib/tcl8.6/tclIndex + tlpkg/tltcl/lib/tcl8.6/tm.tcl + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Abidjan + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Accra + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Addis_Ababa + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Algiers + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Asmara + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Asmera + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bamako + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bangui + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Banjul + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bissau + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Blantyre + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Brazzaville + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bujumbura + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Cairo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Casablanca + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Ceuta + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Conakry + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Dakar + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Dar_es_Salaam + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Djibouti + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Douala + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/El_Aaiun + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Freetown + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Gaborone + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Harare + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Johannesburg + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Juba + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Kampala + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Khartoum + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Kigali + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Kinshasa + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lagos + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Libreville + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lome + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Luanda + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lubumbashi + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lusaka + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Malabo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Maputo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Maseru + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Mbabane + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Mogadishu + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Monrovia + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Nairobi + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Ndjamena + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Niamey + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Nouakchott + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Ouagadougou + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Porto-Novo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Sao_Tome + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Timbuktu + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Tripoli + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Tunis + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Windhoek + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Adak + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Anchorage + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Anguilla + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Antigua + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Araguaina + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Buenos_Aires + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Catamarca + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/ComodRivadavia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Cordoba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Jujuy + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/La_Rioja + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Mendoza + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Rio_Gallegos + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Salta + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/San_Juan + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/San_Luis + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Tucuman + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Ushuaia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Aruba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Asuncion + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Atikokan + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Atka + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Bahia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Bahia_Banderas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Barbados + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Belem + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Belize + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Blanc-Sablon + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Boa_Vista + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Bogota + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Boise + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Buenos_Aires + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cambridge_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Campo_Grande + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cancun + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Caracas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Catamarca + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cayenne + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cayman + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Chicago + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Chihuahua + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Coral_Harbour + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cordoba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Costa_Rica + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Creston + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cuiaba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Curacao + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Danmarkshavn + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Dawson + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Dawson_Creek + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Denver + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Detroit + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Dominica + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Edmonton + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Eirunepe + tlpkg/tltcl/lib/tcl8.6/tzdata/America/El_Salvador + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Ensenada + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Fort_Nelson + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Fort_Wayne + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Fortaleza + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Glace_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Godthab + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Goose_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Grand_Turk + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Grenada + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guadeloupe + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guatemala + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guayaquil + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guyana + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Halifax + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Havana + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Hermosillo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Indianapolis + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Knox + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Marengo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Petersburg + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Tell_City + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Vevay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Vincennes + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Winamac + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indianapolis + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Inuvik + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Iqaluit + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Jamaica + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Jujuy + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Juneau + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Kentucky/Louisville + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Kentucky/Monticello + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Knox_IN + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Kralendijk + tlpkg/tltcl/lib/tcl8.6/tzdata/America/La_Paz + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Lima + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Los_Angeles + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Louisville + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Lower_Princes + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Maceio + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Managua + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Manaus + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Marigot + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Martinique + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Matamoros + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Mazatlan + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Mendoza + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Menominee + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Merida + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Metlakatla + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Mexico_City + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Miquelon + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Moncton + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Monterrey + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Montevideo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Montreal + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Montserrat + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nassau + tlpkg/tltcl/lib/tcl8.6/tzdata/America/New_York + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nipigon + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nome + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Noronha + tlpkg/tltcl/lib/tcl8.6/tzdata/America/North_Dakota/Beulah + tlpkg/tltcl/lib/tcl8.6/tzdata/America/North_Dakota/Center + tlpkg/tltcl/lib/tcl8.6/tzdata/America/North_Dakota/New_Salem + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nuuk + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Ojinaga + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Panama + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Pangnirtung + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Paramaribo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Phoenix + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Port-au-Prince + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Port_of_Spain + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Porto_Acre + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Porto_Velho + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Puerto_Rico + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Punta_Arenas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rainy_River + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rankin_Inlet + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Recife + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Regina + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Resolute + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rio_Branco + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rosario + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santa_Isabel + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santarem + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santiago + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santo_Domingo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Sao_Paulo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Scoresbysund + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Shiprock + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Sitka + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Barthelemy + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Johns + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Kitts + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Lucia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Thomas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Vincent + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Swift_Current + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Tegucigalpa + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Thule + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Thunder_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Tijuana + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Toronto + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Tortola + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Vancouver + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Virgin + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Whitehorse + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Winnipeg + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Yakutat + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Yellowknife + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Casey + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Davis + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/DumontDUrville + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Macquarie + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Mawson + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/McMurdo + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Palmer + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Rothera + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/South_Pole + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Syowa + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Troll + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Vostok + tlpkg/tltcl/lib/tcl8.6/tzdata/Arctic/Longyearbyen + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Aden + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Almaty + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Amman + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Anadyr + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Aqtau + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Aqtobe + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ashgabat + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ashkhabad + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Atyrau + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Baghdad + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Bahrain + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Baku + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Bangkok + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Barnaul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Beirut + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Bishkek + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Brunei + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Calcutta + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Chita + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Choibalsan + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Chongqing + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Chungking + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Colombo + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dacca + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Damascus + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dhaka + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dili + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dubai + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dushanbe + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Famagusta + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Gaza + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Harbin + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Hebron + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ho_Chi_Minh + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Hong_Kong + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Hovd + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Irkutsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Istanbul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Jakarta + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Jayapura + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Jerusalem + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kabul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kamchatka + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Karachi + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kashgar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kathmandu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Katmandu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Khandyga + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kolkata + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Krasnoyarsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kuala_Lumpur + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kuching + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kuwait + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Macao + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Macau + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Magadan + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Makassar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Manila + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Muscat + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Nicosia + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Novokuznetsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Novosibirsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Omsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Oral + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Phnom_Penh + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Pontianak + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Pyongyang + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Qatar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Qostanay + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Qyzylorda + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Rangoon + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Riyadh + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Saigon + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Sakhalin + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Samarkand + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Seoul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Shanghai + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Singapore + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Srednekolymsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Taipei + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tashkent + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tbilisi + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tehran + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tel_Aviv + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Thimbu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Thimphu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tokyo + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tomsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ujung_Pandang + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ulaanbaatar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ulan_Bator + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Urumqi + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ust-Nera + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Vientiane + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Vladivostok + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yakutsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yangon + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yekaterinburg + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yerevan + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Azores + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Bermuda + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Canary + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Cape_Verde + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Faeroe + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Faroe + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Jan_Mayen + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Madeira + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Reykjavik + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/South_Georgia + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/St_Helena + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Stanley + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/ACT + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Adelaide + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Brisbane + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Broken_Hill + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Canberra + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Currie + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Darwin + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Eucla + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Hobart + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/LHI + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Lindeman + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Lord_Howe + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Melbourne + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/NSW + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/North + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Perth + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Queensland + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/South + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Sydney + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Tasmania + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Victoria + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/West + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Yancowinna + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/Acre + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/DeNoronha + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/East + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/West + tlpkg/tltcl/lib/tcl8.6/tzdata/CET + tlpkg/tltcl/lib/tcl8.6/tzdata/CST6CDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Atlantic + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Central + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/East-Saskatchewan + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Eastern + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Mountain + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Newfoundland + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Pacific + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Saskatchewan + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Yukon + tlpkg/tltcl/lib/tcl8.6/tzdata/Chile/Continental + tlpkg/tltcl/lib/tcl8.6/tzdata/Chile/EasterIsland + tlpkg/tltcl/lib/tcl8.6/tzdata/Cuba + tlpkg/tltcl/lib/tcl8.6/tzdata/EET + tlpkg/tltcl/lib/tcl8.6/tzdata/EST + tlpkg/tltcl/lib/tcl8.6/tzdata/EST5EDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Egypt + tlpkg/tltcl/lib/tcl8.6/tzdata/Eire + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+1 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+10 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+11 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+12 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+2 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+3 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+4 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+5 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+6 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+7 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+8 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+9 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-1 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-10 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-11 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-12 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-13 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-14 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-2 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-3 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-4 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-5 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-6 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-7 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-8 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-9 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/Greenwich + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/UCT + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/UTC + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/Universal + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/Zulu + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Amsterdam + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Andorra + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Astrakhan + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Athens + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Belfast + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Belgrade + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Berlin + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Bratislava + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Brussels + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Bucharest + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Budapest + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Busingen + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Chisinau + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Copenhagen + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Dublin + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Gibraltar + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Guernsey + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Helsinki + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Isle_of_Man + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Istanbul + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Jersey + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Kaliningrad + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Kiev + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Kirov + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Lisbon + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Ljubljana + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/London + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Luxembourg + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Madrid + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Malta + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Mariehamn + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Minsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Monaco + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Moscow + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Nicosia + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Oslo + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Paris + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Podgorica + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Prague + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Riga + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Rome + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Samara + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/San_Marino + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Sarajevo + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Saratov + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Simferopol + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Skopje + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Sofia + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Stockholm + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Tallinn + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Tirane + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Tiraspol + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Ulyanovsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Uzhgorod + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vaduz + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vatican + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vienna + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vilnius + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Volgograd + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Warsaw + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Zagreb + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Zaporozhye + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Zurich + tlpkg/tltcl/lib/tcl8.6/tzdata/GB + tlpkg/tltcl/lib/tcl8.6/tzdata/GB-Eire + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT+0 + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT-0 + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Greenwich + tlpkg/tltcl/lib/tcl8.6/tzdata/HST + tlpkg/tltcl/lib/tcl8.6/tzdata/Hongkong + tlpkg/tltcl/lib/tcl8.6/tzdata/Iceland + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Antananarivo + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Chagos + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Christmas + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Cocos + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Comoro + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Kerguelen + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Mahe + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Maldives + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Mauritius + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Mayotte + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Reunion + tlpkg/tltcl/lib/tcl8.6/tzdata/Iran + tlpkg/tltcl/lib/tcl8.6/tzdata/Israel + tlpkg/tltcl/lib/tcl8.6/tzdata/Jamaica + tlpkg/tltcl/lib/tcl8.6/tzdata/Japan + tlpkg/tltcl/lib/tcl8.6/tzdata/Kwajalein + tlpkg/tltcl/lib/tcl8.6/tzdata/Libya + tlpkg/tltcl/lib/tcl8.6/tzdata/MET + tlpkg/tltcl/lib/tcl8.6/tzdata/MST + tlpkg/tltcl/lib/tcl8.6/tzdata/MST7MDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Mexico/BajaNorte + tlpkg/tltcl/lib/tcl8.6/tzdata/Mexico/BajaSur + tlpkg/tltcl/lib/tcl8.6/tzdata/Mexico/General + tlpkg/tltcl/lib/tcl8.6/tzdata/NZ + tlpkg/tltcl/lib/tcl8.6/tzdata/NZ-CHAT + tlpkg/tltcl/lib/tcl8.6/tzdata/Navajo + tlpkg/tltcl/lib/tcl8.6/tzdata/PRC + tlpkg/tltcl/lib/tcl8.6/tzdata/PST8PDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Apia + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Auckland + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Bougainville + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Chatham + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Chuuk + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Easter + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Efate + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Enderbury + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Fakaofo + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Fiji + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Funafuti + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Galapagos + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Gambier + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Guadalcanal + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Guam + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Honolulu + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Johnston + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kiritimati + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kosrae + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kwajalein + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Majuro + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Marquesas + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Midway + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Nauru + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Niue + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Norfolk + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Noumea + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Pago_Pago + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Palau + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Pitcairn + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Pohnpei + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Ponape + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Port_Moresby + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Rarotonga + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Saipan + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Samoa + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Tahiti + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Tarawa + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Tongatapu + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Truk + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Wake + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Wallis + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Yap + tlpkg/tltcl/lib/tcl8.6/tzdata/Poland + tlpkg/tltcl/lib/tcl8.6/tzdata/Portugal + tlpkg/tltcl/lib/tcl8.6/tzdata/ROC + tlpkg/tltcl/lib/tcl8.6/tzdata/ROK + tlpkg/tltcl/lib/tcl8.6/tzdata/Singapore + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/AST4 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/AST4ADT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/CST6 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/CST6CDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/EST5 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/EST5EDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/HST10 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/MST7 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/MST7MDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/PST8 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/PST8PDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/YST9 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/YST9YDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Turkey + tlpkg/tltcl/lib/tcl8.6/tzdata/UCT + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Alaska + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Aleutian + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Arizona + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Central + tlpkg/tltcl/lib/tcl8.6/tzdata/US/East-Indiana + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Eastern + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Hawaii + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Indiana-Starke + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Michigan + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Mountain + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Pacific + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Pacific-New + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Samoa + tlpkg/tltcl/lib/tcl8.6/tzdata/UTC + tlpkg/tltcl/lib/tcl8.6/tzdata/Universal + tlpkg/tltcl/lib/tcl8.6/tzdata/W-SU + tlpkg/tltcl/lib/tcl8.6/tzdata/WET + tlpkg/tltcl/lib/tcl8.6/tzdata/Zulu + tlpkg/tltcl/lib/tcl8.6/word.tcl + tlpkg/tltcl/lib/tcl8/8.4/platform-1.0.15.tm + tlpkg/tltcl/lib/tcl8/8.4/platform/shell-1.1.4.tm + tlpkg/tltcl/lib/tcl8/8.5/msgcat-1.6.1.tm + tlpkg/tltcl/lib/tcl8/8.5/tcltest-2.5.3.tm + tlpkg/tltcl/lib/tcl8/8.6/http-2.9.5.tm + tlpkg/tltcl/lib/tcl8/8.6/tdbc/sqlite3-1.1.2.tm + tlpkg/tltcl/lib/tclConfig.sh + tlpkg/tltcl/lib/tclooConfig.sh + tlpkg/tltcl/lib/tdbc1.1.2/libtdbcstub112.a + tlpkg/tltcl/lib/tdbc1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbc1.1.2/tdbc.tcl + tlpkg/tltcl/lib/tdbc1.1.2/tdbc112.dll + tlpkg/tltcl/lib/tdbc1.1.2/tdbcConfig.sh + tlpkg/tltcl/lib/tdbcmysql1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql112.dll + tlpkg/tltcl/lib/tdbcodbc1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc112.dll + tlpkg/tltcl/lib/tdbcpostgres1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres112.dll + tlpkg/tltcl/lib/thread2.8.6/pkgIndex.tcl + tlpkg/tltcl/lib/thread2.8.6/thread286.dll + tlpkg/tltcl/lib/thread2.8.6/ttrace.tcl + tlpkg/tltcl/lib/tk8.6/bgerror.tcl + tlpkg/tltcl/lib/tk8.6/button.tcl + tlpkg/tltcl/lib/tk8.6/choosedir.tcl + tlpkg/tltcl/lib/tk8.6/clrpick.tcl + tlpkg/tltcl/lib/tk8.6/comdlg.tcl + tlpkg/tltcl/lib/tk8.6/console.tcl + tlpkg/tltcl/lib/tk8.6/demos/README + tlpkg/tltcl/lib/tk8.6/demos/anilabel.tcl + tlpkg/tltcl/lib/tk8.6/demos/aniwave.tcl + tlpkg/tltcl/lib/tk8.6/demos/arrow.tcl + tlpkg/tltcl/lib/tk8.6/demos/bind.tcl + tlpkg/tltcl/lib/tk8.6/demos/bitmap.tcl + tlpkg/tltcl/lib/tk8.6/demos/browse + tlpkg/tltcl/lib/tk8.6/demos/button.tcl + tlpkg/tltcl/lib/tk8.6/demos/check.tcl + tlpkg/tltcl/lib/tk8.6/demos/clrpick.tcl + tlpkg/tltcl/lib/tk8.6/demos/colors.tcl + tlpkg/tltcl/lib/tk8.6/demos/combo.tcl + tlpkg/tltcl/lib/tk8.6/demos/cscroll.tcl + tlpkg/tltcl/lib/tk8.6/demos/ctext.tcl + tlpkg/tltcl/lib/tk8.6/demos/dialog1.tcl + tlpkg/tltcl/lib/tk8.6/demos/dialog2.tcl + tlpkg/tltcl/lib/tk8.6/demos/en.msg + tlpkg/tltcl/lib/tk8.6/demos/entry1.tcl + tlpkg/tltcl/lib/tk8.6/demos/entry2.tcl + tlpkg/tltcl/lib/tk8.6/demos/entry3.tcl + tlpkg/tltcl/lib/tk8.6/demos/filebox.tcl + tlpkg/tltcl/lib/tk8.6/demos/floor.tcl + tlpkg/tltcl/lib/tk8.6/demos/fontchoose.tcl + tlpkg/tltcl/lib/tk8.6/demos/form.tcl + tlpkg/tltcl/lib/tk8.6/demos/goldberg.tcl + tlpkg/tltcl/lib/tk8.6/demos/hello + tlpkg/tltcl/lib/tk8.6/demos/hscale.tcl + tlpkg/tltcl/lib/tk8.6/demos/icon.tcl + tlpkg/tltcl/lib/tk8.6/demos/image1.tcl + tlpkg/tltcl/lib/tk8.6/demos/image2.tcl + tlpkg/tltcl/lib/tk8.6/demos/images/earth.gif + tlpkg/tltcl/lib/tk8.6/demos/images/earthmenu.png + tlpkg/tltcl/lib/tk8.6/demos/images/earthris.gif + tlpkg/tltcl/lib/tk8.6/demos/images/flagdown.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/flagup.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/gray25.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/letters.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/noletter.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/ouster.png + tlpkg/tltcl/lib/tk8.6/demos/images/pattern.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/tcllogo.gif + tlpkg/tltcl/lib/tk8.6/demos/images/teapot.ppm + tlpkg/tltcl/lib/tk8.6/demos/items.tcl + tlpkg/tltcl/lib/tk8.6/demos/ixset + tlpkg/tltcl/lib/tk8.6/demos/knightstour.tcl + tlpkg/tltcl/lib/tk8.6/demos/label.tcl + tlpkg/tltcl/lib/tk8.6/demos/labelframe.tcl + tlpkg/tltcl/lib/tk8.6/demos/license.terms + tlpkg/tltcl/lib/tk8.6/demos/mclist.tcl + tlpkg/tltcl/lib/tk8.6/demos/menu.tcl + tlpkg/tltcl/lib/tk8.6/demos/menubu.tcl + tlpkg/tltcl/lib/tk8.6/demos/msgbox.tcl + tlpkg/tltcl/lib/tk8.6/demos/nl.msg + tlpkg/tltcl/lib/tk8.6/demos/paned1.tcl + tlpkg/tltcl/lib/tk8.6/demos/paned2.tcl + tlpkg/tltcl/lib/tk8.6/demos/pendulum.tcl + tlpkg/tltcl/lib/tk8.6/demos/plot.tcl + tlpkg/tltcl/lib/tk8.6/demos/puzzle.tcl + tlpkg/tltcl/lib/tk8.6/demos/radio.tcl + tlpkg/tltcl/lib/tk8.6/demos/rmt + tlpkg/tltcl/lib/tk8.6/demos/rolodex + tlpkg/tltcl/lib/tk8.6/demos/ruler.tcl + tlpkg/tltcl/lib/tk8.6/demos/sayings.tcl + tlpkg/tltcl/lib/tk8.6/demos/search.tcl + tlpkg/tltcl/lib/tk8.6/demos/spin.tcl + tlpkg/tltcl/lib/tk8.6/demos/states.tcl + tlpkg/tltcl/lib/tk8.6/demos/style.tcl + tlpkg/tltcl/lib/tk8.6/demos/tclIndex + tlpkg/tltcl/lib/tk8.6/demos/tcolor + tlpkg/tltcl/lib/tk8.6/demos/text.tcl + tlpkg/tltcl/lib/tk8.6/demos/textpeer.tcl + tlpkg/tltcl/lib/tk8.6/demos/timer + tlpkg/tltcl/lib/tk8.6/demos/toolbar.tcl + tlpkg/tltcl/lib/tk8.6/demos/tree.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkbut.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkmenu.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttknote.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkpane.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkprogress.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkscale.tcl + tlpkg/tltcl/lib/tk8.6/demos/twind.tcl + tlpkg/tltcl/lib/tk8.6/demos/unicodeout.tcl + tlpkg/tltcl/lib/tk8.6/demos/vscale.tcl + tlpkg/tltcl/lib/tk8.6/demos/widget + tlpkg/tltcl/lib/tk8.6/dialog.tcl + tlpkg/tltcl/lib/tk8.6/entry.tcl + tlpkg/tltcl/lib/tk8.6/focus.tcl + tlpkg/tltcl/lib/tk8.6/fontchooser.tcl + tlpkg/tltcl/lib/tk8.6/iconlist.tcl + tlpkg/tltcl/lib/tk8.6/icons.tcl + tlpkg/tltcl/lib/tk8.6/images/README + tlpkg/tltcl/lib/tk8.6/images/logo.eps + tlpkg/tltcl/lib/tk8.6/images/logo100.gif + tlpkg/tltcl/lib/tk8.6/images/logo64.gif + tlpkg/tltcl/lib/tk8.6/images/logoLarge.gif + tlpkg/tltcl/lib/tk8.6/images/logoMed.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo.eps + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo100.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo150.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo175.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo200.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo75.gif + tlpkg/tltcl/lib/tk8.6/images/tai-ku.gif + tlpkg/tltcl/lib/tk8.6/listbox.tcl + tlpkg/tltcl/lib/tk8.6/megawidget.tcl + tlpkg/tltcl/lib/tk8.6/menu.tcl + tlpkg/tltcl/lib/tk8.6/mkpsenc.tcl + tlpkg/tltcl/lib/tk8.6/msgbox.tcl + tlpkg/tltcl/lib/tk8.6/msgs/cs.msg + tlpkg/tltcl/lib/tk8.6/msgs/da.msg + tlpkg/tltcl/lib/tk8.6/msgs/de.msg + tlpkg/tltcl/lib/tk8.6/msgs/el.msg + tlpkg/tltcl/lib/tk8.6/msgs/en.msg + tlpkg/tltcl/lib/tk8.6/msgs/en_gb.msg + tlpkg/tltcl/lib/tk8.6/msgs/eo.msg + tlpkg/tltcl/lib/tk8.6/msgs/es.msg + tlpkg/tltcl/lib/tk8.6/msgs/fr.msg + tlpkg/tltcl/lib/tk8.6/msgs/hu.msg + tlpkg/tltcl/lib/tk8.6/msgs/it.msg + tlpkg/tltcl/lib/tk8.6/msgs/nl.msg + tlpkg/tltcl/lib/tk8.6/msgs/pl.msg + tlpkg/tltcl/lib/tk8.6/msgs/pt.msg + tlpkg/tltcl/lib/tk8.6/msgs/ru.msg + tlpkg/tltcl/lib/tk8.6/msgs/sv.msg + tlpkg/tltcl/lib/tk8.6/obsolete.tcl + tlpkg/tltcl/lib/tk8.6/optMenu.tcl + tlpkg/tltcl/lib/tk8.6/palette.tcl + tlpkg/tltcl/lib/tk8.6/panedwindow.tcl + tlpkg/tltcl/lib/tk8.6/pkgIndex.tcl + tlpkg/tltcl/lib/tk8.6/safetk.tcl + tlpkg/tltcl/lib/tk8.6/scale.tcl + tlpkg/tltcl/lib/tk8.6/scrlbar.tcl + tlpkg/tltcl/lib/tk8.6/spinbox.tcl + tlpkg/tltcl/lib/tk8.6/tclIndex + tlpkg/tltcl/lib/tk8.6/tearoff.tcl + tlpkg/tltcl/lib/tk8.6/text.tcl + tlpkg/tltcl/lib/tk8.6/tk.tcl + tlpkg/tltcl/lib/tk8.6/tkAppInit.c + tlpkg/tltcl/lib/tk8.6/tkfbox.tcl + tlpkg/tltcl/lib/tk8.6/ttk/altTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/aquaTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/button.tcl + tlpkg/tltcl/lib/tk8.6/ttk/clamTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/classicTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/combobox.tcl + tlpkg/tltcl/lib/tk8.6/ttk/cursors.tcl + tlpkg/tltcl/lib/tk8.6/ttk/defaults.tcl + tlpkg/tltcl/lib/tk8.6/ttk/entry.tcl + tlpkg/tltcl/lib/tk8.6/ttk/fonts.tcl + tlpkg/tltcl/lib/tk8.6/ttk/menubutton.tcl + tlpkg/tltcl/lib/tk8.6/ttk/notebook.tcl + tlpkg/tltcl/lib/tk8.6/ttk/panedwindow.tcl + tlpkg/tltcl/lib/tk8.6/ttk/progress.tcl + tlpkg/tltcl/lib/tk8.6/ttk/scale.tcl + tlpkg/tltcl/lib/tk8.6/ttk/scrollbar.tcl + tlpkg/tltcl/lib/tk8.6/ttk/sizegrip.tcl + tlpkg/tltcl/lib/tk8.6/ttk/spinbox.tcl + tlpkg/tltcl/lib/tk8.6/ttk/treeview.tcl + tlpkg/tltcl/lib/tk8.6/ttk/ttk.tcl + tlpkg/tltcl/lib/tk8.6/ttk/utils.tcl + tlpkg/tltcl/lib/tk8.6/ttk/vistaTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/winTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/xpTheme.tcl + tlpkg/tltcl/lib/tk8.6/unsupported.tcl + tlpkg/tltcl/lib/tk8.6/xmfbox.tcl + tlpkg/tltcl/lib/tkConfig.sh +binfiles arch=x86_64-cygwin size=46 + tlpkg/installer/xz/xz.x86_64-cygwin.exe +binfiles arch=x86_64-darwinlegacy size=169 + tlpkg/installer/wget/wget.x86_64-darwinlegacy + tlpkg/installer/xz/xz.x86_64-darwinlegacy +binfiles arch=x86_64-linux size=45 + tlpkg/installer/xz/xz.x86_64-linux +binfiles arch=x86_64-linuxmusl size=431 + tlpkg/installer/wget/wget.x86_64-linuxmusl + tlpkg/installer/xz/xz.x86_64-linuxmusl +binfiles arch=x86_64-solaris size=194 + tlpkg/installer/wget/wget.x86_64-solaris + tlpkg/installer/xz/xz.x86_64-solaris + +name 12many +category Package +revision 15878 +catalogue one2many +shortdesc Generalising mathematical index sets +relocated 1 +longdesc In the discrete branches of mathematics and the computer +longdesc sciences, it will only take some seconds before you're faced +longdesc with a set like {1,...,m}. Some people write $1\ldotp\ldotp m$, +longdesc others $\{j:1\leq j\leq m\}$, and the journal you're submitting +longdesc to might want something else entirely. The 12many package +longdesc provides an interface that makes changing from one to another a +longdesc one-line change. +containersize 2104 +containerchecksum 57a177b65450718631f36bfd8db0f2d1bff788f3bf147137b6412714cc945c7e08832f14f9e7e659adf7e072a91f13a2ea27fe3161cd9b60313bc956f1f543c6 +doccontainersize 375412 +doccontainerchecksum 9ce7fdae151a116ef6b22943bcbd1e94b90862baa5d50f54a00105d1f2d623f75a2e1440c3c49c560e2e6c5baddb8a6772753f400165b63a90a84f540e3fa381 +docfiles size=98 + RELOC/doc/latex/12many/12many.pdf details="Package documentation" + RELOC/doc/latex/12many/README details="Readme" +srccontainersize 6592 +srccontainerchecksum f007dcaccb364964a73da6a09db5e6a25ee401d8108b19021b67023af273f486392cef6a0b01e951e9fa885304d0e157b919cbd6abc472a96dfbbb0f432b8530 +srcfiles size=6 + RELOC/source/latex/12many/12many.dtx + RELOC/source/latex/12many/12many.ins +runfiles size=1 + RELOC/tex/latex/12many/12many.sty +catalogue-ctan /macros/latex/contrib/12many +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.3 + +name 2up +category Package +revision 55076 +catalogue twoup-gen +shortdesc Macros to print two-up +relocated 1 +longdesc The 2up package offers considerable flexibility as to paper +longdesc size and layout, and produces a standard dvi file without +longdesc involving additional dvi or PostScript filters. +containersize 4200 +containerchecksum 6408d1d99a97df71640bcdde4133edc2e5861bbcdc8c5e1be98d5704f7ecf9c043c5538ea19ac4952d811e3677ee0698bdd477eadbd1068725bdb210787d9dbc +doccontainersize 52456 +doccontainerchecksum 3375cfbd95412f2fde2bdb9171b1c081890a52168d0c6d0f0dfb0ad914117c79291a56bc97602627a698509635765fd5e6e95387a006039178e440a8bea24837 +docfiles size=19 + RELOC/doc/generic/2up/2up-doc.pdf details="Package documentation" + RELOC/doc/generic/2up/2up-doc.tex + RELOC/doc/generic/2up/Changes + RELOC/doc/generic/2up/README details="Readme" +runfiles size=4 + RELOC/tex/generic/2up/2up.sty + RELOC/tex/generic/2up/2up.tex +catalogue-also twoupltx +catalogue-ctan /macros/generic/2up +catalogue-license lppl +catalogue-topics layout +catalogue-version 1.3a + +name Asana-Math +category Package +revision 50999 +shortdesc A font to typeset maths in Xe(La)TeX and Lua(La)TeX +relocated 1 +longdesc The Asana-Math font is an OpenType font that includes almost +longdesc all mathematical Unicode symbols and it can be used to typeset +longdesc mathematical text with any software that can understand the +longdesc MATH OpenType table (e.g., XeTeX 0.997 and Microsoft Word +longdesc 2007). The font is beta software. Typesetting support for use +longdesc with LaTeX is provided by the fontspec and unicode-math +longdesc packages. +containersize 673828 +containerchecksum e1ee08540790685aab85c8acb407526f5936478c37d86b266728fdf39bb906bc7f6566bf5eae90b631eb59f59d65d414943a6faab922681199af76102078ed4f +doccontainersize 3748 +doccontainerchecksum 69a6615dda5f7e47fdff1b0b1afc4211f749a929b81f19a554246033e6f5f4a482c3c03a6903b64d83c4daeccb70983dacb35467047a467314637e65a19c917c +docfiles size=3 + RELOC/doc/fonts/Asana-Math/FontLog.txt + RELOC/doc/fonts/Asana-Math/README details="Readme" +runfiles size=330 + RELOC/fonts/opentype/public/Asana-Math/Asana-Math.otf + RELOC/fonts/truetype/public/Asana-Math/ASANA.TTC +catalogue-also stix xits +catalogue-ctan /fonts/Asana-Math +catalogue-license ofl +catalogue-topics font font-maths font-otf font-ttf +catalogue-version 000.958 + +name ESIEEcv +category Package +revision 15878 +shortdesc Curriculum vitae for French use +relocated 1 +longdesc The package allows the user to set up a curriculum vitae as a +longdesc French employer will expect. +containersize 1596 +containerchecksum 79fe8175d0adf25ebf30421eca323f9042bc98792290763b06ba53978bf4962dabab228b9aa6220f859f64356eabd2cc94e71351aac441e64afa3fca8f73f742 +doccontainersize 131168 +doccontainerchecksum 85d731182d5284da69254744a7d9e23326f5344a6585ae95410671cd5721961958480fab4b621d58fe01ff9bf0a602b3f94089dafaf5614fc8d57ad243e9b223 +docfiles size=42 + RELOC/doc/latex/ESIEEcv/ESIEEcv.pdf details="Package documentation" + RELOC/doc/latex/ESIEEcv/cvtest.pdf details="Test/sample document" + RELOC/doc/latex/ESIEEcv/cvtest.tex +srccontainersize 6876 +srccontainerchecksum a63bc1de05f659d72f9fc297436e7aad36db6124f22c2a29c65418a1233c37a0a995bba3267fca6fc83f04efa119315c25937aff733b64b7c78275313209d42c +srcfiles size=6 + RELOC/source/latex/ESIEEcv/ESIEEcv.dtx + RELOC/source/latex/ESIEEcv/ESIEEcv.ins +runfiles size=1 + RELOC/tex/latex/ESIEEcv/ESIEEcv.sty +catalogue-also curve currvita cv europecv vita +catalogue-ctan /macros/latex/contrib/ESIEEcv +catalogue-license lppl +catalogue-topics cv french + +name GS1 +category Package +revision 44822 +shortdesc Typeset EAN barcodes using TeX rules, only +relocated 1 +longdesc The (LaTeX 3) package typesets EAN-8 and EAN-13 barcodes, using +longdesc the facilities of the rule-D package. +containersize 3452 +containerchecksum c71acefcb0ff1cd97792c27435e7eb4f4e32f072a275e5eb7dd13d7b9928ca00318d0acdf605f35cc4a3d7099247c290155d6963ac1560f4b11f37a123fde0b6 +doccontainersize 1137680 +doccontainerchecksum 6e714b1087d228923f38dc3c8680e57de314eab79ab15f0aa247ad002a3aa6a9dac2a253c5688c904408c8d14dadbe307b3d3446b38db767a650989d5ed9e878 +docfiles size=310 + RELOC/doc/latex/GS1/GS1.pdf details="Package documentation" + RELOC/doc/latex/GS1/README details="Readme" + RELOC/doc/latex/GS1/examples/EANBarcode.pdf + RELOC/doc/latex/GS1/examples/EANBarcode.tex + RELOC/doc/latex/GS1/examples/EANControlDigit.pdf + RELOC/doc/latex/GS1/examples/EANControlDigit.tex + RELOC/doc/latex/GS1/examples/GSSetup.pdf + RELOC/doc/latex/GS1/examples/GSSetup.tex + RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.pdf + RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.tex + RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.pdf + RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.tex + RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.pdf + RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.tex + RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.pdf + RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.tex + RELOC/doc/latex/GS1/rule-D.pdf +srccontainersize 9936 +srccontainerchecksum 3ad67dc4bd1033f828cbc11196a6ce9a25b2abc90348f727423effd6d97acd7fbf617b88740afb9050f481fb403401033c3dc60c3b9ac326467697f9b1d09a49 +srcfiles size=12 + RELOC/source/latex/GS1/GS1.dtx + RELOC/source/latex/GS1/GS1.ins + RELOC/source/latex/GS1/README + RELOC/source/latex/GS1/rule-D.dtx +runfiles size=4 + RELOC/tex/latex/GS1/GS1.sty + RELOC/tex/latex/GS1/rule-D.sty +catalogue-ctan /macros/latex/contrib/gs1 +catalogue-license lppl1.3c +catalogue-topics barcode +catalogue-version 22 + +name HA-prosper +category Package +revision 15878 +shortdesc Patches and improvements for prosper +relocated 1 +longdesc HA-prosper is a patch for prosper that adds new functionality +longdesc to prosper based presentations. Among the new features you will +longdesc find automatic generation of a table of contents on each slide, +longdesc support for notes and portrait slides. The available styles +longdesc demonstrate how to expand the functionality of prosper even +longdesc further. +containersize 28420 +containerchecksum 330df0a8d9b7b7ed5e4d2b74c626576ca8ac852cc84f9c79296141b14892819869cbd0e7f68050b4f3e5d107c43f9939ec9c9248c19ddd20da8d16ee2c25104e +doccontainersize 205052 +doccontainerchecksum 55822b9703d44481ae62dcb690adaba29cee5432b5b8b9f549884f55e943b1575064419712745166a6c0fd0fdfadac60473c6642816e1efac92c8e27c2cca76c +docfiles size=62 + RELOC/doc/latex/HA-prosper/HA-prosper.pdf details="Package documentation" + RELOC/doc/latex/HA-prosper/HAPBigtest.tex + RELOC/doc/latex/HA-prosper/HAPDualslide.tex + RELOC/doc/latex/HA-prosper/HAPIntroduction.tex + RELOC/doc/latex/HA-prosper/README details="Package README" +srccontainersize 38768 +srccontainerchecksum 646cea88f8d725e30257c15bcd198c0a2c9cd6477b956279a38443d5b22ac4c64e795a2ded53649b3d1504bbc66639946c331ba978e775a5fea33696c9bc6c2d +srcfiles size=41 + RELOC/source/latex/HA-prosper/HA-prosper.def + RELOC/source/latex/HA-prosper/HA-prosper.dtx +runfiles size=57 + RELOC/tex/latex/HA-prosper/HA-prosper.cfg + RELOC/tex/latex/HA-prosper/HA-prosper.sty + RELOC/tex/latex/HA-prosper/Styles/Aggie/AMLogo.eps + RELOC/tex/latex/HA-prosper/Styles/Aggie/HAPAggie.sty + RELOC/tex/latex/HA-prosper/Styles/Aggie/files.txt + RELOC/tex/latex/HA-prosper/Styles/Capsules/HAPcapsules.sty + RELOC/tex/latex/HA-prosper/Styles/Ciment/HAPciment.sty + RELOC/tex/latex/HA-prosper/Styles/Fyma/HAPFyma.sty + RELOC/tex/latex/HA-prosper/Styles/HA/HAPHA.sty + RELOC/tex/latex/HA-prosper/Styles/HA/flower.ps + RELOC/tex/latex/HA-prosper/Styles/Lakar/HAPLakar.sty + RELOC/tex/latex/HA-prosper/Styles/Simple/HAPsimple.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCS.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSTealBlue.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSgrad.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/TCSgradlogo.ps + RELOC/tex/latex/HA-prosper/Styles/TCS/TCSlogo.ps + RELOC/tex/latex/HA-prosper/Styles/Tycja/HAPTycja.sty +catalogue-also powerdot +catalogue-ctan /macros/latex/contrib/ha-prosper +catalogue-license lppl +catalogue-topics presentation +catalogue-version 4.21 + +name IEEEconf +category Package +revision 15878 +shortdesc Macros for IEEE conference proceedings +relocated 1 +longdesc The IEEEconf class implements the formatting dictated by the +longdesc IEEE Computer Society Press for conference proceedings. +containersize 2544 +containerchecksum bd35025cabe78886f78333cb4ff186d0363480ea0c1f825456e9b6debc08c0a2dbfc7c703fc9caebaf2a20c47925141cb090d50146f054a76e1aecd861408517 +doccontainersize 177424 +doccontainerchecksum 0316a52d380555afb04358cadd56e6fabe23293bd3b6dd0f0d4e4df9db75e26708dfc7df4c280a8a9759e4c8518050805f197357b2efa43664a984f56dfabb05 +docfiles size=53 + RELOC/doc/latex/IEEEconf/IEEEconf.pdf details="Package documentation" + RELOC/doc/latex/IEEEconf/README details="Readme" +srccontainersize 12540 +srccontainerchecksum 18d0204a051b8c1d0ea034b7c3357228b0dd2f40d44ffc059ee270fc22f284a833eec72527874be0c1414e01ca91f403726c801f75e2f6cd2d0a2b097db5c53a +srcfiles size=11 + RELOC/source/latex/IEEEconf/IEEEconf.dtx + RELOC/source/latex/IEEEconf/IEEEconf.ins +runfiles size=2 + RELOC/tex/latex/IEEEconf/IEEEconf.cls +catalogue-ctan /macros/latex/contrib/IEEEconf +catalogue-license lppl +catalogue-topics confproc class +catalogue-version 1.4 + +name IEEEtran +category Package +revision 51065 +shortdesc Document class for IEEE Transactions journals and conferences +relocated 1 +longdesc The class and its BibTeX style enable authors to produce +longdesc officially-correct output for the Institute of Electrical and +longdesc Electronics Engineers (IEEE) transactions, journals and +longdesc conferences. +containersize 89364 +containerchecksum 7db183824e4a62a9f90046d62d33940573a25d2ebe72de0d57a68340e82e2b4b21fe74e74608cc73fe53b0d889019884aec8e1b11060849a38107280e0fce2f1 +doccontainersize 487244 +doccontainerchecksum 0fab8351fce31d36fc1cee91feea7d09e1acd78d80b0500d8c3fc7f3ce322055b952423e7f39d09f86e99b22aa24405ff5a0f00207f88a3cae8cf39593e9b326 +docfiles size=248 + RELOC/doc/latex/IEEEtran/IEEEtrantools_doc.txt + RELOC/doc/latex/IEEEtran/README details="Readme" + RELOC/doc/latex/IEEEtran/README.TEXLIVE + RELOC/doc/latex/IEEEtran/README.bibtex + RELOC/doc/latex/IEEEtran/README.extras + RELOC/doc/latex/IEEEtran/README.testflow + RELOC/doc/latex/IEEEtran/README.tools + RELOC/doc/latex/IEEEtran/bare_adv.tex + RELOC/doc/latex/IEEEtran/bare_conf.tex + RELOC/doc/latex/IEEEtran/bare_conf_compsoc.tex + RELOC/doc/latex/IEEEtran/bare_jrnl.tex + RELOC/doc/latex/IEEEtran/bare_jrnl_compsoc.tex + RELOC/doc/latex/IEEEtran/bare_jrnl_comsoc.tex + RELOC/doc/latex/IEEEtran/bare_jrnl_transmag.tex + RELOC/doc/latex/IEEEtran/bibtex/changelog.txt + RELOC/doc/latex/IEEEtran/changelog.txt + RELOC/doc/latex/IEEEtran/testflow.tex + RELOC/doc/latex/IEEEtran/testflow_ctl_A4.pdf + RELOC/doc/latex/IEEEtran/testflow_ctl_LTR.pdf + RELOC/doc/latex/IEEEtran/testflow_doc.pdf + RELOC/doc/latex/IEEEtran/tools/changelog.txt + RELOC/doc/latex/IEEEtran/tux.eps + RELOC/doc/latex/IEEEtran/tux.pdf +runfiles size=205 + RELOC/bibtex/bib/IEEEtran/IEEEabrv.bib + RELOC/bibtex/bib/IEEEtran/IEEEexample.bib + RELOC/bibtex/bib/IEEEtran/IEEEfull.bib + RELOC/bibtex/bst/IEEEtran/IEEEtran.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranN.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranS.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranSA.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranSN.bst + RELOC/tex/latex/IEEEtran/IEEEtran.cls + RELOC/tex/latex/IEEEtran/IEEEtrantools.sty +catalogue-contact-home http://www.michaelshell.org/tex/ieeetran/ +catalogue-ctan /macros/latex/contrib/IEEEtran +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.8b + +name MemoirChapStyles +category Package +revision 25918 +catalogue memoirchapterstyles +shortdesc Chapter styles in memoir class +relocated 1 +longdesc A showcase of chapter styles available to users of memoir: the +longdesc six provided in the class itself, plus many from elsewhere (by +longdesc the present author and others). The package's resources apply +longdesc only to memoir, but the package draws from a number of sources +longdesc relating to standard classes, including the fncychap package, +longdesc and Vincent Zoonekynd's tutorial on headings. +containersize 604 +containerchecksum 83455766eb557edebad28b73c5decb0a7a23f097bdfb795cad9cc0847af916ab012fd044a63dc9893932ce0f161e831a2a8e7c0138a2157e0f1f4f2211667c16 +doccontainersize 755400 +doccontainerchecksum 32b171486838a762b2cd49af46d3f2a152e9d592735a15a407784cde02e5be9281798302eb094f0c045f895a8f6e86464e9c214bd06f9061c313807ec36cbb1f +docfiles size=461 + RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.pdf details="The document itself" + RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.tex + RELOC/doc/latex/MemoirChapStyles/README details="Readme" +catalogue-ctan /info/latex-samples/MemoirChapStyles +catalogue-license lppl +catalogue-topics use-sample +catalogue-version 1.7e + +name SIstyle +category Package +revision 54080 +shortdesc Package to typeset SI units, numbers and angles +relocated 1 +longdesc This package typesets SI units, numbers and angles according to +longdesc the ISO requirements. Care is taken with font setup and +longdesc requirements, and language customisation is available. Note +longdesc that this package is (in principle) superseded by siunitx; +longdesc sistyle has maintenance-only support, now. +containersize 3544 +containerchecksum 69bc838535facdc8ba17db91ead53dbc233f7d53e453164611fcd7e194692212ff74f57979023fe14ed8c8df347caeb42d99fae0b14c3cc54c60c8411bdef80d +doccontainersize 323444 +doccontainerchecksum 6fb33be5371932e95e5e3002bb2696d0707d62425f1a539764d195ee119f37441bf288a502770667624746631bd75227a245bbcc2050c1c2d815ce4c8fa6ec85 +docfiles size=126 + RELOC/doc/latex/SIstyle/README details="Readme" + RELOC/doc/latex/SIstyle/SIstyle-2.3a.pdf details="Package documentation" + RELOC/doc/latex/SIstyle/fig1.eps + RELOC/doc/latex/SIstyle/fig1.mps + RELOC/doc/latex/SIstyle/fig2.eps + RELOC/doc/latex/SIstyle/fig2.mps + RELOC/doc/latex/SIstyle/graphs_scr.zip +srccontainersize 18204 +srccontainerchecksum f1e23a9d04b637afd72056e1792a0c795f1b02b96ddd0170e6f412a8159389f8cd79bfdbfd2860fb5b6ca6b1794ff5c0bc59fbaabcdffbd8d69d26b205e60df5 +srcfiles size=19 + RELOC/source/latex/SIstyle/sistyle.dtx + RELOC/source/latex/SIstyle/sistyle.ins +runfiles size=3 + RELOC/tex/latex/SIstyle/sistyle.sty +catalogue-ctan /macros/latex/contrib/sistyle +catalogue-license lppl +catalogue-topics typesetting scientific-docs +catalogue-version 2.3a + +name SIunits +category Package +revision 15878 +shortdesc International System of Units +relocated 1 +longdesc Typeset physical units following the rules of the International +longdesc System of Units (SI). The package requires amstext, for proper +longdesc representation of some values. Note that the package is now +longdesc superseded by siunitx; siunits has maintenance-only support, +longdesc now. +containersize 6064 +containerchecksum b804d61bcdcc9d6f4559a05d8bfa7d8f7a3c378a618e5cd068b29e2661968b7564c36ce2e3d97f7fc7af15c11e89ac61e88ff25318d8c08536181d1f546f260d +doccontainersize 250180 +doccontainerchecksum 09c35a6d2e2d90701ac099eaf06116d4bf5b93652c512969dfe2afae74c9c04d70dcda8a5053d707aed0724fba0a8d9c3487a51fc617fd1a757c596a99b974dc +docfiles size=82 + RELOC/doc/latex/SIunits/README details="Readme" + RELOC/doc/latex/SIunits/SIunits.pdf details="Package documentation" +srccontainersize 34544 +srccontainerchecksum 82081b1c503098847bc5f24c2749fb6abd1a739ccd21b01464119b7b6a92bfbb51666d0f5d14aa335e23a03b72b5eae8fefccf9c790819a4f8cf14b37ff297ad +srcfiles size=40 + RELOC/source/latex/SIunits/SIunits.drv + RELOC/source/latex/SIunits/SIunits.dtx + RELOC/source/latex/SIunits/SIunits.ins +runfiles size=8 + RELOC/tex/latex/SIunits/SIunits.cfg + RELOC/tex/latex/SIunits/SIunits.sty + RELOC/tex/latex/SIunits/binary.sty +catalogue-also sistyle +catalogue-ctan /macros/latex/contrib/SIunits +catalogue-license lppl1.3 +catalogue-topics typesetting scientific-docs +catalogue-version 1.36 + +name Tabbing +category Package +revision 17022 +shortdesc Tabbing with accented letters +relocated 1 +longdesc By default, some of the tabbing environment's commands clash +longdesc with default accent commands; LaTeX provides the odd commands +longdesc \a', etc., to deal with the clash. The package offers a variant +longdesc of the tabbing environment which does not create this +longdesc difficulty, so that users need not learn two sets of accent +longdesc commands. +containersize 1360 +containerchecksum 10d3c274c5838c48bd47f651bfc57aeded8246787e23091307dcabf2794fc9eec19bc3a3af9ae08b812688ebc4fffd295fb01c7be7d61fcd06ccb46ce4f6b739 +doccontainersize 216508 +doccontainerchecksum 1f4eb22039e3bae3897502fe541e595c802fffa94d2cdefed451cf24883e1f41d29e9ea0065d1d68ddee3e166aaa1ba7896dd84bf612e9c007ecc5c1e2d5f616 +docfiles size=58 + RELOC/doc/latex/Tabbing/00readme + RELOC/doc/latex/Tabbing/Tabbing.pdf details="Package documentation (English)" language="en" +srccontainersize 3728 +srccontainerchecksum a4c7b558e6e5ad9eeb8b4e3d81c20edb09d66cd8aaec2b501224fb7f93a40c3771f8e23d2fbfb910158464f98d8172bc691787ef1c2256066fb85e96068f368a +srcfiles size=3 + RELOC/source/latex/Tabbing/Tabbing.dtx + RELOC/source/latex/Tabbing/Tabbing.ins +runfiles size=1 + RELOC/tex/latex/Tabbing/Tabbing.sty +catalogue-ctan /macros/latex/contrib/Tabbing +catalogue-license lppl1 +catalogue-topics alignment macro-supp + +name Type1fonts +category Package +revision 19603 +catalogue fontinstallationguide +shortdesc Font installation guide +relocated 1 +longdesc This guide discusses the most common scenarios you are likely +longdesc to encounter when installing Type 1 PostScript fonts. While the +longdesc individual tools employed in the installation process are +longdesc documented well, the actual difficulty most users are facing +longdesc when trying to install new fonts is understanding how to put +longdesc all the pieces together. This is what this guide is about. +containersize 592 +containerchecksum 858836fc8a955b87f823c25b22fbb4b07f119186ab437e0e7ef7d387bb8295b8a65deb237c649d93afe7d72213745d4cfbe48a51372c69c12d088f5403f22dc3 +doccontainersize 527324 +doccontainerchecksum 5448b85539d29ace8365bd0e197693c0c4c53a145d5182c3f125e11cb3ca8194675ca9553ad53bf7e503b1636f17614ea2e338113f61474d9744dfa91800390e +docfiles size=242 + RELOC/doc/fonts/Type1fonts/README details="Readme" + RELOC/doc/fonts/Type1fonts/examples.zip + RELOC/doc/fonts/Type1fonts/fontinstallationguide.pdf details="The document itself" + RELOC/doc/fonts/Type1fonts/fontinstallationguide.tex +catalogue-ctan /info/Type1fonts/fontinstallationguide +catalogue-license fdl +catalogue-topics font-doc +catalogue-version 2.14 + +name a0poster +category Package +revision 54071 +shortdesc Support for designing posters on large paper +relocated 1 +longdesc Provides fonts in sizes of 12pt up to 107pt and also makes sure +longdesc that in math formulas the symbols appear in the right size. Can +longdesc also create a PostScript header file for dvips which ensures +longdesc that the poster will be printed in the right size. Supported +longdesc sizes are DIN A0, DIN A1, DIN A2 and DIN A3. +containersize 3308 +containerchecksum 038623ef39540340a9c9de228ff0787512fb34916ee5a250dbc6d9327b9249d51c633b8ed0dd725c90db462ed7c96290ea7d6fd60e299e787d0e5cf585efb5f5 +doccontainersize 118128 +doccontainerchecksum 51e01cf36d4ec625bdc68e586d276e09973dcfe30cd9ba2aa7dbeed73337bea03a222d66a6903e5203e1530d88433d326d38ff66896c52ac33587a3d147cc2e5 +docfiles size=47 + RELOC/doc/latex/a0poster/a0.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/a0poster/a0.tex + RELOC/doc/latex/a0poster/a0_eng.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/a0poster/a0_eng.tex +runfiles size=4 + RELOC/tex/latex/a0poster/a0poster.cls + RELOC/tex/latex/a0poster/a0size.sty +catalogue-also sciposter +catalogue-ctan /macros/latex/contrib/a0poster +catalogue-license lppl +catalogue-topics poster +catalogue-version 1.22b + +name a2ping +category TLCore +revision 52964 +shortdesc Advanced PS, PDF, EPS converter +longdesc a2ping is a Perl script command line utility written for Unix +longdesc that converts many raster image and vector graphics formats to +longdesc EPS or PDF and other page description formats. Accepted input +longdesc file formats are: PS (PostScript), EPS, PDF, PNG, JPEG, TIFF, +longdesc PNM, BMP, GIF, LBM, XPM, PCX, TGA. Accepted output formats are: +longdesc EPS, PCL5, PDF, PDF1, PBM, PGM, PPM, PS, markedEPS, markedPS, +longdesc PNG, XWD, BMP, TIFF, JPEG, GIF, XPM. a2ping delegates the +longdesc low-level work to Ghostscript (GS), pdftops and sam2p. a2ping +longdesc fixes many glitches during the EPS to EPS conversion, so its +longdesc output is often more compatible and better embeddable than its +longdesc input. +depend a2ping.ARCH +containersize 30652 +containerchecksum 4008c18f93a7d378c8da20bad7c1fdf19c3e6befccdcc804326168854fcd35bb89fe414b30a26dbddeaf81a11c0d404bf5b5459bd3d8adce49dc30279e3bd420 +doccontainersize 39744 +doccontainerchecksum 7a7b6474819b2715c131485472963b463163378d4ae4ac586f17a130b3327c6dda1f4132f4f2379388a8a493fb2374abfff6b7ad87513cbe9d04993572692aeb +docfiles size=16 + texmf-dist/doc/man/man1/a2ping.1 + texmf-dist/doc/man/man1/a2ping.man1.pdf + texmf-dist/doc/support/a2ping/HISTORY.txt +runfiles size=25 + texmf-dist/scripts/a2ping/a2ping.pl +catalogue-contact-repository https://github.com/pts/a2ping +catalogue-ctan /graphics/a2ping +catalogue-license gpl +catalogue-topics graphics-prep +catalogue-version 2.84p + +name a2ping.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of a2ping +containersize 340 +containerchecksum 8d1841aef3e9f94933b745d7109c354edd1c7614bfa67cf1a329de36cfd1c4aaaca0d0587fd79db222ea41118765dc664ed6f972e221ad617d5cf918db292496 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/a2ping + +name a2ping.amd64-freebsd +category TLCore +revision 27321 +shortdesc amd64-freebsd files of a2ping +containersize 344 +containerchecksum 4a57b378a355b36f7fbccc21c7c2302f9151e1f18408572df5240fcb3566daab9a6234cc33762237c22cc8812bc821e7619ec1eced0fc2d4a1c47a5cd05c456f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/a2ping + +name a2ping.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of a2ping +containersize 340 +containerchecksum d22253b1dcf90cde613c727270c1258b0654f798a640d84c301171784d17d8b13e2ae9ec238b24726133a94b4affd835ed54041b278b6159056e06716bb9aa39 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/a2ping + +name a2ping.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of a2ping +containersize 340 +containerchecksum 499493682164f8a6e913b2fa78f3b4328b47f2391f4f0d97e51d35de2b8763603830f7f7ce3ea99f4cd7516b779dbd074f2c5b596021095dba570b2f365ba0f1 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/a2ping + +name a2ping.i386-cygwin +category TLCore +revision 27321 +shortdesc i386-cygwin files of a2ping +containersize 340 +containerchecksum 839a5581977b46107fb75f28f6553b7ed84fe818034519bb84abf973e31d96d608871deaa4bd80f41407af25872a248fd7b87394754619c0e7f803891fef1b94 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/a2ping + +name a2ping.i386-freebsd +category TLCore +revision 27321 +shortdesc i386-freebsd files of a2ping +containersize 344 +containerchecksum 7bd9b3e56004955590d095496340e46ce0cac8095d130ce60d9cdaccdcbb856d236a2db60505fcb70458bac7e75ba8734660801cc686562483e0a05626a274ca +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/a2ping + +name a2ping.i386-linux +category TLCore +revision 27321 +shortdesc i386-linux files of a2ping +containersize 340 +containerchecksum e213256307aa05399fb511f1e2b58adf5c8d27470240f1ded4f33f0fb3d5c27b360ba4aeaf98ef3555ec15bcb402d5d11ee2838eca3b1fd52f38758028e05077 +binfiles arch=i386-linux size=1 + bin/i386-linux/a2ping + +name a2ping.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of a2ping +containersize 344 +containerchecksum 65964f62d13a860d1a8b2664f93d78f6148035c827ac470c1bdf822a79247eb4f990c96535979bab9455eeb21734321a1846d64363b889c07c9138b025c90f42 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/a2ping + +name a2ping.i386-solaris +category TLCore +revision 27321 +shortdesc i386-solaris files of a2ping +containersize 340 +containerchecksum 4a1989249b9503521fff5c3dbc66303e35780a2f8a107451da71d8ad41dd3e7256d1e6786d54d29a602f41511cdf2fc08118e1a30584dfc1206bb37da09570c7 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/a2ping + +name a2ping.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of a2ping +containersize 340 +containerchecksum 6cb1d010bc8f7607153dd5c40d2d86d5474d649a1fb0102d231272cac9c20dac7b410048a331583c31ff037152948b1bfcca44973e40d20815ac8e59dadf7c84 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/a2ping + +name a2ping.win32 +category TLCore +revision 15404 +shortdesc win32 files of a2ping +containersize 684 +containerchecksum 46a5f8cd2bb036702c22c0c938bc564d62e1ca08ffe62f5e05e0cc9506a3ada5431f84f7ea238468a33df53bddfc97765533ae5c40a84d8def706231cf3d9010 +binfiles arch=win32 size=1 + bin/win32/a2ping.exe + +name a2ping.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of a2ping +containersize 344 +containerchecksum a5ddcca8e311a52f84b345bb0da443cd32cc15c6185b0b162b443049223621aed63d3ca13de942a1b5ba2845dc171a9b2d84543f454f336088c1505906afb93d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/a2ping + +name a2ping.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of a2ping +containersize 352 +containerchecksum 16edfe816df989a7171c9d42497581a03786041ea0cb18cfbfe034920e5f93054ac9a2b68c22bb6b4f572407ebf493fd51dab79ce246f075c300e451c923a923 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/a2ping + +name a2ping.x86_64-linux +category TLCore +revision 27321 +shortdesc x86_64-linux files of a2ping +containersize 340 +containerchecksum f4eeb76fbc182a73eccd3086b632005b8bed0615634247f84ddbe3e12b24d7c592bf7a8d158d7ad738ed536c5fa753fda86a670c0e899b48e7d05ac0e1c9c3e6 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/a2ping + +name a2ping.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of a2ping +containersize 348 +containerchecksum bdf339424e8fa2103bf3a95f57bdce4e6e7405b2a8e23ee95611267a1d0b6877b3ff178bff4b4698fada85c9d10b9469a7086186d964aff34a5241d370a7a560 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/a2ping + +name a2ping.x86_64-solaris +category TLCore +revision 27321 +shortdesc x86_64-solaris files of a2ping +containersize 344 +containerchecksum 8ca11fafcac7b083833d51e5d40fc58cc9cfbf6ea130b1b1f9bce2351fe0e3def42c477bece6322018a5d16d3143adf99e6ffacf077494ed8c5bac09b884719a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/a2ping + +name a4wide +category Package +revision 20943 +shortdesc "Wide" a4 layout +relocated 1 +longdesc This package increases the width of the typeset area of an a4 +longdesc page. This sort of operation is capable of producing +longdesc typographically poor results; the operation itself is better +longdesc provided by the geometry package. The package uses the a4 +longdesc package. +containersize 1012 +containerchecksum e0f1f95bf660760683d6c5a917d75e537a0347837eb4388eded8194c6ca5371b2ad9be9829fcaaff1e24b7d8baefd287db6add752c19a57a6cf0737017e311e3 +doccontainersize 134740 +doccontainerchecksum bf059462ec7e28ba782d5842d090c93f4e911bdf44eb3d4f184a7324b454105295460a52414ffcb9fc71dceeba902b1d78ba208d0998f71727ad41299eb1138f +docfiles size=34 + RELOC/doc/latex/a4wide/a4wide.pdf details="Package documentation" + RELOC/doc/latex/a4wide/a4wide.tex +runfiles size=1 + RELOC/tex/latex/a4wide/a4wide.sty +catalogue-ctan /macros/latex/contrib/a4wide +catalogue-license lppl1 +catalogue-topics geometry + +name a5comb +category Package +revision 17020 +shortdesc Support for a5 paper sizes +relocated 1 +longdesc Superceded by geometry. +containersize 968 +containerchecksum 443548964eb48ec458942e97f0d6ceb698050a5d4dc83ad17a71db0f1d5085a2c8e73c3e8d9bdbb7ab7e6328d12e42a6ec05c4c7dd4247717f295fcd5da66423 +doccontainersize 91652 +doccontainerchecksum ee845d8b6a21271d2f0e4e6fd24c79a1235d24ba15cc2d037eb41761b05ad3e69dcb5379c223c07b81c62df5f89190c84ff977390e149566710ce7175e4c2823 +docfiles size=25 + RELOC/doc/latex/a5comb/a5comb.pdf details="Package documentation" + RELOC/doc/latex/a5comb/a5comb.tex +runfiles size=1 + RELOC/tex/latex/a5comb/a5comb.sty +catalogue-ctan /macros/latex/contrib/a5comb +catalogue-license pd +catalogue-topics geometry +catalogue-version 4 + +name aaai-named +category Package +revision 52470 +shortdesc BibTeX style for AAAI +relocated 1 +longdesc A BibTeX style derived from the standard master, presumably for +longdesc use with the aaai package. +containersize 5172 +containerchecksum bb851e6bb3d9c2efd8d9abd32056d0853e320ee7f495b3c595d6a112d5e66bdbcb24107f741249fdfde350dead6763484cc412d380188d29155649b4076c4e77 +runfiles size=6 + RELOC/bibtex/bst/aaai-named/aaai-named.bst +catalogue-ctan /biblio/bibtex/contrib/misc/aaai-named.bst +catalogue-license other-free +catalogue-topics bibtex-sty + +name aalok +category Package +revision 57728 +shortdesc LaTeX class file for the Marathi journal 'Aalok' +relocated 1 +longdesc aalok mraatthii niytkaalikaacii akssrjulnnii krnnyaakritaa +longdesc laattek-vrg. This package provides the class file for +longdesc typesetting 'Aalok', a Marathi journal with LaTeX. +containersize 6312 +containerchecksum f25d1ac4e5de93e910a445e1830694c8f3a4de7976731a334c2bcb32b6fccac9d4386700b037c6c12556a9f9b575f90616cebc00d05f00f1db0273cc708379c6 +doccontainersize 186892 +doccontainerchecksum 80b48b0a8eb1a75d0860d18d3ee4dbd93df3e7b11f3d22f8ec442bea6e16d0dbd1a4bed74450b7683d5e1eb05b43b1e2ffbe04ca15c52c3b7091746c45cb4675 +docfiles size=54 + RELOC/doc/latex/aalok/COPYING + RELOC/doc/latex/aalok/README.txt details="Readme" + RELOC/doc/latex/aalok/aalok.pdf details="Package documentation" language="mr" +srccontainersize 18448 +srccontainerchecksum 389c3ad43370e282bf29b0c80fab0324c66b00c2f379404836f91f77113b0c736c502578317a1b56f37dd25da3f89ac233eab5d21e71f1204c9ce159703f264b +srcfiles size=21 + RELOC/source/latex/aalok/aalok.dtx + RELOC/source/latex/aalok/aalok.ins +runfiles size=7 + RELOC/tex/latex/aalok/aalok.cls +catalogue-contact-bugs https://gitlab.com/aalok/aalok-latex/-/issues +catalogue-contact-repository https://gitlab.com/aalok/aalok-latex +catalogue-ctan /macros/unicodetex/latex/aalok +catalogue-license gpl3+ other-free +catalogue-topics class journalpub marathi +catalogue-version 0.2 + +name aastex +category Package +revision 58057 +shortdesc Macros for Manuscript Preparation for AAS Journals +relocated 1 +longdesc The bundle provides a document class for preparing papers for +longdesc American Astronomical Society publications. Authors who wish to +longdesc submit papers to AAS journals are strongly urged to use this +longdesc class in preference to any of the alternatives available. +containersize 50208 +containerchecksum 9ae52d4142c12621839945213d1f20531350b27f0b1d124d5d5c1bae81d50fbe83ab116d0c65c25852952415eb860eaaf008c119cc10cdb149b964f0b06ad6d0 +doccontainersize 1166168 +doccontainerchecksum bce30656a98d3598312ff399b5e5eb229b89e7e62521748418be718c38c6749a8e9737f6c933f6f32ec948e3ebe1ef339ba9037908741c3b902d33a8fda9b027 +docfiles size=465 + RELOC/doc/latex/aastex/HV_Cet.pdf + RELOC/doc/latex/aastex/KT_Eri.pdf + RELOC/doc/latex/aastex/LMC_2009.pdf + RELOC/doc/latex/aastex/README details="Readme" + RELOC/doc/latex/aastex/RS_Oph.pdf + RELOC/doc/latex/aastex/U_Sco.pdf + RELOC/doc/latex/aastex/V2491_Cyg.pdf + RELOC/doc/latex/aastex/cost.pdf + RELOC/doc/latex/aastex/f4.pdf + RELOC/doc/latex/aastex/f5.pdf + RELOC/doc/latex/aastex/interactive.tar.gz + RELOC/doc/latex/aastex/orcid-ID.png + RELOC/doc/latex/aastex/sample631.bib + RELOC/doc/latex/aastex/sample631.pdf + RELOC/doc/latex/aastex/sample631.tex +runfiles size=66 + RELOC/bibtex/bst/aastex/aasjournal.bst + RELOC/tex/latex/aastex/aastex631.cls +catalogue-ctan /macros/latex/contrib/aastex +catalogue-license lppl1.3 +catalogue-topics astronomy journalpub class +catalogue-version 6.3.1 + +name abbr +category Package +revision 15878 +shortdesc Simple macros supporting abreviations for Plain and LaTeX +relocated 1 +longdesc The package provides some simple macros to support +longdesc abbreviations in Plain TeX or LaTeX. It allows writing (e.g.) +longdesc \ instead of \TeX, hence frees users from having to escape +longdesc space after parameterless macros. +containersize 2628 +containerchecksum 4b5d504cc9438ceb97a6935e66a6eaeb494eb76eb313bed275b1f1a829690569972feec048132e12b5849f398d0a4b291bc5f9ce8462031846ec46bc88ebab3c +doccontainersize 852 +doccontainerchecksum 7080dea132581fdb0803b4ecfdcf4fd5ed5a689bd7e0c7b7b699ef5b3faeab908042f1704cb553ce38e7f37d9facf7d22a74ac71e2cbd269298f35666367f41a +docfiles size=1 + RELOC/doc/generic/abbr/README details="Readme" +runfiles size=2 + RELOC/tex/generic/abbr/abbr.tex +catalogue-ctan /macros/generic/abbr +catalogue-license pd +catalogue-topics abbrev shortcut + +name abc +category Package +revision 41157 +shortdesc Support ABC music notation in LaTeX +relocated 1 +longdesc The abc package lets you include lines of music written in the +longdesc ABC Plus language. The package will then employ the \write18 +longdesc facility to convert your notation to PostScript (using the +longdesc established utility abcm2ps) and hence to the format needed for +longdesc inclusion in your document. +containersize 2608 +containerchecksum 8b1ccd152ed2ad90810551a36f0fa7f114625784fa967f70b67559f9f1e8eb32d7edd08efc9e55dd92723df4039d1bdcc212200d712e99f27de84a153c2a3777 +doccontainersize 281848 +doccontainerchecksum 5f127f8e1ec104b40ac4d5e9bb22965e9376033892362073cdea9f65f1f10a4152f237b4f27bf52dbbe1389f59d3da673434c39a2b3f43d6f17aa60caabd5584 +docfiles size=75 + RELOC/doc/latex/abc/README details="Readme" + RELOC/doc/latex/abc/abc.pdf details="Package documentation" + RELOC/doc/latex/abc/example.tex + RELOC/doc/latex/abc/jacky.abc + RELOC/doc/latex/abc/mupexa.tex + RELOC/doc/latex/abc/poll.abc + RELOC/doc/latex/abc/simple.mup +srccontainersize 9616 +srccontainerchecksum e47ba563a1018edfad97fb0556e4f74c7f3054a56c38304d9a188a92b51554628430332b4e66ebf1d12eb4ec6719cc13d7ea62c23157e70a3c0d40e172b9a04c +srcfiles size=8 + RELOC/source/latex/abc/abc.dtx + RELOC/source/latex/abc/abc.ins +runfiles size=3 + RELOC/tex/latex/abc/abc.sty + RELOC/tex/latex/abc/mup.sty +catalogue-also abc2mtex +catalogue-ctan /macros/latex/contrib/abc +catalogue-license lppl1.2 +catalogue-topics music foreign-import +catalogue-version 2.0b + +name abnt +category Package +revision 55471 +shortdesc Typesetting academic works according to ABNT rules +relocated 1 +longdesc The ABNT package provides a clean and practical implementation +longdesc of the ABNT rules for academic texts. Its purpose is to be as +longdesc simple and user-friendly as possible. +containersize 2800 +containerchecksum 66931af2a5ab583914ea5abe6bb9668d04442c23ab654691e3864ecfaeecf65e3eda47b3d279abb9fdacb385ef9922d6caab808273f87f3bf323a33b441b7bd1 +doccontainersize 120320 +doccontainerchecksum 0a46414ec99e14a60a167ec7ca09d074c802f4232cbd4204e52e9d489edb3b1657c7f33f0a3fd0bbaa09f624cb52903b8a18db43f54c7a1b0aef8c804b53b1b7 +docfiles size=33 + RELOC/doc/latex/abnt/README.md details="Readme" + RELOC/doc/latex/abnt/abnt-doc.pdf details="Package documentation" + RELOC/doc/latex/abnt/abnt-doc.tex +runfiles size=2 + RELOC/tex/latex/abnt/abnt.sty +catalogue-also biblatex-abnt abntex2 +catalogue-ctan /macros/latex/contrib/abnt +catalogue-license lppl1.3c +catalogue-topics portuguese-br + +name abntex2 +category Package +revision 49248 +shortdesc Typeset technical and scientific Brazilian documents based on ABNT rules +relocated 1 +longdesc The bundle provides support for typesetting technical and +longdesc scientific Brazilian documents (like academic thesis, articles, +longdesc reports, research project and others) based on the ABNT rules +longdesc (Associacao Brasileira de Normas Tecnicas). It replaces the old +longdesc abntex. +containersize 29920 +containerchecksum 951c039cf0c97a6bd3974bd01ed9323876f1ee74b8250037dce3e92e00d598ab1cb2cfd0bbf4ea6d37b5f8c3e1095e531aa245ad1a91ee49262e6f99c5c84e59 +doccontainersize 4585444 +doccontainerchecksum b6a5871cc33d94c1294a62aeb809f9d29ccf021cff510497c02edbaef2f155a55847dc521a0f698367692e556b2c588a95066bd3097482b0477a67d4a78b7489 +docfiles size=1717 + RELOC/doc/latex/abntex2/README details="Readme" + RELOC/doc/latex/abntex2/abntex2-doc-abnt-10520.bib + RELOC/doc/latex/abntex2/abntex2-doc-abnt-6023.bib + RELOC/doc/latex/abntex2/abntex2-doc-options.bib + RELOC/doc/latex/abntex2/abntex2-doc-test.bib + RELOC/doc/latex/abntex2/abntex2-doc.bib + RELOC/doc/latex/abntex2/abntex2.pdf details="Package documentation (Brazilian Portuguese)" language="pt-br" + RELOC/doc/latex/abntex2/abntex2.tex + RELOC/doc/latex/abntex2/abntex2cite-alf.pdf details="Citation support package documentation (supplementation)" language="pt-br" + RELOC/doc/latex/abntex2/abntex2cite-alf.tex + RELOC/doc/latex/abntex2/abntex2cite.pdf details="Citation support package documentation (Brazilian Portuguese)" language="pt-br" + RELOC/doc/latex/abntex2/abntex2cite.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-artigo.pdf details="Article template" language="pt-br" + RELOC/doc/latex/abntex2/examples/abntex2-modelo-artigo.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-glossarios.pdf details="Glossary template" language="pt-br" + RELOC/doc/latex/abntex2/examples/abntex2-modelo-glossarios.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-img-grafico.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-img-marca.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-include-comandos.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro.pdf details="Book template" language="pt-br" + RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.pdf details="Research project template" language="pt-br" + RELOC/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-references.bib + RELOC/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.pdf details="Technical report template" language="pt-br" + RELOC/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-slides.pdf details="Presentation template" language="pt-br" + RELOC/doc/latex/abntex2/examples/abntex2-modelo-slides.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.pdf details="Thesis template" language="pt-br" + RELOC/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.tex +runfiles size=54 + RELOC/bibtex/bib/abntex2/abntex2-options.bib + RELOC/bibtex/bst/abntex2/abntex2-alf.bst + RELOC/bibtex/bst/abntex2/abntex2-num.bst + RELOC/tex/latex/abntex2/abntex2.cls + RELOC/tex/latex/abntex2/abntex2abrev.sty + RELOC/tex/latex/abntex2/abntex2cite.sty +catalogue-contact-announce https://github.com/abntex/abntex2/wiki/ReleaseNotes +catalogue-contact-bugs https://github.com/abntex/abntex2/issues +catalogue-contact-development https://github.com/abntex/abntex2/graphs/contributors +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-license lppl1.3 +catalogue-topics dissertation class portuguese-br +catalogue-version 1.9.7 + +name abraces +category Package +revision 58761 +shortdesc Asymmetric over-/underbraces in maths +relocated 1 +longdesc The package provides a character key-driven interface to +longdesc supplement new constructions of the traditional \overbrace and +longdesc \underbrace pairs in an asymmetric or arbitrary way. +containersize 3844 +containerchecksum 1a168bf9f61fbb67bfc8b74fc43d435123d296d92abebf599e1b0d3220eff7400e8e8898c9a97c2e1984dae75c16b40ceb77ffc6493855e63f4ba0fd418debda +doccontainersize 235812 +doccontainerchecksum a505388fe1356354625c78c832bc91c06bda899bb46a058210acc49ccb157283c0d2d5990e4e03b94aad17ea582575b4259e06510841a8b1ead9b4f9cc46e4ab +docfiles size=62 + RELOC/doc/latex/abraces/README.md details="Readme" + RELOC/doc/latex/abraces/abraces-doc.pdf details="Package documentation" + RELOC/doc/latex/abraces/abraces-doc.tex +runfiles size=3 + RELOC/tex/latex/abraces/abraces.sty +catalogue-contact-repository https://github.com/wgrundlingh/abraces +catalogue-ctan /macros/latex/contrib/abraces +catalogue-license lppl1.3 +catalogue-topics maths maths-symbol +catalogue-version 2.0 + +name abstract +category Package +revision 15878 +shortdesc Control the typesetting of the abstract environment +relocated 1 +longdesc The abstract package gives you control over the typesetting of +longdesc the abstract environment, and in particular provides for a one +longdesc column abstract in a two column paper. +containersize 1976 +containerchecksum 2d805c2cc322cd802d612213ce525765d49d06bfb371a4ac5d1434a3c752af0ba0182093b0b6e4ee28a80ab926ad0f3a0403c03f871d3e003f6eb5a60ae39c34 +doccontainersize 146720 +doccontainerchecksum 4feae7e22d9f8c6866a9b873359a3060ff75ebcd833e1ea5f82e833933b5beb36260833675775cdeb83f1cfde4dbae3421434890aa9f0f7539c999acd2e0405b +docfiles size=43 + RELOC/doc/latex/abstract/README details="Readme" + RELOC/doc/latex/abstract/abstract.pdf details="Package documentation" +srccontainersize 8320 +srccontainerchecksum e68a030e56dc15481335dfb1ba566f9b68e92933f27d296d72e20b4d3541790b739b945fc1b39415baadf045164158618da98b63be567c1aa263336579986e8f +srcfiles size=8 + RELOC/source/latex/abstract/abstract.dtx + RELOC/source/latex/abstract/abstract.ins +runfiles size=2 + RELOC/tex/latex/abstract/abstract.sty +catalogue-ctan /macros/latex/contrib/abstract +catalogue-license lppl +catalogue-topics abstract +catalogue-version 1.2a + +name abstyles +category Package +revision 15878 +catalogue abstyles-orig +shortdesc Adaptable BibTeX styles +relocated 1 +longdesc A family of modifications of the standard BibTeX styles whose +longdesc behaviour may be changed by changing the user document, without +longdesc change to the styles themselves. The package is largely used +longdesc nowadays in its adaptation for working with Babel. +containersize 7996 +containerchecksum de7e7a5c7e56ae4fb478c9a072c6b2dc8716ea34ee17be577cf4a485c5506f16cc5b79293cfbc80b245ab350c2e2059dd5fb37a2e28818f492edf7c0416d52e3 +doccontainersize 145936 +doccontainerchecksum d12304eeb2cf797153d7e17beb25c462b3fdf75f5b7b1b24e1ff89d52ce8fe5b2a0fbf88d083ba51301afc45f51871e376253aede36bef21becc1a4350da8259 +docfiles size=74 + RELOC/doc/bibtex/abstyles/README details="Readme" + RELOC/doc/bibtex/abstyles/a4c.sty + RELOC/doc/bibtex/abstyles/a4c.tex + RELOC/doc/bibtex/abstyles/abstdok.pdf details="Outline of the family" language="de" + RELOC/doc/bibtex/abstyles/abstdok.tex + RELOC/doc/bibtex/abstyles/apreambl.doc + RELOC/doc/bibtex/abstyles/btxabst.doc + RELOC/doc/bibtex/abstyles/docmac.doc + RELOC/doc/bibtex/abstyles/docmac.tex +runfiles size=33 + RELOC/bibtex/bib/abstyles/acompat.bib + RELOC/bibtex/bib/abstyles/jourabbr.bib + RELOC/bibtex/bib/abstyles/jourfull.bib + RELOC/bibtex/bst/abstyles/aabbrv.bst + RELOC/bibtex/bst/abstyles/aalpha.bst + RELOC/bibtex/bst/abstyles/anotit.bst + RELOC/bibtex/bst/abstyles/aplain.bst + RELOC/bibtex/bst/abstyles/aunsnot.bst + RELOC/bibtex/bst/abstyles/aunsrt.bst + RELOC/tex/generic/abstyles/apreambl.tex +catalogue-ctan /biblio/bibtex/contrib/abstyles +catalogue-license other-free +catalogue-topics bibtex-sty + +name academicons +category Package +revision 56119 +shortdesc Font containing high quality icons of online academic profiles +relocated 1 +longdesc The academicons package provides access in (La)TeX to 112 high +longdesc quality icons of online academic profiles included in the free +longdesc "Academicons" font. This package requires either the Xe(La)TeX +longdesc or Lua(La)TeX engine to load the "Academicons" font from the +longdesc system, which requires installing the bundled academicons.ttf +longdesc font file. As new releases come out, it is recommended to +longdesc install the bundled font version as there may be differences +longdesc between the package and previous font versions or newest font +longdesc versions not yet contemplated in the package. The "Academicons" +longdesc font was designed by James Walsh and released (see +longdesc http://jpswalsh.github.io/academicons/) under the open SIL Open +longdesc Font License. This package is a redistribution of the free +longdesc "Academicons" font with specific bindings for (La)TeX. It is +longdesc inspired and based on the fontawesome" package. The academicons +longdesc package provides the generic \aiicon command to access icons, +longdesc which takes as mandatory argument the name of the desired icon. +longdesc It also provides individual direct commands for each specific +longdesc icon. The full list of icons and their respective names and +longdesc direct commands can be found in the manual. For example, +longdesc \aiicon{googlescholar} yields the same result as +longdesc \aiGoogleScholar. +containersize 32636 +containerchecksum 87e2c5436f92e288c94d612380a2bd6736a19b7a6ba714c0d33bfad27aaab79cdf264b585e722055b1d8402be5c0001c1d8759ac3b79d6c2759c90d6a36d2f6a +doccontainersize 103408 +doccontainerchecksum 55f9e0192b8e50126fd573aee69ce5d7f389448f7af9e2973515ae49c552adaadd3eb8f06f019e42d0caa23c2d9a7841ae5fb7f6c0b6eed9a43eb60f7b0dd964 +docfiles size=29 + RELOC/doc/fonts/academicons/README details="Readme" + RELOC/doc/fonts/academicons/academicons.pdf details="Package documentation" + RELOC/doc/fonts/academicons/academicons.tex +runfiles size=21 + RELOC/fonts/truetype/public/academicons/academicons.ttf + RELOC/tex/latex/academicons/academicons.sty + RELOC/tex/latex/academicons/tuacademicons.fd +catalogue-contact-repository https://github.com/diogo-fernan/academicons +catalogue-ctan /fonts/academicons +catalogue-license lppl1.3c ofl +catalogue-topics font font-supp-symbol font-symbol font-ttf +catalogue-version 1.9.0 + +name accanthis +category Package +revision 32089 +shortdesc Accanthis fonts, with LaTeX support +relocated 1 +longdesc Accanthis No. 3 is designed by Hirwin Harendal and is suitable +longdesc as an alternative to fonts such as Garamond, Galliard, Horley +longdesc old style, Sabon, and Bembo. The support files are suitable for +longdesc use with all LaTeX engines. +execute addMap accanthis.map +containersize 368064 +containerchecksum 9edbbdd97ea30709f0e0e1959bac7806c188d610e414f037a4115747f57ce7ad68be67b75506f9ce186c951a2c46c3bcd5b0697bb72d81fc48465906cd245be0 +doccontainersize 300384 +doccontainerchecksum efa2cbf4c11b28dc0a907b62d8818489ca48c458419e37571633adb8403f914c01d28431684705363e56cc100adf7cff6539f19fae9e4b23e6cf3dc210109810 +docfiles size=84 + RELOC/doc/fonts/accanthis/Accanthis-Cat.pdf details="Arkandis catalogue page" language="fr" + RELOC/doc/fonts/accanthis/COPYING + RELOC/doc/fonts/accanthis/NOTICE.txt + RELOC/doc/fonts/accanthis/README details="Readme" + RELOC/doc/fonts/accanthis/accanthis-samples.pdf details="Font sample page" + RELOC/doc/fonts/accanthis/accanthis-samples.tex +runfiles size=204 + RELOC/fonts/enc/dvips/accanthis/acnt_m4gnvn.enc + RELOC/fonts/enc/dvips/accanthis/acnt_qu6a6x.enc + RELOC/fonts/enc/dvips/accanthis/acnt_sjpjw4.enc + RELOC/fonts/enc/dvips/accanthis/acnt_z4e4wk.enc + RELOC/fonts/map/dvips/accanthis/accanthis.map + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Bold.otf + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic.otf + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Italic.otf + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Regular.otf + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1.tfm + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Bold.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Italic.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Regular.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-RegularLCDFJ.pfb + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1.vf + RELOC/tex/latex/accanthis/LY1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/OT1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/T1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/TS1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/accanthis.sty +catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html +catalogue-ctan /fonts/accanthis +catalogue-license gpl2 +catalogue-topics font font-serif font-type1 font-otf + +name accents +category Package +revision 51497 +shortdesc Multiple mathematical accents +relocated 1 +longdesc A package for multiple accents in mathematics, with nice +longdesc features concerning the creation of accents and placement of +longdesc scripts. +containersize 2956 +containerchecksum 738e8299148365c0441495664cd97b408b181d192adb718adeacc93d4c63b7e81c12541746777571f3fd0da37348905269b5d7ecfc2d58f88174cd53edbe56b3 +doccontainersize 239048 +doccontainerchecksum 50e5cd01da80113ef3247c4a7c7da703d4a9c3df68822b31ff734da2d755f5fd2bf9f5f8982d84e3628e96905276dfe6cc6699bb625ff1dadbe810b11bf5a35b +docfiles size=61 + RELOC/doc/latex/accents/README.md details="Readme" + RELOC/doc/latex/accents/accents.pdf details="Package documentation" + RELOC/doc/latex/accents/accents.tex +runfiles size=2 + RELOC/tex/latex/accents/accents.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos +catalogue-ctan /macros/latex/contrib/accents +catalogue-license mit +catalogue-topics maths +catalogue-version 1.4 + +name accessibility +category Package +revision 55777 +shortdesc Create tagged and structured PDF files +relocated 1 +longdesc The accessibility package is intended to create tagged, +longdesc structured PDF documents from LaTeX source code. It allows to +longdesc produce tagged PDF output following Adobe's PDF-1.5 and 1.6 +longdesc specifications. This package is predominantly targeted at +longdesc documents produced using the KOMA-Script document classes. +longdesc However, the author told us towards the end of June 2020: +longdesc "Based on feedback to the 'accessibility' package and +longdesc discussions with a few folks, I'd like to discourage people +longdesc from using the package any more. It's evident that it's not +longdesc going to work in it's current form, and I don't have the skills +longdesc or time to update it. I know the general concept is very +longdesc important, and so I'm looking at getting support from various +longdesc funding agencies to employ someone to completely refactor the +longdesc code in a more future-proof fashion. I'll coordinate this with +longdesc the core LaTeX Team once I have more solid ideas." +containersize 13628 +containerchecksum 6cbc455f40a6aeb5862bbed64e6ec111d497f1948fa6eb83d26fc04c85c1145437005aa046e20eae70f177ff04c7084f03c2d4b3234be6c6ece822d6f366520f +doccontainersize 496876 +doccontainerchecksum 261d13857558973edb692ed320745173a5006d0cd23418e926be5398b4f3a2da0a670e3a08a26083381e830f4bd327eaa4451822ef096612a7a3c3492833c328 +docfiles size=566 + RELOC/doc/latex/accessibility/CHANGELOG.md + RELOC/doc/latex/accessibility/README.md details="Readme" + RELOC/doc/latex/accessibility/accessibility-Anleitung-DE.pdf details="Package documentation" language="de" + RELOC/doc/latex/accessibility/accessibility.pdf details="Package documentation" language="en" +srccontainersize 31060 +srccontainerchecksum a7218b14ca307c9e02f6c562db3bb381a8a57ff758fecfc36f758bb70a151ca83e3401c7e2254ad2f75fe62d762cedec0746b07f5f5f6b82982675f42faa4e31 +srcfiles size=36 + RELOC/source/latex/accessibility/accessibility.dtx + RELOC/source/latex/accessibility/accessibility.ins +runfiles size=17 + RELOC/tex/latex/accessibility/accessibility.sty +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-license lppl1.3c +catalogue-topics accessible pdf-feat +catalogue-version 2.0.3 + +name accfonts +category Package +revision 18835 +shortdesc Utilities to derive new fonts from existing ones +longdesc The accfonts package contains three utilities to permit easy +longdesc manipulation of fonts, in particular the creation of unusual +longdesc accented characters. Mkt1font works on Adobe Type 1 fonts, +longdesc vpl2vpl works on TeX virtual fonts and vpl2ovp transforms a TeX +longdesc font to an Omega one. All three programs read in a font (either +longdesc the font itself or a property list), together with a simple +longdesc definition file containing lines such as '128 z acute'; they +longdesc then write out a new version of the font with the requested new +longdesc characters in the numerical slots specified. Great care is +longdesc taken over the positioning of accents, and over the provision +longdesc of kerning information for new characters; mkt1font also +longdesc generates suitable "hints" to enhance quality at small sizes or +longdesc poor resolutions. The programs are written in Perl. +depend accfonts.ARCH +containersize 22268 +containerchecksum f70105569c5b8ed83c103e423d29367702a5330d57f743a640ef68fc6a290b246e8f514907d63d6c7f203c12ab3eeb0cc64a45fe5c0379f10ccf1c8002007a47 +doccontainersize 15612 +doccontainerchecksum 24b19688008b875890a397e2250277f81be1b77c00f95a9a2d40a257c0dc6f4c8adfc07e594f3873e60e1bfbcfeba786e45e9e63eb632ca92b7c935f74b3049e +docfiles size=15 + texmf-dist/doc/fonts/accfonts/CHANGES + texmf-dist/doc/fonts/accfonts/COPYING + texmf-dist/doc/fonts/accfonts/README details="Package Readme and documentation" +runfiles size=37 + texmf-dist/scripts/accfonts/mkt1font + texmf-dist/scripts/accfonts/vpl2ovp + texmf-dist/scripts/accfonts/vpl2vpl + texmf-dist/tex/latex/accfonts/CSX.def + texmf-dist/tex/latex/accfonts/ISO-Latin1.def + texmf-dist/tex/latex/accfonts/ISO-Latin2.def + texmf-dist/tex/latex/accfonts/IndUni_Omega.def + texmf-dist/tex/latex/accfonts/Norman.def +catalogue-also a2ac +catalogue-ctan /fonts/utilities/accfonts +catalogue-license gpl +catalogue-topics font-proc omega +catalogue-version 0.25 + +name accfonts.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of accfonts +containersize 380 +containerchecksum eec8c0bfd2455cd7ff7ce13f3da43540bfc2ffd4840841a58f282f4f24a870b15eb2ce2278008e29754277eb3f250e0513bc2f64ce3272bcf9b6822f9a62ae7d +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/mkt1font + bin/aarch64-linux/vpl2ovp + bin/aarch64-linux/vpl2vpl + +name accfonts.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of accfonts +containersize 380 +containerchecksum eb3b836882adf662154ca90697b9131daa855a77dbc7dca67697e54ca74a3b627628d2a333abcfde66be2b9b5b41b8ac240b66431ccb851d33f06e397efa9837 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/mkt1font + bin/amd64-freebsd/vpl2ovp + bin/amd64-freebsd/vpl2vpl + +name accfonts.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of accfonts +containersize 380 +containerchecksum 57cf2e690bc6e2a8119b5ae8904288193c4b903a5d3ecdca8a56f627cff89cf76f7ba43cbbfe6d02b788d674a22243509ff554f61f8fb4970694c4b84be3af73 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/mkt1font + bin/amd64-netbsd/vpl2ovp + bin/amd64-netbsd/vpl2vpl + +name accfonts.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of accfonts +containersize 384 +containerchecksum e25d0bdc682eff44dcdbe8a34daf4c50eb99752a02a2b8efa25122eceac013b64e8f662f36941f87d8f00db16ca2821feff5d4d338a42672d0f4da596311dd19 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/mkt1font + bin/armhf-linux/vpl2ovp + bin/armhf-linux/vpl2vpl + +name accfonts.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of accfonts +containersize 376 +containerchecksum e0e805fccb816f1a29ed3907f53b720e4b3cb0f4dd5f60a728d128b13ab9ad3cb79150e283f8822e5d59987253a85a54da32e9e38c342931774ce01a12dc3f78 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/mkt1font + bin/i386-cygwin/vpl2ovp + bin/i386-cygwin/vpl2vpl + +name accfonts.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of accfonts +containersize 384 +containerchecksum 7647effa24750ef3130003fc469f0027daaa4fccf008be5f0c92b15d76a30a1e55b585abeae8041e42a5b9a09057c801b81534dbb5fb6ffc9e60afd4a8ccc1e3 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/mkt1font + bin/i386-freebsd/vpl2ovp + bin/i386-freebsd/vpl2vpl + +name accfonts.i386-linux +category Package +revision 12688 +shortdesc i386-linux files of accfonts +containersize 380 +containerchecksum 37d554bd446cedb91d55f40990cc1904356aa352490124487efdf5185f94599bf109ee953fc2628dcfd2b1d3007b5865666cbe1498a39a40eb4a4894c4647798 +binfiles arch=i386-linux size=3 + bin/i386-linux/mkt1font + bin/i386-linux/vpl2ovp + bin/i386-linux/vpl2vpl + +name accfonts.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of accfonts +containersize 384 +containerchecksum 43c8184d5ef6f8a9a2c604c52e14e6b2617f9ab197adf8c9635c6b73bfe87ea6fd639316759d61207e6c9876281f171f44e65b77e4fc2052cca17b0fdf935ad4 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/mkt1font + bin/i386-netbsd/vpl2ovp + bin/i386-netbsd/vpl2vpl + +name accfonts.i386-solaris +category Package +revision 12688 +shortdesc i386-solaris files of accfonts +containersize 380 +containerchecksum 95ddce63f1a821a47e5abf205280e7a229a3f09dd4875369f355114fe87740e6e49dd1fd25ab68f1c7727fdc3b3030106a8a83fadfb07cbdc0a5a3e82679e09e +binfiles arch=i386-solaris size=3 + bin/i386-solaris/mkt1font + bin/i386-solaris/vpl2ovp + bin/i386-solaris/vpl2vpl + +name accfonts.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of accfonts +containersize 380 +containerchecksum cd47de4d485569128fda0d4298a9d722b8040b8ecdc4ddd55687abfd2061d1f4f0ef48720bece1461f16be3c85c553f26fe96e04e6005a8fe39810102f5aeca3 +binfiles arch=universal-darwin size=3 + bin/universal-darwin/mkt1font + bin/universal-darwin/vpl2ovp + bin/universal-darwin/vpl2vpl + +name accfonts.win32 +category Package +revision 15404 +shortdesc win32 files of accfonts +containersize 716 +containerchecksum 41972a6b0f91c1b836af1eab11fc5df535f9ec1d1de3a1d6c7f0747a33b1cfe72398c2136e3049dc832a1337761c46f0cc5c9cabd0ad14586d289c6ade59b318 +binfiles arch=win32 size=3 + bin/win32/mkt1font.exe + bin/win32/vpl2ovp.exe + bin/win32/vpl2vpl.exe + +name accfonts.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of accfonts +containersize 380 +containerchecksum e3179ae256fb60c33239a09bd292737b09c2c036c0888e5d12f6dd14659f35a3c3edd22c16289f0192ab9c250462445a2e55ad55e6b95c8b3efbf3f86b966004 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/mkt1font + bin/x86_64-cygwin/vpl2ovp + bin/x86_64-cygwin/vpl2vpl + +name accfonts.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of accfonts +containersize 392 +containerchecksum c3e040cfb597b3bbeb7b4f04a2aa5bc23016f7be859bc1ee04dc0a37ca9b9df63aef550bc625304021b29becac1c939d1d33467d9daddde927293637c30fdda1 +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/mkt1font + bin/x86_64-darwinlegacy/vpl2ovp + bin/x86_64-darwinlegacy/vpl2vpl + +name accfonts.x86_64-linux +category Package +revision 12688 +shortdesc x86_64-linux files of accfonts +containersize 380 +containerchecksum 586a36b09c10e89943cbdd535902f629d5937500dc6bf3b9020c5b2cd6463d46a5629cfdfee1a8442ea62eeeffb16d7bbb3d529d9db4e4a798cc78db39020f7a +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/mkt1font + bin/x86_64-linux/vpl2ovp + bin/x86_64-linux/vpl2vpl + +name accfonts.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of accfonts +containersize 388 +containerchecksum 2e3bbdec4f92c7c616b52b2b91451a1c7234e89616e660a4f3fe114deb6ab12c28c8700bdff30cb1f482fbad30705a892667f34f69b10918b392bb39470f5ca4 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/mkt1font + bin/x86_64-linuxmusl/vpl2ovp + bin/x86_64-linuxmusl/vpl2vpl + +name accfonts.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of accfonts +containersize 380 +containerchecksum 964a9b1e5f7b7113f24f9dc542e79cadf8e65fbd4782623d48f6b834296b9d1ce8bc7a92e45628742cd5e668bd35c954f1c9d685918cf598c8259d371acebec3 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/mkt1font + bin/x86_64-solaris/vpl2ovp + bin/x86_64-solaris/vpl2vpl + +name accsupp +category Package +revision 53052 +shortdesc Better accessibility support for PDF files +relocated 1 +longdesc Since PDF 1.5 portions of a page can be marked for better +longdesc accessibility support. For example, replacement texts or +longdesc expansions of abbreviations can be provided. This package +longdesc starts with providing a minimal low-level interface for +longdesc programmers; its status is experimental. Support necessary for +longdesc the package was added to the "distill" capabilities of +longdesc Ghostscript with version 9.15 of Ghostscript; the dvips is only +longdesc available with that version (or later). +containersize 3304 +containerchecksum 0b6e474617333ca00c2503e99f60a290b930d7e7534de7223be511404aa6c7ba9a8dd69b94f3433b347146bba7b8dbbd4b6d45ed8b2c6b0880c0177842ba8b45 +doccontainersize 327132 +doccontainerchecksum 650909f5212a92659d18ba3ef5209ed12c9b9ddff2b3157ea17cdbc8955536f41e43dafcd715e5ec26c1d0c839ffb7b26081ea36150b2f0f50c952c5231a1a20 +docfiles size=84 + RELOC/doc/latex/accsupp/README.md details="Readme" + RELOC/doc/latex/accsupp/accsupp-example1.tex + RELOC/doc/latex/accsupp/accsupp-example2.tex + RELOC/doc/latex/accsupp/accsupp.pdf details="Package documentation" +srccontainersize 8184 +srccontainerchecksum e867fabe08188b8fe68c1d9ac6688fb99f69422db26b4cd611028cb8880ce90a8981efb7eb7c49f4fd3d1182d3b99cd90f171959751d7e1ecc1f7880d5a8b5a8 +srcfiles size=8 + RELOC/source/latex/accsupp/accsupp.dtx +runfiles size=6 + RELOC/tex/latex/accsupp/accsupp-dvipdfm.def + RELOC/tex/latex/accsupp/accsupp-dvips.def + RELOC/tex/latex/accsupp/accsupp-luatex.def + RELOC/tex/latex/accsupp/accsupp-pdftex.def + RELOC/tex/latex/accsupp/accsupp.sty +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-license lppl1.3c +catalogue-topics accessible pdf-feat +catalogue-version 0.6 + +name achemso +category Package +revision 57479 +shortdesc Support for American Chemical Society journal submissions +relocated 1 +longdesc The bundle provides the official macros (achemso.cls) and +longdesc BibTeX styles (achemso.bst and biochem.bst) for submission to +longdesc the journals of the American Chemical Society. The natmove +longdesc package, which moves citations relative to punctuation, is +longdesc distributed as part of the bundle. +containersize 19268 +containerchecksum 8b9f9131539eaaca0367ddca7918b5f56d0a5520bf5c16dcabedc51c41cc695967ae246751d327f604d27ceea1884b077d0fb9df40c19ef0a719ae50058a6b9b +doccontainersize 860228 +doccontainerchecksum dd5831de3d86fb38a7e74240aec3df7a90546d059e5a008d2a7a65d7f76d67bcda360706b1c6e1b158a7efe1ae126c6812b5713d57646ed7184a31e639127d00 +docfiles size=228 + RELOC/doc/latex/achemso/CHANGELOG.md + RELOC/doc/latex/achemso/LICENSE.md + RELOC/doc/latex/achemso/README.md details="Readme" + RELOC/doc/latex/achemso/achemso-demo.bib + RELOC/doc/latex/achemso/achemso-demo.pdf details="Example of use" + RELOC/doc/latex/achemso/achemso-demo.tex + RELOC/doc/latex/achemso/achemso.pdf details="Package documentation" + RELOC/doc/latex/achemso/acs-achemso.bib +srccontainersize 31504 +srccontainerchecksum 3e2ed978f71bcd8546cd979944f31db85cffdf7635cc20db4043e6c8ee9c484aa44b1973cc3109a37ef0bd779e1de64f86ff51de786ae1b3c3bf80eea9822e3a +srcfiles size=39 + RELOC/source/latex/achemso/achemso.dtx + RELOC/source/latex/achemso/achemso.ins +runfiles size=105 + RELOC/bibtex/bst/achemso/achemso.bst + RELOC/bibtex/bst/achemso/biochem.bst + RELOC/tex/latex/achemso/achemso-aaembp.cfg + RELOC/tex/latex/achemso/achemso-aaemcq.cfg + RELOC/tex/latex/achemso/achemso-aamick.cfg + RELOC/tex/latex/achemso/achemso-aanmf6.cfg + RELOC/tex/latex/achemso/achemso-aapmcd.cfg + RELOC/tex/latex/achemso/achemso-aastgj.cfg + RELOC/tex/latex/achemso/achemso-abmcb8.cfg + RELOC/tex/latex/achemso/achemso-abseba.cfg + RELOC/tex/latex/achemso/achemso-acbcct.cfg + RELOC/tex/latex/achemso/achemso-accacs.cfg + RELOC/tex/latex/achemso/achemso-achre4.cfg + RELOC/tex/latex/achemso/achemso-acncdm.cfg + RELOC/tex/latex/achemso/achemso-acsccc.cfg + RELOC/tex/latex/achemso/achemso-acscii.cfg + RELOC/tex/latex/achemso/achemso-acsodf.cfg + RELOC/tex/latex/achemso/achemso-aeacb3.cfg + RELOC/tex/latex/achemso/achemso-aeacc4.cfg + RELOC/tex/latex/achemso/achemso-aeecco.cfg + RELOC/tex/latex/achemso/achemso-aelccp.cfg + RELOC/tex/latex/achemso/achemso-aesccq.cfg + RELOC/tex/latex/achemso/achemso-aewcaa.cfg + RELOC/tex/latex/achemso/achemso-afsthl.cfg + RELOC/tex/latex/achemso/achemso-aidcbc.cfg + RELOC/tex/latex/achemso/achemso-amacgu.cfg + RELOC/tex/latex/achemso/achemso-amachv.cfg + RELOC/tex/latex/achemso/achemso-amclct.cfg + RELOC/tex/latex/achemso/achemso-amlccd.cfg + RELOC/tex/latex/achemso/achemso-amlcef.cfg + RELOC/tex/latex/achemso/achemso-amrcda.cfg + RELOC/tex/latex/achemso/achemso-anaccx.cfg + RELOC/tex/latex/achemso/achemso-ancac3.cfg + RELOC/tex/latex/achemso/achemso-ancham.cfg + RELOC/tex/latex/achemso/achemso-aoiab5.cfg + RELOC/tex/latex/achemso/achemso-apcach.cfg + RELOC/tex/latex/achemso/achemso-apchd5.cfg + RELOC/tex/latex/achemso/achemso-appccd.cfg + RELOC/tex/latex/achemso/achemso-asbcd6.cfg + RELOC/tex/latex/achemso/achemso-ascecg.cfg + RELOC/tex/latex/achemso/achemso-ascefj.cfg + RELOC/tex/latex/achemso/achemso-bcches.cfg + RELOC/tex/latex/achemso/achemso-bichaw.cfg + RELOC/tex/latex/achemso/achemso-bomaf6.cfg + RELOC/tex/latex/achemso/achemso-cgdefu.cfg + RELOC/tex/latex/achemso/achemso-chreay.cfg + RELOC/tex/latex/achemso/achemso-cmatex.cfg + RELOC/tex/latex/achemso/achemso-crtoec.cfg + RELOC/tex/latex/achemso/achemso-enfuem.cfg + RELOC/tex/latex/achemso/achemso-esthag.cfg + RELOC/tex/latex/achemso/achemso-estlcu.cfg + RELOC/tex/latex/achemso/achemso-iecred.cfg + RELOC/tex/latex/achemso/achemso-inoraj.cfg + RELOC/tex/latex/achemso/achemso-jaaucr.cfg + RELOC/tex/latex/achemso/achemso-jacsat.cfg + RELOC/tex/latex/achemso/achemso-jafcau.cfg + RELOC/tex/latex/achemso/achemso-jceaax.cfg + RELOC/tex/latex/achemso/achemso-jceda8.cfg + RELOC/tex/latex/achemso/achemso-jcisd8.cfg + RELOC/tex/latex/achemso/achemso-jctcce.cfg + RELOC/tex/latex/achemso/achemso-jmcmar.cfg + RELOC/tex/latex/achemso/achemso-jnprdf.cfg + RELOC/tex/latex/achemso/achemso-joceah.cfg + RELOC/tex/latex/achemso/achemso-jpcafh.cfg + RELOC/tex/latex/achemso/achemso-jpcbfk.cfg + RELOC/tex/latex/achemso/achemso-jpccck.cfg + RELOC/tex/latex/achemso/achemso-jpclcd.cfg + RELOC/tex/latex/achemso/achemso-jprobs.cfg + RELOC/tex/latex/achemso/achemso-langd5.cfg + RELOC/tex/latex/achemso/achemso-mamobx.cfg + RELOC/tex/latex/achemso/achemso-mpohbp.cfg + RELOC/tex/latex/achemso/achemso-nalefd.cfg + RELOC/tex/latex/achemso/achemso-oprdfk.cfg + RELOC/tex/latex/achemso/achemso-orgnd7.cfg + RELOC/tex/latex/achemso/achemso-orlef7.cfg + RELOC/tex/latex/achemso/achemso.cls + RELOC/tex/latex/achemso/achemso.sty + RELOC/tex/latex/achemso/natmove.sty +catalogue-ctan /macros/latex/contrib/achemso +catalogue-license lppl1.3c +catalogue-topics chemistry journalpub bibtex-sty class +catalogue-version 3.13c + +name acmart +category Package +revision 58893 +shortdesc Class for typesetting publications of ACM +relocated 1 +longdesc This package provides a class for typesetting publications of +longdesc the Association for Computing Machinery (ACM). +containersize 38456 +containerchecksum 4de88377bd70e14340ec18396a39262037c09b821efcfb9ed5a9149f38a2cd53088911e59f0e6634b93c29b7ff72569ac059f23c80b87799e7f7843c08384345 +doccontainersize 3532112 +doccontainerchecksum c71866f74f6b0cba3719a696bfc2818a3310fee24c32acc10cee0343e70082721b2216daae36a7753d6c125b44e56dbec0b085fe04fd9c90918c7ca2f7d014a6 +docfiles size=2620 + RELOC/doc/latex/acmart/README details="Readme" + RELOC/doc/latex/acmart/acmart.bib + RELOC/doc/latex/acmart/acmart.pdf details="Documentation" + RELOC/doc/latex/acmart/acmguide.pdf + RELOC/doc/latex/acmart/samples/sample-acmlarge.pdf + RELOC/doc/latex/acmart/samples/sample-acmlarge.tex + RELOC/doc/latex/acmart/samples/sample-acmsmall-conf.pdf + RELOC/doc/latex/acmart/samples/sample-acmsmall-conf.tex + RELOC/doc/latex/acmart/samples/sample-acmsmall-submission.pdf + RELOC/doc/latex/acmart/samples/sample-acmsmall-submission.tex + RELOC/doc/latex/acmart/samples/sample-acmsmall.pdf + RELOC/doc/latex/acmart/samples/sample-acmsmall.tex + RELOC/doc/latex/acmart/samples/sample-acmtog.pdf + RELOC/doc/latex/acmart/samples/sample-acmtog.tex + RELOC/doc/latex/acmart/samples/sample-authordraft.pdf + RELOC/doc/latex/acmart/samples/sample-authordraft.tex + RELOC/doc/latex/acmart/samples/sample-base.bib + RELOC/doc/latex/acmart/samples/sample-franklin.png + RELOC/doc/latex/acmart/samples/sample-lualatex.pdf + RELOC/doc/latex/acmart/samples/sample-lualatex.tex + RELOC/doc/latex/acmart/samples/sample-manuscript.pdf details="Example of use" + RELOC/doc/latex/acmart/samples/sample-manuscript.tex + RELOC/doc/latex/acmart/samples/sample-sigconf.pdf + RELOC/doc/latex/acmart/samples/sample-sigconf.tex + RELOC/doc/latex/acmart/samples/sample-sigplan.pdf + RELOC/doc/latex/acmart/samples/sample-sigplan.tex + RELOC/doc/latex/acmart/samples/sample-xelatex.pdf + RELOC/doc/latex/acmart/samples/sample-xelatex.tex + RELOC/doc/latex/acmart/samples/samples.dtx + RELOC/doc/latex/acmart/samples/samples.ins + RELOC/doc/latex/acmart/samples/sampleteaser.pdf +srccontainersize 53824 +srccontainerchecksum 69c661c3c7f90ed3aced2f3f3dbbdcc77098416460e708a90f7824c70203f92a58e7ffa1c095e3e4efdb5af351e13e35c45e625aa8c173b65a0842cf8a2d614d +srcfiles size=63 + RELOC/source/latex/acmart/Makefile + RELOC/source/latex/acmart/acmart.dtx + RELOC/source/latex/acmart/acmart.ins +runfiles size=54 + RELOC/bibtex/bst/acmart/ACM-Reference-Format.bst + RELOC/tex/latex/acmart/ACM-Reference-Format.bbx + RELOC/tex/latex/acmart/ACM-Reference-Format.cbx + RELOC/tex/latex/acmart/ACM-Reference-Format.dbx + RELOC/tex/latex/acmart/acmart.cls +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-license lppl1.3 +catalogue-topics class comp-sci comp-theory engineering journalpub +catalogue-version 1.77 + +name acmconf +category Package +revision 15878 +shortdesc Class for ACM conference proceedings +relocated 1 +longdesc This class may be used to typeset articles to be published in +longdesc the proceedings of ACM (Association for Computing Machinery) +longdesc conferences and workshops. The layout produced by the acmconf +longdesc class is based on the ACM's own specification. +containersize 4192 +containerchecksum 9363127ba5d59bee9d41e800a0e11d12bc4493e5a79a94be8efe23a44278ea097a58fb53cd334fef0f2ab32c9350196c46ee1aec8347a4aa5554b317c15249ba +doccontainersize 89944 +doccontainerchecksum a8a971df6a94a9548b71c1463b9ab143525127774daf5aab227a805c302ee0732d3578c361c5346b123983a32e6d6c8afbd543bca4dc7ac7ad4d5919aba63099 +docfiles size=50 + RELOC/doc/latex/acmconf/README details="Readme" + RELOC/doc/latex/acmconf/THIS-IS-VERSION-1.3 + RELOC/doc/latex/acmconf/accept.tex + RELOC/doc/latex/acmconf/acmconf.pdf details="Package documentation" + RELOC/doc/latex/acmconf/body.eps + RELOC/doc/latex/acmconf/error.tex + RELOC/doc/latex/acmconf/prepare.tex + RELOC/doc/latex/acmconf/print.tex + RELOC/doc/latex/acmconf/pubform.bib + RELOC/doc/latex/acmconf/pubform.tex + RELOC/doc/latex/acmconf/publish.tex + RELOC/doc/latex/acmconf/submit.tex +srccontainersize 18700 +srccontainerchecksum bd9ffcd848571f2a4ffaa7f324835c74abd59ad1d2816b6dbad5fcac7fb06b98c38059dab7261b4bf7d811d56d0ad48d23ac81525cf95a2e6a190a25a6de9d82 +srcfiles size=20 + RELOC/source/latex/acmconf/Makefile + RELOC/source/latex/acmconf/acmconf.dtx + RELOC/source/latex/acmconf/acmconf.ins +runfiles size=4 + RELOC/tex/latex/acmconf/acmconf.cls +catalogue-ctan /macros/latex/contrib/acmconf +catalogue-license lppl +catalogue-topics confproc journalpub class +catalogue-version 1.3 + +name acro +category Package +revision 57447 +shortdesc Typeset acronyms +relocated 1 +longdesc The package enables the author to create acronyms in a simple +longdesc way, and provides means to add them to different 'classes' of +longdesc acronyms. Lists can be created of separate acronym classes. The +longdesc package option 'single' instructs the package to ignore +longdesc acronyms that are used only once in the whole document. As an +longdesc experimental feature the package also offers the option 'sort' +longdesc which automatically sorts the list created by \printacronyms. +depend etoolbox +depend l3kernel +depend l3packages +containersize 43672 +containerchecksum 5f0b03e3ceaab172a0c92e7f29795a0878118a07be27f079800703c0f59f127c2ca09b53922d7ce3f16ae772ec28528a69ac407092dccc2f5bb621460e6f38ee +doccontainersize 1223432 +doccontainerchecksum 5d558296f2b0a4442b82e49be12ae1f3dc80d40012d138ce4ef12ee8e22ef1b6d934acf7364c59be0138077311e8dc7b5bfac42478aa68a14750a6c41de1c6a4 +docfiles size=366 + RELOC/doc/latex/acro/README details="Readme" + RELOC/doc/latex/acro/acro-manual.pdf details="Package documentation" + RELOC/doc/latex/acro/acro-manual.tex + RELOC/doc/latex/acro/examples/acro.example.acflike.pdf + RELOC/doc/latex/acro/examples/acro.example.acflike.tex + RELOC/doc/latex/acro/examples/acro.example.basic.pdf + RELOC/doc/latex/acro/examples/acro.example.basic.tex + RELOC/doc/latex/acro/examples/acro.example.issue-109.pdf + RELOC/doc/latex/acro/examples/acro.example.issue-109.tex + RELOC/doc/latex/acro/examples/acro.example.issue-111.pdf + RELOC/doc/latex/acro/examples/acro.example.issue-111.tex + RELOC/doc/latex/acro/examples/acro.example.issue-119.pdf + RELOC/doc/latex/acro/examples/acro.example.issue-119.tex + RELOC/doc/latex/acro/examples/acro.example.issue-154.pdf + RELOC/doc/latex/acro/examples/acro.example.issue-154.tex + RELOC/doc/latex/acro/examples/acro.example.possessive.pdf + RELOC/doc/latex/acro/examples/acro.example.possessive.tex + RELOC/doc/latex/acro/examples/acro.example.texsx-505891.pdf + RELOC/doc/latex/acro/examples/acro.example.texsx-505891.tex + RELOC/doc/latex/acro/examples/acro.example.texsx-507726.pdf + RELOC/doc/latex/acro/examples/acro.example.texsx-507726.tex + RELOC/doc/latex/acro/examples/acro.example.texsx-513623.pdf + RELOC/doc/latex/acro/examples/acro.example.texsx-513623.tex + RELOC/doc/latex/acro/examples/acro.example.texsx-515295.pdf + RELOC/doc/latex/acro/examples/acro.example.texsx-515295.tex + RELOC/doc/latex/acro/examples/acro.example.texsx-542461.pdf + RELOC/doc/latex/acro/examples/acro.example.texsx-542461.tex + RELOC/doc/latex/acro/examples/acro.example.units.pdf + RELOC/doc/latex/acro/examples/acro.example.units.tex +runfiles size=80 + RELOC/tex/latex/acro/acro-examples.sty + RELOC/tex/latex/acro/acro.sty + RELOC/tex/latex/acro/acro2.sty +catalogue-contact-bugs https://github.com/cgnieder/acro/issues +catalogue-contact-repository https://github.com/cgnieder/acro/ +catalogue-ctan /macros/latex/contrib/acro +catalogue-license lppl1.3c +catalogue-topics acronym expl3 +catalogue-version 3.5 + +name acronym +category Package +revision 54758 +shortdesc Expand acronyms at least once +relocated 1 +longdesc This package ensures that all acronyms used in the text are +longdesc spelled out in full at least once. It also provides an +longdesc environment to build a list of acronyms used. The package is +longdesc compatible with pdf bookmarks. The package requires the suffix +longdesc package, which in turn requires that it runs under e-TeX. +containersize 4980 +containerchecksum be68e32baacdb8708d1a31c4a585fcd282d0def7a76a1e284b908532118aec04505271790a99ab0a36e7c035695b84f8ae1e2146c31ca8c4fcfb76be4f11db26 +doccontainersize 280324 +doccontainerchecksum 72b77e66b4db0c3b42252020fa56be3e4b1a848ad7314037d6ada3eb449fad0b35371835ccc6018bc71ef991ade0720f7febeb52fecd71b3ccc9a5b839bf66b2 +docfiles size=73 + RELOC/doc/latex/acronym/CHANGES + RELOC/doc/latex/acronym/README details="Package Readme" + RELOC/doc/latex/acronym/acronym.pdf details="Package documentation" + RELOC/doc/latex/acronym/acrotest.tex +srccontainersize 17392 +srccontainerchecksum 8fd7e9f374e08f69fc33df24be50a9842fb62a18232d2631d85ecf7e6ce702bad1d21989dc01b3513a69e7a39eb343763690cba027df984dfc7777f047ed45d7 +srcfiles size=20 + RELOC/source/latex/acronym/acronym.dtx + RELOC/source/latex/acronym/acronym.ins +runfiles size=6 + RELOC/tex/latex/acronym/acronym.sty +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/acronym +catalogue-license lppl1.3 +catalogue-topics acronym +catalogue-version 1.47 + +name acroterm +category Package +revision 20498 +shortdesc Manage and index acronyms and terms +relocated 1 +longdesc Yet another package for acronyms: the package offers simple +longdesc markup of acronyms and technical terms in the text, giving an +longdesc index each of terms and acronyms with their expanded form. +containersize 1424 +containerchecksum fbcd24989570b083ec51365b560ad2a082a136fc8b2b57aaca4a03059f66dcbdca1efe39c959c8f1a049fdd978ab58a6920f914589c242264b9d803124d0e0cd +doccontainersize 157936 +doccontainerchecksum 603375e44822841b1dbf52d7aab0c91c0ed36dcdada7e6fab607ba805fa896473674123a2594714fa0f698c559570431f09ec55ca41720586fd522df24453253 +docfiles size=44 + RELOC/doc/latex/acroterm/README details="Readme" + RELOC/doc/latex/acroterm/acroterm.pdf details="Package documentation" +srccontainersize 3832 +srccontainerchecksum e289d4cce2bcbb70b20d1f59055cc019453e526ff2c0bee6e5a2d04573060d1d4490d89ec717fe55e4dd3754170f794e60acd453b21b884f595ea56bb6f95adc +srcfiles size=4 + RELOC/source/latex/acroterm/acroterm.dtx + RELOC/source/latex/acroterm/acroterm.ins +runfiles size=1 + RELOC/tex/latex/acroterm/acroterm.sty +catalogue-contact-repository http://github.com/nichtich/acroterm/ +catalogue-ctan /macros/latex/contrib/acroterm +catalogue-license lppl1.3 +catalogue-topics acronym glossary +catalogue-version 0.1 + +name active-conf +category Package +revision 15878 +shortdesc Class for typesetting ACTIVE conference papers +relocated 1 +longdesc Active-conf is a class for typesetting papers for the Active +longdesc conference on noise and vibration control. It is initially +longdesc intended for the 2006 conference in Adelaide, Australia. The +longdesc class is based on article with more flexible front-matter, and +longdesc can be customised for conferences in future years with a header +longdesc file. +containersize 4548 +containerchecksum afd71b77d016c6f2b36ff045176929409f1fc104d9f3530c1a70fad4fd1c71ac327a3b58dbf4a14b93cc691d88bf6b7d3add07196921876360280ee4e5915134 +doccontainersize 314788 +doccontainerchecksum e1b990ceab6820376c18068bf5ac15e984150fe7ad66929496cb77665f0ae334cb28026e0000e788f0580eab549fe2f70e802ca67d0f968961f4582290646758 +docfiles size=93 + RELOC/doc/latex/active-conf/README details="Readme" + RELOC/doc/latex/active-conf/active-conf.pdf details="Class documentation" + RELOC/doc/latex/active-conf/example/active-example.ltx + RELOC/doc/latex/active-conf/example/active-header-2006.tex + RELOC/doc/latex/active-conf/example/header-logo-2006.eps + RELOC/doc/latex/active-conf/example/header-logo-2006.pdf +srccontainersize 14728 +srccontainerchecksum 06d82683cb44e35a07e2907e00f2f80b247a3ca2cc0e9b230e7417aafc21a73c9ef788c4e88cdf7fe7f812c471c3b34273adcb4d5e272888fc481d9d18a88b68 +srcfiles size=13 + RELOC/source/latex/active-conf/active-conf.dtx + RELOC/source/latex/active-conf/active-conf.ins +runfiles size=4 + RELOC/tex/latex/active-conf/active-conf.cls +catalogue-ctan /macros/latex/contrib/conferences/active-conf +catalogue-license lppl +catalogue-topics confproc class +catalogue-version 0.3a + +name actuarialangle +category Package +revision 51376 +shortdesc Angle symbol denoting a duration in actuarial and financial notation +relocated 1 +longdesc This package provides commands to typeset the "angle" symbol +longdesc denoting a duration in actuarial notation, such as in symbols +longdesc for the present value of certain or life annuities, and an over +longdesc angle square bracket used to emphasize joint status in symbols +longdesc of life contingencies. +containersize 2028 +containerchecksum 0f3cb2dc7b0e392942c5eee41227c93a2559c3a268916393530342fc9600c9c4b946f469f222250c23d9b635b9b51a9afc598003a00eab71d641d9d78db29cb1 +doccontainersize 121196 +doccontainerchecksum ac945df0aad5f51dbc900d7b9def5115cc6aa48c081feaddf8cc7985daedce5fbc0ed633ab4c201a0b0af27327b028bfda1875ec6e2e1c90d038441785a0e8cd +docfiles size=31 + RELOC/doc/latex/actuarialangle/README.md details="Readme" + RELOC/doc/latex/actuarialangle/actuarialangle.pdf details="Package documentation" +srccontainersize 7604 +srccontainerchecksum 4958cca024dc6918371f68336a67d9950231630ee8f011f9c190693f7d5454eae1d1daf51147f1887699a9c941562cc8c867ab7c388eaf2c154d5373ff245d86 +srcfiles size=7 + RELOC/source/latex/actuarialangle/actuarialangle.dtx +runfiles size=2 + RELOC/tex/latex/actuarialangle/actuarialangle.sty +catalogue-contact-bugs https://gitlab.com/vigou3/actuarialangle/issues +catalogue-contact-repository https://gitlab.com/vigou3/actuarialangle +catalogue-ctan /macros/latex/contrib/actuarialangle +catalogue-license lppl1.3c +catalogue-topics graphics-symb +catalogue-version 2.1 + +name actuarialsymbol +category Package +revision 54080 +shortdesc Actuarial symbols of life contingencies and financial mathematics +relocated 1 +longdesc This package provides commands to compose actuarial symbols of +longdesc life contingencies and financial mathematics characterized by +longdesc subscripts and superscripts on both sides of a principal +longdesc symbol. The package also features commands to easily and +longdesc consistently position precedence numbers above or below +longdesc statuses in symbols for multiple lives contracts. Since the +longdesc actuarial notation can get quite involved, the package defines +longdesc a number of shortcut macros to ease entry of the most common +longdesc elements. Appendix A of the package documentation lists the +longdesc commands to typeset a large selection of symbols of life +longdesc contingencies. This package requires actuarialangle. +containersize 2724 +containerchecksum 81260a4e92a75f5ace84c190b9bd7e6b46e8c697824856cfc69f4d9e9f14a4e0230d5623cb6e3bd546d84b29240865dfa14f433c9ad34875fec22944053bb5ef +doccontainersize 282876 +doccontainerchecksum 95efefa6e40a77806a2fe8d47575cb78c7e295ddb17b263d2e324610614d36d6ccf1dda75a428b12719d8c4b1fdd3b94656df1ff351f4fb98fc6a94eb87d357d +docfiles size=89 + RELOC/doc/latex/actuarialsymbol/README.md details="Readme" + RELOC/doc/latex/actuarialsymbol/actuarialsymbol.pdf details="Package documentation" + RELOC/doc/latex/actuarialsymbol/mosaic.jpg +srccontainersize 16192 +srccontainerchecksum 48211fe7604a931a8e53599d617bcf2be100ceed5003fd1bcc96ce84525904e68bc279ef672100044e03cbf70fa47f53548ec3686f70a795a50d78d96f792d81 +srcfiles size=18 + RELOC/source/latex/actuarialsymbol/actuarialsymbol.dtx +runfiles size=2 + RELOC/tex/latex/actuarialsymbol/actuarialsymbol.sty +catalogue-contact-bugs https://gitlab.com/vigou3/actuarialsymbol/issues +catalogue-contact-home https://vigou3.gitlab.io/actuarialsymbol +catalogue-contact-repository https://gitlab.com/vigou3/actuarialsymbol +catalogue-ctan /macros/latex/contrib/actuarialsymbol +catalogue-license lppl1.3c +catalogue-topics graphics-symb +catalogue-version 1.1 + +name addfont +category Package +revision 58559 +shortdesc Easier use of fonts without LaTeX support +relocated 1 +longdesc This package is intended for use by users who know about fonts. +longdesc It is a quick-fix for fonts which do not have genuine LaTeX +longdesc support. It is not meant as a replacement of the LaTeX font +longdesc definition files. It is meant as something more useable for +longdesc LaTeX users than the \newfont command. With addfont the loaded +longdesc font scales along with the usual LaTeX size selection. Using +longdesc this package still requires some knowledge on how to use fonts +longdesc with LaTeX. +containersize 1488 +containerchecksum 36e16da02daf6b93b53f1458ca5eee2243310846b8ea05e6b8b00a3120e7686fbe42d6e34d602d84171fcf7cc5428135aca36eb5402e778facb1882e7e7831a3 +doccontainersize 50864 +doccontainerchecksum 583f7cd7b46173ff57cfa4505d14cd3d88ddef7ebc2adb8fd2705fb8011711bd65d22ef38cfa6b5224191af1841f22ee27332f832029cff762b7b7e49246b179 +docfiles size=26 + RELOC/doc/latex/addfont/README details="Readme" + RELOC/doc/latex/addfont/addfont.pdf details="Package documentation" + RELOC/doc/latex/addfont/addfont.tex + RELOC/doc/latex/addfont/license +runfiles size=1 + RELOC/tex/latex/addfont/addfont.sty +catalogue-ctan /macros/latex/contrib/addfont +catalogue-license gpl3+ +catalogue-topics font-use font-mgmt +catalogue-version 1.1 + +name addliga +category Package +revision 50912 +shortdesc Access basic ligatures in legacy TrueType fonts +relocated 1 +longdesc This small and simple package allows LuaLaTeX users to access +longdesc basic ligatures (ff, fi, ffi, fl, ffl) in legacy TrueType fonts +longdesc (those lacking a liga table) accessed via fontspec. +containersize 792 +containerchecksum b54db5b075c2ba2f632e40a1ae2d840b0a61cc940512027effa2b2b3cadfd6dfa2407e2580a462b98f48cafed94281d39613397ed34ad76f54d6a7e8b614ecb8 +doccontainersize 18528 +doccontainerchecksum 572d9aa1396ac80be2cd9ab0bd317759805a6541b656e19ae36915a6277f9a4ff2987c84dbf903133e0a5027f382b0ed48fc882ce7a79df7a27cfe3082d2a666 +docfiles size=7 + RELOC/doc/lualatex/addliga/README details="Readme" + RELOC/doc/lualatex/addliga/addliga.pdf details="Package documentation" + RELOC/doc/lualatex/addliga/addliga.tex +runfiles size=1 + RELOC/tex/lualatex/addliga/addliga.sty +catalogue-ctan /macros/luatex/latex/addliga +catalogue-license pd +catalogue-topics luatex font-supp font-use +catalogue-version 1.0 + +name addlines +category Package +revision 49326 +shortdesc A user-friendly wrapper around \enlargethispage +relocated 1 +longdesc This small package provides the command \addlines for adding or +longdesc removing space in the textblock of the page it's used on. E.g., +longdesc adding an extra line of text to the page so that a section fits +longdesc better on the next page. It will also add space to the facing +longdesc page in a two-sided document. +containersize 1532 +containerchecksum 5d0a438fceef1481633f37824b686422e5000cf232b7dd24bba0f30c8d62b583daf01a67242283f2e4fe971438c061acad2860f50ce1438ca32677d497db8b2a +doccontainersize 135972 +doccontainerchecksum 2993c6caae1d2f230d144c9f93f7694adcb2e17d9bcd60eb3aa3144806a522258fd4c44a314d40cc767b3b069c4c929b8e458e74bebc746771b975b77bba34d2 +docfiles size=35 + RELOC/doc/latex/addlines/README.md details="Readme" + RELOC/doc/latex/addlines/addlines.pdf details="Package documentation" +srccontainersize 4116 +srccontainerchecksum 6de10a1ddcb65be76594e7389d47316e066aec3a747ef7a61e15fa0e670d914dae3d2ef777c9574e8b85c5d9628784df7f4dc61f589917dbae571f31416bad08 +srcfiles size=4 + RELOC/source/latex/addlines/addlines.dtx + RELOC/source/latex/addlines/addlines.ins +runfiles size=1 + RELOC/tex/latex/addlines/addlines.sty +catalogue-ctan /macros/latex/contrib/addlines +catalogue-license lppl1.3c +catalogue-topics geometry +catalogue-version 0.3 + +name adfathesis +category Package +revision 26048 +shortdesc Australian Defence Force Academy thesis format +relocated 1 +longdesc The bundle includes a BibTeX style file. +containersize 9772 +containerchecksum 4eb7fda01fa1961d213eadd2f0bc9b1cf102de664dae1f37588e161af22d043319e12ca704c3223e78e963411c3f0533c845b17f7d0744b020ef2dca35b2c7b0 +doccontainersize 134660 +doccontainerchecksum 86d89f4f139c9ddfe6babb84558f7d89f57b75e28d37f659d9893ef703cef7199272e60f1233d51351b5bd8a4565393dd6f09ba69796d2ab555423c2ba23c2b8 +docfiles size=49 + RELOC/doc/latex/adfathesis/README details="Package README" + RELOC/doc/latex/adfathesis/adfathesis.pdf details="Package documentation" + RELOC/doc/latex/adfathesis/template.tex +srccontainersize 9964 +srccontainerchecksum 3d9a376183e2cb22dfd210eb6d453324d035289173c6750d67ee90379d794a50393c49f8fc40e5c51484127632f2489468b215dc510b0db0313372816fc77927 +srcfiles size=9 + RELOC/source/latex/adfathesis/adfathesis.dtx + RELOC/source/latex/adfathesis/adfathesis.ins +runfiles size=12 + RELOC/bibtex/bst/adfathesis/adfathesis.bst + RELOC/tex/latex/adfathesis/adfathesis.cls +catalogue-ctan /macros/latex/contrib/adfathesis +catalogue-license pd +catalogue-topics dissertation class +catalogue-version 2.42 + +name adforn +category Package +revision 54512 +shortdesc OrnementsADF font with TeX/LaTeX support +relocated 1 +longdesc The bundle provides the Ornements ADF font in PostScript type 1 +longdesc format with TeX/LaTeX support files. The font is licensed under +longdesc GPL v2 or later with font exception. (See NOTICE, COPYING, +longdesc README.) The TeX/LaTeX support is licensed under LPPL. (See +longdesc README, manifest.txt.) +execute addMap OrnementsADF.map +containersize 36500 +containerchecksum 7a4a4da6c72ff2f8ab4b2a9a5e92887306a8e2aee4bcc5a93c18bf41d1bf9c05bd23fd6401bda054994aafa8d6002dbc16d8483b951acb705cd46fda08aaf060 +doccontainersize 362888 +doccontainerchecksum 2a287f8685154359c914b13e8e153aa64bb19708a9f5b122180cead53ee31ab829dc934dcab43f09ded4fe5d2a81ee32528855f1a4a1bd07b795eaabcb204f48 +docfiles size=98 + RELOC/doc/fonts/adforn/COPYING + RELOC/doc/fonts/adforn/NOTICE + RELOC/doc/fonts/adforn/README details="Readme" + RELOC/doc/fonts/adforn/adforn.pdf details="Package documentation and font tables" + RELOC/doc/fonts/adforn/adforn.tex + RELOC/doc/fonts/adforn/manifest.txt +runfiles size=17 + RELOC/fonts/afm/arkandis/adforn/OrnementsADF.afm + RELOC/fonts/enc/dvips/adforn/OrnementsADF.enc + RELOC/fonts/map/dvips/adforn/OrnementsADF.map + RELOC/fonts/tfm/arkandis/adforn/OrnementsADF.tfm + RELOC/fonts/type1/arkandis/adforn/OrnementsADF.pfb + RELOC/tex/latex/adforn/adforn.sty + RELOC/tex/latex/adforn/uornementsadf.fd +catalogue-ctan /fonts/adforn +catalogue-license lppl gpl2 +catalogue-topics font font-ornmnt font-type1 +catalogue-version 1.1b + +name adfsymbols +category Package +revision 54512 +shortdesc SymbolsADF with TeX/LaTeX support +relocated 1 +longdesc The package provides Arkandis foundry's ArrowsADF and +longdesc BulletsADF fonts in Adobe Type 1 format, together with +longdesc TeX/LaTeX support files. +execute addMap ArrowsADF.map +execute addMap BulletsADF.map +containersize 26800 +containerchecksum 7100648956a68719d1a449a3aee0a4acb3788aea7f082a6e7e38c8d8dfa2c712a4b896a9b036e8ae8b2732b11414ab71a49e2f513e7d689f4b0ad9e44c052019 +doccontainersize 384924 +doccontainerchecksum fbdd78030826918a3599a1f843db692390ebdcf4ca9a853d8c2e78706cfafe83ae79d23d09fb097339d8c726608a27436b3bf22725935c55060f1e8579ea1eaf +docfiles size=104 + RELOC/doc/fonts/adfsymbols/COPYING + RELOC/doc/fonts/adfsymbols/NOTICE + RELOC/doc/fonts/adfsymbols/README details="Readme" + RELOC/doc/fonts/adfsymbols/adfsymbols.pdf details="Package documentation" + RELOC/doc/fonts/adfsymbols/adfsymbols.tex + RELOC/doc/fonts/adfsymbols/manifest.txt +runfiles size=19 + RELOC/fonts/afm/arkandis/adfsymbols/ArrowsADF.afm + RELOC/fonts/afm/arkandis/adfsymbols/BulletsADF.afm + RELOC/fonts/enc/dvips/adfsymbols/SymbolsADF.enc + RELOC/fonts/map/dvips/adfsymbols/ArrowsADF.map + RELOC/fonts/map/dvips/adfsymbols/BulletsADF.map + RELOC/fonts/tfm/arkandis/adfsymbols/ArrowsADF.tfm + RELOC/fonts/tfm/arkandis/adfsymbols/BulletsADF.tfm + RELOC/fonts/type1/arkandis/adfsymbols/ArrowsADF.pfb + RELOC/fonts/type1/arkandis/adfsymbols/BulletsADF.pfb + RELOC/tex/latex/adfsymbols/adfarrows.sty + RELOC/tex/latex/adfsymbols/adfbullets.sty + RELOC/tex/latex/adfsymbols/uarrowsadf.fd + RELOC/tex/latex/adfsymbols/ubulletsadf.fd +catalogue-ctan /fonts/adfsymbols +catalogue-license lppl gpl2 +catalogue-topics font font-symbol font-type1 font-supp +catalogue-version 1.2b + +name adhocfilelist +category Package +revision 29349 +shortdesc '\listfiles' entries from the command line +longdesc The package provides a Unix shell script to display a list of +longdesc LaTeX \Provides...-command contexts on screen. Provision is +longdesc made for controlling the searches that the package does. The +longdesc package was developed on a Unix-like system, using (among other +longdesc things) the gnu variant of the find command. +depend adhocfilelist.ARCH +containersize 3600 +containerchecksum 57436dae1489c0f614c4b002f83d34a711398a762ac532b44b1d91a51d068462aaedb5b034923629f7630f039988452eb833d1e98af389c788091517bbee8954 +doccontainersize 9876 +doccontainerchecksum 14bde143bf3ffa3f2b972f93544089e4c0314c7696e1d711719549b7e831278c66fee0676665fe6eaaac744689d613dce159e4eee2e3f9c24dbbe602794fc62e +docfiles size=13 + texmf-dist/doc/support/adhocfilelist/README details="Readme" + texmf-dist/doc/support/adhocfilelist/RELEASEs.txt + texmf-dist/doc/support/adhocfilelist/SrcFILEs.txt + texmf-dist/doc/support/adhocfilelist/adhocfilelist.htm details="Package documentation" + texmf-dist/doc/support/adhocfilelist/demo/herelist.txt +srccontainersize 16408 +srccontainerchecksum 15e7f652408c5975ba47131109e0d18bcb1d270e0ea630a9a3ff385e499cf3607a366e708a5ec9559d7ccc2a5e0b2d3d0f5f615142978a918b0bd1bd0218a30d +srcfiles size=18 + texmf-dist/source/support/adhocfilelist/adhocfilelist.tex + texmf-dist/source/support/adhocfilelist/fdatechk.tex + texmf-dist/source/support/adhocfilelist/makehtml.tex + texmf-dist/source/support/adhocfilelist/srcfiles.tex + texmf-dist/source/support/adhocfilelist/texblog.fdf +runfiles size=5 + texmf-dist/scripts/adhocfilelist/adhocfilelist.sh + texmf-dist/scripts/adhocfilelist/herelist.sh + texmf-dist/tex/support/adhocfilelist/adhocfilelist.RLS +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /support/adhocfilelist +catalogue-license lppl +catalogue-topics doc-debug + +name adhocfilelist.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of adhocfilelist +containersize 348 +containerchecksum d06cb014cccd04a4143a47f8cff48d4071482e1d1a714612bc3e01943532d1879150274dc749bb11855804043d57465b62054b1c51a528cf15dcc07752d343ec +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/adhocfilelist + +name adhocfilelist.amd64-freebsd +category Package +revision 28038 +shortdesc amd64-freebsd files of adhocfilelist +containersize 348 +containerchecksum 88c1c5c6ea6dfec7a4865e5ae5962d74e216f4183d9b411f38e081eb9ffea01b6405668b5e17be7f4fc882a7dd8a12dd2c6c9770aaf451ececb0bf7e397af61f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/adhocfilelist + +name adhocfilelist.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of adhocfilelist +containersize 344 +containerchecksum 0482cd18a5754599218847de0e6f0e088c3da9151bc597a98b011bb3447c2fdfc8454ae40e800d9caf1ba633d26cf8170fff16cdb5b122abdce2207d53cf7ed4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/adhocfilelist + +name adhocfilelist.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of adhocfilelist +containersize 344 +containerchecksum dc904c869a6eb42ff9ba92faf1d98ee29e8e6629629a2cc35b8b93d281fff8c2984b403f28d02ae8873b732781b8f328e540690dbb356b896f6e946fc1ebd7eb +binfiles arch=armhf-linux size=1 + bin/armhf-linux/adhocfilelist + +name adhocfilelist.i386-cygwin +category Package +revision 28038 +shortdesc i386-cygwin files of adhocfilelist +containersize 340 +containerchecksum a327fe4a088d8c2edeef9d5aa36dc012f03bbeb6c0ca730de22a37a7cc5eabb952071f769a935fe4612897ac0e6f2d297b3f5a7c0557d5e9cc9c1ab76d272083 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/adhocfilelist + +name adhocfilelist.i386-freebsd +category Package +revision 28038 +shortdesc i386-freebsd files of adhocfilelist +containersize 344 +containerchecksum 6ed53a02fbccd19e1636f6dba32d01aaccbe72125c4c498caf7b0d857bcec1e778344d4641bc03b5fe4c2b6d7ffc6a78aac443d4c3d889983ea404522f78a012 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/adhocfilelist + +name adhocfilelist.i386-linux +category Package +revision 28038 +shortdesc i386-linux files of adhocfilelist +containersize 344 +containerchecksum 9327b056d58fc8ecbc5abcfa00c95c2d51569469735229ee061e0b2f17fae0c3a8038d50ba55fd2ac5183f88ff0df3a43e187faecac54ba6507047a2595bb138 +binfiles arch=i386-linux size=1 + bin/i386-linux/adhocfilelist + +name adhocfilelist.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of adhocfilelist +containersize 344 +containerchecksum c2fc828f5b982492edf4c272daffbdfc11ec1dc54f5f771373a5d0f5457b08757492e3f266c82a7933a9af21725004d362274fec914b5e96ec060c9c354e2bb8 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/adhocfilelist + +name adhocfilelist.i386-solaris +category Package +revision 28038 +shortdesc i386-solaris files of adhocfilelist +containersize 344 +containerchecksum c1e3de74be30a676f58807890627a1eea755f62264b6395e9d640252404cb51503f88e9413587af169d283c6c95bdda2e8852ca8c4379c754fc7a78a12c266fc +binfiles arch=i386-solaris size=1 + bin/i386-solaris/adhocfilelist + +name adhocfilelist.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of adhocfilelist +containersize 340 +containerchecksum 482c1946c12c0e26e5ec7121ecb12f359793b2bfc2073bf32b29f8f62adec91d94d362c85f627fac3a7512a5ef4ea78b6e676bf00ea613f51c3ce1f33dee0566 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/adhocfilelist + +name adhocfilelist.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of adhocfilelist +containersize 344 +containerchecksum 0c5624e9a806caeae188d91673693941c6f7ad5665576498cb1de82ed0ec7b905aefb1816f74fefff3b402624d3965c310ce168e4384baa74c5b4f8bced66685 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/adhocfilelist + +name adhocfilelist.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of adhocfilelist +containersize 352 +containerchecksum a6ab30dcf1eb816473240d88c7f12df24d719bd63f461a119d9de8f1140413c61064b30f9eb8d8a4e5542273c6011d5e69ad5b6d308f292e3417b9ecf20e67b0 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/adhocfilelist + +name adhocfilelist.x86_64-linux +category Package +revision 28038 +shortdesc x86_64-linux files of adhocfilelist +containersize 344 +containerchecksum fb87c94cd5ecbd61469d7f9948e21f96c84065b37fed326211a056669aef9e7ac2fecbb3ad93bee763491f51479e9cf0c0a172fae88b7d11b3483815595e421c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/adhocfilelist + +name adhocfilelist.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of adhocfilelist +containersize 348 +containerchecksum 24927ef0253acbd78bf0f254821d543d71fa6814b0b7357c35fc02337dba71e0055e332602364b2c07e2bfd05b6970c8eb8caa4077382992e2591f927ea23e18 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/adhocfilelist + +name adhocfilelist.x86_64-solaris +category Package +revision 28038 +shortdesc x86_64-solaris files of adhocfilelist +containersize 344 +containerchecksum d4f1d8947658e0a10806125b37fc59bb8e673a16eda7b4825a685da85c6e611765f6df230f01e14b39cec5307a3fb3876caf3d6687b234dbc6957ffcd43df091 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/adhocfilelist + +name adigraph +category Package +revision 49862 +shortdesc Augmenting directed graphs +relocated 1 +longdesc This LaTeX package provides the means to easily draw augmenting +longdesc oriented graphs, as well as cuts on them, to demonstrate steps +longdesc of algorithms for solving max-flow min-cut problems. This +longdesc package requires the other LaTeX packages fp, xparse, xstring, +longdesc and TikZ (in particular the TikZ calc library). +containersize 5644 +containerchecksum 6a4684925e542a6ab0e3b97280059dc47fc892efdb99858370dca9dff91074d98030a93f964a5172bfa95a6dbf41f7a639977b0559332178ab8e4ca9dcb20e10 +doccontainersize 482896 +doccontainerchecksum 763f94d22e939c255cb0b920183403d7c753dd4d77483b79f82f4a302375bee4ea42357091866ddc392b554c6dfb707c624fabfc3f92fb6ae07853e3ddbc8594 +docfiles size=156 + RELOC/doc/latex/adigraph/LICENSE + RELOC/doc/latex/adigraph/README.md details="Readme" + RELOC/doc/latex/adigraph/adigraph-large.png + RELOC/doc/latex/adigraph/adigraph_documentation.pdf details="Documentation" + RELOC/doc/latex/adigraph/adigraph_documentation.tex + RELOC/doc/latex/adigraph/adigraph_working_test.pdf + RELOC/doc/latex/adigraph/adigraph_working_test.tex + RELOC/doc/latex/adigraph/img_examples/example_0.jpg + RELOC/doc/latex/adigraph/img_examples/example_1.jpg + RELOC/doc/latex/adigraph/img_examples/example_2.jpg + RELOC/doc/latex/adigraph/img_examples/example_3.jpg + RELOC/doc/latex/adigraph/img_examples/pyadigraph.png +runfiles size=6 + RELOC/tex/latex/adigraph/adigraph.sty +catalogue-contact-bugs https://github.com/LucaCappelletti94/adigraph/issues +catalogue-contact-repository https://github.com/LucaCappelletti94/adigraph +catalogue-ctan /graphics/pgf/contrib/adigraph +catalogue-license mit +catalogue-topics pgf-tikz diagram +catalogue-version 1.7.1 + +name adjmulticol +category Package +revision 54157 +shortdesc Adjusting margins for multicolumn and single column output +relocated 1 +longdesc The package adds, to the multicol package, the option to change +longdesc the margins for multicolumn and unicolumn layout. The package +longdesc understands the difference between the even and odd margins for +longdesc two side printing. +containersize 3000 +containerchecksum 4243fb86e7122ec721b975c16eebadcdb867313270a7c351543bad78be73eb82780f7eb1878f1901b8c1956d0103531f1973d9ba10bdeded7eeaa51b190a1514 +doccontainersize 299732 +doccontainerchecksum afa625a205d566369b4a702062ff39f62529f2191ec4293b282fe818f4e001b8cc9c65eec3a0df0175586969d77ec83e03b22ff41cff36788375c59d1f20c586 +docfiles size=77 + RELOC/doc/latex/adjmulticol/README details="Readme" + RELOC/doc/latex/adjmulticol/adjmulticol.bib + RELOC/doc/latex/adjmulticol/adjmulticol.pdf details="Package documentation" + RELOC/doc/latex/adjmulticol/sample.pdf + RELOC/doc/latex/adjmulticol/sample.tex +srccontainersize 7256 +srccontainerchecksum e1a9e8245494eb1bd09e82e914fc0009ac696d94ec0d4499a828bb5187e90741f0ae26cce956429fe802cb5c2af7d9c68454bc11deeca87bae8a531ed2a1d4dd +srcfiles size=7 + RELOC/source/latex/adjmulticol/Makefile + RELOC/source/latex/adjmulticol/adjmulticol.dtx + RELOC/source/latex/adjmulticol/adjmulticol.ins +runfiles size=2 + RELOC/tex/latex/adjmulticol/adjmulticol.sty +catalogue-contact-bugs https://github.com/borisveytsman/adjmulticol/issues +catalogue-contact-repository https://github.com/borisveytsman/adjmulticol +catalogue-ctan /macros/latex/contrib/adjmulticol +catalogue-license lppl1.3 +catalogue-topics multicol layout +catalogue-version 1.2 + +name adjustbox +category Package +revision 56291 +shortdesc Graphics package-alike macros for "general" boxes +relocated 1 +longdesc The package provides several macros to adjust boxed content. +longdesc One purpose is to supplement the standard graphics package, +longdesc which defines the macros \resizebox, \scalebox and \rotatebox , +longdesc with the macros\trimbox and \clipbox. The main feature is the +longdesc general \adjustbox macro which extends the "key=value" +longdesc interface of \includegraphics from the graphics package and +longdesc applies it to general text content. Additional provided box +longdesc macros are \lapbox, \marginbox, \minsizebox, \maxsizebox and +longdesc \phantombox. All macros use the collectbox package to read the +longdesc content as a box and not as a macro argument. This allows for +longdesc all forms of content including special material like verbatim +longdesc content. A special feature of collectbox is used to provide +longdesc matching environments with the identical names as the macros. +containersize 13596 +containerchecksum 851d9abec7b4eabaf470755cea1200978146f93fca4cb8cdd33adb53f3b427031ea70685b8458fa77c5bd8b842b62524dd713c12a901331778cd854fa862098c +doccontainersize 719424 +doccontainerchecksum 3ddd36dcf4c56390aef552644e053612f1b2a900b2031f63aa6dd5da013916a00ead80a4e677c5225a14055f3b34d972faf17fe42e3cbe1f74b59a3b7d5206d6 +docfiles size=195 + RELOC/doc/latex/adjustbox/README details="Readme" + RELOC/doc/latex/adjustbox/adjcalc.pdf + RELOC/doc/latex/adjustbox/adjustbox.pdf details="Package documentation" + RELOC/doc/latex/adjustbox/box.tex + RELOC/doc/latex/adjustbox/compare.tex + RELOC/doc/latex/adjustbox/margin.tex + RELOC/doc/latex/adjustbox/margin2.tex + RELOC/doc/latex/adjustbox/trim.tex + RELOC/doc/latex/adjustbox/trim2.tex + RELOC/doc/latex/adjustbox/trim3.tex + RELOC/doc/latex/adjustbox/trimclip.pdf + RELOC/doc/latex/adjustbox/viewport.tex + RELOC/doc/latex/adjustbox/viewport2.tex +srccontainersize 49556 +srccontainerchecksum 0a25cd50b343094fc6a5a07f9196f96c4f391fbf6845cf78f5c76c76c2af0a5c8c9ed79a29d14d3575a416c7fe1c9ae6e455e17d3d03ca09e9f9e1ddb170bf6c +srcfiles size=79 + RELOC/source/latex/adjustbox/adjcalc.dtx + RELOC/source/latex/adjustbox/adjustbox.dtx + RELOC/source/latex/adjustbox/adjustbox.ins + RELOC/source/latex/adjustbox/trimclip.dtx +runfiles size=24 + RELOC/tex/latex/adjustbox/adjcalc.sty + RELOC/tex/latex/adjustbox/adjustbox.sty + RELOC/tex/latex/adjustbox/tc-dvips.def + RELOC/tex/latex/adjustbox/tc-pdftex.def + RELOC/tex/latex/adjustbox/tc-pgf.def + RELOC/tex/latex/adjustbox/tc-xetex.def + RELOC/tex/latex/adjustbox/trimclip.sty +catalogue-also gincltex collectbox realboxes +catalogue-contact-bugs https://sourceforge.net/p/adjustbox/tickets/ +catalogue-contact-home https://sourceforge.net/p/adjustbox/ +catalogue-contact-repository https://sourceforge.net/p/adjustbox/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/adjustbox +catalogue-license lppl1.3 +catalogue-topics typesetting box-manip +catalogue-version 1.3 + +name adobemapping +category Package +revision 51787 +shortdesc Adobe cmap and pdfmapping files +relocated 1 +longdesc The package comprises the collection of CMap and PDF mapping +longdesc files made available for distribution by Adobe. +containersize 2169892 +containerchecksum 1dd2c4a813bbcd8063d42c1872fd14427bae2e5ce9698ddb0825770653d17798c037da511d43a0939cea1a607f0a7bb7ce974bff72a2ee88c6f56f941cc7510e +runfiles size=5246 + RELOC/fonts/cmap/adobemapping/README + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-6 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-7 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5pc-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5pc-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS1-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS1-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETHK-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETHK-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETen-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETen-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETenms-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETenms-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdla-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdla-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdlb-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdlb-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKgccs-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKgccs-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm314-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm314-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm471-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm471-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKscs-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKscs-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK2K-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK2K-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBKp-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBKp-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBTpc-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBTpc-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBpc-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBpc-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Identity-0/CMap/Identity-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Identity-0/CMap/Identity-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78ms-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78ms-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/83pv-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90ms-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90ms-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90msp-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90msp-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90pv-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90pv-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-6 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-7 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Hankaku + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Hiragana + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Katakana + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/NWP-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/NWP-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Roman + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-HW-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-HW-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISPro-UCS2-HW-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISPro-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISPro-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX0213-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX0213-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX02132004-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX02132004-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/WP-Symbol + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0208-jp04.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0208-jp90.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0212-jp04.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0212-jp90.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0213-jp04.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0213-jp90.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-6 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-7 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-8 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-9 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/UniAKR-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/UniAKR-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/UniAKR-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/Adobe-Korea1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/Adobe-Korea1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/Adobe-Korea1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-Johab-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-Johab-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-HW-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-HW-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCpc-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCpc-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/LICENSE.md + RELOC/fonts/cmap/adobemapping/cmap-resources/Makefile + RELOC/fonts/cmap/adobemapping/cmap-resources/README.md + RELOC/fonts/cmap/adobemapping/cmap-resources/VERSIONS.txt + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/LICENSE.txt + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/Makefile + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/README.md + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/90ms-RKSJ-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/90pv-RKSJ-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/90pv-RKSJ-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-B5pc + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-ETen-B5 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-GBK-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-GBpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-90ms-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-90pv-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-PS-H + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-PS-V + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-KSCms-UHC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-KSCpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/B5pc-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/B5pc-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/ETen-B5-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/GBK-EUC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/GBpc-EUC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/GBpc-EUC-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/KSCms-UHC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/KSCpc-EUC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/KSCpc-EUC-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-90ms-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-90pv-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-B5pc + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-ETen-B5 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-GBK-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-GBpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-KSCms-UHC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-KSCpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-CNS1-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-GB1-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-Japan1-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-KR-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-Korea1-UCS2 +catalogue-also cmap mmap +catalogue-contact-repository https://github.com/adobe-type-tools/ +catalogue-ctan /support/adobemapping +catalogue-license bsd +catalogue-topics font-supp + +name adrconv +category Package +revision 46817 +shortdesc BibTeX styles to implement an address database +relocated 1 +longdesc The bundle provides a collection of BibTeX style files to turn +longdesc an address database stored in the .bib format into files +longdesc suitable for printing as address books or included into letter +longdesc classes like akletter or scrletter2. The data may be sorted +longdesc either by name or birthday and output provides files in various +longdesc formats for address books or time planners. +containersize 2812 +containerchecksum ec4300075ae2fbb0b29fa8126263d8852a405a84df8cdb6f484c989ebe948257ba3d1f3ddf9204ea7d6d50129c294a0130afabb053bc63022928ca748bb4ce14 +doccontainersize 690600 +doccontainerchecksum 93ec47833fee152b098477f838858a259f5842264d3a7e9a959d60fd35f46d680eba61c9f4b5efa08ab2878da4aec78d19cf83880e33aeabde9854aa88491c78 +docfiles size=185 + RELOC/doc/latex/adrconv/2latex.vim + RELOC/doc/latex/adrconv/README details="Readme" + RELOC/doc/latex/adrconv/adrconv.pdf details="Implementation details" + RELOC/doc/latex/adrconv/adrconv.tex + RELOC/doc/latex/adrconv/adrconv_pages08.pages/Contents/PkgInfo + RELOC/doc/latex/adrconv/adrconv_pages08.pages/QuickLook/Thumbnail.jpg + RELOC/doc/latex/adrconv/adrconv_pages08.pages/index.xml.gz + RELOC/doc/latex/adrconv/adrdir.tex + RELOC/doc/latex/adrconv/adrfax.tex + RELOC/doc/latex/adrconv/adrguide.pdf details="User guide" language="de" + RELOC/doc/latex/adrconv/adrguide.tex + RELOC/doc/latex/adrconv/adrmontage1.tex + RELOC/doc/latex/adrconv/adrmontage2.tex + RELOC/doc/latex/adrconv/birthday.tex + RELOC/doc/latex/adrconv/example.bib +srccontainersize 8868 +srccontainerchecksum 25233e23bd1c6aec13609b5d17587747a5840e21637e3d11a478941f98f5f74a77eed31f806b51d07b79f8cc4ebb8c6b8fa419f72927045e3695ca4ada8af388 +srcfiles size=8 + RELOC/source/latex/adrconv/adrconv.dtx + RELOC/source/latex/adrconv/adrconv.ins +runfiles size=6 + RELOC/bibtex/bst/adrconv/adrbirthday.bst + RELOC/bibtex/bst/adrconv/adrconv.bst + RELOC/bibtex/bst/adrconv/adrfax.bst + RELOC/tex/latex/adrconv/adrdir.cfg + RELOC/tex/latex/adrconv/adrplaner.cfg + RELOC/tex/latex/adrconv/adrsmall.cfg +catalogue-ctan /macros/latex/contrib/adrconv +catalogue-license lppl1.3 +catalogue-topics bibtex-sty biblio +catalogue-version 1.4 + +name adtrees +category Package +revision 51618 +shortdesc Macros for drawing adpositional trees +relocated 1 +longdesc This package provides a means to write adpositional trees, a +longdesc formalism devoted to representing natural language expressions. +longdesc The package relies on epic and cancel. +containersize 7876 +containerchecksum 1e06f07576666fb7b54c78d930f66fef78571469bffc3ef448687c8bbb0d23d41761e17c8ec1293bb6527e31fc70413df1b7de5c9a06514e6aa8242ed90deb09 +doccontainersize 356112 +doccontainerchecksum ad8f2e42a4a31368000909c5841fddc189bc2331b47f2c64b16ec509bd662a1b82df3ea8b712f0bdf1c40f123ac28221179b4352e20631d9fb776c0b2939bc4c +docfiles size=100 + RELOC/doc/latex/adtrees/README details="Readme" + RELOC/doc/latex/adtrees/adtreesdoc.pdf details="Package documentation" + RELOC/doc/latex/adtrees/adtreesdoc.tex +runfiles size=10 + RELOC/tex/latex/adtrees/adtrees.sty +catalogue-ctan /macros/latex/contrib/adtrees +catalogue-license gpl +catalogue-topics tree linguistic +catalogue-version 1.1 + +name advdate +category Package +revision 20538 +shortdesc Print a date relative to "today" +relocated 1 +longdesc Provides macros which can add a specified number of days to the +longdesc current date (as specified in \today), to save, set and restore +longdesc the 'current date' and to print it. Intended use is, for +longdesc example, in invoices "payable within 14 days from today", etc. +longdesc The package has only been tested with Czech dates. +containersize 2228 +containerchecksum 80075aa6efb4125bdce79e9b2ec6951caf1a753c8915201767de230acdd1adc2eef31400574effadf6287be159236422840751bf5ea24cd3cab8a01e82a0185c +doccontainersize 146672 +doccontainerchecksum acfcbd6a40630da2cf9024cbf3ed378c1f7f8a16c8f8395b69c12f9693e903ba54b9b051c364c5cb4de957876bbd41f0b480c4f4b320e22f2c6df7b08502873a +docfiles size=39 + RELOC/doc/latex/advdate/advdate.pdf details="Package documentation" + RELOC/doc/latex/advdate/advdate.tex + RELOC/doc/latex/advdate/manifest.txt +runfiles size=2 + RELOC/tex/latex/advdate/advdate.sty +catalogue-ctan /macros/latex/contrib/advdate +catalogue-license lppl1.3 +catalogue-topics date-time + +name ae +category Package +revision 15878 +shortdesc Virtual fonts for T1 encoded CMR-fonts +relocated 1 +longdesc A set of virtual fonts which emulates T1 coded fonts using the +longdesc standard CM fonts. The package name, AE fonts, supposedly +longdesc stands for "Almost European". The main use of the package was +longdesc to produce PDF files using Adobe Type 1 versions of the CM +longdesc fonts instead of bitmapped EC fonts. Note that direct +longdesc substitutes for the bitmapped EC fonts are now available, via +longdesc the CM-super, Latin Modern and (in a restricted way) CM-LGC +longdesc font sets. +containersize 57348 +containerchecksum 6b1c57d5bd3f0959e611659f979ed42b81e397a182d09b3482e98865196077334a9796777aa112ff367b97c232859d4f9637730dcd2654e6232c577d2f59c39a +doccontainersize 7732 +doccontainerchecksum 927521fb6b6a5787d0e94ad724cf19825b2cf2ce23333e60e13625a36390eaa4cbaa1bbe50dbc718efae97036d5d815860919f536601bb97224b489d20082953 +docfiles size=7 + RELOC/doc/fonts/ae/COPYING + RELOC/doc/fonts/ae/MANIFEST + RELOC/doc/fonts/ae/README details="Readme" +srccontainersize 19988 +srccontainerchecksum d82fc85014bb32147c9562482ac1d0ab1d1fbff8140441dafff032e24c3ee9e406c9872a93a66ef96a2f67a75f47c01e53565372a14d1bdece588f312c8f00fe +srcfiles size=50 + RELOC/source/fonts/ae/aefonts.mtx + RELOC/source/fonts/ae/aefonts.tex + RELOC/source/fonts/ae/aehax5.mtx + RELOC/source/fonts/ae/aehaxit.mtx + RELOC/source/fonts/ae/aehaxrm.mtx + RELOC/source/fonts/ae/aehaxsc.mtx + RELOC/source/fonts/ae/aehaxsl.mtx + RELOC/source/fonts/ae/aehaxss.mtx + RELOC/source/fonts/ae/aelatin.mtx + RELOC/source/fonts/ae/aelatint.mtx + RELOC/source/fonts/ae/aesample.tex + RELOC/source/fonts/ae/aet1.etx + RELOC/source/fonts/ae/bxittest.tex + RELOC/source/fonts/ae/clean + RELOC/source/fonts/ae/germtest.tex + RELOC/source/fonts/ae/go + RELOC/source/fonts/ae/install + RELOC/source/fonts/ae/makepl + RELOC/source/fonts/ae/ot1tt.etx + RELOC/source/fonts/ae/slitest.tex +runfiles size=157 + RELOC/fonts/tfm/public/ae/aeb10.tfm + RELOC/fonts/tfm/public/ae/aebx10.tfm + RELOC/fonts/tfm/public/ae/aebx12.tfm + RELOC/fonts/tfm/public/ae/aebx5.tfm + RELOC/fonts/tfm/public/ae/aebx6.tfm + RELOC/fonts/tfm/public/ae/aebx7.tfm + RELOC/fonts/tfm/public/ae/aebx8.tfm + RELOC/fonts/tfm/public/ae/aebx9.tfm + RELOC/fonts/tfm/public/ae/aebxsl10.tfm + RELOC/fonts/tfm/public/ae/aebxti10.tfm + RELOC/fonts/tfm/public/ae/aecsc10.tfm + RELOC/fonts/tfm/public/ae/aeitt10.tfm + RELOC/fonts/tfm/public/ae/aer10.tfm + RELOC/fonts/tfm/public/ae/aer12.tfm + RELOC/fonts/tfm/public/ae/aer17.tfm + RELOC/fonts/tfm/public/ae/aer5.tfm + RELOC/fonts/tfm/public/ae/aer6.tfm + RELOC/fonts/tfm/public/ae/aer7.tfm + RELOC/fonts/tfm/public/ae/aer8.tfm + RELOC/fonts/tfm/public/ae/aer9.tfm + RELOC/fonts/tfm/public/ae/aesl10.tfm + RELOC/fonts/tfm/public/ae/aesl12.tfm + RELOC/fonts/tfm/public/ae/aesl8.tfm + RELOC/fonts/tfm/public/ae/aesl9.tfm + RELOC/fonts/tfm/public/ae/aesltt10.tfm + RELOC/fonts/tfm/public/ae/aess10.tfm + RELOC/fonts/tfm/public/ae/aess12.tfm + RELOC/fonts/tfm/public/ae/aess17.tfm + RELOC/fonts/tfm/public/ae/aess8.tfm + RELOC/fonts/tfm/public/ae/aess9.tfm + RELOC/fonts/tfm/public/ae/aessbx10.tfm + RELOC/fonts/tfm/public/ae/aessdc10.tfm + RELOC/fonts/tfm/public/ae/aessi10.tfm + RELOC/fonts/tfm/public/ae/aessi12.tfm + RELOC/fonts/tfm/public/ae/aessi17.tfm + RELOC/fonts/tfm/public/ae/aessi8.tfm + RELOC/fonts/tfm/public/ae/aessi9.tfm + RELOC/fonts/tfm/public/ae/aetcsc10.tfm + RELOC/fonts/tfm/public/ae/aeti10.tfm + RELOC/fonts/tfm/public/ae/aeti12.tfm + RELOC/fonts/tfm/public/ae/aeti7.tfm + RELOC/fonts/tfm/public/ae/aeti8.tfm + RELOC/fonts/tfm/public/ae/aeti9.tfm + RELOC/fonts/tfm/public/ae/aett10.tfm + RELOC/fonts/tfm/public/ae/aett12.tfm + RELOC/fonts/tfm/public/ae/aett8.tfm + RELOC/fonts/tfm/public/ae/aett9.tfm + RELOC/fonts/tfm/public/ae/laess8.tfm + RELOC/fonts/tfm/public/ae/laessb8.tfm + RELOC/fonts/tfm/public/ae/laessi8.tfm + RELOC/fonts/vf/public/ae/aeb10.vf + RELOC/fonts/vf/public/ae/aebx10.vf + RELOC/fonts/vf/public/ae/aebx12.vf + RELOC/fonts/vf/public/ae/aebx5.vf + RELOC/fonts/vf/public/ae/aebx6.vf + RELOC/fonts/vf/public/ae/aebx7.vf + RELOC/fonts/vf/public/ae/aebx8.vf + RELOC/fonts/vf/public/ae/aebx9.vf + RELOC/fonts/vf/public/ae/aebxsl10.vf + RELOC/fonts/vf/public/ae/aebxti10.vf + RELOC/fonts/vf/public/ae/aecsc10.vf + RELOC/fonts/vf/public/ae/aeitt10.vf + RELOC/fonts/vf/public/ae/aer10.vf + RELOC/fonts/vf/public/ae/aer12.vf + RELOC/fonts/vf/public/ae/aer17.vf + RELOC/fonts/vf/public/ae/aer5.vf + RELOC/fonts/vf/public/ae/aer6.vf + RELOC/fonts/vf/public/ae/aer7.vf + RELOC/fonts/vf/public/ae/aer8.vf + RELOC/fonts/vf/public/ae/aer9.vf + RELOC/fonts/vf/public/ae/aesl10.vf + RELOC/fonts/vf/public/ae/aesl12.vf + RELOC/fonts/vf/public/ae/aesl8.vf + RELOC/fonts/vf/public/ae/aesl9.vf + RELOC/fonts/vf/public/ae/aesltt10.vf + RELOC/fonts/vf/public/ae/aess10.vf + RELOC/fonts/vf/public/ae/aess12.vf + RELOC/fonts/vf/public/ae/aess17.vf + RELOC/fonts/vf/public/ae/aess8.vf + RELOC/fonts/vf/public/ae/aess9.vf + RELOC/fonts/vf/public/ae/aessbx10.vf + RELOC/fonts/vf/public/ae/aessdc10.vf + RELOC/fonts/vf/public/ae/aessi10.vf + RELOC/fonts/vf/public/ae/aessi12.vf + RELOC/fonts/vf/public/ae/aessi17.vf + RELOC/fonts/vf/public/ae/aessi8.vf + RELOC/fonts/vf/public/ae/aessi9.vf + RELOC/fonts/vf/public/ae/aetcsc10.vf + RELOC/fonts/vf/public/ae/aeti10.vf + RELOC/fonts/vf/public/ae/aeti12.vf + RELOC/fonts/vf/public/ae/aeti7.vf + RELOC/fonts/vf/public/ae/aeti8.vf + RELOC/fonts/vf/public/ae/aeti9.vf + RELOC/fonts/vf/public/ae/aett10.vf + RELOC/fonts/vf/public/ae/aett12.vf + RELOC/fonts/vf/public/ae/aett8.vf + RELOC/fonts/vf/public/ae/aett9.vf + RELOC/fonts/vf/public/ae/laess8.vf + RELOC/fonts/vf/public/ae/laessb8.vf + RELOC/fonts/vf/public/ae/laessi8.vf + RELOC/tex/latex/ae/ae.sty + RELOC/tex/latex/ae/aecompl.sty + RELOC/tex/latex/ae/omlaer.fd + RELOC/tex/latex/ae/omsaer.fd + RELOC/tex/latex/ae/ot1aer.fd + RELOC/tex/latex/ae/ot1aess.fd + RELOC/tex/latex/ae/ot1aett.fd + RELOC/tex/latex/ae/ot1laess.fd + RELOC/tex/latex/ae/ot1laett.fd + RELOC/tex/latex/ae/t1aer.fd + RELOC/tex/latex/ae/t1aess.fd + RELOC/tex/latex/ae/t1aett.fd + RELOC/tex/latex/ae/t1laess.fd + RELOC/tex/latex/ae/t1laett.fd +catalogue-also zefonts aeguill +catalogue-ctan /fonts/ae +catalogue-license lppl +catalogue-topics font font-virtual font-t1enc +catalogue-version 1.4 + +name aeguill +category Package +revision 15878 +shortdesc Add several kinds of guillemets to the ae fonts +relocated 1 +longdesc The package enables the user to add guillemets from several +longdesc source (Polish cmr, Cyrillic cmr, lasy and ec) to the ae fonts. +longdesc This was useful when the ae fonts were used to produce PDF +longdesc files, since the additional guillemets exist in fonts available +longdesc in Adobe Type 1 format. +containersize 2388 +containerchecksum b75f41c1d179b63d1807ebfa81e9e656bb43433a3291b9e29d5f0f76667868d26840dc6ce7f61f0f959cef724f0b5738b96af2a371f949daefc4179de1f861e8 +doccontainersize 26984 +doccontainerchecksum 8361fc02999b080f19beb793fb0d1d802203114c1e1581c312a21e3a682191470b93e373fc269f8aea0e2643a69c8caf80855597ff6a71aadb6bfc869f4370da +docfiles size=15 + RELOC/doc/latex/aeguill/README details="Readme" + RELOC/doc/latex/aeguill/guil-test1.pdf details="Discussion of package" + RELOC/doc/latex/aeguill/guil-test1.tex + RELOC/doc/latex/aeguill/guil-test2.pdf details="Available guillemet glyphs" + RELOC/doc/latex/aeguill/guil-test2.tex + RELOC/doc/latex/aeguill/license.txt +runfiles size=2 + RELOC/tex/latex/aeguill/aeguill.sty +catalogue-ctan /macros/latex/contrib/aeguill +catalogue-license lppl +catalogue-topics font font-virtual font-t1enc + +name aesupp +category Package +revision 58253 +shortdesc Special support for the ae character +relocated 1 +longdesc This package provides special support for the italic 'ae' +longdesc character in some fonts, due to design flaws (in the author's +longdesc opinion) regarding this character. At the moment only the fonts +longdesc TeX Gyre Bonum, TeX Gyre Schola, TeX Gyre Pagella, and the +longdesc Latin Modern fonts are supported. The other fonts in the TeX +longdesc Gyre bundle do not need this support. +execute addMap aesupp.map +containersize 2826252 +containerchecksum 7a42831624c30db319a81420e1142bf827f21daeb4719e1a179a63632586b1fb43709c17faef073eb67f27f1303b4f7db92a40425506f4d8e0bc6b456e4f6114 +doccontainersize 155400 +doccontainerchecksum ece447f4c12da8509be155f2743ca52988f32ce62edb361a85fdcd7733bb401cf8ecbbc0fa6bbd7d1662593f1084aa89a29b2f1b822a765bc6f7e581b46bc153 +docfiles size=1175 + RELOC/doc/fonts/aesupp/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/aesupp/README details="Readme" + RELOC/doc/fonts/aesupp/aesupp.pdf details="Package documentation" + RELOC/doc/fonts/aesupp/aesupp.tex + RELOC/doc/fonts/aesupp/ec-aebkbi.pl + RELOC/doc/fonts/aesupp/ec-aebkri.pl + RELOC/doc/fonts/aesupp/ec-aecsbi.pl + RELOC/doc/fonts/aesupp/ec-aecsri.pl + RELOC/doc/fonts/aesupp/ec-aembxi10.pl + RELOC/doc/fonts/aesupp/ec-aemri10.pl + RELOC/doc/fonts/aesupp/ec-aemri12.pl + RELOC/doc/fonts/aesupp/ec-aemri7.pl + RELOC/doc/fonts/aesupp/ec-aemri8.pl + RELOC/doc/fonts/aesupp/ec-aemri9.pl + RELOC/doc/fonts/aesupp/ec-aemtti10.pl + RELOC/doc/fonts/aesupp/ec-aeplbi.pl + RELOC/doc/fonts/aesupp/ec-aeplri.pl + RELOC/doc/fonts/aesupp/genfonts.pe + RELOC/doc/fonts/aesupp/ggen.pl + RELOC/doc/fonts/aesupp/gpl-3.0.txt + RELOC/doc/fonts/aesupp/rm-aebkbi.pl + RELOC/doc/fonts/aesupp/rm-aebkri.pl + RELOC/doc/fonts/aesupp/rm-aecsbi.pl + RELOC/doc/fonts/aesupp/rm-aecsri.pl + RELOC/doc/fonts/aesupp/rm-aembxi10.pl + RELOC/doc/fonts/aesupp/rm-aemri10.pl + RELOC/doc/fonts/aesupp/rm-aemri12.pl + RELOC/doc/fonts/aesupp/rm-aemri7.pl + RELOC/doc/fonts/aesupp/rm-aemri8.pl + RELOC/doc/fonts/aesupp/rm-aemri9.pl + RELOC/doc/fonts/aesupp/rm-aemtti10.pl + RELOC/doc/fonts/aesupp/rm-aeplbi.pl + RELOC/doc/fonts/aesupp/rm-aeplri.pl +srccontainersize 1517148 +srccontainerchecksum cb628c51f7f4d972f81b2e23495e7ac6e82e422c7e85ffcdd7c3cbb753b055178adb9ea386bb4b1f1f1c4d2cdc561eba27cd82c7ef33830db0cde9af99e7730f +srcfiles size=4726 + RELOC/source/fonts/aesupp/aebonum-bolditalic.sfd + RELOC/source/fonts/aesupp/aebonum-italic.sfd + RELOC/source/fonts/aesupp/aemmono10-italic.sfd + RELOC/source/fonts/aesupp/aemroman10-bolditalic.sfd + RELOC/source/fonts/aesupp/aemroman10-italic.sfd + RELOC/source/fonts/aesupp/aemroman12-italic.sfd + RELOC/source/fonts/aesupp/aemroman7-italic.sfd + RELOC/source/fonts/aesupp/aemroman8-italic.sfd + RELOC/source/fonts/aesupp/aemroman9-italic.sfd + RELOC/source/fonts/aesupp/aepagella-bolditalic.sfd + RELOC/source/fonts/aesupp/aepagella-italic.sfd + RELOC/source/fonts/aesupp/aeschola-bolditalic.sfd + RELOC/source/fonts/aesupp/aeschola-italic.sfd +runfiles size=1122 + RELOC/fonts/enc/dvips/aesupp/tg.enc + RELOC/fonts/map/dvips/aesupp/aesupp.map + RELOC/fonts/opentype/public/aesupp/aebonum-bolditalic.otf + RELOC/fonts/opentype/public/aesupp/aebonum-italic.otf + RELOC/fonts/opentype/public/aesupp/aemmono10-italic.otf + RELOC/fonts/opentype/public/aesupp/aemroman10-bolditalic.otf + RELOC/fonts/opentype/public/aesupp/aemroman10-italic.otf + RELOC/fonts/opentype/public/aesupp/aemroman12-italic.otf + RELOC/fonts/opentype/public/aesupp/aemroman7-italic.otf + RELOC/fonts/opentype/public/aesupp/aemroman8-italic.otf + RELOC/fonts/opentype/public/aesupp/aemroman9-italic.otf + RELOC/fonts/opentype/public/aesupp/aepagella-bolditalic.otf + RELOC/fonts/opentype/public/aesupp/aepagella-italic.otf + RELOC/fonts/opentype/public/aesupp/aeschola-bolditalic.otf + RELOC/fonts/opentype/public/aesupp/aeschola-italic.otf + RELOC/fonts/tfm/public/aesupp/aebkbi.tfm + RELOC/fonts/tfm/public/aesupp/aebkri.tfm + RELOC/fonts/tfm/public/aesupp/aecsbi.tfm + RELOC/fonts/tfm/public/aesupp/aecsri.tfm + RELOC/fonts/tfm/public/aesupp/aembxi10.tfm + RELOC/fonts/tfm/public/aesupp/aemri10.tfm + RELOC/fonts/tfm/public/aesupp/aemri12.tfm + RELOC/fonts/tfm/public/aesupp/aemri7.tfm + RELOC/fonts/tfm/public/aesupp/aemri8.tfm + RELOC/fonts/tfm/public/aesupp/aemri9.tfm + RELOC/fonts/tfm/public/aesupp/aemtti10.tfm + RELOC/fonts/tfm/public/aesupp/aeplbi.tfm + RELOC/fonts/tfm/public/aesupp/aeplri.tfm + RELOC/fonts/tfm/public/aesupp/ec-aebkbi.tfm + RELOC/fonts/tfm/public/aesupp/ec-aebkri.tfm + RELOC/fonts/tfm/public/aesupp/ec-aecsbi.tfm + RELOC/fonts/tfm/public/aesupp/ec-aecsri.tfm + RELOC/fonts/tfm/public/aesupp/ec-aembxi10.tfm + RELOC/fonts/tfm/public/aesupp/ec-aemri10.tfm + RELOC/fonts/tfm/public/aesupp/ec-aemri12.tfm + RELOC/fonts/tfm/public/aesupp/ec-aemri7.tfm + RELOC/fonts/tfm/public/aesupp/ec-aemri8.tfm + RELOC/fonts/tfm/public/aesupp/ec-aemri9.tfm + RELOC/fonts/tfm/public/aesupp/ec-aemtti10.tfm + RELOC/fonts/tfm/public/aesupp/ec-aeplbi.tfm + RELOC/fonts/tfm/public/aesupp/ec-aeplri.tfm + RELOC/fonts/tfm/public/aesupp/rm-aebkbi.tfm + RELOC/fonts/tfm/public/aesupp/rm-aebkri.tfm + RELOC/fonts/tfm/public/aesupp/rm-aecsbi.tfm + RELOC/fonts/tfm/public/aesupp/rm-aecsri.tfm + RELOC/fonts/tfm/public/aesupp/rm-aembxi10.tfm + RELOC/fonts/tfm/public/aesupp/rm-aemri10.tfm + RELOC/fonts/tfm/public/aesupp/rm-aemri12.tfm + RELOC/fonts/tfm/public/aesupp/rm-aemri7.tfm + RELOC/fonts/tfm/public/aesupp/rm-aemri8.tfm + RELOC/fonts/tfm/public/aesupp/rm-aemri9.tfm + RELOC/fonts/tfm/public/aesupp/rm-aemtti10.tfm + RELOC/fonts/tfm/public/aesupp/rm-aeplbi.tfm + RELOC/fonts/tfm/public/aesupp/rm-aeplri.tfm + RELOC/fonts/type1/public/aesupp/aebkbi.pfb + RELOC/fonts/type1/public/aesupp/aebkri.pfb + RELOC/fonts/type1/public/aesupp/aecsbi.pfb + RELOC/fonts/type1/public/aesupp/aecsri.pfb + RELOC/fonts/type1/public/aesupp/aembxi10.pfb + RELOC/fonts/type1/public/aesupp/aemri10.pfb + RELOC/fonts/type1/public/aesupp/aemri12.pfb + RELOC/fonts/type1/public/aesupp/aemri7.pfb + RELOC/fonts/type1/public/aesupp/aemri8.pfb + RELOC/fonts/type1/public/aesupp/aemri9.pfb + RELOC/fonts/type1/public/aesupp/aemtti10.pfb + RELOC/fonts/type1/public/aesupp/aeplbi.pfb + RELOC/fonts/type1/public/aesupp/aeplri.pfb + RELOC/tex/latex/aesupp/aesupp.sty +catalogue-ctan /fonts/aesupp +catalogue-license gfl gpl3+ +catalogue-topics font font-specialist font-otf font-type1 font-supp +catalogue-version 1 + +name afm2pl +category TLCore +revision 54074 +shortdesc convert AFM to TeX property list (.pl) metrics +longdesc Program home page: http://tex.aanhet.net/afm2pl/ +depend afm2pl.ARCH +containersize 9616 +containerchecksum e539a12013dae7b30a83f615fe9f01678a25136a72ce754101aeb6bc8f1d287e006648f3050573ab211eeb00e5ac8082857b15e388d0da4886929a57d018fed2 +doccontainersize 41360 +doccontainerchecksum 771e72385110bfaf133865ceaf9cb85a94dc1037f7390b027b21a9117aaeb00e88f67b191229fbbb61f417ccecd6556335ba1d2ba46a0a65079929a0ccbfb1a7 +docfiles size=15 + texmf-dist/doc/man/man1/afm2pl.1 + texmf-dist/doc/man/man1/afm2pl.man1.pdf +runfiles size=24 + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1ital.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1tt.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-texnanlc.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-texnanuc.enc + texmf-dist/fonts/lig/afm2pl/accents.lig + texmf-dist/fonts/lig/afm2pl/bound.lig + texmf-dist/fonts/lig/afm2pl/default.lig + texmf-dist/fonts/lig/afm2pl/defpost.lig + texmf-dist/fonts/lig/afm2pl/defpre.lig + texmf-dist/fonts/lig/afm2pl/forge.lig + texmf-dist/fonts/lig/afm2pl/ligtex.lig + texmf-dist/tex/fontinst/afm2pl/README + texmf-dist/tex/fontinst/afm2pl/ly1.etx + texmf-dist/tex/fontinst/afm2pl/ly1c.etx + texmf-dist/tex/fontinst/afm2pl/makesc8y.tex + +name afm2pl.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of afm2pl +containersize 40304 +containerchecksum cd23193f64f252cfd3c788cf5dbe502f048eeb3e4594ef22e752e2a5b2a91cea491d8e2ce50cc51fac7f8a179ee7299a233326b219888b34949e81d501a771e3 +binfiles arch=aarch64-linux size=26 + bin/aarch64-linux/afm2pl + +name afm2pl.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of afm2pl +containersize 44224 +containerchecksum 9eb5af477646cfd648020e11aa922bab654cd4b40c7f541f78c9cabaabc89c2ee01269980c9df30c5bfd1eee78b466c5185d9e68da88340cf78cf5aa712f06fc +binfiles arch=amd64-freebsd size=27 + bin/amd64-freebsd/afm2pl + +name afm2pl.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of afm2pl +containersize 38192 +containerchecksum 17821b83f6335ab41a016fc72c1646ac747bf0dc52ccd11defa02382ebbacf055eb543e13e6520c36f7b5146cabad9ac1ea7c3f0102ad1f87e770800e2dda277 +binfiles arch=amd64-netbsd size=30 + bin/amd64-netbsd/afm2pl + +name afm2pl.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of afm2pl +containersize 34168 +containerchecksum dfeef30a115c4ad3af5308c5643628c2bdcaa40693ecc7873406061b563fcb3e9fa9cfe07f7147977980d37de2103f3b6dd4fb8c364ea327154cfe97770204aa +binfiles arch=armhf-linux size=21 + bin/armhf-linux/afm2pl + +name afm2pl.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of afm2pl +containersize 13200 +containerchecksum 93965bf213aca834ad2d990d344c0a0191c2210f90df3bf81222791d5dc3a5c5ff56db69c9eb33440c0d9612ed332e94226ee54cdb47530b3a0b8eff067c323d +binfiles arch=i386-cygwin size=8 + bin/i386-cygwin/afm2pl.exe + +name afm2pl.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of afm2pl +containersize 39272 +containerchecksum 1e250cf634418b5c06a3d3a295bdda4ef5db990368eda39d3cf09343c675aaba1e17ebf8f398da0522f0d11e144ee87907984545a6d60a858784abcd64388718 +binfiles arch=i386-freebsd size=23 + bin/i386-freebsd/afm2pl + +name afm2pl.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of afm2pl +containersize 44072 +containerchecksum 1c258bb62d3e450bc046df9b21e77cb90d8e94e258c72b1a231953f9a7759393fff8831ff748acc1eb1755f993eb81721982dfbe2ff5d4c45c22049dfdf30592 +binfiles arch=i386-linux size=26 + bin/i386-linux/afm2pl + +name afm2pl.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of afm2pl +containersize 35048 +containerchecksum d47edd89b7c38b115fa7e6994fa126826669bffe2f6813dac84baa4d7c1acf1a5879513c77d4a6868f984e918ce7677ad235cd67aceae46f075c7837c9666f64 +binfiles arch=i386-netbsd size=27 + bin/i386-netbsd/afm2pl + +name afm2pl.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of afm2pl +containersize 40340 +containerchecksum 134be982744b78840fbab2c8c1b6a813b310746d9158968f9041742b7618b9ab3c1bb2109e4f83f915b139975ef8a311144e7a371bdaf18c355829312004c76a +binfiles arch=i386-solaris size=22 + bin/i386-solaris/afm2pl + +name afm2pl.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of afm2pl +containersize 83320 +containerchecksum 25ab570509df2ab370fb8547e69f588638278b37b1cb0544a6eb42771621c3c40adcc2af4d05b472270724f5fb662391516f874ce48d3bd0dc53b86fe2742bd2 +binfiles arch=universal-darwin size=71 + bin/universal-darwin/afm2pl + +name afm2pl.win32 +category TLCore +revision 58783 +shortdesc win32 files of afm2pl +containersize 14732 +containerchecksum 49637d1d2a26079ddb47ebfff2bef63a264a9a1ea8eefd948063b127e65ec76400d7b48c589081a027b910d5c8d1cea0f1813aab83fa3fc4028a4a22a6373fcb +binfiles arch=win32 size=9 + bin/win32/afm2pl.exe + +name afm2pl.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of afm2pl +containersize 14404 +containerchecksum 59761aa2d5a5cac8779c702b32eab4f8cf7794d520ec5dc0b0bd0cc41fd079b34155a0c582777aa2fc31ac9a06c76cc31202a59ea7b91dea7312684f18f2f5f0 +binfiles arch=x86_64-cygwin size=8 + bin/x86_64-cygwin/afm2pl.exe + +name afm2pl.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of afm2pl +containersize 40656 +containerchecksum 63501087582f0e33084676b6b0cbf954dcbc1696307f8811c3dc38bae60a0a4892d1d4c96c887fa8af81f91a19cd430d2dd204619705dc9bfcc31838a7cb7edb +binfiles arch=x86_64-darwinlegacy size=24 + bin/x86_64-darwinlegacy/afm2pl + +name afm2pl.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of afm2pl +containersize 42412 +containerchecksum 33b7261673a1dd6bcf95299a8c96f76299f387f107a8008f5d4dac9fd00aef48c0edb47d7d7d9c57e3a612db7cd3625c83761b2386d050ccac0c8d54256cfbc3 +binfiles arch=x86_64-linux size=24 + bin/x86_64-linux/afm2pl + +name afm2pl.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of afm2pl +containersize 44016 +containerchecksum 9057db93a942016711d8e4cbe501d73bbb9a5860f69f3c5cdb354b36b18939eef3fba6ef6405a6553443b589d572d8a28b7792418a13cfad9e7caf17438f538b +binfiles arch=x86_64-linuxmusl size=26 + bin/x86_64-linuxmusl/afm2pl + +name afm2pl.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of afm2pl +containersize 44352 +containerchecksum 5314ec4a27a58c20d2cf96cd502b8acb976983058951a51bf3770d8d581c7cd9fe5445daae533382e88368e00be8ba96f62c19fc5abbb02a4755f3c805d72bfe +binfiles arch=x86_64-solaris size=26 + bin/x86_64-solaris/afm2pl + +name afparticle +category Package +revision 35900 +shortdesc Typesetting articles for Archives of Forensic Psychology +relocated 1 +longdesc This package provides a class for typesetting articles for the +longdesc open access journal Archives of Forensic Psychology. +containersize 3760 +containerchecksum 958ed5cbce1dc7bfb5d01befe74de6236a09b3ae5246aa3f2e80225bc353abf21b622f4128641c54a27197560557738d4c224e160c0be87010517c3a30a729ae +doccontainersize 550024 +doccontainerchecksum d8185772e114a891ff5ce0f2a2e12b827420f8c486813d87bbb6fafc662ca1db710178e8cfa260d7d650c3432909b9f7a8521648f6aebd5f90daf1aec4e28d7d +docfiles size=165 + RELOC/doc/latex/afparticle/Makefile + RELOC/doc/latex/afparticle/README details="Readme" + RELOC/doc/latex/afparticle/afparticle.pdf details="Package documentation" + RELOC/doc/latex/afparticle/afpsample.bib + RELOC/doc/latex/afparticle/afpsample.pdf details="Example of usage" + RELOC/doc/latex/afparticle/afpsample.tex + RELOC/doc/latex/afparticle/vitruvian.jpg +srccontainersize 9516 +srccontainerchecksum f12b5a10b929d78c728331704ee83e726bc28562b8179adc2d9e7324b6b742100319078f5ebe8371a34927ae1fecac4779b9442076a95cae1d66e015f235d440 +srcfiles size=9 + RELOC/source/latex/afparticle/afparticle.dtx + RELOC/source/latex/afparticle/afparticle.ins +runfiles size=3 + RELOC/tex/latex/afparticle/afparticle.cls +catalogue-ctan /macros/latex/contrib/afparticle +catalogue-license lppl1.3 +catalogue-topics journalpub class article-like +catalogue-version 1.3 + +name afthesis +category Package +revision 15878 +shortdesc Air Force Institute of Technology thesis class +relocated 1 +longdesc LaTeX thesis/dissertation class for US Air Force Institute Of +longdesc Technology. +containersize 12892 +containerchecksum 0ed83c0a98bdade60c49b3408053e020c6deba1b96d74b47aa2404c778a96ce2898af1d76892704524c0c069128e59c0bee5af73de6ff9237624600b991ed6b5 +doccontainersize 33016 +doccontainerchecksum c221f77700f974f0cedeb4f8ecca5280c04203e9cd89042d414eb54037db71cceed450477fe9498a15d9f09b8a0cffa177cc897958594fa7e3952adbd85225a8 +docfiles size=17 + RELOC/doc/latex/afthesis/README details="Readme" + RELOC/doc/latex/afthesis/thesnumb.doc + RELOC/doc/latex/afthesis/usethesis.pdf details="Package documentation" + RELOC/doc/latex/afthesis/usethesis.tex +runfiles size=19 + RELOC/bibtex/bst/afthesis/thesnumb.bst + RELOC/tex/latex/afthesis/afthes10.sty + RELOC/tex/latex/afthesis/afthes11.sty + RELOC/tex/latex/afthesis/afthes12.sty + RELOC/tex/latex/afthesis/afthesis.cls + RELOC/tex/latex/afthesis/afthesis.sty +catalogue-ctan /macros/latex/contrib/afthesis +catalogue-license pd +catalogue-topics dissertation class +catalogue-version 2.7 + +name aguplus +category Package +revision 17156 +shortdesc Styles for American Geophysical Union +relocated 1 +longdesc This bundle started as an extension to the AGU's own published +longdesc styles, providing extra facilities and improved usability. The +longdesc AGU now publishes satisfactory LaTeX materials of its own; the +longdesc author of aguplus recommends that users switch to using the +longdesc official distribution. +containersize 28708 +containerchecksum 73bd9b7f01a4911fb25aa7d388c5827c62a01a786ece4317f5b702de4c281bd05f82568780f4396bf289fcbb348abd2a3eca6620fd8e3f801d23aff7a05e104e +doccontainersize 330372 +doccontainerchecksum 48b9c010f746b8a85bbf1093b3dd39c2a853d74b20feb71bfebf2ded8d6f4c44538e6e20b24c65849e8adea9d34ff15498e847b1521bfca11d18fc23d18e10f2 +docfiles size=103 + RELOC/doc/latex/aguplus/README details="Readme" + RELOC/doc/latex/aguplus/README.aguplus + RELOC/doc/latex/aguplus/aguplus.pdf details="Package documentation" + RELOC/doc/latex/aguplus/aguplus.tex + RELOC/doc/latex/aguplus/changes.v16b + RELOC/doc/latex/aguplus/geophys.tex + RELOC/doc/latex/aguplus/sample.bib + RELOC/doc/latex/aguplus/samplus.tex +runfiles size=74 + RELOC/bibtex/bst/aguplus/agu.bst + RELOC/bibtex/bst/aguplus/agu04.bst + RELOC/bibtex/bst/aguplus/agufull.bst + RELOC/bibtex/bst/aguplus/agufull04.bst + RELOC/tex/latex/aguplus/aguplus.cls + RELOC/tex/latex/aguplus/aguplus.sty + RELOC/tex/latex/aguplus/agupp.sty +catalogue-ctan /macros/latex/contrib/aguplus +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.6b + +name aiaa +category Package +revision 15878 +shortdesc Typeset AIAA conference papers +relocated 1 +longdesc A bundle of LaTeX/BibTeX files and sample documents to aid +longdesc those producing papers and journal articles according to the +longdesc guidelines of the American Institute of Aeronautics and +longdesc Astronautics (AIAA). +containersize 8780 +containerchecksum 9a5c04cc0b24e2b11e4b6953ceed9e506ad9f44922b3407c3aed1f5fd1fda1e86b1a5d6613a059065c1026f69830a8f5af0ed21ad8e1856ab44d22985768f24a +doccontainersize 928712 +doccontainerchecksum cd69337eb21eaeff910696f153bc97fca94afa0b147e3360477f72c5d90afa5d54d375b5eb7801df1b988c8f11d8fd23848a07f013a4e06c28a013248e00599b +docfiles size=453 + RELOC/doc/latex/aiaa/README details="Package README" + RELOC/doc/latex/aiaa/aiaa.pdf details="Package documentation" + RELOC/doc/latex/aiaa/author_guide.pdf details="Author guide" + RELOC/doc/latex/aiaa/author_guide.tex + RELOC/doc/latex/aiaa/bibtex_database.bib + RELOC/doc/latex/aiaa/figure_magnet.eps + RELOC/doc/latex/aiaa/figure_magnet.pdf + RELOC/doc/latex/aiaa/pre2004/CHANGES + RELOC/doc/latex/aiaa/pre2004/MANIFEST + RELOC/doc/latex/aiaa/pre2004/README details="Package README" + RELOC/doc/latex/aiaa/pre2004/aiaa.dtx + RELOC/doc/latex/aiaa/pre2004/aiaa.ins + RELOC/doc/latex/aiaa/pre2004/aiaa.pdf details="Package documentation" + RELOC/doc/latex/aiaa/pre2004/aiaalgo.eps + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.ps + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.tex + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpbtx.bib + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpfig.eps + RELOC/doc/latex/aiaa/pre2004/demos/refs/tstbtx.bib + RELOC/doc/latex/aiaa/pre2004/demos/refs/tstref.tex + RELOC/doc/latex/aiaa/pre2004/demos/subfigs/smpfig.eps + RELOC/doc/latex/aiaa/pre2004/demos/subfigs/smpsubf.tex + RELOC/doc/latex/aiaa/pre2004/demos/talk/smpfig.eps + RELOC/doc/latex/aiaa/pre2004/demos/talk/smptalk.ps + RELOC/doc/latex/aiaa/pre2004/demos/talk/smptalk.sty + RELOC/doc/latex/aiaa/pre2004/demos/talk/smptalk.tex + RELOC/doc/latex/aiaa/template_advanced.pdf + RELOC/doc/latex/aiaa/template_advanced.tex + RELOC/doc/latex/aiaa/template_basic.pdf + RELOC/doc/latex/aiaa/template_basic.tex +srccontainersize 16568 +srccontainerchecksum e9542fb3cb5a16a565bb5c349f15b453ccb4c81570425a5825f0f952816ec27edad65ee670bed9069dd0c1c8762b5becf6300ad551b15bc5adff960f73354588 +srcfiles size=16 + RELOC/source/latex/aiaa/aiaa.dtx + RELOC/source/latex/aiaa/aiaa.ins +runfiles size=10 + RELOC/bibtex/bst/aiaa/aiaa.bst + RELOC/tex/latex/aiaa/aiaa-tc.cls +catalogue-ctan /macros/latex/contrib/aiaa +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 3.6 + +name aichej +category Package +revision 15878 +shortdesc Bibliography style file for the AIChE Journal +relocated 1 +longdesc The style was generated using custom-bib, and implements the +longdesc style of the American Institute of Chemical Engineers Journal +longdesc (or AIChE Journal or AIChE J or AIChEJ). +containersize 6172 +containerchecksum 7edc0ca36209f18dcca0b794c7ee712f0eba82e3e69b09fd46fdc7ede6bd33e93d4936d7bfcff88fe4f699acd04493053a7c76cabb87670215efaae12aaabc83 +runfiles size=7 + RELOC/bibtex/bst/aichej/aichej.bst +catalogue-ctan /biblio/bibtex/contrib/misc/aichej.bst +catalogue-license lppl +catalogue-topics bibtex-sty journalpub + +name ajl +category Package +revision 34016 +shortdesc BibTeX style for AJL +relocated 1 +longdesc Bibliographic style references in style of Australian Journal +longdesc of Linguistics. +containersize 6252 +containerchecksum 083a549d425336eceee0ab8e85ef592aa15983e9a4dcf2264d835b5242933fed8719b81b427fcf7784b38b8e0b3dac2e2a7f8b9ffd10cf2690b96bf8b586ff3d +runfiles size=8 + RELOC/bibtex/bst/ajl/ajl.bst +catalogue-ctan /biblio/bibtex/contrib/misc/ajl.bst +catalogue-license lppl +catalogue-topics bibtex-sty + +name akktex +category Package +revision 26055 +shortdesc A collection of packages and classes +relocated 1 +longdesc The bundle provides: new document classes for technical +longdesc documents, thesis works, manuscripts and lecture notes; many +longdesc mathematical packages providing a large number of macros for +longdesc mathematical texts; layout providing a non-empty parskip with +longdesc extended length corrections and new section definition +longdesc commands; easy label creation for counters; and german language +longdesc tools and predefined abbreviations. +containersize 14272 +containerchecksum 481502410094aedb36f00dc93ff3cad9479e756b00c60abdd7da98713f273cf45a314ccb55ef2436dc54cf7e8f84e2bf9fc5f00974c9978aebacee177380c9a5 +doccontainersize 1600 +doccontainerchecksum 4378f1e2c96bab5f5926b22863580dc2ae555400d770f5875eff09b8f915da4c83e99679fa7487f788970d17537123d854400e31bfca868d693b3d950c33051b +docfiles size=2 + RELOC/doc/latex/akktex/README details="Bundle README" + RELOC/doc/latex/akktex/README.TEXLIVE +runfiles size=37 + RELOC/tex/latex/akktex/akkconditional.sty + RELOC/tex/latex/akktex/akkcounterlabelpattern.sty + RELOC/tex/latex/akktex/akkcs.sty + RELOC/tex/latex/akktex/akkdoc.sty + RELOC/tex/latex/akktex/akkgerman.sty + RELOC/tex/latex/akktex/akkgermanabbreviations.sty + RELOC/tex/latex/akktex/akklecture.cls + RELOC/tex/latex/akktex/akklongpage.sty + RELOC/tex/latex/akktex/akkmath.sty + RELOC/tex/latex/akktex/akkmathbasic.sty + RELOC/tex/latex/akktex/akkmathdisc.sty + RELOC/tex/latex/akktex/akkmathfun.sty + RELOC/tex/latex/akktex/akkmathnum.sty + RELOC/tex/latex/akktex/akkmathpaper.sty + RELOC/tex/latex/akktex/akkmathproof.sty + RELOC/tex/latex/akktex/akkmathrel.sty + RELOC/tex/latex/akktex/akkmathset.sty + RELOC/tex/latex/akktex/akkmathtext.sty + RELOC/tex/latex/akktex/akknum.sty + RELOC/tex/latex/akktex/akkparskip.sty + RELOC/tex/latex/akktex/akkscript.cls + RELOC/tex/latex/akktex/akksection.sty + RELOC/tex/latex/akktex/akkstring.sty + RELOC/tex/latex/akktex/akktecdoc.cls + RELOC/tex/latex/akktex/akktex.sty + RELOC/tex/latex/akktex/akkwidepage.sty +catalogue-ctan /macros/latex/contrib/akktex +catalogue-license lppl +catalogue-topics class maths +catalogue-version 0.3.2 + +name akletter +category Package +revision 15878 +shortdesc Comprehensive letter support +relocated 1 +longdesc An advanced letter document class which extends LaTeX's usual +longdesc letter class, providing support for building your own +longdesc letterhead and marking fold points for window envelopes. +longdesc Options supported by the package include: letterpaper for US +longdesc letter; a4offset for a modified A4 layout suitable for platic +longdesc binders that cover a part of the left margin. The class's +longdesc handling of dates has inspired an extended version of +longdesc date-handling in the isodate package. The class supersedes an +longdesc earlier class called myletter. +containersize 9720 +containerchecksum fc0702fce74b32b04ce2b1e03960a7617c84a89d4581f16bbbe1b16fc01d45300c0a46682460d78cc572b6e20cc42ec7701c5067adf5e4960ed1bdfd5a69e910 +doccontainersize 202824 +doccontainerchecksum 6a951bf2ad4a7af4a6c87b24e8f4c3b4ff520430024a6abe6b54cf56269a903d78e591def71ce7cac832a4d3f822e8baa14f8decc960b455688801f406d01e74 +docfiles size=69 + RELOC/doc/latex/akletter/akletter.tex + RELOC/doc/latex/akletter/akletter.upl + RELOC/doc/latex/akletter/letterdoc.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/akletter/letterdoc.tex + RELOC/doc/latex/akletter/lettereng.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/akletter/lettereng.tex +runfiles size=11 + RELOC/tex/latex/akletter/akfax.cfg + RELOC/tex/latex/akletter/akletter.cfg + RELOC/tex/latex/akletter/akletter.cls + RELOC/tex/latex/akletter/myletter.cls +catalogue-also dinbrief envlab formlett +catalogue-ctan /macros/latex/contrib/akletter +catalogue-license lppl +catalogue-topics letter class +catalogue-version 1.5i + +name akshar +category Package +revision 56277 +shortdesc Support for syllables in the Devanagari script +relocated 1 +longdesc This LaTeX3 package provides macros and interfaces to work with +longdesc Devanagari characters and syllables in a more correct way. +containersize 2988 +containerchecksum d626d6e3a72fb8319f07c56d200566fc351be15acbbdc0ded7c3abb9765ce257741458109203882e8fa6131ba182539fd04e1ccffa0a25cbdcbe6f7630d3bfb4 +doccontainersize 145756 +doccontainerchecksum 2dc5f4de3807a8e2c7a81046fb5d9dd92a651ef86aa22bd47c68d7b9a75943537284faa2d95d89b013573dfaca2d8d96e53524cb916152e46fac067532b108dd +docfiles size=37 + RELOC/doc/latex/akshar/README.txt details="Readme" + RELOC/doc/latex/akshar/akshar.pdf details="Package documentation" +srccontainersize 1526912 +srccontainerchecksum 9095a3c6889eb8de55c5956157a5dfc3e885e93b70ee6285b2ac14d4fcb244e65a11bea2476ad2d35b6add316423897bf8fa15e30e99b6d8d3d3d3cc65b20f31 +srcfiles size=2023 + RELOC/source/latex/akshar/HackNF_B.ttf + RELOC/source/latex/akshar/HackNF_BI.ttf + RELOC/source/latex/akshar/HackNF_I.ttf + RELOC/source/latex/akshar/HackNF_R.ttf + RELOC/source/latex/akshar/akshar.dtx + RELOC/source/latex/akshar/akshar.ins + RELOC/source/latex/akshar/siddhanta.ttf +runfiles size=4 + RELOC/tex/latex/akshar/akshar.sty +catalogue-contact-bugs https://github.com/joulev/akshar/issues +catalogue-contact-repository https://github.com/joulev/akshar +catalogue-ctan /macros/latex/contrib/akshar +catalogue-license lppl1.3c +catalogue-topics indic expl3 +catalogue-version 0.2 + +name albatross +category Package +revision 57416 +shortdesc Find fonts that contain a given glyph +longdesc This is a command line tool for finding fonts that contain a +longdesc given (Unicode) glyph. It relies on Fontconfig. +depend albatross.ARCH +containersize 2828456 +containerchecksum 78f4df49c5d7e4bc942ee80e1e9e7282d3b90b00af2cb946c52fca223b224dbf26c385f81d7a5c05e27e8e52b8de7c1197667e6ee699f8e8834d0d8739bc5f83 +doccontainersize 99644 +doccontainerchecksum 3501da3f5dd2ed9830029f4880e59ec6a837ae6063fc7abf6b3d2cee0357c2fab2c7747676a0a1d719e68cb512e680fd0a2eb77ba09993f86f5e32ae5f8e40bc +docfiles size=42 + texmf-dist/doc/man/man1/albatross.1 + texmf-dist/doc/man/man1/albatross.man1.pdf + texmf-dist/doc/support/albatross/README.md details="Readme" + texmf-dist/doc/support/albatross/albatross-manual.pdf details="Package documentation" + texmf-dist/doc/support/albatross/albatross-manual.tex + texmf-dist/doc/support/albatross/version.tex +srccontainersize 4824 +srccontainerchecksum fadc69184b89a4d664f9fc8b3d7d18ca3bf9cfc49c62ada68f7b265cf3cc9b196e06b086058bce2f842200f754e8c5f1eb16b5c4f17a9cfa00166d3ae64ceef1 +srcfiles size=2 + texmf-dist/source/support/albatross/albatross-0.3.0-src.zip +runfiles size=766 + texmf-dist/scripts/albatross/albatross.jar + texmf-dist/scripts/albatross/albatross.sh +catalogue-contact-bugs https://gitlab.com/islandoftex/albatross/-/issues +catalogue-contact-repository https://gitlab.com/islandoftex/albatross/ +catalogue-contact-support https://gitter.im/Island-of-TeX/community +catalogue-ctan /support/albatross +catalogue-license bsd3 +catalogue-topics unicode font-util +catalogue-version 0.3.0 + +name albatross.aarch64-linux +category Package +revision 57089 +shortdesc aarch64-linux files of albatross +containersize 340 +containerchecksum 2105a7922281bc41e3ba8bd0f0be360d2f7d1de6f77f48ac78d80523b276a31eb20c638447a3dc7ce5c3a400002e0c7a3536038bdf7082d6f21255a821a29098 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/albatross + +name albatross.amd64-freebsd +category Package +revision 57089 +shortdesc amd64-freebsd files of albatross +containersize 340 +containerchecksum 1034998a66b8dd786fd82568ae042882d8bcee02c6fcc3cd90cb319c65b1c8399083a0a9e0d85557b350ee3c04b134d34b31ca9fdab2a51af533530de84d851e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/albatross + +name albatross.amd64-netbsd +category Package +revision 57089 +shortdesc amd64-netbsd files of albatross +containersize 340 +containerchecksum f6fbb838efa944648a312bc920189243aca3134de9508c95f834b399ca78138dfd15265101c677d9f5e9bed97264dbedbc395b00a27b40520030b0fb3e3f1583 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/albatross + +name albatross.armhf-linux +category Package +revision 57089 +shortdesc armhf-linux files of albatross +containersize 340 +containerchecksum 78923c9d8619692a29b41f3874a124a3cf649eee78a6116a3fb60af0c1fb8c09d61470acc184f046fa75a7d928bd2d6e3c83dee2077ae242c600d42765d44a0a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/albatross + +name albatross.i386-cygwin +category Package +revision 57089 +shortdesc i386-cygwin files of albatross +containersize 340 +containerchecksum 9e7676e40c65e93db2b1852b9cb11c4a6c31bbd3ec21e30bc4e0779ee4abf7a7a99456f646a581a2cf682fda2658c2396a7858cfda86aca7771e1454bb5bdc40 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/albatross + +name albatross.i386-freebsd +category Package +revision 57089 +shortdesc i386-freebsd files of albatross +containersize 340 +containerchecksum 292ddb79369fa31c25d8fd7962ce692633b0d09e08b7903c1d3e6e78aa74c466235ddbf9d09a9cab2d55bd794b95b444c452db41a538591f8945ecfcb5a5c7d1 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/albatross + +name albatross.i386-linux +category Package +revision 57089 +shortdesc i386-linux files of albatross +containersize 340 +containerchecksum 9c0ea239ffca16e48d33519a66b938b37567cf0d6556707fc5e644e75e1247d8af0a9d964dd7907cf27f9c86b9d5186a63699b4fc40551e5e646176acde17b2f +binfiles arch=i386-linux size=1 + bin/i386-linux/albatross + +name albatross.i386-netbsd +category Package +revision 57089 +shortdesc i386-netbsd files of albatross +containersize 340 +containerchecksum a6707978cbb9a68b958fa0ff016589be20e0cc143f31ae06675c4cf6e53139578f214d8d823260bac695b2d3d62de289ffad03e9fc3cd1e40176d79bc7d0b728 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/albatross + +name albatross.i386-solaris +category Package +revision 57089 +shortdesc i386-solaris files of albatross +containersize 340 +containerchecksum de1af91276c34cd755d5a71b26c57ddf94816b492d893896bc7c53d86e704739b73316ac86e1a44f144486ed8109ccf571c6d962225858826042142ce0568e8c +binfiles arch=i386-solaris size=1 + bin/i386-solaris/albatross + +name albatross.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of albatross +containersize 344 +containerchecksum 107c66c52898ae5a4d90da608b45d35d45c115be3a3ce21a4a300d7687aeb885fbc8d9a38365fc464333356ee62c4ae40d3cd9690800b00f7495142703b26d07 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/albatross + +name albatross.win32 +category Package +revision 57420 +shortdesc win32 files of albatross +containersize 680 +containerchecksum b6b3f4415412deb19038b0f91272aedba0d9e78605eebb2ae979f9ee2473b40b081aa6963570e78e6146e1283a835338cb521f74c955d2b6bb789d0bd183fcb6 +binfiles arch=win32 size=1 + bin/win32/albatross.exe + +name albatross.x86_64-cygwin +category Package +revision 57089 +shortdesc x86_64-cygwin files of albatross +containersize 340 +containerchecksum 79b87fc420fcbb2241835d04ae82c4441b30e97e23052c62afebdb6f31f7daf5dce957bd1b9dc231413881db63bad677ebd3ee55509a2247a38a5b5d943c55ac +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/albatross + +name albatross.x86_64-darwinlegacy +category Package +revision 57089 +shortdesc x86_64-darwinlegacy files of albatross +containersize 348 +containerchecksum 260b41e7d4cfb7ba255a3d7acb5ab27993ccbce053011b15a4890d773d3fb720decf2440c46463e6e085bd5aa53714fd0c36599bd7590bc39d3b2d1ef7913835 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/albatross + +name albatross.x86_64-linux +category Package +revision 57089 +shortdesc x86_64-linux files of albatross +containersize 344 +containerchecksum bbf6474028842aab41eef1ed08347d6caaaa24825c7718978d74b2aa00baef08b6ea38a70dcb9ca3bf63cba1501f0b5f7798174df55581f0eec3817e8fbab5b7 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/albatross + +name albatross.x86_64-linuxmusl +category Package +revision 57089 +shortdesc x86_64-linuxmusl files of albatross +containersize 344 +containerchecksum 8766d0a4fe4acc24939b7739f4723c0a56560c08ed48fa5f2d72709d67eab414c7d6dadf6d36dfceba10426f640067c56ed85d3ecd1fbcfa423d6877f8ecbda1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/albatross + +name albatross.x86_64-solaris +category Package +revision 57089 +shortdesc x86_64-solaris files of albatross +containersize 340 +containerchecksum 3a88f6538dd7f22302b6b4878f229cbdefa0d690842ee4e8181c4d2fd32652d08598d170e109a361c6fcfda80dbe7c6c11eac3205f371b7ed2011aa99e61f87b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/albatross + +name alegreya +category Package +revision 54512 +shortdesc Alegreya fonts with LaTeX support +relocated 1 +longdesc The Alegreya fonts are designed by Juan Pablo del Peral for +longdesc Huerta Tipografica. Alegreya is a typeface originally intended +longdesc for literature. It conveys a dynamic and varied rhythm which +longdesc facilitates the reading of long texts. The italic has just as +longdesc much care and attention to detail in the design as the roman. +longdesc Bold, black, small caps and five number styles are available. +execute addMap Alegreya.map +containersize 24434164 +containerchecksum 7136053c90b3c9ae5744a1740e44008b3fea0a25323cb9033a6c2a2d1c72a024645626903913485af24ee08a9614d3fd6e9ba79dfd2206ec29c0fc1b1b98a21c +doccontainersize 1107112 +doccontainerchecksum fb152014915f9bf56ded5eef117169453923a86a8dfb165facd4e3e1db278f31aeab91e49e5e66d6d4a08ea10cba91ee762b4937f75f9623c77ff73b37965ddd +docfiles size=274 + RELOC/doc/fonts/alegreya/OFL.txt + RELOC/doc/fonts/alegreya/README details="Readme" + RELOC/doc/fonts/alegreya/alegreya-samples.pdf details="Font samples" + RELOC/doc/fonts/alegreya/alegreya-samples.tex +runfiles size=21829 + RELOC/fonts/enc/dvips/alegreya/algr_226fyf.enc + RELOC/fonts/enc/dvips/alegreya/algr_2vgxay.enc + RELOC/fonts/enc/dvips/alegreya/algr_32il6z.enc + RELOC/fonts/enc/dvips/alegreya/algr_3ej7ja.enc + RELOC/fonts/enc/dvips/alegreya/algr_3j6zf7.enc + RELOC/fonts/enc/dvips/alegreya/algr_3w755y.enc + RELOC/fonts/enc/dvips/alegreya/algr_4ns4wz.enc + RELOC/fonts/enc/dvips/alegreya/algr_4v37z4.enc + RELOC/fonts/enc/dvips/alegreya/algr_5gibri.enc + RELOC/fonts/enc/dvips/alegreya/algr_5io2mf.enc + RELOC/fonts/enc/dvips/alegreya/algr_5rsmqe.enc + RELOC/fonts/enc/dvips/alegreya/algr_62cj7n.enc + RELOC/fonts/enc/dvips/alegreya/algr_66zd6s.enc + RELOC/fonts/enc/dvips/alegreya/algr_6jp7bb.enc + RELOC/fonts/enc/dvips/alegreya/algr_6lq5ex.enc + RELOC/fonts/enc/dvips/alegreya/algr_6q4car.enc + RELOC/fonts/enc/dvips/alegreya/algr_6wvqta.enc + RELOC/fonts/enc/dvips/alegreya/algr_7cbt5m.enc + RELOC/fonts/enc/dvips/alegreya/algr_7jzpyg.enc + RELOC/fonts/enc/dvips/alegreya/algr_b53fje.enc + RELOC/fonts/enc/dvips/alegreya/algr_bwwxle.enc + RELOC/fonts/enc/dvips/alegreya/algr_chmses.enc + RELOC/fonts/enc/dvips/alegreya/algr_ck23qu.enc + RELOC/fonts/enc/dvips/alegreya/algr_dfcgiv.enc + RELOC/fonts/enc/dvips/alegreya/algr_dokm3m.enc + RELOC/fonts/enc/dvips/alegreya/algr_dte76s.enc + RELOC/fonts/enc/dvips/alegreya/algr_ec6aae.enc + RELOC/fonts/enc/dvips/alegreya/algr_eltpie.enc + RELOC/fonts/enc/dvips/alegreya/algr_es2wca.enc + RELOC/fonts/enc/dvips/alegreya/algr_evb22y.enc + RELOC/fonts/enc/dvips/alegreya/algr_f7lt35.enc + RELOC/fonts/enc/dvips/alegreya/algr_fbntfe.enc + RELOC/fonts/enc/dvips/alegreya/algr_fi2sgn.enc + RELOC/fonts/enc/dvips/alegreya/algr_g3cfdt.enc + RELOC/fonts/enc/dvips/alegreya/algr_h4wxrq.enc + RELOC/fonts/enc/dvips/alegreya/algr_hnbre7.enc + RELOC/fonts/enc/dvips/alegreya/algr_hxyeky.enc + RELOC/fonts/enc/dvips/alegreya/algr_hzbvjz.enc + RELOC/fonts/enc/dvips/alegreya/algr_isiobp.enc + RELOC/fonts/enc/dvips/alegreya/algr_iszm25.enc + RELOC/fonts/enc/dvips/alegreya/algr_jfvu45.enc + RELOC/fonts/enc/dvips/alegreya/algr_jmly6e.enc + RELOC/fonts/enc/dvips/alegreya/algr_kvnvnq.enc + RELOC/fonts/enc/dvips/alegreya/algr_l3q2fl.enc + RELOC/fonts/enc/dvips/alegreya/algr_mlgxyz.enc + RELOC/fonts/enc/dvips/alegreya/algr_n26fs4.enc + RELOC/fonts/enc/dvips/alegreya/algr_nwaz6g.enc + RELOC/fonts/enc/dvips/alegreya/algr_oq6qvg.enc + RELOC/fonts/enc/dvips/alegreya/algr_oqh4wu.enc + RELOC/fonts/enc/dvips/alegreya/algr_orkgok.enc + RELOC/fonts/enc/dvips/alegreya/algr_oum7q3.enc + RELOC/fonts/enc/dvips/alegreya/algr_p7kywn.enc + RELOC/fonts/enc/dvips/alegreya/algr_phmojf.enc + RELOC/fonts/enc/dvips/alegreya/algr_qizth5.enc + RELOC/fonts/enc/dvips/alegreya/algr_qy2xvu.enc + RELOC/fonts/enc/dvips/alegreya/algr_r57u46.enc + RELOC/fonts/enc/dvips/alegreya/algr_rpkba2.enc + RELOC/fonts/enc/dvips/alegreya/algr_rxhb6t.enc + RELOC/fonts/enc/dvips/alegreya/algr_su2s7h.enc + RELOC/fonts/enc/dvips/alegreya/algr_te6qwy.enc + RELOC/fonts/enc/dvips/alegreya/algr_tf5zvx.enc + RELOC/fonts/enc/dvips/alegreya/algr_u7nq5p.enc + RELOC/fonts/enc/dvips/alegreya/algr_unkqzs.enc + RELOC/fonts/enc/dvips/alegreya/algr_v7kvmg.enc + RELOC/fonts/enc/dvips/alegreya/algr_v7zz7p.enc + RELOC/fonts/enc/dvips/alegreya/algr_vbs4kl.enc + RELOC/fonts/enc/dvips/alegreya/algr_vwfggt.enc + RELOC/fonts/enc/dvips/alegreya/algr_w4wd2e.enc + RELOC/fonts/enc/dvips/alegreya/algr_wbb64e.enc + RELOC/fonts/enc/dvips/alegreya/algr_wnb4kq.enc + RELOC/fonts/enc/dvips/alegreya/algr_xyef6o.enc + RELOC/fonts/enc/dvips/alegreya/algr_y2uq4q.enc + RELOC/fonts/enc/dvips/alegreya/algr_ywnyo5.enc + RELOC/fonts/enc/dvips/alegreya/algr_zbisw7.enc + RELOC/fonts/enc/dvips/alegreya/algr_zgz46n.enc + RELOC/fonts/enc/dvips/alegreya/algr_zsorhr.enc + RELOC/fonts/enc/dvips/alegreya/algr_zt4bhv.enc + RELOC/fonts/map/dvips/alegreya/Alegreya.map + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Black.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-BlackItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Bold.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-BoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-ExtraBold.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-ExtraBoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Italic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Medium.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-MediumItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Regular.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-Black.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-BlackItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-Bold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-BoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-ExtraBold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-ExtraBoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-Italic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-Medium.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-MediumItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSC-Regular.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Black.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-BlackItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Bold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-BoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-ExtraBold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Italic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Light.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-LightItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Medium.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-MediumItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Regular.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Thin.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-ThinItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-Black.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-BlackItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-Bold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-BoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-ExtraBold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-Italic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-Light.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-LightItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-Medium.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-MediumItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-Regular.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-Thin.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSansSC-ThinItalic.otf + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/type1/huerta/alegreya/Alegreya-Black.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-BlackItalic.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-Bold.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-BoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-ExtraBold.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-ExtraBoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-Italic.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-Medium.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-MediumItalic.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-Regular.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Black.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-BlackItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Bold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-BoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-ExtraBold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-ExtraBoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Italic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Medium.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-MediumItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Regular.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Black.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-BlackItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Bold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-BoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-ExtraBold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Italic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Light.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-LightItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Medium.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-MediumItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Regular.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Thin.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-ThinItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Black.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-BlackItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Bold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-BoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Italic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Light.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-LightItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Medium.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-MediumItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Regular.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Thin.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ThinItalic.pfb + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-inf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-sc-t1.vf + RELOC/tex/latex/alegreya/Alegreya.sty + RELOC/tex/latex/alegreya/AlegreyaSans.sty + RELOC/tex/latex/alegreya/LGRAlegreya-Inf.fd + RELOC/tex/latex/alegreya/LGRAlegreya-LF.fd + RELOC/tex/latex/alegreya/LGRAlegreya-OsF.fd + RELOC/tex/latex/alegreya/LGRAlegreya-Sup.fd + RELOC/tex/latex/alegreya/LGRAlegreya-TLF.fd + RELOC/tex/latex/alegreya/LGRAlegreya-TOsF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-Inf.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-LF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-OsF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-Sup.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-TLF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-TOsF.fd + RELOC/tex/latex/alegreya/LY1Alegreya-Inf.fd + RELOC/tex/latex/alegreya/LY1Alegreya-LF.fd + RELOC/tex/latex/alegreya/LY1Alegreya-OsF.fd + RELOC/tex/latex/alegreya/LY1Alegreya-Sup.fd + RELOC/tex/latex/alegreya/LY1Alegreya-TLF.fd + RELOC/tex/latex/alegreya/LY1Alegreya-TOsF.fd + RELOC/tex/latex/alegreya/LY1AlegreyaSans-Inf.fd + RELOC/tex/latex/alegreya/LY1AlegreyaSans-LF.fd + RELOC/tex/latex/alegreya/LY1AlegreyaSans-OsF.fd + RELOC/tex/latex/alegreya/LY1AlegreyaSans-Sup.fd + RELOC/tex/latex/alegreya/LY1AlegreyaSans-TLF.fd + RELOC/tex/latex/alegreya/LY1AlegreyaSans-TOsF.fd + RELOC/tex/latex/alegreya/OT1Alegreya-Inf.fd + RELOC/tex/latex/alegreya/OT1Alegreya-LF.fd + RELOC/tex/latex/alegreya/OT1Alegreya-OsF.fd + RELOC/tex/latex/alegreya/OT1Alegreya-Sup.fd + RELOC/tex/latex/alegreya/OT1Alegreya-TLF.fd + RELOC/tex/latex/alegreya/OT1Alegreya-TOsF.fd + RELOC/tex/latex/alegreya/OT1AlegreyaSans-Inf.fd + RELOC/tex/latex/alegreya/OT1AlegreyaSans-LF.fd + RELOC/tex/latex/alegreya/OT1AlegreyaSans-OsF.fd + RELOC/tex/latex/alegreya/OT1AlegreyaSans-Sup.fd + RELOC/tex/latex/alegreya/OT1AlegreyaSans-TLF.fd + RELOC/tex/latex/alegreya/OT1AlegreyaSans-TOsF.fd + RELOC/tex/latex/alegreya/T1Alegreya-Inf.fd + RELOC/tex/latex/alegreya/T1Alegreya-LF.fd + RELOC/tex/latex/alegreya/T1Alegreya-OsF.fd + RELOC/tex/latex/alegreya/T1Alegreya-Sup.fd + RELOC/tex/latex/alegreya/T1Alegreya-TLF.fd + RELOC/tex/latex/alegreya/T1Alegreya-TOsF.fd + RELOC/tex/latex/alegreya/T1AlegreyaSans-Inf.fd + RELOC/tex/latex/alegreya/T1AlegreyaSans-LF.fd + RELOC/tex/latex/alegreya/T1AlegreyaSans-OsF.fd + RELOC/tex/latex/alegreya/T1AlegreyaSans-Sup.fd + RELOC/tex/latex/alegreya/T1AlegreyaSans-TLF.fd + RELOC/tex/latex/alegreya/T1AlegreyaSans-TOsF.fd + RELOC/tex/latex/alegreya/TS1Alegreya-LF.fd + RELOC/tex/latex/alegreya/TS1Alegreya-OsF.fd + RELOC/tex/latex/alegreya/TS1Alegreya-TLF.fd + RELOC/tex/latex/alegreya/TS1Alegreya-TOsF.fd + RELOC/tex/latex/alegreya/TS1AlegreyaSans-LF.fd + RELOC/tex/latex/alegreya/TS1AlegreyaSans-OsF.fd + RELOC/tex/latex/alegreya/TS1AlegreyaSans-TLF.fd + RELOC/tex/latex/alegreya/TS1AlegreyaSans-TOsF.fd +catalogue-contact-home http://www.google.com/fonts +catalogue-ctan /fonts/alegreya +catalogue-license ofl lppl +catalogue-topics font font-body font-serif font-sans font-proportional font-t1enc font-type1 font-otf + +name aleph +category Package +revision 57972 +shortdesc Extended TeX +longdesc An development of omega, using most of the extensions of TeX +longdesc itself developed for e-TeX. +depend aleph.ARCH +depend cm +depend hyphen-base +depend knuth-lib +depend lambda +depend latex +depend plain +execute AddFormat name=aleph engine=aleph options=*aleph.ini fmttriggers=cm,hyphen-base,knuth-lib,plain +containersize 540 +containerchecksum 7d9241eab3e1e34f8c1aef85c4f2278680cd147cc4f188194c8c27147df3b9bf2a3bee7c651227aac79996e0745124990950ddc010a4f6662fda4a2f72575211 +doccontainersize 30580 +doccontainerchecksum 87de188abf9880f2e680d6582cfb20d8166eb0c3ed2d3a85971eeac6ba8abea2d7f46b8037c26b719c1289f778d4e94ae1813598e73f8f56f6224e3299852cf6 +docfiles size=12 + texmf-dist/doc/aleph/base/News + texmf-dist/doc/aleph/base/readme.txt + texmf-dist/doc/man/man1/aleph.1 + texmf-dist/doc/man/man1/aleph.man1.pdf +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/alephdir +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-license gpl +catalogue-topics engine omega + +name aleph.aarch64-linux +category Package +revision 58389 +shortdesc aarch64-linux files of aleph +containersize 244028 +containerchecksum 70e8e40cdaf3527c80bdd5c00ef201f90c5d8f42e1dcf11bee1383bf55b0928492c4eb9cc0e4930e7d476a68f903bd917000de8820db6a330ab5ec1a22dd9328 +binfiles arch=aarch64-linux size=162 + bin/aarch64-linux/aleph + +name aleph.amd64-freebsd +category Package +revision 58388 +shortdesc amd64-freebsd files of aleph +containersize 295704 +containerchecksum b4791fde807ed2dbdbb2346e1e6e5e55739bf6743c62a6a2b21f503e0a46cce46b91a361c1522300fbc1dc19900576c3320e4af3cfceefaa1a68cc363aef1411 +binfiles arch=amd64-freebsd size=190 + bin/amd64-freebsd/aleph + +name aleph.amd64-netbsd +category Package +revision 58386 +shortdesc amd64-netbsd files of aleph +containersize 219860 +containerchecksum 4e73e6dc8560d68a02812da9aa6b224f67845967518d838ee7a19b6271effa0113ea78d89791e5ad8f100a69ae94ee21ac99e2b6533f9be1691293ba27f5ffe8 +binfiles arch=amd64-netbsd size=192 + bin/amd64-netbsd/aleph + +name aleph.armhf-linux +category Package +revision 58428 +shortdesc armhf-linux files of aleph +containersize 204568 +containerchecksum 6d7003241a694c3ccaa44eb4fd0ec232dd89e1ad8ef3af2390a8aef4a40cd3bf97b4848c6792397c1ad9fe6f7303a5ab87081aa6895a00c02fdba3edeaebe1c3 +binfiles arch=armhf-linux size=122 + bin/armhf-linux/aleph + +name aleph.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of aleph +containersize 191084 +containerchecksum ee5f9020bd5fe2fa631f921be5ed1f3527cad798bc54b319454bdd93c737c7de01b42f20017e8192886bd8254e6725d6fcca783db3fa8830b4e0a97959af0ffb +binfiles arch=i386-cygwin size=124 + bin/i386-cygwin/aleph.exe + +name aleph.i386-freebsd +category Package +revision 58388 +shortdesc i386-freebsd files of aleph +containersize 219408 +containerchecksum 639bedc7e9fdab0e487b13cc69271649752d0b5a58ece81c0e616c213f8cb0815366b81fc7196db13bacdf687caf9ee474e3465ca9e570eee322a05c8dc277ad +binfiles arch=i386-freebsd size=170 + bin/i386-freebsd/aleph + +name aleph.i386-linux +category Package +revision 58378 +shortdesc i386-linux files of aleph +containersize 229596 +containerchecksum 4ac00b097757f1d046e8b8334c72627fa29ff4de9588669a6528e133e33beb835c3254e98526bc7f5a0eadfed44af05e54659ce9042cdf7f67f4480533e36ae7 +binfiles arch=i386-linux size=146 + bin/i386-linux/aleph + +name aleph.i386-netbsd +category Package +revision 58386 +shortdesc i386-netbsd files of aleph +containersize 164476 +containerchecksum 8e3aa205232383a5aa6e6fb5176464a0f445be67abfeba4994de51ed94a1aaae280ffca29f313d2fadc1125d87197dacc3fa7db5a365b5560c0d77f4c48d10d8 +binfiles arch=i386-netbsd size=168 + bin/i386-netbsd/aleph + +name aleph.i386-solaris +category Package +revision 58388 +shortdesc i386-solaris files of aleph +containersize 221708 +containerchecksum 3d29fb7c46fc5e1c43f4c560905336315a0869c9d56a2a74239f1abb28e355471c1eae5a78dbec057c5e9ca645684f7725c24c86bf4f229b6cc520c99516bf3c +binfiles arch=i386-solaris size=135 + bin/i386-solaris/aleph + +name aleph.universal-darwin +category Package +revision 58418 +shortdesc universal-darwin files of aleph +containersize 561720 +containerchecksum b471f2f2412c873287472b3b98feac730cac6f8cbb362eacbe84d9d671195af0ede0ba7c7b07b554083b4f610e25daaeedc1a35d31fdcf84675e9842b2739581 +binfiles arch=universal-darwin size=421 + bin/universal-darwin/aleph + +name aleph.win32 +category Package +revision 59028 +shortdesc win32 files of aleph +containersize 181444 +containerchecksum 8b4ae93e6f4147f5b78aa0b2881b9094f1a3730baecc69273d90912aacbedf68baae775378fecd560c4085f4bcc32dda6667822d48cf3455db38d5c683e85d12 +binfiles arch=win32 size=113 + bin/win32/aleph.dll + bin/win32/aleph.exe + +name aleph.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of aleph +containersize 224656 +containerchecksum 478fa178e4af4dca6ab0eb85371bfe265e858392bb8a71ff757b4d7b6018ef4175098d6c0e8ca987b5d541b0be04e83f927459e963c10f354321867bdfd25ad0 +binfiles arch=x86_64-cygwin size=127 + bin/x86_64-cygwin/aleph.exe + +name aleph.x86_64-darwinlegacy +category Package +revision 58388 +shortdesc x86_64-darwinlegacy files of aleph +containersize 230240 +containerchecksum d7c3f2e40ebef937464d98cdfa4cc961f222f2c9ef7514ea52c031829c53d316c00bb5a6df90c14510fed9f7ea13395d173fbd942c92af1ec3b5ad8b3085a8e1 +binfiles arch=x86_64-darwinlegacy size=132 + bin/x86_64-darwinlegacy/aleph + +name aleph.x86_64-linux +category Package +revision 58378 +shortdesc x86_64-linux files of aleph +containersize 247640 +containerchecksum 02e007ab1278a2864db2b0434789005c98d9028d41b1832cbc4eb3f9425ee76b77f2e89b8cf44ae403d0e580e49eda4cd098b98eac0bd7994665876dcfdb7068 +binfiles arch=x86_64-linux size=138 + bin/x86_64-linux/aleph + +name aleph.x86_64-linuxmusl +category Package +revision 58378 +shortdesc x86_64-linuxmusl files of aleph +containersize 254656 +containerchecksum ba328f35c8da6486c59f345d20e3cb48134257c321a1810d2784a7dd70acc397ea5b12f241d94ea1d173b9354256451e796b8663323e7b2fcc9fa5d13be12547 +binfiles arch=x86_64-linuxmusl size=151 + bin/x86_64-linuxmusl/aleph + +name aleph.x86_64-solaris +category Package +revision 58388 +shortdesc x86_64-solaris files of aleph +containersize 263508 +containerchecksum 82f8811b2cd9b00aa97c13e6043aa7036e0c6dc8a4d39edc9fbd116def80b680d4462152c0a345dbfe8a4f2ebbfad17a2cfc0c7d97cea924f6160534c48c571c +binfiles arch=x86_64-solaris size=150 + bin/x86_64-solaris/aleph + +name alertmessage +category Package +revision 38055 +shortdesc Alert messages for LaTeX +relocated 1 +longdesc Some macros to display alert messages (informations, errors, +longdesc warnings and success messages). +containersize 6872 +containerchecksum df06377244dbd962326646fcd0aad535733d275ff6a86bed3739e8b77c6d1231290c4628a98be50d92e9006f25be68c20d5fc5e92c82a6cf841c0af5670f7ca9 +doccontainersize 106744 +doccontainerchecksum 412cecb146790ed0b7fae601d9ef0eb14381cf75ed20ff1bab3190c249750fb693708c2dce26e76da370a265f99dd312dc6747b6c9e7de62ef51a709accf7e60 +docfiles size=28 + RELOC/doc/latex/alertmessage/README.md details="Readme" + RELOC/doc/latex/alertmessage/alertmessage.pdf details="Package documentation" +srccontainersize 2460 +srccontainerchecksum c670adb01cc2e1dfa0997f6faef9a0d0b31ad2c6329174597b781580f02ba5dfffa7afb4538e0e740271d7f9f70b48a1caab91cadf8282d89a3f9a35c8ae8897 +srcfiles size=3 + RELOC/source/latex/alertmessage/alertmessage.dtx + RELOC/source/latex/alertmessage/alertmessage.ins +runfiles size=5 + RELOC/tex/latex/alertmessage/alertmessage.sty + RELOC/tex/latex/alertmessage/img/alertmessage-error.png + RELOC/tex/latex/alertmessage/img/alertmessage-info.png + RELOC/tex/latex/alertmessage/img/alertmessage-success.png + 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-license lppl1.3 +catalogue-topics boxing +catalogue-version 1.1 + +name alfaslabone +category Package +revision 57452 +shortdesc The Alfa Slab One font face with support for LaTeX and pdfLaTeX +relocated 1 +longdesc The alfaslabone package supports the Alfa Slab One font face +longdesc for LaTeX. There is only a Regular font face. It's useful for +longdesc book-chapter headlines. +execute addMap AlphaSlabOne.map +containersize 177988 +containerchecksum b958ac7987363fcefa3d8b7016f13851b91446a2a252e9561fd1a15df78b867b928f3e45a6fa1556abffa0de03b2b70543266ef9627b7474167c5672ac98d9ed +doccontainersize 28028 +doccontainerchecksum 375ca21d23599fe365f53f461264351982340d151ebdd2ce143189d8fd3c22d191501520d571f207a1f956f433ae6491e171c7ebb3c9c5421e30b358cc79f9fa +docfiles size=11 + RELOC/doc/fonts/alfaslabone/LICENSE.TXT + RELOC/doc/fonts/alfaslabone/README details="Readme" + RELOC/doc/fonts/alfaslabone/alfaslabone-samples.pdf details="Package documentation" + RELOC/doc/fonts/alfaslabone/alfaslabone-samples.tex +runfiles size=94 + RELOC/fonts/enc/dvips/alfaslabone/a_5xld5w.enc + RELOC/fonts/enc/dvips/alfaslabone/a_adz5lu.enc + RELOC/fonts/enc/dvips/alfaslabone/a_d2anrk.enc + RELOC/fonts/enc/dvips/alfaslabone/a_lzhlbi.enc + RELOC/fonts/enc/dvips/alfaslabone/a_rymxky.enc + RELOC/fonts/enc/dvips/alfaslabone/a_taosrr.enc + RELOC/fonts/enc/dvips/alfaslabone/a_vqpkf5.enc + RELOC/fonts/map/dvips/alfaslabone/AlphaSlabOne.map + RELOC/fonts/opentype/public/alfaslabone/AlphaSlabOne-Regular.otf + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/alfaslabone/AlphaSlabOne-Regular-tlf-ts1.tfm + RELOC/fonts/type1/public/alfaslabone/AlphaSlabOne-Regular.pfb + RELOC/fonts/vf/public/alfaslabone/AlphaSlabOne-Regular-sup-ly1.vf + RELOC/fonts/vf/public/alfaslabone/AlphaSlabOne-Regular-sup-t1.vf + RELOC/fonts/vf/public/alfaslabone/AlphaSlabOne-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/alfaslabone/AlphaSlabOne-Regular-tlf-t1.vf + RELOC/fonts/vf/public/alfaslabone/AlphaSlabOne-Regular-tlf-ts1.vf + RELOC/tex/latex/alfaslabone/LY1AlphaSlabOne-Sup.fd + RELOC/tex/latex/alfaslabone/LY1AlphaSlabOne-TLF.fd + RELOC/tex/latex/alfaslabone/OT1AlphaSlabOne-Sup.fd + RELOC/tex/latex/alfaslabone/OT1AlphaSlabOne-TLF.fd + RELOC/tex/latex/alfaslabone/T1AlphaSlabOne-Sup.fd + RELOC/tex/latex/alfaslabone/T1AlphaSlabOne-TLF.fd + RELOC/tex/latex/alfaslabone/TS1AlphaSlabOne-TLF.fd + RELOC/tex/latex/alfaslabone/alfaslabone.sty +catalogue-contact-home https://github.com/ccebinger/CTAN_AlfaSlabOne +catalogue-ctan /fonts/alfaslabone +catalogue-license ofl +catalogue-topics font font-display font-serif font-proportional font-otf font-type1 font-supp font-t1enc +catalogue-version 0.0.1 + +name alg +category Package +revision 15878 +shortdesc LaTeX environments for typesetting algorithms +relocated 1 +longdesc Defines two environments for typesetting algorithms in LaTeX2e. +longdesc The algtab environment is used to typeset an algorithm with +longdesc automatically numbered lines. The algorithm environment can be +longdesc used to encapsulate the algtab environment algorithm in a +longdesc floating body together with a header, a caption, etc. +longdesc \listofalgorithms is defined. +containersize 2568 +containerchecksum 923f36ab03aa10cf3da008f4b3d7ba5919f3e4a512c82fd1c42386df22019ca70c4c1700b7596750a00ea7c50586bdb803db3fee22edfbc402ebb9e249668e99 +doccontainersize 1116 +doccontainerchecksum d94795e7513612f3eb102b85b9fdcc792b175411fd67edd6779037b1e0dc101378159f58c6c6feb82ca6b73ea2a6fd415a36e4a4ea67913a0d1110582a41e38d +docfiles size=1 + RELOC/doc/latex/alg/readme.txt +srccontainersize 5768 +srccontainerchecksum a8231edf9c10855b312bb00f2bf37b68ada65b876ab621f459b3ee12da5bc5b90080ab6eff5c3a48c0821753a02576aac0100b3a577cfb7c5dc2cd4b47c8a026 +srcfiles size=6 + RELOC/source/latex/alg/alg.dtx + RELOC/source/latex/alg/alg.ins +runfiles size=2 + RELOC/tex/latex/alg/alg.sty +catalogue-also algorithms +catalogue-ctan /macros/latex/contrib/alg +catalogue-license lppl +catalogue-topics pseudocode + +name algobox +category Package +revision 52204 +shortdesc Typeset Algobox programs +relocated 1 +longdesc This LaTeX package can typeset Algobox programs almost exactly +longdesc as displayed when editing with Algobox itself, using an input +longdesc syntax very similar to the actual Algobox program text. It +longdesc gives better results than Algobox's own LaTeX export which does +longdesc not look like the editor rendition, produces standalone +longdesc documents cumbersome to customize, and has arbitrary and +longdesc inconsistent differences between the input syntax and the +longdesc program text. This package depends upon the following other +longdesc LaTeX packages: expl3, TikZ, environ, xparse, and xcolor. +containersize 3636 +containerchecksum 0c7b068f117a5eb591646e32faf3a9dfb6a03a218411d092afc33c7adcee30f95836a9d841444fe87a700288e293510763807d393043518ba70e64a3df82099f +doccontainersize 123652 +doccontainerchecksum ccc96b84ea2d1c6c9dab8bd286e24f3dcb4fb9dd31904b1eef4b07a1de34a067f3cccd3d8e33785edced6dee8673e60d50ffc201643912d732660b1f14404d74 +docfiles size=39 + RELOC/doc/latex/algobox/LICENSE + RELOC/doc/latex/algobox/README.md details="Readme" + RELOC/doc/latex/algobox/algobox.pdf details="Package documentation" +srccontainersize 5508 +srccontainerchecksum 49e1b417bb0df72356f5d4046826268dad628d6872732a61cc7df789bd214799ed49a4a0778eceb31369fbf8cbf21c6b142a85348e10a7ab634828108b7cf03a +srcfiles size=6 + RELOC/source/latex/algobox/algobox.dtx + RELOC/source/latex/algobox/algobox.ins +runfiles size=4 + RELOC/tex/latex/algobox/algobox.sty +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-license gpl3+ +catalogue-topics listing program-doc +catalogue-version 1.3 + +name algolrevived +category Package +revision 56864 +shortdesc A revival of Frutiger's Algol alphabet +relocated 1 +longdesc The package revives Frutiger's Algol alphabet, designed in 1963 +longdesc for the code segments in an ALGOL manual. OpenType and type1, +longdesc regular and medium weights, upright and slanted. Not +longdesc monospaced, but good for listings if you don't need code to be +longdesc aligned with specific columns. It also makes a passable but +longdesc limited text font. +execute addMap AlgolRevived.map +containersize 818136 +containerchecksum bb038512d7ade0cf90217150d276d8ed7fb4279b8a3088bcb38dfe8f48373e8957909f5fdfdd2f6247682623414f04e732262a393cc0042279705ceb345cd608 +doccontainersize 153344 +doccontainerchecksum c42976e8fe3d53240de84845a0c4428363868629b5137a57863b5fc922ed8f557e2e4451446277cead1dba0dff036e843e5ead35e6e591a04f2edeb640c7932c +docfiles size=54 + RELOC/doc/fonts/algolrevived/OFL-FAQ.txt + RELOC/doc/fonts/algolrevived/OFL.txt + RELOC/doc/fonts/algolrevived/README details="Readme" + RELOC/doc/fonts/algolrevived/algolrevived-doc.pdf details="Package documentation" + RELOC/doc/fonts/algolrevived/algolrevived-doc.tex +runfiles size=493 + RELOC/fonts/enc/dvips/algolrevived/zal0-LY1TT.enc + RELOC/fonts/enc/dvips/algolrevived/zal0-OT1TT.enc + RELOC/fonts/enc/dvips/algolrevived/zal0-T1TT.enc + RELOC/fonts/enc/dvips/algolrevived/zal1-LY1TT.enc + RELOC/fonts/enc/dvips/algolrevived/zal1-OT1TT.enc + RELOC/fonts/enc/dvips/algolrevived/zal1-T1TT.enc + RELOC/fonts/enc/dvips/algolrevived/zal_2jqefy.enc + RELOC/fonts/enc/dvips/algolrevived/zal_2mszih.enc + RELOC/fonts/enc/dvips/algolrevived/zal_2vzrvx.enc + RELOC/fonts/enc/dvips/algolrevived/zal_4nnq6y.enc + RELOC/fonts/enc/dvips/algolrevived/zal_4rrrqj.enc + RELOC/fonts/enc/dvips/algolrevived/zal_5ziufx.enc + RELOC/fonts/enc/dvips/algolrevived/zal_72x6h3.enc + RELOC/fonts/enc/dvips/algolrevived/zal_7ov2yu.enc + RELOC/fonts/enc/dvips/algolrevived/zal_ajioas.enc + RELOC/fonts/enc/dvips/algolrevived/zal_bfgpej.enc + RELOC/fonts/enc/dvips/algolrevived/zal_ekxevm.enc + RELOC/fonts/enc/dvips/algolrevived/zal_hqfuhr.enc + RELOC/fonts/enc/dvips/algolrevived/zal_iky7rf.enc + RELOC/fonts/enc/dvips/algolrevived/zal_jmq5jf.enc + RELOC/fonts/enc/dvips/algolrevived/zal_lxmhqh.enc + RELOC/fonts/enc/dvips/algolrevived/zal_mdij5b.enc + RELOC/fonts/enc/dvips/algolrevived/zal_pasij5.enc + RELOC/fonts/enc/dvips/algolrevived/zal_psjebe.enc + RELOC/fonts/enc/dvips/algolrevived/zal_q4jbw7.enc + RELOC/fonts/enc/dvips/algolrevived/zal_qtlmay.enc + RELOC/fonts/enc/dvips/algolrevived/zal_rj5tka.enc + RELOC/fonts/enc/dvips/algolrevived/zal_ts1.enc + RELOC/fonts/enc/dvips/algolrevived/zal_v4trah.enc + RELOC/fonts/enc/dvips/algolrevived/zal_vawbng.enc + RELOC/fonts/enc/dvips/algolrevived/zal_wqyrc5.enc + RELOC/fonts/enc/dvips/algolrevived/zal_wzkcbe.enc + RELOC/fonts/enc/dvips/algolrevived/zal_yz65wh.enc + RELOC/fonts/enc/dvips/algolrevived/zal_ziib6p.enc + RELOC/fonts/enc/dvips/algolrevived/zal_zqbwat.enc + RELOC/fonts/map/dvips/algolrevived/AlgolRevived.map + RELOC/fonts/opentype/public/algolrevived/AlgolRevived-Medium.otf + RELOC/fonts/opentype/public/algolrevived/AlgolRevived-MediumSlanted.otf + RELOC/fonts/opentype/public/algolrevived/AlgolRevived-Slanted.otf + RELOC/fonts/opentype/public/algolrevived/AlgolRevived.otf + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-ts1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-ts1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium0-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium0-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium0-t1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium1-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium1-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium1-t1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-ts1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-ts1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted0-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted0-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted0-t1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted1-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted1-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted1-t1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tosf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-ts1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-ts1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted0-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted0-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted0-t1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted1-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted1-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted1-t1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tosf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tosf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tosf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tosf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-ts1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-ts1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived0-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived0-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived0-t1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived1-ly1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived1-ot1tt.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived1-t1tt.tfm + RELOC/fonts/type1/public/algolrevived/AlgolRevived-Medium.pfb + RELOC/fonts/type1/public/algolrevived/AlgolRevived-MediumSlanted.pfb + RELOC/fonts/type1/public/algolrevived/AlgolRevived-Slanted.pfb + RELOC/fonts/type1/public/algolrevived/AlgolRevived.pfb + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-tlf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-tosf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-ts1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-tlf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-tosf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-ts1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-tlf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-tosf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-ts1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-tlf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-tosf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-ts1.vf + RELOC/tex/latex/algolrevived/LY1AlgolRevived-Inf.fd + RELOC/tex/latex/algolrevived/LY1AlgolRevived-OsF-TT.fd + RELOC/tex/latex/algolrevived/LY1AlgolRevived-OsF.fd + RELOC/tex/latex/algolrevived/LY1AlgolRevived-Sup.fd + RELOC/tex/latex/algolrevived/LY1AlgolRevived-TLF-TT.fd + RELOC/tex/latex/algolrevived/LY1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-Inf.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-OsF-TT.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-OsF.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-Sup.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-TLF-TT.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-Inf.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-OsF-TT.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-OsF.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-Sup.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-TLF-TT.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/TS1AlgolRevived-OsF.fd + RELOC/tex/latex/algolrevived/TS1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/algolrevived.fontspec + RELOC/tex/latex/algolrevived/algolrevived.sty +catalogue-ctan /fonts/algolrevived +catalogue-license ofl lppl1.3c +catalogue-topics font font-ttf font-t1enc +catalogue-version 1.052 + +name algorithm2e +category Package +revision 44846 +shortdesc Floating algorithm environment with algorithmic keywords +relocated 1 +longdesc Algorithm2e is an environment for writing algorithms. An +longdesc algorithm becomes a floating object (like figure, table, etc.). +longdesc The package provides macros that allow you to create different +longdesc keywords, and a set of predefined key words is provided; you +longdesc can change the typography of the keywords. The package allows +longdesc vertical lines delimiting a block of instructions in an +longdesc algorithm, and defines different sorts of algorithms such as +longdesc Procedure or Function; the name of these functions may be +longdesc reused in the text or in other algorithms. +containersize 32880 +containerchecksum 0203f337518811a04f255a1ea65045f487dbb4813fb848e0ba1b52d3e5fba96b784852d7e900a82f4c047c2943098e3b37cbca27322d115c341fef6d262c60cf +doccontainersize 559228 +doccontainerchecksum ae737056adb53f943ae8c92d8e7bfffe52a107cca4a7a3151932a581744f1396f43e134a55e9894de0ae1fb5418983ba4643e1e07487b690478a6979555d8768 +docfiles size=183 + RELOC/doc/latex/algorithm2e/README details="Package Readme" + RELOC/doc/latex/algorithm2e/algorithm2e.pdf details="Package documentation" + RELOC/doc/latex/algorithm2e/algorithm2e.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex01.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex02.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex03.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex04.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex05.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex06.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex07.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exAlgoDisjdecomp.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exIR.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exProg.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exfor.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exgeneric.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exgeneric2.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exnlsty.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exrepeat.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exswitch.tex +runfiles size=41 + RELOC/tex/latex/algorithm2e/algorithm2e.sty +catalogue-ctan /macros/latex/contrib/algorithm2e +catalogue-license lppl +catalogue-topics pseudocode +catalogue-version 5.2 + +name algorithmicx +category Package +revision 15878 +shortdesc The algorithmic style you always wanted +relocated 1 +longdesc Algorithmicx provides a flexible, yet easy to use, way for +longdesc inserting good looking pseudocode or source code in your +longdesc papers. It has built in support for Pseudocode, Pascal and C, +longdesc and offers powerful means to create definitions for any +longdesc programming language. The user can adapt a Pseudocode style to +longdesc his native language. +containersize 7716 +containerchecksum b6cccb7bc391ad11a8996d3e6a3a48f79e50e3e685a4b7670a3399d5d400435616794100b38e73d32633fc16cdd1795c2dcd57bc79279266dc6509bb14d08804 +doccontainersize 170008 +doccontainerchecksum cda9c4082faeaaf504194d75c014fda9cda20fe85ab9dd8c4f5a3c9e39fc2c8c8428ef20b921790f36c8abae2ecd8ea089353db540477909039575bc65ed5228 +docfiles size=61 + RELOC/doc/latex/algorithmicx/README details="Package README" + RELOC/doc/latex/algorithmicx/algorithmicx.pdf details="Package documentation" + RELOC/doc/latex/algorithmicx/algorithmicx.tex +runfiles size=12 + RELOC/tex/latex/algorithmicx/algc.sty + RELOC/tex/latex/algorithmicx/algcompatible.sty + RELOC/tex/latex/algorithmicx/algmatlab.sty + RELOC/tex/latex/algorithmicx/algorithmicx.sty + RELOC/tex/latex/algorithmicx/algpascal.sty + RELOC/tex/latex/algorithmicx/algpseudocode.sty +catalogue-ctan /macros/latex/contrib/algorithmicx +catalogue-license lppl +catalogue-topics pseudocode listing + +name algorithms +category Package +revision 42428 +shortdesc A suite of tools for typesetting algorithms in pseudo-code +relocated 1 +longdesc Consists of two environments: algorithm and algorithmic. The +longdesc algorithm package defines a floating algorithm environment +longdesc designed to work with the algorithmic style. Within an +longdesc algorithmic environment a number of commands for typesetting +longdesc popular algorithmic constructs are available. +containersize 3472 +containerchecksum ba02581f18b74ef97f37b7c1052bb7577b256ef94232b045a43c841fc4705f8d7ebcb2b286d95dd70943d309080b05d36dbf847ecd6e661038d6e375d514a787 +doccontainersize 293444 +doccontainerchecksum 3658a5a31162acf5ea1dc318503a2f9e74944cb998494083de76e2e31119bbc22094bfd41e048f5628730df359d2359943cec3cebd07b364a81703b92520dd01 +docfiles size=91 + RELOC/doc/latex/algorithms/COPYING + RELOC/doc/latex/algorithms/README details="Readme" + RELOC/doc/latex/algorithms/THANKS + RELOC/doc/latex/algorithms/algorithms.pdf details="Package documentation" language="en" +srccontainersize 11940 +srccontainerchecksum d83acd2275e83d37b5bb9a24d9cb0efbf711a2fb76a9a5a18d7299c95d6e1e0ac8fb41990b795a21b23b5e4fd8de5ef08fa480c6b2eaa7d1f7644e0d44c2f1fa +srcfiles size=13 + RELOC/source/latex/algorithms/algorithms.dtx + RELOC/source/latex/algorithms/algorithms.ins +runfiles size=4 + RELOC/tex/latex/algorithms/algorithm.sty + RELOC/tex/latex/algorithms/algorithmic.sty +catalogue-also alg +catalogue-ctan /macros/latex/contrib/algorithms +catalogue-license lgpl2.1 +catalogue-topics pseudocode +catalogue-version 0.1 + +name algpseudocodex +category Package +revision 56125 +shortdesc Package for typesetting pseudocode +relocated 1 +longdesc This package allows typesetting pseudocode in LaTeX. It is +longdesc based on algpseudocode from the algorithmicx package and uses +longdesc the same syntax, but adds several new features and +longdesc improvements. Notable features include customizable indent +longdesc guide lines and the ability to draw boxes around parts of the +longdesc code for highlighting differences. This package also has better +longdesc support for long code lines spanning several lines and improved +longdesc comments. +containersize 6912 +containerchecksum e1cffa46708ef8d6479aeabca45e5d17bf14edfb25973fba5e3e006c0067138a432adfde0ad76f6ec0bafd327d1b2d74dddaf1b131732b5aa267b7fd898b4ef7 +doccontainersize 333648 +doccontainerchecksum 5fa75ffc7847685bdc124faabf54a9bb45a8cc7dfda7df07f9d6c5180038be318190b20ad1fad3fa6d1f6b2e3a267ebf82505e7ff1626546b3846dcf935cae90 +docfiles size=95 + RELOC/doc/latex/algpseudocodex/README.md details="Readme" + RELOC/doc/latex/algpseudocodex/documentation.pdf details="Package documentation" + RELOC/doc/latex/algpseudocodex/documentation.tex +runfiles size=8 + RELOC/tex/latex/algpseudocodex/algpseudocodex.sty +catalogue-contact-repository https://github.com/chrmatt/algpseudocodex +catalogue-ctan /macros/latex/contrib/algpseudocodex +catalogue-license lppl1.3c +catalogue-topics pseudocode +catalogue-version 1.0 + +name algxpar +category Package +revision 56006 +shortdesc Support multiple lines pseudocode +relocated 1 +longdesc This package extends the package algorithmicx to support long +longdesc text which spans over multiple lines. +containersize 3396 +containerchecksum 90b0e879f0b335a2fae58f09ef3081096631a1cafce3ffa1d4ec396bea8c4c5911babc346b5c9864a2a9a798ff1ded2a489684ac97f6275d7f91042ae8e9929e +doccontainersize 173088 +doccontainerchecksum d0e8e696fec318f395a08cfaf4e809b1fdbe3a6b86a162c69b6558eaff01c85a387bad0df4e0f4c4854572a45583dfec79db8ce78261c45a1cbb8112fbae5777 +docfiles size=53 + RELOC/doc/latex/algxpar/README.md details="Readme" + RELOC/doc/latex/algxpar/algxpar.pdf details="Package documentation" +srccontainersize 11360 +srccontainerchecksum b60358558a1ca240bb4aeb1762855b200fc59db95e27ca65f8916411601c4315b7c05fd0e0b7073b2a627c2623e7398f3619d662377f1b3a72967170a1f45e54 +srcfiles size=11 + RELOC/source/latex/algxpar/algxpar.dtx + RELOC/source/latex/algxpar/algxpar.ins +runfiles size=4 + RELOC/tex/latex/algxpar/algxpar.sty +catalogue-contact-bugs https://github.com/jandermoreira/algxpar/issues +catalogue-contact-home https://github.com/jandermoreira/algxpar +catalogue-ctan /macros/latex/contrib/algxpar +catalogue-license lppl1.3 +catalogue-topics pseudocode +catalogue-version 0.91 + +name aligned-overset +category Package +revision 47290 +shortdesc Fix alignment at \overset or \underset +relocated 1 +longdesc This package allows the base character of \underset or \overset +longdesc to be used as the alignment position for the amsmath aligned +longdesc math environments. +containersize 1256 +containerchecksum 3998cd5515ad43e559da91bd1f25b835743299ec13fcf22ee9cb3aadc44c285f428ee701f5b27141c4d03c97b31a31e8620a2911854a1781ee5543a99073fed4 +doccontainersize 378812 +doccontainerchecksum d44ff38fe36352e1498e12eb56652e935cfeeb9ce6af5711bebe7844b1b7ba16864c8dac3c3b5f2e2bd6fee86de38c7555d5796940b834ce1ad396f5d2cb536e +docfiles size=94 + RELOC/doc/latex/aligned-overset/README.md details="Readme" + RELOC/doc/latex/aligned-overset/aligned-overset.pdf details="Package documentation" +srccontainersize 1900 +srccontainerchecksum 56584744fe5700505608c6ced57fed83fa189c9e755b63521f466f40e1080a35032b007831316e4b080cf93ef36958873924246a4cdfe2b0f129effda75380b6 +srcfiles size=2 + RELOC/source/latex/aligned-overset/aligned-overset.dtx +runfiles size=1 + RELOC/tex/latex/aligned-overset/aligned-overset.sty +catalogue-ctan /macros/latex/contrib/aligned-overset +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 0.1.0 + +name alkalami +category Package +revision 44497 +shortdesc A font for Arabic-based writing systems in Nigeria and Niger +relocated 1 +longdesc This font is designed for Arabic-based writing systems in the +longdesc Kano region of Nigeria and Niger. +containersize 98212 +containerchecksum 57d8a09d5643536cb2341cfd7bd84f24f101ebd73ef1456a39fa8557fc81bb6bddfb58990c38d4da229da5c6ccba0b4d956d82f7d07d65c57a87c749ba3ef841 +doccontainersize 29400 +doccontainerchecksum c9ebe4fc7bbcb254e0fa0f027e93680be2d1690cded2d9b18f3da091544b05f5dcf38b87400f8c5b8d4dd9ec320379c752615fea99d010a118bf35f4693c704a +docfiles size=12 + RELOC/doc/fonts/alkalami/AlkalamiSample.pdf details="Font sample" + RELOC/doc/fonts/alkalami/AlkalamiSample.tex + RELOC/doc/fonts/alkalami/OFL.txt + RELOC/doc/fonts/alkalami/README.TEXLIVE + RELOC/doc/fonts/alkalami/README.txt details="Readme" +runfiles size=74 + RELOC/fonts/truetype/public/alkalami/Alkalami-Light.ttf + RELOC/fonts/truetype/public/alkalami/Alkalami-Regular.ttf +catalogue-contact-home http://software.sil.org/alkalami/ +catalogue-ctan /fonts/alkalami +catalogue-license ofl +catalogue-topics font-arabic font-ttf +catalogue-version 1.000 + +name allrunes +category Package +revision 42221 +shortdesc Fonts and LaTeX package for almost all runes +relocated 1 +longdesc This large collection of fonts (in Adobe Type 1 format), with +longdesc the LaTeX package gives access to almost all runes ever used in +longdesc Europe. The bundle covers not only the main forms but also a +longdesc lot of varieties. +execute addMixedMap allrunes.map +containersize 8035784 +containerchecksum d05513d484f11a9fcb5d202d02e7ea586cc82c44abe0488294e58c6f31185b083026bad3f17186ff03456481200e05e2ec4a7a7348f6b8fa4e952702b15274eb +doccontainersize 193488 +doccontainerchecksum 569f61370178f2517ea4d4625209a1359cd56913073344816f4fa8aa19edc8bc63c073de4373adb0a0a8c8d45fe392da9869bd16bd7477da65d5b0decfe6de61 +docfiles size=68 + RELOC/doc/fonts/allrunes/README.txt details="Package Readme" + RELOC/doc/fonts/allrunes/allrunes.pdf details="Package documentation" +srccontainersize 42048 +srccontainerchecksum 9765fe328824806dd96ca1a0e9678ba385eb61acf95d8447213492843f908de65209022d76303be816ee1c500e95aeb35280f3377369315a87752a0c4478feb5 +srcfiles size=96 + RELOC/source/fonts/allrunes/allrunes.dtx + RELOC/source/fonts/allrunes/allrunes.ins +runfiles size=2728 + RELOC/fonts/map/dvips/allrunes/allrunes.map + RELOC/fonts/source/public/allrunes/frua.mf + RELOC/fonts/source/public/allrunes/fruabm.mf + RELOC/fonts/source/public/allrunes/fruabn.mf + RELOC/fonts/source/public/allrunes/fruabq.mf + RELOC/fonts/source/public/allrunes/fruabr.mf + RELOC/fonts/source/public/allrunes/fruabs.mf + RELOC/fonts/source/public/allrunes/fruabt.mf + RELOC/fonts/source/public/allrunes/fruacm.mf + RELOC/fonts/source/public/allrunes/fruacn.mf + RELOC/fonts/source/public/allrunes/fruacq.mf + RELOC/fonts/source/public/allrunes/fruacr.mf + RELOC/fonts/source/public/allrunes/fruacs.mf + RELOC/fonts/source/public/allrunes/fruact.mf + RELOC/fonts/source/public/allrunes/fruakm.mf + RELOC/fonts/source/public/allrunes/fruakn.mf + RELOC/fonts/source/public/allrunes/fruakq.mf + RELOC/fonts/source/public/allrunes/fruakr.mf + RELOC/fonts/source/public/allrunes/fruaks.mf + RELOC/fonts/source/public/allrunes/fruakt.mf + RELOC/fonts/source/public/allrunes/frualm.mf + RELOC/fonts/source/public/allrunes/frualn.mf + RELOC/fonts/source/public/allrunes/frualq.mf + RELOC/fonts/source/public/allrunes/frualr.mf + RELOC/fonts/source/public/allrunes/fruals.mf + RELOC/fonts/source/public/allrunes/frualt.mf + RELOC/fonts/source/public/allrunes/fruamm.mf + RELOC/fonts/source/public/allrunes/fruamn.mf + RELOC/fonts/source/public/allrunes/fruamq.mf + RELOC/fonts/source/public/allrunes/fruamr.mf + RELOC/fonts/source/public/allrunes/fruams.mf + RELOC/fonts/source/public/allrunes/fruamt.mf + RELOC/fonts/source/public/allrunes/fruanm.mf + RELOC/fonts/source/public/allrunes/fruann.mf + RELOC/fonts/source/public/allrunes/fruanq.mf + RELOC/fonts/source/public/allrunes/fruanr.mf + RELOC/fonts/source/public/allrunes/fruans.mf + RELOC/fonts/source/public/allrunes/fruant.mf + RELOC/fonts/source/public/allrunes/frubase.mf + RELOC/fonts/source/public/allrunes/fruc.mf + RELOC/fonts/source/public/allrunes/frucbm.mf + RELOC/fonts/source/public/allrunes/frucbn.mf + RELOC/fonts/source/public/allrunes/frucbq.mf + RELOC/fonts/source/public/allrunes/frucbr.mf + RELOC/fonts/source/public/allrunes/frucbs.mf + RELOC/fonts/source/public/allrunes/frucbt.mf + RELOC/fonts/source/public/allrunes/fruccm.mf + RELOC/fonts/source/public/allrunes/fruccn.mf + RELOC/fonts/source/public/allrunes/fruccq.mf + RELOC/fonts/source/public/allrunes/fruccr.mf + RELOC/fonts/source/public/allrunes/fruccs.mf + RELOC/fonts/source/public/allrunes/frucct.mf + RELOC/fonts/source/public/allrunes/fruckm.mf + RELOC/fonts/source/public/allrunes/fruckn.mf + RELOC/fonts/source/public/allrunes/fruckq.mf + RELOC/fonts/source/public/allrunes/fruckr.mf + RELOC/fonts/source/public/allrunes/frucks.mf + RELOC/fonts/source/public/allrunes/fruckt.mf + RELOC/fonts/source/public/allrunes/fruclm.mf + RELOC/fonts/source/public/allrunes/frucln.mf + RELOC/fonts/source/public/allrunes/fruclq.mf + RELOC/fonts/source/public/allrunes/fruclr.mf + RELOC/fonts/source/public/allrunes/frucls.mf + RELOC/fonts/source/public/allrunes/fruclt.mf + RELOC/fonts/source/public/allrunes/frucmm.mf + RELOC/fonts/source/public/allrunes/frucmn.mf + RELOC/fonts/source/public/allrunes/frucmq.mf + RELOC/fonts/source/public/allrunes/frucmr.mf + RELOC/fonts/source/public/allrunes/frucms.mf + RELOC/fonts/source/public/allrunes/frucmt.mf + RELOC/fonts/source/public/allrunes/frucnm.mf + RELOC/fonts/source/public/allrunes/frucnn.mf + RELOC/fonts/source/public/allrunes/frucnq.mf + RELOC/fonts/source/public/allrunes/frucnr.mf + RELOC/fonts/source/public/allrunes/frucns.mf + RELOC/fonts/source/public/allrunes/frucnt.mf + RELOC/fonts/source/public/allrunes/frul.mf + RELOC/fonts/source/public/allrunes/frulbm.mf + RELOC/fonts/source/public/allrunes/frulbn.mf + RELOC/fonts/source/public/allrunes/frulbq.mf + RELOC/fonts/source/public/allrunes/frulbr.mf + RELOC/fonts/source/public/allrunes/frulbs.mf + RELOC/fonts/source/public/allrunes/frulbt.mf + RELOC/fonts/source/public/allrunes/frulcm.mf + RELOC/fonts/source/public/allrunes/frulcn.mf + RELOC/fonts/source/public/allrunes/frulcq.mf + RELOC/fonts/source/public/allrunes/frulcr.mf + RELOC/fonts/source/public/allrunes/frulcs.mf + RELOC/fonts/source/public/allrunes/frulct.mf + RELOC/fonts/source/public/allrunes/frulkm.mf + RELOC/fonts/source/public/allrunes/frulkn.mf + RELOC/fonts/source/public/allrunes/frulkq.mf + RELOC/fonts/source/public/allrunes/frulkr.mf + RELOC/fonts/source/public/allrunes/frulks.mf + RELOC/fonts/source/public/allrunes/frulkt.mf + RELOC/fonts/source/public/allrunes/frullm.mf + RELOC/fonts/source/public/allrunes/frulln.mf + RELOC/fonts/source/public/allrunes/frullq.mf + RELOC/fonts/source/public/allrunes/frullr.mf + RELOC/fonts/source/public/allrunes/frulls.mf + RELOC/fonts/source/public/allrunes/frullt.mf + RELOC/fonts/source/public/allrunes/frulmm.mf + RELOC/fonts/source/public/allrunes/frulmn.mf + RELOC/fonts/source/public/allrunes/frulmq.mf + RELOC/fonts/source/public/allrunes/frulmr.mf + RELOC/fonts/source/public/allrunes/frulms.mf + RELOC/fonts/source/public/allrunes/frulmt.mf + RELOC/fonts/source/public/allrunes/frulnm.mf + RELOC/fonts/source/public/allrunes/frulnn.mf + RELOC/fonts/source/public/allrunes/frulnq.mf + RELOC/fonts/source/public/allrunes/frulnr.mf + RELOC/fonts/source/public/allrunes/frulns.mf + RELOC/fonts/source/public/allrunes/frulnt.mf + RELOC/fonts/source/public/allrunes/frum.mf + RELOC/fonts/source/public/allrunes/frumbm.mf + RELOC/fonts/source/public/allrunes/frumbn.mf + RELOC/fonts/source/public/allrunes/frumbq.mf + RELOC/fonts/source/public/allrunes/frumbr.mf + RELOC/fonts/source/public/allrunes/frumbs.mf + RELOC/fonts/source/public/allrunes/frumbt.mf + RELOC/fonts/source/public/allrunes/frumcm.mf + RELOC/fonts/source/public/allrunes/frumcn.mf + RELOC/fonts/source/public/allrunes/frumcq.mf + RELOC/fonts/source/public/allrunes/frumcr.mf + RELOC/fonts/source/public/allrunes/frumcs.mf + RELOC/fonts/source/public/allrunes/frumct.mf + RELOC/fonts/source/public/allrunes/frumkm.mf + RELOC/fonts/source/public/allrunes/frumkn.mf + RELOC/fonts/source/public/allrunes/frumkq.mf + RELOC/fonts/source/public/allrunes/frumkr.mf + RELOC/fonts/source/public/allrunes/frumks.mf + RELOC/fonts/source/public/allrunes/frumkt.mf + RELOC/fonts/source/public/allrunes/frumlm.mf + RELOC/fonts/source/public/allrunes/frumln.mf + RELOC/fonts/source/public/allrunes/frumlq.mf + RELOC/fonts/source/public/allrunes/frumlr.mf + RELOC/fonts/source/public/allrunes/frumls.mf + RELOC/fonts/source/public/allrunes/frumlt.mf + RELOC/fonts/source/public/allrunes/frummm.mf + RELOC/fonts/source/public/allrunes/frummn.mf + RELOC/fonts/source/public/allrunes/frummq.mf + RELOC/fonts/source/public/allrunes/frummr.mf + RELOC/fonts/source/public/allrunes/frumms.mf + RELOC/fonts/source/public/allrunes/frummt.mf + RELOC/fonts/source/public/allrunes/frumnm.mf + RELOC/fonts/source/public/allrunes/frumnn.mf + RELOC/fonts/source/public/allrunes/frumnq.mf + RELOC/fonts/source/public/allrunes/frumnr.mf + RELOC/fonts/source/public/allrunes/frumns.mf + RELOC/fonts/source/public/allrunes/frumnt.mf + RELOC/fonts/source/public/allrunes/frun.mf + RELOC/fonts/source/public/allrunes/frunbm.mf + RELOC/fonts/source/public/allrunes/frunbn.mf + RELOC/fonts/source/public/allrunes/frunbq.mf + RELOC/fonts/source/public/allrunes/frunbr.mf + RELOC/fonts/source/public/allrunes/frunbs.mf + RELOC/fonts/source/public/allrunes/frunbt.mf + RELOC/fonts/source/public/allrunes/fruncm.mf + RELOC/fonts/source/public/allrunes/fruncn.mf + RELOC/fonts/source/public/allrunes/fruncq.mf + RELOC/fonts/source/public/allrunes/fruncr.mf + RELOC/fonts/source/public/allrunes/fruncs.mf + RELOC/fonts/source/public/allrunes/frunct.mf + RELOC/fonts/source/public/allrunes/frunkm.mf + RELOC/fonts/source/public/allrunes/frunkn.mf + RELOC/fonts/source/public/allrunes/frunkq.mf + RELOC/fonts/source/public/allrunes/frunkr.mf + RELOC/fonts/source/public/allrunes/frunks.mf + RELOC/fonts/source/public/allrunes/frunkt.mf + RELOC/fonts/source/public/allrunes/frunlm.mf + RELOC/fonts/source/public/allrunes/frunln.mf + RELOC/fonts/source/public/allrunes/frunlq.mf + RELOC/fonts/source/public/allrunes/frunlr.mf + RELOC/fonts/source/public/allrunes/frunls.mf + RELOC/fonts/source/public/allrunes/frunlt.mf + RELOC/fonts/source/public/allrunes/frunmm.mf + RELOC/fonts/source/public/allrunes/frunmn.mf + RELOC/fonts/source/public/allrunes/frunmq.mf + RELOC/fonts/source/public/allrunes/frunmr.mf + RELOC/fonts/source/public/allrunes/frunms.mf + RELOC/fonts/source/public/allrunes/frunmt.mf + RELOC/fonts/source/public/allrunes/frunnm.mf + RELOC/fonts/source/public/allrunes/frunnn.mf + RELOC/fonts/source/public/allrunes/frunnq.mf + RELOC/fonts/source/public/allrunes/frunnr.mf + RELOC/fonts/source/public/allrunes/frunns.mf + RELOC/fonts/source/public/allrunes/frunnt.mf + RELOC/fonts/source/public/allrunes/frusep.mf + RELOC/fonts/source/public/allrunes/frut.mf + RELOC/fonts/source/public/allrunes/frutbm.mf + RELOC/fonts/source/public/allrunes/frutbn.mf + RELOC/fonts/source/public/allrunes/frutbq.mf + RELOC/fonts/source/public/allrunes/frutbr.mf + RELOC/fonts/source/public/allrunes/frutbs.mf + RELOC/fonts/source/public/allrunes/frutbt.mf + RELOC/fonts/source/public/allrunes/frutcm.mf + RELOC/fonts/source/public/allrunes/frutcn.mf + RELOC/fonts/source/public/allrunes/frutcq.mf + RELOC/fonts/source/public/allrunes/frutcr.mf + RELOC/fonts/source/public/allrunes/frutcs.mf + RELOC/fonts/source/public/allrunes/frutct.mf + RELOC/fonts/source/public/allrunes/frutkm.mf + RELOC/fonts/source/public/allrunes/frutkn.mf + RELOC/fonts/source/public/allrunes/frutkq.mf + RELOC/fonts/source/public/allrunes/frutkr.mf + RELOC/fonts/source/public/allrunes/frutks.mf + RELOC/fonts/source/public/allrunes/frutkt.mf + RELOC/fonts/source/public/allrunes/frutlm.mf + RELOC/fonts/source/public/allrunes/frutln.mf + RELOC/fonts/source/public/allrunes/frutlq.mf + RELOC/fonts/source/public/allrunes/frutlr.mf + RELOC/fonts/source/public/allrunes/frutls.mf + RELOC/fonts/source/public/allrunes/frutlt.mf + RELOC/fonts/source/public/allrunes/frutmm.mf + RELOC/fonts/source/public/allrunes/frutmn.mf + RELOC/fonts/source/public/allrunes/frutmq.mf + RELOC/fonts/source/public/allrunes/frutmr.mf + RELOC/fonts/source/public/allrunes/frutms.mf + RELOC/fonts/source/public/allrunes/frutmt.mf + RELOC/fonts/source/public/allrunes/frutnm.mf + RELOC/fonts/source/public/allrunes/frutnn.mf + RELOC/fonts/source/public/allrunes/frutnq.mf + RELOC/fonts/source/public/allrunes/frutnr.mf + RELOC/fonts/source/public/allrunes/frutns.mf + RELOC/fonts/source/public/allrunes/frutnt.mf + RELOC/fonts/type1/public/allrunes/fruabm.pfb + RELOC/fonts/type1/public/allrunes/fruabn.pfb + RELOC/fonts/type1/public/allrunes/fruabq.pfb + RELOC/fonts/type1/public/allrunes/fruabr.pfb + RELOC/fonts/type1/public/allrunes/fruabs.pfb + RELOC/fonts/type1/public/allrunes/fruabt.pfb + RELOC/fonts/type1/public/allrunes/fruacm.pfb + RELOC/fonts/type1/public/allrunes/fruacn.pfb + RELOC/fonts/type1/public/allrunes/fruacq.pfb + RELOC/fonts/type1/public/allrunes/fruacr.pfb + RELOC/fonts/type1/public/allrunes/fruacs.pfb + RELOC/fonts/type1/public/allrunes/fruact.pfb + RELOC/fonts/type1/public/allrunes/fruakm.pfb + RELOC/fonts/type1/public/allrunes/fruakn.pfb + RELOC/fonts/type1/public/allrunes/fruakq.pfb + RELOC/fonts/type1/public/allrunes/fruakr.pfb + RELOC/fonts/type1/public/allrunes/fruaks.pfb + RELOC/fonts/type1/public/allrunes/fruakt.pfb + RELOC/fonts/type1/public/allrunes/frualm.pfb + RELOC/fonts/type1/public/allrunes/frualn.pfb + RELOC/fonts/type1/public/allrunes/frualq.pfb + RELOC/fonts/type1/public/allrunes/frualr.pfb + RELOC/fonts/type1/public/allrunes/fruals.pfb + RELOC/fonts/type1/public/allrunes/frualt.pfb + RELOC/fonts/type1/public/allrunes/fruamm.pfb + RELOC/fonts/type1/public/allrunes/fruamn.pfb + RELOC/fonts/type1/public/allrunes/fruamq.pfb + RELOC/fonts/type1/public/allrunes/fruamr.pfb + RELOC/fonts/type1/public/allrunes/fruams.pfb + RELOC/fonts/type1/public/allrunes/fruamt.pfb + RELOC/fonts/type1/public/allrunes/fruanm.pfb + RELOC/fonts/type1/public/allrunes/fruann.pfb + RELOC/fonts/type1/public/allrunes/fruanq.pfb + RELOC/fonts/type1/public/allrunes/fruanr.pfb + RELOC/fonts/type1/public/allrunes/fruans.pfb + RELOC/fonts/type1/public/allrunes/fruant.pfb + RELOC/fonts/type1/public/allrunes/frucbm.pfb + RELOC/fonts/type1/public/allrunes/frucbn.pfb + RELOC/fonts/type1/public/allrunes/frucbq.pfb + RELOC/fonts/type1/public/allrunes/frucbr.pfb + RELOC/fonts/type1/public/allrunes/frucbs.pfb + RELOC/fonts/type1/public/allrunes/frucbt.pfb + RELOC/fonts/type1/public/allrunes/fruccm.pfb + RELOC/fonts/type1/public/allrunes/fruccn.pfb + RELOC/fonts/type1/public/allrunes/fruccq.pfb + RELOC/fonts/type1/public/allrunes/fruccr.pfb + RELOC/fonts/type1/public/allrunes/fruccs.pfb + RELOC/fonts/type1/public/allrunes/frucct.pfb + RELOC/fonts/type1/public/allrunes/fruckm.pfb + RELOC/fonts/type1/public/allrunes/fruckn.pfb + RELOC/fonts/type1/public/allrunes/fruckq.pfb + RELOC/fonts/type1/public/allrunes/fruckr.pfb + RELOC/fonts/type1/public/allrunes/frucks.pfb + RELOC/fonts/type1/public/allrunes/fruckt.pfb + RELOC/fonts/type1/public/allrunes/fruclm.pfb + RELOC/fonts/type1/public/allrunes/frucln.pfb + RELOC/fonts/type1/public/allrunes/fruclq.pfb + RELOC/fonts/type1/public/allrunes/fruclr.pfb + RELOC/fonts/type1/public/allrunes/frucls.pfb + RELOC/fonts/type1/public/allrunes/fruclt.pfb + RELOC/fonts/type1/public/allrunes/frucmm.pfb + RELOC/fonts/type1/public/allrunes/frucmn.pfb + RELOC/fonts/type1/public/allrunes/frucmq.pfb + RELOC/fonts/type1/public/allrunes/frucmr.pfb + RELOC/fonts/type1/public/allrunes/frucms.pfb + RELOC/fonts/type1/public/allrunes/frucmt.pfb + RELOC/fonts/type1/public/allrunes/frucnm.pfb + RELOC/fonts/type1/public/allrunes/frucnn.pfb + RELOC/fonts/type1/public/allrunes/frucnq.pfb + RELOC/fonts/type1/public/allrunes/frucnr.pfb + RELOC/fonts/type1/public/allrunes/frucns.pfb + RELOC/fonts/type1/public/allrunes/frucnt.pfb + RELOC/fonts/type1/public/allrunes/frulbm.pfb + RELOC/fonts/type1/public/allrunes/frulbn.pfb + RELOC/fonts/type1/public/allrunes/frulbq.pfb + RELOC/fonts/type1/public/allrunes/frulbr.pfb + RELOC/fonts/type1/public/allrunes/frulbs.pfb + RELOC/fonts/type1/public/allrunes/frulbt.pfb + RELOC/fonts/type1/public/allrunes/frulcm.pfb + RELOC/fonts/type1/public/allrunes/frulcn.pfb + RELOC/fonts/type1/public/allrunes/frulcq.pfb + RELOC/fonts/type1/public/allrunes/frulcr.pfb + RELOC/fonts/type1/public/allrunes/frulcs.pfb + RELOC/fonts/type1/public/allrunes/frulct.pfb + RELOC/fonts/type1/public/allrunes/frulkm.pfb + RELOC/fonts/type1/public/allrunes/frulkn.pfb + RELOC/fonts/type1/public/allrunes/frulkq.pfb + RELOC/fonts/type1/public/allrunes/frulkr.pfb + RELOC/fonts/type1/public/allrunes/frulks.pfb + RELOC/fonts/type1/public/allrunes/frulkt.pfb + RELOC/fonts/type1/public/allrunes/frullm.pfb + RELOC/fonts/type1/public/allrunes/frulln.pfb + RELOC/fonts/type1/public/allrunes/frullq.pfb + RELOC/fonts/type1/public/allrunes/frullr.pfb + RELOC/fonts/type1/public/allrunes/frulls.pfb + RELOC/fonts/type1/public/allrunes/frullt.pfb + RELOC/fonts/type1/public/allrunes/frulmm.pfb + RELOC/fonts/type1/public/allrunes/frulmn.pfb + RELOC/fonts/type1/public/allrunes/frulmq.pfb + RELOC/fonts/type1/public/allrunes/frulmr.pfb + RELOC/fonts/type1/public/allrunes/frulms.pfb + RELOC/fonts/type1/public/allrunes/frulmt.pfb + RELOC/fonts/type1/public/allrunes/frulnm.pfb + RELOC/fonts/type1/public/allrunes/frulnn.pfb + RELOC/fonts/type1/public/allrunes/frulnq.pfb + RELOC/fonts/type1/public/allrunes/frulnr.pfb + RELOC/fonts/type1/public/allrunes/frulns.pfb + RELOC/fonts/type1/public/allrunes/frulnt.pfb + RELOC/fonts/type1/public/allrunes/frumbm.pfb + RELOC/fonts/type1/public/allrunes/frumbn.pfb + RELOC/fonts/type1/public/allrunes/frumbq.pfb + RELOC/fonts/type1/public/allrunes/frumbr.pfb + RELOC/fonts/type1/public/allrunes/frumbs.pfb + RELOC/fonts/type1/public/allrunes/frumbt.pfb + RELOC/fonts/type1/public/allrunes/frumcm.pfb + RELOC/fonts/type1/public/allrunes/frumcn.pfb + RELOC/fonts/type1/public/allrunes/frumcq.pfb + RELOC/fonts/type1/public/allrunes/frumcr.pfb + RELOC/fonts/type1/public/allrunes/frumcs.pfb + RELOC/fonts/type1/public/allrunes/frumct.pfb + RELOC/fonts/type1/public/allrunes/frumkm.pfb + RELOC/fonts/type1/public/allrunes/frumkn.pfb + RELOC/fonts/type1/public/allrunes/frumkq.pfb + RELOC/fonts/type1/public/allrunes/frumkr.pfb + RELOC/fonts/type1/public/allrunes/frumks.pfb + RELOC/fonts/type1/public/allrunes/frumkt.pfb + RELOC/fonts/type1/public/allrunes/frumlm.pfb + RELOC/fonts/type1/public/allrunes/frumln.pfb + RELOC/fonts/type1/public/allrunes/frumlq.pfb + RELOC/fonts/type1/public/allrunes/frumlr.pfb + RELOC/fonts/type1/public/allrunes/frumls.pfb + RELOC/fonts/type1/public/allrunes/frumlt.pfb + RELOC/fonts/type1/public/allrunes/frummm.pfb + RELOC/fonts/type1/public/allrunes/frummn.pfb + RELOC/fonts/type1/public/allrunes/frummq.pfb + RELOC/fonts/type1/public/allrunes/frummr.pfb + RELOC/fonts/type1/public/allrunes/frumms.pfb + RELOC/fonts/type1/public/allrunes/frummt.pfb + RELOC/fonts/type1/public/allrunes/frumnm.pfb + RELOC/fonts/type1/public/allrunes/frumnn.pfb + RELOC/fonts/type1/public/allrunes/frumnq.pfb + RELOC/fonts/type1/public/allrunes/frumnr.pfb + RELOC/fonts/type1/public/allrunes/frumns.pfb + RELOC/fonts/type1/public/allrunes/frumnt.pfb + RELOC/fonts/type1/public/allrunes/frunbm.pfb + RELOC/fonts/type1/public/allrunes/frunbn.pfb + RELOC/fonts/type1/public/allrunes/frunbq.pfb + RELOC/fonts/type1/public/allrunes/frunbr.pfb + RELOC/fonts/type1/public/allrunes/frunbs.pfb + RELOC/fonts/type1/public/allrunes/frunbt.pfb + RELOC/fonts/type1/public/allrunes/fruncm.pfb + RELOC/fonts/type1/public/allrunes/fruncn.pfb + RELOC/fonts/type1/public/allrunes/fruncq.pfb + RELOC/fonts/type1/public/allrunes/fruncr.pfb + RELOC/fonts/type1/public/allrunes/fruncs.pfb + RELOC/fonts/type1/public/allrunes/frunct.pfb + RELOC/fonts/type1/public/allrunes/frunkm.pfb + RELOC/fonts/type1/public/allrunes/frunkn.pfb + RELOC/fonts/type1/public/allrunes/frunkq.pfb + RELOC/fonts/type1/public/allrunes/frunkr.pfb + RELOC/fonts/type1/public/allrunes/frunks.pfb + RELOC/fonts/type1/public/allrunes/frunkt.pfb + RELOC/fonts/type1/public/allrunes/frunlm.pfb + RELOC/fonts/type1/public/allrunes/frunln.pfb + RELOC/fonts/type1/public/allrunes/frunlq.pfb + RELOC/fonts/type1/public/allrunes/frunlr.pfb + RELOC/fonts/type1/public/allrunes/frunls.pfb + RELOC/fonts/type1/public/allrunes/frunlt.pfb + RELOC/fonts/type1/public/allrunes/frunmm.pfb + RELOC/fonts/type1/public/allrunes/frunmn.pfb + RELOC/fonts/type1/public/allrunes/frunmq.pfb + RELOC/fonts/type1/public/allrunes/frunmr.pfb + RELOC/fonts/type1/public/allrunes/frunms.pfb + RELOC/fonts/type1/public/allrunes/frunmt.pfb + RELOC/fonts/type1/public/allrunes/frunnm.pfb + RELOC/fonts/type1/public/allrunes/frunnn.pfb + RELOC/fonts/type1/public/allrunes/frunnq.pfb + RELOC/fonts/type1/public/allrunes/frunnr.pfb + RELOC/fonts/type1/public/allrunes/frunns.pfb + RELOC/fonts/type1/public/allrunes/frunnt.pfb + RELOC/fonts/type1/public/allrunes/frutbm.pfb + RELOC/fonts/type1/public/allrunes/frutbn.pfb + RELOC/fonts/type1/public/allrunes/frutbq.pfb + RELOC/fonts/type1/public/allrunes/frutbr.pfb + RELOC/fonts/type1/public/allrunes/frutbs.pfb + RELOC/fonts/type1/public/allrunes/frutbt.pfb + RELOC/fonts/type1/public/allrunes/frutcm.pfb + RELOC/fonts/type1/public/allrunes/frutcn.pfb + RELOC/fonts/type1/public/allrunes/frutcq.pfb + RELOC/fonts/type1/public/allrunes/frutcr.pfb + RELOC/fonts/type1/public/allrunes/frutcs.pfb + RELOC/fonts/type1/public/allrunes/frutct.pfb + RELOC/fonts/type1/public/allrunes/frutkm.pfb + RELOC/fonts/type1/public/allrunes/frutkn.pfb + RELOC/fonts/type1/public/allrunes/frutkq.pfb + RELOC/fonts/type1/public/allrunes/frutkr.pfb + RELOC/fonts/type1/public/allrunes/frutks.pfb + RELOC/fonts/type1/public/allrunes/frutkt.pfb + RELOC/fonts/type1/public/allrunes/frutlm.pfb + RELOC/fonts/type1/public/allrunes/frutln.pfb + RELOC/fonts/type1/public/allrunes/frutlq.pfb + RELOC/fonts/type1/public/allrunes/frutlr.pfb + RELOC/fonts/type1/public/allrunes/frutls.pfb + RELOC/fonts/type1/public/allrunes/frutlt.pfb + RELOC/fonts/type1/public/allrunes/frutmm.pfb + RELOC/fonts/type1/public/allrunes/frutmn.pfb + RELOC/fonts/type1/public/allrunes/frutmq.pfb + RELOC/fonts/type1/public/allrunes/frutmr.pfb + RELOC/fonts/type1/public/allrunes/frutms.pfb + RELOC/fonts/type1/public/allrunes/frutmt.pfb + RELOC/fonts/type1/public/allrunes/frutnm.pfb + RELOC/fonts/type1/public/allrunes/frutnn.pfb + RELOC/fonts/type1/public/allrunes/frutnq.pfb + RELOC/fonts/type1/public/allrunes/frutnr.pfb + RELOC/fonts/type1/public/allrunes/frutns.pfb + RELOC/fonts/type1/public/allrunes/frutnt.pfb + RELOC/tex/latex/allrunes/allrunes.sty + RELOC/tex/latex/allrunes/ara.fd + RELOC/tex/latex/allrunes/arc.fd + RELOC/tex/latex/allrunes/arl.fd + RELOC/tex/latex/allrunes/arm.fd + RELOC/tex/latex/allrunes/arn.fd + RELOC/tex/latex/allrunes/art.fd +catalogue-also runic futhark +catalogue-contact-home http://www.maths.lth.se/~carl/allrunes/ +catalogue-ctan /fonts/allrunes +catalogue-license lppl +catalogue-topics font font-rune font-mf font-type1 +catalogue-version 2.1.1 + +name almendra +category Package +revision 56035 +shortdesc Almendra fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX +longdesc support for the Almendra family of fonts, designed by Ana +longdesc Sanfelippo. Almendra is a typeface design based on calligraphy. +longdesc Its style is related to the chancery and gothic hands. There +longdesc are regular and bold weights with matching italics. There is +longdesc also a regular-weight small-caps. +execute addMap almendra.map +containersize 314792 +containerchecksum 4e3a7334755c0f1a1d092904cee87a0aa72cbe843901df81b010d1e63a197d9c922223ff4247fa2557a5017e62ab9ee06958058c955ca56afb4cc0aad857eb0f +doccontainersize 29928 +doccontainerchecksum 6674ae47d682e1817263e03f61307af2a6e5ecefe9de30a559ef39d188c0fb80da37ea73b39076e6c38d9c8c7b2513e5e893ab15e198669ad419b30ab7742b53 +docfiles size=11 + RELOC/doc/fonts/almendra/OFL.txt + RELOC/doc/fonts/almendra/README details="Readme" + RELOC/doc/fonts/almendra/almendra-samples.pdf details="Package documentation" + RELOC/doc/fonts/almendra/almendra-samples.tex +runfiles size=186 + RELOC/fonts/enc/dvips/almendra/almndr_2bmcpz.enc + RELOC/fonts/enc/dvips/almendra/almndr_aphd5h.enc + RELOC/fonts/enc/dvips/almendra/almndr_d2g35l.enc + RELOC/fonts/enc/dvips/almendra/almndr_fqyk3x.enc + RELOC/fonts/enc/dvips/almendra/almndr_gd2dkq.enc + RELOC/fonts/enc/dvips/almendra/almndr_jcmsbq.enc + RELOC/fonts/enc/dvips/almendra/almndr_ktaaad.enc + RELOC/fonts/enc/dvips/almendra/almndr_ncjtqa.enc + RELOC/fonts/enc/dvips/almendra/almndr_piphgo.enc + RELOC/fonts/enc/dvips/almendra/almndr_x2ojwl.enc + RELOC/fonts/enc/dvips/almendra/almndr_xs7q5m.enc + RELOC/fonts/enc/dvips/almendra/almndr_yxs7h5.enc + RELOC/fonts/enc/dvips/almendra/almndr_zt62bd.enc + RELOC/fonts/map/dvips/almendra/almendra.map + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almndr-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/AlmndrSC-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/AlmndrSC-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/almendra/AlmndrSC-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/almendra/AlmndrSC-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/almendra/AlmndrSC-Regular-osf-sc-t1.tfm + RELOC/fonts/truetype/public/almendra/Almendra-Bold.ttf + RELOC/fonts/truetype/public/almendra/Almendra-BoldItalic.ttf + RELOC/fonts/truetype/public/almendra/Almendra-Italic.ttf + RELOC/fonts/truetype/public/almendra/Almendra-Regular.ttf + RELOC/fonts/truetype/public/almendra/AlmendraSC-Regular.ttf + RELOC/fonts/type1/public/almendra/Almndr-Bold.pfb + RELOC/fonts/type1/public/almendra/Almndr-BoldItalic.pfb + RELOC/fonts/type1/public/almendra/Almndr-Italic.pfb + RELOC/fonts/type1/public/almendra/Almndr-Regular.pfb + RELOC/fonts/type1/public/almendra/AlmndrSC-Regular.pfb + RELOC/fonts/vf/public/almendra/Almndr-Bold-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almndr-Bold-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almndr-Bold-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almndr-Bold-osf-ts1.vf + RELOC/fonts/vf/public/almendra/Almndr-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almndr-BoldItalic-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almndr-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almndr-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/almendra/Almndr-Italic-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almndr-Italic-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almndr-Italic-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almndr-Italic-osf-ts1.vf + RELOC/fonts/vf/public/almendra/Almndr-Regular-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almndr-Regular-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almndr-Regular-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almndr-Regular-osf-ts1.vf + RELOC/fonts/vf/public/almendra/AlmndrSC-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/almendra/AlmndrSC-Regular-osf-sc-t1.vf + RELOC/tex/latex/almendra/LY1Almndr-OsF.fd + RELOC/tex/latex/almendra/OT1Almndr-OsF.fd + RELOC/tex/latex/almendra/T1Almndr-OsF.fd + RELOC/tex/latex/almendra/TS1Almndr-OsF.fd + RELOC/tex/latex/almendra/almendra.sty +catalogue-contact-home https://fonts.google.com/specimen/Almendra +catalogue-ctan /fonts/almendra +catalogue-license ofl lppl +catalogue-topics font font-serif font-calligraphic font-proportional font-body font-ttf font-type1 font-supp font-t1enc + +name almfixed +category Package +revision 35065 +shortdesc Arabic-Latin Modern Fixed extends TeX-Gyre Latin Modern Mono 10 Regular to full Arabic Unicode support +relocated 1 +longdesc Arabic-Latin Modern Fixed is an extension of TeX-Gyre Latin +longdesc Modern Mono 10 Regular. Every glyph and OpenType feature of the +longdesc Latin Modern Mono has been retained, with minor improvements. +longdesc On the other hand, we have changed the vertical metrics of the +longdesc font. Although the Arabic script is designed to use the same +longdesc x-size as Latin Modern Mono, the former script needs greater +longdesc ascender and descender space. Every Arabic glyph in each +longdesc Unicode-code block is supported (up to Unicode 7.0): Arabic, +longdesc Arabic Supplement, Arabic Extended, Arabic Presentation-Forms +longdesc A, and Arabic Presentation-Forms B. There are two versions of +longdesc the font: otf and ttf. The ?penType version is for print +longdesc applications (and usually the default for TeX). The TrueType +longdesc version is for on-screen applications such as text editors. +longdesc Hinting in the ttf version is much better for on-screen, at +longdesc least on Microsoft Windows. The unique feature of Arabic-Latin +longdesc Modern is its treatment of vowels and diacritics. Each vowel +longdesc and diacritic (ALM Fixed contains a total of 68 such glyphs) +longdesc may now be edited horizontally within any text editor or +longdesc processor. The author believes this is the very first OpenType +longdesc Arabic font ever to have this capability. Editing complex +longdesc Arabic texts will now be much easier to input and to proofread. +containersize 246256 +containerchecksum 1a5e41cac48a33c4336fe03576c49165b47a0bec606b0a15a3563922b964a9a3c2de735cd88cf10423b054b5131193441fbcd64fb2edc47d4944ff33cf6367ef +doccontainersize 565628 +doccontainerchecksum f51af6e63070fbf94a3f8ed756d544dc7d9460f37b016fcded0d2c56a6cf672d2e60c7b2cb8be9f9942f43e46b5ff2bfb59c6ae301a5d88a8858d6e60a3fbaa9 +docfiles size=488 + RELOC/doc/fonts/almfixed/README details="Readme" + RELOC/doc/fonts/almfixed/Unibook_0600.pdf + RELOC/doc/fonts/almfixed/Unibook_0750.pdf + RELOC/doc/fonts/almfixed/Unibook_08A0.pdf + RELOC/doc/fonts/almfixed/Unibook_FB50-1.pdf + RELOC/doc/fonts/almfixed/Unibook_FB50-2.pdf + RELOC/doc/fonts/almfixed/Unibook_FB50-3.pdf + RELOC/doc/fonts/almfixed/Unibook_FE70.pdf + RELOC/doc/fonts/almfixed/almfixed-dtk.pdf details="Package documentation" + RELOC/doc/fonts/almfixed/almfixed-dtk.tex + RELOC/doc/fonts/almfixed/almmono10-sample-crop.pdf + RELOC/doc/fonts/almfixed/aristoteles.pdf + RELOC/doc/fonts/almfixed/fawaid-427-crop.pdf + RELOC/doc/fonts/almfixed/ilahiyyat-1.pdf + RELOC/doc/fonts/almfixed/sc-unipad.pdf + RELOC/doc/fonts/almfixed/wa.pdf +runfiles size=222 + RELOC/fonts/opentype/public/almfixed/almfixed.otf + RELOC/fonts/truetype/public/almfixed/almfixed.ttf +catalogue-ctan /fonts/almfixed +catalogue-license gfl +catalogue-topics font font-otf font-ttf +catalogue-version 0.92 + +name alnumsec +category Package +revision 15878 +shortdesc Alphanumeric section numbering +relocated 1 +longdesc This package allows you to use alphanumeric section numbering, +longdesc for instance "A. Introduction ... III. International Law". Its +longdesc output is similar to alphanum, but you can use the standard +longdesc LaTeX sectioning commands, so that it is possible to switch +longdesc numbering schemes easily. Greek letters, double letters (bb) +longdesc and different delimiters around them are supported. +containersize 2636 +containerchecksum d61adf9c03ef9f0b5d68325b435d5145297d85fa04a5bf106de50f58c04c9507eb63fb17070e955e7f476158419a802f0f18d2cd97ca93baa7997c2d57def479 +doccontainersize 121668 +doccontainerchecksum ab07f751332fa0ad974e6ea84b10a0249e5bbb69e591d1319a8c5d743f88d63ad9a7c72fc08fbac95e3cf950d090313dd758ed8f604e209206f873c5f0f70880 +docfiles size=37 + RELOC/doc/latex/alnumsec/README details="Readme" + RELOC/doc/latex/alnumsec/alnumsec.pdf +srccontainersize 7532 +srccontainerchecksum 2c978d1dc9dc7f6a0f91d90102a37a2c8bdb78a19d7211d179b04ea448bb56baa451e09f945daaf3f219187d39f5938a7c003988fbc905b692931c9cffe465ee +srcfiles size=7 + RELOC/source/latex/alnumsec/alnumsec.dtx + RELOC/source/latex/alnumsec/alnumsec.ins +runfiles size=3 + RELOC/tex/latex/alnumsec/alnumsec.sty +catalogue-ctan /macros/latex/contrib/alnumsec +catalogue-license lppl +catalogue-topics headings +catalogue-version 0.03 + +name alpha-persian +category Package +revision 50316 +shortdesc Persian version of alpha.bst +relocated 1 +longdesc The package provides a Persian version of the alpha BibTeX +longdesc style and offers several enhancements. It is compatible with +longdesc the hyperref, url, natbib, and cite packages. +containersize 7452 +containerchecksum 9907067b5353b62bb2d25833231c3152974f7f0826237e6b18007043a420018c7901505fcbec45414ba67ca8f90f0213c512b16cbd342413ec000144b5fcb1f2 +doccontainersize 4484924 +doccontainerchecksum aaae11a4d64fcd05b9a98d324356c9b206bf22d5a744f6d9bd124e1c53f2df3ffd7f2901dd63a8dc2addd9783212792e2e3bbc789b1376e8f5f1d5fd28ea3ed3 +docfiles size=2423 + RELOC/doc/bibtex/alpha-persian/README.txt details="Readme" + RELOC/doc/bibtex/alpha-persian/alpha-persian-l.userguide.pdf details="Package documentation (English)" + RELOC/doc/bibtex/alpha-persian/alpha-persian-l.userguide.tex + RELOC/doc/bibtex/alpha-persian/alpha-persian-p.userguide.pdf details="Package documentation (Persian)" language="fa" + RELOC/doc/bibtex/alpha-persian/alpha-persian-p.userguide.tex + RELOC/doc/bibtex/alpha-persian/image/21.jpg + RELOC/doc/bibtex/alpha-persian/image/sh11.jpg + RELOC/doc/bibtex/alpha-persian/image/sh12.jpg + RELOC/doc/bibtex/alpha-persian/image/sh13.jpg + RELOC/doc/bibtex/alpha-persian/image/sh14.PNG + RELOC/doc/bibtex/alpha-persian/image/sh15.PNG + RELOC/doc/bibtex/alpha-persian/image/sh16.PNG + RELOC/doc/bibtex/alpha-persian/image/sh17.PNG + RELOC/doc/bibtex/alpha-persian/image/sh18.jpg + RELOC/doc/bibtex/alpha-persian/image/sh2.jpg + RELOC/doc/bibtex/alpha-persian/image/sh20.jpg + RELOC/doc/bibtex/alpha-persian/image/sh3.jpg + RELOC/doc/bibtex/alpha-persian/image/sh4.jpg + RELOC/doc/bibtex/alpha-persian/image/sh5.jpg + RELOC/doc/bibtex/alpha-persian/image/sh6.jpg + RELOC/doc/bibtex/alpha-persian/image/sh7.jpg + RELOC/doc/bibtex/alpha-persian/image/sh8.jpg + RELOC/doc/bibtex/alpha-persian/image/sh9.jpg + RELOC/doc/bibtex/alpha-persian/image/sht.jpg + RELOC/doc/bibtex/alpha-persian/pdflatexsample.tex + RELOC/doc/bibtex/alpha-persian/sample1.bib + RELOC/doc/bibtex/alpha-persian/sample10.bib + RELOC/doc/bibtex/alpha-persian/sample2.bib + RELOC/doc/bibtex/alpha-persian/sample3.bib + RELOC/doc/bibtex/alpha-persian/sample4.bib + RELOC/doc/bibtex/alpha-persian/sample5.bib + RELOC/doc/bibtex/alpha-persian/sample6.bib + RELOC/doc/bibtex/alpha-persian/sample7.bib + RELOC/doc/bibtex/alpha-persian/sample8.bib + RELOC/doc/bibtex/alpha-persian/sample9.bib + RELOC/doc/bibtex/alpha-persian/xelatexsample.tex +runfiles size=10 + RELOC/bibtex/bst/alpha-persian/alpha-persian.bst +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-license lppl1.3c +catalogue-topics bibtex-sty persian +catalogue-version 1.3 + +name alphalph +category Package +revision 53087 +shortdesc Convert numbers to letters +relocated 1 +longdesc Provides commands \alphalph and \AlphAlph. They are like +longdesc \number but the expansion consists of lowercase and uppercase +longdesc letters respectively (1 to a, 26 to z, 27 to aa, 52 to zz, 53 +longdesc to ba, 702 to zz, 703 to aaa, etc.). Can be used as a +longdesc replacement for LaTeX's \@alph and \@Alph macros. +containersize 3436 +containerchecksum de17ab4278afc9fb308abc23c19d4d1ce117ef3b66a21b748c102b95722d3395016682e9508e135e2b01bf4ff274964df0fb723ba2f92c81873dd58d73a3a733 +doccontainersize 351716 +doccontainerchecksum a098159842a9bd47e6da930af94cf365629c72f539fc3d045fb33b4bbe2004468fc690564850b67549b3eeb2265134c92aecef65b47d16da732bcc5aa93d26dd +docfiles size=88 + RELOC/doc/latex/alphalph/README.md + RELOC/doc/latex/alphalph/alphalph.pdf details="Package documentation" +srccontainersize 11292 +srccontainerchecksum 34e3c847a63de5a6e6dbea406e79fe0715a46c746f7113a5e8651838499c1d8b0a636c0bf138a1030c957e2e7cd17f848bf2285109642686f56ef95d18354717 +srcfiles size=11 + RELOC/source/latex/alphalph/alphalph.dtx +runfiles size=3 + RELOC/tex/generic/alphalph/alphalph.sty +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-license lppl1.3 +catalogue-topics numbers +catalogue-version 2.6 + +name altfont +category Package +revision 15878 +shortdesc Alternative font handling in LaTeX +relocated 1 +longdesc The package provides a replacement for that part of psnfss and +longdesc mfnfss that changes the default font. The package is +longdesc distributed together with the psfont package, by the same +longdesc author. +containersize 3528 +containerchecksum 18212e7107ed2bb6718a7c763d881dff7859e55e5bb33c42e1acfb5ea21228d1ebbdc6e13cb95f041bac99f871306bd3227326953229e69ac6b8ea774434cbd6 +doccontainersize 160688 +doccontainerchecksum 4d181a21f732b0265d4251d3775fdd8a4305c99c0dc1610adc9af583f73e376cce249b2ef237d8027aa32a269512db71260aebe78e5e1619f506f23d1105dc65 +docfiles size=59 + RELOC/doc/latex/altfont/README details="Readme" + RELOC/doc/latex/altfont/altfont.pdf details="Package documentation" + RELOC/doc/latex/altfont/psfont.pdf +srccontainersize 9172 +srccontainerchecksum f6982a69cb4264c633f8174fd8d487896db88e7d849c074c90645a84e7bc4abb1c1e6adf28500d300a74cdd26dc20b62efc013ff9e080df2bbe9a823ad0112f1 +srcfiles size=12 + RELOC/source/latex/altfont/altfont.dtx + RELOC/source/latex/altfont/altfont.ins + RELOC/source/latex/altfont/psfont.dtx + RELOC/source/latex/altfont/psfont.ins +runfiles size=6 + RELOC/tex/latex/altfont/altfont.cfg + RELOC/tex/latex/altfont/altfont.sty + RELOC/tex/latex/altfont/psfont.cfg + RELOC/tex/latex/altfont/psfont.sty +catalogue-ctan /macros/latex/contrib/altfont +catalogue-license gpl +catalogue-topics font-supp +catalogue-version 1.1 + +name ametsoc +category Package +revision 36030 +shortdesc Official American Meteorological Society LaTeX Template +relocated 1 +longdesc This bundle contains all the files necessary to write an +longdesc article using LaTeX for the American Meteorological Society +longdesc journals. The article and bibliography style files are provided +longdesc (with documentation) and a blank template for authors to use +longdesc when writing their article. Also available is a separate style +longdesc package used to format a two-column, journal page layout draft +longdesc for the author's personal use. +containersize 16160 +containerchecksum 34d99bedd34ea4195d4b0f60560c80c7d3624c2dcb3137a559eaa1b5a16bf465c39a0c54b6a5e64d2488dd7d4c1c82636d7c3adcee3e2e687a66b51b96fe6c48 +doccontainersize 5648 +doccontainerchecksum 80b64ca57599aab07dbd0d000e67fd002a19a8d8227bf9d635bbbefe84417d1f99cd75d81ff67e0d7a7e28231ab5438b4e51e90bbb5405f566877a4ec87b8d48 +docfiles size=6 + RELOC/doc/latex/ametsoc/README details="Readme" + RELOC/doc/latex/ametsoc/README.TEXLIVE + RELOC/doc/latex/ametsoc/references.bib + RELOC/doc/latex/ametsoc/template.tex +runfiles size=18 + RELOC/bibtex/bst/ametsoc/ametsoc2014.bst + RELOC/tex/latex/ametsoc/ametsoc.cls +catalogue-ctan /macros/latex/contrib/ametsoc +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 4.3.2 + +name amiri +category Package +revision 55403 +shortdesc A classical Arabic typeface, Naskh style +relocated 1 +longdesc Amiri is a classical Arabic typeface in Naskh style for +longdesc typesetting books and other running text. It is a revival of +longdesc the beautiful typeface pioneered in the early 20th century by +longdesc Bulaq Press in Cairo, also known as Amiria Press, after which +longdesc the font is named. The project aims at the revival of the +longdesc aesthetics and traditions of Arabic typesetting, and adapting +longdesc it to the era of digital typesetting, in a publicly available +longdesc form. +containersize 495748 +containerchecksum 36e26c23ddc53de46250f95a0d4a608c7e43e781b56002a62bf96675297aa2e81c9454811b8063080937feab4dd5b1f3782bccff4a1d2376d8484c9d60295fdb +doccontainersize 99476 +doccontainerchecksum 3328c73a7203ca3239036063c7a65faa9119ccb4c1f7fe4229abf49a0bd8216e4bef1a93a18c452a0200d781240dc643888c2d278eb97edfcd1c716ae14478e2 +docfiles size=38 + RELOC/doc/fonts/amiri/Documentation-Arabic.pdf details="Package documentation (Arabic)" language="ar" + RELOC/doc/fonts/amiri/NEWS + RELOC/doc/fonts/amiri/NEWS-Arabic + RELOC/doc/fonts/amiri/OFL.txt + RELOC/doc/fonts/amiri/README details="Readme" + RELOC/doc/fonts/amiri/README-Arabic details="Readme (Arabic)" language="ar" +runfiles size=621 + RELOC/fonts/truetype/public/amiri/Amiri-Bold.ttf + RELOC/fonts/truetype/public/amiri/Amiri-BoldSlanted.ttf + RELOC/fonts/truetype/public/amiri/Amiri-Regular.ttf + RELOC/fonts/truetype/public/amiri/Amiri-Slanted.ttf + RELOC/fonts/truetype/public/amiri/AmiriQuran.ttf + RELOC/fonts/truetype/public/amiri/AmiriQuranColored.ttf + RELOC/tex/latex/amiri/Amiri.fontspec +catalogue-contact-bugs https://github.com/alif-type/amiri/issues +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-license ofl +catalogue-topics font font-ttf arabic +catalogue-version 0.113 + +name amiweb2c-guide +category Package +revision 56878 +shortdesc How to install AmiWeb2c +relocated 1 +longdesc This is a guide for the installation of (La)TeX with the Amiga +longdesc port of Web2C named AmiWeb2C in the version 2.1 on an emulated +longdesc Amiga 4000 computer running Workbench 3.1. Furthermore the +longdesc installation of an ARexx server for calling LaTeX from an +longdesc editor is described and some tips for the installation of new +longdesc fonts are given. +containersize 536 +containerchecksum 1ffd4d1691abe2543585fa950d9b18ebb10e48c5c7d97e2f05828f04620bfd730894cd92f0df507627ddd9451a253ed8bbe89c07306b6db27ba84bd6c24910ea +doccontainersize 169360 +doccontainerchecksum d8f6ab658d8d8f2e05876ce27b5220eb2e10a58775cde91f975cdd106708ddef86781cc1c004b4381176fa7ee8ee6630a34bf7cacec374bf21ffe5e06c8d4d68 +docfiles size=63 + RELOC/doc/latex/amiweb2c-guide/README details="Readme" + RELOC/doc/latex/amiweb2c-guide/amiweb2c-guide.pdf details="Package documentation" + RELOC/doc/latex/amiweb2c-guide/amiweb2c-guide.tex +catalogue-ctan /info/amiweb2c-guide +catalogue-license lppl1.3c +catalogue-topics documentation +catalogue-version 1.0 + +name amsaddr +category Package +revision 29630 +shortdesc Alter the position of affiliations in amsart +relocated 1 +longdesc The package is to be used with the amsart documentclass. It +longdesc lets you move the authors' affiliations either just below the +longdesc authors' names on the front page or as footnotes on the first +longdesc page. The email addresses are always listed as a footnote on +longdesc the front page. +containersize 1912 +containerchecksum 98aecccedd2cbfe9e348a9ca6c66d82da07eac20bbc53dfc5ea79435a20e88bbdc4e17c85723824b216a212c509fcfe96b2b708353cbf7f93773514e5433d8f5 +doccontainersize 194712 +doccontainerchecksum dea731e32c5e02252db95deff66e4160ff3ac9c2b488b218098d9d82754a84d2d5821877c887f51086625c18d1bfb9c544dbb8d2fff4c5aa220463aa8c6d3fbe +docfiles size=49 + RELOC/doc/latex/amsaddr/README details="Readme" + RELOC/doc/latex/amsaddr/amsaddr.pdf details="Package documentation" +srccontainersize 4044 +srccontainerchecksum 007c3c63868f4f4c0fd324d93506ec1c511e7c278bfb81e5f51026248f033586ae8a60ff3b6cc0f94080bcfc7eda895eda21dd01f312ee63d5411eacd775104f +srcfiles size=4 + RELOC/source/latex/amsaddr/amsaddr.dtx + RELOC/source/latex/amsaddr/amsaddr.ins +runfiles size=1 + RELOC/tex/latex/amsaddr/amsaddr.sty +catalogue-ctan /macros/latex/contrib/amsaddr +catalogue-license lppl +catalogue-topics article-like +catalogue-version 1.1 + +name amscdx +category Package +revision 51532 +shortdesc Enhanced commutative diagrams +relocated 1 +longdesc The original amscd package provides a CD environment that +longdesc emulates the commutative diagram capabilities of AMS-TeX +longdesc version 2.x. This means that only simple rectangular diagrams +longdesc are supported, with no diagonal arrows or more exotic features. +longdesc This enhancement package implements double ("fat"), dashed, and +longdesc bidirectional arrows (left-right and up-down), and color +longdesc attributes for arrows and their annotations. The restriction to +longdesc rectangular geometry remains. This nevertheless allows the +longdesc drawing of a much broader class of "commutative-diagram-like" +longdesc diagrams. This update, 2.2x of 2019-07-02, fixes the +longdesc dashed-arrows parts placement bug, and adds the package option +longdesc 'lyx', for use with lyx to prevent conflict with the already +longdesc loaded amscd. The packages xcolor and graphicx are made +longdesc required. +containersize 3208 +containerchecksum 6bdebfbe4985eea23ce24db5e0e14162310d81efab18a7a820fe819bd51f839b9deca35b94740f038ae80084f355e5e800fd6e681d859cb7bc9bb8886993c33e +doccontainersize 217524 +doccontainerchecksum 65d6ea09c1bec56e5082d3521e1eabdd513013b0606f6cfbd0f7c7566795b8963dab6e9f3a46cbb6d008311e7ee3701efa345ef5dc780a3b18f6f4842d97594e +docfiles size=55 + RELOC/doc/latex/amscdx/README details="Readme" + RELOC/doc/latex/amscdx/amscdx.pdf details="Package documentation" +srccontainersize 6136 +srccontainerchecksum 94751d2c3f617710b50807de584cf4c4d7c8f1ff82a1ab14a5bbd8b41fb5828b0a208e20c131a0aa023a1c8afcdc3d4b5e36b2df99f76b260ec2d9509a941f76 +srcfiles size=6 + RELOC/source/latex/amscdx/amscdx.dtx + RELOC/source/latex/amscdx/amscdx.ins +runfiles size=3 + RELOC/tex/latex/amscdx/amscdx.sty +catalogue-also amscd +catalogue-contact-support https://users.aalto.fi/~mvermeer/ +catalogue-ctan /macros/latex/contrib/amscdx +catalogue-license lppl1.3c +catalogue-topics graphics diagram-comm maths +catalogue-version 2.2x + +name amscls +category Package +revision 55378 +shortdesc AMS document classes for LaTeX +relocated 1 +longdesc This bundle contains three AMS classes, amsart (for writing +longdesc articles for the AMS), amsbook (for books) and amsproc (for +longdesc proceedings), together with some supporting material. This +longdesc material forms one branch of what was originally the AMS-LaTeX +longdesc distribution. The other branch, amsmath, is now maintained and +longdesc distributed separately. The user documentation can be found in +longdesc the package amscls-doc. +containersize 32224 +containerchecksum eb39dc97a860047d764884663a1f541aa95a2d559dd55cb25f6b7c6c46617e6c33fe55a9fdc37b211c613333911df6e260768f43ae9630a208ecc7fb774891e5 +doccontainersize 1072480 +doccontainerchecksum c2e563bd239f36b0db3bdbfe1ccb4a0adec0c22af25b557ed748897a99672f05f36f2bba6e51827c6fdd60b351079809b15c0367d075566c5e48682c23108fe2 +docfiles size=298 + RELOC/doc/latex/amscls/00LICENSE.txt + RELOC/doc/latex/amscls/README details="Readme" + RELOC/doc/latex/amscls/amsart-template.tex + RELOC/doc/latex/amscls/amsbook-template.tex + RELOC/doc/latex/amscls/amsbooka.pdf + RELOC/doc/latex/amscls/amsclass.pdf details="Code with documentation" + RELOC/doc/latex/amscls/amsdtx.pdf + RELOC/doc/latex/amscls/amsmidx.pdf + RELOC/doc/latex/amscls/amsproc-template.tex + RELOC/doc/latex/amscls/amsthdoc.pdf + RELOC/doc/latex/amscls/diffs-c.txt + RELOC/doc/latex/amscls/manifest.txt + RELOC/doc/latex/amscls/thmtest.pdf + RELOC/doc/latex/amscls/upref.pdf +srccontainersize 365984 +srccontainerchecksum 7a96a464f9826a515191174b6e33016c7161c7547ed70ca78cac256cac68b4340a2b3bd9608f79df106c3eb2383b8d6895012a2cc6dee0c76d53d116679f4c6b +srcfiles size=167 + RELOC/source/latex/amscls/amsbooka.dtx + RELOC/source/latex/amscls/amsbooka.ins + RELOC/source/latex/amscls/amsclass.dtx + RELOC/source/latex/amscls/amsclass.ins + RELOC/source/latex/amscls/amsclass.pdf + RELOC/source/latex/amscls/amsdtx.dtx + RELOC/source/latex/amscls/amsdtx.ins + RELOC/source/latex/amscls/amsmidx.dtx + RELOC/source/latex/amscls/amsmidx.ins + RELOC/source/latex/amscls/amsthdoc.tex + RELOC/source/latex/amscls/install.txt + RELOC/source/latex/amscls/thmtest.tex + RELOC/source/latex/amscls/upref.dtx + RELOC/source/latex/amscls/upref.ins +runfiles size=79 + RELOC/bibtex/bst/amscls/amsalpha.bst + RELOC/bibtex/bst/amscls/amsplain.bst + RELOC/tex/latex/amscls/amsart.cls + RELOC/tex/latex/amscls/amsbook.cls + RELOC/tex/latex/amscls/amsbooka.sty + RELOC/tex/latex/amscls/amsdtx.cls + RELOC/tex/latex/amscls/amsldoc.cls + RELOC/tex/latex/amscls/amsmidx.sty + RELOC/tex/latex/amscls/amsproc.cls + RELOC/tex/latex/amscls/amsthm.sty + RELOC/tex/latex/amscls/upref.sty +catalogue-also amslatex amscls-doc +catalogue-contact-home http://www.ams.org/tex/amslatex.html +catalogue-ctan /macros/latex/required/amscls +catalogue-license lppl1.3c +catalogue-topics class maths +catalogue-version 2.20.6 + +name amscls-doc +category Package +revision 46110 +shortdesc User documentation for AMS document classes +relocated 1 +longdesc This collection comprises a set of four manuals, or Author +longdesc Handbooks, each documenting the use of a class of publications +longdesc based on one of the AMS document classes amsart, amsbook, +longdesc amsproc and one "hybrid", as well as a guide to the generation +longdesc of the four manuals from a coordinated set of LaTeX source +longdesc files. The Handbooks comprise the user documentation for the +longdesc pertinent document classes. As the source for the Handbooks +longdesc consists of a large number of files, and the intended output is +longdesc multiple different documents, the principles underlying this +longdesc collection can be used as a model for similar projects. The +longdesc manual "Compiling the AMS Author Handbooks" provides +longdesc information about the structure of and interaction between the +longdesc various components. +containersize 796 +containerchecksum 132432f34812f009233392ea29d6c4145717a80ea305632687da30de6969dcef8af9c2aa88cbf1809dd34b0c3dfca0f40a52b6216a7370f2a225b2602d0bbaf3 +doccontainersize 1743776 +doccontainerchecksum 8c08813abf65f00b68441d1e5cad3eb4a16fc1a77b30e10d96e22f34d6af547804af4d47b62ef0dfc895e2bc7cc5ecf7bc08d912448fefefbf716430c4502a64 +docfiles size=993 + RELOC/doc/latex/amscls-doc/AH_Bibliography.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Body.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Journals.pdf details="AMS Author Handbook for Journal Classes" + RELOC/doc/latex/amscls-doc/Author_Handbook_Journals.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Memo.pdf details="AMS Author Handbook for the Memoirs Class" + RELOC/doc/latex/amscls-doc/Author_Handbook_Memo.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Mono.pdf details="AMS Author Handbook for Monograph Classes" + RELOC/doc/latex/amscls-doc/Author_Handbook_Mono.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_ProcColl.pdf details="AMS Author Handbook for Proceedings and Collections Classes" + RELOC/doc/latex/amscls-doc/Author_Handbook_ProcColl.tex + RELOC/doc/latex/amscls-doc/Color2Gray.eps + RELOC/doc/latex/amscls-doc/Color2Gray.pdf + RELOC/doc/latex/amscls-doc/Graphics_Guidelines.tex + RELOC/doc/latex/amscls-doc/J-Checklist.tex + RELOC/doc/latex/amscls-doc/J-Series.tex + RELOC/doc/latex/amscls-doc/M-Checklist.tex + RELOC/doc/latex/amscls-doc/M-Series.tex + RELOC/doc/latex/amscls-doc/Mem-Checklist.tex + RELOC/doc/latex/amscls-doc/PC-Checklist.tex + RELOC/doc/latex/amscls-doc/PC-Series.tex + RELOC/doc/latex/amscls-doc/README-AH.txt + RELOC/doc/latex/amscls-doc/ResourcesHelp.tex + RELOC/doc/latex/amscls-doc/Submitting2AMS.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_J.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_M.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_Mem.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_PC.tex + RELOC/doc/latex/amscls-doc/ahandinstr-r.sty + RELOC/doc/latex/amscls-doc/ams-author-handbook-doc.pdf details="Compiling the AMS Author Handbooks" + RELOC/doc/latex/amscls-doc/ams-author-handbook-doc.tex + RELOC/doc/latex/amscls-doc/gamuts.eps + RELOC/doc/latex/amscls-doc/gamuts.pdf + RELOC/doc/latex/amscls-doc/manifest.txt + RELOC/doc/latex/amscls-doc/rgb-cmyk.eps + RELOC/doc/latex/amscls-doc/rgb-cmyk.pdf + RELOC/doc/latex/amscls-doc/spectrum.eps + RELOC/doc/latex/amscls-doc/spectrum.pdf +catalogue-also amscls +catalogue-contact-support mailto:tech-support@ams.org +catalogue-ctan /info/amscls-doc +catalogue-license lppl1.3c +catalogue-topics docu-pkg maths-doc scientific-docs + +name amsfonts +category Package +revision 29208 +shortdesc TeX fonts from the American Mathematical Society +relocated 1 +longdesc An extended set of fonts for use in mathematics, including: +longdesc extra mathematical symbols; blackboard bold letters (uppercase +longdesc only); fraktur letters; subscript sizes of bold math italic and +longdesc bold Greek letters; subscript sizes of large symbols such as +longdesc sum and product; added sizes of the Computer Modern small caps +longdesc font; cyrillic fonts (from the University of Washington); Euler +longdesc mathematical fonts. All fonts are provided as Adobe Type 1 +longdesc files, and all except the Euler fonts are provided as Metafont +longdesc source. The distribution also includes the canonical Type 1 +longdesc versions of the Computer Modern family of fonts. Basic LaTeX +longdesc support for the symbol fonts is provided by amsfonts.sty, with +longdesc names of individual symbols defined in amssymb.sty. The Euler +longdesc fonts are supported by separate packages; details can be found +longdesc in the documentation. +execute addMap euler.map +execute addMixedMap cm.map +execute addMixedMap cmextra.map +execute addMixedMap cyrillic.map +execute addMixedMap latxfont.map +execute addMixedMap symbols.map +containersize 3626276 +containerchecksum ff1256ae20f435327c12424613a15aa8f207e9133325e3a823ca7ef9951b8d52acb56cc69cbf9f3c0860ac43c9a74ae54154d1cd956d7e25612307dcc6e74585 +doccontainersize 1162540 +doccontainerchecksum fe0df1a9efc821e21adc0e21bcfaf2defb1749e3206d7dac8cd9b667747c37303cb2c69283a89aa8740fc3e08e8803408903a2a95eb0b91e910931a8333c2fca +docfiles size=321 + RELOC/doc/fonts/amsfonts/OFL-FAQ.txt + RELOC/doc/fonts/amsfonts/OFL.txt + RELOC/doc/fonts/amsfonts/README details="Package readme" + RELOC/doc/fonts/amsfonts/amsfndoc.pdf details="Users' guide to the fonts (for version 2.2d)" + RELOC/doc/fonts/amsfonts/amsfonts.pdf details="General package documentation" + RELOC/doc/fonts/amsfonts/amssymb.pdf details="Details of the fonts msam and msbm" + RELOC/doc/fonts/amsfonts/cmmib57.pdf + RELOC/doc/fonts/amsfonts/eufrak.pdf details="Eufrak package documentation" + RELOC/doc/fonts/amsfonts/euscript.pdf details="Eucal and euscript package documentation" +srccontainersize 49152 +srccontainerchecksum 49a99f519fbba1ae7ba91ffe392b4c1bf7b9246ab573a4f2c8b41fa252f080efe66c5df2acc36a5ea9570e51d55890bd89565ec2174ca7aa98980b49aa060a98 +srcfiles size=55 + RELOC/source/latex/amsfonts/amsfndoc.cyr + RELOC/source/latex/amsfonts/amsfndoc.def + RELOC/source/latex/amsfonts/amsfndoc.fnt + RELOC/source/latex/amsfonts/amsfndoc.ins + RELOC/source/latex/amsfonts/amsfndoc.tex + RELOC/source/latex/amsfonts/amsfonts.bug + RELOC/source/latex/amsfonts/amsfonts.dtx + RELOC/source/latex/amsfonts/amsfonts.faq + RELOC/source/latex/amsfonts/amsfonts.ins + RELOC/source/latex/amsfonts/amssymb.dtx + RELOC/source/latex/amsfonts/cmmib57.dtx + RELOC/source/latex/amsfonts/eufrak.dtx + RELOC/source/latex/amsfonts/euscript.dtx + RELOC/source/latex/amsfonts/manifest.txt +runfiles size=1879 + RELOC/fonts/afm/public/amsfonts/cm/cmb10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbsy10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbxsl10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbxti10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmcsc10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmdunh10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmex10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmff10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmfi10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmfib8.afm + RELOC/fonts/afm/public/amsfonts/cm/cminch.afm + RELOC/fonts/afm/public/amsfonts/cm/cmitt10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmib10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr17.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsltt10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss17.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssbx10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssdc10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi17.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssq8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssqi8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtcsc10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtex10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtex8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtex9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmu10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmvtt10.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy5.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy6.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy7.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy9.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmcsc8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmcsc9.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmex7.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmex8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmex9.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib5.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib6.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib7.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib9.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyb10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyi10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyr10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncysc10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyss10.afm + RELOC/fonts/afm/public/amsfonts/euler/euex10.afm + RELOC/fonts/afm/public/amsfonts/euler/euex7.afm + RELOC/fonts/afm/public/amsfonts/euler/euex8.afm + RELOC/fonts/afm/public/amsfonts/euler/euex9.afm + RELOC/fonts/afm/public/amsfonts/euler/eufb10.afm + RELOC/fonts/afm/public/amsfonts/euler/eufb5.afm + RELOC/fonts/afm/public/amsfonts/euler/eufb7.afm + RELOC/fonts/afm/public/amsfonts/euler/eufm10.afm + RELOC/fonts/afm/public/amsfonts/euler/eufm5.afm + RELOC/fonts/afm/public/amsfonts/euler/eufm7.afm + RELOC/fonts/afm/public/amsfonts/euler/eurb10.afm + RELOC/fonts/afm/public/amsfonts/euler/eurb5.afm + RELOC/fonts/afm/public/amsfonts/euler/eurb7.afm + RELOC/fonts/afm/public/amsfonts/euler/eurm10.afm + RELOC/fonts/afm/public/amsfonts/euler/eurm5.afm + RELOC/fonts/afm/public/amsfonts/euler/eurm7.afm + RELOC/fonts/afm/public/amsfonts/euler/eusb10.afm + RELOC/fonts/afm/public/amsfonts/euler/eusb5.afm + RELOC/fonts/afm/public/amsfonts/euler/eusb7.afm + RELOC/fonts/afm/public/amsfonts/euler/eusm10.afm + RELOC/fonts/afm/public/amsfonts/euler/eusm5.afm + RELOC/fonts/afm/public/amsfonts/euler/eusm7.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy10.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy5.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy6.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy7.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy9.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasyb10.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcircle1.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcirclew.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcmss8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcmssb8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcmssi8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/line10.afm + RELOC/fonts/afm/public/amsfonts/latxfont/linew10.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam10.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam5.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam6.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam7.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam8.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam9.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm10.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm5.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm6.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm7.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm8.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm9.afm + RELOC/fonts/map/dvips/amsfonts/cm.map + RELOC/fonts/map/dvips/amsfonts/cmextra.map + RELOC/fonts/map/dvips/amsfonts/cyrillic.map + RELOC/fonts/map/dvips/amsfonts/euler.map + RELOC/fonts/map/dvips/amsfonts/latxfont.map + RELOC/fonts/map/dvips/amsfonts/symbols.map + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy5.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy6.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy7.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy9.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmcsc8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmcsc9.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmex7.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmex8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmex9.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib5.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib6.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib7.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrcsc.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrfont.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrilu.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrital.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrmax.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrpunc.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrspl.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrspu.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrti.mf + RELOC/fonts/source/public/amsfonts/cyrillic/serb.mf + RELOC/fonts/source/public/amsfonts/cyrillic/serbspu.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb5.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb6.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb7.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi5.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi6.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi7.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr5.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr6.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr7.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncysc10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyss10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyss8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyss9.mf + RELOC/fonts/source/public/amsfonts/dummy/dummy.mf + RELOC/fonts/source/public/amsfonts/symbols/amsya.mf + RELOC/fonts/source/public/amsfonts/symbols/amsyb.mf + RELOC/fonts/source/public/amsfonts/symbols/asymbols.mf + RELOC/fonts/source/public/amsfonts/symbols/bsymbols.mf + RELOC/fonts/source/public/amsfonts/symbols/msam10.mf + RELOC/fonts/source/public/amsfonts/symbols/msam5.mf + RELOC/fonts/source/public/amsfonts/symbols/msam6.mf + RELOC/fonts/source/public/amsfonts/symbols/msam7.mf + RELOC/fonts/source/public/amsfonts/symbols/msam8.mf + RELOC/fonts/source/public/amsfonts/symbols/msam9.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm10.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm5.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm6.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm7.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm8.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm9.mf + RELOC/fonts/source/public/amsfonts/symbols/xbbase.mf + RELOC/fonts/source/public/amsfonts/symbols/xbbold.mf + RELOC/fonts/source/public/amsfonts/symbols/xbcaps.mf + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy5.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy6.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy7.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy9.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmcsc8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmcsc9.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib5.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib6.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib7.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb5.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb6.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb7.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi5.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi6.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi7.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr5.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr6.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr7.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncysc10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyss10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyss8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyss9.tfm + RELOC/fonts/tfm/public/amsfonts/dummy/dummy.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm9.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam10.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam5.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam6.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam7.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam8.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam9.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm10.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm5.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm6.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm7.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm8.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm9.tfm + RELOC/fonts/type1/public/amsfonts/cm/cmb10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmb10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbsy10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbsy10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbxsl10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbxsl10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbxti10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbxti10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmcsc10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmcsc10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmdunh10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmdunh10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmex10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmex10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmff10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmff10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmfi10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmfi10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmfib8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmfib8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cminch.pfb + RELOC/fonts/type1/public/amsfonts/cm/cminch.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmitt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmitt10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmib10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmib10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr17.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr17.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsltt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsltt10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss17.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss17.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssbx10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssbx10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssdc10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssdc10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi17.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi17.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssq8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssq8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssqi8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssqi8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtcsc10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtcsc10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtex10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtex10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtex8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtex8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtex9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtex9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmu10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmu10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmvtt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmvtt10.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmex7.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmex7.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmex8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmex8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmex9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmex9.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib5.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib5.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib6.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib6.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib7.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib7.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib9.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex10.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex10.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex7.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex7.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex8.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex8.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex9.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex9.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufb10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufb10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufb5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufb5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufb7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufb7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufm10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufm10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufm5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufm5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufm7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufm7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurb10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurb10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurb5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurb5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurb7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurb7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurm10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurm10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurm5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurm5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurm7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurm7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusb10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusb10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusb5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusb5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusb7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusb7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusm10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusm10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusm5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusm5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusm7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusm7.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy10.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy5.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy5.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy6.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy6.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy7.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy7.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy9.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy9.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasyb10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasyb10.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcircle1.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcircle1.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcirclew.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcirclew.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcmss8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcmss8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/line10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/line10.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/linew10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/linew10.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam10.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam10.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam5.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam5.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam6.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam6.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam7.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam7.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam8.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam8.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam9.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam9.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm10.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm10.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm5.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm5.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm6.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm6.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm7.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm7.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm8.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm8.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm9.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm9.pfm + RELOC/tex/latex/amsfonts/amsfonts.sty + RELOC/tex/latex/amsfonts/amssymb.sty + RELOC/tex/latex/amsfonts/cmmib57.sty + RELOC/tex/latex/amsfonts/eucal.sty + RELOC/tex/latex/amsfonts/eufrak.sty + RELOC/tex/latex/amsfonts/euscript.sty + RELOC/tex/latex/amsfonts/ueuex.fd + RELOC/tex/latex/amsfonts/ueuf.fd + RELOC/tex/latex/amsfonts/ueur.fd + RELOC/tex/latex/amsfonts/ueus.fd + RELOC/tex/latex/amsfonts/umsa.fd + RELOC/tex/latex/amsfonts/umsb.fd + RELOC/tex/plain/amsfonts/amssym.def + RELOC/tex/plain/amsfonts/amssym.tex + RELOC/tex/plain/amsfonts/cyracc.def +catalogue-contact-home http://www.ams.org/tex/amsfonts.html +catalogue-ctan /fonts/amsfonts +catalogue-license ofl +catalogue-topics font font-maths font-symbol-maths font-bbd font-type1 font-mf +catalogue-version 3.04 + +name amslatex-primer +category Package +revision 28980 +shortdesc Getting up and running with AMS-LaTeX +relocated 1 +longdesc The document aims to get you up and running with AMS-LaTeX as +longdesc quickly as possible. These instructions (along with a template +longdesc file template.tex) are not a substitute for the full +longdesc documentation, but they may get you started quickly enough so +longdesc that you will only need to refer to the main documentation +longdesc occasionally. In addition to 'AMS-LaTeX out of the box', the +longdesc document contains: a section describing how to draw commutative +longdesc diagrams using Xy-pic; and a section describing how to use +longdesc amsrefs to create a bibliography. +containersize 664 +containerchecksum 05c7c19430a85986db770d1ff8686993edcde35171e3653ddfb7db4a09422c80e53632f583371079fe14d3c6fd9ff4eb3f0c37cbecea7ca2d9a5aefb04cabdb0 +doccontainersize 566748 +doccontainerchecksum 85faf2a9c03f7d7d1e23d72b7041c9b322d5f8bd8cb309a60f7256416249ceb7582c112d25f8953ee67dd2b79a3697e29cf6250d7b199a9eb73a9682f123354f +docfiles size=177 + RELOC/doc/latex/amslatex-primer/README details="Readme" + RELOC/doc/latex/amslatex-primer/amshelp.md5 + RELOC/doc/latex/amslatex-primer/amshelp.pdf details="The document itself" + RELOC/doc/latex/amslatex-primer/amshelp.tex + RELOC/doc/latex/amslatex-primer/template.tex +catalogue-ctan /info/amslatex/primer +catalogue-license lppl +catalogue-topics maths-doc +catalogue-version 2.3 + +name amsldoc-it +category Package +revision 45662 +shortdesc Italian translation of amsldoc +relocated 1 +containersize 272 +containerchecksum 9178b17bedc53957118083a78ead56f9fdaf9fd6a60ea0ebdbeee6c87254e7567b47b61bad1f9bda2554f471f79c28f3df7c3d2b9858faad65c3d110664ec4c8 +doccontainersize 320476 +doccontainerchecksum eb23cb624c4cf6283b8f777911d102953d31dc8da04392d7023694fed02ee1b8a8a49365fe0f1cba9682e911405f04afc982b6cc9cf9699a4d76ec8dca6a471c +docfiles size=105 + RELOC/doc/latex/amsldoc-it/itamsldoc.pdf + RELOC/doc/latex/amsldoc-it/itamsldoc.tex + +name amsldoc-vn +category Package +revision 21855 +catalogue amslatexdoc-vietnamese +shortdesc Vietnamese translation of AMSLaTeX documentation +relocated 1 +longdesc This is a Vietnamese translation of amsldoc, the users' guide +longdesc to amsmath. +containersize 428 +containerchecksum 5b0c2cc1afcc4060249be20271af92c71c866db47d2551a176b5685c58182a6ca17da9540dd9a7c7abd33de75b0335a625aa921fdbd77329bc91d16718fb346a +doccontainersize 1169692 +doccontainerchecksum 827c294eb1cedd51a3924796b461ec3d6c858e7875254e0fdb6cb496fecbb6d2ec541e930327c54cc446b15dd69ed795470ae6cbf1cf1e51c0f3ae90f3f6c12f +docfiles size=370 + RELOC/doc/latex/amsldoc-vn/Makefile + RELOC/doc/latex/amsldoc-vn/README details="Readme" + RELOC/doc/latex/amsldoc-vn/TODO + RELOC/doc/latex/amsldoc-vn/amsldoc-print-vi.pdf details="For printing" language="vi" + RELOC/doc/latex/amsldoc-vn/amsldoc-print-vi.tex + 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-license lppl1.3 +catalogue-topics vietnamese-doc maths-doc translation +catalogue-version 2.0 + +name amsmath +category Package +revision 56514 +catalogue latex-amsmath +shortdesc AMS mathematical facilities for LaTeX +relocated 1 +longdesc The package provides the principal packages in the AMS-LaTeX +longdesc distribution. It adapts for use in LaTeX most of the +longdesc mathematical features found in AMS-TeX; it is highly +longdesc recommended as an adjunct to serious mathematical typesetting +longdesc in LaTeX. When amsmath is loaded, AMS-LaTeX packages amsbsy +longdesc (for bold symbols), amsopn (for operator names) and amstext +longdesc (for text embedded in mathematics) are also loaded. amsmath is +longdesc part of the LaTeX required distribution; however, several +longdesc contributed packages add still further to its appeal; examples +longdesc are empheq, which provides functions for decorating and +longdesc highlighting mathematics, and ntheorem, for specifying theorem +longdesc (and similar) definitions. +containersize 30860 +containerchecksum 6cf5b39f9b94f5f9d0ffeb021422ee7c04a15c6cbfc0e29e58386c386f356cb311b4cea9134c5211a6aa9e8b6f8a6d7af61960c6aa378887754d2450261b0665 +doccontainersize 2351400 +doccontainerchecksum eb71c5f8e5a05b76cc5cc1eb554843160d6592e4c802f8d0c4fa009489966350698b7fa37fd1fcac1a70e0ecebafd08dfadc81d069bd1a1867e09dd09295128c +docfiles size=667 + RELOC/doc/latex/amsmath/README.md details="General README" language="en" + RELOC/doc/latex/amsmath/ams-external.txt + RELOC/doc/latex/amsmath/ams-internal.txt + RELOC/doc/latex/amsmath/amsbsy.pdf + RELOC/doc/latex/amsmath/amscd.pdf + RELOC/doc/latex/amsmath/amsgen.pdf + RELOC/doc/latex/amsmath/amsldoc.pdf details="User guide (English)" language="en" + RELOC/doc/latex/amsmath/amsldoc.tex + RELOC/doc/latex/amsmath/amsmath.pdf + RELOC/doc/latex/amsmath/amsopn.pdf + RELOC/doc/latex/amsmath/amstext.pdf + RELOC/doc/latex/amsmath/amsxtra.pdf + RELOC/doc/latex/amsmath/changes.txt + RELOC/doc/latex/amsmath/diffs-m.txt details="Differences from previous versions" language="en" + RELOC/doc/latex/amsmath/manifest.txt + RELOC/doc/latex/amsmath/subeqn.pdf details="Sub-equation usage" language="en" + RELOC/doc/latex/amsmath/subeqn.tex + RELOC/doc/latex/amsmath/technote.pdf details="Technical details" language="en" + RELOC/doc/latex/amsmath/technote.tex + RELOC/doc/latex/amsmath/testmath.pdf details="Examples paper" language="en" + RELOC/doc/latex/amsmath/testmath.tex +srccontainersize 65388 +srccontainerchecksum 2566262754978f25ba0bde06a1d6b161ff60e3306400a40e054c0408d932499ce54933e7b0a39875c0bd54ea8a88234e2503bee8a319a5b12388193eab1b0eda +srcfiles size=81 + RELOC/source/latex/amsmath/amsbsy.dtx + RELOC/source/latex/amsmath/amsbsy.ins + RELOC/source/latex/amsmath/amscd.dtx + RELOC/source/latex/amsmath/amscd.ins + RELOC/source/latex/amsmath/amsgen.dtx + RELOC/source/latex/amsmath/amsgen.ins + RELOC/source/latex/amsmath/amsmath.dtx + RELOC/source/latex/amsmath/amsmath.ins + RELOC/source/latex/amsmath/amsopn.dtx + RELOC/source/latex/amsmath/amsopn.ins + RELOC/source/latex/amsmath/amstext.dtx + RELOC/source/latex/amsmath/amstext.ins + RELOC/source/latex/amsmath/amsxtra.dtx + RELOC/source/latex/amsmath/amsxtra.ins +runfiles size=70 + RELOC/tex/latex/amsmath/amsbsy.sty + RELOC/tex/latex/amsmath/amscd.sty + RELOC/tex/latex/amsmath/amsgen.sty + RELOC/tex/latex/amsmath/amsmath-2018-12-01.sty + RELOC/tex/latex/amsmath/amsmath.sty + RELOC/tex/latex/amsmath/amsopn.sty + RELOC/tex/latex/amsmath/amstex.sty + RELOC/tex/latex/amsmath/amstext.sty + RELOC/tex/latex/amsmath/amsxtra.sty +catalogue-also nath mathtools +catalogue-contact-home http://www.ams.org/tex/amslatex.html +catalogue-ctan /macros/latex/required/amsmath +catalogue-license lppl1.3c +catalogue-topics maths + +name amsmath-it +category Package +revision 22930 +shortdesc Italian translations of some old amsmath documents +relocated 1 +longdesc The documents are: diffs-m.txt of December 1999, and +longdesc amsmath.faq of March 2000. +containersize 428 +containerchecksum 6bc869e3cf11a9521ff883e9b8cd227a267d28291124c0f268556ea576bc0af8ea4eaa145e45d1de84709df08182fc83946d80fd0f116a8656a35d75ca83eef5 +doccontainersize 13716 +doccontainerchecksum 814539a2a82601c930097113a9baca5166fcf68d1b0c4dcf25d8afa8991e667619517879bc415ff114b9e86664b9ff5e25a7bcf1bb04160b9297cbfabb4a639d +docfiles size=12 + RELOC/doc/latex/amsmath-it/README + RELOC/doc/latex/amsmath-it/amsmath.faq + RELOC/doc/latex/amsmath-it/diffs-m_it.txt +catalogue-ctan /info/translations/amsmath/it +catalogue-license lppl +catalogue-topics docu-pkg italian-doc translation + +name amsrefs +category Package +revision 30646 +shortdesc A LaTeX-based replacement for BibTeX +relocated 1 +longdesc Amsrefs is a LaTeX package for bibliographies that provides an +longdesc archival data format similar to the format of BibTeX database +longdesc files, but adapted to make direct processing by LaTeX easier. +longdesc The package can be used either in conjunction with BibTeX or as +longdesc a replacement for BibTeX. +containersize 27428 +containerchecksum a0993aa374bf845952c934a421d2b344564726207245102dec82915a3cddf33ad8cb1f2d4d48d71ba0263fae0c24c78f0cc21e0b923a875af02d12c602a375d6 +doccontainersize 1938800 +doccontainerchecksum 2c472849194fb72453a541ba443b2232fbf876cd2d4071dd6e6eb65603845ac9715629bbc7b1f44dc0268a809a1a5d74a08f0dc27a81e9b30787a44d133bdd57 +docfiles size=522 + RELOC/doc/latex/amsrefs/amsrdoc.pdf details="Package documentation" + RELOC/doc/latex/amsrefs/amsrefs.faq + RELOC/doc/latex/amsrefs/amsrefs.pdf details="Documented source" + RELOC/doc/latex/amsrefs/amsxport.pdf + RELOC/doc/latex/amsrefs/changes.pdf + RELOC/doc/latex/amsrefs/cite-xa.tex + RELOC/doc/latex/amsrefs/cite-xb.tex + RELOC/doc/latex/amsrefs/cite-xh.tex + RELOC/doc/latex/amsrefs/cite-xs.tex + RELOC/doc/latex/amsrefs/gktest.ltb + RELOC/doc/latex/amsrefs/ifoption.pdf + RELOC/doc/latex/amsrefs/jr.bib + RELOC/doc/latex/amsrefs/mathscinet.pdf + RELOC/doc/latex/amsrefs/pcatcode.pdf + RELOC/doc/latex/amsrefs/rkeyval.pdf + RELOC/doc/latex/amsrefs/textcmds.pdf +srccontainersize 102004 +srccontainerchecksum 9cdfcb0e841f6dcfb23c5fac930d12cc610ae8002aed13a4867bf384fa0f177f834cb58482647c2daf7c52c0267f85e8dc4f93575b14fe58e2a634307b7bab49 +srcfiles size=129 + RELOC/source/latex/amsrefs/README + RELOC/source/latex/amsrefs/amsrdoc.tex + RELOC/source/latex/amsrefs/amsrefs.dtx + RELOC/source/latex/amsrefs/amsrefs.ins + RELOC/source/latex/amsrefs/amsxport.dtx + RELOC/source/latex/amsrefs/amsxport.ins + RELOC/source/latex/amsrefs/changes.tex + RELOC/source/latex/amsrefs/ifoption.dtx + RELOC/source/latex/amsrefs/ifoption.ins + RELOC/source/latex/amsrefs/install.txt + RELOC/source/latex/amsrefs/manifest.txt + RELOC/source/latex/amsrefs/mathscinet.dtx + RELOC/source/latex/amsrefs/mathscinet.ins + RELOC/source/latex/amsrefs/pcatcode.dtx + RELOC/source/latex/amsrefs/pcatcode.ins + RELOC/source/latex/amsrefs/rkeyval.dtx + RELOC/source/latex/amsrefs/rkeyval.ins + RELOC/source/latex/amsrefs/textcmds.dtx + RELOC/source/latex/amsrefs/textcmds.ins +runfiles size=59 + RELOC/bibtex/bib/amsrefs/amsj.bib + RELOC/bibtex/bst/amsrefs/amsra.bst + RELOC/bibtex/bst/amsrefs/amsrn.bst + RELOC/bibtex/bst/amsrefs/amsrs.bst + RELOC/bibtex/bst/amsrefs/amsru.bst + RELOC/bibtex/bst/amsrefs/amsry.bst + RELOC/tex/latex/amsrefs/amsbst.sty + RELOC/tex/latex/amsrefs/amsrefs.sty + RELOC/tex/latex/amsrefs/ifoption.sty + RELOC/tex/latex/amsrefs/mathscinet.sty + RELOC/tex/latex/amsrefs/pcatcode.sty + RELOC/tex/latex/amsrefs/rkeyval.sty + RELOC/tex/latex/amsrefs/textcmds.sty +catalogue-also biblatex +catalogue-contact-home http://www.ams.org/tex/amsrefs.html +catalogue-ctan /macros/latex/contrib/amsrefs +catalogue-license lppl1.3 +catalogue-topics biblio +catalogue-version 2.14 + +name amstex +category Package +revision 57972 +shortdesc American Mathematical Society plain TeX macros +longdesc AMS-TeX is a TeX macro package, originally written by Michael +longdesc Spivak for the American Mathematical Society (AMS) during +longdesc 1983-1985 and is described in the book 'The Joy of TeX'. It is +longdesc based on Plain TeX, and provides many features for producing +longdesc more professional-looking maths formulas with less burden on +longdesc authors. This is the final archival distribution of AMS-TeX. +longdesc AMS-TeX is no longer supported by the AMS, nor is it used by +longdesc the AMS publishing program. The AMS does not recommend creating +longdesc any new documents using AMS-TeX; this distribution will be left +longdesc on CTAN to facilitate processing of legacy documents and as a +longdesc historical record of a pioneering TeX macro collection that +longdesc played a key role in popularizing TeX and revolutionizing +longdesc mathematics publishing. In addition to the "User's Guide to +longdesc AMS-TeX", the AMS has also made the full text of the most +longdesc recent reprint of the second edition of "The Joy of TeX" by +longdesc Michael Spivak available as a pdf file. AMS-TeX is the +longdesc historical basis of amslatex, which should now be used to +longdesc prepare submissions for the AMS. +depend amsfonts +depend amstex.ARCH +depend cm +depend hyphen-base +depend knuth-lib +depend plain +depend tex +execute AddFormat name=amstex engine=pdftex options="-translate-file=cp227.tcx *amstex.ini" fmttriggers=amsfonts,cm,hyphen-base,knuth-lib,plain +containersize 38372 +containerchecksum d52e4a817f839c95b7718c65b6cba571443f9f25533a9c7412a69b3f15c89e995494ed812ead2ddac9f0952e0e842216a7fd443ecf2360f50a36107241397c19 +doccontainersize 410652 +doccontainerchecksum ed91ca4af98a72f081aa021b598ed58888150a73346d5d8da9ef7171f7d757c6d690169e1eb4b3e409ed8b988b8ffff9475f35ca7a443074080c1c9568ebaa0d +docfiles size=203 + texmf-dist/doc/amstex/base/README details="Readme" + texmf-dist/doc/amstex/base/amsguide.pdf details="User's guide and installation details" + texmf-dist/doc/amstex/base/amsguide.tex + texmf-dist/doc/amstex/base/amsppt.doc + texmf-dist/doc/amstex/base/amsppt.faq + texmf-dist/doc/amstex/base/amsppt.txt + texmf-dist/doc/amstex/base/amstex.txt + texmf-dist/doc/amstex/base/amstinst.pdf + texmf-dist/doc/amstex/base/amstinst.tex + texmf-dist/doc/amstex/base/joyerr2.tex + texmf-dist/doc/man/man1/amstex.1 + texmf-dist/doc/man/man1/amstex.man1.pdf +runfiles size=44 + texmf-dist/tex/amstex/base/amsppt.sti + texmf-dist/tex/amstex/base/amsppt.sty + texmf-dist/tex/amstex/base/amsppt1.tex + texmf-dist/tex/amstex/base/amstex.bug + texmf-dist/tex/amstex/base/amstex.tex + texmf-dist/tex/amstex/config/amstex.ini +catalogue-also joy-of-tex +catalogue-contact-home https://www.ams.org/arc/resources/amslatex-about.html +catalogue-ctan /macros/amstex +catalogue-license lppl +catalogue-topics maths + +name amstex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of amstex +containersize 320 +containerchecksum 1a3e4d09ef7873ba53409c4b2b7ec62210aa325570ccd752257b4fe372dcbec69688cbfe11e7b961943675c06a486ea794a227e3e68d64de0ccd964517ddbf9e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/amstex + +name amstex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of amstex +containersize 320 +containerchecksum e974a2af83a4b7ea1966ef86a1be412369f9fb16957e019d5cfda9809a8a3344f256c67e417b58a77fc5f977f44e9848453b6540416eb18637cef29cc0d096df +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/amstex + +name amstex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of amstex +containersize 320 +containerchecksum 959571512851091ed8d58cd27d7101d1f6cfc98ea04974002a8cec0cb24272753e0386f3b2d8f8d581e07e14cc76f132d71ca0ac978eb0d779ccd25c33c8c2ef +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/amstex + +name amstex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of amstex +containersize 320 +containerchecksum 8c9db41ae350c152082ff850c686d6f59cf8def6dfcb1ff7fbfe904842c5f5243b259f5cf804d5f27dc411debd6d270ab417e093198e8a9c87ffe33e6b43f45e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/amstex + +name amstex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of amstex +containersize 324 +containerchecksum fc6dd4b4f0197e5d755c247859654f8273d3d9f360829d2ad19ecc885dfad8f49e9d0acc26ae7aa3032e749fb5eadf11b82bf13b8fbc26377296805e37a94d88 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/amstex + +name amstex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of amstex +containersize 324 +containerchecksum 5f5798b8d87c33664bc80d1a898904608ead6802d9302c70dd2c2175e4ddbf07fb7b927be2ce67f6f620ba92c7b44174407468080e0f00cdd99a98276b139df2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/amstex + +name amstex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of amstex +containersize 320 +containerchecksum 23d9419fa79a06bac963424ef48823eafc2cc8e34736bc736bc6678bd9e973707a39df4e4ecbd1d77660c031ab52906162a12c27f67ae616ddc06d57a07e1fdf +binfiles arch=i386-linux size=1 + bin/i386-linux/amstex + +name amstex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of amstex +containersize 320 +containerchecksum db7e9782323e7e2192e157823f655fd591164d3319d558f74190d153c0fc352ad8830ac04157366c6a39302e61610d1e055fd4c4f2cd92010f59d26afbf37f98 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/amstex + +name amstex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of amstex +containersize 320 +containerchecksum 2395852c4d04d4d35fa71f001b01496dc46fd663758625558b3830a23d86798de01553e128e895e6c0261620b40f6637025d0fa55209981cd52cc69a897308e3 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/amstex + +name amstex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of amstex +containersize 320 +containerchecksum b00ff8a3130902ec09483a23aaed4e712ef70b2e3a4ca541b53d8747261f7228169a44d566efd8170bd6e59a719e3128ca4366a78a7f8eda612c8539cca2941a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/amstex + +name amstex.win32 +category Package +revision 57883 +shortdesc win32 files of amstex +containersize 864 +containerchecksum f3d3b33388747512ac3bba8848fc8e9ec08001604e29d1984b86beac6c8cf2c7da99d3929983cd71108bac2e651e06ba4379db61a697132b729df01d5c4b22bc +binfiles arch=win32 size=1 + bin/win32/amstex.exe + +name amstex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of amstex +containersize 328 +containerchecksum 9e91c1951e48679f24a58fe48e3dbbe5bb2c376ded01277446ebf1bc6d38f1b6f89d07b9041dd01f8ca49b702f03f57ed2408112e6c5a21033f184db45c2b6b0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/amstex + +name amstex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of amstex +containersize 328 +containerchecksum 5e38403a65d219ed632bee41bba50a16c7d4d224f1e7f8e7b40fc2f03d0d24ca4a508cb4ba0a88a78515dffc735e68499387fda33b7bad20a0403e1d986fa246 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/amstex + +name amstex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of amstex +containersize 320 +containerchecksum b6f03c380ed1190684e18640876beb70484c91396432046d17ac3194fd5991df96aa521c3daf7a4c34f9cdcfccae07ae7c772ee6573431eed0a5deba17a95098 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/amstex + +name amstex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of amstex +containersize 324 +containerchecksum 5e4d53db8baf4682e7b8fc86c4fda12d2f26b353045c5c99667413735b571f5c7df847ffa53179df0ca234391e4c9356550640c2b49b924702dae7afff1c1599 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/amstex + +name amstex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of amstex +containersize 324 +containerchecksum 2b58da1b25ad7c374a31df67d139f91ef42fae415eef7c1569b5d10764034e5d3d4f680089338f824185318ab4f16fbfc48e7778da42898d9bc4f3157977e33f +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/amstex + +name amsthdoc-it +category Package +revision 45662 +shortdesc Italian translation of amsthdoc: Using the amsthm package +relocated 1 +containersize 288 +containerchecksum 17631e2d6306887236f11eed586454a784f256c36c14955be1eb30377f1f73b189686b37ba6c95188fda2e0b0aac9a1f40469a32bc7787b5d4c244de9a01ccdf +doccontainersize 100012 +doccontainerchecksum 2d35f87da43f957d7ec3d1e61d052d14b4dc207207fc2e6dc4de08b699e5211db17a84f0305888294ae163691e4dee2d067fb1c3a29fadcc34214033fe8e22eb +docfiles size=32 + RELOC/doc/latex/amsthdoc-it/README + RELOC/doc/latex/amsthdoc-it/amsthdoc_it.pdf + RELOC/doc/latex/amsthdoc-it/amsthdoc_it.tex + +name animate +category Package +revision 56583 +shortdesc Create PDF and SVG animations from graphics files and inline graphics +relocated 1 +longdesc The package provides an interface to create portable, +longdesc JavaScript driven PDF and SVG animations from sets of graphics +longdesc files or from inline graphics, such as LaTeX picture +longdesc environment, PSTricks or pgf/TikZ generated pictures, or just +longdesc from typeset text. +containersize 23388 +containerchecksum 29739e0c995ef6c00efdaa730a1e866b13efdb4005db8b8088ce4f1826899adabae41e2b7c0659df256817274ee11dfb7a033eb7b2f11302591a1fd541e1c1be +doccontainersize 3145132 +doccontainerchecksum 95fc8d11094fc1e339ebe7c7db4ea88237790358bbd9bbec8420e3f53bac986ad2b8e6dc5e962c2d0c3f0de348b7b1cbc39b0289cee26276009e914e3ce15943 +docfiles size=957 + RELOC/doc/latex/animate/ChangeLog + RELOC/doc/latex/animate/README.txt + RELOC/doc/latex/animate/animate.pdf details="Package documentation" +srccontainersize 30296 +srccontainerchecksum 68a330fe39398265a10c25d452a6a26da8f4bfb28fd0826293c710e90259a401d55dc2b5adb1f29301bd809ccc2176a2e8b4e82a324a098fb9a29ec7f17bd8dd +srcfiles size=36 + RELOC/source/latex/animate/animate.tex + RELOC/source/latex/animate/files/bye_0.eps + RELOC/source/latex/animate/files/bye_1.eps + RELOC/source/latex/animate/files/bye_2.eps + RELOC/source/latex/animate/files/bye_3.eps + RELOC/source/latex/animate/files/click.mp3 + RELOC/source/latex/animate/files/exp.mp + RELOC/source/latex/animate/files/scarab.mp +runfiles size=34 + RELOC/tex/latex/animate/animate.sty +catalogue-contact-repository https://gitlab.com/agrahn/animate +catalogue-ctan /macros/latex/contrib/animate +catalogue-license lppl +catalogue-topics graphics-motion + +name annee-scolaire +category Package +revision 55988 +shortdesc Automatically typeset the academic year (French way) +relocated 1 +longdesc This package provides a macro \anneescolaire to automatically +longdesc write the academic year in the French way, according to the +longdesc date of compilation, two other macros to obtain the first and +longdesc the second calendar year of the academic year, a macro to be +longdesc redefined to change the presentation of the years. +containersize 1404 +containerchecksum 73158727d9c5da0b28fe71661c72a8d1faa705034be8cd10ae36abc266240958cdf0dac962926a96ce445be187016d8440b7aded3129de6fff814ceb6366beb6 +doccontainersize 1134124 +doccontainerchecksum 3e02616de1f5d55837511eb2b1edaa571b6686192433941e1412d812588fede1eb8a8d160b724d1fb8ef8f369cbecd401d1bcd09d4692a79b182ce5bccfb6021 +docfiles size=345 + RELOC/doc/latex/annee-scolaire/LISEZMOI.md + RELOC/doc/latex/annee-scolaire/MANIFEST.md + RELOC/doc/latex/annee-scolaire/README.md details="Readme" + RELOC/doc/latex/annee-scolaire/annee-scolaire-eng.pdf details="User guide" + RELOC/doc/latex/annee-scolaire/annee-scolaire-eng.tex + RELOC/doc/latex/annee-scolaire/annee-scolaire-fra.pdf details="Guide de l'utilisateur" language="fr" + RELOC/doc/latex/annee-scolaire/annee-scolaire-fra.tex + RELOC/doc/latex/annee-scolaire/annee-scolaire.pdf details="Code documentation" +srccontainersize 5896 +srccontainerchecksum 2e0e2a08820a7826fc6e58dc97ee9587818bdd62d0eb046982dd1f8a676df705e5bb87cfaabf7e260089d71ede1f597b0afd92b69616c0047d64983d919da50c +srcfiles size=6 + RELOC/source/latex/annee-scolaire/annee-scolaire.dtx + RELOC/source/latex/annee-scolaire/annee-scolaire.ins +runfiles size=1 + RELOC/tex/latex/annee-scolaire/annee-scolaire.sty +catalogue-ctan /macros/latex/contrib/annee-scolaire +catalogue-license lppl1.3c +catalogue-topics calendar expl3 +catalogue-version 1.6 + +name annotate +category Package +revision 52824 +shortdesc A bibliography style with annotations +relocated 1 +longdesc The style is a derivative of the standard alpha style, which +longdesc processes an entry's annotate field as part of the printed +longdesc output. +containersize 4644 +containerchecksum bd31306b72bec73d4a2367fda6804e648ade536181d7a5c34d196591bb5fbd483f13a1e4aa2c28d3a4f29d0c74d37d5f1a77046b15d321c29176d9f742e91a72 +runfiles size=6 + RELOC/bibtex/bst/annotate/annotate.bst +catalogue-also annotation +catalogue-ctan /biblio/bibtex/contrib/misc/annotate.bst +catalogue-license other-free +catalogue-topics bibtex-sty + +name anonchap +category Package +revision 17049 +shortdesc Make chapters be typeset like sections +relocated 1 +longdesc The command \simplechapter sets up the \chapter command not to +longdesc number chapters, though they may possibly have a prefix, and a +longdesc suffix (the \simplechapterdelim command, which the user may +longdesc alter). The \restorechapter command restores the status quo +longdesc ante. +containersize 1464 +containerchecksum 4b84d5260c0986191fb4f2b560c386a806c8f93c76360a8d93aa7f9b55dcf089d7d03ca946143b52923130ee751fd47f1ff59908314297fd752ff5fbb17ec0cf +doccontainersize 187292 +doccontainerchecksum 087db509e1d9649176614296f84fefe9b726dceb3ac8cb6eeecdd8a6fdb03dc97433c31478638eeb6f5f7cde85b8a8a693fce55ed0b3f5aae35a075a43e5652c +docfiles size=48 + RELOC/doc/latex/anonchap/anonchap.pdf details="Package documentation" + RELOC/doc/latex/anonchap/anonchap.tex +runfiles size=1 + RELOC/tex/latex/anonchap/anonchap.sty +catalogue-ctan /macros/latex/contrib/anonchap +catalogue-license lppl +catalogue-topics headings +catalogue-version 1.1a + +name anonymous-acm +category Package +revision 55121 +shortdesc Typeset anonymous versions for ACM articles +relocated 1 +longdesc Academics often need to submit anonymous versions of their +longdesc papers for peer-review. This often requires anonymization which +longdesc at some future date needs to be reversed. However +longdesc de-anonymizing an anonymized paper can be laborious and +longdesc error-prone. This LaTeX package allows anonymization options to +longdesc be specified at the time of writing for authors using +longdesc acmart.cls, the official Association of Computing Machinery +longdesc (ACM) master article template. Anonymization or deanonymization +longdesc is carried out by simply changing one option and recompiling. +containersize 1528 +containerchecksum 6899f18cd8422c1671b74a0ea3f9e8eb47d7ef62e0809d12e71de6ad6a7634c8cc7af22f701c710c9b2b5ee3867acde491bec8d3e2690e2532de3488aed1bec9 +doccontainersize 381532 +doccontainerchecksum f7a91677338dff848150dd1beac5645c157550f3463795d2d67493f35a81a09d33ee6cb39f2d921f535c12f26bb60ac17e4208298bd8bd7ba0dea8da4e1b41e1 +docfiles size=97 + RELOC/doc/latex/anonymous-acm/README.txt details="Readme" + RELOC/doc/latex/anonymous-acm/anonymous-acm.pdf details="Package documentation" + RELOC/doc/latex/anonymous-acm/anonymous-acm.tex +runfiles size=1 + RELOC/tex/latex/anonymous-acm/anonymous-acm.sty +catalogue-ctan /macros/latex/contrib/anonymous-acm +catalogue-license lppl1.3 +catalogue-topics journalpub +catalogue-version 1.0 + +name anonymouspro +category Package +revision 51631 +shortdesc Use AnonymousPro fonts with LaTeX +relocated 1 +longdesc The fonts are a monowidth set, designed for use by coders. They +longdesc appear as a set of four TrueType, or Adobe Type 1 font files, +longdesc and LaTeX support is also provided. +execute addMap AnonymousPro.map +containersize 415352 +containerchecksum 105334748bce7fa8a78edd599d6a8466729937f0008c479213a4d3d4b6b3e24b91bd1e124d0e3c1354fd68f99fdf621538696ba9b32ecbf09f5c7202b0b34997 +doccontainersize 371076 +doccontainerchecksum ced94c5fd0be106433e99cbe66305b60ac6ddee82d3a1c8046d1467b11fe9ca10c2ba3b4ceba56a0ff439e7fa82d09c303f29200fdcec1600145fe7623773e47 +docfiles size=111 + RELOC/doc/fonts/anonymouspro/AnonymousPro-01.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro-02.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro-03.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro-drv.tex + RELOC/doc/fonts/anonymouspro/AnonymousPro-map.tex + RELOC/doc/fonts/anonymouspro/AnonymousPro-symbols.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro.pdf details="Package documentation" + RELOC/doc/fonts/anonymouspro/FONTLOG.txt + RELOC/doc/fonts/anonymouspro/OFL.txt + RELOC/doc/fonts/anonymouspro/README.md details="Readme" + RELOC/doc/fonts/anonymouspro/README_Mark-Simonson.txt + RELOC/doc/fonts/anonymouspro/anonymouspro-fixlatin.mtx + RELOC/doc/fonts/anonymouspro/anonymouspro-fixtextcomp.mtx +srccontainersize 12236 +srccontainerchecksum 75d70833e574ab7847208d76d1012105f42712fc1558b9fbb35349871068bd60099d4ffe189eb28f5276807e6d1e48969283c7ea5a48f991cdb959077c1444dc +srcfiles size=17 + RELOC/source/fonts/anonymouspro/AnonymousPro.dtx + RELOC/source/fonts/anonymouspro/AnonymousPro.ins +runfiles size=308 + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-Bold.afm + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-BoldItalic.afm + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-Italic.afm + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-Regular.afm + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-01.enc + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-02.enc + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-03.enc + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-symbols.enc + RELOC/fonts/map/dvips/anonymouspro/AnonymousPro.map + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldSC-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-RegularSC-t1.tfm + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-Bold.ttf + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-BoldItalic.ttf + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-Italic.ttf + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-Regular.ttf + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-Bold.pfb + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-BoldItalic.pfb + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-Italic.pfb + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-Regular.pfb + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Bold-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Bold-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Bold-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldSC-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Italic-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Italic-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Italic-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Regular-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Regular-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Regular-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-RegularSC-t1.vf + RELOC/tex/latex/anonymouspro/AnonymousPro.sty + RELOC/tex/latex/anonymouspro/t1anonymouspro.fd + RELOC/tex/latex/anonymouspro/ts1anonymouspro.fd + RELOC/tex/latex/anonymouspro/uanonymouspro.fd +catalogue-contact-home http://www.marksimonson.com/fonts/view/anonymous-pro +catalogue-ctan /fonts/anonymouspro +catalogue-license lppl1.3c +catalogue-topics font font-mono font-ttf font-type1 +catalogue-version 2.2 + +name answers +category Package +revision 35032 +shortdesc Setting questions (or exercises) and answers +relocated 1 +longdesc The package allows a lot of flexibility in constructing +longdesc question and answer sheets. +containersize 2164 +containerchecksum 89f7fa19dad8e94b57a66b53b72578c277037c0c3a9fe008d0802dcdedaea03f01c6554f4c6b80fd038ebc4f18e21bad3fc176f4c4acedae07d9acad2a90700e +doccontainersize 211316 +doccontainerchecksum 616569a8d972150c0a1da86625b580baaca642bfad773e9e2240f74d33ddfea203b4c7349660b996adbf8208a92b11861d3f1a42ff88c68f39efba0af97ffa19 +docfiles size=52 + RELOC/doc/latex/answers/answers.pdf details="Package documentation" +srccontainersize 7844 +srccontainerchecksum ab865ba5abd9be86d4056cc33ec9436c14cbc0c308cc68d9a6768c094b84dc1bf785bc78c84e1f286e9371c2118ae3c21b8f57d0b4406ba6c2130f633ee6ef09 +srcfiles size=7 + RELOC/source/latex/answers/answers.dtx + RELOC/source/latex/answers/answers.ins +runfiles size=2 + RELOC/tex/latex/answers/answers.sty +catalogue-also exams +catalogue-ctan /macros/latex/contrib/answers +catalogue-license lppl +catalogue-topics exercise +catalogue-version 2.16 + +name antanilipsum +category Package +revision 55250 +shortdesc Generate sentences in the style of "Amici miei" +relocated 1 +longdesc This package is an italian blind text generator that ouputs +longdesc supercazzole, mocking nonsense phrases from the movie series +longdesc Amici Miei ("My friends"), directed by Mario Monicelli. +containersize 10388 +containerchecksum d0a31d489cbb68ba258d78c14d294dd3ceecad43d746a43fb87d6c129d2b97145187d8f0207d320be91168a3e8d0612c79bd861d327572517479831a52d290fb +doccontainersize 458768 +doccontainerchecksum e7b4caa710d671e8474df9e449112033be38da1465ac475ff77748646b8c24c5589cb2fc3fccaa19642ec68960be1cda4fc4bb427e53ce19ca5c99a45f74ab44 +docfiles size=114 + RELOC/doc/latex/antanilipsum/README.md details="Readme" + RELOC/doc/latex/antanilipsum/antanilipsum.pdf details="Package documentation" +srccontainersize 14520 +srccontainerchecksum bd2860412e363d97f50a0055036b283c10b475832c6acd1da617a76cc05391b7cb15ea2b080c2658b8e0eb7d455a5ddac80ed25f7cb0f271c0172008b7af323e +srcfiles size=39 + RELOC/source/latex/antanilipsum/antanilipsum.dtx +runfiles size=36 + RELOC/tex/latex/antanilipsum/antanilipsum.sty +catalogue-also kantlipsum +catalogue-contact-home https://github.com/AlphaJack/antanilipsum +catalogue-contact-repository https://github.com/AlphaJack/antanilipsum +catalogue-ctan /macros/latex/contrib/antanilipsum +catalogue-license lppl1.3c +catalogue-topics dummy-gen +catalogue-version 0.8.1 + +name antiqua +category Package +revision 24266 +catalogue urw-antiqua +shortdesc URW Antiqua condensed font, for use with TeX +relocated 1 +longdesc The package contains a copy of the Type 1 font "URW Antiqua +longdesc 2051 Regular Condensed" released under the GPL by URW, with +longdesc supporting files for use with (La)TeX. +execute addMap uaq.map +containersize 62624 +containerchecksum 0318b6f81d365cbb4b320642ddb6d8f909b5b136daf952da01c22508c392c58c9f8a25b33e4dd0e5afe777bb0b366633afd6567c3992df2a2e286cc9f41e6211 +doccontainersize 5356 +doccontainerchecksum 4158160d42fc776891f974cf8de13631aed17578ad2e5a67225442b7e783a36e2a0d3be640d92dce0fa66097dc617ad54b2779a3a3ef9878b46d900c5dc2ed7d +docfiles size=6 + RELOC/doc/fonts/antiqua/antiqua.txt details="Package documentation" + RELOC/doc/fonts/antiqua/uaqr8ac.afm.org +runfiles size=53 + RELOC/fonts/afm/urw/antiqua/uaqr8ac.afm + RELOC/fonts/map/dvips/antiqua/uaq.map + RELOC/fonts/map/vtex/antiqua/uaq.ali + RELOC/fonts/tfm/urw/antiqua/uaqr7tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8ac.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8cc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8rc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqrc7tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqrc8tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro7tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro8cc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro8rc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro8tc.tfm + RELOC/fonts/type1/urw/antiqua/uaqr8ac.pfb + RELOC/fonts/type1/urw/antiqua/uaqr8ac.pfm + RELOC/fonts/vf/urw/antiqua/uaqr7tc.vf + RELOC/fonts/vf/urw/antiqua/uaqr8cc.vf + RELOC/fonts/vf/urw/antiqua/uaqr8tc.vf + RELOC/fonts/vf/urw/antiqua/uaqrc7tc.vf + RELOC/fonts/vf/urw/antiqua/uaqrc8tc.vf + RELOC/fonts/vf/urw/antiqua/uaqro7tc.vf + RELOC/fonts/vf/urw/antiqua/uaqro8cc.vf + RELOC/fonts/vf/urw/antiqua/uaqro8tc.vf + RELOC/tex/latex/antiqua/ot1uaq.fd + RELOC/tex/latex/antiqua/t1uaq.fd + RELOC/tex/latex/antiqua/ts1uaq.fd +catalogue-ctan /fonts/urw/antiqua +catalogue-license gpl +catalogue-topics font font-serif font-type1 +catalogue-version 001.003 + +name antomega +category Package +revision 21933 +shortdesc Alternative language support for Omega/Lambda +relocated 1 +longdesc A language support package for Omega/Lambda. This replaces the +longdesc original omega package for use with Lambda, and provides extra +longdesc facilities (including Babel-like language switching, which +longdesc eases porting of LaTeX documents to Lambda). +depend omega +containersize 65576 +containerchecksum af2cbe945ac3495e94fbf69797c05d9a7cd8c3874148c54c602a4a152c669638cf7a861949a3cc2d08aa21f378b57beffddf2d13e3afc1157c74472c348f5405 +doccontainersize 166780 +doccontainerchecksum 298b2e796736f7598a83a2d4fee53f48e78d0c8b255cc09c686371a3a05a4d36736cef96d812281cfd3fe1024af433f32e117c1c60d7559809220ed8dd5e56a9 +docfiles size=51 + RELOC/doc/omega/antomega/README details="Readme" + RELOC/doc/omega/antomega/antomega.pdf details="Package documentation" +srccontainersize 24500 +srccontainerchecksum 7ee92461e60834af1f736f387823788a44d680171d9a7acbfd71c858885e190f724b5db11074efb74faf63b471af5c34688af1be5b765de67b170dbcf123fe2f +srcfiles size=28 + RELOC/source/lambda/antomega/antenc.dtx + RELOC/source/lambda/antomega/antenc.ins + RELOC/source/lambda/antomega/antomega.dtx + RELOC/source/lambda/antomega/antomega.ins +runfiles size=206 + RELOC/omega/ocp/antomega/babel2de.ocp + RELOC/omega/ocp/antomega/babel2es.ocp + RELOC/omega/ocp/antomega/babel2la.ocp + RELOC/omega/ocp/antomega/babel2pl.ocp + RELOC/omega/ocp/antomega/babel2punct.ocp + RELOC/omega/ocp/antomega/babel2ru.ocp + RELOC/omega/ocp/antomega/bblgrk2uni.ocp + RELOC/omega/ocp/antomega/dosrus2uni.ocp + RELOC/omega/ocp/antomega/greek2punct.ocp + RELOC/omega/ocp/antomega/iso2uni.ocp + RELOC/omega/ocp/antomega/isobaltic2uni.ocp + RELOC/omega/ocp/antomega/isoce2uni.ocp + RELOC/omega/ocp/antomega/isocyr2uni.ocp + RELOC/omega/ocp/antomega/isogrk2uni.ocp + RELOC/omega/ocp/antomega/koirus2uni.ocp + RELOC/omega/ocp/antomega/latcyr2uni.ocp + RELOC/omega/ocp/antomega/latin/la-lig.ocp + RELOC/omega/ocp/antomega/latin/la-longs.ocp + RELOC/omega/ocp/antomega/latin/la-noj.ocp + RELOC/omega/ocp/antomega/latin/la-nouv.ocp + RELOC/omega/ocp/antomega/oldstyle.ocp + RELOC/omega/ocp/antomega/rhobre.ocp + RELOC/omega/ocp/antomega/rhonobre.ocp + RELOC/omega/ocp/antomega/tex2punct.ocp + RELOC/omega/ocp/antomega/texgrk2uni.ocp + RELOC/omega/ocp/antomega/uni2accents.ocp + RELOC/omega/ocp/antomega/uni2lgr.ocp + RELOC/omega/ocp/antomega/uni2lig.ocp + RELOC/omega/ocp/antomega/uni2omega.ocp + RELOC/omega/ocp/antomega/uni2t1.ocp + RELOC/omega/ocp/antomega/uni2t2a.ocp + RELOC/omega/ocp/antomega/uniutf2uni.ocp + RELOC/omega/ocp/antomega/uppercase-dflt.ocp + RELOC/omega/ocp/antomega/win2uni.ocp + RELOC/omega/ocp/antomega/winbaltic2uni.ocp + RELOC/omega/ocp/antomega/wince2uni.ocp + RELOC/omega/ocp/antomega/wincyr2uni.ocp + RELOC/omega/otp/antomega/babel2de.otp + RELOC/omega/otp/antomega/babel2es.otp + RELOC/omega/otp/antomega/babel2la.otp + RELOC/omega/otp/antomega/babel2pl.otp + RELOC/omega/otp/antomega/babel2punct.otp + RELOC/omega/otp/antomega/babel2ru.otp + RELOC/omega/otp/antomega/bblgrk2uni.otp + RELOC/omega/otp/antomega/dosrus2uni.otp + RELOC/omega/otp/antomega/greek2punct.otp + RELOC/omega/otp/antomega/iso2uni.otp + RELOC/omega/otp/antomega/isobaltic2uni.otp + RELOC/omega/otp/antomega/isoce2uni.otp + RELOC/omega/otp/antomega/isocyr2uni.otp + RELOC/omega/otp/antomega/isogrk2uni.otp + RELOC/omega/otp/antomega/koirus2uni.otp + RELOC/omega/otp/antomega/latcyr2uni.otp + RELOC/omega/otp/antomega/latin/la-lig.otp + RELOC/omega/otp/antomega/latin/la-longs.otp + RELOC/omega/otp/antomega/latin/la-noj.otp + RELOC/omega/otp/antomega/latin/la-nouv.otp + RELOC/omega/otp/antomega/rhobre.otp + RELOC/omega/otp/antomega/rhonobre.otp + RELOC/omega/otp/antomega/tex2punct.otp + RELOC/omega/otp/antomega/texgrk2uni.otp + RELOC/omega/otp/antomega/uni2accents.otp + RELOC/omega/otp/antomega/uni2lgr.otp + RELOC/omega/otp/antomega/uni2lig.otp + RELOC/omega/otp/antomega/uni2omega.otp + RELOC/omega/otp/antomega/uni2t1.otp + RELOC/omega/otp/antomega/uni2t2a.otp + RELOC/omega/otp/antomega/uniutf2uni.otp + RELOC/omega/otp/antomega/uppercase-dflt.otp + RELOC/omega/otp/antomega/win2uni.otp + RELOC/omega/otp/antomega/winbaltic2uni.otp + RELOC/omega/otp/antomega/wince2uni.otp + RELOC/omega/otp/antomega/wincyr2uni.otp + RELOC/tex/lambda/antomega/antomega.cfg + RELOC/tex/lambda/antomega/antomega.sty + RELOC/tex/lambda/antomega/grhyph16.tex + RELOC/tex/lambda/antomega/hyphen.cfg + RELOC/tex/lambda/antomega/language.dat.sample + RELOC/tex/lambda/antomega/lgc0700.def + RELOC/tex/lambda/antomega/lgrenc-antomega.def + RELOC/tex/lambda/antomega/ograhyph4.tex + RELOC/tex/lambda/antomega/ogrmhyph4.tex + RELOC/tex/lambda/antomega/ogrphyph4.tex + RELOC/tex/lambda/antomega/omega-english.ldf + RELOC/tex/lambda/antomega/omega-french.ldf + RELOC/tex/lambda/antomega/omega-german.ldf + RELOC/tex/lambda/antomega/omega-greek.ldf + RELOC/tex/lambda/antomega/omega-latin.ldf + RELOC/tex/lambda/antomega/omega-latvian.ldf + RELOC/tex/lambda/antomega/omega-polish.ldf + RELOC/tex/lambda/antomega/omega-russian.ldf + RELOC/tex/lambda/antomega/omega-spanish.ldf + RELOC/tex/lambda/antomega/ruhyph16.tex + RELOC/tex/lambda/antomega/t1enc-antomega.def + RELOC/tex/lambda/antomega/t2aenc-antomega.def + RELOC/tex/lambda/antomega/uni0100.def + RELOC/tex/lambda/antomega/uni0370.def + RELOC/tex/lambda/antomega/uni0400.def + RELOC/tex/lambda/antomega/uni1f00.def + RELOC/tex/lambda/antomega/ut1enc-antomega.def +catalogue-ctan /obsolete/systems/omega/contrib/antomega +catalogue-license lppl +catalogue-topics multilingual omega +catalogue-version 0.8 + +name antt +category Package +revision 18651 +shortdesc Antykwa Torunska: a Type 1 family of a Polish traditional type +relocated 1 +longdesc Antykwa Torunska is a serif font designed by the late Polish +longdesc typographer Zygfryd Gardzielewski, reconstructed and digitized +longdesc as Type 1. +execute addMap antt.map +containersize 4706312 +containerchecksum c31e92701d14e0559ca1807389d3f1d95a166e9dee918fc7218ee671227381e3c37a991756e9c19c7e7d3681597c3c012037a74249c7c8eaaefc7c8a3bc2fc36 +doccontainersize 2473796 +doccontainerchecksum 00533390612e68b48dbbe9c1ba11e46a0e48f8b87cea8f6623267d53795ee9170daa1f34adc8cde12356ef779990fcd7fe7a10b601bfc11c9a0f590b5a25f3b2 +docfiles size=762 + RELOC/doc/fonts/antt/AntykwaTorunska-doc-en-2_03.pdf details="Documentation in English" language="en" + RELOC/doc/fonts/antt/AntykwaTorunska-doc-pl-2_03.pdf details="Documentation in Polish" language="pl" + RELOC/doc/fonts/antt/AntykwaTorunska-doc-src-2_03.zip + RELOC/doc/fonts/antt/GUST-FONT-NOSOURCE-LICENSE.txt + RELOC/doc/fonts/antt/MANIFEST.txt + RELOC/doc/fonts/antt/README details="Readme" + RELOC/doc/fonts/antt/antt-latex-cyr.tex + RELOC/doc/fonts/antt/antt-latex-math.tex + RELOC/doc/fonts/antt/antt-latex-pl.tex + RELOC/doc/fonts/antt/antt-latex-t2a.tex + RELOC/doc/fonts/antt/antt-latex-t5.tex + RELOC/doc/fonts/antt/antt-mathtest.tex + RELOC/doc/fonts/antt/antt-table.tex + RELOC/doc/latex/antt/README details="Readme" +runfiles size=5261 + RELOC/fonts/afm/public/antt/anttb.afm + RELOC/fonts/afm/public/antt/anttbi.afm + RELOC/fonts/afm/public/antt/anttcb.afm + RELOC/fonts/afm/public/antt/anttcbi.afm + RELOC/fonts/afm/public/antt/anttcl.afm + RELOC/fonts/afm/public/antt/anttcli.afm + RELOC/fonts/afm/public/antt/anttcm.afm + RELOC/fonts/afm/public/antt/anttcmi.afm + RELOC/fonts/afm/public/antt/anttcr.afm + RELOC/fonts/afm/public/antt/anttcri.afm + RELOC/fonts/afm/public/antt/anttl.afm + RELOC/fonts/afm/public/antt/anttli.afm + RELOC/fonts/afm/public/antt/anttm.afm + RELOC/fonts/afm/public/antt/anttmi.afm + RELOC/fonts/afm/public/antt/anttr.afm + RELOC/fonts/afm/public/antt/anttri.afm + RELOC/fonts/enc/dvips/antt/antt-cs.enc + RELOC/fonts/enc/dvips/antt/antt-ec.enc + RELOC/fonts/enc/dvips/antt/antt-el.enc + RELOC/fonts/enc/dvips/antt/antt-ex.enc + RELOC/fonts/enc/dvips/antt/antt-exp.enc + RELOC/fonts/enc/dvips/antt/antt-greek.enc + RELOC/fonts/enc/dvips/antt/antt-mi.enc + RELOC/fonts/enc/dvips/antt/antt-qx.enc + RELOC/fonts/enc/dvips/antt/antt-rm.enc + RELOC/fonts/enc/dvips/antt/antt-sy.enc + RELOC/fonts/enc/dvips/antt/antt-t2a.enc + RELOC/fonts/enc/dvips/antt/antt-t2b.enc + RELOC/fonts/enc/dvips/antt/antt-t2c.enc + RELOC/fonts/enc/dvips/antt/antt-t5.enc + RELOC/fonts/enc/dvips/antt/antt-texnansi.enc + RELOC/fonts/enc/dvips/antt/antt-ts1.enc + RELOC/fonts/enc/dvips/antt/antt-wncy.enc + RELOC/fonts/enc/dvips/antt/anttcap-cs.enc + RELOC/fonts/enc/dvips/antt/anttcap-ec.enc + RELOC/fonts/enc/dvips/antt/anttcap-qx.enc + RELOC/fonts/enc/dvips/antt/anttcap-t5.enc + RELOC/fonts/enc/dvips/antt/anttcap-texnansi.enc + RELOC/fonts/map/dvips/antt/antt-cs.map + RELOC/fonts/map/dvips/antt/antt-ec.map + RELOC/fonts/map/dvips/antt/antt-el.map + RELOC/fonts/map/dvips/antt/antt-ex.map + RELOC/fonts/map/dvips/antt/antt-exp.map + RELOC/fonts/map/dvips/antt/antt-greek.map + RELOC/fonts/map/dvips/antt/antt-mi.map + RELOC/fonts/map/dvips/antt/antt-qx.map + RELOC/fonts/map/dvips/antt/antt-rm.map + RELOC/fonts/map/dvips/antt/antt-sy.map + RELOC/fonts/map/dvips/antt/antt-t2a.map + RELOC/fonts/map/dvips/antt/antt-t2b.map + RELOC/fonts/map/dvips/antt/antt-t2c.map + RELOC/fonts/map/dvips/antt/antt-t5.map + RELOC/fonts/map/dvips/antt/antt-texnansi.map + RELOC/fonts/map/dvips/antt/antt-ts1.map + RELOC/fonts/map/dvips/antt/antt-wncy.map + RELOC/fonts/map/dvips/antt/antt.map + RELOC/fonts/opentype/public/antt/AntykwaTorunska-Bold.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunska-BoldItalic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunska-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunska-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-Bold.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-BoldItalic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondLight-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondLight-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondMed-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondMed-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaLight-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaLight-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaMed-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaMed-Regular.otf + RELOC/fonts/tfm/public/antt/cs-anttb.tfm + RELOC/fonts/tfm/public/antt/cs-anttbcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttbi.tfm + RELOC/fonts/tfm/public/antt/cs-anttbicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcb.tfm + RELOC/fonts/tfm/public/antt/cs-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcbi.tfm + RELOC/fonts/tfm/public/antt/cs-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcl.tfm + RELOC/fonts/tfm/public/antt/cs-anttclcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcli.tfm + RELOC/fonts/tfm/public/antt/cs-anttclicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcm.tfm + RELOC/fonts/tfm/public/antt/cs-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcmi.tfm + RELOC/fonts/tfm/public/antt/cs-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcr.tfm + RELOC/fonts/tfm/public/antt/cs-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcri.tfm + RELOC/fonts/tfm/public/antt/cs-anttcricap.tfm + RELOC/fonts/tfm/public/antt/cs-anttl.tfm + RELOC/fonts/tfm/public/antt/cs-anttlcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttli.tfm + RELOC/fonts/tfm/public/antt/cs-anttlicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttm.tfm + RELOC/fonts/tfm/public/antt/cs-anttmcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttmi.tfm + RELOC/fonts/tfm/public/antt/cs-anttmicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttr.tfm + RELOC/fonts/tfm/public/antt/cs-anttrcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttri.tfm + RELOC/fonts/tfm/public/antt/cs-anttricap.tfm + RELOC/fonts/tfm/public/antt/ec-anttb.tfm + RELOC/fonts/tfm/public/antt/ec-anttbcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttbi.tfm + RELOC/fonts/tfm/public/antt/ec-anttbicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcb.tfm + RELOC/fonts/tfm/public/antt/ec-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcbi.tfm + RELOC/fonts/tfm/public/antt/ec-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcl.tfm + RELOC/fonts/tfm/public/antt/ec-anttclcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcli.tfm + RELOC/fonts/tfm/public/antt/ec-anttclicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcm.tfm + RELOC/fonts/tfm/public/antt/ec-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcmi.tfm + RELOC/fonts/tfm/public/antt/ec-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcr.tfm + RELOC/fonts/tfm/public/antt/ec-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcri.tfm + RELOC/fonts/tfm/public/antt/ec-anttcricap.tfm + RELOC/fonts/tfm/public/antt/ec-anttl.tfm + RELOC/fonts/tfm/public/antt/ec-anttlcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttli.tfm + RELOC/fonts/tfm/public/antt/ec-anttlicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttm.tfm + RELOC/fonts/tfm/public/antt/ec-anttmcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttmi.tfm + RELOC/fonts/tfm/public/antt/ec-anttmicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttr.tfm + RELOC/fonts/tfm/public/antt/ec-anttrcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttri.tfm + RELOC/fonts/tfm/public/antt/ec-anttricap.tfm + RELOC/fonts/tfm/public/antt/el-anttb.tfm + RELOC/fonts/tfm/public/antt/el-anttbi.tfm + RELOC/fonts/tfm/public/antt/el-anttcb.tfm + RELOC/fonts/tfm/public/antt/el-anttcbi.tfm + RELOC/fonts/tfm/public/antt/el-anttcl.tfm + RELOC/fonts/tfm/public/antt/el-anttcli.tfm + RELOC/fonts/tfm/public/antt/el-anttcm.tfm + RELOC/fonts/tfm/public/antt/el-anttcmi.tfm + RELOC/fonts/tfm/public/antt/el-anttcr.tfm + RELOC/fonts/tfm/public/antt/el-anttcri.tfm + RELOC/fonts/tfm/public/antt/el-anttl.tfm + RELOC/fonts/tfm/public/antt/el-anttli.tfm + RELOC/fonts/tfm/public/antt/el-anttm.tfm + RELOC/fonts/tfm/public/antt/el-anttmi.tfm + RELOC/fonts/tfm/public/antt/el-anttr.tfm + RELOC/fonts/tfm/public/antt/el-anttri.tfm + RELOC/fonts/tfm/public/antt/ex-anttb.tfm + RELOC/fonts/tfm/public/antt/ex-anttcb.tfm + RELOC/fonts/tfm/public/antt/ex-anttcl.tfm + RELOC/fonts/tfm/public/antt/ex-anttcm.tfm + RELOC/fonts/tfm/public/antt/ex-anttcr.tfm + RELOC/fonts/tfm/public/antt/ex-anttl.tfm + RELOC/fonts/tfm/public/antt/ex-anttm.tfm + RELOC/fonts/tfm/public/antt/ex-anttr.tfm + RELOC/fonts/tfm/public/antt/exp-anttb.tfm + RELOC/fonts/tfm/public/antt/exp-anttbi.tfm + RELOC/fonts/tfm/public/antt/exp-anttcb.tfm + RELOC/fonts/tfm/public/antt/exp-anttcbi.tfm + RELOC/fonts/tfm/public/antt/exp-anttcl.tfm + RELOC/fonts/tfm/public/antt/exp-anttcli.tfm + RELOC/fonts/tfm/public/antt/exp-anttcm.tfm + RELOC/fonts/tfm/public/antt/exp-anttcmi.tfm + RELOC/fonts/tfm/public/antt/exp-anttcr.tfm + RELOC/fonts/tfm/public/antt/exp-anttcri.tfm + RELOC/fonts/tfm/public/antt/exp-anttl.tfm + RELOC/fonts/tfm/public/antt/exp-anttli.tfm + RELOC/fonts/tfm/public/antt/exp-anttm.tfm + RELOC/fonts/tfm/public/antt/exp-anttmi.tfm + RELOC/fonts/tfm/public/antt/exp-anttr.tfm + RELOC/fonts/tfm/public/antt/exp-anttri.tfm + RELOC/fonts/tfm/public/antt/greek-anttb.tfm + RELOC/fonts/tfm/public/antt/greek-anttbi.tfm + RELOC/fonts/tfm/public/antt/greek-anttcb.tfm + RELOC/fonts/tfm/public/antt/greek-anttcbi.tfm + RELOC/fonts/tfm/public/antt/greek-anttcl.tfm + RELOC/fonts/tfm/public/antt/greek-anttcli.tfm + RELOC/fonts/tfm/public/antt/greek-anttcm.tfm + RELOC/fonts/tfm/public/antt/greek-anttcmi.tfm + RELOC/fonts/tfm/public/antt/greek-anttcr.tfm + RELOC/fonts/tfm/public/antt/greek-anttcri.tfm + RELOC/fonts/tfm/public/antt/greek-anttl.tfm + RELOC/fonts/tfm/public/antt/greek-anttli.tfm + RELOC/fonts/tfm/public/antt/greek-anttm.tfm + RELOC/fonts/tfm/public/antt/greek-anttmi.tfm + RELOC/fonts/tfm/public/antt/greek-anttr.tfm + RELOC/fonts/tfm/public/antt/greek-anttri.tfm + RELOC/fonts/tfm/public/antt/mi-anttbi.tfm + RELOC/fonts/tfm/public/antt/mi-anttcbi.tfm + RELOC/fonts/tfm/public/antt/mi-anttcli.tfm + RELOC/fonts/tfm/public/antt/mi-anttcmi.tfm + RELOC/fonts/tfm/public/antt/mi-anttcri.tfm + RELOC/fonts/tfm/public/antt/mi-anttli.tfm + RELOC/fonts/tfm/public/antt/mi-anttmi.tfm + RELOC/fonts/tfm/public/antt/mi-anttri.tfm + RELOC/fonts/tfm/public/antt/qx-anttb.tfm + RELOC/fonts/tfm/public/antt/qx-anttbcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttbi.tfm + RELOC/fonts/tfm/public/antt/qx-anttbicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcb.tfm + RELOC/fonts/tfm/public/antt/qx-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcbi.tfm + RELOC/fonts/tfm/public/antt/qx-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcl.tfm + RELOC/fonts/tfm/public/antt/qx-anttclcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcli.tfm + RELOC/fonts/tfm/public/antt/qx-anttclicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcm.tfm + RELOC/fonts/tfm/public/antt/qx-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcmi.tfm + RELOC/fonts/tfm/public/antt/qx-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcr.tfm + RELOC/fonts/tfm/public/antt/qx-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcri.tfm + RELOC/fonts/tfm/public/antt/qx-anttcricap.tfm + RELOC/fonts/tfm/public/antt/qx-anttl.tfm + RELOC/fonts/tfm/public/antt/qx-anttlcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttli.tfm + RELOC/fonts/tfm/public/antt/qx-anttlicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttm.tfm + RELOC/fonts/tfm/public/antt/qx-anttmcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttmi.tfm + RELOC/fonts/tfm/public/antt/qx-anttmicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttr.tfm + RELOC/fonts/tfm/public/antt/qx-anttrcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttri.tfm + RELOC/fonts/tfm/public/antt/qx-anttricap.tfm + RELOC/fonts/tfm/public/antt/rm-anttb.tfm + RELOC/fonts/tfm/public/antt/rm-anttbi.tfm + RELOC/fonts/tfm/public/antt/rm-anttcb.tfm + RELOC/fonts/tfm/public/antt/rm-anttcbi.tfm + RELOC/fonts/tfm/public/antt/rm-anttcl.tfm + RELOC/fonts/tfm/public/antt/rm-anttcli.tfm + RELOC/fonts/tfm/public/antt/rm-anttcm.tfm + RELOC/fonts/tfm/public/antt/rm-anttcmi.tfm + RELOC/fonts/tfm/public/antt/rm-anttcr.tfm + RELOC/fonts/tfm/public/antt/rm-anttcri.tfm + RELOC/fonts/tfm/public/antt/rm-anttl.tfm + RELOC/fonts/tfm/public/antt/rm-anttli.tfm + RELOC/fonts/tfm/public/antt/rm-anttm.tfm + RELOC/fonts/tfm/public/antt/rm-anttmi.tfm + RELOC/fonts/tfm/public/antt/rm-anttr.tfm + RELOC/fonts/tfm/public/antt/rm-anttri.tfm + RELOC/fonts/tfm/public/antt/sy-anttbz.tfm + RELOC/fonts/tfm/public/antt/sy-anttcbz.tfm + RELOC/fonts/tfm/public/antt/sy-anttclz.tfm + RELOC/fonts/tfm/public/antt/sy-anttcmz.tfm + RELOC/fonts/tfm/public/antt/sy-anttcrz.tfm + RELOC/fonts/tfm/public/antt/sy-anttlz.tfm + RELOC/fonts/tfm/public/antt/sy-anttmz.tfm + RELOC/fonts/tfm/public/antt/sy-anttrz.tfm + RELOC/fonts/tfm/public/antt/t2a-anttb.tfm + RELOC/fonts/tfm/public/antt/t2a-anttbi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcb.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcl.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcli.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcm.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcr.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcri.tfm + RELOC/fonts/tfm/public/antt/t2a-anttl.tfm + RELOC/fonts/tfm/public/antt/t2a-anttli.tfm + RELOC/fonts/tfm/public/antt/t2a-anttm.tfm + RELOC/fonts/tfm/public/antt/t2a-anttmi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttr.tfm + RELOC/fonts/tfm/public/antt/t2a-anttri.tfm + RELOC/fonts/tfm/public/antt/t2b-anttb.tfm + RELOC/fonts/tfm/public/antt/t2b-anttbi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcb.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcl.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcli.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcm.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcr.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcri.tfm + RELOC/fonts/tfm/public/antt/t2b-anttl.tfm + RELOC/fonts/tfm/public/antt/t2b-anttli.tfm + RELOC/fonts/tfm/public/antt/t2b-anttm.tfm + RELOC/fonts/tfm/public/antt/t2b-anttmi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttr.tfm + RELOC/fonts/tfm/public/antt/t2b-anttri.tfm + RELOC/fonts/tfm/public/antt/t2c-anttb.tfm + RELOC/fonts/tfm/public/antt/t2c-anttbi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcb.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcl.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcli.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcm.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcr.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcri.tfm + RELOC/fonts/tfm/public/antt/t2c-anttl.tfm + RELOC/fonts/tfm/public/antt/t2c-anttli.tfm + RELOC/fonts/tfm/public/antt/t2c-anttm.tfm + RELOC/fonts/tfm/public/antt/t2c-anttmi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttr.tfm + RELOC/fonts/tfm/public/antt/t2c-anttri.tfm + RELOC/fonts/tfm/public/antt/t5-anttb.tfm + RELOC/fonts/tfm/public/antt/t5-anttbcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttbi.tfm + RELOC/fonts/tfm/public/antt/t5-anttbicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcb.tfm + RELOC/fonts/tfm/public/antt/t5-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t5-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcl.tfm + RELOC/fonts/tfm/public/antt/t5-anttclcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcli.tfm + RELOC/fonts/tfm/public/antt/t5-anttclicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcm.tfm + RELOC/fonts/tfm/public/antt/t5-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t5-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcr.tfm + RELOC/fonts/tfm/public/antt/t5-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcri.tfm + RELOC/fonts/tfm/public/antt/t5-anttcricap.tfm + RELOC/fonts/tfm/public/antt/t5-anttl.tfm + RELOC/fonts/tfm/public/antt/t5-anttlcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttli.tfm + RELOC/fonts/tfm/public/antt/t5-anttlicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttm.tfm + RELOC/fonts/tfm/public/antt/t5-anttmcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttmi.tfm + RELOC/fonts/tfm/public/antt/t5-anttmicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttr.tfm + RELOC/fonts/tfm/public/antt/t5-anttrcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttri.tfm + RELOC/fonts/tfm/public/antt/t5-anttricap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttb.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttbcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttbi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttbicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcb.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcbi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcl.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttclcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcli.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttclicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcm.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcmi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcr.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcri.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcricap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttl.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttlcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttli.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttlicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttm.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttmcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttmi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttmicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttr.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttrcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttri.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttricap.tfm + RELOC/fonts/tfm/public/antt/ts1-anttb.tfm + RELOC/fonts/tfm/public/antt/ts1-anttbi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcb.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcbi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcl.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcli.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcm.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcmi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcr.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcri.tfm + RELOC/fonts/tfm/public/antt/ts1-anttl.tfm + RELOC/fonts/tfm/public/antt/ts1-anttli.tfm + RELOC/fonts/tfm/public/antt/ts1-anttm.tfm + RELOC/fonts/tfm/public/antt/ts1-anttmi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttr.tfm + RELOC/fonts/tfm/public/antt/ts1-anttri.tfm + RELOC/fonts/tfm/public/antt/wncy-anttb.tfm + RELOC/fonts/tfm/public/antt/wncy-anttbi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcb.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcbi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcl.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcli.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcm.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcmi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcr.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcri.tfm + RELOC/fonts/tfm/public/antt/wncy-anttl.tfm + RELOC/fonts/tfm/public/antt/wncy-anttli.tfm + RELOC/fonts/tfm/public/antt/wncy-anttm.tfm + RELOC/fonts/tfm/public/antt/wncy-anttmi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttr.tfm + RELOC/fonts/tfm/public/antt/wncy-anttri.tfm + RELOC/fonts/type1/public/antt/anttb.pfb + RELOC/fonts/type1/public/antt/anttbi.pfb + RELOC/fonts/type1/public/antt/anttcb.pfb + RELOC/fonts/type1/public/antt/anttcbi.pfb + RELOC/fonts/type1/public/antt/anttcl.pfb + RELOC/fonts/type1/public/antt/anttcli.pfb + RELOC/fonts/type1/public/antt/anttcm.pfb + RELOC/fonts/type1/public/antt/anttcmi.pfb + RELOC/fonts/type1/public/antt/anttcr.pfb + RELOC/fonts/type1/public/antt/anttcri.pfb + RELOC/fonts/type1/public/antt/anttl.pfb + RELOC/fonts/type1/public/antt/anttli.pfb + RELOC/fonts/type1/public/antt/anttm.pfb + RELOC/fonts/type1/public/antt/anttmi.pfb + RELOC/fonts/type1/public/antt/anttr.pfb + RELOC/fonts/type1/public/antt/anttri.pfb + RELOC/tex/latex/antt/anttor.sty + RELOC/tex/latex/antt/antyktor.sty + RELOC/tex/latex/antt/il2antt.fd + RELOC/tex/latex/antt/il2anttc.fd + RELOC/tex/latex/antt/il2anttl.fd + RELOC/tex/latex/antt/il2anttlc.fd + RELOC/tex/latex/antt/ly1antt.fd + RELOC/tex/latex/antt/ly1anttc.fd + RELOC/tex/latex/antt/ly1anttl.fd + RELOC/tex/latex/antt/ly1anttlc.fd + RELOC/tex/latex/antt/omlantt.fd + RELOC/tex/latex/antt/omlanttc.fd + RELOC/tex/latex/antt/omlanttl.fd + RELOC/tex/latex/antt/omlanttlc.fd + RELOC/tex/latex/antt/omsantt.fd + RELOC/tex/latex/antt/omsanttc.fd + RELOC/tex/latex/antt/omsanttl.fd + RELOC/tex/latex/antt/omsanttlc.fd + RELOC/tex/latex/antt/omxantt.fd + RELOC/tex/latex/antt/omxanttc.fd + RELOC/tex/latex/antt/omxanttl.fd + RELOC/tex/latex/antt/omxanttlc.fd + RELOC/tex/latex/antt/ot1antt.fd + RELOC/tex/latex/antt/ot1anttc.fd + RELOC/tex/latex/antt/ot1anttcm.fd + RELOC/tex/latex/antt/ot1anttl.fd + RELOC/tex/latex/antt/ot1anttlc.fd + RELOC/tex/latex/antt/ot1anttlcm.fd + RELOC/tex/latex/antt/ot1anttlm.fd + RELOC/tex/latex/antt/ot1anttm.fd + RELOC/tex/latex/antt/ot2antt.fd + RELOC/tex/latex/antt/ot2anttc.fd + RELOC/tex/latex/antt/ot2anttl.fd + RELOC/tex/latex/antt/ot2anttlc.fd + RELOC/tex/latex/antt/ot4antt.fd + RELOC/tex/latex/antt/ot4anttc.fd + RELOC/tex/latex/antt/ot4anttl.fd + RELOC/tex/latex/antt/ot4anttlc.fd + RELOC/tex/latex/antt/qxantt.fd + RELOC/tex/latex/antt/qxanttc.fd + RELOC/tex/latex/antt/qxanttl.fd + RELOC/tex/latex/antt/qxanttlc.fd + RELOC/tex/latex/antt/t1antt.fd + RELOC/tex/latex/antt/t1anttc.fd + RELOC/tex/latex/antt/t1anttl.fd + RELOC/tex/latex/antt/t1anttlc.fd + RELOC/tex/latex/antt/t2aantt.fd + RELOC/tex/latex/antt/t2aanttc.fd + RELOC/tex/latex/antt/t2aanttl.fd + RELOC/tex/latex/antt/t2aanttlc.fd + RELOC/tex/latex/antt/t2bantt.fd + RELOC/tex/latex/antt/t2banttc.fd + RELOC/tex/latex/antt/t2banttl.fd + RELOC/tex/latex/antt/t2banttlc.fd + RELOC/tex/latex/antt/t2cantt.fd + RELOC/tex/latex/antt/t2canttc.fd + RELOC/tex/latex/antt/t2canttl.fd + RELOC/tex/latex/antt/t2canttlc.fd + RELOC/tex/latex/antt/t5antt.fd + RELOC/tex/latex/antt/t5anttc.fd + RELOC/tex/latex/antt/t5anttl.fd + RELOC/tex/latex/antt/t5anttlc.fd + RELOC/tex/latex/antt/ts1antt.fd + RELOC/tex/latex/antt/ts1anttc.fd + RELOC/tex/latex/antt/ts1anttl.fd + RELOC/tex/latex/antt/ts1anttlc.fd + RELOC/tex/plain/antt/antt-math.tex +catalogue-also anttvf +catalogue-ctan /fonts/antt +catalogue-license gfsl +catalogue-topics font font-type1 font-otf polish +catalogue-version 2.08 + +name anufinalexam +category Package +revision 26053 +shortdesc LaTeX document shell for ANU final exam +relocated 1 +longdesc This LaTeX document shell is created for the standard +longdesc formatting of final exams in The Australian National +longdesc University. +containersize 432 +containerchecksum 0f7deb262a96bf55eba167475ca7c55887c1cdfbe60f9a32debb6926d855764eb595acb693ce9ab74a2af89efd98114f6694255580b5d594915cb2470d84b485 +doccontainersize 1968 +doccontainerchecksum 0821831108f81bc8d23dfb7d26f2201057a897a2dc783959b9e298b8e59b79a12453db072b824397a9625b8a63e7fb19ad8ba6d4500436bb0f7b9a23f96d1c3d +docfiles size=3 + RELOC/doc/latex/anufinalexam/ANUfinalexam.tex + RELOC/doc/latex/anufinalexam/README details="Readme" +catalogue-ctan /macros/latex/contrib/anufinalexam +catalogue-license gpl +catalogue-topics exam + +name anyfontsize +category Package +revision 17050 +shortdesc Select any font size in LaTeX +relocated 1 +longdesc The package allows the to user select any font size (via e.g. +longdesc \fontsize{...}{...}\selectfont), even those sizes that are not +longdesc listed in the .fd file. If such a size is requested, LaTeX will +longdesc search for and select the nearest listed size; anyfontsize will +longdesc then scale the font to the size actually requested. Similar +longdesc functionality is available for the CM family, for the EC +longdesc family, or for either computer modern encoding; the present +longdesc package generalises the facility. +containersize 2112 +containerchecksum 31d1c235d011998043663bc1f5729bd40c5b90996627038be612115daef2b3526c9e616b16c251d6b653d5bad82beee62a7dcfc3b8c10feec0850729afb294ea +doccontainersize 183472 +doccontainerchecksum 9003fdbf712448de70c858eba74f7de79e0cb83e8f9fe72d9c1b71869161d5a63099473c4f9ec670b28b356ceccd9b56110a1724dcde3062ae209a678f5b0e16 +docfiles size=48 + RELOC/doc/latex/anyfontsize/README details="Readme" + RELOC/doc/latex/anyfontsize/anyfontsize.pdf details="Package documentation" + RELOC/doc/latex/anyfontsize/anyfontsize.tex +runfiles size=1 + RELOC/tex/latex/anyfontsize/anyfontsize.sty +catalogue-ctan /macros/latex/contrib/anyfontsize +catalogue-license lppl +catalogue-topics font-use + +name anysize +category Package +revision 15878 +shortdesc A simple package to set up document margins +relocated 1 +longdesc This package is considered obsolete; alternatives are the +longdesc typearea package from the koma-script bundle, or the geometry +longdesc package. +containersize 1384 +containerchecksum 4439be91f8dd82cdc051c519b5bc36fdfb632cf09941f4e6ec92fa77c2b5f4d767c162018fc9451d48ece17e9cbd5d7d4c574eacea78b8f92b6e07d40d7b590b +doccontainersize 34460 +doccontainerchecksum 96591bba808fc91a876dd49a6e1ede3b679c18952244f14b07e992b40d20f6c4a0f4b4dad00a409c766c5f2e883fc4923c501e65b06ad93193719001c2629f08 +docfiles size=13 + RELOC/doc/latex/anysize/README details="Package Readme" + RELOC/doc/latex/anysize/anysize.pdf details="Package documentation" + RELOC/doc/latex/anysize/anysize.tex +runfiles size=1 + RELOC/tex/latex/anysize/anysize.sty +catalogue-ctan /macros/latex/contrib/anysize +catalogue-license pd +catalogue-topics geometry + +name aobs-tikz +category Package +revision 32662 +shortdesc TikZ styles for creating overlaid pictures in beamer +relocated 1 +longdesc The package defines auxiliary TikZ styles useful for overlaying +longdesc pictures' elements in Beamer. The TikZ styles are grouped in a +longdesc library, overlay-beamer-styles which is automatically called by +longdesc the package itself. Users may either load just aobs-tikz or the +longdesc library; the latter method necessitates TikZ manual load. +containersize 1680 +containerchecksum 76e3f9748c704efafda74e6184aa3c0199f8dae3a9f433615fb87ac5fd7c81d5dd604e91ed7648b68f05919425f82fd19ca0b66f4f590f55e55634a5cc4b7f9a +doccontainersize 88032 +doccontainerchecksum 3732ca200dcb7d3d4b99cbb0edbe13ef7c9293e8424457c2493c330b4ea810bca21851161b83740bf3b7b53899941e906b0b2e4b46ba715e7b5bbe19844d2070 +docfiles size=25 + RELOC/doc/latex/aobs-tikz/README details="Readme" + RELOC/doc/latex/aobs-tikz/aobs-tikz.pdf details="Package documentation" + RELOC/doc/latex/aobs-tikz/example.tex +srccontainersize 5852 +srccontainerchecksum 2cc8953d5e03bb1e6fc35d323a35d434aef291b165f1ac4fa0b005689af3d7988770d0a86fb4b4c3dd3ef6ea876f962dac5653e695533e089a7a50653358f40a +srcfiles size=6 + RELOC/source/latex/aobs-tikz/aobs-tikz.dtx + RELOC/source/latex/aobs-tikz/aobs-tikz.ins +runfiles size=1 + RELOC/tex/latex/aobs-tikz/tikzlibraryoverlay-beamer-styles.code.tex +catalogue-ctan /graphics/pgf/contrib/aobs-tikz +catalogue-license lppl1.3 +catalogue-topics pgf-tikz presentation +catalogue-version 1.0 + +name aomart +category Package +revision 58855 +shortdesc Typeset articles for the Annals of Mathematics +relocated 1 +longdesc The package provides a class for typesetting articles for The +longdesc Annals of Mathematics. +containersize 13416 +containerchecksum ed3914fe0a5cc10f93b4ee248e7b2300fe9bc7b816d0a803042cfa9d035879f34f2a45de5e317c0ee9f4e18017a5f06ca7f9c6d69d932c8019a68ac158739a87 +doccontainersize 1157868 +doccontainerchecksum 19b8331437c2678668e46ff3ac8a2522cc5cb98ef29a04799f29cea76020187b340db5063e44ba82387d03ace41f00ebdc0601eefcead9d4186c702ab87db855 +docfiles size=425 + RELOC/doc/latex/aomart/README details="Readme" + RELOC/doc/latex/aomart/aomart.bib + RELOC/doc/latex/aomart/aomart.pdf details="Package documentation" + RELOC/doc/latex/aomart/aomfrench.pdf + RELOC/doc/latex/aomart/aomfrench.tex + RELOC/doc/latex/aomart/aomsample.bib + RELOC/doc/latex/aomart/aomsample.pdf details="Sample article" + RELOC/doc/latex/aomart/aomsample.tex + RELOC/doc/latex/aomart/aomsample1.pdf + RELOC/doc/latex/aomart/aomsample1.tex + RELOC/doc/latex/aomart/fullref.pl +srccontainersize 21264 +srccontainerchecksum 47d0a4f4cbd7713d7913b5197e66d00a14029da2b1a71e3c3c442bdbfc0c338454eeae4e00f7cc97dbf4d82dcf151cda14bb1eb2824b1091da85989087196b8c +srcfiles size=22 + RELOC/source/latex/aomart/Makefile + RELOC/source/latex/aomart/aomart.dtx + RELOC/source/latex/aomart/aomart.ins +runfiles size=21 + RELOC/bibtex/bst/aomart/aomalpha.bst + RELOC/bibtex/bst/aomart/aomplain.bst + RELOC/tex/latex/aomart/aomart.cls +catalogue-ctan /macros/latex/contrib/aomart +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.25 + +name apa +category Package +revision 54080 +shortdesc American Psychological Association format +relocated 1 +longdesc A LaTeX class to format text according to the American +longdesc Psychological Association Publication Manual (5th ed.) +longdesc specifications for manuscripts or to the APA journal look found +longdesc in journals like the Journal of Experimental Psychology etc. In +longdesc addition, it provides regular LaTeX-like output with a few +longdesc enhancements and APA-motivated changes. Note that the apa7 +longdesc class (covering the 7th edition of the manual) and apa6 +longdesc (covering the 6th edition of the manual) are now commonly in +longdesc use. Apacite, which used to work with this class, has been +longdesc updated for use with apa6. +containersize 12892 +containerchecksum dd825c533b29f8cd005b238877763ecc299f1a6d23be870bb7b899401f0aa73c4377bbed640e220faf4a1fe204dba0d94671c67ad83cb31d99eecb76e658f352 +doccontainersize 26960 +doccontainerchecksum 5e5224f11e811511b965e6f79adbab67bda5c809fdb4fadd5913ce570e34a933d139e8f418cdf7beff6e24e79443e4f4e4acd81837f24a5783915e169099e720 +docfiles size=29 + RELOC/doc/latex/apa/APAendfloat.cfg + RELOC/doc/latex/apa/CHANGELOG.txt + RELOC/doc/latex/apa/LICENCE + RELOC/doc/latex/apa/README details="Readme" + RELOC/doc/latex/apa/apacls.html details="Class documentation" + RELOC/doc/latex/apa/apacls.txt details="Outline of the class" + RELOC/doc/latex/apa/apaenum.txt details="Outline of list facilities" + RELOC/doc/latex/apa/apaexample.tex + RELOC/doc/latex/apa/examplebib.bib + RELOC/doc/latex/apa/examples.txt +runfiles size=18 + RELOC/tex/latex/apa/apa.cls + RELOC/tex/latex/apa/dutch.apa + RELOC/tex/latex/apa/english.apa + RELOC/tex/latex/apa/greek.apa +catalogue-alias apa5 +catalogue-also mslapa +catalogue-contact-home http://users.uoa.gr/~aprotopapas/CV/apacls.html +catalogue-ctan /macros/latex/contrib/apa +catalogue-license lppl +catalogue-topics class apa psychology journalpub +catalogue-version 1.3.4 + +name apa6 +category Package +revision 53406 +shortdesc Format documents in APA style (6th edition) +relocated 1 +longdesc The class formats documents in APA style (6th Edition). It +longdesc provides a full set of facilities in three different output +longdesc modes (journal-like appearance, double-spaced manuscript, +longdesc LaTeX-like document), in contrast to the earlier apa6e, which +longdesc only formats double-spaced manuscripts in APA style. The class +longdesc can mask author identity for copies for use in masked peer +longdesc review. The class is a development of the apa class (which is +longdesc no longer maintained). +containersize 13760 +containerchecksum 76a307c077ebec0ef984e9296018e1b91a51e95db8d1955924a373e82feb5152ce453d1388e706e6b0ca46f3dcc71a8981bf68848a2022cd19e179fc9ecc0bee +doccontainersize 565092 +doccontainerchecksum 841821dbf4f8efa07a96dc37d26e21348ef5e1c486ffabbedfe973833d2328b8c5fb32196ae2e0323683d1d20b635242c371262df92ccc0c4bbe126c89263dfe +docfiles size=163 + RELOC/doc/latex/apa6/README details="Readme" + RELOC/doc/latex/apa6/apa6.pdf details="Package documentation" + RELOC/doc/latex/apa6/pseudoTeX/TeX2WordForapa6.bas + RELOC/doc/latex/apa6/pseudoTeX/apa6.ptex + RELOC/doc/latex/apa6/samples/Figure1.pdf + RELOC/doc/latex/apa6/samples/bibliography.bib + RELOC/doc/latex/apa6/samples/longsample.tex + RELOC/doc/latex/apa6/samples/shortsample.tex +srccontainersize 37360 +srccontainerchecksum b7571a14e100e65748c31ae49ca070c42b3c6d868885f2ee487c76561858aa19744b890eb7bac075c43208ee8d6dd91ef327f8afff2758a1be6c79d23d50f717 +srcfiles size=44 + RELOC/source/latex/apa6/apa6.dtx + RELOC/source/latex/apa6/apa6.ins +runfiles size=27 + RELOC/tex/latex/apa6/apa6.cls + RELOC/tex/latex/apa6/config/APAamerican.txt + RELOC/tex/latex/apa6/config/APAbritish.txt + RELOC/tex/latex/apa6/config/APAczech.txt + RELOC/tex/latex/apa6/config/APAdutch.txt + RELOC/tex/latex/apa6/config/APAendfloat.cfg + RELOC/tex/latex/apa6/config/APAenglish.txt + RELOC/tex/latex/apa6/config/APAgerman.txt + RELOC/tex/latex/apa6/config/APAgreek.txt + RELOC/tex/latex/apa6/config/APAngerman.txt + RELOC/tex/latex/apa6/config/APAturkish.txt +catalogue-ctan /macros/latex/contrib/apa6 +catalogue-license lppl1.3c +catalogue-topics class apa psychology journalpub +catalogue-version 2.34 + +name apa6e +category Package +revision 23350 +shortdesc Format manuscripts to APA 6th edition guidelines +relocated 1 +longdesc This is a minimalist class file for formatting manuscripts in +longdesc the style described in the American Psychological Association +longdesc (APA) 6th edition guidelines. The apa6 class provides better +longdesc coverage of the requirements. +containersize 2896 +containerchecksum 155bd30654ec3a2bf3930bdad98235baa6bf7aa8109ad449aa1a7b6f2dbda37851f43978266e1c273cbd2155ed274003dcd91f9f452f2dffe268750fd0d9293b +doccontainersize 245600 +doccontainerchecksum d78ed178d1fbd07668bdeef74cf6f9f3674837a4f83eb5dce590762f7c02fae1017ee2eed6625a85a7b3e251ebff103e37da84af589125bdb60b73c9459cb748 +docfiles size=65 + RELOC/doc/latex/apa6e/README details="Readme" + RELOC/doc/latex/apa6e/apa6e.pdf details="Package documentation" +srccontainersize 8492 +srccontainerchecksum 6a6502eb1a60d2b67d373fd1cb4aea0737d0eba9ed2846c07ff5849c4bfddb9ab3b6369ec0958536e831c79e63beece92393c874d9463bc7e3cc1a56f4c4ecb4 +srcfiles size=7 + RELOC/source/latex/apa6e/apa6e.dtx + RELOC/source/latex/apa6e/apa6e.ins +runfiles size=2 + RELOC/tex/latex/apa6e/apa6e.cls +catalogue-ctan /macros/latex/contrib/apa6e +catalogue-license bsd +catalogue-topics apa psychology class journalpub +catalogue-version 0.3 + +name apa7 +category Package +revision 58835 +shortdesc Format documents in APA style (7th edition) +relocated 1 +longdesc This class formats documents in APA style (7th Edition). It +longdesc provides a full set of facilities in four different output +longdesc modes (journal-like appearance, double-spaced manuscript, +longdesc double-spaced student manuscript, LaTeX-like document). The +longdesc class can mask author identity for copies for use in masked +longdesc peer review. The class is a development of the apa6 class. +containersize 14116 +containerchecksum 1ab1c6e902eaf78ae50f7b90d5f8a121f6db61489aee034ed3c1eb194daebedd78b4b74b1f327a378c92eb9263eb289f30b3ba58f9c7d0baf1decc2b8e8b5038 +doccontainersize 730628 +doccontainerchecksum b5e77a65788c37c85f1790e693676f2cef0e54ff1fa4e5d115ffce68460ae2978f8e9163b5f8faed3ced9b38d82f4be791c3debcb569cad0ddcc2a00b1aeb319 +docfiles size=203 + RELOC/doc/latex/apa7/README.txt details="Readme" + RELOC/doc/latex/apa7/apa7.pdf details="Package documentation" + RELOC/doc/latex/apa7/samples/Figure1.pdf + RELOC/doc/latex/apa7/samples/bibliography.bib + RELOC/doc/latex/apa7/samples/longsample.pdf + RELOC/doc/latex/apa7/samples/longsample.tex + RELOC/doc/latex/apa7/samples/shortsample.pdf + RELOC/doc/latex/apa7/samples/shortsample.tex +srccontainersize 32668 +srccontainerchecksum 338284f581e4eabfb550c606182c874b56f5d288afc1fb92df7a450dd2d68d6b41ec488263d9f64227704a4c9306da7b764c93a089d12bfe39a6cc66f242b1a6 +srcfiles size=38 + RELOC/source/latex/apa7/apa7.dtx + RELOC/source/latex/apa7/apa7.ins +runfiles size=26 + RELOC/tex/latex/apa7/apa7.cls + RELOC/tex/latex/apa7/config/APA7american.txt + RELOC/tex/latex/apa7/config/APA7british.txt + RELOC/tex/latex/apa7/config/APA7czech.txt + RELOC/tex/latex/apa7/config/APA7dutch.txt + RELOC/tex/latex/apa7/config/APA7endfloat.cfg + RELOC/tex/latex/apa7/config/APA7english.txt + RELOC/tex/latex/apa7/config/APA7french.txt + RELOC/tex/latex/apa7/config/APA7german.txt + RELOC/tex/latex/apa7/config/APA7greek.txt + RELOC/tex/latex/apa7/config/APA7ngerman.txt + RELOC/tex/latex/apa7/config/APA7turkish.txt +catalogue-contact-repository https://github.com/dan-weiss/apa7-latex-cls-source +catalogue-ctan /macros/latex/contrib/apa7 +catalogue-license lppl1.3c +catalogue-topics apa class journalpub psychology std-conform +catalogue-version 2.12 + +name apacite +category Package +revision 54080 +shortdesc Citation style following the rules of the APA +relocated 1 +longdesc Apacite provides a BibTeX style and a LaTeX package which are +longdesc designed to match the requirements of the American +longdesc Psychological Association's style for citations. The package +longdesc follows the 6th edition of the APA manual, and is designed to +longdesc work with the apa6 class. A test document is provided. The +longdesc package is compatible with chapterbib and (to some extent) with +longdesc hyperref (for limits of compatibility, see the documentation). +longdesc The package also includes a means of generating an author index +longdesc for a document. +containersize 42736 +containerchecksum 6f69733b58f0e791422269f48b56a52ad6b131afc4ab5c7c5ad1d9e0a5ec0d84ba48b8e43340f8e1a563a0c4b10aeb131f1999f836e89f311f067ded8464f91b +doccontainersize 641176 +doccontainerchecksum ba7720239a221d343cc58d28a9611f731a6db21f1e7852b0cdfe0c4f0cd97d475efd83c863b14d197f2206cb2bb0d314266797376b548de250842aa008ff3732 +docfiles size=177 + RELOC/doc/bibtex/apacite/README details="Package Readme" + RELOC/doc/bibtex/apacite/apa5ex.bib + RELOC/doc/bibtex/apacite/apacite.pdf details="Package documentation" + RELOC/doc/bibtex/apacite/apacxmpl.tex +srccontainersize 162688 +srccontainerchecksum bfcd5139e68c54b6c35dc8afc46022ffb56101de5dac3e6ea24df372483c2ecc2e3d2d0a486ea284f2fb6b0aba4ca622080910821a27447239ec527db941a2f9 +srcfiles size=212 + RELOC/source/bibtex/apacite/apacite.drv + RELOC/source/bibtex/apacite/apacite.dtx + RELOC/source/bibtex/apacite/apacite.ins +runfiles size=189 + RELOC/bibtex/bst/apacite/apacann.bst + RELOC/bibtex/bst/apacite/apacannx.bst + RELOC/bibtex/bst/apacite/apacite.bst + RELOC/bibtex/bst/apacite/apacitex.bst + RELOC/tex/latex/apacite/apacdoc.sty + RELOC/tex/latex/apacite/apacite.sty + RELOC/tex/latex/apacite/dutch.apc + RELOC/tex/latex/apacite/english.apc + RELOC/tex/latex/apacite/finnish.apc + RELOC/tex/latex/apacite/french.apc + RELOC/tex/latex/apacite/german.apc + RELOC/tex/latex/apacite/greek.apc + RELOC/tex/latex/apacite/ngerman.apc + RELOC/tex/latex/apacite/norsk.apc + RELOC/tex/latex/apacite/spanish.apc + RELOC/tex/latex/apacite/swedish.apc +catalogue-ctan /biblio/bibtex/contrib/apacite +catalogue-license lppl +catalogue-topics psychology journalpub bibtex-sty bibtex-supp apa +catalogue-version 6.03 + +name apalike-german +category Package +revision 54080 +shortdesc A copy of apalike.bst with German localization +relocated 1 +longdesc A copy of apalike.bst (which is part of the base BibTeX +longdesc distribution) with German localization. +containersize 5840 +containerchecksum 8e9a0dd594dce98e441f256efacedecca7afddcb3d8b6bf64e6490aba74f1f3584c71584b7ec115cb054eb425477ec801a20c84ee75aeedbe588ad6302780612 +doccontainersize 13300 +doccontainerchecksum fe58a0f2be0b8793ef15f07029d1b81232046b92b48a6d8fa00032bbdb482aef3216ca80f5d9c80424f32d75b8d57e4e4e74b5397711209e18b576f6860d3b33 +docfiles size=20 + RELOC/doc/bibtex/apalike-german/README.html details="Readme (HTML)" + RELOC/doc/bibtex/apalike-german/README.md details="Readme" +runfiles size=7 + RELOC/bibtex/bst/apalike-german/apalike-german.bst +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-license lppl1.3c +catalogue-topics bibtex-sty german apa + +name apalike2 +category Package +revision 54080 +shortdesc Bibliography style that approaches APA requirements +relocated 1 +longdesc Described as a "local adaptation" of apalike (which is part of +longdesc the base BibTeX distribution). +containersize 6308 +containerchecksum cb837c6299628a58189f33570de7717d53d83d9de456255b489ae4ef73693b51bffc2dd12c9496265ebc8cda64d8da8b1c71d46f9d96a4bc13c07c9a6e021a2f +runfiles size=7 + RELOC/bibtex/bst/apalike2/apalike2.bst +catalogue-ctan /biblio/bibtex/contrib/apalike2 +catalogue-license knuth +catalogue-topics apa psychology journalpub bibtex-sty + +name apnum +category Package +revision 47510 +shortdesc Arbitrary precision numbers implemented by TeX macros +relocated 1 +longdesc The basic operations (addition, subtraction, multiplication, +longdesc division, power to an integer) are implemented by TeX macros in +longdesc this package. Operands may be numbers with arbitrary numbers of +longdesc digits; scientific notation is allowed. The expression scanner +longdesc is also provided. As of version 1.4 (December 2015) the +longdesc calculation of common functions (sqrt, exp, ln, sin, cos, tan, +longdesc asin, acos, atan, pi) with arbitrary precision in the result +longdesc has been added. Exhaustive documentation (including detailed +longdesc TeXnical documentation) is included. The macro includes many +longdesc optimizations and uses only TeX primitives (from classic TeX) +longdesc and \newcount macro. +containersize 13364 +containerchecksum 2e155193dfdd3c88cf336cece23bc6b393a81529c31ac2535840a7c4f4a97530d35d0f4ae964e8f92856eea0d54c356e8bc15427918ba0891730827a3ba561c6 +doccontainersize 739572 +doccontainerchecksum 4e1a6ff31d9836dbb04fbd90911083a9ff70c7526ef099d437e21c11766314cc29e8071dbc21976af7a23fe99b673bbee82dfd265041b9ecd015070c58b4ce14 +docfiles size=210 + RELOC/doc/generic/apnum/README details="Readme" + RELOC/doc/generic/apnum/apnum.d + RELOC/doc/generic/apnum/apnum.pdf details="Package documentation" +runfiles size=13 + RELOC/tex/generic/apnum/apnum.tex +catalogue-ctan /macros/generic/apnum +catalogue-license pd +catalogue-topics calculation +catalogue-version 1.7 + +name appendix +category Package +revision 53718 +shortdesc Extra control of appendices +relocated 1 +longdesc The appendix package provides various ways of formatting the +longdesc titles of appendices. Also (sub)appendices environments are +longdesc provided that can be used, for example, for per chapter/section +longdesc appendices. The word 'Appendix' or similar can be prepended to +longdesc the appendix number for article class documents. The word +longdesc 'Appendices' or similar can be added to the table of contents +longdesc before the appendices are listed. The word 'Appendices' or +longdesc similar can be typeset as a \part-like heading (page) in the +longdesc body. An appendices environment is provided which can be used +longdesc instead of the \appendix command. +containersize 2880 +containerchecksum efaf48867a45f8365755224123b9259f80f49417c409698420d67670baa969d5d354df1429fe7abbd87c29a8e89a9e084cd75384310a44d61e1f2fb7a2650977 +doccontainersize 316980 +doccontainerchecksum f4e90fc9fa5ca89a9a20ceb56cce788984f3ce5e55f92c99de966a54afca7145d9e3602c4e514ee6b7887b3ae9f8facc9b3191ada19514aae7c7886ae2984b0c +docfiles size=79 + RELOC/doc/latex/appendix/README details="Package Readme" + RELOC/doc/latex/appendix/appendix.pdf details="Package documentation" +srccontainersize 10596 +srccontainerchecksum 7e7222abea6401b749f2019fb205956c99bc3ce48134138862caead25aadce25410ac4fdf9ce10e34dbb802c07e5fadf8e4facaf846047ea654f2605b4f3743d +srcfiles size=11 + RELOC/source/latex/appendix/appendix.dtx + RELOC/source/latex/appendix/appendix.ins +runfiles size=3 + RELOC/tex/latex/appendix/appendix.sty +catalogue-contact-repository https://github.com/wspr/herries-press/ +catalogue-ctan /macros/latex/contrib/appendix +catalogue-license lppl1.3c +catalogue-topics appendix headings +catalogue-version 1.2c + +name appendixnumberbeamer +category Package +revision 46317 +shortdesc Manage frame numbering in appendixes in beamer +relocated 1 +longdesc This package fixes the frame numbering in beamer when using an +longdesc appendix such that the slides from the appendix are not counted +longdesc in the total frame number of the main part of the document. The +longdesc total frame number counter is reset to 0 when entering the +longdesc appendix. The standard usage is to include +longdesc \usepackage{appendixnumberbeamer} in the preamble and then +longdesc declare the beginning of the appendix as usual using the +longdesc \appendix command. +containersize 1596 +containerchecksum d5f4573a0f6c31be7e910512d86ee0443e713abea11e71694b58f1d1d65f4249f967aa5b873941e1d8b7686d408f411aad1a76009a3bbcb528693ae14dc60e63 +doccontainersize 676 +doccontainerchecksum 58b32eacfbcd8e024a4cf3dcea0c1d057010dd454c1e54b6752b970a3fa1a9e10eb15d8cee9dbb9ae032aaa8b6c070079b112f5a91b1c9617df40877a4a3454b +docfiles size=2 + RELOC/doc/latex/appendixnumberbeamer/README.md details="Readme" + RELOC/doc/latex/appendixnumberbeamer/VERSION +runfiles size=1 + RELOC/tex/latex/appendixnumberbeamer/appendixnumberbeamer.sty +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-license gpl3 +catalogue-topics presentation +catalogue-version 1.2 + +name apprendre-a-programmer-en-tex +category Package +revision 57179 +shortdesc The book "Apprendre a programmer en TeX" +relocated 1 +longdesc This book explains the basic concepts required for programming +longdesc in TeX and explains the programming methods, providing many +longdesc examples. The package makes the compileable source code as well +longdesc as the compiled pdf file accessible to everyone. Ce livre +longdesc expose les concepts de base requis pour programmer en TeX et +longdesc decrit les methodes de programmation en s'appuyant sur de +longdesc nombreux exemples. Ce package met a disposition de tous le code +longdesc source compilable ainsi que le fichier pdf du livre. +containersize 680 +containerchecksum 2008619320d2b7e906c2511609e76894dd065f8e56dd1800cfac0e13af4415dc76c437cdadcf15cfea85d7862996e99ba3240aa30d36fa70d9c1d950b7c97e96 +doccontainersize 28485780 +doccontainerchecksum 34c86cf9f0a296846a85f896f31da102013dd7b78ddc11d20aca93770671f2ab05930167160d3bf6282b7740fd9d5eb5238ec70bdf405658c1688d3bbd769d7e +docfiles size=8861 + RELOC/doc/plain/apprendre-a-programmer-en-tex/README details="Readme" + RELOC/doc/plain/apprendre-a-programmer-en-tex/cover/couverture.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/fonts/GMC.zip + RELOC/doc/plain/apprendre-a-programmer-en-tex/fonts/libertine-legacy.zip + RELOC/doc/plain/apprendre-a-programmer-en-tex/output/apprendre-a-programmer-en-tex.pdf details="The document itself" language="fr" + RELOC/doc/plain/apprendre-a-programmer-en-tex/output/progtexcode.txt + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/apprendre-a-programmer-en-tex.tex + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/mandelbrot.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/mandelbrot.tex + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/pg0001.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/pg0002.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/pg0003.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/progtexmacro.tex + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/vignette.png +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-license lppl1.2 +catalogue-topics book-src tut-plaintex french-doc documentation + +name apprends-latex +category Package +revision 19306 +shortdesc Apprends LaTeX! +relocated 1 +longdesc Apprends LaTeX! ("Learn LaTeX", in English) is French +longdesc documentation for LaTeX beginners. +containersize 444 +containerchecksum fe9c7ee4cc8cac1ed932388ff75066e4166e582f92bc23da4a4f6049f3cfd8c100d6ab6c0b3c661dd76038a9683eb3207f94f54ea338dd172027815d6945ad94 +doccontainersize 2489056 +doccontainerchecksum d65d5f56e055ac4628e8198b718689631edca80abb3593480948ee8ba3336d7baccc091cac9f95b4dff745d84d409488d3a2032a1587f1f1a5db186af4da1413 +docfiles size=713 + RELOC/doc/latex/apprends-latex/Apprends_LaTeX.pdf details="The document itself" language="fr" + RELOC/doc/latex/apprends-latex/Apprends_LaTeX.tex + RELOC/doc/latex/apprends-latex/README details="Readme" + RELOC/doc/latex/apprends-latex/avance.bib + RELOC/doc/latex/apprends-latex/bibliographie-index.bib + RELOC/doc/latex/apprends-latex/divers.bib + RELOC/doc/latex/apprends-latex/exemples/Makefile + RELOC/doc/latex/apprends-latex/exemples/beamer-themes.pl + RELOC/doc/latex/apprends-latex/exemples/beamer-titlepage.tex + RELOC/doc/latex/apprends-latex/exemples/currvita.tex + RELOC/doc/latex/apprends-latex/exemples/curve-experience.tex + RELOC/doc/latex/apprends-latex/exemples/curve-extra.tex + RELOC/doc/latex/apprends-latex/exemples/curve-formation.tex + RELOC/doc/latex/apprends-latex/exemples/curve-langues.tex + RELOC/doc/latex/apprends-latex/exemples/curve-methodologies.tex + RELOC/doc/latex/apprends-latex/exemples/curve-references.tex + RELOC/doc/latex/apprends-latex/exemples/curve.tex + RELOC/doc/latex/apprends-latex/exemples/letter.tex + RELOC/doc/latex/apprends-latex/exemples/moderncv.tex + RELOC/doc/latex/apprends-latex/exemples/polices.pl + RELOC/doc/latex/apprends-latex/exemples/scrlttr2.tex + RELOC/doc/latex/apprends-latex/exemples/seraphin-lampion.jpg + RELOC/doc/latex/apprends-latex/exemples/slides.tex + RELOC/doc/latex/apprends-latex/exemples/tikz.tex + RELOC/doc/latex/apprends-latex/graphisme.bib + RELOC/doc/latex/apprends-latex/index.ist + RELOC/doc/latex/apprends-latex/latex.bib + RELOC/doc/latex/apprends-latex/latexmkrc + RELOC/doc/latex/apprends-latex/typographie.bib +catalogue-contact-home http://www.babafou.eu.org/Apprends_LaTeX/ +catalogue-ctan /info/apprends-latex +catalogue-license lppl +catalogue-topics french-doc +catalogue-version 4.02 + +name apptools +category Package +revision 28400 +shortdesc Tools for customising appendices +relocated 1 +longdesc The package provides an \AtAppendix command to add code to a +longdesc hook that is executed when \appendix is called by the user. +longdesc Additionally, a TeX conditional \ifappendix and a LaTeX-style +longdesc conditional \IfAppendix are provided to check if \appendix has +longdesc already been called. +containersize 1208 +containerchecksum 05d243100c9fc575b7828e0084822fdb2c655f5d2d7c51b42aa3c5ee4d127f62f714affd1fa8e94b7c0c322b57a9fe1728d1829ed7f18d75b5287a673d580cc4 +doccontainersize 82148 +doccontainerchecksum 74ce416ef14978e0418754e3d2e2874ed07a8fbc6be90a1bf7dc492f191546407d7a967efb1306481d1b88ad296faa1194dc4da8975f7ac0c4e4053ccaa1444a +docfiles size=22 + RELOC/doc/latex/apptools/apptools-test.tex + RELOC/doc/latex/apptools/apptools.pdf details="Package documentation" +srccontainersize 5300 +srccontainerchecksum ffbce0419baaf512bbf8aafae3a8bdae5456f9ea1699cb48b6ce215fd8c4d84dbee84399e8799fa5ca161a1e98375acd16d196c9ca6c505c7923aa7fab49e0e0 +srcfiles size=6 + RELOC/source/latex/apptools/apptools.drv + RELOC/source/latex/apptools/apptools.dtx + RELOC/source/latex/apptools/apptools.ins +runfiles size=1 + RELOC/tex/latex/apptools/apptools.sty +catalogue-ctan /macros/latex/contrib/apptools +catalogue-license lppl1.3 +catalogue-topics appendix +catalogue-version 1.0 + +name apxproof +category Package +revision 56673 +shortdesc Proofs in appendix +relocated 1 +longdesc The package makes it easier to write articles where proofs and +longdesc other material are deferred to the appendix. The appendix +longdesc material is written in the LaTeX code along with the main text +longdesc which it naturally complements, and it is automatically +longdesc deferred. The package can automatically send proofs to the +longdesc appendix, can repeat in the appendix the theorem environments +longdesc stated in the main text, can section the appendix automatically +longdesc based on the sectioning of the main text, and supports a +longdesc separate bibliography for the appendix material. It depends on +longdesc the following other packages: amsthm, bibunits (if the +longdesc bibliography option is set to separate), environ, etoolbox, +longdesc fancyvrb, ifthen, and kvoptions. +containersize 4192 +containerchecksum 0a81e01bc885b8e7d4bd69361b185beb8cde62f7a10db4e5441312dfea15c0da7c352a4cb412102bdbedc60d974ddaee6f44451042283f577b9a4b4f54a263c1 +doccontainersize 568272 +doccontainerchecksum a6131b7889d7882a9bfe253f3bfd380498310dc9f0d13ae382d786e3604201c887b98b8555d69cf62067b4c6d5975b16f14169dc10cf4ca5933af3fb843b60b0 +docfiles size=145 + RELOC/doc/latex/apxproof/LICENSE + RELOC/doc/latex/apxproof/README.md details="Readme" + RELOC/doc/latex/apxproof/apxproof.bib + RELOC/doc/latex/apxproof/apxproof.pdf details="Package documentation" +srccontainersize 15596 +srccontainerchecksum 0895ef3552dea3685c529a2adbe8efc7a7010e63b277b8e3740d1a123bbaef1609f05d2085887d013ba9f75155108397153b187f13b6bea8e49954bc75938a2d +srcfiles size=16 + RELOC/source/latex/apxproof/apxproof.dtx + RELOC/source/latex/apxproof/apxproof.ins +runfiles size=4 + RELOC/tex/latex/apxproof/apxproof.sty +catalogue-contact-bugs https://github.com/PierreSenellart/apxproof/issues +catalogue-contact-repository https://github.com/PierreSenellart/apxproof +catalogue-ctan /macros/latex/contrib/apxproof +catalogue-license lppl1.3 +catalogue-topics proof appendix +catalogue-version 1.2.1 + +name arabi +category Package +revision 44662 +shortdesc (La)TeX support for Arabic and Farsi, compliant with Babel +relocated 1 +longdesc The package provides an Arabic and Farsi script support for TeX +longdesc without the need of any external pre-processor, and in a way +longdesc that is compatible with babel. The bi-directional capability +longdesc supposes that the user has a TeX engine that knows the four +longdesc primitives \beginR, \endR, \beginL and \endL. That is the case +longdesc in both the TeX--XeT and e-TeX engines. Arabi will accept input +longdesc in several 8-bit encodings, including UTF-8. Arabi can make use +longdesc of a wide variety of Arabic and Farsi fonts, and provides one +longdesc of its own. PDF files generated using Arabi may be searched, +longdesc and text may be copied from them and pasted elsewhere. +execute addMap arabi.map +containersize 1934444 +containerchecksum 6f59ea8c986078f388f4c8f067b12863422728cb1a56464ece4d793189bf0e6dcded476a3b86317c2bd5f9b4b3cbc475fd748c2ab9bbf60b3d8c8cd4c162ea62 +doccontainersize 1967352 +doccontainerchecksum c851b0cca46b11d7297a03488cc72adafb6409e0406de809a1a18d4993068702f03e17cbeda1399914005c9885108d747c844719764145c746b2a0ae45d9121f +docfiles size=755 + RELOC/doc/latex/arabi/README details="Readme" + RELOC/doc/latex/arabi/bblopts.cfg + RELOC/doc/latex/arabi/big2.pdf + RELOC/doc/latex/arabi/big2.tex + RELOC/doc/latex/arabi/fontchart_arabic.pdf + RELOC/doc/latex/arabi/fontchart_farsi.pdf + RELOC/doc/latex/arabi/lion.pdf + RELOC/doc/latex/arabi/lppl.tex + RELOC/doc/latex/arabi/samplebook.css + RELOC/doc/latex/arabi/samplebook.html + RELOC/doc/latex/arabi/samplebook.pdf + RELOC/doc/latex/arabi/samplebook.tex + RELOC/doc/latex/arabi/test_beamer.pdf + RELOC/doc/latex/arabi/testplaintex.pdf + RELOC/doc/latex/arabi/testplaintex.tex + RELOC/doc/latex/arabi/user_guide.pdf details="Package documentation" +runfiles size=1025 + RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_boldItalitalic.afm + RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_thin.afm + RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_xxbold.afm + RELOC/fonts/enc/dvips/arabi/ararabeyes.enc + RELOC/fonts/enc/dvips/arabi/ardtpnaskh.enc + RELOC/fonts/enc/dvips/arabi/ardtpthuluth.enc + RELOC/fonts/enc/dvips/arabi/armonotype.enc + RELOC/fonts/enc/dvips/arabi/aromega.enc + RELOC/fonts/enc/dvips/arabi/arsimplified.enc + RELOC/fonts/enc/dvips/arabi/arunicode.enc + RELOC/fonts/enc/dvips/arabi/farsitex.enc + RELOC/fonts/enc/dvips/arabi/farsiwebencoding.enc + RELOC/fonts/enc/dvips/arabi/frmonotype.enc + RELOC/fonts/enc/dvips/arabi/frsimple.enc + RELOC/fonts/enc/dvips/arabi/frsimplified.enc + RELOC/fonts/enc/dvips/arabi/frunicode.enc + RELOC/fonts/map/dvips/arabi/arabi.map + RELOC/fonts/tfm/arabi/arabeyes/ae_almohanad_xxbold.tfm + RELOC/fonts/tfm/arabi/arabeyes/ae_alyermook.tfm + RELOC/fonts/tfm/arabi/arabeyes/ae_arab.tfm + RELOC/fonts/tfm/arabi/arabeyes/ae_tholoth.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealbattar.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmateen.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmohanadb.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmohanadbolditalic.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmothnna.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealyermook.tfm + RELOC/fonts/tfm/arabi/arabeyes/aearab.tfm + RELOC/fonts/tfm/arabi/arabeyes/aecortoba.tfm + RELOC/fonts/tfm/arabi/arabeyes/aedimnah.tfm + RELOC/fonts/tfm/arabi/arabeyes/aefurat.tfm + RELOC/fonts/tfm/arabi/arabeyes/aegranada.tfm + RELOC/fonts/tfm/arabi/arabeyes/aegraph.tfm + RELOC/fonts/tfm/arabi/arabeyes/aehani.tfm + RELOC/fonts/tfm/arabi/arabeyes/aehor.tfm + RELOC/fonts/tfm/arabi/arabeyes/aekayrawan.tfm + RELOC/fonts/tfm/arabi/arabeyes/aekhalid.tfm + RELOC/fonts/tfm/arabi/arabeyes/aemashq.tfm + RELOC/fonts/tfm/arabi/arabeyes/aemetal.tfm + RELOC/fonts/tfm/arabi/arabeyes/aenada.tfm + RELOC/fonts/tfm/arabi/arabeyes/aenagham.tfm + RELOC/fonts/tfm/arabi/arabeyes/aenice.tfm + RELOC/fonts/tfm/arabi/arabeyes/aeostorah.tfm + RELOC/fonts/tfm/arabi/arabeyes/aeouhod.tfm + RELOC/fonts/tfm/arabi/arabeyes/aepetra.tfm + RELOC/fonts/tfm/arabi/arabeyes/aerehan.tfm + RELOC/fonts/tfm/arabi/arabeyes/aesalem.tfm + RELOC/fonts/tfm/arabi/arabeyes/aeshado.tfm + RELOC/fonts/tfm/arabi/arabeyes/aesharjah.tfm + RELOC/fonts/tfm/arabi/arabeyes/aesindibad.tfm + RELOC/fonts/tfm/arabi/arabeyes/aetarablus.tfm + RELOC/fonts/tfm/arabi/arabeyes/aetholoth.tfm + RELOC/fonts/tfm/arabi/farsiweb/homa.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazli.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazlib.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazlibout.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazliout.tfm + RELOC/fonts/tfm/arabi/farsiweb/titr.tfm + RELOC/fonts/tfm/arabi/farsiweb/titrout.tfm + RELOC/fonts/type1/arabi/arabeyes/ae_albattar.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almateen.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_bold.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_boldItalitalic.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_thin.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_xxbold.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almothnna.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_alyermook.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_arab.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_cortoba.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_dimnah.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_furat.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_granada.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_graph.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_hani.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_hor.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_kayrawan.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_khalid.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_mashq.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_metal.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_nada.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_nagham.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_nice.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_ostorah.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_ouhod.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_petra.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_rehan.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_salem.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_shado.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_sharjah.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_sindibad.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_tarablus.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_tholoth.pfb + RELOC/fonts/type1/arabi/farsiweb/homa.pfb + RELOC/fonts/type1/arabi/farsiweb/nazli.pfb + RELOC/fonts/type1/arabi/farsiweb/nazlib.pfb + RELOC/fonts/type1/arabi/farsiweb/titr.pfb + RELOC/tex/latex/arabi/8859-6.def + RELOC/tex/latex/arabi/PPRarabic.sty + RELOC/tex/latex/arabi/arabi4ht.cfg + RELOC/tex/latex/arabi/arabic.cfg + RELOC/tex/latex/arabi/arabic.ldf + RELOC/tex/latex/arabi/arabicfnt.sty + RELOC/tex/latex/arabi/arabicore.sty + RELOC/tex/latex/arabi/arabiftoday.sty + RELOC/tex/latex/arabi/arabipoetry.sty + RELOC/tex/latex/arabi/arabnovowel.sty + RELOC/tex/latex/arabi/arfonts.sty + RELOC/tex/latex/arabi/calendrierfpar.sty + RELOC/tex/latex/arabi/calendrierfpmodified.sty + RELOC/tex/latex/arabi/cp1256.def + RELOC/tex/latex/arabi/farsi.ldf + RELOC/tex/latex/arabi/farsifnt.sty + RELOC/tex/latex/arabi/fmultico.sty + RELOC/tex/latex/arabi/fnum.sty + RELOC/tex/latex/arabi/frfonts.sty + RELOC/tex/latex/arabi/haparabica.sty + RELOC/tex/latex/arabi/laeaealbattar.fd + RELOC/tex/latex/arabi/laeaealmateen.fd + RELOC/tex/latex/arabi/laeaealmohanadb.fd + RELOC/tex/latex/arabi/laeaealmothnna.fd + RELOC/tex/latex/arabi/laeaealyermook.fd + RELOC/tex/latex/arabi/laeaearab.fd + RELOC/tex/latex/arabi/laeaecortoba.fd + RELOC/tex/latex/arabi/laeaedimnah.fd + RELOC/tex/latex/arabi/laeaefurat.fd + RELOC/tex/latex/arabi/laeaegranada.fd + RELOC/tex/latex/arabi/laeaegraph.fd + RELOC/tex/latex/arabi/laeaehani.fd + RELOC/tex/latex/arabi/laeaehor.fd + RELOC/tex/latex/arabi/laeaekayrawan.fd + RELOC/tex/latex/arabi/laeaekhalid.fd + RELOC/tex/latex/arabi/laeaemashq.fd + RELOC/tex/latex/arabi/laeaemetal.fd + RELOC/tex/latex/arabi/laeaenada.fd + RELOC/tex/latex/arabi/laeaenagham.fd + RELOC/tex/latex/arabi/laeaenice.fd + RELOC/tex/latex/arabi/laeaeostorah.fd + RELOC/tex/latex/arabi/laeaeouhod.fd + RELOC/tex/latex/arabi/laeaepetra.fd + RELOC/tex/latex/arabi/laeaerehan.fd + RELOC/tex/latex/arabi/laeaesalem.fd + RELOC/tex/latex/arabi/laeaeshado.fd + RELOC/tex/latex/arabi/laeaesharjah.fd + RELOC/tex/latex/arabi/laeaesindibad.fd + RELOC/tex/latex/arabi/laeaetarablus.fd + RELOC/tex/latex/arabi/laeaetholoth.fd + RELOC/tex/latex/arabi/laeandlso.fd + RELOC/tex/latex/arabi/laeararial.fd + RELOC/tex/latex/arabi/laearcour.fd + RELOC/tex/latex/arabi/laearomega.fd + RELOC/tex/latex/arabi/laearsimpo.fd + RELOC/tex/latex/arabi/laeartimes.fd + RELOC/tex/latex/arabi/laeasv.fd + RELOC/tex/latex/arabi/laecmr.fd + RELOC/tex/latex/arabi/laecmss.fd + RELOC/tex/latex/arabi/laecmtt.fd + RELOC/tex/latex/arabi/laedthuluth.fd + RELOC/tex/latex/arabi/laedtpn.fd + RELOC/tex/latex/arabi/laedtpnsp.fd + RELOC/tex/latex/arabi/laeenc.def + RELOC/tex/latex/arabi/laeenc.dfu + RELOC/tex/latex/arabi/laekacstbook.fd + RELOC/tex/latex/arabi/laemaghribi.fd + RELOC/tex/latex/arabi/laenaskhi.fd + RELOC/tex/latex/arabi/laereqaa.fd + RELOC/tex/latex/arabi/laetraditionalarabic.fd + RELOC/tex/latex/arabi/lagally.sty + RELOC/tex/latex/arabi/lfecmr.fd + RELOC/tex/latex/arabi/lfecmss.fd + RELOC/tex/latex/arabi/lfecmtt.fd + RELOC/tex/latex/arabi/lfeelham.fd + RELOC/tex/latex/arabi/lfeenc.def + RELOC/tex/latex/arabi/lfefandlso.fd + RELOC/tex/latex/arabi/lfefarsismpl.fd + RELOC/tex/latex/arabi/lfefrarial.fd + RELOC/tex/latex/arabi/lfefrtimes.fd + RELOC/tex/latex/arabi/lfeftraditionalarabic.fd + RELOC/tex/latex/arabi/lfehoma.fd + RELOC/tex/latex/arabi/lfekoodak.fd + RELOC/tex/latex/arabi/lfenazli.fd + RELOC/tex/latex/arabi/lfenazliout.fd + RELOC/tex/latex/arabi/lferoya.fd + RELOC/tex/latex/arabi/lfesmplarabic.fd + RELOC/tex/latex/arabi/lfeterafik.fd + RELOC/tex/latex/arabi/lfetitr.fd + RELOC/tex/latex/arabi/lfetitrout.fd + RELOC/tex/latex/arabi/mosq.def + RELOC/tex/latex/arabi/puenc-ar.def + RELOC/tex/latex/arabi/transcmr.fd + RELOC/tex/latex/arabi/translit.sty +catalogue-also arabtex +catalogue-ctan /language/arabic/arabi +catalogue-license lppl +catalogue-topics arabic multilingual-addon font font-type1 +catalogue-version 1.1 + +name arabi-add +category Package +revision 37709 +shortdesc Using hyperref and bookmark packages with arabic and farsi languages +relocated 1 +longdesc This package takes advantage of some of the possibilities that +longdesc hyperref and bookmark packages offer when you create a table of +longdesc contents for Arabic texts created by the arabi package. +containersize 2600 +containerchecksum 5db89004e82030185f34c0a38e4ba55fe38fb9fa087c7a25ee7f7df9180734ffde0957eec52f0110655ea273202b6cdf63114e3520cb23db80c48c6c74acb0a0 +doccontainersize 168780 +doccontainerchecksum 4c44de9d3b46c605a463fd1704e56c5c61806f6e0dcc130251c81d0c555534e167034b6ba2deec1370e502fd006192540ef415aa42987f69025f18642451396e +docfiles size=46 + RELOC/doc/latex/arabi-add/README details="Readme" + RELOC/doc/latex/arabi-add/arabi-add-doc.pdf details="Package documentation" + RELOC/doc/latex/arabi-add/arabi-add-example.pdf +runfiles size=5 + RELOC/tex/latex/arabi-add/arabi-add.sty +catalogue-also arabi +catalogue-ctan /language/arabic/arabi-add +catalogue-license unknown +catalogue-topics arabic +catalogue-version 1.0 + +name arabicfront +category Package +revision 51474 +shortdesc Frontmatter with arabic page numbers +relocated 1 +longdesc This package modifies the definitions of \frontmatter and +longdesc \mainmatter so that page numbering starts in arabic style from +longdesc the front matter while preserving the rest of the original +longdesc definitions. For it to work, \pagenumbering has to be inside +longdesc these macros--most of classes do that, but there are exceptions +longdesc like memoir. +containersize 1644 +containerchecksum efdd3769bedf8ececd7f71f6a918ed19f66caa78b348238b34e554698a5af6ae5616bad5cc494c970cd8e12073f1c27ccd1cfb7ab19ea263b5cf98061c42ccf6 +doccontainersize 612 +doccontainerchecksum 64eb067784cdb56915b45e80f1666347bcdde06e3711a18cef16ae92450377aed236cc32c8c10d467d50e77de31a3f599abe900f411a510574378e63eb923862 +docfiles size=1 + RELOC/doc/latex/arabicfront/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/arabicfront/arabicfront.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos +catalogue-ctan /macros/latex/contrib/arabicfront +catalogue-license mit +catalogue-topics page-nos +catalogue-version 1.1 + +name arabluatex +category Package +revision 54512 +shortdesc ArabTeX for LuaLaTeX +relocated 1 +longdesc This package provides for LuaLaTeX an ArabTeX-like interface to +longdesc generate Arabic writing from an ascii transliteration. It is +longdesc particularly well-suited for complex documents such as +longdesc technical documents or critical editions where a lot of +longdesc left-to-right commands intertwine with Arabic writing. +longdesc arabluatex is able to process any ArabTeX input notation. Its +longdesc output can be set in the same modes of vocalization as ArabTeX, +longdesc or in different roman transliterations. It further allows many +longdesc typographical refinements. It will eventually interact with +longdesc some other packages yet to come to produce from .tex source +longdesc files, in addition to printed books, TEI xml compliant critical +longdesc editions and/or lexicons that can be searched, analyzed and +longdesc correlated in various ways. +containersize 19824 +containerchecksum 34c30ac3f9382b56c013fc8cd85c8c42ab903739c3feb73d5c1d6531340d2c0deb157b6b88f2a7554c21be413420484a667a0a672f04096a5dc2afe6c82511f2 +doccontainersize 758844 +doccontainerchecksum b9153998fe52ac42bed2bce670db355c805c274b71e3a1f18d8794c36bf9143641b01d9b42cb95f0c126659651aa7dff38e69a7a122326b54e719dabb6f7ebe0 +docfiles size=227 + RELOC/doc/lualatex/arabluatex/arabluatex.el + RELOC/doc/lualatex/arabluatex/arabluatex.pdf details="Package documentation" + RELOC/doc/lualatex/arabluatex/samples/al-Jahiz.pdf details="Example of use" + RELOC/doc/lualatex/arabluatex/samples/al-Jahiz.tex + RELOC/doc/lualatex/arabluatex/samples/exporting.pdf + RELOC/doc/lualatex/arabluatex/samples/exporting.tex + RELOC/doc/lualatex/arabluatex/samples/template-01.pdf + RELOC/doc/lualatex/arabluatex/samples/template-01.tex +srccontainersize 55668 +srccontainerchecksum bc4aabaf735415ae31c0b4a44e339ba7dafee4f5f01462a36c2871574fe540847e98e279f971c17f9cc22626f894dcf8ec5a74e4bbe92ec8498a43c6647231f7 +srcfiles size=61 + RELOC/source/lualatex/arabluatex/README.md + RELOC/source/lualatex/arabluatex/README.tex + RELOC/source/lualatex/arabluatex/arabluatex.dtx + RELOC/source/lualatex/arabluatex/arabluatex.ins + RELOC/source/lualatex/arabluatex/makefile +runfiles size=45 + RELOC/tex/lualatex/arabluatex/arabluatex-patch.sty + RELOC/tex/lualatex/arabluatex/arabluatex.lua + RELOC/tex/lualatex/arabluatex/arabluatex.sty + RELOC/tex/lualatex/arabluatex/arabluatex_fullvoc.lua + RELOC/tex/lualatex/arabluatex/arabluatex_novoc.lua + RELOC/tex/lualatex/arabluatex/arabluatex_trans.lua + RELOC/tex/lualatex/arabluatex/arabluatex_voc.lua +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-license gpl3+ cc-by-sa-4 +catalogue-topics multilingual arabic luatex +catalogue-version 1.20 + +name arabtex +category Package +revision 25711 +shortdesc Macros and fonts for typesetting Arabic +relocated 1 +longdesc ArabTeX is a package extending the capabilities of TeX/LaTeX to +longdesc generate Arabic and Hebrew text. Input may be in ASCII +longdesc transliteration or other encodings (including UTF-8); output +longdesc may be Arabic, Hebrew, or any of several languages that use the +longdesc Arabic script. ArabTeX consists of a TeX macro package and +longdesc Arabic and Hebrew fonts (provided both in Metafont format and +longdesc Adobe Type 1). The Arabic font is presently only available in +longdesc the Naskhi style. ArabTeX will run with Plain TeX and also with +longdesc LaTeX. +execute addMixedMap arabtex.map +containersize 235892 +containerchecksum 2dedbd482c223f65e13aae104e2014d2d28bf9f4ae6b90f1a4cf0718eb245d8a94899982f15de326f2eb19e2696045ba8ca9a19a6d903ef7c3e9b575a01d6bbc +doccontainersize 375472 +doccontainerchecksum f20af64239df9bdb82b7fdac6c5f6a222f1277eb877fa1907cbadd4ec6e426745b40733fd2ae726d3050e6f992b14cc91d6386ee02e2bf841d1f249d09df0c71 +docfiles size=198 + RELOC/doc/latex/arabtex/announce.txt + RELOC/doc/latex/arabtex/arabtex-doc.pdf + RELOC/doc/latex/arabtex/arabtex.doc + RELOC/doc/latex/arabtex/arabtex.faq + RELOC/doc/latex/arabtex/arabtex.gif + RELOC/doc/latex/arabtex/arabtex.htm details="Outline of the project" + RELOC/doc/latex/arabtex/arabtex1.htm + RELOC/doc/latex/arabtex/arabtex2.htm + RELOC/doc/latex/arabtex/changes.htm + RELOC/doc/latex/arabtex/changes.txt + RELOC/doc/latex/arabtex/changes2.txt + RELOC/doc/latex/arabtex/chg311.htm + RELOC/doc/latex/arabtex/chg311a.htm + RELOC/doc/latex/arabtex/chg311b.htm + RELOC/doc/latex/arabtex/chg311c.htm + RELOC/doc/latex/arabtex/chg311d.htm + RELOC/doc/latex/arabtex/guha.ps + RELOC/doc/latex/arabtex/hebrew.305 + RELOC/doc/latex/arabtex/install.txt + RELOC/doc/latex/arabtex/lppl.txt + RELOC/doc/latex/arabtex/malay.ps + RELOC/doc/latex/arabtex/manifest.txt + RELOC/doc/latex/arabtex/miktex.htm + RELOC/doc/latex/arabtex/miktex.mai + RELOC/doc/latex/arabtex/new1.gif + RELOC/doc/latex/arabtex/new2.gif + RELOC/doc/latex/arabtex/readme.305 + RELOC/doc/latex/arabtex/readme.txt details="Readme" + RELOC/doc/latex/arabtex/refer.htm + RELOC/doc/latex/arabtex/sindhi.ps + RELOC/doc/latex/arabtex/tetex.txt + RELOC/doc/latex/arabtex/uighur.ps + RELOC/doc/latex/arabtex/xarbsymb.dat +runfiles size=306 + RELOC/fonts/map/dvips/arabtex/arabtex.map + RELOC/fonts/source/public/arabtex/arabsymb.mf + RELOC/fonts/source/public/arabtex/hcaption.mf + RELOC/fonts/source/public/arabtex/hcbase.mf + RELOC/fonts/source/public/arabtex/hclassic.mf + RELOC/fonts/source/public/arabtex/nash.mf + RELOC/fonts/source/public/arabtex/nash14.mf + RELOC/fonts/source/public/arabtex/nash14bf.mf + RELOC/fonts/source/public/arabtex/nashbase.mf + RELOC/fonts/source/public/arabtex/nashchar.mf + RELOC/fonts/source/public/arabtex/nashdia.mf + RELOC/fonts/source/public/arabtex/nashdig.mf + RELOC/fonts/source/public/arabtex/nashlig.mf + RELOC/fonts/source/public/arabtex/nashspec.mf + RELOC/fonts/source/public/arabtex/xarbsymb.mf + RELOC/fonts/source/public/arabtex/xnsh.mf + RELOC/fonts/source/public/arabtex/xnsh14.mf + RELOC/fonts/source/public/arabtex/xnsh14bf.mf + RELOC/fonts/source/public/arabtex/xnshbase.mf + RELOC/fonts/source/public/arabtex/xnshchar.mf + RELOC/fonts/source/public/arabtex/xnshdia.mf + RELOC/fonts/source/public/arabtex/xnshdig.mf + RELOC/fonts/source/public/arabtex/xnshlig.mf + RELOC/fonts/source/public/arabtex/xnshspec.mf + RELOC/fonts/tfm/public/arabtex/hcaption.tfm + RELOC/fonts/tfm/public/arabtex/hclassic.tfm + RELOC/fonts/tfm/public/arabtex/nash14.tfm + RELOC/fonts/tfm/public/arabtex/nash14bf.tfm + RELOC/fonts/tfm/public/arabtex/xnsh14.tfm + RELOC/fonts/tfm/public/arabtex/xnsh14bf.tfm + RELOC/fonts/tfm/public/arabtex/yarborn.tfm + RELOC/fonts/type1/public/arabtex/hcaption-4.pfb + RELOC/fonts/type1/public/arabtex/hclassic-4.pfb + RELOC/fonts/type1/public/arabtex/xnsh14.pfb + RELOC/fonts/type1/public/arabtex/xnsh14bf.pfb + RELOC/tex/latex/arabtex/Uxnsh.fd + RELOC/tex/latex/arabtex/abidir.sty + RELOC/tex/latex/arabtex/abjad.sty + RELOC/tex/latex/arabtex/aboxes.sty + RELOC/tex/latex/arabtex/acjk.sty + RELOC/tex/latex/arabtex/acmd.sty + RELOC/tex/latex/arabtex/aconfig.sty + RELOC/tex/latex/arabtex/aedpatch.sty + RELOC/tex/latex/arabtex/afonts.sty + RELOC/tex/latex/arabtex/afonts0.sty + RELOC/tex/latex/arabtex/afonts1.sty + RELOC/tex/latex/arabtex/afonts2.sty + RELOC/tex/latex/arabtex/afoot.sty + RELOC/tex/latex/arabtex/alatex.sty + RELOC/tex/latex/arabtex/aligs.sty + RELOC/tex/latex/arabtex/alists.sty + RELOC/tex/latex/arabtex/alocal.sty + RELOC/tex/latex/arabtex/altxext.sty + RELOC/tex/latex/arabtex/amac.sty + RELOC/tex/latex/arabtex/aoutput.sty + RELOC/tex/latex/arabtex/aparse.sty + RELOC/tex/latex/arabtex/apatch.sty + RELOC/tex/latex/arabtex/arababel.sty + RELOC/tex/latex/arabtex/arabart.cls + RELOC/tex/latex/arabtex/arabaux.sty + RELOC/tex/latex/arabtex/arabbook.cls + RELOC/tex/latex/arabtex/arabchrs.sty + RELOC/tex/latex/arabtex/arabext.sty + RELOC/tex/latex/arabtex/arabrep.cls + RELOC/tex/latex/arabtex/arabrep1.cls + RELOC/tex/latex/arabtex/arabskel.sty + RELOC/tex/latex/arabtex/arabsymb.sty + RELOC/tex/latex/arabtex/arabtex-doc.tex + RELOC/tex/latex/arabtex/arabtex.sty + RELOC/tex/latex/arabtex/arabtex.tex + RELOC/tex/latex/arabtex/arabtoks.sty + RELOC/tex/latex/arabtex/arwindoc.tex + RELOC/tex/latex/arabtex/ascan.sty + RELOC/tex/latex/arabtex/asect.sty + RELOC/tex/latex/arabtex/asize10.clo + RELOC/tex/latex/arabtex/asize11.clo + RELOC/tex/latex/arabtex/asize12.clo + RELOC/tex/latex/arabtex/asmo449.sty + RELOC/tex/latex/arabtex/asmo449a.sty + RELOC/tex/latex/arabtex/atabg.sty + RELOC/tex/latex/arabtex/atrans.sty + RELOC/tex/latex/arabtex/awrite.sty + RELOC/tex/latex/arabtex/bhs.sty + RELOC/tex/latex/arabtex/bhslabel.sty + RELOC/tex/latex/arabtex/buck.sty + RELOC/tex/latex/arabtex/captions.def + RELOC/tex/latex/arabtex/cp1256.sty + RELOC/tex/latex/arabtex/etrans.sty + RELOC/tex/latex/arabtex/gedalin.sty + RELOC/tex/latex/arabtex/guha.tex + RELOC/tex/latex/arabtex/hebchrs.sty + RELOC/tex/latex/arabtex/hebsymb.sty + RELOC/tex/latex/arabtex/hebtex.sty + RELOC/tex/latex/arabtex/hebtex.tex + RELOC/tex/latex/arabtex/hecmd.sty + RELOC/tex/latex/arabtex/hefonts.sty + RELOC/tex/latex/arabtex/hefonts0.sty + RELOC/tex/latex/arabtex/hefonts1.sty + RELOC/tex/latex/arabtex/hefonts2.sty + RELOC/tex/latex/arabtex/heparse.sty + RELOC/tex/latex/arabtex/hepatch.sty + RELOC/tex/latex/arabtex/hescan.sty + RELOC/tex/latex/arabtex/hetrans.sty + RELOC/tex/latex/arabtex/hewrite.sty + RELOC/tex/latex/arabtex/hmac.sty + RELOC/tex/latex/arabtex/isiri.sty + RELOC/tex/latex/arabtex/iso88596.sty + RELOC/tex/latex/arabtex/kashmiri.tex + RELOC/tex/latex/arabtex/ligtable.tex + RELOC/tex/latex/arabtex/malay.tex + RELOC/tex/latex/arabtex/nashbf.sty + RELOC/tex/latex/arabtex/omar.tex + RELOC/tex/latex/arabtex/raw.sty + RELOC/tex/latex/arabtex/saw.sty + RELOC/tex/latex/arabtex/sindhi.tex + RELOC/tex/latex/arabtex/sotoku.sty + RELOC/tex/latex/arabtex/twoblks.sty + RELOC/tex/latex/arabtex/uheb.fd + RELOC/tex/latex/arabtex/uighur.tex + RELOC/tex/latex/arabtex/unash.fd + RELOC/tex/latex/arabtex/utf8.sty + RELOC/tex/latex/arabtex/utfcode.sty + RELOC/tex/latex/arabtex/verses.sty + RELOC/tex/latex/arabtex/witbhs.sty + RELOC/tex/latex/arabtex/xarbskel.sty + RELOC/tex/latex/arabtex/xarbsymb.sty + 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-license lppl +catalogue-topics font arabic font-arabic hebrew font-hebrew font-mf +catalogue-version 3.17 + +name arabxetex +category Package +revision 38299 +shortdesc An ArabTeX-like interface for XeLaTeX +relocated 1 +longdesc ArabXeTeX provides a convenient ArabTeX-like user-interface for +longdesc typesetting languages using the Arabic script in XeLaTeX, with +longdesc flexible access to font features. Input in ArabTeX notation can +longdesc be set in three different vocalization modes or in roman +longdesc transliteration. Direct UTF-8 input is also supported. The +longdesc parsing and converting of ArabTeX input to Unicode is done by +longdesc means of TECkit mappings. Version 1.0 provides support for +longdesc Arabic, Maghribi Arabic, Farsi (Persian), Urdu, Sindhi, +longdesc Kashmiri, Ottoman Turkish, Kurdish, Jawi (Malay) and Uighur. +longdesc The documentation covers topics such as typesetting the Holy +longdesc Quran and typesetting bidirectional critical editions with the +longdesc package ednotes. +containersize 147680 +containerchecksum 7c58bd94b780abc5bc17b4218229d289797a155a8e98cae8e22825dc7d9b12c5514de01b12bf2f645047dafb13b4d519d463f4ced60f7ac53a65c6aa38cbec86 +doccontainersize 345168 +doccontainerchecksum 0dff3162a710b458b367bb4ca587d525b68ac79d2d3182e8b9d2ca90ff72f89bf69153960400c344511449c52346c329b8a34eb788e11ed9a5319bb6bca89418 +docfiles size=89 + RELOC/doc/xelatex/arabxetex/README.md details="Readme" + RELOC/doc/xelatex/arabxetex/arabxetex.pdf details="Package documentation" + RELOC/doc/xelatex/arabxetex/examples/ednotes_example.pdf details="Ednotes example" + RELOC/doc/xelatex/arabxetex/examples/ednotes_example.tex + RELOC/doc/xelatex/arabxetex/examples/minimal.tex +srccontainersize 29584 +srccontainerchecksum fb29b38d69d39f4c7ed04a3ebb114e49512abbf444f36fcd02dcccfdda22aa3800521c9819696c2828c46983f8266fc00aa59cafb35e26574a3403319d364d64 +srcfiles size=43 + RELOC/source/xelatex/arabxetex/arabtex-farsi-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-pashto-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-sindhi-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-trans-dmg.map + RELOC/source/xelatex/arabxetex/arabtex-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-urdu-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex.maps + RELOC/source/xelatex/arabxetex/arabxetex.dtx + RELOC/source/xelatex/arabxetex/makemaps.pl +runfiles size=197 + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabicdigits.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabicdigits.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kurdish.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kurdish.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-dmg.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-dmg.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-uighur.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-uighur.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/farsidigits.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/farsidigits.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/fixlamalif.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/fixlamalif.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/mirrorpunct.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/mirrorpunct.tec + RELOC/tex/xelatex/arabxetex/arabxetex.sty +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-license lppl +catalogue-topics multilingual arabic kurdish persian xetex +catalogue-version 1.2.1 + +name aramaic-serto +category Package +revision 30042 +shortdesc Fonts and LaTeX for Syriac written in Serto +relocated 1 +longdesc This package enables (La)TeX users to typeset words or phrases +longdesc (e-TeX extensions are needed) in Syriac (Aramaic) using the +longdesc Serto-alphabet. The package includes a preprocessor written in +longdesc Python (>= 1.5.2) in order to deal with right-to-left +longdesc typesetting for those who do not want to use elatex and to +longdesc choose the correct letter depending on word context +longdesc (initial/medial/final form). Detailed documentation and +longdesc examples are included. +execute addMap syriac.map +containersize 97924 +containerchecksum 6731d62d8a24c9f0d26061b8b2574a880df30df333fbe16408d0830657ea36f04f50c56b574de5eb081f490a4c5782595fe17bdb9208b6602c1a0ac81a1f10f5 +doccontainersize 220652 +doccontainerchecksum 433018891123aebb201d6c4f2b00dd15a558344b758899f85b9bdc21556ad4fc4845ce72084863b243e42beba643c5ae4dd210b74e2588af4825e3c83d6d7997 +docfiles size=75 + RELOC/doc/latex/aramaic-serto/README + RELOC/doc/latex/aramaic-serto/assyr.font + RELOC/doc/latex/aramaic-serto/example.ptex + RELOC/doc/latex/aramaic-serto/serto.font + RELOC/doc/latex/aramaic-serto/serto.py + RELOC/doc/latex/aramaic-serto/sertodoc.pdf details="Font documentation" + RELOC/doc/latex/aramaic-serto/sertodoc.ptex +runfiles size=78 + RELOC/fonts/afm/public/aramaic-serto/assy.afm + RELOC/fonts/afm/public/aramaic-serto/assyrb10.afm + RELOC/fonts/afm/public/aramaic-serto/serto10.afm + RELOC/fonts/afm/public/aramaic-serto/sertob10.afm + RELOC/fonts/map/dvips/aramaic-serto/syriac.map + RELOC/fonts/source/public/aramaic-serto/assy.mf + RELOC/fonts/source/public/aramaic-serto/assyrb10.mf + RELOC/fonts/source/public/aramaic-serto/assyrfont.mf + RELOC/fonts/source/public/aramaic-serto/serto.mf + RELOC/fonts/source/public/aramaic-serto/serto10.mf + RELOC/fonts/source/public/aramaic-serto/sertob10.mf + RELOC/fonts/source/public/aramaic-serto/sertobase.mf + RELOC/fonts/source/public/aramaic-serto/sertofont.mf + RELOC/fonts/source/public/aramaic-serto/sertomacros.mf + RELOC/fonts/source/public/aramaic-serto/syriacvowels.mf + RELOC/fonts/source/public/aramaic-serto/test.mf + RELOC/fonts/tfm/public/aramaic-serto/assy.tfm + RELOC/fonts/tfm/public/aramaic-serto/assyrb10.tfm + RELOC/fonts/tfm/public/aramaic-serto/serto10.tfm + RELOC/fonts/tfm/public/aramaic-serto/sertob10.tfm + RELOC/fonts/type1/public/aramaic-serto/assy.pfb + RELOC/fonts/type1/public/aramaic-serto/assyrb10.pfb + RELOC/fonts/type1/public/aramaic-serto/serto10.pfb + RELOC/fonts/type1/public/aramaic-serto/sertob10.pfb + RELOC/tex/latex/aramaic-serto/assyr.sty + RELOC/tex/latex/aramaic-serto/serto.sty + RELOC/tex/latex/aramaic-serto/syriac.sty + RELOC/tex/latex/aramaic-serto/uassyr.fd + RELOC/tex/latex/aramaic-serto/userto.fd +catalogue-also syriac aramaic +catalogue-contact-home http://heinecke.pagesperso-orange.fr/serto/ +catalogue-ctan /language/aramaic/serto +catalogue-license lppl1.3 +catalogue-topics font font-archaic font-mf font-type1 +catalogue-version 1.0 + +name arara +category Package +revision 58933 +shortdesc Automation of LaTeX compilation +longdesc Arara is comparable with other well-known compilation tools +longdesc like latexmk and rubber. The key difference is that arara +longdesc determines its actions from metadata in the source code, rather +longdesc than relying on indirect resources, such as log file analysis. +longdesc Arara requires a Java virtual machine. +depend arara.ARCH +containersize 10395304 +containerchecksum 146871757ebe6874abb8fe5098770e061dd6703135cbdf676da6fb41aef3a0a5bda717764824406d0dc519fabcd122dff6e3cea4703813efc16f2b9e82f87242 +doccontainersize 2047932 +doccontainerchecksum 9dd3c3bb595a40bcada4b8f80af410a920211aa40f5157a77356b7978a062322b17e3b141bcc1f84271b2d254beb26fbeae250436de8e9fd02208a4a8fbf0b06 +docfiles size=831 + texmf-dist/doc/man/man1/arara.1 + texmf-dist/doc/man/man1/arara.man1.pdf + texmf-dist/doc/support/arara/README.md details="Readme" + texmf-dist/doc/support/arara/arara-manual.pdf details="Reference manual" + texmf-dist/doc/support/arara/arara-manual.tex + texmf-dist/doc/support/arara/arara-quickstart.pdf details="Quickstart guide" + texmf-dist/doc/support/arara/arara-quickstart.tex + texmf-dist/doc/support/arara/arara.sty + texmf-dist/doc/support/arara/arararc.yaml + texmf-dist/doc/support/arara/chapters/building.tex + texmf-dist/doc/support/arara/chapters/cli.tex + texmf-dist/doc/support/arara/chapters/concepts.tex + texmf-dist/doc/support/arara/chapters/configuration.tex + texmf-dist/doc/support/arara/chapters/deploying.tex + texmf-dist/doc/support/arara/chapters/introduction.tex + texmf-dist/doc/support/arara/chapters/license.tex + texmf-dist/doc/support/arara/chapters/logging.tex + texmf-dist/doc/support/arara/chapters/methods.tex + texmf-dist/doc/support/arara/chapters/mvel.tex + texmf-dist/doc/support/arara/chapters/rules.tex + texmf-dist/doc/support/arara/chapters/yaml.tex + texmf-dist/doc/support/arara/figures/arara.png + texmf-dist/doc/support/arara/figures/dropdown1.pdf + texmf-dist/doc/support/arara/figures/dropdown2.pdf + texmf-dist/doc/support/arara/figures/gl.pdf + texmf-dist/doc/support/arara/figures/inputbox1.pdf + texmf-dist/doc/support/arara/figures/inputbox2.pdf + texmf-dist/doc/support/arara/figures/messagebox1.pdf + texmf-dist/doc/support/arara/figures/messagebox2.pdf + texmf-dist/doc/support/arara/figures/optionbox1.pdf + texmf-dist/doc/support/arara/figures/optionbox2.pdf + texmf-dist/doc/support/arara/logos/bird.pdf + texmf-dist/doc/support/arara/logos/logo1.pdf + texmf-dist/doc/support/arara/logos/logo2.pdf + texmf-dist/doc/support/arara/rules/manual.yaml + texmf-dist/doc/support/arara/rules/quickstart.yaml + texmf-dist/doc/support/arara/version.tex +srccontainersize 100204 +srccontainerchecksum bd2215d1c4d2e6095bb937d7dda0972d4445363857a86385b7ed75ec885a1f0124fe1265210018ea7cc70db6f636fb2bf13fc0836419c73731f0d1a02680ac5d +srcfiles size=33 + texmf-dist/source/support/arara/arara-6.1.0-src.zip +runfiles size=2910 + texmf-dist/scripts/arara/arara.jar + texmf-dist/scripts/arara/arara.sh + texmf-dist/scripts/arara/rules/arara-rule-animate.yaml + texmf-dist/scripts/arara/rules/arara-rule-asymptote.yaml + texmf-dist/scripts/arara/rules/arara-rule-authorindex.yaml + texmf-dist/scripts/arara/rules/arara-rule-bib2gls.yaml + texmf-dist/scripts/arara/rules/arara-rule-biber.yaml + texmf-dist/scripts/arara/rules/arara-rule-bibtex.yaml + texmf-dist/scripts/arara/rules/arara-rule-bibtex8.yaml + texmf-dist/scripts/arara/rules/arara-rule-bibtexu.yaml + texmf-dist/scripts/arara/rules/arara-rule-clean.yaml + texmf-dist/scripts/arara/rules/arara-rule-context.yaml + texmf-dist/scripts/arara/rules/arara-rule-convert.yaml + texmf-dist/scripts/arara/rules/arara-rule-copy.yaml + texmf-dist/scripts/arara/rules/arara-rule-csplain.yaml + texmf-dist/scripts/arara/rules/arara-rule-datatooltk.yaml + texmf-dist/scripts/arara/rules/arara-rule-detex.yaml + texmf-dist/scripts/arara/rules/arara-rule-dvipdfm.yaml + texmf-dist/scripts/arara/rules/arara-rule-dvipdfmx.yaml + texmf-dist/scripts/arara/rules/arara-rule-dvips.yaml + texmf-dist/scripts/arara/rules/arara-rule-dvipspdf.yaml + texmf-dist/scripts/arara/rules/arara-rule-dvisvgm.yaml + texmf-dist/scripts/arara/rules/arara-rule-etex.yaml + texmf-dist/scripts/arara/rules/arara-rule-fig2dev.yaml + texmf-dist/scripts/arara/rules/arara-rule-frontespizio.yaml + texmf-dist/scripts/arara/rules/arara-rule-ghostscript.yaml + texmf-dist/scripts/arara/rules/arara-rule-gnuplot.yaml + texmf-dist/scripts/arara/rules/arara-rule-halt.yaml + texmf-dist/scripts/arara/rules/arara-rule-indent.yaml + texmf-dist/scripts/arara/rules/arara-rule-knitr.yaml + texmf-dist/scripts/arara/rules/arara-rule-latex.yaml + texmf-dist/scripts/arara/rules/arara-rule-latexmk.yaml + texmf-dist/scripts/arara/rules/arara-rule-llmk.yaml + texmf-dist/scripts/arara/rules/arara-rule-ltx2any.yaml + texmf-dist/scripts/arara/rules/arara-rule-luahbtex.yaml + texmf-dist/scripts/arara/rules/arara-rule-lualatex.yaml + texmf-dist/scripts/arara/rules/arara-rule-luatex.yaml + texmf-dist/scripts/arara/rules/arara-rule-make.yaml + texmf-dist/scripts/arara/rules/arara-rule-makeglossaries.yaml + texmf-dist/scripts/arara/rules/arara-rule-makeglossarieslite.yaml + texmf-dist/scripts/arara/rules/arara-rule-makeindex.yaml + texmf-dist/scripts/arara/rules/arara-rule-metapost.yaml + texmf-dist/scripts/arara/rules/arara-rule-move.yaml + texmf-dist/scripts/arara/rules/arara-rule-nomencl.yaml + texmf-dist/scripts/arara/rules/arara-rule-pbibtex.yaml + texmf-dist/scripts/arara/rules/arara-rule-pdfcrop.yaml + texmf-dist/scripts/arara/rules/arara-rule-pdfcsplain.yaml + texmf-dist/scripts/arara/rules/arara-rule-pdflatex.yaml + texmf-dist/scripts/arara/rules/arara-rule-pdftex.yaml + texmf-dist/scripts/arara/rules/arara-rule-pdftk.yaml + texmf-dist/scripts/arara/rules/arara-rule-perltex.yaml + texmf-dist/scripts/arara/rules/arara-rule-platex.yaml + texmf-dist/scripts/arara/rules/arara-rule-ps2pdf.yaml + texmf-dist/scripts/arara/rules/arara-rule-ptex.yaml + texmf-dist/scripts/arara/rules/arara-rule-pythontex.yaml + texmf-dist/scripts/arara/rules/arara-rule-qpdf.yaml + texmf-dist/scripts/arara/rules/arara-rule-sage.yaml + texmf-dist/scripts/arara/rules/arara-rule-sketch.yaml + texmf-dist/scripts/arara/rules/arara-rule-songidx.yaml + texmf-dist/scripts/arara/rules/arara-rule-spix.yaml + texmf-dist/scripts/arara/rules/arara-rule-tex.yaml + texmf-dist/scripts/arara/rules/arara-rule-texcount.yaml + texmf-dist/scripts/arara/rules/arara-rule-texindy.yaml + texmf-dist/scripts/arara/rules/arara-rule-tikzmake.yaml + texmf-dist/scripts/arara/rules/arara-rule-upbibtex.yaml + texmf-dist/scripts/arara/rules/arara-rule-uplatex.yaml + texmf-dist/scripts/arara/rules/arara-rule-uptex.yaml + texmf-dist/scripts/arara/rules/arara-rule-xdvipdfmx.yaml + texmf-dist/scripts/arara/rules/arara-rule-xelatex.yaml + texmf-dist/scripts/arara/rules/arara-rule-xetex.yaml + texmf-dist/scripts/arara/rules/arara-rule-xindex.yaml + texmf-dist/scripts/arara/rules/arara-rule-xindy.yaml +catalogue-contact-bugs https://gitlab.com/islandoftex/arara/issues/ +catalogue-contact-repository https://gitlab.com/islandoftex/arara/ +catalogue-contact-support https://gitter.im/Island-of-TeX/arara +catalogue-ctan /support/arara +catalogue-license bsd +catalogue-topics compilation +catalogue-version 6.1.0 + +name arara.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of arara +containersize 340 +containerchecksum 8c4dca0eae0341eae0e5777313405227925778feb14fa724d3a490d2eb024d185dda4da26430fce5f743ecbb2f9d93a308536918c0692aa30862d206ac7e9217 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/arara + +name arara.amd64-freebsd +category Package +revision 29036 +shortdesc amd64-freebsd files of arara +containersize 340 +containerchecksum f9e8b7bb3060e96f7337812bd2f562363fe8c8672d0dca73c65956bf62c60e3d69f970fbe5770a5142ce675d44ab7795eace811e9fabc3929aa790f08881519b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/arara + +name arara.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of arara +containersize 340 +containerchecksum a5fb4be295460913a630b1c2ce4c670a443f7f6212cbb424a89d559011a3e79100359b457ad6821d2f6274c2421f77bb8c9e8baaaecdc3679542deaee5a90bbb +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/arara + +name arara.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of arara +containersize 336 +containerchecksum 240460bae4f6ca4d2bb5db14cc8a552c1efec57285724924a9c3fa24d2b7432d5140fc7cb132df765d4562d58362d071851d25c5507827dbb7d25cc079265042 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/arara + +name arara.i386-cygwin +category Package +revision 29036 +shortdesc i386-cygwin files of arara +containersize 336 +containerchecksum 960b5c1238d0c992bc07018d993a7e572d6f2cded1e1c80de24f1fc4ebc49a05739f2d0f47dd5c3aa25a8ebe4e7516e56073a6022af825199381135d1eddca47 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/arara + +name arara.i386-freebsd +category Package +revision 29036 +shortdesc i386-freebsd files of arara +containersize 340 +containerchecksum 79c70db9185a75f20480d9003562942b17ade3cea2a3b599d3883f22ed7aab5f982de583a4cd5cde361fa7b3ac27c2d1e691854d5a2e2e89ab6c4f6544fb9d8e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/arara + +name arara.i386-linux +category Package +revision 29036 +shortdesc i386-linux files of arara +containersize 340 +containerchecksum d36d3edfeeee794f9cdde36a2323e4c0d40deeaa35877cb5a4b3efed6fb36675515f4c834b5473ae1be89f17082e40c621369fccb1cb72ef7792658105133f10 +binfiles arch=i386-linux size=1 + bin/i386-linux/arara + +name arara.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of arara +containersize 340 +containerchecksum f70a2e36d8c6ab99d9e807b80130bb01908b76e26653857793b2fc8d196fe3a1d856b8741275981091b75411196bff9153622703ce11a079bbb77589b8abca94 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/arara + +name arara.i386-solaris +category Package +revision 29036 +shortdesc i386-solaris files of arara +containersize 336 +containerchecksum fcc1c96a41d85336395852b49c6743866be99fd06100573d09ac0b64cb94391f7953f5128337039b01d0b966e6344f70bbc363eaef35e960de8783df2c2dbf87 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/arara + +name arara.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of arara +containersize 340 +containerchecksum b210568b1a0ed68c9f79f1b0e3da02addb8e1b37cba8c7cd8f7094c555f355dd15c1324a18c0d2a2e1de32ab63f160c37ebad18050eb019fbcd8dde118b7b3a2 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/arara + +name arara.win32 +category Package +revision 29181 +shortdesc win32 files of arara +containersize 680 +containerchecksum 335530dbad34d5c0623945aed99c466e9de500d9214b8f2d6e0824fa12b0c95d05a256a2f97b18a95836f2badce05e93ab57d713dcea501077eb84187b38e9cd +binfiles arch=win32 size=1 + bin/win32/arara.exe + +name arara.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of arara +containersize 340 +containerchecksum 79112ac0696a200717b829a04833df74cd854c9d685a0798202e3193eacb7116a69b02d2fc5977849142531f3d9ff3e9be65d4ad885173a18333ee096d797155 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/arara + +name arara.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of arara +containersize 348 +containerchecksum 94e493d9f49513942dad045871da00235ebefc8064b4ad8d79aefe59b237401c9dcea2db7a189eaef0d007b0b872f65ffc031809ee48fd177f6ece7237536ce0 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/arara + +name arara.x86_64-linux +category Package +revision 29036 +shortdesc x86_64-linux files of arara +containersize 336 +containerchecksum ecdedb6fa0cbb2737f1c1bdb1833998f5d991b5b71d22bf41581d4365b7e89fff23e9a1d3eb7e32446ffe8462e332feea9c086a71096ea8cb1166379705a2db0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/arara + +name arara.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of arara +containersize 344 +containerchecksum 74c3a1abacadf1ca23ed19238d1b4e8e910ad03b5a80ce7485adb7a2fc29b85c64688347c8c81ff88e31f8b10a4fea7321e978e343b9291bf86470e53a29777c +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/arara + +name arara.x86_64-solaris +category Package +revision 29036 +shortdesc x86_64-solaris files of arara +containersize 340 +containerchecksum 1f6608563afdb1558d59094fa234a8cbca704eed2b8f69387ede4cc922ed132bf6acf39b775eee91acb5d398da204deb6f956ec6654049f5216d7aec7882dd16 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/arara + +name archaeologie +category Package +revision 57090 +shortdesc A citation-style which covers rules of the German Archaeological Institute +relocated 1 +longdesc This citation-style covers the citation and bibliography rules +longdesc of the German Archaeological Institute (DAI). Various options +longdesc are available to change and adjust the outcome according to +longdesc one's own preferences. +containersize 72928 +containerchecksum 40220a43a1f5775076f75379eb7c6c6eb4f7e9c709b7ff22b0db29868f5ac7e5def3cead10dbcd17e3bad2aa33af7942c10f5968c42494b5ab35dd6886c912db +doccontainersize 1059164 +doccontainerchecksum efc68c2bb845f1966aecf6cdb20694778212261d6ba6f0136c87ddd0cd5872d0196c99220c56a9c9dd50ecc32c1a59a4d4630ff3fea9b5d953a0a9ee3aa66dcc +docfiles size=294 + RELOC/doc/latex/archaeologie/README.md details="Readme" + RELOC/doc/latex/archaeologie/archaeologie.pdf details="Package documentation" +srccontainersize 136220 +srccontainerchecksum 2f3324c8844c5d04d35e3e4bbafac591c1c33ac2a0ba21d7b4b1231ae7883ddd53fee555ac89d2f2fe27358c80470b414f14fef073f03fc3ed405b96a5df290f +srcfiles size=199 + RELOC/source/latex/archaeologie/Makefile + RELOC/source/latex/archaeologie/archaeologie.dtx +runfiles size=108 + RELOC/bibtex/bib/archaeologie/archaeologie-bibancient.bib + RELOC/bibtex/bib/archaeologie/archaeologie-bibcorpora.bib + RELOC/bibtex/bib/archaeologie/archaeologie-examples.bib + RELOC/bibtex/bib/archaeologie/archaeologie-lstabbrv.bib + RELOC/bibtex/bib/archaeologie/archaeologie-lstlocations.bib + RELOC/bibtex/bib/archaeologie/archaeologie-lstpublishers.bib + RELOC/tex/latex/archaeologie/archaeologie.bbx + RELOC/tex/latex/archaeologie/archaeologie.cbx + RELOC/tex/latex/archaeologie/archaeologie.dbx + RELOC/tex/latex/archaeologie/english-archaeologie.lbx + RELOC/tex/latex/archaeologie/french-archaeologie.lbx + RELOC/tex/latex/archaeologie/german-archaeologie.lbx + RELOC/tex/latex/archaeologie/italian-archaeologie.lbx + RELOC/tex/latex/archaeologie/spanish-archaeologie.lbx +catalogue-also biblatex-archaeology +catalogue-contact-bugs https://github.com/LukasCBossert/biblatex-archaeologie/issues +catalogue-contact-home http://biblatex-archaeologie.texografie.de/ +catalogue-contact-repository https://github.com/LukasCBossert/biblatex-archaeologie +catalogue-ctan /macros/latex/contrib/biblatex-contrib/archaeologie +catalogue-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 2.4.5 + +name archaic +category Package +revision 38005 +shortdesc A collection of archaic fonts +relocated 1 +longdesc The collection contains fonts to represent Aramaic, Cypriot, +longdesc Etruscan, Greek of the 6th and 4th centuries BCE, Egyptian +longdesc hieroglyphics, Linear A, Linear B, Nabatean old Persian, the +longdesc Phaistos disc, Phoenician, proto-Semitic, runic, South Arabian +longdesc Ugaritic and Viking scripts. The bundle also includes a small +longdesc font for use in phonetic transcription of the archaic writings. +longdesc The bundle's own directory includes a font installation map +longdesc file for the whole collection. +execute addMap archaicprw.map +containersize 372708 +containerchecksum 5e841f4a8e5df375fd660c998d3d54221e6c8e383fe4a69fb082c98d62b44a1fab2e9ec88db37964e015abbc20cd0f2af5aa26cffd4fd92fece5e24661c0efa5 +doccontainersize 2944788 +doccontainerchecksum 457eedb06a3a09a73a2ce0b20c18b643530aa2659d7b1b98be14238b9d40e8a6bdc39085654e8589fb134921f40d211d93f553cab25d7901e40286b3075f268a +docfiles size=964 + RELOC/doc/fonts/archaic/README.PRW details="A description of Peter Wilson's contribution" + RELOC/doc/fonts/archaic/aramaic-README + RELOC/doc/fonts/archaic/aramaic.pdf + RELOC/doc/fonts/archaic/asamples.pdf details="Collection of font samples" + RELOC/doc/fonts/archaic/asamples.tex + RELOC/doc/fonts/archaic/cypriot-README + RELOC/doc/fonts/archaic/cypriot.pdf + RELOC/doc/fonts/archaic/etruscan-README + RELOC/doc/fonts/archaic/etruscan.pdf + RELOC/doc/fonts/archaic/greek4cbc-README + RELOC/doc/fonts/archaic/greek4cbc-trygivbc.pdf + RELOC/doc/fonts/archaic/greek4cbc-trygivbc.tex + RELOC/doc/fonts/archaic/greek4cbc.pdf + RELOC/doc/fonts/archaic/greek6cbc-README + RELOC/doc/fonts/archaic/greek6cbc-trygvibc.pdf + RELOC/doc/fonts/archaic/greek6cbc-trygvibc.tex + RELOC/doc/fonts/archaic/greek6cbc.pdf + RELOC/doc/fonts/archaic/hieroglf-README + RELOC/doc/fonts/archaic/hieroglf-trypmhg.pdf + RELOC/doc/fonts/archaic/hieroglf-trypmhg.tex + RELOC/doc/fonts/archaic/hieroglf.pdf + RELOC/doc/fonts/archaic/linearb-README + RELOC/doc/fonts/archaic/linearb.pdf + RELOC/doc/fonts/archaic/nabatean-README + RELOC/doc/fonts/archaic/nabatean.pdf + RELOC/doc/fonts/archaic/oands-README + RELOC/doc/fonts/archaic/oands.pdf + RELOC/doc/fonts/archaic/oldprsn-README + RELOC/doc/fonts/archaic/oldprsn.pdf + RELOC/doc/fonts/archaic/phoenician-README + RELOC/doc/fonts/archaic/phoenician-tryphnc.pdf + RELOC/doc/fonts/archaic/phoenician-tryphnc.tex + RELOC/doc/fonts/archaic/phoenician.pdf + RELOC/doc/fonts/archaic/protosem-README + RELOC/doc/fonts/archaic/protosem.pdf + RELOC/doc/fonts/archaic/runic-README + RELOC/doc/fonts/archaic/runic.pdf + RELOC/doc/fonts/archaic/sarabian-README + RELOC/doc/fonts/archaic/sarabian.pdf + RELOC/doc/fonts/archaic/tryaramaic.pdf + RELOC/doc/fonts/archaic/tryaramaic.tex + RELOC/doc/fonts/archaic/trycypriot.pdf + RELOC/doc/fonts/archaic/trycypriot.tex + RELOC/doc/fonts/archaic/tryetruscan.pdf + RELOC/doc/fonts/archaic/tryetruscan.tex + RELOC/doc/fonts/archaic/trylinearb.pdf + RELOC/doc/fonts/archaic/trylinearb.tex + RELOC/doc/fonts/archaic/trynabatean.pdf + RELOC/doc/fonts/archaic/trynabatean.tex + RELOC/doc/fonts/archaic/tryoands.pdf + RELOC/doc/fonts/archaic/tryoands.tex + RELOC/doc/fonts/archaic/tryoldprsn.pdf + RELOC/doc/fonts/archaic/tryoldprsn.tex + RELOC/doc/fonts/archaic/tryprotosem.pdf + RELOC/doc/fonts/archaic/tryprotosem.tex + RELOC/doc/fonts/archaic/tryrunic.pdf + RELOC/doc/fonts/archaic/tryrunic.tex + RELOC/doc/fonts/archaic/trysarabian.pdf + RELOC/doc/fonts/archaic/trysarabian.tex + RELOC/doc/fonts/archaic/tryugarite.pdf + RELOC/doc/fonts/archaic/tryugarite.tex + RELOC/doc/fonts/archaic/ugarite-README + RELOC/doc/fonts/archaic/ugarite.pdf + RELOC/doc/fonts/archaic/viking-README + RELOC/doc/fonts/archaic/viking-try_vik.tex +srccontainersize 134456 +srccontainerchecksum 5a39568546651ef10937849550c3305bde9379737b21e24b2adbec532dee8192ddbdaaa77f2e6bc135d518f354c1b20d7c43bc03f65ccf47d423f4af1e75d620 +srcfiles size=261 + RELOC/source/fonts/archaic/aramaic.dtx + RELOC/source/fonts/archaic/aramaic.ins + RELOC/source/fonts/archaic/cypriot.dtx + RELOC/source/fonts/archaic/cypriot.ins + RELOC/source/fonts/archaic/etruscan.dtx + RELOC/source/fonts/archaic/etruscan.ins + RELOC/source/fonts/archaic/greek4cbc.dtx + RELOC/source/fonts/archaic/greek4cbc.ins + RELOC/source/fonts/archaic/greek6cbc.dtx + RELOC/source/fonts/archaic/greek6cbc.ins + RELOC/source/fonts/archaic/hieroglf.dtx + RELOC/source/fonts/archaic/hieroglf.ins + RELOC/source/fonts/archaic/linearb.dtx + RELOC/source/fonts/archaic/linearb.ins + RELOC/source/fonts/archaic/nabatean.dtx + RELOC/source/fonts/archaic/nabatean.ins + RELOC/source/fonts/archaic/oands.dtx + RELOC/source/fonts/archaic/oands.ins + RELOC/source/fonts/archaic/oldprsn.dtx + RELOC/source/fonts/archaic/oldprsn.ins + RELOC/source/fonts/archaic/phoenician.dtx + RELOC/source/fonts/archaic/phoenician.ins + RELOC/source/fonts/archaic/protosem.dtx + RELOC/source/fonts/archaic/protosem.ins + RELOC/source/fonts/archaic/runic.dtx + RELOC/source/fonts/archaic/runic.ins + RELOC/source/fonts/archaic/sarabian.dtx + RELOC/source/fonts/archaic/sarabian.ins + RELOC/source/fonts/archaic/ugarite.dtx + RELOC/source/fonts/archaic/ugarite.ins + RELOC/source/fonts/archaic/viking.dtx + RELOC/source/fonts/archaic/viking.ins +runfiles size=271 + RELOC/fonts/afm/public/archaic/aram10.afm + RELOC/fonts/afm/public/archaic/copsn10.afm + RELOC/fonts/afm/public/archaic/cugar10.afm + RELOC/fonts/afm/public/archaic/cypr10.afm + RELOC/fonts/afm/public/archaic/etr10.afm + RELOC/fonts/afm/public/archaic/fut10.afm + RELOC/fonts/afm/public/archaic/givbc10.afm + RELOC/fonts/afm/public/archaic/gvibc10.afm + RELOC/fonts/afm/public/archaic/linb10.afm + RELOC/fonts/afm/public/archaic/nab10.afm + RELOC/fonts/afm/public/archaic/oandsi10.afm + RELOC/fonts/afm/public/archaic/oandsu10.afm + RELOC/fonts/afm/public/archaic/phnc10.afm + RELOC/fonts/afm/public/archaic/pmhg.afm + RELOC/fonts/afm/public/archaic/proto10.afm + RELOC/fonts/afm/public/archaic/sarab10.afm + RELOC/fonts/map/dvips/archaic/aramaic.map + RELOC/fonts/map/dvips/archaic/archaicprw.map + RELOC/fonts/map/dvips/archaic/cypriot.map + RELOC/fonts/map/dvips/archaic/etruscan.map + RELOC/fonts/map/dvips/archaic/fut10.map + RELOC/fonts/map/dvips/archaic/greek4cbc.map + RELOC/fonts/map/dvips/archaic/greek6cbc.map + RELOC/fonts/map/dvips/archaic/hieroglf.map + RELOC/fonts/map/dvips/archaic/linearb.map + RELOC/fonts/map/dvips/archaic/nabatean.map + RELOC/fonts/map/dvips/archaic/oands.map + RELOC/fonts/map/dvips/archaic/oldprsn.map + RELOC/fonts/map/dvips/archaic/phoenician.map + RELOC/fonts/map/dvips/archaic/protosem.map + RELOC/fonts/map/dvips/archaic/sarabian.map + RELOC/fonts/map/dvips/archaic/ugarite.map + RELOC/fonts/source/public/archaic/copsn10.mf + RELOC/fonts/source/public/archaic/givbc10.mf + RELOC/fonts/source/public/archaic/gvibc10.mf + RELOC/fonts/source/public/archaic/sarab10.mf + RELOC/fonts/source/public/archaic/vik10.mf + RELOC/fonts/source/public/archaic/vikglyph.mf + RELOC/fonts/source/public/archaic/viktitle.mf + RELOC/fonts/tfm/public/archaic/aram10.tfm + RELOC/fonts/tfm/public/archaic/copsn10.tfm + RELOC/fonts/tfm/public/archaic/cugar10.tfm + RELOC/fonts/tfm/public/archaic/cypr10.tfm + RELOC/fonts/tfm/public/archaic/etr10.tfm + RELOC/fonts/tfm/public/archaic/fut10.tfm + RELOC/fonts/tfm/public/archaic/givbc10.tfm + RELOC/fonts/tfm/public/archaic/gvibc10.tfm + RELOC/fonts/tfm/public/archaic/linb10.tfm + RELOC/fonts/tfm/public/archaic/nab10.tfm + RELOC/fonts/tfm/public/archaic/oandsi10.tfm + RELOC/fonts/tfm/public/archaic/oandsu10.tfm + RELOC/fonts/tfm/public/archaic/phnc10.tfm + RELOC/fonts/tfm/public/archaic/pmhg.tfm + RELOC/fonts/tfm/public/archaic/proto10.tfm + RELOC/fonts/tfm/public/archaic/sarab10.tfm + RELOC/fonts/tfm/public/archaic/vik10.tfm + RELOC/fonts/type1/public/archaic/aram10.pfb + RELOC/fonts/type1/public/archaic/copsn10.pfb + RELOC/fonts/type1/public/archaic/cugar10.pfb + RELOC/fonts/type1/public/archaic/cypr10.pfb + RELOC/fonts/type1/public/archaic/etr10.pfb + RELOC/fonts/type1/public/archaic/fut10.pfb + RELOC/fonts/type1/public/archaic/givbc10.pfb + RELOC/fonts/type1/public/archaic/gvibc10.pfb + RELOC/fonts/type1/public/archaic/linb10.pfb + RELOC/fonts/type1/public/archaic/nab10.pfb + RELOC/fonts/type1/public/archaic/oandsi10.pfb + RELOC/fonts/type1/public/archaic/oandsu10.pfb + RELOC/fonts/type1/public/archaic/phnc10.pfb + RELOC/fonts/type1/public/archaic/pmhg.pfb + RELOC/fonts/type1/public/archaic/proto10.pfb + RELOC/fonts/type1/public/archaic/sarab10.pfb + RELOC/tex/latex/archaic/aramaic.sty + RELOC/tex/latex/archaic/cypriot.sty + RELOC/tex/latex/archaic/etruscan.sty + RELOC/tex/latex/archaic/greek4cbc.sty + RELOC/tex/latex/archaic/greek6cbc.sty + RELOC/tex/latex/archaic/hieroglf.sty + RELOC/tex/latex/archaic/linearb.sty + RELOC/tex/latex/archaic/nabatean.sty + RELOC/tex/latex/archaic/oands.sty + RELOC/tex/latex/archaic/oldprsn.sty + RELOC/tex/latex/archaic/ot1aram.fd + RELOC/tex/latex/archaic/ot1copsn.fd + RELOC/tex/latex/archaic/ot1cugar.fd + RELOC/tex/latex/archaic/ot1cypr.fd + RELOC/tex/latex/archaic/ot1etr.fd + RELOC/tex/latex/archaic/ot1fut.fd + RELOC/tex/latex/archaic/ot1givbc.fd + RELOC/tex/latex/archaic/ot1gvibc.fd + RELOC/tex/latex/archaic/ot1nab.fd + RELOC/tex/latex/archaic/ot1oands.fd + RELOC/tex/latex/archaic/ot1phnc.fd + RELOC/tex/latex/archaic/ot1pmhg.fd + RELOC/tex/latex/archaic/ot1proto.fd + RELOC/tex/latex/archaic/ot1sarab.fd + RELOC/tex/latex/archaic/ot1vik.fd + RELOC/tex/latex/archaic/phoenician.sty + RELOC/tex/latex/archaic/protosem.sty + RELOC/tex/latex/archaic/runic.sty + RELOC/tex/latex/archaic/sarabian.sty + RELOC/tex/latex/archaic/t1aram.fd + RELOC/tex/latex/archaic/t1copsn.fd + RELOC/tex/latex/archaic/t1cugar.fd + RELOC/tex/latex/archaic/t1cypr.fd + RELOC/tex/latex/archaic/t1etr.fd + RELOC/tex/latex/archaic/t1fut.fd + RELOC/tex/latex/archaic/t1givbc.fd + RELOC/tex/latex/archaic/t1gvibc.fd + RELOC/tex/latex/archaic/t1linb.fd + RELOC/tex/latex/archaic/t1nab.fd + RELOC/tex/latex/archaic/t1oands.fd + RELOC/tex/latex/archaic/t1phnc.fd + RELOC/tex/latex/archaic/t1pmhg.fd + RELOC/tex/latex/archaic/t1proto.fd + RELOC/tex/latex/archaic/t1sarab.fd + RELOC/tex/latex/archaic/t1vik.fd + RELOC/tex/latex/archaic/ugarite.sty + RELOC/tex/latex/archaic/viking.sty +catalogue-ctan /fonts/archaic +catalogue-license lppl +catalogue-topics font-archaic font-mf + +name archivo +category Package +revision 57283 +shortdesc The Archivo font face with support for LaTeX and pdfLaTeX +relocated 1 +longdesc This package provides the Archivo family of fonts designed by +longdesc Omnibus-Type, with support for LaTeX and pdfLaTeX. +execute addMap ArchivZero.map +containersize 1483132 +containerchecksum 0f6b7985d73ba3e62874bee7a05c215cea0008bdfd1b0c3df6795a2d6363ee2a209df956b4f9698ec93ee8d9c6bd62ab5bf3bf19cff78c968a97da58a80b5f40 +doccontainersize 78956 +doccontainerchecksum 88cf002d557401730c035727251e228effdd25d52e9d76edc950d0f3ee639e2eb5bf623c77a4e80dd902b7095076030b32aa017c8adea9f57912ca9de51ab7b0 +docfiles size=24 + RELOC/doc/fonts/archivo/Archivo-samples.pdf details="Font samples" + RELOC/doc/fonts/archivo/Archivo-samples.tex + RELOC/doc/fonts/archivo/LICENSE.TXT + RELOC/doc/fonts/archivo/README details="Readme" + RELOC/doc/fonts/archivo/README.doc +runfiles size=1021 + RELOC/fonts/enc/dvips/archivo/a_24xxsv.enc + RELOC/fonts/enc/dvips/archivo/a_5xld5w.enc + RELOC/fonts/enc/dvips/archivo/a_7npxgm.enc + RELOC/fonts/enc/dvips/archivo/a_fiyauo.enc + RELOC/fonts/enc/dvips/archivo/a_flfbvu.enc + RELOC/fonts/enc/dvips/archivo/a_lwgukc.enc + RELOC/fonts/enc/dvips/archivo/a_lzhlbi.enc + RELOC/fonts/enc/dvips/archivo/a_mq36jn.enc + RELOC/fonts/enc/dvips/archivo/a_owzwzj.enc + RELOC/fonts/enc/dvips/archivo/a_ttjzpe.enc + RELOC/fonts/enc/dvips/archivo/a_utd4ik.enc + RELOC/fonts/enc/dvips/archivo/a_vgwtwr.enc + RELOC/fonts/enc/dvips/archivo/a_vqpkf5.enc + RELOC/fonts/map/dvips/archivo/ArchivZero.map + RELOC/fonts/opentype/public/archivo/Archiv0-Bold.otf + RELOC/fonts/opentype/public/archivo/Archiv0-BoldItalic.otf + RELOC/fonts/opentype/public/archivo/Archiv0-Italic.otf + RELOC/fonts/opentype/public/archivo/Archiv0-Medium.otf + RELOC/fonts/opentype/public/archivo/Archiv0-MediumItalic.otf + RELOC/fonts/opentype/public/archivo/Archiv0-Regular.otf + RELOC/fonts/opentype/public/archivo/Archiv0-SemiBold.otf + RELOC/fonts/opentype/public/archivo/Archiv0-SemiBoldItalic.otf + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/archivo/Archiv0-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/archivo/Archiv0-Bold.pfb + RELOC/fonts/type1/public/archivo/Archiv0-BoldItalic.pfb + RELOC/fonts/type1/public/archivo/Archiv0-Italic.pfb + RELOC/fonts/type1/public/archivo/Archiv0-Medium.pfb + RELOC/fonts/type1/public/archivo/Archiv0-MediumItalic.pfb + RELOC/fonts/type1/public/archivo/Archiv0-Regular.pfb + RELOC/fonts/type1/public/archivo/Archiv0-SemiBold.pfb + RELOC/fonts/type1/public/archivo/Archiv0-SemiBoldItalic.pfb + RELOC/fonts/vf/public/archivo/Archiv0-Bold-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/archivo/Archiv0-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/archivo/Archivo.sty + RELOC/tex/latex/archivo/LY1ArchivZero-LF.fd + RELOC/tex/latex/archivo/LY1ArchivZero-OsF.fd + RELOC/tex/latex/archivo/LY1ArchivZero-Sup.fd + RELOC/tex/latex/archivo/LY1ArchivZero-TLF.fd + RELOC/tex/latex/archivo/LY1ArchivZero-TOsF.fd + RELOC/tex/latex/archivo/OT1ArchivZero-LF.fd + RELOC/tex/latex/archivo/OT1ArchivZero-OsF.fd + RELOC/tex/latex/archivo/OT1ArchivZero-Sup.fd + RELOC/tex/latex/archivo/OT1ArchivZero-TLF.fd + RELOC/tex/latex/archivo/OT1ArchivZero-TOsF.fd + RELOC/tex/latex/archivo/T1ArchivZero-LF.fd + RELOC/tex/latex/archivo/T1ArchivZero-OsF.fd + RELOC/tex/latex/archivo/T1ArchivZero-Sup.fd + RELOC/tex/latex/archivo/T1ArchivZero-TLF.fd + RELOC/tex/latex/archivo/T1ArchivZero-TOsF.fd + RELOC/tex/latex/archivo/TS1ArchivZero-LF.fd + RELOC/tex/latex/archivo/TS1ArchivZero-OsF.fd + RELOC/tex/latex/archivo/TS1ArchivZero-TLF.fd + RELOC/tex/latex/archivo/TS1ArchivZero-TOsF.fd +catalogue-contact-bugs https://github.com/ccebinger/CTAN_Archivo +catalogue-contact-development https://github.com/ccebinger/CTAN_Archivo +catalogue-contact-home https://github.com/ccebinger/CTAN_Archivo +catalogue-contact-repository https://github.com/ccebinger/CTAN_Archivo +catalogue-contact-support https://github.com/ccebinger/CTAN_Archivo +catalogue-ctan /fonts/archivo +catalogue-license ofl lppl +catalogue-topics font font-body font-serif font-proportional font-ttf font-supp font-t1enc +catalogue-version 0.0.2 + +name arcs +category Package +revision 15878 +shortdesc Draw arcs over and under text +relocated 1 +longdesc The package provides two commands for placing an arc over +longdesc (\overarc) or under (\underarc) a piece of text. (The text may +longdesc be up to three letters long.) The commands generate an \hbox, +longdesc and may be used both in text and in maths formulae. +containersize 1516 +containerchecksum 65737905ba0a6ede74d8cb211b46a2e62b640d1b655f895095ad4bdecefde496368707142143e2f2e48849faa89d86a9e90a0bde64fe84b3c828e14462f30406 +doccontainersize 52132 +doccontainerchecksum 2cf72d4ec304cfa08c1b3cc8df3bd9a6cb92a633a2ab783ac4efbb5edd6290ba256c86bc4a3bbc09d923a58a10e5f21f5d8e3e2b41b0ddce14406d29405523e0 +docfiles size=22 + RELOC/doc/latex/arcs/README details="Package README" + RELOC/doc/latex/arcs/arcs.pdf details="Package documentation" + RELOC/doc/latex/arcs/arcstest.tex +srccontainersize 2476 +srccontainerchecksum ce6599f074d59530d85960b2a313421400f1cbc26b488e900a5b49d75f6b715a859b36de2d2e25c880407950f1170512cc3573b0256d69ceafab40e29566de78 +srcfiles size=3 + RELOC/source/latex/arcs/arcs.dtx + RELOC/source/latex/arcs/arcs.ins +runfiles size=1 + RELOC/tex/latex/arcs/arcs.sty +catalogue-ctan /macros/latex/contrib/arcs +catalogue-license lppl +catalogue-topics linguistic +catalogue-version 1 + +name arev +category Package +revision 15878 +shortdesc Fonts and LaTeX support files for Arev Sans +relocated 1 +longdesc The package arev provides type 1 and virtual fonts, together +longdesc with LaTeX packages for using Arev Sans in both text and +longdesc mathematics. Arev Sans is a derivative of Bitstream Vera Sans +longdesc created by Tavmjong Bah, adding support for Greek and Cyrillic +longdesc characters. Bah also added a few variant letters that are more +longdesc appropriate for mathematics. The primary purpose for using Arev +longdesc Sans in LaTeX is presentations, particularly when using a +longdesc computer projector. In such a context, Arev Sans is quite +longdesc readable, with large x-height, "open letters", wide spacing, +longdesc and thick stems. The style is very similar to the SliTeX font +longdesc lcmss, but heavier. Arev is one of a very small number of +longdesc sans-font mathematics support packages. Others are cmbright, +longdesc hvmath and kerkis. +execute addMap arev.map +containersize 964648 +containerchecksum 8b6e88a41052740831fdfa03299f665fad9eaa0e45d1d235392aa0b849bd6ca03f1e18892c879d3a5289430a5d236b9544d617ea2c3af62a59b38b4d7ff8ce90 +doccontainersize 524172 +doccontainerchecksum a8dcb8bf0fff3be9c99550623f12651df09b151d6e28bee03d7aa80c7b0eb8c86603b4d8037232e4998bc5603ab3dd368ff7a262b7c7f62f2903338774a9b8aa +docfiles size=232 + RELOC/doc/fonts/arev/ArevSansLicense.txt + RELOC/doc/fonts/arev/BitstreamVeraLicense.txt + RELOC/doc/fonts/arev/ChangeLog + RELOC/doc/fonts/arev/GPLv2.txt + RELOC/doc/fonts/arev/LPPLv1-3a.txt + RELOC/doc/fonts/arev/Makefile + RELOC/doc/fonts/arev/README details="Readme" + RELOC/doc/fonts/arev/arevdoc.lyx + RELOC/doc/fonts/arev/arevdoc.pdf details="Package documentation" + RELOC/doc/fonts/arev/arevdoc.tex + RELOC/doc/fonts/arev/fontsample.tex + RELOC/doc/fonts/arev/mathtesty.pdf + RELOC/doc/fonts/arev/mathtesty.tex + RELOC/doc/fonts/arev/prosper-arev.tex + RELOC/doc/fonts/arev/prosper-cmbright.tex + RELOC/doc/fonts/arev/prosper-cmss.tex + RELOC/doc/fonts/arev/prosper-header.tex + RELOC/doc/fonts/arev/prosper-helvetica.tex + RELOC/doc/fonts/arev/prosper-kerkis.tex + RELOC/doc/fonts/arev/prosper-lcmss.tex + RELOC/doc/fonts/arev/prosper-text.tex +srccontainersize 10100 +srccontainerchecksum 6c92c2f3ef59dcb93207ea90643d11aa8cf81850e2696414f489c40cef97737d00ee4444893669f12d4592c6573a71cb229c232b62f10db38195aabbe83fe523 +srcfiles size=25 + RELOC/source/fonts/arev/TODO.txt + RELOC/source/fonts/arev/afmtoglyphlist + RELOC/source/fonts/arev/arevfontinst.tex + RELOC/source/fonts/arev/arevoml.etx + RELOC/source/fonts/arev/arevoms.etx + RELOC/source/fonts/arev/arevot1.etx + RELOC/source/fonts/arev/convert-ff + RELOC/source/fonts/arev/createkerndata + RELOC/source/fonts/arev/enctofontpos + RELOC/source/fonts/arev/fixkernaccents.tex + RELOC/source/fonts/arev/fixweierstrass.mtx + RELOC/source/fonts/arev/fonttokernsfd.ff + RELOC/source/fonts/arev/fonttopfb.ff + RELOC/source/fonts/arev/glyphlistoml.tex + RELOC/source/fonts/arev/glyphlistoms.tex + RELOC/source/fonts/arev/glyphlistot1.tex + RELOC/source/fonts/arev/makefontfiles + RELOC/source/fonts/arev/resetdotlessi.mtx + RELOC/source/fonts/arev/sfdtokernaccent + RELOC/source/fonts/arev/unsetomssymbols.mtx + RELOC/source/fonts/arev/unsetot1symbols.mtx +runfiles size=392 + RELOC/fonts/afm/public/arev/ArevSans-Bold.afm + RELOC/fonts/afm/public/arev/ArevSans-BoldOblique.afm + RELOC/fonts/afm/public/arev/ArevSans-Oblique.afm + RELOC/fonts/afm/public/arev/ArevSans-Roman.afm + RELOC/fonts/enc/dvips/arev/arevoml.enc + RELOC/fonts/enc/dvips/arev/arevoms.enc + RELOC/fonts/enc/dvips/arev/arevot1.enc + RELOC/fonts/map/dvips/arev/arev.map + RELOC/fonts/tfm/public/arev/ArevSans-Bold.tfm + RELOC/fonts/tfm/public/arev/ArevSans-BoldOblique.tfm + RELOC/fonts/tfm/public/arev/ArevSans-Oblique.tfm + RELOC/fonts/tfm/public/arev/ArevSans-Roman.tfm + RELOC/fonts/tfm/public/arev/favb8r.tfm + RELOC/fonts/tfm/public/arev/favb8t.tfm + RELOC/fonts/tfm/public/arev/favbi8r.tfm + RELOC/fonts/tfm/public/arev/favbi8t.tfm + RELOC/fonts/tfm/public/arev/favmb7t.tfm + RELOC/fonts/tfm/public/arev/favmbi7m.tfm + RELOC/fonts/tfm/public/arev/favmr7t.tfm + RELOC/fonts/tfm/public/arev/favmr7y.tfm + RELOC/fonts/tfm/public/arev/favmri7m.tfm + RELOC/fonts/tfm/public/arev/favr8r.tfm + RELOC/fonts/tfm/public/arev/favr8t.tfm + RELOC/fonts/tfm/public/arev/favri8r.tfm + RELOC/fonts/tfm/public/arev/favri8t.tfm + RELOC/fonts/tfm/public/arev/zavmb7t.tfm + RELOC/fonts/tfm/public/arev/zavmbi7m.tfm + RELOC/fonts/tfm/public/arev/zavmr7t.tfm + RELOC/fonts/tfm/public/arev/zavmr7y.tfm + RELOC/fonts/tfm/public/arev/zavmri7m.tfm + RELOC/fonts/type1/public/arev/ArevSans-Bold.pfb + RELOC/fonts/type1/public/arev/ArevSans-BoldOblique.pfb + RELOC/fonts/type1/public/arev/ArevSans-Oblique.pfb + RELOC/fonts/type1/public/arev/ArevSans-Roman.pfb + RELOC/fonts/vf/public/arev/favb8t.vf + RELOC/fonts/vf/public/arev/favbi8t.vf + RELOC/fonts/vf/public/arev/favr8t.vf + RELOC/fonts/vf/public/arev/favri8t.vf + RELOC/fonts/vf/public/arev/zavmb7t.vf + RELOC/fonts/vf/public/arev/zavmbi7m.vf + RELOC/fonts/vf/public/arev/zavmr7t.vf + RELOC/fonts/vf/public/arev/zavmr7y.vf + RELOC/fonts/vf/public/arev/zavmri7m.vf + RELOC/tex/latex/arev/ams-mdbch.sty + RELOC/tex/latex/arev/arev.sty + RELOC/tex/latex/arev/arevmath.sty + RELOC/tex/latex/arev/arevsymbols.tex + RELOC/tex/latex/arev/arevtext.sty + RELOC/tex/latex/arev/omlzavm.fd + RELOC/tex/latex/arev/omszavm.fd + RELOC/tex/latex/arev/ot1zavm.fd + RELOC/tex/latex/arev/t1fav.fd + RELOC/tex/latex/arev/uzavm.fd +catalogue-ctan /fonts/arev +catalogue-license lppl +catalogue-topics font font-sans font-maths + +name arimo +category Package +revision 42880 +shortdesc Arimo sans serif fonts with LaTeX support +relocated 1 +longdesc The Arimo family, designed by Steve Matteson, is an innovative, +longdesc refreshing sans serif design which is metrically compatible +longdesc with Arial. +execute addMap arimo.map +containersize 2905304 +containerchecksum 9dfd102a7a58778bdbea8fc9aa8688dce24bc0a8106121da5f5d57246bc72b4c6c5ac11089a496399dab273680da2b4d2735d40bcd2277b555eca67ff936d991 +doccontainersize 29500 +doccontainerchecksum 481649673936e5a05195b2fbaa7c7a3a702e23ac6998537a7c2b3c53b3a87ef1e1b0234c4254f737ee10bf8809ec03b524ae8e06d3e1ca3bca641d58746afcad +docfiles size=12 + RELOC/doc/fonts/arimo/LICENSE.txt + RELOC/doc/fonts/arimo/README details="Readme" + RELOC/doc/fonts/arimo/arimo-samples.pdf details="Package documentation" + RELOC/doc/fonts/arimo/arimo-samples.tex +runfiles size=1027 + RELOC/fonts/enc/dvips/arimo/arm_7miqnq.enc + RELOC/fonts/enc/dvips/arimo/arm_c3z4r2.enc + RELOC/fonts/enc/dvips/arimo/arm_f4duzd.enc + RELOC/fonts/enc/dvips/arimo/arm_l3opzb.enc + RELOC/fonts/map/dvips/arimo/arimo.map + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ts1.tfm + RELOC/fonts/truetype/google/arimo/Arimo-Bold.ttf + RELOC/fonts/truetype/google/arimo/Arimo-BoldItalic.ttf + RELOC/fonts/truetype/google/arimo/Arimo-Italic.ttf + RELOC/fonts/truetype/google/arimo/Arimo-Regular.ttf + RELOC/fonts/type1/google/arimo/Arimo-Bold.pfb + RELOC/fonts/type1/google/arimo/Arimo-BoldItalic.pfb + RELOC/fonts/type1/google/arimo/Arimo-Italic.pfb + RELOC/fonts/type1/google/arimo/Arimo.pfb + RELOC/fonts/vf/google/arimo/Arimo-Bold-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/arimo/Arimo-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/arimo/Arimo-Italic-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/arimo/Arimo-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-tlf-ts1.vf + RELOC/tex/latex/arimo/LY1Arimo-TLF.fd + RELOC/tex/latex/arimo/OT1Arimo-TLF.fd + RELOC/tex/latex/arimo/T1Arimo-TLF.fd + RELOC/tex/latex/arimo/TS1Arimo-TLF.fd + RELOC/tex/latex/arimo/arimo.sty +catalogue-ctan /fonts/arimo +catalogue-license apache2 +catalogue-topics font font-type1 font-virtual font-ttf + +name armtex +category Package +revision 33894 +shortdesc A system for writing Armenian with TeX and LaTeX +relocated 1 +longdesc ArmTeX is a system for typesetting Armenian text with Plain TeX +longdesc or LaTeX(2e). It may be used with input: from a standard Latin +longdesc keyboard without any special encoding and/or support for +longdesc Armenian letters, any keyboard which uses an encoding that has +longdesc Armenian letters in the second half (characters 128-255) of the +longdesc extended ASCII table (for example ArmSCII8 Armenian standard), +longdesc or encoded in UTF-8. Users should note that the manuals (below) +longdesc mostly describe the previous (version 2.0) of the package. +longdesc Updating work is still under way. +execute addMixedMap arss.map +execute addMixedMap artm.map +containersize 527176 +containerchecksum 9e76f19f3b1bdcc771039d0be62c5745e5605b1838c4d7b2df67b14b1babcecf49fa5abb667b0d106a432919dd08e23e82201a62bb4adfde3c2016aeace79bb1 +doccontainersize 429996 +doccontainerchecksum 8df4b5c1aa4b653869383336594ea3bb960ed8bdc2c413464df1aba607c9c310bcb5e8e63a911fc28113a8770573e510d81c6fcdf84242dcf08dd2da33f7dbf9 +docfiles size=175 + RELOC/doc/generic/armenian/examples/latex/alphabet.tex + RELOC/doc/generic/armenian/examples/latex/manual-e.tex + RELOC/doc/generic/armenian/examples/latex/manual.tex + RELOC/doc/generic/armenian/examples/latex/raffi-a8.tex + RELOC/doc/generic/armenian/examples/latex/raffi-u8.tex + RELOC/doc/generic/armenian/examples/latex/raffi.tex + RELOC/doc/generic/armenian/examples/plain/first.tex + RELOC/doc/generic/armenian/examples/plain/plraf-a8.tex + RELOC/doc/generic/armenian/examples/plain/plraf-u8.tex + RELOC/doc/generic/armenian/examples/plain/plraf.tex + RELOC/doc/generic/armenian/examples/plain/table.tex + RELOC/doc/generic/armenian/manual-e.pdf details="Package manual (English)" language="en" + RELOC/doc/generic/armenian/manual.pdf details="Package manual (Armenian)" language="hy" + RELOC/doc/generic/armenian/readme.txt +runfiles size=525 + RELOC/fonts/afm/public/armenian/arssb10.afm + RELOC/fonts/afm/public/armenian/arssbs10.afm + RELOC/fonts/afm/public/armenian/arssr10.afm + RELOC/fonts/afm/public/armenian/arsssl10.afm + RELOC/fonts/afm/public/armenian/artmb10.afm + RELOC/fonts/afm/public/armenian/artmbi10.afm + RELOC/fonts/afm/public/armenian/artmbs10.afm + RELOC/fonts/afm/public/armenian/artmi10.afm + RELOC/fonts/afm/public/armenian/artmr10.afm + RELOC/fonts/afm/public/armenian/artmsl10.afm + RELOC/fonts/map/dvips/armenian/arss.map + RELOC/fonts/map/dvips/armenian/artm.map + RELOC/fonts/source/public/armenian/arssb10.mf + RELOC/fonts/source/public/armenian/arssbs10.mf + RELOC/fonts/source/public/armenian/arssr10.mf + RELOC/fonts/source/public/armenian/arsssl10.mf + RELOC/fonts/source/public/armenian/artmb10.mf + RELOC/fonts/source/public/armenian/artmbi10.mf + RELOC/fonts/source/public/armenian/artmbs10.mf + RELOC/fonts/source/public/armenian/artmi10.mf + RELOC/fonts/source/public/armenian/artmr10.mf + RELOC/fonts/source/public/armenian/artmsl10.mf + RELOC/fonts/source/public/armenian/ps2mfbas.mf + RELOC/fonts/tfm/public/armenian/arssb10.tfm + RELOC/fonts/tfm/public/armenian/arssbs10.tfm + RELOC/fonts/tfm/public/armenian/arssr10.tfm + RELOC/fonts/tfm/public/armenian/arsssl10.tfm + RELOC/fonts/tfm/public/armenian/artmb10.tfm + RELOC/fonts/tfm/public/armenian/artmbi10.tfm + RELOC/fonts/tfm/public/armenian/artmbs10.tfm + RELOC/fonts/tfm/public/armenian/artmi10.tfm + RELOC/fonts/tfm/public/armenian/artmr10.tfm + RELOC/fonts/tfm/public/armenian/artmsl10.tfm + RELOC/fonts/type1/public/armenian/arssb10.pfb + RELOC/fonts/type1/public/armenian/arssb10.pfm + RELOC/fonts/type1/public/armenian/arssbs10.pfb + RELOC/fonts/type1/public/armenian/arssbs10.pfm + RELOC/fonts/type1/public/armenian/arssr10.pfb + RELOC/fonts/type1/public/armenian/arssr10.pfm + RELOC/fonts/type1/public/armenian/arsssl10.pfb + RELOC/fonts/type1/public/armenian/arsssl10.pfm + RELOC/fonts/type1/public/armenian/artmb10.pfb + RELOC/fonts/type1/public/armenian/artmb10.pfm + RELOC/fonts/type1/public/armenian/artmbi10.pfb + RELOC/fonts/type1/public/armenian/artmbi10.pfm + RELOC/fonts/type1/public/armenian/artmbs10.pfb + RELOC/fonts/type1/public/armenian/artmbs10.pfm + RELOC/fonts/type1/public/armenian/artmi10.pfb + RELOC/fonts/type1/public/armenian/artmi10.pfm + RELOC/fonts/type1/public/armenian/artmr10.pfb + RELOC/fonts/type1/public/armenian/artmr10.pfm + RELOC/fonts/type1/public/armenian/artmsl10.pfb + RELOC/fonts/type1/public/armenian/artmsl10.pfm + RELOC/tex/latex/armenian/armscii8.def + RELOC/tex/latex/armenian/armtex.sty + RELOC/tex/latex/armenian/ot6cmr.fd + RELOC/tex/latex/armenian/ot6cmss.fd + RELOC/tex/latex/armenian/ot6enc.def + RELOC/tex/latex/armenian/ot6enc.dfu + RELOC/tex/plain/armenian/arm.tex + RELOC/tex/plain/armenian/armkb-a8.tex + RELOC/tex/plain/armenian/armkb-u8.tex +catalogue-ctan /language/armenian/armtex +catalogue-license lppl +catalogue-topics armenian format font font-mf font-type1 +catalogue-version 3.0-beta3 + +name around-the-bend +category Package +revision 15878 +shortdesc Typeset exercises in TeX, with answers +relocated 1 +longdesc This is a typeset version of the files of the aro-bend, plus +longdesc three extra questions (with their answers) that Michael Downes +longdesc didn't manage to get onto CTAN. +containersize 472 +containerchecksum 8fdfb83017cafe87778ea8a9e7147d6b73ead7019dfc9dc8b620858a67a2a02991e291d622aefc77723f6faa8a66b132313a100d298a2f6327473df4e0fb17f1 +doccontainersize 450496 +doccontainerchecksum acec7325203a96ab3937cb687e3265b5cdf6d77af5740e1e187f993fcdcbb9db743835e9ab579b6c8b0534311ba94f3d1591330bedf1c2f9eb9e6955ad070f9c +docfiles size=210 + RELOC/doc/generic/around-the-bend/AroundTheBend.pdf details="The document itself" + RELOC/doc/generic/around-the-bend/AroundTheBend.tex + RELOC/doc/generic/around-the-bend/README details="Readme" +catalogue-ctan /info/challenges/AroBend +catalogue-license lppl +catalogue-topics exercise + +name arphic +category Package +revision 15878 +shortdesc Arphic (Chinese) font packages +relocated 1 +longdesc These are font bundles for the Chinese Arphic fonts which work +longdesc with the CJK package. TrueType versions of these fonts for use +longdesc with XeLaTeX and LuaLaTeX are provided by the arphic-ttf +longdesc package. Arphic is actually the name of the company which +longdesc created these fonts (and put them under a GPL-like licence). +execute addMap bkaiu.map +execute addMap bsmiu.map +execute addMap gbsnu.map +execute addMap gkaiu.map +containersize 27383316 +containerchecksum 2d4c0f91dd483df95bf91056e4d7cbc28b681fc9f42704cdbff297ceb4f8110affbed879cc8b15061c309764e1fdcce01fd47c2d742df441ed191f83a065538b +doccontainersize 170068 +doccontainerchecksum 327dbc2cc7b4bad5e410dbb07dd2a2d5052dcb54c98310ffc3596c1e5b4121c1a12e3067b7074f209a3972cb51280f057cfe718eb963869bf05a76e17c528dee +docfiles size=70 + RELOC/doc/fonts/arphic/arphic-sampler.pdf details="Font sampler" + RELOC/doc/fonts/arphic/arphic-sampler.tex + RELOC/doc/fonts/arphic/bkaiu/README + RELOC/doc/fonts/arphic/bsmiu/README + RELOC/doc/fonts/arphic/gbsnu/README + RELOC/doc/fonts/arphic/gkaiu/README +runfiles size=8706 + RELOC/dvips/arphic/config.bkaiu + RELOC/dvips/arphic/config.bsmiu + RELOC/dvips/arphic/config.gbsnu + RELOC/dvips/arphic/config.gkaiu + RELOC/fonts/afm/arphic/bkaiu/bkaiu00.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu02.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu03.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu20.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu21.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu22.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu25.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu26.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu30.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu31.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu32.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu33.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu4e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu4f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu50.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu51.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu52.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu53.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu54.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu55.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu56.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu57.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu58.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu59.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu60.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu61.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu62.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu63.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu64.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu65.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu66.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu67.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu68.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu69.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu70.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu71.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu72.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu73.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu74.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu75.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu76.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu77.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu78.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu79.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu80.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu81.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu82.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu83.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu84.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu85.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu86.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu87.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu88.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu89.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu90.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu91.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu92.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu93.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu94.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu95.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu96.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu97.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu98.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu99.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuee.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuf6.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuf7.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuf8.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiufa.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiufe.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuff.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuv.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu00.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu02.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu03.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu20.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu21.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu22.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu25.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu26.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu30.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu31.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu32.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu33.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu4e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu4f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu50.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu51.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu52.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu53.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu54.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu55.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu56.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu57.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu58.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu59.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu60.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu61.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu62.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu63.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu64.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu65.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu66.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu67.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu68.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu69.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu70.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu71.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu72.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu73.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu74.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu75.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu76.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu77.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu78.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu79.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu80.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu81.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu82.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu83.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu84.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu85.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu86.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu87.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu88.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu89.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu90.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu91.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu92.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu93.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu94.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu95.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu96.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu97.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu98.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu99.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuee.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuf6.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuf7.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuf8.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiufa.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiufe.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuff.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuv.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu00.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu01.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu02.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu03.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu04.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu20.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu21.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu22.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu23.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu24.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu25.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu26.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu30.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu31.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu32.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu4e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu4f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu50.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu51.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu52.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu53.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu54.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu55.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu56.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu57.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu58.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu59.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu60.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu61.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu62.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu63.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu64.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu65.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu66.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu67.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu68.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu69.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu70.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu71.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu72.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu73.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu74.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu75.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu76.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu77.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu78.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu79.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu80.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu81.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu82.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu83.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu84.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu85.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu86.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu87.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu88.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu89.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu90.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu91.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu92.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu93.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu94.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu95.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu96.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu97.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu98.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu99.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnufe.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnuff.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu00.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu01.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu02.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu03.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu04.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu20.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu21.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu22.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu23.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu24.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu25.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu26.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu30.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu31.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu32.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu4e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu4f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu50.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu51.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu52.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu53.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu54.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu55.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu56.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu57.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu58.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu59.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu60.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu61.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu62.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu63.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu64.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu65.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu66.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu67.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu68.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu69.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu70.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu71.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu72.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu73.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu74.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu75.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu76.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu77.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu78.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu79.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu80.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu81.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu82.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu83.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu84.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu85.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu86.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu87.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu88.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu89.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu90.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu91.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu92.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu93.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu94.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu95.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu96.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu97.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu98.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu99.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiufe.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiuff.afm + RELOC/fonts/map/dvips/arphic/bkaiu.map + RELOC/fonts/map/dvips/arphic/bsmiu.map + RELOC/fonts/map/dvips/arphic/gbsnu.map + RELOC/fonts/map/dvips/arphic/gkaiu.map + RELOC/fonts/tfm/arphic/bkaimp/bkaimp00.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp01.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp02.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp03.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp04.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp05.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp06.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp07.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp08.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp09.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp10.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp11.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp12.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp13.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp14.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp15.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp16.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp17.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp18.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp19.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp20.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp21.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp22.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp23.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp25.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp26.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp27.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp28.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp29.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp30.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp31.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp32.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp33.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp34.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp35.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp36.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp37.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp38.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp39.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp40.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp41.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp42.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp43.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp44.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp45.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp46.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp47.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp48.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp49.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp50.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp51.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp52.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp53.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp54.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp55.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimpv.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu00.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu02.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu03.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu20.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu21.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu22.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu25.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu26.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu30.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu31.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu32.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu33.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu4e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu4f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu50.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu51.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu52.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu53.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu54.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu55.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu56.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu57.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu58.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu59.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu60.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu61.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu62.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu63.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu64.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu65.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu66.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu67.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu68.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu69.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu70.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu71.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu72.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu73.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu74.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu75.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu76.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu77.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu78.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu79.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu80.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu81.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu82.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu83.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu84.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu85.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu86.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu87.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu88.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu89.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu90.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu91.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu92.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu93.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu94.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu95.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu96.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu97.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu98.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu99.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuee.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuf6.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuf7.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuf8.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiufa.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiufe.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuff.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuv.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp00.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp01.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp02.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp03.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp04.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp05.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp06.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp07.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp08.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp09.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp10.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp11.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp12.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp13.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp14.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp15.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp16.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp17.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp18.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp19.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp20.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp21.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp22.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp23.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp25.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp26.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp27.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp28.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp29.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp30.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp31.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp32.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp33.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp34.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp35.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp36.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp37.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp38.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp39.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp40.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp41.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp42.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp43.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp44.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp45.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp46.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp47.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp48.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp49.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp50.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp51.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp52.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp53.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp54.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp55.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilpv.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu00.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu02.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu03.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu20.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu21.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu22.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu25.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu26.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu30.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu31.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu32.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu33.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu4e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu4f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu50.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu51.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu52.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu53.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu54.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu55.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu56.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu57.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu58.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu59.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu60.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu61.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu62.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu63.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu64.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu65.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu66.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu67.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu68.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu69.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu70.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu71.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu72.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu73.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu74.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu75.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu76.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu77.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu78.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu79.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu80.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu81.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu82.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu83.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu84.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu85.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu86.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu87.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu88.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu89.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu90.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu91.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu92.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu93.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu94.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu95.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu96.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu97.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu98.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu99.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuee.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuf6.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuf7.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuf8.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiufa.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiufe.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuff.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuv.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp00.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp01.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp02.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp03.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp04.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp06.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp07.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp08.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp09.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp10.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp11.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp12.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp13.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp14.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp15.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp16.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp17.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp18.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp19.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp20.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp21.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp22.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp23.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp24.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp25.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp26.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp27.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp28.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp29.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp30.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp31.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp32.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu00.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu01.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu02.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu03.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu04.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu20.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu21.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu22.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu23.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu24.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu25.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu26.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu30.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu31.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu32.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu4e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu4f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu50.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu51.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu52.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu53.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu54.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu55.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu56.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu57.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu58.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu59.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu60.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu61.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu62.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu63.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu64.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu65.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu66.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu67.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu68.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu69.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu70.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu71.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu72.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu73.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu74.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu75.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu76.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu77.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu78.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu79.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu80.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu81.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu82.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu83.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu84.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu85.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu86.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu87.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu88.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu89.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu90.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu91.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu92.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu93.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu94.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu95.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu96.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu97.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu98.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu99.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnufe.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnuff.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp00.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp01.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp02.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp03.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp04.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp06.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp07.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp08.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp09.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp10.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp11.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp12.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp13.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp14.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp15.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp16.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp17.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp18.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp19.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp20.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp21.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp22.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp23.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp24.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp25.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp26.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp27.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp28.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp29.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp30.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp31.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp32.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu00.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu01.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu02.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu03.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu04.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu20.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu21.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu22.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu23.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu24.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu25.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu26.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu30.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu31.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu32.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu4e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu4f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu50.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu51.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu52.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu53.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu54.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu55.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu56.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu57.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu58.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu59.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu60.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu61.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu62.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu63.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu64.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu65.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu66.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu67.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu68.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu69.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu70.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu71.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu72.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu73.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu74.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu75.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu76.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu77.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu78.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu79.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu80.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu81.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu82.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu83.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu84.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu85.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu86.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu87.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu88.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu89.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu90.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu91.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu92.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu93.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu94.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu95.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu96.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu97.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu98.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu99.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiufe.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiuff.tfm + RELOC/fonts/type1/arphic/bkaiu/bkaiu00.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu02.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu03.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu20.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu21.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu22.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu25.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu26.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu30.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu31.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu32.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu33.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu4e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu4f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu50.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu51.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu52.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu53.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu54.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu55.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu56.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu57.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu58.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu59.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu60.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu61.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu62.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu63.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu64.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu65.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu66.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu67.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu68.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu69.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu70.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu71.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu72.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu73.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu74.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu75.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu76.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu77.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu78.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu79.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu80.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu81.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu82.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu83.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu84.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu85.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu86.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu87.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu88.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu89.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu90.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu91.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu92.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu93.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu94.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu95.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu96.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu97.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu98.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu99.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuee.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuf6.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuf7.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuf8.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiufa.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiufe.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuff.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuv.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu00.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu02.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu03.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu20.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu21.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu22.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu25.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu26.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu30.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu31.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu32.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu33.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu4e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu4f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu50.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu51.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu52.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu53.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu54.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu55.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu56.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu57.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu58.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu59.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu60.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu61.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu62.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu63.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu64.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu65.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu66.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu67.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu68.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu69.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu70.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu71.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu72.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu73.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu74.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu75.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu76.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu77.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu78.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu79.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu80.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu81.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu82.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu83.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu84.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu85.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu86.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu87.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu88.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu89.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu90.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu91.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu92.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu93.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu94.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu95.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu96.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu97.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu98.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu99.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuee.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuf6.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuf7.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuf8.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiufa.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiufe.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuff.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuv.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu00.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu01.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu02.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu03.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu04.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu20.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu21.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu22.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu23.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu24.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu25.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu26.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu30.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu31.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu32.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu4e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu4f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu50.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu51.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu52.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu53.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu54.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu55.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu56.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu57.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu58.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu59.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu60.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu61.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu62.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu63.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu64.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu65.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu66.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu67.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu68.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu69.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu70.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu71.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu72.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu73.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu74.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu75.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu76.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu77.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu78.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu79.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu80.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu81.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu82.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu83.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu84.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu85.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu86.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu87.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu88.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu89.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu90.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu91.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu92.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu93.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu94.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu95.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu96.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu97.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu98.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu99.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnufe.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnuff.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu00.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu01.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu02.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu03.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu04.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu20.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu21.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu22.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu23.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu24.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu25.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu26.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu30.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu31.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu32.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu4e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu4f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu50.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu51.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu52.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu53.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu54.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu55.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu56.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu57.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu58.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu59.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu60.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu61.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu62.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu63.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu64.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu65.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu66.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu67.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu68.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu69.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu70.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu71.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu72.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu73.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu74.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu75.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu76.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu77.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu78.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu79.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu80.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu81.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu82.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu83.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu84.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu85.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu86.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu87.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu88.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu89.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu90.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu91.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu92.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu93.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu94.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu95.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu96.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu97.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu98.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu99.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiufe.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiuff.pfb + RELOC/fonts/vf/arphic/bkaimp/bkaimp00.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp01.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp02.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp03.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp04.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp05.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp06.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp07.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp08.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp09.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp10.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp11.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp12.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp13.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp14.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp15.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp16.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp17.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp18.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp19.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp20.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp21.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp22.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp23.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp25.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp26.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp27.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp28.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp29.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp30.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp31.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp32.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp33.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp34.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp35.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp36.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp37.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp38.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp39.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp40.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp41.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp42.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp43.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp44.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp45.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp46.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp47.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp48.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp49.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp50.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp51.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp52.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp53.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp54.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp55.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimpv.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp00.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp01.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp02.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp03.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp04.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp05.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp06.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp07.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp08.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp09.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp10.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp11.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp12.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp13.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp14.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp15.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp16.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp17.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp18.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp19.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp20.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp21.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp22.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp23.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp25.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp26.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp27.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp28.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp29.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp30.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp31.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp32.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp33.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp34.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp35.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp36.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp37.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp38.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp39.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp40.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp41.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp42.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp43.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp44.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp45.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp46.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp47.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp48.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp49.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp50.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp51.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp52.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp53.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp54.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp55.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilpv.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp00.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp01.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp02.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp03.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp04.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp06.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp07.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp08.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp09.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp10.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp11.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp12.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp13.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp14.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp15.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp16.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp17.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp18.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp19.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp20.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp21.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp22.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp23.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp24.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp25.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp26.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp27.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp28.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp29.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp30.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp31.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp32.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp00.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp01.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp02.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp03.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp04.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp06.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp07.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp08.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp09.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp10.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp11.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp12.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp13.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp14.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp15.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp16.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp17.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp18.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp19.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp20.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp21.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp22.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp23.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp24.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp25.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp26.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp27.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp28.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp29.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp30.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp31.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp32.vf +catalogue-also cjk-fonts arphic-ttf +catalogue-ctan /fonts/arphic +catalogue-license other-free +catalogue-topics font font-cjk font-type1 + +name arphic-ttf +category Package +revision 42675 +shortdesc TrueType version of Chinese Arphic fonts +relocated 1 +longdesc This package provides TrueType versions of the Chinese Arphic +longdesc fonts for use with XeLaTeX and LuaLaTeX. Type1 versions of +longdesc these fonts, for use with pdfLaTeX and the cjk package, are +longdesc provided by the arphic package. Arphic is actually the name of +longdesc the company which created these fonts. +containersize 12663696 +containerchecksum f0559968e2659a4e899bb0ee1e6236f4bf7f4133c96c146a189b42fe0ce7f375ffc5c62efd8acffa68b36c92159c28eb54167a7625b606cf7644c0a072d7f8e9 +doccontainersize 13072 +doccontainerchecksum 000030c21bf1ccd74ebc1c6bf8e46dc5d9f884480b2c31407353a3ff45a4d1072f759e9e31abbe5c9de7dfc68820fa359d42c5e980bfb7e9d408f015f8944aab +docfiles size=20 + RELOC/doc/fonts/arphic-ttf/ANNOUNCE.Big5 + RELOC/doc/fonts/arphic-ttf/ANNOUNCE.GB + RELOC/doc/fonts/arphic-ttf/ARPHICPL.big5 + RELOC/doc/fonts/arphic-ttf/ARPHICPL.gb + RELOC/doc/fonts/arphic-ttf/ARPHICPL.txt + RELOC/doc/fonts/arphic-ttf/README.md details="Readme" + RELOC/doc/fonts/arphic-ttf/changelog.Debian.bkai00mp + RELOC/doc/fonts/arphic-ttf/changelog.Debian.bsmi00lp + RELOC/doc/fonts/arphic-ttf/changelog.Debian.gbsn00lp + RELOC/doc/fonts/arphic-ttf/changelog.Debian.gkai00mp + RELOC/doc/fonts/arphic-ttf/copyright.Debian + RELOC/doc/fonts/arphic-ttf/release.txt +runfiles size=8110 + RELOC/fonts/truetype/public/arphic-ttf/bkai00mp.ttf + RELOC/fonts/truetype/public/arphic-ttf/bsmi00lp.ttf + RELOC/fonts/truetype/public/arphic-ttf/gbsn00lp.ttf + RELOC/fonts/truetype/public/arphic-ttf/gkai00mp.ttf +catalogue-also arphic +catalogue-ctan /fonts/arphic-ttf +catalogue-license other-free +catalogue-topics font font-cjk font-ttf + +name arraycols +category Package +revision 56997 +shortdesc New column types for array and tabular environments +relocated 1 +longdesc This small package provides new column types for array and +longdesc tabular environments, horizontally and vertically centered, or +longdesc with adjusted height for big mathematical expressions. The +longdesc columns width can be fixed or calculated like in tabularx +longdesc environments. Macros for drawing vertical and horizontal rules +longdesc of variable thickness are also provided. +containersize 1316 +containerchecksum 68ee9188b13dfd1e45552fc0845b80df2a497a00af9d70eee726694708b214b9351d7955819d1a9e21deb6873cf5dab90416b05a58ebfcc2d31495992bc989e0 +doccontainersize 459324 +doccontainerchecksum 43c31b4a1cf254891226c796193415d81d299cb0e831e617c61d62728b6bca768cfd813ea4b3b1fb15a702411bebf53bee36e025bf8ae8c287cfed51b90710d1 +docfiles size=113 + RELOC/doc/latex/arraycols/README.md details="Readme" + RELOC/doc/latex/arraycols/arraycols.pdf details="Package documentation" +srccontainersize 6264 +srccontainerchecksum 65a24651f3cfef479b4027a0e3a687b43016bb02f67ffbc69071f57b43914c4f3cb5ade46616b7841df948562ce3b8d9eb051739280181205d68f64f3104b8d8 +srcfiles size=6 + RELOC/source/latex/arraycols/arraycols.dtx + RELOC/source/latex/arraycols/arraycols.ins +runfiles size=1 + RELOC/tex/latex/arraycols/arraycols.sty +catalogue-ctan /macros/latex/contrib/arraycols +catalogue-license lppl1.3 +catalogue-topics table alignment alignment-supp +catalogue-version 1.1 + +name arrayjobx +category Package +revision 18125 +shortdesc Array data structures for (La)TeX +relocated 1 +longdesc This package provides array data structures in (La)TeX, in the +longdesc meaning of the classical procedural programming languages like +longdesc Fortran, Ada or C, and macros to manipulate them. Arrays can be +longdesc mono or bi-dimensional. This is useful for applications which +longdesc require high level programming techniques, like algorithmic +longdesc graphics programmed in the TeX language. The package supersedes +longdesc the arrayjob package. +containersize 2976 +containerchecksum 5cf6573de2bf55c1b75c2a0f38515ecde848dafcc0e5f0e77185ac039d0bcc4049bf6fdef62134ea5e4839570fc20cc6928bc9357bee0c4396f08d714eca8d13 +doccontainersize 436304 +doccontainerchecksum 495f7f8f3265e349e16ad170eeda10296926864084ace743df54f5a4b304da6bc344bce901edc0fca8d835bd0f90943b192b0e16e3a8f5bc81e0f269f2b480a7 +docfiles size=265 + RELOC/doc/generic/arrayjobx/README details="Package Readme" + RELOC/doc/generic/arrayjobx/arrayjob.pdf details="Package documentation" + RELOC/doc/generic/arrayjobx/arrayjob.tex + RELOC/doc/generic/arrayjobx/arrayjobx.pdf + RELOC/doc/generic/arrayjobx/arrayjobx.tex +runfiles size=4 + RELOC/tex/generic/arrayjobx/arrayjob.sty + RELOC/tex/generic/arrayjobx/arrayjobx.sty +catalogue-ctan /macros/generic/arrayjobx +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.04 + +name arraysort +category Package +revision 31576 +shortdesc Sort arrays (or portions of them) +relocated 1 +longdesc The package provides a mechanism for sorting arrays (or +longdesc portions of them); the arrays should have been created using +longdesc the arrayjobx package. +containersize 2056 +containerchecksum 6dd3c6a79c7b7e1f9a0fa29f2d7f4fda8c3aceb0b900c4e42773c81f8a49e84dd62ae24027065cf19cdff93d4addff11d0b25cde62f2d4854b84fec26eb98c61 +doccontainersize 302944 +doccontainerchecksum 1070b880c7bfb6101fa9294ee8d1ab4c61b21af41316ab711c3226173b73249944533cf0594571f90215a46322b1ef07322daf7230d95e7c23bf21650e1d6047 +docfiles size=76 + RELOC/doc/latex/arraysort/Makefile + RELOC/doc/latex/arraysort/README details="Readme" + RELOC/doc/latex/arraysort/arraysort.pdf details="Package documentation" +srccontainersize 10728 +srccontainerchecksum a8a5d1506a5cc9a33f5393ad6dcfa7ee84af9de69d0760d90fc633391cd21f6d274995e372d91f47929b098d64ab5464d7d7cc2454266bc52972b8708e3bec98 +srcfiles size=10 + RELOC/source/latex/arraysort/arraysort.dtx + RELOC/source/latex/arraysort/arraysort.ins +runfiles size=2 + RELOC/tex/latex/arraysort/arraysort.sty +catalogue-ctan /macros/latex/contrib/arraysort +catalogue-license lppl1.2 +catalogue-topics macro-supp +catalogue-version 1.0 + +name arsclassica +category Package +revision 45656 +shortdesc A different view of the ClassicThesis package +relocated 1 +longdesc The package changes some typographical points of the +longdesc ClassicThesis style, by Andre Miede. It enables the user to +longdesc reproduce the look of the guide The art of writing with LaTeX +longdesc (the web page is in Italian). +containersize 2240 +containerchecksum 9c6b32e43ff86bd6f28d23b9aab5dd90a423610b2f3c842462e88985c2ee88eec2e78e05cf3e0b91397009bdd370880df6db642816d7de3bb10a96faf4fa34b2 +doccontainersize 330092 +doccontainerchecksum 84cd0583c074af45837f38c21815019613753890e056109abab3c79c774a7ebe966c35875264998398b18d7a7fc92ac6762dd72726e708193f699e321f296535 +docfiles size=125 + RELOC/doc/latex/arsclassica/ArsClassica.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/arsclassica/ArsClassica.tex + RELOC/doc/latex/arsclassica/Bibliography.bib + RELOC/doc/latex/arsclassica/Changes + RELOC/doc/latex/arsclassica/Chapters/Code.tex + RELOC/doc/latex/arsclassica/Chapters/Fundamentals.tex + RELOC/doc/latex/arsclassica/FrontBackMatter/Acknowledgements.tex + RELOC/doc/latex/arsclassica/FrontBackMatter/Bibliography.tex + RELOC/doc/latex/arsclassica/FrontBackMatter/Contents.tex + RELOC/doc/latex/arsclassica/FrontBackMatter/Titleback.tex + RELOC/doc/latex/arsclassica/FrontBackMatter/Titlepage.tex + RELOC/doc/latex/arsclassica/Graphics/Dolor.jpg + RELOC/doc/latex/arsclassica/Graphics/Ipsum.jpg + RELOC/doc/latex/arsclassica/Graphics/Lorem.jpg + RELOC/doc/latex/arsclassica/Graphics/Sit.jpg + RELOC/doc/latex/arsclassica/Graphics/TFZSuperEllisse.pdf + RELOC/doc/latex/arsclassica/README details="Readme" + RELOC/doc/latex/arsclassica/arsclassica-settings.tex +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-license lppl +catalogue-topics dissertation + +name articleingud +category Package +revision 38741 +shortdesc LaTeX class for articles published in INGENIERIA review +relocated 1 +longdesc The class is for articles published in INGENIERIA review. It is +longdesc derived from the standard LaTeX class article. +containersize 4568 +containerchecksum 30a34052cd9586d4b49d687035ae8bed040cc5bc2d9ebc0d96a035c4c7cc06625877a501e02eda9be5eb79643f009ffa9e8d2bf9d7affecca016ef3c6310a6de +doccontainersize 401792 +doccontainerchecksum a7961a7ce16613d26d714d39bc441400cb37d7013d03684146ee9113d05dd821a23a1eda9f7e89601680959f3b473e31155f24003b5deaf60e069385c0681646 +docfiles size=124 + RELOC/doc/latex/articleingud/README details="Readme" + RELOC/doc/latex/articleingud/articleingud.pdf details="Package documentation (Spanish)" language="es" + RELOC/doc/latex/articleingud/plantilla.tex + RELOC/doc/latex/articleingud/template.tex +srccontainersize 26596 +srccontainerchecksum 1217fbf4951d4e6a11378154cc030b4fa18e7ca6384bd1593e9a8adfb4a4d2a3161bace28c22bd4aa4ba81ff56d1e2d1252d9678ded0c53f8dee6294e8dc1032 +srcfiles size=34 + RELOC/source/latex/articleingud/articleingud.dtx + RELOC/source/latex/articleingud/articleingud.ins +runfiles size=5 + RELOC/tex/latex/articleingud/articleingud.cls +catalogue-ctan /macros/latex/contrib/articleingud +catalogue-license lppl1.2 +catalogue-topics spanish journalpub class +catalogue-version 0.3 + +name arvo +category Package +revision 57213 +shortdesc The Arvo font face with support for LaTeX and pdfLaTeX +relocated 1 +longdesc This package provides the Arvo family of fonts designed by +longdesc Anton Koovit, with support for LaTeX and pdfLaTeX. +execute addMap Arvo.map +containersize 105664 +containerchecksum 3a6236c3f5e07f3ad709c6a5e0f7d2c90574cc897f6f5d470aa1523b537370587b5942e1a8c581fd96e43e80189fb1c7c4a2475823077feeb929ec594a90ffa9 +doccontainersize 56576 +doccontainerchecksum 3d3c6a92159b47e8dd5ae7360c06c8d5db8ccab609dd5f3db47db2ddc9d62badc3e6bd7c881ec5955003ac2b460c550ce56154cb2323ebd2bdb8205318a709ce +docfiles size=18 + RELOC/doc/fonts/arvo/LICENSE.TXT + RELOC/doc/fonts/arvo/README details="Readme" + RELOC/doc/fonts/arvo/arvo-samples.pdf details="Font samples" + RELOC/doc/fonts/arvo/arvo-samples.tex +runfiles size=95 + RELOC/fonts/enc/dvips/arvo/a_6czsg4.enc + RELOC/fonts/enc/dvips/arvo/a_fibvii.enc + RELOC/fonts/enc/dvips/arvo/a_fin2th.enc + RELOC/fonts/enc/dvips/arvo/a_jtfq37.enc + RELOC/fonts/enc/dvips/arvo/a_od575u.enc + RELOC/fonts/enc/dvips/arvo/a_vt66fp.enc + RELOC/fonts/enc/dvips/arvo/a_zmrji7.enc + RELOC/fonts/map/dvips/arvo/Arvo.map + RELOC/fonts/tfm/public/arvo/Arvo-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-tlf-ly1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-tlf-ot1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-tlf-t1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-tlf-t1.tfm + RELOC/fonts/tfm/public/arvo/Arvo-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/arvo/Arvo-tlf-ts1.tfm + RELOC/fonts/truetype/public/arvo/Arvo-Bold.ttf + RELOC/fonts/truetype/public/arvo/Arvo-BoldItalic.ttf + RELOC/fonts/truetype/public/arvo/Arvo-Italic.ttf + RELOC/fonts/truetype/public/arvo/Arvo-Regular.ttf + RELOC/fonts/vf/public/arvo/Arvo-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/arvo/Arvo-Bold-tlf-t1.vf + RELOC/fonts/vf/public/arvo/Arvo-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/arvo/Arvo-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/arvo/Arvo-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/arvo/Arvo-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/arvo/Arvo-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/arvo/Arvo-Italic-tlf-t1.vf + RELOC/fonts/vf/public/arvo/Arvo-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/arvo/Arvo-tlf-ly1.vf + RELOC/fonts/vf/public/arvo/Arvo-tlf-t1.vf + RELOC/fonts/vf/public/arvo/Arvo-tlf-ts1.vf + RELOC/tex/latex/arvo/Arvo.sty + RELOC/tex/latex/arvo/LY1Arvo-TLF.fd + RELOC/tex/latex/arvo/OT1Arvo-TLF.fd + RELOC/tex/latex/arvo/T1Arvo-TLF.fd + RELOC/tex/latex/arvo/TS1Arvo-TLF.fd +catalogue-contact-repository https://github.com/ccebinger/CTAN_Arvo +catalogue-ctan /fonts/arvo +catalogue-license ofl lppl +catalogue-topics font font-body font-serif font-proportional font-ttf font-supp font-t1enc + +name arydshln +category Package +revision 50084 +shortdesc Draw dash-lines in array/tabular +relocated 1 +longdesc The package is to draw dash-lines in array/tabular +longdesc environments. Horizontal lines are drawn by \hdashline and +longdesc \cdashline while vertical ones can be specified as a part of +longdesc the preamble using ':'. The shape of dash-lines may be +longdesc controlled through style parameters or optional arguments. The +longdesc package is compatible with array, colortab, longtable, and +longdesc colortbl. +containersize 9340 +containerchecksum fd676917ccedc39b90b48b531ea4ec5098b70ca854583a3266d4080dc78f59e37a743e63b738be370cb0ca650594d0878ab1f807eb6f55daec17ecead73aa4dd +doccontainersize 834260 +doccontainerchecksum a809e2abfd26b11edaf8a5b23ddf01901f84bbd63b8fed7b6050a4947654ffada95bb697e13250038c6fb93db80dee4faad6d4493f05bb7f4ebb86dc7e9b9698 +docfiles size=223 + RELOC/doc/latex/arydshln/README details="Readme" + RELOC/doc/latex/arydshln/arydshln-man.pdf details="User manual" + RELOC/doc/latex/arydshln/arydshln-man.tex + RELOC/doc/latex/arydshln/arydshln.pdf details="Manual, including code listing" +srccontainersize 53928 +srccontainerchecksum 0be560bb0dac65951b177a34ba45c8199cbe75b64958b71649f09e5e7be73fe091bef6097a9502be80e26bd415f193e00579925b0be0d12bf43adfc0e3963578 +srcfiles size=63 + RELOC/source/latex/arydshln/arydshln.dtx + RELOC/source/latex/arydshln/arydshln.ins +runfiles size=12 + RELOC/tex/latex/arydshln/arydshln.sty +catalogue-ctan /macros/latex/contrib/arydshln +catalogue-license lppl1 +catalogue-topics alignment-supp +catalogue-version 1.76 + +name asaetr +category Package +revision 15878 +shortdesc Transactions of the ASAE +relocated 1 +longdesc A class and BibTeX style for submissions to the Transactions of +longdesc the American Society of Agricultural Engineers. Also included +longdesc is the Metafont source of a slanted Computer Modern Caps and +longdesc Small Caps font. +containersize 13132 +containerchecksum b44fbf1bb916eb9fb01c70a7302ef4028d04c84dc6a89a51c0feaca762da9cc95cc03cce6497e96dd64ad73e812fe59a12adb515ff4f561401131476e7df6214 +doccontainersize 70016 +doccontainerchecksum be0cd70f1b3035477a9b455328a8e167a5042e07634913c0d9efb995286165a1f41c1b86a505b3f23d19ec2f43712328f70085747d692bb97ea968c40ed109b6 +docfiles size=27 + RELOC/doc/latex/asaetr/MANIFEST + RELOC/doc/latex/asaetr/asaetr.bib + RELOC/doc/latex/asaetr/asaetr.pdf details="Package documentation" + RELOC/doc/latex/asaetr/asaetr.tex + RELOC/doc/latex/asaetr/cmcscsl10.mf +runfiles size=14 + RELOC/bibtex/bst/asaetr/asaetr.bst + RELOC/tex/latex/asaetr/asaesub.sty + RELOC/tex/latex/asaetr/asaetr.cls + RELOC/tex/latex/asaetr/asaetr.sty +catalogue-ctan /macros/latex/contrib/asaetr +catalogue-license pd +catalogue-topics journalpub class +catalogue-version 1.0a + +name asapsym +category Package +revision 40201 +shortdesc Using the free ASAP Symbol font with LaTeX and Plain TeX +relocated 1 +longdesc The package provides macros (usable with LaTeX or Plain TeX) +longdesc for using the freely available ASAP Symbol font, which is also +longdesc included. The font is distributed in OpenType format, and makes +longdesc extensive use of OpenType features. Therefore, at this time, +longdesc only XeTeX and LuaTeX are supported. An error message is issued +longdesc if an OTF-capable engine is not detected. +containersize 47244 +containerchecksum 9a683044f23fdec0547199afbc0f0c6c9de8faf01f09df38de324f53e91f446de867e951e187ec77bd63cc65bb92ba2fd7bc290d54650ce24e02b682cd10a941 +doccontainersize 120516 +doccontainerchecksum 4462b37c6575ba0f3e95c29e1d84eafaadc562da19ec58a604bb6ef677fb9b9d35fa68a6f2c81d8dafc35dec9f904cee9d3fdfe0c2031de928862324e83d8663 +docfiles size=31 + RELOC/doc/fonts/asapsym/README.md details="Readme" + RELOC/doc/fonts/asapsym/asapsym.pdf details="Package documentation" +srccontainersize 5968 +srccontainerchecksum 54325810653a14ba0ebe67b92341fa151e5bade3ba23e97c67c2bada6bf43ab16d5e0d11eb4c59075c48bddd9eebe44ddbca5accc331e6b26081abbdb95e3e86 +srcfiles size=6 + RELOC/source/fonts/asapsym/asapsym.dtx + RELOC/source/fonts/asapsym/asapsym.ins +runfiles size=20 + RELOC/fonts/opentype/omnibus-type/asapsym/Asap-Symbol.otf + RELOC/tex/generic/asapsym/asapsym-generic.tex + RELOC/tex/latex/asapsym/asapsym.sty + RELOC/tex/plain/asapsym/asapsym.code.tex +catalogue-contact-repository https://github.com/pdgessler/asapsym +catalogue-ctan /fonts/asapsym +catalogue-license lppl1.3 +catalogue-topics font-symbol font-otf +catalogue-version 1.0 + +name ascelike +category Package +revision 29129 +shortdesc Bibliography style for the ASCE +relocated 1 +longdesc A document class and bibliographic style that prepares +longdesc documents in the style required by the American Society of +longdesc Civil Engineers (ASCE). These are unofficial files, not +longdesc sanctioned by that organization, and the files specifically +longdesc give this caveat. Also included is a short +longdesc documentation/example of how to use the class. +containersize 13296 +containerchecksum d8c9d69ac49e632b7b303c0fcff53762f6d40a490aa1655f58525e192481b65b50912867b1cb16c9aba1d93483a6a2bd31e586683819a7f2b3db7439d46deadc +doccontainersize 111104 +doccontainerchecksum 0283fa497b53dc3a0d60960bd45945dd9b363c53a563139e911b8bb017a6f0ea7f46a95811812a679fe1ac5327c52e73f4aba35d26160041c61a1cb5597c880d +docfiles size=40 + RELOC/doc/latex/ascelike/README details="Readme" + RELOC/doc/latex/ascelike/ascexmpl.bib + RELOC/doc/latex/ascelike/ascexmpl.pdf details="Example output" + RELOC/doc/latex/ascelike/ascexmpl.tex +runfiles size=16 + RELOC/bibtex/bst/ascelike/ascelike.bst + RELOC/tex/latex/ascelike/ascelike.cls +catalogue-ctan /macros/latex/contrib/ascelike +catalogue-license lppl +catalogue-topics confproc journalpub class +catalogue-version 2.3 + +name ascii-chart +category Package +revision 20536 +shortdesc An ASCII wall chart +relocated 1 +longdesc The document may be converted between Plain TeX and LaTeX +longdesc (2.09) by a simple editing action. +containersize 412 +containerchecksum ffc1634e3e5313eb0cf04caaa227d6477cf81ba9b6eb887b2897b6740999f1f338b2dc53e6da735876f9c3b130394be59b0a285309d61909a73fdb0d6f28a8cc +doccontainersize 26064 +doccontainerchecksum 51b11a22dd963336fd93a87e2948d05f291b4191253a474b9d6f70ec31a2645801fb5f6fb6238f6a9b2979dbaba4a6ec8ac15a41c4e8867645dfa54408f18373 +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-license lppl1.3 +catalogue-topics documentation + +name ascii-font +category Package +revision 29989 +shortdesc Use the ASCII "font" in LaTeX +relocated 1 +longdesc The package provides glyph and font access commands so that +longdesc LaTeX users can use the ASCII glyphs in their documents. The +longdesc ASCII font is encoded according to the IBM PC Code Page 437 C0 +longdesc Graphics. This package replaces any early LaTeX 2.09 package +longdesc and "font" by R. Ramasubramanian and R.W.D. Nickalls. +execute addMap ascii.map +containersize 49000 +containerchecksum e92e312e38432a7294c71a76604e5a3c2aa6b65937d39933fcbc9fc9b61e00a1e2f35ba739f64c29a3ebf6d2e388cd29da384a2a6456f71576101a1f12e36f0d +doccontainersize 556 +doccontainerchecksum 2d681a41d213fe260e3491a3b410239fa2e025ba19894d133a27e47b417ccf27648aa13ae431b4c42549c1692cbe517f2595c2de675b14d9ea0460d469e4f036 +docfiles size=1 + RELOC/doc/fonts/ascii-font/README.TEXLIVE +srccontainersize 4448 +srccontainerchecksum 1bbadf44599ad29f843ef17d1b437f951f5b167e9bf84a73600a0a9dc5633d94d76c91ec23493250ac894d9114c1b2d1d1f182690aef5dea92c9ec51c96e69a9 +srcfiles size=5 + RELOC/source/fonts/ascii-font/ascii.dtx + RELOC/source/fonts/ascii-font/ascii.ins +runfiles size=17 + RELOC/fonts/map/dvips/ascii-font/ascii.map + RELOC/fonts/tfm/public/ascii-font/ASCII.tfm + RELOC/fonts/type1/public/ascii-font/ASCII.pfb + RELOC/tex/latex/ascii-font/ascii.sty +catalogue-ctan /fonts/ascii +catalogue-license lppl +catalogue-topics font font-symbol font-type1 +catalogue-version 2.0 + +name asciilist +category Package +revision 49060 +shortdesc Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX +relocated 1 +longdesc The asciilist provides the environments AsciiList and +longdesc AsciiDocList, which enable quickly typesetting nested lists in +longdesc LaTeX without having to type individual item macros or +longdesc opening/closing list environments. The package provides +longdesc auxiliary functionality for loading such lists from files and +longdesc provides macros for configuring the use of the list +longdesc environments and the appearance of the typeset results. +containersize 3104 +containerchecksum 5c2e7938a9d2df31477cc976cfb549103c8f378a8d38a3624d3449229861fd834d462163df6e2e1f1fec686f513c6a194ccae9fcd0991820b357e12a1c32af28 +doccontainersize 383824 +doccontainerchecksum 8602a9f8e5dc04a6d4a914f603e04ced8f5cef55c5a335087b8f0953d19d4641d43ef732ce299ea18590de89e2360a8dddb44f8ae76be6498ccfd29e4a680746 +docfiles size=98 + RELOC/doc/latex/asciilist/AsciiDocList.example + RELOC/doc/latex/asciilist/AsciiList.example + RELOC/doc/latex/asciilist/README.md details="Readme" + RELOC/doc/latex/asciilist/asciilist.pdf details="Package documentation" +srccontainersize 14092 +srccontainerchecksum 562efdf7665916bc124f8d2ada2d7087ffebb23885df6c3baa652ef24b8fb7ba7e2f4a5880922066b9f5c44bdb9c70ea67537c79676c9fb7004d2ce1f6c0d6b9 +srcfiles size=16 + RELOC/source/latex/asciilist/asciilist.dtx + RELOC/source/latex/asciilist/asciilist.ins +runfiles size=3 + RELOC/tex/latex/asciilist/asciilist.sty +catalogue-ctan /macros/latex/contrib/asciilist +catalogue-license lppl1.2 +catalogue-topics list list-bull list-descr list-enum list-supp +catalogue-version 2.2b + +name ascmac +category Package +revision 53411 +shortdesc Boxes and picture macros with Japanese vertical writing support +relocated 1 +longdesc The bundle provides boxes and picture macros with Japanese +longdesc vertical writing support. It uses only native picture macros +longdesc and fonts for drawing boxes and is thus driver-independent. +longdesc Formerly part of the Japanese pLaTeX bundle, it now supports +longdesc all LaTeX engines. +execute addMap ascmac.map +containersize 16656 +containerchecksum f03ff628aced70ac2406863aa4b23eac26cf47fa09ee377ba78a8df3af633ac1f3fad8d005022c1555d957ec9d84f98eebf2dc97b296713a2edf5f0060d4180e +doccontainersize 159960 +doccontainerchecksum e35257d0992717350e78e611f31f864651a1762dcefb76ba60510180de177fab02f634423b0f3c78c03394fe0eeb6191db0d534190d4f168922263526a85b1b9 +docfiles size=42 + RELOC/doc/latex/ascmac/LICENSE + RELOC/doc/latex/ascmac/README.md details="Readme" + RELOC/doc/latex/ascmac/ascmac.pdf details="Package documentation (Japanese)" language="ja" +srccontainersize 9012 +srccontainerchecksum 3613b89f600ca51f1234f711816d041c4a3c58f72217b299505d90d0b7316606b3015c43edf3546fe93625dc628f232179ddcb0dce7a2f26375b93af7e6e7171 +srcfiles size=9 + RELOC/source/latex/ascmac/Makefile + RELOC/source/latex/ascmac/ascmac.dtx + RELOC/source/latex/ascmac/ascmac.ins +runfiles size=19 + RELOC/fonts/map/dvips/ascmac/ascmac.map + RELOC/fonts/source/public/ascmac/ascgrp.mf + RELOC/fonts/source/public/ascmac/ascii.mf + RELOC/fonts/source/public/ascmac/ascii10.mf + RELOC/fonts/source/public/ascmac/ascii36.mf + RELOC/fonts/tfm/public/ascmac/ascgrp.tfm + RELOC/fonts/tfm/public/ascmac/ascii10.tfm + RELOC/fonts/tfm/public/ascmac/ascii36.tfm + RELOC/fonts/type1/public/ascmac/ascgrp.pfb + RELOC/fonts/type1/public/ascmac/ascii10.pfb + RELOC/fonts/type1/public/ascmac/ascii36.pfb + RELOC/tex/latex/ascmac/ascmac.sty + RELOC/tex/latex/ascmac/tascmac.sty +catalogue-contact-repository https://github.com/texjporg/ascmac +catalogue-ctan /macros/latex/contrib/ascmac +catalogue-license bsd3 +catalogue-topics boxing japanese +catalogue-version 2.1 + +name askinclude +category Package +revision 54725 +shortdesc Interactive use of \includeonly +relocated 1 +longdesc The package asks the user which files to put in a \includeonly +longdesc command. There is provision for answering "same as last time" +longdesc or "all files". +containersize 4364 +containerchecksum 828a18ff7c2d997f25b46b9ce8626a749ce1a18989a292f7f44e9eff0c28d5819e6e017398e76a6872da6498a4ff8306d8f8e701b87b80f57f455d28389f7aa8 +doccontainersize 591304 +doccontainerchecksum a06a9170ad1637c35a25c9a0d89f3721ec350a0053cb5b85374fdb5cc67e7d4653e75c2a5f9b47d19700e3e9ab2d70e5c0c419f68715e664185bd30759dc0291 +docfiles size=148 + RELOC/doc/latex/askinclude/README.md + RELOC/doc/latex/askinclude/askinclude.bib + RELOC/doc/latex/askinclude/askinclude.pdf details="Package documentation" +srccontainersize 12216 +srccontainerchecksum 909effe3b7569cdd4a4a1fd7db12cfafab6c1ddc0987709199a051696b447f9b57ea0bece52efc28f41f49e2b81611e14e975cf93a2d5e4b1c202f84b9702569 +srcfiles size=14 + RELOC/source/latex/askinclude/askinclude.dtx +runfiles size=5 + RELOC/tex/latex/askinclude/askinclude.sty +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-license lppl1.3 +catalogue-topics compilation +catalogue-version 2.7 + +name askmaps +category Package +revision 56730 +shortdesc Typeset American style Karnaugh maps +relocated 1 +longdesc The package provides 1, 2, 3, 4 and 5 variable Karnaugh maps, +longdesc in the style used in numerous American textbooks on digital +longdesc design. The package draws K-maps where the most significant +longdesc input variables are placed on top of the columns and the least +longdesc significant variables are placed left of the rows. +containersize 3312 +containerchecksum 0f4d91a15053d40d329744c429540075c33e2098f6d9d07eccc5ad16c5696233dd01de89c61a7090dc127c3730ef04e24f8d56845919cd268ec8c0bc68d9c09f +doccontainersize 384640 +doccontainerchecksum 268915d685c8bea4388055487ca0d30418557babd01547457449085e58d639bb17787b6b5c97fa99301555afa9d9d11754196cd2b1dbf48b642b05a835b383b0 +docfiles size=104 + RELOC/doc/latex/askmaps/README details="Readme" + RELOC/doc/latex/askmaps/askmaps.pdf details="Package documentation" + RELOC/doc/latex/askmaps/askmaps.tex +runfiles size=6 + RELOC/tex/latex/askmaps/askmaps.sty +catalogue-also karnaugh +catalogue-contact-repository https://github.com/jesseopdenbrouw/askmaps +catalogue-ctan /macros/latex/contrib/askmaps +catalogue-license lppl +catalogue-topics engineering maths +catalogue-version 0.2 + +name asmeconf +category Package +revision 57833 +shortdesc A LaTeX template for ASME conference papers +relocated 1 +longdesc The asmeconf class provides a LaTeX template for ASME +longdesc conference papers, following ASME's guidelines for margins, +longdesc fonts, headings, captions, and reference formats as of 2021. +longdesc This LaTeX template is intended to be used with the +longdesc asmeconf.bst BibTeX style, for reference formatting, which is +longdesc part of this distribution. Unlike older ASME conference LaTeX +longdesc templates, asmeconf pdfs will contain hyperlinks, bookmarks, +longdesc and metadata; and the references can include the DOI and URL +longdesc fields. This LaTeX template enables inline author names, +longdesc following ASME's current style, but it can also produce the +longdesc traditional grid style. Options include line numbering, final +longdesc column balancing, various math options, government copyright, +longdesc archivability (PDF/A), and multilingual support. The code is +longdesc compatible with pdfLaTeX or LuaLaTeX. This LaTeX template is +longdesc not a publication of ASME, but it does conform to ASME's +longdesc currently published guidelines for conference papers. +containersize 24956 +containerchecksum c9a11e0e1d2fb5ef9c674b571bf8de631fd1b329fef165cd5a1a0028f80a9447757bb769b743c69e29405b1688ae292110cf958f6bfc9092026a3277bcd78b8d +doccontainersize 1473344 +doccontainerchecksum 11db98dc9a9556e7e03b5b5e5284b19ef97c295ba3f21a9e3e0ee2cac712d81a9bbc485b27133f8f2bba158037d4388c1bfbf4dde241715a2386b564a51c45f0 +docfiles size=793 + RELOC/doc/latex/asmeconf/README.md details="Readme" + RELOC/doc/latex/asmeconf/asmeconf-sample.bib + RELOC/doc/latex/asmeconf/asmeconf-template.pdf details="Example of use" + RELOC/doc/latex/asmeconf/asmeconf-template.tex + RELOC/doc/latex/asmeconf/examples/CONTRACTOR-copyright-asmeconf-template.pdf + RELOC/doc/latex/asmeconf/examples/GOVT-copyright-asmeconf-template.pdf + RELOC/doc/latex/asmeconf/examples/asmeconf-authorgrid-example.pdf + RELOC/doc/latex/asmeconf/examples/asmeconf-authorgrid-example.tex + RELOC/doc/latex/asmeconf/examples/asmeconf-fontspec.pdf + RELOC/doc/latex/asmeconf/examples/asmeconf-fontspec.tex + RELOC/doc/latex/asmeconf/examples/asmeconf-lualatex-ode-example.pdf + RELOC/doc/latex/asmeconf/examples/asmeconf-lualatex-ode-example.tex + RELOC/doc/latex/asmeconf/sample-figure-1.pdf + RELOC/doc/latex/asmeconf/sample-figure-2a.pdf + RELOC/doc/latex/asmeconf/sample-figure-2b.pdf +runfiles size=28 + RELOC/bibtex/bst/asmeconf/asmeconf.bst + RELOC/tex/latex/asmeconf/asmeconf.cls +catalogue-contact-bugs https://github.com/John02139/asmeconf/issues +catalogue-contact-support https://github.com/John02139/asmeconf/issues +catalogue-ctan /macros/latex/contrib/asmeconf +catalogue-license mit +catalogue-topics bibtex-sty class confproc engineering scientific-docs +catalogue-version 1.26 + +name asmejour +category Package +revision 57598 +shortdesc A template for ASME journal papers +relocated 1 +longdesc The asmejour class provides a template to format preprints +longdesc submitted to ASME journals. The layout and reference formats +longdesc closely follow the style that is currently being used for +longdesc published papers. The class is intended to be used with the +longdesc asmejour.bst BibTeX style, which is part of this distribution. +longdesc Unlike older ASME LaTeX templates, asmejour pdfs will contain +longdesc hyperlinks, bookmarks, and metadata, and references can include +longdesc the DOI and URL fields. Options include line numbering, final +longdesc column balancing, various math options, government copyright, +longdesc and archivability (PDF/A). The class is compatible with +longdesc pdfLaTeX or LuaLaTeX. This package is not a publication of +longdesc ASME. +containersize 20036 +containerchecksum 9453ee840ea08b6987c40df52f5b011f57642b5e1ee464a52308febbed71c3c3fb8953d2bdf98bb575900005aaa0cc6ea4146b930be5fb2f309474ad5002f39e +doccontainersize 623880 +doccontainerchecksum 2322b31e9c1d619c0e4eee7336aeb37a22d9d3c86684044c318762a3a2887c02bab2a7eb86a512e222f22955c568b587442c15c79e77c205dbf50914e8b9c682 +docfiles size=249 + RELOC/doc/latex/asmejour/README.md details="Readme" + RELOC/doc/latex/asmejour/asmejour-sample.bib + RELOC/doc/latex/asmejour/asmejour-template.pdf details="Example of use" + RELOC/doc/latex/asmejour/asmejour-template.tex + RELOC/doc/latex/asmejour/sample-figure-1.pdf + RELOC/doc/latex/asmejour/sample-figure-2a.pdf + RELOC/doc/latex/asmejour/sample-figure-2b.pdf +runfiles size=20 + RELOC/bibtex/bst/asmejour/asmejour.bst + RELOC/tex/latex/asmejour/asmejour.cls +catalogue-ctan /macros/latex/contrib/asmejour +catalogue-license mit +catalogue-topics class journalpub scientific-docs bibtex-sty engineering +catalogue-version 1.15 + +name aspectratio +category Package +revision 25243 +shortdesc Capital A and capital R ligature for Aspect Ratio +relocated 1 +longdesc The package provides fonts (both as Adobe Type 1 format, and as +longdesc Metafont source) for the 'AR' symbol (for Aspect Ratio) used by +longdesc aeronautical scientists and engineers. Note that the package +longdesc supersedes the package ar +execute addMap aspectratio.map +containersize 65600 +containerchecksum 1447c3037f5477aeadfe3e5fe18a004ffa1b8c5c18b7c68295b8065e32c5a3e6a044e7f9868bafe3d8b81e391b2c614e2153302ef34e1e4aabe84c92ada2f129 +doccontainersize 337268 +doccontainerchecksum 5ee4918a3d90e9e4b51a2985352133331b77a8a87bdd8d41fab9348e5c548670ab56b5f0afc63756b65fdb6e45aa7594335995ac0d146d542b571eefbaa84d78 +docfiles size=86 + RELOC/doc/latex/aspectratio/ar.pdf details="Package documentation" + RELOC/doc/latex/aspectratio/ar.tex +runfiles size=82 + RELOC/fonts/map/dvips/aspectratio/aspectratio.map + RELOC/fonts/source/public/aspectratio/ar10.mf + RELOC/fonts/source/public/aspectratio/ar12.mf + RELOC/fonts/source/public/aspectratio/ar6.mf + RELOC/fonts/source/public/aspectratio/ar7.mf + RELOC/fonts/source/public/aspectratio/ar8.mf + RELOC/fonts/source/public/aspectratio/ar9.mf + RELOC/fonts/source/public/aspectratio/arb10.mf + RELOC/fonts/source/public/aspectratio/arb12.mf + RELOC/fonts/source/public/aspectratio/arb5.mf + RELOC/fonts/source/public/aspectratio/arb6.mf + RELOC/fonts/source/public/aspectratio/arb7.mf + RELOC/fonts/source/public/aspectratio/arb8.mf + RELOC/fonts/source/public/aspectratio/arb9.mf + RELOC/fonts/source/public/aspectratio/arssbi10.mf + RELOC/fonts/source/public/aspectratio/arssi10.mf + RELOC/fonts/source/public/aspectratio/artti10.mf + RELOC/fonts/tfm/public/aspectratio/amarbi.tfm + RELOC/fonts/tfm/public/aspectratio/amarri.tfm + RELOC/fonts/tfm/public/aspectratio/aparbi.tfm + RELOC/fonts/tfm/public/aspectratio/aparri.tfm + RELOC/fonts/tfm/public/aspectratio/ar10.tfm + RELOC/fonts/tfm/public/aspectratio/ar12.tfm + RELOC/fonts/tfm/public/aspectratio/ar5.tfm + RELOC/fonts/tfm/public/aspectratio/ar6.tfm + RELOC/fonts/tfm/public/aspectratio/ar7.tfm + RELOC/fonts/tfm/public/aspectratio/ar8.tfm + RELOC/fonts/tfm/public/aspectratio/ar9.tfm + RELOC/fonts/tfm/public/aspectratio/arb10.tfm + RELOC/fonts/tfm/public/aspectratio/arb12.tfm + RELOC/fonts/tfm/public/aspectratio/arb5.tfm + RELOC/fonts/tfm/public/aspectratio/arb6.tfm + RELOC/fonts/tfm/public/aspectratio/arb7.tfm + RELOC/fonts/tfm/public/aspectratio/arb8.tfm + RELOC/fonts/tfm/public/aspectratio/arb9.tfm + RELOC/fonts/tfm/public/aspectratio/arssbi10.tfm + RELOC/fonts/tfm/public/aspectratio/arssi10.tfm + RELOC/fonts/tfm/public/aspectratio/artti10.tfm + RELOC/fonts/type1/public/aspectratio/amarbi.pfb + RELOC/fonts/type1/public/aspectratio/amarri.pfb + RELOC/fonts/type1/public/aspectratio/ar10.pfb + RELOC/fonts/type1/public/aspectratio/ar12.pfb + RELOC/fonts/type1/public/aspectratio/ar5.pfb + RELOC/fonts/type1/public/aspectratio/ar6.pfb + RELOC/fonts/type1/public/aspectratio/ar7.pfb + RELOC/fonts/type1/public/aspectratio/ar8.pfb + RELOC/fonts/type1/public/aspectratio/ar9.pfb + RELOC/fonts/type1/public/aspectratio/arb10.pfb + RELOC/fonts/type1/public/aspectratio/arb12.pfb + RELOC/fonts/type1/public/aspectratio/arb5.pfb + RELOC/fonts/type1/public/aspectratio/arb6.pfb + RELOC/fonts/type1/public/aspectratio/arb7.pfb + RELOC/fonts/type1/public/aspectratio/arb8.pfb + RELOC/fonts/type1/public/aspectratio/arb9.pfb + RELOC/fonts/type1/public/aspectratio/arssbi10.pfb + RELOC/fonts/type1/public/aspectratio/arssi10.pfb + RELOC/fonts/type1/public/aspectratio/artti10.pfb + RELOC/tex/latex/aspectratio/ar.sty +catalogue-ctan /macros/latex/contrib/aspectratio +catalogue-license lppl +catalogue-topics font font-specialist font-type1 font-mf +catalogue-version 2.0 + +name assignment +category Package +revision 20431 +shortdesc A class file for typesetting homework and lab assignments +relocated 1 +longdesc A class file for typesetting homework and lab assignments. +containersize 1924 +containerchecksum 5b8ceaa313eccffff8930b4e1896c7aa069664244623baae2aa1eb3555786dfeb8af8245e56ca149754093f6d74d6b86c891cb9e52e67c7b76e2501ac206658e +doccontainersize 81860 +doccontainerchecksum 49198297494adbb538385029d41681e55bf64c89fc9cee7d923b7ba9849c039a7e5aa2c1fbfc15f06c1a93a3b694899ffd8988d1833fd88c6f5dd51379289a14 +docfiles size=30 + RELOC/doc/latex/assignment/Changelog + RELOC/doc/latex/assignment/LICENSE + RELOC/doc/latex/assignment/README details="Package README" + RELOC/doc/latex/assignment/assignment.pdf details="Package documentation, as an assignment" + RELOC/doc/latex/assignment/assignment.tex +runfiles size=2 + RELOC/tex/latex/assignment/assignment.cls +catalogue-ctan /macros/latex/contrib/assignment +catalogue-license lppl +catalogue-topics essay class + +name assoccnt +category Package +revision 38497 +shortdesc Associate counters, making them step when a master steps +relocated 1 +longdesc The package provides the means of declaring a set of counters +longdesc to be stepped, each time some 'master' counter is stepped. +containersize 4036 +containerchecksum 24dd03f444ff4dd627a97840837cb14288e9021117f93fbbdc4f79cbac9cab46d43fb93769d2f05970eeef3fafd39692eefe5d1b7bec8ae04f6078d7a4b48824 +doccontainersize 353364 +doccontainerchecksum 195f1f017fe187a224bde969f45b6494007e4d05ab2e8618b62e8d40055b4ef401f5ef069c3bd1af25f8a9f5e1ad1cba22923e4d615d4f075e13a78a06752e9c +docfiles size=100 + RELOC/doc/latex/assoccnt/README details="Readme" + RELOC/doc/latex/assoccnt/assoccnt_doc.pdf details="Package documentation" + RELOC/doc/latex/assoccnt/assoccnt_doc.tex + RELOC/doc/latex/assoccnt/assoccnt_example.pdf details="Example of use" + RELOC/doc/latex/assoccnt/assoccnt_example.tex +runfiles size=5 + RELOC/tex/latex/assoccnt/assoccnt.sty +catalogue-also xassoccnt +catalogue-ctan /macros/latex/contrib/assoccnt +catalogue-license lppl1.3 +catalogue-topics counter-mgmt macro-supp +catalogue-version 0.8 + +name association-matrix +category Package +revision 56759 +shortdesc LaTeX support for creating association matrices +relocated 1 +longdesc This package allows the creation of association matrices in an +longdesc clear and concise fashion, without having to deal with manually +longdesc generating and modifying the tables while working. All you have +longdesc to do is define the rows and the columns by their unique +longdesc identifier, and then specify which cells should be marked as +longdesc associated. Then, the \amxgenerate command generates a table +longdesc that shows in the cells with a blip (*) where the association +longdesc was added. The package depends on etoolbox, forloop, ifthen, +longdesc textcomp, and xparse. +containersize 3600 +containerchecksum 1f33388d8d9230fb11dc1318cb9c189fb7c14ef7404193d1df35e83863869ab8cd7f918bef8fcfdcadbff29b3c20db7309026d0ee3935e78db0f5e3365f065ae +doccontainersize 251108 +doccontainerchecksum d22756e5fcb921c6f0e80c6d0f5322dda0be1a52a5de60b2a0d7ca719b4d92e4039c395e06f7b4a6fa080aed59e4c4c30ae9ace8139963943134048cc40e6c94 +docfiles size=71 + RELOC/doc/latex/association-matrix/DEPENDS.txt + RELOC/doc/latex/association-matrix/LICENCE + RELOC/doc/latex/association-matrix/README.md details="Readme" + RELOC/doc/latex/association-matrix/association-matrix.pdf details="Package documentation" + RELOC/doc/latex/association-matrix/association-matrix.tex +runfiles size=4 + RELOC/tex/latex/association-matrix/association-matrix.sty +catalogue-contact-bugs http://github.com/whisperity/association-matrix/issues +catalogue-contact-repository http://github.com/whisperity/association-matrix +catalogue-ctan /macros/latex/contrib/association-matrix +catalogue-license lppl1.3c +catalogue-topics table matrix expl3 +catalogue-version 1.0 + +name astro +category Package +revision 15878 +shortdesc Astronomical (planetary) symbols +relocated 1 +longdesc Astrosym is a font containing astronomical symbols, including +longdesc those used for the planets, four planetoids, the phases of the +longdesc moon, the signs of the zodiac, and some additional symbols. The +longdesc font is distributed as Metafont source. +containersize 12824 +containerchecksum 8cf59f7de3ea5add30166fcd4284279582cbe6199bcb1ebd540688d03c03ccf03aa740602cfad11af9380d970ed7009e6bfb4e96c56d26036f872e82c02739b6 +doccontainersize 4220 +doccontainerchecksum df4a06e10e9a438393c7e22f746618c5d760a6095e285acd0b2918f58e234a1eeca9b49597d381a113cdcbff0f13e4c7108b9b400afc81e81757f4400ea484f9 +docfiles size=3 + RELOC/doc/fonts/astro/astrosym.tex + RELOC/doc/fonts/astro/astrosym.txt details="Detailed description" +runfiles size=21 + RELOC/fonts/source/public/astro/astrosym.cal + RELOC/fonts/source/public/astro/astrosym.cmn + RELOC/fonts/source/public/astro/astrosym.mac + RELOC/fonts/source/public/astro/astrosym.mf + RELOC/fonts/source/public/astro/astrosym.uni + RELOC/fonts/source/public/astro/astrosym.xtr + RELOC/fonts/tfm/public/astro/astrosym.tfm +catalogue-ctan /fonts/astro +catalogue-license lppl +catalogue-topics astronomy font font-mf +catalogue-version 2.20 + +name asyfig +category Package +revision 17512 +shortdesc Commands for using Asymptote figures +relocated 1 +longdesc The package provides a means of reading Asymptote figures from +longdesc separate files, rather than within the document, as is standard +longdesc in the asymptote package, which is provided as part of the +longdesc Asymptote bundle. The asymptote way can prove cumbersome in a +longdesc large document; the present package allows the user to process +longdesc one picture at a time, in simple test documents, and then to +longdesc migrate (with no fuss) to their use in the target document. +containersize 3228 +containerchecksum f067e6aa1f3cb481e07f59781fb7d4c671a0b21a392ca7830d7fa19ed7a198fefd5ad5104ed3644eed484100871f9a8d36d1ae6e31d55487e4ff2846df618e9b +doccontainersize 214116 +doccontainerchecksum d798066b8c545ef385a75c81d431c169668bd10ad072bc3e0ef1db7c0df903d51e9dd9ac2d482d109b421a868e9cbff577c18f52a7b4520b32985fafcddb66ec +docfiles size=76 + RELOC/doc/latex/asyfig/README details="Readme" + RELOC/doc/latex/asyfig/asyfig.pdf details="Package documentation" + RELOC/doc/latex/asyfig/example/frf.asy + RELOC/doc/latex/asyfig/example/test-asyfig.tex +srccontainersize 6596 +srccontainerchecksum 0a62a885334ec00b04e47ce4df391d170f286cd90e7d68d940d0f3ec09018ef87f49ca793508592cc92268c1346ae48a54be65ee601f2dad7dca82778c9f7e39 +srcfiles size=6 + RELOC/source/latex/asyfig/asyfig.ins + RELOC/source/latex/asyfig/asyfig.tex +runfiles size=3 + RELOC/tex/latex/asyfig/asyalign.sty + RELOC/tex/latex/asyfig/asyfig.sty + RELOC/tex/latex/asyfig/asyprocess.sty +catalogue-ctan /macros/latex/contrib/asyfig +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 0.1c + +name asymptote +category TLCore +revision 58569 +shortdesc 2D and 3D TeX-Aware Vector Graphics Language +longdesc Asymptote is a powerful descriptive vector graphics language +longdesc for technical drawing, inspired by MetaPost but with an +longdesc improved C++-like syntax. Asymptote provides for figures the +longdesc same high-quality level of typesetting that LaTeX does for +longdesc scientific text. +depend asymptote.ARCH +containersize 360728 +containerchecksum 810f80e2594099f3813ef28d06a4905a0d0e678c16213f2a900c970e3900ad1ba1d72255ef466d847fc03c1ce90db4da41362679e542bbfbf5b0665e194d67a3 +doccontainersize 2342368 +doccontainerchecksum b2d76f550a026ff433193d86c3ddb284efab9d53a2b6e08e22eaefce9f95966315dce373be813b704b7b8447e5de61e3d12173ad295343eacb1a2991a0a915b6 +docfiles size=1274 + texmf-dist/doc/asymptote/CAD.pdf details="Using Asymptote for 2D CAD" + texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf + texmf-dist/doc/asymptote/asy-latex.pdf + texmf-dist/doc/asymptote/asyRefCard.pdf details="Package 'reference card'" + texmf-dist/doc/asymptote/asymptote.pdf details="Package documentation" + texmf-dist/doc/asymptote/examples/100d.pdb1 + texmf-dist/doc/asymptote/examples/100d.views + texmf-dist/doc/asymptote/examples/1overx.asy + texmf-dist/doc/asymptote/examples/BezierPatch.asy + texmf-dist/doc/asymptote/examples/BezierSaddle.asy + texmf-dist/doc/asymptote/examples/BezierSurface.asy + texmf-dist/doc/asymptote/examples/BezierTriangle.asy + texmf-dist/doc/asymptote/examples/Bode.asy + texmf-dist/doc/asymptote/examples/CAD1.asy + texmf-dist/doc/asymptote/examples/CDlabel.asy + texmf-dist/doc/asymptote/examples/Coons.asy + texmf-dist/doc/asymptote/examples/GaussianSurface.asy + texmf-dist/doc/asymptote/examples/Gouraud.asy + texmf-dist/doc/asymptote/examples/Gouraudcontour.asy + texmf-dist/doc/asymptote/examples/HermiteSpline.asy + texmf-dist/doc/asymptote/examples/Hobbycontrol.asy + texmf-dist/doc/asymptote/examples/Hobbydir.asy + texmf-dist/doc/asymptote/examples/Klein.asy + texmf-dist/doc/asymptote/examples/NURBScurve.asy + texmf-dist/doc/asymptote/examples/NURBSsphere.asy + texmf-dist/doc/asymptote/examples/NURBSsurface.asy + texmf-dist/doc/asymptote/examples/Pythagoras.asy + texmf-dist/doc/asymptote/examples/PythagoreanTree.asy + texmf-dist/doc/asymptote/examples/RiemannSphere.asy + texmf-dist/doc/asymptote/examples/RiemannSurface.asy + texmf-dist/doc/asymptote/examples/RiemannSurfaceRoot.asy + texmf-dist/doc/asymptote/examples/Sierpinski.asy + texmf-dist/doc/asymptote/examples/SierpinskiGasket.asy + texmf-dist/doc/asymptote/examples/SierpinskiSponge.asy + texmf-dist/doc/asymptote/examples/advection.asy + texmf-dist/doc/asymptote/examples/alignbox.asy + texmf-dist/doc/asymptote/examples/alignedaxis.asy + texmf-dist/doc/asymptote/examples/animations/cube.asy + texmf-dist/doc/asymptote/examples/animations/earthmoon.asy + texmf-dist/doc/asymptote/examples/animations/embeddedmovie.asy + texmf-dist/doc/asymptote/examples/animations/embeddedu3d.asy + texmf-dist/doc/asymptote/examples/animations/externalmovie.asy + texmf-dist/doc/asymptote/examples/animations/glmovie.asy + texmf-dist/doc/asymptote/examples/animations/heatequation.asy + texmf-dist/doc/asymptote/examples/animations/inlinemovie.tex + texmf-dist/doc/asymptote/examples/animations/inlinemovie3.tex + texmf-dist/doc/asymptote/examples/animations/pdfmovie.asy + texmf-dist/doc/asymptote/examples/animations/slidemovies.asy + texmf-dist/doc/asymptote/examples/animations/sphere.asy + texmf-dist/doc/asymptote/examples/animations/torusanimation.asy + texmf-dist/doc/asymptote/examples/animations/wavepacket.asy + texmf-dist/doc/asymptote/examples/animations/wheel.asy + texmf-dist/doc/asymptote/examples/annotation.asy + texmf-dist/doc/asymptote/examples/arrows3.asy + texmf-dist/doc/asymptote/examples/axialshade.asy + texmf-dist/doc/asymptote/examples/axis3.asy + texmf-dist/doc/asymptote/examples/bars3.asy + texmf-dist/doc/asymptote/examples/basealign.asy + texmf-dist/doc/asymptote/examples/bezier.asy + texmf-dist/doc/asymptote/examples/bezier2.asy + texmf-dist/doc/asymptote/examples/beziercurve.asy + texmf-dist/doc/asymptote/examples/bigdiagonal.asy + texmf-dist/doc/asymptote/examples/billboard.asy + texmf-dist/doc/asymptote/examples/binarytreetest.asy + texmf-dist/doc/asymptote/examples/brokenaxis.asy + texmf-dist/doc/asymptote/examples/buildcycle.asy + texmf-dist/doc/asymptote/examples/cardioid.asy + texmf-dist/doc/asymptote/examples/cards.asy + texmf-dist/doc/asymptote/examples/centroidfg.asy + texmf-dist/doc/asymptote/examples/cheese.asy + texmf-dist/doc/asymptote/examples/circles.asy + texmf-dist/doc/asymptote/examples/circumcircle.asy + texmf-dist/doc/asymptote/examples/clockarray.asy + texmf-dist/doc/asymptote/examples/coag.asy + texmf-dist/doc/asymptote/examples/colons.asy + texmf-dist/doc/asymptote/examples/colorpatch.asy + texmf-dist/doc/asymptote/examples/colorplanes.asy + texmf-dist/doc/asymptote/examples/colors.asy + texmf-dist/doc/asymptote/examples/condor.asy + texmf-dist/doc/asymptote/examples/cones.asy + texmf-dist/doc/asymptote/examples/conicurv.asy + texmf-dist/doc/asymptote/examples/contextfonts.asy + texmf-dist/doc/asymptote/examples/controlsystem.asy + texmf-dist/doc/asymptote/examples/cos2theta.asy + texmf-dist/doc/asymptote/examples/cos3.asy + texmf-dist/doc/asymptote/examples/cosaddition.asy + texmf-dist/doc/asymptote/examples/cpkcolors.asy + texmf-dist/doc/asymptote/examples/cube.asy + texmf-dist/doc/asymptote/examples/curvedlabel.asy + texmf-dist/doc/asymptote/examples/curvedlabel3.asy + texmf-dist/doc/asymptote/examples/cyclohexane.asy + texmf-dist/doc/asymptote/examples/cylinder.asy + texmf-dist/doc/asymptote/examples/cylinderskeleton.asy + texmf-dist/doc/asymptote/examples/datagraph.asy + texmf-dist/doc/asymptote/examples/delu.asy + texmf-dist/doc/asymptote/examples/diagonal.asy + texmf-dist/doc/asymptote/examples/diatom.asy + texmf-dist/doc/asymptote/examples/diatom.csv + texmf-dist/doc/asymptote/examples/dimension.asy + texmf-dist/doc/asymptote/examples/dots.asy + texmf-dist/doc/asymptote/examples/dragon.asy + texmf-dist/doc/asymptote/examples/eetomumu.asy + texmf-dist/doc/asymptote/examples/electromagnetic.asy + texmf-dist/doc/asymptote/examples/elevation.asy + texmf-dist/doc/asymptote/examples/elliptic.asy + texmf-dist/doc/asymptote/examples/epix.asy + texmf-dist/doc/asymptote/examples/equilateral.asy + texmf-dist/doc/asymptote/examples/equilchord.asy + texmf-dist/doc/asymptote/examples/errorbars.asy + texmf-dist/doc/asymptote/examples/exp.asy + texmf-dist/doc/asymptote/examples/exp3.asy + texmf-dist/doc/asymptote/examples/externalprc.tex + texmf-dist/doc/asymptote/examples/extrudedcontour.asy + texmf-dist/doc/asymptote/examples/fano.asy + texmf-dist/doc/asymptote/examples/fequlogo.asy + texmf-dist/doc/asymptote/examples/fermi.asy + texmf-dist/doc/asymptote/examples/filegraph.asy + texmf-dist/doc/asymptote/examples/filegraph.dat + texmf-dist/doc/asymptote/examples/filesurface.asy + texmf-dist/doc/asymptote/examples/filesurface.dat + texmf-dist/doc/asymptote/examples/fillcontour.asy + texmf-dist/doc/asymptote/examples/fin.asy + texmf-dist/doc/asymptote/examples/fjortoft.asy + texmf-dist/doc/asymptote/examples/floatingdisk.asy + texmf-dist/doc/asymptote/examples/floor.asy + texmf-dist/doc/asymptote/examples/flow.asy + texmf-dist/doc/asymptote/examples/flowchartdemo.asy + texmf-dist/doc/asymptote/examples/fractaltree.asy + texmf-dist/doc/asymptote/examples/functionshading.asy + texmf-dist/doc/asymptote/examples/galleon.asy + texmf-dist/doc/asymptote/examples/gamma.asy + texmf-dist/doc/asymptote/examples/gamma3.asy + texmf-dist/doc/asymptote/examples/generalaxis.asy + texmf-dist/doc/asymptote/examples/generalaxis3.asy + texmf-dist/doc/asymptote/examples/genusthree.asy + texmf-dist/doc/asymptote/examples/genustwo.asy + texmf-dist/doc/asymptote/examples/graphmarkers.asy + texmf-dist/doc/asymptote/examples/grid.asy + texmf-dist/doc/asymptote/examples/grid3xyz.asy + texmf-dist/doc/asymptote/examples/hatch.asy + texmf-dist/doc/asymptote/examples/helix.asy + texmf-dist/doc/asymptote/examples/hierarchy.asy + texmf-dist/doc/asymptote/examples/histogram.asy + texmf-dist/doc/asymptote/examples/hyperboloid.asy + texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy + texmf-dist/doc/asymptote/examples/icon.asy + texmf-dist/doc/asymptote/examples/image.asy + texmf-dist/doc/asymptote/examples/imagecontour.asy + texmf-dist/doc/asymptote/examples/imagehistogram.asy + texmf-dist/doc/asymptote/examples/impact.asy + texmf-dist/doc/asymptote/examples/integraltest.asy + texmf-dist/doc/asymptote/examples/interpolate1.asy + texmf-dist/doc/asymptote/examples/intro.asy + texmf-dist/doc/asymptote/examples/irregularcontour.asy + texmf-dist/doc/asymptote/examples/join.asy + texmf-dist/doc/asymptote/examples/join3.asy + texmf-dist/doc/asymptote/examples/jump.asy + texmf-dist/doc/asymptote/examples/knots.asy + texmf-dist/doc/asymptote/examples/label3.asy + texmf-dist/doc/asymptote/examples/label3ribbon.asy + texmf-dist/doc/asymptote/examples/label3solid.asy + texmf-dist/doc/asymptote/examples/label3zoom.asy + texmf-dist/doc/asymptote/examples/labelbox.asy + texmf-dist/doc/asymptote/examples/labelsquare.asy + texmf-dist/doc/asymptote/examples/laserlattice.asy + texmf-dist/doc/asymptote/examples/latexusage.tex + texmf-dist/doc/asymptote/examples/latticeshading.asy + texmf-dist/doc/asymptote/examples/layers.asy + texmf-dist/doc/asymptote/examples/leastsquares.asy + texmf-dist/doc/asymptote/examples/leastsquares.dat + texmf-dist/doc/asymptote/examples/legend.asy + texmf-dist/doc/asymptote/examples/lever.asy + texmf-dist/doc/asymptote/examples/limit.asy + texmf-dist/doc/asymptote/examples/lineargraph.asy + texmf-dist/doc/asymptote/examples/lineargraph0.asy + texmf-dist/doc/asymptote/examples/linearregression.asy + texmf-dist/doc/asymptote/examples/lines.asy + texmf-dist/doc/asymptote/examples/linetype.asy + texmf-dist/doc/asymptote/examples/lmfit1.asy + texmf-dist/doc/asymptote/examples/log.asy + texmf-dist/doc/asymptote/examples/log2graph.asy + texmf-dist/doc/asymptote/examples/logdown.asy + texmf-dist/doc/asymptote/examples/loggraph.asy + texmf-dist/doc/asymptote/examples/loggrid.asy + texmf-dist/doc/asymptote/examples/logimage.asy + texmf-dist/doc/asymptote/examples/logo.asy + texmf-dist/doc/asymptote/examples/logo3.asy + texmf-dist/doc/asymptote/examples/logticks.asy + texmf-dist/doc/asymptote/examples/lowint.asy + texmf-dist/doc/asymptote/examples/lowupint.asy + texmf-dist/doc/asymptote/examples/magnetic.asy + texmf-dist/doc/asymptote/examples/makepen.asy + texmf-dist/doc/asymptote/examples/markers1.asy + texmf-dist/doc/asymptote/examples/markers2.asy + texmf-dist/doc/asymptote/examples/markregular.asy + texmf-dist/doc/asymptote/examples/mergeExample.asy + texmf-dist/doc/asymptote/examples/mexicanhat.asy + texmf-dist/doc/asymptote/examples/monthaxis.asy + texmf-dist/doc/asymptote/examples/mosaic.asy + texmf-dist/doc/asymptote/examples/mosquito.asy + texmf-dist/doc/asymptote/examples/multicontour.asy + texmf-dist/doc/asymptote/examples/near_earth.asy + texmf-dist/doc/asymptote/examples/odetest.asy + texmf-dist/doc/asymptote/examples/onecontour.asy + texmf-dist/doc/asymptote/examples/oneoverx.asy + texmf-dist/doc/asymptote/examples/orthocenter.asy + texmf-dist/doc/asymptote/examples/pOrbital.asy + texmf-dist/doc/asymptote/examples/parametricelevation.asy + texmf-dist/doc/asymptote/examples/parametricgraph.asy + texmf-dist/doc/asymptote/examples/parametricsurface.asy + texmf-dist/doc/asymptote/examples/partialsurface.asy + texmf-dist/doc/asymptote/examples/partitionExample.asy + texmf-dist/doc/asymptote/examples/pathintersectsurface.asy + texmf-dist/doc/asymptote/examples/pdb.asy + texmf-dist/doc/asymptote/examples/penfunctionimage.asy + texmf-dist/doc/asymptote/examples/penimage.asy + texmf-dist/doc/asymptote/examples/phase.asy + texmf-dist/doc/asymptote/examples/piicon.png + texmf-dist/doc/asymptote/examples/pipeintersection.asy + texmf-dist/doc/asymptote/examples/pipes.asy + texmf-dist/doc/asymptote/examples/pixel.pdf + texmf-dist/doc/asymptote/examples/planeproject.asy + texmf-dist/doc/asymptote/examples/planes.asy + texmf-dist/doc/asymptote/examples/polararea.asy + texmf-dist/doc/asymptote/examples/polarcircle.asy + texmf-dist/doc/asymptote/examples/polardatagraph.asy + texmf-dist/doc/asymptote/examples/poster.asy + texmf-dist/doc/asymptote/examples/progrid.asy + texmf-dist/doc/asymptote/examples/projectelevation.asy + texmf-dist/doc/asymptote/examples/projectrevolution.asy + texmf-dist/doc/asymptote/examples/pseudosphere.asy + texmf-dist/doc/asymptote/examples/quartercircle.asy + texmf-dist/doc/asymptote/examples/quilt.asy + texmf-dist/doc/asymptote/examples/rainbow.asy + texmf-dist/doc/asymptote/examples/randompath3.asy + texmf-dist/doc/asymptote/examples/refs.bib + texmf-dist/doc/asymptote/examples/ring.asy + texmf-dist/doc/asymptote/examples/roll.asy + texmf-dist/doc/asymptote/examples/roundpath.asy + texmf-dist/doc/asymptote/examples/sacone.asy + texmf-dist/doc/asymptote/examples/sacone3D.asy + texmf-dist/doc/asymptote/examples/sacylinder.asy + texmf-dist/doc/asymptote/examples/sacylinder3D.asy + texmf-dist/doc/asymptote/examples/saddle.asy + texmf-dist/doc/asymptote/examples/scaledgraph.asy + texmf-dist/doc/asymptote/examples/secondaryaxis.asy + texmf-dist/doc/asymptote/examples/secondaryaxis.csv + texmf-dist/doc/asymptote/examples/shade.asy + texmf-dist/doc/asymptote/examples/shadedtiling.asy + texmf-dist/doc/asymptote/examples/shadestroke.asy + texmf-dist/doc/asymptote/examples/shellmethod.asy + texmf-dist/doc/asymptote/examples/shellsqrtx01.asy + texmf-dist/doc/asymptote/examples/sin1x.asy + texmf-dist/doc/asymptote/examples/sin3.asy + texmf-dist/doc/asymptote/examples/sinc.asy + texmf-dist/doc/asymptote/examples/sinxlex.asy + texmf-dist/doc/asymptote/examples/slidedemo.asy + texmf-dist/doc/asymptote/examples/slope.asy + texmf-dist/doc/asymptote/examples/slopefield1.asy + texmf-dist/doc/asymptote/examples/smoothelevation.asy + texmf-dist/doc/asymptote/examples/soccerball.asy + texmf-dist/doc/asymptote/examples/spectrum.asy + texmf-dist/doc/asymptote/examples/sphere.asy + texmf-dist/doc/asymptote/examples/spheresilhouette.asy + texmf-dist/doc/asymptote/examples/sphereskeleton.asy + texmf-dist/doc/asymptote/examples/sphericalharmonic.asy + texmf-dist/doc/asymptote/examples/spiral.asy + texmf-dist/doc/asymptote/examples/spiral3.asy + texmf-dist/doc/asymptote/examples/spline.asy + texmf-dist/doc/asymptote/examples/splitpatch.asy + texmf-dist/doc/asymptote/examples/spring.asy + texmf-dist/doc/asymptote/examples/spring0.asy + texmf-dist/doc/asymptote/examples/spring2.asy + texmf-dist/doc/asymptote/examples/sqrtx01.asy + texmf-dist/doc/asymptote/examples/sqrtx01y1.asy + texmf-dist/doc/asymptote/examples/square.asy + texmf-dist/doc/asymptote/examples/star.asy + texmf-dist/doc/asymptote/examples/stereoscopic.asy + texmf-dist/doc/asymptote/examples/stroke3.asy + texmf-dist/doc/asymptote/examples/strokepath.asy + texmf-dist/doc/asymptote/examples/strokeshade.asy + texmf-dist/doc/asymptote/examples/subpictures.asy + texmf-dist/doc/asymptote/examples/superpath.asy + texmf-dist/doc/asymptote/examples/tanh.asy + texmf-dist/doc/asymptote/examples/teapot.asy + texmf-dist/doc/asymptote/examples/tensor.asy + texmf-dist/doc/asymptote/examples/tetra.asy + texmf-dist/doc/asymptote/examples/textpath.asy + texmf-dist/doc/asymptote/examples/thermodynamics.asy + texmf-dist/doc/asymptote/examples/threeviews.asy + texmf-dist/doc/asymptote/examples/tile.asy + texmf-dist/doc/asymptote/examples/tiling.asy + texmf-dist/doc/asymptote/examples/torus.asy + texmf-dist/doc/asymptote/examples/transparency.asy + texmf-dist/doc/asymptote/examples/transparentCubes.asy + texmf-dist/doc/asymptote/examples/treetest.asy + texmf-dist/doc/asymptote/examples/trefoilknot.asy + texmf-dist/doc/asymptote/examples/triads.asy + texmf-dist/doc/asymptote/examples/triangle.asy + texmf-dist/doc/asymptote/examples/triangles.asy + texmf-dist/doc/asymptote/examples/triangulate.asy + texmf-dist/doc/asymptote/examples/triceratops.asy + texmf-dist/doc/asymptote/examples/trumpet.asy + texmf-dist/doc/asymptote/examples/truncatedIcosahedron.asy + texmf-dist/doc/asymptote/examples/tvgen.asy + texmf-dist/doc/asymptote/examples/twistedtubes.asy + texmf-dist/doc/asymptote/examples/unitcircle.asy + texmf-dist/doc/asymptote/examples/unitcircle3.asy + texmf-dist/doc/asymptote/examples/unitoctant.asy + texmf-dist/doc/asymptote/examples/unitoctantx.asy + texmf-dist/doc/asymptote/examples/upint.asy + texmf-dist/doc/asymptote/examples/vectorfield.asy + texmf-dist/doc/asymptote/examples/vectorfield3.asy + texmf-dist/doc/asymptote/examples/vectorfieldsphere.asy + texmf-dist/doc/asymptote/examples/venn.asy + texmf-dist/doc/asymptote/examples/venn3.asy + texmf-dist/doc/asymptote/examples/vertexshading.asy + texmf-dist/doc/asymptote/examples/washer.asy + texmf-dist/doc/asymptote/examples/washermethod.asy + texmf-dist/doc/asymptote/examples/wedge.asy + texmf-dist/doc/asymptote/examples/westnile.asy + texmf-dist/doc/asymptote/examples/westnile.csv + texmf-dist/doc/asymptote/examples/workcone.asy + texmf-dist/doc/asymptote/examples/worksheet.asy + texmf-dist/doc/asymptote/examples/worldmap.asy + texmf-dist/doc/asymptote/examples/worldmap.dat + texmf-dist/doc/asymptote/examples/xsin1x.asy + texmf-dist/doc/asymptote/examples/xstitch.asy + texmf-dist/doc/asymptote/examples/xxsq01.asy + texmf-dist/doc/asymptote/examples/xxsq01x-1.asy + texmf-dist/doc/asymptote/examples/xxsq01y.asy + texmf-dist/doc/asymptote/examples/yingyang.asy + texmf-dist/doc/info/asy-faq.info + texmf-dist/doc/info/asymptote.info + texmf-dist/doc/man/man1/asy.1 + texmf-dist/doc/man/man1/asy.man1.pdf + texmf-dist/doc/man/man1/xasy.1 + texmf-dist/doc/man/man1/xasy.man1.pdf +runfiles size=625 + texmf-dist/asymptote/CAD.asy + texmf-dist/asymptote/GUI/CustMatTransform.py + texmf-dist/asymptote/GUI/DebugFlags.py + texmf-dist/asymptote/GUI/GuidesManager.py + texmf-dist/asymptote/GUI/InplaceAddObj.py + texmf-dist/asymptote/GUI/PrimitiveShape.py + texmf-dist/asymptote/GUI/SetCustomAnchor.py + texmf-dist/asymptote/GUI/UndoRedoStack.py + texmf-dist/asymptote/GUI/Widg_addLabel.py + texmf-dist/asymptote/GUI/Widg_addPolyOpt.py + texmf-dist/asymptote/GUI/Widg_editBezier.py + texmf-dist/asymptote/GUI/Window1.py + texmf-dist/asymptote/GUI/__init__.py + texmf-dist/asymptote/GUI/configs/xasyconfig.cson + texmf-dist/asymptote/GUI/configs/xasykeymap.cson + texmf-dist/asymptote/GUI/icons_rc.py + texmf-dist/asymptote/GUI/labelEditor.py + texmf-dist/asymptote/GUI/pyUIClass/custMatTransform.py + texmf-dist/asymptote/GUI/pyUIClass/labelTextEditor.py + texmf-dist/asymptote/GUI/pyUIClass/setCustomAnchor.py + texmf-dist/asymptote/GUI/pyUIClass/widg_addLabel.py + texmf-dist/asymptote/GUI/pyUIClass/widg_addPolyOpt.py + texmf-dist/asymptote/GUI/pyUIClass/widg_editBezier.py + texmf-dist/asymptote/GUI/pyUIClass/widgetPointEditor.py + texmf-dist/asymptote/GUI/pyUIClass/window1.py + texmf-dist/asymptote/GUI/res/icons.qrc + texmf-dist/asymptote/GUI/res/icons/anchor.svg + texmf-dist/asymptote/GUI/res/icons/android-arrow-back.svg + texmf-dist/asymptote/GUI/res/icons/android-arrow-forward.svg + texmf-dist/asymptote/GUI/res/icons/android-camera.svg + texmf-dist/asymptote/GUI/res/icons/android-close.svg + texmf-dist/asymptote/GUI/res/icons/android-color-palette.svg + texmf-dist/asymptote/GUI/res/icons/android-delete.svg + texmf-dist/asymptote/GUI/res/icons/android-done.svg + texmf-dist/asymptote/GUI/res/icons/android-expand.svg + texmf-dist/asymptote/GUI/res/icons/android-folder-open.svg + texmf-dist/asymptote/GUI/res/icons/android-hand.svg + texmf-dist/asymptote/GUI/res/icons/android-locate.svg + texmf-dist/asymptote/GUI/res/icons/android-radio-button-off.svg + texmf-dist/asymptote/GUI/res/icons/android-radio-button-on.svg + texmf-dist/asymptote/GUI/res/icons/android-refresh.svg + texmf-dist/asymptote/GUI/res/icons/arrow-move.svg + texmf-dist/asymptote/GUI/res/icons/arrow-resize.svg + texmf-dist/asymptote/GUI/res/icons/bucket.svg + texmf-dist/asymptote/GUI/res/icons/center.svg + texmf-dist/asymptote/GUI/res/icons/centerorigin.svg + texmf-dist/asymptote/GUI/res/icons/check.svg + texmf-dist/asymptote/GUI/res/icons/chevron-with-circle-left.svg + texmf-dist/asymptote/GUI/res/icons/chevron-with-circle-right.svg + texmf-dist/asymptote/GUI/res/icons/circle.svg + texmf-dist/asymptote/GUI/res/icons/close-round.svg + texmf-dist/asymptote/GUI/res/icons/closedcurve.svg + texmf-dist/asymptote/GUI/res/icons/closedpolygon.svg + texmf-dist/asymptote/GUI/res/icons/code.svg + texmf-dist/asymptote/GUI/res/icons/edit.svg + texmf-dist/asymptote/GUI/res/icons/eye.svg + texmf-dist/asymptote/GUI/res/icons/filledbucket.svg + texmf-dist/asymptote/GUI/res/icons/grid.svg + texmf-dist/asymptote/GUI/res/icons/magnifying-glass.svg + texmf-dist/asymptote/GUI/res/icons/opencurve.svg + texmf-dist/asymptote/GUI/res/icons/openpolygon.svg + texmf-dist/asymptote/GUI/res/icons/plus-round.svg + texmf-dist/asymptote/GUI/res/icons/save.svg + texmf-dist/asymptote/GUI/res/icons/social-python.svg + texmf-dist/asymptote/GUI/res/icons/subdirectory-left.svg + texmf-dist/asymptote/GUI/res/icons/text.svg + texmf-dist/asymptote/GUI/res/icons/triangle-stroked-15.svg + texmf-dist/asymptote/GUI/setup.py + texmf-dist/asymptote/GUI/xasy.py + texmf-dist/asymptote/GUI/xasy2asy.py + texmf-dist/asymptote/GUI/xasyArgs.py + texmf-dist/asymptote/GUI/xasyBezierInterface.py + texmf-dist/asymptote/GUI/xasyFile.py + texmf-dist/asymptote/GUI/xasyOptions.py + texmf-dist/asymptote/GUI/xasyStrings.py + texmf-dist/asymptote/GUI/xasySvg.py + texmf-dist/asymptote/GUI/xasyTransform.py + texmf-dist/asymptote/GUI/xasyUtils.py + texmf-dist/asymptote/GUI/xasyValidator.py + texmf-dist/asymptote/GUI/xasyVersion.py + texmf-dist/asymptote/animate.asy + texmf-dist/asymptote/animation.asy + texmf-dist/asymptote/annotate.asy + texmf-dist/asymptote/asy-init.el + texmf-dist/asymptote/asy-kate.sh + texmf-dist/asymptote/asy-keywords.el + texmf-dist/asymptote/asy-mode.el + texmf-dist/asymptote/asy.vim + texmf-dist/asymptote/asy_filetype.vim + texmf-dist/asymptote/asymptote.py + texmf-dist/asymptote/babel.asy + texmf-dist/asymptote/bezulate.asy + texmf-dist/asymptote/binarytree.asy + texmf-dist/asymptote/bsp.asy + texmf-dist/asymptote/colormap.asy + texmf-dist/asymptote/contour.asy + texmf-dist/asymptote/contour3.asy + texmf-dist/asymptote/drawtree.asy + texmf-dist/asymptote/embed.asy + texmf-dist/asymptote/external.asy + texmf-dist/asymptote/feynman.asy + texmf-dist/asymptote/flowchart.asy + texmf-dist/asymptote/fontsize.asy + texmf-dist/asymptote/geometry.asy + texmf-dist/asymptote/graph.asy + texmf-dist/asymptote/graph3.asy + texmf-dist/asymptote/graph_settings.asy + texmf-dist/asymptote/graph_splinetype.asy + texmf-dist/asymptote/grid3.asy + texmf-dist/asymptote/interpolate.asy + texmf-dist/asymptote/labelpath.asy + texmf-dist/asymptote/labelpath3.asy + texmf-dist/asymptote/lmfit.asy + texmf-dist/asymptote/map.asy + texmf-dist/asymptote/markers.asy + texmf-dist/asymptote/math.asy + texmf-dist/asymptote/metapost.asy + texmf-dist/asymptote/nopapersize.ps + texmf-dist/asymptote/obj.asy + texmf-dist/asymptote/ode.asy + texmf-dist/asymptote/palette.asy + texmf-dist/asymptote/patterns.asy + texmf-dist/asymptote/plain.asy + texmf-dist/asymptote/plain_Label.asy + texmf-dist/asymptote/plain_arcs.asy + texmf-dist/asymptote/plain_arrows.asy + texmf-dist/asymptote/plain_bounds.asy + texmf-dist/asymptote/plain_boxes.asy + texmf-dist/asymptote/plain_constants.asy + texmf-dist/asymptote/plain_debugger.asy + texmf-dist/asymptote/plain_filldraw.asy + texmf-dist/asymptote/plain_margins.asy + texmf-dist/asymptote/plain_markers.asy + texmf-dist/asymptote/plain_paths.asy + texmf-dist/asymptote/plain_pens.asy + texmf-dist/asymptote/plain_picture.asy + texmf-dist/asymptote/plain_prethree.asy + texmf-dist/asymptote/plain_scaling.asy + texmf-dist/asymptote/plain_shipout.asy + texmf-dist/asymptote/plain_strings.asy + texmf-dist/asymptote/pstoedit.asy + texmf-dist/asymptote/rational.asy + texmf-dist/asymptote/rationalSimplex.asy + texmf-dist/asymptote/reload.js + texmf-dist/asymptote/roundedpath.asy + texmf-dist/asymptote/shaders/fragment.glsl + texmf-dist/asymptote/shaders/vertex.glsl + texmf-dist/asymptote/simplex.asy + texmf-dist/asymptote/size10.asy + texmf-dist/asymptote/size11.asy + texmf-dist/asymptote/slide.asy + texmf-dist/asymptote/slopefield.asy + texmf-dist/asymptote/smoothcontour3.asy + texmf-dist/asymptote/solids.asy + texmf-dist/asymptote/stats.asy + texmf-dist/asymptote/syzygy.asy + texmf-dist/asymptote/texcolors.asy + texmf-dist/asymptote/three.asy + texmf-dist/asymptote/three_arrows.asy + texmf-dist/asymptote/three_light.asy + texmf-dist/asymptote/three_margins.asy + texmf-dist/asymptote/three_surface.asy + texmf-dist/asymptote/three_tube.asy + texmf-dist/asymptote/tree.asy + texmf-dist/asymptote/trembling.asy + texmf-dist/asymptote/tube.asy + texmf-dist/asymptote/version.asy + texmf-dist/asymptote/webgl/asygl.js + texmf-dist/asymptote/x11colors.asy + texmf-dist/tex/context/third/asymptote/colo-asy.tex + texmf-dist/tex/latex/asymptote/asycolors.sty + texmf-dist/tex/latex/asymptote/asymptote.sty + texmf-dist/tex/latex/asymptote/latexmkrc + texmf-dist/tex/latex/asymptote/ocg.sty +catalogue-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-license lgpl3 +catalogue-topics graphics graphics-engn +catalogue-version 2.70 + +name asymptote-by-example-zh-cn +category Package +revision 15878 +shortdesc Asymptote by example +relocated 1 +longdesc This is a tutorial written in Simplified Chinese. +containersize 388 +containerchecksum 34608d6412d7936a15bf649555683ff03c5021e1688c99285a6b7ecdfc3a43eac4ed32108626243d6e9b07c23c557f07762897a96501a27412c7c5d039747553 +doccontainersize 526632 +doccontainerchecksum a0087e5be69962c671e1972d9e7be12f76be64582182afe042693cbad92cf3fd027422c605dcf7860cd2e61f0b925860a50e94523b9ae2d1af7a8aa6d356c3a7 +docfiles size=239 + RELOC/doc/support/asymptote-by-example-zh-cn/README details="Readme" + RELOC/doc/support/asymptote-by-example-zh-cn/asymptote-by-example-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/support/asymptote-by-example-zh-cn/src/CLEAN.bat + RELOC/doc/support/asymptote-by-example-zh-cn/src/MAKEPDF.bat + RELOC/doc/support/asymptote-by-example-zh-cn/src/asy.bib + RELOC/doc/support/asymptote-by-example-zh-cn/src/asymptote.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/asysyntex.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/cleantmp + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/CJKmove.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/area.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/hanoi.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/hyper.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/movie15.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/recplot.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/stars.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/tiling.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/xiantu.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/gpl-3.0.tex + RELOC/doc/support/asymptote-by-example-zh-cn/src/main.tex + RELOC/doc/support/asymptote-by-example-zh-cn/src/makepdf + RELOC/doc/support/asymptote-by-example-zh-cn/src/myfonts.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/tiling.pdf + RELOC/doc/support/asymptote-by-example-zh-cn/src/tiling.tex + RELOC/doc/support/asymptote-by-example-zh-cn/src/xiantu-ancient.pdf + 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-license gpl +catalogue-topics chinese-doc + +name asymptote-faq-zh-cn +category Package +revision 15878 +shortdesc Asymptote FAQ (Chinese translation) +relocated 1 +longdesc This is a Chinese translation of the Asymptote FAQ +containersize 380 +containerchecksum 1efc7098392ac5cad5eeaa0dcf527bd158e3f7497ff1992603b833ff63d5cfa61fe5e7bc33c5cc0c441c13fc03dfe1e18a334411be6ad2f5acc94c902e9ccf2c +doccontainersize 373604 +doccontainerchecksum b7dbcf256cffae9cc8f5027934946929b4be7a8794fb8364892802eeff4e7cf970ca8549ef442a35f173ada61533b51c2da301bf2ce931107a7ce0c564ce0c60 +docfiles size=237 + RELOC/doc/support/asymptote-faq-zh-cn/README details="Readme" + RELOC/doc/support/asymptote-faq-zh-cn/asymptote-faq-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/support/asymptote-faq-zh-cn/src/asy-faq.tex + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-1.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-1.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-2.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-2.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-7.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-7.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-8.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-8.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-9.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-9.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-1a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-1a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-2.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-2.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-4.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-4.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-1.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-1.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-12.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-12.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-14.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-14.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-15.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-15.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-19.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-19.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-2.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-2.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-3.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-3.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-4.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-4.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-5.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-5.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-6.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-6.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7c.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7c.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8c.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8c.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-9.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-9.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-4.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-4.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8c.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8c.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8d.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8d.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9b.asy + 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-license lppl +catalogue-topics chinese-doc + +name asymptote-manual-zh-cn +category Package +revision 15878 +shortdesc A Chinese translation of the asymptote manual +relocated 1 +longdesc This is an (incomplete, simplified) Chinese translation of the +longdesc Asymptote manual. +containersize 400 +containerchecksum c04fc953a0a9035c238b9f80873d9fc605b23b322e898ae55b8eda7537f0172076e512022b163e3cd397ce2e4e721afa2e981454db53511c1a7347a017185df5 +doccontainersize 898452 +doccontainerchecksum 0f82e25773a14b0f81b34354f16931834d0496b2c6636c498c6af686f46e7ff93a274739a1a4c189433c9df1ae91ca010f0887081c81f2ac9006a105c7fd4ac9 +docfiles size=413 + RELOC/doc/support/asymptote-manual-zh-cn/README details="Readme" + RELOC/doc/support/asymptote-manual-zh-cn/asymptote-manual-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/support/asymptote-manual-zh-cn/src/CDlabel.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/CLEAN.bat + RELOC/doc/support/asymptote-manual-zh-cn/src/Coons.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/Gouraud.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/MAKEPDF.bat + RELOC/doc/support/asymptote-manual-zh-cn/src/Pythagoras.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/adobefonts.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/asycolors.sty + RELOC/doc/support/asymptote-manual-zh-cn/src/asysyntex.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/axialshade.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/bezier2.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/beziercurve.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/bigsquare.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/cleantmp + RELOC/doc/support/asymptote-manual-zh-cn/src/clippath.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/colons.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/colors.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/cube.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/diagonal.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/dots.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/fzfonts.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/hatch.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/join.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/labelalign.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/labelsquare.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/latticeshading.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/linecap.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/linejoin.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/linetype.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/logo.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/main.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/makepdf + RELOC/doc/support/asymptote-manual-zh-cn/src/makepen.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/mexicanhat.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/quartercircle.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/shadedtiling.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/shadestroke.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/square.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/subpictures.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/superpath.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/tile.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/transparency.asy + 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-license lgpl +catalogue-topics chinese-doc + +name asymptote.aarch64-linux +category TLCore +revision 58149 +shortdesc aarch64-linux files of asymptote +containersize 1020592 +containerchecksum 72bccbc89ba19115b998024069f6efc56ed743be89478196bcb8b452550b5d4afb053e587e355c44755804018b7ca33690beb6c299139cb171cdf0c0f04a7af3 +binfiles arch=aarch64-linux size=911 + bin/aarch64-linux/asy + +name asymptote.amd64-freebsd +category TLCore +revision 58425 +shortdesc amd64-freebsd files of asymptote +containersize 1630960 +containerchecksum 9d04369842a3950cc16cbb2b98e79503c8c43a38e4df8cd44c7e2e4e4eaf3dd891e6e8c26120f34f6ba6178c4845b2ce2cfc9ac47c59e5c77815f1fce2869221 +binfiles arch=amd64-freebsd size=1340 + bin/amd64-freebsd/asy + bin/amd64-freebsd/xasy + +name asymptote.amd64-netbsd +category TLCore +revision 54635 +shortdesc amd64-netbsd files of asymptote +containersize 1186160 +containerchecksum 725def80b17ec761258f0aaf8f283cb959f27f78dd41b57fafa259e3c6877af4430f8b27de063f2103906c7fb3e5ee0742d128b468bff00e418223741626c270 +binfiles arch=amd64-netbsd size=1365 + bin/amd64-netbsd/asy + bin/amd64-netbsd/xasy + +name asymptote.armhf-linux +category TLCore +revision 58428 +shortdesc armhf-linux files of asymptote +containersize 932500 +containerchecksum a731aebe7c1b888afe76e6a474df138d1ce5bbc88158be17ee741240b238517d515229879499406db908fb09b9e5f2565355e40e7168a7dbee48a0c7b785b2f6 +binfiles arch=armhf-linux size=781 + bin/armhf-linux/asy + bin/armhf-linux/xasy + +name asymptote.i386-cygwin +category TLCore +revision 58424 +shortdesc i386-cygwin files of asymptote +containersize 1147440 +containerchecksum 4eaf9ddc0bba20162f9c4b1e84acdaa946710e362bbbab238c4530d68bef9101c88b4ea3d1c088c6b7efb34d9402474113c1aa3ced6c77bb1bdbf5dbe6fa89d3 +binfiles arch=i386-cygwin size=1101 + bin/i386-cygwin/asy.exe + bin/i386-cygwin/xasy + +name asymptote.i386-freebsd +category TLCore +revision 58427 +shortdesc i386-freebsd files of asymptote +containersize 1509284 +containerchecksum d8f2b955c87b48febee8e7ddd6cd0a941e5de56d2c7df61a0987fffaed7df5b378a676f7d203705185beacc874c3299590e93edbbef56f0dce41933a8f70c84e +binfiles arch=i386-freebsd size=1651 + bin/i386-freebsd/asy + bin/i386-freebsd/xasy + +name asymptote.i386-linux +category TLCore +revision 57890 +shortdesc i386-linux files of asymptote +containersize 1290472 +containerchecksum c551cbd1e1d45c811ff3b9eefca1abd9d906698bed580da6e1e450e6a3b38bc22e6c371fda5aca3da2af853e029a99b0941311825498c26e74358888bf57efcf +binfiles arch=i386-linux size=1148 + bin/i386-linux/asy + bin/i386-linux/xasy + +name asymptote.i386-solaris +category TLCore +revision 58500 +shortdesc i386-solaris files of asymptote +containersize 1423068 +containerchecksum 934ae3511d1358f4ebe3989e599cef679fbb577ee1b1e682d86f47c062145c4e47bc5273c5a69ecfc148f954267231cbb1ec6586fa401443bde1f1f928dadaa9 +binfiles arch=i386-solaris size=1358 + bin/i386-solaris/asy + bin/i386-solaris/xasy + +name asymptote.universal-darwin +category TLCore +revision 58458 +shortdesc universal-darwin files of asymptote +containersize 4413964 +containerchecksum 3a5009ab46885efc1971fbb5919cf86a18ab7b7d98e56e273037aba1e56f9d98427e3e740123824985510ede07b0f1eed7164d5db449fc2ea3a20516a078734c +binfiles arch=universal-darwin size=7405 + bin/universal-darwin/asy + bin/universal-darwin/xasy + +name asymptote.win32 +category TLCore +revision 58410 +shortdesc win32 files of asymptote +containersize 7561724 +containerchecksum b7225db8827d49520dc81513436591c66b02eecb5548e58bddd02c7642d3b38305018e3aeb85337227f7310d1bfaf1b609ee7f0aec135bbef567adb52734bfe0 +binfiles arch=win32 size=6702 + bin/win32/asy.exe + tlpkg/asymptote/asy.exe + tlpkg/asymptote/cygwin1.dll + tlpkg/asymptote/freeglut.dll + tlpkg/asymptote/glu32.dll + tlpkg/asymptote/opengl32.dll + tlpkg/asymptote64/asy.exe + tlpkg/asymptote64/cygwin1.dll + tlpkg/asymptote64/freeglut.dll + +name asymptote.x86_64-cygwin +category TLCore +revision 58424 +shortdesc x86_64-cygwin files of asymptote +containersize 1239736 +containerchecksum b030fec0efde21c384ebc918c2ff6af2d4dc92375ccadb635a01035ba6088eb340749a86ad045a9d8c890a017c7a5af8058701e654b54efa0fe0015745925400 +binfiles arch=x86_64-cygwin size=1072 + bin/x86_64-cygwin/asy.exe + bin/x86_64-cygwin/xasy + +name asymptote.x86_64-darwinlegacy +category TLCore +revision 58549 +shortdesc x86_64-darwinlegacy files of asymptote +containersize 1767608 +containerchecksum 4a0059ae21976800e596ebd82f0d2e7af31282685ffe466a78b91b19230899a6dc41e4c23b54f2f30eb4339f3abba70c96891043d2a212a6b3057f76b36a65eb +binfiles arch=x86_64-darwinlegacy size=1664 + bin/x86_64-darwinlegacy/asy + bin/x86_64-darwinlegacy/xasy + +name asymptote.x86_64-linux +category TLCore +revision 57890 +shortdesc x86_64-linux files of asymptote +containersize 1259484 +containerchecksum b226fe0c87081e18bada5ac4a447699c2536b6f652f122a12c57a0abcdc4e3e5260efcc76dae4abbe90d1d2a27925f30e21a0359df4465379ae5671d0a43982a +binfiles arch=x86_64-linux size=1068 + bin/x86_64-linux/asy + bin/x86_64-linux/xasy + +name asymptote.x86_64-solaris +category TLCore +revision 58500 +shortdesc x86_64-solaris files of asymptote +containersize 1459608 +containerchecksum e0451d31992b7a58f3f17a99738fa4e5d07a348985223084708d9038f09458b6eb24d56e6fb189500beba8f263a96b6f7ec1d9010b71aefb9252612ab82f69cf +binfiles arch=x86_64-solaris size=1371 + bin/x86_64-solaris/asy + bin/x86_64-solaris/xasy + +name asypictureb +category Package +revision 33490 +shortdesc User-friendly integration of Asymptote into LaTeX +relocated 1 +longdesc The package is an unofficial alternative to the package +longdesc provided with the Asymptote distribution, for including +longdesc pictures within a LaTeX source file. While it does not +longdesc duplicate all the features of the official package, this +longdesc package is more user-friendly in several ways. Most notably, +longdesc Asymptote errors are repackaged as LaTeX errors, making +longdesc debugging less of a pain. It also has a more robust mechanism +longdesc for identifying unchanged pictures that need not be recompiled. +containersize 3608 +containerchecksum a1ab37814223b13bf49d23c527543cb537e2224335e727e07e1f645a7f76a2f3ba1a275073c775463880b0e258e716b6b00d0df29ca944f1f22b3ac70aef4378 +doccontainersize 626452 +doccontainerchecksum 68b060950fdad080061b8d2c1a91726d0eabee9aaebe322e983e0dab81df30c65d9d7d0cf32fb2847f504ede155f2c43f3ba8c00073fa425bddcfe7d47a6f000 +docfiles size=157 + RELOC/doc/latex/asypictureb/README details="Readme" + RELOC/doc/latex/asypictureb/asypictureB.pdf details="Package documentation" +srccontainersize 15528 +srccontainerchecksum 883968dc538186507f4e81a466dd980b8a8a3ec088e25e7973c62e949871c79baeb909ef64815720004d503cad33d7f9de6c7ca0950cc0618ad2111e92870b73 +srcfiles size=15 + RELOC/source/latex/asypictureb/asypictureB.dtx + RELOC/source/latex/asypictureb/asypictureB.ins +runfiles size=3 + RELOC/tex/latex/asypictureb/asypictureB.sty +catalogue-ctan /graphics/asypictureb +catalogue-license lppl1.3 +catalogue-topics graphics-incl +catalogue-version 0.3 + +name atbegshi +category Package +revision 53051 +shortdesc Execute stuff at \shipout time +relocated 1 +longdesc This package is a modern reimplementation of package everyshi, +longdesc providing various commands to be executed before a \shipout +longdesc command. It makes use of e-TeX's facilities if they are +longdesc available. The package may be used either with LaTeX or with +longdesc plain TeX. +containersize 4748 +containerchecksum 7e03a9a73d8790f6603d53c11aacd01fb7108546e2d3b6ddbd5fce1e42d68ed9c23dfe41794b943eeea67ce0c598851132dd23faa95289789911cd059a8caad8 +doccontainersize 400452 +doccontainerchecksum 8f6402dd0f36d4cc4a4674c0d0b37f012a7d6e557174ca3b58a7a2b33d89475d1e47028cc39d2b77c496bfae0751275369c5f4f49cf53b8c36fb60fce47a6bd3 +docfiles size=103 + RELOC/doc/latex/atbegshi/README.md details="Readme" + RELOC/doc/latex/atbegshi/atbegshi-example1.tex + RELOC/doc/latex/atbegshi/atbegshi-example2.tex + RELOC/doc/latex/atbegshi/atbegshi.pdf details="Package documentation" +srccontainersize 13348 +srccontainerchecksum 8eee629abbe71332a00a7ffd41f8def262baef4bdfe9e314a4afa90015b30c77e291634f3e83d904646cdbe4820e3c6e0e6398383892ea26f62ad348ac2f3409 +srcfiles size=16 + RELOC/source/latex/atbegshi/atbegshi.dtx +runfiles size=7 + RELOC/tex/generic/atbegshi/atbegshi.sty +catalogue-also everyshi +catalogue-contact-repository https://github.com/ho-tex/atbegshi +catalogue-ctan /macros/latex/contrib/atbegshi +catalogue-license lppl1.3 +catalogue-topics defer-stuff +catalogue-version 1.19 + +name atenddvi +category Package +revision 56922 +shortdesc Provides the \AtEndDvi command +relocated 1 +longdesc This package is unneeded and does nothing when used with a +longdesc LaTeX format 2020-10-01 or newer as in this case the format +longdesc provides the \AtEndDvi command. For older formats it implements +longdesc \AtEndDvi, a counterpart to \AtBeginDvi. The execution of its +longdesc argument is delayed to the end of the document at the end of +longdesc the last page. Thus \special and \write remain effective, +longdesc because they are put into the last page. This is the main +longdesc difference to \AtEndDocument. +containersize 1932 +containerchecksum 49b0a69eb308e19e3ed97406fc1ded6e80f15d7787031e2b71cc41ca2e1c74c19d3f3832ae13c5f1af70abf9f2f201c9a7ef669ed2e58349a584ddc767059c54 +doccontainersize 280328 +doccontainerchecksum d60dae681800be4495c2690f78513475d98a4480364306eb26c16c551b0e984f135aefccdcff549e6702b2b62bb185ccbdacd85dd3c12e5b20c128d9397c0e8c +docfiles size=70 + RELOC/doc/latex/atenddvi/README.md details="Readme" + RELOC/doc/latex/atenddvi/atenddvi.pdf details="Package documentation" +srccontainersize 5256 +srccontainerchecksum a2c6321e825629a75d745f0bd03cab168fb51b5c33d5d256a621847f27ec2010f0331c37644e95b2ee40604d68cf34772a3dde59b6c6fe340713c0e593fc318c +srcfiles size=5 + RELOC/source/latex/atenddvi/atenddvi.dtx +runfiles size=2 + RELOC/tex/latex/atenddvi/atenddvi-2019-12-11.sty + 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-license lppl1.3c +catalogue-topics defer-stuff +catalogue-version 1.5 + +name atkinson +category Package +revision 57624 +shortdesc Support for the Atkinson Hyperlegible family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Atkinson Hyperlegible family of fonts, named +longdesc after Braille Institute founder, J. Robert Atkinson. What makes +longdesc it different from traditional typography design is that it +longdesc focuses on letterform distinction to increase character +longdesc recognition, ultimately improving readability. +execute addMap atkinson.map +containersize 337140 +containerchecksum 902030074772c7b8dcf01cccb3e33fd045b5cf6d72293fa0d48503757321aa35b32eed030cd9dff55d5b17d7cfdd16e9ec301e91b2a5b9bab1a1a901884215cd +doccontainersize 631676 +doccontainerchecksum b0ae498ed9bc0b8275b954b4f95cdf967b7794aaf3f261ff2a0419f14faabfc4f12fa60b41c26171962ad41c32ac40e23df3d958bbcc33f5a1b2355e0c3b61c1 +docfiles size=185 + RELOC/doc/fonts/atkinson/Atkinson-Hyperlegible-Font-License-2020-1104.pdf + RELOC/doc/fonts/atkinson/BIA_AtkinsonHyerlegible-Specimen_200210.pdf + RELOC/doc/fonts/atkinson/README details="Readme" + RELOC/doc/fonts/atkinson/atkinson-samples.pdf details="Font samples" + RELOC/doc/fonts/atkinson/atkinson-samples.tex +runfiles size=336 + RELOC/fonts/enc/dvips/atkinson/atksn_2covbz.enc + RELOC/fonts/enc/dvips/atkinson/atksn_2hyoa7.enc + RELOC/fonts/enc/dvips/atkinson/atksn_cvs3iv.enc + RELOC/fonts/enc/dvips/atkinson/atksn_eyh74z.enc + RELOC/fonts/enc/dvips/atkinson/atksn_g47ykb.enc + RELOC/fonts/enc/dvips/atkinson/atksn_oy2yah.enc + RELOC/fonts/enc/dvips/atkinson/atksn_vucprl.enc + RELOC/fonts/enc/dvips/atkinson/atksn_w3wxei.enc + RELOC/fonts/enc/dvips/atkinson/atksn_wy3za2.enc + RELOC/fonts/enc/dvips/atkinson/atksn_ycy2xh.enc + RELOC/fonts/map/dvips/atkinson/atkinson.map + RELOC/fonts/opentype/public/atkinson/Atkinson-Hyperlegible-Bold-102.otf + RELOC/fonts/opentype/public/atkinson/Atkinson-Hyperlegible-BoldItalic-102.otf + RELOC/fonts/opentype/public/atkinson/Atkinson-Hyperlegible-Italic-102.otf + RELOC/fonts/opentype/public/atkinson/Atkinson-Hyperlegible-Regular-102.otf + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/atkinson/atkinsn-Regular-tlf-ts1.tfm + RELOC/fonts/type1/public/atkinson/atkinsn-Bold.pfb + RELOC/fonts/type1/public/atkinson/atkinsn-BoldItalic.pfb + RELOC/fonts/type1/public/atkinson/atkinsn-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/public/atkinson/atkinsn-BoldLCDFJ.pfb + RELOC/fonts/type1/public/atkinson/atkinsn-Italic.pfb + RELOC/fonts/type1/public/atkinson/atkinsn-ItalicLCDFJ.pfb + RELOC/fonts/type1/public/atkinson/atkinsn-Regular.pfb + RELOC/fonts/type1/public/atkinson/atkinsn-RegularLCDFJ.pfb + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-lf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-lf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-lf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-lf-ts1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-sup-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-sup-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-sup-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-tlf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-sup-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-lf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-lf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-lf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-lf-ts1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-sup-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-sup-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-sup-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-tlf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-tlf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-lf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-lf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-lf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-lf-ts1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-sup-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-sup-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-sup-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-tlf-t1.vf + RELOC/fonts/vf/public/atkinson/atkinsn-Regular-tlf-ts1.vf + RELOC/tex/latex/atkinson/LY1atkinsn-LF.fd + RELOC/tex/latex/atkinson/LY1atkinsn-Sup.fd + RELOC/tex/latex/atkinson/LY1atkinsn-TLF.fd + RELOC/tex/latex/atkinson/OT1atkinsn-LF.fd + RELOC/tex/latex/atkinson/OT1atkinsn-Sup.fd + RELOC/tex/latex/atkinson/OT1atkinsn-TLF.fd + RELOC/tex/latex/atkinson/T1atkinsn-LF.fd + RELOC/tex/latex/atkinson/T1atkinsn-Sup.fd + RELOC/tex/latex/atkinson/T1atkinsn-TLF.fd + RELOC/tex/latex/atkinson/TS1atkinsn-LF.fd + RELOC/tex/latex/atkinson/TS1atkinsn-TLF.fd + RELOC/tex/latex/atkinson/atkinson.sty +catalogue-contact-home https://brailleinstitute.org/freefont +catalogue-ctan /fonts/atkinson +catalogue-license lppl other-free +catalogue-topics accessible font font-sans font-type1 font-otf + +name attachfile +category Package +revision 42099 +shortdesc Attach arbitrary files to a PDF document +relocated 1 +longdesc Starting with PDF 1.3 (Adobe Acrobat 4.0), PDF files can +longdesc contain file attachments -- arbitrary files that a reader can +longdesc extract, just like attachments to an e-mail message. The +longdesc attachfile package brings this functionality to pdfLaTeX and +longdesc provides some additional features not available in Acrobat, +longdesc such as the ability to use arbitrary LaTeX code for the file +longdesc icon -- including things like \includegraphics, tabular, and +longdesc mathematics. Settings can be made either globally or on a +longdesc per-attachment basis. Attachfile makes it easy to attach files +longdesc and customize their appearance in the enclosing document. The +longdesc package supports the Created, Modified, and Size keys in the +longdesc EmbeddedFile's Params dictionary. +containersize 4744 +containerchecksum 526a279f3fcb309cb117327f4206e7dce8c49d39b85a846799bdfea5bf453d2f00e14e854a74d544e49fa92ce056cd8ccc7e03f56856a8e8562b7105d5fd19fa +doccontainersize 346824 +doccontainerchecksum 9f9e6572e70d348e1db71254a0c6a80cfe76b767801a3c18ad4517577b793b5388367b24f311f491f0dde8df38684b3de4a2ec7e6db67f1fc1ca7b4a9ce5ce78 +docfiles size=90 + RELOC/doc/latex/attachfile/README details="Readme" + RELOC/doc/latex/attachfile/attachfile.pdf details="Package documentation" +srccontainersize 19996 +srccontainerchecksum a4bf69ed370f495f190abaaed8616b4a3ca14184987c6c4882451ec4dd6961b827d3c38d8c049ebe73954f5fe205f727124e447d2e3cf17abe1d95336371b9a1 +srcfiles size=19 + RELOC/source/latex/attachfile/attachfile.dtx + RELOC/source/latex/attachfile/attachfile.ins +runfiles size=5 + RELOC/bibtex/bib/attachfile/attachfile.bib + RELOC/tex/latex/attachfile/attachfile.sty +catalogue-also attachfile2 +catalogue-ctan /macros/latex/contrib/attachfile +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 1.9 + +name attachfile2 +category Package +revision 57959 +shortdesc Attach files into PDF +longdesc This package can be used to attach files to a PDF document. It +longdesc is a further development of Scott Pakin's package attachfile +longdesc for pdfTeX. Apart from bug fixes, this package adds support for +longdesc dvips, some new options, and gets and writes meta information +longdesc data about the attached files. +depend attachfile2.ARCH +containersize 11044 +containerchecksum 57ef4d0c2de0cb854bb91b14a55921851a4abdd60221589f0655afc64a01d4bc672380fd572e0d451b6bac7ffd66f407b4ffab5f0fa1092dc8fcd809c81b23bc +doccontainersize 447152 +doccontainerchecksum 3033a58688a822f74712d072be3251c58b96e9e370859effc8a4ff7f8b9db98906c471a6472b7b9ab4b0d9725a9b53918e8b65d5bdbbed56e737addbe582737f +docfiles size=115 + texmf-dist/doc/latex/attachfile2/README.md details="README" + texmf-dist/doc/latex/attachfile2/attachfile2.pdf details="Package documentation" + texmf-dist/doc/man/man1/pdfatfi.1 + texmf-dist/doc/man/man1/pdfatfi.man1.pdf +srccontainersize 19548 +srccontainerchecksum abd6284061c0f936df92479cd18c0440d654a8f6ca1d610f8763fc1af6668b3eb3d4efc2f4ff33a5b9192844083e55605fbeee2fe1bcaca8079fabf498a702fe +srcfiles size=23 + texmf-dist/source/latex/attachfile2/attachfile2.dtx +runfiles size=18 + texmf-dist/scripts/attachfile2/pdfatfi.pl + texmf-dist/tex/latex/attachfile2/atfi-dvipdfmx.def + texmf-dist/tex/latex/attachfile2/atfi-dvips.def + texmf-dist/tex/latex/attachfile2/atfi-luatex.def + texmf-dist/tex/latex/attachfile2/atfi-pdftex.def + texmf-dist/tex/latex/attachfile2/attachfile2.sty +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-license lppl1.3c +catalogue-topics pdf-feat +catalogue-version 2.11 + +name attachfile2.aarch64-linux +category Package +revision 52909 +shortdesc aarch64-linux files of attachfile2 +containersize 348 +containerchecksum 6e22a0f5d1439cad761354a004de1c9adcedbbe670f033680230bdb73036ec8d7461cd232fe5d80cdfc2c601a49231707f69371871c5ca6f0f077ebc597ee0f1 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfatfi + +name attachfile2.amd64-freebsd +category Package +revision 52909 +shortdesc amd64-freebsd files of attachfile2 +containersize 348 +containerchecksum afb43641f05745735bc886506c3a65f2b1ce8a6b504d17bb5e70d0861915346ffaff445dc99af13b1d8419033c516b2fc7b7a6cc66fa90094f280303fd918ee8 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfatfi + +name attachfile2.amd64-netbsd +category Package +revision 52909 +shortdesc amd64-netbsd files of attachfile2 +containersize 348 +containerchecksum 097bd1c06b32e6fbfdba6ded7e7344e2eb1c29a28da02ee7dfa356f2f3e9c02c19a047d618afb2f19d966ca5732d478b169753ba5d3a01cfa96bb208bdc9acf5 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfatfi + +name attachfile2.armhf-linux +category Package +revision 52909 +shortdesc armhf-linux files of attachfile2 +containersize 348 +containerchecksum 089ea159c41ab74c3e109032da478fb2e647173433b8ba07b20f94ea98b2d68d46ecb68a94911ae5b3bbf7ac8e6db242dfa884e355e25b7b88fef3fe07cee36c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfatfi + +name attachfile2.i386-cygwin +category Package +revision 52909 +shortdesc i386-cygwin files of attachfile2 +containersize 344 +containerchecksum 45e2852719afddeb04a5e85e24a3324e4fd509c66dd166f52cb72e6867d5eb34ee35023a2107fbc22351dab5b7c1131443add47bdda9ec649b3f2a10fd78fe1c +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfatfi + +name attachfile2.i386-freebsd +category Package +revision 52909 +shortdesc i386-freebsd files of attachfile2 +containersize 348 +containerchecksum 18eba7e086b0d87c52dfb871026061f070623f0b5718009ded6e5b83e1fe4098156bf9d11b4675237918d8a8fc81a260046c409a7ee94c4487fcfa7e8f1a4eab +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfatfi + +name attachfile2.i386-linux +category Package +revision 52909 +shortdesc i386-linux files of attachfile2 +containersize 348 +containerchecksum 62b7a176a44befcc667619554fb9e156643eceda60cbdaf3556c51f3a9da3a6853d0ef3824ff2e52401d58053a41bd93ece4eda6d671fd8d539e5843de28df5a +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfatfi + +name attachfile2.i386-netbsd +category Package +revision 52909 +shortdesc i386-netbsd files of attachfile2 +containersize 348 +containerchecksum 0b612c686b9ca3312bf44a4d7609cb69a9ac9a278baff799f328f186033f09926fe2c0ab6b1cc82dc6226462d292c62fda5e3f07050010a2fb897c570e2a586d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfatfi + +name attachfile2.i386-solaris +category Package +revision 52909 +shortdesc i386-solaris files of attachfile2 +containersize 348 +containerchecksum d14be99f0a98d27749a8af5953c85f4f3814460dd146d23d0894e69c4fa2899e0d67c2dd078bc3167376c99118041735295f365ace36c43d6d3961299da05429 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfatfi + +name attachfile2.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of attachfile2 +containersize 348 +containerchecksum 7a2c2a3b8a292ffca71556ccfa81bf5978096dcbbb5ca05b9e67bb3d4a9b71d9803d5ac8779636138bf7d01cd06c18ec127b479ef475381c9b8bd87944051d31 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pdfatfi + +name attachfile2.win32 +category Package +revision 15404 +shortdesc win32 files of attachfile2 +containersize 692 +containerchecksum 235a0f778335e16c585f601e79f557808c222d2fc06d6e83eda0bc9bcaa91bbc746ef6d4fb78800a2a89fa754c8f0a6d7478269460e3c39135afddc1d3fdffc1 +binfiles arch=win32 size=1 + bin/win32/pdfatfi.exe + +name attachfile2.x86_64-cygwin +category Package +revision 52909 +shortdesc x86_64-cygwin files of attachfile2 +containersize 348 +containerchecksum ca73388a03af244d885efc66b93c2647cb4252ee85c620158c7916ffc0846ed0be65787eef5d46f175a31199a80dd7b243d3b56db631ba67965b491c802bc823 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfatfi + +name attachfile2.x86_64-darwinlegacy +category Package +revision 52909 +shortdesc x86_64-darwinlegacy files of attachfile2 +containersize 356 +containerchecksum abd219922593e963053e5a12a1fc1db413a0d230e5fee7af30a16ed56239de21353aeb9854223bdb3fbecfdc3505e6438005bebcedd8775551578ac1d722916d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfatfi + +name attachfile2.x86_64-linux +category Package +revision 52909 +shortdesc x86_64-linux files of attachfile2 +containersize 348 +containerchecksum f9748d7a39dd20fb69884930d67561b7020688f3d4648bcb05f6c28d20482a1f8fd45c1391291ecaf4f136dd235178b22b0e6422f78c8a678ea8e84f40474c1d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfatfi + +name attachfile2.x86_64-linuxmusl +category Package +revision 52909 +shortdesc x86_64-linuxmusl files of attachfile2 +containersize 352 +containerchecksum be99e10b9287a62dbf10f0bc71a6d70bab4a9296252034f422b5029a5e970156cf13cc0345c86972585ddb6e018cce2934d254483543fa5422c39091af61bd58 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfatfi + +name attachfile2.x86_64-solaris +category Package +revision 52909 +shortdesc x86_64-solaris files of attachfile2 +containersize 348 +containerchecksum 3d0a0385ba10f29e6415efe204513952709c398a951a2aa58b68d17fcd3a33593cdb17eb75d820169823fbdb9bcb56ecb2ff3606fee917bd59b61ac5bcc7bc08 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfatfi + +name atveryend +category Package +revision 53108 +shortdesc Hooks at the very end of a document +relocated 1 +longdesc This LaTeX packages provides two hooks for \end{document} that +longdesc are executed after the hook of \AtEndDocument: +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 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" +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-license lppl1.3 +catalogue-topics defer-stuff +catalogue-version 1.11 + +name aucklandthesis +category Package +revision 51323 +shortdesc Memoir-based class for formatting University of Auckland masters' and doctors' theses +relocated 1 +longdesc A memoir-based class for formatting University of Auckland +longdesc masters' and doctors' thesis dissertations in any discipline. +longdesc The title page does not handle short dissertations for +longdesc diplomas. +containersize 3176 +containerchecksum 54c6708b343c2605d7779561fb086b914f1a7a825f5556b4a36faee0c8ad29b1c8ed67eaffae223c5e5d47bb6e6a9aaae4c0c658debb7bfd196d9362ae7b8796 +doccontainersize 2992 +doccontainerchecksum ae73abe45b0aecd033df666f3095486fb29252449e840e9a978cf916a2eeec4a126be8c3ec60379408bd6f7322c8794ba1fa3bd77e45f1723affa18ec109d93e +docfiles size=4 + RELOC/doc/latex/aucklandthesis/README.TEXLIVE + RELOC/doc/latex/aucklandthesis/README.txt details="Readme" + RELOC/doc/latex/aucklandthesis/template.tex +runfiles size=3 + RELOC/tex/latex/aucklandthesis/aucklandthesis.cls +catalogue-ctan /macros/latex/contrib/aucklandthesis +catalogue-license lppl1.3 +catalogue-topics dissertation class + +name augie +category Package +revision 18948 +shortdesc Calligraphic font for typesetting handwriting +relocated 1 +longdesc A calligraphic font for simulating American-style informal +longdesc handwriting. The font is distributed in Adobe Type 1 format. +execute addMap augie.map +containersize 62096 +containerchecksum e8e40eb1e59b7bbd3e6b042e8c8ed40f604066fff6bffa3b46e0e7b7e5984fb25e880422d392209f6dcae6771339bb49a27bfcc7e9e33bd0b638b0794a5e5098 +doccontainersize 3324 +doccontainerchecksum 40db247d40e98bba2c79e5adbd564b77e09b52c34e75a41bb1447e586f605478e4e7399a8d294b078fbbe508eafe5d0c6a68b7e3b7c875af85016f72c74376f0 +docfiles size=6 + RELOC/doc/latex/augie/README.augie details="Readme" + RELOC/doc/latex/augie/augie.txt + RELOC/doc/latex/augie/other/Augie___.pfm + RELOC/doc/latex/augie/other/augie___.inf + RELOC/doc/latex/augie/vtex/augie.ali +runfiles size=30 + RELOC/fonts/afm/public/augie/augie___.afm + RELOC/fonts/map/dvips/augie/augie.map + RELOC/fonts/tfm/public/augie/augie7t.tfm + RELOC/fonts/tfm/public/augie/augie8c.tfm + RELOC/fonts/tfm/public/augie/augie8r.tfm + RELOC/fonts/tfm/public/augie/augie8t.tfm + RELOC/fonts/tfm/public/augie/augie___.tfm + RELOC/fonts/type1/public/augie/augie___.pfb + RELOC/fonts/vf/public/augie/augie7t.vf + RELOC/fonts/vf/public/augie/augie8c.vf + RELOC/fonts/vf/public/augie/augie8t.vf + RELOC/tex/latex/augie/ot1augie.fd + RELOC/tex/latex/augie/t1augie.fd + RELOC/tex/latex/augie/ts1augie.fd +catalogue-also twcal +catalogue-ctan /fonts/augie +catalogue-license lppl +catalogue-topics font font-calligraphic font-type1 + +name auncial-new +category Package +revision 15878 +shortdesc Artificial Uncial font and LaTeX support macros +relocated 1 +longdesc The auncial-new bundle provides packages and fonts for a script +longdesc based on the Artificial Uncial manuscript book-hand used +longdesc between the 6th & 10th century AD. The script consists of +longdesc minuscules and digits, with some appropriate period punctuation +longdesc marks. Both normal and bold versions are provided, and the font +longdesc is distributed in Adobe Type 1 format. This is an experimental +longdesc new version of the auncial bundle, which is one of a series of +longdesc bookhand fonts. The font follows the B1 encoding developed for +longdesc bookhands. Access to the encoding is essential. The encoding +longdesc mainly follows the standard T1 encoding. +execute addMap auncial.map +containersize 201360 +containerchecksum e6132432d4398f3a9b8b04f331bf0852b662da84a96882758a8ce07e7f50a0ad5317b0d6a51cfa389f55fcb3b105e5aa748d249dc3e6c8b2d52647f6c900bb24 +doccontainersize 318120 +doccontainerchecksum 2ab25dee888444432a2bd1eedeccbbcbeb5fa8008b15b0072e1537116d5c1f5f082818eddf31dc604f73ca1d4fb3bc6d3eb76c1ac712666ef1f86dd06bd19516 +docfiles size=90 + RELOC/doc/fonts/auncial-new/README details="Readme" + RELOC/doc/fonts/auncial-new/auncial.pdf details="Package documentation" + RELOC/doc/fonts/auncial-new/tryauncial.pdf details="Font sample, etc." + RELOC/doc/fonts/auncial-new/tryauncial.tex +srccontainersize 33688 +srccontainerchecksum c5fc0ed2cbf1f4813925dcd2206d479ba4a0699d33872fa36e63b21616c595dbe289a005e1de8db2a7cad30d760161932b4fd0b75c477fc915fc1572f86b7b6f +srcfiles size=64 + RELOC/source/fonts/auncial-new/auncial.dtx + RELOC/source/fonts/auncial-new/auncial.ins + RELOC/source/fonts/auncial-new/aunclmfb.dtx + RELOC/source/fonts/auncial-new/aunclmfc.dtx + RELOC/source/fonts/auncial-new/aunclmft.dtx +runfiles size=65 + RELOC/fonts/afm/public/auncial-new/auncl10.afm + RELOC/fonts/afm/public/auncial-new/aunclb10.afm + RELOC/fonts/map/dvips/auncial-new/auncial.map + RELOC/fonts/tfm/public/auncial-new/auncl10.tfm + RELOC/fonts/tfm/public/auncial-new/aunclb10.tfm + RELOC/fonts/type1/public/auncial-new/auncl10.pfb + RELOC/fonts/type1/public/auncial-new/aunclb10.pfb + RELOC/tex/latex/auncial-new/allauncl.sty + RELOC/tex/latex/auncial-new/auncial.sty + RELOC/tex/latex/auncial-new/b1auncl.fd +catalogue-ctan /fonts/auncial-new +catalogue-license lppl +catalogue-topics font font-bookhand font-type1 +catalogue-version 2.0 + +name aurical +category Package +revision 15878 +shortdesc Calligraphic fonts for use with LaTeX in T1 encoding +relocated 1 +longdesc The package that implements a set (AuriocusKalligraphicus) of +longdesc three calligraphic fonts derived from the author's handwriting +longdesc in Adobe Type 1 Format, T1 encoding for use with LaTeX: +longdesc Auriocus Kalligraphicus; Lukas Svatba; and Jana Skrivana. Each +longdesc font features oldstyle digits and (machine-generated) boldface +longdesc and slanted versions. A variant of Lukas Svatba offers a 'long +longdesc s'. +execute addMap aurical.map +containersize 2446888 +containerchecksum 1c48c36d6121005c123018cfe1266783288572c0ce8a9ea4b9b47ac28f46206de61b7a73804121f9a57c056c871c547c97ff10a529fedaca57bcb3ab78f3bea0 +doccontainersize 69056 +doccontainerchecksum 89de4991373a50d673f569e72f4727bd66a2b40b385006c3c7e4605812e7f8d3d346e3b08be55241f9926a58b40126d123d6ecea912d09db3973985d0cf9e90c +docfiles size=26 + RELOC/doc/latex/aurical/aurical.pdf details="Package introduction and samples" + RELOC/doc/latex/aurical/aurical.tex +runfiles size=779 + RELOC/fonts/afm/public/aurical/AmiciLogo.afm + RELOC/fonts/afm/public/aurical/AmiciLogoBold.afm + RELOC/fonts/afm/public/aurical/AmiciLogoBoldRslant.afm + RELOC/fonts/afm/public/aurical/AmiciLogoBoldSlant.afm + RELOC/fonts/afm/public/aurical/AmiciLogoRslant.afm + RELOC/fonts/afm/public/aurical/AmiciLogoSlant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicus.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusBold.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusBoldRslant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusBoldSlant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusRslant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusSlant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivana.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaBold.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaBoldRslant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaBoldSlant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaRslant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaSlant.afm + RELOC/fonts/afm/public/aurical/LukasSvatba.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaBold.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaBoldRslant.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaBoldSlant.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaRslant.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaSlant.afm + RELOC/fonts/map/dvips/aurical/aurical.map + RELOC/fonts/source/public/aurical/aurical_source.zip + RELOC/fonts/tfm/public/aurical/AmiciLogo.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoBold.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoRslant.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoSlant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicus.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusBold.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusRslant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusSlant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivana.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaBold.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaRslant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaSlant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatba.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaBold.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaRslant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaSlant.tfm + RELOC/fonts/type1/public/aurical/AmiciLogo.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoBold.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoBoldRslant.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoBoldSlant.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoRslant.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoSlant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicus.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusBold.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusBoldRslant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusBoldSlant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusRslant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusSlant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivana.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaBold.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaBoldRslant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaBoldSlant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaRslant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaSlant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatba.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaBold.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaBoldRslant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaBoldSlant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaRslant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaSlant.pfb + RELOC/tex/latex/aurical/T1AmiciLogo.fd + RELOC/tex/latex/aurical/T1AuriocusKalligraphicus.fd + RELOC/tex/latex/aurical/T1JanaSkrivana.fd + RELOC/tex/latex/aurical/T1LukasSvatba.fd + RELOC/tex/latex/aurical/aurical.sty +catalogue-ctan /fonts/aurical +catalogue-license lppl +catalogue-topics font font-calligraphic font-type1 +catalogue-version 1.5 + +name aurl +category Package +revision 41853 +shortdesc Extends the hyperref package with a mechanism for hyperlinked URLs abbreviated with prefixes +relocated 1 +longdesc Semantic Web resource URLs are often abbreviated with prefixes, +longdesc like "owl:Class" or "rdf:type". The abbreviated URL (aurl) +longdesc package provides the correct hyperlinks for those URLs. The +longdesc 1000 most common prefixes are predefined and more can be added. +containersize 13764 +containerchecksum 4688987b83ae65e15a74cb7960dc990710930186ec94e376cc3a74dfec9f6d75a51babd99438ff87a5f6f8e05cee483b569fabe627ef00fb892126f74749649d +doccontainersize 1052 +doccontainerchecksum a58f7cbbae262c7650bc5147b400f25f0c666effdcf37e565f665092d1cff820d2d98652947d36f6940b8d16027336b970ff88ecd9f3500d9a39a45eb4a19acf +docfiles size=2 + RELOC/doc/latex/aurl/README.md details="Readme" + RELOC/doc/latex/aurl/aurltest.tex +runfiles size=14 + RELOC/tex/latex/aurl/aurl.sty +catalogue-ctan /macros/latex/contrib/aurl +catalogue-license pd +catalogue-topics hyper + +name authoraftertitle +category Package +revision 55889 +shortdesc Make author, etc., available after \maketitle +relocated 1 +longdesc This jiffy package makes the author, title and date of the +longdesc package available to the user (as \MyAuthor, etc) after the +longdesc \maketitle command has been executed. +containersize 820 +containerchecksum b7496b1ff5dc7544afa6e2181b9c86814671d42603c1f9aa08cc6d45e02dc402e225c44fe554649251b8cdb3dfd81f1b0fb245cc8ed56204d2bcad16e5e9f9bc +doccontainersize 114940 +doccontainerchecksum a1cda29730615ec8b81082f14462c5864033e1b4cbe0b071e5cdc6d9b5393b2e701ba6e6665963170bb99408f03c8fae38fc17aeb2de83fe9c8fbdad8273482d +docfiles size=30 + RELOC/doc/latex/authoraftertitle/README.md + RELOC/doc/latex/authoraftertitle/authoraftertitle.pdf details="Package documentation" + RELOC/doc/latex/authoraftertitle/authoraftertitle.tex +runfiles size=1 + RELOC/tex/latex/authoraftertitle/authoraftertitle.sty +catalogue-also titling +catalogue-ctan /macros/latex/contrib/authoraftertitle +catalogue-license cc0 +catalogue-topics macro-supp +catalogue-version 1.0 + +name authorarchive +category Package +revision 54512 +shortdesc Adds self-archiving information to scientific papers +relocated 1 +longdesc This is a LaTeX style for producing author self-archiving +longdesc copies of (academic) papers. The following layout-styles are +longdesc pre-defined: ACMfor the two-column layout used by many ACM +longdesc conferences IEEE for the two-column layout used by many IEEE +longdesc conferences LNCS for the LNCS layout (as used by Springer) LNI +longdesc for the Lecture Notes in Informatics, published by the GI ENTCS +longdesc for the Elsevier ENTCS layout +containersize 3660 +containerchecksum 6e72515c162d80e1efcb1f07bd94a1b32b9bd78b3b9ac056e516171347cdf2460ade2a6e91ef5a4606cfe5e4d365b517fe9271f4a84d89df81b53e68efe2dd91 +doccontainersize 1209504 +doccontainerchecksum cbe7eade3c961bdf9e0c973529f5eddf7b11cdff6a9683db96c72a35aec82ea036027c8e05b11e564fff9e3f20546a881378d2570c961c194aa7969624395c94 +docfiles size=408 + RELOC/doc/latex/authorarchive/CHANGELOG.md + RELOC/doc/latex/authorarchive/LICENSE + RELOC/doc/latex/authorarchive/README.md details="Readme" + RELOC/doc/latex/authorarchive/examples/authorarchive.config + RELOC/doc/latex/authorarchive/examples/bib/brucker-authorarchive-2016.bib + RELOC/doc/latex/authorarchive/examples/bib/brucker-authorarchive-2016.enw + RELOC/doc/latex/authorarchive/examples/bib/brucker-authorarchive-2016.ris + RELOC/doc/latex/authorarchive/examples/bib/brucker-authorarchive-2016.word.xml + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-IEEEtran-nourl.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-IEEEtran-nourl.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-IEEEtran.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-IEEEtran.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-acmart.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-acmart.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-entcs.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-entcs.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-llncs-a4.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-llncs-a4.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-llncs.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-llncs.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-lni.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-lni.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-sig-alternate.pdf + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-sig-alternate.tex + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016.pdf details="Example" + RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016.tex + RELOC/doc/latex/authorarchive/examples/input/body.tex + RELOC/doc/latex/authorarchive/icons/README.md details="Readme" + RELOC/doc/latex/authorarchive/icons/vector_iD_icon.pdf + RELOC/doc/latex/authorarchive/icons/vector_iD_icon.svg +runfiles size=3 + RELOC/tex/latex/authorarchive/authorarchive.sty +catalogue-also coverpage +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-license lppl1.3c bsd2 +catalogue-topics archival journalpub +catalogue-version 1.1.1 + +name authordate +category Package +revision 52564 +shortdesc Author/date style citation styles +relocated 1 +longdesc Authordate produces styles loosely based on the recommendations +longdesc of British Standard 1629(1976), Butcher's Copy-editing and the +longdesc Chicago Manual of Style. The bundle provides four BibTeX styles +longdesc (authordate1, ..., authordate4), and a LaTeX package, for +longdesc citation in author/date style. The BibTeX styles differ in how +longdesc they format names and titles; one of them is necessary for the +longdesc LaTeX package to work. +containersize 8276 +containerchecksum c67f75eb92a937755ef0a1ef0896ae3cc1c256008d864572503d3e9d3be1321d25be59e76d4d3ae443398612233a328b1d6e2da9c103f41b30eb088208701308 +doccontainersize 2508 +doccontainerchecksum 156fec304fa95388fdbb386153482016a4d78d4862943bcd6124466b12df920498d5b42446465fc0f70da6353f58c329a27a822efb5cca8f0c4d7fdcb3239a02 +docfiles size=7 + RELOC/doc/bibtex/authordate/README details="Readme file" + RELOC/doc/bibtex/authordate/authordate1.ltx + RELOC/doc/bibtex/authordate/authordate2.ltx + RELOC/doc/bibtex/authordate/authordate3.ltx + RELOC/doc/bibtex/authordate/authordate4.ltx + RELOC/doc/bibtex/authordate/testadb.ltx +runfiles size=33 + RELOC/bibtex/bst/authordate/authordate1.bst + RELOC/bibtex/bst/authordate/authordate2.bst + RELOC/bibtex/bst/authordate/authordate3.bst + RELOC/bibtex/bst/authordate/authordate4.bst + RELOC/tex/latex/authordate/authordate1-4.sty +catalogue-also natbib +catalogue-ctan /biblio/bibtex/contrib/authordate +catalogue-license knuth +catalogue-topics bibtex-sty + +name authorindex +category Package +revision 51757 +shortdesc Index citations by author names +longdesc This package allows the user to create an index of all authors +longdesc cited in a LaTeX document. Each author entry in the index +longdesc contains the pages where these citations occur. Alternatively, +longdesc the package can list the labels of the citations that appear in +longdesc the references rather than the text pages. The package relies +longdesc on BibTeX being used to handle citations. Additionally, it +longdesc requires Perl (version 5 or higher). +depend authorindex.ARCH +containersize 9060 +containerchecksum 75e35298e4839f3975824624c7367504a26dafdf4b8e1d5238e2575c821f652282cd9a6e58fb4296b2c0345ff104dbd2281135776718fe4d2ecb76110946ab9f +doccontainersize 65956 +doccontainerchecksum a6c48d89cfd854d8acae47e318bc3951f8e81434d9a81901c8a7b7f1c25188afb013b94780ceb201e81b5d10efb7f5c24f5b5e4c8d8379aba390431707bc4d55 +docfiles size=26 + texmf-dist/doc/latex/authorindex/COPYING + texmf-dist/doc/latex/authorindex/NEWS + texmf-dist/doc/latex/authorindex/README details="Readme" + texmf-dist/doc/latex/authorindex/authorindex.pdf details="Package documentation" + texmf-dist/doc/latex/authorindex/authorindex.tex +runfiles size=7 + texmf-dist/scripts/authorindex/authorindex + texmf-dist/tex/latex/authorindex/authorindex.sty +catalogue-ctan /indexing/authorindex +catalogue-license lppl +catalogue-topics index cite-supp + +name authorindex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of authorindex +containersize 344 +containerchecksum b00424de8ec91e59c742839dc3de39b8aacfc2d33f4158d9b6e86f2c964f4a132a9bd84c8de4d2f91a2f9e000d0ef14732b3b0ae8f0152f99b077498011fccdb +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/authorindex + +name authorindex.amd64-freebsd +category Package +revision 18790 +shortdesc amd64-freebsd files of authorindex +containersize 344 +containerchecksum d4848c4e317be4264f3f3b6dfa9f901deae826b97c521aad4c619ad017c8da5427cb044f706bce870950962da0ed4815f86935e2cf7c89cec7744c20f61628fa +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/authorindex + +name authorindex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of authorindex +containersize 344 +containerchecksum addee932aefd9891bb9e61bfbb81c90aaf5172cf03930a682c893fbc8c6cfd6b963aebc8b0eab9bd867e33be3f952498ef59afcf8115cc8061a47d7e56f505da +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/authorindex + +name authorindex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of authorindex +containersize 340 +containerchecksum 85a2ce30d16623e932ecd95c17ab64fc001e4177bc159d54cd5952b4fe852dcd053350773743801cbd074d7a7e66eaf844cfe41475ce634029833e65465f61e7 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/authorindex + +name authorindex.i386-cygwin +category Package +revision 18790 +shortdesc i386-cygwin files of authorindex +containersize 340 +containerchecksum af734de9f73ea2e9124c461e4fa20cd38a1ee9711d7337e27d6a072327f8c57a4b806f5408a8df32b3e743c7e23446fdef13f7ec92813345b7ea2ffa7386809d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/authorindex + +name authorindex.i386-freebsd +category Package +revision 18790 +shortdesc i386-freebsd files of authorindex +containersize 344 +containerchecksum c859e048f293843dd5f0e640bf0ac28afd5ec089df1e2449e7c5e06bd9b2bc604758aff6e7773030c4242dc1d05e53210e2b62021f1f34c4bfa7fc067d165d34 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/authorindex + +name authorindex.i386-linux +category Package +revision 18790 +shortdesc i386-linux files of authorindex +containersize 340 +containerchecksum 7390fcfd45558fc36000296e43d3bbc3c548c65b9cdbf172e4b02791d2c0aef3a73e007788a1cad8215523cca612f2b4681aa10be670ee02d15b0181c37ab4fe +binfiles arch=i386-linux size=1 + bin/i386-linux/authorindex + +name authorindex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of authorindex +containersize 340 +containerchecksum c772a5aba66b6c08bce0a0e858266306812a3af18c2617e174ef39f34dc29344e0d9bcb5d2c476a329814b7987518bbb67ffb4312da536ca12f9ba80f4071413 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/authorindex + +name authorindex.i386-solaris +category Package +revision 18790 +shortdesc i386-solaris files of authorindex +containersize 340 +containerchecksum 184ae8df3bd513e08b97707069c8f91b10c1892912169b3b31121c60f2827da8136cf1797766f716f3237a515248c089cc494afd6c9d7c2b63218947aae00a0a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/authorindex + +name authorindex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of authorindex +containersize 340 +containerchecksum 486ff192e81dbbeca686217d4c1a5d2c878796ce1ce28216ccd50a04d58c5fd171b1e646cc755fd14d62bdbc05d1b22e8dd0820820b8d990e6940de74ca9dfde +binfiles arch=universal-darwin size=1 + bin/universal-darwin/authorindex + +name authorindex.win32 +category Package +revision 44131 +shortdesc win32 files of authorindex +containersize 684 +containerchecksum 17bba018eb5068336f2de0f84e368040e690a90cf926fbae36b2533b69659182ce1c9a56ad8fa3176a8571f5f8c43dd96cf5052d52a34427f7cbf3a7fb12fb57 +binfiles arch=win32 size=1 + bin/win32/authorindex.exe + +name authorindex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of authorindex +containersize 344 +containerchecksum f4a7cfc2334a36e276a7ea92c15c8972553b27968b23dae6fd1d4457dcf46c60cf363f0ae99e9f8eab9f257cdf6249aa4f02b21948d56cf58bf003d3ebd50fd4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/authorindex + +name authorindex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of authorindex +containersize 352 +containerchecksum 2edb2f492bccc0353b6f08394363842ac65ff8daa6cb77fd1332d1fc1483ad3b1b12e41361b1c4e63ac830db764883f1e831385d20ea1d414192202e37c948f5 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/authorindex + +name authorindex.x86_64-linux +category Package +revision 18790 +shortdesc x86_64-linux files of authorindex +containersize 340 +containerchecksum 7db0764fbf96a599468e36f854705980b55c9d60955fee73ecd62c848795e765723fe9579b5bc9905549ebdd89cc3e71964ad2b9630abd57603c88879488f2cf +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/authorindex + +name authorindex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of authorindex +containersize 344 +containerchecksum 626da353fe70d3faab3ac65e4f2951da095bff98fe86db1afe7f1574b313dac33909b9a41b94866471965254338f69ced721c9c2ec4ec588de7b15c4ebf565d7 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/authorindex + +name authorindex.x86_64-solaris +category Package +revision 18790 +shortdesc x86_64-solaris files of authorindex +containersize 344 +containerchecksum 6b2b12fab3904d760daa4e87305c39e95425a98ce0d375fbd3befcc06424bf29d82e7fce610f79cd66af6c518ee1aa199abf81df6ef0975544d7925d3acd3cf4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/authorindex + +name auto-pst-pdf +category Package +revision 56596 +shortdesc Wrapper for pst-pdf (with some psfrag features) +relocated 1 +longdesc The package uses --shell-escape to execute pst-pdf when +longdesc necessary. This makes it especially easy to integrate into the +longdesc workflow of an editor with just "LaTeX" and "pdfLaTeX" buttons. +longdesc Wrappers are provided for various psfrag-related features so +longdesc that Matlab figures via laprint, Mathematica figures via +longdesc MathPSfrag, and regular psfrag figures can all be input +longdesc consistently and easily. +depend ifplatform +depend iftex +depend xkeyval +containersize 2636 +containerchecksum 5c1f85a0ec5aa4173181b087a1f5f8e30be6d8c21c3461999a85b42032d45292aa6f8aae4922a5e97d073fff5b2c9d114cd30f5d5bb73ef523718e891ce59473 +doccontainersize 211044 +doccontainerchecksum 73d6f4b2e298eedc537a46c1e69bce9e160eb28e6bc2f631596a4fd3aa658d8b51d6dfddb6748b7e629fe564a2ced5e55bcd766650616d936a4197e368b2fcd7 +docfiles size=63 + RELOC/doc/latex/auto-pst-pdf/README.txt details="Package Readme" + RELOC/doc/latex/auto-pst-pdf/auto-pst-pdf.pdf details="Package documentation" language="en" + RELOC/doc/latex/auto-pst-pdf/example-psfrag.tex + RELOC/doc/latex/auto-pst-pdf/example.eps + RELOC/doc/latex/auto-pst-pdf/example.tex +srccontainersize 7256 +srccontainerchecksum 199e9fefcb2f96f1ad9e33abeecedcff9c72f20614c48951197703ff65901763ef88f425af08021b1843f30c3ee8e3a9756095ad4b165772b829a29c6e5515f2 +srcfiles size=6 + RELOC/source/latex/auto-pst-pdf/auto-pst-pdf.dtx + RELOC/source/latex/auto-pst-pdf/auto-pst-pdf.ins +runfiles size=2 + RELOC/tex/latex/auto-pst-pdf/auto-pst-pdf.sty +catalogue-contact-repository https://github.com/wspr/will2e/ +catalogue-ctan /macros/latex/contrib/auto-pst-pdf +catalogue-license lppl1.3c +catalogue-topics graphics-epspdf +catalogue-version 0.7 + +name auto-pst-pdf-lua +category Package +revision 54779 +shortdesc Using LuaLaTeX together with PostScript code +relocated 1 +longdesc This package is a slightly modified version of auto-pst-pdf by +longdesc Will Robertson, which itself is a wrapper for pst-pdf by Rolf +longdesc Niepraschk. The package allows the use of LuaLaTeX together +longdesc with PostScript related code, eg. PSTricks. It depends on +longdesc ifpdf, ifluatex, ifplatform, and xkeyval. +depend iftex +containersize 2496 +containerchecksum 053adb8525158b1c0703333bc9a20d3923468da54db4400f83c8c651820a01a9569542afb5502b56abf7034122fe5baf17ea6d2e7d7dbe53acdc7c2f9b1de68d +doccontainersize 69040 +doccontainerchecksum dc7647af18502d3f7d88cb9dde9a4bc467204a78d6f6ef441d7593aeb2f9776532eddb94350081619986a0dece023c2ece54d3dce554188f5b62056b7a1a96b8 +docfiles size=20 + RELOC/doc/latex/auto-pst-pdf-lua/Changes + RELOC/doc/latex/auto-pst-pdf-lua/README details="Readme" + RELOC/doc/latex/auto-pst-pdf-lua/auto-pst-pdf-lua-doc.pdf details="Package documentation" + RELOC/doc/latex/auto-pst-pdf-lua/auto-pst-pdf-lua-doc.tex +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-license lppl1.3c +catalogue-topics graphics-epspdf +catalogue-version 0.03 + +name autoaligne +category Package +revision 56966 +shortdesc Align terms and members in math expressions +relocated 1 +longdesc This package allows to align terms and members between lines +longdesc containing math expressions. +containersize 9464 +containerchecksum 25e4d56033596a05c6b9e9bae4380dd5fc27d469cfa63272bb388fb3b38a57d2a980fadad7061c76940adc3d50e2115037b5299cd2f095ba5c2e9f47a88fb8d5 +doccontainersize 356128 +doccontainerchecksum ef84201b9cfc06b3c6f9031389bd9b593e5477f92507843689304afa8db67737887773d1d5c0a2be2fc77d922dd183cffa0ca27063cf27cd3d41664f76803a7b +docfiles size=88 + RELOC/doc/generic/autoaligne/README details="Readme" + RELOC/doc/generic/autoaligne/autoaligne-fr.pdf details="Package documentation (French)" language="fr" +runfiles size=9 + RELOC/tex/generic/autoaligne/autoaligne-fr.tex + RELOC/tex/generic/autoaligne/autoaligne.sty + RELOC/tex/generic/autoaligne/autoaligne.tex +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-license lppl1.3c +catalogue-topics maths alignment alignment-supp +catalogue-version 1.5 + +name autoarea +category Package +revision 15878 +catalogue pictex-autoarea +shortdesc Automatic computation of bounding boxes with PiCTeX +relocated 1 +longdesc This package makes PiCTeX recognize lines and arcs in +longdesc determining the "bounding box" of a picture. (PiCTeX so far +longdesc accounted for put commands only). The "bounding box" is +longdesc essential for proper placement of a picture between running +longdesc text and margins and for keeping the running text away. +containersize 4168 +containerchecksum 81a6e2d2c241056cdb5ca7e54b33b523aa3bebe08d83e3418080659d316720a6bdcbb63d82c337175e6f0591a81ea322289333c5b8f125360c5ed4ae99843c4d +doccontainersize 36544 +doccontainerchecksum 8b3cb3def1945ae63b7d29614b868d07c64fba6ef50e266f92e3f1de1aa536084f5af5ff095bd467ef83d33701f780dcaed8a7d1c60dc68dcb5323444158b3b3 +docfiles size=22 + RELOC/doc/latex/autoarea/ANNOUNCE.txt + RELOC/doc/latex/autoarea/README.aa + RELOC/doc/latex/autoarea/autodemo/README.autodemo + RELOC/doc/latex/autoarea/autodemo/autodemo+.log + RELOC/doc/latex/autoarea/autodemo/autodemo+.pdf + RELOC/doc/latex/autoarea/autodemo/autodemo+.tex + RELOC/doc/latex/autoarea/autodemo/autodemo-.log + RELOC/doc/latex/autoarea/autodemo/autodemo-.pdf + RELOC/doc/latex/autoarea/autodemo/autodemo-.tex + RELOC/doc/latex/autoarea/autodemo/autodemo.tex +runfiles size=3 + RELOC/tex/latex/autoarea/autoarea.sty +catalogue-also pictex +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /graphics/pictex/addon/autoarea +catalogue-license lppl +catalogue-topics graphics-in-tex +catalogue-version 0.3a + +name autobreak +category Package +revision 43337 +shortdesc Simple line breaking of long formulae +relocated 1 +longdesc This package implements a simple mechanism of line/page +longdesc breaking within the align environment of the amsmath package; +longdesc new line characters are considered as possible candidates for +longdesc the breaks and the package tries to put breaks at adequate +longdesc places. It is suitable for computer-generated long formulae +longdesc with many terms. +containersize 2624 +containerchecksum 91cc17692654270bba9536ea9186ffea2e7e9a6e9dbf0ffcd9821c8b3ec470ea3222af2a1df05d85e47d65fc1737cf2dbeba150641355bf826e5ad2da90db059 +doccontainersize 545668 +doccontainerchecksum 0d06f75e6f4fb254463ee2a075d106c14a06c5f7fc25b5047fbeec0e48ca9faf6e136f098312811329db1da5f9fffb6dfd45abe6eea9ecf682f4fe99f0384178 +docfiles size=135 + RELOC/doc/latex/autobreak/README.md details="README" language="en" + RELOC/doc/latex/autobreak/autobreak.pdf details="Package documentation" +srccontainersize 9432 +srccontainerchecksum 7120382c7974acccf1a49548ad8e654b945ae2ecfb858b37ca871fb7b5b054d8554c971a86c511d03e2ffa91e5cbc6d61cc743da51b0a9de705f74c0b9c2c7c1 +srcfiles size=10 + RELOC/source/latex/autobreak/autobreak.dtx + RELOC/source/latex/autobreak/autobreak.ins +runfiles size=3 + RELOC/tex/latex/autobreak/autobreak.sty +catalogue-ctan /macros/latex/contrib/autobreak +catalogue-license lppl1.3 +catalogue-topics maths maths-theorem +catalogue-version 0.3 + +name autofancyhdr +category Package +revision 54049 +shortdesc Automatically compute headlength for fancyhdr package +relocated 1 +longdesc The package automatically computes headlength for the fancyhdr +longdesc package +containersize 1200 +containerchecksum 3ee2452c80ba671414a1669e0c47c7069189dcc0dde97bb33f94e77251b2ac8511b7cb79fd5866c2d3acfbe7768e20f715e61a6303a847ab82564743fb8d2a2f +doccontainersize 6596 +doccontainerchecksum 1fc9ac9d47d65eecb1a6736aa5fb148a6309fa64cd18053b038483d484f974f3f1aafe8afb03b88921ab5a990b78a2aa9dc6d7149884a550c57340218f72159a +docfiles size=6 + RELOC/doc/latex/autofancyhdr/LICENSE + RELOC/doc/latex/autofancyhdr/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/autofancyhdr/autofancyhdr.sty +catalogue-also fancyhdr +catalogue-contact-bugs https://framagit.org/baghban/autofancyhdr/issues +catalogue-contact-home https://framagit.org/baghban/autofancyhdr +catalogue-contact-repository https://framagit.org/baghban/autofancyhdr +catalogue-contact-support http://qa.parsilatex.com/ +catalogue-ctan /macros/latex/contrib/autofancyhdr +catalogue-license lppl1.3c +catalogue-topics page-hf +catalogue-version 0.1 + +name automata +category Package +revision 19717 +shortdesc Finite state machines, graphs and trees in MetaPost +relocated 1 +longdesc The package offers a collection of macros for MetaPost to make +longdesc easier to draw finite-state machines, automata, labelled +longdesc graphs, etc. The user defines nodes, which may be isolated or +longdesc arranged into matrices or trees; edges connect pairs of nodes +longdesc through arbitrary paths. Parameters, that specify the shapes of +longdesc nodes and the styles of edges, may be adjusted. +containersize 5320 +containerchecksum 09026f967084d5f1804a32166e854ac410a768f6b4654d9ea9bb69dd29acb8a3199919daa1fd6dd48963ea5d6454b9b9d8263939e5af81a8f07f66f08b5f4835 +doccontainersize 88216 +doccontainerchecksum 49c6515e979a87ce270d32b367c5800acffa4b638a8bed3e20f3e74387c2e7ee4ae0c2ea8b232e2ae57d0d0a730424d18911835581c0c274732f3d36f650693b +docfiles size=26 + RELOC/doc/metapost/automata/README details="Readme" + RELOC/doc/metapost/automata/example.mp + RELOC/doc/metapost/automata/example.pdf details="Example of use" + RELOC/doc/metapost/automata/example.tex +runfiles size=7 + RELOC/metapost/automata/automata.mp +catalogue-ctan /graphics/metapost/contrib/macros/automata +catalogue-license lppl +catalogue-topics automata +catalogue-version 0.3 + +name autonum +category Package +revision 36084 +shortdesc Automatic equation references +relocated 1 +longdesc The package arranges that equation numbers are applied only to +longdesc those equations that are referenced. This operation is similar +longdesc to the showonlyrefs option of the package mathtools. +containersize 3460 +containerchecksum 3a663a53b4b4b53515978460dae1ac275cc4e3e6981b008c78b875e3e47af8abd950cb35f6e416ab02507e498bd75d6f4a775e2b429d668d02ebaa4bfdd03f25 +doccontainersize 400788 +doccontainerchecksum 2d0c515fac8afb219aaa1ee270b30bac09bcc310afcad71ff6ad2a3448187733718c03c304c09a0d631595d36043dc3eb0b6849fce0e4c3bf7f5d249b15c99c2 +docfiles size=104 + RELOC/doc/latex/autonum/README details="Readme" + RELOC/doc/latex/autonum/autonum.pdf details="Package documentation" + RELOC/doc/latex/autonum/test-autonum.pdf + RELOC/doc/latex/autonum/test-autonum.tex + RELOC/doc/latex/autonum/test-freeze.tex +srccontainersize 17168 +srccontainerchecksum 5c20017e3008ea726979ca70272923d9c62a5c36367fdcdf9d62e141f4822201e2cd36a9b4c58a6591568669daca65d17cbb78e5382c01ad4d624da7074f4010 +srcfiles size=18 + RELOC/source/latex/autonum/autonum.dtx + RELOC/source/latex/autonum/autonum.ins +runfiles size=3 + RELOC/tex/latex/autonum/autonum.sty +catalogue-ctan /macros/latex/contrib/autonum +catalogue-license lppl1.3 +catalogue-topics maths label-ref +catalogue-version 0.3.11 + +name autopdf +category Package +revision 32377 +shortdesc Conversion of graphics to pdfLaTeX-compatible formats +relocated 1 +longdesc The package facilitates the on-the-fly conversion of various +longdesc graphics formats to formats supported by pdfLaTeX (e.g. PDF). +longdesc It uses a range of external programs, and therefore requires +longdesc that the LaTeX run starts with write18 enabled. +containersize 4936 +containerchecksum f855fbe477986356d34360876a4a6613638255e234ad0210cb035a1f3a9b9b827ea140654e2001aa29ac09d7b8addf8f872d34bdb4d1700ead2f6e6f083cb2a6 +doccontainersize 229084 +doccontainerchecksum d2c2ecf193f03f4f568d2304128e50f5cb5964a6c0a2ca8b739c59b9d3e80637134b5ca91e1b5c1971db11eb54a086b3eb888b6984050dbffa22a166c6757e39 +docfiles size=57 + RELOC/doc/latex/autopdf/README.txt + RELOC/doc/latex/autopdf/autopdf.pdf details="Package documentation" +srccontainersize 8256 +srccontainerchecksum fdec2bf2079746f67f3ffb790eb2e10a7dc884fbf68b2c1a6ec9c67ad0ed411d9ff87baa89fc11dfbf9172bfcd81b411d8aa223c209def4fda6c91a4a9d32ed6 +srcfiles size=8 + RELOC/source/latex/autopdf/autopdf.dtx +runfiles size=5 + RELOC/tex/latex/autopdf/autopdf.sty +catalogue-also epstopdf auto-pst-pdf +catalogue-ctan /macros/latex/contrib/autopdf +catalogue-license lppl1.2 +catalogue-topics graphics-epspdf callback +catalogue-version 1.1 + +name autosp +category Package +revision 58211 +shortdesc A Preprocessor that generates note-spacing commands for MusiXTeX scores +longdesc This program simplifies the creation of MusiXTeX scores by +longdesc converting (non-standard) commands of the form \anotes ... \en +longdesc into one or more conventional note-spacing commands, as +longdesc determined by the note values themselves, with \sk spacing +longdesc commands inserted as necessary. The coding for an entire +longdesc measure can be entered one part at a time, without concern for +longdesc note-spacing changes within the part or spacing requirements of +longdesc other parts. For example, \anotes\qa J\qa K&\ca l\qa m\ca n\en +longdesc generates \Notes\qa J\sk\qa K\sk&\ca l\qa m\sk\ca n\en . +depend autosp.ARCH +containersize 696 +containerchecksum 67587e8b456257be9b924a5bb8c8f4def22fa9aa9678663975ef74e346dc186ae7848a9dc043733cf1244f254750ef4f34204575f62195d4b966ed8336781bce +doccontainersize 282136 +doccontainerchecksum 2905669b9e2b61749cb7b1eaa02be889c4e8d8adbd78b126e7ee6d894f24f623c888a24abac1d163f3332c5cfa9cd1f64d0de95200350b88a7f47faeacb841a6 +docfiles size=106 + texmf-dist/doc/generic/autosp/README details="Readme" + texmf-dist/doc/generic/autosp/barsant2.aspc + texmf-dist/doc/generic/autosp/barsant2.pdf + texmf-dist/doc/generic/autosp/geminiani.aspc + texmf-dist/doc/generic/autosp/geminiani.pdf + texmf-dist/doc/generic/autosp/kinder2.aspc + texmf-dist/doc/generic/autosp/kinder2.pdf + texmf-dist/doc/generic/autosp/quod2.aspc + texmf-dist/doc/generic/autosp/quod2.pdf + texmf-dist/doc/generic/autosp/quod2A.aspc + texmf-dist/doc/generic/autosp/quod2A.pdf + texmf-dist/doc/generic/autosp/rebar.1 + texmf-dist/doc/generic/autosp/rebar.pdf + texmf-dist/doc/man/man1/autosp.1 + texmf-dist/doc/man/man1/autosp.man1.pdf + texmf-dist/doc/man/man1/tex2aspc.1 + texmf-dist/doc/man/man1/tex2aspc.man1.pdf +catalogue-contact-support https://tug.org/mailman/listinfo/tex-music +catalogue-ctan /support/autosp +catalogue-license gpl2+ +catalogue-topics music + +name autosp.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of autosp +containersize 21048 +containerchecksum 61f417e058e48160b21b9bc3529af96d987c49bb9f77ad5ef780454e210f1562f705b687dc061c908928fdc8349d9973b67cb9b99fdbf831638ab2a1d9acda41 +binfiles arch=aarch64-linux size=17 + bin/aarch64-linux/autosp + bin/aarch64-linux/tex2aspc + +name autosp.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of autosp +containersize 21176 +containerchecksum 9e7de5ca70591cc4887675398fb59cb9b33bf8a86d39ffedeb8a12973f89498ff03c926ae1ac3c4b0ecb08feae614d8d84c3686daaf136ca2ca90902dd07b510 +binfiles arch=amd64-freebsd size=15 + bin/amd64-freebsd/autosp + bin/amd64-freebsd/tex2aspc + +name autosp.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of autosp +containersize 18360 +containerchecksum f1665d3525b1877a2489d01fb7d8bba18545ec1cda86e1502c881fef03de9c99eea773c0629c8798a21cc8391d3bba4e86a9c62cf5d2b489ce561dd60e2b007d +binfiles arch=amd64-netbsd size=16 + bin/amd64-netbsd/autosp + bin/amd64-netbsd/tex2aspc + +name autosp.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of autosp +containersize 18248 +containerchecksum 64268376a11d1ef13299f3927bf567e5743c0dcbe48a45f4ef740e0e34fd41a254bdaca6d3c0de319140423055f805b5cd22907cc8577ee5053850a5c70671fd +binfiles arch=armhf-linux size=13 + bin/armhf-linux/autosp + bin/armhf-linux/tex2aspc + +name autosp.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of autosp +containersize 18384 +containerchecksum da2e8887b14b2fc62862330213ba1205cbdb4b053bb2b7a681d509928c74e96e6ed393f0747a10fdc4a766587ea379eb31853c68f8837766f2523ad455d36319 +binfiles arch=i386-cygwin size=15 + bin/i386-cygwin/autosp.exe + bin/i386-cygwin/tex2aspc.exe + +name autosp.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of autosp +containersize 18548 +containerchecksum 7bbd732c5b26660c1936223b406def965c1e410bac422de95c2690e096eaf53b9a5a8f929ae94128a795d00a4f7c6103a617759556315ac06111709dfe6f42c8 +binfiles arch=i386-freebsd size=13 + bin/i386-freebsd/autosp + bin/i386-freebsd/tex2aspc + +name autosp.i386-linux +category Package +revision 57878 +shortdesc i386-linux files of autosp +containersize 20232 +containerchecksum efb8414826bcd4f33ca0cceade41cfe6faa9f45bad4f430b79b94d26690a5864d936ad48d17bc49beb560175edadb8b94173629b61d9e8581a5b672f31411330 +binfiles arch=i386-linux size=15 + bin/i386-linux/autosp + bin/i386-linux/tex2aspc + +name autosp.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of autosp +containersize 17036 +containerchecksum 7c850e757e66a28be42dd2f13b88ef1ab9bf481a70b7a741aec09077d06822968c6f0a1e81cb5ca1122228d9906ccd075f7ed62d64e74a9cc131737142aa3727 +binfiles arch=i386-netbsd size=16 + bin/i386-netbsd/autosp + bin/i386-netbsd/tex2aspc + +name autosp.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of autosp +containersize 20372 +containerchecksum 3ae82cfcd517a59879ac5dc3748b7c8290fd96150c53cad5cf57c0a836b190ccb6fab0a77f95f0114df706b8923d3a4c3120f540efa7c06c8d790a8e64946f1f +binfiles arch=i386-solaris size=14 + bin/i386-solaris/autosp + bin/i386-solaris/tex2aspc + +name autosp.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of autosp +containersize 46348 +containerchecksum 061046bbb41a822877c630e407965c16b201846a2d4bc3aa1050bc36876fb079b4c3bb83a27546e7746d866cfed4560fe86f2af034d58001d3beae8948a65fd8 +binfiles arch=universal-darwin size=75 + bin/universal-darwin/autosp + bin/universal-darwin/tex2aspc + +name autosp.win32 +category Package +revision 58783 +shortdesc win32 files of autosp +containersize 20484 +containerchecksum a63785ffebe582f3aa50ed0e2e362dbe61b191ce9215400d6c294c9162a92cb8c1307af482f04c686fba125aa8dd8bf35cb5a12fcaff2c3f6fa42ba6b4135288 +binfiles arch=win32 size=13 + bin/win32/autosp.exe + bin/win32/tex2aspc.exe + +name autosp.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of autosp +containersize 20876 +containerchecksum c77c55a798809c19c193608cab20d6ae8ab0f3e209212ea78ff5f07b809ea3bc644b4de31a4a41f996b95a2b9e294c14f4775219c8de0b16849bb3f76de38fdf +binfiles arch=x86_64-cygwin size=15 + bin/x86_64-cygwin/autosp.exe + bin/x86_64-cygwin/tex2aspc.exe + +name autosp.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of autosp +containersize 19792 +containerchecksum a0438fdafa3ea75a1e7c1c200a280af7c43e9adc074137e4f8aad8ae70083925d6a17737c463edcd8f4cdfc530ebddc4b5d3e2682160796ea7a634eb33dd4904 +binfiles arch=x86_64-darwinlegacy size=15 + bin/x86_64-darwinlegacy/autosp + bin/x86_64-darwinlegacy/tex2aspc + +name autosp.x86_64-linux +category Package +revision 57878 +shortdesc x86_64-linux files of autosp +containersize 20092 +containerchecksum 9e5552f2590adcd49fb44485c52dbed97a9e513f8636fafd2946b92a5162b3acfcadadae46697f882b77d77d745aa7220bbdb29dc5e8dbf5368ced3f272c648a +binfiles arch=x86_64-linux size=13 + bin/x86_64-linux/autosp + bin/x86_64-linux/tex2aspc + +name autosp.x86_64-linuxmusl +category Package +revision 57878 +shortdesc x86_64-linuxmusl files of autosp +containersize 20932 +containerchecksum 531585afa4e6a0a32e06af0de9ac8b7bdb3300226195b3313f808b93b98e34918b1d312c03443341384c418878a240d1f649c82548b0da1017ba62cfa8db5d25 +binfiles arch=x86_64-linuxmusl size=15 + bin/x86_64-linuxmusl/autosp + bin/x86_64-linuxmusl/tex2aspc + +name autosp.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of autosp +containersize 21748 +containerchecksum ecd2323ca91dd15df872b351a2c28e73c03adcb62059d56f06f92241396cf410765021161baca120352744dbd3a53eb4992067b667dc38be6919c7429773d419 +binfiles arch=x86_64-solaris size=15 + bin/x86_64-solaris/autosp + bin/x86_64-solaris/tex2aspc + +name auxhook +category Package +revision 53173 +shortdesc Hooks for auxiliary files +relocated 1 +longdesc This package auxhook provides hooks for adding stuff at the +longdesc begin of .aux files. +containersize 1660 +containerchecksum 8ea845a19818df2df7939031e7b251b4b4d99a17c0d1b8177a592275bed6efdc660266964e0639222b86cfdd897bcf13302f1477b997ea1a06179cdd44aff0d1 +doccontainersize 285640 +doccontainerchecksum 7c4f850d93f8a6d25a35e762bdb2df26384c75ba1cbaba06806964737badb2f7c8ba3192c62df7e7f3de12c6fa117ebc525c735e696a9cafdad943a8cfeedabd +docfiles size=71 + RELOC/doc/latex/auxhook/README.md + RELOC/doc/latex/auxhook/auxhook.pdf details="Package documentation" +srccontainersize 5240 +srccontainerchecksum f378f365c8fdee267224d092b35cd2bde971302cba003edd24b3f0a06bbd59e077096580e65480cb66adc6488aefb688ea423d74334976dfc92168688514e0b4 +srcfiles size=5 + RELOC/source/latex/auxhook/auxhook.dtx +runfiles size=1 + RELOC/tex/latex/auxhook/auxhook.sty +catalogue-contact-bugs https://github.com/ho-tex/auxhook/issues +catalogue-contact-repository https://github.com/ho-tex/auxhook +catalogue-ctan /macros/latex/contrib/auxhook +catalogue-license lppl1.3 +catalogue-topics defer-stuff +catalogue-version 1.6 + +name avantgar +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uag.map +containersize 241424 +containerchecksum cf5f4701305bcfe2dcb2c92d43fbf2d0ab3b027b2c9b772926216094532e935cec234866f43135e7e050068679d0b1de5a11833696fd103ddae949458cd03044 +runfiles size=392 + RELOC/dvips/avantgar/config.uag + RELOC/fonts/afm/adobe/avantgar/pagd8a.afm + RELOC/fonts/afm/adobe/avantgar/pagdo8a.afm + RELOC/fonts/afm/adobe/avantgar/pagk8a.afm + RELOC/fonts/afm/adobe/avantgar/pagko8a.afm + RELOC/fonts/afm/urw/avantgar/uagb8a.afm + RELOC/fonts/afm/urw/avantgar/uagbi8a.afm + RELOC/fonts/afm/urw/avantgar/uagd8a.afm + RELOC/fonts/afm/urw/avantgar/uagdo8a.afm + RELOC/fonts/afm/urw/avantgar/uagk8a.afm + RELOC/fonts/afm/urw/avantgar/uagko8a.afm + RELOC/fonts/afm/urw/avantgar/uagr8a.afm + RELOC/fonts/afm/urw/avantgar/uagri8a.afm + RELOC/fonts/map/dvips/avantgar/uag.map + RELOC/fonts/tfm/adobe/avantgar/pagd.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdc.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdc7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdc8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagkc.tfm + RELOC/fonts/tfm/adobe/avantgar/pagkc7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagkc8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagkc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagkc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagrc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagrc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro8t.tfm + RELOC/fonts/type1/urw/avantgar/uagd8a.pfb + RELOC/fonts/type1/urw/avantgar/uagd8a.pfm + RELOC/fonts/type1/urw/avantgar/uagdo8a.pfb + RELOC/fonts/type1/urw/avantgar/uagdo8a.pfm + RELOC/fonts/type1/urw/avantgar/uagk8a.pfb + RELOC/fonts/type1/urw/avantgar/uagk8a.pfm + RELOC/fonts/type1/urw/avantgar/uagko8a.pfb + RELOC/fonts/type1/urw/avantgar/uagko8a.pfm + RELOC/fonts/vf/adobe/avantgar/pagd.vf + RELOC/fonts/vf/adobe/avantgar/pagd7t.vf + RELOC/fonts/vf/adobe/avantgar/pagd8c.vf + RELOC/fonts/vf/adobe/avantgar/pagd8t.vf + RELOC/fonts/vf/adobe/avantgar/pagdc.vf + RELOC/fonts/vf/adobe/avantgar/pagdc7t.vf + RELOC/fonts/vf/adobe/avantgar/pagdc8t.vf + RELOC/fonts/vf/adobe/avantgar/pagdo.vf + RELOC/fonts/vf/adobe/avantgar/pagdo7t.vf + RELOC/fonts/vf/adobe/avantgar/pagdo8c.vf + RELOC/fonts/vf/adobe/avantgar/pagdo8t.vf + RELOC/fonts/vf/adobe/avantgar/pagk.vf + RELOC/fonts/vf/adobe/avantgar/pagk7t.vf + RELOC/fonts/vf/adobe/avantgar/pagk8c.vf + RELOC/fonts/vf/adobe/avantgar/pagk8t.vf + RELOC/fonts/vf/adobe/avantgar/pagkc.vf + RELOC/fonts/vf/adobe/avantgar/pagkc7t.vf + RELOC/fonts/vf/adobe/avantgar/pagkc8t.vf + RELOC/fonts/vf/adobe/avantgar/pagko.vf + RELOC/fonts/vf/adobe/avantgar/pagko7t.vf + RELOC/fonts/vf/adobe/avantgar/pagko8c.vf + RELOC/fonts/vf/adobe/avantgar/pagko8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagb7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagb8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagb8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbi7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbi8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbi8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbo7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbo8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbo8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagd7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagd8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagd8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdo7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdo8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdo8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagk7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagk8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagk8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagkc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagkc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagko7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagko8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagko8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagr7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagr8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagr8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagrc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagrc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagri7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagri8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagri8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagro7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagro8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagro8t.vf + RELOC/tex/latex/avantgar/8ruag.fd + RELOC/tex/latex/avantgar/omluag.fd + RELOC/tex/latex/avantgar/omsuag.fd + RELOC/tex/latex/avantgar/ot1uag.fd + RELOC/tex/latex/avantgar/t1uag.fd + RELOC/tex/latex/avantgar/ts1uag.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name avremu +category Package +revision 35373 +shortdesc An 8-Bit Microcontroller Simulator written in LaTeX +relocated 1 +longdesc A fully working package to simulate a Microprocessor in pure +longdesc LaTeX. The simulator is able to calculate complex pictures, +longdesc like Mandelbrot sets. +containersize 12992 +containerchecksum 2541e80c0dd798675164cace381730c75268d5385883163b67230d49022f16c9ec72a77d602e8b5094db31b1d3aef2f0f71da91ed2f7eb7fe1039117f7488cf3 +doccontainersize 147960 +doccontainerchecksum 12c97e23dc853a971b27258a7666753d019620e832a06b10a49a26f0f30d7c6fde83c0e328e1579b62376f2e9cd10b0b3950fd6c4ca89041a988fedd4c604acb +docfiles size=37 + RELOC/doc/latex/avremu/README details="Readme" + RELOC/doc/latex/avremu/avremu.pdf details="Package documentation" +srccontainersize 22324 +srccontainerchecksum 1d6a7f16cacd937490ae5e7416f43f4f9eafbf053f6e35d498a26b8d4092ffe79740a12d96503ee5636c4d1d8b3bd02653b4839b957cb91cca672914bbe98899 +srcfiles size=25 + RELOC/source/latex/avremu/avremu.tex + RELOC/source/latex/avremu/imgs/mandelbrot-128x128.png + RELOC/source/latex/avremu/imgs/mandelbrot-20x20.png + RELOC/source/latex/avremu/imgs/mandelbrot-250x250.png + RELOC/source/latex/avremu/simple-testsuite.tex + RELOC/source/latex/avremu/test-suite/FOOTER + RELOC/source/latex/avremu/test-suite/HEADER + RELOC/source/latex/avremu/test-suite/complex-memory.c + RELOC/source/latex/avremu/test-suite/empty-main.c + RELOC/source/latex/avremu/test-suite/fibonacci-rec.c + RELOC/source/latex/avremu/test-suite/float.c + RELOC/source/latex/avremu/test-suite/func-ptr.c + RELOC/source/latex/avremu/test-suite/mandelbrot.c + RELOC/source/latex/avremu/test-suite/mul.c + RELOC/source/latex/avremu/test-suite/printf.c + RELOC/source/latex/avremu/test-suite/shift.c + RELOC/source/latex/avremu/test-suite/string.c + RELOC/source/latex/avremu/test-suite/sum-rec.c + RELOC/source/latex/avremu/test-suite/test-suite +runfiles size=27 + RELOC/tex/latex/avremu/avr.binary.tex + RELOC/tex/latex/avremu/avr.bitops.tex + RELOC/tex/latex/avremu/avr.draw.tex + RELOC/tex/latex/avremu/avr.instr.tex + RELOC/tex/latex/avremu/avr.io.tex + RELOC/tex/latex/avremu/avr.memory.tex + RELOC/tex/latex/avremu/avr.numbers.tex + RELOC/tex/latex/avremu/avr.testsuite.tex + RELOC/tex/latex/avremu/avremu.sty +catalogue-contact-repository https://gitlab.brokenpipe.de/stettberger/avremu +catalogue-ctan /macros/latex/contrib/avremu +catalogue-license lppl1.3 +catalogue-topics emulation +catalogue-version 0.1 + +name awesomebox +category Package +revision 57349 +shortdesc Draw admonition blocks in your documents, illustrated with FontAwesome icons +relocated 1 +longdesc Awesome Boxes is all about drawing admonition blocks around +longdesc text to inform or alert readers about something particular. The +longdesc specific aim of this package is to use FontAwesome icons to +longdesc ease the illustration of these blocks. The package depends on +longdesc fontawesome5, xcolor, array and xparse. +containersize 2252 +containerchecksum 4984d58669576137746518b68988fd9837b5ef133eb8da948f67bb0d5f775ad961055871bb46084e420ef0564b6a4796ba81a093be93f667f959a45ffc0c6174 +doccontainersize 56416 +doccontainerchecksum eec717fa5bb5a0f0d15cfc39d2172f8818718f6c7037fe962a0e811c131cbc91d3f3167077ec413d565e6b0b782f5b3f77b38257caa6529a6f5db7da8e163c3d +docfiles size=19 + RELOC/doc/latex/awesomebox/LICENSE + RELOC/doc/latex/awesomebox/README.md details="Readme" + RELOC/doc/latex/awesomebox/awesomebox.pdf details="Package documentation" + RELOC/doc/latex/awesomebox/awesomebox.tex +runfiles size=2 + RELOC/tex/latex/awesomebox/awesomebox.sty +catalogue-contact-home https://git.umaneti.net/latex-awesomebox/about/ +catalogue-contact-repository https://git.umaneti.net/latex-awesomebox/ +catalogue-ctan /graphics/awesomebox +catalogue-license other-free +catalogue-topics boxing +catalogue-version 0.6 + +name axessibility +category Package +revision 57105 +shortdesc Access to formulas in PDF files by assistive technologies +relocated 1 +longdesc PDF documents containing formulas generated by LaTeX are +longdesc usually not accessible by assistive technologies for visually +longdesc impaired people and people with special educational needs +longdesc (i.e., by screen readers and braille displays). The +longdesc axessibility package manages this issue, allowing to create a +longdesc PDF document where the formulas are read by these assistive +longdesc technologies, since it automatically generates hidden comments +longdesc in the PDF document (by means of the /ActualText attribute +longdesc and/or suitable tags) in correspondence to each formula. +containersize 3828 +containerchecksum 9b42a40556f3432e045ef35b23fb7fcb6ff295064645e5b9331d0ce99a8f2bd232d0926b46eacb5598da112dfcf3673225efd655573523dd504767a06a42686c +doccontainersize 222888 +doccontainerchecksum f3255c9d6b1eb75a501e5c36cece49cb72767e467c0853465d2b8a39f011138d7154eab2fa5287f9223b4f535aad5c2db25d2f76c286376499c71d0ffd120699 +docfiles size=105 + RELOC/doc/latex/axessibility/README details="Readme" + RELOC/doc/latex/axessibility/axessibility.pdf details="Package documentation" + RELOC/doc/latex/axessibility/axessibilityExampleAlignA.tex + RELOC/doc/latex/axessibility/axessibilityExampleAlignT.tex + RELOC/doc/latex/axessibility/axessibilityExampleSingleLineA.tex + RELOC/doc/latex/axessibility/axessibilityExampleSingleLineT.tex +srccontainersize 8468 +srccontainerchecksum c5ef10d286eccf16b270c8b487e91270cafb09ba10a88a8e0c925485a380c18002d399857f7dd42978aee72f7b1889c5dcde7ffdf2f5626424f31fd99a452ff0 +srcfiles size=10 + RELOC/source/latex/axessibility/axessibility.dtx + RELOC/source/latex/axessibility/axessibility.ins +runfiles size=4 + RELOC/tex/latex/axessibility/axessibility.lua + RELOC/tex/latex/axessibility/axessibility.sty +catalogue-also accsupp tagpdf +catalogue-contact-repository https://github.com/integr-abile/axessibility +catalogue-ctan /macros/latex/contrib/axessibility +catalogue-license lppl1.3 +catalogue-topics accessible +catalogue-version 3.0 + +name axodraw2 +category Package +revision 58155 +shortdesc Feynman diagrams in a LaTeX document +longdesc This package defines macros for drawing Feynman graphs in LaTeX +longdesc documents. It is an important update of the axodraw package, +longdesc but since it is not completely backwards compatible, we have +longdesc given the style file a changed name. Many new features have +longdesc been added, with new types of line, and much more flexibility +longdesc in their properties. In addition, it is now possible to use +longdesc axodraw2 with pdfLaTeX, as well as with the LaTeX-dvips method. +longdesc However with pdfLaTeX (and also LuaLaTeX and XeLaTeX), an +longdesc external program, axohelp, is used to perform the geometrical +longdesc calculations needed for the pdf code inserted in the output +longdesc file. The processing involves a run of pdfLaTeX, a run of +longdesc axohelp, and then another run of pdfLaTeX. +depend axodraw2.ARCH +containersize 25592 +containerchecksum bc9923a9614ef9d7bece20e682729347dc942470a927b40736d6868f02867408b5fba51b117edd8745f96df23b9c1e93792d321291db13b7fdfdae0ee32bb7fd +doccontainersize 489832 +doccontainerchecksum 927e42358d543f46ccabb8184e35b6f0a5848783ce9eea09e6c780fc83955d5f37b998254153b1954cf1a59be6cfe573a6c79c2c328ab2a22a6e5f6764a50fa1 +docfiles size=169 + texmf-dist/doc/latex/axodraw2/AUTHORS + texmf-dist/doc/latex/axodraw2/COPYING + texmf-dist/doc/latex/axodraw2/ChangeLog + texmf-dist/doc/latex/axodraw2/INSTALL + texmf-dist/doc/latex/axodraw2/README details="Readme" + texmf-dist/doc/latex/axodraw2/axodraw2-man.pdf details="Package documentation" + texmf-dist/doc/latex/axodraw2/axodraw2-man.tex + texmf-dist/doc/latex/axodraw2/example.tex + texmf-dist/doc/man/man1/axohelp.1 + texmf-dist/doc/man/man1/axohelp.man1.pdf +srccontainersize 34604 +srccontainerchecksum 3c2fbbff234836ffe40edb7f38c77c5986cca7fc68b3dd7672bb4f1ce9327a12fa8c51d38461d914cd6466bac8b2b578a151d09d4e84dd903530f7a545d707d9 +srcfiles size=77 + texmf-dist/source/latex/axodraw2/Makefile.am + texmf-dist/source/latex/axodraw2/axohelp-big.test + texmf-dist/source/latex/axodraw2/axohelp.c + texmf-dist/source/latex/axodraw2/axohelp.test + texmf-dist/source/latex/axodraw2/configure.ac + texmf-dist/source/latex/axodraw2/test-big.ax1 + texmf-dist/source/latex/axodraw2/test-big.ax2-std + texmf-dist/source/latex/axodraw2/test.ax1 + texmf-dist/source/latex/axodraw2/test.ax2-std +runfiles size=34 + texmf-dist/tex/latex/axodraw2/axodraw2.sty +catalogue-ctan /graphics/axodraw2 +catalogue-license gpl3+ +catalogue-topics physics graphics-in-tex +catalogue-version 2.1.1c + +name axodraw2.aarch64-linux +category Package +revision 58389 +shortdesc aarch64-linux files of axodraw2 +containersize 21124 +containerchecksum 449cef8d9788756e7597a23d237146f45652d2701493d514f4f7df1945c6c6e8e2b80873e394d9c5de8071e04e6acf485b9c1e4495be45bbecc3fd997d244a6b +binfiles arch=aarch64-linux size=15 + bin/aarch64-linux/axohelp + +name axodraw2.amd64-freebsd +category Package +revision 58388 +shortdesc amd64-freebsd files of axodraw2 +containersize 28804 +containerchecksum 019043eaf4da6b4bd66519f5c352b1753eaeb0137352037d9702dbfc9321fec62b062699aa4e0fc131803afb521c2c946184982b01995a4104fefb05d3c9d800 +binfiles arch=amd64-freebsd size=21 + bin/amd64-freebsd/axohelp + +name axodraw2.amd64-netbsd +category Package +revision 58386 +shortdesc amd64-netbsd files of axodraw2 +containersize 20452 +containerchecksum 746c21b9fe4ac49dc64cdfe233645d76e593d9a8613c0e762f9c3b030580219aa1bb132aff490d16a5db2f9c692391755e9460c582ef191b432d02f46f80111d +binfiles arch=amd64-netbsd size=19 + bin/amd64-netbsd/axohelp + +name axodraw2.armhf-linux +category Package +revision 58428 +shortdesc armhf-linux files of axodraw2 +containersize 17672 +containerchecksum 4405fd492b3799d17198b8641143446e8a279240e7802c64ba85f4bcd0c2792d5f551f846262bd554fc3fe208111f83ef8c71fa8eb8f3f1a46eae5e0aff91ec4 +binfiles arch=armhf-linux size=11 + bin/armhf-linux/axohelp + +name axodraw2.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of axodraw2 +containersize 22728 +containerchecksum 2995c4bd4f3690fa05360331809a6fd3af42f230e74a9cb1d7f2c123d1acce52fc85c985893697b74a83eb9f5850780a8b628e1c382915d01fcb84298e2349ef +binfiles arch=i386-cygwin size=18 + bin/i386-cygwin/axohelp.exe + +name axodraw2.i386-freebsd +category Package +revision 58388 +shortdesc i386-freebsd files of axodraw2 +containersize 23180 +containerchecksum d8ba9c35eca214cdbadb779986f1dc7b6b3d787e6f8b7d6f15c7b12eab84e9fa346d25567ad2f65df674d0ba805197bad7734acd8d24e66d9d98d41a3799ee0b +binfiles arch=i386-freebsd size=20 + bin/i386-freebsd/axohelp + +name axodraw2.i386-linux +category Package +revision 58378 +shortdesc i386-linux files of axodraw2 +containersize 23148 +containerchecksum 2f940bf7b9b13adbf7778f010ddade5759be4a07230f19da6ee301de93ca8bc932fc5fb7e649a1f7a9da4c9727e2252a66cb304bb8cf6a72b79315bfdd40ec4d +binfiles arch=i386-linux size=16 + bin/i386-linux/axohelp + +name axodraw2.i386-netbsd +category Package +revision 58386 +shortdesc i386-netbsd files of axodraw2 +containersize 17388 +containerchecksum d680e2a3d31e2c01373ae624110f677a424455f0b06977e0d01b7c2b7160bff366b07641b0a1499ff958bd94568d9f49bde5cf53bc23e9b6154aa4c99d509d49 +binfiles arch=i386-netbsd size=16 + bin/i386-netbsd/axohelp + +name axodraw2.i386-solaris +category Package +revision 58388 +shortdesc i386-solaris files of axodraw2 +containersize 20772 +containerchecksum 0fb855ffa0a911cef130311e08a47e5afb8813e07cb0b3c789b2fc6df64de5f9f6e5d2753dbd8593911b3d4bb1244c409a6ffe6cbfb134f18cb030b0530aaf7f +binfiles arch=i386-solaris size=14 + bin/i386-solaris/axohelp + +name axodraw2.universal-darwin +category Package +revision 58418 +shortdesc universal-darwin files of axodraw2 +containersize 57024 +containerchecksum 78077aa55b150f84f94912bfa0452deedcb803fbc8318e41ac4e095430393c20775971b31aa244f621979c943f397a8912ac8e69319bacb25abb89789eda6ac3 +binfiles arch=universal-darwin size=58 + bin/universal-darwin/axohelp + +name axodraw2.win32 +category Package +revision 58158 +shortdesc win32 files of axodraw2 +containersize 86256 +containerchecksum b4848637bcf4d8f8b32749b77af4270216b7ace7c077d99fc94ea3ace4fe92f519d031a1f14d3aae4c25d2d8d4d57b3c47115c4e5ef0b09603dbcf1fa0c9a4fe +binfiles arch=win32 size=48 + bin/win32/axohelp.exe + +name axodraw2.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of axodraw2 +containersize 28640 +containerchecksum 10ab6b21ef3c8ea2aeb64ec88b54a52dc243639164b34174a6e4928b27e277ca9dcd8014a5413a4f40cd8cbc37cd63ebc19d1fc6be6a15e16730bde504882f15 +binfiles arch=x86_64-cygwin size=20 + bin/x86_64-cygwin/axohelp.exe + +name axodraw2.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of axodraw2 +containersize 21564 +containerchecksum 8adf4bb6fe762156c10dff4d65d860fc59dc5be3ea5141952c060a2f7192c2e37c2014b8e2f88b2e2ea53131be0a6ee63e3e5189155eaadc55c9e40846b3cc95 +binfiles arch=x86_64-darwinlegacy size=14 + bin/x86_64-darwinlegacy/axohelp + +name axodraw2.x86_64-linux +category Package +revision 58378 +shortdesc x86_64-linux files of axodraw2 +containersize 23768 +containerchecksum dccde3b2b9fc5acc7b114838f2814681099c653798b02dfdbd03a96053b3becc15e87e006ba6a5a95a3c725d540034b4373e50a2d62e3c7ea7e153515caa3b18 +binfiles arch=x86_64-linux size=16 + bin/x86_64-linux/axohelp + +name axodraw2.x86_64-linuxmusl +category Package +revision 58378 +shortdesc x86_64-linuxmusl files of axodraw2 +containersize 24848 +containerchecksum 59bd7d7404e1c323fd1e35efbb654f6deee96368b32df0a3626fc323da57cbbd7b0989345d56a9169cba773e45fb3bd51be846b7184357947a8d1ed5e34f8748 +binfiles arch=x86_64-linuxmusl size=16 + bin/x86_64-linuxmusl/axohelp + +name axodraw2.x86_64-solaris +category Package +revision 58388 +shortdesc x86_64-solaris files of axodraw2 +containersize 25612 +containerchecksum 1579603c0180c1a673403ed7a8411738fe5d21439889491e4c6fbbae8d0c247b41accf38c39dd6417fe84feb4b73cd87ad2cfc5f4492ce58677e28e711f461dd +binfiles arch=x86_64-solaris size=17 + bin/x86_64-solaris/axohelp + +name b1encoding +category Package +revision 21271 +shortdesc LaTeX encoding tools for Bookhands fonts +relocated 1 +longdesc The package characterises and defines the author's B1 encoding +longdesc for use with LaTeX when typesetting things using his Bookhands +longdesc fonts. +containersize 4520 +containerchecksum b33280f64e37f300c92f9bad4372c13dd34e3dbe5fe47f2dc9fe0e270f33eaf5bedf9485293a74a6e0eb87b65f44fb66a286fb279a3d2c390c463e6aecfacb57 +doccontainersize 142812 +doccontainerchecksum 4bfac8bf2a00dc61a007c10654cb7fe539c111170127934cd3a64ecea9ceed3fd04ac249cbd645d89400bef6f4a3527d1db04baa88eab88eceee2edd48e64393 +docfiles size=45 + RELOC/doc/latex/b1encoding/README details="Readme" + RELOC/doc/latex/b1encoding/b1encoding.pdf details="Package documentation" +srccontainersize 8164 +srccontainerchecksum 7368dec012e7dd9fd948856aa0b901be48a5800dec417a1511510e184e7543ae9d76acf46a12ea956b1b27367b41309923ce5ed3bdb320399572f5dde737543c +srcfiles size=8 + RELOC/source/latex/b1encoding/b1encoding.dtx + RELOC/source/latex/b1encoding/b1encoding.ins +runfiles size=7 + RELOC/fonts/enc/dvips/b1encoding/TeXB1.enc + RELOC/tex/latex/b1encoding/b1cmr.fd + RELOC/tex/latex/b1encoding/b1enc.def +catalogue-ctan /macros/latex/contrib/b1encoding +catalogue-license lppl1.3 +catalogue-topics fontenc +catalogue-version 1.0 + +name babel +category Package +revision 58999 +shortdesc Multilingual support for Plain TeX or LaTeX +relocated 1 +longdesc This package manages culturally-determined typographical (and +longdesc other) rules for a wide range of languages. A document may +longdesc select a single language to be supported, or it may select +longdesc several, in which case the document may switch from one +longdesc language to another in a variety of ways. Babel uses +longdesc contributed configuration files that provide the detail of what +longdesc has to be done for each language. Included is also a set of ini +longdesc files for about 250 languages. Many language styles work with +longdesc pdfLaTeX, as well as with XeLaTeX and LuaLaTeX, out of the box. +longdesc A few even work with plain formats. +containersize 178608 +containerchecksum 2f94846e43f525509ee98b790066c5fdc7cb507c1b98c5935e50cb5b3e1ce30af5b35c17a1423a85a2109267b452781bc1855a98fb3d94de9c2f0e2202fed36d +doccontainersize 819808 +doccontainerchecksum 8cf82f6dd7b9fc6e6cb8f5da7f3e4bdbd226ddf29730cec34eb83ba728521aae4e83b64012fe8c4ffb1c6f5c4ff1a88fa861981f3f713fd08ddc0f15495d3262 +docfiles size=205 + RELOC/doc/latex/babel/README.md details="Readme" + RELOC/doc/latex/babel/babel.pdf details="Package documentation" +srccontainersize 684676 +srccontainerchecksum a0770e5193793e87658a701344ba0ab44773d2be04f204e1992a5f75a69b68ace13c2b73499215e5e441f2c228e9833742c542d43ec14ab36bfa5f06d66fbcea +srcfiles size=372 + RELOC/source/latex/babel/babel.dtx + RELOC/source/latex/babel/babel.ins + RELOC/source/latex/babel/bbcompat.dtx + RELOC/source/latex/babel/bbidxglo.dtx + RELOC/source/latex/babel/locale.zip +runfiles size=938 + RELOC/makeindex/babel/bbglo.ist + RELOC/makeindex/babel/bbind.ist + RELOC/tex/generic/babel/UKenglish.sty + RELOC/tex/generic/babel/USenglish.sty + RELOC/tex/generic/babel/afrikaans.sty + RELOC/tex/generic/babel/albanian.sty + RELOC/tex/generic/babel/american.sty + RELOC/tex/generic/babel/austrian.sty + RELOC/tex/generic/babel/babel-bidi-basic-r.lua + RELOC/tex/generic/babel/babel-bidi-basic.lua + RELOC/tex/generic/babel/babel-data-bidi.lua + RELOC/tex/generic/babel/babel-data-cjk.lua + RELOC/tex/generic/babel/babel.def + RELOC/tex/generic/babel/babel.sty + RELOC/tex/generic/babel/bahasa.sty + RELOC/tex/generic/babel/bahasam.sty + RELOC/tex/generic/babel/basque.sty + RELOC/tex/generic/babel/blplain.tex + RELOC/tex/generic/babel/bplain.tex + RELOC/tex/generic/babel/breton.sty + RELOC/tex/generic/babel/british.sty + RELOC/tex/generic/babel/bulgarian.sty + RELOC/tex/generic/babel/catalan.sty + RELOC/tex/generic/babel/croatian.sty + RELOC/tex/generic/babel/czech.sty + RELOC/tex/generic/babel/danish.sty + RELOC/tex/generic/babel/dutch.sty + RELOC/tex/generic/babel/english.sty + RELOC/tex/generic/babel/esperanto.sty + RELOC/tex/generic/babel/estonian.sty + RELOC/tex/generic/babel/finnish.sty + RELOC/tex/generic/babel/francais.sty + RELOC/tex/generic/babel/galician.sty + RELOC/tex/generic/babel/germanb.sty + RELOC/tex/generic/babel/greek.sty + RELOC/tex/generic/babel/hebrew.sty + RELOC/tex/generic/babel/hyphen.cfg + RELOC/tex/generic/babel/icelandic.sty + RELOC/tex/generic/babel/interlingua.sty + RELOC/tex/generic/babel/irish.sty + RELOC/tex/generic/babel/italian.sty + RELOC/tex/generic/babel/latin.sty + RELOC/tex/generic/babel/locale/af/babel-af.ini + RELOC/tex/generic/babel/locale/af/babel-afrikaans.tex + RELOC/tex/generic/babel/locale/agq/babel-aghem.tex + RELOC/tex/generic/babel/locale/agq/babel-agq.ini + RELOC/tex/generic/babel/locale/ak/babel-ak.ini + RELOC/tex/generic/babel/locale/ak/babel-akan.tex + RELOC/tex/generic/babel/locale/am/babel-am.ini + RELOC/tex/generic/babel/locale/am/babel-amharic.tex + RELOC/tex/generic/babel/locale/ar/babel-ar-DZ.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-MA.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-SY.ini + RELOC/tex/generic/babel/locale/ar/babel-ar.ini + RELOC/tex/generic/babel/locale/ar/babel-arabic-algeria.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-dz.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-ma.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-morocco.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-sy.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-syria.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic.tex + RELOC/tex/generic/babel/locale/as/babel-as.ini + RELOC/tex/generic/babel/locale/as/babel-assamese.tex + RELOC/tex/generic/babel/locale/asa/babel-asa.ini + RELOC/tex/generic/babel/locale/asa/babel-asu.tex + RELOC/tex/generic/babel/locale/ast/babel-ast.ini + RELOC/tex/generic/babel/locale/ast/babel-asturian.tex + RELOC/tex/generic/babel/locale/az/babel-az-Cyrl.ini + RELOC/tex/generic/babel/locale/az/babel-az-Latn.ini + RELOC/tex/generic/babel/locale/az/babel-az.ini + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-cyrillic.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-cyrl.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-latin.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-latn.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani.tex + RELOC/tex/generic/babel/locale/bas/babel-bas.ini + RELOC/tex/generic/babel/locale/bas/babel-basaa.tex + RELOC/tex/generic/babel/locale/be/babel-be.ini + RELOC/tex/generic/babel/locale/be/babel-belarusian.tex + RELOC/tex/generic/babel/locale/bem/babel-bem.ini + RELOC/tex/generic/babel/locale/bem/babel-bemba.tex + RELOC/tex/generic/babel/locale/bez/babel-bena.tex + RELOC/tex/generic/babel/locale/bez/babel-bez.ini + RELOC/tex/generic/babel/locale/bg/babel-bg.ini + RELOC/tex/generic/babel/locale/bg/babel-bulgarian.tex + RELOC/tex/generic/babel/locale/bm/babel-bambara.tex + RELOC/tex/generic/babel/locale/bm/babel-bm.ini + RELOC/tex/generic/babel/locale/bn/babel-bengali.tex + RELOC/tex/generic/babel/locale/bn/babel-bn.ini + RELOC/tex/generic/babel/locale/bo/babel-bo.ini + RELOC/tex/generic/babel/locale/bo/babel-tibetan.tex + RELOC/tex/generic/babel/locale/br/babel-br.ini + RELOC/tex/generic/babel/locale/br/babel-breton.tex + RELOC/tex/generic/babel/locale/brx/babel-bodo.tex + RELOC/tex/generic/babel/locale/brx/babel-brx.ini + RELOC/tex/generic/babel/locale/bs/babel-bosnian-cyrillic.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian-cyrl.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian-latin.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian-latn.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian.tex + RELOC/tex/generic/babel/locale/bs/babel-bs-Cyrl.ini + RELOC/tex/generic/babel/locale/bs/babel-bs-Latn.ini + RELOC/tex/generic/babel/locale/bs/babel-bs.ini + RELOC/tex/generic/babel/locale/ca/babel-ca.ini + RELOC/tex/generic/babel/locale/ca/babel-catalan.tex + RELOC/tex/generic/babel/locale/ce/babel-ce.ini + RELOC/tex/generic/babel/locale/ce/babel-chechen.tex + RELOC/tex/generic/babel/locale/cgg/babel-cgg.ini + RELOC/tex/generic/babel/locale/cgg/babel-chiga.tex + RELOC/tex/generic/babel/locale/chr/babel-cherokee.tex + RELOC/tex/generic/babel/locale/chr/babel-chr.ini + RELOC/tex/generic/babel/locale/ckb/babel-centralkurdish-latin.tex + RELOC/tex/generic/babel/locale/ckb/babel-centralkurdish-latn.tex + RELOC/tex/generic/babel/locale/ckb/babel-centralkurdish.tex + RELOC/tex/generic/babel/locale/ckb/babel-ckb-Arab.ini + RELOC/tex/generic/babel/locale/ckb/babel-ckb-Latn.ini + RELOC/tex/generic/babel/locale/ckb/babel-ckb.ini + RELOC/tex/generic/babel/locale/ckb/babel-sorani.tex + RELOC/tex/generic/babel/locale/cop/babel-cop.ini + RELOC/tex/generic/babel/locale/cop/babel-coptic.tex + RELOC/tex/generic/babel/locale/cs/babel-cs.ini + RELOC/tex/generic/babel/locale/cs/babel-czech.tex + RELOC/tex/generic/babel/locale/cu/babel-churchslavic-cyrs.tex + RELOC/tex/generic/babel/locale/cu/babel-churchslavic-glag.tex + RELOC/tex/generic/babel/locale/cu/babel-churchslavic-glagolitic.tex + RELOC/tex/generic/babel/locale/cu/babel-churchslavic-oldcyrillic.tex + RELOC/tex/generic/babel/locale/cu/babel-churchslavic.tex + RELOC/tex/generic/babel/locale/cu/babel-churchslavonic.tex + RELOC/tex/generic/babel/locale/cu/babel-cu-Cyrs.ini + RELOC/tex/generic/babel/locale/cu/babel-cu-Glag.ini + RELOC/tex/generic/babel/locale/cu/babel-cu.ini + RELOC/tex/generic/babel/locale/cy/babel-cy.ini + RELOC/tex/generic/babel/locale/cy/babel-welsh.tex + RELOC/tex/generic/babel/locale/da/babel-da.ini + RELOC/tex/generic/babel/locale/da/babel-danish.tex + RELOC/tex/generic/babel/locale/dav/babel-dav.ini + RELOC/tex/generic/babel/locale/dav/babel-taita.tex + RELOC/tex/generic/babel/locale/de/babel-austrian.tex + RELOC/tex/generic/babel/locale/de/babel-de-1901.ini + RELOC/tex/generic/babel/locale/de/babel-de-1996.ini + RELOC/tex/generic/babel/locale/de/babel-de-AT-1901.ini + RELOC/tex/generic/babel/locale/de/babel-de-AT-1996.ini + RELOC/tex/generic/babel/locale/de/babel-de-AT.ini + RELOC/tex/generic/babel/locale/de/babel-de-CH-1901.ini + RELOC/tex/generic/babel/locale/de/babel-de-CH-1996.ini + RELOC/tex/generic/babel/locale/de/babel-de-CH.ini + RELOC/tex/generic/babel/locale/de/babel-de.ini + RELOC/tex/generic/babel/locale/de/babel-german-at.tex + RELOC/tex/generic/babel/locale/de/babel-german-austria-traditional.tex + RELOC/tex/generic/babel/locale/de/babel-german-austria.tex + RELOC/tex/generic/babel/locale/de/babel-german-ch.tex + RELOC/tex/generic/babel/locale/de/babel-german-switzerland-traditional.tex + RELOC/tex/generic/babel/locale/de/babel-german-switzerland.tex + RELOC/tex/generic/babel/locale/de/babel-german-traditional.tex + RELOC/tex/generic/babel/locale/de/babel-german.tex + RELOC/tex/generic/babel/locale/de/babel-naustrian.tex + RELOC/tex/generic/babel/locale/de/babel-ngerman.tex + RELOC/tex/generic/babel/locale/de/babel-nswissgerman.tex + RELOC/tex/generic/babel/locale/de/babel-swissgerman.tex + RELOC/tex/generic/babel/locale/dje/babel-dje.ini + RELOC/tex/generic/babel/locale/dje/babel-zarma.tex + RELOC/tex/generic/babel/locale/dsb/babel-dsb.ini + RELOC/tex/generic/babel/locale/dsb/babel-lowersorbian.tex + RELOC/tex/generic/babel/locale/dsb/babel-lsorbian.tex + RELOC/tex/generic/babel/locale/dua/babel-dua.ini + RELOC/tex/generic/babel/locale/dua/babel-duala.tex + RELOC/tex/generic/babel/locale/dyo/babel-dyo.ini + RELOC/tex/generic/babel/locale/dyo/babel-jolafonyi.tex + RELOC/tex/generic/babel/locale/dz/babel-dz.ini + RELOC/tex/generic/babel/locale/dz/babel-dzongkha.tex + RELOC/tex/generic/babel/locale/ebu/babel-ebu.ini + RELOC/tex/generic/babel/locale/ebu/babel-embu.tex + RELOC/tex/generic/babel/locale/ee/babel-ee.ini + RELOC/tex/generic/babel/locale/ee/babel-ewe.tex + RELOC/tex/generic/babel/locale/el/babel-el-polyton.ini + RELOC/tex/generic/babel/locale/el/babel-el.ini + RELOC/tex/generic/babel/locale/el/babel-greek.tex + RELOC/tex/generic/babel/locale/el/babel-monotonicgreek.tex + RELOC/tex/generic/babel/locale/el/babel-polytonicgreek.tex + RELOC/tex/generic/babel/locale/en/babel-american.tex + RELOC/tex/generic/babel/locale/en/babel-australian.tex + RELOC/tex/generic/babel/locale/en/babel-british.tex + RELOC/tex/generic/babel/locale/en/babel-canadian.tex + RELOC/tex/generic/babel/locale/en/babel-en-AU.ini + RELOC/tex/generic/babel/locale/en/babel-en-CA.ini + RELOC/tex/generic/babel/locale/en/babel-en-GB.ini + RELOC/tex/generic/babel/locale/en/babel-en-NZ.ini + RELOC/tex/generic/babel/locale/en/babel-en-US.ini + RELOC/tex/generic/babel/locale/en/babel-en.ini + RELOC/tex/generic/babel/locale/en/babel-english-au.tex + RELOC/tex/generic/babel/locale/en/babel-english-australia.tex + RELOC/tex/generic/babel/locale/en/babel-english-ca.tex + RELOC/tex/generic/babel/locale/en/babel-english-canada.tex + RELOC/tex/generic/babel/locale/en/babel-english-gb.tex + RELOC/tex/generic/babel/locale/en/babel-english-newzealand.tex + RELOC/tex/generic/babel/locale/en/babel-english-nz.tex + RELOC/tex/generic/babel/locale/en/babel-english-unitedkingdom.tex + RELOC/tex/generic/babel/locale/en/babel-english-unitedstates.tex + RELOC/tex/generic/babel/locale/en/babel-english-us.tex + RELOC/tex/generic/babel/locale/en/babel-english.tex + RELOC/tex/generic/babel/locale/en/babel-newzealand.tex + RELOC/tex/generic/babel/locale/en/babel-ukenglish.tex + RELOC/tex/generic/babel/locale/en/babel-usenglish.tex + RELOC/tex/generic/babel/locale/eo/babel-eo.ini + RELOC/tex/generic/babel/locale/eo/babel-esperanto.tex + RELOC/tex/generic/babel/locale/es/babel-es-MX.ini + RELOC/tex/generic/babel/locale/es/babel-es.ini + RELOC/tex/generic/babel/locale/es/babel-mexican.tex + RELOC/tex/generic/babel/locale/es/babel-spanish-mexico.tex + RELOC/tex/generic/babel/locale/es/babel-spanish-mx.tex + RELOC/tex/generic/babel/locale/es/babel-spanish.tex + RELOC/tex/generic/babel/locale/et/babel-estonian.tex + RELOC/tex/generic/babel/locale/et/babel-et.ini + RELOC/tex/generic/babel/locale/eu/babel-basque.tex + RELOC/tex/generic/babel/locale/eu/babel-eu.ini + RELOC/tex/generic/babel/locale/ewo/babel-ewo.ini + RELOC/tex/generic/babel/locale/ewo/babel-ewondo.tex + RELOC/tex/generic/babel/locale/fa/babel-fa.ini + RELOC/tex/generic/babel/locale/fa/babel-persian.tex + RELOC/tex/generic/babel/locale/ff/babel-ff.ini + RELOC/tex/generic/babel/locale/ff/babel-fulah.tex + RELOC/tex/generic/babel/locale/fi/babel-fi.ini + RELOC/tex/generic/babel/locale/fi/babel-finnish.tex + RELOC/tex/generic/babel/locale/fil/babel-fil.ini + RELOC/tex/generic/babel/locale/fil/babel-filipino.tex + RELOC/tex/generic/babel/locale/fo/babel-faroese.tex + RELOC/tex/generic/babel/locale/fo/babel-fo.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-BE.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-CA.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-CH.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-LU.ini + RELOC/tex/generic/babel/locale/fr/babel-fr.ini + RELOC/tex/generic/babel/locale/fr/babel-french-be.tex + RELOC/tex/generic/babel/locale/fr/babel-french-belgium.tex + RELOC/tex/generic/babel/locale/fr/babel-french-ca.tex + RELOC/tex/generic/babel/locale/fr/babel-french-canada.tex + RELOC/tex/generic/babel/locale/fr/babel-french-ch.tex + RELOC/tex/generic/babel/locale/fr/babel-french-lu.tex + RELOC/tex/generic/babel/locale/fr/babel-french-luxembourg.tex + RELOC/tex/generic/babel/locale/fr/babel-french-switzerland.tex + RELOC/tex/generic/babel/locale/fr/babel-french.tex + RELOC/tex/generic/babel/locale/fur/babel-friulian.tex + RELOC/tex/generic/babel/locale/fur/babel-fur.ini + RELOC/tex/generic/babel/locale/fy/babel-fy.ini + RELOC/tex/generic/babel/locale/fy/babel-westernfrisian.tex + RELOC/tex/generic/babel/locale/ga/babel-ga.ini + RELOC/tex/generic/babel/locale/ga/babel-irish.tex + RELOC/tex/generic/babel/locale/gd/babel-gd.ini + RELOC/tex/generic/babel/locale/gd/babel-scottishgaelic.tex + RELOC/tex/generic/babel/locale/gl/babel-galician.tex + RELOC/tex/generic/babel/locale/gl/babel-gl.ini + RELOC/tex/generic/babel/locale/grc/babel-ancientgreek.tex + RELOC/tex/generic/babel/locale/grc/babel-grc.ini + RELOC/tex/generic/babel/locale/gsw/babel-gsw.ini + RELOC/tex/generic/babel/locale/gu/babel-gu.ini + RELOC/tex/generic/babel/locale/gu/babel-gujarati.tex + RELOC/tex/generic/babel/locale/guz/babel-gusii.tex + RELOC/tex/generic/babel/locale/guz/babel-guz.ini + RELOC/tex/generic/babel/locale/gv/babel-gv.ini + RELOC/tex/generic/babel/locale/gv/babel-manx.tex + RELOC/tex/generic/babel/locale/ha/babel-ha-GH.ini + RELOC/tex/generic/babel/locale/ha/babel-ha-NE.ini + RELOC/tex/generic/babel/locale/ha/babel-ha.ini + RELOC/tex/generic/babel/locale/ha/babel-hausa-gh.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa-ghana.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa-ne.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa-niger.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa.tex + RELOC/tex/generic/babel/locale/haw/babel-haw.ini + RELOC/tex/generic/babel/locale/haw/babel-hawaiian.tex + RELOC/tex/generic/babel/locale/he/babel-he.ini + RELOC/tex/generic/babel/locale/he/babel-hebrew.tex + RELOC/tex/generic/babel/locale/hi/babel-hi.ini + RELOC/tex/generic/babel/locale/hi/babel-hindi.tex + RELOC/tex/generic/babel/locale/hr/babel-croatian.tex + RELOC/tex/generic/babel/locale/hr/babel-hr.ini + RELOC/tex/generic/babel/locale/hsb/babel-hsb.ini + RELOC/tex/generic/babel/locale/hsb/babel-uppersorbian.tex + RELOC/tex/generic/babel/locale/hsb/babel-usorbian.tex + RELOC/tex/generic/babel/locale/hu/babel-hu.ini + RELOC/tex/generic/babel/locale/hu/babel-hungarian.tex + RELOC/tex/generic/babel/locale/hu/babel-magyar.tex + RELOC/tex/generic/babel/locale/hy/babel-armenian.tex + RELOC/tex/generic/babel/locale/hy/babel-hy.ini + RELOC/tex/generic/babel/locale/ia/babel-ia.ini + RELOC/tex/generic/babel/locale/ia/babel-interlingua.tex + RELOC/tex/generic/babel/locale/id/babel-id.ini + RELOC/tex/generic/babel/locale/id/babel-indonesian.tex + RELOC/tex/generic/babel/locale/ig/babel-ig.ini + RELOC/tex/generic/babel/locale/ig/babel-igbo.tex + RELOC/tex/generic/babel/locale/ii/babel-ii.ini + RELOC/tex/generic/babel/locale/ii/babel-sichuanyi.tex + RELOC/tex/generic/babel/locale/is/babel-icelandic.tex + RELOC/tex/generic/babel/locale/is/babel-is.ini + RELOC/tex/generic/babel/locale/it/babel-it.ini + RELOC/tex/generic/babel/locale/it/babel-italian.tex + RELOC/tex/generic/babel/locale/ja/babel-ja.ini + RELOC/tex/generic/babel/locale/ja/babel-japanese.tex + RELOC/tex/generic/babel/locale/jgo/babel-jgo.ini + RELOC/tex/generic/babel/locale/jgo/babel-ngomba.tex + RELOC/tex/generic/babel/locale/jmc/babel-jmc.ini + RELOC/tex/generic/babel/locale/jmc/babel-machame.tex + RELOC/tex/generic/babel/locale/ka/babel-georgian.tex + RELOC/tex/generic/babel/locale/ka/babel-ka.ini + RELOC/tex/generic/babel/locale/kab/babel-kab.ini + RELOC/tex/generic/babel/locale/kab/babel-kabyle.tex + RELOC/tex/generic/babel/locale/kam/babel-kam.ini + RELOC/tex/generic/babel/locale/kam/babel-kamba.tex + RELOC/tex/generic/babel/locale/kde/babel-kde.ini + RELOC/tex/generic/babel/locale/kde/babel-makonde.tex + RELOC/tex/generic/babel/locale/kea/babel-kabuverdianu.tex + RELOC/tex/generic/babel/locale/kea/babel-kea.ini + RELOC/tex/generic/babel/locale/khq/babel-khq.ini + RELOC/tex/generic/babel/locale/khq/babel-koyrachiini.tex + RELOC/tex/generic/babel/locale/ki/babel-ki.ini + RELOC/tex/generic/babel/locale/ki/babel-kikuyu.tex + RELOC/tex/generic/babel/locale/kk/babel-kazakh.tex + RELOC/tex/generic/babel/locale/kk/babel-kk.ini + RELOC/tex/generic/babel/locale/kkj/babel-kako.tex + RELOC/tex/generic/babel/locale/kkj/babel-kkj.ini + RELOC/tex/generic/babel/locale/kl/babel-kalaallisut.tex + RELOC/tex/generic/babel/locale/kl/babel-kl.ini + RELOC/tex/generic/babel/locale/kln/babel-kalenjin.tex + RELOC/tex/generic/babel/locale/kln/babel-kln.ini + RELOC/tex/generic/babel/locale/km/babel-khmer.tex + RELOC/tex/generic/babel/locale/km/babel-km.ini + RELOC/tex/generic/babel/locale/kmr/babel-kmr-Arab.ini + RELOC/tex/generic/babel/locale/kmr/babel-kmr-Latn.ini + RELOC/tex/generic/babel/locale/kmr/babel-kmr.ini + RELOC/tex/generic/babel/locale/kmr/babel-kurmanji.tex + RELOC/tex/generic/babel/locale/kmr/babel-northernkurdish-arab.tex + RELOC/tex/generic/babel/locale/kmr/babel-northernkurdish-arabic.tex + RELOC/tex/generic/babel/locale/kmr/babel-northernkurdish.tex + RELOC/tex/generic/babel/locale/kn/babel-kannada.tex + RELOC/tex/generic/babel/locale/kn/babel-kn.ini + RELOC/tex/generic/babel/locale/ko/babel-ko-Hani.ini + RELOC/tex/generic/babel/locale/ko/babel-ko.ini + RELOC/tex/generic/babel/locale/ko/babel-korean-han.tex + RELOC/tex/generic/babel/locale/ko/babel-korean-hani.tex + RELOC/tex/generic/babel/locale/ko/babel-korean.tex + RELOC/tex/generic/babel/locale/kok/babel-kok.ini + RELOC/tex/generic/babel/locale/kok/babel-konkani.tex + RELOC/tex/generic/babel/locale/ks/babel-kashmiri.tex + RELOC/tex/generic/babel/locale/ks/babel-ks.ini + RELOC/tex/generic/babel/locale/ksb/babel-ksb.ini + RELOC/tex/generic/babel/locale/ksb/babel-shambala.tex + RELOC/tex/generic/babel/locale/ksf/babel-bafia.tex + RELOC/tex/generic/babel/locale/ksf/babel-ksf.ini + RELOC/tex/generic/babel/locale/ksh/babel-colognian.tex + RELOC/tex/generic/babel/locale/ksh/babel-ksh.ini + RELOC/tex/generic/babel/locale/kw/babel-cornish.tex + RELOC/tex/generic/babel/locale/kw/babel-kw.ini + RELOC/tex/generic/babel/locale/ky/babel-ky.ini + RELOC/tex/generic/babel/locale/ky/babel-kyrgyz.tex + RELOC/tex/generic/babel/locale/la/babel-classiclatin.tex + RELOC/tex/generic/babel/locale/la/babel-ecclesiasticlatin.tex + RELOC/tex/generic/babel/locale/la/babel-la-x-classic.ini + RELOC/tex/generic/babel/locale/la/babel-la-x-ecclesia.ini + RELOC/tex/generic/babel/locale/la/babel-la-x-medieval.ini + RELOC/tex/generic/babel/locale/la/babel-la.ini + RELOC/tex/generic/babel/locale/la/babel-latin.tex + RELOC/tex/generic/babel/locale/la/babel-medievallatin.tex + RELOC/tex/generic/babel/locale/lag/babel-lag.ini + RELOC/tex/generic/babel/locale/lag/babel-langi.tex + RELOC/tex/generic/babel/locale/lb/babel-lb.ini + RELOC/tex/generic/babel/locale/lb/babel-luxembourgish.tex + RELOC/tex/generic/babel/locale/lg/babel-ganda.tex + RELOC/tex/generic/babel/locale/lg/babel-lg.ini + RELOC/tex/generic/babel/locale/lkt/babel-lakota.tex + RELOC/tex/generic/babel/locale/lkt/babel-lkt.ini + RELOC/tex/generic/babel/locale/ln/babel-lingala.tex + RELOC/tex/generic/babel/locale/ln/babel-ln.ini + RELOC/tex/generic/babel/locale/lo/babel-lao.tex + RELOC/tex/generic/babel/locale/lo/babel-lo.ini + RELOC/tex/generic/babel/locale/lrc/babel-lrc.ini + RELOC/tex/generic/babel/locale/lrc/babel-northernluri.tex + RELOC/tex/generic/babel/locale/lt/babel-lithuanian.tex + RELOC/tex/generic/babel/locale/lt/babel-lt.ini + RELOC/tex/generic/babel/locale/lu/babel-lu.ini + RELOC/tex/generic/babel/locale/lu/babel-lubakatanga.tex + RELOC/tex/generic/babel/locale/luo/babel-luo.ini + RELOC/tex/generic/babel/locale/luo/babel-luo.tex + RELOC/tex/generic/babel/locale/luy/babel-luy.ini + RELOC/tex/generic/babel/locale/luy/babel-luyia.tex + RELOC/tex/generic/babel/locale/lv/babel-latvian.tex + RELOC/tex/generic/babel/locale/lv/babel-lv.ini + RELOC/tex/generic/babel/locale/mas/babel-mas.ini + RELOC/tex/generic/babel/locale/mas/babel-masai.tex + RELOC/tex/generic/babel/locale/mer/babel-mer.ini + RELOC/tex/generic/babel/locale/mer/babel-meru.tex + RELOC/tex/generic/babel/locale/mfe/babel-mfe.ini + RELOC/tex/generic/babel/locale/mfe/babel-morisyen.tex + RELOC/tex/generic/babel/locale/mg/babel-malagasy.tex + RELOC/tex/generic/babel/locale/mg/babel-mg.ini + RELOC/tex/generic/babel/locale/mgh/babel-makhuwameetto.tex + RELOC/tex/generic/babel/locale/mgh/babel-mgh.ini + RELOC/tex/generic/babel/locale/mgo/babel-meta.tex + RELOC/tex/generic/babel/locale/mgo/babel-mgo.ini + RELOC/tex/generic/babel/locale/mk/babel-macedonian.tex + RELOC/tex/generic/babel/locale/mk/babel-mk.ini + RELOC/tex/generic/babel/locale/ml/babel-malayalam.tex + RELOC/tex/generic/babel/locale/ml/babel-ml.ini + RELOC/tex/generic/babel/locale/mn/babel-mn.ini + RELOC/tex/generic/babel/locale/mn/babel-mongolian.tex + RELOC/tex/generic/babel/locale/mr/babel-marathi.tex + RELOC/tex/generic/babel/locale/mr/babel-mr.ini + RELOC/tex/generic/babel/locale/ms/babel-malay-bn.tex + RELOC/tex/generic/babel/locale/ms/babel-malay-brunei.tex + RELOC/tex/generic/babel/locale/ms/babel-malay-sg.tex + RELOC/tex/generic/babel/locale/ms/babel-malay-singapore.tex + RELOC/tex/generic/babel/locale/ms/babel-malay.tex + RELOC/tex/generic/babel/locale/ms/babel-ms-BN.ini + RELOC/tex/generic/babel/locale/ms/babel-ms-SG.ini + RELOC/tex/generic/babel/locale/ms/babel-ms.ini + RELOC/tex/generic/babel/locale/mt/babel-maltese.tex + RELOC/tex/generic/babel/locale/mt/babel-mt.ini + RELOC/tex/generic/babel/locale/mua/babel-mua.ini + RELOC/tex/generic/babel/locale/mua/babel-mundang.tex + RELOC/tex/generic/babel/locale/my/babel-burmese.tex + RELOC/tex/generic/babel/locale/my/babel-my.ini + RELOC/tex/generic/babel/locale/mzn/babel-mazanderani.tex + RELOC/tex/generic/babel/locale/mzn/babel-mzn.ini + RELOC/tex/generic/babel/locale/naq/babel-nama.tex + RELOC/tex/generic/babel/locale/naq/babel-naq.ini + RELOC/tex/generic/babel/locale/nb/babel-nb.ini + RELOC/tex/generic/babel/locale/nb/babel-norsk.tex + RELOC/tex/generic/babel/locale/nb/babel-norwegianbokmal.tex + RELOC/tex/generic/babel/locale/nd/babel-nd.ini + RELOC/tex/generic/babel/locale/nd/babel-northndebele.tex + RELOC/tex/generic/babel/locale/ne/babel-ne.ini + RELOC/tex/generic/babel/locale/ne/babel-nepali.tex + RELOC/tex/generic/babel/locale/nl/babel-dutch.tex + RELOC/tex/generic/babel/locale/nl/babel-nl.ini + RELOC/tex/generic/babel/locale/nmg/babel-kwasio.tex + RELOC/tex/generic/babel/locale/nmg/babel-nmg.ini + RELOC/tex/generic/babel/locale/nn/babel-nn.ini + RELOC/tex/generic/babel/locale/nn/babel-norwegiannynorsk.tex + RELOC/tex/generic/babel/locale/nn/babel-nynorsk.tex + RELOC/tex/generic/babel/locale/nnh/babel-ngiemboon.tex + RELOC/tex/generic/babel/locale/nnh/babel-nnh.ini + RELOC/tex/generic/babel/locale/nus/babel-nuer.tex + RELOC/tex/generic/babel/locale/nus/babel-nus.ini + RELOC/tex/generic/babel/locale/nyn/babel-nyankole.tex + RELOC/tex/generic/babel/locale/nyn/babel-nyn.ini + RELOC/tex/generic/babel/locale/oc/babel-oc.ini + RELOC/tex/generic/babel/locale/oc/babel-occitan.tex + RELOC/tex/generic/babel/locale/om/babel-om.ini + RELOC/tex/generic/babel/locale/om/babel-oromo.tex + RELOC/tex/generic/babel/locale/or/babel-or.ini + RELOC/tex/generic/babel/locale/or/babel-oriya.tex + RELOC/tex/generic/babel/locale/os/babel-os.ini + RELOC/tex/generic/babel/locale/os/babel-ossetic.tex + RELOC/tex/generic/babel/locale/pa/babel-pa-Arab.ini + RELOC/tex/generic/babel/locale/pa/babel-pa-Guru.ini + RELOC/tex/generic/babel/locale/pa/babel-pa.ini + RELOC/tex/generic/babel/locale/pa/babel-punjabi-arab.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi-arabic.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi-gurmukhi.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi-guru.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi.tex + RELOC/tex/generic/babel/locale/pl/babel-pl.ini + RELOC/tex/generic/babel/locale/pl/babel-polish.tex + RELOC/tex/generic/babel/locale/pms/babel-piedmontese.tex + RELOC/tex/generic/babel/locale/pms/babel-pms.ini + RELOC/tex/generic/babel/locale/ps/babel-pashto.tex + RELOC/tex/generic/babel/locale/ps/babel-ps.ini + RELOC/tex/generic/babel/locale/pt/babel-brazilian.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-br.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-brazil.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-portugal.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-pt.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese.tex + RELOC/tex/generic/babel/locale/pt/babel-pt-BR.ini + RELOC/tex/generic/babel/locale/pt/babel-pt-PT.ini + RELOC/tex/generic/babel/locale/pt/babel-pt.ini + RELOC/tex/generic/babel/locale/qu/babel-qu.ini + RELOC/tex/generic/babel/locale/qu/babel-quechua.tex + RELOC/tex/generic/babel/locale/rm/babel-rm.ini + RELOC/tex/generic/babel/locale/rm/babel-romansh.tex + RELOC/tex/generic/babel/locale/rn/babel-rn.ini + RELOC/tex/generic/babel/locale/rn/babel-rundi.tex + RELOC/tex/generic/babel/locale/ro/babel-ro.ini + RELOC/tex/generic/babel/locale/ro/babel-romanian.tex + RELOC/tex/generic/babel/locale/rof/babel-rof.ini + RELOC/tex/generic/babel/locale/rof/babel-rombo.tex + RELOC/tex/generic/babel/locale/ru/babel-ru.ini + RELOC/tex/generic/babel/locale/ru/babel-russian.tex + RELOC/tex/generic/babel/locale/rw/babel-kinyarwanda.tex + RELOC/tex/generic/babel/locale/rw/babel-rw.ini + RELOC/tex/generic/babel/locale/rwk/babel-rwa.tex + RELOC/tex/generic/babel/locale/rwk/babel-rwk.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Beng.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Deva.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Gujr.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Knda.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Mlym.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Telu.ini + RELOC/tex/generic/babel/locale/sa/babel-sa.ini + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-beng.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-bengali.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-deva.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-devanagari.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-gujarati.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-gujr.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-kannada.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-knda.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-malayalam.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-mlym.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-telu.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-telugu.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit.tex + RELOC/tex/generic/babel/locale/sah/babel-sah.ini + RELOC/tex/generic/babel/locale/sah/babel-sakha.tex + RELOC/tex/generic/babel/locale/saq/babel-samburu.tex + RELOC/tex/generic/babel/locale/saq/babel-saq.ini + RELOC/tex/generic/babel/locale/sbp/babel-sangu.tex + RELOC/tex/generic/babel/locale/sbp/babel-sbp.ini + RELOC/tex/generic/babel/locale/se/babel-northernsami.tex + RELOC/tex/generic/babel/locale/se/babel-samin.tex + RELOC/tex/generic/babel/locale/se/babel-se.ini + RELOC/tex/generic/babel/locale/seh/babel-seh.ini + RELOC/tex/generic/babel/locale/seh/babel-sena.tex + RELOC/tex/generic/babel/locale/ses/babel-koyraborosenni.tex + RELOC/tex/generic/babel/locale/ses/babel-ses.ini + RELOC/tex/generic/babel/locale/sg/babel-sango.tex + RELOC/tex/generic/babel/locale/sg/babel-sg.ini + RELOC/tex/generic/babel/locale/shi/babel-shi-Latn.ini + RELOC/tex/generic/babel/locale/shi/babel-shi-Tfng.ini + RELOC/tex/generic/babel/locale/shi/babel-shi.ini + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-latin.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-latn.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-tfng.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-tifinagh.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit.tex + RELOC/tex/generic/babel/locale/si/babel-si.ini + RELOC/tex/generic/babel/locale/si/babel-sinhala.tex + RELOC/tex/generic/babel/locale/sk/babel-sk.ini + RELOC/tex/generic/babel/locale/sk/babel-slovak.tex + RELOC/tex/generic/babel/locale/sl/babel-sl.ini + RELOC/tex/generic/babel/locale/sl/babel-slovene.tex + RELOC/tex/generic/babel/locale/sl/babel-slovenian.tex + RELOC/tex/generic/babel/locale/smn/babel-inarisami.tex + RELOC/tex/generic/babel/locale/smn/babel-smn.ini + RELOC/tex/generic/babel/locale/sn/babel-shona.tex + RELOC/tex/generic/babel/locale/sn/babel-sn.ini + RELOC/tex/generic/babel/locale/so/babel-so.ini + RELOC/tex/generic/babel/locale/so/babel-somali.tex + RELOC/tex/generic/babel/locale/sq/babel-albanian.tex + RELOC/tex/generic/babel/locale/sq/babel-sq.ini + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic-bosniaherzegovina.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic-kosovo.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic-montenegro.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl-ba.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl-me.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl-xk.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin-bosniaherzegovina.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin-kosovo.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin-montenegro.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn-ba.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn-me.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn-xk.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian.tex + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl-BA.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl-ME.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl-XK.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn-BA.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn-ME.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn-XK.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn.ini + RELOC/tex/generic/babel/locale/sr/babel-sr.ini + RELOC/tex/generic/babel/locale/sv/babel-sv.ini + RELOC/tex/generic/babel/locale/sv/babel-swedish.tex + RELOC/tex/generic/babel/locale/sw/babel-sw.ini + RELOC/tex/generic/babel/locale/sw/babel-swahili.tex + RELOC/tex/generic/babel/locale/syr/babel-syr.ini + RELOC/tex/generic/babel/locale/syr/babel-syriac.tex + RELOC/tex/generic/babel/locale/ta/babel-ta.ini + RELOC/tex/generic/babel/locale/ta/babel-tamil.tex + RELOC/tex/generic/babel/locale/te/babel-te.ini + RELOC/tex/generic/babel/locale/te/babel-telugu.tex + RELOC/tex/generic/babel/locale/teo/babel-teo.ini + RELOC/tex/generic/babel/locale/teo/babel-teso.tex + RELOC/tex/generic/babel/locale/th/babel-th.ini + RELOC/tex/generic/babel/locale/th/babel-thai.tex + RELOC/tex/generic/babel/locale/ti/babel-ti.ini + RELOC/tex/generic/babel/locale/ti/babel-tigrinya.tex + RELOC/tex/generic/babel/locale/tk/babel-tk.ini + RELOC/tex/generic/babel/locale/tk/babel-turkmen.tex + RELOC/tex/generic/babel/locale/to/babel-to.ini + RELOC/tex/generic/babel/locale/to/babel-tongan.tex + RELOC/tex/generic/babel/locale/tr/babel-tr.ini + RELOC/tex/generic/babel/locale/tr/babel-turkish.tex + RELOC/tex/generic/babel/locale/twq/babel-tasawaq.tex + RELOC/tex/generic/babel/locale/twq/babel-twq.ini + RELOC/tex/generic/babel/locale/tzm/babel-centralatlastamazight.tex + RELOC/tex/generic/babel/locale/tzm/babel-tzm.ini + RELOC/tex/generic/babel/locale/ug/babel-ug.ini + RELOC/tex/generic/babel/locale/ug/babel-uyghur.tex + RELOC/tex/generic/babel/locale/uk/babel-uk.ini + RELOC/tex/generic/babel/locale/uk/babel-ukrainian.tex + RELOC/tex/generic/babel/locale/ur/babel-ur.ini + RELOC/tex/generic/babel/locale/ur/babel-urdu.tex + RELOC/tex/generic/babel/locale/uz/babel-uz-Arab.ini + RELOC/tex/generic/babel/locale/uz/babel-uz-Cyrl.ini + RELOC/tex/generic/babel/locale/uz/babel-uz-Latn.ini + RELOC/tex/generic/babel/locale/uz/babel-uz.ini + RELOC/tex/generic/babel/locale/uz/babel-uzbek-arab.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-arabic.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-cyrillic.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-cyrl.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-latin.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-latn.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-Latn.ini + RELOC/tex/generic/babel/locale/vai/babel-vai-Vaii.ini + RELOC/tex/generic/babel/locale/vai/babel-vai-latin.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-latn.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-vai.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-vaii.tex + RELOC/tex/generic/babel/locale/vai/babel-vai.ini + RELOC/tex/generic/babel/locale/vai/babel-vai.tex + RELOC/tex/generic/babel/locale/vi/babel-vi.ini + RELOC/tex/generic/babel/locale/vi/babel-vietnam.tex + RELOC/tex/generic/babel/locale/vi/babel-vietnamese.tex + RELOC/tex/generic/babel/locale/vun/babel-vun.ini + RELOC/tex/generic/babel/locale/vun/babel-vunjo.tex + RELOC/tex/generic/babel/locale/wae/babel-wae.ini + RELOC/tex/generic/babel/locale/wae/babel-walser.tex + RELOC/tex/generic/babel/locale/xog/babel-soga.tex + RELOC/tex/generic/babel/locale/xog/babel-xog.ini + RELOC/tex/generic/babel/locale/yav/babel-yangben.tex + RELOC/tex/generic/babel/locale/yav/babel-yav.ini + RELOC/tex/generic/babel/locale/yi/babel-yi.ini + RELOC/tex/generic/babel/locale/yi/babel-yiddish.tex + RELOC/tex/generic/babel/locale/yo/babel-yo.ini + RELOC/tex/generic/babel/locale/yo/babel-yoruba.tex + RELOC/tex/generic/babel/locale/yue/babel-cantonese.tex + RELOC/tex/generic/babel/locale/yue/babel-yue.ini + RELOC/tex/generic/babel/locale/zgh/babel-standardmoroccantamazight.tex + RELOC/tex/generic/babel/locale/zgh/babel-zgh.ini + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans-hk.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans-mo.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans-sg.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hant-hk.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hant-mo.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hant.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified-hongkongsarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified-macausarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified-singapore.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-traditional-hongkongsarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-traditional-macausarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-traditional.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese.tex + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans-HK.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans-MO.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans-SG.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hant-HK.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hant-MO.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hant.ini + RELOC/tex/generic/babel/locale/zh/babel-zh.ini + RELOC/tex/generic/babel/locale/zu/babel-zu.ini + RELOC/tex/generic/babel/locale/zu/babel-zulu.tex + RELOC/tex/generic/babel/lsorbian.sty + RELOC/tex/generic/babel/luababel.def + RELOC/tex/generic/babel/magyar.sty + RELOC/tex/generic/babel/naustrian.sty + RELOC/tex/generic/babel/ngermanb.sty + RELOC/tex/generic/babel/nil.ldf + RELOC/tex/generic/babel/norsk.sty + RELOC/tex/generic/babel/plain.def + RELOC/tex/generic/babel/polish.sty + RELOC/tex/generic/babel/portuges.sty + RELOC/tex/generic/babel/romanian.sty + RELOC/tex/generic/babel/russianb.sty + RELOC/tex/generic/babel/samin.sty + RELOC/tex/generic/babel/scottish.sty + RELOC/tex/generic/babel/serbian.sty + RELOC/tex/generic/babel/slovak.sty + RELOC/tex/generic/babel/slovene.sty + RELOC/tex/generic/babel/spanish.sty + RELOC/tex/generic/babel/swedish.sty + RELOC/tex/generic/babel/switch.def + RELOC/tex/generic/babel/turkish.sty + RELOC/tex/generic/babel/txtbabel.def + RELOC/tex/generic/babel/ukraineb.sty + RELOC/tex/generic/babel/usorbian.sty + RELOC/tex/generic/babel/welsh.sty + RELOC/tex/generic/babel/xebabel.def +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-license lppl1.3 +catalogue-topics multilingual +catalogue-version 3.58 + +name babel-albanian +category Package +revision 57005 +shortdesc Support for Albanian within babel +relocated 1 +longdesc The package provides support for typesetting Albanian (as part +longdesc of the babel system). +containersize 2264 +containerchecksum 8a98ba1dc08bc2bdbba0793bda2a07a6c248543fdee56cbb047229d1cfe77cdf616c0ef023b0a74f877d9863768065f0e256ba35a1071e0dd3f2bbf2b47b7ebe +doccontainersize 133444 +doccontainerchecksum d26b9d933bbf0225f79bd8180f9dcc2961ea481fef7b535267034296062f8879b53ca47ed6b512fc724b261276be6d92ce045ba0c8bbdba0149cca6f117be8ea +docfiles size=34 + RELOC/doc/generic/babel-albanian/README.md details="Readme" + RELOC/doc/generic/babel-albanian/albanian.pdf details="Package documentation" +srccontainersize 4748 +srccontainerchecksum 74212f36288599d730fafd00dc50839cf0f12283ed8653303471d2cb64a57217b4792f1000cb44411c7d5031e4597db67368964ad318e896987103af8e21f838 +srcfiles size=4 + RELOC/source/generic/babel-albanian/albanian.dtx + RELOC/source/generic/babel-albanian/albanian.ins +runfiles size=2 + RELOC/tex/generic/babel-albanian/albanian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/albanian +catalogue-license lppl1.3 +catalogue-topics albanian +catalogue-version 1.0d + +name babel-azerbaijani +category Package +revision 44197 +shortdesc Support for Azerbaijani within babel +relocated 1 +longdesc This is the babel style for Azerbaijani. This language poses +longdesc special challenges because no "traditional" font encoding +longdesc contains the full character set, and therefore a mixture must +longdesc be used (e.g., T2A and T1). This package is compatible with +longdesc Unicode engines (LuaTeX, XeTeX), which are very likely the most +longdesc convenient way to write Azerbaijani documents. +containersize 3076 +containerchecksum 3f20954607195d4804b4bd90d7fe5baa209d5ffac6dfbe5f758306bb7c8aedd1c4c92675f5dce7f634e7ceb2b65e9c3ead0ebfef730bfe2dbd8c0ba17d3079b0 +doccontainersize 232940 +doccontainerchecksum bfd4434720b9676e253f69144aac9a07d6bd19e3a4418ae74269df70085391444ac46556928f131a14e85b87211fd76521b67a457e7319eedd3781a215efd962 +docfiles size=58 + RELOC/doc/generic/babel-azerbaijani/README details="Readme" + RELOC/doc/generic/babel-azerbaijani/azerbaijani.pdf details="Package documentation" +srccontainersize 5156 +srccontainerchecksum b3eb9fdbc08643706a2dfa50daaf27a687c593900a972f89029aeebe08e2a1c4fbea08a848224b198ba447d3ad3a62459aeb9db2c00a0f3f039a16c863ebaf0d +srcfiles size=5 + RELOC/source/generic/babel-azerbaijani/azerbaijani.dtx + RELOC/source/generic/babel-azerbaijani/azerbaijani.ins +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-license lppl1.3 +catalogue-topics azerbaijani multilingual-addon +catalogue-version 1.0a + +name babel-basque +category Package +revision 30256 +shortdesc Babel contributed support for Basque +relocated 1 +longdesc The package establishes Basque conventions in a document. +containersize 2664 +containerchecksum 40079f02225f81c8838aee6179548f3fcb773fa8e031e07f30df761f298b9980e3a4357a8013bd7802c688a192cd9ef2102be1b6e8e1f3efcd68769a9e5a5a2a +doccontainersize 155352 +doccontainerchecksum e6342328d62cb0232d38e10b3b38cd4d75c55a5d31d702c167099a2bd4122e40c5e3cac8a9c2940a9f9893d7aa2594b8322cf469924b97e903cab970dee81c6c +docfiles size=38 + RELOC/doc/generic/babel-basque/basque.pdf details="Package documentation" +srccontainersize 6464 +srccontainerchecksum 1c924232920a969fa48e6d61bcdfc5150cd1afcef6d98cdd27fbe2e0acb5b7749d2b2dea77db88125128b380f2b4ccca4d49d1d140f2e96880e0daf2d09c2d50 +srcfiles size=6 + RELOC/source/generic/babel-basque/basque.dtx + RELOC/source/generic/babel-basque/basque.ins +runfiles size=2 + RELOC/tex/generic/babel-basque/basque.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/basque +catalogue-license lppl1.3 +catalogue-topics basque multilingual-addon +catalogue-version 1.0f + +name babel-belarusian +category Package +revision 49022 +shortdesc Babel support for Belarusian +relocated 1 +longdesc The package provides support for use of Babel in documents +longdesc written in Belarusian. +containersize 5112 +containerchecksum 5856582f8bf6a98a4fbd560bfca82ccb226267e249f0caf8afc775875d50ec204ea613320534a63062dffd0e050905adb24763a95fec2ef4e8faed70a400d976 +doccontainersize 152780 +doccontainerchecksum 247d5a3b99cd5a377534a94fedf47f6710d32d875d3208b1516fdc9acafee70a14ef1dc37600f9da53f806323d0519ebb2c4e288e471363756b7b819751373c8 +docfiles size=39 + RELOC/doc/generic/babel-belarusian/README.md details="Readme" + RELOC/doc/generic/babel-belarusian/belarusian.pdf details="Package documentation" +srccontainersize 21492 +srccontainerchecksum 82262f7775c22a908161a7a2d65caa8662c62ad759db792a6718dba043804b7aac523a8f3eab2dbdc3882a88c55bb641b862f3f19e9c4d3ba1a0f4298db9833e +srcfiles size=22 + RELOC/source/generic/babel-belarusian/belarusian.dtx + RELOC/source/generic/babel-belarusian/belarusian.ins +runfiles size=6 + RELOC/tex/generic/babel-belarusian/belarusian.ldf +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-license lppl1.3c +catalogue-topics multilingual-addon belarusian +catalogue-version 1.5 + +name babel-bosnian +category Package +revision 38174 +shortdesc Babel contrib support for Bosnian +relocated 1 +longdesc The package provides a language definition file that enables +longdesc support of Bosnian with babel. +containersize 2080 +containerchecksum bef1defaacf5232bf9cce6c1a9956c9a42d35a2c2b6ddccbcca3938386f4f4a61a0cbcba74b930dfad18ed211374c3667120c6706ebf097c56ec3c5915ccdff2 +doccontainersize 103208 +doccontainerchecksum 84238e6b38021582de93e9fe934bf608e647c9b4cc0a066b4fbdd2ba98c8e6531b653907f9bcfb79e6afc9074b4a079b5e419db25625d40a76a8ca8e55e81ab1 +docfiles size=27 + RELOC/doc/generic/babel-bosnian/README details="Readme" + RELOC/doc/generic/babel-bosnian/bosnian.pdf details="Package documentation" +srccontainersize 4344 +srccontainerchecksum dfc18e55b30620e27cb8809259a6b4790b94cb98b334a69cd48f66c25696e2df8d38dc5a1d402ae8464ced727752d96d8b5abf18522c8bbde4ce1f6f8ad73c92 +srcfiles size=4 + RELOC/source/generic/babel-bosnian/bosnian.dtx + RELOC/source/generic/babel-bosnian/bosnian.ins +runfiles size=1 + RELOC/tex/generic/babel-bosnian/bosnian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/bosnian +catalogue-license lppl1.3 +catalogue-topics bosnian multilingual-addon +catalogue-version 1.1 + +name babel-breton +category Package +revision 30257 +shortdesc Babel contributed support for Breton +relocated 1 +longdesc Breton (being, principally, a spoken language) does not have +longdesc typographic rules of its own; this package provides an +longdesc "appropriate" selection of French and British typographic +longdesc rules. +containersize 2756 +containerchecksum bbcfa22674ca1d4a8e23f179480f9e94a50d5b460b8b0d27365c9166adc02a191253ef2d61d6f5eaf5bc61e73faf5d307378898f1d6b1b748448bbd8a36ea141 +doccontainersize 118232 +doccontainerchecksum 3b47653b26901dd4aba1395c61c9dc01d43ed490c70ca04ba7d1cc67ba7b23b658db32b7a5fef085b236a68bcd009dc5cc5687e3dc2dc8d246ab2ccb8d391b42 +docfiles size=29 + RELOC/doc/generic/babel-breton/breton.pdf details="Package documentation" +srccontainersize 5384 +srccontainerchecksum 8f381a3955780617f9738b008e6f4490632a67c70f16d4855f15ca59981dadaf72f7f15cebe10a121bcbb894006c738ca1872fbe33bb256c8145b22254236b67 +srcfiles size=5 + RELOC/source/generic/babel-breton/breton.dtx + RELOC/source/generic/babel-breton/breton.ins +runfiles size=2 + RELOC/tex/generic/babel-breton/breton.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/breton +catalogue-license lppl1.3 +catalogue-topics breton multilingual-addon +catalogue-version 1.0h + +name babel-bulgarian +category Package +revision 31902 +shortdesc Babel contributed support for Bulgarian +relocated 1 +longdesc The package provides support for documents in Bulgarian (or +longdesc simply containing some Bulgarian text). +containersize 5808 +containerchecksum 0c838e5c5cd010fddaec385376f9eb5fb10730e918dd28f58987f855a444d91ed2e66c0de46c74637d134d72f7e348e538836df33f6255a14ed51d0e8d5e8a3e +doccontainersize 176396 +doccontainerchecksum 4dcd92a2088e737972f0663fe5161883cae901dc82aafd1bd33f2d80a852fb51d6229c95cc655826bd17599a7152b8a7bf0031eb046530a135e8bc5c9c74b2dd +docfiles size=48 + RELOC/doc/generic/babel-bulgarian/README details="Readme" + RELOC/doc/generic/babel-bulgarian/bulgarian.pdf details="Package documentation" +srccontainersize 20716 +srccontainerchecksum 047f69cbdedea9070a002782e8d1b893aae71adaa2e637df560ab8a176308faf8d1b8b52afda8f38f264783077a227176eacace9484ccc0af2a4a7615460c7a2 +srcfiles size=20 + RELOC/source/generic/babel-bulgarian/bulgarian.dtx + RELOC/source/generic/babel-bulgarian/bulgarian.ins +runfiles size=6 + RELOC/tex/generic/babel-bulgarian/bulgarian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/bulgarian +catalogue-license lppl1.3 +catalogue-topics bulgarian multilingual-addon +catalogue-version 1.2g + +name babel-catalan +category Package +revision 30259 +shortdesc Babel contributed support for Catalan +relocated 1 +longdesc The package establishes Catalan conventions in a document (or a +longdesc subset of the conventions, if Catalan is not the main language +longdesc of the document). +containersize 3444 +containerchecksum 728d847331f1a00766cfc2818691516234b153182f31ad2da024ec3194cc384a41ca89cc67ce66447191188dfe088d1dc4c8af3b2e6952931ec7eb58737c4bca +doccontainersize 209232 +doccontainerchecksum 3184373d85b1e9bd76588318372ced328d2ce7f6d4f45bc5634671a88314d1ed18cedd968e59dd5203b4d77e6d3576f36a654b1a8bbdaa106d47cbdfb825e452 +docfiles size=52 + RELOC/doc/generic/babel-catalan/catalan.pdf details="Package documentation" +srccontainersize 9708 +srccontainerchecksum ef15d0aca46af936141fa2d47c6b794ce85f2c3fc9adf18b5ca4b0267292f24d1c02121d5189f7cc9db98e0ab22a5d4ec2febc32b2bec5c3c5923598e869878c +srcfiles size=10 + RELOC/source/generic/babel-catalan/catalan.dtx + RELOC/source/generic/babel-catalan/catalan.ins +runfiles size=3 + RELOC/tex/generic/babel-catalan/catalan.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/catalan +catalogue-license lppl1.3 +catalogue-topics catalan multilingual-addon +catalogue-version 2.2p + +name babel-croatian +category Package +revision 35198 +shortdesc Babel contributed support for Croatian +relocated 1 +longdesc The package establishes Croatian conventions in a document (or +longdesc a subset of the conventions, if Croatian is not the main +longdesc language of the document). +containersize 2176 +containerchecksum b5724a84cd180e9de79136ced8bd38717dcb4e932dbba4e20fc071ba9f50fb35cebe83d4a95ec6e8ef0e09a02732cbdc8b1a71715c8a5967393f54087ba4a807 +doccontainersize 114148 +doccontainerchecksum d5e40e95037c3035589b093037c563b3737e061369f27ff5c51d620e0655dd075f413b91434591e2130849d641c1ac59469db46be1d8b0761075424c468668d2 +docfiles size=30 + RELOC/doc/generic/babel-croatian/croatian.pdf details="Package documentation" +srccontainersize 4428 +srccontainerchecksum fdd4efb6d24bc9560e14f9e02d231ac636f2f69249d7dea9c07b337f0d5617c754bbc9087bda5cf1f2da6178807e46f015658b3fc2d04ddd5749dc2643ef4ed0 +srcfiles size=5 + RELOC/source/generic/babel-croatian/croatian.dtx + RELOC/source/generic/babel-croatian/croatian.ins +runfiles size=1 + RELOC/tex/generic/babel-croatian/croatian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/croatian +catalogue-license lppl1.3 +catalogue-topics croatian multilingual-addon +catalogue-version 1.3l + +name babel-czech +category Package +revision 30261 +shortdesc Babel support for Czech +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Czech in babel. Some shortcuts are defined, as well as +longdesc translations to Czech of standard "LaTeX names". +containersize 4880 +containerchecksum 0cc0f07fafefa6d7ea1ae1b2ce143dbec124fe96b36221f1b5a847fd0b789d1974b5990ebd93b8ac0607f63956948bede25c7e690784ca7e9638f48139585a32 +doccontainersize 188640 +doccontainerchecksum 1575fbe0d70725e975cdb0c1c5ca685985d91f23e4a997af4a0db21905ac34962f69653ffe4084065bda70cfbba0f0a1f0885d3afc19e98d0045ebb68cb545c3 +docfiles size=47 + RELOC/doc/generic/babel-czech/czech.pdf details="Package documentation" +srccontainersize 12536 +srccontainerchecksum 1cbc5de700e32ac2600a50a85f6437b7bada601734753a8ea62b845f7500880195625e827be41e277d76137ca3dac05b230e64e0edcf1807cae2079feceff8a0 +srcfiles size=12 + RELOC/source/generic/babel-czech/czech.dtx + RELOC/source/generic/babel-czech/czech.ins +runfiles size=4 + RELOC/tex/generic/babel-czech/czech.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/czech +catalogue-license lppl1.3 +catalogue-topics czech +catalogue-version 3.1a + +name babel-danish +category Package +revision 57642 +shortdesc Babel contributed support for Danish +relocated 1 +longdesc The package provides a language definition, file for use with +longdesc babel, which establishes Danish conventions in a document (or a +longdesc subset of the conventions, if Danish is not the main language +longdesc of the document). +containersize 2488 +containerchecksum 201afcbdb9b8d9128cece15ac8876e8d9bc261ab6c90745e52a95bb58fefea0b478a623027b097875d831fe5671f8f1f16a2370dc0dfd92ec3e603436e366e1e +doccontainersize 136588 +doccontainerchecksum 5ed050c01207e110c475abe825e5299df0f7927476141d81cb31fcc8c6dae1076e855d3590aea0812bc2a15949231163c24f0039620f3a8f41cd43bd6a8a0840 +docfiles size=35 + RELOC/doc/generic/babel-danish/README.md details="Readme" + RELOC/doc/generic/babel-danish/danish.pdf details="Package documentation" +srccontainersize 5792 +srccontainerchecksum 5c9bc598da8e782acf3a4e3ae5e93acafdad34fd68962436ee7a5acfcd7c234863db5faf9a3c2e2b87814d235883e3e85688fd0b3f514a7d57977d1872896884 +srcfiles size=6 + RELOC/source/generic/babel-danish/danish.dtx + RELOC/source/generic/babel-danish/danish.ins +runfiles size=2 + RELOC/tex/generic/babel-danish/danish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/danish +catalogue-license lppl1.3 +catalogue-topics multilingual-addon danish +catalogue-version 1.3s + +name babel-dutch +category Package +revision 56827 +shortdesc Babel contributed support for Dutch +relocated 1 +longdesc The package provides a language definition, file for use with +longdesc babel, which establishes Dutch conventions in a document (or a +longdesc subset of the conventions, if Dutch is not the main language of +longdesc the document). +containersize 2900 +containerchecksum 4bdebadb6dabd378fb52eedacd8181623e40bd0a8215aa77c34f7a051a020d6c60230fa0203c2d519bfffcb9a374702ccb1d7c6b0482a232f1eeda5ff52f6c1e +doccontainersize 149932 +doccontainerchecksum 92bb3f2df9706bc6af7d20df200174a4b3f0b3237a8f1d9259886272deeab4109e85245a0cf6cf5b43bee93b14b581b1fe5e0d4f7198b88a77e2fbf0c8156090 +docfiles size=38 + RELOC/doc/generic/babel-dutch/README.md details="Readme" + RELOC/doc/generic/babel-dutch/dutch.pdf details="Package documentation" +srccontainersize 7920 +srccontainerchecksum 5942ba0dff02c632f0a09e240b3576eb425ed1c74924c007572b2a7b8b95701777bf20b2a943acd0028682d5cf422988c51752c3c80806413c0227daf2f8fff6 +srcfiles size=8 + RELOC/source/generic/babel-dutch/dutch.dtx + RELOC/source/generic/babel-dutch/dutch.ins +runfiles size=4 + RELOC/tex/generic/babel-dutch/afrikaans.ldf + RELOC/tex/generic/babel-dutch/dutch.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/dutch +catalogue-license lppl1.3 +catalogue-topics dutch multilingual-addon +catalogue-version 3.8j + +name babel-english +category Package +revision 44495 +shortdesc Babel support for English +relocated 1 +longdesc The package provides the language definition file for support +longdesc of English in babel. Care is taken to select british +longdesc hyphenation patterns for British English and Australian text, +longdesc and default ('american') patterns for Canadian and USA text. +containersize 3040 +containerchecksum f570d2aae8a97ba0762fc1eab75dad1f17c4ac582a351ffeb8e56a136b789a38b7a6519247ba5981385f1a093101542942b3bd073a5097336392929ed40c9e39 +doccontainersize 130652 +doccontainerchecksum 77d6b482407ff24095b1076673316744374e66bdbdd7ebb767ec66ccdccd6ed5bb27ecfd0796eee210f1a888c82ad2eb4b9d2142c427bff137bd139c4cc53ec3 +docfiles size=33 + RELOC/doc/generic/babel-english/README details="Readme" + RELOC/doc/generic/babel-english/english.pdf details="Package documentation" +srccontainersize 6256 +srccontainerchecksum ce636f5cca9aa33ad7414432fcc46fbf1873c4b1576cae8c04b8cf15381f4b6ea54e0621f297114f302ae172752282daedc0b59c15393e1071f8542ad3baf628 +srcfiles size=7 + RELOC/source/generic/babel-english/english.dtx + RELOC/source/generic/babel-english/english.ins +runfiles size=9 + RELOC/tex/generic/babel-english/UKenglish.ldf + RELOC/tex/generic/babel-english/USenglish.ldf + RELOC/tex/generic/babel-english/american.ldf + RELOC/tex/generic/babel-english/australian.ldf + RELOC/tex/generic/babel-english/british.ldf + RELOC/tex/generic/babel-english/canadian.ldf + RELOC/tex/generic/babel-english/english.ldf + RELOC/tex/generic/babel-english/newzealand.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/english +catalogue-license lppl1.3 +catalogue-topics english multilingual-addon +catalogue-version 3.3r + +name babel-esperanto +category Package +revision 30265 +shortdesc Babel support for Esperanto +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Esperanto in babel. Some shortcuts are defined, as well as +longdesc translations to Esperanto of standard "LaTeX names". +containersize 2584 +containerchecksum 0c3be27d02d4c3157f2b0df0950e0814db3ffbdb2553d2c0f176893f3669123a9130874e93edcfd86480b785bbbfda35f9246dac3b4a0779da51387b0bf12ee8 +doccontainersize 126500 +doccontainerchecksum 166c1b59511b5a01cac11b5cd76c84cfa485c2674b390a167ff165bec1326709437ee843f664fd4ac9e61338481df9e7f3026189f7c29c71778dbd1df98cd35f +docfiles size=31 + RELOC/doc/generic/babel-esperanto/esperanto.pdf details="Package documentation" +srccontainersize 5688 +srccontainerchecksum f2fcef5841400c521415c870ae1641549eb702944ebd404b96ff9d5b52ee9c2d484662a50d9b410f62e74580f37fdbd269b3650cee0572b3096e4b0365787d4b +srcfiles size=6 + RELOC/source/generic/babel-esperanto/esperanto.dtx + RELOC/source/generic/babel-esperanto/esperanto.ins +runfiles size=2 + RELOC/tex/generic/babel-esperanto/esperanto.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/esperanto +catalogue-license lppl1.3 +catalogue-topics esperanto +catalogue-version 1.4t + +name babel-estonian +category Package +revision 38064 +shortdesc Babel support for Estonian +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Estonian in babel. Some shortcuts are defined, as well as +longdesc translations to Estonian of standard "LaTeX names". +containersize 3040 +containerchecksum 03357f8b0c101e5e186fa4211a971e625f6970a3129a2594a611c74b77b36a27a288d2da518d21e6e2e5d98bb82802b2115d47e31e6258f01c003be854090baf +doccontainersize 91472 +doccontainerchecksum ca732f4b6ccb9ae27f99aaabc99037d9f3d04bc170b9a8bb189a81b6bc9f55fd757c5755bf51ff423850f6b45c88a5645f75a462fc9d9e9b989fa04c1a2cc7c1 +docfiles size=28 + RELOC/doc/generic/babel-estonian/README.txt details="Readme" + RELOC/doc/generic/babel-estonian/estonian.pdf details="Package documentation" +srccontainersize 9136 +srccontainerchecksum 47e8d53d379ec383400e618873d800bbb6dcd8eea7807e31173110d5d7492f52cd4808a288e53534a2de578c43a5ee4eceef690bfcd56cc11e863919f86ee8af +srcfiles size=8 + RELOC/source/generic/babel-estonian/estonian.dtx + RELOC/source/generic/babel-estonian/estonian.ins +runfiles size=2 + RELOC/tex/generic/babel-estonian/estonian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/estonian +catalogue-license lppl1.3 +catalogue-topics estonian +catalogue-version 1.1a + +name babel-finnish +category Package +revision 57643 +shortdesc Babel support for Finnish +relocated 1 +longdesc The package provides a language description file that enables +longdesc support of Finnish with babel. +containersize 2416 +containerchecksum ed0dc79fbf6cd992bb5ff3df46f93203ffcb3ade34c6a613b5b22bf5effb98f78fa85d9b915130b304df71629c5a8bd68a4bab23ee772a1068f7184fa27051e3 +doccontainersize 147984 +doccontainerchecksum c96212780651c9c0c831e295c26f678c80724e5b923d69fc73bc1be39e369a19243b42e5252dd4c0a049fa0c4d25dd611bd470b12a4b55dec4520d016c21a5f1 +docfiles size=38 + RELOC/doc/generic/babel-finnish/README.md details="Readme" + RELOC/doc/generic/babel-finnish/finnish.pdf details="Package documentation" +srccontainersize 6224 +srccontainerchecksum 11bb4bd731c27af0e11718a55793f7a22957b65e2ddc988e6e3ddb5cb6def8fb1d9ea9f235bf400beeb026f220a628effd612d04d416abeec2e1c39a001281f0 +srcfiles size=6 + RELOC/source/generic/babel-finnish/finnish.dtx + RELOC/source/generic/babel-finnish/finnish.ins +runfiles size=2 + RELOC/tex/generic/babel-finnish/finnish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/finnish +catalogue-license lppl1.3 +catalogue-topics multilingual-addon finnish +catalogue-version 1.3s + +name babel-french +category Package +revision 56607 +shortdesc Babel contributed support for French +relocated 1 +longdesc The package, formerly known as frenchb, establishes French +longdesc conventions in a document (or a subset of the conventions, if +longdesc French is not the main language of the document). +containersize 15924 +containerchecksum eaf680b5828b069907c0edf2b62c49475648f973f1ed220e47f6c05907e4b813021b0b18f66b3926ddea4266654dc91055913f3d6be1a799ef0bb2ac8241b9e3 +doccontainersize 502492 +doccontainerchecksum 67c54e55985a756ad52c6c904271a0b54b95e36f2da793d8804771c1606a354c075c8cb547d261c291fb70996fa818573f9f4e0e2c6f0e4a72be0ce71b65b724 +docfiles size=144 + RELOC/doc/generic/babel-french/README.md details="Readme" + RELOC/doc/generic/babel-french/frenchb-doc.pdf details="User manual" language="fr" + RELOC/doc/generic/babel-french/frenchb-doc.tex + RELOC/doc/generic/babel-french/frenchb.pdf details="Package documentation" +srccontainersize 56156 +srccontainerchecksum 676c38f93a87b0fde0d7527f5a4e7db38744cd72e069dfa093e1bc91e365a219fe00a2d523ba06522f31aa106df1f391c669215bc4617a59df606f1cf3df179c +srcfiles size=60 + RELOC/source/generic/babel-french/frenchb.dtx + RELOC/source/generic/babel-french/frenchb.ins +runfiles size=24 + RELOC/tex/generic/babel-french/acadian.ldf + RELOC/tex/generic/babel-french/canadien.ldf + RELOC/tex/generic/babel-french/francais.ldf + RELOC/tex/generic/babel-french/french.ldf + RELOC/tex/generic/babel-french/frenchb.ldf + 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-license lppl1.3 +catalogue-topics french multilingual-addon +catalogue-version 3.5l + +name babel-friulan +category Package +revision 39861 +shortdesc Babel/Polyglossia support for Friulan(Furlan) +relocated 1 +longdesc The package provides a language description file that enables +longdesc support of Friulan either with babel or with polyglossia. +containersize 1576 +containerchecksum e6210dc473c3d71759f2faf1558df2d6a7c646485d85cf0113074fb68eaef23b2e44eb88c9fd35a7a7929b408d6574f7230852643366bccd29afee744e0b2d07 +doccontainersize 138624 +doccontainerchecksum 0ce539cb0b6cc7af830c7413545f411e1291491fb26ad0451e7caf1346da9ab188a457e3292efe9724070e77f67e46e06293dbfb40b78a1328112b04d4a1fd77 +docfiles size=35 + RELOC/doc/generic/babel-friulan/README.txt details="Readme" + RELOC/doc/generic/babel-friulan/friulan.pdf details="Package documentation" +srccontainersize 3456 +srccontainerchecksum 1e7e241350d499bd0bf28b1c190b3c73e20d02be12612905305ad53cead422e8ea1b6b0dd633190170d7ab2ac2802559693597a8c6ae8527a7fe83af7cc61463 +srcfiles size=3 + RELOC/source/generic/babel-friulan/friulan.dtx +runfiles size=1 + RELOC/tex/generic/babel-friulan/friulan.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/friulan +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 1.3 + +name babel-galician +category Package +revision 30270 +shortdesc Babel/Polyglossia support for Galician +relocated 1 +longdesc The package provides a language description file that enables +longdesc support of Galician either with babel or with polyglossia. +containersize 7192 +containerchecksum 1c8aef52e0eaba8a55e6c0bdaca4ef47012012a85d38ed268207227063d042f2f0b2cbafa3d1e4d71432e3ea6effd2a781ab0aefc536276de36a95d0dc834b68 +doccontainersize 444432 +doccontainerchecksum a60ed8ffc43cb56aeafab8d09e8235eea9482ff8cdabc00da68938d980b20a7067da3286fa8ce19eddf9276b51e78dd944545cb8bb891bc13c31cffbab39544e +docfiles size=112 + RELOC/doc/generic/babel-galician/galician.pdf details="Package documentation" + RELOC/doc/generic/babel-galician/glbst.tex + RELOC/doc/generic/babel-galician/glromidx.tex +srccontainersize 26212 +srccontainerchecksum aef01bd2587b5a452874e67c52bb4adbd89c5203bbe9a338e85449831434cbcd58415afd3d31d6e315eb91dff955750753bdc9cd38e87e3aded5350a350df547 +srcfiles size=22 + RELOC/source/generic/babel-galician/galician.dtx + RELOC/source/generic/babel-galician/galician.ins +runfiles size=7 + RELOC/tex/generic/babel-galician/galician.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/galician +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 4.3c + +name babel-georgian +category Package +revision 45864 +shortdesc Babel support for Georgian +relocated 1 +longdesc The package provides support for use of Babel in documents +longdesc written in Georgian. The package is adapted for use both under +longdesc 'traditional' TeX engines, and under XeTeX and LuaTeX. +containersize 5028 +containerchecksum 07adf0a76fb15951db5dd01a0a1595aa9c8119d6e39e94eb36ac340932f763975abe284d738a52a1fa2a938a14f87fe7ede10758529c3f68c6d573dbccbcbc82 +doccontainersize 424 +doccontainerchecksum b2f45e828e32fef5e4ac130230050f035ec69607c97562a835ef2157ccc6673d4ae452624d2d1aded3552eb71d85d971a7e35d9774ad7b6e4ca7a8e0a71e48c1 +docfiles size=1 + RELOC/doc/generic/babel-georgian/README +runfiles size=6 + RELOC/tex/generic/babel-georgian/georgian.ldf + RELOC/tex/generic/babel-georgian/georgian.sty + RELOC/tex/generic/babel-georgian/georgiancaps.tex +catalogue-contact-home http://tex.tsu.ge +catalogue-ctan /macros/latex/contrib/babel-contrib/georgian +catalogue-license lppl1.3 +catalogue-topics georgian multilingual-addon +catalogue-version 2.2 + +name babel-german +category Package +revision 57978 +shortdesc Babel support for documents written in German +relocated 1 +longdesc This bundle is an extension to the babel package for +longdesc multilingual typesetting. It provides all the necessary macros, +longdesc definitions and settings to typeset German documents. The +longdesc bundle includes support for the traditional and reformed German +longdesc orthography as well as for the Austrian and Swiss varieties of +longdesc German. +containersize 3964 +containerchecksum 0d7ee8aaf0b8df0040e3c7b6e41b999e21d79502dc084ef657392e2e4704101b49ef7b99d5b8059a6f271683c01a09ab19db3ec2a9c923a8bcdd14db819f6107 +doccontainersize 497832 +doccontainerchecksum 59dbbb949ee4390c9891b0b2c44b93cf81c9b5da1be6c75ec6aa3b38a657aee6e28e7d02d0e188fa37c15647f40e553f13fd0f18845f4a8a3dfd9eb169886fb2 +docfiles size=189 + RELOC/doc/generic/babel-german/README details="Readme" + RELOC/doc/generic/babel-german/germanb.pdf details="Package documentation (traditional orthography)" + RELOC/doc/generic/babel-german/ngermanb.pdf details="Package documentation (new orthography)" +srccontainersize 14968 +srccontainerchecksum 64880138c89fae929df6d7aea149ccfa79c7ec558ca307cd28218d891ae6f72e9042358ab0038b1850aa3d30b2d7d80eff2a60328ba37699f68c3d00cd341611 +srcfiles size=22 + RELOC/source/generic/babel-german/german.ins + RELOC/source/generic/babel-german/germanb.dtx + RELOC/source/generic/babel-german/ngermanb.dtx +runfiles size=11 + RELOC/tex/generic/babel-german/austrian.ldf + RELOC/tex/generic/babel-german/german.ldf + RELOC/tex/generic/babel-german/germanb.ldf + RELOC/tex/generic/babel-german/naustrian.ldf + RELOC/tex/generic/babel-german/ngerman.ldf + RELOC/tex/generic/babel-german/ngermanb.ldf + RELOC/tex/generic/babel-german/nswissgerman.ldf + 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-license lppl1.3 +catalogue-topics german multilingual-addon +catalogue-version 2.13 + +name babel-greek +category Package +revision 56904 +shortdesc Babel support for documents written in Greek +relocated 1 +longdesc The file provides modes for monotonic (single-diacritic) and +longdesc polytonic (multiple-diacritic) modes of writing. Provision is +longdesc made for Greek function names in mathematics, and for +longdesc classical-era symbols. +containersize 5996 +containerchecksum 6b0ab839f2e8a9562c8292fe8f7661a73148754ed816088be25d06537a58ba95ac34d9440bc4f3f35c3b720188b261b432887f9867ff94b51261076f9d8e0160 +doccontainersize 1190328 +doccontainerchecksum 965dc1293a90ed4f7c777d32887186febf28f7a174a00af26c19720493605291d1b17a5790b5541547f9265d8a1a3d102d9a4fae79aba43780c384b7385e06b3 +docfiles size=325 + RELOC/doc/generic/babel-greek/README details="Readme" + RELOC/doc/generic/babel-greek/README.html details="Readme (HTML)" + RELOC/doc/generic/babel-greek/athnum.pdf + RELOC/doc/generic/babel-greek/babel-greek.pdf details="Documentation" + RELOC/doc/generic/babel-greek/grmath.pdf details="Maths documentation" + RELOC/doc/generic/babel-greek/test-8bit-greek.pdf + RELOC/doc/generic/babel-greek/test-8bit-greek.tex + RELOC/doc/generic/babel-greek/test-greek-lgr.pdf + RELOC/doc/generic/babel-greek/test-greek-tu.pdf + RELOC/doc/generic/babel-greek/test-greek.tex + RELOC/doc/generic/babel-greek/test-greeknumeral.pdf + RELOC/doc/generic/babel-greek/test-greeknumeral.tex + RELOC/doc/generic/babel-greek/test-tu-lgr.pdf + RELOC/doc/generic/babel-greek/test-tu-lgr.tex + RELOC/doc/generic/babel-greek/usage.pdf details="Usage documentation" + RELOC/doc/generic/babel-greek/usage.tex +srccontainersize 21012 +srccontainerchecksum 907493b19b16ed7a0c6377864a4b8266732065e2330c746d118dfec14a6a4976115eb48bd6b4286ce48cf6823e30fd3c9f06551aba2f52ef4a8ccfaf3f800810 +srcfiles size=22 + RELOC/source/generic/babel-greek/Makefile + RELOC/source/generic/babel-greek/athnum.dtx + RELOC/source/generic/babel-greek/babel-greek.dtx + RELOC/source/generic/babel-greek/babel-greek.ins + RELOC/source/generic/babel-greek/grmath.dtx +runfiles size=8 + RELOC/tex/generic/babel-greek/athnum.sty + RELOC/tex/generic/babel-greek/greek.ldf + RELOC/tex/generic/babel-greek/grmath.sty +catalogue-ctan /macros/latex/contrib/babel-contrib/greek +catalogue-license lppl1.3 +catalogue-topics greek multilingual-addon +catalogue-version 1.10 + +name babel-hebrew +category Package +revision 30273 +shortdesc Babel support for Hebrew +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Hebrew in babel. Macros to control the use of text direction +longdesc control of TeX--XeT and e-TeX are provided (and may be used +longdesc elsewhere). Some shortcuts are defined, as well as translations +longdesc to Hebrew of standard "LaTeX names". +containersize 17516 +containerchecksum 4690fc4288ba1d2142fcda24153e741a539ddc4a52d3e502c1c349feb19609c7cef1427751af24b93df191f12d2b7cf2d11423052193df01d848987e66744dab +doccontainersize 718868 +doccontainerchecksum cd4b52bb2d207cb2bcd327e2351bf30d18921c7c4f8a8fa79ce0bf8864d6f6a34e2272fd416828c772abb2df5612b4a78f73f54157b6d69b011c008495b93cd5 +docfiles size=197 + RELOC/doc/generic/babel-hebrew/00readme.heb + RELOC/doc/generic/babel-hebrew/heb209.pdf details="Package documentation (LaTeX 2.09 compatibility style files)" + RELOC/doc/generic/babel-hebrew/hebinp.pdf details="Package documentation (Hebrew input encodings for use with LaTeX 2)" + RELOC/doc/generic/babel-hebrew/hebrew.pdf details="Package documentation" +srccontainersize 42724 +srccontainerchecksum 6d380ba803ecb1f6f268ebd2f80da0eca87c7f25d3374ba0a0432f9de6d39632613fb49e108ac9b7d97438b589dc71c37b47927b7387bad8809175355aeabbc6 +srcfiles size=52 + RELOC/source/generic/babel-hebrew/heb209.dtx + RELOC/source/generic/babel-hebrew/hebinp.dtx + RELOC/source/generic/babel-hebrew/hebrew.dtx + RELOC/source/generic/babel-hebrew/hebrew.fdd + RELOC/source/generic/babel-hebrew/hebrew.ins +runfiles size=53 + RELOC/tex/generic/babel-hebrew/8859-8.def + RELOC/tex/generic/babel-hebrew/cp1255.def + RELOC/tex/generic/babel-hebrew/cp862.def + RELOC/tex/generic/babel-hebrew/he8OmegaHebrew.fd + RELOC/tex/generic/babel-hebrew/he8aharoni.fd + RELOC/tex/generic/babel-hebrew/he8cmr.fd + RELOC/tex/generic/babel-hebrew/he8cmss.fd + RELOC/tex/generic/babel-hebrew/he8cmtt.fd + RELOC/tex/generic/babel-hebrew/he8david.fd + RELOC/tex/generic/babel-hebrew/he8drugulin.fd + RELOC/tex/generic/babel-hebrew/he8enc.def + RELOC/tex/generic/babel-hebrew/he8frankruehl.fd + RELOC/tex/generic/babel-hebrew/he8miriam.fd + RELOC/tex/generic/babel-hebrew/he8nachlieli.fd + RELOC/tex/generic/babel-hebrew/he8yad.fd + RELOC/tex/generic/babel-hebrew/hebcal.sty + RELOC/tex/generic/babel-hebrew/hebfont.sty + RELOC/tex/generic/babel-hebrew/hebrew.ldf + RELOC/tex/generic/babel-hebrew/hebrew_newcode.sty + RELOC/tex/generic/babel-hebrew/hebrew_oldcode.sty + RELOC/tex/generic/babel-hebrew/hebrew_p.sty + RELOC/tex/generic/babel-hebrew/lheclas.fd + RELOC/tex/generic/babel-hebrew/lhecmr.fd + RELOC/tex/generic/babel-hebrew/lhecmss.fd + RELOC/tex/generic/babel-hebrew/lhecmtt.fd + RELOC/tex/generic/babel-hebrew/lhecrml.fd + RELOC/tex/generic/babel-hebrew/lheenc.def + RELOC/tex/generic/babel-hebrew/lhefr.fd + RELOC/tex/generic/babel-hebrew/lheredis.fd + RELOC/tex/generic/babel-hebrew/lheshold.fd + RELOC/tex/generic/babel-hebrew/lheshscr.fd + RELOC/tex/generic/babel-hebrew/lheshstk.fd + RELOC/tex/generic/babel-hebrew/rlbabel.def + RELOC/tex/generic/babel-hebrew/si960.def +catalogue-ctan /macros/latex/contrib/babel-contrib/hebrew +catalogue-license lppl1.3 +catalogue-topics hebrew +catalogue-version 2.3h + +name babel-hungarian +category Package +revision 49701 +shortdesc Babel support for Hungarian (Magyar) +relocated 1 +longdesc The package provides a language definition file that enables +longdesc support of Magyar (Hungarian) with babel. +containersize 55016 +containerchecksum 5b05fe625155df3a958eaf44dc55190fff60ef356d40e681870ff27adbeaef1dd2b27402d9058d27dec665dbe9127d43a2e07ad02ef5a546c2e77479453678b2 +doccontainersize 728 +doccontainerchecksum 696cff23cc5e2c32034729385c251c8dbeb5f78d11c0f8a0515af480f7a9b5fc5fa6c07d216c5078d5f1c4e71cabe093f023f294dbebb6b203337da9423a438c +docfiles size=1 + RELOC/doc/generic/babel-hungarian/README details="Notes about distribution" +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-license lppl +catalogue-topics multilingual-addon hungarian +catalogue-version 1.5c + +name babel-icelandic +category Package +revision 51551 +shortdesc Babel support for Icelandic +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Icelandic in babel. Some shortcuts are defined, as well as +longdesc translations to Icelandic of standard "LaTeX names". +containersize 4120 +containerchecksum 46aca093e061948272d2a54ff9f95b94b101582f0ec9d795668983c37b518be3c3d76d2c8e6901126d3dd7342db003589bacce9a40cfd573263a953bbedbfc48 +doccontainersize 228724 +doccontainerchecksum bc859f01f52ad51da7df9d458e507b62eb69e40e1dc39362ff32ea8ee8890acce8ce49120fce967f321c9d674f4334c62c9bf2b3f8017288b724ecfe3943d667 +docfiles size=57 + RELOC/doc/generic/babel-icelandic/README.md details="Readme" + RELOC/doc/generic/babel-icelandic/icelandic.pdf details="Package documentation" +srccontainersize 10920 +srccontainerchecksum cff6e1ef260bd61b6b098b449fc5dcfe5c708a36d9e5df679d21e5d84a62fbe298fd6581d9c6a79829df55809b2b12f6bdefe4367df05ac50830fa01d8c73dff +srcfiles size=10 + RELOC/source/generic/babel-icelandic/icelandic.dtx + RELOC/source/generic/babel-icelandic/icelandic.ins +runfiles size=3 + RELOC/tex/generic/babel-icelandic/icelandic.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/icelandic +catalogue-license lppl1.3 +catalogue-topics icelandic +catalogue-version 1.3 + +name babel-indonesian +category Package +revision 43235 +shortdesc Support for Indonesian within babel +relocated 1 +longdesc This is the babel style for Indonesian. +containersize 2500 +containerchecksum 9e42cb144d53dc0a076afffdbcd2adb7bb55cbc58feb77916e02beebfd1833fa308a0c78d0c26e1d187386b60572381c881da083c73ac8fcc651e77af17e2093 +doccontainersize 114176 +doccontainerchecksum c4f86b646d67ce4b29e96771ea5657e352ee7633c344f24552a2fde4c387aea41f9694d77114a1454b106646d12d30b277fc9de589d3d4b666b00208978f5bb9 +docfiles size=29 + RELOC/doc/generic/babel-indonesian/README + RELOC/doc/generic/babel-indonesian/indonesian.pdf details="Documentation for Bahasa indonesia version" +srccontainersize 4932 +srccontainerchecksum 30a1b987fee18a002316bb51e3497d22696e83ed48cb4a6e40da2f82876cd2ffc5b4ab95a0c1cef8a62f3d0a610401bf6552d5080dad3a9d0c45d4fca53dfe7b +srcfiles size=5 + RELOC/source/generic/babel-indonesian/indonesian.dtx + RELOC/source/generic/babel-indonesian/indonesian.ins +runfiles size=5 + RELOC/tex/generic/babel-indonesian/bahasa.ldf + RELOC/tex/generic/babel-indonesian/bahasai.ldf + RELOC/tex/generic/babel-indonesian/indon.ldf + RELOC/tex/generic/babel-indonesian/indonesian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/indonesian +catalogue-license lppl1.3 +catalogue-topics bahasa-indonesia+malaysia multilingual +catalogue-version 1.0m + +name babel-interlingua +category Package +revision 30276 +shortdesc Babel support for Interlingua +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Interlingua in babel. Translations to Interlingua of +longdesc standard "LaTeX names" (no shortcuts are provided). Interlingua +longdesc itself is an auxiliary language, built from the common +longdesc vocabulary of Spanish/Portuguese, English, Italian and French, +longdesc with some normalisation of spelling. +containersize 2256 +containerchecksum e562cdb5b7cc35d14f4696cd3b85c6578a4daaf7899bf684026e50ade2113ee2314405756dd5f6ab91b6faea4da59a3546e30a18ba77037eab581ae3c98b044d +doccontainersize 109964 +doccontainerchecksum f2f86fcb4a132a9c1f5c65007c8f1662a8498a53f265cc778ad3ba33120a97317aac890c1ff72cc6b94727d215937352ae268cf51344053bec6e0ee5687d0f69 +docfiles size=27 + RELOC/doc/generic/babel-interlingua/interlingua.pdf details="Package documentation" +srccontainersize 3992 +srccontainerchecksum 260b2b01ec451d2a37e00e83c79a09f359a3e4a7c34b1396892259442a3f9d2df683e74e6f14a5cbb9b797f8cdc24d0bfdc7f9c3dbe124eb901f43d393f5e1bf +srcfiles size=4 + RELOC/source/generic/babel-interlingua/interlingua.dtx + RELOC/source/generic/babel-interlingua/interlingua.ins +runfiles size=1 + RELOC/tex/generic/babel-interlingua/interlingua.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/interlingua +catalogue-license lppl1.3 +catalogue-topics interlingua +catalogue-version 1.6 + +name babel-irish +category Package +revision 30277 +shortdesc Babel support for Irish +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Irish Gaelic in babel. The principal content is translations +longdesc to Irish of standard "LaTeX names". (No shortcuts are defined.) +containersize 2276 +containerchecksum d9b1486da57f9685e136e14adc61773ec0b3a58ade370da8383476862ad798f26609329d445ee6dd0c6419c98342b720a6880939324d19f67e1528fe99ea3692 +doccontainersize 110184 +doccontainerchecksum f5dd55c6a527cf19eebe492271d1404be3c995cac004d41160522c6c71e4a4636c32547fd64b93beae41b60d8a48184ff9b498f82ca0453bc72b601de3d66cee +docfiles size=27 + RELOC/doc/generic/babel-irish/irish.pdf details="Package documentation" +srccontainersize 4252 +srccontainerchecksum df023dd1a4b04e022f46f7202b616e6329b4673084876c1afaadd41faf4414e908411deda1ab909246ea7e1922c46b0a70b5e3e3fbc6c4855e060d47e45ca21e +srcfiles size=4 + RELOC/source/generic/babel-irish/irish.dtx + RELOC/source/generic/babel-irish/irish.ins +runfiles size=1 + RELOC/tex/generic/babel-irish/irish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/irish +catalogue-license lppl1.3 +catalogue-topics irish-gaelic +catalogue-version 1.0h + +name babel-italian +category Package +revision 55232 +shortdesc Babel support for Italian text +relocated 1 +longdesc The package provides language definitions for use in babel. +containersize 3808 +containerchecksum 647a87e3e516f4723bd991b973417302c6f369438e6b76c5ef1d795bdc138f31516433af5b93471f0a2692ace29096d6cf8aa49edfadc2e48d1d40c4344dbfd0 +doccontainersize 446484 +doccontainerchecksum 109a27cbdd24d91166059ae7dc24c78175aecac477a13b06c148b21a8c6451b0a07fd7db55ed8a78e92c05c00d0f73a9fe59c0726f34136cdf7ca3af8bbf12b6 +docfiles size=110 + RELOC/doc/generic/babel-italian/README.txt details="Readme" + RELOC/doc/generic/babel-italian/italian.pdf details="Package documentation" +srccontainersize 22436 +srccontainerchecksum c9309c07a97625c3f9b1098b603015d339adf4f73218447ddb40c36c8430866b435678ce06b88b0f36f84e4ee5c971452d8f4caa283e1298d182fe8667255b74 +srcfiles size=19 + RELOC/source/generic/babel-italian/italian.dtx +runfiles size=3 + RELOC/tex/generic/babel-italian/italian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/italian +catalogue-license lppl1.3c +catalogue-topics italian multilingual-addon +catalogue-version 1.4.04 + +name babel-japanese +category Package +revision 57733 +shortdesc Babel support for Japanese +relocated 1 +longdesc This package provides a japanese option for the babel package. +longdesc It defines all the language definition macros in Japanese. +longdesc Currently this package works with pLaTeX, upLaTeX, XeLaTeX and +longdesc LuaLaTeX. +containersize 2428 +containerchecksum dae227c586eea1b56fc88937f8a99803994622c07cf54290ca1b5ef6cbfe53ade8aec7064820044284cfd70fb6ee2ba908bbb74dedb54bf3c2f0085815c7eb43 +doccontainersize 518004 +doccontainerchecksum cbcda3267222cbf5c38d8e7e8ea5440b94c3d7d0ca70b4f635b0751e824c690a4d495f0906b0d646de5f1ee08c74f72482020baf99d39ad0089002d5e523ccb5 +docfiles size=138 + RELOC/doc/generic/babel-japanese/README.md details="Readme" + RELOC/doc/generic/babel-japanese/babel-japanese-sample.pdf details="Example of use (Japanese)" language="ja" + RELOC/doc/generic/babel-japanese/babel-japanese-sample.tex + RELOC/doc/generic/babel-japanese/babel-japanese.pdf details="Package documentation (Japanese)" language="en,ja" + RELOC/doc/generic/babel-japanese/japanese.pdf details="User guide" + RELOC/doc/generic/babel-japanese/japanese.tex +srccontainersize 8192 +srccontainerchecksum 956aa7cc75bb2a007fbbf4ba4e7209251d3232f585976dc0002429372062e9c1933241bf05c34aefc481a82032594b922df3851d6f88bdbdfd7c181b9a44d6e8 +srcfiles size=8 + RELOC/source/generic/babel-japanese/Makefile + RELOC/source/generic/babel-japanese/babel-japanese.dtx + RELOC/source/generic/babel-japanese/babel-japanese.ins +runfiles size=2 + 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-license lppl1.3 +catalogue-topics japanese multilingual-addon + +name babel-kurmanji +category Package +revision 30279 +shortdesc Babel support for Kurmanji +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Kurmanji in babel. Kurmanji belongs to the family of Kurdish +longdesc languages. Some shortcuts are defined, as well as translations +longdesc to Kurmanji of standard "LaTeX names". Note that the package is +longdesc dealing with 'Northern' Kurdish, written using a Latin-based +longdesc alphabet. The arabxetex package offers support for Kurdish +longdesc written in Arabic script. +containersize 2928 +containerchecksum bbdd05e7106494f23892f3455ad224d3deb1881f5a73720e2c73e7401514fed324484416def64e2e8fd7c2416b521fb2d4527585d2302a220330925c296afecb +doccontainersize 124800 +doccontainerchecksum c31f7efd7415f3439635b293c9aad2cfc2632352534e579c0f8d3e74443fb7aa88a95e19735a7b65137d81899ad9d2ad8bbdb28c5da2ff05a2be9dbad552b0f8 +docfiles size=31 + RELOC/doc/generic/babel-kurmanji/kurmanji.pdf details="Package documentation" +srccontainersize 6140 +srccontainerchecksum 88f600cac9509695c36969ee2bb2041142dee729381a1ffa49489f32454e4c53b4d1795407436df9c31da040cc1d0c7e38077fc786e5cd6832ab9ccd14453d2c +srcfiles size=6 + RELOC/source/generic/babel-kurmanji/kurmanji.dtx + RELOC/source/generic/babel-kurmanji/kurmanji.ins +runfiles size=2 + RELOC/tex/generic/babel-kurmanji/kurmanji.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/kurmanji +catalogue-license lppl1.3 +catalogue-topics kurmanji kurdish multilingual-addon +catalogue-version 1.1 + +name babel-latin +category Package +revision 38173 +shortdesc Babel support for Latin +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Latin in babel. Translations to Latin (in both modern and +longdesc medieval spelling) of standard "LaTeX names", and some +longdesc shortcuts, are provided. Apart from the modern vs. medieval +longdesc setting, a further switch permits addition of prosodic marks. +containersize 2996 +containerchecksum 56ede1f441e96e3f17c165de65a7703c8e8897c17ef775fef1e30e1d2382eee0738ba91c97717694edc7e932ee0dbbfd1600d16ff86d6bbea1ccd5cfcec82ed2 +doccontainersize 156012 +doccontainerchecksum 6dc352b57346f0caaebc0832d12a9c1f13743e5cc39285b4d81edc23cd5f21692165040becf4ec12ca6d1acf6c19f1b2ab1da8d79e3e82ccc2dc865322bfaacb +docfiles size=39 + RELOC/doc/generic/babel-latin/latin.pdf details="Package documentation" +srccontainersize 13420 +srccontainerchecksum 9f04205ee8e5c18a0ec6e20fdd7ab0d89d4e1ea28d5c3ad819ca9d09358466215b4d0c2b18d77ba5cca604b3997814ce39b33fe7f438b5b554500b5f4edd783a +srcfiles size=11 + RELOC/source/generic/babel-latin/latin.dtx + RELOC/source/generic/babel-latin/latin.ins +runfiles size=2 + RELOC/tex/generic/babel-latin/latin.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/latin +catalogue-license lppl1 +catalogue-topics latin multilingual-addon +catalogue-version 3.5 + +name babel-latvian +category Package +revision 46681 +shortdesc Babel support for Latvian +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Latvian in babel. +containersize 4140 +containerchecksum 0e19f04d81195b77ae200946e5502fccfaedca5a6da8080a0e7351b684c7d1802a1d9d05794006561109dc8f9a0c04f45266e74068157caa9c470899cbec5230 +doccontainersize 267488 +doccontainerchecksum e7c4f93db73431708eb902af924672727a6dc6d1cc9d17ca92436cea51310a10538f32825c13144ac35ec8633fc146d1788492f9c6ecf7b11ed72893ab6393fb +docfiles size=67 + RELOC/doc/generic/babel-latvian/README.md details="Readme" + RELOC/doc/generic/babel-latvian/latvian.pdf details="Package documentation" +srccontainersize 6236 +srccontainerchecksum ce0c59467b4cf94857bd0713283f46aa5c64987f5a4c68536566b98693b93e61ead42049a2ca323eab3b2b9842623f1318f2c27ab4a28d3e4660b8edffd988c0 +srcfiles size=6 + RELOC/source/generic/babel-latvian/latvian.dtx + RELOC/source/generic/babel-latvian/latvian.ins +runfiles size=3 + RELOC/tex/generic/babel-latvian/latvian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/latvian +catalogue-license lppl1.3 +catalogue-topics latvian multilingual-addon +catalogue-version 2.0b + +name babel-macedonian +category Package +revision 39587 +shortdesc Babel module to support Macedonian Cyrillic +relocated 1 +longdesc The package provides support for Macedonian documents written +longdesc in Cyrillic, in babel. +containersize 4832 +containerchecksum c061ca1ec358e4d8df05e0adadd5d87695cf3b9f86cab52eaa0e08b1f5b1fedb66febe32107e74c1926fa4d697b056d7d3f119db525b90ff7e7bde30fd015508 +doccontainersize 207284 +doccontainerchecksum 7284141fbecedad06cfef78f50b4c13ebb3af76ced474c456a364c97943b51b9a233ecf6797e561ab0936ef7d082adc80daea0de4e961baab60e494bd72f7061 +docfiles size=52 + RELOC/doc/generic/babel-macedonian/README.md details="Readme" + RELOC/doc/generic/babel-macedonian/macedonian.pdf details="Package documentation" +srccontainersize 11544 +srccontainerchecksum c5866f925540742391981848fb5a76908863fba8a7c77da97b6e6bc634a8425c2d39459f789749cd1ccc4e7888e6d0f5b40d3d9a0a76611f4b1ff2db80866c72 +srcfiles size=11 + RELOC/source/generic/babel-macedonian/macedonian.dtx + RELOC/source/generic/babel-macedonian/macedonian.ins +runfiles size=4 + RELOC/tex/generic/babel-macedonian/macedonian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/macedonian +catalogue-license lppl1.3 +catalogue-topics macedonian multilingual-addon + +name babel-malay +category Package +revision 43234 +shortdesc Support for Malay within babel +relocated 1 +longdesc This is the babel style for Malay. +containersize 2516 +containerchecksum 6e2f95eb95a7ffe0b21789a65e74936139d92381867e507ce56bd8eb39b4061b177c10fed0a0226e9091b963370d3c001115473625910f03b699d5517350f2da +doccontainersize 114256 +doccontainerchecksum b06395639e743571870dee10e029e4622c55683d7a9d728fff381bcabe4bf694511230795c79da4080299938acf66d03cc55fd45cb8426b484e19e0fb0f73b10 +docfiles size=29 + RELOC/doc/generic/babel-malay/README + RELOC/doc/generic/babel-malay/malay.pdf details="Documentation for Bahasa Malaysia version" +srccontainersize 5056 +srccontainerchecksum 4e7e47a29802a7369f7bdcf29ac0fec13afd69f42c9b01060ffadb2cd8d1f1656f7f6ae8fe5ced67d9ce6438c26a07743a18bd38c561fbe8357e8ea3c685a5dc +srcfiles size=5 + RELOC/source/generic/babel-malay/malay.dtx + RELOC/source/generic/babel-malay/malay.ins +runfiles size=5 + RELOC/tex/generic/babel-malay/bahasam.ldf + RELOC/tex/generic/babel-malay/malay.ldf + RELOC/tex/generic/babel-malay/melayu.ldf + RELOC/tex/generic/babel-malay/meyalu.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/malay +catalogue-license lppl1.3 +catalogue-topics bahasa-indonesia+malaysia multilingual +catalogue-version 1.0m + +name babel-norsk +category Package +revision 30281 +shortdesc Babel support for Norwegian +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Norwegian in babel. Some shortcuts are defined, as well as +longdesc translations to Norsk of standard "LaTeX names". +containersize 2932 +containerchecksum a57f44910dea4a1b9fc94d2705e1627fd42ef21a35737067bbebf6c56f6e4e87031b40b41d68a4f90329aa38a468a87c8c91ca60e10af2d064f502ef9e60d3a0 +doccontainersize 142428 +doccontainerchecksum 646d8bcb3bb4b864fc9cab92a1ae264801222cc70eeae8db63be8ace926cc62918031726da9e758ebb4bc19797eea498af10437066612ff7dc3ca3c99bab4749 +docfiles size=35 + RELOC/doc/generic/babel-norsk/norsk.pdf details="Package documentation" +srccontainersize 6784 +srccontainerchecksum 4643e3a1f3612c9966da916949e51346c7cb595ee8a2b98d585ae12e51fbf2cf23e2817b5c21575d80feaeaf399d3e1f0db6fad4d228b2b5f9a25d51ac3a7941 +srcfiles size=7 + RELOC/source/generic/babel-norsk/norsk.dtx + RELOC/source/generic/babel-norsk/norsk.ins +runfiles size=2 + RELOC/tex/generic/babel-norsk/norsk.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/norsk +catalogue-license lppl1.3 +catalogue-topics norsk multilingual-addon +catalogue-version 2.0i + +name babel-occitan +category Package +revision 39608 +shortdesc Babel support for Occitan +relocated 1 +longdesc Occitan language description file with usage instructions. +containersize 2384 +containerchecksum f1f2f26b5466d10e995d76f7003c202650e3976b82b431d2bae768a582bc0c5662fc120739c49fcfd1226da3595c8a6b2e8c952a491718c45e69770c09d542a9 +doccontainersize 411824 +doccontainerchecksum 86433fa646eb6b2f7ee0ba54f1dafa73b81bd98012859c59408883cc76ec876720ef526cb2f526bd4a8385c0371f9bb01ae6d604661deabb4ec920172986adf0 +docfiles size=102 + RELOC/doc/generic/babel-occitan/README details="Readme" + RELOC/doc/generic/babel-occitan/occitan.pdf details="Package documentation" +srccontainersize 10520 +srccontainerchecksum 95bd15481ed6d20f1b9b71fad9661e5a12e4f29cda61dc8910a1601fb0f97cb4797d5ecf8137c9465a623288dc05e58c84740ee5b663b1f30f1c984d4dde9b03 +srcfiles size=8 + RELOC/source/generic/babel-occitan/occitan.dtx +runfiles size=2 + RELOC/tex/generic/babel-occitan/occitan.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/occitan +catalogue-license lppl1.3 +catalogue-topics multilingual-addon occitan +catalogue-version 0.2 + +name babel-piedmontese +category Package +revision 30282 +shortdesc Babel support for Piedmontese +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Piedmontese in babel. Some shortcuts are defined, as well as +longdesc translations to Piedmontese of standard "LaTeX names". +containersize 1804 +containerchecksum 72fe6338ef6f172a23790402a632881906689117e7227b6f2f2fb6129fca9a7d44c42ddd48e8286252f3b5fce9dc34439594882c1f80f33557ef5ef70afe4993 +doccontainersize 106224 +doccontainerchecksum a2fa0cc72a205fcc25c2baeb7717a573bf8f2db5438e49c9de8a90e8da37d4f267ff30f08f8bb79f08756f5d227acddba8c069c8a5c257adf95c3afac271927f +docfiles size=26 + RELOC/doc/generic/babel-piedmontese/piedmontese.pdf details="Package documentation" +srccontainersize 4044 +srccontainerchecksum 6020ade081108365e4b23d9b3c9ef789e95764748d06a647a071e8ad77c945593a680c7669c57e989e71104a8bdfbf857eec9599327560e4453e0a81b9d309e8 +srcfiles size=3 + RELOC/source/generic/babel-piedmontese/piedmontese.dtx +runfiles size=1 + RELOC/tex/generic/babel-piedmontese/piedmontese.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/piedmontese +catalogue-license lppl1.3 +catalogue-topics piedmontese multilingual-addon +catalogue-version 1.0 + +name babel-polish +category Package +revision 30283 +shortdesc Babel support for Polish +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Polish in babel. Some shortcuts are defined, as well as +longdesc translations to Polish of standard "LaTeX names". +containersize 3360 +containerchecksum cfd5f27f92e75883572adce926cbcfa9d9248367979c3b3411e6ca1c2d4bf441d2fa790dfff94f0f6001c68f354628334aa0a920ee68900398879c978cf962e4 +doccontainersize 134416 +doccontainerchecksum 6f12e4c792eda6ec33db820bf3e0c9a0fbec8f07adf413c4c98d40624cbf8d46588e16271e459eedcb37ceb2f89f13c3a9dab89122172fe2b8ee9330ab6109fe +docfiles size=33 + RELOC/doc/generic/babel-polish/polish.pdf details="Package documentation" +srccontainersize 7592 +srccontainerchecksum 19d6cd158e48666b843628d0325d0e52ebbe137d28686d8b31199e9bad1c4d3393487aa300179688af5b9f7307eea8376f8ba82ed2209efcf39abef094787d82 +srcfiles size=8 + RELOC/source/generic/babel-polish/polish.dtx + RELOC/source/generic/babel-polish/polish.ins +runfiles size=3 + RELOC/tex/generic/babel-polish/polish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/polish +catalogue-license lppl1.3 +catalogue-topics polish +catalogue-version 1.2l + +name babel-portuges +category Package +revision 57644 +shortdesc Babel support for Portuges +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Portuguese and Brazilian Portuguese in babel. Some shortcuts +longdesc are defined, as well as translations to Portuguese of standard +longdesc "LaTeX names". +containersize 2828 +containerchecksum d415a75ca4504cb219ac55b7a03b9b00667747fa39dfd4650e2f93ef7919cb79c701e52d947823016151b340a66f52550a0903a861540d0d6474e4f4ecda6adf +doccontainersize 154112 +doccontainerchecksum 3b3c40f55953d3ba46ee96ab05789a86a42fb3e806b06d9938a57f2e5d210b2f38745273cb71e224a7c251e2d6ce96c4d17bdb089a4d9180cbabd5bd8716259d +docfiles size=39 + RELOC/doc/generic/babel-portuges/README.md details="Readme" + RELOC/doc/generic/babel-portuges/portuges.pdf details="Package documentation" +srccontainersize 6688 +srccontainerchecksum fc1b7c2c116e23612475dfb657dc167bec59bd81bb44d925faf6a5ff4103459f2e34de49aab8422eda69f263033923b7a4ae3f102ab9dab0fd9e35fbc76c10bc +srcfiles size=7 + RELOC/source/generic/babel-portuges/portuges.dtx + RELOC/source/generic/babel-portuges/portuges.ins +runfiles size=8 + RELOC/tex/generic/babel-portuges/brazil.ldf + RELOC/tex/generic/babel-portuges/brazilian.ldf + RELOC/tex/generic/babel-portuges/portuges.ldf + RELOC/tex/generic/babel-portuges/portuguese.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/portuges +catalogue-license lppl1.3 +catalogue-topics multilingual-addon portuguese portuguese-br +catalogue-version 1.2s + +name babel-romanian +category Package +revision 58776 +shortdesc Babel support for Romanian +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Romanian in babel. Translations to Romanian of standard +longdesc "LaTeX names" are provided. +containersize 2124 +containerchecksum ca6318ca8453dae2286b305766c6ced299f18f390c0d0f44e77ddf8eb4b05c31c7a2b01ed52e271f68acd6b127650b370d15ea9bcb3b591fd01e5d3a50b17db5 +doccontainersize 113056 +doccontainerchecksum 73ff361e7e03499427529824b83ea584a5ca190aae3d1ef9a5f4a5adf52cc8ab02f5652c92c1464a702f581e29626fa9cd14d4ee84f6cdde69b38af9d10b20ee +docfiles size=29 + RELOC/doc/generic/babel-romanian/README.md + RELOC/doc/generic/babel-romanian/romanian.pdf details="Package documentation" +srccontainersize 4308 +srccontainerchecksum 0e4aef9bf20e6602dd946e2ad2856c7ee7849b492d4b66334450b450faed146eef83d2b7f13506eac6f34507bfec4ae735ae9845d3a21c36d98105bb353166c8 +srcfiles size=5 + RELOC/source/generic/babel-romanian/romanian.dtx + RELOC/source/generic/babel-romanian/romanian.ins +runfiles size=1 + RELOC/tex/generic/babel-romanian/romanian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/romanian +catalogue-license lppl1.3 +catalogue-topics romanian +catalogue-version 1.2m + +name babel-romansh +category Package +revision 30286 +shortdesc Babel/Polyglossia support for the Romansh language +relocated 1 +longdesc The package provides a language description file that enables +longdesc support of Romansh either with babel or with polyglossia. +containersize 1132 +containerchecksum db28e78ce4e028ead2f31fc84d0e7d8997a18dff3bf6aed0301b79bfc7bdc52a8741f9975766d36ca9ca2af9908e7e0bda9e454abf268a1eebf4693c30f5a5e8 +doccontainersize 111840 +doccontainerchecksum 42f9b63d92e522b596839d10c1b90ee9052cac86cdd54ac408063c24456b2a7b5adbfc8208a0a388fcffbb19b98ae0810f7da9d6bc517ddeeab78c8389bdd5a7 +docfiles size=28 + RELOC/doc/generic/babel-romansh/romansh.pdf details="Package documentation" +srccontainersize 3200 +srccontainerchecksum e26e9ec260d7f01550799f90c6bb76c0c29cd200896c4634085627599f5c3d7438159ea9f72df416e334200a7e1aa3f063dfe9bac5817f55c8f6cc83fe906a63 +srcfiles size=2 + RELOC/source/generic/babel-romansh/romansh.dtx +runfiles size=1 + RELOC/tex/generic/babel-romansh/romansh.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/romansh +catalogue-license lppl1.3 +catalogue-topics multilingual-addon + +name babel-russian +category Package +revision 57376 +shortdesc Russian language module for Babel +relocated 1 +longdesc The package provides support for use of Babel in documents +longdesc written in Russian (in both "traditional" and modern forms). +longdesc The support is adapted for use both under 'traditional' TeX +longdesc engines, and under XeTeX and LuaTeX. +containersize 6352 +containerchecksum 5acec3460294e71e6def384a7863a849e8a5d431dde49c77a4a7803af5373b56fcd376f6e73b237dd230728ab5b536f903b6a1bb19fc478dd5e742293a6e6ca8 +doccontainersize 137608 +doccontainerchecksum 387919d8bc226b00492f9924486a2591d15083a5a8e2293889f6532ef28fdd6409e2a777e728bee7f7b9796a304f440d8cc5fca246588d2b3ef0c84c79b701ce +docfiles size=37 + RELOC/doc/generic/babel-russian/README.md details="Readme" + RELOC/doc/generic/babel-russian/russianb.pdf details="Package documentation" +srccontainersize 26068 +srccontainerchecksum 71ca4e9bef2fe88c8dc41def4facd4c33145692cc0ac2cf05eb1d455ea83bd93b3cd29907772a5ce84168986db0fde8f5748622a4dc9b6857682c4c0aaf04f34 +srcfiles size=26 + RELOC/source/generic/babel-russian/russianb.dtx + RELOC/source/generic/babel-russian/russianb.ins +runfiles size=7 + RELOC/tex/generic/babel-russian/russianb.ldf +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-license lppl1.3c +catalogue-topics multilingual-addon russian +catalogue-version 1.3m + +name babel-samin +category Package +revision 30288 +shortdesc Babel support for Samin +relocated 1 +longdesc The package provides the language definition file for support +longdesc of North Sami in babel. (Several Sami dialects/languages are +longdesc spoken in Finland, Norway, Sweden and on the Kola Peninsula of +longdesc Russia). Not all use the same alphabet, and no attempt is made +longdesc to support any other than North Sami here. Some shortcuts are +longdesc defined, as well as translations to Norsk of standard "LaTeX +longdesc names". +containersize 2324 +containerchecksum 8a9e832e988da76ca26d87ab54438048d3d76cf02027ac9120d1277096d2495ece671607d32182cc5f9a61032b1ec33695f6592796680aaba0b65c142aa8a43a +doccontainersize 125092 +doccontainerchecksum a8d43e73b4ab86378c5e3d2b402298580dfaf19afcce509ffa8ac747d68627c21b58020dd823528073240e1a28a2178157f9752d587286a0168fc3047cacd0cd +docfiles size=31 + RELOC/doc/generic/babel-samin/samin.pdf details="Package documentation" +srccontainersize 4384 +srccontainerchecksum 2e0fe9724a55daefdc3196fc2934d3551b4e738be4d6940a25a091c173f220f2853b077e5534ac20f868954e360e547fbc7d622507d227b8cb0bf7e074e57f48 +srcfiles size=4 + RELOC/source/generic/babel-samin/samin.dtx + RELOC/source/generic/babel-samin/samin.ins +runfiles size=1 + RELOC/tex/generic/babel-samin/samin.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/samin +catalogue-license lppl1.3 +catalogue-topics samin +catalogue-version 1.0c + +name babel-scottish +category Package +revision 30289 +shortdesc Babel support for Scottish Gaelic +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Gaidhlig (Scottish Gaelic) in babel. Some shortcuts are +longdesc defined, as well as translations of standard "LaTeX names". +containersize 2260 +containerchecksum a2c708d9e116933fd00619fa8d89e30aecccbfe162c96eac22055bc442276863e8957481787d94a75507c2662ff4fcd13760b454d12b811dc4659205cdf5825b +doccontainersize 113832 +doccontainerchecksum b32687935329933a733d239a58d7cbb7c4721c4fe37c703891547c2e6e82503235a0420890a9f025cb81a5c86148bd5ac2301da20d538781fa6f2831939c8009 +docfiles size=28 + RELOC/doc/generic/babel-scottish/scottish.pdf details="Package documentation" +srccontainersize 4100 +srccontainerchecksum 8ec0b8a65d433f978db671a344ff22263929c96b742ab7c11c0b47eb2e2f2d652064fefb4a19cc3f91a95cf0abe3450574a3381917fbd239be1bc89d002f99e2 +srcfiles size=4 + RELOC/source/generic/babel-scottish/scottish.dtx + RELOC/source/generic/babel-scottish/scottish.ins +runfiles size=1 + RELOC/tex/generic/babel-scottish/scottish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/scottish +catalogue-license lppl1.3 +catalogue-topics scottish multilingual-addon +catalogue-version 1.0g + +name babel-serbian +category Package +revision 58836 +shortdesc Babel/Polyglossia support for Serbian +relocated 1 +longdesc The package provides support for Serbian documents written in +longdesc Latin, in babel. +containersize 3300 +containerchecksum d754a40fa68732f70582b6ca548f4ce8ba43af39ed299dba4a4cad5b10afbacdfea2bd79d332ab29a2a0a81422d6784fa5beb57e5a5a90c6a29c88407c8e008b +doccontainersize 244692 +doccontainerchecksum 371cbe277b92b229816dadfc417137269a06cc49a0c7db3eb4e50cc21be01afe215bd2f378df89752600c8864c95126950ff42b0a3abc85064a4cdfe8b788352 +docfiles size=64 + RELOC/doc/generic/babel-serbian/README.md details="Readme" + RELOC/doc/generic/babel-serbian/serbian.pdf details="Package documentation" +srccontainersize 7316 +srccontainerchecksum 2f96e458d6dc3770bac7319d7ddc5a7105a3809b5a85523c1465da7a07443c5c61fda4034485202f1f57db5251de72cea1e32e58303552ceeb8e2ef3dfacd337 +srcfiles size=7 + RELOC/source/generic/babel-serbian/serbian.dtx + RELOC/source/generic/babel-serbian/serbian.ins +runfiles size=3 + RELOC/tex/generic/babel-serbian/serbian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/serbian +catalogue-license lppl1.3 +catalogue-topics multilingual-addon serbian +catalogue-version 2.1 + +name babel-serbianc +category Package +revision 58816 +shortdesc Babel module to support Serbian Cyrillic +relocated 1 +longdesc The package provides support for Serbian documents written in +longdesc Cyrillic, in babel. +containersize 4228 +containerchecksum d0c1abd87fc2d8284bd3369398b3bd5d22d8bd6453aa315c4100fbcb88e3a7166e639c31876677fb656a8123049324a87cc9a68a227ac771951a3249fe0d68dd +doccontainersize 282156 +doccontainerchecksum e025cd674a8fa6c9c14a311c8132c98db6e84ebb2391171f8441683fc3ae1eddc0a3905d73ea48231ea9eb0eccacf168acf48413d60456fc8a30b81d451f88b2 +docfiles size=74 + RELOC/doc/generic/babel-serbianc/README.md details="Readme" + RELOC/doc/generic/babel-serbianc/serbianc.pdf details="Package documentation" +srccontainersize 9692 +srccontainerchecksum 470d88336301b2a95beb6f854924972be2c54067d02307629b635288c64baf542404c17833d60782a2a2c4e3a832766bef1f35602567a5942e541a034d0e6c21 +srcfiles size=10 + RELOC/source/generic/babel-serbianc/serbianc.dtx + RELOC/source/generic/babel-serbianc/serbianc.ins +runfiles size=4 + RELOC/tex/generic/babel-serbianc/serbianc.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/serbianc +catalogue-license lppl1.3 +catalogue-topics serbian multilingual-addon +catalogue-version 3.1 + +name babel-slovak +category Package +revision 30292 +shortdesc Babel support for typesetting Slovak +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Slovak in babel, including Slovak variants of LaTeX +longdesc built-in-names. Shortcuts are also defined. +containersize 5432 +containerchecksum b14b98d2cb66a3f8f5d8a313d9208a700d1c3664a5bd23f5baf0d9aa2e3acf3891a0536871988e7579020570999ea05a9dcd60a404cd6670e3c1cf8110d9094e +doccontainersize 195272 +doccontainerchecksum da1d663125b913e3480ad147ac1f5c1befa00110e71bbd2d42384db03fe0f0db3133b49e26d1a336b49c10018990763d42ef49b64440c9138d9d938057ac90e0 +docfiles size=48 + RELOC/doc/generic/babel-slovak/slovak.pdf details="Package documentation" +srccontainersize 13924 +srccontainerchecksum 1668ed3f373e58ee9a507637ed4c17638fc429a30ad6087c7f153f8fa23103c0a93c0c0beec73380d41925ef1ebf25ac214f1afc95793edad65545256e6ce5d8 +srcfiles size=14 + RELOC/source/generic/babel-slovak/slovak.dtx + RELOC/source/generic/babel-slovak/slovak.ins +runfiles size=5 + RELOC/tex/generic/babel-slovak/slovak.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/slovak +catalogue-license lppl1.3 +catalogue-topics slovak multilingual-addon +catalogue-version 3.1a + +name babel-slovenian +category Package +revision 57666 +shortdesc Babel support for typesetting Slovenian +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Slovenian in babel. Several shortcuts are defined, as well +longdesc as translations to Slovenian of standard "LaTeX names". +containersize 2412 +containerchecksum 159e3fd820c39f64897dd26ab589cfb77a9d254cc75a0b1988d164cb9c989bc55ff2320d5d21b698928292a92ea6bd85b9a6cc489270ff13c2c13842d84b4c6a +doccontainersize 136132 +doccontainerchecksum 8df52574e61776f1d83301caad0f0a9e2042c88048034c6bcea23c4e08155fd1166de4c76584e3d462c5b1f914fcd38fd1eceb740a54e50dc2758ee892778098 +docfiles size=35 + RELOC/doc/generic/babel-slovenian/README.md + RELOC/doc/generic/babel-slovenian/slovene.pdf details="Package documentation" +srccontainersize 5412 +srccontainerchecksum 3b630ef8368ba89c235930e9815350bc83331c82230bec549f86374e243c28bb0bb6615f55588245551add88d16284e90c6339ea548fc52b1236bd654b2a5d98 +srcfiles size=5 + RELOC/source/generic/babel-slovenian/slovene.dtx + RELOC/source/generic/babel-slovenian/slovene.ins +runfiles size=2 + RELOC/tex/generic/babel-slovenian/slovene.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/slovenian +catalogue-license lppl1.3 +catalogue-topics slovenian multilingual-addon +catalogue-version 1.2n + +name babel-sorbian +category Package +revision 57646 +shortdesc Babel support for Upper and Lower Sorbian +relocated 1 +longdesc The package provides language definitions file for support of +longdesc both Upper and Lower Sorbian, in babel. Some shortcuts are +longdesc defined, as well as translations to the relevant language of +longdesc standard "LaTeX names". +containersize 3156 +containerchecksum a19f913f590ea66b411a2215ac555590b3ac9f23480096236ccf9c84714bc7b64c0649c1bbeef36bef4f1e56b0e16f3d2abf6c929992fc4accd708ecd6f54681 +doccontainersize 210456 +doccontainerchecksum 36c648ef7a2671bf06511d56fef32a7dad13ad176cf5689774807291b5908a23724c7d26a18d5a21d9d9cb5d9ae9864f321e8703e8ea55cb65cc424e79747bc9 +docfiles size=69 + RELOC/doc/generic/babel-sorbian/README.md details="Readme" + RELOC/doc/generic/babel-sorbian/lsorbian.pdf details="Package documentation (Lower Sorbian)" + RELOC/doc/generic/babel-sorbian/usorbian.pdf details="Package documentation (Upper Sorbian)" +srccontainersize 6328 +srccontainerchecksum 146b868a32adbafaf82217db99c1d260874ab1192fb50cf1ca670981d0bab116dd2d959fc77b496adfbcfa898253e91ccfa9837a619292dec7ad50abbbb7915f +srcfiles size=9 + RELOC/source/generic/babel-sorbian/lsorbian.dtx + RELOC/source/generic/babel-sorbian/sorbian.ins + RELOC/source/generic/babel-sorbian/usorbian.dtx +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-license lppl1.3 +catalogue-topics multilingual-addon sorbian +catalogue-version 1.0i + +name babel-spanish +category Package +revision 54080 +shortdesc Babel support for Spanish +relocated 1 +longdesc This bundle provides the means to typeset Spanish text, with +longdesc the support provided by the LaTeX standard package babel. Note +longdesc that separate support is provided for those who wish to typeset +longdesc Spanish as written in Mexico. +containersize 8652 +containerchecksum f71d329928253e6a1edf34fb9406473b83a5c8120982a4aca7b1caee76e261e78f94521716eecfb59171912121314dabf0ce164938e5fe83b722ff7eacbf9b1e +doccontainersize 183488 +doccontainerchecksum fe60634e76d9e539df4813d5c6a240f36e017a5926016189d23da56b723ba92a317e85ef2912ad76707943e0ec0918dbe1a1dba62acee7ea2db99dc7ad69c4f5 +docfiles size=46 + RELOC/doc/generic/babel-spanish/README.md details="Readme" + RELOC/doc/generic/babel-spanish/spanish.pdf details="Package documentation" language="es" +srccontainersize 29552 +srccontainerchecksum 0ad444d85a0c93b3e484701ffc8a934dbe85d3e2bc2e5bf348b33e0247682071ca366c438177beaf192f6c687e4847ebfcc3c325e2e28c15f67ca34d08671395 +srcfiles size=24 + RELOC/source/generic/babel-spanish/spanish.dtx + RELOC/source/generic/babel-spanish/spanish.ins +runfiles size=9 + RELOC/tex/generic/babel-spanish/romanidx.sty + RELOC/tex/generic/babel-spanish/spanish.ldf +catalogue-alias spanish +catalogue-ctan /macros/latex/contrib/babel-contrib/spanish +catalogue-license lppl1.3 +catalogue-topics spanish multilingual-addon +catalogue-version 5.0p + +name babel-swedish +category Package +revision 57647 +shortdesc Babel support for typesetting Swedish +relocated 1 +longdesc The package provides the language definition file for Swedish. +containersize 2700 +containerchecksum d3ccb281b9a5405866b0a4621cf0ea4fb75a085041de5d52ef0eb6db370cafacab05d1eebfef21f9558f4110e19b739e6c5cc424709e06640e8290a9c01722d6 +doccontainersize 138828 +doccontainerchecksum 33a59fb66617ee8ff66643e57b0146940060d04bb7bf2764bce97a062a955ddfd80338072434f86d86c414a22d5ce6f120be4f21523a3d81e6e88947e9c2e57f +docfiles size=35 + RELOC/doc/generic/babel-swedish/README.md details="Readme" + RELOC/doc/generic/babel-swedish/swedish.pdf details="Package documentation" +srccontainersize 6860 +srccontainerchecksum fe6e091f5cf7b0946a6be154af2907288dbc5ca58a003e7009740b2c85ed22075afb424f805427a5838e3729a35cbdfcd8934f860a32eda0523f141f3c9a9952 +srcfiles size=7 + RELOC/source/generic/babel-swedish/swedish.dtx + RELOC/source/generic/babel-swedish/swedish.ins +runfiles size=2 + RELOC/tex/generic/babel-swedish/swedish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/swedish +catalogue-license lppl1.3 +catalogue-topics swedish multilingual-addon +catalogue-version 2.3e + +name babel-thai +category Package +revision 30564 +shortdesc Support for Thai within babel +relocated 1 +longdesc The package provides support for typesetting Thai text. within +longdesc the babel system. +containersize 6376 +containerchecksum 4e3e5c6d8944040177a21f04e63bd40e85c24e9327eeddfe98072da38590c58523f676fd7532e4e00d0e3cc88121a2885788d606d2dc9ca02fd91c7f04a6ef57 +doccontainersize 215648 +doccontainerchecksum 791539a57534c4870a81ec2318298b29e9e9ad925161b0a4cf52c49086a865d5b58b60da10829a5fb37e66f0d161b396beb127e586457c556875f1205fac9360 +docfiles size=53 + RELOC/doc/generic/babel-thai/thai.pdf details="Package documentation" +srccontainersize 11116 +srccontainerchecksum db43b9422d95579f9bec645671e5c0ba654ce2d7ca89c3e98b6d910f6546a30b29656aa7061d03b767aca6eb2a01b001613a8b619d597bb9053a8a0df3376b6f +srcfiles size=12 + RELOC/source/generic/babel-thai/thai.dtx + RELOC/source/generic/babel-thai/thai.ins +runfiles size=8 + RELOC/tex/generic/babel-thai/lthenc.def + RELOC/tex/generic/babel-thai/thai.ldf + RELOC/tex/generic/babel-thai/tis620.def +catalogue-ctan /macros/latex/contrib/babel-contrib/thai +catalogue-license lppl1.3 +catalogue-topics thai multilingual-addon +catalogue-version 1.0.0 + +name babel-turkish +category Package +revision 51560 +shortdesc Babel support for Turkish documents +relocated 1 +longdesc The package provides support, within babel, of the Turkish +longdesc language. +containersize 2932 +containerchecksum 02916936992e00e7aa884b46b6f786dd0fe5a0aaa6e2c6c4e28fe72de7fe5260fca7cdd37efc4a775a8d172e3993c98df7cec3d1ad08f01487f7cb0c8f2d179a +doccontainersize 298588 +doccontainerchecksum 06931a6b9987a7affd4632ea5cc79028a2a88c584523c03ce79c2a15268947fb1103137da158886c7957e0a7c938ca69c1c5c7d88104c892cae611c914f6fb93 +docfiles size=74 + RELOC/doc/generic/babel-turkish/README.md details="Readme" + RELOC/doc/generic/babel-turkish/turkish.pdf details="Package documentation" +srccontainersize 6272 +srccontainerchecksum 54f3c4bf5063c571be3ae2ecd7c86882cfac940ab942e66fbb18346a4ab1e266b716d276294dc6c622b3ffb0b86cdecd70411314b334be491d0ff56604d0ead0 +srcfiles size=6 + RELOC/source/generic/babel-turkish/turkish.dtx + RELOC/source/generic/babel-turkish/turkish.ins +runfiles size=2 + RELOC/tex/generic/babel-turkish/turkish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/turkish +catalogue-license lppl1.3 +catalogue-topics turkish multilingual-addon +catalogue-version 1.4 + +name babel-ukrainian +category Package +revision 56674 +shortdesc Babel support for Ukrainian +relocated 1 +longdesc The package provides support for use of babel in documents +longdesc written in Ukrainian. The support is adapted for use under +longdesc legacy TeX engines as well as XeTeX and LuaTeX. +containersize 5076 +containerchecksum 10476b0dda4e80472aa8d3b3628d372da10f8badd37df6beca434e3bf1b9e135972acd5decb63eb6f706b700ef969136117b96ae5a6d6209fd75b9c13d06567c +doccontainersize 135428 +doccontainerchecksum 7dd3c5d02024cdd4e0c06b57d3aef0a723aba718760efd4b1214b7da2dca8877293bdfff2d3893e531eb734d5551dd93afc03dc4f3413822a3df0b40b4bec43b +docfiles size=35 + RELOC/doc/generic/babel-ukrainian/README.md details="Readme" + RELOC/doc/generic/babel-ukrainian/ukraineb.pdf details="Package documentation" +srccontainersize 19380 +srccontainerchecksum 0fec3b7b65f3e2a5c0b426d4c55e55ec0551fb38a786cd36db52cdfd6c87909ff82ca21328ea33c7089b39aa2694d4d62ddcd1d59255ae929d4ec85a44abdd62 +srcfiles size=19 + RELOC/source/generic/babel-ukrainian/ukraineb.dtx + RELOC/source/generic/babel-ukrainian/ukraineb.ins +runfiles size=5 + RELOC/tex/generic/babel-ukrainian/ukraineb.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/ukrainian +catalogue-license lppl1.3c +catalogue-topics multilingual-addon ukrainian +catalogue-version 1.4e + +name babel-vietnamese +category Package +revision 39246 +shortdesc Babel support for typesetting Vietnamese +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Vietnamese in babel. +containersize 2480 +containerchecksum ddb75c37017c1b0b6af2cfbdf574526cdfdce2099d599a23cc8ac819f6ebe5ea7a2eda4bd743af93d78835ca5dccb3d7fa55db22b3154862aa4affe83c28185f +doccontainersize 49604 +doccontainerchecksum b078464ce848b24d692d4dded7c9827f37fdb4141b719c71e28b5ef0a827f9ea5c2137745f9689fcb89a486d4a88a94a043a62348e86b5736a68ea48c7f33e16 +docfiles size=18 + RELOC/doc/generic/babel-vietnamese/README details="Readme" + RELOC/doc/generic/babel-vietnamese/uvnenc.tex + RELOC/doc/generic/babel-vietnamese/vietnamese.pdf details="Package documentation" +srccontainersize 6908 +srccontainerchecksum ffdf9a552fd79b1b51c0064ffef8f9dca1e618b41b0abebd2a22152e8f2bde04a9e35964250e8bd42912929d3e6d8dab6fa430ce302a1f28f27676015667d489 +srcfiles size=10 + RELOC/source/generic/babel-vietnamese/vietnamese.dtx + RELOC/source/generic/babel-vietnamese/vietnamese.ins +runfiles size=2 + RELOC/tex/generic/babel-vietnamese/vietnamese.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/vietnamese +catalogue-license lppl1.3 +catalogue-topics vietnamese multilingual-addon +catalogue-version 1.4 + +name babel-welsh +category Package +revision 38372 +shortdesc Babel support for Welsh +relocated 1 +longdesc The package provides the language definition file for Welsh. +longdesc (Mostly Welsh-language versions of the standard names in a +longdesc LaTeX file.) +containersize 1836 +containerchecksum 89526156517773131b5452f2cf5bf773f34b97b2e35e786f2bcd4dad512519766eded269539ada9d5c34d4b1f02d65bf55a0da0053e6bd7b7a3c66c606cfb60b +doccontainersize 111648 +doccontainerchecksum cb0ff59d9c02bce3028f0025c07963d42856eb4e68f322b839ed1ea5f51abf372ea17fc695e7be4bf87f75b3d2b163f801102f469773a4474bd0d0a72a47376d +docfiles size=29 + RELOC/doc/generic/babel-welsh/README details="Readme" + RELOC/doc/generic/babel-welsh/welsh.pdf details="Package documentation (code listing)" +srccontainersize 4100 +srccontainerchecksum 42c52ecdbb0b1de295800bece99804a481afffa2848a2146429b318f964e3a88dadfca9c020e9dec6bb3db1548ccfa79db3e66edf366a32fa83a1b6ba91e7fc1 +srcfiles size=4 + RELOC/source/generic/babel-welsh/welsh.dtx + RELOC/source/generic/babel-welsh/welsh.ins +runfiles size=1 + RELOC/tex/generic/babel-welsh/welsh.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/welsh +catalogue-license lppl1.3 +catalogue-topics welsh multilingual-addon +catalogue-version 1.1a + +name babelbib +category Package +revision 57349 +shortdesc Multilingual bibliographies +relocated 1 +longdesc This package enables the user to generate multilingual +longdesc bibliographies in cooperation with babel. Two approaches are +longdesc possible: Each citation may be written in another language, or +longdesc the whole bibliography can be typeset in a language chosen by +longdesc the user. In addition, the package supports commands to change +longdesc the typography of the bibliographies. +containersize 27240 +containerchecksum 90e78ff6086c80e0102ce7aae74070d3b1444208f3957e354f2c940ea4d279f87ed59e6c3310c6d9fc1464c227fb0eb4c3813ca679a6e94295e0b824cb527376 +doccontainersize 1253016 +doccontainerchecksum cd5785a17242a523f23093f8389f1d4c5e3d49c0656ac3f168a8627fb153b217b5a14e5c990c7afd1c5ea7324b5aad2e3dd40e8c2ca0f9ba9064f91f7214bf90 +docfiles size=430 + RELOC/doc/bibtex/babelbib/ChangeLog + RELOC/doc/bibtex/babelbib/Makefile + RELOC/doc/bibtex/babelbib/README details="Readme" + RELOC/doc/bibtex/babelbib/babelbib.dtx + RELOC/doc/bibtex/babelbib/babelbib.ins + RELOC/doc/bibtex/babelbib/babelbib.pdf details="Package documentation" + RELOC/doc/bibtex/babelbib/babelbibtest.bib + RELOC/doc/bibtex/babelbib/babelbibtest.tex + RELOC/doc/bibtex/babelbib/getversion.tex + RELOC/doc/bibtex/babelbib/tugboat-babelbib.pdf details="TUGboat paper about the package" +runfiles size=213 + RELOC/bibtex/bst/babelbib/bababbr3-fl.bst + RELOC/bibtex/bst/babelbib/bababbr3-lf.bst + RELOC/bibtex/bst/babelbib/bababbr3.bst + RELOC/bibtex/bst/babelbib/bababbrv-fl.bst + RELOC/bibtex/bst/babelbib/bababbrv-lf.bst + RELOC/bibtex/bst/babelbib/bababbrv.bst + RELOC/bibtex/bst/babelbib/babalpha-fl.bst + RELOC/bibtex/bst/babelbib/babalpha-lf.bst + RELOC/bibtex/bst/babelbib/babalpha.bst + RELOC/bibtex/bst/babelbib/babamspl.bst + RELOC/bibtex/bst/babelbib/babplai3-fl.bst + RELOC/bibtex/bst/babelbib/babplai3-lf.bst + RELOC/bibtex/bst/babelbib/babplai3.bst + RELOC/bibtex/bst/babelbib/babplain-fl.bst + RELOC/bibtex/bst/babelbib/babplain-lf.bst + RELOC/bibtex/bst/babelbib/babplain.bst + RELOC/bibtex/bst/babelbib/babunsrt-fl.bst + RELOC/bibtex/bst/babelbib/babunsrt-lf.bst + RELOC/bibtex/bst/babelbib/babunsrt.bst + RELOC/tex/latex/babelbib/afrikaans.bdf + RELOC/tex/latex/babelbib/babelbib.sty + RELOC/tex/latex/babelbib/bahasa.bdf + RELOC/tex/latex/babelbib/catalan.bdf + RELOC/tex/latex/babelbib/croatian.bdf + RELOC/tex/latex/babelbib/czech.bdf + RELOC/tex/latex/babelbib/danish.bdf + RELOC/tex/latex/babelbib/dutch.bdf + RELOC/tex/latex/babelbib/english.bdf + RELOC/tex/latex/babelbib/esperanto.bdf + RELOC/tex/latex/babelbib/finnish.bdf + RELOC/tex/latex/babelbib/french.bdf + RELOC/tex/latex/babelbib/galician.bdf + RELOC/tex/latex/babelbib/german.bdf + RELOC/tex/latex/babelbib/greek.bdf + RELOC/tex/latex/babelbib/italian.bdf + RELOC/tex/latex/babelbib/norsk.bdf + RELOC/tex/latex/babelbib/portuguese.bdf + RELOC/tex/latex/babelbib/romanian.bdf + RELOC/tex/latex/babelbib/russian.bdf + RELOC/tex/latex/babelbib/serbian.bdf + RELOC/tex/latex/babelbib/spanish.bdf + RELOC/tex/latex/babelbib/swedish.bdf + RELOC/tex/latex/babelbib/turkish.bdf +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-license lppl1 +catalogue-topics bibtex-sty multilingual +catalogue-version 1.34 + +name background +category Package +revision 42428 +shortdesc Placement of background material on pages of a document +relocated 1 +longdesc The package offers the placement of background material on the +longdesc pages of a document. The user can control many aspects +longdesc (contents, position, color, opacity) of the background material +longdesc that will be displayed; all placement and attribute settings +longdesc are controlled by setting key values. The package makes use of +longdesc the everypage package, and uses pgf/tikz for attribute control. +containersize 2080 +containerchecksum e9fd9b5e680082aa3e9f0482ebe41a753088a1e61b85876a9685942172cb9d5b6c9819ac2d61e0274f988b46d4f962222ce0afeac2827630edc728125761f214 +doccontainersize 115784 +doccontainerchecksum 518b0785e562fc6f01d6bba6cf7157c847faab151bcfe7840d5f2c9d8fc3ca54689beaa8698c92f24c196393fdbf90b027165be80e6cf07e9ee79ad8073d8533 +docfiles size=30 + RELOC/doc/latex/background/README details="Readme" + RELOC/doc/latex/background/background.pdf details="Package documentation" +srccontainersize 8408 +srccontainerchecksum 36bddbbaf17dc15e72773400e75dac754a2eb60c106c7a6861226b6dd2a1955fc016810a10d5c90ff56b690be922affc0427c1cf3b5e5c1f334231bc8df69872 +srcfiles size=8 + RELOC/source/latex/background/background.dtx + RELOC/source/latex/background/background.ins +runfiles size=2 + RELOC/tex/latex/background/background.sty +catalogue-ctan /macros/latex/contrib/background +catalogue-license lppl +catalogue-topics background decoration +catalogue-version 2.1 + +name backnaur +category Package +revision 54080 +shortdesc Typeset Backus Naur Form definitions +relocated 1 +longdesc The package typesets Backus-Naur Form (BNF) definitions. It +longdesc prints formatted lists of productions, with numbers if +longdesc required. It can also print in-line BNF expressions using math +longdesc mode. +containersize 1312 +containerchecksum adf008822e18c19a7e9e0ef4eb54230ff267ba287e3ef6c0686552ce6b51c8b13fce10cc4533a733f2f6ac09739fec4c2a5878423db1c65a993c5bc16cafc643 +doccontainersize 245228 +doccontainerchecksum cdf5a269f4055e8c5685da95b18501f7b69ca8b236fde8e60d39760a562bac9bca5da3afc06caf18bc4092a97f76754a48950881a0e0aecba90c40904e699637 +docfiles size=64 + RELOC/doc/latex/backnaur/README details="Readme" + RELOC/doc/latex/backnaur/backnaur.pdf details="Package documentation" +srccontainersize 6904 +srccontainerchecksum 45142a281a29b1f9e24e128f05825ef2b8e8549ab5de03607cb018dcde6e98b751598e01f6795b14c81c190a275162eb8e30402006f4e7d2a07c2effa4a949ce +srcfiles size=7 + RELOC/source/latex/backnaur/backnaur.dtx + RELOC/source/latex/backnaur/backnaur.ins +runfiles size=1 + RELOC/tex/latex/backnaur/backnaur.sty +catalogue-also simplebnf +catalogue-ctan /macros/latex/contrib/backnaur +catalogue-license lppl1.3c +catalogue-topics formal-spec +catalogue-version 3.1 + +name baekmuk +category Package +revision 56915 +shortdesc Baekmuk Korean TrueType fonts +relocated 1 +longdesc This bundle consists of four Korean fonts: batang.ttf: serif +longdesc dotum.ttf: sans-serif gulim.ttf: sans-serif (rounded) +longdesc hline.ttf: headline These fonts were originally retrieved from +longdesc http://kldp.net/baekmuk/ and are no longer maintained. +containersize 8688788 +containerchecksum f9270a17459444e128b5fc5d12b943043fa4ec2f87ee5996808f9dfad1c4c4146787db3ecd267767a375d1fdbd56e15850b25cd7c9c71ab270e3517b5863054a +doccontainersize 1576 +doccontainerchecksum 3a3819f892bdf69afeb66b9fdfbfe1ffe06e2a488425e814cb3a1e223ec9659a71f0571dc25136e0f7afcdb616f717dcb3823b89e640b0894313683e4f79b197 +docfiles size=3 + RELOC/doc/fonts/baekmuk/COPYRIGHT + RELOC/doc/fonts/baekmuk/COPYRIGHT.ks + RELOC/doc/fonts/baekmuk/README.md details="Readme" +runfiles size=6936 + RELOC/fonts/truetype/public/baekmuk/batang.ttf + RELOC/fonts/truetype/public/baekmuk/dotum.ttf + RELOC/fonts/truetype/public/baekmuk/gulim.ttf + RELOC/fonts/truetype/public/baekmuk/hline.ttf +catalogue-ctan /fonts/baekmuk +catalogue-license other-free +catalogue-topics font font-ttf font-cjk korean +catalogue-version 2.2.1 + +name bagpipe +category Package +revision 34393 +shortdesc Support for typesetting bagpipe music +relocated 1 +longdesc Typesetting bagpipe music in MusixTeX is needlessly tedious. +longdesc This package provides specialized and re-defined macros to +longdesc simplify this task. +containersize 11240 +containerchecksum 7d815e23e9b5d686e0df54c4a0ad51c85360c7b3879695977fb9be2b69cb343e1c9043c2595ac5554e87e0a568b2441bd16a43b334af4b43e5302eba19bc33d8 +doccontainersize 201344 +doccontainerchecksum 696047cc4965a06388a61232af9336f2010fdb0b869914cf66ac9b052d1efd85ff05119a277aa127cf05f56e03b63060956c7c284df78e93b0f0beabd691d33a +docfiles size=76 + RELOC/doc/generic/bagpipe/BlackDonald.pdf + RELOC/doc/generic/bagpipe/BlackDonald.tex + RELOC/doc/generic/bagpipe/Bonnets.pdf + RELOC/doc/generic/bagpipe/Bonnets.tex + RELOC/doc/generic/bagpipe/Green.pdf + RELOC/doc/generic/bagpipe/Green.tex + RELOC/doc/generic/bagpipe/GreenTwo.pdf + RELOC/doc/generic/bagpipe/GreenTwo.tex + RELOC/doc/generic/bagpipe/README details="Readme" + RELOC/doc/generic/bagpipe/Washer.pdf + RELOC/doc/generic/bagpipe/Washer.tex + RELOC/doc/generic/bagpipe/bagdoc.pdf details="Package documentation" + RELOC/doc/generic/bagpipe/bagdoc.tex + RELOC/doc/generic/bagpipe/quickref.pdf details="Package 'quick reference'" + RELOC/doc/generic/bagpipe/quickref.tex +runfiles size=15 + RELOC/tex/generic/bagpipe/bagpipe.ini + RELOC/tex/generic/bagpipe/bagpipe.tex + RELOC/tex/generic/bagpipe/bagpipex.ini +catalogue-ctan /macros/generic/bagpipe +catalogue-license lppl1.3 +catalogue-topics music +catalogue-version 3.02 + +name bangorcsthesis +category Package +revision 48834 +shortdesc Typeset a thesis at Bangor University +relocated 1 +longdesc The class typesets thesis/dissertation documents for all levels +longdesc (i.e., both undergraduate and graduate students may use the +longdesc class). It also provides macros designed to optimise the +longdesc process of producing a thesis. +containersize 51844 +containerchecksum 3d8dd2648361f74ec6af8727f0895ad1e1008ce0e8612d879634b196d5e4cdadff20e33e60e27d9812d7b6fe3762026ee46139f3ade3a3a3cd5d27a941355a62 +doccontainersize 285232 +doccontainerchecksum 97c98bb791018631b7c5bb282aa3585ae68ab1d2d81f56e1be91ad92d6dead30885c478856f59651b533590eca2f80e3596d09f0277ea6dbd6ec44b97ed64fb9 +docfiles size=72 + RELOC/doc/latex/bangorcsthesis/README details="Readme" + RELOC/doc/latex/bangorcsthesis/bangorcsthesis.pdf details="Package documentation" +srccontainersize 55560 +srccontainerchecksum b48f9e854297a3effe72c3e4f5b26d1a48b5023b25691727ab6c735379a092f8a6ce1b7dee1eb87b5cdc10866591b35c83df579147d3ecf36e6a27356d50381c +srcfiles size=65 + RELOC/source/latex/bangorcsthesis/bangorcsthesis.dtx + RELOC/source/latex/bangorcsthesis/bangorcsthesis.ins +runfiles size=61 + RELOC/tex/latex/bangorcsthesis/bangorcsthesis.cls +catalogue-ctan /macros/latex/contrib/bangorcsthesis +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.5.3 + +name bangorexam +category Package +revision 46626 +shortdesc Typeset an examination at Bangor University +relocated 1 +longdesc The package allows typesetting of Bangor Univesity's exam +longdesc style. It currently supports a standard A/B choice, A-only +longdesc compulsory and 'n' from 'm' exam styles. Marks are totalled and +longdesc checked automatically. +containersize 49800 +containerchecksum 9da594fb6d8dec3727dc5e437923c225aff392250c42566972a6998a4709e1853e6b7399ce64e8cbb7408a422631ee61229cc97001343ac8acee7d5c0fd20847 +doccontainersize 185696 +doccontainerchecksum 576b991d414d9a8b481dd2d76a4ba74af9db70ae720d9b81f16cb2cfd887d8a09c2bd601bf7711ec77073909aa61470f2cdd7573457ea2ed25f9e316417da9ac +docfiles size=47 + RELOC/doc/latex/bangorexam/README.txt details="Readme" + RELOC/doc/latex/bangorexam/bangorexam.pdf details="Package documentation" +srccontainersize 49668 +srccontainerchecksum 22732c47f60e2145ba850a60afc15cc926e57ff27a9234d84cf647ae83c8b783cd8023bb419f576dbba1f5e49de95416f98639440d6001525eac3cbd4fe8ab41 +srcfiles size=64 + RELOC/source/latex/bangorexam/bangorexam.dtx + RELOC/source/latex/bangorexam/bangorexam.ins +runfiles size=60 + RELOC/tex/latex/bangorexam/bangorexam.cls +catalogue-ctan /macros/latex/contrib/bangorexam +catalogue-license lppl1.3 +catalogue-topics exam class +catalogue-version 1.4.0 + +name bangtex +category Package +revision 55475 +shortdesc Writing Bangla and Assamese with LaTeX +relocated 1 +longdesc The bundle provides class files for writing Bangla and Assamese +longdesc with LaTeX, and Metafont sources for fonts. +containersize 35304 +containerchecksum 84d2b5b85f423e171bb90821f9e4518d06a640c02b03638295322e0ea6aedfdb831b6a4e62d3c25259b7b70aa0fe68ffe3081f6de0b0c71fe03c10616c74347e +doccontainersize 15640 +doccontainerchecksum 05ca923b97240a766d3ff448c6b16a33613a16e3307509ed7c369da6ec889e7e19d57e5f542b829c788ac4e87bd7025a62af9f7127e2eebe7fdd3eba4aeeb7ce +docfiles size=16 + RELOC/doc/latex/bangtex/README.bangtex details="Readme" + RELOC/doc/latex/bangtex/manual.tex + RELOC/doc/latex/bangtex/samplett.tex + RELOC/doc/latex/bangtex/samptex.tex +runfiles size=78 + RELOC/fonts/source/public/bangtex/bang10.mf + RELOC/fonts/source/public/bangtex/bangbase.mf + RELOC/fonts/source/public/bangtex/bangconso.mf + RELOC/fonts/source/public/bangtex/bangdefs.mf + RELOC/fonts/source/public/bangtex/bangfala.mf + RELOC/fonts/source/public/bangtex/banghalf.mf + RELOC/fonts/source/public/bangtex/bangjuk.mf + RELOC/fonts/source/public/bangtex/bangkaar.mf + RELOC/fonts/source/public/bangtex/banglig.mf + RELOC/fonts/source/public/bangtex/bangmac.mf + RELOC/fonts/source/public/bangtex/bangnum.mf + RELOC/fonts/source/public/bangtex/bangpunc.mf + RELOC/fonts/source/public/bangtex/bangsl10.mf + RELOC/fonts/source/public/bangtex/bangvow.mf + RELOC/fonts/source/public/bangtex/bangwd10.mf + RELOC/fonts/tfm/public/bangtex/bang10.tfm + RELOC/fonts/tfm/public/bangtex/bangsl10.tfm + RELOC/fonts/tfm/public/bangtex/bangwd10.tfm + RELOC/tex/latex/bangtex/bangfont.tex + RELOC/tex/latex/bangtex/barticle.cls + RELOC/tex/latex/bangtex/bbk10.clo + RELOC/tex/latex/bangtex/bbk11.clo + RELOC/tex/latex/bangtex/bbk12.clo + RELOC/tex/latex/bangtex/bbook.cls + RELOC/tex/latex/bangtex/bletter.cls + RELOC/tex/latex/bangtex/bsize10.clo + RELOC/tex/latex/bangtex/bsize11.clo + RELOC/tex/latex/bangtex/bsize12.clo +catalogue-ctan /language/bengali/bangtex +catalogue-license lppl +catalogue-topics indic bengali + +name bankstatement +category Package +revision 38857 +shortdesc A LaTeX class for bank statements based on csv data +relocated 1 +longdesc More and more banks allow their customers to download posting +longdesc records in various formats. By using the bankstatement class, +longdesc you can create bank statements, as long as a csv format is +longdesc available. At the moment, the csv-mt940 and csv-camt formats -- +longdesc used by many german Sparkassen -- are supported. You can quite +longdesc easily add support for other csv formats. Simply define the +longdesc order of the keys in the csv data file and how to use them. The +longdesc terminology in this class -- such as BIC (Business Identifier +longdesc Code) or IBAN (International Bank Account Number) -- is based +longdesc on usage in the SEPA (Single Euro Payments Area). The user may +longdesc adjust the terminology to suit local needs. +containersize 3452 +containerchecksum c388a06b1527fe131dd56813303ca727c035f2023b25426e8aae7387867afa0425e4f739c2698b30af97737557c068b94741dce51f8df573c29c14e4cc4f02c0 +doccontainersize 128040 +doccontainerchecksum 5290904ce0aab9e4e098fb4625c8a0cb5c728769faef312267131eedbee937e1d964a561b2c001c38131ff93c9083db46275d693431b2447267edaae19c296f9 +docfiles size=46 + RELOC/doc/latex/bankstatement/201412.csv + RELOC/doc/latex/bankstatement/README.md details="Readme" + RELOC/doc/latex/bankstatement/bankstatement-example.pdf details="Package example" + RELOC/doc/latex/bankstatement/bankstatement-example.tex + RELOC/doc/latex/bankstatement/bankstatement.dtx + RELOC/doc/latex/bankstatement/bankstatement.pdf details="Package documentation" + RELOC/doc/latex/bankstatement/makefile + RELOC/doc/latex/bankstatement/stmlogo.jpg +runfiles size=8 + RELOC/tex/latex/bankstatement/bankstatement.cls + RELOC/tex/latex/bankstatement/csv-camt.def + RELOC/tex/latex/bankstatement/csv-mt940.def + RELOC/tex/latex/bankstatement/csv-standard-bank-na.def + RELOC/tex/latex/bankstatement/stmenglish.def + RELOC/tex/latex/bankstatement/stmgerman.def + RELOC/tex/latex/bankstatement/stmnamibian.def +catalogue-contact-home http://bankstatement.jklatex.de/ +catalogue-ctan /macros/latex/contrib/bankstatement +catalogue-license lppl +catalogue-topics class +catalogue-version 0.9.2 + +name barcodes +category Package +revision 15878 +shortdesc Fonts for making barcodes +relocated 1 +longdesc The package deals with EAN barcodes; Metafont sources for fonts +longdesc are provided, and a set of examples; for some codes, a small +longdesc Perl script is needed. +containersize 6452 +containerchecksum e4b9f432d4464da19d279d8e7a5c2ccbd6dbba27fd175bbe7385c0f34199955c16427fc7bf6b487cad1da0b2e28b94d44267a0042e811fc73a88661f3d312b91 +doccontainersize 129364 +doccontainerchecksum 2054d8b87084bbdccdea4a2c05c43b427249d597880b3870fffb98bcf0bf88adf64c9110e3ff98d1755596d559ab548a464a2d681eb1adbaf57cc748424e0d98 +docfiles size=74 + RELOC/doc/latex/barcodes/README details="Package Readme" + RELOC/doc/latex/barcodes/bcfaq.tex + RELOC/doc/latex/barcodes/changes + RELOC/doc/latex/barcodes/code39.tex + RELOC/doc/latex/barcodes/codean.pl + RELOC/doc/latex/barcodes/eandoc.pdf details="Package documentation" + RELOC/doc/latex/barcodes/eandoc.tex + RELOC/doc/latex/barcodes/examples.tex + RELOC/doc/latex/barcodes/install.bat + RELOC/doc/latex/barcodes/wlcdb.vpl + RELOC/doc/latex/barcodes/wlcf39.vpl + RELOC/doc/latex/barcodes/wlitf.vpl +srccontainersize 21948 +srccontainerchecksum 9b72c54e083622b95df17e643a6466125a22fb62e3ebc64c3b0f5304253ba5625f0ce2e0071dfc4e06643259b4d7b575a1bae5bc6beb213e5bdd3e83074ba9d9 +srcfiles size=21 + RELOC/source/latex/barcodes/barcodes.dtx + RELOC/source/latex/barcodes/barcodes.ins +runfiles size=17 + RELOC/fonts/source/public/barcodes/wlc11.mf + RELOC/fonts/source/public/barcodes/wlc128.mf + RELOC/fonts/source/public/barcodes/wlc39.mf + RELOC/fonts/source/public/barcodes/wlc93.mf + RELOC/fonts/source/public/barcodes/wlcr39.mf + RELOC/fonts/source/public/barcodes/wlean.mf + RELOC/fonts/tfm/public/barcodes/wlc11.tfm + RELOC/fonts/tfm/public/barcodes/wlc128.tfm + RELOC/fonts/tfm/public/barcodes/wlc39.tfm + RELOC/fonts/tfm/public/barcodes/wlc93.tfm + RELOC/fonts/tfm/public/barcodes/wlcr39.tfm + RELOC/tex/latex/barcodes/barcodes.sty +catalogue-also code128 ean pst-barcode +catalogue-ctan /fonts/barcodes/willadt +catalogue-license lppl +catalogue-topics barcode + +name bardiag +category Package +revision 22013 +shortdesc LaTeX package for drawing bar diagrams +relocated 1 +longdesc The main purpose of the package is to make the drawing of bar +longdesc diagrams possible and easy in LaTeX. The BarDiag package is +longdesc inspired by and based on PSTricks. +containersize 12260 +containerchecksum dad9b5a50e5a82ed0285fb36c609c4302f7b22daf71c159848788d8c7c91c19dd44398e98357dd58366cd97140e943540d05b6e1c9937124a40c4b4070065a1a +doccontainersize 588832 +doccontainerchecksum 54fcfb2473c6ece46ec2b01853c89046c7f5396e97f62b9175cedaf4b1e783285c7c417700c827a7b9fefe5055b10723ce278e5fff0e864434f84020472c1cd8 +docfiles size=419 + RELOC/doc/latex/bardiag/README details="Readme" + RELOC/doc/latex/bardiag/bardiag.pdf details="Package documentation, sections 1-3" + RELOC/doc/latex/bardiag/bardiag.tex + RELOC/doc/latex/bardiag/bardiag1.pdf details="Package documentation, section 4" + RELOC/doc/latex/bardiag/bardiag1.tex + RELOC/doc/latex/bardiag/bardiag2.pdf details="Package documentation, appendix" + RELOC/doc/latex/bardiag/bardiag2.tex + RELOC/doc/latex/bardiag/example/altdiags.ps + RELOC/doc/latex/bardiag/example/altdiags.tex + RELOC/doc/latex/bardiag/example/compile.all + RELOC/doc/latex/bardiag/example/diagrams.dvi + RELOC/doc/latex/bardiag/example/diagrams.ps + RELOC/doc/latex/bardiag/example/diagrams.tex + RELOC/doc/latex/bardiag/example/diagramsbw.ps + RELOC/doc/latex/bardiag/example/diagramsbw.tex + RELOC/doc/latex/bardiag/example/src/10.tex + RELOC/doc/latex/bardiag/example/src/1a.tex + RELOC/doc/latex/bardiag/example/src/1b.tex + RELOC/doc/latex/bardiag/example/src/2a.tex + RELOC/doc/latex/bardiag/example/src/2b.tex + RELOC/doc/latex/bardiag/example/src/3.tex + RELOC/doc/latex/bardiag/example/src/4.tex + RELOC/doc/latex/bardiag/example/src/5.tex + RELOC/doc/latex/bardiag/example/src/6.tex + RELOC/doc/latex/bardiag/example/src/7.tex + RELOC/doc/latex/bardiag/example/src/8.tex + RELOC/doc/latex/bardiag/example/src/9.tex + RELOC/doc/latex/bardiag/figs/diag.eps + RELOC/doc/latex/bardiag/figs/diagleg.eps + RELOC/doc/latex/bardiag/figs/examp1.tex + RELOC/doc/latex/bardiag/figs/examp1a.tex + RELOC/doc/latex/bardiag/figs/examp1b.tex + RELOC/doc/latex/bardiag/figs/examp2.tex + RELOC/doc/latex/bardiag/figs/examp2er.tex + RELOC/doc/latex/bardiag/figs/examp3.tex + RELOC/doc/latex/bardiag/figs/examp4.tex + RELOC/doc/latex/bardiag/figs/examp5.tex + RELOC/doc/latex/bardiag/figs/examp6.tex + RELOC/doc/latex/bardiag/figs/exampcr.tex + RELOC/doc/latex/bardiag/figs/tddiag.eps + RELOC/doc/latex/bardiag/src/10.tex + RELOC/doc/latex/bardiag/src/1a.tex + RELOC/doc/latex/bardiag/src/1b.tex + RELOC/doc/latex/bardiag/src/2a.tex + RELOC/doc/latex/bardiag/src/2b.tex + RELOC/doc/latex/bardiag/src/3.tex + RELOC/doc/latex/bardiag/src/4.tex + RELOC/doc/latex/bardiag/src/5.tex + RELOC/doc/latex/bardiag/src/6.tex + RELOC/doc/latex/bardiag/src/7.tex + RELOC/doc/latex/bardiag/src/8.tex + RELOC/doc/latex/bardiag/src/9.tex +runfiles size=18 + RELOC/tex/latex/bardiag/barddoc.sty + RELOC/tex/latex/bardiag/bardiag.bar + RELOC/tex/latex/bardiag/bardiag.cfg + RELOC/tex/latex/bardiag/bardiag.sty + RELOC/tex/latex/bardiag/pstfp.sty +catalogue-also pst-bar bchart +catalogue-ctan /graphics/bardiag +catalogue-license lppl +catalogue-topics genchart +catalogue-version 0.4a + +name barr +category Package +revision 38479 +catalogue diagxy +shortdesc Diagram macros by Michael Barr +relocated 1 +longdesc Diagxy is a general diagramming package, useful for diagrams in +longdesc a number of mathematical disciplines. Diagxy is a development +longdesc of an earlier (successful) package to use the facilities of the +longdesc xypic bundle. +containersize 8104 +containerchecksum 6bd398efda5027e3b762b817ce777adb9bb1c8e593ca04386adedeab7dc26ba382058ccfa3c281ef8612fcc50c9b719e7f881dcde0cfec041cf4b2cd05f238f8 +doccontainersize 414908 +doccontainerchecksum 6600ecadc60fdd00e4d894969a84118265b5c5d07e9a411d3f01887fd1e94c481b117cbda80451774294dbb989a61379b16fe3ba5c3b8363a9a2485b76752aed +docfiles size=117 + RELOC/doc/generic/barr/README details="Readme" + RELOC/doc/generic/barr/diaxydoc.pdf details="Package documentation" + RELOC/doc/generic/barr/diaxydoc.tex +runfiles size=13 + RELOC/tex/generic/barr/diagxy.tex +catalogue-ctan /macros/generic/diagrams/diagxy +catalogue-license lppl1.3 +catalogue-topics diagram-comm + +name barracuda +category Package +revision 53683 +shortdesc Draw barcodes with Lua +relocated 1 +longdesc The barracuda library is a modular Lua package for drawing +longdesc barcode symbols. It provides modules for writing barcodes from +longdesc a LuaTeX document. It is also possible to use Barracuda with a +longdesc standalone Lua interpreter to draw barcodes in different +longdesc graphic formats like SVG. +containersize 30052 +containerchecksum 8331d0a9fd3504eef4e759e144bf34682f55c0bbf435aad9f53671083af2a0c766180665348fd6de4668c67b7cbb3690919619b2a0b175b77f76caa95a951328 +doccontainersize 347964 +doccontainerchecksum 8c7be1abea65248e0f34bd9b538aba2018058688a19d31c696ee964049d44046f4f92117b9db8a1056a4b5e45dcc8aec843971886de69214f0dd3368e1f4c3c2 +docfiles size=152 + RELOC/doc/luatex/barracuda/INSTALL.txt + RELOC/doc/luatex/barracuda/LICENSE.txt + RELOC/doc/luatex/barracuda/PLANNER.txt + RELOC/doc/luatex/barracuda/README.md details="Readme" + RELOC/doc/luatex/barracuda/doc/barracuda-ga-asm.pdf + RELOC/doc/luatex/barracuda/doc/barracuda-ga-asm.tex + RELOC/doc/luatex/barracuda/doc/barracuda-manual-tool.tex + RELOC/doc/luatex/barracuda/doc/barracuda.pdf details="Package documentation" + RELOC/doc/luatex/barracuda/doc/barracuda.tex + RELOC/doc/luatex/barracuda/doc/image/8006194056290.pdf + RELOC/doc/luatex/barracuda/test/test-barracuda-package/01-barracuda-latex-test.pdf + RELOC/doc/luatex/barracuda/test/test-barracuda-package/01-barracuda-latex-test.tex + RELOC/doc/luatex/barracuda/test/test-barracuda-package/02-ord_iter-test.tex + RELOC/doc/luatex/barracuda/test/test-code128/001-code128-test.lua + RELOC/doc/luatex/barracuda/test/test-code128/002-code128-test.pdf + RELOC/doc/luatex/barracuda/test/test-code128/002-code128-test.tex + RELOC/doc/luatex/barracuda/test/test-code128/02-05-pdfliteral.txt + RELOC/doc/luatex/barracuda/test/test-code128/c128-123.svg + RELOC/doc/luatex/barracuda/test/test-code39/001-code39-test.lua + RELOC/doc/luatex/barracuda/test/test-code39/002-code39-test.pdf + RELOC/doc/luatex/barracuda/test/test-code39/002-code39-test.tex + RELOC/doc/luatex/barracuda/test/test-code39/003-code39-test.pdf + RELOC/doc/luatex/barracuda/test/test-code39/003-code39-test.tex + RELOC/doc/luatex/barracuda/test/test-code39/004-code39-test.pdf + RELOC/doc/luatex/barracuda/test/test-code39/004-code39-test.tex + RELOC/doc/luatex/barracuda/test/test-code39/005-code39-test.lua + RELOC/doc/luatex/barracuda/test/test-code39/006-code39-test.lua + RELOC/doc/luatex/barracuda/test/test-code39/006-six.svg + RELOC/doc/luatex/barracuda/test/test-code39/my_barcode.svg + RELOC/doc/luatex/barracuda/test/test-ean/001-13-ean-test.pdf + RELOC/doc/luatex/barracuda/test/test-ean/001-13-ean-test.tex + RELOC/doc/luatex/barracuda/test/test-ean/002-ean-test.pdf + RELOC/doc/luatex/barracuda/test/test-ean/002-ean-test.tex + RELOC/doc/luatex/barracuda/test/test-ean/003-ean-test.pdf + RELOC/doc/luatex/barracuda/test/test-ean/003-ean-test.tex + RELOC/doc/luatex/barracuda/test/test-ean/004-ean-test.lua + RELOC/doc/luatex/barracuda/test/test-ean/005-isbn-test.pdf + RELOC/doc/luatex/barracuda/test/test-ean/005-isbn-test.tex + RELOC/doc/luatex/barracuda/test/test-ean/006-issn-test.pdf + RELOC/doc/luatex/barracuda/test/test-ean/006-issn-test.tex + RELOC/doc/luatex/barracuda/test/test-ean/8006194056290.svg + RELOC/doc/luatex/barracuda/test/test-ean/ars.svg + RELOC/doc/luatex/barracuda/test/test-ga-pdfliteral/001-ga-pdfliteral-test.pdf + RELOC/doc/luatex/barracuda/test/test-ga-pdfliteral/001-ga-pdfliteral-test.tex + RELOC/doc/luatex/barracuda/test/test-ga-svg/001-ga-svg-test.lua + RELOC/doc/luatex/barracuda/test/test-ga-svg/002-ga-svg-test.lua + RELOC/doc/luatex/barracuda/test/test-ga-svg/test-01.svg + RELOC/doc/luatex/barracuda/test/test-ga-svg/test-02.svg + RELOC/doc/luatex/barracuda/test/test-ga-svg/test-code39.svg + RELOC/doc/luatex/barracuda/test/test-i2of5/001-i2of5-test.pdf + RELOC/doc/luatex/barracuda/test/test-i2of5/001-i2of5-test.tex + RELOC/doc/luatex/barracuda/test/test-i2of5/002-ITF14-test.pdf + RELOC/doc/luatex/barracuda/test/test-i2of5/002-ITF14-test.tex +runfiles size=47 + RELOC/scripts/barracuda/barracuda.lua + RELOC/scripts/barracuda/lib-barcode/brcd-barcode.lua + RELOC/scripts/barracuda/lib-barcode/brcd-code128.lua + RELOC/scripts/barracuda/lib-barcode/brcd-code39.lua + RELOC/scripts/barracuda/lib-barcode/brcd-ean.lua + RELOC/scripts/barracuda/lib-barcode/brcd-i2of5.lua + RELOC/scripts/barracuda/lib-driver/brcd-driver.lua + RELOC/scripts/barracuda/lib-driver/brcd-drv-pdfliteral.lua + RELOC/scripts/barracuda/lib-driver/brcd-drv-svg.lua + RELOC/scripts/barracuda/lib-geo/brcd-gacanvas.lua + RELOC/scripts/barracuda/lib-geo/brcd-libgeo.lua + RELOC/tex/luatex/barracuda/barracuda.sty +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-license gpl2 +catalogue-topics barcode +catalogue-version 0.0.10 + +name bartel-chess-fonts +category Package +revision 20619 +shortdesc A set of fonts supporting chess diagrams +relocated 1 +longdesc The fonts are provided as Metafont source. +containersize 17456 +containerchecksum 33c52620d32f5e79a702bb664cfcb47409faa049dbf7f34cc5816005b4667267810fab130e3aee1ff7a7e3292af37c2d376c01dd2bbf17be199a22cc36ba751f +doccontainersize 5492 +doccontainerchecksum e61232eed7f345e28796192d836af9de29bda257fb85460f67a89bbdfd7dce01b8361962b7cccf314311c0e772e69367f2921ad898c106389195164b6c925ffc +docfiles size=40 + RELOC/doc/fonts/bartel-chess-fonts/README details="Readme" + RELOC/doc/fonts/bartel-chess-fonts/other-sources/CGA.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/agfa.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/amiga-PAL.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/amiga.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/chess.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch15.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch30.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch34.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch5mm.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkelch.mfj + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkfootbows.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkmakeneutral.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkparallel.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkscreengrid.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkshorten.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px150.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px17.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px20.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px21.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px23.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px25.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px29.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px31.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px33.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px41.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px45.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px49.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px53.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px57.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px63.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px700.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px71.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px72.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px79.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px9.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/scan.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/screengrid.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/tt.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/turnboard.mf +runfiles size=92 + RELOC/fonts/source/public/bartel-chess-fonts/elch-bishop.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-blackfield.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-chbase.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-equi.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-geo.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-king.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-knight.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-pawn.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-queen.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-rook.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch10.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch11.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch12.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch13.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch14.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch16.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch17.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch20.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch24.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch32.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch36.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch6.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch7.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch8.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch9.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkbase.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkbishop.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkblackfield.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch10.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch11.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch12.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch14.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch16.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch8.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch9.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkgeo.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkking.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkknight.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkpawn.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkqueen.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkrook.mf + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch10.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch11.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch12.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch13.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch14.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch16.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch17.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch20.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch24.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch32.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch36.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch6.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch7.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch8.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch9.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch10.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch11.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch12.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch14.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch16.tfm + 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-license gpl +catalogue-topics games font font-chess font-mf + +name bashful +category Package +revision 25597 +shortdesc Invoke bash commands from within LaTeX +relocated 1 +longdesc The package makes it possible to execute Unix bash shell +longdesc scripts from within LaTeX. The main application is in writing +longdesc computer-science texts, in which you want to make sure the +longdesc programs listed in the document are executed directly from the +longdesc input. The package may use other Unix shells than bash, but +longdesc does not work without modification in a Windows environment. +longdesc The package requires the -shell-escape flag when LaTeX is +longdesc processing your document. +containersize 5292 +containerchecksum b46abbc1622fcc15d65981368d5c8a7528f2142d722604eb028e0cc364d6e908587cb58a340283e7afa43581ce365ac7a545bef65d1cb5e273e777467231c40d +doccontainersize 570412 +doccontainerchecksum 5017fef7ad1c67f33cc881a94f75cce97d422b047d8944dbff377b1f3f3d36025b7b73c76ba2ed96bf06b0c6e9c3e99b97ecf36e2ec8ab8b7e1893dc11f201f2 +docfiles size=148 + RELOC/doc/latex/bashful/Makefile + RELOC/doc/latex/bashful/README + RELOC/doc/latex/bashful/bashful.pdf details="Package documentation" + RELOC/doc/latex/bashful/bashful.tex +runfiles size=5 + RELOC/tex/latex/bashful/bashful.sty +catalogue-ctan /macros/latex/contrib/bashful +catalogue-license lppl1.3 +catalogue-topics ext-code +catalogue-version 0.93 + +name basicarith +category Package +revision 35460 +shortdesc Macros for typesetting basic arithmetic +relocated 1 +longdesc The package provides macros for typesetting basic arithmetic, +longdesc in the style typically found in textbooks. It focuses on the +longdesc American style of performing these algorithms. It is written +longdesc mostly in low-level TeX, with the goal that it should run in +longdesc either plain TeX or LaTeX, but there are two constructions that +longdesc currently prevent this. It is highly configurable, with macros +longdesc and lengths described in the documentation. +containersize 2628 +containerchecksum 346edf1704ed621a326e4f945b8f5341dfbd2d46af095691c7b853a9683dfb2254d443ae04bf235f192a57dd55336dd50249b0963bde041120468499e61012b7 +doccontainersize 219292 +doccontainerchecksum bf454539b0202321121437d2448c3b49a2d6122459af4788a573cc2525f0301d1267b12f3df8636a36fe807c474cb23347a41a2c412eb12b674c58541516ade2 +docfiles size=59 + RELOC/doc/latex/basicarith/CHANGES + RELOC/doc/latex/basicarith/README details="Readme" + RELOC/doc/latex/basicarith/basicarith.pdf details="Package documentation" + RELOC/doc/latex/basicarith/lppl.txt +srccontainersize 10016 +srccontainerchecksum 6c8b449cd8f356be6403a48943d6b91cf2c2dcff90020041a8dde0fb8ad1fa598727137dfda0b091ee776c968d4dffdad1215716111a36be16cc5c5e5b2cc5e6 +srcfiles size=9 + RELOC/source/latex/basicarith/basicarith.dtx + RELOC/source/latex/basicarith/basicarith.ins +runfiles size=2 + RELOC/tex/latex/basicarith/basicarith.sty +catalogue-ctan /macros/latex/contrib/basicarith +catalogue-license lppl1.3 +catalogue-topics arithmetic calculation +catalogue-version 1.1 + +name baskervald +category Package +revision 19490 +catalogue baskervaldadf +shortdesc Baskervald ADF fonts collection with TeX/LaTeX support +relocated 1 +longdesc Baskervald ADF is a serif family with lining figures designed +longdesc as a substitute for Baskerville. The family currently includes +longdesc upright and italic or oblique shapes in each of regular, bold +longdesc and heavy weights. All fonts include the slashed zero and +longdesc additional non-standard ligatures. The support package renames +longdesc them according to the Karl Berry fontname scheme and defines +longdesc two families. One of these primarily provides access to the +longdesc "standard" or default characters while the other supports +longdesc additional ligatures. The included package files provide access +longdesc to these features in LaTeX. +execute addMap ybv.map +containersize 421084 +containerchecksum 3c0451c43f81396038c3ccff2b4a9b07bf31023fa7afafd2884506928dffc8a9345ff0b8c8114f20b3016026f4532ab138a8b4787a37811501659a0f53c98941 +doccontainersize 245760 +doccontainerchecksum e9e2c8749e29351b59690027b019da441de5c74068aa5a8457e3014c751fb23dddb0e8b94bf56529879086ea8c58e023a23b85ed9bbaece10f6dcc65ddcf3ff6 +docfiles size=76 + RELOC/doc/fonts/baskervald/COPYING + RELOC/doc/fonts/baskervald/NOTICE.txt + RELOC/doc/fonts/baskervald/README details="Readme" + RELOC/doc/fonts/baskervald/baskervaldadf.pdf details="Package documentation" + RELOC/doc/fonts/baskervald/baskervaldadf.tex + RELOC/doc/fonts/baskervald/manifest.txt +srccontainersize 9356 +srccontainerchecksum 60122d6a04e88fecd4c6baae3a657f40bbfd48895cc674e95ee9e2b3f9172e01d009064a616f2d7b3f48c41d43f75efda19c3ca54feee612f1866fe64eef366e +srcfiles size=25 + RELOC/source/fonts/baskervald/reglyph-ybv.tex + RELOC/source/fonts/baskervald/supp-ybv.etx + RELOC/source/fonts/baskervald/t1-baskervald-lig.etx + RELOC/source/fonts/baskervald/t1-baskervald.etx + RELOC/source/fonts/baskervald/ts1-baskervald.etx + RELOC/source/fonts/baskervald/ybv-drv.tex + RELOC/source/fonts/baskervald/ybv-map.tex +runfiles size=274 + RELOC/fonts/afm/arkandis/baskervald/ybvb8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvbi8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvh8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvho8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvr8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvri8a.afm + RELOC/fonts/enc/dvips/baskervald/supp-ybv.enc + RELOC/fonts/map/dvips/baskervald/ybv.map + RELOC/fonts/tfm/arkandis/baskervald/ybvb8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvb8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvb8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvb8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbiw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvhow8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvhw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvriw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvrw8t.tfm + RELOC/fonts/type1/arkandis/baskervald/ybvb8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvb8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvbi8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvbi8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvh8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvh8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvho8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvho8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvr8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvr8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvri8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvri8a.pfm + RELOC/fonts/vf/arkandis/baskervald/ybvb8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvb8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbi8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbi8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbiw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvh8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvh8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvho8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvho8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvhow8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvhw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvr8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvr8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvri8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvri8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvriw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvrw8t.vf + RELOC/tex/latex/baskervald/baskervald.sty + RELOC/tex/latex/baskervald/t1ybv.fd + RELOC/tex/latex/baskervald/t1ybvw.fd + RELOC/tex/latex/baskervald/ts1ybv.fd + RELOC/tex/latex/baskervald/ts1ybvw.fd +catalogue-also baskervaldx +catalogue-contact-home http://arkandis.tuxfamily.org/ +catalogue-ctan /fonts/baskervaldadf +catalogue-license lppl +catalogue-topics font font-type1 font-serif +catalogue-version 1.016 + +name baskervaldx +category Package +revision 57080 +shortdesc Extension and modification of BaskervaldADF with LaTeX support +relocated 1 +longdesc Extends and modifies the BaskervaldADF font (a Baskerville +longdesc substitute) with more accented glyphs, with small caps and +longdesc oldstyle figures in all shapes. Includes OpenType and +longdesc PostScript fonts, as well as LaTeX support files. +execute addMap Baskervaldx.map +containersize 679472 +containerchecksum 42db4e01e127ca3870f6eb692217a7b0c24857599f01314c41ff6f26664e3559c4a938fac1557e799e273b42df2884955df3dd72f8e0b44456b414b8831fc019 +doccontainersize 209588 +doccontainerchecksum df3462932654a6fee3afd099a92c5d12b6999003af1c76a3be3ec3f32035b76993b3806c88e670a26c0857bbc699efa64063a4f23c24055ec337481e65019e91 +docfiles size=65 + RELOC/doc/fonts/baskervaldx/COPYING + RELOC/doc/fonts/baskervaldx/NOTICE.txt + RELOC/doc/fonts/baskervaldx/README details="Readme" + RELOC/doc/fonts/baskervaldx/baskervaldx-doc.pdf details="Package documentation" + RELOC/doc/fonts/baskervaldx/baskervaldx-doc.tex + RELOC/doc/fonts/baskervaldx/baskervaldxmatheg-crop.pdf +runfiles size=1347 + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Bol.afm + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-BolIta.afm + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Ita.afm + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Reg-old.afm + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Reg.afm + RELOC/fonts/enc/dvips/baskervaldx/bvalph.enc + RELOC/fonts/enc/dvips/baskervaldx/bvtabosf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_23jm4j.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2445cl.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2kku7k.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2n2qka.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2xv27p.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2zeho7.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_34qyyt.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_4f5bev.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_524fcc.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_556rta.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_5p6atn.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_5zt4ml.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6dnovg.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6lr3v3.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6rdtju.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6xreh4.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_7d54ky.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_7i75ol.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_7nnme4.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ahc6ab.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ak7beg.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_aorlch.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_auq4k5.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_awcfcx.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ax2yo2.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ax7osu.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_c3asvt.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ck4t6h.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_cl2iyt.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_clcsgf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_coqtyh.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_cv7nez.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_d7elqy.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_d7lahw.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_dbb2hd.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_dw7i6y.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_edkp5z.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ezfzzx.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_feassy.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_g4f2qe.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_g5xsbp.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_gar3zb.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_gjwmpg.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_h4nqsn.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ik76ei.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ilkd46.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_itooof.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_jwmruw.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_k3ascw.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_k6hbcl.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_kq7kv3.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_l44ess.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_lewyuf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_lozoyg.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_lxdjmd.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_m4qttc.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_m5lkgj.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_mu6kzn.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_mvsyl4.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_mys6kl.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_nt5h45.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_nwv7yn.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ofzzxu.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_pqcihf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_puztjr.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_riybhr.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_rosua2.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_scthrl.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_sv3nex.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_teykvl.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_tfcpq3.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_tnmdy3.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_tv7w6k.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_uguye6.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_untte3.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_upot5e.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_uy4eps.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_v577lu.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_wg6wcc.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_wvrs5w.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xbckbj.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xebzk2.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xjuza2.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xotpaa.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_y62qbt.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_y77okd.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_yk4dqp.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ymibyh.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_zag37q.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_zb3hlf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_zey2cz.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_zkqdv4.enc + RELOC/fonts/map/dvips/baskervaldx/Baskervaldx.map + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-Bol.otf + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-BolIta.otf + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-Ita.otf + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-Reg.otf + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-alph.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-alph.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-osf.tfm + RELOC/fonts/tfm/public/baskervaldx/zbvbmi.tfm + RELOC/fonts/tfm/public/baskervaldx/zbvmi.tfm + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-Bol.pfb + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-BolIta.pfb + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-Ita.pfb + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-Reg.pfb + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/zbvbmi.vf + RELOC/fonts/vf/public/baskervaldx/zbvmi.vf + RELOC/tex/latex/baskervaldx/Baskervaldx.sty + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-LF.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-OsF.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-Sup.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-TLF.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-TOsF.fd + RELOC/tex/latex/baskervaldx/OT1Baskervaldx-LF.fd + RELOC/tex/latex/baskervaldx/OT1Baskervaldx-OsF.fd + RELOC/tex/latex/baskervaldx/OT1Baskervaldx-Sup.fd + RELOC/tex/latex/baskervaldx/OT1Baskervaldx-TLF.fd + RELOC/tex/latex/baskervaldx/OT1Baskervaldx-TOsF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-LF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-OsF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-Sup.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-TLF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-TOsF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-LF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-OsF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-TLF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-TOsF.fd + RELOC/tex/latex/baskervaldx/baskervaldx.fontspec +catalogue-ctan /fonts/baskervaldx +catalogue-license gpl2+ lppl1.3 +catalogue-topics font font-body font-proportional font-serif font-otf font-type1 font-supp font-t1enc +catalogue-version 1.076 + +name baskervillef +category Package +revision 55475 +shortdesc Fry's Baskerville look-alike, with math support +relocated 1 +longdesc BaskervilleF is a fork from the Libre Baskerville fonts (Roman, +longdesc Italic, Bold only) released under the OFL by Paolo Impallari +longdesc and Rodrigo Fuenzalida. Their fonts are optimized for web +longdesc usage, while BaskervilleF is optimized for traditional TeX +longdesc usage, normally destined for production of pdf files. A bold +longdesc italic style was added and mathematical support is offered as +longdesc an option to newtxmath. +execute addMap BaskervilleF.map +containersize 1060464 +containerchecksum d7ff1eaee4b050128ac89aff0d48d50c99936b1e04e778d0594d28ad3b225002012cfa56ff515486c98d9769d499ba5f4584358f8969c6286f07bd535b478ff6 +doccontainersize 205400 +doccontainerchecksum 131117d2170aa77f83954d61d630cd0714c7542f3b4f5e868f834bd091d0b4cd76185d478ae2e4d35c8b9930262d3f14e675681540fa8363b4aa060ea5fd96d9 +docfiles size=66 + RELOC/doc/fonts/baskervillef/FONTLOG.txt + RELOC/doc/fonts/baskervillef/OFL-FAQ.txt + RELOC/doc/fonts/baskervillef/OFL.txt + RELOC/doc/fonts/baskervillef/README details="Readme" + RELOC/doc/fonts/baskervillef/baskervillef-doc.pdf details="Package documentation" + RELOC/doc/fonts/baskervillef/baskervillef-doc.tex +runfiles size=1689 + RELOC/fonts/enc/dvips/baskervillef/zba_23ismr.enc + RELOC/fonts/enc/dvips/baskervillef/zba_2hmbf5.enc + RELOC/fonts/enc/dvips/baskervillef/zba_2j2bbt.enc + RELOC/fonts/enc/dvips/baskervillef/zba_2vxxim.enc + RELOC/fonts/enc/dvips/baskervillef/zba_336dgv.enc + RELOC/fonts/enc/dvips/baskervillef/zba_3a6nlu.enc + RELOC/fonts/enc/dvips/baskervillef/zba_3kjwvw.enc + RELOC/fonts/enc/dvips/baskervillef/zba_4hfcgk.enc + RELOC/fonts/enc/dvips/baskervillef/zba_523v7l.enc + RELOC/fonts/enc/dvips/baskervillef/zba_532cq4.enc + RELOC/fonts/enc/dvips/baskervillef/zba_5cwn7d.enc + RELOC/fonts/enc/dvips/baskervillef/zba_5k66dt.enc + RELOC/fonts/enc/dvips/baskervillef/zba_5oqvu4.enc + RELOC/fonts/enc/dvips/baskervillef/zba_6vkpq5.enc + RELOC/fonts/enc/dvips/baskervillef/zba_734fzj.enc + RELOC/fonts/enc/dvips/baskervillef/zba_73mseb.enc + RELOC/fonts/enc/dvips/baskervillef/zba_7cypa5.enc + RELOC/fonts/enc/dvips/baskervillef/zba_7qcgfh.enc + RELOC/fonts/enc/dvips/baskervillef/zba_a3asoq.enc + RELOC/fonts/enc/dvips/baskervillef/zba_a73a6q.enc + RELOC/fonts/enc/dvips/baskervillef/zba_aqsbza.enc + RELOC/fonts/enc/dvips/baskervillef/zba_arki3d.enc + RELOC/fonts/enc/dvips/baskervillef/zba_art6xf.enc + RELOC/fonts/enc/dvips/baskervillef/zba_b5bk2y.enc + RELOC/fonts/enc/dvips/baskervillef/zba_bnjopg.enc + RELOC/fonts/enc/dvips/baskervillef/zba_cjo72v.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ck2hfy.enc + RELOC/fonts/enc/dvips/baskervillef/zba_cvjygd.enc + RELOC/fonts/enc/dvips/baskervillef/zba_e3xw3x.enc + RELOC/fonts/enc/dvips/baskervillef/zba_e5ewsu.enc + RELOC/fonts/enc/dvips/baskervillef/zba_etzx2k.enc + RELOC/fonts/enc/dvips/baskervillef/zba_fcs4fj.enc + RELOC/fonts/enc/dvips/baskervillef/zba_gliky3.enc + RELOC/fonts/enc/dvips/baskervillef/zba_gmq6ah.enc + RELOC/fonts/enc/dvips/baskervillef/zba_hwnpjr.enc + RELOC/fonts/enc/dvips/baskervillef/zba_hykkzd.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ihgygy.enc + RELOC/fonts/enc/dvips/baskervillef/zba_iy3fha.enc + RELOC/fonts/enc/dvips/baskervillef/zba_jjbdnj.enc + RELOC/fonts/enc/dvips/baskervillef/zba_kodzea.enc + RELOC/fonts/enc/dvips/baskervillef/zba_lfhy4n.enc + RELOC/fonts/enc/dvips/baskervillef/zba_lfjjhs.enc + RELOC/fonts/enc/dvips/baskervillef/zba_lh5uiy.enc + RELOC/fonts/enc/dvips/baskervillef/zba_lkeymy.enc + RELOC/fonts/enc/dvips/baskervillef/zba_m7qm6t.enc + RELOC/fonts/enc/dvips/baskervillef/zba_mby7uf.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ogu2yp.enc + RELOC/fonts/enc/dvips/baskervillef/zba_oxcsv2.enc + RELOC/fonts/enc/dvips/baskervillef/zba_pxbj3a.enc + RELOC/fonts/enc/dvips/baskervillef/zba_qiwnw4.enc + RELOC/fonts/enc/dvips/baskervillef/zba_qvggep.enc + RELOC/fonts/enc/dvips/baskervillef/zba_rqjco3.enc + RELOC/fonts/enc/dvips/baskervillef/zba_rtk6yp.enc + RELOC/fonts/enc/dvips/baskervillef/zba_skajg2.enc + RELOC/fonts/enc/dvips/baskervillef/zba_srcuqk.enc + RELOC/fonts/enc/dvips/baskervillef/zba_t3ys54.enc + RELOC/fonts/enc/dvips/baskervillef/zba_th2k46.enc + RELOC/fonts/enc/dvips/baskervillef/zba_to6jjw.enc + RELOC/fonts/enc/dvips/baskervillef/zba_twn2qn.enc + RELOC/fonts/enc/dvips/baskervillef/zba_typa7y.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ueebfa.enc + RELOC/fonts/enc/dvips/baskervillef/zba_uf5aa7.enc + RELOC/fonts/enc/dvips/baskervillef/zba_uf7ozb.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ugitcp.enc + RELOC/fonts/enc/dvips/baskervillef/zba_uqoays.enc + RELOC/fonts/enc/dvips/baskervillef/zba_uutbpy.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ve4agh.enc + RELOC/fonts/enc/dvips/baskervillef/zba_vydigt.enc + RELOC/fonts/enc/dvips/baskervillef/zba_w4i4io.enc + RELOC/fonts/enc/dvips/baskervillef/zba_w54rd4.enc + RELOC/fonts/enc/dvips/baskervillef/zba_wbekxi.enc + RELOC/fonts/enc/dvips/baskervillef/zba_wn2rfu.enc + RELOC/fonts/enc/dvips/baskervillef/zba_wxljbs.enc + RELOC/fonts/enc/dvips/baskervillef/zba_wybx5h.enc + RELOC/fonts/enc/dvips/baskervillef/zba_wyngyv.enc + RELOC/fonts/enc/dvips/baskervillef/zba_x7qzb2.enc + RELOC/fonts/enc/dvips/baskervillef/zba_xpcegd.enc + RELOC/fonts/enc/dvips/baskervillef/zba_y3x75k.enc + RELOC/fonts/enc/dvips/baskervillef/zba_y7xbvf.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ymdv6d.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zkzy6d.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zpc5ms.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zvejcx.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zygn7r.enc + RELOC/fonts/map/dvips/baskervillef/BaskervilleF.map + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-Bold.otf + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-BoldItalic.otf + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-Italic.otf + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-Regular.otf + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-alph.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-alph.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular.tfm + RELOC/fonts/tfm/public/baskervillef/zbabmi.tfm + RELOC/fonts/tfm/public/baskervillef/zbami.tfm + RELOC/fonts/type1/public/baskervillef/BaskervilleF-Bold.pfb + RELOC/fonts/type1/public/baskervillef/BaskervilleF-BoldItalic.pfb + RELOC/fonts/type1/public/baskervillef/BaskervilleF-Italic.pfb + RELOC/fonts/type1/public/baskervillef/BaskervilleF-Regular.pfb + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-dnom-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-dnom-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/zbabmi.vf + RELOC/fonts/vf/public/baskervillef/zbami.vf + RELOC/tex/latex/baskervillef/LY1BaskervilleF-Dnom.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-Sup.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-Dnom.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-Sup.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-Dnom.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-Sup.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/baskervillef.fontspec + RELOC/tex/latex/baskervillef/baskervillef.sty + RELOC/tex/latex/baskervillef/omlzbami.fd +catalogue-ctan /fonts/baskervillef +catalogue-license ofl lppl1.3 +catalogue-topics font font-serif font-otf font-type1 font-t1enc +catalogue-version 1.051 + +name basque-book +category Package +revision 32924 +shortdesc Class for book-type documents written in Basque +relocated 1 +longdesc The class is derived from the LaTeX book class. The extensions +longdesc solve grammatical and numeration issues that occur when +longdesc book-type documents are written in Basque. The class is useful +longdesc for writing books, PhD and Master Theses, etc., in Basque. +containersize 6032 +containerchecksum 645d55362506a1bcf563a12ddb7616f085d5cc75a45cb2f0dcdf551158b48f595cd71278caf9a0c35f1d85ca66b880e6f59f9ee416fb9bf15cd7c18bf6fda2b9 +doccontainersize 391648 +doccontainerchecksum 7954b1c86ddac3a1409bf16cc7db5470332fb86459257756200dc794a3443b137e6013a7e904bbf63e8fceae64850418e56ad08af12a448c1fe507e29221c7be +docfiles size=117 + RELOC/doc/latex/basque-book/README details="Readme" + RELOC/doc/latex/basque-book/basque-book.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/basque-book/basque-book_EUS.pdf details="Package documentation (Basque)" language="eu" + RELOC/doc/latex/basque-book/basque-book_EUS.tex +srccontainersize 10280 +srccontainerchecksum 4b8a2ac7320d04d5e35a0c789e5b548582ef4e0723ca45231250b44ab08fb52a73e88f5425218ecdc3e3d35e01042b64c711ad78aaef0c4f119ebd1abc4dc36f +srcfiles size=11 + RELOC/source/latex/basque-book/basque-book.dtx + RELOC/source/latex/basque-book/basque-book.ins +runfiles size=6 + RELOC/tex/latex/basque-book/basque-book.cls +catalogue-ctan /macros/latex/contrib/basque-book +catalogue-license lppl1.2 +catalogue-topics book-pub dissertation class basque +catalogue-version 1.20 + +name basque-date +category Package +revision 26477 +shortdesc Print the date in Basque +relocated 1 +longdesc The package provides two LaTeX commands to print the current +longdesc date in Basque according to the correct forms ruled by The +longdesc Basque Language Academy (Euskaltzaindia). The commands +longdesc automatically solve the complex declination issues of numbers +longdesc in Basque. +containersize 1696 +containerchecksum 2f0cdfa78c3b75dddc5ab9ed15f651308dad4e598f9623eea50929c48d6f15318f768b95d55ba124eb048129447ce1e629febbb3fa6925677b2a46ac94d82654 +doccontainersize 194976 +doccontainerchecksum 249bfaabe93c4306c32c698eede8835cac334a27802253dc6ce1f380eaafa5c79fc3b86ee34ddd7b98df043cc0ccec137ae3d342cd3904f39203b0ffba2fc9b7 +docfiles size=49 + RELOC/doc/latex/basque-date/README details="Readme" + RELOC/doc/latex/basque-date/basque-date.pdf details="Package documentation" +srccontainersize 3180 +srccontainerchecksum f38091d9c38f86efa401f11759c536dc3ec041688ef9b1909dbdb5661ea096b7e4d69ee78a5beb194e1cdb24afc8ea07e26f2c9c45777aae517351fd4f3a2b86 +srcfiles size=4 + RELOC/source/latex/basque-date/basque-date.dtx + RELOC/source/latex/basque-date/basque-date.ins +runfiles size=2 + RELOC/tex/latex/basque-date/basque-date.sty +catalogue-ctan /macros/latex/contrib/basque-date +catalogue-license lppl1.2 +catalogue-topics basque date-time +catalogue-version 1.05 + +name bath-bst +category Package +revision 57925 +shortdesc Harvard referencing style as recommended by the University of Bath Library +relocated 1 +longdesc This package provides a BibTeX style to format reference lists +longdesc in the Harvard style recommended by the University of Bath +longdesc Library. It should be used in conjunction with natbib for +longdesc citations. +containersize 7976 +containerchecksum af8b36282e28556b9dfc8729143d2d38cc49d524df5a0280dbce6536e65dab1266b7b8fc31dd878b5540b9794f90309fcaa6fb14fcd6a069de68ee287bddb386 +doccontainersize 855132 +doccontainerchecksum 5cf9e77bd84dacb999edc16d81d5cc0ea54bccd25ecbdff21be8eaa8a6ec2e5db893b77ab0235fcee1c4c234d5ab8cccf52f102948279d0859e37e8b291f13ec +docfiles size=247 + RELOC/doc/bibtex/bath-bst/README.md details="Readme" + RELOC/doc/bibtex/bath-bst/bath-bst-v1.bib + RELOC/doc/bibtex/bath-bst/bath-bst-v1.pdf details="Documentation of version 1 style" + RELOC/doc/bibtex/bath-bst/bath-bst-v1.tex + RELOC/doc/bibtex/bath-bst/bath-bst.bib + RELOC/doc/bibtex/bath-bst/bath-bst.pdf details="Package documentation" +srccontainersize 32392 +srccontainerchecksum 76c9e3b0ae60b42caca389a43f3e3b69e8f28331f0037049febff40f4c990d38373a8fdba1fc22b3afaa13a79e607b9c0f596fc130fa2bb43830248af514c51e +srcfiles size=40 + RELOC/source/bibtex/bath-bst/Makefile + RELOC/source/bibtex/bath-bst/bath-bst.dtx +runfiles size=26 + RELOC/bibtex/bst/bath-bst/bath.bst + RELOC/bibtex/bst/bath-bst/bathx.bst +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-license lppl1.3c +catalogue-topics bibtex-sty +catalogue-version 4.0 + +name bbcard +category Package +revision 19440 +shortdesc Bullshit bingo, calendar and baseball-score cards +relocated 1 +longdesc Three jiffy packages for creating cards of various sorts with +longdesc MetaPost. +containersize 6828 +containerchecksum ac7fff708b3e25312460a740241ed003ee471f84dd4d30388d9cde8380ec9a6b6fa6fd6aba69b170c464a25bec44f1669fabc4ac2d7d3e216885b7e683f88af6 +doccontainersize 2200 +doccontainerchecksum 9e4561e97ea77c84e3c1cc8f75ca61318937c45b7b50dab66d6745f61725b6397458a05e50a267937bf6db4b28558ff0e9f2225078b9516fe574620982ab2cb4 +docfiles size=4 + RELOC/doc/metapost/bbcard/README.TEXLIVE + RELOC/doc/metapost/bbcard/README.bbcard details="Bullshit bingo readme" + RELOC/doc/metapost/bbcard/README.calendar details="Calendar readme" + RELOC/doc/metapost/bbcard/README.scorecard details="Scorecard readme" +runfiles size=6 + RELOC/metapost/bbcard/bbcard.mp + RELOC/metapost/bbcard/breakwidth.mp + RELOC/metapost/bbcard/calendar.mp + RELOC/metapost/bbcard/scorecard.mp +catalogue-ctan /graphics/metapost/contrib/macros/bbcard +catalogue-license pd +catalogue-topics games calendar card-gen + +name bbding +category Package +revision 17186 +shortdesc A symbol (dingbat) font and LaTeX macros for its use +relocated 1 +longdesc A symbol font (distributed as Metafont source) that contains +longdesc many of the symbols of the Zapf dingbats set, together with an +longdesc NFSS interface for using the font. An Adobe Type 1 version of +longdesc the fonts is available in the niceframe fonts bundle. +containersize 11688 +containerchecksum d5505fd7aaffead426a873844112e11fba47694ab07d0f5c88be31188fbf4a09ed4b8f8bce75221b2b2efb3ff81fc132fe54c2634f32679e2e2041944ec92f7d +doccontainersize 437588 +doccontainerchecksum a1425b521b1c8178bd6c9b059acf034080be6f3f312decb575b7541d34a6e1de926965cde8701061ffcb57147052b1495b21142f0eac645596a783820eb6200a +docfiles size=131 + RELOC/doc/latex/bbding/README details="Readme" + RELOC/doc/latex/bbding/bbding.pdf details="Package documentation" + RELOC/doc/latex/bbding/bbding10.org +srccontainersize 10152 +srccontainerchecksum be0e2b1332835920a3c93ec69ae53fe83df4918db9d3080716d7b77edf999a87f54a4c87ccbe4d48b008403539a514810f35c6b2a59d8be0ed6968f6a91ba129 +srcfiles size=9 + RELOC/source/latex/bbding/bbding.dtx + RELOC/source/latex/bbding/bbding.ins +runfiles size=24 + RELOC/fonts/source/public/bbding/bbding10.mf + RELOC/fonts/tfm/public/bbding/bbding10.tfm + RELOC/tex/latex/bbding/Uding.fd + RELOC/tex/latex/bbding/bbding.sty +catalogue-ctan /fonts/bbding +catalogue-license lppl +catalogue-topics font font-symbol font-mf +catalogue-version 1.01 + +name bbm +category Package +revision 15878 +shortdesc "Blackboard-style" cm fonts +relocated 1 +longdesc Blackboard variants of Computer Modern fonts. The fonts are +longdesc distributed as Metafont source (only); LaTeX support is +longdesc available with the bbm-macros package. The Sauter font package +longdesc has Metafont parameter source files for building the fonts at +longdesc more sizes than you could reasonably imagine. A sample of these +longdesc fonts appears in the blackboard bold sampler. +containersize 32616 +containerchecksum d795fb56f2ba57dea55a546244c5d07bb20c104cb9d1e6f9b6c229df9e5fa4244f8bb883bcddc150e1072453cb518d31c110bb85d157b4fbfeb47195da939619 +doccontainersize 2288 +doccontainerchecksum 034d880588fa88d97045d73dd651a0b3573c624dbbf1d2f9fee046c59f007b9e3e2121d5d773b34aa7b0bc8c72daa540447981bf60731e64d99cde49b5f6e911 +docfiles size=4 + RELOC/doc/fonts/bbm/README details="Readme" + RELOC/doc/fonts/bbm/gfbatch.batch + RELOC/doc/fonts/bbm/mfbatch.batch + RELOC/doc/fonts/bbm/test.tex +runfiles size=159 + RELOC/fonts/source/public/bbm/bbm10.mf + RELOC/fonts/source/public/bbm/bbm12.mf + RELOC/fonts/source/public/bbm/bbm17.mf + RELOC/fonts/source/public/bbm/bbm5.mf + RELOC/fonts/source/public/bbm/bbm6.mf + RELOC/fonts/source/public/bbm/bbm7.mf + RELOC/fonts/source/public/bbm/bbm8.mf + RELOC/fonts/source/public/bbm/bbm9.mf + RELOC/fonts/source/public/bbm/bbmb10.mf + RELOC/fonts/source/public/bbm/bbmbx10.mf + RELOC/fonts/source/public/bbm/bbmbx12.mf + RELOC/fonts/source/public/bbm/bbmbx5.mf + RELOC/fonts/source/public/bbm/bbmbx6.mf + RELOC/fonts/source/public/bbm/bbmbx7.mf + RELOC/fonts/source/public/bbm/bbmbx8.mf + RELOC/fonts/source/public/bbm/bbmbx9.mf + RELOC/fonts/source/public/bbm/bbmbxsl10.mf + RELOC/fonts/source/public/bbm/bbmdunh10.mf + RELOC/fonts/source/public/bbm/bbmfib8.mf + RELOC/fonts/source/public/bbm/bbmfxib8.mf + RELOC/fonts/source/public/bbm/bbminch.mf + RELOC/fonts/source/public/bbm/bbmsl10.mf + RELOC/fonts/source/public/bbm/bbmsl12.mf + RELOC/fonts/source/public/bbm/bbmsl8.mf + RELOC/fonts/source/public/bbm/bbmsl9.mf + RELOC/fonts/source/public/bbm/bbmsltt10.mf + RELOC/fonts/source/public/bbm/bbmss10.mf + RELOC/fonts/source/public/bbm/bbmss12.mf + RELOC/fonts/source/public/bbm/bbmss17.mf + RELOC/fonts/source/public/bbm/bbmss8.mf + RELOC/fonts/source/public/bbm/bbmss9.mf + RELOC/fonts/source/public/bbm/bbmssbx10.mf + RELOC/fonts/source/public/bbm/bbmssdc10.mf + RELOC/fonts/source/public/bbm/bbmssi10.mf + RELOC/fonts/source/public/bbm/bbmssi12.mf + RELOC/fonts/source/public/bbm/bbmssi17.mf + RELOC/fonts/source/public/bbm/bbmssi8.mf + RELOC/fonts/source/public/bbm/bbmssi9.mf + RELOC/fonts/source/public/bbm/bbmssq8.mf + RELOC/fonts/source/public/bbm/bbmssqi8.mf + RELOC/fonts/source/public/bbm/bbmtt10.mf + RELOC/fonts/source/public/bbm/bbmtt12.mf + RELOC/fonts/source/public/bbm/bbmtt8.mf + RELOC/fonts/source/public/bbm/bbmtt9.mf + RELOC/fonts/source/public/bbm/bbmvtt10.mf + RELOC/fonts/source/public/bbm/blbbase.mf + RELOC/fonts/source/public/bbm/blbord.mf + RELOC/fonts/source/public/bbm/blbordl.mf + RELOC/fonts/source/public/bbm/blbordsp.mf + RELOC/fonts/source/public/bbm/blbordu.mf + RELOC/fonts/tfm/public/bbm/bbm10.tfm + RELOC/fonts/tfm/public/bbm/bbm12.tfm + RELOC/fonts/tfm/public/bbm/bbm17.tfm + RELOC/fonts/tfm/public/bbm/bbm5.tfm + RELOC/fonts/tfm/public/bbm/bbm6.tfm + RELOC/fonts/tfm/public/bbm/bbm7.tfm + RELOC/fonts/tfm/public/bbm/bbm8.tfm + RELOC/fonts/tfm/public/bbm/bbm9.tfm + RELOC/fonts/tfm/public/bbm/bbmb10.tfm + RELOC/fonts/tfm/public/bbm/bbmbx10.tfm + RELOC/fonts/tfm/public/bbm/bbmbx12.tfm + RELOC/fonts/tfm/public/bbm/bbmbx5.tfm + RELOC/fonts/tfm/public/bbm/bbmbx6.tfm + RELOC/fonts/tfm/public/bbm/bbmbx7.tfm + RELOC/fonts/tfm/public/bbm/bbmbx8.tfm + RELOC/fonts/tfm/public/bbm/bbmbx9.tfm + RELOC/fonts/tfm/public/bbm/bbmbxsl10.tfm + RELOC/fonts/tfm/public/bbm/bbmdunh10.tfm + RELOC/fonts/tfm/public/bbm/bbmfib8.tfm + RELOC/fonts/tfm/public/bbm/bbmfxib8.tfm + RELOC/fonts/tfm/public/bbm/bbmsl10.tfm + RELOC/fonts/tfm/public/bbm/bbmsl12.tfm + RELOC/fonts/tfm/public/bbm/bbmsl8.tfm + RELOC/fonts/tfm/public/bbm/bbmsl9.tfm + RELOC/fonts/tfm/public/bbm/bbmss10.tfm + RELOC/fonts/tfm/public/bbm/bbmss12.tfm + RELOC/fonts/tfm/public/bbm/bbmss17.tfm + RELOC/fonts/tfm/public/bbm/bbmss8.tfm + RELOC/fonts/tfm/public/bbm/bbmss9.tfm + RELOC/fonts/tfm/public/bbm/bbmssbx10.tfm + RELOC/fonts/tfm/public/bbm/bbmssdc10.tfm + RELOC/fonts/tfm/public/bbm/bbmssi10.tfm + RELOC/fonts/tfm/public/bbm/bbmssi12.tfm + RELOC/fonts/tfm/public/bbm/bbmssi17.tfm + RELOC/fonts/tfm/public/bbm/bbmssi8.tfm + RELOC/fonts/tfm/public/bbm/bbmssi9.tfm + RELOC/fonts/tfm/public/bbm/bbmssq8.tfm + RELOC/fonts/tfm/public/bbm/bbmssqi8.tfm + RELOC/fonts/tfm/public/bbm/bbmtt10.tfm + RELOC/fonts/tfm/public/bbm/bbmtt12.tfm + RELOC/fonts/tfm/public/bbm/bbmtt8.tfm + RELOC/fonts/tfm/public/bbm/bbmtt9.tfm +catalogue-also bbold doublestroke mbboard +catalogue-ctan /fonts/cm/bbm +catalogue-license other-free +catalogue-topics font font-maths font-bbd font-mf + +name bbm-macros +category Package +revision 17224 +shortdesc LaTeX support for "blackboard-style" cm fonts +relocated 1 +longdesc Provides LaTeX support for Blackboard variants of Computer +longdesc Modern fonts. Declares a font family bbm so you can in +longdesc principle write running text in blackboard bold, and lots of +longdesc math alphabets for using the fonts within maths. +containersize 1708 +containerchecksum 06f59837d585c721da77f289119bd4b45a91e3d72543ed3e4de76f84a2916431a733baa379b83a3e299d166e27bc0350df6f053d1ec744c52dcd0297d416fdf1 +doccontainersize 301276 +doccontainerchecksum 20a29809dffe8090e5c067dd2df9dd5a5f7de6ec7abbc01eb14b5a500f37cd62b50914733edf7403af89a1db86ebe10b3d7262f519dc01dc35b29ba0c70c3478 +docfiles size=79 + RELOC/doc/latex/bbm-macros/README details="Readme" + RELOC/doc/latex/bbm-macros/bbm.pdf details="Package documentation" +srccontainersize 3916 +srccontainerchecksum 11d1d83d558a7943e35e8146b7f44df6a553a513f8e0478e1a9c773d66d004a4110288f91896b283dc4153372bb638a444c53b9184745858976a7e6aac69b121 +srcfiles size=5 + RELOC/source/latex/bbm-macros/bbm.drv + RELOC/source/latex/bbm-macros/bbm.dtx + RELOC/source/latex/bbm-macros/bbm.ins +runfiles size=4 + RELOC/tex/latex/bbm-macros/bbm.sty + RELOC/tex/latex/bbm-macros/ubbm.fd + RELOC/tex/latex/bbm-macros/ubbmss.fd + RELOC/tex/latex/bbm-macros/ubbmtt.fd +catalogue-ctan /macros/latex/contrib/bbm +catalogue-license lppl +catalogue-topics font-supp + +name bbold +category Package +revision 17187 +shortdesc Sans serif blackboard bold +relocated 1 +longdesc A geometric sans serif blackboard bold font, for use in +longdesc mathematics; Metafont sources are provided, as well as macros +longdesc for use with LaTeX. The Sauter font package has Metafont +longdesc parameter source files for building the fonts at more sizes +longdesc than you could reasonably imagine. See the blackboard sampler +longdesc for a feel for the font's appearance. +containersize 15768 +containerchecksum 1b123e9135179244050ed6f97f17efa2a43c42018b2fa3b01c956a99886ae6696c83df2a0d61ce95cba925c2bb4c734d77253aab165fe9f622695f557fcb0abe +doccontainersize 153072 +doccontainerchecksum c754e81f83a53c4a1cacbd2638d550ad178e0e26d7feb592585579a27b780e11733a7dc68fd374ac575cc7866a1e5417d3df0d2b973e7278d1012657bf340390 +docfiles size=41 + RELOC/doc/latex/bbold/INSTALL + RELOC/doc/latex/bbold/README details="Readme" + RELOC/doc/latex/bbold/bbold.pdf details="Package documentation" +srccontainersize 4596 +srccontainerchecksum a7a61bb796d3ee618ddc39d471bb29d1b7350a40bd7a97d44d4a1c7cd5e4eb5d5783d2ea46313344468406d1d25c71ac322ac4bbbf7b06aac35bc03651e7ccbb +srcfiles size=5 + RELOC/source/latex/bbold/bbold.dtx + RELOC/source/latex/bbold/bbold.ins + RELOC/source/latex/bbold/fonttabl.sty +runfiles size=45 + RELOC/fonts/source/public/bbold/bbbase.mf + RELOC/fonts/source/public/bbold/bbgreekl.mf + RELOC/fonts/source/public/bbold/bbgreeku.mf + RELOC/fonts/source/public/bbold/bbligs.mf + RELOC/fonts/source/public/bbold/bblower.mf + RELOC/fonts/source/public/bbold/bbnum.mf + RELOC/fonts/source/public/bbold/bbold.mf + RELOC/fonts/source/public/bbold/bbold10.mf + RELOC/fonts/source/public/bbold/bbold12.mf + RELOC/fonts/source/public/bbold/bbold17.mf + RELOC/fonts/source/public/bbold/bbold5.mf + RELOC/fonts/source/public/bbold/bbold6.mf + RELOC/fonts/source/public/bbold/bbold7.mf + RELOC/fonts/source/public/bbold/bbold8.mf + RELOC/fonts/source/public/bbold/bbold9.mf + RELOC/fonts/source/public/bbold/bbparams.mf + RELOC/fonts/source/public/bbold/bbpunc.mf + RELOC/fonts/source/public/bbold/bbupper.mf + RELOC/fonts/tfm/public/bbold/bbold10.tfm + RELOC/fonts/tfm/public/bbold/bbold12.tfm + RELOC/fonts/tfm/public/bbold/bbold17.tfm + RELOC/fonts/tfm/public/bbold/bbold5.tfm + RELOC/fonts/tfm/public/bbold/bbold6.tfm + RELOC/fonts/tfm/public/bbold/bbold7.tfm + RELOC/fonts/tfm/public/bbold/bbold8.tfm + RELOC/fonts/tfm/public/bbold/bbold9.tfm + RELOC/tex/latex/bbold/Ubbold.fd + RELOC/tex/latex/bbold/bbold.sty +catalogue-also bbm doublestroke mbboard +catalogue-ctan /fonts/bbold +catalogue-license bsd +catalogue-topics font font-maths font-bbd font-mf +catalogue-version 1.01 + +name bbold-type1 +category Package +revision 33143 +shortdesc An Adobe Type 1 format version of the bbold font +relocated 1 +longdesc The files offer an Adobe Type 1 format version of the 5pt, 7pt +longdesc and 10pt versions of the bbold fonts. The distribution also +longdesc includes a map file, for use when incorporating the fonts into +longdesc TeX documents; the macros provided with the original Metafont +longdesc version of the font serve for the scaleable version, too. The +longdesc fonts were produced to be part of the TeX distribution from +longdesc Y&Y; they were generously donated to the TeX Users Group when +longdesc Y&Y closed its doors as a business. +execute addMixedMap bbold.map +containersize 70004 +containerchecksum 86631e16388a447db7c521087eccbb666612933f6fee8eace091e00b20b5070d38ebc2d4d0a754536eacef9e9e6470f237d184e00cc4419bff85087f54b81566 +doccontainersize 39920 +doccontainerchecksum ad841ac652a7985ab907572f66462091b1c40f7cdab2b00086209a2d96056e0a9e32842dfbc22c829b27799882252da95e3d10d4a9dd174f487327d5f3ac3899 +docfiles size=12 + RELOC/doc/fonts/bbold-type1/README details="Readme" + RELOC/doc/fonts/bbold-type1/test.pdf + RELOC/doc/fonts/bbold-type1/test.tex +runfiles size=28 + RELOC/fonts/afm/public/bbold-type1/bbold10.afm + RELOC/fonts/afm/public/bbold-type1/bbold5.afm + RELOC/fonts/afm/public/bbold-type1/bbold7.afm + RELOC/fonts/map/dvips/bbold-type1/bbold.map + RELOC/fonts/type1/public/bbold-type1/bbold10.pfb + RELOC/fonts/type1/public/bbold-type1/bbold5.pfb + RELOC/fonts/type1/public/bbold-type1/bbold7.pfb +catalogue-ctan /fonts/bbold-type1 +catalogue-license other-free +catalogue-topics font font-maths font-bbd font-type1 + +name bchart +category Package +revision 43928 +shortdesc Draw simple bar charts in LaTeX +relocated 1 +longdesc The package provides horizontal bar charts, drawn using TikZ on +longdesc a numeric X-axis. The focus of the package is simplicity and +longdesc aesthetics. +containersize 1868 +containerchecksum b78e4017d0355107e1e73670c20457c2dc314dd0537bb3e699df3118231b5b3c0b2acbf50ca07f71216d56c81acbb031d38dea7b42099165a03a8049f62021a0 +doccontainersize 148224 +doccontainerchecksum 762b75974de179360fcfe6057102919644a564ad2c3431ef25e2c373267ec063ac8350caf0038a5964345491355ddda4f5190eff6de93f2c2da7ab168c829fcd +docfiles size=44 + RELOC/doc/latex/bchart/CHANGES.txt + RELOC/doc/latex/bchart/LICENSE.txt + RELOC/doc/latex/bchart/README.md details="Readme" + RELOC/doc/latex/bchart/bchart.pdf details="Package documentation" + RELOC/doc/latex/bchart/bchart.tex +runfiles size=2 + RELOC/tex/latex/bchart/bchart.sty +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-license mit +catalogue-topics genchart pgf-tikz +catalogue-version 0.1.3 + +name bclogo +category Package +revision 39364 +shortdesc Creating colourful boxes with logos +relocated 1 +longdesc The package facilitates the creation of colorful boxes with a +longdesc title and logo. It may use either tikz or PSTricks as graphics +longdesc engine. +containersize 239356 +containerchecksum 9afc02338b4141607cfd50d7678832304339d0b532464ada6fbc22c58d06dbc5a0793098c9e24617ba5296c3f7b22bccf16062017701608a758e4a26c05f12a2 +doccontainersize 662208 +doccontainerchecksum 8671f8095005a0abec84a316da59f914d19d8fe0f4d33b13e73d6ddabcefd3ec7fedcfc8ce9dcf2ed3380a129f58bec16f73694a5d2769a18618142de93be38b +docfiles size=192 + RELOC/doc/latex/bclogo/LISEZ-MOI details="Lisez moi (French)" language="fr" + RELOC/doc/latex/bclogo/README details="Readme (English)" language="en" + RELOC/doc/latex/bclogo/bclogo-doc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/bclogo/bclogo-doc.tex + RELOC/doc/latex/bclogo/bclogo.pdf + RELOC/doc/latex/bclogo/brace.mps + RELOC/doc/latex/bclogo/fond.pdf + RELOC/doc/latex/bclogo/index.xml + RELOC/doc/latex/bclogo/losanges.mps + RELOC/doc/latex/bclogo/spir.mps + RELOC/doc/latex/bclogo/syracuse-crop.pdf + RELOC/doc/latex/bclogo/syracuse.pdf + RELOC/doc/latex/bclogo/syracuse.tex +runfiles size=382 + RELOC/metapost/bclogo/bc-attention.mp + RELOC/metapost/bclogo/bc-aux-301.mp + RELOC/metapost/bclogo/bc-bombe.mp + RELOC/metapost/bclogo/bc-book.mp + RELOC/metapost/bclogo/bc-calendrier.mp + RELOC/metapost/bclogo/bc-cle.mp + RELOC/metapost/bclogo/bc-clefa.mp + RELOC/metapost/bclogo/bc-clesol.mp + RELOC/metapost/bclogo/bc-coeur.mp + RELOC/metapost/bclogo/bc-crayon.mp + RELOC/metapost/bclogo/bc-cube.mp + RELOC/metapost/bclogo/bc-dallemagne.mp + RELOC/metapost/bclogo/bc-danger.mp + RELOC/metapost/bclogo/bc-dautriche.mp + RELOC/metapost/bclogo/bc-dbelgique.mp + RELOC/metapost/bclogo/bc-dbulgarie.mp + RELOC/metapost/bclogo/bc-dfrance.mp + RELOC/metapost/bclogo/bc-ditalie.mp + RELOC/metapost/bclogo/bc-dluxembourg.mp + RELOC/metapost/bclogo/bc-dodecaedre.mp + RELOC/metapost/bclogo/bc-dpaysbas.mp + RELOC/metapost/bclogo/bc-dz.mp + RELOC/metapost/bclogo/bc-eclaircie.mp + RELOC/metapost/bclogo/bc-etoile.mp + RELOC/metapost/bclogo/bc-femme.mp + RELOC/metapost/bclogo/bc-feujaune.mp + RELOC/metapost/bclogo/bc-feurouge.mp + RELOC/metapost/bclogo/bc-feutricolore.mp + RELOC/metapost/bclogo/bc-feuvert.mp + RELOC/metapost/bclogo/bc-fleur.mp + RELOC/metapost/bclogo/bc-homme.mp + RELOC/metapost/bclogo/bc-horloge.mp + RELOC/metapost/bclogo/bc-icosaedre.mp + RELOC/metapost/bclogo/bc-info.mp + RELOC/metapost/bclogo/bc-inter.mp + RELOC/metapost/bclogo/bc-interdit.mp + RELOC/metapost/bclogo/bc-lampe.mp + RELOC/metapost/bclogo/bc-loupe.mp + RELOC/metapost/bclogo/bc-neige.mp + RELOC/metapost/bclogo/bc-note.mp + RELOC/metapost/bclogo/bc-nucleaire.mp + RELOC/metapost/bclogo/bc-octaedre.mp + RELOC/metapost/bclogo/bc-oeil.mp + RELOC/metapost/bclogo/bc-orne.mp + RELOC/metapost/bclogo/bc-ours.mp + RELOC/metapost/bclogo/bc-outil.mp + RELOC/metapost/bclogo/bc-peaceandlove.mp + RELOC/metapost/bclogo/bc-pluie.mp + RELOC/metapost/bclogo/bc-plume.mp + RELOC/metapost/bclogo/bc-poisson.mp + RELOC/metapost/bclogo/bc-recyclage.mp + RELOC/metapost/bclogo/bc-rosevents.mp + RELOC/metapost/bclogo/bc-smiley-bonnehumeur.mp + RELOC/metapost/bclogo/bc-smiley-mauvaisehumeur.mp + RELOC/metapost/bclogo/bc-soleil.mp + RELOC/metapost/bclogo/bc-stop.mp + RELOC/metapost/bclogo/bc-takecare.mp + RELOC/metapost/bclogo/bc-tetraedre.mp + RELOC/metapost/bclogo/bc-trefle.mp + RELOC/metapost/bclogo/bc-trombone.mp + RELOC/metapost/bclogo/bc-valetcoeur.mp + RELOC/metapost/bclogo/bc-velo.mp + RELOC/metapost/bclogo/bc-yin.mp + RELOC/metapost/bclogo/brace.mp + RELOC/metapost/bclogo/losanges.mp + RELOC/metapost/bclogo/spir.mp + RELOC/tex/latex/bclogo/bc-attention.mps + RELOC/tex/latex/bclogo/bc-aux-301.mps + RELOC/tex/latex/bclogo/bc-bombe.mps + RELOC/tex/latex/bclogo/bc-book.mps + RELOC/tex/latex/bclogo/bc-calendrier.mps + RELOC/tex/latex/bclogo/bc-cle.mps + RELOC/tex/latex/bclogo/bc-clefa.mps + RELOC/tex/latex/bclogo/bc-clesol.mps + RELOC/tex/latex/bclogo/bc-coeur.mps + RELOC/tex/latex/bclogo/bc-crayon.mps + RELOC/tex/latex/bclogo/bc-cube.mps + RELOC/tex/latex/bclogo/bc-dallemagne.mps + RELOC/tex/latex/bclogo/bc-danger.mps + RELOC/tex/latex/bclogo/bc-dautriche.mps + RELOC/tex/latex/bclogo/bc-dbelgique.mps + RELOC/tex/latex/bclogo/bc-dbulgarie.mps + RELOC/tex/latex/bclogo/bc-dfrance.mps + RELOC/tex/latex/bclogo/bc-ditalie.mps + RELOC/tex/latex/bclogo/bc-dluxembourg.mps + RELOC/tex/latex/bclogo/bc-dodecaedre.mps + RELOC/tex/latex/bclogo/bc-dpaysbas.mps + RELOC/tex/latex/bclogo/bc-dz.mps + RELOC/tex/latex/bclogo/bc-eclaircie.mps + RELOC/tex/latex/bclogo/bc-etoile.mps + RELOC/tex/latex/bclogo/bc-femme.mps + RELOC/tex/latex/bclogo/bc-feujaune.mps + RELOC/tex/latex/bclogo/bc-feurouge.mps + RELOC/tex/latex/bclogo/bc-feutricolore.mps + RELOC/tex/latex/bclogo/bc-feuvert.mps + RELOC/tex/latex/bclogo/bc-fleur.mps + RELOC/tex/latex/bclogo/bc-homme.mps + RELOC/tex/latex/bclogo/bc-horloge.mps + RELOC/tex/latex/bclogo/bc-icosaedre.mps + RELOC/tex/latex/bclogo/bc-info.mps + RELOC/tex/latex/bclogo/bc-inter.mps + RELOC/tex/latex/bclogo/bc-interdit.mps + RELOC/tex/latex/bclogo/bc-lampe.mps + RELOC/tex/latex/bclogo/bc-loupe.mps + RELOC/tex/latex/bclogo/bc-neige.mps + RELOC/tex/latex/bclogo/bc-note.mps + RELOC/tex/latex/bclogo/bc-nucleaire.mps + RELOC/tex/latex/bclogo/bc-octaedre.mps + RELOC/tex/latex/bclogo/bc-oeil.mps + RELOC/tex/latex/bclogo/bc-orne.mps + RELOC/tex/latex/bclogo/bc-ours.mps + RELOC/tex/latex/bclogo/bc-outil.mps + RELOC/tex/latex/bclogo/bc-peaceandlove.mps + RELOC/tex/latex/bclogo/bc-pluie.mps + RELOC/tex/latex/bclogo/bc-plume.mps + RELOC/tex/latex/bclogo/bc-poisson.mps + RELOC/tex/latex/bclogo/bc-recyclage.mps + RELOC/tex/latex/bclogo/bc-rosevents.mps + RELOC/tex/latex/bclogo/bc-smiley-bonnehumeur.mps + RELOC/tex/latex/bclogo/bc-smiley-mauvaisehumeur.mps + RELOC/tex/latex/bclogo/bc-soleil.mps + RELOC/tex/latex/bclogo/bc-stop.mps + RELOC/tex/latex/bclogo/bc-takecare.mps + RELOC/tex/latex/bclogo/bc-tetraedre.mps + RELOC/tex/latex/bclogo/bc-trefle.mps + RELOC/tex/latex/bclogo/bc-trombone.mps + RELOC/tex/latex/bclogo/bc-valetcoeur.mps + RELOC/tex/latex/bclogo/bc-velo.mps + RELOC/tex/latex/bclogo/bc-yin.mps + RELOC/tex/latex/bclogo/bclogo.sty +catalogue-ctan /graphics/bclogo +catalogue-license lppl1.3 +catalogue-topics logo boxing +catalogue-version 3.1 + +name beamer +category Package +revision 58537 +shortdesc A LaTeX class for producing presentations and slides +relocated 1 +longdesc The beamer LaTeX class can be used for producing slides. The +longdesc class works in both PostScript and direct PDF output modes, +longdesc using the pgf graphics system for visual effects. Content is +longdesc created in the frame environment, and each frame can be made up +longdesc of a number of slides using a simple notation for specifying +longdesc material to appear on each slide within a frame. Short versions +longdesc of title, authors, institute can also be specified as optional +longdesc parameters. Whole frame graphics are supported by plain frames. +longdesc The class supports figure and table environments, transparency +longdesc effects, varying slide transitions and animations. Beamer also +longdesc provides compatibility with other packages like prosper. The +longdesc package now incorporates the functionality of the former +longdesc translator package, which is used for customising the package +longdesc for use in other language environments. Beamer depends on the +longdesc following other packages: atbegshi, etoolbox, hyperref, ifpdf, +longdesc pgf, and translator. +depend amscls +depend amsfonts +depend amsmath +depend atbegshi +depend etoolbox +depend geometry +depend hyperref +depend iftex +depend pgf +depend translator +depend xcolor +containersize 165816 +containerchecksum 569d6ce4661185964583f9be628df4ce898d70d198c2cbfd0f687f60e38b59beac6b7fbe4db49b16a0ba7d5dac837f62df33d38131d8c729044b320c3ecc041e +doccontainersize 2909492 +doccontainerchecksum 2b74cd7cb7c4481d2b9070e93c7c265244b9d8b9168470754c6a0df5d457e412c00e041e4643f644f942189268d360121ac01c001a2fb55760df326e06be940b +docfiles size=1061 + RELOC/doc/latex/beamer/AUTHORS.md + RELOC/doc/latex/beamer/CHANGELOG.md + RELOC/doc/latex/beamer/LICENSE.md + RELOC/doc/latex/beamer/README.md details="Readme" + RELOC/doc/latex/beamer/beamercolorthemeexample.tex + RELOC/doc/latex/beamer/beamerexample-conference-talk.pdf + RELOC/doc/latex/beamer/beamerexample-lecture-beamer-version.pdf + RELOC/doc/latex/beamer/beamerexample-lecture-print-version.pdf + RELOC/doc/latex/beamer/beamerfontthemeexample.tex + RELOC/doc/latex/beamer/beamerinnerthemeexample.tex + RELOC/doc/latex/beamer/beamerlogo.pdf + RELOC/doc/latex/beamer/beamerouterthemeexample.tex + RELOC/doc/latex/beamer/beamerthemeexample.tex + RELOC/doc/latex/beamer/beamerthemeexamplebase.tex + RELOC/doc/latex/beamer/beamerug-animations.tex + RELOC/doc/latex/beamer/beamerug-color.tex + RELOC/doc/latex/beamer/beamerug-compatibility.tex + RELOC/doc/latex/beamer/beamerug-elements.tex + RELOC/doc/latex/beamer/beamerug-emulation.tex + RELOC/doc/latex/beamer/beamerug-fonts.tex + RELOC/doc/latex/beamer/beamerug-frames.tex + RELOC/doc/latex/beamer/beamerug-globalstructure.tex + RELOC/doc/latex/beamer/beamerug-graphics.tex + RELOC/doc/latex/beamer/beamerug-guidelines.tex + RELOC/doc/latex/beamer/beamerug-installation.tex + RELOC/doc/latex/beamer/beamerug-interaction.tex + RELOC/doc/latex/beamer/beamerug-introduction.tex + RELOC/doc/latex/beamer/beamerug-license.tex + RELOC/doc/latex/beamer/beamerug-localstructure.tex + RELOC/doc/latex/beamer/beamerug-macros.tex + RELOC/doc/latex/beamer/beamerug-nonpresentation.tex + RELOC/doc/latex/beamer/beamerug-notes.tex + RELOC/doc/latex/beamer/beamerug-overlays.tex + RELOC/doc/latex/beamer/beamerug-solutions.tex + RELOC/doc/latex/beamer/beamerug-themes.tex + RELOC/doc/latex/beamer/beamerug-transparencies.tex + RELOC/doc/latex/beamer/beamerug-tricks.tex + RELOC/doc/latex/beamer/beamerug-tutorial.tex + RELOC/doc/latex/beamer/beamerug-twoscreens.tex + RELOC/doc/latex/beamer/beamerug-workflow.tex + RELOC/doc/latex/beamer/beameruserguide.pdf details="Package documentation" + RELOC/doc/latex/beamer/beameruserguide.tex + RELOC/doc/latex/beamer/emulation-examples/beamerexample-foils.tex + RELOC/doc/latex/beamer/emulation-examples/beamerexample-prosper.tex + RELOC/doc/latex/beamer/emulation-examples/beamerexample-seminar.tex + RELOC/doc/latex/beamer/emulation-examples/beamerexample-texpower.tex + RELOC/doc/latex/beamer/examples/a-conference-talk/beamerexample-conference-talk.tex + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-beamer-version.tex + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-body.tex + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-logo.pdf + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic1.jpg + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic2.jpg + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic3.jpg + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic4.jpg + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic5.jpg + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic6.jpg + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-print-version.tex + RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-style.tex + RELOC/doc/latex/beamer/licenses/fdl.txt + RELOC/doc/latex/beamer/licenses/gpl-2.0.txt + RELOC/doc/latex/beamer/licenses/lppl-1-3c.txt + RELOC/doc/latex/beamer/licenses/manifest-code.txt + RELOC/doc/latex/beamer/licenses/manifest-documentation.txt + RELOC/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.de.tex + RELOC/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.en.tex + RELOC/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.fr.tex + RELOC/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.de.tex + RELOC/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.en.tex + RELOC/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.fr.tex + RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.tex + RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.tex + RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.fr.tex +runfiles size=254 + RELOC/tex/latex/beamer/beamer.cls + RELOC/tex/latex/beamer/beamerarticle.sty + RELOC/tex/latex/beamer/beamerbasearticle.sty + RELOC/tex/latex/beamer/beamerbaseauxtemplates.sty + RELOC/tex/latex/beamer/beamerbaseboxes.sty + RELOC/tex/latex/beamer/beamerbasecolor.sty + RELOC/tex/latex/beamer/beamerbasecompatibility.sty + RELOC/tex/latex/beamer/beamerbasedecode.sty + RELOC/tex/latex/beamer/beamerbasefont.sty + RELOC/tex/latex/beamer/beamerbaseframe.sty + RELOC/tex/latex/beamer/beamerbaseframecomponents.sty + RELOC/tex/latex/beamer/beamerbaseframesize.sty + RELOC/tex/latex/beamer/beamerbaselocalstructure.sty + RELOC/tex/latex/beamer/beamerbasemisc.sty + RELOC/tex/latex/beamer/beamerbasemodes.sty + RELOC/tex/latex/beamer/beamerbasenavigation.sty + RELOC/tex/latex/beamer/beamerbasenotes.sty + RELOC/tex/latex/beamer/beamerbaseoptions.sty + RELOC/tex/latex/beamer/beamerbaseoverlay.sty + RELOC/tex/latex/beamer/beamerbaserequires.sty + RELOC/tex/latex/beamer/beamerbasesection.sty + RELOC/tex/latex/beamer/beamerbasetemplates.sty + RELOC/tex/latex/beamer/beamerbasethemes.sty + RELOC/tex/latex/beamer/beamerbasetheorems.sty + RELOC/tex/latex/beamer/beamerbasetitle.sty + RELOC/tex/latex/beamer/beamerbasetoc.sty + RELOC/tex/latex/beamer/beamerbasetranslator.sty + RELOC/tex/latex/beamer/beamerbasetwoscreens.sty + RELOC/tex/latex/beamer/beamerbaseverbatim.sty + RELOC/tex/latex/beamer/beamercolorthemealbatross.sty + RELOC/tex/latex/beamer/beamercolorthemebeaver.sty + RELOC/tex/latex/beamer/beamercolorthemebeetle.sty + RELOC/tex/latex/beamer/beamercolorthemecrane.sty + RELOC/tex/latex/beamer/beamercolorthemedefault.sty + RELOC/tex/latex/beamer/beamercolorthemedolphin.sty + RELOC/tex/latex/beamer/beamercolorthemedove.sty + RELOC/tex/latex/beamer/beamercolorthemefly.sty + RELOC/tex/latex/beamer/beamercolorthemelily.sty + RELOC/tex/latex/beamer/beamercolorthememonarca.sty + RELOC/tex/latex/beamer/beamercolorthemeorchid.sty + RELOC/tex/latex/beamer/beamercolorthemerose.sty + RELOC/tex/latex/beamer/beamercolorthemeseagull.sty + RELOC/tex/latex/beamer/beamercolorthemeseahorse.sty + RELOC/tex/latex/beamer/beamercolorthemesidebartab.sty + RELOC/tex/latex/beamer/beamercolorthemespruce.sty + RELOC/tex/latex/beamer/beamercolorthemestructure.sty + RELOC/tex/latex/beamer/beamercolorthemewhale.sty + RELOC/tex/latex/beamer/beamercolorthemewolverine.sty + RELOC/tex/latex/beamer/beamerfoils.sty + RELOC/tex/latex/beamer/beamerfontthemedefault.sty + RELOC/tex/latex/beamer/beamerfontthemeprofessionalfonts.sty + RELOC/tex/latex/beamer/beamerfontthemeserif.sty + RELOC/tex/latex/beamer/beamerfontthemestructurebold.sty + RELOC/tex/latex/beamer/beamerfontthemestructureitalicserif.sty + RELOC/tex/latex/beamer/beamerfontthemestructuresmallcapsserif.sty + RELOC/tex/latex/beamer/beamericonarticle.20.eps + RELOC/tex/latex/beamer/beamericonarticle.20.pdf + RELOC/tex/latex/beamer/beamericonarticle.eps + RELOC/tex/latex/beamer/beamericonarticle.pdf + RELOC/tex/latex/beamer/beamericonarticle.tex + RELOC/tex/latex/beamer/beamericonbook.20.eps + RELOC/tex/latex/beamer/beamericonbook.20.pdf + RELOC/tex/latex/beamer/beamericonbook.eps + RELOC/tex/latex/beamer/beamericonbook.pdf + RELOC/tex/latex/beamer/beamericonbook.tex + RELOC/tex/latex/beamer/beamericononline.20.eps + RELOC/tex/latex/beamer/beamericononline.20.pdf + RELOC/tex/latex/beamer/beamericononline.eps + RELOC/tex/latex/beamer/beamericononline.pdf + RELOC/tex/latex/beamer/beamerinnerthemecircles.sty + RELOC/tex/latex/beamer/beamerinnerthemedefault.sty + RELOC/tex/latex/beamer/beamerinnerthemeinmargin.sty + RELOC/tex/latex/beamer/beamerinnerthemerectangles.sty + RELOC/tex/latex/beamer/beamerinnerthemerounded.sty + RELOC/tex/latex/beamer/beamerouterthemedefault.sty + RELOC/tex/latex/beamer/beamerouterthemeinfolines.sty + RELOC/tex/latex/beamer/beamerouterthememiniframes.sty + RELOC/tex/latex/beamer/beamerouterthemeshadow.sty + RELOC/tex/latex/beamer/beamerouterthemesidebar.sty + RELOC/tex/latex/beamer/beamerouterthemesmoothbars.sty + RELOC/tex/latex/beamer/beamerouterthemesmoothtree.sty + RELOC/tex/latex/beamer/beamerouterthemesplit.sty + RELOC/tex/latex/beamer/beamerouterthemetree.sty + RELOC/tex/latex/beamer/beamerpatchparalist.sty + RELOC/tex/latex/beamer/beamerprosper.sty + RELOC/tex/latex/beamer/beamerseminar.sty + RELOC/tex/latex/beamer/beamertexpower.sty + RELOC/tex/latex/beamer/beamerthemeAnnArbor.sty + RELOC/tex/latex/beamer/beamerthemeAntibes.sty + RELOC/tex/latex/beamer/beamerthemeBergen.sty + RELOC/tex/latex/beamer/beamerthemeBerkeley.sty + RELOC/tex/latex/beamer/beamerthemeBerlin.sty + RELOC/tex/latex/beamer/beamerthemeBoadilla.sty + RELOC/tex/latex/beamer/beamerthemeCambridgeUS.sty + RELOC/tex/latex/beamer/beamerthemeCopenhagen.sty + RELOC/tex/latex/beamer/beamerthemeDarmstadt.sty + RELOC/tex/latex/beamer/beamerthemeDresden.sty + RELOC/tex/latex/beamer/beamerthemeEastLansing.sty + RELOC/tex/latex/beamer/beamerthemeFrankfurt.sty + RELOC/tex/latex/beamer/beamerthemeGoettingen.sty + RELOC/tex/latex/beamer/beamerthemeHannover.sty + RELOC/tex/latex/beamer/beamerthemeIlmenau.sty + RELOC/tex/latex/beamer/beamerthemeJuanLesPins.sty + RELOC/tex/latex/beamer/beamerthemeLuebeck.sty + RELOC/tex/latex/beamer/beamerthemeMadrid.sty + RELOC/tex/latex/beamer/beamerthemeMalmoe.sty + RELOC/tex/latex/beamer/beamerthemeMarburg.sty + RELOC/tex/latex/beamer/beamerthemeMontpellier.sty + RELOC/tex/latex/beamer/beamerthemePaloAlto.sty + RELOC/tex/latex/beamer/beamerthemePittsburgh.sty + RELOC/tex/latex/beamer/beamerthemeRochester.sty + RELOC/tex/latex/beamer/beamerthemeSingapore.sty + RELOC/tex/latex/beamer/beamerthemeSzeged.sty + RELOC/tex/latex/beamer/beamerthemeWarsaw.sty + RELOC/tex/latex/beamer/beamerthemebars.sty + RELOC/tex/latex/beamer/beamerthemeboxes.sty + RELOC/tex/latex/beamer/beamerthemeclassic.sty + RELOC/tex/latex/beamer/beamerthemecompatibility.sty + RELOC/tex/latex/beamer/beamerthemedefault.sty + RELOC/tex/latex/beamer/beamerthemelined.sty + RELOC/tex/latex/beamer/beamerthemeplain.sty + RELOC/tex/latex/beamer/beamerthemeshadow.sty + RELOC/tex/latex/beamer/beamerthemesidebar.sty + RELOC/tex/latex/beamer/beamerthemesplit.sty + RELOC/tex/latex/beamer/beamerthemetree.sty + RELOC/tex/latex/beamer/multimedia.sty + RELOC/tex/latex/beamer/multimediasymbols.sty + RELOC/tex/latex/beamer/xmpmulti.sty +catalogue-contact-bugs https://github.com/josephwright/beamer/issues +catalogue-contact-repository https://github.com/josephwright/beamer +catalogue-ctan /macros/latex/contrib/beamer +catalogue-license lppl1.3c gpl2+ fdl +catalogue-topics presentation class +catalogue-version 3.62 + +name beamer-FUBerlin +category Package +revision 38159 +shortdesc Beamer, using the style of FU Berlin +relocated 1 +longdesc The bundle provides a beamer-derived class and a theme style +longdesc file for the corporate design of the Free University in Berlin. +longdesc Users may use the class itself (FUbeamer) or use the theme in +longdesc the usual way with \usetheme{BerlinFU}. Examples of using both +longdesc the class and the theme are provided; the PDF is visually +longdesc identical, so the catalogue only lists one; the sources of the +longdesc examples do of course differ. +containersize 612 +containerchecksum 10d5ac201b18b2d7de8e8e4ce2d08255ced89567f311d449002711235e0e0d052b6001acf5aac198397e295e7970863d42a57ecedb8464c8d49a3eba43b6d90d +doccontainersize 369760 +doccontainerchecksum 451a4ff305191947bb594394f863c447a96b5ca8327a08a5897ed7486e1a3ddcfb7e415d4da613050e38c8a76388cfbd7a3631be8a84d82e31f25081e71e913f +docfiles size=167 + RELOC/doc/latex/beamer-FUBerlin/Changes + RELOC/doc/latex/beamer-FUBerlin/README details="Readme" + RELOC/doc/latex/beamer-FUBerlin/doc/README.doc + RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.pdf details="Example of use of the class" + RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.tex + RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.pdf + RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.tex + RELOC/doc/latex/beamer-FUBerlin/tex/latex/FUbeamer.cls + RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamercolorthemeBerlinFU.sty + RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerfontthemeBerlinFU.sty + 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-license lppl +catalogue-topics presentation +catalogue-version 0.02b + +name beamer-rl +category Package +revision 58513 +shortdesc Right to left presentation with beamer and babel +relocated 1 +longdesc This class provides patches of some beamer templates and +longdesc commands for presentation from right to left. It requires Babel +longdesc with the LuaTeX engine. +containersize 5636 +containerchecksum bb16a10b5c5edf3df3163bb5f177eaff4e1235263d758528691aaa49b3388412c380721239ebd73f965d4306860b1de95b25b7c1eade36d216da1e3974563e9e +doccontainersize 207344 +doccontainerchecksum a7032533474476f480a685decaa62da74ca37100a8f6f15ce56ba5ab8bafa3a8a58499023de2bef5eb3e7eaf4afc978287188ed57ff4fb02906254211713fa88 +docfiles size=71 + RELOC/doc/lualatex/beamer-rl/Example-of-use-ar.pdf details="Example of use (Arabic)" language="ar" + RELOC/doc/lualatex/beamer-rl/Example-of-use-ar.tex + RELOC/doc/lualatex/beamer-rl/Example-of-use-en.pdf details="Example of use (English)" language="en" + RELOC/doc/lualatex/beamer-rl/Example-of-use-en.tex + RELOC/doc/lualatex/beamer-rl/README.txt details="Readme" +runfiles size=9 + RELOC/tex/lualatex/beamer-rl/beamer-rl.cls + RELOC/tex/lualatex/beamer-rl/translator-basic-dictionary-Arabic.dict + RELOC/tex/lualatex/beamer-rl/translator-bibliography-dictionary-Arabic.dict + RELOC/tex/lualatex/beamer-rl/translator-environment-dictionary-Arabic.dict + RELOC/tex/lualatex/beamer-rl/translator-numbers-dictionary-Arabic.dict + RELOC/tex/lualatex/beamer-rl/translator-theorem-dictionary-Arabic.dict +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-license lppl1.3c +catalogue-topics class presentation bidi multilingual luatex +catalogue-version 1.4b + +name beamer-tut-pt +category Package +revision 15878 +shortdesc An introduction to the Beamer class, in Portuguese +relocated 1 +containersize 372 +containerchecksum 6074f5933b945f02b24c31353bd7d683b35a54f53aacfa2ac19de382f56fbb9f6284316ee70c0eacea3760101d98d4a6b7d78412a0d41b13c9e1c907d181ee16 +doccontainersize 919784 +doccontainerchecksum ef6e80c3417cfad3e2f3e0ecd3ce249aa0b4cf0a6b5dced09c27138e34a8c86a74d0d03c6888d0944fe2b03bb5b8180872306263c58f54281f4ed2fe3424d4bc +docfiles size=1022 + RELOC/doc/latex/beamer-tut-pt/AnnArbor1.ps + RELOC/doc/latex/beamer-tut-pt/AnnArbor2.ps + RELOC/doc/latex/beamer-tut-pt/CambridgeUS1.ps + RELOC/doc/latex/beamer-tut-pt/CambridgeUS2.ps + RELOC/doc/latex/beamer-tut-pt/LEIAME + RELOC/doc/latex/beamer-tut-pt/README + RELOC/doc/latex/beamer-tut-pt/anim1.ps + RELOC/doc/latex/beamer-tut-pt/anim2.ps + RELOC/doc/latex/beamer-tut-pt/anim3.ps + RELOC/doc/latex/beamer-tut-pt/anim4.ps + RELOC/doc/latex/beamer-tut-pt/automato1.jpg + RELOC/doc/latex/beamer-tut-pt/automato2.jpg + RELOC/doc/latex/beamer-tut-pt/automato3.jpg + RELOC/doc/latex/beamer-tut-pt/automato4.jpg + RELOC/doc/latex/beamer-tut-pt/automato5.jpg + RELOC/doc/latex/beamer-tut-pt/berkeley1.ps + RELOC/doc/latex/beamer-tut-pt/berkeley2.ps + RELOC/doc/latex/beamer-tut-pt/blocos.ps + RELOC/doc/latex/beamer-tut-pt/boadilla1.ps + RELOC/doc/latex/beamer-tut-pt/boadilla2.ps + RELOC/doc/latex/beamer-tut-pt/exemplo.tex + RELOC/doc/latex/beamer-tut-pt/madrid1.ps + RELOC/doc/latex/beamer-tut-pt/madrid2.ps + RELOC/doc/latex/beamer-tut-pt/montpellier1.ps + RELOC/doc/latex/beamer-tut-pt/montpellier2.ps + RELOC/doc/latex/beamer-tut-pt/tutorialbeamer.pdf details="The document itself (in Portuguese)" language="pt" + RELOC/doc/latex/beamer-tut-pt/tutorialbeamer.tex + RELOC/doc/latex/beamer-tut-pt/ufpellogo.jpg +catalogue-ctan /info/portuguese/beamer +catalogue-license gpl +catalogue-topics portuguese-doc presentation + +name beamer-verona +category Package +revision 39180 +shortdesc A theme for the beamer class +relocated 1 +longdesc This package provides the 'Verona' theme for the beamer class +longdesc by Till Tantau. +containersize 3988 +containerchecksum 71b241e603688bd22e10f171d32ea3dcca1f25c136a7c0d0cea3e72e936b068ea7ced6a40c03d2e2fb21e533506bcbfaf10f450493cb4e2c3df2981b714048d5 +doccontainersize 618140 +doccontainerchecksum ab68e6accfbfea7651dd43b55c4ddd86a66a827ecc6f6353dc58e3aad47ba89e051fb4f9dcc76e0e8081784385cc696fda9d95c0e82c71b0645d358afaf42c4c +docfiles size=346 + RELOC/doc/latex/beamer-verona/README.md details="Readme" + RELOC/doc/latex/beamer-verona/beamer-verona-default.pdf + RELOC/doc/latex/beamer-verona/beamer-verona-default.tex + RELOC/doc/latex/beamer-verona/beamer-verona-sidebar.pdf + RELOC/doc/latex/beamer-verona/beamer-verona-sidebar.tex + RELOC/doc/latex/beamer-verona/beamer-verona.pdf details="Package documentation" + RELOC/doc/latex/beamer-verona/plato-aristotle.jpg +runfiles size=4 + RELOC/tex/latex/beamer-verona/beamerthemeVerona.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer-verona +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 0.2 + +name beamer2thesis +category Package +revision 27539 +shortdesc Thesis presentations using beamer +relocated 1 +longdesc The package specifies a beamer theme for presenting a thesis. +containersize 292036 +containerchecksum 793ec95902fbecc2de84616b74494d7e34a1a1c88277277ee82bb172c1ef0cc42cf175f62fa2b4926abb73817b7eb258d85be6689b60a56e0faee941276471a9 +doccontainersize 296660 +doccontainerchecksum ea71d35ac3e02d3016b8d19d38132ee16960757c9846192cf2213061c9899a9788e98f50dac074b0cf83f6029f883eb1f7784779d0256c719d55490284cfc8f0 +docfiles size=99 + RELOC/doc/latex/beamer2thesis/README details="Readme" + RELOC/doc/latex/beamer2thesis/beamer2thesis.pdf details="Package documentation (as presentation; in English)" language="en" + RELOC/doc/latex/beamer2thesis/beamer2thesis.tex + RELOC/doc/latex/beamer2thesis/beamer2thesis_ita.pdf details="Package documentation (as presentation; in Italian)" language="it" + RELOC/doc/latex/beamer2thesis/beamer2thesis_ita.tex + RELOC/doc/latex/beamer2thesis/content_end.tex + RELOC/doc/latex/beamer2thesis/content_end_ita.tex + RELOC/doc/latex/beamer2thesis/content_initial.tex + RELOC/doc/latex/beamer2thesis/content_initial_ita.tex + RELOC/doc/latex/beamer2thesis/license +runfiles size=88 + RELOC/tex/latex/beamer2thesis/beamer2thesis.jpg + RELOC/tex/latex/beamer2thesis/beamercolorthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerfontthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerinnerthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerouterthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerthemeTorinoTh.sty + 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-license lppl +catalogue-topics dissertation presentation +catalogue-version 2.2 + +name beamerappendixnote +category Package +revision 55732 +shortdesc Create notes on appendix frames in beamer +relocated 1 +longdesc This package introduces the \appxnote command, which puts the +longdesc note's content on a separate beamer frame shown by the command +longdesc \printappxnotes. It also creates interactive buttons to move +longdesc back and forth between the two frames. +containersize 1556 +containerchecksum bfb855380ded0b9ef019a139c93cc4f520d4390d98ddfb43483679742ee597b8e045c8286a9391ec068f51ae6c50372b0438b41e449e23804efbc18767c11726 +doccontainersize 70428 +doccontainerchecksum abf6b36bfad890b37a0add2ad443c39ba2f2484bd19f9730fec4cbb416eafc6fce723fd5fa684cb7adba4110f888641cc570ac7b7a26ccbf06dcd3697e2c5921 +docfiles size=34 + RELOC/doc/latex/beamerappendixnote/README.md details="Readme" + RELOC/doc/latex/beamerappendixnote/beamerappendixnote.pdf details="Package documentation" + RELOC/doc/latex/beamerappendixnote/build.sh + RELOC/doc/latex/beamerappendixnote/example-backtop.pdf details="Example of use (2)" + RELOC/doc/latex/beamerappendixnote/example-backtop.tex + RELOC/doc/latex/beamerappendixnote/example-basic.pdf details="Example of use (1)" + RELOC/doc/latex/beamerappendixnote/example-basic.tex + RELOC/doc/latex/beamerappendixnote/example-longnote.pdf details="Example of use (3)" + RELOC/doc/latex/beamerappendixnote/example-longnote.tex +srccontainersize 3336 +srccontainerchecksum f90db38b52c3c5dd3867111c17716160191ba238b965185d31d497494cb17046a83dcc62966bdc01d79a3f1ddfe53d9d9a4e31a6084c951b68598bb4ca392c4c +srcfiles size=3 + RELOC/source/latex/beamerappendixnote/beamerappendixnote.dtx + RELOC/source/latex/beamerappendixnote/beamerappendixnote.ins +runfiles size=1 + RELOC/tex/latex/beamerappendixnote/beamerappendixnote.sty +catalogue-contact-bugs https://github.com/csemken/beamerappendixnote/issues +catalogue-contact-repository https://github.com/csemken/beamerappendixnote +catalogue-ctan /macros/latex/contrib/beamer-contrib/beamerappendixnote +catalogue-license lppl1.3c +catalogue-topics presentation +catalogue-version 1.2.0 + +name beameraudience +category Package +revision 23427 +shortdesc Assembling beamer frames according to audience +relocated 1 +longdesc The Beamer Audience package provides macros to easily assemble +longdesc frames according to different audiences. It enables to pick up +longdesc the frames for a specific audience while leaving their order +longdesc according to a logical structure in the LaTeX source. +containersize 1364 +containerchecksum f1fa8d1d30b00ea59b3fd83347fc1ea1e90135e51e8f4393eacdf32ae983a80e865d4364c924c74bb1d409ebf22ebb5e290707b945898db9e6234dd297553b49 +doccontainersize 1144 +doccontainerchecksum 25fbfbf71ff66a80597b368882de63aee2e090e5604a67d66d52e99dd606ce54079e4a7350c4acee5966555dfa5dc8de0e650c7cb4c136bdc40cbe5739c0dfe1 +docfiles size=1 + RELOC/doc/latex/beameraudience/README details="Readme" +runfiles size=1 + RELOC/tex/latex/beameraudience/beameraudience.sty +catalogue-also beamer +catalogue-ctan /macros/latex/contrib/beamer-contrib/beameraudience +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.1 + +name beamerauxtheme +category Package +revision 56087 +shortdesc Supplementary outer and inner themes for beamer +relocated 1 +longdesc This bundle provides a collection of inner and outer themes as +longdesc supplements to the default themes in the beamer distribution. +longdesc These themes can be used in combination with existing inner, +longdesc outer, and color themes. +containersize 3312 +containerchecksum 8fbe5425396d8e5fea8ce618091948b84bb9e3998b9f34730686d9275398d7a149c912cf80d9f7da083af583ee37fb191435c68d8ea6741776ec2fcaabe9194f +doccontainersize 187988 +doccontainerchecksum 3d62f584a8170113242f1ba9bcd1fd3a47c539cf646719d4e11464d892372b0713475b026be3721e5921202d40593e56f2f5cb821bb12f11a629a81e390f25da +docfiles size=124 + RELOC/doc/latex/beamerauxtheme/LICENSE + RELOC/doc/latex/beamerauxtheme/README.md details="Readme" + RELOC/doc/latex/beamerauxtheme/example-content.ltx + RELOC/doc/latex/beamerauxtheme/example-inner-simplelines.pdf details="Example presentation (1)" + RELOC/doc/latex/beamerauxtheme/example-inner-simplelines.tex + RELOC/doc/latex/beamerauxtheme/example-outer-sidebarwithminiframes.pdf details="Example presentation (2)" + RELOC/doc/latex/beamerauxtheme/example-outer-sidebarwithminiframes.tex + RELOC/doc/latex/beamerauxtheme/example-outer-splitwithminiframes.pdf details="Example presentation (3)" + RELOC/doc/latex/beamerauxtheme/example-outer-splitwithminiframes.tex + RELOC/doc/latex/beamerauxtheme/example-outer-twolines.pdf details="Example presentation (4)" + RELOC/doc/latex/beamerauxtheme/example-outer-twolines.tex +runfiles size=6 + RELOC/tex/latex/beamerauxtheme/beamerinnerthemesimplelines.sty + RELOC/tex/latex/beamerauxtheme/beamerouterthemesidebarwithminiframes.sty + RELOC/tex/latex/beamerauxtheme/beamerouterthemesplitwithminiframes.sty + RELOC/tex/latex/beamerauxtheme/beamerouterthemetwolines.sty +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-license lppl1.3c +catalogue-topics presentation +catalogue-version 1.02a + +name beamercolorthemeowl +category Package +revision 40105 +shortdesc A flexible beamer color theme to maximize visibility +relocated 1 +longdesc This package provides a flexible dark or light colour theme +longdesc designed for maximum readability in environments where most +longdesc themes fall flat. Main features: Dark color theme for +longdesc presenting in low-light conditions. Optional light color theme +longdesc for presenting in bright ambient light. Redefines color names +longdesc "red", "green", "blue", "yellow" to values that are visible +longdesc when displayed by certain projectors, particularly those with a +longdesc very bright green channel and dim red and blue channels. This +longdesc behaviour can be optionally disabled, with the provided colours +longdesc also available as "OwlRed", "OwlGreen", etc. +containersize 1904 +containerchecksum bf9874f0d7bbbe3f95c352d1c5e93c5e7fa3af18dd02eedee553c312ef01783420b035ac74f93eb150a99a597ff9948d978ea575963f4117d0965137446ee5fc +doccontainersize 558476 +doccontainerchecksum 258016683c605b4961ee25f30077cec69c486cf3ed0cccce2482db01b39141e122dcb46e02e960a83138d124aa269ec903379c3c6b65f3366e96565e90c2337a +docfiles size=169 + RELOC/doc/latex/beamercolorthemeowl/Makefile + RELOC/doc/latex/beamercolorthemeowl/README.md details="Readme" + RELOC/doc/latex/beamercolorthemeowl/beamercolorthemeowl.pdf details="Package documentation" + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-dark/Hannover-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-dark/Hannover-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-light/Hannover-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-light/Hannover-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-dark/Pittsburgh-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-dark/Pittsburgh-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-light/Pittsburgh-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-light/Pittsburgh-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/colours.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-dark/metropolis-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-dark/metropolis-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-light/metropolis-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-light/metropolis-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/readme.jpg +srccontainersize 5756 +srccontainerchecksum 940218da36cd17d38e2b8c6d79eb1570d6c779b5f694e9b43abf6614db93a8227939e1ef86678f72461752ca0acdcaf2fd5e52a45a35b6d98811511af5090a2f +srcfiles size=6 + RELOC/source/latex/beamercolorthemeowl/beamercolorthemeowl.dtx + RELOC/source/latex/beamercolorthemeowl/beamercolorthemeowl.ins +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-license lppl1.3 +catalogue-topics presentation +catalogue-version 0.1.1 + +name beamerdarkthemes +category Package +revision 55117 +shortdesc Dark color themes for beamer +relocated 1 +longdesc A package with three dark color themes for beamer, designed for +longdesc presentations with pictures and/or for bright rooms without +longdesc screen. These themes mix one dominant foreground colour and a +longdesc black background. Cormorant stands for green, frigatebird for +longdesc red and magpie for blue. +containersize 1828 +containerchecksum ced5c093d0c4e3c23fcf774bfcc768b8a3adb20287e0677e1a2474d5ad1eeea1f5f979f988c0f0ae6a484ec1953b95c044b0803df9f76f289e999ec50889433a +doccontainersize 1885368 +doccontainerchecksum 45d0daee876c0e0d94b2ce6ce7b49f6eb8282643b1bf3540abb07e0e7782434c224ba40ff933e9febd893467ebab2ba7cb588669a98784e8eba6acefa0d30611 +docfiles size=2424 + RELOC/doc/latex/beamerdarkthemes/README details="Readme" + RELOC/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.pdf details="Package documentation" + RELOC/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.tex + RELOC/doc/latex/beamerdarkthemes/ccby.png + RELOC/doc/latex/beamerdarkthemes/cormorantexampledefault.pdf + RELOC/doc/latex/beamerdarkthemes/cormorantexampleinfolines.pdf + RELOC/doc/latex/beamerdarkthemes/cormorantexamplesidebar.pdf + RELOC/doc/latex/beamerdarkthemes/cormorantexampletree.pdf + RELOC/doc/latex/beamerdarkthemes/dahut.jpg + RELOC/doc/latex/beamerdarkthemes/example.tex + RELOC/doc/latex/beamerdarkthemes/frigatebirdexampledefault.pdf + RELOC/doc/latex/beamerdarkthemes/frigatebirdexampleinfolines.pdf + RELOC/doc/latex/beamerdarkthemes/frigatebirdexamplesidebar.pdf + RELOC/doc/latex/beamerdarkthemes/frigatebirdexampletree.pdf + RELOC/doc/latex/beamerdarkthemes/img_5630.jpg + RELOC/doc/latex/beamerdarkthemes/magpieexampledefault.pdf + RELOC/doc/latex/beamerdarkthemes/magpieexampleinfolines.pdf + RELOC/doc/latex/beamerdarkthemes/magpieexamplesidebar.pdf + RELOC/doc/latex/beamerdarkthemes/magpieexampletree.pdf + RELOC/doc/latex/beamerdarkthemes/makecormorant.sh + RELOC/doc/latex/beamerdarkthemes/makeexamples.sh + RELOC/doc/latex/beamerdarkthemes/makemagpie.sh +runfiles size=3 + RELOC/tex/latex/beamerdarkthemes/beamercolorthemecormorant.sty + RELOC/tex/latex/beamerdarkthemes/beamercolorthemefrigatebird.sty + RELOC/tex/latex/beamerdarkthemes/beamercolorthememagpie.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerdarkthemes +catalogue-license lppl1.3 cc-by-4 +catalogue-topics presentation +catalogue-version 0.5.1 + +name beamerposter +category Package +revision 54512 +shortdesc Extend beamer and a0poster for custom sized posters +relocated 1 +longdesc The package enables the user to use beamer style operations on +longdesc a canvas of the sizes provided by a0poster; font scaling is +longdesc available (using packages such as type1cm if necessary). In +longdesc addition, the package allows the user to benefit from the nice +longdesc colour box handling and alignment provided by the beamer class +longdesc (for example, with rounded corners and shadows). Good looking +longdesc posters may be created very rapidly. Features include: scalable +longdesc fonts using the fp and type1cm packages; posters in A-series +longdesc sizes, and custom sizes like double A0 are possible; still +longdesc applicable to custom beamer slides, e.g. 16:9 slides for a +longdesc wide-screen (i.e. 1.78 aspect ratio); orientation may be +longdesc portrait or landscape; a 'debug mode' is provided. +containersize 7456 +containerchecksum 7483f14a3008997c0c39c351e0f8b9a01dc42331ae990575ab33ab29c18cea648e0e6ab328a2c1fde404bc10eec78d7c7b8352bb02636e00d5d6e8689f1c717f +doccontainersize 77044 +doccontainerchecksum f597797340286e4a87b62696fa167af07a1717a175646d11836e1f347601551fe0aec5ad4362c135d0f6bbf6b45e217a91bdb5053ba1331828fbc352583d3697 +docfiles size=22 + RELOC/doc/latex/beamerposter/README details="Readme" + RELOC/doc/latex/beamerposter/beamerposter.pdf details="Package documentation (PDF)" + RELOC/doc/latex/beamerposter/beamerposter.tex + RELOC/doc/latex/beamerposter/example.tex +runfiles size=16 + RELOC/tex/latex/beamerposter/beamerposter.sty + RELOC/tex/latex/beamerposter/beamerthemeAachen.sty + RELOC/tex/latex/beamerposter/beamerthemeI6dv.sty + RELOC/tex/latex/beamerposter/beamerthemeI6pd.sty + RELOC/tex/latex/beamerposter/beamerthemeI6pd2.sty + RELOC/tex/latex/beamerposter/beamerthemeI6td.sty + RELOC/tex/latex/beamerposter/beamerthemeZH.sty +catalogue-contact-announce https://groups.google.com/forum/#!forum/beamerposter +catalogue-contact-bugs https://github.com/deselaers/latex-beamerposter/issues +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-license lppl gpl +catalogue-topics poster presentation +catalogue-version 1.13 + +name beamersubframe +category Package +revision 23510 +shortdesc Reorder frames in the PDF file +relocated 1 +longdesc The package provides a method to reorder frames in the PDF file +longdesc without reordering the source. Its principal use is to embed or +longdesc append frames with details on some subject. The author +longdesc describes the package as "experimental". +containersize 3864 +containerchecksum d3ab81c5eb90d8566eb850c25d7751f5a341107fdb756b46bb50b392741746eea356ff54ef1ceb6ca6f0a2c0dfb7940aa7cd6e3d0cd27e4328e817d1be454964 +doccontainersize 375856 +doccontainerchecksum 85878ad48e6ba191174140517ac03039320620f246efb51c65e57541d9cf569d59bdd6cef17f10f6f6d85bff9532f6ea70175cb09b68ea6e59312a407d89f557 +docfiles size=150 + RELOC/doc/latex/beamersubframe/README details="Readme" + RELOC/doc/latex/beamersubframe/beamersubframe-append.pdf + RELOC/doc/latex/beamersubframe/beamersubframe-append.svg + RELOC/doc/latex/beamersubframe/beamersubframe-embed.pdf + RELOC/doc/latex/beamersubframe/beamersubframe-embed.svg + RELOC/doc/latex/beamersubframe/beamersubframe.pdf details="Package documentation" + RELOC/doc/latex/beamersubframe/bsf-example.tex +srccontainersize 19496 +srccontainerchecksum f4c9d5b2f9a868e1cf3dead5636025698137d63f64c0c528abafa0e5719987e6df9be31a6ecb9597824e5c9793172208908616f42f8980b49796368e217be24a +srcfiles size=23 + RELOC/source/latex/beamersubframe/beamersubframe.dtx + RELOC/source/latex/beamersubframe/beamersubframe.ins +runfiles size=4 + RELOC/tex/latex/beamersubframe/beamersubframe.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/beamersubframe +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.2 + +name beamerswitch +category Package +revision 58873 +shortdesc Convenient mode selection in Beamer documents +relocated 1 +longdesc This class is a wrapper around the beamer class to make it +longdesc easier to use the same document to generate the different forms +longdesc of the presentation: the slides themselves, an abbreviated +longdesc slide set for transparencies or online reference, an n-up +longdesc handout version (various layouts are provided), and a +longdesc transcript or set of notes using the article class. The class +longdesc provides a variety of handout layouts, and allows the mode to +longdesc be chosen from the command line (without changing the document +longdesc itself). +containersize 4872 +containerchecksum 9fff5ac8406dd4bc0e76f3b01678c1c2d4dc089ba819e873121b6ae43054356a666101c0e044fc06f4ce40a49468c08b1436370a0836f54705da4df610b610dc +doccontainersize 257736 +doccontainerchecksum 59e94176d8d2197be538aead029ad03d77632fa062a1fcfd911fdf7a2e1f27e54cab4b816f36ce4b4c6b63c7244333e2d0ae8448fb3f85edccc79309e76fb5a1 +docfiles size=79 + RELOC/doc/latex/beamerswitch/README.md details="Readme" + RELOC/doc/latex/beamerswitch/beamerswitch-example-article.pdf details="Example of use (article)" + RELOC/doc/latex/beamerswitch/beamerswitch-example-handout.pdf details="Example of use (handout)" + RELOC/doc/latex/beamerswitch/beamerswitch-example-trans.pdf details="Example of use (transparencies, without overlays)" + RELOC/doc/latex/beamerswitch/beamerswitch-example.pdf details="Example of use (slides, with overlays)" + RELOC/doc/latex/beamerswitch/beamerswitch-example.tex + RELOC/doc/latex/beamerswitch/beamerswitch.pdf details="Package documentation" +srccontainersize 20464 +srccontainerchecksum c81324917cb69eb02ceef698c5b2f1efc42a055328c5a67882ef2d315769388e311c5c58f3a532f644d166af28aff98830cc39ed94bd8851d79247aaa68c1af4 +srcfiles size=27 + RELOC/source/latex/beamerswitch/Makefile + RELOC/source/latex/beamerswitch/beamerswitch.dtx +runfiles size=12 + RELOC/tex/latex/beamerswitch/beamerswitch.cls +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-license lppl1.3c +catalogue-topics presentation class +catalogue-version 1.8 + +name beamertheme-cuerna +category Package +revision 42161 +shortdesc A beamer theme with 4 colour palettes +relocated 1 +longdesc The package contains a theme for Beamer which is referenced as +longdesc "Cuerna" inside beamer and has four basic colour themes. The +longdesc title page shows rectangles that represent the Fibonacci +longdesc sequence, and spiral is drawn on top of the rectangles. Besides +longdesc that the rest of the graphic elements in the slides are scarce +longdesc to keep it clean +containersize 2492 +containerchecksum f0433d4a4582958ad057fddcddf1f1f992ec98a199943bcf80a7834e37eb7fa5660258edb08e2bd9205628dc1b8a69419c907b6c007a1c63cd1fb335e439125d +doccontainersize 332524 +doccontainerchecksum 96f4e9c3afbb81a7841130ea076b2cd35477e93eb105c03add6077fd76981cbd14b609c3b9e573f143572764ac87b1ff76ce18c377f3bbd9b02a1ed45a02eaab +docfiles size=280 + RELOC/doc/latex/beamertheme-cuerna/README details="Readme" + RELOC/doc/latex/beamertheme-cuerna/beamertheme-cuerna.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-cuerna/pictures/bluesimplex.png + RELOC/doc/latex/beamertheme-cuerna/pictures/bluesimplexexample.pdf + RELOC/doc/latex/beamertheme-cuerna/pictures/brickexample.pdf + RELOC/doc/latex/beamertheme-cuerna/pictures/defaultexample.pdf + RELOC/doc/latex/beamertheme-cuerna/pictures/lettuceexample.pdf + RELOC/doc/latex/beamertheme-cuerna/template.tex +srccontainersize 4008 +srccontainerchecksum a4381e52d7e46336d8d8989be45c185156e67df776d5ad159f2db6c62c751dae59e0c19fa0c5ec3de4b0385047d5f6fdf166b6c12707c889cffeabe11802a10f +srcfiles size=5 + RELOC/source/latex/beamertheme-cuerna/beamertheme-cuerna.dtx + RELOC/source/latex/beamertheme-cuerna/beamertheme-cuerna.ins +runfiles size=8 + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemeCuerna.sty + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemebluesimplex.sty + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemebrick.sty + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemelettuce.sty + RELOC/tex/latex/beamertheme-cuerna/beamerinnerthemeCuerna.sty + 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-license lppl1.3 +catalogue-topics presentation + +name beamertheme-detlevcm +category Package +revision 39048 +shortdesc A beamer theme designed for use in the University of Leeds +relocated 1 +longdesc The bundle provides a simple theme that has been used in the +longdesc author's department. +containersize 3064 +containerchecksum cab4d390d7469056f2235c493b9383a4374c4a686810db428cfe622a4c2513f7176df489d22f7e37ae1f8a2d3303443b60c12c577764be2258b345fe9c3dc543 +doccontainersize 1517564 +doccontainerchecksum 2c637af44b258c688449ad2bbd81664e3086efe874d03352ab393487d7eae1148773ba39a498611a848c43824415cb5b860259111f6d287fd9e6d7f1c01eb530 +docfiles size=377 + RELOC/doc/latex/beamertheme-detlevcm/FS-img1.png + RELOC/doc/latex/beamertheme-detlevcm/FS-img2.png + RELOC/doc/latex/beamertheme-detlevcm/FS-img3.png + RELOC/doc/latex/beamertheme-detlevcm/LogoTop.png + RELOC/doc/latex/beamertheme-detlevcm/README.txt details="Readme" + RELOC/doc/latex/beamertheme-detlevcm/beamertheme-detlevcm.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-detlevcm/beamertheme-detlevcm.tex +runfiles size=5 + RELOC/tex/latex/beamertheme-detlevcm/beamercolorthemeETII.sty + RELOC/tex/latex/beamertheme-detlevcm/beamerfontthemeDetlevCM.sty + RELOC/tex/latex/beamertheme-detlevcm/beamerouterthemeDetlevCM.sty + RELOC/tex/latex/beamertheme-detlevcm/beamerthemeDetlevCM.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/detlevcm +catalogue-license gpl +catalogue-topics presentation +catalogue-version 1.02 + +name beamertheme-epyt +category Package +revision 41404 +shortdesc A simple and clean theme for LaTeX beamer class +relocated 1 +longdesc This package provides a simple but nice theme for Beamer, with +longdesc the following features: simple structure: with page numbers at +longdesc footer, no head bar and side bar simple templates: displaying +longdesc theorems with traditional inline style simple colors: using +longdesc only several foreground and background colors +containersize 3560 +containerchecksum 2bf451ccfe095384aeec149e97d7022cefaf997cd19dedffcad5606fc149739cf21b6128ef08e609aaffd6afbaa59b1cdc401cbd3ee4fbe0e997d724b713a620 +doccontainersize 164664 +doccontainerchecksum a615bddd7955869d7e175f734a06308b166057dce0b479a4b11d2bd1d06fda7e0a4fdf8185d0a3db2d2302cea2890184616b92d0b7abd5321fe9edaca6dbbd2e +docfiles size=85 + RELOC/doc/latex/beamertheme-epyt/README details="Readme" + RELOC/doc/latex/beamertheme-epyt/epyt-demo-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/beamertheme-epyt/epyt-demo-cn.tex + RELOC/doc/latex/beamertheme-epyt/epyt-demo.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-epyt/epyt-demo.tex +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-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.0 + +name beamertheme-focus +category Package +revision 56967 +shortdesc A minimalist presentation theme for LaTeX Beamer +relocated 1 +longdesc A presentation theme for LaTeX Beamer that aims at a clean and +longdesc minimalist design, so to minimize distractions and put the +longdesc focus directly on the content. +containersize 4400 +containerchecksum b3b9be62e244fe4288e77113aa8488e24f83932d5e2b31accd30d62ced1cc8bff4b44183fe2be375e69375862237f18b6f0b40c6201f1199cd1423b09c2a60f4 +doccontainersize 494336 +doccontainerchecksum 57e8e51ac4a4eed778796c916713420e9372429fe7d310d9acae988c6d540ee516e64ca290dc6feebe28ad81877ee7e8919b1145e626821c4ef72c226b3cdbde +docfiles size=145 + RELOC/doc/latex/beamertheme-focus/LICENSE + RELOC/doc/latex/beamertheme-focus/README.md details="Readme" + RELOC/doc/latex/beamertheme-focus/focus-demo.pdf details="Example of use" + RELOC/doc/latex/beamertheme-focus/focus-demo.tex + RELOC/doc/latex/beamertheme-focus/focus-demo/demo-appendix.jpg + RELOC/doc/latex/beamertheme-focus/focus-demo/demo-focus.jpg + RELOC/doc/latex/beamertheme-focus/focus-demo/demo-references.jpg + RELOC/doc/latex/beamertheme-focus/focus-demo/demo-subsectionpage.jpg + RELOC/doc/latex/beamertheme-focus/focus-demo/demo-titlepage-color.jpg + RELOC/doc/latex/beamertheme-focus/focus-demo/demo-titlepage.jpg + RELOC/doc/latex/beamertheme-focus/focus-demo/demo-typeset.jpg + RELOC/doc/latex/beamertheme-focus/focus-demo_bibliography.bib + RELOC/doc/latex/beamertheme-focus/focus-logo.pdf +runfiles size=8 + RELOC/tex/latex/beamertheme-focus/beamercolorthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerfontthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerinnerthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerouterthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerthemefocus.sty +catalogue-also beamertheme-pure-minimalistic +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-license gpl3 +catalogue-topics presentation +catalogue-version 2.8.1 + +name beamertheme-light +category Package +revision 49867 +shortdesc A minimal beamer style +relocated 1 +longdesc The LaTeX package beamertheme-light provides an aesthetic and +longdesc minimal beamer style by redefining colors and fonts. +containersize 1868 +containerchecksum 5cc15c3ee0222678c1c97b31805421caac8b20fca03b1d748fd2a71756d5d764b8fbfb32ab70937e890f7755966b520362db98a9ae65be3f83509cfa287d600a +doccontainersize 99012 +doccontainerchecksum e2d0cdb7fdabe582f2b6f1a656a5b9b61ee3680fd4944c06f108cf69eced96bed7b25e56563b1cb9879e8da42fdbbeaa41d769158c5e256bc70b5d695571a5af +docfiles size=26 + RELOC/doc/latex/beamertheme-light/README details="Readme" + RELOC/doc/latex/beamertheme-light/beamertheme-light-example.pdf details="Example of use" + RELOC/doc/latex/beamertheme-light/beamertheme-light-example.tex +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-license gpl3 +catalogue-topics presentation +catalogue-version 1.0 + +name beamertheme-metropolis +category Package +revision 43031 +shortdesc A modern LaTeX beamer theme +relocated 1 +longdesc The package provides a simple, modern Beamer theme for anyone +longdesc to use. It tries to minimize noise and maximize space for +longdesc content. +containersize 6572 +containerchecksum dae8058ae5c2883b383a2bcb85bbdc45d0b0a3fab46a4498ea1f3b8568f04d049598fa78b72429adc7e36773905c67801e129378e233582f0fd8eb5ca4327745 +doccontainersize 178716 +doccontainerchecksum c4661061ea3ce52a20fb8c704042cf755b8b54549dd62467b1e78f85a4067c11a02c89422384e96323ef277ce44a3f648b1778b54e0b5c79b721f67451fabfc1 +docfiles size=50 + RELOC/doc/latex/beamertheme-metropolis/README.md details="Readme" + RELOC/doc/latex/beamertheme-metropolis/demo.bib + RELOC/doc/latex/beamertheme-metropolis/demo.pdf + RELOC/doc/latex/beamertheme-metropolis/demo.tex + RELOC/doc/latex/beamertheme-metropolis/metropolistheme.pdf details="Package documentation" +srccontainersize 18424 +srccontainerchecksum af3cec1b7544ecd51c875a704605500ee1ab4374df9cf1a7db6c6b9102c4800651485a64dd865c1158d729c06f2499021408230c50278da3de40f7f0cac7bf6b +srcfiles size=25 + RELOC/source/latex/beamertheme-metropolis/beamercolorthememetropolis-highcontrast.dtx + RELOC/source/latex/beamertheme-metropolis/beamercolorthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerfontthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerinnerthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerouterthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerthememetropolis.ins + RELOC/source/latex/beamertheme-metropolis/metropolistheme.dtx + RELOC/source/latex/beamertheme-metropolis/pgfplotsthemetol.dtx +runfiles size=12 + RELOC/tex/latex/beamertheme-metropolis/beamercolorthememetropolis-highcontrast.sty + RELOC/tex/latex/beamertheme-metropolis/beamercolorthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerfontthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerinnerthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerouterthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerthememetropolis.sty + 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-license other-free +catalogue-topics presentation +catalogue-version 1.2 + +name beamertheme-npbt +category Package +revision 54512 +shortdesc A collection of LaTeX beamer themes +relocated 1 +longdesc "NPBT" stands for "Norman's Pandoc Beamer Themes". Currently +longdesc the following themes are supported: Sefiroth Consulting: A +longdesc private (demonstration) theme. FOM: The layout of Hochschule +longdesc FOM. FOM ifes: The layout of Hochschule FOM, Institut fur +longdesc Empirie & Statistik. eufom: The layout of eufom. +containersize 1457176 +containerchecksum 9125794ab2ebc4d15ab500b67b9943234d80088393d9b31989ae8209359dca97778feaab3d11365ae1b4131f06dad2fe73bb21fae1220b401c5f31f413cff171 +doccontainersize 418012 +doccontainerchecksum 7703951f2afee05627847980a05b0bef0cb2fe87eec078f64a3e4796feb4057bdf93708ef0476090d40dad2605c69e23f695b9164a969e6a67f8329e6e340a3b +docfiles size=113 + RELOC/doc/latex/beamertheme-npbt/LICENSE + RELOC/doc/latex/beamertheme-npbt/README details="Readme" + RELOC/doc/latex/beamertheme-npbt/example/NPBT_exsamle.pdf + RELOC/doc/latex/beamertheme-npbt/example/NPBT_exsamle.tex + RELOC/doc/latex/beamertheme-npbt/header.tex +runfiles size=404 + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_EUFOM.sty + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_FOM.sty + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_FOM_ifes.sty + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_SC.sty + RELOC/tex/latex/beamertheme-npbt/beamerouterthemeNPBT_FOM.sty + RELOC/tex/latex/beamertheme-npbt/beamerouterthemeNPBT_FOM_ifes.sty + RELOC/tex/latex/beamertheme-npbt/beamerthemeNPBT.sty + RELOC/tex/latex/beamertheme-npbt/images/LICENSE.md + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_background.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_frametitlebackground.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_backgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_frametitlebackgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_linie.pdf + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_logo.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_linie.pdf + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_logo.pdf + RELOC/tex/latex/beamertheme-npbt/images/NPBT_SC_background.jpg + RELOC/tex/latex/beamertheme-npbt/images/NPBT_SC_logo.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_backgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_frametitlebackgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_linie.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_logo.png + RELOC/tex/latex/beamertheme-npbt/images/lNPBT_SC_linie.png +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-license gpl3 pd +catalogue-topics presentation +catalogue-version 4.1 + +name beamertheme-phnompenh +category Package +revision 39100 +shortdesc A simple beamer theme +relocated 1 +longdesc The package provides a simple theme, similar to some others, +longdesc but designed to be attractive. +containersize 784 +containerchecksum 30745bb1f92c230bedd953d32eaa6f2085ad2aa7f147bd3368fe8ebe4f6092ecc615acce55b9573da4dc04c8e89877ba2705a6712cd4c4f67f34dc59eae97880 +doccontainersize 57496 +doccontainerchecksum 626d124c6ac02271cc3bc137e60b8a66a861b7f692910e9fad283d8836599e3adbdd1ac472fe66955a392d1b563e955da852cfd5a0d712d284fdb2dc4d709a63 +docfiles size=21 + RELOC/doc/latex/beamertheme-phnompenh/README details="Readme" + RELOC/doc/latex/beamertheme-phnompenh/beamerthemePhnomPenh.pdf details="small sample of use" + RELOC/doc/latex/beamertheme-phnompenh/beamerthemePhnomPenh.tex +runfiles size=1 + RELOC/tex/latex/beamertheme-phnompenh/beamerthemePhnomPenh.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/phnompenh +catalogue-license gpl +catalogue-topics presentation +catalogue-version 1.0 + +name beamertheme-pure-minimalistic +category Package +revision 56934 +shortdesc A minimalistic presentation theme for LaTeX Beamer +relocated 1 +longdesc The main features of this minimalistic Beamer theme are: Easily +longdesc use own logos. Customizable. Looks good in a 4:3 and 16:9 +longdesc aspect ratio, without the need to change anything. Provides an +longdesc environment for vertically-spaced items. Provides light and +longdesc dark mode. Is designed to be purely minimalistic without any +longdesc distractions. +containersize 4256 +containerchecksum b9c6237108e1aa5f4859ebd1100efbddd2bca55c76bca876e0e3a0c10dbd322a3ee834e4e452b80b2f7755ce026fd2bbe5c69434371ad29df1fe3280b409bdc6 +doccontainersize 365176 +doccontainerchecksum 791e3a367f5c7ebfee453e7d7a76753763e2bbe122616e49fd0d4268dbd274e3ecb308b5adb850765d143bc46a311316f86bd13e60ce1449b0217d7b4f733830 +docfiles size=106 + RELOC/doc/latex/beamertheme-pure-minimalistic/LICENSE + RELOC/doc/latex/beamertheme-pure-minimalistic/README.md details="Readme" + RELOC/doc/latex/beamertheme-pure-minimalistic/beamertheme-pure-minimalistic-demo.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-pure-minimalistic/beamertheme-pure-minimalistic-demo.tex + RELOC/doc/latex/beamertheme-pure-minimalistic/demo_bib.bib + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/header_logo.png + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/header_logo_darkmode.png + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/institute_logo.png + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/institute_logo_darkmode.png +runfiles size=6 + RELOC/tex/latex/beamertheme-pure-minimalistic/beamercolorthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerfontthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerinnerthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerouterthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerthemepureminimalistic.sty +catalogue-also beamertheme-focus +catalogue-contact-announce https://github.com/kai-tub/latex-beamer-pure-minimalistic/releases +catalogue-contact-bugs https://github.com/kai-tub/latex-beamer-pure-minimalistic/issues +catalogue-contact-repository https://github.com/kai-tub/latex-beamer-pure-minimalistic +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-pure-minimalistic +catalogue-license gpl3+ +catalogue-topics presentation +catalogue-version 2.0.0 + +name beamertheme-saintpetersburg +category Package +revision 45877 +shortdesc A beamer theme that incorporates colours and fonts of Saint Petersburg State University +relocated 1 +longdesc This minimalistic beamer theme incorporates Saint Petersburg +longdesc State University colours and fonts. It is suitable for both +longdesc presentations and posters. +containersize 3552 +containerchecksum c258a4eee25ccdb2437625982e54def90aec87be003f697a47334be52b85ef223b377c7fc57d49c889121caea664fcd6353015ad2e62f5bee5379bc222958f53 +doccontainersize 243188 +doccontainerchecksum bf51e2bc33f32ba3dda6c140040a7499a60c26082569729743228a6c7abc97fb20076d1d0c7d0b64a25a54cbba1d9a8b59a9059d160a5a488ef6641999e8611f +docfiles size=146 + RELOC/doc/latex/beamertheme-saintpetersburg/README.md details="Readme" + RELOC/doc/latex/beamertheme-saintpetersburg/SaintPetersburg.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-saintpetersburg/example.pdf details="Example of use" + RELOC/doc/latex/beamertheme-saintpetersburg/example.tex + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-elevation.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-wave-height-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-wave-length-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-wave-period.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-elevation.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-wave-height-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-wave-length-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-wave-period.eps +srccontainersize 6008 +srccontainerchecksum 6cd3ed424b3a724e397de3fb7b47de33a5c9f0c5ac0e0f8b26bde55ef69b66015874dbd438912c682c9aa1c33e4e916fb895458964dea11fe228e29c1afc40e8 +srcfiles size=10 + RELOC/source/latex/beamertheme-saintpetersburg/SaintPetersburg.dtx + RELOC/source/latex/beamertheme-saintpetersburg/SaintPetersburg.ins + RELOC/source/latex/beamertheme-saintpetersburg/beamercolorthemeSaintPetersburg.dtx + RELOC/source/latex/beamertheme-saintpetersburg/beamerfontthemeSaintPetersburg.dtx + RELOC/source/latex/beamertheme-saintpetersburg/beamerthemeSaintPetersburg.dtx +runfiles size=4 + RELOC/tex/latex/beamertheme-saintpetersburg/beamercolorthemeSaintPetersburg.sty + RELOC/tex/latex/beamertheme-saintpetersburg/beamerfontthemeSaintPetersburg.sty + RELOC/tex/latex/beamertheme-saintpetersburg/beamerthemeSaintPetersburg.sty +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-license lppl1.3c +catalogue-topics presentation + +name beamertheme-trigon +category Package +revision 59004 +shortdesc A modern, elegant, and versatile theme for Beamer +relocated 1 +longdesc This package provides a modern, elegant and versatile theme for +longdesc Beamer, with a high degree of customization. Trigon found its +longdesc origin and inspiration in the graphical guidelines resulting +longdesc from the visual identity overhaul of the University of Liege. +longdesc Although directly inspired from these guidelines, the theme was +longdesc stripped out of any mention or specificities related to the +longdesc University and its faculties. This makes the Trigon theme +longdesc perfectly suitable for many different contexts. The final +longdesc product provides a modern, elegant and versatile theme with a +longdesc high degree of customization. The main design focuses on +longdesc triangular shapes for major layout elements and noise +longdesc minimization for the main body of the work. The theme's +longdesc implementation is heavily inspired from the Metropolis theme. +longdesc Most options from Metropolis have been ported to Trigon in +longdesc order to improve customization and ease-of-use. Trigon also +longdesc includes different styles and layouts for the main title page, +longdesc the section page and the default slide background. +containersize 5468 +containerchecksum e0fa7ff98a34ef416275502a1fc6522578749ae91de9ec416819cbd418fc212bcdd44798d42073a665afcef5d6e4c2b198667b922932297f563db89450ba3b2f +doccontainersize 562496 +doccontainerchecksum 910c3aabde13e8efd7d2cc96ac5695047b35c94e6ef6d1e7997e004b1e68edd3fb4a1bf1acecbee8a75028737dfb6cf750295510d0fc0939f95f4f03f1d76b05 +docfiles size=192 + RELOC/doc/latex/beamertheme-trigon/README.md details="Readme" + RELOC/doc/latex/beamertheme-trigon/trigon_demo.pdf details="Example of use" + RELOC/doc/latex/beamertheme-trigon/trigon_demo.tex + RELOC/doc/latex/beamertheme-trigon/trigontheme.pdf details="Package documentation" +srccontainersize 12000 +srccontainerchecksum 70804d3e135d27b9ba84f50c80c151996a1bcaae050bd8314be854192855935d2920cdcf06107c168c893a7066f5e1af0da5fe07bcf32a3e9808e02ebbfaa48a +srcfiles size=19 + RELOC/source/latex/beamertheme-trigon/beamercolorthemetrigon.dtx + RELOC/source/latex/beamertheme-trigon/beamerfontthemetrigon.dtx + RELOC/source/latex/beamertheme-trigon/beamerinnerthemetrigon.dtx + RELOC/source/latex/beamertheme-trigon/beamerouterthemetrigon.dtx + RELOC/source/latex/beamertheme-trigon/beamerthemetrigon.dtx + RELOC/source/latex/beamertheme-trigon/beamerthemetrigon.ins + RELOC/source/latex/beamertheme-trigon/trigontheme.dtx +runfiles size=10 + RELOC/tex/latex/beamertheme-trigon/beamercolorthemetrigon.sty + RELOC/tex/latex/beamertheme-trigon/beamerfontthemetrigon.sty + RELOC/tex/latex/beamertheme-trigon/beamerinnerthemetrigon.sty + RELOC/tex/latex/beamertheme-trigon/beamerouterthemetrigon.sty + RELOC/tex/latex/beamertheme-trigon/beamerthemetrigon.sty +catalogue-contact-bugs https://gitlab.com/thlamb/beamertheme-trigon/-/issues +catalogue-contact-repository https://gitlab.com/thlamb/beamertheme-trigon +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-trigon +catalogue-license cc-by-sa-4 +catalogue-topics presentation +catalogue-version 0.5.0 + +name beamertheme-upenn-bc +category Package +revision 29937 +shortdesc Beamer themes for Boston College and the University of Pennsylvania +relocated 1 +longdesc Beamer themes in the colors of the University of Pennsylvania, +longdesc USA, and Boston College, USA. Both were tested for the +longdesc presentation theme 'Warsaw'. Please note that these color +longdesc themes are neither official nor exact! The colours are +longdesc approximated from the universities' style guidelines and +longdesc websites, and slightly modified where necessary to generate an +longdesc appealing look. The universities neither endorse, nor provide +longdesc any support for, these color themes. I give no warranty for the +longdesc code. +containersize 1660 +containerchecksum 0c483991348107a2b9102e514ec05838a9ae3e97dceddcbf3b8cc21ae635a272c7d70d97b2e1a0929b7545e50560f16a71f7b290ca16cdfd63177782b993b714 +doccontainersize 340140 +doccontainerchecksum 5feb0a4401d9ebbc4672b7f9668f850fb65002c7d7124c607009775149c4c428642cd17df133ae80d564ab091fdff039d34c1704360033f2374b55466fe1b618 +docfiles size=139 + RELOC/doc/latex/beamertheme-upenn-bc/README details="Readme" + RELOC/doc/latex/beamertheme-upenn-bc/beamerBCstyle.pdf + RELOC/doc/latex/beamertheme-upenn-bc/beamerBCstyle.tex + RELOC/doc/latex/beamertheme-upenn-bc/beamerPENNstyle.pdf +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-license lppl +catalogue-topics presentation +catalogue-version 1.0 + +name beamerthemejltree +category Package +revision 21977 +shortdesc Contributed beamer theme +relocated 1 +longdesc A theme for beamer presentations. +containersize 1500 +containerchecksum b079ceab30460a7b92a616fa6d7216ddddecfa02adfd66bf38aea83eccdf6e63cc52d8b2ae88db0b21962af223b364424227806beabbfb2e344af98474af2528 +runfiles size=1 + RELOC/tex/latex/beamerthemejltree/beamerthemeJLTree.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemeJLTree.sty +catalogue-license gpl +catalogue-topics presentation +catalogue-version 1.1 + +name beamerthemelalic +category Package +revision 58777 +shortdesc A beamer theme for LALIC +relocated 1 +longdesc This package provides the beamer theme for LALIC (Laboratorio +longdesc de Linguistica e Inteligencia Computacional of the Federal +longdesc University of Sao Carlos, Brazil). +containersize 2924 +containerchecksum 70d789b4490e5ceb9d578be03f815eea97706fc89e41756908d41f1953c2b4cee4ce7c142406a0abef0497b89b74dfb2dc6d2a841898996f32025f53626a8548 +doccontainersize 224372 +doccontainerchecksum b79c55da51785c42c68a2bd5f7a386b21fbb36948df8b5e87e60b9eab263e43592b7265902b6f3a2d3bd214dce122fcf0d504ff807a7bee0ebccf7241fa8e1fd +docfiles size=65 + RELOC/doc/latex/beamerthemelalic/LICENSE + RELOC/doc/latex/beamerthemelalic/README.md details="Readme" + RELOC/doc/latex/beamerthemelalic/beamerthemelalic-exemplo.pdf details="Package documentation" + RELOC/doc/latex/beamerthemelalic/beamerthemelalic-exemplo.tex +runfiles size=5 + RELOC/tex/latex/beamerthemelalic/beamercolorthemelalic.sty + RELOC/tex/latex/beamerthemelalic/beamerfontthemelalic.sty + RELOC/tex/latex/beamerthemelalic/beamerinnerthemelalic.sty + RELOC/tex/latex/beamerthemelalic/beamerouterthemelalic.sty + RELOC/tex/latex/beamerthemelalic/beamerthemelalic.sty +catalogue-contact-bugs https://github.com/jandermoreira/temabeamerlalic/issues +catalogue-contact-repository https://github.com/jandermoreira/temabeamerlalic +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemelalic +catalogue-license gpl3+ +catalogue-topics presentation +catalogue-version 1.0 + +name beamerthemenirma +category Package +revision 20765 +shortdesc A Beamer theme for academic presentations +relocated 1 +longdesc The package developed for academic purposes. The distribution +longdesc includes nothing more than style file needed for preparing +longdesc presentations. +containersize 2704 +containerchecksum 6fe83e0805fde96d585dc027ecadd23862815171f56f6a05db0a6788018a096c193c995895f7ca18af6d322877e24d570743d84a922a2c7e4baef35d3f6dfca1 +doccontainersize 404 +doccontainerchecksum 13f1dfbc8f09662b627dd4ed6c7ff297612c5d05a140a446ccdcb6f0ad3a9995b434d418994cccc2323ead666eaeb10b32e1a9d410a38c632df9873717397231 +docfiles size=1 + RELOC/doc/latex/beamerthemenirma/README details="Readme" +runfiles size=2 + RELOC/tex/latex/beamerthemenirma/beamerthemenirma.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/nirma +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.1 + +name beamerthemenord +category Package +revision 56180 +shortdesc A simple beamer theme using the "Nord" color theme +relocated 1 +longdesc This package provides a simple beamer theme using the Nord +longdesc color theme. +containersize 2792 +containerchecksum 4ac0d1a6494f7acdb1afd73b2bf8e7c966ea3167f856432ebb872f0285cfb8fe759735b57bba5e9ebbb91a0bdc9e2dd643f5ab0686e9417e0719369266d7e46d +doccontainersize 2209744 +doccontainerchecksum 0e2038d76d478bfa54a547c97e002e84a98a1dc7ea0a1584f12d6cb1b2c4cb1f65d9d368533b5870c4f3ecae02396ec0172a89eef1547d33a168ab87c846a4d6 +docfiles size=817 + RELOC/doc/latex/beamerthemenord/README.md details="Readme" + RELOC/doc/latex/beamerthemenord/beamerthemeNord.pdf details="Package documentation" + RELOC/doc/latex/beamerthemenord/beamerthemeNord.tex + RELOC/doc/latex/beamerthemenord/screenshots/dark-blocks.png + RELOC/doc/latex/beamerthemenord/screenshots/dark-colors.png + RELOC/doc/latex/beamerthemenord/screenshots/dark-fonts.png + RELOC/doc/latex/beamerthemenord/screenshots/dark-titlepage.png + RELOC/doc/latex/beamerthemenord/screenshots/dark-toc.png + RELOC/doc/latex/beamerthemenord/screenshots/dark-usage.png + RELOC/doc/latex/beamerthemenord/screenshots/light-blocks.png + RELOC/doc/latex/beamerthemenord/screenshots/light-colors.png + RELOC/doc/latex/beamerthemenord/screenshots/light-fonts.png + RELOC/doc/latex/beamerthemenord/screenshots/light-titlepage.png + RELOC/doc/latex/beamerthemenord/screenshots/light-toc.png + RELOC/doc/latex/beamerthemenord/screenshots/light-usage.png +runfiles size=4 + RELOC/tex/latex/beamerthemenord/beamercolorthemeNord.sty + RELOC/tex/latex/beamerthemenord/beamerfontthemeNord.sty + RELOC/tex/latex/beamerthemenord/beamerthemeNord.sty +catalogue-contact-bugs https://github.com/junwei-wang/beamerthemeNord/issues +catalogue-contact-repository https://github.com/junwei-wang/beamerthemeNord +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemenord +catalogue-license lppl1.3c +catalogue-topics presentation +catalogue-version 0.2.0 + +name bearwear +category Package +revision 54826 +shortdesc Shirts to dress TikZbears +relocated 1 +longdesc The package offers tools to create shirts for TikZbears from +longdesc the TikZlings package. +containersize 2376 +containerchecksum c758735d869a9b1dedb64c9c0377891606d32ba69fe0d665d882d7d113bcf3c9678e6cbfe93c269758d492a0336c26f937195f04e80587c1aa083fb1c766829f +doccontainersize 787504 +doccontainerchecksum 03171083f40cc4688ca6849fd371189b43a9e5963e06be3ad44271b11cb985cfa0b369b49ed43110395e1d7d50f4337e9ce597989be48049cdf3c3a1beac5ff8 +docfiles size=279 + RELOC/doc/latex/bearwear/README.md details="Readme" + RELOC/doc/latex/bearwear/baer.png + RELOC/doc/latex/bearwear/bearwear-doc.tex + RELOC/doc/latex/bearwear/bearwear.pdf details="Package documentation" + RELOC/doc/latex/bearwear/flag.pdf + RELOC/doc/latex/bearwear/latex-project-logo.pdf + RELOC/doc/latex/bearwear/montblanc.jpg + RELOC/doc/latex/bearwear/tartan3.jpg + RELOC/doc/latex/bearwear/ulrike.pdf +srccontainersize 5992 +srccontainerchecksum 5263fce263e48699b3e59e556827f3fdd88cb812a33d259effad361289ab8270c40d7c3c510938c56a99070bea4894d769e7f0986c7aab75262feb59dfc27078 +srcfiles size=6 + RELOC/source/latex/bearwear/bearwear.dtx + RELOC/source/latex/bearwear/bearwear.ins +runfiles size=2 + RELOC/tex/latex/bearwear/bearwear.sty +catalogue-also tikzlings +catalogue-contact-repository https://github.com/u-fischer/bearwear +catalogue-contact-support https://github.com/u-fischer/bearwear/issues +catalogue-ctan /macros/latex/contrib/bearwear +catalogue-license lppl1.3c +catalogue-topics amusements graphics pgf-tikz +catalogue-version 0.2 + +name beaulivre +category Package +revision 58503 +shortdesc Write your books in a colorful way +relocated 1 +longdesc This package provides a LaTeX class for typesetting books with +longdesc a colorful design. Currently, it has native support for +longdesc English, French, and Chinese typesetting. It compiles with +longdesc either XeLaTeX or LuaLaTeX. This is part of the colorist class +longdesc series and depends on colorist.sty from the colorist package. +longdesc The package name "beaulivre" is taken from the French words +longdesc "beau" (= "beautiful") and "livre" (= "book"). +depend colorist +containersize 3024 +containerchecksum 68117aaa40fb49c0fa7da73fb4f5cd1445191efadb4ed1ad08a12878fc1681cea13804fbf949484a63834cb0a14b3d306bb6def553e3dfe2420ef7e2b84614ab +doccontainersize 275784 +doccontainerchecksum 263b5b5bd27c13db1247354429ccc93953e522213a2b154c08918489eb4c2ee3fc36f5a2922a901f1113b2bffd11301b4d3d71f90876886c32e07a38f28e30b9 +docfiles size=82 + RELOC/doc/latex/beaulivre/LICENSE + RELOC/doc/latex/beaulivre/README.md details="Readme" + RELOC/doc/latex/beaulivre/beaulivre-doc-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/beaulivre/beaulivre-doc-cn.tex + RELOC/doc/latex/beaulivre/beaulivre-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/beaulivre/beaulivre-doc-en.tex +runfiles size=2 + RELOC/tex/latex/beaulivre/beaulivre.cls +catalogue-also colorist +catalogue-contact-repository https://github.com/Jinwen-XU/colorist +catalogue-ctan /macros/unicodetex/latex/beaulivre +catalogue-license lppl1.3c +catalogue-topics class book-pub chinese + +name beebe +category Package +revision 58983 +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 876100 +containerchecksum 88a01fd42056ca3581ff9178e8313fa20e0339277aa133076b7af425a90cc133ea768ab132058e4e70dcb0850fd0eedf44248d459ad7a5a2366ab06d4a1a0636 +runfiles size=2173 + RELOC/bibtex/bib/beebe/epodd.bib + RELOC/bibtex/bib/beebe/font.bib + RELOC/bibtex/bib/beebe/printing-history.bib + RELOC/bibtex/bib/beebe/serif.bib + RELOC/bibtex/bib/beebe/texbook1.bib + RELOC/bibtex/bib/beebe/texbook2.bib + RELOC/bibtex/bib/beebe/texbook3.bib + RELOC/bibtex/bib/beebe/texgraph.bib + RELOC/bibtex/bib/beebe/texjourn.bib + RELOC/bibtex/bib/beebe/texnique.bib + RELOC/bibtex/bib/beebe/tugboat.bib + RELOC/bibtex/bib/beebe/type.bib + RELOC/bibtex/bib/beebe/typeset.bib + RELOC/tex/generic/beebe/bibnames.sty + RELOC/tex/generic/beebe/texnames.sty + RELOC/tex/generic/beebe/tugboat.def +catalogue-contact-home http://www.math.utah.edu/~beebe/ +catalogue-ctan /info/biblio +catalogue-license pd +catalogue-topics bibtex-lib + +name begingreek +category Package +revision 36294 +shortdesc Greek environment to be used with pdfLaTeX only +relocated 1 +longdesc This simple package defines a greek environment to be used with +longdesc pdfLaTeX only, that accepts an optional Greek font family name +longdesc to type its contents with. A similar \greektxt command does a +longdesc similar action for shorter texts. +containersize 1664 +containerchecksum 88b3bd66f458eacdb1c4da1cf4a44de333ab45f3d498eecc1a1d4b688c955b3a759a620642e3cf94268136989817f97d783475740a0c16d3b5578b670d967719 +doccontainersize 709916 +doccontainerchecksum 3792be7b825db6ffa7194a0cad8d8ba0c2ab3ef64f87abeb607870702612a22c798a61e8b07d61f21e1a0db30c4645c3ebe03bc0ac7c297fbec163d9cb91f22b +docfiles size=175 + RELOC/doc/latex/begingreek/README details="Readme" + RELOC/doc/latex/begingreek/begingreek.pdf details="Package documentation" + RELOC/doc/latex/begingreek/manifest.txt +srccontainersize 7448 +srccontainerchecksum 605588a60e9cb2d6a3be3d8dfada6468dfee100eb7739c7ce3d264af38d305be103a62b267b8f05d8a57d9bae273f930b2e4dcc5f3352ddfb8c1e50ac81ae7d4 +srcfiles size=5 + RELOC/source/latex/begingreek/begingreek.dtx +runfiles size=1 + RELOC/tex/latex/begingreek/begingreek.sty +catalogue-ctan /macros/latex/contrib/begingreek +catalogue-license lppl1.3 +catalogue-topics greek +catalogue-version 1.5 + +name begriff +category Package +revision 15878 +shortdesc Typeset Begriffschrift +relocated 1 +longdesc The package defines maths mode commands for typesetting Frege's +longdesc Begriffschrift. +containersize 2468 +containerchecksum ed1060e0ce9bad28f98481eed44f8bd98f6b8be91dd5dc87d5c34a6cc57e724d175fa909fd6ff514399eb81bd8f28450f7c9a6c6a9bc991f35d617a8a25de8ed +doccontainersize 40204 +doccontainerchecksum af28c20897e297af4ca1fb13bb286ff0eece9e2f06f5b734062716c0c5f5b7dd673d046a5a47c907f9a845a7257393f3328d46c4ea2ac0ae6b0eff1244e97256 +docfiles size=20 + RELOC/doc/latex/begriff/COPYING + RELOC/doc/latex/begriff/README details="Readme" + RELOC/doc/latex/begriff/examples.pdf + RELOC/doc/latex/begriff/examples.tex +runfiles size=2 + RELOC/tex/latex/begriff/begriff.sty +catalogue-also frege grundgesetze bguq +catalogue-ctan /macros/latex/contrib/begriff +catalogue-license gpl +catalogue-topics maths logic +catalogue-version 1.6 + +name beilstein +category Package +revision 56193 +shortdesc Support for submissions to the "Beilstein Journal of Nanotechnology" +relocated 1 +longdesc The package provides a LaTeX class file and a BibTeX style file +longdesc in accordance with the requirements of submissions to the +longdesc ``Beilstein Journal of Nanotechnology''. Although the files can +longdesc be used for any kind of document, they have only been designed +longdesc and tested to be suitable for submissions to the Beilstein +longdesc Journal of Nanotechnology. +containersize 13304 +containerchecksum 4d604245024a94e23c30c7968e177173efebc7d8d227688f0e90adbf071c7d0d44a6c07c37143675a66899062ca2b8c366516ca3863128e33e784919a33e3d49 +doccontainersize 666912 +doccontainerchecksum 9684c13b0d91121e7e7548ed9bc1e377ac7a54f9f1f2aeb57d465bab36b17d216e1cae4eea9b3fb6e5afc42e41f465a31db0209f5b45f40f7db0afbc4646c73d +docfiles size=178 + RELOC/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf + RELOC/doc/latex/beilstein/CHANGELOG.md + RELOC/doc/latex/beilstein/README.md details="Readme" + RELOC/doc/latex/beilstein/beilstein-template.bib + RELOC/doc/latex/beilstein/beilstein-template.tex + RELOC/doc/latex/beilstein/figure1.pdf + RELOC/doc/latex/beilstein/scheme1.pdf + RELOC/doc/latex/beilstein/scheme2.pdf +srccontainersize 76016 +srccontainerchecksum 0bd1079836d7740070d6100730449e6118a14485902a9016109587530e0f83b8dd4a4466cce914c5f06f42163da746e75fd998eb6b279e45574f81535e65ed1f +srcfiles size=50 + RELOC/source/latex/beilstein/beilstein.dtx + RELOC/source/latex/beilstein/beilstein.ins + RELOC/source/latex/beilstein/bjnano_logo.pdf +runfiles size=16 + RELOC/bibtex/bst/beilstein/bjnano.bst + RELOC/tex/latex/beilstein/beilstein.cls +catalogue-contact-home https://www.beilstein-journals.org/bjnano/ +catalogue-ctan /macros/latex/contrib/beilstein +catalogue-license lppl1.3c +catalogue-topics journalpub +catalogue-version 2.1 + +name belleek +category Package +revision 18651 +shortdesc Free replacement for basic MathTime fonts +relocated 1 +longdesc This package replaces the original MathTime fonts, not +longdesc MathTime-Plus or MathTime Professional (the last being the only +longdesc currently available commercial bundle). +execute addMap belleek.map +containersize 83284 +containerchecksum cdc7499ec32c26ac524caecc6b5c1f30f3ded83d78756b198b918d321696f378e6487f528cb3781a44f3485110dfff14a14c9b3306e22ae79a8d262c1f1baea4 +doccontainersize 720 +doccontainerchecksum e974e00c2e43d01d598c18f664e8ca3ca9259ca55089598c77468d6f50d0cc9a64d4fc23154bf9ba7acf3b9b9ca406beff24623eae5b6c3ce4c167904e5fb720 +docfiles size=1 + RELOC/doc/fonts/belleek/README details="Readme" +srccontainersize 596 +srccontainerchecksum 27ea3f4dd1ba7919bf06dfcdcf7b1ca4fa609759a58dffd91fdb2a55662e58e14e19d855d93ec932d176060ee332d89e02c9d2965ec545adfb10f3f486f8875d +srcfiles size=3 + RELOC/source/latex/belleek/my1mtt.fd + RELOC/source/latex/belleek/my2mtt.fd + RELOC/source/latex/belleek/my3mtt.fd +runfiles size=34 + RELOC/fonts/map/dvips/belleek/belleek.map + RELOC/fonts/truetype/public/belleek/blex.ttf + RELOC/fonts/truetype/public/belleek/blsy.ttf + RELOC/fonts/truetype/public/belleek/rblmi.ttf + RELOC/fonts/type1/public/belleek/blex.pfb + RELOC/fonts/type1/public/belleek/blsy.pfb + RELOC/fonts/type1/public/belleek/rblmi.pfb +catalogue-contact-home http://truetex.com +catalogue-ctan /fonts/belleek +catalogue-license pd +catalogue-topics font font-maths font-type1 + +name bengali +category Package +revision 55475 +catalogue bengali-pandey +shortdesc Support for the Bengali language +relocated 1 +longdesc The package is based on Velthuis' transliteration scheme, with +longdesc extensions to deal with the Bengali letters that are not in +longdesc Devanagari. The package also supports Assamese. +containersize 17056 +containerchecksum 2ace635791a4c7a8af0843a5a92d518d0e93fc09a94929a277002a3e4426f199e207238766b07ff3f1e1bf0e3c0cf8b83897b30ba105ee7239d6ce1d591289fe +doccontainersize 76020 +doccontainerchecksum 61bed8e39b9dc4673ce27402c0ee76b035e254133af09bbbadd00b80d367ffe204d5f660af8c633bc7dc6bd81f66ce419741e341f63e314367f2e54c61f8269e +docfiles size=39 + RELOC/doc/fonts/bengali/README + RELOC/doc/fonts/bengali/bengdoc.bn + RELOC/doc/fonts/bengali/bengdoc.pdf details="Package documentation" + RELOC/doc/fonts/bengali/example.bn + RELOC/doc/fonts/bengali/example.pdf + RELOC/doc/fonts/bengali/manifest.txt +srccontainersize 8944 +srccontainerchecksum ddfd0dce8379aaa3e224f74fd33fa4dd1fbe6a40d9a01bc6dc8da1dbca5b5eae97c4837ff21c75be8658d37693cdff3c2983fe01c77d13bd0eb89e14f78d6e2a +srcfiles size=11 + RELOC/source/latex/bengali/beng.c +runfiles size=42 + RELOC/fonts/source/public/bengali/bn.mf + RELOC/fonts/source/public/bengali/bnbanjon.mf + RELOC/fonts/source/public/bengali/bndigit.mf + RELOC/fonts/source/public/bengali/bnjuk.mf + RELOC/fonts/source/public/bengali/bnkaar.mf + RELOC/fonts/source/public/bengali/bnlig.mf + RELOC/fonts/source/public/bengali/bnligtbl.mf + RELOC/fonts/source/public/bengali/bnmacro.mf + RELOC/fonts/source/public/bengali/bnmisc.mf + RELOC/fonts/source/public/bengali/bnpunct.mf + RELOC/fonts/source/public/bengali/bnr10.mf + RELOC/fonts/source/public/bengali/bnsl10.mf + RELOC/fonts/source/public/bengali/bnswar.mf + RELOC/fonts/source/public/bengali/xbnr10.mf + RELOC/fonts/source/public/bengali/xbnsl10.mf + RELOC/fonts/source/public/bengali/xbnsupp.mf + RELOC/fonts/tfm/public/bengali/bnr10.tfm + RELOC/fonts/tfm/public/bengali/bnsl10.tfm + RELOC/fonts/tfm/public/bengali/xbnr10.tfm + RELOC/fonts/tfm/public/bengali/xbnsl10.tfm + RELOC/tex/latex/bengali/beng.sty + RELOC/tex/latex/bengali/ubn.fd + RELOC/tex/latex/bengali/ubnx.fd +catalogue-also arosgn +catalogue-ctan /language/bengali/pandey +catalogue-license lppl +catalogue-topics indic bengali + +name bera +category Package +revision 20031 +shortdesc Bera fonts +relocated 1 +longdesc The package contains the Bera Type 1 fonts, and a zip archive +longdesc containing files to use the fonts with LaTeX. Bera is a set of +longdesc three font families: Bera Serif (a slab-serif Roman), Bera Sans +longdesc (a Frutiger descendant), and Bera Mono (monospaced/typewriter). +longdesc Support for use in LaTeX is also provided. The Bera family is a +longdesc repackaging, for use with TeX, of the Bitstream Vera family. +execute addMap bera.map +containersize 312612 +containerchecksum 103b2db8f7bccf6a9729faae793246d2933667295ba404fdaa7b61cfbce0f1209ea27e7a2a63846c6550b41214ff496a62598bbb9b731c087b8bba9e0abade80 +doccontainersize 18556 +doccontainerchecksum 2606c87871d6f6ed27b2a5e49117c50f00573bc6b9ce249d1433da214764b220eb00c73e59be43e32e8a4827c397c53504103e00b7e5602de5df5bb817e2145d +docfiles size=10 + RELOC/doc/fonts/bera/LICENSE + RELOC/doc/fonts/bera/README details="Readme" + RELOC/doc/fonts/bera/bera.pdf details="Font samples" + RELOC/doc/fonts/bera/bera.txt +runfiles size=249 + RELOC/fonts/afm/public/bera/fveb8a.afm + RELOC/fonts/afm/public/bera/fver8a.afm + RELOC/fonts/afm/public/bera/fvmb8a.afm + RELOC/fonts/afm/public/bera/fvmbo8a.afm + RELOC/fonts/afm/public/bera/fvmr8a.afm + RELOC/fonts/afm/public/bera/fvmro8a.afm + RELOC/fonts/afm/public/bera/fvsb8a.afm + RELOC/fonts/afm/public/bera/fvsbo8a.afm + RELOC/fonts/afm/public/bera/fvsr8a.afm + RELOC/fonts/afm/public/bera/fvsro8a.afm + RELOC/fonts/map/dvips/bera/bera.map + RELOC/fonts/tfm/public/bera/fveb8a.tfm + RELOC/fonts/tfm/public/bera/fveb8c.tfm + RELOC/fonts/tfm/public/bera/fveb8r.tfm + RELOC/fonts/tfm/public/bera/fveb8t.tfm + RELOC/fonts/tfm/public/bera/fvebo8c.tfm + RELOC/fonts/tfm/public/bera/fvebo8r.tfm + RELOC/fonts/tfm/public/bera/fvebo8t.tfm + RELOC/fonts/tfm/public/bera/fver8a.tfm + RELOC/fonts/tfm/public/bera/fver8c.tfm + RELOC/fonts/tfm/public/bera/fver8r.tfm + RELOC/fonts/tfm/public/bera/fver8t.tfm + RELOC/fonts/tfm/public/bera/fvero8c.tfm + RELOC/fonts/tfm/public/bera/fvero8r.tfm + RELOC/fonts/tfm/public/bera/fvero8t.tfm + RELOC/fonts/tfm/public/bera/fvmb8a.tfm + RELOC/fonts/tfm/public/bera/fvmb8c.tfm + RELOC/fonts/tfm/public/bera/fvmb8r.tfm + RELOC/fonts/tfm/public/bera/fvmb8t.tfm + RELOC/fonts/tfm/public/bera/fvmbo8a.tfm + RELOC/fonts/tfm/public/bera/fvmbo8c.tfm + RELOC/fonts/tfm/public/bera/fvmbo8r.tfm + RELOC/fonts/tfm/public/bera/fvmbo8t.tfm + RELOC/fonts/tfm/public/bera/fvmr8a.tfm + RELOC/fonts/tfm/public/bera/fvmr8c.tfm + RELOC/fonts/tfm/public/bera/fvmr8r.tfm + RELOC/fonts/tfm/public/bera/fvmr8t.tfm + RELOC/fonts/tfm/public/bera/fvmro8a.tfm + RELOC/fonts/tfm/public/bera/fvmro8c.tfm + RELOC/fonts/tfm/public/bera/fvmro8r.tfm + RELOC/fonts/tfm/public/bera/fvmro8t.tfm + RELOC/fonts/tfm/public/bera/fvsb8a.tfm + RELOC/fonts/tfm/public/bera/fvsb8c.tfm + RELOC/fonts/tfm/public/bera/fvsb8r.tfm + RELOC/fonts/tfm/public/bera/fvsb8t.tfm + RELOC/fonts/tfm/public/bera/fvsbo8a.tfm + RELOC/fonts/tfm/public/bera/fvsbo8c.tfm + RELOC/fonts/tfm/public/bera/fvsbo8r.tfm + RELOC/fonts/tfm/public/bera/fvsbo8t.tfm + RELOC/fonts/tfm/public/bera/fvsr8a.tfm + RELOC/fonts/tfm/public/bera/fvsr8c.tfm + RELOC/fonts/tfm/public/bera/fvsr8r.tfm + RELOC/fonts/tfm/public/bera/fvsr8t.tfm + RELOC/fonts/tfm/public/bera/fvsro8a.tfm + RELOC/fonts/tfm/public/bera/fvsro8c.tfm + RELOC/fonts/tfm/public/bera/fvsro8r.tfm + RELOC/fonts/tfm/public/bera/fvsro8t.tfm + RELOC/fonts/type1/public/bera/fveb8a.pfb + RELOC/fonts/type1/public/bera/fver8a.pfb + RELOC/fonts/type1/public/bera/fvmb8a.pfb + RELOC/fonts/type1/public/bera/fvmbo8a.pfb + RELOC/fonts/type1/public/bera/fvmr8a.pfb + RELOC/fonts/type1/public/bera/fvmro8a.pfb + RELOC/fonts/type1/public/bera/fvsb8a.pfb + RELOC/fonts/type1/public/bera/fvsbo8a.pfb + RELOC/fonts/type1/public/bera/fvsr8a.pfb + RELOC/fonts/type1/public/bera/fvsro8a.pfb + RELOC/fonts/vf/public/bera/fveb8c.vf + RELOC/fonts/vf/public/bera/fveb8t.vf + RELOC/fonts/vf/public/bera/fvebo8c.vf + RELOC/fonts/vf/public/bera/fvebo8t.vf + RELOC/fonts/vf/public/bera/fver8c.vf + RELOC/fonts/vf/public/bera/fver8t.vf + RELOC/fonts/vf/public/bera/fvero8c.vf + RELOC/fonts/vf/public/bera/fvero8t.vf + RELOC/fonts/vf/public/bera/fvmb8c.vf + RELOC/fonts/vf/public/bera/fvmb8t.vf + RELOC/fonts/vf/public/bera/fvmbo8c.vf + RELOC/fonts/vf/public/bera/fvmbo8t.vf + RELOC/fonts/vf/public/bera/fvmr8c.vf + RELOC/fonts/vf/public/bera/fvmr8t.vf + RELOC/fonts/vf/public/bera/fvmro8c.vf + RELOC/fonts/vf/public/bera/fvmro8t.vf + RELOC/fonts/vf/public/bera/fvsb8c.vf + RELOC/fonts/vf/public/bera/fvsb8t.vf + RELOC/fonts/vf/public/bera/fvsbo8c.vf + RELOC/fonts/vf/public/bera/fvsbo8t.vf + RELOC/fonts/vf/public/bera/fvsr8c.vf + RELOC/fonts/vf/public/bera/fvsr8t.vf + RELOC/fonts/vf/public/bera/fvsro8c.vf + RELOC/fonts/vf/public/bera/fvsro8t.vf + RELOC/tex/latex/bera/bera.sty + RELOC/tex/latex/bera/beramono.sty + RELOC/tex/latex/bera/berasans.sty + RELOC/tex/latex/bera/beraserif.sty + RELOC/tex/latex/bera/t1fve.fd + RELOC/tex/latex/bera/t1fvm.fd + RELOC/tex/latex/bera/t1fvs.fd + RELOC/tex/latex/bera/ts1fve.fd + RELOC/tex/latex/bera/ts1fvm.fd + RELOC/tex/latex/bera/ts1fvs.fd +catalogue-ctan /fonts/bera +catalogue-license other-free +catalogue-topics font font-serif font-sans font-proportional font-mono font-type1 + +name berenisadf +category Package +revision 32215 +shortdesc Berenis ADF fonts and TeX/LaTeX support +relocated 1 +longdesc The bundle provides the BerenisADF Pro font collection, in +longdesc OpenType and PostScript Type 1 formats, together with support +longdesc files to use the fonts in TeXnANSI (LY1) and LaTeX standard T1 +longdesc and TS1 encodings. +execute addMap ybd.map +containersize 1389668 +containerchecksum 70dd547d0c5138f2a61e20b4585160e5fef281bbba72ba8dcc7032efa957d80c158ba88fdc0dda9982dbcd69a48d5d54286f52d1425a5819e54e05d79eb9dd49 +doccontainersize 364484 +doccontainerchecksum f076717ff948247589225fbe4fcd92114d719526e535d645d767a3f7fdaafd3a6ca84c3a60997074186974ebf045e31a51d16d53c8a5fdc78a2461733cc66372 +docfiles size=118 + RELOC/doc/fonts/berenisadf/COPYING + RELOC/doc/fonts/berenisadf/COPYING.unix + RELOC/doc/fonts/berenisadf/Makefile.source + RELOC/doc/fonts/berenisadf/NOTICE.txt + RELOC/doc/fonts/berenisadf/README.doc + RELOC/doc/fonts/berenisadf/berenisadf.pdf details="Package documentation" + RELOC/doc/fonts/berenisadf/berenisadf.tex + RELOC/doc/fonts/berenisadf/cfr.gwneud.cyhoeddus + RELOC/doc/fonts/berenisadf/ff-ybd.pe + RELOC/doc/fonts/berenisadf/manifest.txt + RELOC/doc/fonts/berenisadf/ybd-8t.lig + RELOC/doc/fonts/berenisadf/ybd-8y.lig + RELOC/doc/fonts/berenisadf/ybd.nam +runfiles size=1517 + RELOC/fonts/afm/arkandis/berenisadf/ybdb.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdbc.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdbci.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdbi.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdr.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdrc.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdrci.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdri.afm + RELOC/fonts/enc/dvips/berenisadf/t1-ybd.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd0.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd1.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd2.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd2j.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybdj.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd0.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd1.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd2.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd2j.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybdj.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybd2jw.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybd2w.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybdjw.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybdw.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd0.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd1.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd2.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd2j.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybdj.enc + RELOC/fonts/map/dvips/berenisadf/ybd.map + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Bold.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-BoldItalic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Italic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Regular.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Bold.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-BoldItalic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Italic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Regular.otf + RELOC/fonts/tfm/arkandis/berenisadf/ybdb08c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb08t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb08y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb18c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb18t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb18y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb28c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb28t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb28y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2iw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2j8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2j8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2j8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2jw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2w8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbc8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbc8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbc8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbi8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbi8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbi8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbiw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr08c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr08t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr08y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr18c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr18t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr18y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr28c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr28t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr28y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2iw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2j8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2j8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2j8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2jw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2w8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrc8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrc8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrc8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdri8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdri8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdri8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdriw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrw8y.tfm + RELOC/fonts/type1/arkandis/berenisadf/ybdb.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdbc.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdbci.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdbi.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdr.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdrc.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdrci.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdri.pfb + RELOC/tex/latex/berenisadf/berenis.sty + RELOC/tex/latex/berenisadf/ly1ybd.fd + RELOC/tex/latex/berenisadf/ly1ybd0.fd + RELOC/tex/latex/berenisadf/ly1ybd1.fd + RELOC/tex/latex/berenisadf/ly1ybd2.fd + RELOC/tex/latex/berenisadf/ly1ybd2j.fd + RELOC/tex/latex/berenisadf/ly1ybd2jw.fd + RELOC/tex/latex/berenisadf/ly1ybd2w.fd + RELOC/tex/latex/berenisadf/ly1ybdj.fd + RELOC/tex/latex/berenisadf/ly1ybdjw.fd + RELOC/tex/latex/berenisadf/ly1ybdw.fd + RELOC/tex/latex/berenisadf/t1ybd.fd + RELOC/tex/latex/berenisadf/t1ybd0.fd + RELOC/tex/latex/berenisadf/t1ybd1.fd + RELOC/tex/latex/berenisadf/t1ybd2.fd + RELOC/tex/latex/berenisadf/t1ybd2j.fd + RELOC/tex/latex/berenisadf/t1ybdj.fd + RELOC/tex/latex/berenisadf/ts1ybd.fd + RELOC/tex/latex/berenisadf/ts1ybd0.fd + RELOC/tex/latex/berenisadf/ts1ybd1.fd + RELOC/tex/latex/berenisadf/ts1ybd2.fd + RELOC/tex/latex/berenisadf/ts1ybd2j.fd + RELOC/tex/latex/berenisadf/ts1ybdj.fd +catalogue-ctan /fonts/berenisadf +catalogue-license other-free +catalogue-topics font font-serif font-type1 font-otf +catalogue-version 1.004 + +name besjournals +category Package +revision 45662 +catalogue besjournals-bst +shortdesc Bibliographies suitable for British Ecological Society journals +relocated 1 +longdesc The package provides a BibTeX style for use with journals +longdesc published by the British Ecological Society. The style was +longdesc produced independently of the Society, and has no formal +longdesc approval by the BES. +containersize 8920 +containerchecksum e797bce36fa6529d6b57be352ed81b7413c2ca818fa904a8cc4c7c8f0801369543482aa5c286b40f6f7c5e0b73d53b6aa6b9aaeab3e6229da7dd954a3dedb1ca +doccontainersize 8264 +doccontainerchecksum c790eb0ced559adc6696f0f228c88a2314214ff6a4ab71ae03dc46b3974cdaae53fc685c05f0bbb7646a5b31d332f763fce4a71919319aa520965f56979eee54 +docfiles size=8 + RELOC/doc/bibtex/besjournals/README details="Readme" + RELOC/doc/bibtex/besjournals/besjournals.dbj +runfiles size=11 + RELOC/bibtex/bst/besjournals/besjournals.bst +catalogue-ctan /biblio/bibtex/contrib/besjournals +catalogue-license lppl +catalogue-topics bibtex-sty journalpub + +name bestpapers +category Package +revision 38708 +shortdesc A BibTeX package to produce lists of authors' best papers +relocated 1 +longdesc Many people preparing their resumes find the requirement +longdesc "please list five (or six, or ten) papers authored by you". The +longdesc same requirement is often stated for reports prepared by +longdesc professional teams. The creation of such lists may be a +longdesc cumbersome task. Even more difficult is it to support such +longdesc lists over the time, when new papers are added. The BibTeX +longdesc style bestpapers.bst is intended to facilitate this task. It is +longdesc based on the idea that it is easier to score than to sort: We +longdesc can assign a score to a paper and then let the computer select +longdesc the papers with highest scores. This work was commissioned by +longdesc the Consumer Financial Protection Bureau, United States +longdesc Treasury. This package is in the public domain. +containersize 7456 +containerchecksum d015369a268cff98571985f319f95df9ffe0255ad222e8c8133252c3ab5537cfc4c3ea11aab13a565c096e92472d7724c0ef23ce6a71f62c7a5fc2b30382a054 +doccontainersize 176932 +doccontainerchecksum cb5e9bbcc83b6081dd0207001d1b39c6e089e2ae168f20d1cc87482560a483e4ea195fbf208c342ba691d3c85ea9f4674b2eb6cf68db9f9d83d3b98bbab60dc3 +docfiles size=50 + RELOC/doc/bibtex/bestpapers/Makefile + RELOC/doc/bibtex/bestpapers/README details="Readme" + RELOC/doc/bibtex/bestpapers/bestpapers-guide.pdf details="Package documentation" + RELOC/doc/bibtex/bestpapers/bestpapers-guide.tex + RELOC/doc/bibtex/bestpapers/tex.bib + RELOC/doc/bibtex/bestpapers/typography.bib +runfiles size=9 + RELOC/bibtex/bst/bestpapers/bestpapers-export.bst + RELOC/bibtex/bst/bestpapers/bestpapers.bst +catalogue-ctan /biblio/bibtex/contrib/bestpapers +catalogue-license pd +catalogue-topics bibtex-sty +catalogue-version 1.0 + +name betababel +category Package +revision 15878 +shortdesc Insert ancient greek text coded in Beta Code +relocated 1 +longdesc The betababel package extends the babel polutonikogreek option +longdesc to provide a simple way to insert ancient Greek texts with +longdesc diacritical characters into your document using the commonly +longdesc used Beta Code transliteration. You can directly insert Beta +longdesc Code texts -- as they can be found at the Perseus project, for +longdesc example -- without modification. +containersize 3344 +containerchecksum db2a590e8ed5e946652cc54d5c01bd540b87f77253278f9211c8720229992275f80edc26d0c94b4f68237d84a5bf7b56bd93a40e2a0ce8df5ffdeb124c81d219 +doccontainersize 151916 +doccontainerchecksum 209f8fc6123f8403bf6a30731773aeea82c5c6de123e24755e9a22ca6f3ea170015feeb541242a772c3244e7b74f1a766e95886e4f773f21c48b353f22d6adce +docfiles size=48 + RELOC/doc/latex/betababel/betatest.pdf details="Package documentation" + RELOC/doc/latex/betababel/betatest.tex +runfiles size=3 + RELOC/tex/latex/betababel/betababel.sty +catalogue-contact-home http://www.tlg.uci.edu/ +catalogue-ctan /macros/latex/contrib/betababel +catalogue-license lppl +catalogue-topics greek multilingual-addon +catalogue-version 0.5 + +name beton +category Package +revision 15878 +shortdesc Use Concrete fonts +relocated 1 +longdesc Typeset a LaTeX2e document with the Concrete fonts designed by +longdesc Don Knuth and used in his book "Concrete Mathematics". +containersize 1772 +containerchecksum 23d243f15a79246aa590a7ec65249724a4460ac6e3ac01dba2aeddfc169875dd8392c1374cb8459ff84210d51822430fab9d75a87f0ece20323cd20709de0c14 +doccontainersize 59196 +doccontainerchecksum fa579427c97f930455bc548d5b438f32aa291d98f9d8b391dae686b270e135605cb3ddd6cfb9076cb248a17eabb4e62bcf4f720b2daf829b3d12d6ebc294f832 +docfiles size=27 + RELOC/doc/latex/beton/beton.pdf + RELOC/doc/latex/beton/legal.txt +srccontainersize 5796 +srccontainerchecksum 79e129919c06ef083e4f8fdcd88a60339591b3f95776feb9cc076e46fb379b5ab10f9b48f3b8a948e9a120412f818dd3d99cc24957d3eaa812bbefb388d91049 +srcfiles size=5 + RELOC/source/latex/beton/beton.dtx + RELOC/source/latex/beton/beton.ins +runfiles size=1 + RELOC/tex/latex/beton/beton.sty +catalogue-also euler +catalogue-ctan /macros/latex/contrib/beton +catalogue-license lppl +catalogue-topics font-supp + +name beuron +category Package +revision 46374 +shortdesc The script of the Beuronese art school +relocated 1 +longdesc This package provides the script used in the works of the +longdesc Beuron art school for use with TeX and LaTeX. It is a +longdesc monumental script consisting of capital letters only. The fonts +longdesc are provided as Metafont sources, in the Type1 and in the +longdesc OpenType format. The package includes suitable font selection +longdesc commands for use with LaTeX. +execute addMap beuron.map +containersize 50972 +containerchecksum 623d3b7d8747ce1776de9d0ee6eec013c2050f9cb4a521167bcf23435d5e30c1233ee869ccb299360cfb6f8f4b4034a77d4fe601f789211b290684c0858462a2 +doccontainersize 216700 +doccontainerchecksum 812dd30a9b49d7ab5e529f3c7ef934be5d72b75adeec1a38cba77c867525243ffd0d4f4901c9100e6518eb0a8c35e208157b8e3669d3700203ab7fe95aa29845 +docfiles size=81 + RELOC/doc/fonts/beuron/Literatur.bib + RELOC/doc/fonts/beuron/README details="Readme" + RELOC/doc/fonts/beuron/beuron-de.pdf details="Package documentation (German)" language="de" + RELOC/doc/fonts/beuron/beuron-de.tex + RELOC/doc/fonts/beuron/beuron-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/fonts/beuron/beuron-en.tex +runfiles size=36 + RELOC/fonts/map/dvips/beuron/beuron.map + RELOC/fonts/opentype/public/beuron/Beuron-Regular.otf + RELOC/fonts/opentype/public/beuron/BeuronCondensed-Regular.otf + RELOC/fonts/opentype/public/beuron/BeuronExtended-Regular.otf + RELOC/fonts/source/public/beuron/beuron.mf + RELOC/fonts/source/public/beuron/beuronbuchst.mf + RELOC/fonts/source/public/beuron/beuronc.mf + RELOC/fonts/source/public/beuron/beuronkern.mf + RELOC/fonts/source/public/beuron/beuronx.mf + RELOC/fonts/tfm/public/beuron/beuron.tfm + RELOC/fonts/tfm/public/beuron/beuronc.tfm + RELOC/fonts/tfm/public/beuron/beuronx.tfm + RELOC/fonts/type1/public/beuron/beuron.pfb + RELOC/fonts/type1/public/beuron/beuronc.pfb + RELOC/fonts/type1/public/beuron/beuronx.pfb + RELOC/tex/latex/beuron/beuron.sty + RELOC/tex/latex/beuron/t1beuron.fd +catalogue-ctan /fonts/beuron +catalogue-license lppl1.3 +catalogue-topics font-decor font-mf font-type1 font-otf +catalogue-version 1.3 + +name bewerbung +category Package +revision 56998 +shortdesc Typesetting job applications +relocated 1 +longdesc The package provides packages and classes for typesetting +longdesc applications with titlepage, cover letter, cv and additional +longdesc documents in just a single document. There is also a class for +longdesc printing a table of the latest applications that can be shown +longdesc to the German authorities. The data for these applications can +longdesc be maintained in a simple CSV file. +containersize 10004 +containerchecksum 85ea6341316c231786612a29fbdd4bdaa412512f23e84431669a60262b5594fee908f68b8805ec79adf8445eed724327e4df8e692e75717710498486f86a7f22 +doccontainersize 815368 +doccontainerchecksum c414d4d98b74e8720e487ec2ff5040e9e3de59dcce449698d5e781abb300f13679a5beb2c4af3439a8ded3072a9e69d7bab431869309e87a7b5e803ad684d177 +docfiles size=232 + RELOC/doc/latex/bewerbung/Foto.pdf + RELOC/doc/latex/bewerbung/README details="Readme" + RELOC/doc/latex/bewerbung/README_DE details="Readme(German)" language="de" + RELOC/doc/latex/bewerbung/anschrift.csv + RELOC/doc/latex/bewerbung/argetabelle-example.pdf + RELOC/doc/latex/bewerbung/argetabelle-example.tex + RELOC/doc/latex/bewerbung/bewerbung-example.pdf details="Example of use" + RELOC/doc/latex/bewerbung/bewerbung-example.tex + RELOC/doc/latex/bewerbung/bewerbung.pdf details="Package documentation" language="de,en" + RELOC/doc/latex/bewerbung/config.inc + RELOC/doc/latex/bewerbung/neueBewerbung.sh + RELOC/doc/latex/bewerbung/titlepage.inc +srccontainersize 25676 +srccontainerchecksum 25749c09482ea181ea35b95bebabdded49908ab6796ece3d907261907581118eaf626dba418987349d503a4ce8dfde87faa5ff2b750a53bfd6ccb4c7525ea141 +srcfiles size=30 + RELOC/source/latex/bewerbung/bewerbung.dtx + RELOC/source/latex/bewerbung/bewerbung.ins +runfiles size=18 + RELOC/tex/latex/bewerbung/argetabelle.cls + RELOC/tex/latex/bewerbung/bewerbung-cv-casual.sty + RELOC/tex/latex/bewerbung/bewerbung-cv-classic.sty + RELOC/tex/latex/bewerbung/bewerbung-cv-oldstyle.sty + RELOC/tex/latex/bewerbung/bewerbung-cv.sty + RELOC/tex/latex/bewerbung/bewerbung.cls + RELOC/tex/latex/bewerbung/bewerbung.sty +catalogue-ctan /macros/latex/contrib/bewerbung +catalogue-license lppl1.3 +catalogue-topics cv class german +catalogue-version 1.2 + +name bez123 +category Package +revision 15878 +shortdesc Support for Bezier curves +relocated 1 +longdesc Provides additional facilities in a picture environment for +longdesc drawing linear, cubic, and rational quadratic Bezier curves +longdesc (standard LaTeX only offers non-rational quadratic splines). +longdesc Provides a package multiply that provides a command for +longdesc multiplication of a length without numerical overflow. +containersize 2644 +containerchecksum e70a0889ceab74fcff4994568a97f31ac93165353ac207ee683b28aee2ad3cb8f770d8e3b450e3237537e97312a0995fa8c17196ead0fce55fd76a49c77de72b +doccontainersize 256740 +doccontainerchecksum 91ae5e35394e5bf3a6bbcc6aa7d7180ba546b58e84683c569bc34f5b0f9dcc6ea30153305fd83fe28e3bcd8eccb6179d277d28e1ff56538fc6980a7c3ec8f444 +docfiles size=72 + RELOC/doc/latex/bez123/README details="Readme" + RELOC/doc/latex/bez123/bez123.pdf details="Package documentation" +srccontainersize 14300 +srccontainerchecksum fc329c0c99ecd10c42bdffde10918239874367e7b54a75c4de4882e520ea82e87188070775174a11621dca9bc5949a850207f02af7c08d1b6768ea87fba7e10c +srcfiles size=17 + RELOC/source/latex/bez123/bez123.dtx + RELOC/source/latex/bez123/bez123.ins +runfiles size=4 + RELOC/tex/latex/bez123/bez123.sty + RELOC/tex/latex/bez123/multiply.sty +catalogue-ctan /macros/latex/contrib/bez123 +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex graphics-curve +catalogue-version 1.1b + +name bezierplot +category Package +revision 51398 +shortdesc Approximate smooth function graphs with cubic bezier splines for use with TikZ or MetaPost +relocated 1 +longdesc This package consists of a Lua program as well as a (Lua)LaTeX +longdesc .sty file. Given a smooth function, bezierplot returns a smooth +longdesc bezier path written in TikZ notation (which also matches +longdesc MetaPost) that approximates the graph of the function. For +longdesc polynomial functions of degree [?] 3 and their inverses the +longdesc approximation is exact (up to numeric precision). bezierplot +longdesc also finds special points such as extreme points and inflection +longdesc points and reduces the number of used points. +containersize 7880 +containerchecksum 0cfc80b93b76053591f4d76e3cd2f5518dec2dabc397b0d18f0d9edb40a0eabfd1ed608b0cbd6f4b7b28b9a10a9668b21f9ee798514bfd3ab4cc125392512d6c +doccontainersize 254348 +doccontainerchecksum 284cce26134afe943c4b5c0b3d968f2512fa1c47ed1f2b19e70f48d618829b76ffc200933933f27b407e1086d95f38a4e9ecfe85506ccc2336cd5fe7eb40bf37 +docfiles size=66 + RELOC/doc/lualatex/bezierplot/README details="Readme" + RELOC/doc/lualatex/bezierplot/bezierplot-doc.pdf details="Package documentation" + RELOC/doc/lualatex/bezierplot/bezierplot-doc.tex +runfiles size=9 + RELOC/tex/lualatex/bezierplot/bezierplot.lua + RELOC/tex/lualatex/bezierplot/bezierplot.sty +catalogue-contact-repository https://github.com/linusromer/bezierplot +catalogue-ctan /macros/luatex/latex/bezierplot +catalogue-license lppl1.3c +catalogue-topics luatex use-lua graphics-plot graphics-plotfn +catalogue-version 1.4 + +name bgteubner +category Package +revision 54080 +shortdesc Class for producing books for the publisher "Teubner Verlag" +relocated 1 +longdesc The bgteubner document class has been programmed by order of +longdesc the Teubner Verlag, Wiesbaden, Germany, to ensure that books of +longdesc this publisher have a unique layout. Unfortunately, most of the +longdesc documentation is only available in German. Since the document +longdesc class is intended to generate a unique layout, many things +longdesc (layout etc.) are fixed and cannot be altered by the user. If +longdesc you want to use the document class for another purpose than +longdesc publishing with the Teubner Verlag, this may arouse unwanted +longdesc restrictions (for instance, the document class provides only +longdesc two paper sizes: DIN A5 and 17cm x 24cm; only two font families +longdesc are supported: Times and European Computer Modern). +containersize 28948 +containerchecksum 53d38b2bf03861553a60db38c06b5b7eb48404a08f4bad645b24383ac4131a5b60a0103d0d2217cde1aa4f8bd739db4389d25693bb6186fe0974b0ebb63fd567 +doccontainersize 2484192 +doccontainerchecksum 344c8f7800a273b914265ccd9cf8175a040f021c07aa0fce3b6391db85e8ecc43d5d593aeb8707f82cc2c8c987b2d72700a2fe4d8b0bdfcaf2a525c5d79f7e3a +docfiles size=821 + RELOC/doc/latex/bgteubner/01b.png + RELOC/doc/latex/bgteubner/02b.png + RELOC/doc/latex/bgteubner/ChangeLog + RELOC/doc/latex/bgteubner/LIESMICH details="Readme" language="de" + RELOC/doc/latex/bgteubner/Makefile.hhsubfigure + RELOC/doc/latex/bgteubner/Makefile.source + RELOC/doc/latex/bgteubner/Makefile.src + RELOC/doc/latex/bgteubner/README details="Readme" + RELOC/doc/latex/bgteubner/README.hhsubfigure + RELOC/doc/latex/bgteubner/ToDo + RELOC/doc/latex/bgteubner/anhang.tex + RELOC/doc/latex/bgteubner/befehlsreferenz.tex + RELOC/doc/latex/bgteubner/beispiel1.tex + RELOC/doc/latex/bgteubner/bgteubner-17x24-cm.tex + RELOC/doc/latex/bgteubner/bgteubner-17x24-mathtime.tex + RELOC/doc/latex/bgteubner/bgteubner-17x24-times.tex + RELOC/doc/latex/bgteubner/bgteubner-a5-cm.tex + RELOC/doc/latex/bgteubner/bgteubner-a5-mathtime.tex + RELOC/doc/latex/bgteubner/bgteubner-a5-times.tex + RELOC/doc/latex/bgteubner/bgteubner-cm.pdf + RELOC/doc/latex/bgteubner/bgteubner-with-hyperref.tex + RELOC/doc/latex/bgteubner/bgteubner.pdf details="Class documentation" language="de" + RELOC/doc/latex/bgteubner/bgteubner.tex + RELOC/doc/latex/bgteubner/bgteucls.pdf details="Commented source" language="de" + RELOC/doc/latex/bgteubner/bgteuversion.tex + RELOC/doc/latex/bgteubner/bild4c.png + RELOC/doc/latex/bgteubner/bild_ganz.eps + RELOC/doc/latex/bgteubner/bild_ganz.fig + RELOC/doc/latex/bgteubner/bild_ganz.pdf + RELOC/doc/latex/bgteubner/bild_mitte.eps + RELOC/doc/latex/bgteubner/bild_mitte.fig + RELOC/doc/latex/bgteubner/bild_mitte.pdf + RELOC/doc/latex/bgteubner/bild_oben.eps + RELOC/doc/latex/bgteubner/bild_oben.fig + RELOC/doc/latex/bgteubner/bild_oben.pdf + RELOC/doc/latex/bgteubner/bild_oben_unten.eps + RELOC/doc/latex/bgteubner/bild_oben_unten.fig + RELOC/doc/latex/bgteubner/bild_oben_unten.pdf + RELOC/doc/latex/bgteubner/bild_umflossen.eps + RELOC/doc/latex/bgteubner/bild_umflossen.fig + RELOC/doc/latex/bgteubner/bild_umflossen.pdf + RELOC/doc/latex/bgteubner/bild_unten.eps + RELOC/doc/latex/bgteubner/bild_unten.fig + RELOC/doc/latex/bgteubner/bild_unten.pdf + RELOC/doc/latex/bgteubner/bild_zu_lang.eps + RELOC/doc/latex/bgteubner/bild_zu_lang.fig + RELOC/doc/latex/bgteubner/bild_zu_lang.pdf + RELOC/doc/latex/bgteubner/bild_zu_lang2.eps + RELOC/doc/latex/bgteubner/bild_zu_lang2.fig + RELOC/doc/latex/bgteubner/bild_zu_lang2.pdf + RELOC/doc/latex/bgteubner/bilder.tex + RELOC/doc/latex/bgteubner/cdcover.tex + RELOC/doc/latex/bgteubner/checkliste.tex + RELOC/doc/latex/bgteubner/einleitung.tex + RELOC/doc/latex/bgteubner/formelzeichen.tex + RELOC/doc/latex/bgteubner/getversion.tex + RELOC/doc/latex/bgteubner/globales.tex + RELOC/doc/latex/bgteubner/hyphenation.tex + RELOC/doc/latex/bgteubner/index.tex + RELOC/doc/latex/bgteubner/installation.tex + RELOC/doc/latex/bgteubner/kapitel2.tex + RELOC/doc/latex/bgteubner/literatur.bib + RELOC/doc/latex/bgteubner/literatur.tex + RELOC/doc/latex/bgteubner/manifest.txt + RELOC/doc/latex/bgteubner/math-cm.pdf + RELOC/doc/latex/bgteubner/math-cm.tex + RELOC/doc/latex/bgteubner/math-mathtime.pdf + RELOC/doc/latex/bgteubner/math-mathtime.tex + RELOC/doc/latex/bgteubner/math.pdf + RELOC/doc/latex/bgteubner/math.tex + RELOC/doc/latex/bgteubner/optionen-advanced.tex + RELOC/doc/latex/bgteubner/testquick.tex + RELOC/doc/latex/bgteubner/testtimes.tex + RELOC/doc/latex/bgteubner/tex_aufruf.tex + RELOC/doc/latex/bgteubner/tex_bilder.tex + RELOC/doc/latex/bgteubner/tex_globales.tex + RELOC/doc/latex/bgteubner/tex_textelemente.tex + RELOC/doc/latex/bgteubner/tex_typographie.tex + RELOC/doc/latex/bgteubner/tex_verzeichnisse.tex + RELOC/doc/latex/bgteubner/textelemente.tex + RELOC/doc/latex/bgteubner/times-ja2.png + RELOC/doc/latex/bgteubner/times-nein2.png + RELOC/doc/latex/bgteubner/umbruch1.pdf + RELOC/doc/latex/bgteubner/umbruch1.tex + RELOC/doc/latex/bgteubner/umbruch1a.pdf + RELOC/doc/latex/bgteubner/umbruch1a.tex + RELOC/doc/latex/bgteubner/umbruch2.pdf + RELOC/doc/latex/bgteubner/umbruch2.tex + RELOC/doc/latex/bgteubner/umbruch2a.pdf + RELOC/doc/latex/bgteubner/umbruch2a.tex + RELOC/doc/latex/bgteubner/umbruch3.pdf + RELOC/doc/latex/bgteubner/umbruch3.tex + RELOC/doc/latex/bgteubner/umbruch3a.pdf + RELOC/doc/latex/bgteubner/umbruch3a.tex + RELOC/doc/latex/bgteubner/usefiles.txt + RELOC/doc/latex/bgteubner/verzeichnisse.tex + RELOC/doc/latex/bgteubner/vorwort.tex +srccontainersize 74256 +srccontainerchecksum ff33871afe34c6d578dd5d8e795e36e83a785893d8741dc2ddf2b8bb27062324f00e0f52b3cd3d993074a7e7d21207537f028f6f5dbf8384d02799d1108b9472 +srcfiles size=94 + RELOC/source/latex/bgteubner/bgteucls.dtx + RELOC/source/latex/bgteubner/bgteucls.ins + RELOC/source/latex/bgteubner/hhsubfigure.dtx + RELOC/source/latex/bgteubner/hhsubfigure.ins + RELOC/source/latex/bgteubner/ltxdoc.cfg +runfiles size=70 + RELOC/bibtex/bst/bgteubner/bgteuabbr.bst + RELOC/bibtex/bst/bgteubner/bgteuabbr2.bst + RELOC/bibtex/bst/bgteubner/bgteupln.bst + RELOC/bibtex/bst/bgteubner/bgteupln2.bst + RELOC/bibtex/bst/bgteubner/bgteupln3.bst + RELOC/makeindex/bgteubner/bgteubner.ist + RELOC/makeindex/bgteubner/bgteuglo.ist + RELOC/makeindex/bgteubner/bgteuglochar.ist + RELOC/tex/latex/bgteubner/bgteubner.cls + RELOC/tex/latex/bgteubner/hhfixme.sty + RELOC/tex/latex/bgteubner/hhsubfigure.sty + RELOC/tex/latex/bgteubner/ptmxcomp.sty +catalogue-ctan /macros/latex/contrib/bgteubner +catalogue-license lppl +catalogue-topics class book-pub publisher +catalogue-version 2.11 + +name bguq +category Package +revision 27401 +shortdesc Improved quantifier stroke for Begriffsschrift packages +relocated 1 +longdesc The font contains a single character: the Begriffsschrift +longdesc quantifier (in several sizes), as used to set the +longdesc Begriffsschrift (concept notation) of Frege. The font is not +longdesc intended for end users; instead it is expected that it will be +longdesc used by other packages which implement the Begriffsschrift. An +longdesc (unofficial) modified version of Josh Parsons' begriff is +longdesc included as an example of implementation. +execute addMap bguq.map +containersize 14868 +containerchecksum 8a795ba517941a07ec1445a16947ce5028cfd61ba2b5c818bc894ffa73d439162271d6269c67c8ee7afd6d13551d4a9bf73763c00b719bf3a9019a8e7d368256 +doccontainersize 118616 +doccontainerchecksum 1bfe38f2d904af63a5a0fd2ab4accd04fbd294083cc462f7d53f79819f40dccf1c3c729ad591d15327eb120bce847ae62c2bc9b9554ea278c1974e3b37296dc5 +docfiles size=32 + RELOC/doc/fonts/bguq/INSTALL.txt + RELOC/doc/fonts/bguq/Makefile + RELOC/doc/fonts/bguq/README details="Readme" + RELOC/doc/fonts/bguq/bguq-doc.pdf details="Package documentation" +srccontainersize 2968 +srccontainerchecksum 108ecf4268a4491904d46f5aebdace10f8aab84a4333fddf94788b677088a584da284fd763a8f0ab19cbc335a3a143489a49836ba059971483faeaf40ecbb0de +srcfiles size=3 + RELOC/source/fonts/bguq/bguq.dtx + RELOC/source/fonts/bguq/bguq.ins +runfiles size=43 + RELOC/fonts/map/dvips/bguq/bguq.map + RELOC/fonts/source/public/bguq/bguq.mf + RELOC/fonts/source/public/bguq/bguq10.mf + RELOC/fonts/source/public/bguq/bguq10t04.mf + RELOC/fonts/source/public/bguq/bguq10t05.mf + RELOC/fonts/source/public/bguq/bguq10t06.mf + RELOC/fonts/source/public/bguq/bguq10t07.mf + RELOC/fonts/source/public/bguq/bguq10t08.mf + RELOC/fonts/source/public/bguq/bguq10t09.mf + RELOC/fonts/source/public/bguq/bguq10t10.mf + RELOC/fonts/source/public/bguq/bguq10t11.mf + RELOC/fonts/source/public/bguq/bguq10t12.mf + RELOC/fonts/tfm/public/bguq/bguq10t04.tfm + RELOC/fonts/tfm/public/bguq/bguq10t05.tfm + RELOC/fonts/tfm/public/bguq/bguq10t06.tfm + RELOC/fonts/tfm/public/bguq/bguq10t07.tfm + RELOC/fonts/tfm/public/bguq/bguq10t08.tfm + RELOC/fonts/tfm/public/bguq/bguq10t09.tfm + RELOC/fonts/tfm/public/bguq/bguq10t10.tfm + RELOC/fonts/tfm/public/bguq/bguq10t11.tfm + RELOC/fonts/tfm/public/bguq/bguq10t12.tfm + RELOC/fonts/type1/public/bguq/bguq10t04.pfb + RELOC/fonts/type1/public/bguq/bguq10t05.pfb + RELOC/fonts/type1/public/bguq/bguq10t06.pfb + RELOC/fonts/type1/public/bguq/bguq10t07.pfb + RELOC/fonts/type1/public/bguq/bguq10t08.pfb + RELOC/fonts/type1/public/bguq/bguq10t09.pfb + RELOC/fonts/type1/public/bguq/bguq10t10.pfb + RELOC/fonts/type1/public/bguq/bguq10t11.pfb + RELOC/fonts/type1/public/bguq/bguq10t12.pfb + RELOC/tex/latex/bguq/Ubguq04.fd + RELOC/tex/latex/bguq/Ubguq05.fd + RELOC/tex/latex/bguq/Ubguq06.fd + RELOC/tex/latex/bguq/Ubguq07.fd + RELOC/tex/latex/bguq/Ubguq08.fd + RELOC/tex/latex/bguq/Ubguq09.fd + RELOC/tex/latex/bguq/Ubguq10.fd + RELOC/tex/latex/bguq/Ubguq11.fd + RELOC/tex/latex/bguq/Ubguq12.fd + RELOC/tex/latex/bguq/begriff-bguq.sty + RELOC/tex/latex/bguq/bguq.cfg + RELOC/tex/latex/bguq/bguq.sty +catalogue-also begriff frege grundgesetze +catalogue-ctan /fonts/bguq +catalogue-license lppl +catalogue-topics font font-mf font-specialist font-maths logic +catalogue-version 0.4 + +name bhcexam +category Package +revision 39041 +shortdesc An exam class designed for Mathematics Teachers in China +relocated 1 +longdesc The class based on the exam class, and is specially designed +longdesc for High School Mathematics Teachers in China. +containersize 3832 +containerchecksum 83841b8ee51766a9fd7acaef2f2c2662a969e5e6460a54db66e1b70138041eb799eda2e4881b0a2102a00019464a26253ca7d36d7858d2d56684f104bc570be3 +doccontainersize 3436 +doccontainerchecksum 167f5a65edce24e367d6cfb7ebea877b13b1d9cb6f406689c9bdcf364aca0ed04d86c0c1cd3694986dab2ac10230818cbf58f8039568c3e5d9b6b4b98bb93ec6 +docfiles size=10 + RELOC/doc/latex/bhcexam/Makefile + RELOC/doc/latex/bhcexam/README details="Readme" + RELOC/doc/latex/bhcexam/test1.tex + RELOC/doc/latex/bhcexam/test2.tex + RELOC/doc/latex/bhcexam/test3.tex + RELOC/doc/latex/bhcexam/test4.tex +srccontainersize 8508 +srccontainerchecksum ff1583e92e3cc10efe9baaacb523e87ca1884db4203eac09d23c246c1dfa01c5f828d595d03f88241ba4bf80b9cd7b5c62ebffc43e497bebd04144f80d5aefed +srcfiles size=7 + RELOC/source/latex/bhcexam/BHCexam.dtx + RELOC/source/latex/bhcexam/BHCexam.ins +runfiles size=4 + RELOC/tex/latex/bhcexam/BHCexam.cfg + RELOC/tex/latex/bhcexam/BHCexam.cls +catalogue-also exam +catalogue-ctan /macros/latex/contrib/bhcexam +catalogue-license lppl +catalogue-topics exam +catalogue-version 0.4 + +name bib-fr +category Package +revision 15878 +shortdesc French translation of classical BibTeX styles +relocated 1 +longdesc These files are French translations of the classical BibTeX +longdesc style files. The translations can easily be modified by simply +longdesc redefining FUNCTIONs named fr.*, at the beginning (lines +longdesc 50-150) of each file. +containersize 13440 +containerchecksum 24e5ada94266ba8786470453bf8a076891e9b7efac1ff64fcb559bfe2c95875d3120634f94f464c9e40da0f45b18a78af1bc428106b31e85851a2998b58f0834 +doccontainersize 952 +doccontainerchecksum a19ffa9b3ce51d372a7467bdf7e360ac4a0faf45fc2205eadfaff16fb640ffb0cccac7fd0849a74955dcf612e353f0e25f94c0af9e3b5bf617f067606c1da120 +docfiles size=2 + RELOC/doc/bibtex/bib-fr/CHANGELOG + RELOC/doc/bibtex/bib-fr/README details="Readme" +runfiles size=66 + RELOC/bibtex/bst/bib-fr/abbrv-fr.bst + RELOC/bibtex/bst/bib-fr/abbrvnat-fr.bst + RELOC/bibtex/bst/bib-fr/alpha-fr.bst + RELOC/bibtex/bst/bib-fr/apalike-fr.bst + RELOC/bibtex/bst/bib-fr/ieeetr-fr.bst + RELOC/bibtex/bst/bib-fr/plain-fr.bst + RELOC/bibtex/bst/bib-fr/plainnat-fr.bst + RELOC/bibtex/bst/bib-fr/siam-fr.bst + RELOC/bibtex/bst/bib-fr/unsrt-fr.bst + RELOC/bibtex/bst/bib-fr/unsrtnat-fr.bst +catalogue-also babelbib +catalogue-ctan /biblio/bibtex/contrib/bib-fr +catalogue-license lppl +catalogue-topics bibtex-sty french +catalogue-version 1.5 + +name bib2gls +category Package +revision 55811 +shortdesc Command line application to convert .bib files to glossaries-extra.sty resource files +longdesc This Java command line application may be used to extract +longdesc glossary information stored in a .bib file and convert it into +longdesc glossary entry definition commands. This application should be +longdesc used with glossaries-extra.sty's 'record' package option. It +longdesc performs two functions in one: selects entries according to +longdesc records found in the .aux file (similar to bibtex), +longdesc hierarchically sorts entries and collates location lists +longdesc (similar to makeindex or xindy). The glossary entries can then +longdesc be managed in a system such as JabRef, and only the entries +longdesc that are actually required will be defined, reducing the +longdesc resources required by TeX. The supplementary application +longdesc convertgls2bib can be used to convert existing .tex files +longdesc containing definitions (\newglossaryentry etc.) to the .bib +longdesc format required by bib2gls. +depend bib2gls.ARCH +containersize 1192640 +containerchecksum a4b697b6f4a2b809699081b6992b702b736bb82883a487f58b6b71cbc0e12cbbab5340001fa96e30075a823b4b6a7f37e514fcebb591a950f814658682e2fb2e +doccontainersize 5156296 +doccontainerchecksum 8f6c1e6647ff35cf167072d89af35930d51eb62968643aebbfcc189446d76b10f49d0db270c43b0c787889069decc1ef844d79bae5df38c3619a92904aaff8b1 +docfiles size=1829 + texmf-dist/doc/support/bib2gls/CHANGES + texmf-dist/doc/support/bib2gls/README.md details="Readme" + texmf-dist/doc/support/bib2gls/bib2gls-begin.pdf details="Introductory Guide" + texmf-dist/doc/support/bib2gls/bib2gls.1 + texmf-dist/doc/support/bib2gls/bib2gls.pdf details="Package documentation" + texmf-dist/doc/support/bib2gls/convertgls2bib.1 + texmf-dist/doc/support/bib2gls/examples/animals.bib + texmf-dist/doc/support/bib2gls/examples/bacteria.bib + texmf-dist/doc/support/bib2gls/examples/baseunits.bib + texmf-dist/doc/support/bib2gls/examples/bigmathsymbols.bib + texmf-dist/doc/support/bib2gls/examples/binaryoperators.bib + texmf-dist/doc/support/bib2gls/examples/books.bib + texmf-dist/doc/support/bib2gls/examples/chemicalformula.bib + texmf-dist/doc/support/bib2gls/examples/citations.bib + texmf-dist/doc/support/bib2gls/examples/constants.bib + texmf-dist/doc/support/bib2gls/examples/derivedunits.bib + texmf-dist/doc/support/bib2gls/examples/films.bib + texmf-dist/doc/support/bib2gls/examples/interpret-preamble.bib + texmf-dist/doc/support/bib2gls/examples/interpret-preamble2.bib + texmf-dist/doc/support/bib2gls/examples/markuplanguages.bib + texmf-dist/doc/support/bib2gls/examples/mathgreek.bib + texmf-dist/doc/support/bib2gls/examples/mathsobjects.bib + texmf-dist/doc/support/bib2gls/examples/mathsrelations.bib + texmf-dist/doc/support/bib2gls/examples/minerals.bib + texmf-dist/doc/support/bib2gls/examples/miscsymbols.bib + texmf-dist/doc/support/bib2gls/examples/no-interpret-preamble.bib + texmf-dist/doc/support/bib2gls/examples/people.bib + texmf-dist/doc/support/bib2gls/examples/sample-authors.pdf + texmf-dist/doc/support/bib2gls/examples/sample-authors.tex + texmf-dist/doc/support/bib2gls/examples/sample-bacteria.pdf + texmf-dist/doc/support/bib2gls/examples/sample-bacteria.tex + texmf-dist/doc/support/bib2gls/examples/sample-chemical.pdf + texmf-dist/doc/support/bib2gls/examples/sample-chemical.tex + texmf-dist/doc/support/bib2gls/examples/sample-citations.pdf + texmf-dist/doc/support/bib2gls/examples/sample-citations.tex + texmf-dist/doc/support/bib2gls/examples/sample-constants.pdf + texmf-dist/doc/support/bib2gls/examples/sample-constants.tex + texmf-dist/doc/support/bib2gls/examples/sample-hierarchical.pdf + texmf-dist/doc/support/bib2gls/examples/sample-hierarchical.tex + texmf-dist/doc/support/bib2gls/examples/sample-markuplanguages.pdf + texmf-dist/doc/support/bib2gls/examples/sample-markuplanguages.tex + texmf-dist/doc/support/bib2gls/examples/sample-maths.pdf + texmf-dist/doc/support/bib2gls/examples/sample-maths.tex + texmf-dist/doc/support/bib2gls/examples/sample-media.pdf + texmf-dist/doc/support/bib2gls/examples/sample-media.tex + texmf-dist/doc/support/bib2gls/examples/sample-msymbols.pdf + texmf-dist/doc/support/bib2gls/examples/sample-msymbols.tex + texmf-dist/doc/support/bib2gls/examples/sample-multi1.pdf + texmf-dist/doc/support/bib2gls/examples/sample-multi1.tex + texmf-dist/doc/support/bib2gls/examples/sample-multi2.pdf + texmf-dist/doc/support/bib2gls/examples/sample-multi2.tex + texmf-dist/doc/support/bib2gls/examples/sample-nested.pdf + texmf-dist/doc/support/bib2gls/examples/sample-nested.tex + texmf-dist/doc/support/bib2gls/examples/sample-people.pdf + texmf-dist/doc/support/bib2gls/examples/sample-people.tex + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols.pdf + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols.tex + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols2.pdf + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols2.tex + texmf-dist/doc/support/bib2gls/examples/sample-units1.pdf + texmf-dist/doc/support/bib2gls/examples/sample-units1.tex + texmf-dist/doc/support/bib2gls/examples/sample-units2.pdf + texmf-dist/doc/support/bib2gls/examples/sample-units2.tex + texmf-dist/doc/support/bib2gls/examples/sample-units3.pdf + texmf-dist/doc/support/bib2gls/examples/sample-units3.tex + texmf-dist/doc/support/bib2gls/examples/sample-usergroups.pdf + texmf-dist/doc/support/bib2gls/examples/sample-usergroups.tex + texmf-dist/doc/support/bib2gls/examples/terms.bib + texmf-dist/doc/support/bib2gls/examples/topics.bib + texmf-dist/doc/support/bib2gls/examples/unaryoperators.bib + texmf-dist/doc/support/bib2gls/examples/usergroups.bib + texmf-dist/doc/support/bib2gls/examples/vegetables.bib +srccontainersize 1187380 +srccontainerchecksum fbce6911efaf89c5a734c6a56bf9656bdf52f40e795f57e5997a93b1b83b8543b35330368697a7e8054648d52f0814accf57fbe059570903f092abb6182276fa +srcfiles size=689 + texmf-dist/source/support/bib2gls/src/bib2gls-begin.tex + texmf-dist/source/support/bib2gls/src/bib2gls-cite.bib + texmf-dist/source/support/bib2gls/src/bib2gls-src.zip + texmf-dist/source/support/bib2gls/src/bib2gls.bib + texmf-dist/source/support/bib2gls/src/bib2gls.pod + texmf-dist/source/support/bib2gls/src/bib2gls.tex + texmf-dist/source/support/bib2gls/src/convertgls2bib.pod + texmf-dist/source/support/bib2gls/src/gls2bib-src.zip + texmf-dist/source/support/bib2gls/src/texparser-src.zip +runfiles size=336 + texmf-dist/scripts/bib2gls/bib2gls.jar + texmf-dist/scripts/bib2gls/bib2gls.sh + texmf-dist/scripts/bib2gls/convertgls2bib.jar + texmf-dist/scripts/bib2gls/convertgls2bib.sh + texmf-dist/scripts/bib2gls/resources/bib2gls-en.xml + texmf-dist/scripts/bib2gls/texparserlib.jar +catalogue-contact-bugs https://github.com/nlct/bib2gls/issues +catalogue-contact-home https://www.dickimaw-books.com/software/bib2gls/ +catalogue-contact-repository https://github.com/nlct/bib2gls +catalogue-ctan /support/bib2gls +catalogue-license gpl3+ +catalogue-topics bibtex-util glossary +catalogue-version 2.7 + +name bib2gls.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of bib2gls +containersize 376 +containerchecksum e2a10fac0890421063f7080c519f3c35912cc4a49bc1ad4194f7925f374bfcce04baaf64c5c42979aa22831c51767f121768e4d94c43e7097e70db26a3d2c1d9 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/bib2gls + bin/aarch64-linux/convertgls2bib + +name bib2gls.amd64-freebsd +category Package +revision 45266 +shortdesc amd64-freebsd files of bib2gls +containersize 376 +containerchecksum 39e033a18e9fa460615aabbbe49688f554b3d68b5123cf12379b4fd53f414de24f44b6d2c48d3519ebdb81f38b1d23c5bcc3712c417007cfb57e8a14e5b1aec0 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/bib2gls + bin/amd64-freebsd/convertgls2bib + +name bib2gls.amd64-netbsd +category Package +revision 45266 +shortdesc amd64-netbsd files of bib2gls +containersize 372 +containerchecksum 0174b56f81b1b7763c5219b5e64cf6a81ef32b93b4978e7dc0ea6a27513528750ad06c1785977eeebda586ca44e0a7e76fd3ff22d593ebd9df3f877357111eb8 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/bib2gls + bin/amd64-netbsd/convertgls2bib + +name bib2gls.armhf-linux +category Package +revision 45266 +shortdesc armhf-linux files of bib2gls +containersize 372 +containerchecksum 17a0604c24f57bd0a3ffc4d0c2d42f6190f70b1e22c5ed97e52933129af09757e6527a2bf1a0af84447a45b9c0044953a3e6abe898089a4d222b87503a11ef16 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/bib2gls + bin/armhf-linux/convertgls2bib + +name bib2gls.i386-cygwin +category Package +revision 45266 +shortdesc i386-cygwin files of bib2gls +containersize 372 +containerchecksum d9a39f8e3c90e194595e98ea9ad055e52520ca4c81a3d2eb27ec336c18e9c3e5ab6e419659514754267fff72bbc4c7aca06aef3c72f7f5b84758d73fbe9e457d +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/bib2gls + bin/i386-cygwin/convertgls2bib + +name bib2gls.i386-freebsd +category Package +revision 45266 +shortdesc i386-freebsd files of bib2gls +containersize 372 +containerchecksum b3890b2b445062884c40fd337b2881d8e8d62efe0020842a4a97952eb417640408337fbb53275ad94d1a96cdcebdee4e5557fb03032cc5d230014ef26b445fbd +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/bib2gls + bin/i386-freebsd/convertgls2bib + +name bib2gls.i386-linux +category Package +revision 45266 +shortdesc i386-linux files of bib2gls +containersize 372 +containerchecksum cf7f103c477300add8d72d9d4ed71355415c4e7a6ba8e1232e6d05bc4cc559090db06fea428f46cafe6080590647fc98f78abccee9275d49d0b279af71af2338 +binfiles arch=i386-linux size=2 + bin/i386-linux/bib2gls + bin/i386-linux/convertgls2bib + +name bib2gls.i386-netbsd +category Package +revision 45266 +shortdesc i386-netbsd files of bib2gls +containersize 372 +containerchecksum 1faf4ccaa077ea0567d57ac1e64a36aa5230f91c81abd8490d67565035c9929cd91b0b67945e7107291605b3e93a0c0fbe94a9c1879067b69f6344a9044e32fe +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/bib2gls + bin/i386-netbsd/convertgls2bib + +name bib2gls.i386-solaris +category Package +revision 45266 +shortdesc i386-solaris files of bib2gls +containersize 372 +containerchecksum 7c4f2237b2a73107ff854e0ff62428cb83586dc9eab503ed679f31f54b314bc0a89025b272f698ccea0f4bca52ce637a979f2bd54e6ddb123dd3272b2f092937 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/bib2gls + bin/i386-solaris/convertgls2bib + +name bib2gls.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of bib2gls +containersize 376 +containerchecksum f976630f31e33c88b9d70682aea01aca5b59fb4e3ec80794b9260a61dcfcfbc20e2a6b8177d88ac86c9978043d60cba860e490eb8b13cb84eec7220e5b71bf6c +binfiles arch=universal-darwin size=2 + bin/universal-darwin/bib2gls + bin/universal-darwin/convertgls2bib + +name bib2gls.win32 +category Package +revision 45266 +shortdesc win32 files of bib2gls +containersize 712 +containerchecksum 572e79de961689c7e8b4adf77d11c9e7a165a3d001a8a01863e81e4985701dbdde6ebb08bf554b529f9b32fc6778f0e8ac019797241e2860949aaa2cbfaa4c51 +binfiles arch=win32 size=2 + bin/win32/bib2gls.exe + bin/win32/convertgls2bib.exe + +name bib2gls.x86_64-cygwin +category Package +revision 45266 +shortdesc x86_64-cygwin files of bib2gls +containersize 376 +containerchecksum e0bdb841bbd561a7af1ccb335194f411877715e96ded2a3d944ab3496125afcd161d0a714e57b781e9a6f407805aac614bf81c66272c4d4947f178145c7fe6a2 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/bib2gls + bin/x86_64-cygwin/convertgls2bib + +name bib2gls.x86_64-darwinlegacy +category Package +revision 45266 +shortdesc x86_64-darwinlegacy files of bib2gls +containersize 384 +containerchecksum aa7d5aa4458ef5445532992c9060337b7e19bad82501a996b46a95438bc119124d64edbe7002985ef9dbb9a89f8961e46769f1aa8ceadc0c835077c89870ce07 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/bib2gls + bin/x86_64-darwinlegacy/convertgls2bib + +name bib2gls.x86_64-linux +category Package +revision 45266 +shortdesc x86_64-linux files of bib2gls +containersize 372 +containerchecksum 8c979dbb4303241cb6d4877eaeb1158a75c4af77cb85d35812f66329c3d521a71c3bef97cc5a9e2e979a7c27d3a3d95f2015ac9058c717a542fed4478588464d +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/bib2gls + bin/x86_64-linux/convertgls2bib + +name bib2gls.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of bib2gls +containersize 380 +containerchecksum 2399519e1cde732a379f77fc1a31ae39a195eb011c4fde53818385575662ac4aa174a6eb0c744ff79e7c69abf5b17917f5eaef56ac306fadd23c568dac532977 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/bib2gls + bin/x86_64-linuxmusl/convertgls2bib + +name bib2gls.x86_64-solaris +category Package +revision 45266 +shortdesc x86_64-solaris files of bib2gls +containersize 376 +containerchecksum 5cece3c2e29d3338c867055710d57e5ffb83f6d7db5c67215fe7a988c628698595b9aea6652bc6b009a5584455b7f152275895223941190c8a290faf6eb78e82 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/bib2gls + bin/x86_64-solaris/convertgls2bib + +name bibarts +category Package +revision 54080 +shortdesc "Arts"-style bibliographical information +relocated 1 +longdesc BibArts is a LaTeX package to assist in making bibliographical +longdesc features common in the arts and the humanities (history, +longdesc political science, philosophy, etc.). bibarts.sty provides +longdesc commands for quotations, abbreviations, and especially for a +longdesc formatted citation of literature, journals (periodicals), +longdesc edited sources, and archive sources. In difference to earlier +longdesc versions, BibArts 2.x helps to use slanted fonts (italics) and +longdesc is able to set ibidem automatically in footnotes. It will also +longdesc copy all citation information, abbreviations, and register key +longdesc words into lists for an automatically generated appendix. These +longdesc lists may refer to page and footnote numbers. BibArts has +longdesc nothing to do with BibTeX. The lists are created by bibsort +longdesc (see below). BibArts requires the program bibsort, for which +longdesc the sources and a Windows executable are provided. This program +longdesc creates the bibliography without using MakeIndex or BibTeX. Its +longdesc source is not written with any specific operating system in +longdesc mind. A summary of contents is in English; the full +longdesc documentation is in German. +containersize 27220 +containerchecksum 2e85d46a2d27d1016dc6e304eeb47a1a6927d38cd5105916c61c86415d8fd92ebdb8a48b5fe4b5bb58856202b5d3ade4c0997e238cefcc67a879b27f27cbd27c +doccontainersize 1129924 +doccontainerchecksum 7f77175f1b9cc2dbf9957ebb99d2b471e51965c5861e64c6841e3a88eff033d3a9e0791b93919346b3c0d26c1035482b1e5300be2232b69d988e6a4ee5bd96df +docfiles size=449 + RELOC/doc/latex/bibarts/COPYING + RELOC/doc/latex/bibarts/README.txt details="Readme" + RELOC/doc/latex/bibarts/ba-short.pdf details="Package short documentation" + RELOC/doc/latex/bibarts/ba-short.tex + RELOC/doc/latex/bibarts/bibarts.pdf details="Package documentation" language="de" + RELOC/doc/latex/bibarts/bibarts.tex + RELOC/doc/latex/bibarts/bibsort.exe +srccontainersize 37824 +srccontainerchecksum 724de91be680017f04a2255e25cd3158c5fdff39ae1684ccdba2421010155ea9e2fbedd4ca1baecc8a56514c5b8fdfb964fddfc0b14d9e48a649d4e7da8eeee3 +srcfiles size=54 + RELOC/source/latex/bibarts/bibsort.c +runfiles size=35 + RELOC/tex/latex/bibarts/bibarts.sty +catalogue-ctan /macros/latex/contrib/bibarts +catalogue-license gpl +catalogue-topics bibtex-supp humanities +catalogue-version 2.2 + +name biber +category Package +revision 57273 +shortdesc A BibTeX replacement for users of BibLaTeX +longdesc Biber is a BibTeX replacement for users of BibLaTeX. Biber +longdesc supports full UTF-8, can (re)-encode input and output, supports +longdesc highly configurable sorting, dynamic bibliography sets and many +longdesc other features. The CTAN distribution offers a compressed tar +longdesc archive of the sources, etc., together with "binary" +longdesc distributions for a variety of platforms. Note: on SourceForge +longdesc biber is formally named "biblatex-biber", to distinguish it +longdesc from an earlier (now apparently moribund) project called +longdesc "biber". +depend biber.ARCH +containersize 732 +containerchecksum 85c07705dda6e4dac7fb3d3fcafaa156abee84f19ce8652b71787ef5a631ba4519ca35a34c8d0d83f90b8f14c583f83f820add220d0f764c19d1abf4c3b7a3db +doccontainersize 262140 +doccontainerchecksum 9d86fe6df7fe33221259395aac86729708481ee5222868a455153e7976c91c48a9469a9813bb0decb83c7eba2a3ec408150ec47533f9a41c974587415266f6e2 +docfiles size=66 + texmf-dist/doc/bibtex/biber/biber.pdf details="Manual" +srccontainersize 930660 +srccontainerchecksum 396398323e6e9ee4df904a827bab9b246e6fbba15033076cbbc3a63e4443641f81c19646a4145c0c0fae38af37f54a5fd2166799685f39183d349c8273d13459 +srcfiles size=290 + texmf-dist/source/bibtex/biber/Changes + texmf-dist/source/bibtex/biber/README.md + texmf-dist/source/bibtex/biber/biblatex-biber.tar.gz + texmf-dist/source/bibtex/biber/utf8-macro-map.html +catalogue-also bibtex crosstex biblatex +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-license artistic2 +catalogue-topics biblio +catalogue-version 2.16 + +name biber.amd64-freebsd +category Package +revision 57273 +shortdesc amd64-freebsd files of biber +containersize 22778016 +containerchecksum e60c5b49e68713777afce2ac5ed955d4bc74e610bbd2f030721a1b800c179d083db630f703d8b3940d2d03594cd689c91347461b775ee249cb57bafe632b77e2 +binfiles arch=amd64-freebsd size=7110 + bin/amd64-freebsd/biber + +name biber.i386-cygwin +category Package +revision 57273 +shortdesc i386-cygwin files of biber +containersize 17180072 +containerchecksum ee2725f6cadcd6158030ad568062aac75f06b6e6a0bd1b519b96d3fd08d38e12c2ee22ed4ab4074c9d02ca2813e315e3fa8de1ca1bf0587addbef703dbcb479a +binfiles arch=i386-cygwin size=5576 + bin/i386-cygwin/biber.exe + +name biber.i386-freebsd +category Package +revision 57273 +shortdesc i386-freebsd files of biber +containersize 20865460 +containerchecksum 6df95de8874d1dcb008ff55973a53c7954cc9ce9fdc2c26826f32977dcc45df2628884507ae1c57cb41684c47ab55c58fb05f690dcee471162d16250ff69610d +binfiles arch=i386-freebsd size=6449 + bin/i386-freebsd/biber + +name biber.i386-linux +category Package +revision 57273 +shortdesc i386-linux files of biber +containersize 20747804 +containerchecksum 4e9660e7e126c0c44f26dc60bc4bf46d185d08b82ab15aa01044fab2a7aedf6f093b9d84d5be7ff04868fb857a8692042e982543fe2070ad29933dd9cb697fff +binfiles arch=i386-linux size=6428 + bin/i386-linux/biber + +name biber.universal-darwin +category Package +revision 57936 +shortdesc universal-darwin files of biber +containersize 33809312 +containerchecksum a5740339207955934a1eed59e55ae92920ff1f4c4cf3c9c8e0ee311e0633d53f589829372895298c09f3e1f4932e414769eb011c5a8609544a59c0e6bcb462ef +binfiles arch=universal-darwin size=9829 + bin/universal-darwin/biber + +name biber.win32 +category Package +revision 57273 +shortdesc win32 files of biber +containersize 22825312 +containerchecksum 1b4f61a229a31a3b4bff6c013f682d086d158ca423cb1752b5e3dbdd1cabe6504e25824b3f135e8349702c5b57f072b9ca0f0703e9ecab010d32675b04958666 +binfiles arch=win32 size=7288 + bin/win32/biber.exe + +name biber.x86_64-cygwin +category Package +revision 57273 +shortdesc x86_64-cygwin files of biber +containersize 17320996 +containerchecksum da1b9dce9beb8834b0b343032885ce7917f5c0313ac1e2d0848b99e6076ec822be4a199215122993d78a4eb9dec5b0150d227b638f5ae6312963d3b4af4e93af +binfiles arch=x86_64-cygwin size=5589 + bin/x86_64-cygwin/biber.exe + +name biber.x86_64-darwinlegacy +category Package +revision 57273 +shortdesc x86_64-darwinlegacy files of biber +containersize 34908476 +containerchecksum b38f7bac193f7268d6e6534710251677eb9c0ff21d946c93fb55888dfd61c877a4031503a0dfc8e77a8a053573be57e6940f9744ca88d146449abb4d18db179b +binfiles arch=x86_64-darwinlegacy size=10089 + bin/x86_64-darwinlegacy/biber + +name biber.x86_64-linux +category Package +revision 57273 +shortdesc x86_64-linux files of biber +containersize 23537584 +containerchecksum 292be9f33f60fed0c1a333a5f6eb69fd9d9adb12733996c56f12c8b4eef1e24c8968504b5a219a27eba5f9db82e81d329a3f46a2ac6843203b1375145b8ec32b +binfiles arch=x86_64-linux size=7330 + bin/x86_64-linux/biber + +name biber.x86_64-linuxmusl +category Package +revision 57273 +shortdesc x86_64-linuxmusl files of biber +containersize 18684604 +containerchecksum 9b934c5ce392647907ee469873240a7d7d172a8dd5ea639ab8ff09c92872516e1e778b60c5f23c6c4830e7a908dee69d2f529e59c24b95d72cdd0b6846423542 +binfiles arch=x86_64-linuxmusl size=6102 + bin/x86_64-linuxmusl/biber + +name biber.x86_64-solaris +category Package +revision 57273 +shortdesc x86_64-solaris files of biber +containersize 21923872 +containerchecksum 3731072dbad9236438d836719643f256fbafcfb8d15d4f404a70f70f4f4cc0d3947a5576368c8d8dc558375b2344794e4a830dcfa565269e3c63e01f70a8aea1 +binfiles arch=x86_64-solaris size=7071 + bin/x86_64-solaris/biber + +name bibexport +category Package +revision 50677 +shortdesc Extract a BibTeX file based on a .aux file +longdesc A Bourne shell script that uses BibTeX to extract bibliography +longdesc entries that are \cite'd in a document. It can also expand a +longdesc BibTeX file, expanding the abbreviations (other than the +longdesc built-in ones like month names) and following the +longdesc cross-references. +depend bibexport.ARCH +containersize 6512 +containerchecksum 75f9cb374e0aee1b049e977e3ee1a855ae8f908a6c6191589ce9d9fc28a8358fedf93faa416b1020e157a8ec7a3980673d00e052a100c88724e86050ea5eb487 +doccontainersize 256176 +doccontainerchecksum ec96364b4a9f7ab446c6b0104646e82cab1c9015e0d3dfac6a795e58e02dd3920737207d16089c5470ac32f76a61be949efa6899ca935322c0062f71f3477b16 +docfiles size=64 + texmf-dist/doc/bibtex/bibexport/README details="Readme" + texmf-dist/doc/bibtex/bibexport/bibexport.pdf details="Package documentation" +srccontainersize 11296 +srccontainerchecksum 6c18b4e12e8eecdd03f6afae80766cebe3f826a1146c38b6387c6793abf284d3c44e7d4d6050675f01676128f1d073d8ee8f38f31a6081049b8c390b5a7813a1 +srcfiles size=12 + texmf-dist/source/bibtex/bibexport/bibexport.dtx + texmf-dist/source/bibtex/bibexport/bibexport.ins +runfiles size=10 + texmf-dist/bibtex/bst/bibexport/expcites.bst + texmf-dist/bibtex/bst/bibexport/expkeys.bst + texmf-dist/bibtex/bst/bibexport/export.bst + texmf-dist/scripts/bibexport/bibexport.sh +catalogue-ctan /biblio/bibtex/utils/bibexport +catalogue-license lppl1.3 +catalogue-topics bibtex-util +catalogue-version 3.03 + +name bibexport.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of bibexport +containersize 344 +containerchecksum 9da92582f848d67820129174c9c653508df8bf4e75bcc1ec119896fa76cf33f1646784b7066e21cfd3ea734767bd2215b34410119e4e10121c3343cb33931f8d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/bibexport + +name bibexport.amd64-freebsd +category Package +revision 16484 +shortdesc amd64-freebsd files of bibexport +containersize 344 +containerchecksum 77b2ec90288b6bcd268b348085505bac5076540c0e4e52598818e5e77572599d5a68da907730deba7af9705c1624e578d973c995d33abcd9afc9c5aa23f026f8 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/bibexport + +name bibexport.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of bibexport +containersize 344 +containerchecksum 7656cae4250710162de7107bfd8d2657292914e0e29b2d40cdb9454540a75f74492c2cb623baf4498b4c44dcfd9fdbe6528e767fdb69ab1026149d8a64e15289 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/bibexport + +name bibexport.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of bibexport +containersize 340 +containerchecksum 2d270358c28ab658d15e60453c57b7c2e73e64f62f59f1577ea5b40ea273bd1202f5d227c2c46a7b56bc540b24190caa9e8326a20cf524ebdb80d50b1bd3675f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/bibexport + +name bibexport.i386-cygwin +category Package +revision 16219 +shortdesc i386-cygwin files of bibexport +containersize 340 +containerchecksum cd74c7a9be5e28583242c47087cd4d27e05d38082329998ee339eb6c1614046b42ce957bd791a23a9b6ba1f7b2f174f54fd843e113d478a99518ef99aedfe7da +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/bibexport + +name bibexport.i386-freebsd +category Package +revision 16484 +shortdesc i386-freebsd files of bibexport +containersize 344 +containerchecksum 53e8de0dac6631032711526e5614c93f6478ab67c857c549e01864b230bf5aead9e9b69cdcef686960a82f1729cebb6c12a1603a62ded3c8479cdb5a7d3c17c6 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/bibexport + +name bibexport.i386-linux +category Package +revision 16219 +shortdesc i386-linux files of bibexport +containersize 344 +containerchecksum 73cbd38aa31b7fb24ac12e9e252bc99c526ad994f448ccf459df1b3ceefa3c7dcd07be63531e5a49fd7b15c82b5f4dff3cd7e14cd48b5fc392ead3441f45d3b4 +binfiles arch=i386-linux size=1 + bin/i386-linux/bibexport + +name bibexport.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of bibexport +containersize 344 +containerchecksum cddc811f4a805e545f8326c0285e7855331084704a0aae0eda1c1946d9e1e1b2ba5c29906d040343126a188dbfca0abdbb73464d30f8ad28c2409c3e5ea1cf57 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/bibexport + +name bibexport.i386-solaris +category Package +revision 16219 +shortdesc i386-solaris files of bibexport +containersize 340 +containerchecksum 57193f49cf4049ca3f142827ca8adcd358cf01181d0c1f3e18b6df10313c6ab50da4d761ca11aec763f9c6c6b23ecee999bc813c30ef62b5417a4d0ba949d5d8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/bibexport + +name bibexport.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of bibexport +containersize 344 +containerchecksum efdab205f93388385de6dbb2f71e863e06ad7eef90a929a3a4654d3527b6efc93a11629c1a3bdf8dfb76982c3ce1239c55e080acca704c49b0f000a5866de644 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/bibexport + +name bibexport.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of bibexport +containersize 344 +containerchecksum 407f2ca2f063b376d19ebbbbda2233d3087b8b839ccbae6110faf743b0553bf28e7119e08784c65ee2f1d389adc9a3ab0f8c322029c506d9d92bbdacbd8d8ea0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/bibexport + +name bibexport.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of bibexport +containersize 348 +containerchecksum 25c015139a935386c00cde6669bf2b0902fc0ac93f8e5439afc468043b8c942a9ef80c6a8f09e5f74952872b6a278c993df65615a38bc4fdf337f96b1fb1c6b4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/bibexport + +name bibexport.x86_64-linux +category Package +revision 16219 +shortdesc x86_64-linux files of bibexport +containersize 340 +containerchecksum 50c97b45d55fb59962dd41f40ad3460353d5501eaaee6c735cf017c6e25340d8548b7118df8b8f90b983fdfc6f23cb08c57541592b588b49d3994f007b8678c9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/bibexport + +name bibexport.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of bibexport +containersize 348 +containerchecksum ea7b38641e69355a381d97e2c2a03e4ff586d50c280c89f0a94f0e1dcb12f336dfde855f2b73279e28fee57f4377f221e2c1c440a903bc671173b37277eb788d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/bibexport + +name bibexport.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of bibexport +containersize 344 +containerchecksum 6ebea077c178daff326ce9693dd15d44d9073029939c1bab9725a64fa126d7c732de0d3fd96ebfa3ac56779c3deaf066f293d136874a11626c64087c2d9cdf17 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/bibexport + +name bibhtml +category Package +revision 31607 +shortdesc BibTeX support for HTML files +relocated 1 +longdesc Bibhtml consists of a Perl script and a set of BibTeX style +longdesc files, which together allow you to output a bibliography as a +longdesc collection of HTML files. The references in the text are linked +longdesc directly to the corresponding bibliography entry, and if a URL +longdesc is defined in the entry within the BibTeX database file, then +longdesc the generated bibliography entry is linked to this. The package +longdesc provides three different style files derived from each of the +longdesc standard plain.bst and alpha.bst, as well as two style files +longdesc derived from abbrv.bst and unsrt.bst (i.e., eight in total). +containersize 11448 +containerchecksum c7245cce245740f0d930518cfee66dc513bd4b43c8b5804e1012fb95f401dbca2321be44ba6251de573723ec2e6da85fc77b9a9192004ac2144bfbeb3225d27c +doccontainersize 23716 +doccontainerchecksum cf01a0853d87180205651768b639ee4cf7ed1b6bb4869880489f57e37ed8fbff3e8406fbcae1d0c652b3d410f77af9b4d1932ee154c60cc79e2876014abf7b80 +docfiles size=24 + RELOC/doc/bibtex/bibhtml/LICENCE + RELOC/doc/bibtex/bibhtml/README details="Readme" + RELOC/doc/bibtex/bibhtml/bibhtml + RELOC/doc/bibtex/bibhtml/bibhtml-extract-aux.xslt + RELOC/doc/bibtex/bibhtml/bibhtml-insert-bib.xslt + RELOC/doc/bibtex/bibhtml/bibhtml.html details="Package documentation" + RELOC/doc/bibtex/bibhtml/bibrefs.bib + RELOC/doc/bibtex/bibhtml/detex.sed + RELOC/doc/bibtex/bibhtml/style.css +runfiles size=57 + RELOC/bibtex/bst/bibhtml/abbrvhtml.bst + RELOC/bibtex/bst/bibhtml/alphahtml.bst + RELOC/bibtex/bst/bibhtml/alphahtmldate.bst + RELOC/bibtex/bst/bibhtml/alphahtmldater.bst + RELOC/bibtex/bst/bibhtml/plainhtml.bst + RELOC/bibtex/bst/bibhtml/plainhtmldate.bst + RELOC/bibtex/bst/bibhtml/plainhtmldater.bst + RELOC/bibtex/bst/bibhtml/unsrthtml.bst +catalogue-ctan /biblio/bibtex/contrib/bibhtml +catalogue-license gpl +catalogue-topics bibtex-util cvt-html +catalogue-version 2.0.2 + +name biblatex +category Package +revision 57272 +shortdesc Sophisticated Bibliographies in LaTeX +relocated 1 +longdesc BibLaTeX is a complete reimplementation of the bibliographic +longdesc facilities provided by LaTeX. Formatting of the bibliography is +longdesc entirely controlled by LaTeX macros, and a working knowledge of +longdesc LaTeX should be sufficient to design new bibliography and +longdesc citation styles. BibLaTeX uses its own data backend program +longdesc called "biber" to read and process the bibliographic data. With +longdesc biber, BibLaTeX has many features rivalling or surpassing other +longdesc bibliography systems. To mention a few: Full Unicode support +longdesc Highly customisable sorting using the Unicode Collation +longdesc Algorithm + CLDR tailoring Highly customisable bibliography +longdesc labels Complex macro-based on-the-fly data modification without +longdesc changing your data sources A tool mode for transforming +longdesc bibliographic data sources Multiple bibliographies and lists of +longdesc bibliographic information in the same document with different +longdesc sorting Highly customisable data source inheritance rules +longdesc Polyglossia and babel suppport for automatic language switching +longdesc for bibliographic entries and citations Automatic bibliography +longdesc data recoding (UTF-8 -> latin1, LaTeX macros -> UTF-8 etc) +longdesc Remote data sources Highly sophisticated automatic name and +longdesc name list disambiguation system Highly customisable data model +longdesc so users can define their own bibliographic data types +longdesc Validation of bibliographic data against a data model +longdesc Subdivided and/or filtered bibligraphies, bibliographies per +longdesc chapter, section etc. Apart from the features unique to +longdesc BibLaTeX, the package also incorporates core features of the +longdesc following packages: babelbib, bibtopic, bibunits, chapterbib, +longdesc cite, inlinebib, mcite and mciteplus, mlbib, multibib, +longdesc splitbib. The package strictly requires e-TeX BibTeX, bibtex8, +longdesc or Biber etoolbox 2.1 or later logreq 1.0 or later keyval +longdesc ifthen url Biber, babel / polyglossia, and csquotes 4.4 or +longdesc later are strongly recommended. +depend etoolbox +depend kvoptions +depend logreq +depend pdftexcmds +depend url +containersize 243000 +containerchecksum 9d8fbb720f69afabb42ff17287ba61760d910b40c4b90923bf46fa0aa9e6eeb188cbf09f533f0916af145a361702387fce95ece74feb3a535d6409a3fb39f684 +doccontainersize 7209940 +doccontainerchecksum c81fd0590e7662c7887274effc3e1e0badf0d0c67fc44f32abf8c8da3426549a1adbf6703fbd530e595a2cfedbc4a5a089c703f3a542ec0416705839ad093bd5 +docfiles size=4887 + RELOC/doc/latex/biblatex/CHANGES.md details="Release notes for current version" language="en" + RELOC/doc/latex/biblatex/README details="Readme" language="en" + RELOC/doc/latex/biblatex/biber/bltxml/biblatex-examples.bltxml + RELOC/doc/latex/biblatex/biblatex.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/biblatex/biblatex.tex + RELOC/doc/latex/biblatex/examples/01-introduction-biber.pdf + RELOC/doc/latex/biblatex/examples/01-introduction-bibtex.pdf + RELOC/doc/latex/biblatex/examples/01-introduction.tex + RELOC/doc/latex/biblatex/examples/02-annotations-biber.pdf + RELOC/doc/latex/biblatex/examples/02-annotations-bibtex.pdf + RELOC/doc/latex/biblatex/examples/02-annotations.tex + RELOC/doc/latex/biblatex/examples/03-localization-keys-biber.pdf + RELOC/doc/latex/biblatex/examples/03-localization-keys-bibtex.pdf + RELOC/doc/latex/biblatex/examples/03-localization-keys.tex + RELOC/doc/latex/biblatex/examples/04-delimiters-biber.pdf + RELOC/doc/latex/biblatex/examples/04-delimiters-bibtex.pdf + RELOC/doc/latex/biblatex/examples/04-delimiters.tex + RELOC/doc/latex/biblatex/examples/10-references-per-section-biber.pdf + RELOC/doc/latex/biblatex/examples/10-references-per-section-bibtex.pdf + RELOC/doc/latex/biblatex/examples/10-references-per-section.tex + RELOC/doc/latex/biblatex/examples/11-references-by-section-biber.pdf + RELOC/doc/latex/biblatex/examples/11-references-by-section-bibtex.pdf + RELOC/doc/latex/biblatex/examples/11-references-by-section.tex + RELOC/doc/latex/biblatex/examples/12-references-by-segment-biber.pdf + RELOC/doc/latex/biblatex/examples/12-references-by-segment-bibtex.pdf + RELOC/doc/latex/biblatex/examples/12-references-by-segment.tex + RELOC/doc/latex/biblatex/examples/13-references-by-keyword-biber.pdf + RELOC/doc/latex/biblatex/examples/13-references-by-keyword-bibtex.pdf + RELOC/doc/latex/biblatex/examples/13-references-by-keyword.tex + RELOC/doc/latex/biblatex/examples/14-references-by-category-biber.pdf + RELOC/doc/latex/biblatex/examples/14-references-by-category-bibtex.pdf + RELOC/doc/latex/biblatex/examples/14-references-by-category.tex + RELOC/doc/latex/biblatex/examples/15-references-by-type-biber.pdf + RELOC/doc/latex/biblatex/examples/15-references-by-type-bibtex.pdf + RELOC/doc/latex/biblatex/examples/15-references-by-type.tex + RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1-biber.pdf + RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1-bibtex.pdf + RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex + RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2-biber.pdf + RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2-bibtex.pdf + RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2.tex + RELOC/doc/latex/biblatex/examples/18-numeric-hybrid-biber.pdf + RELOC/doc/latex/biblatex/examples/18-numeric-hybrid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/18-numeric-hybrid.tex + RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed-biber.pdf + RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed-bibtex.pdf + RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed.tex + RELOC/doc/latex/biblatex/examples/20-indexing-single-biber.pdf + RELOC/doc/latex/biblatex/examples/20-indexing-single-bibtex.pdf + RELOC/doc/latex/biblatex/examples/20-indexing-single.tex + RELOC/doc/latex/biblatex/examples/21-indexing-multiple-biber.pdf + RELOC/doc/latex/biblatex/examples/21-indexing-multiple-bibtex.pdf + RELOC/doc/latex/biblatex/examples/21-indexing-multiple.tex + RELOC/doc/latex/biblatex/examples/22-indexing-subentry-biber.pdf + RELOC/doc/latex/biblatex/examples/22-indexing-subentry-bibtex.pdf + RELOC/doc/latex/biblatex/examples/22-indexing-subentry.tex + RELOC/doc/latex/biblatex/examples/30-style-numeric-biber.pdf + RELOC/doc/latex/biblatex/examples/30-style-numeric-bibtex.pdf + RELOC/doc/latex/biblatex/examples/30-style-numeric.tex + RELOC/doc/latex/biblatex/examples/31-style-numeric-comp-biber.pdf + RELOC/doc/latex/biblatex/examples/31-style-numeric-comp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/31-style-numeric-comp.tex + RELOC/doc/latex/biblatex/examples/32-style-numeric-verb-biber.pdf + RELOC/doc/latex/biblatex/examples/32-style-numeric-verb-bibtex.pdf + RELOC/doc/latex/biblatex/examples/32-style-numeric-verb.tex + RELOC/doc/latex/biblatex/examples/40-style-alphabetic-biber.pdf + RELOC/doc/latex/biblatex/examples/40-style-alphabetic-bibtex.pdf + RELOC/doc/latex/biblatex/examples/40-style-alphabetic.tex + RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb-biber.pdf + RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb-bibtex.pdf + RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb.tex + RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template-biber.pdf + RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template-bibtex.pdf + RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template.tex + RELOC/doc/latex/biblatex/examples/50-style-authoryear-biber.pdf + RELOC/doc/latex/biblatex/examples/50-style-authoryear-bibtex.pdf + RELOC/doc/latex/biblatex/examples/50-style-authoryear.tex + RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid-biber.pdf + RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid.tex + RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp-biber.pdf + RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp.tex + RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp-biber.pdf + RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp.tex + RELOC/doc/latex/biblatex/examples/60-style-authortitle-biber.pdf + RELOC/doc/latex/biblatex/examples/60-style-authortitle-bibtex.pdf + RELOC/doc/latex/biblatex/examples/60-style-authortitle.tex + RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid-biber.pdf + RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid.tex + RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp-biber.pdf + RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp.tex + RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp-biber.pdf + RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp.tex + RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse-biber.pdf + RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse-bibtex.pdf + RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse.tex + RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp-biber.pdf + RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp.tex + RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp-biber.pdf + RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp.tex + RELOC/doc/latex/biblatex/examples/70-style-verbose-biber.pdf + RELOC/doc/latex/biblatex/examples/70-style-verbose-bibtex.pdf + RELOC/doc/latex/biblatex/examples/70-style-verbose.tex + RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid-biber.pdf + RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid.tex + RELOC/doc/latex/biblatex/examples/72-style-verbose-note-biber.pdf + RELOC/doc/latex/biblatex/examples/72-style-verbose-note-bibtex.pdf + RELOC/doc/latex/biblatex/examples/72-style-verbose-note.tex + RELOC/doc/latex/biblatex/examples/73-style-verbose-inote-biber.pdf + RELOC/doc/latex/biblatex/examples/73-style-verbose-inote-bibtex.pdf + RELOC/doc/latex/biblatex/examples/73-style-verbose-inote.tex + RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1-biber.pdf + RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1-bibtex.pdf + RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1.tex + RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2-biber.pdf + RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2-bibtex.pdf + RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2.tex + RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3-biber.pdf + RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3-bibtex.pdf + RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3.tex + RELOC/doc/latex/biblatex/examples/80-style-reading-biber.pdf + RELOC/doc/latex/biblatex/examples/80-style-reading-bibtex.pdf + RELOC/doc/latex/biblatex/examples/80-style-reading.tex + RELOC/doc/latex/biblatex/examples/81-style-draft-biber.pdf + RELOC/doc/latex/biblatex/examples/81-style-draft-bibtex.pdf + RELOC/doc/latex/biblatex/examples/81-style-draft.tex + RELOC/doc/latex/biblatex/examples/82-style-debug-biber.pdf + RELOC/doc/latex/biblatex/examples/82-style-debug-bibtex.pdf + RELOC/doc/latex/biblatex/examples/82-style-debug.tex + RELOC/doc/latex/biblatex/examples/90-related-entries-biber.pdf + RELOC/doc/latex/biblatex/examples/90-related-entries.tex + RELOC/doc/latex/biblatex/examples/91-sorting-schemes-biber.pdf + RELOC/doc/latex/biblatex/examples/91-sorting-schemes.tex + RELOC/doc/latex/biblatex/examples/92-bibliographylists-biber.pdf + RELOC/doc/latex/biblatex/examples/92-bibliographylists.tex + RELOC/doc/latex/biblatex/examples/93-nameparts-biber.pdf + RELOC/doc/latex/biblatex/examples/93-nameparts.dbx + RELOC/doc/latex/biblatex/examples/93-nameparts.tex + RELOC/doc/latex/biblatex/examples/94-labelprefix-biber.pdf + RELOC/doc/latex/biblatex/examples/94-labelprefix.tex + RELOC/doc/latex/biblatex/examples/95-customlists-biber.pdf + RELOC/doc/latex/biblatex/examples/95-customlists.bib + RELOC/doc/latex/biblatex/examples/95-customlists.dbx + RELOC/doc/latex/biblatex/examples/95-customlists.tex + RELOC/doc/latex/biblatex/examples/96-dates-biber.pdf + RELOC/doc/latex/biblatex/examples/96-dates.tex + RELOC/doc/latex/biblatex/examples/97-annotations-biber.pdf + RELOC/doc/latex/biblatex/examples/97-annotations.bib + RELOC/doc/latex/biblatex/examples/97-annotations.tex + RELOC/doc/latex/biblatex/examples/biblatex-examples.bib + RELOC/doc/latex/biblatex/examples/biblatex-examples.bltxml +runfiles size=593 + RELOC/bibtex/bib/biblatex/biblatex/biblatex-examples.bib + RELOC/bibtex/bst/biblatex/biblatex.bst + RELOC/tex/latex/biblatex/bbx/alphabetic-verb.bbx + RELOC/tex/latex/biblatex/bbx/alphabetic.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-comp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-ibid.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-icomp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-tcomp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-terse.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-ticomp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle.bbx + RELOC/tex/latex/biblatex/bbx/authoryear-comp.bbx + RELOC/tex/latex/biblatex/bbx/authoryear-ibid.bbx + RELOC/tex/latex/biblatex/bbx/authoryear-icomp.bbx + RELOC/tex/latex/biblatex/bbx/authoryear.bbx + RELOC/tex/latex/biblatex/bbx/debug.bbx + RELOC/tex/latex/biblatex/bbx/draft.bbx + RELOC/tex/latex/biblatex/bbx/numeric-comp.bbx + RELOC/tex/latex/biblatex/bbx/numeric-verb.bbx + RELOC/tex/latex/biblatex/bbx/numeric.bbx + RELOC/tex/latex/biblatex/bbx/reading.bbx + RELOC/tex/latex/biblatex/bbx/standard.bbx + RELOC/tex/latex/biblatex/bbx/verbose-ibid.bbx + RELOC/tex/latex/biblatex/bbx/verbose-inote.bbx + RELOC/tex/latex/biblatex/bbx/verbose-note.bbx + RELOC/tex/latex/biblatex/bbx/verbose-trad1.bbx + RELOC/tex/latex/biblatex/bbx/verbose-trad2.bbx + RELOC/tex/latex/biblatex/bbx/verbose-trad3.bbx + RELOC/tex/latex/biblatex/bbx/verbose.bbx + RELOC/tex/latex/biblatex/biblatex.cfg + RELOC/tex/latex/biblatex/biblatex.def + RELOC/tex/latex/biblatex/biblatex.sty + RELOC/tex/latex/biblatex/blx-bibtex.def + RELOC/tex/latex/biblatex/blx-case-expl3.sty + RELOC/tex/latex/biblatex/blx-case-latex2e.sty + RELOC/tex/latex/biblatex/blx-compat.def + RELOC/tex/latex/biblatex/blx-dm.def + RELOC/tex/latex/biblatex/blx-mcite.def + RELOC/tex/latex/biblatex/blx-natbib.def + RELOC/tex/latex/biblatex/blx-unicode.def + RELOC/tex/latex/biblatex/cbx/alphabetic-verb.cbx + RELOC/tex/latex/biblatex/cbx/alphabetic.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-comp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-ibid.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-icomp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-tcomp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-terse.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-ticomp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle.cbx + RELOC/tex/latex/biblatex/cbx/authoryear-comp.cbx + RELOC/tex/latex/biblatex/cbx/authoryear-ibid.cbx + RELOC/tex/latex/biblatex/cbx/authoryear-icomp.cbx + RELOC/tex/latex/biblatex/cbx/authoryear.cbx + RELOC/tex/latex/biblatex/cbx/debug.cbx + RELOC/tex/latex/biblatex/cbx/draft.cbx + RELOC/tex/latex/biblatex/cbx/numeric-comp.cbx + RELOC/tex/latex/biblatex/cbx/numeric-verb.cbx + RELOC/tex/latex/biblatex/cbx/numeric.cbx + RELOC/tex/latex/biblatex/cbx/reading.cbx + RELOC/tex/latex/biblatex/cbx/verbose-ibid.cbx + RELOC/tex/latex/biblatex/cbx/verbose-inote.cbx + RELOC/tex/latex/biblatex/cbx/verbose-note.cbx + RELOC/tex/latex/biblatex/cbx/verbose-trad1.cbx + RELOC/tex/latex/biblatex/cbx/verbose-trad2.cbx + RELOC/tex/latex/biblatex/cbx/verbose-trad3.cbx + RELOC/tex/latex/biblatex/cbx/verbose.cbx + RELOC/tex/latex/biblatex/lbx/UKenglish.lbx + RELOC/tex/latex/biblatex/lbx/USenglish.lbx + RELOC/tex/latex/biblatex/lbx/american.lbx + RELOC/tex/latex/biblatex/lbx/australian.lbx + RELOC/tex/latex/biblatex/lbx/austrian.lbx + RELOC/tex/latex/biblatex/lbx/basque.lbx + RELOC/tex/latex/biblatex/lbx/brazil.lbx + RELOC/tex/latex/biblatex/lbx/brazilian.lbx + RELOC/tex/latex/biblatex/lbx/british.lbx + RELOC/tex/latex/biblatex/lbx/bulgarian.lbx + RELOC/tex/latex/biblatex/lbx/canadian.lbx + RELOC/tex/latex/biblatex/lbx/catalan.lbx + RELOC/tex/latex/biblatex/lbx/croatian.lbx + RELOC/tex/latex/biblatex/lbx/czech.lbx + RELOC/tex/latex/biblatex/lbx/danish.lbx + RELOC/tex/latex/biblatex/lbx/dutch.lbx + RELOC/tex/latex/biblatex/lbx/english.lbx + RELOC/tex/latex/biblatex/lbx/estonian.lbx + RELOC/tex/latex/biblatex/lbx/finnish.lbx + RELOC/tex/latex/biblatex/lbx/french.lbx + RELOC/tex/latex/biblatex/lbx/galician.lbx + RELOC/tex/latex/biblatex/lbx/german.lbx + RELOC/tex/latex/biblatex/lbx/greek.lbx + RELOC/tex/latex/biblatex/lbx/hungarian.lbx + RELOC/tex/latex/biblatex/lbx/icelandic.lbx + RELOC/tex/latex/biblatex/lbx/italian.lbx + RELOC/tex/latex/biblatex/lbx/latvian.lbx + RELOC/tex/latex/biblatex/lbx/lithuanian.lbx + RELOC/tex/latex/biblatex/lbx/magyar.lbx + RELOC/tex/latex/biblatex/lbx/naustrian.lbx + RELOC/tex/latex/biblatex/lbx/newzealand.lbx + RELOC/tex/latex/biblatex/lbx/ngerman.lbx + RELOC/tex/latex/biblatex/lbx/norsk.lbx + RELOC/tex/latex/biblatex/lbx/nswissgerman.lbx + RELOC/tex/latex/biblatex/lbx/nynorsk.lbx + RELOC/tex/latex/biblatex/lbx/polish.lbx + RELOC/tex/latex/biblatex/lbx/portuges.lbx + RELOC/tex/latex/biblatex/lbx/portuguese.lbx + RELOC/tex/latex/biblatex/lbx/russian.lbx + RELOC/tex/latex/biblatex/lbx/serbian.lbx + RELOC/tex/latex/biblatex/lbx/serbianc.lbx + RELOC/tex/latex/biblatex/lbx/slovak.lbx + RELOC/tex/latex/biblatex/lbx/slovene.lbx + RELOC/tex/latex/biblatex/lbx/slovenian.lbx + RELOC/tex/latex/biblatex/lbx/spanish.lbx + RELOC/tex/latex/biblatex/lbx/swedish.lbx + RELOC/tex/latex/biblatex/lbx/swissgerman.lbx + RELOC/tex/latex/biblatex/lbx/turkish.lbx + RELOC/tex/latex/biblatex/lbx/ukrainian.lbx +catalogue-also translation-biblatex-de +catalogue-contact-announce https://github.com/plk/biblatex/wiki +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-license lppl1.3 +catalogue-topics biblio biblatex etex +catalogue-version 3.16 + +name biblatex-abnt +category Package +revision 49179 +shortdesc BibLaTeX style for Brazil's ABNT rules +relocated 1 +longdesc This package offers a BibLaTeX style for Brazil's ABNT +longdesc (Brazilian Association of Technical Norms) rules. +containersize 18036 +containerchecksum f2c239aed726d57eb98cef8892c4b4295205d5a8d55a14b16db8bd6b42bf3f51aadb0dc767f97dfbcd8e57a1f867c5e344c604d726453113a007169edee0ff58 +doccontainersize 861432 +doccontainerchecksum 04158e1b92a2976d2a5cc107e00b5e4ab90a85799f9e55b25936fdd0e141fc2196f0f64577bf2eb8997b7ba5b7e8c575bb725febfc397940d271ecd5f56138a8 +docfiles size=256 + RELOC/doc/latex/biblatex-abnt/CHANGELOG.md + RELOC/doc/latex/biblatex-abnt/NBR10520-2002.bib + RELOC/doc/latex/biblatex-abnt/NBR10520-2002.tex + RELOC/doc/latex/biblatex-abnt/NBR10520-2002_reference.pdf details="Examples of use" + RELOC/doc/latex/biblatex-abnt/NBR10520-2002_test.tex + RELOC/doc/latex/biblatex-abnt/NBR6023-2002.bib + RELOC/doc/latex/biblatex-abnt/NBR6023-2002.tex + RELOC/doc/latex/biblatex-abnt/NBR6023-2002_reference.pdf + RELOC/doc/latex/biblatex-abnt/NBR6023-2002_test.tex + RELOC/doc/latex/biblatex-abnt/README.md details="Readme" language="pt-br" + RELOC/doc/latex/biblatex-abnt/biblatex-abnt.bib + RELOC/doc/latex/biblatex-abnt/biblatex-abnt.pdf details="Package documentation" language="pt-br" + RELOC/doc/latex/biblatex-abnt/biblatex-abnt.tex + RELOC/doc/latex/biblatex-abnt/test.sh + RELOC/doc/latex/biblatex-abnt/tests/README.md details="Readme" language="pt-br" + RELOC/doc/latex/biblatex-abnt/texlive.sh +runfiles size=50 + RELOC/tex/latex/biblatex-abnt/abnt-ibid.bbx + RELOC/tex/latex/biblatex-abnt/abnt-ibid.cbx + RELOC/tex/latex/biblatex-abnt/abnt-numeric.bbx + RELOC/tex/latex/biblatex-abnt/abnt-numeric.cbx + RELOC/tex/latex/biblatex-abnt/abnt.bbx + RELOC/tex/latex/biblatex-abnt/abnt.cbx + RELOC/tex/latex/biblatex-abnt/american-abnt.lbx + RELOC/tex/latex/biblatex-abnt/australian-abnt.lbx + RELOC/tex/latex/biblatex-abnt/brazil-abnt.lbx + RELOC/tex/latex/biblatex-abnt/brazilian-abnt.lbx + RELOC/tex/latex/biblatex-abnt/british-abnt.lbx + RELOC/tex/latex/biblatex-abnt/canadian-abnt.lbx + RELOC/tex/latex/biblatex-abnt/english-abnt.lbx + RELOC/tex/latex/biblatex-abnt/portuges-abnt.lbx + RELOC/tex/latex/biblatex-abnt/portuguese-abnt.lbx + RELOC/tex/latex/biblatex-abnt/spanish-abnt.lbx +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-license lppl1.3c +catalogue-topics biblatex journalpub portuguese-br +catalogue-version 3.4 + +name biblatex-ajc2020unofficial +category Package +revision 54401 +shortdesc BibLaTeX style for the Australasian Journal of Combinatorics +relocated 1 +longdesc This is an unofficial BibLaTeX style for the Australasian +longdesc Journal of Combinatorics. Note that the journal (as for 01 +longdesc March 2020) does not accept BibLaTeX, so you probably want to +longdesc use biblatex2bibitem. +containersize 1440 +containerchecksum 62d09153fea349881ec381bf6f2badd4453c5b2c328e8e3fa1cf99ae43cf62faf525bd453f02bb6d78e9f12ae4e35dd00c2c6f8efa015336bb13f485e8064683 +doccontainersize 1176 +doccontainerchecksum b66f343c8456e3efb118fa18851dd08f298d5dcda4312c9688ff486db7a98fd5b3b953616f407d179480220ce905a6a6a08faa325061df9b71c6490277cdfa4c +docfiles size=1 + RELOC/doc/latex/biblatex-ajc2020unofficial/README.md details="Readme" +runfiles size=2 + RELOC/tex/latex/biblatex-ajc2020unofficial/ajc2020unofficial.bbx + RELOC/tex/latex/biblatex-ajc2020unofficial/ajc2020unofficial.cbx +catalogue-contact-repository https://gitlab.com/Nickkolok/biblatex-ajc2020unofficial +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ajc2020unofficial +catalogue-license lppl1.3c +catalogue-topics biblatex journalpub +catalogue-version 0.2.0 + +name biblatex-anonymous +category Package +revision 48548 +shortdesc A tool to manage anonymous work with BibLaTeX +relocated 1 +longdesc The package provides tools to help manage anonymous work with +longdesc BibLaTeX. It will be useful, for example, in history or +longdesc classical philology. +containersize 1608 +containerchecksum 3a3cc037e3ce718c219e4bd4e380075d4a92d85cd1f490b8ffee10c5b80bb9e515f1f170b53eae033ea064cac2ddb3bb285655482e5cd65801403584fb9e215e +doccontainersize 62380 +doccontainerchecksum 11b4a4f281068004c2bb11028200bf7f8b1461b4b40d0b52b60d60f145b3e9ea38fb672ae532d8430b0ed889df631b1dbeabcef5e9373b720d4a3c3354254789 +docfiles size=20 + RELOC/doc/latex/biblatex-anonymous/README details="Readme" + RELOC/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf details="Package documentation" + RELOC/doc/latex/biblatex-anonymous/biblatex-anonymous.tex + RELOC/doc/latex/biblatex-anonymous/latexmkrc + RELOC/doc/latex/biblatex-anonymous/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-anonymous/biblatex-anonymous.sty +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-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 2.6.2 + +name biblatex-apa +category Package +revision 56208 +shortdesc BibLaTeX citation and reference style for APA +relocated 1 +longdesc This is a fairly complete BibLaTeX style (citations and +longdesc references) for APA (American Psychological Association) +longdesc publications. It implements and automates most of the +longdesc guidelines in the APA 7th edition style guide for citations and +longdesc references. An example document is also given which typesets +longdesc every citation and reference example in the APA 7th edition +longdesc style guide. This version of the package requires use of +longdesc csquotes [?]4.3, BibLaTeX [?]3.4, and the biber backend for +longdesc BibLaTeX [?]2.5. +containersize 24868 +containerchecksum 59ffdb263b02b4934955037f377164297871b10ab3794dd8a11b70cecaf9e773bdd2b3b2aef24d5085672614a51956ed8083866c6f56c72a8c8eb4c1ef6a775a +doccontainersize 322056 +doccontainerchecksum eec8f6cfd0244639f91142b3ac45be28eae14e10881a549d97f0711235cc46b6c25983f0d7742ec1c8894dc8c3c189070138874a6215f630f5e3fb710516290f +docfiles size=114 + RELOC/doc/latex/biblatex-apa/README details="Readme" + RELOC/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib + RELOC/doc/latex/biblatex-apa/biblatex-apa-test-references.bib + RELOC/doc/latex/biblatex-apa/biblatex-apa-test.pdf details="The examples in the APA style guide" + RELOC/doc/latex/biblatex-apa/biblatex-apa-test.tex + RELOC/doc/latex/biblatex-apa/biblatex-apa.pdf details="Package documentation" + RELOC/doc/latex/biblatex-apa/biblatex-apa.tex +runfiles size=102 + RELOC/tex/latex/biblatex-apa/american-apa.lbx + RELOC/tex/latex/biblatex-apa/apa.bbx + RELOC/tex/latex/biblatex-apa/apa.cbx + RELOC/tex/latex/biblatex-apa/apa.dbx + RELOC/tex/latex/biblatex-apa/austrian-apa.lbx + RELOC/tex/latex/biblatex-apa/brazilian-apa.lbx + RELOC/tex/latex/biblatex-apa/british-apa.lbx + RELOC/tex/latex/biblatex-apa/danish-apa.lbx + RELOC/tex/latex/biblatex-apa/dutch-apa.lbx + RELOC/tex/latex/biblatex-apa/english-apa.lbx + RELOC/tex/latex/biblatex-apa/french-apa.lbx + RELOC/tex/latex/biblatex-apa/galician-apa.lbx + RELOC/tex/latex/biblatex-apa/german-apa.lbx + RELOC/tex/latex/biblatex-apa/greek-apa.lbx + RELOC/tex/latex/biblatex-apa/italian-apa.lbx + RELOC/tex/latex/biblatex-apa/naustrian-apa.lbx + RELOC/tex/latex/biblatex-apa/ngerman-apa.lbx + RELOC/tex/latex/biblatex-apa/norsk-apa.lbx + RELOC/tex/latex/biblatex-apa/norwegian-apa.lbx + RELOC/tex/latex/biblatex-apa/nswissgerman-apa.lbx + RELOC/tex/latex/biblatex-apa/nynorsk-apa.lbx + RELOC/tex/latex/biblatex-apa/portuguese-apa.lbx + RELOC/tex/latex/biblatex-apa/russian-apa.lbx + RELOC/tex/latex/biblatex-apa/slovene-apa.lbx + RELOC/tex/latex/biblatex-apa/spanish-apa.lbx + RELOC/tex/latex/biblatex-apa/swedish-apa.lbx + RELOC/tex/latex/biblatex-apa/swissgerman-apa.lbx +catalogue-contact-announce https://github.com/plk/biblatex-apa/wiki +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-license lppl1.3c +catalogue-topics apa biblatex psychology journalpub +catalogue-version 9.14 + +name biblatex-apa6 +category Package +revision 56209 +shortdesc BibLaTeX citation and reference style for APA 6th Edition +relocated 1 +longdesc This is a fairly complete BibLaTeX style (citations and +longdesc references) for APA (American Psychological Association) 6th +longdesc Edition conformant publications. It implements and automates +longdesc most of the guidelines in the APA 6th edition style guide for +longdesc citations and references. An example document is also given +longdesc which typesets every citation and reference example in the APA +longdesc 6th edition style guide. This is a legacy style for 6th Edition +longdesc documents. Please use the BibLaTeX-apa style package for the +longdesc latest APA edition conformance. +containersize 21184 +containerchecksum c327dac9368270aff53b8cc9319834c36b20701d379017c1ac0f4597cfcee56a5f9c149433e2629e2bcf708bb63d8b8706ce9c6dc009696870ebf06728f11b7d +doccontainersize 226684 +doccontainerchecksum 4eb72746e8c627106cbf7e0a7164a30030cf87a6d91ec0afcef70e072dacdf2dcb386ff91e1ff648da178c6f01121c16277630752ce792d54812fd97cb699541 +docfiles size=78 + RELOC/doc/latex/biblatex-apa6/README details="Readme" + RELOC/doc/latex/biblatex-apa6/biblatex-apa6-test-citations.bib + RELOC/doc/latex/biblatex-apa6/biblatex-apa6-test-references.bib + RELOC/doc/latex/biblatex-apa6/biblatex-apa6-test.pdf details="The examples in the APA style guide" + RELOC/doc/latex/biblatex-apa6/biblatex-apa6-test.tex + RELOC/doc/latex/biblatex-apa6/biblatex-apa6.pdf details="Package documentation" + RELOC/doc/latex/biblatex-apa6/biblatex-apa6.tex +runfiles size=76 + RELOC/tex/latex/biblatex-apa6/american-apa6.lbx + RELOC/tex/latex/biblatex-apa6/apa6.bbx + RELOC/tex/latex/biblatex-apa6/apa6.cbx + RELOC/tex/latex/biblatex-apa6/apa6.dbx + RELOC/tex/latex/biblatex-apa6/austrian-apa6.lbx + RELOC/tex/latex/biblatex-apa6/brazilian-apa6.lbx + RELOC/tex/latex/biblatex-apa6/british-apa6.lbx + RELOC/tex/latex/biblatex-apa6/danish-apa6.lbx + RELOC/tex/latex/biblatex-apa6/dutch-apa6.lbx + RELOC/tex/latex/biblatex-apa6/english-apa6.lbx + RELOC/tex/latex/biblatex-apa6/french-apa6.lbx + RELOC/tex/latex/biblatex-apa6/galician-apa6.lbx + RELOC/tex/latex/biblatex-apa6/german-apa6.lbx + RELOC/tex/latex/biblatex-apa6/greek-apa6.lbx + RELOC/tex/latex/biblatex-apa6/italian-apa6.lbx + RELOC/tex/latex/biblatex-apa6/naustrian-apa6.lbx + RELOC/tex/latex/biblatex-apa6/ngerman-apa6.lbx + RELOC/tex/latex/biblatex-apa6/norsk-apa6.lbx + RELOC/tex/latex/biblatex-apa6/norwegian-apa6.lbx + RELOC/tex/latex/biblatex-apa6/nswissgerman-apa6.lbx + RELOC/tex/latex/biblatex-apa6/nynorsk-apa6.lbx + RELOC/tex/latex/biblatex-apa6/portuguese-apa6.lbx + RELOC/tex/latex/biblatex-apa6/russian-apa6.lbx + RELOC/tex/latex/biblatex-apa6/slovene-apa6.lbx + RELOC/tex/latex/biblatex-apa6/spanish-apa6.lbx + RELOC/tex/latex/biblatex-apa6/swedish-apa6.lbx + RELOC/tex/latex/biblatex-apa6/swissgerman-apa6.lbx +catalogue-contact-announce https://github.com/plk/biblatex-apa/wiki +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-license lppl1.3c +catalogue-topics apa biblatex psychology journalpub +catalogue-version 8.5 + +name biblatex-archaeology +category Package +revision 53281 +shortdesc A collection of BibLaTeX styles for German prehistory +relocated 1 +longdesc This package provides additional BibLaTeX styles for German +longdesc humanities. Its core purpose is to enable the referencing rules +longdesc of the Romano-Germanic Commission (>Romisch-Germanische +longdesc Kommission), the department of prehistory of the German +longdesc Archaeological Institute (Deutsches Archaologisches Institut), +longdesc since these are referenced by most guidelines in German +longdesc prehistory and medieval archaeology and serve as a kind of +longdesc template. biblatex-archaeology provides verbose, numeric and +longdesc author date styles as well and adaptions to specific document +longdesc types like exhibition and auction catalogues. +containersize 39412 +containerchecksum 04c9541ac2f3cab21e412b0ea2efc284f9404f225f83f13c5ec3da2d6f3e7274e5d24647205079971beb11125c8fb3403bf09bac3ae5bbe353f6e2eb073d28c2 +doccontainersize 4828952 +doccontainerchecksum 4cb13b2b394262a7c8ed212092cf65bd0707c1f0b0e8c62b1d166fc929a7ddd7f676e72b0750680908c67a17dbcd5dc1b558ef83b35c8ac7b43048fae2e56856 +docfiles size=1915 + RELOC/doc/latex/biblatex-archaeology/README.htm + RELOC/doc/latex/biblatex-archaeology/README.md details="Readme" + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-example.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-manual.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-strings-full-subtitle.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-strings-full.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-strings-rgk.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology.conf + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology.pdf details="Package documentation" + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology.xml + RELOC/doc/latex/biblatex-archaeology/example/aefkw-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/afwl-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/amit-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/archa-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-comp-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-ibid-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-icomp-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/biblatex-archaeology_example.tex + RELOC/doc/latex/biblatex-archaeology/example/dguf-alt-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/dguf-apa-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/dguf-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/eaz-alt-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/eaz-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/foe-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/jb-halle-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/jb-kreis-neuss-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/karl-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/kunde-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/maja-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/mpk-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/mpkoeaw-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/niedersachsen-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/nnu-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/numeric-comp-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/offa-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-inline-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-inline-old-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-numeric-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-numeric-old-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-verbose-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-verbose-old-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgzm-inline-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgzm-numeric-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgzm-verbose-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/ufg-muenster-inline-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/ufg-muenster-numeric-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/ufg-muenster-verbose-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/verbose-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/verbose-ibid-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/verbose-trad2note-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/volkskunde-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/zaak-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/zaes-example.pdf +srccontainersize 193792 +srccontainerchecksum 0cef203b6be6246ca4664295d9b4d5403154e9813c3419c5473fdc950bfbbfb51f1b6caffd1af7891933684380e2b81756875eec9fd79ec0eeacd6f8ced7b09a +srcfiles size=476 + RELOC/source/latex/biblatex-archaeology/biblatex-archaeology-nodoc.dtx + RELOC/source/latex/biblatex-archaeology/biblatex-archaeology.dtx + RELOC/source/latex/biblatex-archaeology/biblatex-archaeology.ins +runfiles size=425 + RELOC/tex/latex/biblatex-archaeology/UKenglish-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-archa.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-foe.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-karl.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-maja.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-offa.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-archa.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-foe.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-karl.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-maja.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-offa.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/aefkw.bbx + RELOC/tex/latex/biblatex-archaeology/aefkw.cbx + RELOC/tex/latex/biblatex-archaeology/aefkw.dbx + RELOC/tex/latex/biblatex-archaeology/afwl.bbx + RELOC/tex/latex/biblatex-archaeology/afwl.cbx + RELOC/tex/latex/biblatex-archaeology/afwl.dbx + RELOC/tex/latex/biblatex-archaeology/american-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/american-archa.lbx + RELOC/tex/latex/biblatex-archaeology/american-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/american-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/american-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/american-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/american-foe.lbx + RELOC/tex/latex/biblatex-archaeology/american-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/american-karl.lbx + RELOC/tex/latex/biblatex-archaeology/american-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/american-maja.lbx + RELOC/tex/latex/biblatex-archaeology/american-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/american-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/american-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/american-offa.lbx + RELOC/tex/latex/biblatex-archaeology/american-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/american-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/american-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/amit.bbx + RELOC/tex/latex/biblatex-archaeology/amit.cbx + RELOC/tex/latex/biblatex-archaeology/amit.dbx + RELOC/tex/latex/biblatex-archaeology/archa.bbx + RELOC/tex/latex/biblatex-archaeology/archa.cbx + RELOC/tex/latex/biblatex-archaeology/archa.dbx + RELOC/tex/latex/biblatex-archaeology/australian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/australian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/australian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/australian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/australian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/australian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/australian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/australian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/australian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/australian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/australian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/australian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/australian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/australian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/australian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/australian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/australian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/australian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/authoryear-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/authoryear-comp-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-comp-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-comp-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/authoryear-ibid-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-ibid-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-ibid-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/authoryear-icomp-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-icomp-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-icomp-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/biblatex-archaeology.sty + RELOC/tex/latex/biblatex-archaeology/british-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/british-archa.lbx + RELOC/tex/latex/biblatex-archaeology/british-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/british-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/british-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/british-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/british-foe.lbx + RELOC/tex/latex/biblatex-archaeology/british-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/british-karl.lbx + RELOC/tex/latex/biblatex-archaeology/british-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/british-maja.lbx + RELOC/tex/latex/biblatex-archaeology/british-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/british-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/british-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/british-offa.lbx + RELOC/tex/latex/biblatex-archaeology/british-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/british-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/british-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/dguf-alt.bbx + RELOC/tex/latex/biblatex-archaeology/dguf-alt.cbx + RELOC/tex/latex/biblatex-archaeology/dguf-alt.dbx + RELOC/tex/latex/biblatex-archaeology/dguf-apa.bbx + RELOC/tex/latex/biblatex-archaeology/dguf-apa.cbx + RELOC/tex/latex/biblatex-archaeology/dguf-apa.dbx + RELOC/tex/latex/biblatex-archaeology/dguf.bbx + RELOC/tex/latex/biblatex-archaeology/dguf.cbx + RELOC/tex/latex/biblatex-archaeology/dguf.dbx + RELOC/tex/latex/biblatex-archaeology/eaz-alt.bbx + RELOC/tex/latex/biblatex-archaeology/eaz-alt.cbx + RELOC/tex/latex/biblatex-archaeology/eaz-alt.dbx + RELOC/tex/latex/biblatex-archaeology/eaz.bbx + RELOC/tex/latex/biblatex-archaeology/eaz.cbx + RELOC/tex/latex/biblatex-archaeology/eaz.dbx + RELOC/tex/latex/biblatex-archaeology/english-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/english-archa.lbx + RELOC/tex/latex/biblatex-archaeology/english-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/english-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/english-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/english-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/english-foe.lbx + RELOC/tex/latex/biblatex-archaeology/english-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/english-karl.lbx + RELOC/tex/latex/biblatex-archaeology/english-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/english-maja.lbx + RELOC/tex/latex/biblatex-archaeology/english-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/english-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/english-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/english-offa.lbx + RELOC/tex/latex/biblatex-archaeology/english-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/english-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/english-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/foe.bbx + RELOC/tex/latex/biblatex-archaeology/foe.cbx + RELOC/tex/latex/biblatex-archaeology/foe.dbx + RELOC/tex/latex/biblatex-archaeology/german-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/german-archa.lbx + RELOC/tex/latex/biblatex-archaeology/german-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/german-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/german-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/german-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/german-foe.lbx + RELOC/tex/latex/biblatex-archaeology/german-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/german-karl.lbx + RELOC/tex/latex/biblatex-archaeology/german-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/german-maja.lbx + RELOC/tex/latex/biblatex-archaeology/german-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/german-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/german-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/german-offa.lbx + RELOC/tex/latex/biblatex-archaeology/german-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/german-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/german-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/jb-halle.bbx + RELOC/tex/latex/biblatex-archaeology/jb-halle.cbx + RELOC/tex/latex/biblatex-archaeology/jb-halle.dbx + RELOC/tex/latex/biblatex-archaeology/jb-kreis-neuss.bbx + RELOC/tex/latex/biblatex-archaeology/jb-kreis-neuss.cbx + RELOC/tex/latex/biblatex-archaeology/jb-kreis-neuss.dbx + RELOC/tex/latex/biblatex-archaeology/karl.bbx + RELOC/tex/latex/biblatex-archaeology/karl.cbx + RELOC/tex/latex/biblatex-archaeology/karl.dbx + RELOC/tex/latex/biblatex-archaeology/kunde.bbx + RELOC/tex/latex/biblatex-archaeology/kunde.cbx + RELOC/tex/latex/biblatex-archaeology/kunde.dbx + RELOC/tex/latex/biblatex-archaeology/maja.bbx + RELOC/tex/latex/biblatex-archaeology/maja.cbx + RELOC/tex/latex/biblatex-archaeology/maja.dbx + RELOC/tex/latex/biblatex-archaeology/mpk.bbx + RELOC/tex/latex/biblatex-archaeology/mpk.cbx + RELOC/tex/latex/biblatex-archaeology/mpk.dbx + RELOC/tex/latex/biblatex-archaeology/mpkoeaw.bbx + RELOC/tex/latex/biblatex-archaeology/mpkoeaw.cbx + RELOC/tex/latex/biblatex-archaeology/mpkoeaw.dbx + RELOC/tex/latex/biblatex-archaeology/naustrian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-archa.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-foe.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-karl.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-maja.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-offa.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-archa.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-foe.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-karl.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-maja.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-offa.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/niedersachsen.bbx + RELOC/tex/latex/biblatex-archaeology/niedersachsen.cbx + RELOC/tex/latex/biblatex-archaeology/niedersachsen.dbx + RELOC/tex/latex/biblatex-archaeology/nnu.bbx + RELOC/tex/latex/biblatex-archaeology/nnu.cbx + RELOC/tex/latex/biblatex-archaeology/nnu.dbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-archa.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-foe.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-karl.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-maja.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-offa.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/numeric-comp-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/numeric-comp-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/numeric-comp-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/offa.bbx + RELOC/tex/latex/biblatex-archaeology/offa.cbx + RELOC/tex/latex/biblatex-archaeology/offa.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline-old.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline-old.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline-old.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric-old.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric-old.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric-old.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose-old.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose-old.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose-old.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose.dbx + RELOC/tex/latex/biblatex-archaeology/rgzm-inline.bbx + RELOC/tex/latex/biblatex-archaeology/rgzm-inline.cbx + RELOC/tex/latex/biblatex-archaeology/rgzm-inline.dbx + RELOC/tex/latex/biblatex-archaeology/rgzm-numeric.bbx + RELOC/tex/latex/biblatex-archaeology/rgzm-numeric.cbx + RELOC/tex/latex/biblatex-archaeology/rgzm-numeric.dbx + RELOC/tex/latex/biblatex-archaeology/rgzm-verbose.bbx + RELOC/tex/latex/biblatex-archaeology/rgzm-verbose.cbx + RELOC/tex/latex/biblatex-archaeology/rgzm-verbose.dbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-archa.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-foe.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-karl.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-maja.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-offa.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-inline.bbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-inline.cbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-inline.dbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-numeric.bbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-numeric.cbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-numeric.dbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-verbose.bbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-verbose.cbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-verbose.dbx + RELOC/tex/latex/biblatex-archaeology/verbose-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/verbose-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/verbose-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/verbose-ibid-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/verbose-ibid-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/verbose-ibid-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/verbose-trad2note-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/verbose-trad2note-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/verbose-trad2note-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/volkskunde.bbx + RELOC/tex/latex/biblatex-archaeology/volkskunde.cbx + RELOC/tex/latex/biblatex-archaeology/volkskunde.dbx + RELOC/tex/latex/biblatex-archaeology/zaak.bbx + RELOC/tex/latex/biblatex-archaeology/zaak.cbx + RELOC/tex/latex/biblatex-archaeology/zaak.dbx + RELOC/tex/latex/biblatex-archaeology/zaes.bbx + RELOC/tex/latex/biblatex-archaeology/zaes.cbx + RELOC/tex/latex/biblatex-archaeology/zaes.dbx +catalogue-also archaeologie +catalogue-contact-bugs https://github.com/CarlOrff/biblatex-archaeology/issues +catalogue-contact-home https://ingram-braun.net/erga/the-biblatex-archaeology-styles-for-german-cultural-anthropology/ +catalogue-contact-repository https://github.com/CarlOrff/biblatex-archaeology +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-archaeology +catalogue-license lppl1.3c +catalogue-topics humanities biblatex +catalogue-version 2.2 + +name biblatex-arthistory-bonn +category Package +revision 46637 +shortdesc BibLaTeX citation style covers the citation and bibliography guidelines for art historians +relocated 1 +longdesc This citation style covers the citation and bibliography +longdesc guidelines of the Kunsthistorisches Institut der Universitat +longdesc Bonn for undergraduates. It introduces bibliography entry types +longdesc for catalogs and features a tabular bibliography, among other +longdesc things. Various options are available to change and adjust the +longdesc outcome according to one's own preferences. The style is +longdesc compatible with English and German. +containersize 7784 +containerchecksum 93b48bb950e9a4bb81efabe4a3c8ee85d7056daeca88c1c1a070c5321b8caa0045c4005467cdc029f8a26b94a425235e36a36bdee163242194a5301ddd6fcc98 +doccontainersize 182764 +doccontainerchecksum e31b7912ca34e6ec27c365c2b3e549cdfb60bd94c19b9f1cd54d35d2a1b99ef2702c3f818f7354ef4f5d3157c0e29538a94315ae7af8177de23893e598c7d439 +docfiles size=67 + RELOC/doc/latex/biblatex-arthistory-bonn/README.md details="Readme" + RELOC/doc/latex/biblatex-arthistory-bonn/arthistory-bonn-examples.bib + RELOC/doc/latex/biblatex-arthistory-bonn/arthistory-bonn.pdf details="Package documentation" + RELOC/doc/latex/biblatex-arthistory-bonn/arthistory-bonn.tex +runfiles size=15 + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn-english.lbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn-german.lbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn.bbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn.cbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn.dbx +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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.2 + +name biblatex-bath +category Package +revision 57924 +shortdesc Harvard referencing style as recommended by the University of Bath Library +relocated 1 +longdesc This package provides a BibLaTeX style to format reference +longdesc lists in the Harvard style recommended by the University of +longdesc Bath Library. +containersize 7792 +containerchecksum d88e903aaa1535f662a90d993491fd94e8af55a14ad226890b8beb65395383c2b92c8c362fb21483519998f5e1b9bae088a215992fef4336af04ebf3e49e23b6 +doccontainersize 363100 +doccontainerchecksum a22433cf6a0255f1a50cc59cae09b9c84150d4859694334b395d6fcddaa16b38923a8873dbd48e07433dbc4edf68a97dd8dcf65b13239b689dd9066f8e959520 +docfiles size=96 + RELOC/doc/latex/biblatex-bath/README.md details="Readme" + RELOC/doc/latex/biblatex-bath/biblatex-bath.bib + RELOC/doc/latex/biblatex-bath/biblatex-bath.pdf details="Package documentation" +srccontainersize 29312 +srccontainerchecksum b79156a217b8c1eb9b5a4be100f87d80694c20fb48d84dcd3a631b871c95d8afb1dd428ec0591eb2f0a38421b699bbbe8d3f3c98500929982bd0ce57c49d1d62 +srcfiles size=33 + RELOC/source/latex/biblatex-bath/Makefile + RELOC/source/latex/biblatex-bath/biblatex-bath.dtx +runfiles size=16 + RELOC/tex/latex/biblatex-bath/bath.bbx + RELOC/tex/latex/biblatex-bath/bath.cbx + RELOC/tex/latex/biblatex-bath/bath.dbx + RELOC/tex/latex/biblatex-bath/british-bath.lbx + RELOC/tex/latex/biblatex-bath/english-bath.lbx +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-license lppl1.3c +catalogue-topics biblatex +catalogue-version 4.0 + +name biblatex-bookinarticle +category Package +revision 40323 +shortdesc Manage book edited in article +relocated 1 +longdesc This package provides three new BibLaTeX entry types - +longdesc @bookinarticle, @bookinincollection and @bookinthesis - to +longdesc refer to a modern edition of an old book, where this modern +longdesc edition is provided in a @article, @incollection or in a +longdesc @thesis. The package is now superseded by biblatex-bookinother. +containersize 1968 +containerchecksum 8a7bfae09d95434d6db671e4037a2f1d5c1ba9cae5982e286389364ee2ff24f9a2daee78c69e529efd06be37d2e6a6f860820361feb42f5b84157dda2ef0988f +doccontainersize 104796 +doccontainerchecksum 727228b915e6b370a74b4d38dffde3bbb7ae47973c33263bafab2aa6b640102775dbeeea7f09c046903dbfe86dbdfcdd8e0418d125a51678e603425328cd2da1 +docfiles size=44 + RELOC/doc/latex/biblatex-bookinarticle/README details="Readme" + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle-crossref.pdf + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.dot + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.pdf details="Package documentation" + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.tex + RELOC/doc/latex/biblatex-bookinarticle/documentation/example-bookinarticle.bib + RELOC/doc/latex/biblatex-bookinarticle/documentation/example-bookinincollection.bib + RELOC/doc/latex/biblatex-bookinarticle/documentation/example-bookinthesis.bib + RELOC/doc/latex/biblatex-bookinarticle/documentation/makefile + RELOC/doc/latex/biblatex-bookinarticle/makefile +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-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 1.3.1a + +name biblatex-bookinother +category Package +revision 54015 +shortdesc Manage book edited in other entry type +relocated 1 +longdesc This package provides new BibLaTeX entry types and fields for +longdesc book edited in other types, like for instance @bookinarticle. +longdesc It offers more types than the older package +longdesc biblatex-bookinarticle which it superseeds. +containersize 3172 +containerchecksum afafb9bf593dc3541ad527f09ee881fdda4af3bff78f02b68d53463a07494ac6c03ba55165738501b685e3e1d998eeb973e8431651ccf904b3ce0ea591dc0592 +doccontainersize 282448 +doccontainerchecksum ebf06bec2cc1b083a472bcdf03772c9f5568a1482c926ebf886f02ece86a6f0c31a127d285ee16baadc4c0ea771eaac05e374c0a3de215d677b07a0335d362e5 +docfiles size=143 + RELOC/doc/latex/biblatex-bookinother/README details="Readme" + RELOC/doc/latex/biblatex-bookinother/documentation/biblatex-bookinother.pdf details="Package documentation" + RELOC/doc/latex/biblatex-bookinother/documentation/biblatex-bookinother.tex + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinarticle.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinarticle.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinarticle.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookincollection.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookincollection.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookincollection.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininarticle.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininarticle.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininarticle.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininbook.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininbook.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininbook.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinincollection.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinincollection.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinincollection.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininproceedings.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininproceedings.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininproceedings.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinjournal.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinjournal.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinjournal.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinproceedings.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinproceedings.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinproceedings.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinthesis.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinthesis.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinthesis.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/generate-crossref-graphs.py + RELOC/doc/latex/biblatex-bookinother/documentation/latexmkrc + RELOC/doc/latex/biblatex-bookinother/documentation/makefile + RELOC/doc/latex/biblatex-bookinother/makefile +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-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 2.3.3 + +name biblatex-bwl +category Package +revision 26556 +shortdesc BibLaTeX citations for FU Berlin +relocated 1 +longdesc The bundle provides a set of BibLaTeX implementations of +longdesc bibliography and citation styles for the Business +longdesc Administration Department of the Free University of Berlin. +containersize 1308 +containerchecksum ca5e20736a70ed02fbdada150433162b64b39b0d95bca623cebda8da821bfe8554f9409cdd49af7559737dbc6d6033bbf6868f5ed809b1004cbeba4bbabbc38f +doccontainersize 114332 +doccontainerchecksum 32acf8bc10c07532e8d6174f3dd9a1f850acaeaaa5a91d14a1c299f2f5f22e34c619a41fd9ae7a90e097fd5ec30fdbce581f65560e2891f697ddb0106469f50b +docfiles size=35 + RELOC/doc/latex/biblatex-bwl/Changes + RELOC/doc/latex/biblatex-bwl/doc/bwl-FU.bib + RELOC/doc/latex/biblatex-bwl/doc/bwl-FU.pdf details="Package documentation" + RELOC/doc/latex/biblatex-bwl/doc/bwl-FU.tex +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-license lppl1.3 +catalogue-topics bus-study biblatex +catalogue-version 0.02 + +name biblatex-caspervector +category Package +revision 56837 +shortdesc A simple citation style for Chinese users +relocated 1 +longdesc The package provides a simple and easily extensible +longdesc biblography/citation style for Chinese LaTeX users, using +longdesc BibLaTeX. +containersize 4396 +containerchecksum d3e8c56ef35444c740e505cc9ccd3a3e0fc7627de17658f2f83865fe9dd48610a42fb226a0896b642851d4ee8a6e4bdbf070df32eeee047bdca001a8a8e34c94 +doccontainersize 493104 +doccontainerchecksum 076578ca8f7416c698de9f54765ffc95fad9a9d504f78c50648bd1aa3a12132caec3ca067aee94731cdf71af97bbb73f4b85afe477ccf128e587d221fbe5cb4d +docfiles size=138 + RELOC/doc/latex/biblatex-caspervector/ChangeLog.txt + RELOC/doc/latex/biblatex-caspervector/README.txt details="Readme" + RELOC/doc/latex/biblatex-caspervector/caspervector-ay.pdf + RELOC/doc/latex/biblatex-caspervector/caspervector-ay.tex + RELOC/doc/latex/biblatex-caspervector/caspervector.bib + RELOC/doc/latex/biblatex-caspervector/caspervector.pdf details="Package documentation" language="zh" + RELOC/doc/latex/biblatex-caspervector/caspervector.tex + RELOC/doc/latex/biblatex-caspervector/latexmkrc +runfiles size=10 + RELOC/tex/latex/biblatex-caspervector/blx-caspervector-base.def + RELOC/tex/latex/biblatex-caspervector/blx-caspervector-gbk.def + RELOC/tex/latex/biblatex-caspervector/blx-caspervector-utf8.def + RELOC/tex/latex/biblatex-caspervector/caspervector-ay.bbx + RELOC/tex/latex/biblatex-caspervector/caspervector-ay.cbx + RELOC/tex/latex/biblatex-caspervector/caspervector.bbx + 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-license lppl1.3 +catalogue-topics biblatex chinese +catalogue-version 0.3.5 + +name biblatex-cheatsheet +category Package +revision 44685 +shortdesc BibLaTeX/Biber 'cheat sheet' +relocated 1 +longdesc A BibLaTeX/Biber 'cheat sheet' which I wrote because I wanted +longdesc one to distribute to students, but couldn't find an existing +longdesc one. +containersize 436 +containerchecksum a974a8eeb4282f66ebdc7a57d40c76b0f2bc957249c130d4f97aa9f9749f5091745a87db277c3bef43d0f4e37790a9663949ca3bba3b28a16d37c13bd6029181 +doccontainersize 322392 +doccontainerchecksum a2b9a82afe127d0bfb71f3a481eed3198e27ef35caa5cd08557ed35645f6209e9187f1e0c21d6fa51e6c32d0cf044c0d85373195a5f034c856fb4beec360af13 +docfiles size=85 + RELOC/doc/latex/biblatex-cheatsheet/README details="Readme" + 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-license lppl1.3 +catalogue-topics biblatex bibtex-doc + +name biblatex-chem +category Package +revision 57904 +shortdesc A set of BibLaTeX implementations of chemistry-related bibliography styles +relocated 1 +longdesc The bundle offers a set of styles to allow chemists to use +longdesc BibLaTeX. The package has complete styles for: all ACS +longdesc journals; RSC journals using standard (Chem. Commun.) style; +longdesc and Angewandte Chem. style, (thus covering a wide range of +longdesc journals). A comprehensive set of examples of use is included. +containersize 5592 +containerchecksum 5339931e89e477284cfa76dcaa0be9ea7b3417dee4e20f8ff2a04da25bda4685270d3c001fd41f786f31c87e590b2aa4b597a517ef8086c75aad8f1e509a770b +doccontainersize 918284 +doccontainerchecksum 17207489eb4d5ab5cf210882e6487dcf07fc30195facf27f3bab95f28fd8cfdd270da30d410579f6a8d91a1e82e7e12ff809fed47837e3ae521927b8251da5fc +docfiles size=381 + RELOC/doc/latex/biblatex-chem/README.md details="Readme" + RELOC/doc/latex/biblatex-chem/biblatex-chem-acs.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-acs.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem-angew.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-angew.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem-biochem.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-biochem.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem-rsc.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-rsc.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem.bib + RELOC/doc/latex/biblatex-chem/biblatex-chem.pdf details="Package documentation" + RELOC/doc/latex/biblatex-chem/biblatex-chem.tex +runfiles size=24 + RELOC/tex/latex/biblatex-chem/chem-acs.bbx + RELOC/tex/latex/biblatex-chem/chem-acs.cbx + RELOC/tex/latex/biblatex-chem/chem-angew.bbx + RELOC/tex/latex/biblatex-chem/chem-angew.cbx + RELOC/tex/latex/biblatex-chem/chem-biochem.bbx + RELOC/tex/latex/biblatex-chem/chem-biochem.cbx + 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-license lppl1.3c +catalogue-topics biblatex chemistry journalpub +catalogue-version 1.1z + +name biblatex-chicago +category Package +revision 58715 +shortdesc Chicago style files for BibLaTeX +relocated 1 +longdesc This is a BibLaTeX style that implements the Chicago +longdesc 'author-date' and 'notes with bibliography' style +longdesc specifications given in the Chicago Manual of Style, 17th +longdesc edition (with continuing support for the 16th edition, too). +longdesc The style implements entry types for citing audio-visual +longdesc materials, among many others. The package was previously known +longdesc as biblatex-chicago-notes-df. +containersize 101696 +containerchecksum 27d9ce6b00b71ebf751a720d42ebb16c3f7d6bba7b494acb3acf2232849342b992aa7fb9de35d7de4c12ef94956aa80be8a5d61366d9ef897257a6c4e26de6d3 +doccontainersize 2828240 +doccontainerchecksum adb23e2fca96e703aef93385c48e82279e411e266b4a0d147be34fbf4b2fc781dd93ed4323b044a51660a94a2fd832f02f5ff16cfe13389b6058805190c881a1 +docfiles size=1067 + RELOC/doc/latex/biblatex-chicago/README details="Readme and usage outline" + RELOC/doc/latex/biblatex-chicago/RELEASE + RELOC/doc/latex/biblatex-chicago/biblatex-chicago.pdf details="Package documentation" + RELOC/doc/latex/biblatex-chicago/biblatex-chicago.tex + RELOC/doc/latex/biblatex-chicago/cms-dates-intro.pdf + RELOC/doc/latex/biblatex-chicago/cms-dates-intro.tex + RELOC/doc/latex/biblatex-chicago/cms-dates-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-dates-sample.tex + RELOC/doc/latex/biblatex-chicago/cms-legal-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-legal-sample.tex + RELOC/doc/latex/biblatex-chicago/cms-noteref-demo.pdf + RELOC/doc/latex/biblatex-chicago/cms-noteref-demo.tex + RELOC/doc/latex/biblatex-chicago/cms-notes-intro.pdf + RELOC/doc/latex/biblatex-chicago/cms-notes-intro.tex + RELOC/doc/latex/biblatex-chicago/cms-notes-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-notes-sample.tex + RELOC/doc/latex/biblatex-chicago/cms-trad-appendix.pdf + RELOC/doc/latex/biblatex-chicago/cms-trad-appendix.tex + RELOC/doc/latex/biblatex-chicago/cms-trad-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-trad-sample.tex + RELOC/doc/latex/biblatex-chicago/dates-test.bib + RELOC/doc/latex/biblatex-chicago/legal-test.bib + RELOC/doc/latex/biblatex-chicago/notes-test.bib +runfiles size=473 + RELOC/tex/latex/biblatex-chicago/biblatex-chicago.sty + RELOC/tex/latex/biblatex-chicago/chicago-authordate-trad.bbx + RELOC/tex/latex/biblatex-chicago/chicago-authordate-trad.cbx + RELOC/tex/latex/biblatex-chicago/chicago-authordate-trad16.bbx + RELOC/tex/latex/biblatex-chicago/chicago-authordate-trad16.cbx + RELOC/tex/latex/biblatex-chicago/chicago-authordate.bbx + RELOC/tex/latex/biblatex-chicago/chicago-authordate.cbx + RELOC/tex/latex/biblatex-chicago/chicago-authordate16.bbx + RELOC/tex/latex/biblatex-chicago/chicago-authordate16.cbx + RELOC/tex/latex/biblatex-chicago/chicago-dates-common.cbx + RELOC/tex/latex/biblatex-chicago/chicago-dates-common16.cbx + RELOC/tex/latex/biblatex-chicago/chicago-notes.bbx + RELOC/tex/latex/biblatex-chicago/chicago-notes.cbx + RELOC/tex/latex/biblatex-chicago/chicago-notes16.bbx + RELOC/tex/latex/biblatex-chicago/chicago-notes16.cbx + RELOC/tex/latex/biblatex-chicago/cms-american.lbx + RELOC/tex/latex/biblatex-chicago/cms-brazilian.lbx + RELOC/tex/latex/biblatex-chicago/cms-british.lbx + RELOC/tex/latex/biblatex-chicago/cms-dutch.lbx + RELOC/tex/latex/biblatex-chicago/cms-finnish.lbx + RELOC/tex/latex/biblatex-chicago/cms-french.lbx + RELOC/tex/latex/biblatex-chicago/cms-german.lbx + RELOC/tex/latex/biblatex-chicago/cms-icelandic.lbx + RELOC/tex/latex/biblatex-chicago/cms-ngerman.lbx + RELOC/tex/latex/biblatex-chicago/cms-norsk.lbx + RELOC/tex/latex/biblatex-chicago/cms-norwegian.lbx + RELOC/tex/latex/biblatex-chicago/cms-nynorsk.lbx + RELOC/tex/latex/biblatex-chicago/cms-romanian.lbx + RELOC/tex/latex/biblatex-chicago/cms-swedish.lbx + RELOC/tex/latex/biblatex-chicago/cmsdocs.sty + RELOC/tex/latex/biblatex-chicago/cmsendnotes.sty +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chicago +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 2.1 + +name biblatex-claves +category Package +revision 43723 +shortdesc A tool to manage claves of old litterature with BibLaTeX +relocated 1 +longdesc When studying antic and medieval literature, we may find many +longdesc different texts published with the same title, or, in contrary, +longdesc the same text published with different titles. To avoid +longdesc confusion, scholars have published claves, which are books +longdesc listing ancient texts, identifying them by an identifier -- a +longdesc number or a string of text. For example, for early +longdesc Christianity, we have the Bibliotheca Hagiographica Graeca, the +longdesc Clavis Apocryphorum Novi Testamenti and other claves. It could +longdesc be useful to print the identifier of a texts in one specific +longdesc clavis, or in many claves. The package allows us to create new +longdesc field for different claves, and to present all these fields in +longdesc a consistent way. +containersize 2184 +containerchecksum 008cb8403f1b35a7fd077f8ac2f33f73ced090ce3d65ce678ecfe90af8ab6fb2b4349342aa838d2d4f1e78d0d87267c7b8206a3377c6490499ee9196498c130f +doccontainersize 90108 +doccontainerchecksum a11a4df38dbeb4c27f30b824c9f1ba230d273e227b8cdbfe5f61268a1a2b7ff3193e79d8e8bedb6f9334df39001b71a3ec78116637745679bf3d67582727371d +docfiles size=31 + RELOC/doc/latex/biblatex-claves/README details="Readme" + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves-ref.bib + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves.bib + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf details="Package documentation" + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves.tex + RELOC/doc/latex/biblatex-claves/documentation/latexmkrc + RELOC/doc/latex/biblatex-claves/documentation/makefile + RELOC/doc/latex/biblatex-claves/makefile +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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.2.1 + +name biblatex-dw +category Package +revision 42649 +shortdesc Humanities styles for BibLaTeX +relocated 1 +longdesc A small collection of styles for the BibLaTeX package. It was +longdesc designed for citations in the humanities and offers some +longdesc features that are not provided by the standard BibLaTeX styles. +longdesc The styles are dependent on BibLaTeX (at least version 0.9b) +longdesc and cannot be used without it. Eine kleine Sammlung von Stilen +longdesc fur das Paket BibLaTeX. Es ist auf geisteswissenschaftliche +longdesc Zitierweise zugeschnitten und bietet einige Funktionen, die von +longdesc den Standard-Stilen von BibLaTeX nicht direkt bereitgestellt +longdesc werden. Das Paket baut vollstandig auf BibLaTeX auf und kann +longdesc nicht ohne BibLaTeX (mindestens in der Version 0.9b) verwendet +longdesc werden. +containersize 16432 +containerchecksum faa43e5f4de281747e5cbc22fdcbfb7d03c5c04d68245340e084c4e34f1ff9917c6ccf22a06ae4eefc41f7a5315db15aa8b51f2a8c3ed7c68cd033308fbe99be +doccontainersize 1124296 +doccontainerchecksum d29c64dac41255066a844639e4330193811c62049e4b38600951346d4c126a495fab78458bd322fb3defc4352b765c1a7e7a73b7c64bdfde3a90f3e5a74e4e4c +docfiles size=491 + RELOC/doc/latex/biblatex-dw/CHANGES + RELOC/doc/latex/biblatex-dw/LIESMICH details="Readme (German)" language="de" + RELOC/doc/latex/biblatex-dw/README details="Readme (English)" language="en" + RELOC/doc/latex/biblatex-dw/biblatex-dw-preamble.tex + RELOC/doc/latex/biblatex-dw/biblatex-dw-print.tex + RELOC/doc/latex/biblatex-dw/biblatex-dw-screen.tex + RELOC/doc/latex/biblatex-dw/biblatex-dw.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/biblatex-dw/biblatex-dw.tex + RELOC/doc/latex/biblatex-dw/de-biblatex-dw.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/biblatex-dw/de-biblatex-dw.tex + RELOC/doc/latex/biblatex-dw/examples/de-authortitle-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/de-authortitle-dw.tex + RELOC/doc/latex/biblatex-dw/examples/de-examples-dw.bib + RELOC/doc/latex/biblatex-dw/examples/de-footnote-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/de-footnote-dw.tex + RELOC/doc/latex/biblatex-dw/examples/en-authortitle-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/en-authortitle-dw.tex + RELOC/doc/latex/biblatex-dw/examples/en-footnote-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/en-footnote-dw.tex + RELOC/doc/latex/biblatex-dw/examples/examples-dw.bib +runfiles size=35 + RELOC/tex/latex/biblatex-dw/bbx/authortitle-dw.bbx + RELOC/tex/latex/biblatex-dw/bbx/footnote-dw.bbx + RELOC/tex/latex/biblatex-dw/bbx/standard-dw.bbx + RELOC/tex/latex/biblatex-dw/cbx/authortitle-dw.cbx + RELOC/tex/latex/biblatex-dw/cbx/footnote-dw.cbx + RELOC/tex/latex/biblatex-dw/cbx/standard-dw.cbx + RELOC/tex/latex/biblatex-dw/lbx/english-dw.lbx + 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-license lppl +catalogue-topics biblatex humanities +catalogue-version 1.7 + +name biblatex-enc +category Package +revision 44627 +shortdesc BibLaTeX style for the Ecole nationale des chartes (Paris) +relocated 1 +longdesc This package provides a citation and bibliography style for use +longdesc with BibLaTeX. It conforms to the bibliographic standards used +longdesc at the Ecole nationale des chartes (Paris), and may be suitable +longdesc for a more general use in historical and philological works. +longdesc The package was initially derived from historische-zeitschrift, +longdesc with the necessary modifications. +containersize 8476 +containerchecksum 6aab8a819ce9a3ec2d6676ab8850c3fc6bb81e5af5c9414555581cc9d164184d18ec550fb0ca67d28d800826356f1c709144ee7d38c0cfbc274179fa813a3a0c +doccontainersize 2284 +doccontainerchecksum ae50544ebdf7bbf9ee708f193493ffa241ba91f0925a2bf03b6bf1ec486586fde3c630fe717f4f2904373c08a2f9a90afca86b50870f87aa0d04430554650223 +docfiles size=2 + RELOC/doc/latex/biblatex-enc/README details="Readme" +runfiles size=13 + RELOC/tex/latex/biblatex-enc/enc.bbx + RELOC/tex/latex/biblatex-enc/enc.cbx +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-license lppl1.3 +catalogue-topics biblatex french humanities journalpub +catalogue-version 1.0 + +name biblatex-ext +category Package +revision 58975 +shortdesc Extended BibLaTeX standard styles +relocated 1 +longdesc The BibLaTeX-ext bundle provides styles that slightly extend +longdesc the standard styles that ship with BibLaTeX. The styles offered +longdesc in this bundle provide a simple interface to change some of the +longdesc stylistic decisions made in the standard styles. At the same +longdesc time they stay as close to their standard counterparts as +longdesc possible, so that most customisation methods can be applied +longdesc here as well. +containersize 26848 +containerchecksum 5169ab48cfb03c1456fa16f63df4ba8f18dd909cabd247d7159cb9430cea0f16dbc6ce586840e54eff1c044c3a0711df65dd1f45374f53c601f2dcc10bed09ae +doccontainersize 864040 +doccontainerchecksum 4e013851c68bcd2f756f7bc910a048e400af66d40bfa0381a44c497200826ea98467a94429cb62b6c11ee9e75e6d40741453b2963051eee3afb2f2fb18e8c49c +docfiles size=249 + RELOC/doc/latex/biblatex-ext/CHANGES.md + RELOC/doc/latex/biblatex-ext/README.md details="Readme" + RELOC/doc/latex/biblatex-ext/biblatex-ext-examples.bib + RELOC/doc/latex/biblatex-ext/biblatex-ext.pdf details="Package documentation" + RELOC/doc/latex/biblatex-ext/biblatex-ext.tex +runfiles size=118 + RELOC/tex/latex/biblatex-ext/biblatex-ext-oa-doiapi.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oa.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oasymb-l3draw.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oasymb-pict2e.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oasymb-tikz.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-tabular.sty + RELOC/tex/latex/biblatex-ext/blxextdoiapi.lua + RELOC/tex/latex/biblatex-ext/ext-alphabetic-verb.bbx + RELOC/tex/latex/biblatex-ext/ext-alphabetic-verb.cbx + RELOC/tex/latex/biblatex-ext/ext-alphabetic.bbx + RELOC/tex/latex/biblatex-ext/ext-alphabetic.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-common.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-comp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-comp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ibid.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ibid.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-icomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-icomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-tcomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-tcomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-terse.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-terse.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ticomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ticomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-common.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-comp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-comp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ibid.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ibid.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-icomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-icomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-iecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-iecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tcomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tcomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-terse.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-terse.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ticomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ticomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tiecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tiecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear.cbx + RELOC/tex/latex/biblatex-ext/ext-biblatex-aux.def + RELOC/tex/latex/biblatex-ext/ext-dashed-common.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric-comp.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric-comp.cbx + RELOC/tex/latex/biblatex-ext/ext-numeric-verb.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric-verb.cbx + RELOC/tex/latex/biblatex-ext/ext-numeric.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric.cbx + RELOC/tex/latex/biblatex-ext/ext-standard.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-common.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-ibid.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-ibid.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-inote.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-inote.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-note-common.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-note.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-note.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad1.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad1.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad2.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad2.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad3.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad3.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose.cbx +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-license lppl1.3c +catalogue-topics biblatex +catalogue-version 0.12b + +name biblatex-fiwi +category Package +revision 45876 +shortdesc BibLaTeX styles for use in German humanities +relocated 1 +longdesc The package provides a collection of styles for BibLaTeX +longdesc (version 3.5 is required, currently). It was designed for +longdesc citations in German Humanities, especially film studies, and +longdesc offers some features that are not provided by the standard +longdesc BibLaTeX styles. The style is highly optimized for documents +longdesc written in German, and the main documentation is only available +longdesc in German. +containersize 16768 +containerchecksum 72b1e41ac55403f144529fd5cbd88f51dfd61cd637bd8e6427a2714d3684ffa37774c698475994f1481442cc8eb336d8de398d55b3df28e5e1615b9cd74cef27 +doccontainersize 595408 +doccontainerchecksum 37fd37d39fee963af8567cf27cd266597175ccebe20f016c7dda699d95e6f7fd0408a57f9061b98996a6ce8eab04a8ed376e6e29b5cb41635d004d24082e91be +docfiles size=219 + RELOC/doc/latex/biblatex-fiwi/README details="Readme" + RELOC/doc/latex/biblatex-fiwi/biblatex-fiwi.pdf details="Package documentation" language="de" + RELOC/doc/latex/biblatex-fiwi/biblatex-fiwi.tex + RELOC/doc/latex/biblatex-fiwi/diss.xdy + RELOC/doc/latex/biblatex-fiwi/dissff.xdy + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-options.pdf + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-options.tex + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-xindy.pdf + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-xindy.tex + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi.pdf + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi.tex + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi2-options.pdf + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi2-options.tex + RELOC/doc/latex/biblatex-fiwi/examples.bib +runfiles size=33 + RELOC/tex/latex/biblatex-fiwi/fiwi-yearbeginning.bbx + RELOC/tex/latex/biblatex-fiwi/fiwi.bbx + RELOC/tex/latex/biblatex-fiwi/fiwi.cbx + RELOC/tex/latex/biblatex-fiwi/fiwi.dbx + RELOC/tex/latex/biblatex-fiwi/fiwi2.bbx + RELOC/tex/latex/biblatex-fiwi/fiwi2.cbx + RELOC/tex/latex/biblatex-fiwi/fiwi2.dbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-fiwi +catalogue-license lppl1.3 +catalogue-topics biblatex humanities +catalogue-version 1.7 + +name biblatex-gb7714-2015 +category Package +revision 58753 +shortdesc A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users +relocated 1 +longdesc This package provides an implementation of the GBT7714-2015 +longdesc bibliography style. This implementation follows the +longdesc GBT7714-2015 standard and can be used by simply loading +longdesc BibLaTeX with the appropriate option. A demonstration database +longdesc is provided to show how to format input for the style. +containersize 39800 +containerchecksum c4bd497d3ea4c27fe8f9382ac54f865da57576b08fadd28e10d93a7dbabb935a877e4c45058f4055dfe319e3e29df3995b8fce7496f12765b9c1c5120943c6a5 +doccontainersize 1602620 +doccontainerchecksum b88722523465025454afa64841f00df9cb8cdfd9aaa81dfa75cdcbc9a7362f980b9d51d874dccda310a0afe5f25f1ad9955dc6ae6317a4d0bba2deb47fda02a5 +docfiles size=569 + RELOC/doc/latex/biblatex-gb7714-2015/README.md details="Readme" + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015-preamble.tex + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.tex + RELOC/doc/latex/biblatex-gb7714-2015/example.bib +runfiles size=162 + RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.bbx + RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015-gbk.def + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ay.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ay.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ms.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ms.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015mx.bbx + 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-license lppl1.3 +catalogue-topics biblatex chinese +catalogue-version 1.0x + +name biblatex-german-legal +category Package +revision 56939 +shortdesc Comprehensive citation style for German legal texts +relocated 1 +longdesc This package aims to provide citation styles (for footnotes and +longdesc bibliographies) for German legal texts. It is currently focused +longdesc on citations in books (style german-legal-book), but may be +longdesc extended to journal articles in the future. Dieses Paket +longdesc enthalt BibLaTeX-Zitierstile fur die Rechtswissenschaften in +longdesc Deutschland. Aktuell enthalt es einen auf Monographien in den +longdesc deutschen Rechtswissenschaften ausgerichteten Zitierstil namens +longdesc german-legal-book. +containersize 5348 +containerchecksum a82cb2c531e5f3671b0ec29ae27f9df9ea375f9dc616286805e8ff2a8940437427c23c51d09e477703e60c7aa70645430ed98890efbcaf9593b1747800a9836b +doccontainersize 167748 +doccontainerchecksum d4108ee1d625301ccc32ae4202002d9c33c1cd9817b2d26430eb1acf902386817aeaeb6af518b67669b2542a3eab91e0f513bf1ad5ef8ba2572c5f5d7b813382 +docfiles size=45 + RELOC/doc/latex/biblatex-german-legal/README.md details="Readme" + RELOC/doc/latex/biblatex-german-legal/biblatex-german-legal.pdf details="Package documentation" language="de" + RELOC/doc/latex/biblatex-german-legal/biblatex-german-legal.tex +runfiles size=6 + RELOC/tex/latex/biblatex-german-legal/german-legal-book.bbx + RELOC/tex/latex/biblatex-german-legal/german-legal-book.cbx +catalogue-contact-repository https://git.linta.de/?p=~brodo/biblatex-german-legal.git;a=tree +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-german-legal +catalogue-license lppl1.3c +catalogue-topics biblatex legal german +catalogue-version 002 + +name biblatex-gost +category Package +revision 56790 +shortdesc BibLaTeX support for GOST standard bibliographies +relocated 1 +longdesc The package provides BibLaTeX support for Russian bibliography +longdesc style GOST 7.0.5-2008 +containersize 21148 +containerchecksum c9dad05fd20f6147215805df07cbcea228d023b2051a2b8fdac28e55d0d3424d81d71f48d7dbbd679f3a306c1385dd2d1c50d8d128432d3d64abc9fa96373350 +doccontainersize 999112 +doccontainerchecksum 90220ec8159d1621e54ffd83c587d111bafdd54ed3d104146992cef5340d55093166283367e4dc3cb21ea2621122b4080d0a849f7ca2b116f262b96b6d177ce1 +docfiles size=356 + RELOC/doc/latex/biblatex-gost/README.md details="Readme" + RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.bib + RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.pdf + RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.tex + RELOC/doc/latex/biblatex-gost/biblatex-gost.pdf details="Package documentation" language="ru" + RELOC/doc/latex/biblatex-gost/biblatex-gost.tex + RELOC/doc/latex/biblatex-gost/ltxdockit.cfg + RELOC/doc/latex/biblatex-gost/ltxdockit.cls +runfiles size=82 + RELOC/tex/latex/biblatex-gost/american-gost.lbx + RELOC/tex/latex/biblatex-gost/biblatex-gost.dbx + RELOC/tex/latex/biblatex-gost/biblatex-gost.def + RELOC/tex/latex/biblatex-gost/brazilian-gost.lbx + RELOC/tex/latex/biblatex-gost/british-gost.lbx + RELOC/tex/latex/biblatex-gost/catalan-gost.lbx + RELOC/tex/latex/biblatex-gost/croatian-gost.lbx + RELOC/tex/latex/biblatex-gost/english-gost.lbx + RELOC/tex/latex/biblatex-gost/french-gost.lbx + RELOC/tex/latex/biblatex-gost/galician-gost.lbx + RELOC/tex/latex/biblatex-gost/german-gost.lbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.bbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.cbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.dbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic.bbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic.cbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic.dbx + RELOC/tex/latex/biblatex-gost/gost-authoryear-min.bbx + RELOC/tex/latex/biblatex-gost/gost-authoryear-min.cbx + RELOC/tex/latex/biblatex-gost/gost-authoryear-min.dbx + RELOC/tex/latex/biblatex-gost/gost-authoryear.bbx + RELOC/tex/latex/biblatex-gost/gost-authoryear.cbx + RELOC/tex/latex/biblatex-gost/gost-authoryear.dbx + RELOC/tex/latex/biblatex-gost/gost-footnote-min.bbx + RELOC/tex/latex/biblatex-gost/gost-footnote-min.cbx + RELOC/tex/latex/biblatex-gost/gost-footnote-min.dbx + RELOC/tex/latex/biblatex-gost/gost-footnote.bbx + RELOC/tex/latex/biblatex-gost/gost-footnote.cbx + RELOC/tex/latex/biblatex-gost/gost-footnote.dbx + RELOC/tex/latex/biblatex-gost/gost-inline-min.bbx + RELOC/tex/latex/biblatex-gost/gost-inline-min.cbx + RELOC/tex/latex/biblatex-gost/gost-inline-min.dbx + RELOC/tex/latex/biblatex-gost/gost-inline.bbx + RELOC/tex/latex/biblatex-gost/gost-inline.cbx + RELOC/tex/latex/biblatex-gost/gost-inline.dbx + RELOC/tex/latex/biblatex-gost/gost-numeric-min.bbx + RELOC/tex/latex/biblatex-gost/gost-numeric-min.cbx + RELOC/tex/latex/biblatex-gost/gost-numeric-min.dbx + RELOC/tex/latex/biblatex-gost/gost-numeric.bbx + RELOC/tex/latex/biblatex-gost/gost-numeric.cbx + RELOC/tex/latex/biblatex-gost/gost-numeric.dbx + RELOC/tex/latex/biblatex-gost/gost-standard.bbx + RELOC/tex/latex/biblatex-gost/greek-gost.lbx + RELOC/tex/latex/biblatex-gost/icelandic-gost.lbx + RELOC/tex/latex/biblatex-gost/italian-gost.lbx + RELOC/tex/latex/biblatex-gost/portuguese-gost.lbx + RELOC/tex/latex/biblatex-gost/russian-gost.lbx + RELOC/tex/latex/biblatex-gost/slovene-gost.lbx + RELOC/tex/latex/biblatex-gost/spanish-gost.lbx +catalogue-also gost +catalogue-contact-repository https://github.com/odomanov/biblatex-gost/ +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gost +catalogue-license lppl1.3c +catalogue-topics biblatex std-conform russian +catalogue-version 1.21 + +name biblatex-historian +category Package +revision 19787 +shortdesc A BibLaTeX style +relocated 1 +longdesc A BibLaTeX style, based on the Turabian Manual (a version of +longdesc Chicago). +containersize 24464 +containerchecksum bba5cedd64fcf0c0cfbf9b56c66838141917ba1e7c2f27aea5bda44261ba28366b465415e3674a2ce398812d5cefbb2727c7e5e1adf53a2d9779754849664502 +doccontainersize 578372 +doccontainerchecksum ed87ab74fd06ccdfa0923289dcd7a37df695fdf76003aa7ab142c9d924fb69a81430ab7651314a9a391b9114dc2c2d63ffe94461bb00fd33d97ac9e8c5b2a8cf +docfiles size=230 + RELOC/doc/latex/biblatex-historian/README.txt + RELOC/doc/latex/biblatex-historian/historian.bib + RELOC/doc/latex/biblatex-historian/historian.pdf details="Package documentation" +runfiles size=40 + RELOC/tex/latex/biblatex-historian/historian.bbx + RELOC/tex/latex/biblatex-historian/historian.cbx + RELOC/tex/latex/biblatex-historian/historian.lbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-historian +catalogue-license lppl +catalogue-topics humanities biblatex +catalogue-version 0.4 + +name biblatex-ieee +category Package +revision 58716 +shortdesc IEEE style files for BibLaTeX +relocated 1 +longdesc This is a BibLaTeX style that implements the bibliography style +longdesc of the IEEE for BibLaTeX. The implementation follows standard +longdesc BibLaTeX conventions, and can be used simply by loading +longdesc BibLaTeX with the appropriate option: +longdesc \usepackage[style=ieee]{biblatex} A demonstration database is +longdesc provided to show how to format input for the style. +longdesc biblatex-ieee requires BibLaTeX 2.7 or later, and works with +longdesc both BibTeX and Biber as the database back-end. +containersize 5416 +containerchecksum 2348c59f6b68e7846f3da93ef008f856b899173281281a1d061f5d98bad3c2b18216987e4aa366c2a2bf9f53f6daa6b29aeca202ff385058676572b8f3702317 +doccontainersize 558076 +doccontainerchecksum 70efd20bcdc08f1872242e77a389c207e048921b9a9741e11c4e81298fec1ff1a2c724e0485da5e3adf218ddc5171930170f9e4bf6e2503088a1fce5287403fe +docfiles size=174 + RELOC/doc/latex/biblatex-ieee/README.md details="Readme" + RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.pdf + RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.tex + RELOC/doc/latex/biblatex-ieee/biblatex-ieee.bib + RELOC/doc/latex/biblatex-ieee/biblatex-ieee.pdf details="Package documentation" + RELOC/doc/latex/biblatex-ieee/biblatex-ieee.tex +runfiles size=9 + RELOC/tex/latex/biblatex-ieee/ieee-alphabetic.bbx + RELOC/tex/latex/biblatex-ieee/ieee-alphabetic.cbx + RELOC/tex/latex/biblatex-ieee/ieee.bbx + 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-license lppl1.3c +catalogue-topics biblatex journalpub +catalogue-version 1.3e + +name biblatex-ijsra +category Package +revision 41634 +shortdesc BibLaTeX style for the International Journal of Student Research in Archaeology +relocated 1 +longdesc BibLaTeX style used for the journal International Journal of +longdesc Student Research in Archaeology. +containersize 1332 +containerchecksum 040efc5b43e2642251921bcc49db1ae2e00342100d302bca24e2b7b11d1724797f1fe7aa254d01b35d1dfa316f2b0f739664f275031c498b157bb652c6aaef44 +doccontainersize 49096 +doccontainerchecksum 36cef635b4603606d36f13b489320e10fad48869b8cdbe78d6f81ca9f3caee0f3e14e408236b1f18e6c7cbf3cd414ed8eb2863058b31e761b4355c6ff1230dd3 +docfiles size=16 + RELOC/doc/latex/biblatex-ijsra/README.md details="Readme" + RELOC/doc/latex/biblatex-ijsra/biblatex-ijsra.pdf details="Package documentation" + RELOC/doc/latex/biblatex-ijsra/biblatex-ijsra.tex +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-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 0.1 + +name biblatex-iso690 +category Package +revision 54561 +shortdesc BibLaTeX style for ISO 690 standard +relocated 1 +longdesc The package provides a bibliography and citation style which +longdesc conforms to the latest revision of the international standard +longdesc ISO 690:2010. The implementation follows BibLaTeX conventions +longdesc and requires BibLaTeX [?] 3.4 and biber [?] 2.5. +containersize 11528 +containerchecksum 70469c6baf7e9f644e9a012d48bae8d7904cd53c883f5238f42c20ee904c11df2381a5721d77ccebe23303975632321e276ef7eac158f4ee1f8d897de41faf2f +doccontainersize 271516 +doccontainerchecksum a9012321245247b6c4331312dc3e371bfda7e70e500b1296b092a12343dd270551496b9787c90ff935c50fcfb4ed2a3b6dcdc5dd722b7ddebda316ecbe9719ac +docfiles size=78 + RELOC/doc/latex/biblatex-iso690/README.md details="Readme" + RELOC/doc/latex/biblatex-iso690/biblatex-iso690.pdf details="Package documentation" + RELOC/doc/latex/biblatex-iso690/biblatex-iso690.tex + RELOC/doc/latex/biblatex-iso690/mybib.bib +runfiles size=31 + RELOC/tex/latex/biblatex-iso690/bulgarian-iso.lbx + RELOC/tex/latex/biblatex-iso690/czech-iso.lbx + RELOC/tex/latex/biblatex-iso690/english-iso.lbx + RELOC/tex/latex/biblatex-iso690/french-iso.lbx + RELOC/tex/latex/biblatex-iso690/german-iso.lbx + RELOC/tex/latex/biblatex-iso690/iso-alphabetic.bbx + RELOC/tex/latex/biblatex-iso690/iso-alphabetic.cbx + RELOC/tex/latex/biblatex-iso690/iso-alphabetic.dbx + RELOC/tex/latex/biblatex-iso690/iso-authortitle.bbx + RELOC/tex/latex/biblatex-iso690/iso-authortitle.cbx + RELOC/tex/latex/biblatex-iso690/iso-authortitle.dbx + RELOC/tex/latex/biblatex-iso690/iso-authoryear.bbx + RELOC/tex/latex/biblatex-iso690/iso-authoryear.cbx + RELOC/tex/latex/biblatex-iso690/iso-authoryear.dbx + RELOC/tex/latex/biblatex-iso690/iso-fullcite.cbx + RELOC/tex/latex/biblatex-iso690/iso-numeric.bbx + RELOC/tex/latex/biblatex-iso690/iso-numeric.cbx + RELOC/tex/latex/biblatex-iso690/iso-numeric.dbx + RELOC/tex/latex/biblatex-iso690/iso.bbx + RELOC/tex/latex/biblatex-iso690/polish-iso.lbx + RELOC/tex/latex/biblatex-iso690/slovak-iso.lbx +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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 0.4 + +name biblatex-jura2 +category Package +revision 56133 +shortdesc Citation style for the German legal profession +relocated 1 +longdesc The package offers BibLaTeX support for citations in German +longdesc legal texts. This is a style that, unlike other styles in 2019, +longdesc actually works with modern TeX distributions. +containersize 4448 +containerchecksum f3714f1348624129cd2342dafc622c8170085c2210012f7e4580d3dfbfd79a4c695f5888868a79412712818c709d5fa76deb6838303d6e5321f7f4932ce29f4c +doccontainersize 370720 +doccontainerchecksum 40adafe11ded9b2f339c4417ebba767a1571b58b052fe7712082a9ce1147d0d2af9f84736c11d36c1eedc3b7c07b004fbd9ed2a8e08f02520bf0ad2024146ead +docfiles size=103 + RELOC/doc/latex/biblatex-jura2/README.md details="Readme" + RELOC/doc/latex/biblatex-jura2/biblatex-jura2.tex + RELOC/doc/latex/biblatex-jura2/biblatex_jura2.pdf details="Package documentation" language="de" + RELOC/doc/latex/biblatex-jura2/mylit.bib +runfiles size=5 + RELOC/tex/latex/biblatex-jura2/jura2.bbx + RELOC/tex/latex/biblatex-jura2/jura2.cbx +catalogue-also biblatex-jura biblatex-juradiss +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-jura2 +catalogue-license lppl1.3c +catalogue-topics legal biblatex +catalogue-version 0.4 + +name biblatex-juradiss +category Package +revision 56502 +shortdesc BibLaTeX stylefiles for German law theses +relocated 1 +longdesc The package provides a custom citation-style for typesetting a +longdesc German law thesis with LaTeX. The package (using BibLaTeX) is +longdesc based on biblatex-dw and uses biber. +containersize 6200 +containerchecksum 6f78c1da8426508af972a27b6a23439a3b84c402e6df2494b333111cfddcebbbce639a49c8e900cf52b0e63724a41031b4fee82e0a17f07b479584bb66c809d8 +doccontainersize 130900 +doccontainerchecksum 94bbebfa29a491fa6e502e55236605b5a589c24920d235cbecb8c9372d1e580d586f643537a5ed6afbe6d1656f0d5ee8610cd09e3112a9e2fcd00581937016c8 +docfiles size=42 + RELOC/doc/latex/biblatex-juradiss/Changes + RELOC/doc/latex/biblatex-juradiss/README details="Readme" + RELOC/doc/latex/biblatex-juradiss/biblatex-juradiss.pdf details="Package documentation" + RELOC/doc/latex/biblatex-juradiss/biblatex-juradiss.tex +runfiles size=9 + RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.bbx + RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.cbx + RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.dbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-juradiss +catalogue-license lppl +catalogue-topics legal dissertation biblatex +catalogue-version 0.23 + +name biblatex-license +category Package +revision 58437 +shortdesc Add license data to the bibliography +relocated 1 +longdesc This package is for adding license data to bibliography entries +longdesc via BibLaTeX's built-in related mechanism. It provides a new +longdesc relatedtype license and some bibmacros for typesetting these +longdesc related entries. +containersize 1776 +containerchecksum f655338605eb7257b2746a73e4f29d58912addeb65a272b3135cd45b32035a58c0f9c9556dc9ffabc34ca8c3b00b4d8c4f44da6654d794dea3bc2a94b986bdae +doccontainersize 231140 +doccontainerchecksum 8638454c5014f7df6c82edaf028872acd6f6a135389919178e50bb660236e63a299483f3ef4e83476e399e2cff71f1563e4a2fd111c1d18aac20273b3abbd744 +docfiles size=59 + RELOC/doc/latex/biblatex-license/README.md details="Readme" + RELOC/doc/latex/biblatex-license/biblatex-license.pdf details="Package documentation" + RELOC/doc/latex/biblatex-license/biblatex-license.tex +runfiles size=2 + RELOC/tex/latex/biblatex-license/biblatex-license.sty +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-license +catalogue-license lppl1.3c +catalogue-topics licence-mgmt biblatex +catalogue-version 0.1 + +name biblatex-lni +category Package +revision 49935 +shortdesc LNI style for BibLaTeX +relocated 1 +longdesc BibLaTeX style for the Lecture Notes in Informatics, which is +longdesc published by the Gesellschaft fur Informatik (GI e.V.). +containersize 2904 +containerchecksum 9089117cc653cb9251622299b20d79525ae9623661de402732c9b9f47b2b296cc0b756bda279487f5d042316693ac624b18352dcfd04e6cec436a402b9bbba57 +doccontainersize 9700 +doccontainerchecksum 23435bb5cdcc7cfaa58d732582e23d3a23589ee064122b231794f17ecd0137e7a4a0e21057835d3925c149d637a7bd12270b4dd05cff6259f103498e0989ac66 +docfiles size=11 + RELOC/doc/latex/biblatex-lni/CHANGELOG.md + RELOC/doc/latex/biblatex-lni/LICENSE + RELOC/doc/latex/biblatex-lni/LNI-examples.bib + RELOC/doc/latex/biblatex-lni/LNI-test-de.tex + RELOC/doc/latex/biblatex-lni/LNI-test-en.tex + RELOC/doc/latex/biblatex-lni/README.md details="Readme" +runfiles size=6 + RELOC/tex/latex/biblatex-lni/LNI-english.lbx + RELOC/tex/latex/biblatex-lni/LNI-ngerman.lbx + RELOC/tex/latex/biblatex-lni/LNI.bbx + RELOC/tex/latex/biblatex-lni/LNI.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-lni +catalogue-license lppl1.3 +catalogue-topics biblatex journalpub +catalogue-version 0.5 + +name biblatex-luh-ipw +category Package +revision 32180 +shortdesc BibLaTeX styles for social sciences +relocated 1 +longdesc The bundle is a small collection of styles for BibLaTeX. It was +longdesc designed for citations in the Humanities, following the +longdesc guidelines of style of the institutes for the social sciences +longdesc of the Leibniz University Hannover/LUH (especially the +longdesc Institute of Political Science). The bundle depends on BibLaTeX +longdesc (version 1.1 at least) and cannot be used without it. +containersize 5372 +containerchecksum e58e2522d9a4711454166c816b971bbf6bab1f8d1c7eea122933c8b7955a49ad294df410fe0a75375134b77d442bd5214ee25d56d766be7e5843e4ac14d7ef5a +doccontainersize 358604 +doccontainerchecksum bbfa55884d3dd3167618f6f9595c301e5faeab0a35cd058cc68922a2aa8362cb3a9d035eaea06ee43c428dd89d23538b15bd4c79c1e095ad10aa4d1d7184f92d +docfiles size=93 + RELOC/doc/latex/biblatex-luh-ipw/README details="Readme" + RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-preamble.tex + RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-print.tex + RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-screen.tex + RELOC/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.tex +runfiles size=11 + RELOC/tex/latex/biblatex-luh-ipw/bbx/authoryear-luh-ipw.bbx + RELOC/tex/latex/biblatex-luh-ipw/bbx/standard-luh-ipw.bbx + RELOC/tex/latex/biblatex-luh-ipw/bbx/verbose-inote-luh-ipw.bbx + RELOC/tex/latex/biblatex-luh-ipw/cbx/authoryear-luh-ipw.cbx + RELOC/tex/latex/biblatex-luh-ipw/cbx/standard-luh-ipw.cbx + RELOC/tex/latex/biblatex-luh-ipw/cbx/verbose-inote-luh-ipw.cbx + 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-license lppl1.3 +catalogue-topics biblatex humanities +catalogue-version 0.3 + +name biblatex-manuscripts-philology +category Package +revision 53344 +shortdesc Manage classical manuscripts with BibLaTeX +relocated 1 +longdesc The package adds a new entry type: @manuscript to manage +longdesc manuscript in classical philology, for example to prepare a +longdesc critical edition. +containersize 4644 +containerchecksum 3677e980482bd1beedafd4120d119d2a73c4c7ae9a3ddef7130572fac5d2388ec4144b0ba74d4d8012fd994262c378226c987472d4d66e323e3b8395b5d3259b +doccontainersize 143492 +doccontainerchecksum da435de87f61045d565199034c5ffb1bf818d31c74309648b1cd78cc80dd1b1274cb008a575dae1bcc6b1987973745e3483e829085438821ef1e4a10fbf157d5 +docfiles size=46 + RELOC/doc/latex/biblatex-manuscripts-philology/README details="Readme" + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology-example.bib + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology-example.pdf details="Example of use" + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology-example.tex + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.pdf details="Package documentation" + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.tex + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/makefile + RELOC/doc/latex/biblatex-manuscripts-philology/makefile +runfiles size=12 + RELOC/tex/latex/biblatex-manuscripts-philology/english-manuscripts.lbx + RELOC/tex/latex/biblatex-manuscripts-philology/french-manuscripts.lbx + RELOC/tex/latex/biblatex-manuscripts-philology/italian-manuscripts.lbx + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-NewBibliographyString.sty + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-noautoshorthand.bbx + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-noautoshorthand.dbx + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-shared.bbx + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-shared.dbx + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts.bbx + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts.dbx +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-license lppl1.3 +catalogue-topics biblatex humanities +catalogue-version 2.1.2 + +name biblatex-mla +category Package +revision 42445 +shortdesc MLA style files for BibLaTeX +relocated 1 +longdesc The package provides BibLaTeX support for citations in the +longdesc format specified by the MLA handbook. +containersize 15540 +containerchecksum b6e3f7b5323e0246c1b2e1ee1c767b624e59d4d1ab9aac4bc24d59c15d1f8228695ccc072b30bbe1f4a2de24fb6eeee3c81095fa572f3e27a09f0de7c5b3994e +doccontainersize 1273944 +doccontainerchecksum 87e9b73615b404f8b676b8a4158edac551f8dd3712e1f6ecaec473789df884c85d6ba48eafad428eebce10ff6f0c13b382fb4e4c79cc960b860565bedf7f935f +docfiles size=420 + RELOC/doc/latex/biblatex-mla/CHANGES + RELOC/doc/latex/biblatex-mla/README details="Readme" + RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.pdf details="Package documentation" + RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.tex + RELOC/doc/latex/biblatex-mla/doc/citation-examples-new.pdf + RELOC/doc/latex/biblatex-mla/doc/citation-examples-new.tex + RELOC/doc/latex/biblatex-mla/doc/citation-examples.pdf + RELOC/doc/latex/biblatex-mla/doc/citation-examples.tex + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib-new.pdf + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib-new.tex + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib.pdf + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib.tex + RELOC/doc/latex/biblatex-mla/doc/handbooksamples-new.bib + RELOC/doc/latex/biblatex-mla/doc/handbooksamples.bib + RELOC/doc/latex/biblatex-mla/doc/samples.bib +runfiles size=44 + RELOC/tex/latex/biblatex-mla/american-mla.lbx + RELOC/tex/latex/biblatex-mla/english-mla.lbx + RELOC/tex/latex/biblatex-mla/italian-mla.lbx + RELOC/tex/latex/biblatex-mla/mla-new.bbx + RELOC/tex/latex/biblatex-mla/mla-new.cbx + RELOC/tex/latex/biblatex-mla/mla.bbx + RELOC/tex/latex/biblatex-mla/mla.cbx + 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-license lppl +catalogue-topics linguistic journalpub biblatex +catalogue-version 1.9 + +name biblatex-morenames +category Package +revision 43049 +shortdesc New names for standard BibLaTeX entry type +relocated 1 +longdesc This package adds new fields of "name" type to the standard +longdesc entry types of BibLaTeX. For example: maineditor, for a +longdesc @collection, means the editor of @mvcollection, and not the +longdesc editor of the @collection. bookineditor, for a @bookinbook, +longdesc means the editor of the entry, and not, as the standard editor +longdesc field, the editor of the volume in which the entry is +longdesc contained. +containersize 2448 +containerchecksum 7e847faa586655aa7b3c92d9379540b2f5e78fb50843e36416e21552c6a9e810945f5b60a96a14c35570bd0403ac29a43af29bd46e2ecb0d87e3c6ac90345826 +doccontainersize 134744 +doccontainerchecksum c30953fabfd4717c56cc818e55f83995ceb203bfd67775aced3fe8f1f4f4a92b118ed9c40665ea28944806cb2d409a541f59df530e37274e3bc3babfbe55713a +docfiles size=64 + RELOC/doc/latex/biblatex-morenames/README details="Readme" + RELOC/doc/latex/biblatex-morenames/documentation/biblatex-morenames.pdf details="Package documentation" + RELOC/doc/latex/biblatex-morenames/documentation/biblatex-morenames.tex + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor-BookineditorFromEditor.bib + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor-BookineditorFromEditor.dot + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor-BookineditorFromEditor.pdf + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor.bib + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor.dot + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor.pdf details="Example of use" + RELOC/doc/latex/biblatex-morenames/documentation/example-maineditor.bib + RELOC/doc/latex/biblatex-morenames/documentation/example-maineditor.dot + RELOC/doc/latex/biblatex-morenames/documentation/example-maineditor.pdf details="Example of use" + RELOC/doc/latex/biblatex-morenames/documentation/generate-crossref-graphs.py + RELOC/doc/latex/biblatex-morenames/documentation/latexmkrc + RELOC/doc/latex/biblatex-morenames/documentation/makefile + RELOC/doc/latex/biblatex-morenames/makefile +runfiles size=3 + RELOC/tex/latex/biblatex-morenames/morenames.bbx + 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-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 1.3.1 + +name biblatex-multiple-dm +category Package +revision 37081 +shortdesc Load multiple datamodels in BibLaTeX +relocated 1 +longdesc The package adds the possibility to BibLaTeX to load data +longdesc models from multiple sources. +containersize 1088 +containerchecksum 9f83220ae7f2576b4f58394634dea831e5759bf6560ede3244ffb9d18fbf522e9c728c47a4184a43c2dcf6807481a964d7e468e4e6cb921129440bf917925a8f +doccontainersize 54860 +doccontainerchecksum f33e650b2faac0c7b9d078f0f4fd9da8a58562c6a9a8b13acbb4b23001d2ecdde105c08b6b6e62f138783d61f3e071f8780afee2f170c134c275ae62ca5a597a +docfiles size=18 + RELOC/doc/latex/biblatex-multiple-dm/README details="Readme" + RELOC/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.pdf details="Package documentation" + RELOC/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.tex + RELOC/doc/latex/biblatex-multiple-dm/latexmkrc + RELOC/doc/latex/biblatex-multiple-dm/makefile +runfiles size=3 + RELOC/tex/latex/biblatex-multiple-dm/biblatex-multiple-dm.sty + 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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.0.1 + +name biblatex-musuos +category Package +revision 24097 +shortdesc A BibLaTeX style for citations in musuos.cls +relocated 1 +longdesc The style is designed for use with the musuos class, but it +longdesc should be usable with other classes, too. +containersize 3796 +containerchecksum 129d1c12bc0e4e8fd339f7bc37442947dc492700a721933c9dda0b18edf78a9b402884376cb7d80893a06834f70a5d377fd264813cdf869ce5e40667f296d618 +doccontainersize 424364 +doccontainerchecksum d2fc62bb25394195a161e47ba116f2e795e6009b5f547d09cae2e21cc0f8171c610013622c2a019438e04b6c089d17c21333e3c70b8faeb09f90113cca9536c4 +docfiles size=109 + RELOC/doc/latex/biblatex-musuos/README details="Readme" + RELOC/doc/latex/biblatex-musuos/biblatex-musuos.pdf details="Package documentation" + RELOC/doc/latex/biblatex-musuos/biblatex-musuos.tex + RELOC/doc/latex/biblatex-musuos/musuos-bsp.bib +runfiles size=5 + RELOC/tex/latex/biblatex-musuos/german-musuos.lbx + RELOC/tex/latex/biblatex-musuos/musuos.bbx + RELOC/tex/latex/biblatex-musuos/musuos.cbx +catalogue-also musuos +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-musuos +catalogue-license lppl +catalogue-topics biblatex music +catalogue-version 1.0 + +name biblatex-nature +category Package +revision 57262 +shortdesc BibLaTeX support for Nature +relocated 1 +longdesc The bundle offers styles that allow authors to use BibLaTeX +longdesc when preparing papers for submission to the journal Nature. +containersize 3256 +containerchecksum b4b12abe904d96c9489dbdf248042ed1f1af1474921e0835027220059492f2441aace661260fa3632a65bb2c1ec0ab4e521014e63a14f7fb835293fd8191c2fe +doccontainersize 385524 +doccontainerchecksum c5169189b1225dba8631a0f7f5ceb5bdb5267888b2817716e23aa79bd4516665965b4343ed5e1a8e5099eb59ca64cea9edbd31613f7cb02f161b8ba561c6d4e5 +docfiles size=100 + RELOC/doc/latex/biblatex-nature/README.md details="Readme" + RELOC/doc/latex/biblatex-nature/biblatex-nature.bib + RELOC/doc/latex/biblatex-nature/biblatex-nature.pdf details="Examples of use" + RELOC/doc/latex/biblatex-nature/biblatex-nature.tex +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-license lppl1.3c +catalogue-topics biblatex journalpub +catalogue-version 1.3d + +name biblatex-nejm +category Package +revision 49839 +shortdesc BibLaTeX style for the New England Journal of Medicine (NEJM) +relocated 1 +longdesc This is a BibLaTeX numeric style based on the design of the New +longdesc England Journal of Medicine (NEJM). +containersize 2036 +containerchecksum 97443b036769ffe3487cefa6cb5647eadfb8cdb20db0f6607028298b196a0df1ddf1fdee85e3f163a138da47f28019ab32147f65a5f7cb23b46596c96a772799 +doccontainersize 156060 +doccontainerchecksum bfcf854e7545237dab17bfe3cd2045a1914397a02e5fa31bde2bce8c0e44c474fe0389e2cb8cd59516f4db9a3b538524f8321723a49c41233de637075bb41720 +docfiles size=42 + RELOC/doc/latex/biblatex-nejm/README details="Readme" + RELOC/doc/latex/biblatex-nejm/biblatex-nejm.pdf details="Package documentation" + RELOC/doc/latex/biblatex-nejm/biblatex-nejm.tex +srccontainersize 508 +srccontainerchecksum 7a2cd3e8205c9b081e9a9601240dffd3943eef31cab5339de92be61fd023f3889958292ba8698760e8d8e6cf196f306b76e34c677d6aa2074271d11cbd78f799 +srcfiles size=1 + RELOC/source/latex/biblatex-nejm/Makefile +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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 0.5.0 + +name biblatex-nottsclassic +category Package +revision 41596 +shortdesc Citation style for the University of Nottingham +relocated 1 +longdesc This citation-style covers the citation and bibliography rules +longdesc of the University of Nottingham. +containersize 3056 +containerchecksum a0da4bac443dcbc2c0d8b97d4eed21c171e876cdaee3699a0652c905088056802bc12e1f16965b6b2063e1ca0dee808f5f5e9fd9e5f6da7f956548fd5bf0b222 +doccontainersize 110820 +doccontainerchecksum d0b6de2439ff0698b14781deecd260d5851b44da80a10827e0b0bf5ff21ddbe46b979dae9afe988ec1520387668a802a777fba28a830b0e0a7ce60988bfe375a +docfiles size=33 + RELOC/doc/latex/biblatex-nottsclassic/README.md details="Readme" + RELOC/doc/latex/biblatex-nottsclassic/nottsclassic.pdf details="Package documentation" + RELOC/doc/latex/biblatex-nottsclassic/nottsclassic.tex +runfiles size=4 + RELOC/tex/latex/biblatex-nottsclassic/nottsclassic-english.lbx + RELOC/tex/latex/biblatex-nottsclassic/nottsclassic.bbx + RELOC/tex/latex/biblatex-nottsclassic/nottsclassic.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nottsclassic +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 0.1 + +name biblatex-opcit-booktitle +category Package +revision 48983 +shortdesc Use op. cit. for the booktitle of a subentry +relocated 1 +longdesc The default citation styles verbose-trad1+; verbose-trad2 ; +longdesc verbose-trad3 use the op. cit. form in order to have a shorter +longdesc reference when a title has already been cited. However, when +longdesc you cite two entries which share the same booktitle but not the +longdesc same title, the op. cit. mechanism does not work. This package +longdesc enables to obtain references like this: Author1, Title, in +longdesc Booktitle, Location, Publisher, Year, pages xxx Author2, +longdesc Title2, in Booktitle, op. cit, pages. +containersize 2788 +containerchecksum 4779618979e358380b2d9d2163a8e62274093bc4e7d7a959364b1980d86110233f3927a80e2dac7390ec43d0626f92311d5923657872d25bdcab5d93dd84956a +doccontainersize 109536 +doccontainerchecksum 81990177b6cb92dde0e2d1371fa6e5ad6685c9750eac87063e336fd3412b46eca40e091bf2222631f6abcef995fd04c82a3cfd3f87baa2b069c74457edf7f13a +docfiles size=36 + RELOC/doc/latex/biblatex-opcit-booktitle/README details="Readme" + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.bib + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.pdf + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.tex + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf details="Package documentation" + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.tex + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/latexmkrc + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/makefile + RELOC/doc/latex/biblatex-opcit-booktitle/makefile +runfiles size=3 + RELOC/tex/latex/biblatex-opcit-booktitle/biblatex-opcit-booktitle.sty +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-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 1.9.0 + +name biblatex-oxref +category Package +revision 57513 +shortdesc BibLaTeX styles inspired by the Oxford Guide to Style +relocated 1 +longdesc This bundle provides four BibLaTeX styles that implement (many +longdesc of) the stipulations and examples provided by the 2014 New +longdesc Hart's Rules and the 2002 Oxford Guide to Style: 'oxnotes' is a +longdesc style similar to the standard 'verbose', intended for use with +longdesc footnotes; 'oxnum' is a style similar to the standard +longdesc 'numeric', intended for use with numeric in-text citations; +longdesc 'oxalph' is a style similar to the standard 'alphabetic', +longdesc intended for use with alphabetic in-text citations; 'oxyear' is +longdesc a style similar to the standard 'author-year', intended for use +longdesc with parenthetical in-text citations. The bundle provides +longdesc support for a wide variety of content types, including +longdesc manuscripts, audiovisual resources, social media and legal +longdesc references. +containersize 22460 +containerchecksum 77451258efdd72939a8548452c28b442250db97a4d9b88e59c463036ca0ff32b9153f87b870f7b0ebe490631e87863a979fde7b75fe11993bb2a06ee949c104a +doccontainersize 1945172 +doccontainerchecksum 3b01e5eefbd78025442150f94de4d87959449b8eb77ee94458eb3eb4edb36fe4c1ae7c9a3320b3165122f0adbb2dd850e09e80619d78069e69d7fde3d8c9f192 +docfiles size=740 + RELOC/doc/latex/biblatex-oxref/README.md details="Readme" + RELOC/doc/latex/biblatex-oxref/oxalph-doc.pdf details="Style documentation for oxalph" + RELOC/doc/latex/biblatex-oxref/oxalph-doc.tex + RELOC/doc/latex/biblatex-oxref/oxnotes-doc.pdf details="Style documentation for oxnotes" + RELOC/doc/latex/biblatex-oxref/oxnotes-doc.tex + RELOC/doc/latex/biblatex-oxref/oxnum-doc.pdf details="Style documentation for oxnum" + RELOC/doc/latex/biblatex-oxref/oxnum-doc.tex + RELOC/doc/latex/biblatex-oxref/oxref.bib + RELOC/doc/latex/biblatex-oxref/oxref.pdf details="Package documentation" + RELOC/doc/latex/biblatex-oxref/oxyear-doc.pdf details="Style documentation for oxyear" + RELOC/doc/latex/biblatex-oxref/oxyear-doc.tex +srccontainersize 87044 +srccontainerchecksum 7d7bc8d02dc4e03e76d4b67a06d41a450b818d0675c2ab710e9305d13cb922bd23663c77e8e9dda9fd27b28e7b331dad15a22c6bfb94cc33e13b36ccd979331b +srcfiles size=118 + RELOC/source/latex/biblatex-oxref/Makefile + RELOC/source/latex/biblatex-oxref/oxref.dtx + RELOC/source/latex/biblatex-oxref/oxref.ins +runfiles size=72 + RELOC/tex/latex/biblatex-oxref/american-oxref.lbx + RELOC/tex/latex/biblatex-oxref/british-oxref.lbx + RELOC/tex/latex/biblatex-oxref/english-oxref.lbx + RELOC/tex/latex/biblatex-oxref/oxalph.bbx + RELOC/tex/latex/biblatex-oxref/oxalph.cbx + RELOC/tex/latex/biblatex-oxref/oxalph.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-ibid.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-ibid.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-ibid.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-inote.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-inote.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-inote.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-note.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-note.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-note.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad1.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad1.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad1.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad2.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad2.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad2.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad3.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad3.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad3.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes.dbx + RELOC/tex/latex/biblatex-oxref/oxnum.bbx + RELOC/tex/latex/biblatex-oxref/oxnum.cbx + RELOC/tex/latex/biblatex-oxref/oxnum.dbx + RELOC/tex/latex/biblatex-oxref/oxref.bbx + RELOC/tex/latex/biblatex-oxref/oxyear.bbx + RELOC/tex/latex/biblatex-oxref/oxyear.cbx + RELOC/tex/latex/biblatex-oxref/oxyear.dbx +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-license lppl1.3c +catalogue-topics biblatex +catalogue-version 2.2 + +name biblatex-philosophy +category Package +revision 58925 +shortdesc Styles for using BibLaTeX for work in philosophy +relocated 1 +longdesc The bundle offers two styles - philosophy-classic and +longdesc philosophy-modern - that facilitate the production of two +longdesc different kinds of bibliography, based on the authoryear style, +longdesc with options and features to manage the information about the +longdesc translation of foreign texts or their reprints. Though the +longdesc package's default settings are based on the conventions used in +longdesc Italian publications, these styles can be used with every +longdesc language recognized by babel, possibly with some simple +longdesc redefinitions. +containersize 12804 +containerchecksum a1ed93c8434a5d7bde6d780e94f1efdf3f08c61909cc158b37b453cd6b9267afaf7b01e93c12ea8a8b403e4c7be563673b6495803af087a99f7aec97162409df +doccontainersize 538648 +doccontainerchecksum 3c53b4db24803c587475b1e95e3a7a9b8bba3cb6a9bb071591cc3216d5e473ab0f3d8ae4dfe4220d8b7604e18567d8f7d3c9d3abd727de8af0340f8e88b3059b +docfiles size=136 + RELOC/doc/latex/biblatex-philosophy/README details="Readme" + RELOC/doc/latex/biblatex-philosophy/biblatex-philosophy.pdf details="Package documentation" + RELOC/doc/latex/biblatex-philosophy/examples.zip +srccontainersize 40052 +srccontainerchecksum 7f2079060a3bbc740e1e3edd6c86f0a81dcc8500934023a13424e43e6b46c3a08331a74a1878bf1636ae0a4df099b1cd8887e0b00d384ad521433cdaf99fd557 +srcfiles size=60 + RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.bib + RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.dtx +runfiles size=33 + RELOC/tex/latex/biblatex-philosophy/english-philosophy.lbx + RELOC/tex/latex/biblatex-philosophy/french-philosophy.lbx + RELOC/tex/latex/biblatex-philosophy/italian-philosophy.lbx + RELOC/tex/latex/biblatex-philosophy/philosophy-classic.bbx + RELOC/tex/latex/biblatex-philosophy/philosophy-classic.cbx + RELOC/tex/latex/biblatex-philosophy/philosophy-modern.bbx + RELOC/tex/latex/biblatex-philosophy/philosophy-modern.cbx + RELOC/tex/latex/biblatex-philosophy/philosophy-standard.bbx + RELOC/tex/latex/biblatex-philosophy/philosophy-verbose.bbx + 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-license lppl1.3 +catalogue-topics humanities philosophy biblatex +catalogue-version 1.9.8d + +name biblatex-phys +category Package +revision 55643 +shortdesc A BibLaTeX implementation of the AIP and APS bibliography style +relocated 1 +longdesc The package provides an implementation of the bibliography +longdesc styles of both the AIP and the APS for BibLaTeX. This +longdesc implementation follows standard BibLaTeX conventions, and can +longdesc be used simply by loading BibLaTeX with the appropriate option: +longdesc \usepackage[style=phys]{biblatex} A demonstration database is +longdesc provided to show how to format input for the style. Style +longdesc options are provided to cover the minor formatting variations +longdesc between the AIP and APS bibliography styles. +containersize 3420 +containerchecksum 76a37bc2d37e2813dc39b9b21cf38788e6da14e60222e4fb36aa90e5c933c18adfcbc1c8affcf9a8e70df14d516a4827599b2c5979828e7e28b77b7b3021329d +doccontainersize 456536 +doccontainerchecksum 62fe809519f86ad46136c18247b5c440766778b61d1d406df302aec76756a2259f06ae175af2267de30c1347db511f9482503326c28e1d382039d5047a75a961 +docfiles size=118 + RELOC/doc/latex/biblatex-phys/README.md details="Readme" + RELOC/doc/latex/biblatex-phys/biblatex-phys.bib + RELOC/doc/latex/biblatex-phys/biblatex-phys.pdf details="Package documentation" + RELOC/doc/latex/biblatex-phys/biblatex-phys.tex +runfiles size=6 + RELOC/tex/latex/biblatex-phys/phys.bbx + RELOC/tex/latex/biblatex-phys/phys.cbx + RELOC/tex/latex/biblatex-phys/phys.dbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-phys +catalogue-license lppl1.3 +catalogue-topics physics biblatex +catalogue-version 1.1b + +name biblatex-publist +category Package +revision 56392 +shortdesc BibLaTeX bibliography support for publication lists +relocated 1 +longdesc The package provides a BibLaTeX bibliography style file (*.bbx) +longdesc for publication lists. The style file draws on BibLaTeX's +longdesc authoryear style, but provides some extra features often +longdesc desired for publication lists, such as the omission of the +longdesc author's own name from author or editor data. At least version +longdesc 3.4 of biblatex is required. +containersize 8512 +containerchecksum dff83dc4b8ed279e2b5ad3a0d8e995500df08f3f21c72853ccf392624e40a20e058d06310fdb1384cf2bab319e93c9004cf7641a212aabeed21e31e50bd76934 +doccontainersize 374352 +doccontainerchecksum a5dc972074b40eb402076bcbc570ca36470a856317f7618643b8281f0b7bb8ab1b58c4ef7fa1141cde6b5ea5ab98c179ad9607b621eb43b52d172bb2e730a4b9 +docfiles size=101 + RELOC/doc/latex/biblatex-publist/README details="Readme" + RELOC/doc/latex/biblatex-publist/biblatex-publist.pdf details="Package documentation" + RELOC/doc/latex/biblatex-publist/biblatex-publist.tex +runfiles size=12 + RELOC/tex/latex/biblatex-publist/publist.bbx + RELOC/tex/latex/biblatex-publist/publist.cbx +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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.21 + +name biblatex-realauthor +category Package +revision 45865 +shortdesc Indicate the real author of a work +relocated 1 +longdesc This package allows to use a new field "realauthor", which +longdesc indicates the real author of a work, when published in a +longdesc pseudepigraphic name. +containersize 2484 +containerchecksum dec592d3f16a431286f7887af863664d777e09e5784a53e9b99247e3bae86c7928907135980d27614e52ab6bd1f1f59a3e8633ecde05d3f9b84b97c84ccefa23 +doccontainersize 93700 +doccontainerchecksum bf0ed482905bfcf9bf5a8eda61f609037316012aa2992796c57d48b5f5ccac496dd372ef5e8c88262c8bc5b2d543cbf5f6aba8ff1833a99db6929dfbf379d2cc +docfiles size=31 + RELOC/doc/latex/biblatex-realauthor/README details="Readme" + RELOC/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf details="Package documentation" + RELOC/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex + RELOC/doc/latex/biblatex-realauthor/documentation/example-realauthor.bib + RELOC/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf details="Example of use" + RELOC/doc/latex/biblatex-realauthor/documentation/example-realauthor.tex + RELOC/doc/latex/biblatex-realauthor/documentation/makefile + RELOC/doc/latex/biblatex-realauthor/makefile +runfiles size=4 + RELOC/tex/latex/biblatex-realauthor/realauthor.bbx + RELOC/tex/latex/biblatex-realauthor/realauthor.dbx +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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 2.7.1a + +name biblatex-sbl +category Package +revision 56853 +shortdesc Society of Biblical Literature (SBL) style files for BibLaTeX +relocated 1 +longdesc The package provides BibLaTeX support for citations in the +longdesc format specified by the second edition of the Society of +longdesc Biblical Literature (SBL) Handbook of Style. All example notes +longdesc and bibliography entries from the handbook are supported and +longdesc shown in an example file. A style file for writing SBL student +longdesc papers is also included. +containersize 20984 +containerchecksum b13fc1b54270fd7b79c3dc71388152b9dd81ee868ce382063fef690c828dcac8a11127dc3cb1c02b138a16d17dd5a5e311d8639efaf8f84e50aac4de6cebcc93 +doccontainersize 661728 +doccontainerchecksum 815f16ab2f6edc7767fc1bd95f4e792c435e605ddb777e65ed54f66f8cea4e15b6cb80938276b1fa30184a498e628d32e2c226d97b7afa99b6022c6f6eb2522b +docfiles size=203 + RELOC/doc/latex/biblatex-sbl/README.md details="Readme" + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-examples.pdf + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-examples.tex + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-ibid.pdf + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-ibid.tex + RELOC/doc/latex/biblatex-sbl/biblatex-sbl.bib + RELOC/doc/latex/biblatex-sbl/biblatex-sbl.pdf details="Package documentation" + RELOC/doc/latex/biblatex-sbl/biblatex-sbl.tex + RELOC/doc/latex/biblatex-sbl/sbl-paper.pdf + RELOC/doc/latex/biblatex-sbl/sbl-paper.tex +runfiles size=42 + RELOC/makeindex/biblatex-sbl/sbl-paper-bibleref.ist + RELOC/tex/latex/biblatex-sbl/american-sbl.lbx + RELOC/tex/latex/biblatex-sbl/biblatex-sbl.def + RELOC/tex/latex/biblatex-sbl/english-sbl.lbx + RELOC/tex/latex/biblatex-sbl/german-sbl.lbx + RELOC/tex/latex/biblatex-sbl/sbl-paper.sty + RELOC/tex/latex/biblatex-sbl/sbl.bbx + RELOC/tex/latex/biblatex-sbl/sbl.cbx + RELOC/tex/latex/biblatex-sbl/sbl.dbx + RELOC/tex/latex/biblatex-sbl/spanish-sbl.lbx +catalogue-contact-bugs https://github.com/dcpurton/biblatex-sbl/issues +catalogue-contact-repository https://github.com/dcpurton/biblatex-sbl +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-sbl +catalogue-license lppl1.3 +catalogue-topics biblatex theology +catalogue-version 0.12 + +name biblatex-science +category Package +revision 48945 +shortdesc BibLaTeX implementation of the Science bibliography style +relocated 1 +longdesc The bundle offers styles that allow authors to use BibLaTeX +longdesc when preparing papers for submission to the journal Science. +containersize 2916 +containerchecksum e75dccc1a01975776cf94c17aad531823844085e4fa2ba54ba4f74d77ad193c26238eed602f309760f3057b6fc405fd01ec2a7a20647cd8570889832b1ee6bdb +doccontainersize 356968 +doccontainerchecksum ad7d8fd4e54830d77f0a155a04cd523c5c789745b5da34b8ea1efe59ffd4ee1673045dec58d28b8234993a70061337178cddda2267506366549c2639f6c917b7 +docfiles size=94 + RELOC/doc/latex/biblatex-science/LICENSE.md + RELOC/doc/latex/biblatex-science/README.md details="Readme" + RELOC/doc/latex/biblatex-science/biblatex-science.bib + RELOC/doc/latex/biblatex-science/biblatex-science.pdf details="Package documentation" + RELOC/doc/latex/biblatex-science/biblatex-science.tex +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-license lppl1.3 +catalogue-topics biblatex journalpub +catalogue-version 1.2 + +name biblatex-shortfields +category Package +revision 45858 +shortdesc Use short forms of fields with BibLaTeX +relocated 1 +longdesc The BibLaTeX package provides shortseries and shortjournal +longdesc field, but the default styles don't use them. It also provides +longdesc a mechanism to print the equivalence between short forms of +longdesc fields and long fields (\printbiblist), but this mechanism does +longdesc not allow to mix between different type of short fields, for +longdesc example, between short forms of journal title and short forms +longdesc of series titles. This package provides a solution to these two +longdesc problems: If a shortjournal field is defined, it prints it +longdesc instead of the \journal field. If a shortseries field is +longdesc defined, it prints it instead of the \series field. It provides +longdesc a \printbibshortfields command to print a list of the sort +longdesc forms of the fields. This list also includes the claves defined +longdesc with the biblatex-claves package version 1.2 or later. +containersize 2080 +containerchecksum be9562c2b79e1f01a110708eb6c0de165a9f596bd18ee72dd6c8add0bf380222a31ae12d86ab843083ae3e7f47a608826b985455f4c8501bbe21d4f0a0e15b80 +doccontainersize 81992 +doccontainerchecksum e6e5e6c113ef43a9784f9000637d526f0bc989358d690d4f41be01e1e22abcb33f347421c727c411c2c02f0c11b1c60d54e7fc23180bd6f66c5c46bf29fc1202 +docfiles size=27 + RELOC/doc/latex/biblatex-shortfields/README details="Readme" + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields-example.pdf + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields-example.tex + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields.bib + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields.pdf details="Package documentation" + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields.tex + RELOC/doc/latex/biblatex-shortfields/documentation/latexmkrc + RELOC/doc/latex/biblatex-shortfields/documentation/makefile + RELOC/doc/latex/biblatex-shortfields/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-shortfields/biblatex-shortfields.sty +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-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.0.1 + +name biblatex-socialscienceshuberlin +category Package +revision 47839 +shortdesc BibLaTeX-style for the social sciences at HU Berlin +relocated 1 +longdesc This is a BibLaTeX style for the social sciences at the +longdesc Humboldt-Universitat zu Berlin. +containersize 2112 +containerchecksum f927cccda37e1ab37bd01b49f3247b688ba0186db5b162ab9b73db7be5f83d1b261bcfbf355d575a3905cdfca2421b6b592ae0763d7575957ea382b451fb6099 +doccontainersize 112244 +doccontainerchecksum 30c411b27e50e0f4ac46385a07606846ae3dd744879de257e2f2abec829e5920957d55e970255cc51cb768f3ca0aab629f30d2860e5745c4addf5aac10ecaca3 +docfiles size=33 + RELOC/doc/latex/biblatex-socialscienceshuberlin/README.md details="Readme" + RELOC/doc/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin-examples.bib + RELOC/doc/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.pdf details="Package documentation" + RELOC/doc/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.tex +runfiles size=4 + RELOC/tex/latex/biblatex-socialscienceshuberlin/german-socialscienceshuberlin.lbx + RELOC/tex/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.bbx + RELOC/tex/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.cbx +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-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 0.0.1 + +name biblatex-software +category Package +revision 57366 +shortdesc BibLaTeX stylefiles for software products +relocated 1 +longdesc This package implements software entry types for BibLaTeX in +longdesc the form of a bibliography style extension. It requires the +longdesc Biber backend. +containersize 3424 +containerchecksum 25c2a7ebf41761d3b2b7b2dce0f754073d8808b6bf7bd413fbb10aedc465de543431fb297914236c51546b362b9215423e94f9464c5e071d24c6f7b9064e6b1d +doccontainersize 312212 +doccontainerchecksum 5b9671e77ed59b57724a7682ad3b23f7403d4fbc31387443e5adcc170f3aac4ea288454263c091ef71530f3ae7c5b458e48065de9c7f66182b036a9db9119ed9 +docfiles size=92 + RELOC/doc/latex/biblatex-software/LICENSE + RELOC/doc/latex/biblatex-software/README.md details="Readme" + RELOC/doc/latex/biblatex-software/biblio.bib + RELOC/doc/latex/biblatex-software/history.tex + RELOC/doc/latex/biblatex-software/manual.bib + RELOC/doc/latex/biblatex-software/mkbiblatexstubs.sh + RELOC/doc/latex/biblatex-software/sample-content.tex + RELOC/doc/latex/biblatex-software/sample-use-sty.pdf details="Sample of Use" + RELOC/doc/latex/biblatex-software/sample-use-sty.tex + RELOC/doc/latex/biblatex-software/sample.tex + RELOC/doc/latex/biblatex-software/software-biblatex.pdf details="Package documentation" + RELOC/doc/latex/biblatex-software/software-biblatex.tex + RELOC/doc/latex/biblatex-software/stublist + RELOC/doc/latex/biblatex-software/swentries.tex +srccontainersize 1160 +srccontainerchecksum e3ed4c9292271223c084bb66913a6c4c7a27774cf2590e63820a40efe36cfb53e452e45d5b2d0d73390a42d51c38a51a84f8894d24685026731dfe6e34b6f6ce +srcfiles size=1 + RELOC/source/latex/biblatex-software/Makefile +runfiles size=7 + RELOC/tex/latex/biblatex-software/english-software.lbx + RELOC/tex/latex/biblatex-software/french-software.lbx + RELOC/tex/latex/biblatex-software/software-biblatex.sty + RELOC/tex/latex/biblatex-software/software.bbx + RELOC/tex/latex/biblatex-software/software.dbx +catalogue-contact-bugs https://gitlab.inria.fr/gt-sw-citation/bibtex-sw-entry/issues +catalogue-contact-repository https://gitlab.inria.fr/gt-sw-citation/bibtex-sw-entry +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-software +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.2-3 + +name biblatex-source-division +category Package +revision 45379 +shortdesc References by "division" in classical sources +relocated 1 +longdesc The package enables the user to make reference to "division +longdesc marks" (such as book, chapter, section), in the document being +longdesc referenced, in addition to the page-based references that +longdesc BibTeX-based citations have always had. The citation is made in +longdesc the same way as the LaTeX standard, but what's inside the +longdesc square brackets may include the "division" specification, as in +longdesc \cite[()]{} +containersize 1980 +containerchecksum f7a9b6a9f8fb21a5b9f06e3904ec2147ccd21383c3ced8852b22d0cf62088be103b674466ae571ace6bea52904f6cfb79ef2982bdb16679d02ff1d260d5b3517 +doccontainersize 65448 +doccontainerchecksum 1ae3883454e6aafc91b996de520a4669a06a67cd74b9df7e7cb7d096291d5f1dbe728a2a0fbd3b5968fdebf64946e829c4722bff33ff52ccbf32d8055f042144 +docfiles size=22 + RELOC/doc/latex/biblatex-source-division/README details="Readme" + RELOC/doc/latex/biblatex-source-division/biblatex-source-division.bib + RELOC/doc/latex/biblatex-source-division/biblatex-source-division.pdf details="Package documentation" + RELOC/doc/latex/biblatex-source-division/biblatex-source-division.tex + RELOC/doc/latex/biblatex-source-division/latexmkrc + RELOC/doc/latex/biblatex-source-division/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-source-division/biblatex-source-division.sty +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-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 2.4.2 + +name biblatex-subseries +category Package +revision 43330 +shortdesc Manages subseries with BibLaTeX +relocated 1 +longdesc Some publishers organize book series with subseries. In this +longdesc case, two numbers are associated with one volume: the number +longdesc inside the series and the number inside the subseries. That is +longdesc the case of the series Corpus Scriptorium Christianorum +longdesc Orientalium published by Peeters. This package provides new +longdesc fields to manage such system. +containersize 1384 +containerchecksum 37955d7e547fceb3e3856f5e367d39a4952ee0d604652963db2a54466e9d6c1effb6b2c195ffd1dd15eec5552df97419a09763bc51af06c6726dbe40a6e3bbae +doccontainersize 70196 +doccontainerchecksum 94bf4807e0623c35690ef7b1fd879710a762630224c0a52ee4e7b4a96c27001a9653de2c7d2ecd2a12cda448bfbdc336c54bcc8fb6674782af017cddfdc8e5fb +docfiles size=25 + RELOC/doc/latex/biblatex-subseries/README details="Readme" + RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries-example.bib + RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries-example.pdf + RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries-example.tex + RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries.pdf details="Package documentation" + RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries.tex + RELOC/doc/latex/biblatex-subseries/documentation/makefile + RELOC/doc/latex/biblatex-subseries/makefile +runfiles size=2 + RELOC/tex/latex/biblatex-subseries/subseries.bbx + 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-license lppl1.3 +catalogue-topics biblatex biblio +catalogue-version 1.2.0 + +name biblatex-swiss-legal +category Package +revision 58661 +shortdesc Bibliography and citation styles following Swiss legal practice +relocated 1 +longdesc The package provides BibLaTeX bibliography and citation styles +longdesc for documents written in accordance with Swiss legal citation +longdesc standards in either French or German. However, according to +longdesc https://tex.stackexchange.com/questions/426142/bibliography-usi +longdesc ng-biblatex-swiss-legal-not-displayed-correctly the package is +longdesc at present outdated and does not work properly with newer +longdesc versions of BibLaTeX. +containersize 18148 +containerchecksum 0d15d1a11d6f7a85d2443d3376b3ad8ed0941474a7e598ebacc08450a89b20b1909dff15111d209605297dca720ea6d7b6772869a39c14786199b0c4eab4e011 +doccontainersize 513436 +doccontainerchecksum db4e7cb54f2002afe099e65402c43bc5574cf2e9bb1ffc11bc0467401f0a8bb48124681fbcb2a95e950517a20baff4dfc79822bbd7152e7408d4aac04651dc5b +docfiles size=145 + RELOC/doc/latex/biblatex-swiss-legal/README details="Readme (French and English)" + RELOC/doc/latex/biblatex-swiss-legal/biblatex-swiss-legal.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.bib + RELOC/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.tex +runfiles size=28 + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.cbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-bibliography.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-bibliography.cbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-de.lbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-fr.lbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-general.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-general.cbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-longarticle.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-longarticle.cbx + 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-license lppl1.3 +catalogue-topics legal french german biblatex +catalogue-version 1.1.2a + +name biblatex-trad +category Package +revision 58169 +shortdesc "Traditional" BibTeX styles with BibLaTeX +relocated 1 +longdesc The bundle provides implementations of the "traditional" BibTeX +longdesc styles (plain, abbrev, unsrt and alpha) with BibLaTeX. +containersize 4192 +containerchecksum e14b9326eb05af2a89eac072d6c71f61527a53a813605bbb399703d2a23cf7ddcfaeb2cc77f6f7b8959e05833ae3eb343224bf126907193af557d09fc1746552 +doccontainersize 469432 +doccontainerchecksum 32d6fa6369359e15717257be6e89f77081dbd352654d4c60d55f4de9c5f522f7d222b51bfb5a1eedd7f6378343d041380c5e97e559e681bcf7647e0695ca13fc +docfiles size=118 + RELOC/doc/latex/biblatex-trad/README.md details="Readme" + RELOC/doc/latex/biblatex-trad/biblatex-trad.pdf details="Package documentation" + RELOC/doc/latex/biblatex-trad/biblatex-trad.tex +runfiles size=15 + RELOC/tex/latex/biblatex-trad/trad-abbrv.bbx + RELOC/tex/latex/biblatex-trad/trad-abbrv.cbx + RELOC/tex/latex/biblatex-trad/trad-alpha.bbx + RELOC/tex/latex/biblatex-trad/trad-alpha.cbx + RELOC/tex/latex/biblatex-trad/trad-plain.bbx + RELOC/tex/latex/biblatex-trad/trad-plain.cbx + RELOC/tex/latex/biblatex-trad/trad-standard.bbx + RELOC/tex/latex/biblatex-trad/trad-standard.cbx + RELOC/tex/latex/biblatex-trad/trad-unsrt.bbx + RELOC/tex/latex/biblatex-trad/trad-unsrt.cbx +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-license lppl1.3c +catalogue-topics biblatex +catalogue-version 0.5 + +name biblatex-true-citepages-omit +category Package +revision 44653 +shortdesc Correction of some limitation of the citepages=omit option of BibLaTeX styles +relocated 1 +longdesc This package deals with a limitation of the citepages=omit +longdesc option of the verbose family of BibLaTeX citestyles. The option +longdesc works when you \cite[xx]{key}, but not when you \cite[\pno~xx, +longdesc some text]{key}. The package corrects this problem. +containersize 1308 +containerchecksum 908f6544890f69b4ca405c94e68c4814c52956bb77108f8e29bb4b6b63ad7de3bc0b1f1213a612f9e0ebd94ddc054907092451a9f326476f39e18a1f81ed0c63 +doccontainersize 70876 +doccontainerchecksum bb53e66c1aec87669be8bb608f82cd7683692cf87aeed792d1e9d49045039c15fc7113fe116e04332e8aa6331101a6e97e97f655e26cecee9636409d810f77e7 +docfiles size=26 + RELOC/doc/latex/biblatex-true-citepages-omit/README details="Readme" + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit-example.pdf + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit-example.tex + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.bib + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.pdf details="Package documentation" + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.tex + RELOC/doc/latex/biblatex-true-citepages-omit/example.bib + RELOC/doc/latex/biblatex-true-citepages-omit/latexmkrc + RELOC/doc/latex/biblatex-true-citepages-omit/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.sty +catalogue-contact-bugs https://github.com/maieul/biblatex-true-citepages-omit/issues +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-license lppl1.3 +catalogue-topics biblio biblatex bugfix +catalogue-version 2.0.0 + +name biblatex-unified +category Package +revision 55290 +shortdesc BibLaTeX implementation of the unified stylesheet for linguistics journals +relocated 1 +longdesc BibLaTeX-unified is an opinionated BibLaTeX implementation of +longdesc the Unified Stylesheet for Linguistics Journals +containersize 7704 +containerchecksum 930867328f0f818d03fd5d8cacad6113214609500f43e06b77b711c00939a3a3c99e8e3bba8a093721e719b8449abfc29be50c9b5482b65f3c47f4b7b3a344ad +doccontainersize 434816 +doccontainerchecksum 7196a1c293864f8cbe9e1421ee074cf249bac49c9d9a8cdd811a0252d4a0700f1874bc7d8f3cf22f3ecfc50ac214ce17d30ba8e7f84ae92428578e540ce66429 +docfiles size=131 + RELOC/doc/latex/biblatex-unified/JournalUnifiedStyleSheet2007.pdf + RELOC/doc/latex/biblatex-unified/LICENSE + RELOC/doc/latex/biblatex-unified/README.md details="Readme" + RELOC/doc/latex/biblatex-unified/biblatex-unified.md + RELOC/doc/latex/biblatex-unified/biblatex-unified.pdf details="Package documentation" + RELOC/doc/latex/biblatex-unified/biblatex-unified.tex + RELOC/doc/latex/biblatex-unified/unified-test.bib + RELOC/doc/latex/biblatex-unified/unified-test.pdf + RELOC/doc/latex/biblatex-unified/unified-test.tex +runfiles size=9 + RELOC/tex/latex/biblatex-unified/unified.bbx + RELOC/tex/latex/biblatex-unified/unified.cbx +catalogue-contact-bugs https://github.com/semprag/biblatex-sp-unified/issues +catalogue-contact-repository https://github.com/semprag/biblatex-sp-unified +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-unified +catalogue-license lppl1.3c +catalogue-topics biblatex +catalogue-version 1.00 + +name biblatex-vancouver +category Package +revision 55339 +shortdesc Vancouver style for BibLaTeX +relocated 1 +longdesc This package provides the Vancouver reference style for +longdesc BibLaTeX. It is based on the numeric style and requires biber. +containersize 1812 +containerchecksum 9d31315ce02bc47869a3e11644fe3160bb7b0178f87f71a9f3c06e54326c49bb1c37daee0c02f7185ef50513afe0aa4bbf8070b91db3181a2185a138daef48f8 +doccontainersize 12120 +doccontainerchecksum ac285c5568d8651e81680576950d593eb5247b636c1c27b0a2a4a6758bc151b51f6e2b4938bc9273cc748924cb9f6193f6b58b883692ce03fb272316b8ec7204 +docfiles size=10 + RELOC/doc/latex/biblatex-vancouver/LICENSE + RELOC/doc/latex/biblatex-vancouver/README details="Readme" +runfiles size=2 + RELOC/tex/latex/biblatex-vancouver/vancouver.bbx + RELOC/tex/latex/biblatex-vancouver/vancouver.cbx +catalogue-contact-bugs https://code.agnibho.com/trac/biblatex-vancouver/report +catalogue-contact-home https://code.agnibho.com/biblatex-vancouver/ +catalogue-contact-repository https://code.agnibho.com/repo/biblatex-vancouver.git +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-vancouver +catalogue-license gpl3+ +catalogue-topics biblatex +catalogue-version 0.1 + +name biblatex2bibitem +category Package +revision 54030 +shortdesc Convert BibLaTeX-generated bibliography to bibitems +relocated 1 +longdesc This is a workaround to convert BibLaTeX-generated bibliography +longdesc to bibitems. +containersize 1380 +containerchecksum 4d27fc2bc55a031f571096fed58757de74e5fcbdbb485b327d8a34c8033b2a2ac316b7257ea369d41373d887152a1a84201f28c817abdd2ca84716ebdc4e111a +doccontainersize 129140 +doccontainerchecksum b7f37db4271ea7fe0b6208cca2dfd66f7c2f70966081c85fb35d34f927690ae435574f566accdc0ee358c9f74920f18916bf558f3d97cc1f6a27f540d337d90d +docfiles size=38 + RELOC/doc/latex/biblatex2bibitem/LICENSE.txt + RELOC/doc/latex/biblatex2bibitem/README.md details="Readme" + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-examples.bib + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-mwe.pdf details="Minimal working example" + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-mwe.tex +runfiles size=1 + RELOC/tex/latex/biblatex2bibitem/biblatex2bibitem.sty +catalogue-contact-bugs https://gitlab.com/Nickkolok/biblatex2bibitem/issues +catalogue-contact-repository https://gitlab.com/Nickkolok/biblatex2bibitem +catalogue-ctan /macros/latex/contrib/biblatex2bibitem +catalogue-license lppl1.3c +catalogue-topics bibtex-supp +catalogue-version 0.2.0 + +name bibleref +category Package +revision 55626 +shortdesc Format bible citations +relocated 1 +longdesc The bibleref package offers consistent formatting of references +longdesc to parts of the Christian bible, in a number of well-defined +longdesc formats. It depends on ifthen, fmtcount, and amsgen. +containersize 7036 +containerchecksum 261773de4bfeb039d4cb3f2dd88ca7c2ae229d2844ae0f5f454e06d888d9543fbe1439490895a49bbcbc79d8335151bba2a35bf36777113a965613efdcf9225e +doccontainersize 363388 +doccontainerchecksum 964f8547c073db2b174d9ddfd1f6d0ff06df5bc51b2050725da20687f84ca835f58ee238f3f1a9d6d4ebc1858217ed0d8b2950964cdd638012d91e94bf92aa19 +docfiles size=97 + RELOC/doc/latex/bibleref/CHANGES + RELOC/doc/latex/bibleref/README details="Readme" + RELOC/doc/latex/bibleref/bibleref.pdf details="Package documentation" + RELOC/doc/latex/bibleref/makefile + RELOC/doc/latex/bibleref/sample.ist + RELOC/doc/latex/bibleref/samples/sample-categories.pdf + RELOC/doc/latex/bibleref/samples/sample-indextools.pdf + RELOC/doc/latex/bibleref/samples/sample-xidx.pdf + RELOC/doc/latex/bibleref/samples/sample.pdf details="Example of use" +srccontainersize 17200 +srccontainerchecksum 09329d9142cfeb1f70778f46d0396aaf20c7ab2a215d76120ba11147368236ab98a24ebe386f68aaf253991af4c95a320339e5d07e956132d9d3d08ede63bb79 +srcfiles size=26 + RELOC/source/latex/bibleref/bibleref.dtx + RELOC/source/latex/bibleref/bibleref.ins +runfiles size=12 + RELOC/tex/latex/bibleref/bibleref-xidx.sty + RELOC/tex/latex/bibleref/bibleref.sty +catalogue-contact-bugs https://framagit.org/maieul/bibleref/issues +catalogue-contact-repository https://framagit.org/maieul/bibleref/ +catalogue-ctan /macros/latex/contrib/bibleref +catalogue-license lppl1.3 +catalogue-topics theology label-ref +catalogue-version 1.25 + +name bibleref-french +category Package +revision 53138 +shortdesc French translations for bibleref +relocated 1 +longdesc The package provides translations and alternative typesetting +longdesc conventions for use of bibleref in French. +containersize 4552 +containerchecksum f768d01206a35a6ca18ba777fb159294f566be365845bc82d344e9eaa3dd7cd0c1763564b7e17d4a1b851330405cfb3c383019b575276bd9b12d084c4845ed89 +doccontainersize 644116 +doccontainerchecksum e72ac2b74f01df60c998896b76013eec56a3d8cda8df2f26f92d05d342760204913d7d70a6c8f63680f54bf3c84fb1c654c213ec2356dcf189bf9e134ce4de30 +docfiles size=191 + RELOC/doc/latex/bibleref-french/Lacroux-Bible.pdf + RELOC/doc/latex/bibleref-french/README + RELOC/doc/latex/bibleref-french/bible.bib + RELOC/doc/latex/bibleref-french/bibleref-french-francais.pdf details="Package Manual" language="fr" + RELOC/doc/latex/bibleref-french/bibleref-french-francais.tex + RELOC/doc/latex/bibleref-french/bibleref-french.pdf details="Package Manual" language="en" + RELOC/doc/latex/bibleref-french/livres.tex + RELOC/doc/latex/bibleref-french/makefile + RELOC/doc/latex/bibleref-french/styles.tex + RELOC/doc/latex/bibleref-french/test.tex +srccontainersize 7952 +srccontainerchecksum f70a734e6391ff8681a6e58c3161ed5bc894a9bff26a6b0cedd4d868acc0412fee0069ff937a247b129186c8d73b43305cb6747678aabfd0537c1238c9ee2305 +srcfiles size=12 + RELOC/source/latex/bibleref-french/bibleref-french.dtx + RELOC/source/latex/bibleref-french/bibleref-french.ins +runfiles size=8 + RELOC/tex/latex/bibleref-french/bibleref-french.sty +catalogue-ctan /macros/latex/contrib/bibleref-french +catalogue-license lppl1.3 +catalogue-topics theology +catalogue-version 2.3.3 + +name bibleref-german +category Package +revision 21923 +shortdesc German adaptation of bibleref +relocated 1 +longdesc The package provides translations and various formats for the +longdesc use of bibleref in German documents. The German naming of the +longdesc bible books complies with the 'Loccumer Richtlinien' (Locum +longdesc guidelines). In addition, the Vulgate (Latin bible) is +longdesc supported. +containersize 7488 +containerchecksum 094177e505025eef5262b876fc49cfb09435b653c87fb1ee7453650e94f098bfbc7f5c78684849b3ce0cec2019d85a0413728397b5ffaf32bde542d8fa86222f +doccontainersize 659488 +doccontainerchecksum c3c610fd8a80ca5a0b8de6ce4aac887a7d16f01e21d845fad595e1d5d6069d8e89459dfd187cc458d21bf2247f4f2c7fe72233a12c8e532b9466f2ceea283360 +docfiles size=243 + RELOC/doc/latex/bibleref-german/CHANGES + RELOC/doc/latex/bibleref-german/LIESMICH details="Liesmich" language="de" + RELOC/doc/latex/bibleref-german/README details="Readme" language="en" + RELOC/doc/latex/bibleref-german/bibleref-german-preamble.tex + RELOC/doc/latex/bibleref-german/bibleref-german-print.tex + RELOC/doc/latex/bibleref-german/bibleref-german-screen.tex + RELOC/doc/latex/bibleref-german/de-bibleref-german.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/bibleref-german/de-bibleref-german.tex + RELOC/doc/latex/bibleref-german/en-bibleref-german.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/bibleref-german/en-bibleref-german.tex +runfiles size=17 + RELOC/tex/latex/bibleref-german/bibleref-german.sty +catalogue-ctan /macros/latex/contrib/bibleref-german +catalogue-license lppl1.3 +catalogue-topics theology +catalogue-version 1.0a + +name bibleref-lds +category Package +revision 25526 +shortdesc Bible references, including those to the scriptures of the Church of Jesus Christ of Latter Day Saints +relocated 1 +longdesc The package extends the bibleref-mouth package to support +longdesc references to the scriptures of The Church of Jesus Christ of +longdesc Latter-day Saints (LDS). The package requires bibleref-mouth to +longdesc run, and its reference syntax is the same as that of the parent +longdesc package. +containersize 3636 +containerchecksum ba3c4e41b566d0a26bd9f0d11d8e776fe04a18aac451435ff0283ff273971138407753bd6806f34708c5a2f0c1b2581c71de46bbc2e0c8063c9838b3d946f2ca +doccontainersize 269992 +doccontainerchecksum 6fd81f90d0c94644231e911ab44827b77864842a3fa91127fb53114179488e5ffd66a404a1b5afee513e0cd3f4c83f38cae547e6dd6484403926c4c46b5cdec7 +docfiles size=74 + RELOC/doc/latex/bibleref-lds/README details="Readme" + RELOC/doc/latex/bibleref-lds/bibleref-lds.pdf details="Package documentation" +srccontainersize 8524 +srccontainerchecksum 0494b05fd3881cc273e8232c398e80ddca4c1286b10aef5d341c6c3573ee40cd5ad1b7a2ae0aab9fd505f94a4bf98643453648b7cc52fda09f5e705a8b4da863 +srcfiles size=11 + RELOC/source/latex/bibleref-lds/bibleref-lds.dtx + RELOC/source/latex/bibleref-lds/bibleref-lds.ins +runfiles size=5 + RELOC/tex/latex/bibleref-lds/bibleref-lds.sty +catalogue-ctan /macros/latex/contrib/bibleref-lds +catalogue-license lppl1.3 +catalogue-topics theology +catalogue-version 1.0 + +name bibleref-mouth +category Package +revision 25527 +shortdesc Consistent formatting of Bible references +relocated 1 +longdesc The package allows Bible references to be formatted in a +longdesc consistent way. It is similar to the bibleref package, except +longdesc that the formatting macros are all purely expandable -- that +longdesc is, they are all implemented in TeX's mouth. This means that +longdesc they can be used in any expandable context, such as an argument +longdesc to a \url command. +containersize 5476 +containerchecksum 5ae9356781549cb5ecbdfa33085ede0fdbcb7f131d55484153484c777f88e23cf965507afde803e7bc5b775aeb416b9ee767815b5dbec444a3d21be18c7445f4 +doccontainersize 366172 +doccontainerchecksum a904b4c9c0c8f3ff1feaaad8d1650b383ff0110bcf463f004938c51bce84ffc860082bf3e598922eedf0aeaa664ef0379ea3304f6dc5b681679d9545026c6bf4 +docfiles size=102 + RELOC/doc/latex/bibleref-mouth/README details="Readme" + RELOC/doc/latex/bibleref-mouth/bibleref-mouth.pdf details="Package documentation" +srccontainersize 18324 +srccontainerchecksum 5ad805eb19d6ce8fef804117b462eb1f1dff887c3b6326fd42eba88c7a218ada84992bc419d889f04363ae9b7073b13ebb5f7a002225191fc22c2a2cb5824514 +srcfiles size=24 + RELOC/source/latex/bibleref-mouth/bibleref-mouth.dtx + RELOC/source/latex/bibleref-mouth/bibleref-mouth.ins +runfiles size=8 + RELOC/tex/latex/bibleref-mouth/bibleref-mouth.sty +catalogue-also bibleref +catalogue-ctan /macros/latex/contrib/bibleref-mouth +catalogue-license lppl1.3 +catalogue-topics theology +catalogue-version 1.0 + +name bibleref-parse +category Package +revision 22054 +shortdesc Specify Bible passages in human-readable format +relocated 1 +longdesc The package parses Bible passages that are given in human +longdesc readable format. It accepts a wide variety of formats. This +longdesc allows for a simpler and more convenient interface to the +longdesc functionality of the bibleref package. +containersize 7204 +containerchecksum 3af7da247ff7f9708ef076a3fe110979e7ff07be0afb08597feeda9ae31e60a66eb2bbbb5da015e10566e83a116cc9f2efa56fe91a57717230fb35bd004c209d +doccontainersize 101648 +doccontainerchecksum 08393d76bca59dcbd715cc443ffbf7a1e15894ac6a2963d0ce770c96974c14d42283fd9237c215fe454ec4403a21387ba9dee52ea1bd93b83ab4a13fbc65157c +docfiles size=35 + RELOC/doc/latex/bibleref-parse/README details="Readme" + RELOC/doc/latex/bibleref-parse/bibleref-parse.pdf details="Package documentation" + RELOC/doc/latex/bibleref-parse/bibleref-parse.tex +runfiles size=12 + RELOC/tex/latex/bibleref-parse/bibleref-parse.sty +catalogue-ctan /macros/latex/contrib/bibleref-parse +catalogue-license lppl1.3 +catalogue-topics theology +catalogue-version 1.1 + +name bibletext +category Package +revision 45196 +shortdesc Insert Bible passages by their reference +relocated 1 +longdesc The package allows to insert Bible texts in a document by +longdesc specifying references. +containersize 1156 +containerchecksum 3c5170b747c6426099c021390f7ac226ebf9dbe42ff586c698b3489d47639fcd4198a4cf49261bba9335caebf8f39488d65fe851d60d9f3c2cc2127539ef080a +doccontainersize 142004 +doccontainerchecksum ea38659b5b2bc252760937ecf21d4ac3e8986ac8be6afdc1f2205d84696b8da55e02037bcddb24de389d54a692240ae946ab3e41a0a7913015da4d7b5e12da7f +docfiles size=38 + RELOC/doc/latex/bibletext/LICENSE + RELOC/doc/latex/bibletext/README.md details="Readme" + RELOC/doc/latex/bibletext/bibletext.pdf details="Package documentation" + RELOC/doc/latex/bibletext/bibletext.tex +runfiles size=1 + RELOC/tex/latex/bibletext/bibletext.sty +catalogue-contact-bugs https://github.com/camilstaps/bibletext/issues +catalogue-contact-repository https://github.com/camilstaps/bibletext +catalogue-ctan /macros/latex/contrib/bibletext +catalogue-license mit +catalogue-topics theology +catalogue-version 0.1.2 + +name biblist +category Package +revision 17116 +shortdesc Print a BibTeX database +relocated 1 +longdesc The package provides the means of listing an entire BibTeX +longdesc database, avoiding the potentially large (macro) impact +longdesc associated with \nocite{*}. +containersize 8332 +containerchecksum 02f006139b475cb5d4ec2bf85ec098de78f5bed7242ec693317ad4e01acb62a8c5479f295a8a1409fccd41b327daa75a2639b67d9838777b8355e6bd40af478c +doccontainersize 207180 +doccontainerchecksum b5bdd51d7acb738569671f13dbd25fc7b98a8e2e03e324e9501a20ac34cf1ae3578fcd622be73a80467e47a64a81f4d897c4e167b07a5ff5d06635b09dbec51d +docfiles size=71 + RELOC/doc/latex/biblist/README details="Readme" + RELOC/doc/latex/biblist/biblist.bst-dist + RELOC/doc/latex/biblist/biblist.gde + RELOC/doc/latex/biblist/biblist.pdf details="Package documentation" + RELOC/doc/latex/biblist/biblist.tex +runfiles size=6 + RELOC/tex/latex/biblist/biblist.sty +catalogue-also listbib +catalogue-ctan /macros/latex209/contrib/biblist +catalogue-license gpl +catalogue-topics bibtex-util + +name bibtex +category Package +revision 57972 +shortdesc Process bibliographies for LaTeX, etc +longdesc BibTeX allows the user to store his citation data in generic +longdesc form, while printing citations in a document in the form +longdesc specified by a BibTeX style, to be specified in the document +longdesc itself (one often needs a LaTeX citation-style package, such as +longdesc natbib as well). BibTeX itself is an ASCII-only program; there +longdesc is, however, a version that copes with 8-bit character sets. +longdesc However, BibTeX's facilities rapidly run out as one moves away +longdesc from simple ASCII (for example, in the various national sorting +longdesc rules for languages expressed in different parts of ISO-8859 -- +longdesc the "ISO Latin" series). For more flexibility, the user is +longdesc urged to consider using biber with BibLaTeX to typeset its +longdesc output. +depend bibtex.ARCH +depend kpathsea +containersize 14908 +containerchecksum 9d695d2335d5cb1abf2810016f227e368bcd726d9cb05cf197df93b68a18415a5a7be17ec81d888ca5fb837960173951eef2d04d8abcd3dd6bccf33673dc4ac4 +doccontainersize 398220 +doccontainerchecksum f3c241a15108671934a8c05014d68dadfde6c87a00375b45c92b4924a48c5a342c202b71be05035313ee764c0bdc63ab84cc5d80b4d5eff2411562bba6f798a3 +docfiles size=133 + texmf-dist/doc/bibtex/base/README + texmf-dist/doc/bibtex/base/btxbst.doc + texmf-dist/doc/bibtex/base/btxdoc.bib + texmf-dist/doc/bibtex/base/btxdoc.pdf details="Using BibTeX" + texmf-dist/doc/bibtex/base/btxdoc.tex + texmf-dist/doc/bibtex/base/btxhak.pdf details="Writing BibTeX styles" + texmf-dist/doc/bibtex/base/btxhak.tex + texmf-dist/doc/man/man1/bibtex.1 + texmf-dist/doc/man/man1/bibtex.man1.pdf +runfiles size=51 + texmf-dist/bibtex/bib/base/xampl.bib + texmf-dist/bibtex/bst/base/abbrv.bst + texmf-dist/bibtex/bst/base/acm.bst + texmf-dist/bibtex/bst/base/alpha.bst + texmf-dist/bibtex/bst/base/apalike.bst + texmf-dist/bibtex/bst/base/ieeetr.bst + texmf-dist/bibtex/bst/base/plain.bst + texmf-dist/bibtex/bst/base/siam.bst + texmf-dist/bibtex/bst/base/unsrt.bst + texmf-dist/tex/generic/bibtex/apalike.sty + texmf-dist/tex/generic/bibtex/apalike.tex +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-home http://tug.org/bibtex +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /biblio/bibtex/base +catalogue-license knuth +catalogue-topics biblio +catalogue-version 0.99d + +name bibtex.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of bibtex +containersize 75964 +containerchecksum 88977eb07b3dc483e6de84bae5574d7392172c652c7bf9fbcdba73e9f2f13bc049b9f3c067ec3aa25c41e4b8ccebcd66ad2d6baaee593bf3b5d17abd17c432f0 +binfiles arch=aarch64-linux size=50 + bin/aarch64-linux/bibtex + +name bibtex.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of bibtex +containersize 94692 +containerchecksum fbcf4e4ca4c17d6fa5a59d9c24be3dc78ec0a98962bd637f930ae74ba292b76a37fb254a9a60b863f1512e26addbacebef3f3b6d1fbf996de87feff9598cd62d +binfiles arch=amd64-freebsd size=57 + bin/amd64-freebsd/bibtex + +name bibtex.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of bibtex +containersize 69360 +containerchecksum edab61d915a2a95ef02c740935b1b5a54e07fcb750e0de14f5cd276835c7dc3a3f5cf647289bd12b6406bf7f84dff7490ba3e82fe19c33623c3493b103a071d5 +binfiles arch=amd64-netbsd size=53 + bin/amd64-netbsd/bibtex + +name bibtex.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of bibtex +containersize 60136 +containerchecksum 3022c8790e5a562779258145af82a29d4cd25e6cf43719514cbd231fa433549c0e9b57ce5a987d43490ed5b7881abe79aa7ff5567ab6ff07ffe5d075bac1340e +binfiles arch=armhf-linux size=38 + bin/armhf-linux/bibtex + +name bibtex.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of bibtex +containersize 39484 +containerchecksum df5dd0b81040d99e48a9a48217403e9cd8fb4b511c66cf9aa8a559a1b0a4eea962551a798672e53fad322aaf838b7e5dcdd8a5fab22718157be421966284569b +binfiles arch=i386-cygwin size=29 + bin/i386-cygwin/bibtex.exe + +name bibtex.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of bibtex +containersize 71028 +containerchecksum d93fbfca5a484fb23c9765154012c9fc7684c3effe63d959b489a241948f9d2e56417255ee16ab8670cb22c54c4abd28da6e83b022984ba76b6fe385d7364eb0 +binfiles arch=i386-freebsd size=47 + bin/i386-freebsd/bibtex + +name bibtex.i386-linux +category Package +revision 57878 +shortdesc i386-linux files of bibtex +containersize 71348 +containerchecksum 891c31041f751de8e720ad16a08e3d4f723b4a894183023ab287b7fcd932709218a2384042f58bb1620866eea2cf529b7cadd52119d83b87e5fdd47cbf260ff7 +binfiles arch=i386-linux size=47 + bin/i386-linux/bibtex + +name bibtex.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of bibtex +containersize 55920 +containerchecksum eaf25356073503420eccbae9f30fb7fb24928ee6206942cd695ca87bd3a42c68b238aed2ea960a7488af7f0912debccb697f1c93334fe1cb5260f125f0090614 +binfiles arch=i386-netbsd size=50 + bin/i386-netbsd/bibtex + +name bibtex.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of bibtex +containersize 71288 +containerchecksum c6910536dd4be613f3d5c7244c1bf9e0c2dcdb79169341874146a9d3fa4f48835cf1da1d121e8de736879bf91e1ec89ed608af0411def2a6dde61a6e25ef968a +binfiles arch=i386-solaris size=43 + bin/i386-solaris/bibtex + +name bibtex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of bibtex +containersize 177164 +containerchecksum 5200d479c1c68d86b58e8c067e69c830ce1b7bd8666939efc2d7eb8c23d47da0e18230072dbb2019926e4960ba9b72db181cb92244f7684de476a024196b9784 +binfiles arch=universal-darwin size=134 + bin/universal-darwin/bibtex + +name bibtex.win32 +category Package +revision 58783 +shortdesc win32 files of bibtex +containersize 41688 +containerchecksum a1f94e76d741b55b1be5bde2449b0c8c929a4f0be6d6b2dc9def0003bce2bb8a575b07eadf3834cf3bce8610b82c2a2d3a49d9940c7632f69eada0389680b1b4 +binfiles arch=win32 size=25 + bin/win32/bibtex.exe + +name bibtex.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of bibtex +containersize 49300 +containerchecksum d17386503b3174e2a1d07aa3e20282a04a566c77c340313877354b8094f50e8b396ca7c4b79ff7b469bb7ae8ca212de6718e2af0d90d65bc53ca11b85fce46f0 +binfiles arch=x86_64-cygwin size=29 + bin/x86_64-cygwin/bibtex.exe + +name bibtex.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of bibtex +containersize 75464 +containerchecksum f2903d7a1601444ec119bf6e2ad809063fa5d7f97ab69808e508f7c1fcf767aeda4030a388187a7dc7ed4ae2ad091e5d85726e19a406b1d37b9d0118f50e847e +binfiles arch=x86_64-darwinlegacy size=44 + bin/x86_64-darwinlegacy/bibtex + +name bibtex.x86_64-linux +category Package +revision 57878 +shortdesc x86_64-linux files of bibtex +containersize 74160 +containerchecksum 2ecd5725076d898a09ce0d4aa8a6dc575f8df1684418c243458d5746c760dfad25d57acaa18b84bde20e4788e76f4f5cb84505f1be2d85208327f9a2301a9350 +binfiles arch=x86_64-linux size=42 + bin/x86_64-linux/bibtex + +name bibtex.x86_64-linuxmusl +category Package +revision 57878 +shortdesc x86_64-linuxmusl files of bibtex +containersize 79040 +containerchecksum 50f60ff7f087156c0e69cc83176c96157e7a9fadcb05a60bc54c10a5bc7a78846efc1761ba2337c95d809c2d08785cf0a1f54bca04352c11379fab7a5a95742f +binfiles arch=x86_64-linuxmusl size=46 + bin/x86_64-linuxmusl/bibtex + +name bibtex.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of bibtex +containersize 84892 +containerchecksum 5bd3d16a28f2c4ff97a6ed3267d4bea35063cb1bdae4c400cdaeaa74a8170ce092d1be1ec7d47dbb36d7c1e3997070f2650e8575bd4d27e2a9c9c356dd8de4dd +binfiles arch=x86_64-solaris size=51 + bin/x86_64-solaris/bibtex + +name bibtex8 +category TLCore +revision 52851 +catalogue bibtex8bit +shortdesc BibTeX variant supporting 8-bit encodings +longdesc An enhanced, portable C version of BibTeX. Enhanced by +longdesc conversion to "big" (32-bit) capacity, addition of run-time +longdesc selectable capacity and 8-bit support extensions. National +longdesc character set and sorting order are controlled by an external +longdesc configuration file. Various examples are included. +depend bibtex8.ARCH +containersize 9216 +containerchecksum 69f6b09fbed8a089e18ab7d39e352ad5a1e7512096a1806158ecb4df74822664b6620f3cffc12cb8a938b15a4000df2b46eadc0ff38c8de1d325539f01e8aff8 +doccontainersize 33164 +doccontainerchecksum d0863c43a5cbb87632a3513ffe75ab8a686647003366fbca1c9c168a4bb234f26078b260e1a3180f941e3eacf4717439a400df1bd180763aa43eec664009f25b +docfiles size=22 + texmf-dist/doc/bibtex8/00readme.txt + texmf-dist/doc/bibtex8/HISTORY + texmf-dist/doc/bibtex8/csfile.txt + texmf-dist/doc/bibtex8/file_id.diz + texmf-dist/doc/man/man1/bibtex8.1 + texmf-dist/doc/man/man1/bibtex8.man1.pdf +runfiles size=36 + texmf-dist/bibtex/csf/base/88591lat.csf + texmf-dist/bibtex/csf/base/88591sca.csf + texmf-dist/bibtex/csf/base/README.TEXLIVE + texmf-dist/bibtex/csf/base/ascii.csf + texmf-dist/bibtex/csf/base/cp437lat.csf + texmf-dist/bibtex/csf/base/cp850lat.csf + texmf-dist/bibtex/csf/base/cp850sca.csf + texmf-dist/bibtex/csf/base/cp866rus.csf + texmf-dist/bibtex/csf/base/csfile.txt + texmf-dist/bibtex/csf/polish-csf/88592pl.csf + texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf + texmf-dist/bibtex/csf/polish-csf/cp852pl.csf + texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf +catalogue-ctan /biblio/bibtex/8-bit +catalogue-license gpl +catalogue-topics biblio +catalogue-version 3.71 + +name bibtex8.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of bibtex8 +containersize 81496 +containerchecksum 7d659fae1bfa4251652a934f152e8d1891534a8fef59a8f594b3443f8ade30ffe86d51147816a27a4b2c2d4297e4b3df667549a58ebc0c5ec795167e1905cae3 +binfiles arch=aarch64-linux size=55 + bin/aarch64-linux/bibtex8 + +name bibtex8.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of bibtex8 +containersize 86012 +containerchecksum b75c78b8d4e496095319cba221546b1434193c96e3b6571283ab153498aedb3cc57035a4dda35430a889b11adb4160f979d7e8187cdd8927bfc9898b6135c525 +binfiles arch=amd64-freebsd size=53 + bin/amd64-freebsd/bibtex8 + +name bibtex8.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of bibtex8 +containersize 77980 +containerchecksum 5fbec3826a8b998851e9a2cab6c459e63dfe91b090a81b955e851c9c6e859f576131a3d54c80b31661d682683c2e99c6a83a069c24140835ca41a48f4893175e +binfiles arch=amd64-netbsd size=61 + bin/amd64-netbsd/bibtex8 + +name bibtex8.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of bibtex8 +containersize 66856 +containerchecksum 227f44f07145967fdc64da1ea758db7b30c89d876682c33ec7d03da586d1f1a1c35d8f3271639787f8eb4e1bd56db40364f3765a01d0f175426a9e2257273eaa +binfiles arch=armhf-linux size=43 + bin/armhf-linux/bibtex8 + +name bibtex8.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of bibtex8 +containersize 45828 +containerchecksum 2d5d41aeeced19cc7478f25f31b6f6d48d2cdd1cc529f8e01c02fa50313c14da20c25b68939803f8abdd979ed4f02e52925a11cb425d8fd4b62b624581dfbefb +binfiles arch=i386-cygwin size=34 + bin/i386-cygwin/bibtex8.exe + +name bibtex8.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of bibtex8 +containersize 70160 +containerchecksum b03885610317512fce2ed111feb0b0b6325d0eb9279d4bab868ab46d2cd3bd4d0fdc00469ad537116d7ec199c974752e59e4fc846843bd979fcb8f0e2cdade50 +binfiles arch=i386-freebsd size=45 + bin/i386-freebsd/bibtex8 + +name bibtex8.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of bibtex8 +containersize 79132 +containerchecksum 7f7271251a7380a94baa1ab1a5309d5cf991c4636566c08cb75c7598572dcf69c4710ed48e0e4d1f718222ab726116cacb486f5465a0acbb01ec267ec154a7b6 +binfiles arch=i386-linux size=54 + bin/i386-linux/bibtex8 + +name bibtex8.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of bibtex8 +containersize 62284 +containerchecksum ac7616bf4b01b370448d819303da753cebfa95cfa902d7eeffed2fcde35b39695d8ba27312c160530add8f91aca2085ed74984f31112ea37ddd02ab638488b3e +binfiles arch=i386-netbsd size=57 + bin/i386-netbsd/bibtex8 + +name bibtex8.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of bibtex8 +containersize 76908 +containerchecksum 25171e5579c1012b20ca77708d69838e0165816d1ade7748e46a1f4e9ed9b07bab43d53ed8f60cd300ec630e9f0294eee8a6ff82714d414b10863dcfd0db4b16 +binfiles arch=i386-solaris size=48 + bin/i386-solaris/bibtex8 + +name bibtex8.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of bibtex8 +containersize 164264 +containerchecksum e01e55dae601e139d2524f350d2564198cd83b8500ca107e5816f34b78e55636b037ad98f87c5a717797baf0b52902823e64bfd1887eeaf151a5da81c1508050 +binfiles arch=universal-darwin size=126 + bin/universal-darwin/bibtex8 + +name bibtex8.win32 +category TLCore +revision 58783 +shortdesc win32 files of bibtex8 +containersize 143584 +containerchecksum dce6e03128ff9dcd5a06d06765576808b55c61be9db36788816a60a2fcac75b0b8a586477e4df8577b7b04d79b2e38a45121d962f8270e3ca102803496561031 +binfiles arch=win32 size=80 + bin/win32/bibtex8.exe + +name bibtex8.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of bibtex8 +containersize 52696 +containerchecksum 87d385caa9f84c2552a2a6f93819c17c534a3610bf67c8b551940b5015af4cf89fe234ede3d884b07d04205518417b72d791ece8b11b5bd58c0b84b7fde0647c +binfiles arch=x86_64-cygwin size=34 + bin/x86_64-cygwin/bibtex8.exe + +name bibtex8.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of bibtex8 +containersize 82776 +containerchecksum 65e55c2ea2f784a963e5f7f96c8c94cd782a20a0b873864fc1507cfeb9064853a60fe1cee759e4de8f129c96110c489de58495c596185a8675e37a333ecb1eaa +binfiles arch=x86_64-darwinlegacy size=50 + bin/x86_64-darwinlegacy/bibtex8 + +name bibtex8.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of bibtex8 +containersize 80932 +containerchecksum 70cfca29e10abaabdb9fdbe45ab7a185281e8f6bc31a1266759e13a286bd520d54d922454aafd9f2a9a9d14e134c66b445f22427bd2a1cdb6a5ff277f8b56bef +binfiles arch=x86_64-linux size=48 + bin/x86_64-linux/bibtex8 + +name bibtex8.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of bibtex8 +containersize 87072 +containerchecksum d3e6b0a08f1ec139673f7c7673a76ed4acf219100bdf4fd7f2cf52b223f46540a5611ed145005db09786cf4d6b5b2dcaad443a5e9d9c4b884ebc6ab42b4ab001 +binfiles arch=x86_64-linuxmusl size=52 + bin/x86_64-linuxmusl/bibtex8 + +name bibtex8.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of bibtex8 +containersize 90072 +containerchecksum 44238270d953ac5fde6b6fd91e5ca6c305947ee39b47dd6cf6e3a02ae2a41e1d06de46b9a993510a968fa42468a95cc02bf7d130192f2ec4c02f5619c8db821b +binfiles arch=x86_64-solaris size=56 + bin/x86_64-solaris/bibtex8 + +name bibtexperllibs +category Package +revision 57137 +shortdesc BibTeX Perl Libraries +relocated 1 +longdesc This package provides BibTeX related Perl libraries by Gerhard +longdesc Gossen, repacked by Boris Veytsman, for TeX Live and other +longdesc TDS-compliant distributions. The libraries are written in pure +longdesc Perl, so should work out of the box on any architecture. They +longdesc have been packaged here mostly for Boris Veytsman's BibTeX +longdesc suite, but can be used in any other Perl script. +containersize 12284 +containerchecksum a2989820b603d7001bdafd85d637d500a1f27640c37ed48990acd5cd49b8c9d0035457f9c55bb79dad5c9397fd5d4f46fc8a10834bb388a0626daf8e8269a2ba +srccontainersize 144152 +srccontainerchecksum b4cb508f2e24de447427bc82abf3366f5f2afa0b5a5a827e1b129e8b2819878ea78c2057c771dcdd86e362eaefa942c90e0f7285a8495256a9087667cde2325b +srcfiles size=386 + RELOC/source/support/bibtexperllibs/BibTeX-Parser/Changes + RELOC/source/support/bibtexperllibs/BibTeX-Parser/LICENSE + RELOC/source/support/bibtexperllibs/BibTeX-Parser/MANIFEST + RELOC/source/support/bibtexperllibs/BibTeX-Parser/META.yml + RELOC/source/support/bibtexperllibs/BibTeX-Parser/MYMETA.json + RELOC/source/support/bibtexperllibs/BibTeX-Parser/MYMETA.yml + RELOC/source/support/bibtexperllibs/BibTeX-Parser/Makefile + RELOC/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL + RELOC/source/support/bibtexperllibs/BibTeX-Parser/README + RELOC/source/support/bibtexperllibs/BibTeX-Parser/dist.ini + RELOC/source/support/bibtexperllibs/BibTeX-Parser/notes + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/00-load.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/01-parse.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/02-parse_string.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/03-parse_entry.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/04-entry.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/05-author.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/06-parse_complex.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/07-parse_englishbib.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/08-parse_large.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/09-complex.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/10-funnyname.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/11-split_braced.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/12-von_token.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/13_output.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/14-extratext.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/15-capitalization.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/01.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/06.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/09-complex.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/10-funnyname.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/14-extratext.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/braces.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/endnote.txt + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/engineering_village.txt + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/mathscinet.txt + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bug66325.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bug67419.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/cleaned_field.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/pod-coverage.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/pod.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/release-pod-coverage.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/release-pod-syntax.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/Changes + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/LICENSE + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/MANIFEST + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/META.yml + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/MYMETA.json + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/MYMETA.yml + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/Makefile + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/Makefile.PL + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/README + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/dist.ini + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/script/UnicodeData.txt + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/script/convert.pl + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/convert.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/release-pod-coverage.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/release-pod-syntax.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/release-synopsis.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/weaver.ini + RELOC/source/support/bibtexperllibs/Makefile + RELOC/source/support/bibtexperllibs/README +runfiles size=15 + RELOC/scripts/bibtexperllibs/BibTeX/Parser.pm + RELOC/scripts/bibtexperllibs/BibTeX/Parser/Author.pm + RELOC/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm + RELOC/scripts/bibtexperllibs/LaTeX/ToUnicode.pm + RELOC/scripts/bibtexperllibs/LaTeX/ToUnicode/Tables.pm +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-license gpl1 artistic pd +catalogue-topics bibtex-supp +catalogue-version 1.6 + +name bibtexu +category TLCore +revision 52851 +shortdesc BibTeX variant supporting Unicode (UTF-8) +depend bibtexu.ARCH +containersize 292 +containerchecksum 9f1e27f1d7a76700aaa4f0f19c4e999070dbce873203b80e3ce5d2f4ed14c9b685515b6c648ece8942ba429d698f66f492b58373f348bcfef2523ffec270f466 +doccontainersize 67480 +doccontainerchecksum 0c0f0db13c18029bc822c5cf82b358e7784992f5799e03f1312a550ae3d40d4c59a01bda0355698f7ebbfb0488a426f20833d2b075675a83b5ae01e4a949c4a4 +docfiles size=23 + texmf-dist/doc/bibtexu/README + texmf-dist/doc/bibtexu/examples/test.bbl + texmf-dist/doc/bibtexu/examples/test.bib + texmf-dist/doc/bibtexu/examples/test.pdf + texmf-dist/doc/bibtexu/examples/test.tex + texmf-dist/doc/man/man1/bibtexu.1 + texmf-dist/doc/man/man1/bibtexu.man1.pdf + +name bibtexu.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of bibtexu +containersize 5584648 +containerchecksum 018c5774b4eb1ad5cdd50cd8845c6490f6a8d6ac284a4cb0091d66066ffdb1af83f5ec16268f1400060536462b36d9fb43cfc562c81970b51b3342264c9f9f62 +binfiles arch=aarch64-linux size=5093 + bin/aarch64-linux/bibtexu + +name bibtexu.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of bibtexu +containersize 5575912 +containerchecksum c7bb27ac24ab61d66f38db79ef3537dadfa2ed02ddf9bb74d42ed7f71c0ac6695e94606b353522581441844b2ef585bdb3baeaf22e358dc439352ebca4d5182a +binfiles arch=amd64-freebsd size=5041 + bin/amd64-freebsd/bibtexu + +name bibtexu.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of bibtexu +containersize 5540660 +containerchecksum b5c3f6613b75ea32f65e54429e9c8835ab4e758b08efb4f51a8bbc9394e4e36ce0e4dfedbe2267d8faaa0a027cb31560ff191d65ee3d76fc22070ab77a2fe69a +binfiles arch=amd64-netbsd size=5137 + bin/amd64-netbsd/bibtexu + +name bibtexu.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of bibtexu +containersize 5489928 +containerchecksum 7f860752ce8919fb828e35b8cb84ad56e3dd961dace3dc712d36916ac255a17afb8fb58a60e884acaa860636f0eca34cc679652bcc521fcf2715d7b6fc4ec519 +binfiles arch=armhf-linux size=4988 + bin/armhf-linux/bibtexu + +name bibtexu.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of bibtexu +containersize 5563796 +containerchecksum 79a4cd20b005719160ef7bcf76a4806e1d72dee63a40a20e6c92889344d03f073816815f976d8df7a010c03bb3403b4c43b26af88ea027a573e223baaa9ee82e +binfiles arch=i386-cygwin size=5051 + bin/i386-cygwin/bibtexu.exe + +name bibtexu.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of bibtexu +containersize 5533416 +containerchecksum a8afa698f11cdc46a1379c931eb5532486f4a89377cecf67e39d8d2d68f0595c54f5c92cc42a63a5a1312bbb2020995811c9a1855bcf3228a34c3d327757cc4d +binfiles arch=i386-freebsd size=5000 + bin/i386-freebsd/bibtexu + +name bibtexu.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of bibtexu +containersize 5696092 +containerchecksum a83353362b22b16ab618ed40b92d8c1b810fc2c42c363441f1c38fb49b4267a825f3cf5262247b949a31f3ca91f867027ced2f0d2772d7948c147510623d83c3 +binfiles arch=i386-linux size=5136 + bin/i386-linux/bibtexu + +name bibtexu.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of bibtexu +containersize 5504740 +containerchecksum 15128a53718f024114f0885e28a9aac5a759be348f2e41d4f0eaa0c84ba83d5e4c8f99fab8786516d29ea29cf1fc5216b5525c82c220d4a2892b5b3d64fe70e5 +binfiles arch=i386-netbsd size=5093 + bin/i386-netbsd/bibtexu + +name bibtexu.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of bibtexu +containersize 5872712 +containerchecksum c4253edf8c12ec003660c90097feec306399c4caadb18b0608ec0f7f3dd9b6936aa790392df9936b71b1661f50f4e91fb97b44b2eb90a7c7cadd78789b298c0a +binfiles arch=i386-solaris size=5373 + bin/i386-solaris/bibtexu + +name bibtexu.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of bibtexu +containersize 11424936 +containerchecksum 99b0d9aeab66603fd114ffde0b4e66f05342acfc9626c254815505da51f78a5287cf234b73170bd46de749055a4f911ee800474dd917d142dabbcc3413a280a2 +binfiles arch=universal-darwin size=10143 + bin/universal-darwin/bibtexu + +name bibtexu.win32 +category TLCore +revision 58783 +shortdesc win32 files of bibtexu +containersize 586696 +containerchecksum c7566dd1cae1f86246f1ab5b22452d4b32aec00ff9167c2feb378eda87d2728732e1e6f5cf8d33e0e8f12ed92d6ded00102aad9d2e2985dcc48b18c115ca7aef +binfiles arch=win32 size=366 + bin/win32/bibtexu.exe + +name bibtexu.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of bibtexu +containersize 5555712 +containerchecksum 7a9a13b21f466c016812d17749e003e0bb96b7dc41cfedb82c254be92a147d8e22769109b2c8fa467c9e15712fbdde8d97e442160b3daef94625b34f67676d30 +binfiles arch=x86_64-cygwin size=5025 + bin/x86_64-cygwin/bibtexu.exe + +name bibtexu.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of bibtexu +containersize 5536668 +containerchecksum 59c84400dbb7750a0dbdf1bf3db443cac7deb0b06865cd3ffdb4672f76ef84bb481c8a8d4d66a4932346ce5ce15f24f201e05a29c887a942fc64897e8f3ca443 +binfiles arch=x86_64-darwinlegacy size=5007 + bin/x86_64-darwinlegacy/bibtexu + +name bibtexu.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of bibtexu +containersize 5665232 +containerchecksum 0edac6d2ebfe68ddf58db8431d0914b31abe9b7cbd25d456b63718dce5fb3693b6bdfc1f6e79899a026905869c32a9d66ce4aaecbce47f50613256243f6fc533 +binfiles arch=x86_64-linux size=5113 + bin/x86_64-linux/bibtexu + +name bibtexu.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of bibtexu +containersize 5665972 +containerchecksum 099569c5719ab560c1a7d18d18bae9588e082f6a1d08e56f6496f5b372066080be7874996a6fcfcd33330376b56fea693d4b1eba0b89ca555e421246de94c3d2 +binfiles arch=x86_64-linuxmusl size=5125 + bin/x86_64-linuxmusl/bibtexu + +name bibtexu.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of bibtexu +containersize 5910900 +containerchecksum 643dad3d5a1cb59125c236f95782cf47ca4970f57e5be64b7c59b43c70cdccf3a7f287e16f4f47273db0b57427806d9de592f4c3443374c053f8643645f41c9a +binfiles arch=x86_64-solaris size=5438 + bin/x86_64-solaris/bibtexu + +name bibtopic +category Package +revision 15878 +shortdesc Include multiple bibliographies in a document +relocated 1 +longdesc The package allows the user to include several bibliographies +longdesc covering different 'topics' or bibliographic material into a +longdesc document (e.g., one bibliography for primary literature and one +longdesc for secondary literature). The package provides commands to +longdesc include either all references from a .bib file, only the +longdesc references actually cited or those not cited in your document. +longdesc The user has to construct a separate .bib file for each +longdesc bibliographic 'topic', each of which will be processed +longdesc separately by BibTeX. If you want to have bibliographies +longdesc specific to one part of a document, see the packages bibunits +longdesc or chapterbib. +containersize 8592 +containerchecksum 34e2a644cc4472f415522e6e798bcb1e2d623afd4783b07f4904405c63296ec912fb6c1d03f80d51c37ab81944cddb5b4f3678a22a7151d89376ed9aa343e9d7 +doccontainersize 222060 +doccontainerchecksum 5849fd57abb9bd847833993e660e342a537562bea9fba76376f3885d3bd09360c5783e4f04828137b43c076b635a2d566d908be48287c3fe6645c2abcba06652 +docfiles size=66 + RELOC/doc/latex/bibtopic/README details="Readme" + RELOC/doc/latex/bibtopic/articles.bib + RELOC/doc/latex/bibtopic/bibtopic.pdf details="Package documentation" + RELOC/doc/latex/bibtopic/books.bib + RELOC/doc/latex/bibtopic/sample.tex +srccontainersize 40496 +srccontainerchecksum 2b6d11221e625b6d568874d12cbc7b45d074ebe2bb973d63fcbb9d85689a4c27824f3eec68fcaa46f0de707767baa516c3925ff0fc4d6a90518584847844ede9 +srcfiles size=42 + RELOC/source/latex/bibtopic/bibtopic.dtx + RELOC/source/latex/bibtopic/bibtopic.ins +runfiles size=9 + RELOC/tex/latex/bibtopic/bibtopic.sty +catalogue-ctan /macros/latex/contrib/bibtopic +catalogue-license gpl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 1.1a + +name bibtopicprefix +category Package +revision 15878 +shortdesc Prefix references to bibliographies produced by bibtopic +relocated 1 +longdesc The package permits users to apply prefixes (fixed strings) to +longdesc references to entries in bibliographies produced by the +longdesc bibtopic package. +containersize 1844 +containerchecksum 1df7d78498b6de233aea92cb1b18f73893b8cab723fb614a9fe895e5131639c1b4f4318cbe103ea4d9308e383627873576664f0af3ac6fd26aebd5b8b0036379 +doccontainersize 374820 +doccontainerchecksum 473a7db7638f471fd87b1cb242a3a593e3ff0aa4586c1fbe906cf12f2dd866a27ab50176b01d3f4158cdf0fc263fa54ce16eb63c797392349fbc90a8422c3b2f +docfiles size=98 + RELOC/doc/latex/bibtopicprefix/README + RELOC/doc/latex/bibtopicprefix/bibtopicprefix.pdf details="Package documentation" + RELOC/doc/latex/bibtopicprefix/bibtopicprefix.xml +srccontainersize 4620 +srccontainerchecksum ebb06f55dd58c5948e5586ba29fe3aff33533eb3b044e07be71da0f20512af21d9808ae7d970f168189bc84ccb9bde6a19e935d7d6280e929d169250d3781a3e +srcfiles size=5 + RELOC/source/latex/bibtopicprefix/bibtopicprefix.drv + RELOC/source/latex/bibtopicprefix/bibtopicprefix.dtx + RELOC/source/latex/bibtopicprefix/bibtopicprefix.ins +runfiles size=1 + RELOC/tex/latex/bibtopicprefix/bibtopicprefix.sty +catalogue-ctan /macros/latex/contrib/bibtopicprefix +catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 1.10 + +name bibunits +category Package +revision 15878 +shortdesc Multiple bibliographies in one document +relocated 1 +longdesc The package provide a mechanism to generate separate +longdesc bibliographies for different units (chapters, sections or +longdesc bibunit-environments) of a text. The package separates the +longdesc citations of each unit of text into a separate file to be +longdesc processed by BibTeX. The global bibliography section produced +longdesc by LaTeX may also appear in the document and citations can be +longdesc placed in both the local unit and the global bibliographies at +longdesc the same time. The package is compatible with koma-script and +longdesc with the babel French option frenchb. +containersize 3036 +containerchecksum 5658d508b876a88f3916a190a9090d66f2dbee98260af8d23c8358d0708f27fc80d4cf6c348b1f6e1ff196e7de6d5567e371ada640a9a602185611fb09e64ddd +doccontainersize 193792 +doccontainerchecksum 888e5a4c1863c15112ece5763b01525a1a74f97ae1270495a41d598e73c4583ce2b9e28030b3054dcfebd60b038fb2d32938d6be947477fca93014fac70676af +docfiles size=68 + RELOC/doc/latex/bibunits/README details="Readme" + RELOC/doc/latex/bibunits/bibtexall + RELOC/doc/latex/bibunits/bibunits.pdf details="Package documentation" +srccontainersize 16152 +srccontainerchecksum 37cbb8ff6443757982a97bf6efa90881807712ebd7f0ce2975ef4960ef74e0541cea9fbffd64f765b6631378f3d21e2ac308ea1554709b6c2582b7cf7485398e +srcfiles size=18 + RELOC/source/latex/bibunits/bibunits.dtx + RELOC/source/latex/bibunits/bibunits.ins +runfiles size=3 + RELOC/tex/latex/bibunits/bibunits.sty +catalogue-also bibtopic chapterbib +catalogue-ctan /macros/latex/contrib/bibunits +catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 2.2 + +name bidi +category Package +revision 55193 +shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX +relocated 1 +longdesc A convenient interface for typesetting bidirectional texts with +longdesc plain TeX and LaTeX. The package includes adaptations for use +longdesc with many other commonly-used packages. +containersize 116328 +containerchecksum dba36e375340a6d852eba98b83ad8e0821e684424a53069a4eb21acad43ba32cba11a68b971fa8bbbc6380a89c2432916e8a048de85cd5ab377d7811570a9be6 +doccontainersize 3737268 +doccontainerchecksum 16e8062ffec0b64faaa2c1f4916c8decb38510af7279607d11ce0537cdbdd57dd90e9901e47b7396758b9653321f8e14716a809740f5d4c0f610358899ce333d +docfiles size=1026 + RELOC/doc/xelatex/bidi/README details="Readme" + RELOC/doc/xelatex/bidi/bidi-bibitem.pdf + RELOC/doc/xelatex/bidi/bidi-doc.pdf details="Package user documentation" + RELOC/doc/xelatex/bidi/bidi-logo.tex + RELOC/doc/xelatex/bidi/bidi.pdf details="Package source documentation" + RELOC/doc/xelatex/bidi/bidisample2e.tex + RELOC/doc/xelatex/bidi/bidismall2e.tex + RELOC/doc/xelatex/bidi/gull.jpg + RELOC/doc/xelatex/bidi/picture.jpg + RELOC/doc/xelatex/bidi/test-arydshln.tex + RELOC/doc/xelatex/bidi/test-bidi.tex + RELOC/doc/xelatex/bidi/test-brochure.tex + RELOC/doc/xelatex/bidi/test-casualcv.tex + RELOC/doc/xelatex/bidi/test-classiccv.tex + RELOC/doc/xelatex/bidi/test-color.tex + RELOC/doc/xelatex/bidi/test-supertabular.tex + RELOC/doc/xelatex/bidi/test-tabular.tex + RELOC/doc/xelatex/bidi/test-tabularx.tex + RELOC/doc/xelatex/bidi/test-tabulary.tex + RELOC/doc/xelatex/bidi/test1-colortbl.tex + RELOC/doc/xelatex/bidi/test1-wrapfig.tex + RELOC/doc/xelatex/bidi/test2-colortbl.tex + RELOC/doc/xelatex/bidi/test2-wrapfig.tex + RELOC/doc/xelatex/bidi/test3-wrapfig.tex +srccontainersize 133892 +srccontainerchecksum bbdbf08f87deff3ba6ff97869bcfb36b996f2985f4b28b4f598ea76827242d54b3e319379a9b027c2a6790f86e4503edf7d3f7e131f6ee34d48cfb042a8eed80 +srcfiles size=242 + RELOC/source/xelatex/bidi/bidi-doc-intro.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-basics.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-pkgs.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-pkgsupport.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-programming.ltx + RELOC/source/xelatex/bidi/bidi-doc-plain-basics.ltx + RELOC/source/xelatex/bidi/bidi-doc-plain-programming.ltx + RELOC/source/xelatex/bidi/bidi-doc-preamble.ltx + RELOC/source/xelatex/bidi/bidi-doc-title.ltx + RELOC/source/xelatex/bidi/bidi-doc.ltx + RELOC/source/xelatex/bidi/bidi.dtx + RELOC/source/xelatex/bidi/bidi.ins +runfiles size=293 + RELOC/tex/xelatex/bidi/adjmulticol-xetex-bidi.def + RELOC/tex/xelatex/bidi/algorithm2e-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsart-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsbook-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsmath-xetex-bidi.def + RELOC/tex/xelatex/bidi/amstext-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsthm-xetex-bidi.def + RELOC/tex/xelatex/bidi/array-xetex-bidi.def + RELOC/tex/xelatex/bidi/article-xetex-bidi.def + RELOC/tex/xelatex/bidi/artikel1-xetex-bidi.def + RELOC/tex/xelatex/bidi/artikel2-xetex-bidi.def + RELOC/tex/xelatex/bidi/artikel3-xetex-bidi.def + RELOC/tex/xelatex/bidi/arydshln-xetex-bidi.def + RELOC/tex/xelatex/bidi/bidi-logo.pdf + RELOC/tex/xelatex/bidi/bidi-media9.sty + RELOC/tex/xelatex/bidi/bidi-perpage.sty + RELOC/tex/xelatex/bidi/bidi.sty + RELOC/tex/xelatex/bidi/bidi.tex + RELOC/tex/xelatex/bidi/bidi2in1.sty + RELOC/tex/xelatex/bidi/bidicode.sty + RELOC/tex/xelatex/bidi/bidiftnxtra.sty + RELOC/tex/xelatex/bidi/bidimoderncv.cls + RELOC/tex/xelatex/bidi/bidipoem.sty + RELOC/tex/xelatex/bidi/biditools.sty + RELOC/tex/xelatex/bidi/biditufte-book.cls + RELOC/tex/xelatex/bidi/biditufte-handout.cls + RELOC/tex/xelatex/bidi/bidituftefloat.sty + RELOC/tex/xelatex/bidi/bidituftegeneralstructure.sty + RELOC/tex/xelatex/bidi/bidituftehyperref.sty + RELOC/tex/xelatex/bidi/bidituftesidenote.sty + RELOC/tex/xelatex/bidi/bidituftetitle.sty + RELOC/tex/xelatex/bidi/bidituftetoc.sty + RELOC/tex/xelatex/bidi/boek-xetex-bidi.def + RELOC/tex/xelatex/bidi/boek3-xetex-bidi.def + RELOC/tex/xelatex/bidi/book-xetex-bidi.def + RELOC/tex/xelatex/bidi/bookest-xetex-bidi.def + RELOC/tex/xelatex/bidi/breqn-xetex-bidi.def + RELOC/tex/xelatex/bidi/cals-xetex-bidi.def + RELOC/tex/xelatex/bidi/caption-xetex-bidi.def + RELOC/tex/xelatex/bidi/caption3-xetex-bidi.def + RELOC/tex/xelatex/bidi/color-xetex-bidi.def + RELOC/tex/xelatex/bidi/colortbl-xetex-bidi.def + RELOC/tex/xelatex/bidi/combine-xetex-bidi.def + RELOC/tex/xelatex/bidi/crop-xetex-bidi.def + RELOC/tex/xelatex/bidi/cuted-xetex-bidi.def + RELOC/tex/xelatex/bidi/cutwin-xetex-bidi.def + RELOC/tex/xelatex/bidi/cvthemebidicasual.sty + RELOC/tex/xelatex/bidi/cvthemebidiclassic.sty + RELOC/tex/xelatex/bidi/dblfnote-xetex-bidi.def + RELOC/tex/xelatex/bidi/diagbox-xetex-bidi.def + RELOC/tex/xelatex/bidi/draftwatermark-xetex-bidi.def + RELOC/tex/xelatex/bidi/empheq-xetex-bidi.def + RELOC/tex/xelatex/bidi/eso-pic-xetex-bidi.def + RELOC/tex/xelatex/bidi/extarticle-xetex-bidi.def + RELOC/tex/xelatex/bidi/extbook-xetex-bidi.def + RELOC/tex/xelatex/bidi/extletter-xetex-bidi.def + RELOC/tex/xelatex/bidi/extrafootnotefeatures-xetex-bidi.def + RELOC/tex/xelatex/bidi/extreport-xetex-bidi.def + RELOC/tex/xelatex/bidi/fancybox-xetex-bidi.def + RELOC/tex/xelatex/bidi/fancyhdr-xetex-bidi.def + RELOC/tex/xelatex/bidi/fix2col-xetex-bidi.def + RELOC/tex/xelatex/bidi/fleqn-xetex-bidi.def + RELOC/tex/xelatex/bidi/float-xetex-bidi.def + RELOC/tex/xelatex/bidi/floatrow-xetex-bidi.def + RELOC/tex/xelatex/bidi/flowfram-xetex-bidi.def + RELOC/tex/xelatex/bidi/footnote-xetex-bidi.def + RELOC/tex/xelatex/bidi/framed-xetex-bidi.def + RELOC/tex/xelatex/bidi/ftnright-xetex-bidi.def + RELOC/tex/xelatex/bidi/geometry-xetex-bidi.def + RELOC/tex/xelatex/bidi/graphicx-xetex-bidi.def + RELOC/tex/xelatex/bidi/hvfloat-xetex-bidi.def + RELOC/tex/xelatex/bidi/hyperref-xetex-bidi.def + RELOC/tex/xelatex/bidi/imsproc-xetex-bidi.def + RELOC/tex/xelatex/bidi/latex-xetex-bidi.def + RELOC/tex/xelatex/bidi/leqno-xetex-bidi.def + RELOC/tex/xelatex/bidi/letter-xetex-bidi.def + RELOC/tex/xelatex/bidi/lettrine-xetex-bidi.def + RELOC/tex/xelatex/bidi/lineno-xetex-bidi.def + RELOC/tex/xelatex/bidi/listings-xetex-bidi.def + RELOC/tex/xelatex/bidi/loadingorder-xetex-bidi.def + RELOC/tex/xelatex/bidi/longtable-xetex-bidi.def + RELOC/tex/xelatex/bidi/mathtools-xetex-bidi.def + RELOC/tex/xelatex/bidi/mdframed-xetex-bidi.def + RELOC/tex/xelatex/bidi/memoir-xetex-bidi.def + RELOC/tex/xelatex/bidi/midfloat-xetex-bidi.def + RELOC/tex/xelatex/bidi/minitoc-xetex-bidi.def + RELOC/tex/xelatex/bidi/multicol-xetex-bidi.def + RELOC/tex/xelatex/bidi/multienum-xetex-bidi.def + RELOC/tex/xelatex/bidi/natbib-xetex-bidi.def + RELOC/tex/xelatex/bidi/newfloat-xetex-bidi.def + RELOC/tex/xelatex/bidi/ntheorem-hyper-xetex-bidi.def + RELOC/tex/xelatex/bidi/ntheorem-xetex-bidi.def + RELOC/tex/xelatex/bidi/overpic-xetex-bidi.def + RELOC/tex/xelatex/bidi/pdfbase-xetex-bidi.def + RELOC/tex/xelatex/bidi/pdfpages-xetex-bidi.def + RELOC/tex/xelatex/bidi/pgfcorescopes.code-xetex-bidi.def + RELOC/tex/xelatex/bidi/picinpar-xetex-bidi.def + RELOC/tex/xelatex/bidi/plain-xetex-bidi.def + RELOC/tex/xelatex/bidi/pstricks-xetex-bidi.def + RELOC/tex/xelatex/bidi/quotchap-xetex-bidi.def + RELOC/tex/xelatex/bidi/ragged2e-xetex-bidi.def + RELOC/tex/xelatex/bidi/rapport1-xetex-bidi.def + RELOC/tex/xelatex/bidi/rapport3-xetex-bidi.def + RELOC/tex/xelatex/bidi/refrep-xetex-bidi.def + RELOC/tex/xelatex/bidi/report-xetex-bidi.def + RELOC/tex/xelatex/bidi/rotating-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrartcl-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrbook-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrlettr-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrreprt-xetex-bidi.def + RELOC/tex/xelatex/bidi/sidecap-xetex-bidi.def + RELOC/tex/xelatex/bidi/soul-xetex-bidi.def + RELOC/tex/xelatex/bidi/stabular-xetex-bidi.def + RELOC/tex/xelatex/bidi/subfigure-xetex-bidi.def + RELOC/tex/xelatex/bidi/tabls-xetex-bidi.def + RELOC/tex/xelatex/bidi/tabularx-xetex-bidi.def + RELOC/tex/xelatex/bidi/tabulary-xetex-bidi.def + RELOC/tex/xelatex/bidi/tc-xetex-bidi.def + RELOC/tex/xelatex/bidi/tcolorbox-xetex-bidi.def + RELOC/tex/xelatex/bidi/titlesec-xetex-bidi.def + RELOC/tex/xelatex/bidi/titletoc-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocbasic-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocbibind-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocloft-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocstyle-xetex-bidi.def + RELOC/tex/xelatex/bidi/todonotes-xetex-bidi.def + RELOC/tex/xelatex/bidi/wrapfig-xetex-bidi.def + RELOC/tex/xelatex/bidi/xcolor-xetex-bidi.def + RELOC/tex/xelatex/bidi/xltxtra-xetex-bidi.def +catalogue-contact-bugs https://github.com/persiantex/bidi/issues +catalogue-contact-repository https://github.com/persiantex/bidi +catalogue-ctan /macros/xetex/latex/bidi +catalogue-license lppl1.3c +catalogue-topics typesetting xetex bidi class +catalogue-version 36.3 + +name bidi-atbegshi +category Package +revision 35154 +shortdesc Bidi-aware shipout macros +relocated 1 +longdesc The package adds some commands to the atbegshi package for +longdesc proper placement of background material in the left and right +longdesc corners of the output page, in both LTR and RTL modes. The +longdesc package only works with xelatex format and should be loaded +longdesc before the bidi package. +containersize 1260 +containerchecksum 1295c87c038683212deaf52a4436bb6adc2a0cc0220b6767e770aa909d88eaeda4a0bd2dec739a2415745609aaec78cdd91d4949f90663323aeec63cefd45d01 +doccontainersize 66784 +doccontainerchecksum 6199c4d5b6064244c2fd38d8a0d6c4eac3c790cc786625502d89a5a8a2426f7182cc0e7c4b70513971a0cb4b1230bdbd1382c05762f6537a63a34fa4e79c020d +docfiles size=24 + RELOC/doc/xelatex/bidi-atbegshi/README details="Readme" + RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.tex + RELOC/doc/xelatex/bidi-atbegshi/test-LTR.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-LTR.tex + RELOC/doc/xelatex/bidi-atbegshi/test-RTL.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-RTL.tex + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-LTR.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-LTR.tex + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-RTL.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-RTL.tex +runfiles size=1 + RELOC/tex/xelatex/bidi-atbegshi/bidi-atbegshi.sty +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-license lppl1.3 +catalogue-topics bidi xetex +catalogue-version 0.1 + +name bidicontour +category Package +revision 34631 +shortdesc Bidi-aware coloured contour around text +relocated 1 +longdesc The package is a re-implementation of the contour package, +longdesc making it bidi-aware, and adding support of the xdvipdfmx (when +longdesc the outline option of the package is used). +containersize 1848 +containerchecksum 10364edc592375f69912888945e6d555df30627498aaae409b727392c64cd4aac386433119578a7a01a48bd0cff84aae33079593219b282feb9d96a68bdde78f +doccontainersize 30508 +doccontainerchecksum a1a3f9692ea2e462305f8c6db432586eb76d78cef5fa0e9057cbe5766ad99e25c560ad658569a92d1885e373fb6215fe2f9bcbc1c69b46c3088d36eb92e1aae9 +docfiles size=14 + RELOC/doc/xelatex/bidicontour/README + RELOC/doc/xelatex/bidicontour/bidicontour-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidicontour/bidicontour-doc.tex + RELOC/doc/xelatex/bidicontour/bidicontour-example-copies.pdf + RELOC/doc/xelatex/bidicontour/bidicontour-example-copies.tex + RELOC/doc/xelatex/bidicontour/bidicontour-example-outline.pdf + RELOC/doc/xelatex/bidicontour/bidicontour-example-outline.tex +runfiles size=1 + RELOC/tex/xelatex/bidicontour/bidicontour.sty +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-license lppl1.3 +catalogue-topics decoration colour +catalogue-version 0.2 + +name bidihl +category Package +revision 37795 +shortdesc Experimental bidi-aware text highlighting +relocated 1 +longdesc Experimental bidi-aware text highlighting. +containersize 2356 +containerchecksum fd82ad18b96cdd782fddab8739e09978d08fc37e8c65a177bde930671e102c9ffefe7465fc766860068188f6b9f8222119ac791f07223f79e9840f25659ea3ea +doccontainersize 43416 +doccontainerchecksum c9d0503857f2cfa960e36872757afcab17b2631caa8a33112ff2361694939774052a5249db62d21831e19c17826f422853a78c5522094706bd4208d4c5223019 +docfiles size=16 + RELOC/doc/xelatex/bidihl/README details="Readme" + RELOC/doc/xelatex/bidihl/bidihl-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidihl/bidihl-doc.tex + RELOC/doc/xelatex/bidihl/test-bidihl.pdf + RELOC/doc/xelatex/bidihl/test-bidihl.tex +runfiles size=2 + RELOC/tex/xelatex/bidihl/bidihl.sty +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-license lppl1.3 +catalogue-topics xetex bidi +catalogue-version 0.1c + +name bidipagegrid +category Package +revision 34632 +shortdesc Bidi-aware page grid in background +relocated 1 +longdesc The package is based on pagegrid. +containersize 3264 +containerchecksum b823a646d97c15ad9beb3aebeb7b2156aefc3ffd7bdec813e9cb2481e137cd661936c57bacc3b8c42509151205dbd4096329b5cbec25bd06698b698c59739551 +doccontainersize 25800 +doccontainerchecksum 615d87ca4c29e0a30cf1eee08819b10419a2f399a88f2bfed5bfb6eaf7b1adc8b64a2ccac5da7bedab4e4b951e80488b97203b9960980ca5919f653cc4218996 +docfiles size=9 + RELOC/doc/xelatex/bidipagegrid/README details="README" + RELOC/doc/xelatex/bidipagegrid/bidipagegrid-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidipagegrid/bidipagegrid-doc.tex +runfiles size=4 + RELOC/tex/xelatex/bidipagegrid/bidipagegrid.sty +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-license lppl1.3 +catalogue-topics layout-show background xetex bidi +catalogue-version 0.2 + +name bidipresentation +category Package +revision 35267 +shortdesc Experimental bidi presentation +relocated 1 +longdesc A great portion of the code is borrowed from the texpower +longdesc bundle, with modifications to get things working properly in +longdesc both right to left and left to right modes. +containersize 28048 +containerchecksum a41f98c3f009f7f8de8a41e386cc829c55650e603ccaa8e7e381fae45be2872e0b20e66b68e4d7ef8110abf7c9f6661865d49f7c0cf3ca4ae6f781c3ef5bc0ac +doccontainersize 75456 +doccontainerchecksum 56993d41b237d25e00536926b3b23f1b1a6940aabe4f636df73cabd5ec27252de9fb8ff17d872cec3cda7a0a3b8b13013ec77477dd89ebba83a8406da3ee144d +docfiles size=25 + RELOC/doc/xelatex/bidipresentation/README details="Readme" + RELOC/doc/xelatex/bidipresentation/fig-1.pdf + RELOC/doc/xelatex/bidipresentation/sample.pdf details="Sample presentation" + RELOC/doc/xelatex/bidipresentation/sample.tex +runfiles size=47 + RELOC/tex/xelatex/bidipresentation/bidiprescolors.cfg + RELOC/tex/xelatex/bidipresentation/bidipresentation.cls +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-license lppl1.3 +catalogue-topics class presentation bidi +catalogue-version 0.3 + +name bidishadowtext +category Package +revision 34633 +shortdesc Bidi-aware shadow text +relocated 1 +longdesc This package allows you to typeset bidi-aware shadow text. It +longdesc is a re-implementation of the shadowtext package adding bidi +longdesc support. +containersize 1312 +containerchecksum bf9a75be6d1f37055c793a16b0a4d019579adcbe14a93b64cec5495e4d7c8bcd8b8c6d86906714f8aa47be5789209a1ce78d19e8023b44b9d52409b281797310 +doccontainersize 120564 +doccontainerchecksum ac2f47ed1a5535ff1f0030c38bc210b2e3905bd46ce7024d5237387faf87be6a408ea35648f83a2ad7697ec09a91a4cce1aebd32c3446756adf1955bfa97f7c3 +docfiles size=32 + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-demo.pdf details="Example of use" + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-demo.tex + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-doc.tex +runfiles size=1 + RELOC/tex/xelatex/bidishadowtext/bidishadowtext.sty +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-license lppl1.3 +catalogue-topics decoration xetex bidi +catalogue-version 0.1 + +name bigfoot +category Package +revision 38248 +shortdesc Footnotes for critical editions +relocated 1 +longdesc The package aims to provide a 'one-stop' solution to +longdesc requirements for footnotes. It offers: Multiple footnote +longdesc apparatus superior to that of manyfoot Footnotes can be +longdesc formatted in separate paragraphs, or be run into a single +longdesc paragraph (this choice may be selected per footnote series); +longdesc Things you might have expected (such as \verb-like material in +longdesc footnotes, and colour selections over page breaks) now work. +longdesc Note that the majority of the bigfoot package's interface is +longdesc identical to that of manyfoot; users should seek information +longdesc from that package's documentation. The bigfoot bundle also +longdesc provides the perpage and suffix packages. +containersize 11372 +containerchecksum f56fb1545e0a044a143d1a257b9784b5f5dcc56d68bbeb52f909eb928e9d749729135f0c76b3af6dd0306add550b440d32aee21c33e70b9b48a5a82220623702 +doccontainersize 736348 +doccontainerchecksum f5935a5ede836798f3eab1ff61d528870a07be712047a64aa5af5576a1c6032e9d88fb5c42cf216e0f9812266f9a8562b5290301446c654dcb46146d7b60a16e +docfiles size=202 + RELOC/doc/latex/bigfoot/COPYING + RELOC/doc/latex/bigfoot/Makefile + RELOC/doc/latex/bigfoot/README details="Readme" + RELOC/doc/latex/bigfoot/bigfoot.pdf details="Package documentation" + RELOC/doc/latex/bigfoot/perpage.pdf + RELOC/doc/latex/bigfoot/suffix.pdf +srccontainersize 43760 +srccontainerchecksum 75316aff3c594fd904adec7cadd0b24aff9d527479d0c59f3fc654772e29cdb4cca938fe5fef6e14b9928fb25f37fdd3f7a894a81f95810813875c4fd419dff6 +srcfiles size=49 + RELOC/source/latex/bigfoot/bigfoot.drv + RELOC/source/latex/bigfoot/bigfoot.dtx + RELOC/source/latex/bigfoot/bigfoot.ins + RELOC/source/latex/bigfoot/perpage.drv + RELOC/source/latex/bigfoot/perpage.dtx + RELOC/source/latex/bigfoot/suffix.drv + RELOC/source/latex/bigfoot/suffix.dtx +runfiles size=14 + RELOC/tex/latex/bigfoot/bigfoot.sty + RELOC/tex/latex/bigfoot/perpage.sty + RELOC/tex/latex/bigfoot/suffix.sty +catalogue-ctan /macros/latex/contrib/bigfoot +catalogue-license gpl2 +catalogue-topics footnote +catalogue-version 2.1 + +name bigintcalc +category Package +revision 53172 +shortdesc Integer calculations on very large numbers +relocated 1 +longdesc This package provides expandable arithmetic operations with big +longdesc integers that can exceed TeX's number limits. +containersize 6504 +containerchecksum c801e5953008e8cd8521886496238f4f7a86a6c65a160255beb3fd6a41a48dd7bfa2da438f8e1ae4c79b51f769f0e07bcaa7c3c8aa6e1204ea656aca3d1f4620 +doccontainersize 456956 +doccontainerchecksum f5e7cc163157e429906489cb3cb94d8694c01be3c720e03b85bb24c7bd757391cf09e08f3d88df4ae7485978042e9d408fc5af0d93e016c82912479d40457079 +docfiles size=116 + RELOC/doc/latex/bigintcalc/README.md + RELOC/doc/latex/bigintcalc/bigintcalc.pdf details="Package documentation" +srccontainersize 14244 +srccontainerchecksum e829ad1e3a118e8fd0ea0e632740ed49db65603d6fdcc7d40126a048db5cc0f73c9f4aa64d81902794ed308ca31a153044a56ef37ac179918b24be71ae168f64 +srcfiles size=21 + RELOC/source/latex/bigintcalc/bigintcalc.dtx +runfiles size=10 + RELOC/tex/generic/bigintcalc/bigintcalc.sty +catalogue-contact-bugs https://github.com/ho-tex/bigintcalc/issues +catalogue-contact-repository https://github.com/ho-tex/bigintcalc +catalogue-ctan /macros/latex/contrib/bigintcalc +catalogue-license lppl1.3 +catalogue-topics arithmetic calculation +catalogue-version 1.5 + +name bigints +category Package +revision 29803 +shortdesc Writing big integrals +relocated 1 +longdesc The package provides facilities for drawing big integral signs +longdesc when needed. An example would be when the integrand is a +longdesc matrix. +containersize 1228 +containerchecksum 23f9a529af214771f74c6921baf8582b6a3c5e170d0fa511c260f5dd3fb6cb6194ef4082ed299dc0a3ff8e413981a36b594b440e7bc5512c7d2732fed9eb7a8e +doccontainersize 107716 +doccontainerchecksum 46799d5c6758657eadca7fb30d214baf47c237b63655a71ad19e188fd54b664397babbbc5cf6d9897e81decd027dea1e0d1a6fea97384461ec8976fc19c7fd8d +docfiles size=61 + RELOC/doc/latex/bigints/Makefile + RELOC/doc/latex/bigints/README details="Readme" + RELOC/doc/latex/bigints/bigints.forlisting + RELOC/doc/latex/bigints/bigints.pdf details="Package documentation" + RELOC/doc/latex/bigints/bigints.tex + RELOC/doc/latex/bigints/perso.ist +runfiles size=2 + RELOC/tex/latex/bigints/bigints.sty +catalogue-ctan /macros/latex/contrib/bigints +catalogue-license lppl +catalogue-topics maths + +name binarytree +category Package +revision 41777 +shortdesc Drawing binary trees using TikZ +relocated 1 +longdesc This package provides an easy but flexible way to draw binary +longdesc trees using TikZ. A path specification and the setting of +longdesc various options determine the style for each edge of the tree. +longdesc There is support for the external library of TikZ which does +longdesc not affect externalization of the rest of the TikZ figures in +longdesc the document. There is an option to use automatic file naming: +longdesc useful if the trees are often moved around. +containersize 5976 +containerchecksum b2204194393811994915604d428e0b537bf871681ea42a93d1e26a74d01cdee3ccd7817e7705cb6a3b9a1f2a97381e23226db9d671ddc36beb5c478271099cc0 +doccontainersize 447560 +doccontainerchecksum 4ef9f7db1d9cf124112e3f3e5c6db7e0b53bd72a5d7674a9f0ac7c471b88ff72309705b8d3942277a93883ef821907f0119d4dd3f645c8caa098f363612df68a +docfiles size=119 + RELOC/doc/latex/binarytree/README details="README" + RELOC/doc/latex/binarytree/binarytree.pdf details="Package documentation" + RELOC/doc/latex/binarytree/examples/binarytree-ex1.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex1.tex + RELOC/doc/latex/binarytree/examples/binarytree-ex2.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex2.tex + RELOC/doc/latex/binarytree/examples/binarytree-ex3.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex3.tex + RELOC/doc/latex/binarytree/examples/binarytree-ex4.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex4.tex + RELOC/doc/latex/binarytree/examples/btree-5_up_0,0,0_3729359_7458719_655360_0.7_0.7_-lrr-x--_-llrr-x--_-rll-x--_-rrll-x--.pdf +srccontainersize 18836 +srccontainerchecksum ff1e8ce1d07c2011624086ae5810220af3e28f19eba4dff9e090e757787797afded50d937a7c1f503eb32bdc91cee2b0b1b42486381b725e57a127e5751ae5d7 +srcfiles size=21 + RELOC/source/latex/binarytree/binarytree.dtx + RELOC/source/latex/binarytree/binarytree.ins +runfiles size=7 + RELOC/tex/latex/binarytree/binarytree.sty +catalogue-ctan /graphics/pgf/contrib/binarytree +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex pgf-tikz tree +catalogue-version 1.01 + +name binomexp +category Package +revision 15878 +shortdesc Calculate Pascal's triangle +relocated 1 +longdesc The package calculates and prints rows of Pascal's triangle. It +longdesc may be used: simply to print successive rows of the triangle, +longdesc or to print the rows inside an array or tabular. +containersize 2328 +containerchecksum 61cd0072f766bc4abb1e3ed828d06c0e0ae6fb74902ad86e6c4ff3279ddd84386bbb0b1d669d9e71eef362c8d50577047e6076b174ca5b54da8680a43c5e1715 +doccontainersize 66976 +doccontainerchecksum 9f8e24377ef858e0b3ecc94dc87eeeae08931084316034ea5e3de822ed8b6a65c4744b744a547aea19d3486bb6f2b04f46f1e7ec81cac2470d16b7134885d355 +docfiles size=22 + RELOC/doc/latex/binomexp/README details="Readme" + RELOC/doc/latex/binomexp/binomexp.pdf details="Package documentation" +srccontainersize 4600 +srccontainerchecksum 96ac7f02535a36555dc773b096324e821fa554423dc1d3fbb3436042a2ffa63e7d28b8d872b03b961143178aad40b6d14ef0be7378be99782e94f957889489d9 +srcfiles size=5 + RELOC/source/latex/binomexp/binomexp.dtx + RELOC/source/latex/binomexp/binomexp.ins +runfiles size=2 + RELOC/tex/latex/binomexp/binomexp.sty +catalogue-ctan /macros/latex/contrib/binomexp +catalogue-license lppl +catalogue-topics calculation maths +catalogue-version 1.0 + +name biochemistry-colors +category Package +revision 54512 +shortdesc Colors used to display amino acids, nucleotides, sugars or atoms in biochemistry +relocated 1 +longdesc Biochemistry-colors.sty defines the standard colors of +longdesc biochemistry for use with the color package and the xcolor +longdesc package. xcolor is loaded by Biochemistry-colors.sty. Colors +longdesc include: Shapely-colors for amino acids and nucleotides. +longdesc CPK-Colors (Corey, Pauling and Koltun) of elements. Jmol-colors +longdesc of elements, important isotopes and structures. Glycopedia +longdesc colors for sugars. +containersize 2848 +containerchecksum ff6e61f48eaae649c5b14b60e85c46743dabc6fb841f3f2bdda0723a5a6cfb7a45e21e48574e4bc558ddd436474c356c5d2f767cee1299da3ff67db5c70c03d0 +doccontainersize 67040 +doccontainerchecksum 0abc9a2d3318627f861be23bd175836efc6956147fbfc16f9ec84b4ff5f137f7910a12ec370c3baf3ad2dc08ca2ca197bd02e371ec258e9538eac4f11233f9d1 +docfiles size=50 + RELOC/doc/latex/biochemistry-colors/Biochemistry-colors.pdf details="Package documentation" + RELOC/doc/latex/biochemistry-colors/Biochemistry-colors.xls + RELOC/doc/latex/biochemistry-colors/README.txt details="Readme" +runfiles size=3 + RELOC/tex/latex/biochemistry-colors/Biochemistry-colors.sty +catalogue-also css-colors +catalogue-ctan /macros/latex/contrib/biochemistry-colors +catalogue-license lppl gpl +catalogue-topics colour +catalogue-version 1.00 + +name biocon +category Package +revision 15878 +shortdesc Typesetting biological species names +relocated 1 +longdesc The biocon--biological conventions--package aids the +longdesc typesetting of some biological conventions. At the moment, it +longdesc makes a good job of typesetting species names (and ranks below +longdesc the species level). A distinction is made between the Plant, +longdesc Fungi, Animalia and Bacteria kingdoms. There are default +longdesc settings for the way species names are typeset, but they can be +longdesc customized. Different default styles are used in different +longdesc situations. +containersize 3376 +containerchecksum 54676e4acaee07609c379d387af4f06b45a4bc0051a3333c250555536114b3862da73d70305b1f62adf7afca2b4a2157cce8afd9e20f10e49b01d4c2ad351cdb +doccontainersize 225784 +doccontainerchecksum c296c8402129338295a3043a66bab91a499b29703f7ecead0a045e0820ced683a4c25168ecdfc184c07282904afed3703b31f8ca707492a913de7c49a351c322 +docfiles size=121 + RELOC/doc/latex/biocon/COPYING + RELOC/doc/latex/biocon/INSTALL + RELOC/doc/latex/biocon/README details="Readme" + RELOC/doc/latex/biocon/biocon.nw + RELOC/doc/latex/biocon/literature.bib + RELOC/doc/latex/biocon/manual-old.pdf + RELOC/doc/latex/biocon/manual-old.tex + RELOC/doc/latex/biocon/manual.pdf details="Package documentation" + RELOC/doc/latex/biocon/manual.tex + RELOC/doc/latex/biocon/source.pdf + RELOC/doc/latex/biocon/source.tex +runfiles size=4 + RELOC/tex/latex/biocon/biocon-old.sty + RELOC/tex/latex/biocon/biocon.sty +catalogue-ctan /macros/latex/contrib/biocon +catalogue-license gpl +catalogue-topics biology + +name biolett-bst +category Package +revision 42217 +shortdesc A BibTeX style for the journal "Biology Letters" +relocated 1 +longdesc This package provides a BibTeX style (.bst) file for the +longdesc journal "Biology Letters" published by the Royal Society. This +longdesc style was produced independently and hence has no formal +longdesc approval from the Royal Society. +containersize 5696 +containerchecksum e593f073daea4a8326d0a472999c128f511becde100c5dbedd540fd6ea116c5585b2d3673165ed39abf1942fb66c8372ca1961cef90501244f5320119117af05 +doccontainersize 960 +doccontainerchecksum 7b3f9666225849463683a38a3ccb4e5bc9c0869312d31173f48776c2b209eb269309699b2173c2eb5fc9163baabefd1bf6cf288ca683142285dda6f0c6d95b61 +docfiles size=1 + RELOC/doc/bibtex/biolett-bst/README.txt details="Readme" +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-license lppl1 +catalogue-topics bibtex-sty journalpub biology + +name bitelist +category Package +revision 25779 +shortdesc Split list, in TeX's mouth +relocated 1 +longdesc The package provides commands for "splitting" a token list at +longdesc the first occurrence of another (specified) token list. I.e., +longdesc for given token lists s, t return b and the shortest a, such +longdesc that t = a s b. The package's mechanism differs from those of +longdesc packages providing similar features, in the following ways: the +longdesc method uses TeX's mechanism of reading delimited macro +longdesc parameters; splitting macros work by pure expansion, without +longdesc assignments; the operation is carried out in a single macro +longdesc call. A variant of the operation is provided, that retains +longdesc outer braces. +containersize 5352 +containerchecksum a2022ccc4f45f7a911eea4e99557764770b4e6f2ba0333e043fda2419e29d93bac40462fd36568354a415a9b27204a38620e6191fddcdb053f8956aac5747cbf +doccontainersize 362388 +doccontainerchecksum 5c3186464aaadbf269b26321ed9447e8a1633ca9b4a7b323da692277ab074f15b6c39df866eb41955dbd6ca8b0ff76a115786f3273fdb293bfb79893dfe0de99 +docfiles size=100 + RELOC/doc/generic/bitelist/README details="Readme" + RELOC/doc/generic/bitelist/bitelist.pdf details="Package documentation" +srccontainersize 6228 +srccontainerchecksum 0dfbf3dc2ad3b11ce91f1f5f6949f3d8559e0f90044abff431af556560382b5063a96e661c7e95667f3079a7386df85938e937743e2f185a13f4d8a2259fc4eb +srcfiles size=5 + RELOC/source/generic/bitelist/bitelist.tex + RELOC/source/generic/bitelist/srcfiles.tex +runfiles size=4 + RELOC/tex/generic/bitelist/bitedemo.tex + RELOC/tex/generic/bitelist/bitelist.sty +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-license lppl1.3 +catalogue-topics text-manip macro-supp +catalogue-version 0.1 + +name bithesis +category Package +revision 57388 +shortdesc Templates for the Beijing Institute of Technology +relocated 1 +longdesc This package establishes a simple and easy-to-use LaTeX +longdesc template for Beijing Institute of Technology dissertations, +longdesc including general undergraduate research papers and master's +longdesc theses. +containersize 3572 +containerchecksum 71f653b8fc691e24943605f2ab3bc9ce86c399302283382f34be8364ad4ffb39edc64a7e17e1b3ef81d34c3977290032739d4f38702397c70679693c22cae577 +doccontainersize 218936 +doccontainerchecksum 4c39f70287765a61ec3819223bf61aed3c3035b646c9a00df456160307dc5be962bbbff64383c79baa903cabe566405639672d669fc505efe6883a64638f8b66 +docfiles size=61 + RELOC/doc/latex/bithesis/README-zh.md details="Readme (Chinese)" + RELOC/doc/latex/bithesis/README.md details="Readme (English)" + RELOC/doc/latex/bithesis/bithesis.pdf details="Package documentation" + RELOC/doc/latex/bithesis/contributing-zh.md + RELOC/doc/latex/bithesis/contributing.md + RELOC/doc/latex/bithesis/dtx-style.sty +srccontainersize 9340 +srccontainerchecksum 681c9cda9aa111f809c33fccffd567c846fd13afddd5a09bb81d69390adc0ff6d1870b68f4a141e5ebbd7d83846423a0c1d21f43350b0c55cde1973fd2a9437c +srcfiles size=8 + RELOC/source/latex/bithesis/bithesis.dtx + RELOC/source/latex/bithesis/bithesis.ins +runfiles size=4 + RELOC/tex/latex/bithesis/bitart.cls + RELOC/tex/latex/bithesis/bitbook.cls +catalogue-contact-announce https://github.com/BITNP/BIThesis/releases +catalogue-contact-bugs https://github.com/BITNP/BIThesis/issues +catalogue-contact-home https://bithesis.bitnp.net +catalogue-contact-repository https://github.com/BITNP/BIThesis +catalogue-ctan /macros/latex/contrib/bithesis +catalogue-license lppl1.3 +catalogue-topics class dissertation chinese +catalogue-version 1.0.1 + +name bitpattern +category Package +revision 39073 +shortdesc Typeset bit pattern diagrams +relocated 1 +longdesc A package to typeset bit pattern diagrams such as those used to +longdesc describe hardware, data format or protocols. +containersize 2156 +containerchecksum 34a0ade2d1110a15618b2ecc7f46a413519a0864a2e5cd1e25eacb9dd76cc66b35565b4b8c015780fa1d3dc88e2237ae7de33c77e29fd5428758a526959625af +doccontainersize 175700 +doccontainerchecksum d1fd1b2b46d7846804c9163889bf3a96cda2e11e35de2328c9043f99ccd9d0778710219593565ec9231775e1404d713edd7998e3fa909ada7dee35333137b56f +docfiles size=44 + RELOC/doc/latex/bitpattern/README.md details="Readme" + RELOC/doc/latex/bitpattern/bitpattern.pdf details="Package documentation" +srccontainersize 6764 +srccontainerchecksum 8c5860792394f85ab87d2a3ab234496a1f550a24f98a5e2f8f4d815b24e4fd3e7d0a1ffefac3912536d22cd39fdbd91db013b1c8e05d4de92aca47db679fa7e3 +srcfiles size=8 + RELOC/source/latex/bitpattern/bitpattern.dtx + RELOC/source/latex/bitpattern/bitpattern.ins +runfiles size=2 + RELOC/tex/latex/bitpattern/bitpattern.sty +catalogue-ctan /macros/latex/contrib/bitpattern +catalogue-license lppl +catalogue-topics engineering comp-sci comp-net + +name bitset +category Package +revision 53837 +shortdesc Handle bit-vector datatype +relocated 1 +longdesc This package defines and implements the data type bit set, a +longdesc vector of bits. The size of the vector may grow dynamically. +longdesc Individual bits can be manipulated. +depend bigintcalc +containersize 5712 +containerchecksum b1c9121312404d3daf6907623972c35e0f36cfb4197e589bd937c145506cb5a2d9d8c1f665ae3b4d3ec093e55bb146c0b67cd0858425b704fe29989b9924ccb7 +doccontainersize 616520 +doccontainerchecksum a5a3ba9d27dc3d9658c1d261f798fdc5e6dc4cedd85287ef77d2a0341048d71f8575d4fbd711e499233e0991c51765953931d87d40dd22fa2a4e8ecb9f2a8dab +docfiles size=154 + RELOC/doc/latex/bitset/README.md + RELOC/doc/latex/bitset/bitset.pdf details="Package documentation" +srccontainersize 14628 +srccontainerchecksum 40580c17ac81137d533eb013ed14bc092281b354ce42883c0a3c33ee7843be7ebed0ce642746ba9e173bedf8ee6f6c243b65e692ef2a50654ada23e323166c89 +srcfiles size=19 + RELOC/source/latex/bitset/bitset.dtx +runfiles size=9 + RELOC/tex/generic/bitset/bitset.sty +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-license lppl1.3 +catalogue-topics data-manip +catalogue-version 1.3 + +name bitter +category Package +revision 56026 +shortdesc The Bitter family of fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX +longdesc support for the Bitter family of fonts, designed by Sol Matas +longdesc for Huerta Tipografica. Bitter is a contemporary slab-serif +longdesc typeface for text. There are regular and bold weights and an +longdesc italic, but no bold italic. +execute addMap bitter.map +containersize 191600 +containerchecksum e624523e0e46340a1fd4ecb3db0487bac906169dc811886d26783b453a477605618cf211584c5aa44887f39d5d97ca567afee9f5f8fe6443284467f136d25588 +doccontainersize 16564 +doccontainerchecksum d4fc5b7c62dc834cfab6771010abf0e38000ec1a07447237288c9fa1747643dcff158d02707746d2965226049e5decc6af64a66ab8a92354ffa6e8df2e85800f +docfiles size=8 + RELOC/doc/fonts/bitter/OFL.txt + RELOC/doc/fonts/bitter/README details="Readme" + RELOC/doc/fonts/bitter/bitter-samples.pdf details="Package documentation" + RELOC/doc/fonts/bitter/bitter-samples.tex +runfiles size=116 + RELOC/fonts/enc/dvips/bitter/bttr_6upxhe.enc + RELOC/fonts/enc/dvips/bitter/bttr_72jdjw.enc + RELOC/fonts/enc/dvips/bitter/bttr_azarls.enc + RELOC/fonts/enc/dvips/bitter/bttr_b5i5mx.enc + RELOC/fonts/enc/dvips/bitter/bttr_f2umud.enc + RELOC/fonts/enc/dvips/bitter/bttr_gljolu.enc + RELOC/fonts/enc/dvips/bitter/bttr_ncjtqa.enc + RELOC/fonts/enc/dvips/bitter/bttr_ssdm5h.enc + RELOC/fonts/enc/dvips/bitter/bttr_vzfpnj.enc + RELOC/fonts/enc/dvips/bitter/bttr_w3wxei.enc + RELOC/fonts/enc/dvips/bitter/bttr_x2bjkb.enc + RELOC/fonts/map/dvips/bitter/bitter.map + RELOC/fonts/tfm/huerta/bitter/Bttr-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Bold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Italic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Regular-tlf-t1.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bttr-Regular-tlf-ts1.tfm + RELOC/fonts/truetype/huerta/bitter/Bitter-Bold.ttf + RELOC/fonts/truetype/huerta/bitter/Bitter-Italic.ttf + RELOC/fonts/truetype/huerta/bitter/Bitter-Regular.ttf + RELOC/fonts/type1/huerta/bitter/Bttr-Bold.pfb + RELOC/fonts/type1/huerta/bitter/Bttr-Italic.pfb + RELOC/fonts/type1/huerta/bitter/Bttr-Regular.pfb + RELOC/fonts/vf/huerta/bitter/Bttr-Bold-tlf-ly1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Bold-tlf-t1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Bold-tlf-ts1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Italic-tlf-ly1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Italic-tlf-t1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Italic-tlf-ts1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Regular-tlf-ly1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Regular-tlf-t1.vf + RELOC/fonts/vf/huerta/bitter/Bttr-Regular-tlf-ts1.vf + RELOC/tex/latex/bitter/LY1Bttr-TLF.fd + RELOC/tex/latex/bitter/OT1Bttr-TLF.fd + RELOC/tex/latex/bitter/T1Bttr-TLF.fd + RELOC/tex/latex/bitter/TS1Bttr-TLF.fd + RELOC/tex/latex/bitter/bitter.sty +catalogue-contact-home https://fonts.google.com/specimen/Bitter +catalogue-ctan /fonts/bitter +catalogue-license lppl ofl +catalogue-topics font font-serif font-proportional font-body font-ttf font-type1 font-supp font-t1enc + +name bizcard +category Package +revision 15878 +shortdesc Typeset business cards +relocated 1 +longdesc This is an adaption for current LaTeX of a LaTeX 2.09 style by +longdesc Silvano Balemi. It produces cards at the normal US card size, +longdesc 76.2mm x 50.8mm. +containersize 2032 +containerchecksum 1575499c7118a96f3273c5b8d68e25a20410daeecbce48d1e6355039b97867b34a06c40785052d378dffbc80b862beafc06b9fedf62254d8b31445d8f95cdd29 +doccontainersize 74552 +doccontainerchecksum f529ec77b370def29ad77927170874dc02af37bfb9f57a4e1383b5adaa93f6e59aa33df06d40a80e2374db514f55e2f115e7c8f22e4c92cbd3cb621d8a735bdd +docfiles size=25 + RELOC/doc/latex/bizcard/bizcard.pdf details="Package documentation" + RELOC/doc/latex/bizcard/bizex.pdf details="Example of use" + RELOC/doc/latex/bizcard/bizex.tex +srccontainersize 4376 +srccontainerchecksum ea5567a5b3f2a8f70954ca9b5939cb4f9cda05dd128da4d6592dcab25babf284d5fdb2c6af7a31e181f871802ab267fe012d9da3df963be19d789c6984c88cd5 +srcfiles size=5 + RELOC/source/latex/bizcard/bizcard.drv + RELOC/source/latex/bizcard/bizcard.dtx + RELOC/source/latex/bizcard/bizcard.ins +runfiles size=1 + RELOC/tex/latex/bizcard/bizcard.sty +catalogue-ctan /macros/latex/contrib/bizcard +catalogue-license gpl +catalogue-topics file-card +catalogue-version 1.1 + +name blacklettert1 +category Package +revision 15878 +shortdesc T1-encoded versions of Haralambous old German fonts +relocated 1 +longdesc This package contains virtual fonts that offer T1-alike encoded +longdesc variants of Yannis Haralambous's old German fonts Gothic, +longdesc Schwabacher and Fraktur (which are also available in Adobe type +longdesc 1 format). The package includes LaTeX macros to embed the fonts +longdesc into the LaTeX font selection scheme. +containersize 12436 +containerchecksum eb7d531fd91c6d46145c76a08678033e20097805b3a911fa85194217104e071c56d3842cee83c275a11cd4cdee162aee4630d86025cab76806f20e19c975076d +doccontainersize 88892 +doccontainerchecksum a1f18f4adc7f26b9e71db6f171ddb4a8eb15912cf57445110a9da52eb4e0b017a0ace85ddc46ec2df36e73ee3d9bf8dee087fe4467f46bb2bd7f708108585412 +docfiles size=29 + RELOC/doc/fonts/blacklettert1/COPYING + RELOC/doc/fonts/blacklettert1/INSTALL + RELOC/doc/fonts/blacklettert1/README details="Readme" + RELOC/doc/fonts/blacklettert1/blacklettert1.pdf +srccontainersize 42424 +srccontainerchecksum 0951e374a22fda09a3fe51e3a7743874c774a756560fb63a68aa199ad2cca674ee87d1dd30b98709b0e74e018e0eec878316ff303575eabb014158311f22a273 +srcfiles size=155 + RELOC/source/fonts/blacklettert1/Makefile + RELOC/source/fonts/blacklettert1/blacklettert1.dtx + RELOC/source/fonts/blacklettert1/blacklettert1.ins + RELOC/source/fonts/blacklettert1/cmbsy10.pl + RELOC/source/fonts/blacklettert1/cmbx10.pl + RELOC/source/fonts/blacklettert1/cmmi10.pl + RELOC/source/fonts/blacklettert1/cmmib10.pl + RELOC/source/fonts/blacklettert1/cmr10.pl + RELOC/source/fonts/blacklettert1/cmr7.pl + RELOC/source/fonts/blacklettert1/cmsy10.pl + RELOC/source/fonts/blacklettert1/cmu10.pl + RELOC/source/fonts/blacklettert1/ecbx1000.pl + RELOC/source/fonts/blacklettert1/ecrm0700.pl + RELOC/source/fonts/blacklettert1/ecrm1000.pl + RELOC/source/fonts/blacklettert1/yfrak.pl + RELOC/source/fonts/blacklettert1/ygoth.pl + RELOC/source/fonts/blacklettert1/yswab.pl +runfiles size=14 + RELOC/fonts/tfm/public/blacklettert1/tfrak.tfm + RELOC/fonts/tfm/public/blacklettert1/tfrakls.tfm + RELOC/fonts/tfm/public/blacklettert1/tgoth.tfm + RELOC/fonts/tfm/public/blacklettert1/tswab.tfm + RELOC/fonts/vf/public/blacklettert1/tfrak.vf + RELOC/fonts/vf/public/blacklettert1/tfrakls.vf + RELOC/fonts/vf/public/blacklettert1/tgoth.vf + RELOC/fonts/vf/public/blacklettert1/tswab.vf + RELOC/tex/latex/blacklettert1/t1yfrak.fd +catalogue-ctan /fonts/gothic/blacklettert1 +catalogue-license other-free +catalogue-topics font font-virtual font-gothic + +name blindtext +category Package +revision 25039 +shortdesc Producing 'blind' text for testing +relocated 1 +longdesc The package provides the commands \blindtext and \Blindtext for +longdesc creating 'blind' text useful in testing new classes and +longdesc packages, and \blinddocument, \Blinddocument for creating an +longdesc entire random document with sections, lists, mathematics, etc. +longdesc The package supports three languages, english, (n)german and +longdesc latin; the latin option provides a short "lorem ipsum" (for a +longdesc fuller lorem ipsum text, see the lipsum package). +containersize 10516 +containerchecksum 3baf7b9db502824ebf1cf8892cafb189654ad0a91a8cfba399e103b417a91e4f137918b73201fb5988c8dcecabc557865e190cdf77af35e634d0519d52715795 +doccontainersize 341172 +doccontainerchecksum 290a4c76fbeb8003c6972933baaa95e62b37310594e459e27083326977d370c1408de95eae44d05d848c61eb22b555792e5e38f4a0b70267d6a87c0314268501 +docfiles size=85 + RELOC/doc/latex/blindtext/README details="Readme" + RELOC/doc/latex/blindtext/blindtext.pdf details="Package documentation" +srccontainersize 17668 +srccontainerchecksum 2ca8cbd44a56c36ea66fbad415524697009af4c7e39164bb43d9c689743666c05aded6042393bba6d658a0be1df3ca5ac64a6e8da2e9c726fbcd1500239c4532 +srcfiles size=25 + RELOC/source/latex/blindtext/blindtext.dtx + RELOC/source/latex/blindtext/blindtext.ins + RELOC/source/latex/blindtext/blindtext_american.dtx + RELOC/source/latex/blindtext/blindtext_catalan.dtx + RELOC/source/latex/blindtext/blindtext_english.dtx + RELOC/source/latex/blindtext/blindtext_french.dtx + RELOC/source/latex/blindtext/blindtext_german.dtx + RELOC/source/latex/blindtext/blindtext_latin.dtx + RELOC/source/latex/blindtext/blindtext_ngerman.dtx +runfiles size=12 + RELOC/tex/latex/blindtext/blindtext.sty +catalogue-also kantlipsum +catalogue-ctan /macros/latex/contrib/blindtext +catalogue-license lppl +catalogue-topics macro-supp dummy-gen +catalogue-version 2.0 + +name blkarray +category Package +revision 36406 +shortdesc Extended array and tabular +relocated 1 +longdesc An experimental package which implements an environment, +longdesc blockarray, that may be used in the same way as the array or +longdesc tabular environments of standard LaTeX, or their extended +longdesc versions defined in array. If used in math-mode, blockarray +longdesc acts like array, otherwise it acts like tabular. The package +longdesc implements a new method of defining column types, and also +longdesc block and block* environments, for specifying sub-arrays of the +longdesc main array. What's more, the \footnote command works inside a +longdesc blockarray. +containersize 18876 +containerchecksum 5ed66db84619cd9130e68e05acf617ed0007db9ea35895e31ad96b543f7d6a01fddf00304f05b0fb71ec9484556326ebad1d895b81b821b9f19fe6ae9f3ee12e +doccontainersize 294168 +doccontainerchecksum 81f1d5b5609531deda3475eb906b841d33a6e01ee49c54102474d852856172954d943ee02648fd1ce74d5bf4030db8d36c7b6786c9fe3105f3be08fea36fe207 +docfiles size=75 + RELOC/doc/latex/blkarray/README + RELOC/doc/latex/blkarray/blkarray.pdf details="Package documentation" + RELOC/doc/latex/blkarray/blkarray.tex +runfiles size=18 + RELOC/tex/latex/blkarray/blkarray.sty +catalogue-ctan /macros/latex/contrib/blkarray +catalogue-license lppl +catalogue-topics maths table +catalogue-version 0.07 + +name blochsphere +category Package +revision 38388 +shortdesc Draw pseudo-3D diagrams of Bloch spheres +relocated 1 +longdesc This package is used to draw pseudo-3D Blochsphere diagrams. It +longdesc supports various annotations, such as great and small circles, +longdesc axes, rotation markings and state vectors. It can be used in a +longdesc standalone fashion, or nested within a tikzpicture environment +longdesc by setting the environment option nested to true. +containersize 3816 +containerchecksum cf7a7865e3e994f2b951a24018b1b1b71ce2b61542751f495dc14ebc4964a1f4a2833d95bde9b8920d4a4fd60ccc03760e66b8ab64f6b14ff77b9206c98e19a2 +doccontainersize 99736 +doccontainerchecksum 3a9706ba73e8da7280495f9d32d32a38c9119bac9b8497e7e1bc69a704fde2552848d60ab0ec175544046fdc06b3e8887b4eaeb1c50a5796144cd56e4a44d9e3 +docfiles size=39 + RELOC/doc/latex/blochsphere/LICENSE + RELOC/doc/latex/blochsphere/README.md details="Readme" + RELOC/doc/latex/blochsphere/blochsphere.pdf details="Package documentation" + RELOC/doc/latex/blochsphere/example.pdf details="Example diagram" + RELOC/doc/latex/blochsphere/example.tex +srccontainersize 7340 +srccontainerchecksum d5c54403afb2cc4db7c5340fe6aaec54da4066f6e9898cbf1f1d2ee3d4ba9a001699e8e32cf38fd87b355c1adbbbcb649635f9abc07976c2139fa6e851a987ac +srcfiles size=9 + RELOC/source/latex/blochsphere/blochsphere.dtx + RELOC/source/latex/blochsphere/blochsphere.ins +runfiles size=5 + RELOC/tex/latex/blochsphere/blochsphere.sty +catalogue-ctan /graphics/pgf/contrib/blochsphere +catalogue-license lppl1.3 +catalogue-topics physics pgf-tikz +catalogue-version 1.1 + +name block +category Package +revision 17209 +shortdesc A block letter style for the letter class +relocated 1 +longdesc A style file for use with the letter class that overwrites the +longdesc \opening and \closing macros so that letters can be styled with +longdesc the block letter style instead of the default style. Thus, the +longdesc return address, the closing, and the signature appear flushed +longdesc on the left margin. +containersize 924 +containerchecksum 0dedf4b50238e3f12c3d17eca19e4640f2a36511fd65fe4d0baf4f221df279a5d9f28024cb0e20f528e32921e1d6b4c785071210e5ff6471c73e42e58faf89a5 +doccontainersize 60880 +doccontainerchecksum 77b8c5b6949fb7eade5eee082be1c28433136b8374d45f255a80daa0c7a0340a3154a9f6f174fc52b25c252f1b5a2304b32e26c6d6a2f9af033569d7ba602952 +docfiles size=17 + RELOC/doc/latex/block/block.pdf details="Package documentation" + RELOC/doc/latex/block/block.tex +runfiles size=1 + RELOC/tex/latex/block/block.sty +catalogue-ctan /macros/latex/contrib/block +catalogue-license pd +catalogue-topics letter + +name blockdraw_mp +category Package +revision 15878 +shortdesc Block diagrams and bond graphs, with MetaPost +relocated 1 +longdesc A set of simple MetaPost macros for the task. While the task is +longdesc not itself difficult to program, it is felt that many users +longdesc will be happy to have a library for the job.. +containersize 4856 +containerchecksum 86bd39051095fde2a99b232b1139c4c196467d0e1825b3c1c73bd25551a55edb6417a0810b20c4ac3d53ff82519364f2ac72fde3845a750396a4f6a8966c73ef +doccontainersize 276436 +doccontainerchecksum 01fc4226a952c76b52726d1217649d9d98ec708163e4a9b997e36f505b385ed145182bca747a2b5334cfe8b4663d010a699664728c5be05cc4daba63ff1f3c00 +docfiles size=87 + RELOC/doc/metapost/blockdraw_mp/README details="Readme" + RELOC/doc/metapost/blockdraw_mp/blockdraw_mp.pdf details="Outline package documentation" + RELOC/doc/metapost/blockdraw_mp/blockdraw_mp.tex + RELOC/doc/metapost/blockdraw_mp/bonddemo.pdf details="Example 1" + RELOC/doc/metapost/blockdraw_mp/cascadedemo.pdf details="Example 1" + RELOC/doc/metapost/blockdraw_mp/tiddetext.sty + RELOC/doc/metapost/blockdraw_mp/tighttoc.sty +runfiles size=8 + RELOC/metapost/blockdraw_mp/blockdraw.mp + RELOC/metapost/blockdraw_mp/bonddemo.mp + RELOC/metapost/blockdraw_mp/bondgraph.mp + RELOC/metapost/blockdraw_mp/cascadedemo.mp + RELOC/metapost/blockdraw_mp/docblockprefs.mp + RELOC/metapost/blockdraw_mp/shiftoff.mp +catalogue-ctan /graphics/metapost/contrib/macros/blockdraw_mp +catalogue-license lppl +catalogue-topics diagram-block + +name bloques +category Package +revision 22490 +shortdesc Generate control diagrams +relocated 1 +longdesc The package uses TikZ to provide commands for generating +longdesc control diagrams (specially in power electronics). +containersize 1748 +containerchecksum 06b18467956f6782de7e0dad41f66a79e1c7dc5c3ff007a8970f24740dd5edfae0e375288c3510a8acfcdfda7b568f2316827cad1b6a006789afe8a31f829f4f +doccontainersize 124652 +doccontainerchecksum fe37018f08820f21bf188301d0145e42b50563d8dbd8f9b232e6fa1b7eecda931e8a42d40f47ed7cbae24235833eebab874e30dd24d8393dc728d6fcb10057e1 +docfiles size=35 + RELOC/doc/latex/bloques/README details="Readme" + RELOC/doc/latex/bloques/example.pdf details="Command listing and examples" + RELOC/doc/latex/bloques/example.tex +runfiles size=3 + RELOC/tex/latex/bloques/bloques.sty +catalogue-ctan /graphics/pgf/contrib/bloques +catalogue-license lppl1.3 +catalogue-topics diagram-ctrl +catalogue-version 1.0 + +name blowup +category Package +revision 46213 +shortdesc Upscale or downscale all pages of a document +relocated 1 +longdesc The package blowup only defines the user-level macro \blowUp, +longdesc which can be used to upscale or downscale all pages of a +longdesc document. It is similar to the TeX primitive \magnification but +longdesc more accurate and user-friendly. +containersize 2644 +containerchecksum 6ccf18bd12423d3a561e59a2ed9c8e2c7586fa65e47ab784c71111318fe370615acec672ca0e89bde159ec946abc1d4233f8367cc2e6f6f28f3f52dae6bc93e1 +doccontainersize 317720 +doccontainerchecksum 962ab6dbac803f5043df96d178452da2e4ec2db96a7fe9a8400eff658e61169faff501cab3e7e078a18738d683c3bf1ec09a14f70fecbe5c8190b35101196ce2 +docfiles size=99 + RELOC/doc/latex/blowup/README.md details="Readme" + RELOC/doc/latex/blowup/blowup-ex1.pdf + RELOC/doc/latex/blowup/blowup-ex1.tex + RELOC/doc/latex/blowup/blowup-ex2.pdf + RELOC/doc/latex/blowup/blowup-ex2.tex + RELOC/doc/latex/blowup/blowup-ex3.pdf + RELOC/doc/latex/blowup/blowup-ex3.tex + RELOC/doc/latex/blowup/blowup-ex4.pdf + RELOC/doc/latex/blowup/blowup-ex4.tex + RELOC/doc/latex/blowup/blowup-ex5.pdf + RELOC/doc/latex/blowup/blowup-ex5.tex + RELOC/doc/latex/blowup/blowup.pdf details="Package documentation" +srccontainersize 5160 +srccontainerchecksum 6dad611292dae9ea8fe308beb3796e350a3beeaafc16f53b19d49863d5ab4321a94dfe41b6c0ecce236c922a4e0ef766082656bc41583bcbec42d7ccaa35d544 +srcfiles size=5 + RELOC/source/latex/blowup/blowup.dtx + RELOC/source/latex/blowup/blowup.ins +runfiles size=2 + RELOC/tex/latex/blowup/blowup.sty +catalogue-contact-bugs https://github.com/rolfn/blowup/issues +catalogue-contact-repository https://github.com/rolfn/blowup +catalogue-ctan /macros/latex/contrib/blowup +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.0 + +name blox +category Package +revision 57949 +shortdesc Draw block diagrams, using TikZ +relocated 1 +longdesc This package, along with TikZ, will typeset block diagrams for +longdesc use with programming and control theory. It is an English +longdesc translation of the schemabloc package. +containersize 2328 +containerchecksum 4f874416f3115f9abc5514d805952d576d3ee597475ad27523990820d485a3601e43e503a23d948a875db343ce4817eb7fedae6aef48a78a38a1656478190b74 +doccontainersize 378432 +doccontainerchecksum a9b8c964c8a43d9d6b0c4b5555c2c555246d04ad0c0b1209ddf953958f52af8e2ce3118f573d12c0bf727a2545a326bd284e61a27afd417cb672480e1025a5ac +docfiles size=104 + RELOC/doc/latex/blox/README details="Readme" + RELOC/doc/latex/blox/blox.pdf details="Package documentation" +srccontainersize 13840 +srccontainerchecksum 7c8ab912484f90d5aa8f406e2d3c6176eb8908457cb184260c600fd72fb91c5ecd179ec4d80c55b6eddd7607c7fc36e3ec51af5fff31e9352b17360c470e8405 +srcfiles size=15 + RELOC/source/latex/blox/blox.dtx +runfiles size=2 + RELOC/tex/latex/blox/blox.sty +catalogue-also schemabloc +catalogue-ctan /graphics/pgf/contrib/blox +catalogue-license lppl1.3 +catalogue-topics graphics diagram-block pgf-tikz +catalogue-version 2.51 + +name bnumexpr +category Package +revision 49643 +shortdesc Extends eTeX's \numexpr...\relax construct to big integers +relocated 1 +longdesc The package extends e-TeX \numexpr...\relax operation to allow +longdesc big integers, powers, factorials, truncated division and its +longdesc associated modulo. By default, bnumexpr loads package xintcore +longdesc (part of the xint bundle) and uses its arithmetic macros. +containersize 3720 +containerchecksum c4bf69cf261c8545aeffe69c22e0a018afab5f919aa186efbdae0d0eff6728f36f0ca94831cbef7828e9df349bc2e7eed22c284cb41924b83464efa51418b22e +doccontainersize 90596 +doccontainerchecksum 2e1430651869f89d3b1ecd146858b004ea04e6506cad29bcc131761b975a89671504b22e7bbe8bdd9e6be1d513f28f85e073a0f123e21e12584782db5242a50c +docfiles size=27 + RELOC/doc/latex/bnumexpr/README details="Readme" + RELOC/doc/latex/bnumexpr/README.md + RELOC/doc/latex/bnumexpr/bnumexpr.pdf details="Package documentation" + RELOC/doc/latex/bnumexpr/bnumexpr.tex + RELOC/doc/latex/bnumexpr/bnumexprchanges.tex +srccontainersize 16944 +srccontainerchecksum 25488522b3ad578b8c2fe5e418c5a6d1bf6295de7f16e743dbe90417ca36a8888309a8b6e56bcd93f72c89b02841f0b1326351f6d47840a1fc59042d11641186 +srcfiles size=14 + RELOC/source/latex/bnumexpr/bnumexpr.dtx + RELOC/source/latex/bnumexpr/bnumexpr.ins +runfiles size=4 + RELOC/tex/latex/bnumexpr/bnumexpr.sty +catalogue-ctan /macros/latex/contrib/bnumexpr +catalogue-license lppl1.3c +catalogue-topics arithmetic calculation +catalogue-version 1.2d + +name bodegraph +category Package +revision 20047 +shortdesc Draw Bode, Nyquist and Black plots with gnuplot and TikZ +relocated 1 +longdesc The package provides facilities to draw Bode, Nyquist and Black +longdesc plots using Gnuplot and Tikz. Elementary Transfer Functions and +longdesc basic correctors are preprogrammed for use. +containersize 16020 +containerchecksum eb4be1d54f84a372bda79a35aa928be028aa3fdd13c589143e3bfbdd111f4819ac7927bc9eb7473c64fb9035b5bbab789b55a5967e4569e916a7fe516933612d +doccontainersize 343180 +doccontainerchecksum 479d5d95643a0b5a673df4d48049f6a7d89b4dc8d1511676d6ff53e039f65fb27994e35d3db3adeef0cdb30658d3eaa454d997ab4649567148fe90938602024c +docfiles size=281 + RELOC/doc/latex/bodegraph/README details="Readme (bilingual)" + RELOC/doc/latex/bodegraph/bodegraph.pdf details="Package documentation (French with some English)" + RELOC/doc/latex/bodegraph/bodegraph.tex + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/1.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/1.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/10.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/10.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/11.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/11.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/12.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/12.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/13.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/13.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/14.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/14.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/15.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/15.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/16.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/16.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/17.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/17.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/18.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/18.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/19.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/19.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/20.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/20.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/21.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/21.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/22.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/22.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/23.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/23.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/24.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/24.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/25.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/25.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/26.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/26.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/27.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/27.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/28.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/28.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/29.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/29.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/3.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/3.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/30.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/30.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/31.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/31.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/32.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/32.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/33.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/33.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/34.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/34.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/35.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/35.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/36.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/36.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/37.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/37.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/38.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/38.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/39.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/39.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/4.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/4.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/40.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/40.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/41.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/41.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/42.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/42.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/43.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/43.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/44.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/44.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/45.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/45.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/46.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/46.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/47.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/47.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/48.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/48.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/49.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/49.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/5.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/5.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/50.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/50.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/51.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/51.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/52.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/52.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/53.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/53.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/54.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/54.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/55.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/55.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/56.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/56.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/57.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/57.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/58.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/58.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/59.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/59.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/6.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/6.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/60.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/60.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/61.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/61.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/62.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/62.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/63.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/63.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/64.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/64.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/66.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/66.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/67.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/67.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/68.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/68.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/69.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/69.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/7.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/7.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/70.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/70.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/72.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/72.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/73.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/73.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/74.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/74.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/75.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/75.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/76.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/76.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/78.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/78.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/79.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/79.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/8.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/8.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/81.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/81.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/82.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/82.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/83.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/83.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/84.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/84.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/85.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/85.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/86.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/86.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/87.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/87.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/89.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/89.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/9.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/9.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/90.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/90.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/91.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/91.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/93.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/93.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/94.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/94.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/95.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/95.table +runfiles size=18 + RELOC/tex/latex/bodegraph/bodegraph.sty +catalogue-ctan /graphics/pgf/contrib/bodegraph +catalogue-license lppl +catalogue-topics engineering graphics-plot pgf-tikz +catalogue-version 1.4 + +name bohr +category Package +revision 54512 +shortdesc Simple atom representation according to the Bohr model +relocated 1 +longdesc The package provides means for the creation of simple Bohr +longdesc models of atoms up to the atomic number 112. In addition, +longdesc commands are provided to convert atomic numbers to element +longdesc symbols or element names and vice versa. +containersize 3644 +containerchecksum 0f362638797d3adb338afa02589587406af7ca58487e6b61264fa60b539573d4198878a474da00e7a50bebd5dbe28f0dfc373c538a9bfbc11e84566ef586a5a3 +doccontainersize 424416 +doccontainerchecksum 5a802de7f7a8871a7095a54a1b48ce80d1d1e3134c70c7d93944e88aae44a8885ce28d65069ff44307c8395a666df386b03fd1f9c72b526a8a7a466ff5d438d2 +docfiles size=107 + RELOC/doc/latex/bohr/README details="Readme" + RELOC/doc/latex/bohr/bohr_en.pdf details="Package documentation" + RELOC/doc/latex/bohr/bohr_en.tex +runfiles size=4 + RELOC/tex/latex/bohr/bohr.sty +catalogue-contact-repository https://github.com/cgnieder/bohr/ +catalogue-ctan /macros/latex/contrib/bohr +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 1.0 + +name boisik +category Package +revision 15878 +shortdesc A font inspired by Baskerville design +relocated 1 +longdesc Boisik is a serif font set (inspired by the Baskerville +longdesc typeface), written in Metafont. The set comprises roman and +longdesc italic text fonts and maths fonts. LaTeX support is offered for +longdesc use with OT1, IL2 and OM* encodings. +containersize 215572 +containerchecksum 48403f4b18cb23e7e16e3cbf19d066dc7e1576f4d9ae42b94a4a34508905f5e6e2f8f60f2de7881a29b8525c86a8120a76f1f66f8b9ea047da0a884637b1bb9e +doccontainersize 939068 +doccontainerchecksum c68e8434fe456c5e58a6ebb9e744c81dfba5098c0fb12024de750f73022e300016a424bd1ad9cc85c3122c9a0c863737b2e27f2b151667955f92ebbdc060c6bd +docfiles size=461 + RELOC/doc/fonts/boisik/README details="Readme" + RELOC/doc/fonts/boisik/example/boisik-idiot.pdf details="Running text, in the font" language="cs" + RELOC/doc/fonts/boisik/example/boisik-idiot.tex + RELOC/doc/fonts/boisik/example/boisik.pdf details="Brief outline, in the font" + RELOC/doc/fonts/boisik/example/boisik.tex + RELOC/doc/fonts/boisik/example/bskrlogo10.mf + RELOC/doc/fonts/boisik/example/table.pdf details="Font table" + RELOC/doc/fonts/boisik/example/table.tex + RELOC/doc/fonts/boisik/example/testfont.pdf + RELOC/doc/fonts/boisik/example/testfont.tex +runfiles size=670 + RELOC/fonts/source/public/boisik/bskarr10.mf + RELOC/fonts/source/public/boisik/bskarrows.mf + RELOC/fonts/source/public/boisik/bskbase.mf + RELOC/fonts/source/public/boisik/bskex10.mf + RELOC/fonts/source/public/boisik/bskext.mf + RELOC/fonts/source/public/boisik/bskhc10.mf + RELOC/fonts/source/public/boisik/bski10-TS1.mf + RELOC/fonts/source/public/boisik/bski10.mf + RELOC/fonts/source/public/boisik/bskib10.mf + RELOC/fonts/source/public/boisik/bskiol10.mf + RELOC/fonts/source/public/boisik/bskital.mf + RELOC/fonts/source/public/boisik/bskiu10.mf + RELOC/fonts/source/public/boisik/bskiub10.mf + RELOC/fonts/source/public/boisik/bskletters-i.mf + RELOC/fonts/source/public/boisik/bskletters-o.mf + RELOC/fonts/source/public/boisik/bskletters-r.mf + RELOC/fonts/source/public/boisik/bskligtab-i.mf + RELOC/fonts/source/public/boisik/bskligtab-sc.mf + RELOC/fonts/source/public/boisik/bskligtab.mf + RELOC/fonts/source/public/boisik/bsklist-T1.mf + RELOC/fonts/source/public/boisik/bsklist-TS1.mf + RELOC/fonts/source/public/boisik/bsklist-ar.mf + RELOC/fonts/source/public/boisik/bsklist-bb.mf + RELOC/fonts/source/public/boisik/bsklist-ex.mf + RELOC/fonts/source/public/boisik/bsklist-lc.mf + RELOC/fonts/source/public/boisik/bsklist-ma.mf + RELOC/fonts/source/public/boisik/bsklist-mi-up.mf + RELOC/fonts/source/public/boisik/bsklist-mi.mf + RELOC/fonts/source/public/boisik/bsklist-ms.mf + RELOC/fonts/source/public/boisik/bsklist-sc.mf + RELOC/fonts/source/public/boisik/bsklist-sy.mf + RELOC/fonts/source/public/boisik/bsklist-uc.mf + RELOC/fonts/source/public/boisik/bskma10.mf + RELOC/fonts/source/public/boisik/bskmab10.mf + RELOC/fonts/source/public/boisik/bskmath.mf + RELOC/fonts/source/public/boisik/bskmathma.mf + RELOC/fonts/source/public/boisik/bskmathms.mf + RELOC/fonts/source/public/boisik/bskmathsy.mf + RELOC/fonts/source/public/boisik/bskmi10.mf + RELOC/fonts/source/public/boisik/bskmib10.mf + RELOC/fonts/source/public/boisik/bskms10.mf + RELOC/fonts/source/public/boisik/bskmsb10.mf + RELOC/fonts/source/public/boisik/bskmsbsl10.mf + RELOC/fonts/source/public/boisik/bskmssl10.mf + RELOC/fonts/source/public/boisik/bskr10-T1.mf + RELOC/fonts/source/public/boisik/bskr10-TS1.mf + RELOC/fonts/source/public/boisik/bskr10.mf + RELOC/fonts/source/public/boisik/bskrb10.mf + RELOC/fonts/source/public/boisik/bskrc10.mf + RELOC/fonts/source/public/boisik/bskrcb10.mf + RELOC/fonts/source/public/boisik/bskrf10.mf + RELOC/fonts/source/public/boisik/bskrl10.mf + RELOC/fonts/source/public/boisik/bskrol10.mf + RELOC/fonts/source/public/boisik/bskroman.mf + RELOC/fonts/source/public/boisik/bskrsb10.mf + RELOC/fonts/source/public/boisik/bskrsl10.mf + RELOC/fonts/source/public/boisik/bskrw10.mf + RELOC/fonts/source/public/boisik/bsksc.mf + RELOC/fonts/source/public/boisik/bsksc10.mf + RELOC/fonts/source/public/boisik/bsksy10.mf + RELOC/fonts/source/public/boisik/bsksyb10.mf + RELOC/fonts/source/public/boisik/bsksybsl10.mf + RELOC/fonts/source/public/boisik/bsksymbols.mf + RELOC/fonts/source/public/boisik/bsksyol10.mf + RELOC/fonts/source/public/boisik/bsksysl10.mf + RELOC/fonts/tfm/public/boisik/bskarr10.tfm + RELOC/fonts/tfm/public/boisik/bskex10.tfm + RELOC/fonts/tfm/public/boisik/bskhc10.tfm + RELOC/fonts/tfm/public/boisik/bski10-TS1.tfm + RELOC/fonts/tfm/public/boisik/bski10.tfm + RELOC/fonts/tfm/public/boisik/bskib10.tfm + RELOC/fonts/tfm/public/boisik/bskiol10.tfm + RELOC/fonts/tfm/public/boisik/bskiu10.tfm + RELOC/fonts/tfm/public/boisik/bskiub10.tfm + RELOC/fonts/tfm/public/boisik/bskma10.tfm + RELOC/fonts/tfm/public/boisik/bskmab10.tfm + RELOC/fonts/tfm/public/boisik/bskmi10.tfm + RELOC/fonts/tfm/public/boisik/bskmib10.tfm + RELOC/fonts/tfm/public/boisik/bskms10.tfm + RELOC/fonts/tfm/public/boisik/bskmsb10.tfm + RELOC/fonts/tfm/public/boisik/bskmsbsl10.tfm + RELOC/fonts/tfm/public/boisik/bskmssl10.tfm + RELOC/fonts/tfm/public/boisik/bskr10-T1.tfm + RELOC/fonts/tfm/public/boisik/bskr10-TS1.tfm + RELOC/fonts/tfm/public/boisik/bskr10.tfm + RELOC/fonts/tfm/public/boisik/bskrb10.tfm + RELOC/fonts/tfm/public/boisik/bskrc10.tfm + RELOC/fonts/tfm/public/boisik/bskrcb10.tfm + RELOC/fonts/tfm/public/boisik/bskrf10.tfm + RELOC/fonts/tfm/public/boisik/bskrl10.tfm + RELOC/fonts/tfm/public/boisik/bskrol10.tfm + RELOC/fonts/tfm/public/boisik/bskrsb10.tfm + RELOC/fonts/tfm/public/boisik/bskrsl10.tfm + RELOC/fonts/tfm/public/boisik/bskrw10.tfm + RELOC/fonts/tfm/public/boisik/bsksc10.tfm + RELOC/fonts/tfm/public/boisik/bsksy10.tfm + RELOC/fonts/tfm/public/boisik/bsksyol10.tfm + RELOC/fonts/tfm/public/boisik/bsksysl10.tfm + RELOC/tex/latex/boisik/boisik.sty + RELOC/tex/latex/boisik/il2bsk.fd + RELOC/tex/latex/boisik/il2bskf.fd + RELOC/tex/latex/boisik/lblbskm.fd + RELOC/tex/latex/boisik/lblcmr.fd + RELOC/tex/latex/boisik/lblenc.def + RELOC/tex/latex/boisik/lbmbsk.fd + RELOC/tex/latex/boisik/lbmbskms.fd + RELOC/tex/latex/boisik/lbmcmr.fd + RELOC/tex/latex/boisik/lbmenc.def + RELOC/tex/latex/boisik/lbsbsk.fd + RELOC/tex/latex/boisik/lbsbsksy.fd + RELOC/tex/latex/boisik/lbscmr.fd + RELOC/tex/latex/boisik/lbsenc.def + RELOC/tex/latex/boisik/ot1bsk.fd + RELOC/tex/latex/boisik/ot1bskf.fd + RELOC/tex/latex/boisik/ts1bsk.fd + RELOC/tex/latex/boisik/ubskex.fd +catalogue-ctan /fonts/boisik +catalogue-license gpl2 +catalogue-topics font font-maths font-serif font-mf +catalogue-version 0.5 + +name boites +category Package +revision 32235 +shortdesc Boxes that may break across pages +relocated 1 +longdesc Defines environments that allow page breaks inside framed boxes +longdesc whose edges may be variously fancy. The bundle includes a few +longdesc examples (shaded box, box with a wavy line on its side, etc). +containersize 4276 +containerchecksum 894f6d2484e9b72a24816c34e1254ae8a6d011610770e40590fdc3ed22a24b6f655418694de256a6522e4024f4df033c017f294743113256583ffb8445a63bec +doccontainersize 273004 +doccontainerchecksum 22ef96e0f64b4d42b978abbba806f497fecf686d76b159bf3d06aedefe1097569053a11ced6c3ff2c7d05f975345957af0790f2035fa3af396b123da7d41cd7c +docfiles size=94 + RELOC/doc/latex/boites/Makefile + RELOC/doc/latex/boites/README details="Readme" + RELOC/doc/latex/boites/README.docu + RELOC/doc/latex/boites/boites.pdf details="English translation" + RELOC/doc/latex/boites/demo.pdf details="Examples of use" + RELOC/doc/latex/boites/demo.tex + RELOC/doc/latex/boites/ligne_qui_ondule_sur_la_gauche.eps +srccontainersize 6424 +srccontainerchecksum 682b3e64f47f71849853bb8752e342ca74a8937e5f1f0f75ba3428ec3e32593339e5f0c90695aa112edd2f607dc4e1c80985558f354b6181f73e5da6cffee8ad +srcfiles size=5 + RELOC/source/latex/boites/boites.dtx +runfiles size=4 + RELOC/tex/latex/boites/boites.sty + RELOC/tex/latex/boites/boites_exemples.sty +catalogue-ctan /macros/latex/contrib/boites +catalogue-license gpl +catalogue-topics boxing box-breaking decoration +catalogue-version 1.1 + +name bold-extra +category Package +revision 17076 +shortdesc Use bold small caps and typewriter fonts +relocated 1 +longdesc Allows access to 'extra' bold fonts for Computer Modern OT1 +longdesc encoding (the fonts are available in Metafont source). Since +longdesc there is more than one bold tt-family font set, the version +longdesc required is selected by a package option. +containersize 1452 +containerchecksum cc12de98493fc01b9a59993ad32e646102751c3023e64f66255a1b66505d3cc2f82d71ac53b4f6691e083bcce3037e521a35feb09cd5019d662a6ce56cc55032 +doccontainersize 217976 +doccontainerchecksum 4bb27a63f711421437385c2a76f26d74cbfcf6ac5bd8811bf4ca5a0da354608dbc6ff295c3943edae1701fefece397ec356361176a9713f607c9677b8222b7af +docfiles size=56 + RELOC/doc/latex/bold-extra/bold-extra.pdf details="Package documentation" + RELOC/doc/latex/bold-extra/bold-extra.tex +runfiles size=1 + RELOC/tex/latex/bold-extra/bold-extra.sty +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-license lppl +catalogue-topics font-supp +catalogue-version 0.1 + +name boldtensors +category Package +revision 15878 +shortdesc Bold latin and greek characters through simple prefix characters +relocated 1 +longdesc This package provides bold latin and greek characters within +longdesc \mathversion{normal}, by using ~ and " as prefix characters. +containersize 2616 +containerchecksum 3c2d17f2bf8ff48638540ec5a3ea57bc835227291fdf6580747a87dafeed6afa4f49b91a67154da35dfac9a405aab2aaed5bbef1ac188291319a972b4e50ebeb +doccontainersize 53640 +doccontainerchecksum 657bdc4960e2d40621520240840ab4252e927baca704da0388e3124938c55de834e59cf8ff3d900aa294ac366ae7b1367909cbe885de08790d51380726960146 +docfiles size=17 + RELOC/doc/latex/boldtensors/boldtensors.pdf details="Package documentation" + RELOC/doc/latex/boldtensors/boldtensors.tex +runfiles size=3 + RELOC/tex/latex/boldtensors/boldtensors.sty +catalogue-ctan /macros/latex/contrib/boldtensors +catalogue-license gpl +catalogue-topics maths + +name bondgraph +category Package +revision 21670 +shortdesc Create bond graph figures in LaTeX documents +relocated 1 +longdesc The package draws bond graphs using PGF and TikZ. +containersize 1812 +containerchecksum 171233d7850335c1819bf1f74e0bcd1c221e5db73d092b0efea71ad35f71b16e4f240c3c791f9022a9e21ab7a2bb62f20ad06609051ecb54fd0640add0ef8381 +doccontainersize 48760 +doccontainerchecksum 0697b880e1bcd51c3b5c2e035a15f852f943ffb86ea2952b460f01e42ced2e4fad8f8b15f32f58cc7771c28ca9bf66f2302914bf08d6696b6d952d347199134c +docfiles size=19 + RELOC/doc/latex/bondgraph/License.txt + RELOC/doc/latex/bondgraph/README details="Readme" + RELOC/doc/latex/bondgraph/bondgraph_arrows.tex + RELOC/doc/latex/bondgraph/bondgraph_example.pdf + RELOC/doc/latex/bondgraph/bondgraph_example.tex +runfiles size=2 + RELOC/tex/latex/bondgraph/bondgraph.sty +catalogue-ctan /macros/latex/contrib/bondgraph +catalogue-license lppl1.3 +catalogue-topics diagram +catalogue-version 1.0 + +name bondgraphs +category Package +revision 36605 +shortdesc Draws bond graphs in LaTeX, using PGF/TikZ +relocated 1 +longdesc The package is used to draw bond graphs in LaTeX. It uses a +longdesc recent version (3.0+) of PGF and TikZ for the drawing, hence, +longdesc it is mainly a set of TikZ styles that makes the drawing of +longdesc bond graphs easier. Compared to the bondgraph package this +longdesc package relies more on TikZ styles and less on macros, to +longdesc generate the drawings. As such it can be more flexible than +longdesc his, but requires more TikZ knowledge of the user. +containersize 2376 +containerchecksum 61ed449d8fcee24f383762eeac54949d709fe3fbcf06598acb8849613c68ce2f445dfb4cfc7871bb6c61bec65ed45e8888dadf036f299a4d5c0bad13db0e16ba +doccontainersize 363692 +doccontainerchecksum 223448f91f0cb9f7b032439aeddc85c132f39bf5ffacd058b76c85db825df15bb47bafe333a0ae8afb089864fe966973fbde6da0e02e1fa46b8077e3f84eb6f3 +docfiles size=91 + RELOC/doc/latex/bondgraphs/Makefile + RELOC/doc/latex/bondgraphs/README details="Readme" + RELOC/doc/latex/bondgraphs/bondgraphs.pdf details="Package documentation" +srccontainersize 10308 +srccontainerchecksum 564af88ac0098d102bfc84932159dcb3df8e06ab30e849d7e039b13ae8855dc6093230e743bef13750a464eadfad54edea4f1a548c14e2df79e03b1f79754254 +srcfiles size=10 + RELOC/source/latex/bondgraphs/bondgraphs.dtx + RELOC/source/latex/bondgraphs/bondgraphs.ins +runfiles size=2 + RELOC/tex/latex/bondgraphs/bondgraphs.sty +catalogue-also bondgraph +catalogue-ctan /macros/latex/contrib/bondgraphs +catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 1.0.1 + +name bookcover +category Package +revision 57326 +shortdesc A class for book covers and dust jackets +relocated 1 +longdesc This class helps typesetting book covers and dust jackets. +containersize 5888 +containerchecksum 1ea230af804c794f26919542d5246d16cb7fe1060f69d7c4f99df327895b528c3565f9450c5a8ded68ee1833a08f6c55c92bb5dd92855d4869b0af0ac5ea0684 +doccontainersize 1773320 +doccontainerchecksum fcd7bf97646458420e3d1ce0faa6d38f7a2d03a0722ede25fda763df506a27857631db95b7085f22f8d5de44551d1a7fdb54b9d28d9e4532587d33f2150c25f8 +docfiles size=910 + RELOC/doc/latex/bookcover/README details="Readme" + RELOC/doc/latex/bookcover/bookcover-example1.pdf details="Examples of use 1" + RELOC/doc/latex/bookcover/bookcover-example1.tex + RELOC/doc/latex/bookcover/bookcover-example2.pdf details="Examples of use 2" + RELOC/doc/latex/bookcover/bookcover-example2.tex + RELOC/doc/latex/bookcover/bookcover.pdf details="Package documentation" + RELOC/doc/latex/bookcover/figures/bookcover-barcode.pdf + RELOC/doc/latex/bookcover/figures/bookcover-bg.jpg + RELOC/doc/latex/bookcover/figures/bookcover-cards.pdf + RELOC/doc/latex/bookcover/figures/bookcover-description.pdf + RELOC/doc/latex/bookcover/figures/bookcover-dice.pdf + RELOC/doc/latex/bookcover/figures/bookcover-dustjacket.pdf + RELOC/doc/latex/bookcover/figures/bookcover-foldingmargin.pdf + RELOC/doc/latex/bookcover/figures/bookcover-margins.pdf + RELOC/doc/latex/bookcover/figures/bookcover-newpart.pdf + RELOC/doc/latex/bookcover/figures/bookcover-parts.pdf + RELOC/doc/latex/bookcover/figures/bookcover-pi.pdf + RELOC/doc/latex/bookcover/figures/bookcover-ruler.pdf + RELOC/doc/latex/bookcover/figures/bookcover-scheme-foldingmargin.pdf + RELOC/doc/latex/bookcover/figures/bookcover-scheme-withflaps.pdf + RELOC/doc/latex/bookcover/figures/bookcover-scheme-withoutflaps.pdf + RELOC/doc/latex/bookcover/figures/bookcover-tikz.pdf + RELOC/doc/latex/bookcover/figures/bookcover-tikzclip.pdf + RELOC/doc/latex/bookcover/figures/bookcover-trimming.pdf +srccontainersize 14060 +srccontainerchecksum 982ad86158e5dbd7c00e323b77f5e685bb4737615b11b35b291eaf10995d4754701a1c1c0d876ee05d8834367b153d5587546fecd939eaf1764b4b2833f2cbdf +srcfiles size=23 + RELOC/source/latex/bookcover/bookcover.dtx + RELOC/source/latex/bookcover/bookcover.ins +runfiles size=13 + RELOC/tex/latex/bookcover/bookcover.cls +catalogue-ctan /macros/latex/contrib/bookcover +catalogue-license lppl1.2 +catalogue-topics class covers +catalogue-version 3.3 + +name bookdb +category Package +revision 37536 +shortdesc A BibTeX style file for cataloguing a home library +relocated 1 +longdesc This package provides an extended book entry for use in +longdesc cataloguing a home library. The extensions include fields for +longdesc binding, category, collator, condition, copy, illustrations, +longdesc introduction, location, pages, size, value, volumes. +containersize 7052 +containerchecksum 3e44184427ce346930b35fc2ea3b508d9f32c1e89cc01d66046e271d61e0bbfde54b5d18917b09acc159f1d657f9d32c29f3086b04e4f1dc6da0cd21a0df3da2 +doccontainersize 209744 +doccontainerchecksum 2449b7d32558665b297e57eaff6529932289e957e0a77d8a8ff84e9614b53844a2684a7b23a62ce6684b6e813223c2c1293bf25e678a1271e3e3cc27383d12b4 +docfiles size=55 + RELOC/doc/bibtex/bookdb/README details="Readme" + RELOC/doc/bibtex/bookdb/bookdb.pdf details="Package documentation" + RELOC/doc/bibtex/bookdb/bookdb.tex +runfiles size=9 + RELOC/bibtex/bst/bookdb/bookdb.bst +catalogue-ctan /biblio/bibtex/contrib/bookdb +catalogue-license lppl1.3 +catalogue-topics bibtex-sty catalogue +catalogue-version 0.2 + +name bookest +category Package +revision 15878 +shortdesc Extended book class +relocated 1 +longdesc The class extends the standard book class, in the areas of +longdesc colour scheme management, document layout, headings and +longdesc footers, front page layout, and other minor items. +containersize 4204 +containerchecksum e49d8f0959276202dea2079df1a509dd296858841f4fa2df235743033ba852b856e5f2a9a14176fd986ad1e431ebd3581469e7ea30093b5a01b7d23b791a028e +doccontainersize 209440 +doccontainerchecksum ad51d3cfff90ce83c7f6479f9f0eb49a54613c585561def33529b301e00915d7a8f94fb62660b3bf5bd87104651e7333c3a9b620bbfc1ab7fa9fa510e16dc15b +docfiles size=76 + RELOC/doc/latex/bookest/README details="Readme" + RELOC/doc/latex/bookest/bookestdoc-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/bookest/bookestdoc-en.tex + RELOC/doc/latex/bookest/bookestdoc-it.pdf details="Package documentation (Italian)" language="it" + RELOC/doc/latex/bookest/bookestdoc-it.tex +runfiles size=5 + RELOC/tex/latex/bookest/bookest.cls +catalogue-ctan /macros/latex/contrib/bookest +catalogue-license lppl +catalogue-topics class book-pub +catalogue-version 1.1 + +name bookhands +category Package +revision 46480 +shortdesc A collection of book-hand fonts +relocated 1 +longdesc This is a set of book-hand (Metafont) fonts and packages +longdesc covering manuscript scripts from the 1st century until +longdesc Gutenberg and Caxton. The included hands are: Square Capitals +longdesc (1st century onwards); Roman Rustic (1st-6th centuries); +longdesc Insular Minuscule (6th cenury onwards); Carolingian Minuscule +longdesc (8th-12th centuries); Early Gothic (11th-12th centuries); +longdesc Gothic Textura Quadrata (13th-15th centuries); Gothic Textura +longdesc Prescisus vel sine pedibus (13th century onwards); Rotunda +longdesc (13-15th centuries); Humanist Minuscule (14th century onwards); +longdesc Uncial (3rd-6th centuries); Half Uncial (3rd-9th centuries); +longdesc Artificial Uncial (6th-10th centuries); and Insular Majuscule +longdesc (6th-9th centuries). +execute addMap sqrcaps.map +containersize 139768 +containerchecksum 8a341131397637618acdb9bedc835a4ea98f40d55a8a2b312ac820821b00a1f059f37cde2aeb3f5b715eff9928b579a531c4c12d3bdbb3a7629a50d363f1a4cb +doccontainersize 1610264 +doccontainerchecksum b5901beafa849a52afaaa7cf09ebab327640eb5ad1c627bea5f8dde2c98aaf176f23f0c9460e7fb2212ce9b4038800c3a3c572830d08d059a04d3574d1015a75 +docfiles size=458 + RELOC/doc/fonts/bookhands/README.PRW details="Readme" + RELOC/doc/fonts/bookhands/allsqrcaps.pdf + RELOC/doc/fonts/bookhands/auncial-README + RELOC/doc/fonts/bookhands/auncial-tryfont.ps.gz + RELOC/doc/fonts/bookhands/auncial-tryfont.tex + RELOC/doc/fonts/bookhands/auncial/allfont.ps.gz + RELOC/doc/fonts/bookhands/auncial/allfont.tex + RELOC/doc/fonts/bookhands/bsamples.ps.gz + RELOC/doc/fonts/bookhands/bsamples.tex + RELOC/doc/fonts/bookhands/carolmin-README + RELOC/doc/fonts/bookhands/carolmin-tryfont.tex + RELOC/doc/fonts/bookhands/carolmin/allfont.tex + RELOC/doc/fonts/bookhands/egothic-README + RELOC/doc/fonts/bookhands/egothic-tryfont.tex + RELOC/doc/fonts/bookhands/egothic/allfont.tex + RELOC/doc/fonts/bookhands/humanist-README + RELOC/doc/fonts/bookhands/humanist-tryfont.tex + RELOC/doc/fonts/bookhands/humanist/allfont.tex + RELOC/doc/fonts/bookhands/huncial-README + RELOC/doc/fonts/bookhands/huncial-tryfont.ps.gz + RELOC/doc/fonts/bookhands/huncial-tryfont.tex + RELOC/doc/fonts/bookhands/huncial/allfont.ps.gz + RELOC/doc/fonts/bookhands/huncial/allfont.tex + RELOC/doc/fonts/bookhands/inslrmaj-README + RELOC/doc/fonts/bookhands/inslrmaj-tryfont.ps.gz + RELOC/doc/fonts/bookhands/inslrmaj-tryfont.tex + RELOC/doc/fonts/bookhands/inslrmaj/allfont.ps.gz + RELOC/doc/fonts/bookhands/inslrmaj/allfont.tex + RELOC/doc/fonts/bookhands/inslrmin-README + RELOC/doc/fonts/bookhands/inslrmin-tryfont.tex + RELOC/doc/fonts/bookhands/inslrmin/allfont.tex + RELOC/doc/fonts/bookhands/pgothic-README + RELOC/doc/fonts/bookhands/pgothic-tryfont.pdf + RELOC/doc/fonts/bookhands/pgothic-tryfont.tex + RELOC/doc/fonts/bookhands/pgothic/allfont.tex + RELOC/doc/fonts/bookhands/rotunda-README + RELOC/doc/fonts/bookhands/rotunda-tryfont.tex + RELOC/doc/fonts/bookhands/rotunda/allfont.tex + RELOC/doc/fonts/bookhands/rustic-README + RELOC/doc/fonts/bookhands/rustic-tryfont.ps.gz + RELOC/doc/fonts/bookhands/rustic-tryfont.tex + RELOC/doc/fonts/bookhands/rustic/allfont.ps.gz + RELOC/doc/fonts/bookhands/rustic/allfont.tex + RELOC/doc/fonts/bookhands/sqrcaps-README + RELOC/doc/fonts/bookhands/sqrcaps.pdf + RELOC/doc/fonts/bookhands/sqrcaps/allsqrcaps.tex + RELOC/doc/fonts/bookhands/tgothic-README + RELOC/doc/fonts/bookhands/tgothic-tryfont.tex + RELOC/doc/fonts/bookhands/tgothic/allfont.tex + RELOC/doc/fonts/bookhands/trysqrcaps.pdf + RELOC/doc/fonts/bookhands/trysqrcaps.tex + RELOC/doc/fonts/bookhands/uncial-README + RELOC/doc/fonts/bookhands/uncial-tryfont.ps.gz + RELOC/doc/fonts/bookhands/uncial-tryfont.tex + RELOC/doc/fonts/bookhands/uncial/allfont.ps.gz + RELOC/doc/fonts/bookhands/uncial/allfont.tex +srccontainersize 84212 +srccontainerchecksum 4df12247bff50722ae11636ecc0071e03d8d296ea958d2a1b84b5b2952f35d890be66af4b85dcf1fe2599e787e71c1b9e7f727a8be9b4ec79eb1bd6aec21925d +srcfiles size=430 + RELOC/source/fonts/bookhands/auncial.dtx + RELOC/source/fonts/bookhands/auncial.ins + RELOC/source/fonts/bookhands/carolmin.dtx + RELOC/source/fonts/bookhands/carolmin.ins + RELOC/source/fonts/bookhands/egothic.dtx + RELOC/source/fonts/bookhands/egothic.ins + RELOC/source/fonts/bookhands/humanist.dtx + RELOC/source/fonts/bookhands/humanist.ins + RELOC/source/fonts/bookhands/huncial.dtx + RELOC/source/fonts/bookhands/huncial.ins + RELOC/source/fonts/bookhands/inslrmaj.dtx + RELOC/source/fonts/bookhands/inslrmaj.ins + RELOC/source/fonts/bookhands/inslrmin.dtx + RELOC/source/fonts/bookhands/inslrmin.ins + RELOC/source/fonts/bookhands/pgothic.dtx + RELOC/source/fonts/bookhands/pgothic.ins + RELOC/source/fonts/bookhands/rotunda.dtx + RELOC/source/fonts/bookhands/rotunda.ins + RELOC/source/fonts/bookhands/rustic.dtx + RELOC/source/fonts/bookhands/rustic.ins + RELOC/source/fonts/bookhands/sqrcaps.dtx + RELOC/source/fonts/bookhands/sqrcaps.ins + RELOC/source/fonts/bookhands/tgothic.dtx + RELOC/source/fonts/bookhands/tgothic.ins + RELOC/source/fonts/bookhands/uncial.dtx + RELOC/source/fonts/bookhands/uncial.ins +runfiles size=451 + RELOC/fonts/afm/public/bookhands/sqrc10.afm + RELOC/fonts/afm/public/bookhands/sqrcb10.afm + RELOC/fonts/map/dvips/bookhands/sqrcaps.map + RELOC/fonts/source/public/bookhands/auncl10.mf + RELOC/fonts/source/public/bookhands/auncl17.mf + RELOC/fonts/source/public/bookhands/auncl7.mf + RELOC/fonts/source/public/bookhands/aunclb10.mf + RELOC/fonts/source/public/bookhands/aunclb17.mf + RELOC/fonts/source/public/bookhands/aunclb7.mf + RELOC/fonts/source/public/bookhands/auncldig.mf + RELOC/fonts/source/public/bookhands/auncll.mf + RELOC/fonts/source/public/bookhands/auncllig.mf + RELOC/fonts/source/public/bookhands/aunclpunct.mf + RELOC/fonts/source/public/bookhands/auncltitle.mf + RELOC/fonts/source/public/bookhands/aunclu.mf + RELOC/fonts/source/public/bookhands/cmin10.mf + RELOC/fonts/source/public/bookhands/cmin17.mf + RELOC/fonts/source/public/bookhands/cmin7.mf + RELOC/fonts/source/public/bookhands/cminb10.mf + RELOC/fonts/source/public/bookhands/cminb17.mf + RELOC/fonts/source/public/bookhands/cminb7.mf + RELOC/fonts/source/public/bookhands/cmindig.mf + RELOC/fonts/source/public/bookhands/cminl.mf + RELOC/fonts/source/public/bookhands/cminlig.mf + RELOC/fonts/source/public/bookhands/cminpunct.mf + RELOC/fonts/source/public/bookhands/cmintitle.mf + RELOC/fonts/source/public/bookhands/cminu.mf + RELOC/fonts/source/public/bookhands/egoth10.mf + RELOC/fonts/source/public/bookhands/egoth17.mf + RELOC/fonts/source/public/bookhands/egoth7.mf + RELOC/fonts/source/public/bookhands/egothb10.mf + RELOC/fonts/source/public/bookhands/egothb17.mf + RELOC/fonts/source/public/bookhands/egothb7.mf + RELOC/fonts/source/public/bookhands/egothdig.mf + RELOC/fonts/source/public/bookhands/egothl.mf + RELOC/fonts/source/public/bookhands/egothlig.mf + RELOC/fonts/source/public/bookhands/egothpunct.mf + RELOC/fonts/source/public/bookhands/egothtitle.mf + RELOC/fonts/source/public/bookhands/egothu.mf + RELOC/fonts/source/public/bookhands/hmin10.mf + RELOC/fonts/source/public/bookhands/hmin17.mf + RELOC/fonts/source/public/bookhands/hmin7.mf + RELOC/fonts/source/public/bookhands/hminb10.mf + RELOC/fonts/source/public/bookhands/hminb17.mf + RELOC/fonts/source/public/bookhands/hminb7.mf + RELOC/fonts/source/public/bookhands/hmindig.mf + RELOC/fonts/source/public/bookhands/hminl.mf + RELOC/fonts/source/public/bookhands/hminlig.mf + RELOC/fonts/source/public/bookhands/hminpunct.mf + RELOC/fonts/source/public/bookhands/hmintitle.mf + RELOC/fonts/source/public/bookhands/hminu.mf + RELOC/fonts/source/public/bookhands/huncl10.mf + RELOC/fonts/source/public/bookhands/huncl17.mf + RELOC/fonts/source/public/bookhands/huncl7.mf + RELOC/fonts/source/public/bookhands/hunclb10.mf + RELOC/fonts/source/public/bookhands/hunclb17.mf + RELOC/fonts/source/public/bookhands/hunclb7.mf + RELOC/fonts/source/public/bookhands/huncldig.mf + RELOC/fonts/source/public/bookhands/huncll.mf + RELOC/fonts/source/public/bookhands/huncllig.mf + RELOC/fonts/source/public/bookhands/hunclpunct.mf + RELOC/fonts/source/public/bookhands/huncltitle.mf + RELOC/fonts/source/public/bookhands/hunclu.mf + RELOC/fonts/source/public/bookhands/imaj10.mf + RELOC/fonts/source/public/bookhands/imaj17.mf + RELOC/fonts/source/public/bookhands/imaj7.mf + RELOC/fonts/source/public/bookhands/imajb10.mf + RELOC/fonts/source/public/bookhands/imajb17.mf + RELOC/fonts/source/public/bookhands/imajb7.mf + RELOC/fonts/source/public/bookhands/imajdig.mf + RELOC/fonts/source/public/bookhands/imajl.mf + RELOC/fonts/source/public/bookhands/imajlig.mf + RELOC/fonts/source/public/bookhands/imajpunct.mf + RELOC/fonts/source/public/bookhands/imajtitle.mf + RELOC/fonts/source/public/bookhands/imaju.mf + RELOC/fonts/source/public/bookhands/imin10.mf + RELOC/fonts/source/public/bookhands/imin17.mf + RELOC/fonts/source/public/bookhands/imin7.mf + RELOC/fonts/source/public/bookhands/iminb10.mf + RELOC/fonts/source/public/bookhands/iminb17.mf + RELOC/fonts/source/public/bookhands/iminb7.mf + RELOC/fonts/source/public/bookhands/imindig.mf + RELOC/fonts/source/public/bookhands/iminl.mf + RELOC/fonts/source/public/bookhands/iminlig.mf + RELOC/fonts/source/public/bookhands/iminpunct.mf + RELOC/fonts/source/public/bookhands/imintitle.mf + RELOC/fonts/source/public/bookhands/iminu.mf + RELOC/fonts/source/public/bookhands/pgoth10.mf + RELOC/fonts/source/public/bookhands/pgoth17.mf + RELOC/fonts/source/public/bookhands/pgoth7.mf + RELOC/fonts/source/public/bookhands/pgothb10.mf + RELOC/fonts/source/public/bookhands/pgothb17.mf + RELOC/fonts/source/public/bookhands/pgothb7.mf + RELOC/fonts/source/public/bookhands/pgothdig.mf + RELOC/fonts/source/public/bookhands/pgothl.mf + RELOC/fonts/source/public/bookhands/pgothlig.mf + RELOC/fonts/source/public/bookhands/pgothpunct.mf + RELOC/fonts/source/public/bookhands/pgothtitle.mf + RELOC/fonts/source/public/bookhands/pgothu.mf + RELOC/fonts/source/public/bookhands/rtnd10.mf + RELOC/fonts/source/public/bookhands/rtnd17.mf + RELOC/fonts/source/public/bookhands/rtnd7.mf + RELOC/fonts/source/public/bookhands/rtndb10.mf + RELOC/fonts/source/public/bookhands/rtndb17.mf + RELOC/fonts/source/public/bookhands/rtndb7.mf + RELOC/fonts/source/public/bookhands/rtnddig.mf + RELOC/fonts/source/public/bookhands/rtndl.mf + RELOC/fonts/source/public/bookhands/rtndlig.mf + RELOC/fonts/source/public/bookhands/rtndpunct.mf + RELOC/fonts/source/public/bookhands/rtndtitle.mf + RELOC/fonts/source/public/bookhands/rtndu.mf + RELOC/fonts/source/public/bookhands/rust10.mf + RELOC/fonts/source/public/bookhands/rust17.mf + RELOC/fonts/source/public/bookhands/rust7.mf + RELOC/fonts/source/public/bookhands/rustb10.mf + RELOC/fonts/source/public/bookhands/rustb17.mf + RELOC/fonts/source/public/bookhands/rustb7.mf + RELOC/fonts/source/public/bookhands/rustdig.mf + RELOC/fonts/source/public/bookhands/rustl.mf + RELOC/fonts/source/public/bookhands/rustlig.mf + RELOC/fonts/source/public/bookhands/rustpunct.mf + RELOC/fonts/source/public/bookhands/rusttitle.mf + RELOC/fonts/source/public/bookhands/rustu.mf + RELOC/fonts/source/public/bookhands/tgothb10.mf + RELOC/fonts/source/public/bookhands/tgothb17.mf + RELOC/fonts/source/public/bookhands/tgothb7.mf + RELOC/fonts/source/public/bookhands/tgothdig.mf + RELOC/fonts/source/public/bookhands/tgothl.mf + RELOC/fonts/source/public/bookhands/tgothlig.mf + RELOC/fonts/source/public/bookhands/tgothpunct.mf + RELOC/fonts/source/public/bookhands/tgothr10.mf + RELOC/fonts/source/public/bookhands/tgothr17.mf + RELOC/fonts/source/public/bookhands/tgothr7.mf + RELOC/fonts/source/public/bookhands/tgothtitle.mf + RELOC/fonts/source/public/bookhands/tgothu.mf + RELOC/fonts/source/public/bookhands/uncl10.mf + RELOC/fonts/source/public/bookhands/uncl17.mf + RELOC/fonts/source/public/bookhands/uncl7.mf + RELOC/fonts/source/public/bookhands/unclb10.mf + RELOC/fonts/source/public/bookhands/unclb17.mf + RELOC/fonts/source/public/bookhands/unclb7.mf + RELOC/fonts/source/public/bookhands/uncldig.mf + RELOC/fonts/source/public/bookhands/uncll.mf + RELOC/fonts/source/public/bookhands/uncllig.mf + RELOC/fonts/source/public/bookhands/unclpunct.mf + RELOC/fonts/source/public/bookhands/uncltitle.mf + RELOC/fonts/source/public/bookhands/unclu.mf + RELOC/fonts/tfm/public/bookhands/auncl17.tfm + RELOC/fonts/tfm/public/bookhands/auncl7.tfm + RELOC/fonts/tfm/public/bookhands/aunclb17.tfm + RELOC/fonts/tfm/public/bookhands/aunclb7.tfm + RELOC/fonts/tfm/public/bookhands/cmin10.tfm + RELOC/fonts/tfm/public/bookhands/cmin17.tfm + RELOC/fonts/tfm/public/bookhands/cmin7.tfm + RELOC/fonts/tfm/public/bookhands/cminb10.tfm + RELOC/fonts/tfm/public/bookhands/cminb17.tfm + RELOC/fonts/tfm/public/bookhands/cminb7.tfm + RELOC/fonts/tfm/public/bookhands/egoth10.tfm + RELOC/fonts/tfm/public/bookhands/egoth17.tfm + RELOC/fonts/tfm/public/bookhands/egoth7.tfm + RELOC/fonts/tfm/public/bookhands/egothb10.tfm + RELOC/fonts/tfm/public/bookhands/egothb17.tfm + RELOC/fonts/tfm/public/bookhands/egothb7.tfm + RELOC/fonts/tfm/public/bookhands/hmin10.tfm + RELOC/fonts/tfm/public/bookhands/hmin17.tfm + RELOC/fonts/tfm/public/bookhands/hmin7.tfm + RELOC/fonts/tfm/public/bookhands/hminb10.tfm + RELOC/fonts/tfm/public/bookhands/hminb17.tfm + RELOC/fonts/tfm/public/bookhands/hminb7.tfm + RELOC/fonts/tfm/public/bookhands/huncl10.tfm + RELOC/fonts/tfm/public/bookhands/huncl17.tfm + RELOC/fonts/tfm/public/bookhands/huncl7.tfm + RELOC/fonts/tfm/public/bookhands/hunclb10.tfm + RELOC/fonts/tfm/public/bookhands/hunclb17.tfm + RELOC/fonts/tfm/public/bookhands/hunclb7.tfm + RELOC/fonts/tfm/public/bookhands/imaj10.tfm + RELOC/fonts/tfm/public/bookhands/imaj17.tfm + RELOC/fonts/tfm/public/bookhands/imaj7.tfm + RELOC/fonts/tfm/public/bookhands/imajb10.tfm + RELOC/fonts/tfm/public/bookhands/imajb17.tfm + RELOC/fonts/tfm/public/bookhands/imajb7.tfm + RELOC/fonts/tfm/public/bookhands/imin10.tfm + RELOC/fonts/tfm/public/bookhands/imin17.tfm + RELOC/fonts/tfm/public/bookhands/imin7.tfm + RELOC/fonts/tfm/public/bookhands/iminb10.tfm + RELOC/fonts/tfm/public/bookhands/iminb17.tfm + RELOC/fonts/tfm/public/bookhands/iminb7.tfm + RELOC/fonts/tfm/public/bookhands/pgoth10.tfm + RELOC/fonts/tfm/public/bookhands/pgoth17.tfm + RELOC/fonts/tfm/public/bookhands/pgoth7.tfm + RELOC/fonts/tfm/public/bookhands/pgothb10.tfm + RELOC/fonts/tfm/public/bookhands/pgothb17.tfm + RELOC/fonts/tfm/public/bookhands/rtnd10.tfm + RELOC/fonts/tfm/public/bookhands/rtnd17.tfm + RELOC/fonts/tfm/public/bookhands/rtnd7.tfm + RELOC/fonts/tfm/public/bookhands/rtndb10.tfm + RELOC/fonts/tfm/public/bookhands/rtndb17.tfm + RELOC/fonts/tfm/public/bookhands/rtndb7.tfm + RELOC/fonts/tfm/public/bookhands/rust10.tfm + RELOC/fonts/tfm/public/bookhands/rust17.tfm + RELOC/fonts/tfm/public/bookhands/rust7.tfm + RELOC/fonts/tfm/public/bookhands/rustb10.tfm + RELOC/fonts/tfm/public/bookhands/rustb17.tfm + RELOC/fonts/tfm/public/bookhands/rustb7.tfm + RELOC/fonts/tfm/public/bookhands/sqrc10.tfm + RELOC/fonts/tfm/public/bookhands/sqrcb10.tfm + RELOC/fonts/tfm/public/bookhands/tgothb10.tfm + RELOC/fonts/tfm/public/bookhands/tgothb17.tfm + RELOC/fonts/tfm/public/bookhands/tgothr10.tfm + RELOC/fonts/tfm/public/bookhands/tgothr17.tfm + RELOC/fonts/tfm/public/bookhands/tgothr7.tfm + RELOC/fonts/tfm/public/bookhands/uncl10.tfm + RELOC/fonts/tfm/public/bookhands/uncl17.tfm + RELOC/fonts/tfm/public/bookhands/uncl7.tfm + RELOC/fonts/tfm/public/bookhands/unclb10.tfm + RELOC/fonts/tfm/public/bookhands/unclb17.tfm + RELOC/fonts/tfm/public/bookhands/unclb7.tfm + RELOC/fonts/type1/public/bookhands/sqrc10.pfb + RELOC/fonts/type1/public/bookhands/sqrcb10.pfb + RELOC/tex/latex/bookhands/allcmin.sty + RELOC/tex/latex/bookhands/allegoth.sty + RELOC/tex/latex/bookhands/allhmin.sty + RELOC/tex/latex/bookhands/allhuncl.sty + RELOC/tex/latex/bookhands/allimaj.sty + RELOC/tex/latex/bookhands/allimin.sty + RELOC/tex/latex/bookhands/allpgoth.sty + RELOC/tex/latex/bookhands/allrtnd.sty + RELOC/tex/latex/bookhands/allrust.sty + RELOC/tex/latex/bookhands/allsqrc.sty + RELOC/tex/latex/bookhands/alltgoth.sty + RELOC/tex/latex/bookhands/alluncl.sty + RELOC/tex/latex/bookhands/carolmin.sty + RELOC/tex/latex/bookhands/egothic.sty + RELOC/tex/latex/bookhands/humanist.sty + RELOC/tex/latex/bookhands/huncial.sty + RELOC/tex/latex/bookhands/inslrmaj.sty + RELOC/tex/latex/bookhands/inslrmin.sty + RELOC/tex/latex/bookhands/ot1auncl.fd + RELOC/tex/latex/bookhands/ot1cmin.fd + RELOC/tex/latex/bookhands/ot1egoth.fd + RELOC/tex/latex/bookhands/ot1hmin.fd + RELOC/tex/latex/bookhands/ot1huncl.fd + RELOC/tex/latex/bookhands/ot1imaj.fd + RELOC/tex/latex/bookhands/ot1imin.fd + RELOC/tex/latex/bookhands/ot1pgoth.fd + RELOC/tex/latex/bookhands/ot1rtnd.fd + RELOC/tex/latex/bookhands/ot1rust.fd + RELOC/tex/latex/bookhands/ot1sqrc.fd + RELOC/tex/latex/bookhands/ot1tgoth.fd + RELOC/tex/latex/bookhands/ot1uncl.fd + RELOC/tex/latex/bookhands/pgothic.sty + RELOC/tex/latex/bookhands/rotunda.sty + RELOC/tex/latex/bookhands/rustic.sty + RELOC/tex/latex/bookhands/sqrcaps.sty + RELOC/tex/latex/bookhands/t1auncl.fd + RELOC/tex/latex/bookhands/t1cmin.fd + RELOC/tex/latex/bookhands/t1egoth.fd + RELOC/tex/latex/bookhands/t1hmin.fd + RELOC/tex/latex/bookhands/t1huncl.fd + RELOC/tex/latex/bookhands/t1imaj.fd + RELOC/tex/latex/bookhands/t1imin.fd + RELOC/tex/latex/bookhands/t1pgoth.fd + RELOC/tex/latex/bookhands/t1rtnd.fd + RELOC/tex/latex/bookhands/t1rust.fd + RELOC/tex/latex/bookhands/t1sqrc.fd + RELOC/tex/latex/bookhands/t1tgoth.fd + RELOC/tex/latex/bookhands/t1uncl.fd + RELOC/tex/latex/bookhands/tgothic.sty + RELOC/tex/latex/bookhands/uncial.sty +catalogue-ctan /fonts/bookhands +catalogue-license lppl +catalogue-topics font font-mf font-bookhand collection + +name booklet +category Package +revision 15878 +shortdesc Aids for printing simple booklets +relocated 1 +longdesc Pages of a document processed with the booklet package will be +longdesc reordered and scaled so that they can be printed as four pages +longdesc per physical sheet of paper, two pages per side. The resulting +longdesc sheets will, when folded in half, assemble into a booklet. +longdesc Instructions on producing the manual itself as a booklet are +longdesc included. +containersize 3184 +containerchecksum be6bc46fa76c0a1ecbfe199b1a1a6f0cedf14a8d583e9ab8ffd75d4cf8ae22e404b289224ed8fa6cd9e143119760d50131e97228cfe75ea56d5ab2f540e8ea8b +doccontainersize 207680 +doccontainerchecksum fb6d74ee03f303433e61fe1afe297cf5e343f95e3834fbdee483522a183d403fb6bac8bfd1d0ca687c448d522d370f5216caba2b52b066ac1657b8dc2fc3df1a +docfiles size=63 + RELOC/doc/latex/booklet/README details="Readme" + RELOC/doc/latex/booklet/booklet.pdf details="Package documentation" +srccontainersize 23512 +srccontainerchecksum 7b63195d047c6d05cec02af6d44c77e9fbc0a198717a5ed3383f6d662946cb8de9b7659916ab6d7951eeeedfe00abcd68eb006012de3e083d767acffdc0f3cbe +srcfiles size=23 + RELOC/source/latex/booklet/booklet.dtx + RELOC/source/latex/booklet/booklet.ins +runfiles size=3 + RELOC/tex/latex/booklet/bkltprnt.sty + RELOC/tex/latex/booklet/booklet.sty +catalogue-ctan /macros/latex/contrib/booklet +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 0.7b + +name bookman +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap ubk.map +containersize 278764 +containerchecksum bcc6a2ca260350a22927d806b29dec9b7a6c7d9bfff2517d3c64072c9bcb3b73ec72937c004d36c2570a2c78f073548db6897195591e36bae7b6eaaecf6b6023 +runfiles size=400 + RELOC/dvips/bookman/config.ubk + RELOC/fonts/afm/adobe/bookman/pbkd8a.afm + RELOC/fonts/afm/adobe/bookman/pbkdi8a.afm + RELOC/fonts/afm/adobe/bookman/pbkl8a.afm + RELOC/fonts/afm/adobe/bookman/pbkli8a.afm + RELOC/fonts/afm/urw/bookman/ubkd8a.afm + RELOC/fonts/afm/urw/bookman/ubkdi8a.afm + RELOC/fonts/afm/urw/bookman/ubkl8a.afm + RELOC/fonts/afm/urw/bookman/ubkli8a.afm + RELOC/fonts/map/dvips/bookman/ubk.map + RELOC/fonts/tfm/adobe/bookman/pbkd.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdc.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdc7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdc8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklc.tfm + RELOC/fonts/tfm/adobe/bookman/pbklc7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklc8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkrc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkrc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro8t.tfm + RELOC/fonts/type1/urw/bookman/ubkd8a.pfb + RELOC/fonts/type1/urw/bookman/ubkd8a.pfm + RELOC/fonts/type1/urw/bookman/ubkdi8a.pfb + RELOC/fonts/type1/urw/bookman/ubkdi8a.pfm + RELOC/fonts/type1/urw/bookman/ubkl8a.pfb + RELOC/fonts/type1/urw/bookman/ubkl8a.pfm + RELOC/fonts/type1/urw/bookman/ubkli8a.pfb + RELOC/fonts/type1/urw/bookman/ubkli8a.pfm + RELOC/fonts/vf/adobe/bookman/pbkd.vf + RELOC/fonts/vf/adobe/bookman/pbkd7t.vf + RELOC/fonts/vf/adobe/bookman/pbkd8c.vf + RELOC/fonts/vf/adobe/bookman/pbkd8t.vf + RELOC/fonts/vf/adobe/bookman/pbkdc.vf + RELOC/fonts/vf/adobe/bookman/pbkdc7t.vf + RELOC/fonts/vf/adobe/bookman/pbkdc8t.vf + RELOC/fonts/vf/adobe/bookman/pbkdi.vf + RELOC/fonts/vf/adobe/bookman/pbkdi7t.vf + RELOC/fonts/vf/adobe/bookman/pbkdi8c.vf + RELOC/fonts/vf/adobe/bookman/pbkdi8t.vf + RELOC/fonts/vf/adobe/bookman/pbkdo.vf + RELOC/fonts/vf/adobe/bookman/pbkdo7t.vf + RELOC/fonts/vf/adobe/bookman/pbkdo8c.vf + RELOC/fonts/vf/adobe/bookman/pbkdo8t.vf + RELOC/fonts/vf/adobe/bookman/pbkl.vf + RELOC/fonts/vf/adobe/bookman/pbkl7t.vf + RELOC/fonts/vf/adobe/bookman/pbkl8c.vf + RELOC/fonts/vf/adobe/bookman/pbkl8t.vf + RELOC/fonts/vf/adobe/bookman/pbklc.vf + RELOC/fonts/vf/adobe/bookman/pbklc7t.vf + RELOC/fonts/vf/adobe/bookman/pbklc8t.vf + RELOC/fonts/vf/adobe/bookman/pbkli.vf + RELOC/fonts/vf/adobe/bookman/pbkli7t.vf + RELOC/fonts/vf/adobe/bookman/pbkli8c.vf + RELOC/fonts/vf/adobe/bookman/pbkli8t.vf + RELOC/fonts/vf/adobe/bookman/pbklo.vf + RELOC/fonts/vf/adobe/bookman/pbklo7t.vf + RELOC/fonts/vf/adobe/bookman/pbklo8c.vf + RELOC/fonts/vf/adobe/bookman/pbklo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkb7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkb8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkb8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbi7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbi8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbi8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbo7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbo8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkd7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkd8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkd8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdi7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdi8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdi8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdo7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdo8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkl7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkl8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkl8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkli7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkli8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkli8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklo7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklo8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubklo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkr7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkr8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkr8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkrc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkrc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkri7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkri8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkri8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkro7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkro8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkro8t.vf + RELOC/tex/latex/bookman/8rubk.fd + RELOC/tex/latex/bookman/omlubk.fd + RELOC/tex/latex/bookman/omsubk.fd + RELOC/tex/latex/bookman/ot1ubk.fd + RELOC/tex/latex/bookman/t1ubk.fd + RELOC/tex/latex/bookman/ts1ubk.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name bookmark +category Package +revision 56885 +shortdesc A new bookmark (outline) organization for hyperref +relocated 1 +longdesc This package implements a new bookmark (outline) organization +longdesc for package hyperref. Bookmark properties such as style and +longdesc color can now be set. Other action types are available (URI, +longdesc GoToR, Named). The bookmarks are generated in the first compile +longdesc run. Package hyperref uses two runs. +containersize 8272 +containerchecksum 56d73af9961348a8436beb957b65cd9cb0bf62c9031fa71e5f247a367ecfbbb15763214710c66e057d2806a0dc0ce09b05a163d74a7687c8f0dc340ebdbd2849 +doccontainersize 469024 +doccontainerchecksum 44491b3165eb356327345f6f7c5b690db6435369e1c58571146982285ef849425935ad03ef1c9bb0e306af740bb6b886b21226093fd083e838da29d09bb005bc +docfiles size=119 + RELOC/doc/latex/bookmark/README.md details="Readme" + RELOC/doc/latex/bookmark/bookmark-example.tex + RELOC/doc/latex/bookmark/bookmark.pdf details="Package documentation" +srccontainersize 19148 +srccontainerchecksum 9fb4abf83e752b4c1301050feaa4d648d67fedbb6ddd9aa1bc253dd9eca76b91ce02c14fed17364d768d170e8b7ec4e991c23c582d121a4e72e4fe62a02f0442 +srcfiles size=30 + RELOC/source/latex/bookmark/bookmark-frozen.dtx + RELOC/source/latex/bookmark/bookmark.dtx +runfiles size=25 + RELOC/tex/latex/bookmark/bkm-dvipdfm-2019-12-03.def + RELOC/tex/latex/bookmark/bkm-dvipdfm.def + RELOC/tex/latex/bookmark/bkm-dvips-2019-12-03.def + RELOC/tex/latex/bookmark/bkm-dvips.def + RELOC/tex/latex/bookmark/bkm-pdftex-2019-12-03.def + RELOC/tex/latex/bookmark/bkm-pdftex.def + RELOC/tex/latex/bookmark/bkm-vtex-2019-12-03.def + RELOC/tex/latex/bookmark/bkm-vtex.def + RELOC/tex/latex/bookmark/bookmark.sty +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-license lppl1.3c +catalogue-topics hyper +catalogue-version 1.29 + +name bookshelf +category Package +revision 55475 +shortdesc Create a nice image from a BibTeX file +relocated 1 +longdesc This package turns a BibTeX bibliography file into a +longdesc randomly-coloured, randomly-sized shelf of books, with the +longdesc title and author in a randomly-chosen typeface. +containersize 4100 +containerchecksum e6ab2186784aa9905053d15311b18def1c669a86db4a98033761c2f41fae97199baec02c41c32cc6ef4ed9ddb6ff5413f69a7ad1c9cf5f0c4c91d45297eb1af5 +doccontainersize 985580 +doccontainerchecksum 38e04eb978152cb97a15f1b6120ba9f062224ed4feada0347042b420d4baa9c66e453be8d4abf4095ba3403d11281153dc7e2494d34864a2ad2e1ac10a1b4b1c +docfiles size=486 + RELOC/doc/latex/bookshelf/MANIFEST + RELOC/doc/latex/bookshelf/README.md details="Readme" + RELOC/doc/latex/bookshelf/VERSION + RELOC/doc/latex/bookshelf/bookshelf.pdf details="Package documentation" + RELOC/doc/latex/bookshelf/myshelf.jpg + RELOC/doc/latex/bookshelf/prepdata.sh + RELOC/doc/latex/bookshelf/test.tex +srccontainersize 29204 +srccontainerchecksum 53076f7ea7a15ade58fc6ff23643515631f46368d67f9b55d67212ceface35834f10724fc7fa8dfd75d7f852bef9a6570d3bc5600805c79f7e24006e663e1528 +srcfiles size=27 + RELOC/source/latex/bookshelf/bookshelf.dtx + RELOC/source/latex/bookshelf/bookshelf.ins +runfiles size=4 + RELOC/tex/latex/bookshelf/bookshelf.cls +catalogue-ctan /graphics/bookshelf +catalogue-license lppl1.3 +catalogue-topics amusements decoration graphics-use +catalogue-version 0.5 + +name booktabs +category Package +revision 53402 +shortdesc Publication quality tables in LaTeX +relocated 1 +longdesc The package enhances the quality of tables in LaTeX, providing +longdesc extra commands as well as behind-the-scenes optimisation. +longdesc Guidelines are given as to what constitutes a good table in +longdesc this context. From version 1.61, the package offers longtable +longdesc compatibility. +containersize 2196 +containerchecksum 8d7e46297d19f2e683f5c16a13577fc582cba391cdc8a15ad395a6b44072a5b50216ec9e9a8c727c1b2a36b9275ba9bed10baec3aba9d726505955af01d48c3e +doccontainersize 295880 +doccontainerchecksum 952ff0f30cf7679c09020cf2bca542e11e3a64c88956e87db6289acfb03879609f66c8beb019a6639716462aa088bdff7df3330d60a5d864f25de164affa4c51 +docfiles size=74 + RELOC/doc/latex/booktabs/README details="Readme" + RELOC/doc/latex/booktabs/booktabs.pdf details="Package documentation (English)" language="en" +srccontainersize 14644 +srccontainerchecksum cdca8f3e7f7dd99b87da76f60b1279de6efa8af666fc99e11749c21e59b77148a40aa197c0682ac1085a4d971a26b8cb59a9d2794fef81063006a220caf91ba4 +srcfiles size=12 + RELOC/source/latex/booktabs/booktabs.dtx + RELOC/source/latex/booktabs/booktabs.ins +runfiles size=2 + RELOC/tex/latex/booktabs/booktabs.sty +catalogue-ctan /macros/latex/contrib/booktabs +catalogue-license lppl1.3c +catalogue-topics table table-rule +catalogue-version 1.61803398 + +name booktabs-de +category Package +revision 21907 +shortdesc German version of booktabs +relocated 1 +longdesc This is a "translation" of the booktabs. +containersize 392 +containerchecksum 25a46153cea4a6e94c77cabf3afac74e642c7362f7c852725e8443de8ef8873c5a9d2dab3fc3b083dd7382e10d74e71b40b40b1143afce1646e853899c0ea2c6 +doccontainersize 273312 +doccontainerchecksum 1016522eb74332542a9497f47fb0ea884c7d8b3d0a0630b8a6604bdc41ee08d29d963fcee0d643a8260d2e667c0b39edc74f4998ecbe66bc7a45ef23ac78371c +docfiles size=82 + RELOC/doc/latex/booktabs-de/README-DE details="Readme (German)" language="de" + RELOC/doc/latex/booktabs-de/booktabs-de.dtx + 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-license gpl +catalogue-topics german-doc translation +catalogue-version 1.61803 + +name booktabs-fr +category Package +revision 21948 +shortdesc French translation of booktabs documentation +relocated 1 +longdesc The translation comes from a collection provided by Benjamin +longdesc Bayart. +containersize 420 +containerchecksum 62d4aefc19ff86a60b8fc68a5203bbc2dd2c86ef2f74d5dc0d2a664ff342c13077f5f71a4991704e1d9c69587e4ecde629e5432ade3695efbbc388714fa3c268 +doccontainersize 221368 +doccontainerchecksum eab2c83e6d81a601ec98ffe43ed4b5ec71e17c6ec42c26c519fdbbb3c3e82154b01bb569adca65dbf540ccbd7263cc20806dbe901ba44204b84d07d235b07bc7 +docfiles size=67 + RELOC/doc/latex/booktabs-fr/README details="Readme" language="fr" + RELOC/doc/latex/booktabs-fr/f-booktabs.dtx + 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-license lppl +catalogue-topics french-doc translation +catalogue-version 1.00 + +name boolexpr +category Package +revision 17830 +shortdesc A boolean expression evaluator and a switch command +relocated 1 +longdesc The \boolexpr macro evaluates boolean expressions in a purely +longdesc expandable way. \boolexpr{ A \OR B \AND C } expands to 0 if the +longdesc logical expression is TRUE. A, B, C may be: numeric expressions +longdesc such as: x=y, x<>y, x>y or x} ... \case{} ... ... \otherwise ... \endswitch +containersize 2772 +containerchecksum 677a397363b80126e45609d125ec2cf22b3ef144216e19183bcd48c1f0ccd6e2e079fbb0a2e7ac03f094470c8c0bc64ae652863aed970ee9fc75a9a69b60c618 +doccontainersize 142296 +doccontainerchecksum 6351bf2d3382c5a3b9a07a8458d7f158ee3bd0e72c96af5f2f985d28a40859f95ae7ae956e5dbaa1ed93b1331322ae1e8901ad3110f5e74024efd831e29b6b44 +docfiles size=55 + RELOC/doc/latex/boolexpr/README details="Readme" + RELOC/doc/latex/boolexpr/boolexpr.pdf details="Package documentation" +srccontainersize 11884 +srccontainerchecksum 561daf8eb74f10987be27e884023ad443f24e8d48b573dbe8eab5e958c2ac9f2319b293874050c7d7f56ea3c22f31eaa57f3101c8878b466ad8938018427e765 +srcfiles size=12 + RELOC/source/latex/boolexpr/boolexpr.dtx + RELOC/source/latex/boolexpr/boolexpr.ins +runfiles size=2 + RELOC/tex/latex/boolexpr/boolexpr.sty +catalogue-ctan /macros/latex/contrib/boolexpr +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 3.14 + +name boondox +category Package +revision 54512 +shortdesc Mathematical alphabets derived from the STIX fonts +relocated 1 +longdesc The package contains a number of PostScript fonts derived from +longdesc the STIX OpenType fonts that may be used in maths mode in +longdesc regular and bold weights for calligraphic, fraktur and +longdesc double-struck alphabets. Virtual fonts with metrics suitable +longdesc for maths mode are provided, as are LaTeX support files. +execute addMap boondox.map +containersize 204696 +containerchecksum 0e1cbb6ec227a2cd17852e71f16b4972de18a076fdd4c4416ffef1416f3332fd351036fead4d82a69b5aecdf392bc7e1af85ca5bb1e44c153d25cc86ccfc631c +doccontainersize 102680 +doccontainerchecksum 72e77b36b79bdad663db8c707daaca8d324fd3f50edc8cb7780a641f5d0217d3fe4c2b758c1775de0ce5fea3d44e9ea08e745df51485b4d1e3de11e2a98c74f0 +docfiles size=28 + RELOC/doc/fonts/boondox/README details="Readme" + RELOC/doc/fonts/boondox/boondox-doc.pdf details="Package documentation" + RELOC/doc/fonts/boondox/boondox-doc.tex +runfiles size=98 + RELOC/fonts/map/dvips/boondox/boondox.map + RELOC/fonts/tfm/public/boondox/BOONDOX-b-cal.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-b-calo.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-b-ds.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-b-frak.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-cal.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-calo.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-ds.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-frak.tfm + RELOC/fonts/tfm/public/boondox/BOONDOXUprScr-Bold.tfm + RELOC/fonts/tfm/public/boondox/BOONDOXUprScr-Regular.tfm + RELOC/fonts/tfm/public/boondox/zxxbf7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbf8a.tfm + RELOC/fonts/tfm/public/boondox/zxxbl7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbl8a.tfm + RELOC/fonts/tfm/public/boondox/zxxbow7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbw7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbw8a.tfm + RELOC/fonts/tfm/public/boondox/zxxrf7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrf8a.tfm + RELOC/fonts/tfm/public/boondox/zxxrl7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrl8a.tfm + RELOC/fonts/tfm/public/boondox/zxxrow7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrw7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrw8a.tfm + RELOC/fonts/type1/public/boondox/BOONDOXUprScr-Bold.pfb + RELOC/fonts/type1/public/boondox/BOONDOXUprScr-Regular.pfb + RELOC/fonts/type1/public/boondox/zxxbf8a.pfb + RELOC/fonts/type1/public/boondox/zxxbl8a.pfb + RELOC/fonts/type1/public/boondox/zxxbw8a.pfb + RELOC/fonts/type1/public/boondox/zxxrf8a.pfb + RELOC/fonts/type1/public/boondox/zxxrl8a.pfb + RELOC/fonts/type1/public/boondox/zxxrw8a.pfb + RELOC/fonts/vf/public/boondox/BOONDOX-b-cal.vf + RELOC/fonts/vf/public/boondox/BOONDOX-b-calo.vf + RELOC/fonts/vf/public/boondox/BOONDOX-b-ds.vf + RELOC/fonts/vf/public/boondox/BOONDOX-b-frak.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-cal.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-calo.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-ds.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-frak.vf + RELOC/tex/latex/boondox/BOONDOX-cal.sty + RELOC/tex/latex/boondox/BOONDOX-calo.sty + RELOC/tex/latex/boondox/BOONDOX-ds.sty + RELOC/tex/latex/boondox/BOONDOX-frak.sty + RELOC/tex/latex/boondox/BOONDOX-uprscr.sty + RELOC/tex/latex/boondox/uboondox-cal.fd + RELOC/tex/latex/boondox/uboondox-calo.fd + RELOC/tex/latex/boondox/uboondox-ds.fd + RELOC/tex/latex/boondox/uboondox-frak.fd + RELOC/tex/latex/boondox/uboondoxuprscr.fd +catalogue-ctan /fonts/boondox +catalogue-license ofl lppl +catalogue-topics font font-maths font-type1 +catalogue-version 1.02d + +name bophook +category Package +revision 17062 +shortdesc Provides an At-Begin-Page hook +relocated 1 +longdesc Using the \AtBeginPage hook, you can add material in the +longdesc background of a page. \PageLayout can be used to give page +longdesc makeup commands to be executed on every page (e.g., depending +longdesc on the page style). +containersize 1764 +containerchecksum 8ce41fecd2befaf448ed238d8bf643362f5a945b7391d18b2698c006421b7b60ce4d886e09dc579eef12cfb459f49247f7f3afebdf8b590e9285c608d654ed60 +doccontainersize 44772 +doccontainerchecksum 7d8ce0b7caffa4e16539154ade5a3df6d6b42b75bc521643473ff568ef5c65c3014fb22053b353a917d2c4782f378bc765475dca5d20b3dc06ff02c0dd2a63ec +docfiles size=16 + RELOC/doc/latex/bophook/bophook.pdf details="Package documentation" +srccontainersize 4104 +srccontainerchecksum ca7e5fc30d23c022e4fec8414c9ef11d2acd5707ad781428021f8a828c6c8b891674fc6eb372a0dc33944e2a54adb9b86645529ff28b4438c31d8477cb2b3a6d +srcfiles size=4 + RELOC/source/latex/bophook/bophook.dtx + RELOC/source/latex/bophook/bophook.ins +runfiles size=1 + RELOC/tex/latex/bophook/bophook.sty +catalogue-also everyshi +catalogue-ctan /macros/latex/contrib/bophook +catalogue-license lppl +catalogue-topics defer-stuff +catalogue-version 0.02 + +name borceux +category Package +revision 21047 +shortdesc Diagram macros by Francois Borceux +relocated 1 +longdesc The macros support the construction of diagrams, such as those +longdesc that appear in category theory texts. The user gives the list +longdesc of vertices and arrows to be included, just as when composing a +longdesc matrix, and the program takes care of computing the dimensions +longdesc of the arrows and realizing the pagesetting. All the user has +longdesc to do about the arrows is to specify their type (monomorphism, +longdesc pair of adjoint arrows, etc.) and their direction (north, +longdesc south-east, etc.); 12 types and 32 directions are available. +containersize 26844 +containerchecksum e4658e7a672caccd24832b31b0635dc61ae5ace5297569a84d9da981eb37f6b9b944bc33c1e964c09c7042e3e74f9b3067795fdad508e52e624f2bfaf439559e +doccontainersize 15640 +doccontainerchecksum 202e6b476c5c6f48ea2e6bdf2710d01afcdd9a02669d220bb11bab8fa920f41fddb8aa152a815045ce9d0c92b761f90ab34cd426ba62cf26282d71696f00f03f +docfiles size=23 + RELOC/doc/generic/borceux/Diagram_Mode_d_Emploi + RELOC/doc/generic/borceux/Diagram_Read_Me + RELOC/doc/generic/borceux/README + RELOC/doc/generic/borceux/compatibility/OldDiagram + RELOC/doc/generic/borceux/compatibility/OldMaxiDiagram + RELOC/doc/generic/borceux/compatibility/OldMicroDiagram + RELOC/doc/generic/borceux/compatibility/OldMiniDiagram + RELOC/doc/generic/borceux/compatibility/OldMultipleArrows +runfiles size=191 + RELOC/tex/generic/borceux/Diagram + RELOC/tex/generic/borceux/MaxiDiagram + RELOC/tex/generic/borceux/MicroDiagram + RELOC/tex/generic/borceux/MiniDiagram + RELOC/tex/generic/borceux/MultipleArrows +catalogue-ctan /macros/generic/diagrams/borceux +catalogue-license other-free +catalogue-topics diagram-comm + +name bosisio +category Package +revision 16989 +shortdesc A collection of packages by Francesco Bosisio +relocated 1 +longdesc A collection of packages containing: accenti dblfont; envmath; +longdesc evenpage; graphfig; mathcmd; quotes; and sobolev. +containersize 6992 +containerchecksum 659cd163c28a52fc12651b35b8018d0df7e4fb706739b090167689a7199a8f9ca3bc3376ed3a5b6c076e9242f4f8132dbec6cbeead499453fa5c9cbd2aecce38 +doccontainersize 462336 +doccontainerchecksum 7fc9a651f6845643fecbb9f0fff150fec2a22273accc420451c2c5dbeab6e40cbeb9b51a32589787c005fe479f626111214bebadb217a238baab07fa18d8c92b +docfiles size=172 + RELOC/doc/latex/bosisio/README + RELOC/doc/latex/bosisio/accenti.html + RELOC/doc/latex/bosisio/accenti.pdf + RELOC/doc/latex/bosisio/dblfont.html + RELOC/doc/latex/bosisio/dblfont.pdf + RELOC/doc/latex/bosisio/envmath.html + RELOC/doc/latex/bosisio/envmath.pdf + RELOC/doc/latex/bosisio/evenpage.html + RELOC/doc/latex/bosisio/evenpage.pdf + RELOC/doc/latex/bosisio/graphfig.html + RELOC/doc/latex/bosisio/graphfig.pdf + RELOC/doc/latex/bosisio/index.html details="Outline of the collection" + RELOC/doc/latex/bosisio/makedoc + RELOC/doc/latex/bosisio/mathcmd.html + RELOC/doc/latex/bosisio/mathcmd.pdf + RELOC/doc/latex/bosisio/quotes.html + RELOC/doc/latex/bosisio/quotes.pdf + RELOC/doc/latex/bosisio/sobolev.html + RELOC/doc/latex/bosisio/sobolev.pdf +srccontainersize 23060 +srccontainerchecksum 494ff83253abdc9f0d81b3ee36f1d860938b1eb8a7691ecda596d31126624f3272ba65685a9436a5817b93a786da97e6bc6702249630d71f697ef394f801584e +srcfiles size=41 + RELOC/source/latex/bosisio/accenti.drv + RELOC/source/latex/bosisio/accenti.dtx + RELOC/source/latex/bosisio/dblfont.drv + RELOC/source/latex/bosisio/dblfont.dtx + RELOC/source/latex/bosisio/envmath.drv + RELOC/source/latex/bosisio/envmath.dtx + RELOC/source/latex/bosisio/evenpage.drv + RELOC/source/latex/bosisio/evenpage.dtx + RELOC/source/latex/bosisio/graphfig.drv + RELOC/source/latex/bosisio/graphfig.dtx + RELOC/source/latex/bosisio/mathcmd.drv + RELOC/source/latex/bosisio/mathcmd.dtx + RELOC/source/latex/bosisio/quotes.drv + RELOC/source/latex/bosisio/quotes.dtx + RELOC/source/latex/bosisio/sobolev.drv + RELOC/source/latex/bosisio/sobolev.dtx +runfiles size=15 + RELOC/tex/latex/bosisio/accenti.sty + RELOC/tex/latex/bosisio/dblfont.sty + RELOC/tex/latex/bosisio/envmath.sty + RELOC/tex/latex/bosisio/evenpage.sty + RELOC/tex/latex/bosisio/graphfig.sty + RELOC/tex/latex/bosisio/mathcmd.sty + RELOC/tex/latex/bosisio/quotes.sty + RELOC/tex/latex/bosisio/sobolev.sty +catalogue-ctan /macros/latex/contrib/bosisio +catalogue-license lppl +catalogue-topics collection + +name boxedminipage +category Package +revision 54827 +shortdesc Framed minipages of a specified total width (text and frame combined) +relocated 1 +longdesc The package essentially just wraps a minipage within an \fbox. +longdesc However, while +longdesc \fbox{\begin{minipage}{\linewidth}...\end{minipage}} juts out +longdesc into the margin, \begin{boxedminipage}...\end{boxedminipage} +longdesc does not. Instead, it subtracts the frame's dimensions from the +longdesc specified dimensions of the minipage before typesetting the +longdesc minipage. Note: The package was formerly known as +longdesc boxedminipage2e and now replaces Mario Wolczko's earlier +longdesc boxedminipage package. +containersize 1460 +containerchecksum 697cc00b10468f515b5ebae838d623eec58085269c98897a5c2c4ea932ec52ae819110612feb84b6951ff391bff9309655abf6a41e13da156e5ecc52c015431b +doccontainersize 336440 +doccontainerchecksum 54209e9e5fb8da8db65901c729b78aa3c9b536c3bca4d40437848287d8a07d955a84ea0f13d93e7e702c47c6bf8bece3b6d3f3026d5f78568205746c9009b968 +docfiles size=88 + RELOC/doc/latex/boxedminipage/README details="Readme" + RELOC/doc/latex/boxedminipage/boxedminipage.pdf details="Package documentation" +srccontainersize 4744 +srccontainerchecksum 718499cb248fb8a98a9650a78ae377f9aaed9318b91c4417c7690201504366e073e80615106156087686273f9f86adb58f854cc758c2329ad99103f788ba0164 +srcfiles size=4 + RELOC/source/latex/boxedminipage/boxedminipage.dtx + RELOC/source/latex/boxedminipage/boxedminipage.ins +runfiles size=2 + RELOC/tex/latex/boxedminipage/boxedminipage.sty + RELOC/tex/latex/boxedminipage/boxedminipage2e.sty +catalogue-alias boxedminipage2e +catalogue-ctan /macros/latex/contrib/boxedminipage +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 1.1 + +name boxhandler +category Package +revision 28031 +shortdesc Flexible Captioning and Deferred Box/List Printing +relocated 1 +longdesc The package allows the user to optimise presentation of LaTeX +longdesc tables and figures. Boxhandler will lay out table and figure +longdesc captions with a variety of stylistic apperances, and will also +longdesc allow figures and tables to be "wrapped" in a manner consistent +longdesc with many business and government documents. For a document +longdesc that might appear in different venues with different +longdesc formatting, boxhandler permits the creation of a LaTeX source +longdesc document that can, with a single-line change in the source +longdesc code, produce an output that has very different layout from the +longdesc baseline configuration, not only in terms of caption style, but +longdesc more importantly in terms of the locations where figures, +longdesc tables and lists appear (or not) in the document. Deferral +longdesc routines also allow one to keep all figure and table data in a +longdesc separate source file, while nonetheless producing a document +longdesc with figures and tables appearing in the desired location. +containersize 5484 +containerchecksum 8aa988155d5115e2fbfbee113013cbb4d32cebc670229104cf96c2920c81bb23245e2365cf31705b67cf72345387a275c83f170a777129ddafdf6cb7558bb077 +doccontainersize 325432 +doccontainerchecksum 15b69a4d434be9561cbcf45a5c3c68ae9560fae35ed2256cfcb4c2bca8ac172a8bd0d6f7335644f586a9b3da65948b9372ae9f7ec9bf2c0d43b572cce5af20bc +docfiles size=87 + RELOC/doc/latex/boxhandler/README details="README file" + RELOC/doc/latex/boxhandler/boxhandler.pdf details="Package documentation" +srccontainersize 22640 +srccontainerchecksum 20e1dd79907029b015d9c6d85c80fa907efc490a80db7f0e871b6b379c1370982fced3e3865a9fc0c7492a9d3631d163b98177dca99deff4a78d7f2ee354f2cd +srcfiles size=24 + RELOC/source/latex/boxhandler/boxhandler.dtx + RELOC/source/latex/boxhandler/boxhandler.ins +runfiles size=6 + RELOC/tex/latex/boxhandler/boxhandler.sty +catalogue-ctan /macros/latex/contrib/boxhandler +catalogue-license lppl +catalogue-topics float caption defer-stuff +catalogue-version 1.30 + +name bpchem +category Package +revision 45120 +shortdesc Typeset chemical names, formulae, etc +relocated 1 +longdesc The package provides support for typesetting simple chemical +longdesc formulae, those long IUPAC compound names, and some chemical +longdesc idioms. It also supports the labelling of compounds and +longdesc reference to labelled compounds. +containersize 3168 +containerchecksum 3359bc429ec00bdf3b26810e373fd9bba8f562d4782d16adf2706b59ec1cd153f0fd565c26319bac0cf5065b6a2ea99ad5cf6461fba62a7bae8355fad7d8279b +doccontainersize 356700 +doccontainerchecksum c8edfa3e5fd901ef705b6b55dd2278eabd996e2b3aa76ec5da9c34c07db95909b67f31990684883edd256f7a5eb7c29450886472fafbd0ff91f8e81abc4dc93e +docfiles size=93 + RELOC/doc/latex/bpchem/README.md details="Readme" + RELOC/doc/latex/bpchem/bpchem.pdf details="Package documentation" +srccontainersize 5368 +srccontainerchecksum 0f2629325312dc8e7d05d593bf97ddba9b18d0709d0c29fd5df2b7e5077a15624d98edbca24e20c039e7e72bfc21e676c7bfdb6d29f7c84efd4c40f41d3d930c +srcfiles size=5 + RELOC/source/latex/bpchem/bpchem.dtx + RELOC/source/latex/bpchem/bpchem.ins +runfiles size=2 + RELOC/tex/latex/bpchem/bpchem.sty +catalogue-ctan /macros/latex/contrib/bpchem +catalogue-license lppl +catalogue-topics chemistry +catalogue-version 1.1 + +name bpolynomial +category Package +revision 15878 +shortdesc Drawing polynomial functions of up to order 3 +relocated 1 +longdesc This MetaPost package helps plotting polynomial and root +longdesc functions up to order three. The package provides macros to +longdesc calculate Bezier curves exactly matching a given constant, +longdesc linear, quadratic or cubic polynomial, or square or cubic root +longdesc function. In addition, tangents on all functions and +longdesc derivatives of polynomials can be calculated. +containersize 2580 +containerchecksum 370b9ee803390f51da2cf7da4832ce9a51d923420908ffbf5dba21a2380e13cf345413eb81465e0acf86bc4011ec0bdf8cfcf5ac0cdf62cb3e88b2f2b6a6edb1 +doccontainersize 198608 +doccontainerchecksum 2778eccb795d4543baa16966d55ab68a8c2c6f547d7a544aafec365036d9805a5cbfce97efbd25d0b39329814e95f6a2e18610f5e83a4d755a31dafbd651ce0b +docfiles size=67 + RELOC/doc/metapost/bpolynomial/CHANGES + RELOC/doc/metapost/bpolynomial/README details="Readme" + RELOC/doc/metapost/bpolynomial/TODO + RELOC/doc/metapost/bpolynomial/bpolynomial.pdf details="Package documentation" + RELOC/doc/metapost/bpolynomial/bpolynomial.tex + RELOC/doc/metapost/bpolynomial/examples.mp +runfiles size=3 + RELOC/metapost/bpolynomial/bpolynomial.mp +catalogue-ctan /graphics/metapost/contrib/macros/bpolynomial +catalogue-license lppl +catalogue-topics graphics-plotfn +catalogue-version 0.5 + +name br-lex +category Package +revision 44939 +shortdesc A Class for Typesetting Brazilian legal texts +relocated 1 +longdesc This class implements rules to typeset Brazilian legal texts. +longdesc Its purpose is to be an easy-to-use implementation for the +longdesc end-user. +containersize 2296 +containerchecksum e4eede34a086ab025a9918798feea2c6b8b19d86782a6d93745aa82d40258e1619433eb445d0b3c1335dcb195689bb76ac8142e6c65618cea6392e243dadd915 +doccontainersize 60588 +doccontainerchecksum 3d277aeef55721a833cd613c98852c33f7ce22a8034e2fe62952409cffe1ea49ebe1f3b80f91018ea51fadef226939a14e103884dca19227193a32d1e3ba3110 +docfiles size=19 + RELOC/doc/latex/br-lex/README.md details="Readme" + RELOC/doc/latex/br-lex/brlex-doc.pdf details="Package documentation" language="pt-br" + RELOC/doc/latex/br-lex/leis-exemplo.pdf details="Example of use" language="pt-br" + RELOC/doc/latex/br-lex/leis-exemplo.tex +runfiles size=2 + RELOC/tex/latex/br-lex/br-lex.cls +catalogue-ctan /macros/latex/contrib/br-lex +catalogue-license lppl1.3 +catalogue-topics legal class + +name bracketkey +category Package +revision 17129 +shortdesc Produce bracketed identification keys +relocated 1 +longdesc The package provides an environment bracketkey for use when +longdesc producing lists of species. +containersize 1792 +containerchecksum ecdf6f5c6cfa46a3a0eedc9eeef5bbc59cc05a2a831249787ff70fda7d69466862c18dd7ed7a440b8b2bb93c6a08225c7a97bb2f5588d94548d9f6b626ec36aa +doccontainersize 292852 +doccontainerchecksum db067a4ab9ac087f565d184c48a90800e68ddb25f5f78146ef1f65bcd3cfb1d0adea78483ca8e27fb9f82bbf26d23c5c16ce735aae194f4816ea73eb993ef099 +docfiles size=79 + RELOC/doc/latex/bracketkey/Malva.pdf + RELOC/doc/latex/bracketkey/Malva.tex + RELOC/doc/latex/bracketkey/README details="Readme, including usage details" + RELOC/doc/latex/bracketkey/bracketkey.pdf details="Package documentation" + RELOC/doc/latex/bracketkey/bracketkey.tex +runfiles size=1 + RELOC/tex/latex/bracketkey/bracketkey.sty +catalogue-ctan /macros/latex/contrib/bracketkey +catalogue-license lppl1.3 +catalogue-topics biology +catalogue-version 1.0 + +name braids +category Package +revision 54080 +shortdesc Draw braid diagrams with PGF/TikZ +relocated 1 +longdesc The package enables drawing of braid diagrams with PGF/TikZ +longdesc using a simple syntax. The braid itself is specified by giving +longdesc a word in the braid group, and there are many options for +longdesc styling the strands and for drawing "floors". +containersize 7144 +containerchecksum e04d1b5c12c1d07b94b8aa2e70b302d05571b8bc8b8e7ff9839501b4d89d8c059552e830be52e1c31c4a949a7976e046934dd64d5d16adf944da67562371c884 +doccontainersize 670652 +doccontainerchecksum 1f23bc681de14c760f21b49e0c5d8502cfefc23f15803d4c2b926d1367b407a57a0b316cd8c1e9377c4ccaed969777c1515fa5f5edd0135cec55b7bd03b8dbce +docfiles size=185 + RELOC/doc/latex/braids/README.txt details="Readme" + RELOC/doc/latex/braids/braids.pdf details="Package documentation" + RELOC/doc/latex/braids/braids.tex + RELOC/doc/latex/braids/braids_code.pdf +srccontainersize 14312 +srccontainerchecksum 0a440ca071b54b0375cd3ff185c48da83f7b42e26f2210e04bdad9cf3103c62b2a416e073596180e0d3c7b1054836526f484dbea653ecd961c4aac3d1929602b +srcfiles size=19 + RELOC/source/latex/braids/braids_code.dtx + RELOC/source/latex/braids/braids_code.ins +runfiles size=12 + RELOC/tex/latex/braids/braids.sty + RELOC/tex/latex/braids/tikzlibrarybraids.code.tex +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-license lppl1.3c +catalogue-topics maths graphics diagram pgf-tikz +catalogue-version 2.0 + +name braille +category Package +revision 20655 +shortdesc Support for braille +relocated 1 +longdesc This package allows the user to produce Braille documents on +longdesc paper for the blind without knowing Braille (which can take +longdesc years to learn). Python scripts grade1.py and grade2.py convert +longdesc ordinary text to grade 1 and 2 Braille tags; then, the LaTeX +longdesc package takes the tags and prints out corresponding Braille +longdesc symbols. +containersize 5980 +containerchecksum 04893a3664b10fa1d5b912751e51b6d4a596821535da87aa1f2c2c5632e1fc60278435fe9deae4b0fba8296f2e46015b27b592721dde26dcc4acf7e3bd672a4c +doccontainersize 61288 +doccontainerchecksum 1cf6922ffa0785adb8e7e7fa5cfe134b206d70d012eb2ec1bd40bedb72ace43c8a17b3e94b16635473d425420f362c49f1b509796d43ca0d2aff0bd9be9f25cf +docfiles size=53 + RELOC/doc/latex/braille/README details="Readme" + RELOC/doc/latex/braille/braille.html details="Package documentation (HTML)" + RELOC/doc/latex/braille/braillegif1.gif + RELOC/doc/latex/braille/braillegif2.gif + RELOC/doc/latex/braille/grade1.py + RELOC/doc/latex/braille/grade2.py + RELOC/doc/latex/braille/summary.pdf details="Package documentation (PDF)" + RELOC/doc/latex/braille/summary.tex +runfiles size=5 + RELOC/tex/latex/braille/braille.sty +catalogue-ctan /macros/latex/contrib/braille +catalogue-license lppl1.3 +catalogue-topics spec-alphabet + +name braket +category Package +revision 17127 +shortdesc Dirac bra-ket and set notations +relocated 1 +longdesc Provides macros to typeset bra-ket notation, as well as set +longdesc specifiers, with a single ("|") or a double ("||" or ("\|") +longdesc vertical bar specifier in between two bracketed parts. Each +longdesc macro comes in a fixed-size version and an expanding version. +longdesc If the package finds itself operating under e-tex, it uses the +longdesc extended primitive \middle for more reliable results +containersize 2028 +containerchecksum dc5f931ce9adbb3e8398cfab83402776d92018945172c7c17f04772f3253942c6ebecd5ca0f3d23f0befa87327dea4a3a9b90528bb7409963f04d9b856186562 +doccontainersize 215656 +doccontainerchecksum 9bdd3cec0da91ffd13d556b9620e9c502a658374657e2821141191000a2321bf030edc9c32641b5ae6c52acfc7266c377a8f4dfe4891cb616f8d4f6a377d9ee0 +docfiles size=56 + RELOC/doc/latex/braket/braket.pdf details="Package documentation" + RELOC/doc/latex/braket/braket.tex +runfiles size=1 + RELOC/tex/latex/braket/braket.sty +catalogue-ctan /macros/latex/contrib/braket +catalogue-license pd +catalogue-topics maths physics + +name brandeis-dissertation +category Package +revision 54758 +shortdesc Class for Brandeis University dissertations +relocated 1 +longdesc The class will enable the user to typeset a dissertation which +longdesc adheres to the formatting guidelines of Brandeis University +longdesc Graduate School of Arts and Sciences (GSAS). +containersize 1844 +containerchecksum 26dde7d29bdc60ae3b4c70b14b6b6c35b0319422cdcbda1ed1f4beec7a3056e145985e7a1b3aa4870b8fcc1e6d75da2e5d879b9a5c26ab85de59710d322647ff +doccontainersize 171688 +doccontainerchecksum 49b84e3fc0264f2a74704dbfa90c8c6bea44f436afc88387ff5c7cbf01d5feb207b1ba77e661f6db974e28cc41e3d8054524eed35f948aac3af4dbd24cdffc14 +docfiles size=43 + RELOC/doc/latex/brandeis-dissertation/README.txt details="Readme" + RELOC/doc/latex/brandeis-dissertation/brandeis-dissertation.pdf details="Package documentation" +srccontainersize 4144 +srccontainerchecksum 18cf0e74d51021dda950b2fa0c95807550aa69b1de57f5989b88ed1236c433483291dcb7158beccad9fa72903708212ea50c606d187199ccce589010b02915e3 +srcfiles size=4 + RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.dtx + RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.ins +runfiles size=2 + RELOC/tex/latex/brandeis-dissertation/brandeis-dissertation.cls +catalogue-ctan /macros/latex/contrib/brandeis-dissertation +catalogue-license lppl1.2 +catalogue-topics dissertation +catalogue-version 3.11 + +name brandeis-problemset +category Package +revision 50991 +shortdesc Document class for COSI Problem sets at Brandeis University (Waltham, MA) +relocated 1 +longdesc Brandeis University's computer science ("COSI") courses often +longdesc assign "problem sets" which require fairly rigorous formatting. +longdesc This document class, which extends article, provides a simple +longdesc way to typeset these problem sets in LaTeX. Although the class +longdesc is compatible with all LaTeX flavors, XeLaTeX or LuaLaTeX are +longdesc recommended for fontspec support. +containersize 6860 +containerchecksum fc5026cefa87e1ab248d9d26466a05e11b112c75bc3908c7e6f123a1436d5f813038176e97e1ed290cc99f93dfc8d024c88c1242b9bb41689bfa0a29153db9da +doccontainersize 148788 +doccontainerchecksum 0f6857c1ff226d797d6e0dc96bf040e2393564121b54d5d9b1e9e35acb01b7663441e0460cd117a0b015cb768bfdf3f40df142ae93d5a0d77f9a84f31c3e45b1 +docfiles size=51 + RELOC/doc/latex/brandeis-problemset/LICENSE.txt + RELOC/doc/latex/brandeis-problemset/README.md details="Readme" + RELOC/doc/latex/brandeis-problemset/brandeis-problemset.pdf details="Package documentation" + RELOC/doc/latex/brandeis-problemset/brandeis-problemset.tex + RELOC/doc/latex/brandeis-problemset/example.pdf details="Example of use" + RELOC/doc/latex/brandeis-problemset/example.tex +runfiles size=6 + RELOC/tex/latex/brandeis-problemset/brandeis-problemset.cls + RELOC/tex/latex/brandeis-problemset/brandeis-problemset.sty +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-license lppl1.3c +catalogue-topics exercise class +catalogue-version 0.5.5 + +name brandeis-thesis +category Package +revision 54758 +shortdesc A class for Brandeis University M.A. theses +relocated 1 +longdesc brandeis-thesis.cls provides the structures and formatting +longdesc information for an M.A. thesis for the Brandeis University +longdesc Graduate School of Arts and Sciences. +containersize 1580 +containerchecksum 8dc788bdd5d3b0e16b525f217de177e711abfb5c558382b12e4328fb690e2a16cf1d9fe403b40c392b9b745d605dce30e1c297d5f694cd977b992f585e50e6cc +doccontainersize 150260 +doccontainerchecksum a56e02eaadb1bfe1315d4813fcbab0dc73202de0126d8fc64ee947770ac1866857194ad842fff7a47dfff4650c6f6aed8ab711eed6a47b0b6e8e93b421a8fe1f +docfiles size=38 + RELOC/doc/latex/brandeis-thesis/README.txt details="Readme" + RELOC/doc/latex/brandeis-thesis/brandeis-thesis.pdf details="Package documentation" +srccontainersize 3444 +srccontainerchecksum 7586d766af63eb1797cb35b0fbcf87ad78065e4564c138eb2159c475ce7e7dabe09a0d1140fe80c0fabed5a00713d23869f3071be8b834c1a503463e215a3827 +srcfiles size=4 + RELOC/source/latex/brandeis-thesis/brandeis-thesis.dtx + RELOC/source/latex/brandeis-thesis/brandeis-thesis.ins +runfiles size=1 + RELOC/tex/latex/brandeis-thesis/brandeis-thesis.cls +catalogue-ctan /macros/latex/contrib/brandeis-thesis +catalogue-license lppl1.3c +catalogue-topics class dissertation +catalogue-version 3.1 + +name breakcites +category Package +revision 21014 +shortdesc Ensure that multiple citations may break at line end +relocated 1 +longdesc Makes a very minor change to the operation of the \cite +longdesc command. Note that the change is not necessary in unmodified +longdesc LaTeX; however, there remain packages that restore the +longdesc undesirable behaviour of the command as provided in LaTeX 2.09. +longdesc (Note that neither cite nor natbib make this mistake.) +containersize 956 +containerchecksum 13fdad42586a361b4e01999476f4d92ccc0fbcca4ee2663153b9eabbb08ad571dae6631306e9fc590d94f3f02af79519de30a78ed35f737004d86bd62b76786a +doccontainersize 148116 +doccontainerchecksum 2184e40db7f4a01113ba1040a62f8213f43bf34202a57a33abfc6291e84b01cf27298442f0f636289892d02764f1000ff3542f2ca6e490e0eaf6d5bab247b3f4 +docfiles size=39 + RELOC/doc/latex/breakcites/README + RELOC/doc/latex/breakcites/breakcites.pdf details="Package documentation" + RELOC/doc/latex/breakcites/breakcites.tex +runfiles size=1 + RELOC/tex/latex/breakcites/breakcites.sty +catalogue-ctan /macros/latex/contrib/breakcites +catalogue-license other-free +catalogue-topics cite-supp + +name breakurl +category Package +revision 29901 +shortdesc Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf +relocated 1 +longdesc This package provides a command much like hyperref's \url that +longdesc typesets a URL using a typewriter-like font. However, if the +longdesc dvips driver is being used, the original \url doesn't allow +longdesc line breaks in the middle of the created link: the link comes +longdesc in one atomic piece. This package allows such line breaks in +longdesc the generated links. +containersize 3100 +containerchecksum fa1fa9e3ac50f305ae5b82eb63997d1674b3f640f36d502a1000b439dd52dcaf6b539d153a2c7022f3a00fc0042bcfe341e850ed6b01f7058b1f8f6fd92b4d9b +doccontainersize 107520 +doccontainerchecksum 38f7847274cbee0a6e7c536a982d0110670cf6af54bfa99718a862e1974fdd839f6ef6871cbe2c40bcd0b2a9036c806eb2b57c8adaee583ef316da367ed854f5 +docfiles size=32 + RELOC/doc/latex/breakurl/README details="Package README" + RELOC/doc/latex/breakurl/breakurl.pdf details="Package documentation" +srccontainersize 10328 +srccontainerchecksum 9ecbae9c483331d636a522f67e5da197e4f647daff0a0fe81f4542c7248934c662046c8e61bd10fadb44144918cd508f09c57880b9c1e0c6515cb2dfd35e52cc +srcfiles size=9 + RELOC/source/latex/breakurl/breakurl.dtx + RELOC/source/latex/breakurl/breakurl.ins +runfiles size=3 + RELOC/tex/latex/breakurl/breakurl.sty +catalogue-also hyperref +catalogue-ctan /macros/latex/contrib/breakurl +catalogue-license lppl +catalogue-topics hyper +catalogue-version 1.40 + +name bredzenie +category Package +revision 44371 +shortdesc A Polish version of "lorem ipsum..." in the form of a LaTeX package +relocated 1 +longdesc This is a polish version of the classic pseudo-Latin "lorem +longdesc ipsum dolor sit amet...". It provides access to several +longdesc paragraphs of pseudo-Polish generated with Hidden Markov Models +longdesc and Recurrent Neural Networks trained on a corpus of Polish. +containersize 49840 +containerchecksum 1e5629a2e6e6099a319d8b8a1efec83262780c70a57c482f66a33a48722bcdb18fb891a96b6b6f29c54d71ce581dd1c82decdd22ad74d6ef61765fec3f8c3614 +doccontainersize 169444 +doccontainerchecksum 29fba5bb48aeb2353616cfe9a8dd4fff90c164c10779b8115958733470fd47dc40a567212c62315110a5a7a51363c9f917c4984583d40177037d6b0803ce66fe +docfiles size=44 + RELOC/doc/latex/bredzenie/README details="Readme" + RELOC/doc/latex/bredzenie/bredzenie.pdf details="Package documentation" + RELOC/doc/latex/bredzenie/bredzenie.tex +runfiles size=35 + RELOC/tex/latex/bredzenie/bredzenie.sty +catalogue-alias polishlipsum +catalogue-also lipsum +catalogue-ctan /macros/latex/contrib/bredzenie +catalogue-license lppl1.3c +catalogue-topics dummy-gen +catalogue-version 1.0 + +name breqn +category Package +revision 56422 +shortdesc Automatic line breaking of displayed equations +relocated 1 +longdesc The package provides solutions to a number of common +longdesc difficulties in writing displayed equations and getting +longdesc high-quality output. For example, it is a well-known +longdesc inconvenience that if an equation must be broken into more than +longdesc one line, 'left...right' constructs cannot span lines. The +longdesc breqn package makes them work as one would expect whether or +longdesc not there is an intervening line break. The single most +longdesc ambitious goal of the package, however, is to support automatic +longdesc linebreaking of displayed equations. Such linebreaking cannot +longdesc be done without substantial changes under the hood in the way +longdesc formulae are processed; the code must be watched carefully, +longdesc keeping an eye on possible glitches. The bundle also contains +longdesc the flexisym and mathstyle packages, which are both designated +longdesc as support for breqn. +containersize 24368 +containerchecksum ea1df2ebb14d755225368fafac24e2068b317b56c4a42fb10011f1fb9f233a7d40bd83b0063271ac8efcac67725f32e12e0ef63467cb045bd460abe5f84638f7 +doccontainersize 1061500 +doccontainerchecksum 9e5903493b727972dbc5b18b1be6179ae72d23e59eb047c41562461e5800d5c66d83eb017f410b73f42fd12c219d09dfc95e4cd3375f584820ad0e600cdafc91 +docfiles size=280 + RELOC/doc/latex/breqn/CHANGES.md + RELOC/doc/latex/breqn/README.md details="Readme" + RELOC/doc/latex/breqn/breqn.pdf details="Package documentation" + RELOC/doc/latex/breqn/flexisym.pdf + RELOC/doc/latex/breqn/mathstyle.pdf +srccontainersize 80092 +srccontainerchecksum 5640578e4a42535331094955073d42db502299d25e6f69b4a9caa31b5dd858e2860372bfd123614243b5d1d370eda791c178cb0b6d8c036655febc7c1ce0fbcb +srcfiles size=83 + RELOC/source/latex/breqn/breqn.dtx + RELOC/source/latex/breqn/breqnbundle.ins + RELOC/source/latex/breqn/flexisym.dtx + RELOC/source/latex/breqn/mathstyle.dtx +runfiles size=42 + RELOC/tex/latex/breqn/breqn.sty + RELOC/tex/latex/breqn/cmbase.sym + RELOC/tex/latex/breqn/flexisym.sty + RELOC/tex/latex/breqn/mathpazo.sym + RELOC/tex/latex/breqn/mathptmx.sym + RELOC/tex/latex/breqn/mathstyle.sty + RELOC/tex/latex/breqn/msabm.sym +catalogue-contact-home http://wspr.io/breqn/ +catalogue-contact-repository https://github.com/wspr/breqn +catalogue-ctan /macros/latex/contrib/breqn +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.98k + +name bropd +category Package +revision 35383 +shortdesc Simplified brackets and differentials in LaTeX +relocated 1 +longdesc The package simplifies the process of writing differential +longdesc operators and brackets in LaTeX. The commands facilitate the +longdesc easy manipulation of equations involving brackets and allow +longdesc partial differentials to be expressed in an alternate form. +containersize 1720 +containerchecksum d6bcf207cddeb6115cab45eab12d48326f067df2fec21386ca29282ccd484e572ee4b5420473079b033bf2b085e134fb42b76b3f18d5b56b47ad765c62b07023 +doccontainersize 61592 +doccontainerchecksum b9ed0de353b0b0e6d7c8e48f3a20c5ee88a0ee9fb1873ced88e89b9c4d73b20701add802442e69aecc419a2c6f433ca12ccea9130abcf895a5568f7b2d66d6a2 +docfiles size=17 + RELOC/doc/latex/bropd/README details="Readme" + RELOC/doc/latex/bropd/bropd.pdf details="Package documentation" +srccontainersize 4136 +srccontainerchecksum b33ad62f68eb425381db0c6724fbcea32b1e37f8dace6737af6e996b7103d19eadabf60873ff367feb9c3a69743d219ce41d5274b8c533d5b5323a971d01a06f +srcfiles size=4 + RELOC/source/latex/bropd/bropd.dtx +runfiles size=1 + RELOC/tex/latex/bropd/bropd.sty +catalogue-ctan /macros/latex/contrib/bropd +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.2 + +name brushscr +category Package +revision 28363 +shortdesc A handwriting script font +relocated 1 +longdesc The BrushScript font simulates hand-written characters; it is +longdesc distributed in Adobe Type 1 format (but is available in italic +longdesc shape only). The package includes the files needed by LaTeX in +longdesc order to use that font. The file AAA_readme.tex fully describes +longdesc the package and sample.tex illustrates its use. +execute addMap pbsi.map +containersize 48600 +containerchecksum f8c7107b0e98cc6e402ec8ee6f5e6f9a1b8e0d046dddae9486e4ca68327f370a75a0f90000939828605334b3ad3c5caaf5e541c7933c5545fe3e531066fa650f +doccontainersize 5120 +doccontainerchecksum 41ad7b1afc7cb0f4bfdf0bcff4c1d85f3d9603c3d48ccb62f94a6fa2258cf3f60f03ee1b4b5756d85a77ba4ff9afddbccaba1c4bd5b69d85ce4fed206aa16b1c +docfiles size=8 + RELOC/doc/fonts/brushscr/AAA_readme.tex + RELOC/doc/fonts/brushscr/Makefile + RELOC/doc/fonts/brushscr/README details="Readme" + RELOC/doc/fonts/brushscr/example.tex + RELOC/doc/fonts/brushscr/generate.tex + RELOC/doc/fonts/brushscr/kern.txt + RELOC/doc/fonts/brushscr/sample.tex +runfiles size=31 + RELOC/dvips/brushscr/config.pbsi + RELOC/fonts/afm/public/brushscr/BrushScriptX-Italic.afm + RELOC/fonts/map/dvips/brushscr/pbsi.map + RELOC/fonts/tfm/public/brushscr/pbsi.tfm + RELOC/fonts/tfm/public/brushscr/pbsi8r.tfm + RELOC/fonts/tfm/public/brushscr/pbsi8t.tfm + RELOC/fonts/type1/public/brushscr/BrushScriptX-Italic.pfa + RELOC/fonts/vf/public/brushscr/pbsi8t.vf + RELOC/tex/latex/brushscr/pbsi.sty + RELOC/tex/latex/brushscr/t1pbsi.fd +catalogue-ctan /fonts/brushscr +catalogue-license pd +catalogue-topics font font-calligraphic font-type1 + +name bubblesort +category Package +revision 56070 +shortdesc Bubble sorts a list +relocated 1 +longdesc This package sorts a list of TeX items {item 1}...{item k} in +longdesc "increasing" order where "increasing" is determined by a +longdesc comparator macro. By default it sorts real numbers with the +longdesc usual meaning of "increasing" but some other examples are +longdesc discussed in the documentation. A second macro is included +longdesc which sorts one list and applies the same permutation to a +longdesc second list. +containersize 1908 +containerchecksum 8d089fe6eeb4ae2e8c77de1130b0d51bc50c4b89ff4d1d26065fa93d740de16644856db55c38efa9e199c2ccdfd6906ccdccdb9676f2313f92911c5d6e06246a +doccontainersize 222896 +doccontainerchecksum a9cf0d74f8a713d381d1a06f0a9f658c9074a4aa9027113e47f29ba926f835878e2aa7eed9dedd948e9c5f3b50345f82ef9b4f35ac7fdd08ba041e3a00ac20b2 +docfiles size=56 + RELOC/doc/latex/bubblesort/README.md details="Readme" + RELOC/doc/latex/bubblesort/bubblesort.pdf details="Package documentation" +srccontainersize 7916 +srccontainerchecksum 9cbc0f682dcc18881f4aceca601a2dcf4996e597f4341d3459af336bdae72938b9aa4402fd88f2f7a4de960909bd25bdfa3a01296a8b2e3283809fd63a47eab7 +srcfiles size=7 + RELOC/source/latex/bubblesort/bubblesort.dtx + RELOC/source/latex/bubblesort/bubblesort.ins +runfiles size=2 + RELOC/tex/latex/bubblesort/bubblesort.sty +catalogue-ctan /macros/latex/contrib/bubblesort +catalogue-license lppl1.3c +catalogue-topics macro-sort list +catalogue-version 1.0 + +name buctthesis +category Package +revision 59002 +shortdesc Beijing University of Chemical Technology Thesis Template +relocated 1 +longdesc This package provides a LaTeX class and template for Beijing +longdesc University of Chemical Technology, supporting bachelor, master, +longdesc and doctor theses. +containersize 8936 +containerchecksum a79c86c1a87d591889b8d6df85b9a770a88418d0184460bfc1a9e23a263e8ae6ae48718298381db6f1ba083d2c137ead540ceb469ce80a605d6834a9c11e2fca +doccontainersize 878084 +doccontainerchecksum 393b24ab33f05581cd1346b3219b2d9bb8e411c17f653e334a0a23bd62a2c2ee7aef6d449ec4f506c7e0156116e6bcee2404c4315647b306266b346ceeb1fc62 +docfiles size=251 + RELOC/doc/latex/buctthesis/AddBib.png + RELOC/doc/latex/buctthesis/BUCT-badge.pdf + RELOC/doc/latex/buctthesis/ChangeLog.md + RELOC/doc/latex/buctthesis/LICENSE + RELOC/doc/latex/buctthesis/README.md details="Readme" + RELOC/doc/latex/buctthesis/acknowledgement.tex + RELOC/doc/latex/buctthesis/app1.tex + RELOC/doc/latex/buctthesis/buctcover.tex + RELOC/doc/latex/buctthesis/buctthesis.pdf details="Package documentation" + RELOC/doc/latex/buctthesis/chapter1.tex + RELOC/doc/latex/buctthesis/chapter2.tex + RELOC/doc/latex/buctthesis/chapter3.tex + RELOC/doc/latex/buctthesis/conclusion.tex + RELOC/doc/latex/buctthesis/declare-bachelor.png + RELOC/doc/latex/buctthesis/declare-master.png + RELOC/doc/latex/buctthesis/denotation.tex + RELOC/doc/latex/buctthesis/foreword.tex + RELOC/doc/latex/buctthesis/frontmatter.tex + RELOC/doc/latex/buctthesis/helloworld.cpp + RELOC/doc/latex/buctthesis/image-a.pdf + RELOC/doc/latex/buctthesis/image-c.pdf + RELOC/doc/latex/buctthesis/image-plain.pdf + RELOC/doc/latex/buctthesis/latexmkrc + RELOC/doc/latex/buctthesis/main.tex + RELOC/doc/latex/buctthesis/manual.sty + RELOC/doc/latex/buctthesis/mycfg.sty + RELOC/doc/latex/buctthesis/resume.tex + RELOC/doc/latex/buctthesis/thesisbib.bib + RELOC/doc/latex/buctthesis/translation.tex + RELOC/doc/latex/buctthesis/worm-gear.pdf +srccontainersize 24404 +srccontainerchecksum 67128489bd185d74cf76c77afe8edf547dc835e1a32e6e77ee9aa6e5bd56e98403d3df3b9ccd34841d50e59c6572138a22331cc52de4e1d3c2d6536cbe7156e1 +srcfiles size=23 + RELOC/source/latex/buctthesis/buctthesis.dtx + RELOC/source/latex/buctthesis/buctthesis.ins +runfiles size=10 + RELOC/tex/latex/buctthesis/buctcover.cls + RELOC/tex/latex/buctthesis/buctthesis.cls +catalogue-contact-announce https://github.com/Miracle0565/BUCTthesis/releases +catalogue-contact-bugs https://github.com/Miracle0565/BUCTthesis/issues +catalogue-contact-home https://github.com/Miracle0565/BUCTthesis +catalogue-contact-repository https://github.com/Miracle0565/BUCTthesis/tree/master +catalogue-ctan /macros/latex/contrib/buctthesis +catalogue-license lppl1.3c +catalogue-topics class doc-templ dissertation chinese +catalogue-version 1.1 + +name bullcntr +category Package +revision 15878 +shortdesc Display list item counter as regular pattern of bullets +relocated 1 +longdesc The bullcntr package defines the command bullcntr, which may be +longdesc thought of as an analogue of the \fnsymbol command: like the +longdesc latter, it displays the value of a counter lying between 1 and +longdesc 9, but uses, for the purpose, a regular pattern of bullets. +containersize 2536 +containerchecksum 886109fdce6a936d22b829ff769b130a445876073c73b2bc1767610302ba8a40112938311a138e1c93a0495a6e7d5cafa8d3606ca3b2fe48af442e023195ab93 +doccontainersize 726416 +doccontainerchecksum ab01cfba0570bc565d8b40945aec5d87739a0826d5c323c5ee960c0d3c7c3135ef2c8b7878268b415ffae3beb06fbc6af48656e7c4a6a45ee423254ce23cad1e +docfiles size=217 + RELOC/doc/latex/bullcntr/00readme.txt + RELOC/doc/latex/bullcntr/README details="Readme" + RELOC/doc/latex/bullcntr/bullcntr-man.pdf details="Package documentation" + RELOC/doc/latex/bullcntr/bullcntr-man.tex + RELOC/doc/latex/bullcntr/bullcntr-sam.tex + RELOC/doc/latex/bullcntr/bullenum-sam.tex + RELOC/doc/latex/bullcntr/manifest.txt +srccontainersize 17072 +srccontainerchecksum cd05d28c2e5c759863403e3ea9e8700002a4ef4f9021decec9a681b92d944ecc4c6765bae332f8645d06d12ab6adc096f4a560a195c981d5e6cbc72acb56e812 +srcfiles size=17 + RELOC/source/latex/bullcntr/bullcntr.dtx + RELOC/source/latex/bullcntr/bullcntr.ins +runfiles size=3 + RELOC/tex/latex/bullcntr/bullcntr.sty + RELOC/tex/latex/bullcntr/bullenum.sty +catalogue-ctan /macros/latex/contrib/bullcntr +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 0.04 + +name bundledoc +category Package +revision 55064 +shortdesc Bundle together all the files needed to build a LaTeX document +longdesc The bundledoc package is a post-processor for the snapshot +longdesc package that bundles together all the classes, packages and +longdesc files needed to build a given LaTeX document. It reads the .dep +longdesc file that snapshot produces, finds each of the files mentioned +longdesc therein, and archives them into a single .tar.gz (or .zip, or +longdesc whatever) file, suitable for moving across systems, +longdesc transmitting to a colleague, etc. A script, arlatex, provides +longdesc an alternative "archiving" mechanism, creating a single LaTeX +longdesc file that contains all of the ancillary files of a LaTeX +longdesc document, together with the document itself, using the +longdesc filecontents* environment. +depend bundledoc.ARCH +containersize 12784 +containerchecksum 07aa1f9dd3cf8bb16fad2a39783a5bd05168e0956840853b6f9a16de753726b0393b8863c6cad985b8bcf7431570137d6fac82588524efc5d7c0032e2dd555c8 +doccontainersize 79028 +doccontainerchecksum bbd78c948c90f6b4470c792c9e0b99fb5bd8ae73b7eb78343739909c13ed0e0d763dd0b6a4b8d05a77280054afe15f2979c985121916fb8a34dff231b810106b +docfiles size=31 + texmf-dist/doc/man/man1/arlatex.1 + texmf-dist/doc/man/man1/arlatex.man1.pdf + texmf-dist/doc/man/man1/bundledoc.1 + texmf-dist/doc/man/man1/bundledoc.man1.pdf + texmf-dist/doc/support/bundledoc/README details="Readme" +runfiles size=14 + texmf-dist/scripts/bundledoc/arlatex + texmf-dist/scripts/bundledoc/bundledoc + texmf-dist/tex/latex/bundledoc/miktex.cfg + texmf-dist/tex/latex/bundledoc/texlive-unix-arlatex.cfg + texmf-dist/tex/latex/bundledoc/texlive-unix.cfg +catalogue-ctan /support/bundledoc +catalogue-license lppl1.3c +catalogue-topics bundle archival +catalogue-version 3.4 + +name bundledoc.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of bundledoc +containersize 364 +containerchecksum 684b033a23d82b3338ef60ab697ebb83328f420981521942eeed10fe323eaea88f606dd607856bd5a6852ff558ef5cffa878169353cd391196c7b772a205e6ac +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/arlatex + bin/aarch64-linux/bundledoc + +name bundledoc.amd64-freebsd +category Package +revision 17794 +shortdesc amd64-freebsd files of bundledoc +containersize 364 +containerchecksum e6b6bd0ed03790b8fd4a450a15a05891900dc46c1617a0b537b1167e1deb469cfec876c51f302d769c97a72c1c746e704361e8b8d9ae7e09d5a18d8a5d1d471e +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/arlatex + bin/amd64-freebsd/bundledoc + +name bundledoc.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of bundledoc +containersize 360 +containerchecksum ce0034aa645003fb54531ff7f54f3678248d7f968bdb93e4b6a059f8f43f9b7d635101420640cebc87a1a291a38654fd3248b4e08ea01ff9db359d6952852515 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/arlatex + bin/amd64-netbsd/bundledoc + +name bundledoc.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of bundledoc +containersize 360 +containerchecksum 4426f2ead711423324f07bb7a708962573b6ef0b6e5f29051dcb91d4c3aa503299e0656b4f575d00c2e530323b79cf6c53a2c3cd02cc9ab28e56d407f28fddce +binfiles arch=armhf-linux size=2 + bin/armhf-linux/arlatex + bin/armhf-linux/bundledoc + +name bundledoc.i386-cygwin +category Package +revision 17794 +shortdesc i386-cygwin files of bundledoc +containersize 360 +containerchecksum 9226a3842a0012f54fa26f10800a6fcba35bb2c852278ac64700e649834ccc45c4d502b31df42bf3e3056e6165ae9f884dbd3b9cb929440964f6896dccc3bc02 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/arlatex + bin/i386-cygwin/bundledoc + +name bundledoc.i386-freebsd +category Package +revision 17794 +shortdesc i386-freebsd files of bundledoc +containersize 364 +containerchecksum d52b1497d4211d3fe1c2ea384d8e733a9483e3d56b1babbfe52a74c7762068605a29708c8e48fe0b00262d0ea49ca069d6c46ebfeec5fb32dedab6491707478e +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/arlatex + bin/i386-freebsd/bundledoc + +name bundledoc.i386-linux +category Package +revision 17794 +shortdesc i386-linux files of bundledoc +containersize 360 +containerchecksum 5b974cb80ebdb07b3677a8650de92fd38d36da4e4fa52ba5c5f7a757a8725d2b2267c64adeb0b1ec65dc4ca93b55f414af4b3a75f7f17166e23438c1f2adaa77 +binfiles arch=i386-linux size=2 + bin/i386-linux/arlatex + bin/i386-linux/bundledoc + +name bundledoc.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of bundledoc +containersize 364 +containerchecksum fcd707981f6ac3a2a8682febcefa874593ea10ee465d5b69da6bc9ef0701d7308f3b5bed1187bcde33733b44065bc2814e1716dff1ee458196a61297ee15d12d +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/arlatex + bin/i386-netbsd/bundledoc + +name bundledoc.i386-solaris +category Package +revision 17794 +shortdesc i386-solaris files of bundledoc +containersize 364 +containerchecksum 8d5a575b5ce7bac91ae052012e7cd09e09ea5edd67972213fe05a9a2d488c4fe706e3e5ec24169871b66e830387d93fdf17835713b0a0263a89fe43f132993dd +binfiles arch=i386-solaris size=2 + bin/i386-solaris/arlatex + bin/i386-solaris/bundledoc + +name bundledoc.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of bundledoc +containersize 364 +containerchecksum 12854585477b164907a4c3e4caadabeae3902d785bbd7ed8315ba236f358614009e05fde46eb5cd35dd1d7bdc1e25128202d84c4132ac2c42348c5ea2daf52e8 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/arlatex + bin/universal-darwin/bundledoc + +name bundledoc.win32 +category Package +revision 17813 +shortdesc win32 files of bundledoc +containersize 704 +containerchecksum 40148d3496893a170cd20418c006449629641e0143046fb7c659f11ed3b126312f030d04d2c190b0fcf632c9cbb8901ee4faecfd3d7b091aad7e9abfec6f2142 +binfiles arch=win32 size=2 + bin/win32/arlatex.exe + bin/win32/bundledoc.exe + +name bundledoc.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of bundledoc +containersize 364 +containerchecksum 89358399df190acfc1ee2d33b5357929317ea104f46d5eee6978989bf4db1c54663b9adbb021a43eb88eaf05603788b9c74103eb4855384c7c625fed1e88af37 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/arlatex + bin/x86_64-cygwin/bundledoc + +name bundledoc.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of bundledoc +containersize 368 +containerchecksum b3ae37bd7fcedd23e436fa91ff941fa0cc79619fc5985cebf4773e71fa3a00e611e5f47c0ad9d05e4c28674226796b329a6910975c374e45dd810ba98e9acd3d +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/arlatex + bin/x86_64-darwinlegacy/bundledoc + +name bundledoc.x86_64-linux +category Package +revision 17794 +shortdesc x86_64-linux files of bundledoc +containersize 360 +containerchecksum cb28604e5129bc9a49f9903d42df2ad44142408889e37a019f5e4174cb5160390fe1c2e3a025c4b4a8b0278f23e78ec0649509b564f641581d8362d79ec39220 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/arlatex + bin/x86_64-linux/bundledoc + +name bundledoc.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of bundledoc +containersize 368 +containerchecksum c72abdba188682433f7baeee1cde13084e4d85d5dde108ad566fc17a759c897a6ee75f68c8969cfbaaf52518b324e5147d84554d4bbf9e70599f5d404c9ca578 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/arlatex + bin/x86_64-linuxmusl/bundledoc + +name bundledoc.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of bundledoc +containersize 364 +containerchecksum 9dfa3e0eee7e2b660b6a14aa3a962840e1a5ca211396094fc9d49589abf922c9d53e2047be211831e06af4190ea57888344deb8e269540c92e6ca85557e80ff5 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/arlatex + bin/x86_64-solaris/bundledoc + +name burmese +category Package +revision 25185 +shortdesc Basic Support for Writing Burmese +relocated 1 +longdesc This package provides basic support for writing Burmese. The +longdesc package provides a preprocessor (written in Perl), an Adobe +longdesc Type 1 font, and LaTeX macros. +execute addMap burmese.map +containersize 54644 +containerchecksum 7bce3a31febfc6a959ba4779d975cf93276a0bd1115e06a50a3c8d705e49e8d6747ecebc7eac2147f021a538dda1bb241d8f320ef1486229c930141e06d6ae26 +doccontainersize 133020 +doccontainerchecksum 4a7f3628efd913a362786564dd260dc1a63e51a397af3d92222db6f758b7a7792b13e58422d2604ae98f615fb5fc42e77f265e505236db9bc981d7951e0ee1ed +docfiles size=37 + RELOC/doc/fonts/burmese/burmguide.pdf details="Package documentation" +srccontainersize 3436 +srccontainerchecksum 066d164d97f4fa9e1050d75c3c20997be859718a2be37c465010040f969b2d3aa17edc3c241f5aca45d91dd12517d72a731d02954088ee83ff5aeec3be0b0fcd +srcfiles size=4 + RELOC/source/fonts/burmese/birm.pl +runfiles size=18 + RELOC/fonts/map/dvips/burmese/burmese.map + RELOC/fonts/tfm/public/burmese/burm.tfm + RELOC/fonts/type1/public/burmese/burm.pfb + RELOC/tex/latex/burmese/birm.sty + RELOC/tex/latex/burmese/ubirm.fd +catalogue-ctan /language/burmese +catalogue-license lppl +catalogue-topics burmese + +name businesscard-qrcode +category Package +revision 54080 +shortdesc Business cards with QR-Code +relocated 1 +longdesc What happens when you give your visiting card to someone? +longdesc Either they manually type the text into their computer or +longdesc mobile phone, or it will end up in a box and be forgotten. +longdesc Nowadays data is required electronically, not on paper. Here is +longdesc the solution: A visiting card with QR-Code that contains a full +longdesc vcard so that it can be scanned with an app on the mobile phone +longdesc and thereby automatically imported into the electronic +longdesc contacts. This also works well when you are offline and +longdesc bluetooth transfer fails. So here is the highly configurable +longdesc business card or visiting card with full vcard as QR-Code, +longdesc ready to send to online printers. You can specify the exact +longdesc size of the paper and the content within the paper, inluding +longdesc generation of crop marks. The package depends on the following +longdesc other LaTeX packages: calc, crop, DejaVuSans, etoolbox, +longdesc fontawesome, fontenc, geometry, kvoptions, marvosym, qrcode, +longdesc varwidth, and wrapfig. The package needs XeLaTeX for working +longdesc properly. +containersize 3760 +containerchecksum 66e98af04011a9a17104dac23845ee6bbc5f4fe3aeec37899f82448a85493c5b722f5de59139f2a29fc84390cf5480af3a491ea2d1270edeb16ada734e2cb57d +doccontainersize 540988 +doccontainerchecksum d488e313d538d9faa956b4279974faede62ca231ce744d010b11d8a98a9b596d225a3804ba0aa72a13a6749a6207321b9937617d524e5803f490f9bb8933bb8a +docfiles size=158 + RELOC/doc/xelatex/businesscard-qrcode/README.md details="Readme" + RELOC/doc/xelatex/businesscard-qrcode/examples/example.pdf details="Example of use (3)" + RELOC/doc/xelatex/businesscard-qrcode/examples/example.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/john-doe-hongkong.pdf details="Example of use (1)" + RELOC/doc/xelatex/businesscard-qrcode/examples/john-doe-hongkong.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/peter-muster-example-company-zuerich.pdf details="Example of use (2)" + RELOC/doc/xelatex/businesscard-qrcode/examples/peter-muster-example-company-zuerich.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/special-papersize.pdf details="Example of use (4): Special papersize" + RELOC/doc/xelatex/businesscard-qrcode/examples/special-papersize.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/texstudio_d30266.pdf + RELOC/doc/xelatex/businesscard-qrcode/examples/texstudio_d30266.tex + RELOC/doc/xelatex/businesscard-qrcode/screenshots/example.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/john-doe-hongkong.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/peter-muster-example-company-zuerich.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/special-papersize.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/texstudio_d30266.jpg +runfiles size=3 + RELOC/tex/xelatex/businesscard-qrcode/businesscard-qrcode.cls +catalogue-contact-bugs https://mrw.dev/templates/businesscard-qrcode/issues +catalogue-contact-repository https://mrw.dev/templates/businesscard-qrcode +catalogue-ctan /macros/xetex/latex/businesscard-qrcode +catalogue-license lgpl +catalogue-topics class file-card qrcode xetex +catalogue-version 1.2 + +name bussproofs +category Package +revision 54080 +shortdesc Proof trees in the style of the sequent calculus +relocated 1 +longdesc The package allows the construction of proof trees in the style +longdesc of the sequent calculus and many other proof systems. One novel +longdesc feature of the macros is they support the horizontal alignment +longdesc according to some centre point specified with the command +longdesc \fCenter. This is the style often used in sequent calculus +longdesc proofs. The package works in a Plain TeX document, as well as +longdesc in LaTeX; an exposition of the commands available is given in +longdesc the package file itself. +containersize 8804 +containerchecksum 042e01990554b7ffcbd70c9a281d87ee98d9b25d7071f24d114e097e536ae1d7fb565854399eeee547ad2cf97bdd6d4fd0755169ba7548f01ed0d736e031a383 +doccontainersize 104936 +doccontainerchecksum b3fec7f142210ee5051b3b3a45ef26724d95c538978c4904c9723113adcd2164e6385a9949473a8b9d29109b016c24f25a4088fe3728d675fd0023a043ca6262 +docfiles size=42 + RELOC/doc/latex/bussproofs/BussGuide2.pdf details="User Guide" + RELOC/doc/latex/bussproofs/BussGuide2.tex + RELOC/doc/latex/bussproofs/README.txt + RELOC/doc/latex/bussproofs/testbp2.pdf details="Test/example of use" + RELOC/doc/latex/bussproofs/testbp2.tex +runfiles size=10 + RELOC/tex/latex/bussproofs/bussproofs.sty +catalogue-also bussproofs-extra ebproof +catalogue-contact-home http://math.ucsd.edu/~sbuss/ResearchWeb/bussproofs/ +catalogue-ctan /macros/latex/contrib/bussproofs +catalogue-license lppl1.3 +catalogue-topics maths proof +catalogue-version 1.1 + +name bussproofs-extra +category Package +revision 51299 +shortdesc Extra commands for bussproofs.sty +relocated 1 +longdesc This package provides additional functionality for +longdesc bussproofs.sty; specifically, it allows for typesetting of +longdesc entire (sub)deductions. +containersize 2548 +containerchecksum 8410e4a795b79e7ea06bfd72c713f39950da8d1c418002bc497eb802ae71dce5d5372f7692267ca62891cbb2a58719b76c2bce3f10ec11cff63c40bae9122a2e +doccontainersize 231432 +doccontainerchecksum 87ed5af043bcb4d41f301d4b09dae511fa509fc9c50ac70cef29d0df4bc023f97856504c0650b6139ff8bcd9c25a046411b58f72db016d7429788db757a4e87a +docfiles size=63 + RELOC/doc/latex/bussproofs-extra/LICENSE.txt + RELOC/doc/latex/bussproofs-extra/README.md details="Readme" + RELOC/doc/latex/bussproofs-extra/bpextra.sty + RELOC/doc/latex/bussproofs-extra/bussproofs-extra.pdf details="Package documentation" +srccontainersize 6260 +srccontainerchecksum de1b272c20c7aa3d1c6f06fef7226083890a8b43ac3ad9ec54d6ff0649ee268b9c9acdf5d3e335f1fbf7f2b9aec3ff91517f126fe8d354e32662e3d6938b197e +srcfiles size=7 + RELOC/source/latex/bussproofs-extra/bussproofs-extra.dtx + RELOC/source/latex/bussproofs-extra/bussproofs-extra.ins +runfiles size=3 + RELOC/tex/latex/bussproofs-extra/bussproofs-extra.sty +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-license lppl1.3c +catalogue-topics maths proof +catalogue-version 0.4 + +name bxbase +category Package +revision 56528 +shortdesc BX bundle base components +relocated 1 +longdesc The main purpose of this bundle is to serve as an underlying +longdesc library for other packages created by the same author (their +longdesc names start with "BX" or "PX"). However bxbase package contains +longdesc a few user-level commands and is of some use by itself. +containersize 22704 +containerchecksum 279018d86ea2c933ae8106678b1fc3164439de59e74ba2244104951b352346e51d6a5a78591e605e25d2dc5dbfa15b6481d5b2f637517dd4e19a53da3d0fc179 +doccontainersize 76320 +doccontainerchecksum aa76f5acfe7367c48219eee28635bddc4655fde3e91a7eae5ff8fd03baf0e2732c0f3b587b7518f660cf58fd124a8c021ea495b57520347c4bacbd5246cc2a99 +docfiles size=28 + RELOC/doc/latex/bxbase/LICENSE + RELOC/doc/latex/bxbase/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/bxbase/README.md details="Readme" + RELOC/doc/latex/bxbase/bxbase-ja.pdf details="Package documentation" language="ja" + RELOC/doc/latex/bxbase/bxbase-ja.tex +runfiles size=29 + RELOC/tex/latex/bxbase/bxbase.def + RELOC/tex/latex/bxbase/bxbase.sty + RELOC/tex/latex/bxbase/bxtoolbox-ext.def + RELOC/tex/latex/bxbase/bxtoolbox-ja.def + RELOC/tex/latex/bxbase/bxtoolbox.def + RELOC/tex/latex/bxbase/bxtoolbox.sty + RELOC/tex/latex/bxbase/bxutf8.def + RELOC/tex/latex/bxbase/bxutf8x.def + RELOC/tex/latex/bxbase/zxbase.sty +catalogue-contact-home https://github.com/zr-tex8r/BXbase +catalogue-ctan /language/japanese/BX/bxbase +catalogue-license mit +catalogue-topics japanese macro-supp +catalogue-version 1.2 + +name bxcalc +category Package +revision 56431 +shortdesc Extend the functionality of the calc package +relocated 1 +longdesc This package bundle consists of the following packages: +longdesc bxcalcize: To make calc expressions available in more places. +longdesc bxcalcux: To add user-defined units to the calc syntax. In +longdesc addition, this bundle provides the bxcalc package, which simply +longdesc loads the above-mentioned packages internally. +containersize 3400 +containerchecksum 580fba2af6adcaf2b2f137cd34455b3dc896f2e26aabc2352fb23c12fe1a134340c2505d38dae51e79c72408fb4023213971ddc0ad322f16bafa29a9bc1dc4bc +doccontainersize 292944 +doccontainerchecksum 1e2e8eda856a15be3e9f3cdc441d3b1972b97125d0a370061f0919ed0c4aa267d5fbacddd453d9b99bf5b759b801c71c3e988f9666540d960d9a27e7c54ea904 +docfiles size=92 + RELOC/doc/latex/bxcalc/LICENSE + RELOC/doc/latex/bxcalc/README-ja.md + RELOC/doc/latex/bxcalc/README.md details="Readme" + RELOC/doc/latex/bxcalc/bxcalcize.pdf details="Package documentation" + RELOC/doc/latex/bxcalc/bxcalcize.tex + RELOC/doc/latex/bxcalc/bxcalcux.pdf details="Further Package Documentation" + RELOC/doc/latex/bxcalc/bxcalcux.tex + RELOC/doc/latex/bxcalc/sample-bxcalc.pdf details="Examples" + RELOC/doc/latex/bxcalc/sample-bxcalc.tex +runfiles size=4 + RELOC/tex/latex/bxcalc/bxcalc.sty + RELOC/tex/latex/bxcalc/bxcalcize.sty + RELOC/tex/latex/bxcalc/bxcalcux.sty +catalogue-contact-home https://github.com/zr-tex8r/BXcalc +catalogue-ctan /macros/latex/contrib/bxcalc +catalogue-license mit +catalogue-topics calculation arithmetic etex +catalogue-version 1.1 + +name bxcjkjatype +category Package +revision 54080 +shortdesc Typeset Japanese with pdfLaTeX and CJK +relocated 1 +longdesc The package provides a working configuration of the CJK +longdesc package, suitable for Japanese typesetting of moderate quality. +longdesc Moreover, it facilitates use of the CJK package for pLaTeX +longdesc users, by providing commands that are similar to those used by +longdesc the pLaTeX kernel and some other packages used with it. +containersize 8212 +containerchecksum f720106c08ffc3b8f9a2c9279325364d5ae91948d3c61b83423d41a55249cdb205bf330c8f08ce6877a7713e82a67a29f1a71e9ff07f9c1225926a61a858fb5a +doccontainersize 261872 +doccontainerchecksum cecf43857662a4b1126edbacc017a8d06b366ad8c785db520d6b18a293cdf786b8d7bb7d3981355acf9a4d2759c2a58af25a61a9a06d20b431ba3eb50117b560 +docfiles size=74 + RELOC/doc/latex/bxcjkjatype/LICENSE + RELOC/doc/latex/bxcjkjatype/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/latex/bxcjkjatype/README.md details="Readme (English)" language="en" + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.pdf details="Sample: Introductory beamer slides (English and Japanese)" + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.tex + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype.pdf details="Small example of use (Japanese and English)" language="ja" + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype.tex +runfiles size=8 + RELOC/tex/latex/bxcjkjatype/bxcjkjatype.sty +catalogue-ctan /language/japanese/BX/bxcjkjatype +catalogue-license mit +catalogue-topics japanese +catalogue-version 0.3 + +name bxdpx-beamer +category Package +revision 41813 +shortdesc Dvipdfmx extras for use with beamer +relocated 1 +longdesc The package is a driver to support beamer Navigation symbols +longdesc and \framezoomed regions when using dvipdfmx as PDF generator +longdesc (e.g., as part of e-pTeX). The package does not define any +longdesc 'user' commands. +containersize 1380 +containerchecksum 48009e69d2bb6c316c5d33dcc9d17fcf9f762b68688130ee8407648039b7c3effbbdeaf991bda7842738da59213cc855b50f48cf179ec77e0682729d6e5d3709 +doccontainersize 1960 +doccontainerchecksum 2692918a0fb1ac7bccc6e905350c6cd716b72b33d8f00bad73ed0146238965d0c1a1d9de07c22fbef1ba7211a919c1152342a9f4bb48185099aa470f76374bc8 +docfiles size=4 + RELOC/doc/latex/bxdpx-beamer/LICENSE + RELOC/doc/latex/bxdpx-beamer/README.md details="Readme" + RELOC/doc/latex/bxdpx-beamer/sample/test-framezoom.tex + RELOC/doc/latex/bxdpx-beamer/sample/test-navisymbol.tex +runfiles size=1 + RELOC/tex/latex/bxdpx-beamer/bxdpx-beamer.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/bxdpx-beamer +catalogue-license mit +catalogue-topics graphics-drv +catalogue-version 0.3 + +name bxdvidriver +category Package +revision 43219 +shortdesc Enables specifying a driver option effective only in DVI output +relocated 1 +longdesc This single-function package enables authors to specify a +longdesc global driver option (dvips, dvipdfmx, etc) which is applied +longdesc only when the engine outputs a DVI file. It is useful to create +longdesc special document- templates that can be compiled in both +longdesc PDF-mode and DVI-mode. +containersize 2660 +containerchecksum dc37ee5237e6eb02fca173b8b0501795604930b56c3e9101c6b653ad6df12cb5ae82ad81e66aac5c1ce4ff0aa8d7f05658f4b41057ede286715c25d290682182 +doccontainersize 2232 +doccontainerchecksum 83e18920fb6f2f54f54c401fe83ff131dcbe64ca712ded59f0690d90f1d8b2623ec135692a3fa437b77fe82336553a529d36b5bdcec96a96cd57523f11cc0e0b +docfiles size=2 + RELOC/doc/latex/bxdvidriver/LICENSE + RELOC/doc/latex/bxdvidriver/README.md details="Readme" +runfiles size=3 + RELOC/tex/latex/bxdvidriver/bxdvidriver.sty +catalogue-ctan /macros/latex/contrib/bxdvidriver +catalogue-license mit +catalogue-topics dvi-proc +catalogue-version 0.2a + +name bxeepic +category Package +revision 30559 +shortdesc Eepic facilities using pict2e +relocated 1 +longdesc The package provides an eepic driver to use pict2e facilities. +containersize 7136 +containerchecksum a0436e9dc7dffa9c7a7b2a41662a41db934aa4242c953f480400b7a2c8a71bb526ebe8eefa46b02db03364efdf14fd88c1dcd267ebd59f594d72540ddd3048c2 +doccontainersize 10552 +doccontainerchecksum 25789b297ba2fcfb81e74637cb2270d41eff858e747b841cfbf5d29791fe6697d3a9cfd4abbbbc4ed0a5c5b274f8b5a7cdeaccc995f6ae623d2a6e2d831b7e55 +docfiles size=6 + RELOC/doc/latex/bxeepic/LICENSE + RELOC/doc/latex/bxeepic/README details="Readme" + RELOC/doc/latex/bxeepic/sample-bxeepic.pdf + RELOC/doc/latex/bxeepic/sample-bxeepic.tex +runfiles size=7 + RELOC/tex/latex/bxeepic/bxdpxp2e.def + RELOC/tex/latex/bxeepic/bxeepic.sty +catalogue-ctan /macros/latex/contrib/bxeepic +catalogue-license other-free +catalogue-topics graphics-in-tex +catalogue-version 0.2 + +name bxenclose +category Package +revision 40213 +shortdesc Enclose the document body with some pieces of code +relocated 1 +longdesc The package enables authors to designate in the preamble to +longdesc make the document body enclosed with the given pieces of code. +longdesc As is known, there are already various mechanisms provided by +longdesc LaTeX kernel or packages that attach hooks at the beginning and +longdesc end of documents. +containersize 1764 +containerchecksum f3d0f39e9c21f3bff75d118bb1a9408e7fb2c84beb9301873cd37a678de4b7680d1e8f13693839ce32e1e816e756d8f0af14cc620952afc8fb02885debf478a8 +doccontainersize 1856 +doccontainerchecksum ea7e0f17ee70d3d4798e85e3788af1110fb2adb436106ad08f601655453af2c5d192d5e3854fee1b29f6ac21f2f6b02e239ff4ec6ae9181818b23bdbac45583e +docfiles size=2 + RELOC/doc/latex/bxenclose/LICENSE + RELOC/doc/latex/bxenclose/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/bxenclose/bxenclose.sty +catalogue-ctan /macros/latex/contrib/bxenclose +catalogue-license mit +catalogue-topics macro-supp +catalogue-version 0.2 + +name bxghost +category Package +revision 53606 +shortdesc Ghost insertion for proper xkanjiskip +relocated 1 +longdesc The package provides two commands to help authors for documents +longdesc in Japanese to insert proper xkanjiskips. It supports LuaTeX, +longdesc XeTeX, pTeX, upTeX, and ApTeX (pTeX-ng). +containersize 1648 +containerchecksum 72b5a376d5a927297fc466936ae55ed4fe4fe8705aa8f31fcaa4f4b558496b19952b55ff8b02318f5d5cc8c6cfe31c6310cbd22900084d353a93f348291e0c6e +doccontainersize 1792 +doccontainerchecksum 718c59d1c05689fbb4641ead9437b2ddde19f848b6f7c9fd5f4c91b10abe9fc6413c531c2f5af3f9e70e30578341116e5b4731a8f873f75fd4ee0803f3597a3b +docfiles size=2 + RELOC/doc/latex/bxghost/LICENSE + RELOC/doc/latex/bxghost/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/bxghost/bxghost.sty +catalogue-contact-bugs https://github.com/wtsnjp/BXghost/issues +catalogue-contact-repository https://github.com/wtsnjp/BXghost +catalogue-ctan /language/japanese/BX/bxghost +catalogue-license mit +catalogue-topics japanese macro-supp +catalogue-version 0.3.0 + +name bxjaholiday +category Package +revision 57025 +shortdesc Support for Japanese holidays +relocated 1 +longdesc This LaTeX package provides a command to convert dates to names +longdesc of Japanese holidays. Another command, converting dates to the +longdesc day of the week in Japanese, is available as a free gift. +longdesc Further (lower-level) APIs are provided for expl3. The package +longdesc supports pdfTeX, XeTeX, LuaTeX, pTeX, and upTeX. +containersize 5576 +containerchecksum e062446514cdcf8e817f06a33cd02a29cd1985dff450a89baaf2e230fd9dbe20e92d3a34b661ec12c764c5a6230b1fede49034847fcac2d2db2377eb7d4450cb +doccontainersize 208336 +doccontainerchecksum 3b44cf93b4afbbf97263b091509a5486bcbc6fc7091bc8a583be73f35487962af93f071547a78895231fb576054e440271abea20a7b07d111c197382b52ee746 +docfiles size=60 + RELOC/doc/latex/bxjaholiday/LICENSE + RELOC/doc/latex/bxjaholiday/README.md details="Readme" + RELOC/doc/latex/bxjaholiday/bxjaholiday-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/bxjaholiday/bxjaholiday-ja.tex + RELOC/doc/latex/bxjaholiday/bxjaholiday.pdf details="Package documentation (English)" + RELOC/doc/latex/bxjaholiday/bxjaholiday.tex +runfiles size=9 + RELOC/tex/latex/bxjaholiday/bxjaholiday.sty +catalogue-contact-bugs https://github.com/wtsnjp/BXjaholiday/issues +catalogue-contact-repository https://github.com/wtsnjp/BXjaholiday +catalogue-ctan /language/japanese/BX/bxjaholiday +catalogue-license mit +catalogue-topics japanese date-time expl3 +catalogue-version 1.1.0 + +name bxjalipsum +category Package +revision 43369 +shortdesc Dummy text in Japanese +relocated 1 +longdesc This package enables users to print some Japanese text that can +longdesc be used as dummy text. It is a Japanese counterpart of the +longdesc lipsum package. Since there is no well-known nonsense text like +longdesc Lipsum in the Japanese language, the package uses some real +longdesc text in public domain. +containersize 26300 +containerchecksum fa8f096023f86fe53d09ef1e719d1930248981f4a9c4f762ceb00eb7e42ae87a876857f03b8210ded78798c4ea18bc44486a87876bd5f2509a9270f09d56a53f +doccontainersize 2896 +doccontainerchecksum 551385ef1ec3aed5d21cef7f1f66254f937c1a7f979db2ad083411580a64cd152b16b9629bdeaa8c2a14ebdc8566278e7a9533ea178b953b033b2637a5f29df4 +docfiles size=4 + RELOC/doc/latex/bxjalipsum/LICENSE + RELOC/doc/latex/bxjalipsum/README.md details="Readme" + RELOC/doc/latex/bxjalipsum/sample-bxjalipsum-1.tex + RELOC/doc/latex/bxjalipsum/sample-bxjalipsum-2.tex +runfiles size=22 + RELOC/tex/latex/bxjalipsum/bxjalipsum.sty +catalogue-ctan /language/japanese/BX/bxjalipsum +catalogue-license mit +catalogue-topics macro-supp dummy-gen japanese +catalogue-version 0.3a + +name bxjaprnind +category Package +revision 45291 +shortdesc Adjust the position of parentheses at paragraph head +relocated 1 +longdesc In Japanese typesetting, opening parentheses placed at the +longdesc beginning of paragraphs or lines are treated specially; for +longdesc example, while the paragraph indent before normal kanji +longdesc characters is 1em, the indent before parentheses can be 0.5em, +longdesc 1em or 1.5em deoending on the local rule in effect. +containersize 2808 +containerchecksum 77f754e9d9cfc643286df17c7102685ee4c893b5b99308da7a8a9033fc043a7ac95a34dc4a253da4f5e6ed29b35a04376eba1635abbbbe6a6e2670d0d47f50b8 +doccontainersize 387396 +doccontainerchecksum 0010c6e9d1041013401f59820795e338d9e0f852b2d29212fda0c66cda3e2dbdf59593547a8d83d9c6d78d48fb0372a4335976ad1fcc190c3c71a3b5607a47a4 +docfiles size=103 + RELOC/doc/latex/bxjaprnind/LICENSE + RELOC/doc/latex/bxjaprnind/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/bxjaprnind/README.md details="Readme" + RELOC/doc/latex/bxjaprnind/bxjaprnind.pdf details="Package documentation" language="ja" + RELOC/doc/latex/bxjaprnind/bxjaprnind.tex + RELOC/doc/latex/bxjaprnind/sample-bxjaprnind.pdf + RELOC/doc/latex/bxjaprnind/sample-bxjaprnind.tex +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-license mit +catalogue-topics japanese macro-supp +catalogue-version 0.3b + +name bxjatoucs +category Package +revision 52509 +shortdesc Convert Japanese character code to Unicode +relocated 1 +longdesc This package is meant for macro/package developers: It provides +longdesc function-like (fully-expandable) macros that convert a +longdesc character code value in one of several Japanese encodings to a +longdesc Unicode value. Supported source encodings are: ISO-2022-JP +longdesc (jis), EUC-JP (euc), Shift_JIS (sjis), and the Adobe-Japan1 +longdesc glyph set. +containersize 25604 +containerchecksum ffe18ddb89393c61df4371d6fe1154759992e544af64cdfcc007122ed212e87d16194d906d4c9f797671860a96c4dcde12682ecf98adb3c7b8b4c6ae0b432b81 +doccontainersize 2068 +doccontainerchecksum 9c281fdda182269c7a048e1ef422f0c403ecef7d8fd8dc462ebe39b861fba013ede2ef351baa5ad4537b2e1495f1f0572c7edc6fa6407031ff19053bd6dfdc02 +docfiles size=2 + RELOC/doc/latex/bxjatoucs/LICENSE + RELOC/doc/latex/bxjatoucs/README.md details="Readme" +runfiles size=34 + RELOC/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm + RELOC/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm + RELOC/tex/latex/bxjatoucs/bxjatoucs.sty +catalogue-contact-repository https://github.com/zr-tex8r/BXjatoucs +catalogue-ctan /language/japanese/BX/bxjatoucs +catalogue-license mit +catalogue-topics japanese unicode macro-supp +catalogue-version 0.2 + +name bxjscls +category Package +revision 57625 +shortdesc Japanese document class collection for all major engines +relocated 1 +longdesc This package provides an extended version of the Japanese +longdesc document class collection provided by jsclasses. While the +longdesc original version supports only pLaTeX and upLaTeX, the extended +longdesc version also supports pdfLaTeX, XeLaTeX and LuaLaTeX, with the +longdesc aid of suitable packages that provide capability of Japanese +longdesc typesetting. +containersize 32932 +containerchecksum 589b5b44ad6a4743a039b427d8caabae51c070591f808218f432a21df4c442df9878fd5fa882d6e5090ed808c0f689ecb8d9ee11e131415c7dd69ef992e6d898 +doccontainersize 1518456 +doccontainerchecksum e999fa0ccac37f7f5793e5f0ebf096615ef9c92cb1311e885edfced06ddd5c21ef3220bc5ac760e99dc4b49dd8d4d1d4b612d4f686433ce15e73a7222b8605d0 +docfiles size=410 + RELOC/doc/latex/bxjscls/LICENSE + RELOC/doc/latex/bxjscls/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/latex/bxjscls/README.md details="Readme" + RELOC/doc/latex/bxjscls/bxjscls-manual.pdf details="User guide (Japanese)" language="ja" + RELOC/doc/latex/bxjscls/bxjscls-manual.tex + RELOC/doc/latex/bxjscls/bxjscls.pdf details="Package documentation (Japanese)" language="ja" +srccontainersize 82096 +srccontainerchecksum 27a1df36d928544d84ac322104c723cddaae3eada19d7b205150463c6c6e2c4da33d87c34547b02fc06b01eae4b67f3356c31132bbcb1538ec8b4cbd495855c3 +srcfiles size=100 + RELOC/source/latex/bxjscls/bxjscls.dtx + RELOC/source/latex/bxjscls/bxjscls.ins +runfiles size=101 + RELOC/tex/latex/bxjscls/bxjsarticle.cls + RELOC/tex/latex/bxjscls/bxjsbook.cls + RELOC/tex/latex/bxjscls/bxjscjkcat.sty + RELOC/tex/latex/bxjscls/bxjscompat.sty + RELOC/tex/latex/bxjscls/bxjsja-minimal.def + RELOC/tex/latex/bxjscls/bxjsja-modern.def + RELOC/tex/latex/bxjscls/bxjsja-pandoc.def + RELOC/tex/latex/bxjscls/bxjsja-standard.def + RELOC/tex/latex/bxjscls/bxjspandoc.sty + RELOC/tex/latex/bxjscls/bxjsreport.cls + RELOC/tex/latex/bxjscls/bxjsslide.cls +catalogue-contact-home https://github.com/zr-tex8r/BXjscls +catalogue-contact-repository https://github.com/zr-tex8r +catalogue-ctan /language/japanese/BX/bxjscls +catalogue-license bsd2 +catalogue-topics japanese class +catalogue-version 2.5 + +name bxnewfont +category Package +revision 44173 +shortdesc Enhanced \newfont command +relocated 1 +longdesc This package provides a new command \newfontx. It is similar to +longdesc the old (and deprecated) command \newfont in function, but is +longdesc more compatible with NFSS. In particular, one can safely change +longdesc font size after invoking a font command defined by \newfontx. +longdesc The new command will be useful to users who know much of the +longdesc old \newfont command, but are unfamiliar with the details of +longdesc NFSS. +containersize 4760 +containerchecksum 83775ee72fceb4de0037327561ea2f1723db89dc23ccc42245390212ae1fb849c92c75b2e7b4b23440c62086116b8f0a14b12b27f97c9277c55a7454b231826f +doccontainersize 2376 +doccontainerchecksum f09fde7abd39a4df52175eff90363a469270ab1385f3600e654535cc90d7b4b5ba704be734323dffca512f5942c45a9ffb5cd19a73026c224cee3be33eaa5b65 +docfiles size=2 + RELOC/doc/latex/bxnewfont/LICENSE + RELOC/doc/latex/bxnewfont/README.md details="Readme" +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-license mit +catalogue-topics font-sel +catalogue-version 0.2b + +name bxorigcapt +category Package +revision 48606 +shortdesc To retain the original caption names when using Babel +relocated 1 +longdesc This package forces the caption names (`\chaptername`, +longdesc `\today`, etc) declared by the document class in use to be used +longdesc as the caption names for a specific language introduced by the +longdesc Babel package. +containersize 2604 +containerchecksum de76176e7448732d3d429c11b605f24a01779651dc5bb3969a6cdd45ac1801a9d2472dcb4bda9751aae09428d7962981a4c9c581244f15b68b6a4aea43d54972 +doccontainersize 2112 +doccontainerchecksum 0ec8b913862e51f89f661de3f628bb51a306d09d04adce4ff46183d8bb24c351f73c877b08b699f704661ae2c31131b7a959ad863a3a6613235318f8825136a2 +docfiles size=2 + RELOC/doc/latex/bxorigcapt/LICENSE + RELOC/doc/latex/bxorigcapt/README.md details="Readme" +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-license mit +catalogue-topics typesetting +catalogue-version 0.3 + +name bxpapersize +category Package +revision 56491 +shortdesc Synchronize output paper size with layout paper size +relocated 1 +longdesc As is well known, in LaTeX processing layout paper size +longdesc specified by document class options is not automatically +longdesc applied to output paper size. This package enables LaTeX +longdesc authors to synchronize both kinds of paper sizes. +containersize 4656 +containerchecksum 0d889b2f3e3c3e27175148a533ddf86f99704ce8ca380ce182a5361284678a4eeb72862b9b5309a63a31cf3aa2d4afc119d71363bcc9914bd493148c3c7ad6f4 +doccontainersize 3320 +doccontainerchecksum a62a581dc66c080e8b347c0708b46ae0432ec629748512c42ea3ea931d6a78b9dc25084922710d6f6fecb373ebfce5391ee7e54665f72147827069f906d9082b +docfiles size=3 + RELOC/doc/latex/bxpapersize/LICENSE + RELOC/doc/latex/bxpapersize/README.md details="Readme" +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-license mit +catalogue-topics page-control +catalogue-version 0.5 + +name bxpdfver +category Package +revision 57755 +shortdesc Specify version and compression level of output PDF files +relocated 1 +longdesc This package enables users to specify in their sources the +longdesc following settings on the PDF document to output: PDF version +longdesc (1.4, 1.5 etc.); whether or not to compress streams; whether or +longdesc not to use object streams. This package supports all major +longdesc PDF-output engines and dvipdfmx. +containersize 7180 +containerchecksum 68dec5bb26691a39b3aef90891fa3a7fa8e716aaacaedf32aef9e3f1a99f30e95caaef0cc1bde104d69da122b6832ea38a6fedd76780e0ccde2cb70c2a43884d +doccontainersize 4772 +doccontainerchecksum e97c28b1eac65210d427f87b9fafebce63b676d431064c92b221e1ca2882c9c9caedaf6f75bae6b6194bf2a7ae353cfab6292240f3466dffa1ccd72f9516d453 +docfiles size=6 + RELOC/doc/latex/bxpdfver/LICENSE + RELOC/doc/latex/bxpdfver/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/bxpdfver/README.md details="Readme" + RELOC/doc/latex/bxpdfver/sample-bxpdfver.tex +runfiles size=8 + RELOC/tex/latex/bxpdfver/bxpdfver.sty +catalogue-ctan /macros/latex/contrib/bxpdfver +catalogue-license mit +catalogue-topics pdf-feat +catalogue-version 0.5a + +name bxtexlogo +category Package +revision 47230 +shortdesc Additional TeX-family logos +relocated 1 +longdesc The hologo package provides many useful logos of popular (and +longdesc not so popular) TeX-family software. However, its interface is +longdesc a bit cumbersome because you must type \hologo{BibTeX} instead +longdesc of \BibTeX. This package makes it possible to import some of +longdesc the logos provided by hologo as single commands, such as +longdesc \BibTeX. Additionally, the package provides logos of some +longdesc TeX-family software that is popular mainly in Japan. These +longdesc logos can be imported in the same way as those provided by the +longdesc \hologo command. bxtexlogo depends on hologo and cjhebrew (if +longdesc \logoAleph and \logoLamed are used). +containersize 5748 +containerchecksum d3144e28a695f0e9939ac3074679558757f2272f0a2f2ad958481981389fae44a663c07fb914b13a890a736989bbb9946d22e1c9bd5d3ffba1db010fa451ee58 +doccontainersize 426348 +doccontainerchecksum 59ee17c9147587d1eb1052dcf4624517cb575c49163a24f3dcbf27785f75b325c0de1c079c0b214cc6a63dd9d5862578303170eea91b0903d3b803c044078ee5 +docfiles size=108 + RELOC/doc/latex/bxtexlogo/LICENSE + RELOC/doc/latex/bxtexlogo/README.md details="Readme" + RELOC/doc/latex/bxtexlogo/bxtexlogo-sample.pdf details="Samples" + RELOC/doc/latex/bxtexlogo/bxtexlogo-sample.tex +runfiles size=5 + RELOC/tex/latex/bxtexlogo/bxtexlogo.sty +catalogue-also hologo +catalogue-contact-home https://github.com/zr-tex8r/BXtexlogo +catalogue-ctan /macros/latex/contrib/bxtexlogo +catalogue-license mit +catalogue-topics logo +catalogue-version 0.4 + +name bxwareki +category Package +revision 51286 +shortdesc Convert dates from Gregorian to Japanese calender +relocated 1 +longdesc This LaTeX package provides commands to convert from the +longdesc Gregorian calendar (e. g. 2018/8/28) to the Japanese rendering +longdesc of the Japanese calendar (e. g. Heisei 30 nen 8 gatsu 28 nichi; +longdesc actually with kanji characters). You can choose whether the +longdesc numbers are written in Western numerals or kanji numerals. Note +longdesc that the package only deals with dates in the year 1873 or +longdesc later, where the Japanese calendar is really a Gregorian +longdesc calendar with a different notation of years. +containersize 6104 +containerchecksum 73f44924ed35cf95af7d2eae057a48fcdd307741ef9a0a0943638681f9008eac56e8f2b1f57afdf0c3dc789a079e65ab1142cc5e993ecf6b382e8bb127f6ea1e +doccontainersize 182888 +doccontainerchecksum d861ef91292b76b4f248b51d99d062116f49be1f942629d049fff00e20a6e383bed050799a576e14f7daef52dd4f7f1fdd2ce898374191b9c719421ea755d7f0 +docfiles size=50 + RELOC/doc/latex/bxwareki/LICENSE + RELOC/doc/latex/bxwareki/README.md details="Readme" + RELOC/doc/latex/bxwareki/bxwareki.pdf details="Package documentation" + RELOC/doc/latex/bxwareki/bxwareki.tex +runfiles size=7 + RELOC/tex/latex/bxwareki/bxwareki-cd.def + RELOC/tex/latex/bxwareki/bxwareki.sty + RELOC/tex/latex/bxwareki/bxwareki2019.def +catalogue-contact-repository https://github.com/zr-tex8r/BXwareki +catalogue-ctan /language/japanese/BX/bxwareki +catalogue-license mit +catalogue-topics calendar japanese +catalogue-version 0.6 + +name byo-twemojis +category Package +revision 58917 +shortdesc "Build Your Own Twemojis" with TikZ +relocated 1 +longdesc This package provides the means to create your own emojis (the +longdesc simple, round, and mostly yellow ones) from elements of +longdesc existing emojis. The provided command creates a TikZ picture +longdesc from the stated elements with multiple possibilities to modify +longdesc the result in color and position. +containersize 41616 +containerchecksum 5d9330d36bef34d5deb7fae5413741de09050bc9a0fb3bef7874b0d44f397e900f626fa64b8903038d3131e5b9ae66f121a1dbaa6f25668f73bdf7d3aeed409d +doccontainersize 339352 +doccontainerchecksum a0329476031945d9fb694522b3bb08cfded7ee117033f758ca7a9d1dc423d66f8ca749b295e1d420b737da886b57b1bf2dbbed20d3bacfbef94d57061a22f4bc +docfiles size=84 + RELOC/doc/latex/byo-twemojis/README.md details="Readme" + RELOC/doc/latex/byo-twemojis/byo-twemojis.pdf details="Package documentation" +srccontainersize 48520 +srccontainerchecksum 7971ba8678358883fba70f2394417f2cbaef639fa0a1fb13f1cef8d0cb182c91fc3097450bc29011c4b939afe6cb6ae5ce3c8c50f183fc92f10f3d0a46adc3ad +srcfiles size=70 + RELOC/source/latex/byo-twemojis/byo-twemojis.dtx + RELOC/source/latex/byo-twemojis/byo-twemojis.ins +runfiles size=55 + RELOC/tex/latex/byo-twemojis/byo-twemojis.sty +catalogue-contact-bugs https://gitlab.com/rossel.jost/latex-twemojis/-/issues +catalogue-contact-repository https://gitlab.com/rossel.jost/latex-twemojis +catalogue-ctan /graphics/pgf/contrib/byo-twemojis +catalogue-license cc-by-4 lppl1.3 +catalogue-topics graphics pgf-tikz amusements +catalogue-version 1.0 + +name bytefield +category Package +revision 56821 +shortdesc Create illustrations for network protocol specifications +relocated 1 +longdesc The bytefield package helps the user create illustrations for +longdesc network protocol specifications and anything else that utilizes +longdesc fields of data. These illustrations show how the bits and bytes +longdesc are laid out in a packet or in memory. +containersize 4916 +containerchecksum a36c81313224ac79fdd7d51f954aef437f011314061473455f0cc2be0cc52659c83400140a3b924a75c76d825b14ce3135e324438d9bf8830cf40a1c4d536a32 +doccontainersize 741368 +doccontainerchecksum 1aa94c8da8ca322cac0360205fc2724a9108aa0ebd3332fd0cd749123d7a1fde7467006595240e65937e0a6deb78a810efa677ce27b51ef62f5f15ebd620e593 +docfiles size=199 + RELOC/doc/latex/bytefield/README details="Readme" + RELOC/doc/latex/bytefield/bf-example.pdf + RELOC/doc/latex/bytefield/bf-example.tex + RELOC/doc/latex/bytefield/bytefield.pdf details="Package documentation" +srccontainersize 29580 +srccontainerchecksum be5993e9addb0f22a0e618b934ba77e4169f5dac3f07ca8e3986ddd4a001c7483b52fb5b3f1575c5b07339c9227891dc7794653c9be5fe531c7375dbee43ca30 +srcfiles size=36 + RELOC/source/latex/bytefield/bytefield.dtx + RELOC/source/latex/bytefield/bytefield.ins +runfiles size=6 + RELOC/tex/latex/bytefield/bytefield.sty +catalogue-ctan /macros/latex/contrib/bytefield +catalogue-license lppl1.3c +catalogue-topics engineering comp-sci comp-net +catalogue-version 2.6 + +name c-pascal +category Package +revision 18337 +shortdesc Typeset Python, C and Pascal programs +relocated 1 +longdesc A TeX macro package for easy typesetting programs in Python, C +longdesc and Pascal. Program source files may also be input. +containersize 4988 +containerchecksum 59aa375b3b953f2fab04547b3234b36fd08af39392cfdf05f6992a90ef3a52503b2e11296787763abb9ce6251f9cc2fd062d78133038ca4a92e1b06ae65118e9 +doccontainersize 5548 +doccontainerchecksum 52252a2265d9bd48f09ddaf5f1517a6a74980897f0e8e0ad7ea71bafb194ca5bb98386af537ef2a4fb955e62ccba3d16cc1ebbae094502f16ae3bea0c5073c79 +docfiles size=8 + RELOC/doc/generic/c-pascal/README.eng details="Readme" language="en" + RELOC/doc/generic/c-pascal/README.pol details="Readme" language="pl" + RELOC/doc/generic/c-pascal/demo1.tex + RELOC/doc/generic/c-pascal/demo2.tex + RELOC/doc/generic/c-pascal/prog/fib.py + RELOC/doc/generic/c-pascal/prog/guess.pas + RELOC/doc/generic/c-pascal/prog/sun.c +runfiles size=9 + RELOC/tex/generic/c-pascal/cap.tex + RELOC/tex/generic/c-pascal/cap_c.tex + RELOC/tex/generic/c-pascal/cap_comm.tex + RELOC/tex/generic/c-pascal/cap_pas.tex + RELOC/tex/generic/c-pascal/cap_pyt.tex +catalogue-ctan /macros/generic/c_pascal +catalogue-license pd +catalogue-topics listing +catalogue-version 1.2 + +name c90 +category Package +revision 54074 +shortdesc c90 font encoding for Thai +relocated 1 +longdesc part of the CJK package, ctan.org/pkg/cjk +containersize 1928 +containerchecksum 9ad45614fa33b2272b0975cd8a044342d7d59d3dcef0b051f7aa49b5821764f838d1ed3f2b69e577a3c5cad1c471f412d4a312ad884ed4f9f29fe0a0782eeb02 +doccontainersize 86520 +doccontainerchecksum 8b92590067d8c36b9d91a035c1eb88510327bade43f2458b12c64a74d6f0d74f23a33b61fe9ac8949d9a05137976a22e8a513ed3c6d40bb6138ccf3975ab0b8d +docfiles size=22 + RELOC/doc/fonts/enc/c90/c90.pdf +srccontainersize 9824 +srccontainerchecksum bd250ed720d900551167efe6f17844e2ef89005e9f8014d46b50e6abde74fdf84f0960ae452befdf018d6b39f3efb58dbe600b73261c935a4c35f0228a3d0b46 +srcfiles size=17 + RELOC/source/fonts/enc/c90/c90.etx + RELOC/source/fonts/enc/c90/c90.mtx +runfiles size=1 + RELOC/fonts/enc/dvips/c90/c90.enc + +name cabin +category Package +revision 55907 +shortdesc A humanist Sans Serif font, with LaTeX support +relocated 1 +longdesc Cabin is a humanist sans with four weights and true italics and +longdesc small capitals. According to the designer, Pablo Impallari, +longdesc Cabin was inspired by Edward Johnston's and Eric Gill's +longdesc typefaces, with a touch of modernism. Cabin incorporates modern +longdesc proportions, optical adjustments, and some elements of the +longdesc geometric sans. cabin.sty supports use of the font under LaTeX, +longdesc pdfLaTeX, XeLaTeX and LuaLaTeX; it uses the mweights, to manage +longdesc the user's view of all those font weights. An sfdefault option +longdesc is provided to enable Cabin as the default text font. The +longdesc fontaxes package is required for use with [pdf]LaTeX. +execute addMap cabin.map +containersize 2896420 +containerchecksum a70afbed9ec2a5be99c0a22713d27b6f4a541452f9a7c3520e71cdaa6fe0f06851ef6921404ab511fd73414d8621848440ca2a9cdae4ae9d80de56ae906d4f53 +doccontainersize 49180 +doccontainerchecksum cb6dd0b813c69536dc2bc5e0c2bdcf2c52d8ed31d144f359c42b3c00e5383969e6eaf1b8d6a77e19a0b4be1789c1ac7da9332099efa877524f27c8633d0c096d +docfiles size=22 + RELOC/doc/fonts/cabin/AUTHORS.txt + RELOC/doc/fonts/cabin/CONTRIBUTORS.txt + RELOC/doc/fonts/cabin/DESCRIPTION.en_us.html + RELOC/doc/fonts/cabin/FONTLOG.txt + RELOC/doc/fonts/cabin/OFL.txt + RELOC/doc/fonts/cabin/README details="Readme (primary documentation)" + RELOC/doc/fonts/cabin/TRADEMARKS.md + RELOC/doc/fonts/cabin/cabin-samples.pdf details="Font samples" + RELOC/doc/fonts/cabin/cabin-samples.tex + RELOC/doc/fonts/cabin/requirements.txt +runfiles size=1800 + RELOC/fonts/enc/dvips/cabin/cbn_5xld5w.enc + RELOC/fonts/enc/dvips/cabin/cbn_fp7bit.enc + RELOC/fonts/enc/dvips/cabin/cbn_hau3x5.enc + RELOC/fonts/enc/dvips/cabin/cbn_i3ioen.enc + RELOC/fonts/enc/dvips/cabin/cbn_jjp77t.enc + RELOC/fonts/enc/dvips/cabin/cbn_meva6t.enc + RELOC/fonts/enc/dvips/cabin/cbn_taosrr.enc + RELOC/fonts/enc/dvips/cabin/cbn_vqopxp.enc + RELOC/fonts/enc/dvips/cabin/cbn_vqpkf5.enc + RELOC/fonts/enc/dvips/cabin/cbn_yhiurv.enc + RELOC/fonts/enc/dvips/cabin/cbn_yhzmyq.enc + RELOC/fonts/map/dvips/cabin/cabin.map + RELOC/fonts/opentype/impallari/cabin/Cabin-Bold.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-BoldItalic.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-Italic.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-Medium.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-MediumItalic.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-Regular.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-SemiBold.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-SemiBoldItalic.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-BoldCondensed.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-BoldItalicCondensed.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-ItalicCondensed.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-MediumCondensed.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-MediumItalicCondensed.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-RegularCondensed.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-SemiBoldCondensed.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-SemiboldItalicCondensed.otf + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-ts1.tfm + RELOC/fonts/type1/impallari/cabin/Cabin-Bold.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-BoldItalic.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-Italic.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-Medium.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-MediumItalic.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-Regular.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-SemiBold.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-SemiBoldItalic.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-BoldCondensed.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-BoldItalicCondensed.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-ItalicCondensed.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-MediumCondensed.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-MediumItalicCondensed.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-RegularCondensed.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-SemiBoldCondensed.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-SemiboldItalicCondensed.pfb + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldCondensed-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalicCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalicCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalicCondensed-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-ItalicCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-ItalicCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-ItalicCondensed-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumCondensed-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalicCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalicCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalicCondensed-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularCondensed-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldCondensed-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiboldItalicCondensed-tlf-ts1.vf + RELOC/tex/latex/cabin/LY1Cabin-Sup.fd + RELOC/tex/latex/cabin/LY1Cabin-TLF.fd + RELOC/tex/latex/cabin/OT1Cabin-Sup.fd + RELOC/tex/latex/cabin/OT1Cabin-TLF.fd + RELOC/tex/latex/cabin/T1Cabin-Sup.fd + RELOC/tex/latex/cabin/T1Cabin-TLF.fd + RELOC/tex/latex/cabin/TS1Cabin-TLF.fd + RELOC/tex/latex/cabin/cabin.sty +catalogue-ctan /fonts/cabin +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-sans font-type1 font-otf font-supp font-t1enc + +name cachepic +category Package +revision 26313 +shortdesc Convert document fragments into graphics +longdesc The bundle simplifies and automates conversion of document +longdesc fragments into external EPS or PDF files. The bundle consists +longdesc of two parts: a LaTeX package that implements a document level +longdesc interface, and a command line tool (written in lua) that +longdesc generates the external graphics. +depend cachepic.ARCH +containersize 4428 +containerchecksum a0405befc4ed9217cedc4abc78c355b869bb803fa4be32245198ba4aa8151884ace023b3465db3b4757c923d0425fd1d186e25facd7c29d05d5072668a9f0e3d +doccontainersize 160372 +doccontainerchecksum 93108475f74b2356cea79a8403729df7c24e95871680b0b53f9316a7b158aa973ce108632a121198459352968bfdfd79f265d4aa301ecd00ce55cf56db5f976c +docfiles size=44 + texmf-dist/doc/latex/cachepic/README details="Readme" + texmf-dist/doc/latex/cachepic/cachepic.pdf details="Package documentation" + texmf-dist/doc/latex/cachepic/cachepic.tex +runfiles size=5 + texmf-dist/scripts/cachepic/cachepic.cmd + texmf-dist/scripts/cachepic/cachepic.tlu + texmf-dist/tex/latex/cachepic/cachepic.sty + texmf-dist/tex/latex/cachepic/prcachepic.def +catalogue-ctan /macros/latex/contrib/cachepic +catalogue-license lppl1.3 +catalogue-topics graphics-prep +catalogue-version 1.0 + +name cachepic.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of cachepic +containersize 344 +containerchecksum e308d731d1c84c2f9560817b10e586b30a3f98da306456f976d2d94be492bc79bda23c946ef9154205e72d79082e3140f6b12652ae50a4a610676374d41cdd58 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/cachepic + +name cachepic.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of cachepic +containersize 344 +containerchecksum 7f6b26c2e85e2ce8eee3c0d12142e0f8ef809cecf38af383c69b5b3d37639c9ff87acf5b09d7a27a71288375b1d3a1ce4f2ef2dcf7abb2598c58712bb78083fe +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/cachepic + +name cachepic.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of cachepic +containersize 344 +containerchecksum 1b3781ad928f123067f062adc389d83b78f2b2a5c07efe5338f0d916262b8ff2bda7916e2be25268601e37316e632b1235343cbb016c770b742621d5e78ed85e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/cachepic + +name cachepic.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of cachepic +containersize 340 +containerchecksum 171b9c3f97b02a4aa40a766f7f0fe87b13207d7aa8c8699588b732b346346fa8e78949e39f54680283523d1803af54f52df98da6a9c6a63435b2b97045cb0a56 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/cachepic + +name cachepic.i386-cygwin +category Package +revision 15543 +shortdesc i386-cygwin files of cachepic +containersize 340 +containerchecksum 06631f4aaf9304ae7c7a163b5dde20b2b6e1423fee7946fbc7681dbefcec8d8c476402eab426811ba75c5e2921073dee0587e2ebbc517310f553a69fcb3e8680 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/cachepic + +name cachepic.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of cachepic +containersize 344 +containerchecksum 1aa0fdd3527f7e7bddc0a52b018869106272ed6d6580858dd4d45a0011d8c26885435d3efbb50637e1cdd1e1633da2b91c9f5ed90f8ae16263b58c7f6eda5836 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/cachepic + +name cachepic.i386-linux +category Package +revision 15543 +shortdesc i386-linux files of cachepic +containersize 344 +containerchecksum 9d05756b229361e9c366869d7150d81f2b81c76b44648cec12fed65595881a47cdbfefc8b99c0e2fadf31b9fabf075d7ec18cfb7e8517a87b980dc341989167e +binfiles arch=i386-linux size=1 + bin/i386-linux/cachepic + +name cachepic.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of cachepic +containersize 340 +containerchecksum e3b18ac67862a3a781ed5b6886644e48d27cbe9ace98762afe81fa86aa20d9ce75dc0c22be191beca525dac10e13ef381fd6332cdb82a54a880736256c316d30 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/cachepic + +name cachepic.i386-solaris +category Package +revision 15543 +shortdesc i386-solaris files of cachepic +containersize 340 +containerchecksum b229a9e9d6649533f8db8411d77d0c3913577e07b39f56b2275dd5376044a3f0a1a9594ff92ef7e848b812a85a741edc6b541f50601665373b97da1edd790c9a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/cachepic + +name cachepic.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of cachepic +containersize 344 +containerchecksum 20b6be2738a55f36ba1e4a7c4075f86673ca9c52bad9c06c7906483cb628dfdd40b304d84ef734237a6276294e429350e81332062e63637b725497aefd7489bb +binfiles arch=universal-darwin size=1 + bin/universal-darwin/cachepic + +name cachepic.win32 +category Package +revision 15549 +shortdesc win32 files of cachepic +containersize 684 +containerchecksum d6d7605f95503bda4e9105f1355c19508bddf3dbcba9df88f95739a9399c8cdcb4019924d6f4c642921abdea8199dba54c571336c087f79f08fa8d354797a13b +binfiles arch=win32 size=1 + bin/win32/cachepic.exe + +name cachepic.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of cachepic +containersize 344 +containerchecksum 337d9ce5b2ea106a62dd04fbda1a2c552d1fc47d0acdaf90ce7de3325709044f3d87af98a9f1fb9e87ec650048715cf7d97c851279b8d1e3fc1c92e7bec2c2e0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/cachepic + +name cachepic.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of cachepic +containersize 352 +containerchecksum 82a9aa9ac68a7eba9c0c5fa845f6321c4abb2aebcb62324b86fcf3c08cbf61ea5bd16d08e5d14a75d0b48d7bfba575011801f365865ca04707b24fac8bf90e0d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/cachepic + +name cachepic.x86_64-linux +category Package +revision 15543 +shortdesc x86_64-linux files of cachepic +containersize 340 +containerchecksum e5a57db9352e67a19408b765724d0edb52d65650df37901ba06c3e22f8548b389b6e6f9ed9133965a1f1c87142f2e03c0d440f56e7bbe734c695ee976b2ab68d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/cachepic + +name cachepic.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of cachepic +containersize 348 +containerchecksum 4178d20ecf9cc8ae27c25e93f2c2184c3ff17aaeed9bed7fd371558cd81242d68a9b0aea1ddedc11d77750ddee068bf8b084f643c409281f777c44e4d8bc7a51 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/cachepic + +name cachepic.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of cachepic +containersize 344 +containerchecksum 6553622e283655b82b7d3bf030aab45b0c1ce9bad4d88bc855f61e9f4e608c279d0aedab979cfdab46354f3129ab5e3a4115d4bf05d51924d27cb0031e75ea48 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/cachepic + +name caladea +category Package +revision 34991 +shortdesc Support for the Caladea family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Caladea family of fonts, designed by Carolina +longdesc Giovagnoli and Andres Torresi of the Huerta Tipografica foundry +longdesc and adopted by Google for ChromeOS as a font-metric compatible +longdesc replacement for Cambria. +execute addMap caladea.map +containersize 343476 +containerchecksum 3e1d6bbb049ee4ac637fe051ac39d2e590d0e5ef4f2801ed9c1dac96b9ec8724e7643fcffe8a72de905572a75525fc6954871d8d953ae120af7e9f336da51442 +doccontainersize 93524 +doccontainerchecksum f6b47af3681349536a80bf5b6ea0db2113e35384dd7ce99da3704bdad3a3c5dc8f6dc0e4b1402c89ac97ece9907af5e0f2263edc4c0bb0a1e46ee89cac2f6639 +docfiles size=32 + RELOC/doc/fonts/caladea/Caladea-Regular.pdf details="Package documentation" + RELOC/doc/fonts/caladea/LICENSE-2.0 + RELOC/doc/fonts/caladea/README details="Readme" + RELOC/doc/fonts/caladea/samples.pdf + RELOC/doc/fonts/caladea/samples.tex +runfiles size=204 + RELOC/fonts/enc/dvips/caladea/cld_cb3g7n.enc + RELOC/fonts/enc/dvips/caladea/cld_fjy5hl.enc + RELOC/fonts/enc/dvips/caladea/cld_prieif.enc + RELOC/fonts/enc/dvips/caladea/cld_w45fff.enc + RELOC/fonts/map/dvips/caladea/caladea.map + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ts1.tfm + RELOC/fonts/truetype/huerta/caladea/Caladea-Bold.ttf + RELOC/fonts/truetype/huerta/caladea/Caladea-BoldItalic.ttf + RELOC/fonts/truetype/huerta/caladea/Caladea-Italic.ttf + RELOC/fonts/truetype/huerta/caladea/Caladea-Regular.ttf + RELOC/fonts/type1/huerta/caladea/Caladea-Bold.pfb + RELOC/fonts/type1/huerta/caladea/Caladea-BoldItalic.pfb + RELOC/fonts/type1/huerta/caladea/Caladea-Italic.pfb + RELOC/fonts/type1/huerta/caladea/Caladea-Regular.pfb + RELOC/fonts/vf/huerta/caladea/Caladea-Bold-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Bold-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Bold-tlf-ts1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Italic-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Italic-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Italic-tlf-ts1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Regular-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Regular-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Regular-tlf-ts1.vf + RELOC/tex/latex/caladea/LY1Caladea-TLF.fd + RELOC/tex/latex/caladea/OT1Caladea-TLF.fd + RELOC/tex/latex/caladea/T1Caladea-TLF.fd + RELOC/tex/latex/caladea/TS1Caladea-TLF.fd + RELOC/tex/latex/caladea/caladea.sty +catalogue-ctan /fonts/caladea +catalogue-license apache2 +catalogue-topics font font-type1 font-ttf + +name calcage +category Package +revision 27725 +shortdesc Calculate the age of something, in years +relocated 1 +longdesc The package calculates the age of someone or something in +longdesc years. Internally it uses the datenumber package to calculate +longdesc the age in days; conversion from days to years is then +longdesc performed, taking care of leap years and such odd things. +containersize 1464 +containerchecksum d3f6d46166f2b37e6ee8ff9185c6ddf5ed99ca2b32c7520966fa9a3db95d3a9517e39f5e8f928332a8dba490274c4fe48e62b6ce83ca10d0fbdb9a4218e0d92b +doccontainersize 279664 +doccontainerchecksum 4c3f1ed751005a5fc19e0ae40dfeb010ca211dbbdb7ac11c01525c7643f1e993346f1af21d411705ebcb119f8b1c20e4ad35384d2be9618fbe6db2de99e6eb45 +docfiles size=70 + RELOC/doc/latex/calcage/README details="Readme" + RELOC/doc/latex/calcage/calcage.pdf details="Package documentation" +srccontainersize 5820 +srccontainerchecksum aa49d205c8366ad92a46195c113e69fe123979560ae92a51589718136bc8df8b3b00e0aad4d6643ca36d217be02fa61529c4a1779d6826a52f80d29649fc50ac +srcfiles size=5 + RELOC/source/latex/calcage/calcage.dtx + RELOC/source/latex/calcage/calcage.ins +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-license lppl1.3 +catalogue-topics date-time +catalogue-version 0.90 + +name calctab +category Package +revision 15878 +shortdesc Language for numeric tables +relocated 1 +longdesc The calctab package helps the user to typeset a kind of +longdesc economic table such as invoices, expense notes and liquidation, +longdesc or other tabular material with a values column. The code +longdesc computes sum and percentage with floating point numeric methods +longdesc (using the fltpoint package) and builds the render table task. +containersize 4680 +containerchecksum 20ccd46a047987004eef78f75b18f49b1e3001e240604e2657e23e30c4e6f286ba700cb828eeffbd608880ac4994d4a3cd2d67aa336957fecd1d3ea8a48058b1 +doccontainersize 407400 +doccontainerchecksum 555a9d966fe556e8aa1dd39ec1ec327995f62fa447bfd2bbb8efe47ad667427eef249c749f9d2c0436c16e31e6fe7b0dced9b449da307411ac186d30c2407270 +docfiles size=115 + RELOC/doc/latex/calctab/README details="Readme" + RELOC/doc/latex/calctab/calctab_manual.pdf details="Package documentation" + RELOC/doc/latex/calctab/calctab_manual.tex +runfiles size=5 + RELOC/tex/latex/calctab/calctab.sty +catalogue-ctan /macros/latex/contrib/calctab +catalogue-license lppl +catalogue-topics calculation +catalogue-version 0.6.1 + +name calculation +category Package +revision 35973 +shortdesc Typesetting reasoned calculations, also called calculational proofs +relocated 1 +longdesc The calculation environment formats reasoned calculations, also +longdesc called calculational proofs. The notion of reasoned +longdesc calculations or calculational proofs was originally advocated +longdesc by Wim Feijen and Edsger Dijkstra. The package accepts options +longdesc fleqn and leqno (with the same effect as the LaTeX options +longdesc fleqn and leqno, or may inherit the options from the document +longdesc class). It allows steps and expressions to be numbered (by +longdesc LaTeX equation numbers, obeying the LaTeX \label command to +longdesc refer to these numbers), and a step doesn't take vertical space +longdesc if its hint is empty. An expression in a calculation can be +longdesc given a comment; it is placed at the side opposite to the +longdesc equation numbers. Calculations are allowed inside hints +longdesc although numbering and commenting is then disabled. +containersize 3316 +containerchecksum d60f9face95cdf6944363ce66b842b2a695b468e77193785564d1697244e193cc0dcf462e7a13c8a22eee173d5d4cd192ae59bbc68e086ac27c92d2dbaf6f156 +doccontainersize 98544 +doccontainerchecksum 741f4600986798bb191352ef98ac1a398014f92956267c36ca1834d95996008204107dcd8575077d7eb2dc1ddc627f03ffdf071ce0d8b2646809063eba59625a +docfiles size=29 + RELOC/doc/latex/calculation/README details="Readme" + RELOC/doc/latex/calculation/calculation.pdf details="Package documentation" +srccontainersize 9640 +srccontainerchecksum 010291ac9b9d4529283ae9ed9054a2d797109a5eba2e999d26c4e847bba6c0bbb3a357a76526c77549636d2446d38fca2b6063ca238f5912c1aced9e2b63bb8a +srcfiles size=10 + RELOC/source/latex/calculation/calculation.drv + RELOC/source/latex/calculation/calculation.dtx + RELOC/source/latex/calculation/calculation.ins +runfiles size=3 + RELOC/tex/latex/calculation/calculation.sty +catalogue-ctan /macros/latex/contrib/calculation +catalogue-license lppl1.3 +catalogue-topics proof maths +catalogue-version 1.0 + +name calculator +category Package +revision 33041 +shortdesc Use LaTeX as a scientific calculator +relocated 1 +longdesc The calculator and calculus packages define several +longdesc instructions which allow us to realise algebraic operations and +longdesc to evaluate elementary functions and derivatives in our +longdesc documents. The package's main goal is to define the arithmetic +longdesc and functional calculations need in the author's package +longdesc xpicture, but the numeric abilities of "calculator" and +longdesc "calculus" may be useful in other contexts. +containersize 9948 +containerchecksum d381e15db10c289b3de79bc6464c714391949f149cf5e6ff7af04e3f195308cd9d71627dc04c6138b17d4d2c1e5caeb44149e327df78d20e54344d95cfc4d8ac +doccontainersize 565844 +doccontainerchecksum 107055cab430fa0867f48b3e4c9215052926ea328d29d920dd0345bc48cc956a0673f6ba3b72c954acd98fb65678acde00b4d18def40225e1b8ff656a7938754 +docfiles size=203 + RELOC/doc/latex/calculator/README details="Readme" + RELOC/doc/latex/calculator/calculator.pdf details="Package documentation" + RELOC/doc/latex/calculator/examples/calculator1.tex + RELOC/doc/latex/calculator/examples/calculator10.tex + RELOC/doc/latex/calculator/examples/calculator11.tex + RELOC/doc/latex/calculator/examples/calculator12.tex + RELOC/doc/latex/calculator/examples/calculator13.tex + RELOC/doc/latex/calculator/examples/calculator14.tex + RELOC/doc/latex/calculator/examples/calculator15.tex + RELOC/doc/latex/calculator/examples/calculator16.tex + RELOC/doc/latex/calculator/examples/calculator17.tex + RELOC/doc/latex/calculator/examples/calculator18.tex + RELOC/doc/latex/calculator/examples/calculator19.tex + RELOC/doc/latex/calculator/examples/calculator2.tex + RELOC/doc/latex/calculator/examples/calculator20.tex + RELOC/doc/latex/calculator/examples/calculator21.tex + RELOC/doc/latex/calculator/examples/calculator22.tex + RELOC/doc/latex/calculator/examples/calculator23.tex + RELOC/doc/latex/calculator/examples/calculator24.tex + RELOC/doc/latex/calculator/examples/calculator25.tex + RELOC/doc/latex/calculator/examples/calculator26.tex + RELOC/doc/latex/calculator/examples/calculator27.tex + RELOC/doc/latex/calculator/examples/calculator28.tex + RELOC/doc/latex/calculator/examples/calculator29.tex + RELOC/doc/latex/calculator/examples/calculator3.tex + RELOC/doc/latex/calculator/examples/calculator30.tex + RELOC/doc/latex/calculator/examples/calculator31.tex + RELOC/doc/latex/calculator/examples/calculator32.tex + RELOC/doc/latex/calculator/examples/calculator33.tex + RELOC/doc/latex/calculator/examples/calculator34.tex + RELOC/doc/latex/calculator/examples/calculator35.tex + RELOC/doc/latex/calculator/examples/calculator36.tex + RELOC/doc/latex/calculator/examples/calculator37.tex + RELOC/doc/latex/calculator/examples/calculator38.tex + RELOC/doc/latex/calculator/examples/calculator39.tex + RELOC/doc/latex/calculator/examples/calculator4.tex + RELOC/doc/latex/calculator/examples/calculator40.tex + RELOC/doc/latex/calculator/examples/calculator41.tex + RELOC/doc/latex/calculator/examples/calculator42.tex + RELOC/doc/latex/calculator/examples/calculator43.tex + RELOC/doc/latex/calculator/examples/calculator44.tex + RELOC/doc/latex/calculator/examples/calculator45.tex + RELOC/doc/latex/calculator/examples/calculator46.tex + RELOC/doc/latex/calculator/examples/calculator47.tex + RELOC/doc/latex/calculator/examples/calculator48.tex + RELOC/doc/latex/calculator/examples/calculator49.tex + RELOC/doc/latex/calculator/examples/calculator5.tex + RELOC/doc/latex/calculator/examples/calculator50.tex + RELOC/doc/latex/calculator/examples/calculator51.tex + RELOC/doc/latex/calculator/examples/calculator52.tex + RELOC/doc/latex/calculator/examples/calculator53.tex + RELOC/doc/latex/calculator/examples/calculator54.tex + RELOC/doc/latex/calculator/examples/calculator55.tex + RELOC/doc/latex/calculator/examples/calculator56.tex + RELOC/doc/latex/calculator/examples/calculator57.tex + RELOC/doc/latex/calculator/examples/calculator58.tex + RELOC/doc/latex/calculator/examples/calculator59.tex + RELOC/doc/latex/calculator/examples/calculator6.tex + RELOC/doc/latex/calculator/examples/calculator60.tex + RELOC/doc/latex/calculator/examples/calculator61.tex + RELOC/doc/latex/calculator/examples/calculator62.tex + RELOC/doc/latex/calculator/examples/calculator7.tex + RELOC/doc/latex/calculator/examples/calculator8.tex + RELOC/doc/latex/calculator/examples/calculator9.tex +srccontainersize 29364 +srccontainerchecksum 3121da3beab24f10d9898b88fb971613050078d2d09deedb03f3c5e6b9b1dd9f0a9e8a2c7c8ae092e8cee7058abca6366ff09dd15aab4f386adab0206e11303b +srcfiles size=45 + RELOC/source/latex/calculator/calculator.dtx + RELOC/source/latex/calculator/calculator.ins +runfiles size=19 + RELOC/tex/latex/calculator/calculator.sty + RELOC/tex/latex/calculator/calculus.sty +catalogue-ctan /macros/latex/contrib/calculator +catalogue-license lppl1.2 +catalogue-topics calculation maths +catalogue-version 2.0 + +name calligra +category Package +revision 15878 +shortdesc Calligraphic font +relocated 1 +longdesc A calligraphic font in the handwriting style of the author, +longdesc Peter Vanroose. The font is supplied as Metafont source. LaTeX +longdesc support of the font is provided in the calligra package in the +longdesc fundus bundle. +containersize 42412 +containerchecksum 9479d6b5ab33b12acae5cb3858c218dc4a1e1901c4006dca5160778798813d333b2e9e615eeb29e01007084d8479c58573f88ad5e282dfc06f3f5a9820df482c +doccontainersize 77272 +doccontainerchecksum 05e7b61864f483f0fc50d4680d80a395282a5c7f36b7ccaebb70e1c24cb5a101c4ee5accfec8d12c7fac0e7a32851dc15906267b93e6d75094b7ac646826dead +docfiles size=26 + RELOC/doc/latex/calligra/README + RELOC/doc/latex/calligra/testfont.pdf details="Font table" +runfiles size=76 + RELOC/fonts/source/public/calligra/callig15.mf + RELOC/fonts/source/public/calligra/calligra.mf + RELOC/fonts/tfm/public/calligra/callig15.tfm +catalogue-also calligra-type1 +catalogue-ctan /fonts/calligra +catalogue-license other-free +catalogue-topics font font-calligraphic font-mf + +name calligra-type1 +category Package +revision 24302 +shortdesc Type 1 version of Calligra +relocated 1 +longdesc This is a conversion (using mf2pt1) of Peter Vanroose's +longdesc handwriting font. +execute addMap calligra.map +containersize 59668 +containerchecksum 325764734735203d4e355d33b30a289d699fa10377212e39bf33d3195f2dfdebd4397785d69d6ca392e040cd2fd5bad20b0055b5f92620149fc96ed0d6d337a7 +doccontainersize 736 +doccontainerchecksum c1acbd3ae35c423b9414b5e132e1a164d4b102ecf9d7305548bb5d203a8d3a25309e2aa5a5d09277d310b9446013ca2db65f9ce6d5783432ed325838bfc9a48f +docfiles size=1 + RELOC/doc/fonts/calligra-type1/README details="Readme" +runfiles size=19 + RELOC/fonts/afm/public/calligra-type1/callig15.afm + RELOC/fonts/map/dvips/calligra-type1/calligra.map + RELOC/fonts/type1/public/calligra-type1/callig15.pfb +catalogue-ctan /fonts/calligra-type1 +catalogue-license other-free +catalogue-topics font font-calligraphic font-type1 +catalogue-version 001.000 + +name callouts +category Package +revision 44899 +shortdesc Put simple annotations and notes inside a picture +relocated 1 +longdesc The package defines the annotation environment in which +longdesc callouts, notes, arrows, and the like can be placed to describe +longdesc certain parts of a picture. +containersize 1488 +containerchecksum a440d3815f5c5a6d291ce4d7a20bc8483bebe190a0e6944de9f5be78a23eef119f41740ca0fbae4515b6ea7f2aefff90a62005883c44e8d70c6aec0a58c777ee +doccontainersize 200208 +doccontainerchecksum 0801298bd110f2e484b45c66626c790217666f3351aeeab87881d7f32ada1868222a21f2a7861afaacdea302ad269d2062aaf5fa9d13fdf8efb93efaeb499bb6 +docfiles size=77 + RELOC/doc/latex/callouts/A319neo.jpg + RELOC/doc/latex/callouts/README.md details="Readme" + RELOC/doc/latex/callouts/callouts.pdf details="Package documentation" + RELOC/doc/latex/callouts/callouts.tex +runfiles size=1 + RELOC/tex/latex/callouts/callouts.sty +catalogue-ctan /graphics/pgf/contrib/callouts +catalogue-license lppl +catalogue-topics graphics pgf-tikz + +name calrsfs +category Package +revision 17125 +shortdesc Copperplate calligraphic letters in LaTeX +relocated 1 +longdesc Provides a maths interface to the rsfs fonts. +containersize 864 +containerchecksum 34b5315e9e5e0ca532733f7b7ebe66e77d935fedf0e042aec63fb7cae257a423db5e93e288b9e1dacb26b0b75784eddffa8b565acfa537a7d970297f71e63a2e +doccontainersize 153676 +doccontainerchecksum 2378c004fe888bd2d60d0830ec98e805a2bdea3a5a6f4161dd3d4cb56c437dabdb579f3293845a10e316cd868725abd304ecb8eab55fb4c728ed5bc0d2073673 +docfiles size=41 + RELOC/doc/latex/calrsfs/README details="Readme" + RELOC/doc/latex/calrsfs/calrsfs.pdf details="Package documentation" + RELOC/doc/latex/calrsfs/calrsfs.tex +runfiles size=2 + RELOC/tex/latex/calrsfs/OMSrsfs.fd + RELOC/tex/latex/calrsfs/calrsfs.sty +catalogue-ctan /macros/latex/contrib/calrsfs +catalogue-license pd +catalogue-topics font-supp + +name cals +category Package +revision 43003 +shortdesc Multipage tables with wide range of features +relocated 1 +longdesc The package is a set of macros to typeset multipage tables with +longdesc repeatable headers and footers, with cells spanned over rows +longdesc and columns. Decorations are supported: padding, background +longdesc color, width of separation rules. The code is compatible with +longdesc multicol and bidi. +containersize 5096 +containerchecksum 75321e774560d7a205a7bf6b7d2d512c6aa9b5f38f6116813ff43ebd4d1fed23ebe26c235b278ee5723062e49630fc5f9480dccbe5bdfa44f5168f18657ddadc +doccontainersize 486132 +doccontainerchecksum 15accc06e3de07dc535078300efbffe305d8e26a3aa0e81304de37090500210932f08c24454d0bcb5d93ced903832891b6f987525eb64d04b1a7bfe577071153 +docfiles size=259 + RELOC/doc/latex/cals/README details="Readme" + RELOC/doc/latex/cals/cals.pdf details="Package documentation" + RELOC/doc/latex/cals/examples/bididemo.pdf + RELOC/doc/latex/cals/examples/bididemo.tex + RELOC/doc/latex/cals/examples/biditable1.tex + RELOC/doc/latex/cals/examples/biditable2.tex + RELOC/doc/latex/cals/examples/biditable3.tex + RELOC/doc/latex/cals/examples/biditable4.tex + RELOC/doc/latex/cals/examples/demo.pdf details="Examples of use" + RELOC/doc/latex/cals/examples/demo.tex + RELOC/doc/latex/cals/examples/table1.tex + RELOC/doc/latex/cals/examples/table2.tex + RELOC/doc/latex/cals/examples/table3.tex + RELOC/doc/latex/cals/examples/table4.tex + RELOC/doc/latex/cals/notes.pdf details="Additional notes" + RELOC/doc/latex/cals/tb101parashchenko.pdf details="Users Guide" + RELOC/doc/latex/cals/test/README details="Readme" + RELOC/doc/latex/cals/test/cell/test_10_create.chk + RELOC/doc/latex/cals/test/cell/test_10_create.tex + RELOC/doc/latex/cals/test/cell/test_20_colwidth.chk + RELOC/doc/latex/cals/test/cell/test_20_colwidth.tex + RELOC/doc/latex/cals/test/cell/test_30_decor.chk + RELOC/doc/latex/cals/test/cell/test_30_decor.tex + RELOC/doc/latex/cals/test/cell/test_40_width.chk + RELOC/doc/latex/cals/test/cell/test_40_width.tex + RELOC/doc/latex/cals/test/cell/test_50_hooks.chk + RELOC/doc/latex/cals/test/cell/test_50_hooks.tex + RELOC/doc/latex/cals/test/colsep/test_10_outone.chk + RELOC/doc/latex/cals/test/colsep/test_10_outone.tex + RELOC/doc/latex/cals/test/colsep/test_20_row.chk + RELOC/doc/latex/cals/test/colsep/test_20_row.tex + RELOC/doc/latex/cals/test/decoration/test_10_withwidth2.chk + RELOC/doc/latex/cals/test/decoration/test_10_withwidth2.tex + RELOC/doc/latex/cals/test/decoration/test_20_withcolor2.chk + RELOC/doc/latex/cals/test/decoration/test_20_withcolor2.tex + RELOC/doc/latex/cals/test/decoration/test_30_halfwidth.chk + RELOC/doc/latex/cals/test/decoration/test_30_halfwidth.tex + RELOC/doc/latex/cals/test/decoration/test_50_maxwidth.chk + RELOC/doc/latex/cals/test/decoration/test_50_maxwidth.tex + RELOC/doc/latex/cals/test/decoration/test_60_row.chk + RELOC/doc/latex/cals/test/decoration/test_60_row.tex + RELOC/doc/latex/cals/test/decoration/test_70_align.chk + RELOC/doc/latex/cals/test/decoration/test_70_align.tex + RELOC/doc/latex/cals/test/llt/test_10_cons_rot.chk + RELOC/doc/latex/cals/test/llt/test_10_cons_rot.tex + RELOC/doc/latex/cals/test/llt/test_20_snoc_decons.chk + RELOC/doc/latex/cals/test/llt/test_20_snoc_decons.tex + RELOC/doc/latex/cals/test/llt/test_30_all.chk + RELOC/doc/latex/cals/test/llt/test_30_all.tex + RELOC/doc/latex/cals/test/regression/test_010_wrongbreak.chk + RELOC/doc/latex/cals/test/regression/test_010_wrongbreak.tex + RELOC/doc/latex/cals/test/regression/test_020_wrongnobreak.chk + RELOC/doc/latex/cals/test/regression/test_020_wrongnobreak.tex + RELOC/doc/latex/cals/test/regression/test_030_spanbreak.chk + RELOC/doc/latex/cals/test/regression/test_030_spanbreak.tex + RELOC/doc/latex/cals/test/regression/test_040_rowheight.chk + RELOC/doc/latex/cals/test/regression/test_040_rowheight.tex + RELOC/doc/latex/cals/test/regression/test_050_leftskip_rowspan.chk + RELOC/doc/latex/cals/test/regression/test_050_leftskip_rowspan.tex + RELOC/doc/latex/cals/test/regression/test_060_alignment.chk + RELOC/doc/latex/cals/test/regression/test_060_alignment.tex + RELOC/doc/latex/cals/test/regression/test_065_alignment.chk + RELOC/doc/latex/cals/test/regression/test_065_alignment.tex + RELOC/doc/latex/cals/test/regression/test_070_clean_backup_row.chk + RELOC/doc/latex/cals/test/regression/test_070_clean_backup_row.tex + RELOC/doc/latex/cals/test/regression/test_075_vstraddled_retain_rowsep.chk + RELOC/doc/latex/cals/test/regression/test_075_vstraddled_retain_rowsep.tex + RELOC/doc/latex/cals/test/regression/test_080_never_pagebreak_in_float.chk + RELOC/doc/latex/cals/test/regression/test_080_never_pagebreak_in_float.tex + RELOC/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.chk + RELOC/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.tex + RELOC/doc/latex/cals/test/rowsep/test_10_waitrule.chk + RELOC/doc/latex/cals/test/rowsep/test_10_waitrule.tex + RELOC/doc/latex/cals/test/rowsep/test_15_waitover.chk + RELOC/doc/latex/cals/test/rowsep/test_15_waitover.tex + RELOC/doc/latex/cals/test/rowsep/test_20_pack.chk + RELOC/doc/latex/cals/test/rowsep/test_20_pack.tex + RELOC/doc/latex/cals/test/rowsep/test_30_jointwo.chk + RELOC/doc/latex/cals/test/rowsep/test_30_jointwo.tex + RELOC/doc/latex/cals/test/rowsep/test_35_joinone.chk + RELOC/doc/latex/cals/test/rowsep/test_35_joinone.tex + RELOC/doc/latex/cals/test/rowsep/test_40_construct.chk + RELOC/doc/latex/cals/test/rowsep/test_40_construct.tex + RELOC/doc/latex/cals/test/span/test_10_queue.chk + RELOC/doc/latex/cals/test/span/test_10_queue.tex + RELOC/doc/latex/cals/test/span/test_20_decor.chk + RELOC/doc/latex/cals/test/span/test_20_decor.tex + RELOC/doc/latex/cals/test/span/test_30_iftlrb.chk + RELOC/doc/latex/cals/test/span/test_30_iftlrb.tex + RELOC/doc/latex/cals/test/span/test_40_lr_queue.chk + RELOC/doc/latex/cals/test/span/test_40_lr_queue.tex + RELOC/doc/latex/cals/test/span/test_50_dimen.chk + RELOC/doc/latex/cals/test/span/test_50_dimen.tex + RELOC/doc/latex/cals/test/span/test_60_content.chk + RELOC/doc/latex/cals/test/span/test_60_content.tex + RELOC/doc/latex/cals/test/span/test_70_intercept.chk + RELOC/doc/latex/cals/test/span/test_70_intercept.tex + RELOC/doc/latex/cals/test/span/test_80_marker.chk + RELOC/doc/latex/cals/test/span/test_80_marker.tex + RELOC/doc/latex/cals/test/support/LatexTest.py + RELOC/doc/latex/cals/test/support/run_tests.py + RELOC/doc/latex/cals/test/table/test_10_ifbreak.chk + RELOC/doc/latex/cals/test/table/test_10_ifbreak.tex + RELOC/doc/latex/cals/test/table/test_20_dispatch.chk + RELOC/doc/latex/cals/test/table/test_20_dispatch.tex + RELOC/doc/latex/cals/test/table/test_30_issue_rowsep.chk + RELOC/doc/latex/cals/test/table/test_30_issue_rowsep.tex + RELOC/doc/latex/cals/test/table/test_40_issuerow.chk + RELOC/doc/latex/cals/test/table/test_40_issuerow.tex + RELOC/doc/latex/cals/test/table/test_50_row.chk + RELOC/doc/latex/cals/test/table/test_50_row.tex + RELOC/doc/latex/cals/test/table/test_60_whitespace.chk + RELOC/doc/latex/cals/test/table/test_60_whitespace.tex + RELOC/doc/latex/cals/test/table/test_70_lrskip.chk + RELOC/doc/latex/cals/test/table/test_70_lrskip.tex + RELOC/doc/latex/cals/test/template.txt + RELOC/doc/latex/cals/test/visual_tables/test_10_simple_2x2_with_parbreak.chk + RELOC/doc/latex/cals/test/visual_tables/test_10_simple_2x2_with_parbreak.png + RELOC/doc/latex/cals/test/visual_tables/test_10_simple_2x2_with_parbreak.tex + RELOC/doc/latex/cals/test/visual_tables/test_20_thead_tfoot.chk + RELOC/doc/latex/cals/test/visual_tables/test_20_thead_tfoot.png + RELOC/doc/latex/cals/test/visual_tables/test_20_thead_tfoot.tex + RELOC/doc/latex/cals/test/visual_tables/test_30_tbreak.chk + RELOC/doc/latex/cals/test/visual_tables/test_30_tbreak.png + RELOC/doc/latex/cals/test/visual_tables/test_30_tbreak.tex + RELOC/doc/latex/cals/test/visual_tables/test_40_span.chk + RELOC/doc/latex/cals/test/visual_tables/test_40_span.png + RELOC/doc/latex/cals/test/visual_tables/test_40_span.tex +srccontainersize 18716 +srccontainerchecksum 59a99cfdb7923d0e9edfa656f53825194b3c1ad0cc554e28ce792783d3196b525a9e7dc0e5ef8dd824e4d35b39a71946c579978520c7fb87de24f1e8b91c1253 +srcfiles size=22 + RELOC/source/latex/cals/cals.dtx + RELOC/source/latex/cals/cals.ins + RELOC/source/latex/cals/cell.dtx + RELOC/source/latex/cals/colsep.dtx + RELOC/source/latex/cals/decor.dtx + RELOC/source/latex/cals/lltokens.dtx + RELOC/source/latex/cals/rowsep.dtx + RELOC/source/latex/cals/rtl.dtx + RELOC/source/latex/cals/span.dtx + RELOC/source/latex/cals/table.dtx +runfiles size=6 + RELOC/tex/latex/cals/cals.sty +catalogue-also longtable supertabular +catalogue-ctan /macros/latex/contrib/cals +catalogue-license lppl1.3 +catalogue-topics table table-long +catalogue-version 2.4.2 + +name calxxxx-yyyy +category Package +revision 57282 +shortdesc Print a calendar for a group of years +relocated 1 +longdesc The package prints a calendar for two or more years, according +longdesc to a language selection. The package is also "culture +longdesc dependent" in the sense that it will start weeks according to +longdesc local rules: e.g., weeks conventionally start on Monday in the +longdesc English-speaking world. The package requires array, babel, and +longdesc geometry. +containersize 6276 +containerchecksum 2e9355442fdf8c4389fc09c8966c5e6b72cfe2df1b3209ec698db686579bef9ab41c17a36bd9714b3e917a8bcbc8ae568ca34bc7112a5a39d00a5b2c5340ac65 +doccontainersize 376788 +doccontainerchecksum 849652e8def77d6f9f0d16f29753df5e5b9095bcfed9be8105294df7ddc26644d1784a27a8b203d9e6c295c0f1e7f58d36f17bf98752ec9ee26ac3ac5a2f361d +docfiles size=109 + RELOC/doc/latex/calxxxx-yyyy/README details="Readme" + RELOC/doc/latex/calxxxx-yyyy/cal2021-2038_DE.pdf details="Sample (German) Calendar" language="de" + RELOC/doc/latex/calxxxx-yyyy/cal2021-2038_DK.pdf details="Sample (Danish) Calendar" language="da" + RELOC/doc/latex/calxxxx-yyyy/cal2021-2038_EN.pdf details="Sample (English) Calendar" language="en" + RELOC/doc/latex/calxxxx-yyyy/calxxxx-yyyy-doc.pdf details="Package documentation" +runfiles size=5 + RELOC/tex/latex/calxxxx-yyyy/calxxxx-yyyy-doc.tex + RELOC/tex/latex/calxxxx-yyyy/calxxxx-yyyy.tex +catalogue-also calxxxx +catalogue-ctan /macros/latex/contrib/calxxxx-yyyy +catalogue-license lppl1.3c +catalogue-topics calendar +catalogue-version 20.21a + +name cancel +category Package +revision 32508 +shortdesc Place lines through maths formulae +relocated 1 +longdesc A package to draw diagonal lines ("cancelling" a term) and +longdesc arrows with limits (cancelling a term "to a value") through +longdesc parts of maths formulae. +containersize 2904 +containerchecksum ac6e6b642dde29e32e45d7a0e967370c1f7a6ce604075cd43c57b1ee002e75adbe4fbc81de30e8d252cd58f2ac091503595a433c5de898deb3bfbdbb6f2d2e62 +doccontainersize 261244 +doccontainerchecksum 5af252a521c1976166db248c4c19d4fcadd32ec9801e0cd42b73e0a3a0adc461b88d765b90dec1af859474fc64bc00cbc8be44450cb4da6b43944c8fc46ba670 +docfiles size=65 + RELOC/doc/latex/cancel/cancel.pdf details="Package documentation" + RELOC/doc/latex/cancel/cancel.tex +runfiles size=2 + RELOC/tex/latex/cancel/cancel.sty +catalogue-ctan /macros/latex/contrib/cancel +catalogue-license pd +catalogue-topics maths +catalogue-version 2.2 + +name canoniclayout +category Package +revision 54758 +shortdesc Create canonical page layouts with memoir +relocated 1 +longdesc A canonic text layout has specified relations to a circle +longdesc inscribed within the enclosing page. The package allows the +longdesc user to use a canonic layout with the memoir class. +containersize 1796 +containerchecksum 26e6e7a7b521a020e110f44db7e90b87b3489310102bd56703f453c5b83c454ae8b8b108f842928172470bdf3cfc6085898a9f1719c55bd439bb21855470f35f +doccontainersize 483420 +doccontainerchecksum 45c35415edc5e4033215af9568a72dcecefafda319936dd3512da58eb5c2b73e0d75d7cc4fc640b9c231807c5027a515a1ad12cf61aa4847bf6ed5143525ee24 +docfiles size=119 + RELOC/doc/latex/canoniclayout/README.txt details="Readme" + RELOC/doc/latex/canoniclayout/canoniclayout.pdf details="Package documentation" +srccontainersize 9704 +srccontainerchecksum d6262c36db8977185928dae4a41f6bb7f732d55f8fa8890741bdcb8cabb4c95c43eb9229d78fb66c661428717c347d260e4d09e5bdab1af8454dd6b7b1cbe3d4 +srcfiles size=7 + RELOC/source/latex/canoniclayout/canoniclayout.dtx +runfiles size=1 + RELOC/tex/latex/canoniclayout/canoniclayout.sty +catalogue-ctan /macros/latex/contrib/canoniclayout +catalogue-license lppl1.3 +catalogue-topics geometry +catalogue-version 0.5 + +name cantarell +category Package +revision 54512 +shortdesc LaTeX support for the Cantarell font family +relocated 1 +longdesc Cantarell is a contemporary Humanist sans serif designed by +longdesc Dave Crossland and Jakub Steiner. This font, delivered under +longdesc the OFL version 1.1, is available on the GNOME download server. +longdesc The present package provides support for this font in LaTeX. It +longdesc includes Type 1 versions of the fonts, converted for this +longdesc package using FontForge from its sources, for full support with +longdesc Dvips. +execute addMap cantarell.map +containersize 1148748 +containerchecksum 37fd0c1986f76d823be6feecdb76bdfdc8222872355d0cd66c340950ed0ad90e057acee0f90ad0e41fc77b61a682f8bd390d98c8ed559015f9a0a65014b11b2f +doccontainersize 405644 +doccontainerchecksum 17c118e49fb173158f7c5cfc31c1bee1063cd38bd1ba976e2629a648c795295e3796e845b735cab07de99296088d09ed9d87ed92c22af3e1dd1ec1a7a90a04d4 +docfiles size=127 + RELOC/doc/fonts/cantarell/CHANGES + RELOC/doc/fonts/cantarell/README details="Readme" + RELOC/doc/fonts/cantarell/cantarell-samples.pdf details="Font samples" + RELOC/doc/fonts/cantarell/cantarell.pdf details="Package documentation" +runfiles size=1295 + RELOC/fonts/enc/dvips/cantarell/a_2jvscy.enc + RELOC/fonts/enc/dvips/cantarell/a_334zia.enc + RELOC/fonts/enc/dvips/cantarell/a_3al2dj.enc + RELOC/fonts/enc/dvips/cantarell/a_3qbyge.enc + RELOC/fonts/enc/dvips/cantarell/a_3qszes.enc + RELOC/fonts/enc/dvips/cantarell/a_5r5lpu.enc + RELOC/fonts/enc/dvips/cantarell/a_aawtss.enc + RELOC/fonts/enc/dvips/cantarell/a_bltucy.enc + RELOC/fonts/enc/dvips/cantarell/a_d5jo7z.enc + RELOC/fonts/enc/dvips/cantarell/a_dr4czt.enc + RELOC/fonts/enc/dvips/cantarell/a_ds3g6z.enc + RELOC/fonts/enc/dvips/cantarell/a_hg4i6b.enc + RELOC/fonts/enc/dvips/cantarell/a_hl732t.enc + RELOC/fonts/enc/dvips/cantarell/a_imucfy.enc + RELOC/fonts/enc/dvips/cantarell/a_jqbnr6.enc + RELOC/fonts/enc/dvips/cantarell/a_l4vbvl.enc + RELOC/fonts/enc/dvips/cantarell/a_lgcgi4.enc + RELOC/fonts/enc/dvips/cantarell/a_of73ha.enc + RELOC/fonts/enc/dvips/cantarell/a_p4btle.enc + RELOC/fonts/enc/dvips/cantarell/a_p4zxsj.enc + RELOC/fonts/enc/dvips/cantarell/a_qpjwax.enc + RELOC/fonts/enc/dvips/cantarell/a_st5pyv.enc + RELOC/fonts/enc/dvips/cantarell/a_tv3tjz.enc + RELOC/fonts/enc/dvips/cantarell/a_ucjayy.enc + RELOC/fonts/enc/dvips/cantarell/a_wdni4i.enc + RELOC/fonts/enc/dvips/cantarell/a_we6g55.enc + RELOC/fonts/enc/dvips/cantarell/a_wsmjok.enc + RELOC/fonts/enc/dvips/cantarell/a_wvctok.enc + RELOC/fonts/enc/dvips/cantarell/a_x2x3v2.enc + RELOC/fonts/enc/dvips/cantarell/a_yiealt.enc + RELOC/fonts/map/dvips/cantarell/cantarell.map + RELOC/fonts/opentype/gnome/cantarell/Cantarell-Bold.otf + RELOC/fonts/opentype/gnome/cantarell/Cantarell-ExtraBold.otf + RELOC/fonts/opentype/gnome/cantarell/Cantarell-Light.otf + RELOC/fonts/opentype/gnome/cantarell/Cantarell-Regular.otf + RELOC/fonts/opentype/gnome/cantarell/Cantarell-Thin.otf + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-OT1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2A-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2B-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-T2C-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-TS1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Bold-X2-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-OT1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2A-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2B-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-T2C-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-TS1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-ExtraBold-X2-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-OT1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2A-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2B-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-T2C-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-TS1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Light-X2-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-OT1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2A-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2B-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-T2C-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-TS1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Regular-X2-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-OT1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2A-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2B-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-T2C-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-TS1-TOsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-LF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-LF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-LF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-LF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-OsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-OsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-OsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-OsF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TLF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TLF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TLF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TLF.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TOsF--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TOsF-Slanted--base.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TOsF-Slanted.tfm + RELOC/fonts/tfm/gnome/cantarell/Cantarell-Thin-X2-TOsF.tfm + RELOC/fonts/type1/gnome/cantarell/Cantarell-Bold.pfb + RELOC/fonts/type1/gnome/cantarell/Cantarell-ExtraBold.pfb + RELOC/fonts/type1/gnome/cantarell/Cantarell-Light.pfb + RELOC/fonts/type1/gnome/cantarell/Cantarell-Regular.pfb + RELOC/fonts/type1/gnome/cantarell/Cantarell-Thin.pfb + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-OT1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2A-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2B-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-T2C-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-TS1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Bold-X2-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-OT1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2A-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2B-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-T2C-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-TS1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-ExtraBold-X2-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-OT1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2A-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2B-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-T2C-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-TS1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Light-X2-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-OT1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2A-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2B-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-T2C-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-TS1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Regular-X2-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-OT1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2A-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2B-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-T2C-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-TS1-TOsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-LF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-LF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-OsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-OsF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-TLF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-TLF.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-TOsF-Slanted.vf + RELOC/fonts/vf/gnome/cantarell/Cantarell-Thin-X2-TOsF.vf + RELOC/tex/latex/cantarell/OT1cantarell-LF.fd + RELOC/tex/latex/cantarell/OT1cantarell-OsF.fd + RELOC/tex/latex/cantarell/OT1cantarell-TLF.fd + RELOC/tex/latex/cantarell/OT1cantarell-TOsF.fd + RELOC/tex/latex/cantarell/T1cantarell-LF.fd + RELOC/tex/latex/cantarell/T1cantarell-OsF.fd + RELOC/tex/latex/cantarell/T1cantarell-TLF.fd + RELOC/tex/latex/cantarell/T1cantarell-TOsF.fd + RELOC/tex/latex/cantarell/T2Acantarell-LF.fd + RELOC/tex/latex/cantarell/T2Acantarell-OsF.fd + RELOC/tex/latex/cantarell/T2Acantarell-TLF.fd + RELOC/tex/latex/cantarell/T2Acantarell-TOsF.fd + RELOC/tex/latex/cantarell/T2Bcantarell-LF.fd + RELOC/tex/latex/cantarell/T2Bcantarell-OsF.fd + RELOC/tex/latex/cantarell/T2Bcantarell-TLF.fd + RELOC/tex/latex/cantarell/T2Bcantarell-TOsF.fd + RELOC/tex/latex/cantarell/T2Ccantarell-LF.fd + RELOC/tex/latex/cantarell/T2Ccantarell-OsF.fd + RELOC/tex/latex/cantarell/T2Ccantarell-TLF.fd + RELOC/tex/latex/cantarell/T2Ccantarell-TOsF.fd + RELOC/tex/latex/cantarell/TS1cantarell-LF.fd + RELOC/tex/latex/cantarell/TS1cantarell-OsF.fd + RELOC/tex/latex/cantarell/TS1cantarell-TLF.fd + RELOC/tex/latex/cantarell/TS1cantarell-TOsF.fd + RELOC/tex/latex/cantarell/X2cantarell-LF.fd + RELOC/tex/latex/cantarell/X2cantarell-OsF.fd + RELOC/tex/latex/cantarell/X2cantarell-TLF.fd + RELOC/tex/latex/cantarell/X2cantarell-TOsF.fd + RELOC/tex/latex/cantarell/cantarell.sty +catalogue-ctan /fonts/cantarell +catalogue-license ofl lppl1.3c +catalogue-topics font font-sans font-type1 +catalogue-version 3.2 + +name capt-of +category Package +revision 29803 +shortdesc Captions on more than floats +relocated 1 +longdesc Defines a command \captionof for putting a caption to something +longdesc that's not a float. Note that the caption package includes a +longdesc \captionof command that is an extension of that provided by +longdesc this package. +containersize 1168 +containerchecksum f3b1b81aa5a8c2ed9d5ab94e2e242442674af957d3f987b0db459ff8ca920abaab43d46db234b92ab588bb5f7d4c587eccf586a87fd492659f5b088760859c62 +doccontainersize 72600 +doccontainerchecksum a8fa6b2a0787a3e52f3a9a22482ba9f9217ae97b985b4975c690d240ae040f4f1e17c3ea7439d53337e5a0815a66754d0e6c528417c04d7c6684d28e869f71d0 +docfiles size=22 + RELOC/doc/latex/capt-of/README details="Readme" + RELOC/doc/latex/capt-of/capt-of.pdf details="Package documentation" +srccontainersize 3396 +srccontainerchecksum 87d4bb47226cef478ada2482605b925a3ebb3c1ee1fc624f39e724a857101b113856d99bf659ec5e01ce6773e0f695e424c41ba0640f23a76e9721d06a1d4f56 +srcfiles size=3 + RELOC/source/latex/capt-of/capt-of.dtx + RELOC/source/latex/capt-of/capt-of.ins +runfiles size=1 + RELOC/tex/latex/capt-of/capt-of.sty +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-license lppl +catalogue-topics caption + +name captcont +category Package +revision 15878 +shortdesc Retain float number across several floats +relocated 1 +longdesc The captcont package provides the ability to continue the +longdesc numbering in your float environment (figure, table, etc.) with +longdesc minimal overhead. This package adds three commands: \caption*, +longdesc \captcont, and \captcont*. Along with the \caption command, +longdesc these give full control over the caption numbering, caption +longdesc text and the entries in the list-of pages. The \caption and +longdesc \captcont commands generate list-of page entries. The \caption +longdesc and \caption* commands increment the figure or table counter. +longdesc Captcont also fully supports the subfigure package. +containersize 2232 +containerchecksum b5002e8ea4fc8ca1840190e8a2d40540576dc5e17110da473a8981198e3f24c858644b181545be3bed6275cd0e0bb9848a6058adfc8dbef26956e0754c4e4699 +doccontainersize 100532 +doccontainerchecksum 91bdb436163ff745f3aecc67eec747ef5a1853035d86258bbe23a080a92b3393f72b4029bad719765663c94e79217df4edf753be930a3e4b62f0b999c296ea86 +docfiles size=36 + RELOC/doc/latex/captcont/README details="Readme" + RELOC/doc/latex/captcont/captcont.pdf details="Package documentation" + RELOC/doc/latex/captcont/ltxdoc.cfg + RELOC/doc/latex/captcont/test.tex +srccontainersize 9796 +srccontainerchecksum 9c9f8b2785ce2620db8e5c373cd2eee4d9aa3cd8eb47c648625ca7250e7ace861d9dbc31432a7dd7d0f6c7ccd48b43aba74df519d72e3fa1a3c9546de946e591 +srcfiles size=11 + RELOC/source/latex/captcont/Makefile + RELOC/source/latex/captcont/captcont.dtx + RELOC/source/latex/captcont/captcont.ins +runfiles size=2 + RELOC/tex/latex/captcont/captcont.sty +catalogue-ctan /macros/latex/contrib/captcont +catalogue-license lppl +catalogue-topics caption +catalogue-version 2.0 + +name captdef +category Package +revision 17353 +shortdesc Declare free-standing \caption commands +relocated 1 +longdesc The \DeclareCaption command defines a class of caption command +longdesc associated with the counter specified to the command. These +longdesc commands are free-standing (i.e., don't need to be inside a +longdesc float environment). The package uses \DeclareCaption to define +longdesc \figcaption and \tabcaption, which can be used outside figure +longdesc or table environments. +containersize 1140 +containerchecksum c24a7d66c1daa3a9c336a8555286876aea9e969a4107c42c258f0f4c9a88070316df70e0f2a860adb6335a33e49cdd7a9ba8391255f1e1fb283bd2f6a7e7b343 +doccontainersize 216228 +doccontainerchecksum c0a1a4584d0802eda39812d2c293fabed2487b0cedb57df622519d5857c2ef10e54e66032e9e9ee9ab81c757fb827eabf422b1bf2ab0ae6f7c22ab3aecb49a8f +docfiles size=57 + RELOC/doc/latex/captdef/captdef.pdf details="Package documentation" + RELOC/doc/latex/captdef/captdef.tex + RELOC/doc/latex/captdef/miscdoc.sty +runfiles size=1 + RELOC/tex/latex/captdef/captdef.sty +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-license lppl +catalogue-topics caption + +name caption +category Package +revision 56771 +shortdesc Customising captions in floating environments +relocated 1 +longdesc The caption package provides many ways to customise the +longdesc captions in floating environments like figure and table, and +longdesc cooperates with many other packages. Facilities include +longdesc rotating captions, sideways captions, continued captions (for +longdesc tables or figures that come in several parts). A list of +longdesc compatibility notes, for other packages, is provided in the +longdesc documentation. The package also provides the "caption outside +longdesc float" facility, in the same way that simpler packages like +longdesc capt-of do. The package supersedes caption2. +containersize 30812 +containerchecksum d0e7276e6e84cabc85d64bc397fd2e4a258e913e4f78022ae40f3c7293e7f9b3f34dd011a944223507cb1555dbf2031dc563e34a5f7064e9903964bda5a893c3 +doccontainersize 1564528 +doccontainerchecksum 50018fff476b99763a3373b9defdf9de854915af11cf37f3a00907483ac481b9a0709d23f6d3612ab754c3f079eda905c5fa3447f576dadcb65f83a5ae5a98e8 +docfiles size=486 + RELOC/doc/latex/caption/CHANGELOG + RELOC/doc/latex/caption/README details="Readme" + RELOC/doc/latex/caption/SUMMARY + RELOC/doc/latex/caption/bicaption.pdf + RELOC/doc/latex/caption/caption-deu.pdf details="German documentation" language="de" + RELOC/doc/latex/caption/caption-eng.pdf details="English documentation" language="en" + RELOC/doc/latex/caption/caption-light.pdf + RELOC/doc/latex/caption/caption-rus.pdf details="Russian documentation" language="ru" + RELOC/doc/latex/caption/ltcaption.pdf + RELOC/doc/latex/caption/subcaption.pdf +srccontainersize 203920 +srccontainerchecksum 5f961b0fb1a11d5f28d75f58331d0b79bb87800d4a5412c57a66c5693c07225a46e49cb42f8f0653e06a74e2c7de38660f99d89f12905892f47fda5ba6820826 +srcfiles size=313 + RELOC/source/latex/caption/bicaption.dtx + RELOC/source/latex/caption/caption-ams-smf.dtx + RELOC/source/latex/caption/caption-beamer.dtx + RELOC/source/latex/caption/caption-deu.tex + RELOC/source/latex/caption/caption-elsarticle.dtx + RELOC/source/latex/caption/caption-eng.tex + RELOC/source/latex/caption/caption-koma.dtx + RELOC/source/latex/caption/caption-light.dtx + RELOC/source/latex/caption/caption-memoir.dtx + RELOC/source/latex/caption/caption-ntg.dtx + RELOC/source/latex/caption/caption-rus.tex + RELOC/source/latex/caption/caption-thesis.dtx + RELOC/source/latex/caption/caption.dtx + RELOC/source/latex/caption/caption.ins + RELOC/source/latex/caption/caption2.dtx + RELOC/source/latex/caption/caption3.dtx + RELOC/source/latex/caption/cat.eps + RELOC/source/latex/caption/elephant.eps + RELOC/source/latex/caption/ltcaption.dtx + RELOC/source/latex/caption/subcaption.dtx +runfiles size=52 + RELOC/tex/latex/caption/bicaption.sty + RELOC/tex/latex/caption/caption-ams-smf.sto + RELOC/tex/latex/caption/caption-beamer.sto + RELOC/tex/latex/caption/caption-elsarticle.sto + RELOC/tex/latex/caption/caption-koma.sto + RELOC/tex/latex/caption/caption-light.sty + RELOC/tex/latex/caption/caption-memoir.sto + RELOC/tex/latex/caption/caption-ntg.sto + RELOC/tex/latex/caption/caption-thesis.sto + RELOC/tex/latex/caption/caption.sty + RELOC/tex/latex/caption/caption2.sty + RELOC/tex/latex/caption/caption3.sty + RELOC/tex/latex/caption/ltcaption.sty + RELOC/tex/latex/caption/subcaption.sty +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-license lppl1.3 +catalogue-topics caption float + +name carbohydrates +category Package +revision 39000 +shortdesc Carbohydrate molecules with chemfig +relocated 1 +longdesc This package offers macros that make the preparation of +longdesc exercise sheets for teaching carbohydrate chemistry a lot less +longdesc tedious. It uses chemfig for drawing the formulas. Different +longdesc representation models (Fischer, Haworth, chair...) are +longdesc supported as well as alpha, beta, and chain isomers. +containersize 5180 +containerchecksum dfccca523ef4ea2c9bba9ebdbed7f6bbce1ab0739be02118231d1eb449bc826dd5e96406d5e009239a1bf25088e8df289e2e66423a536d76cf592af1a50f276a +doccontainersize 483796 +doccontainerchecksum 67de0675fbe00573058f428d34779b3423d1c9a7d47be5f8f1c3ba6b3cfb6783f5f1a945c1f201bb719bfe835ef035dfb56864a13ba0f12e0e83ef1ca0ce059d +docfiles size=123 + RELOC/doc/latex/carbohydrates/README details="Readme" + RELOC/doc/latex/carbohydrates/carbohydrates_en.pdf details="Package documentation" + RELOC/doc/latex/carbohydrates/carbohydrates_en.tex + RELOC/doc/latex/carbohydrates/test.tex +runfiles size=7 + RELOC/tex/latex/carbohydrates/carbohydrates.sty +catalogue-contact-repository https://github.com/cgnieder/carbohydrates/ +catalogue-ctan /macros/latex/contrib/carbohydrates +catalogue-license lppl1.3 +catalogue-topics diagram chemistry +catalogue-version 0.1 + +name carlisle +category Package +revision 56753 +shortdesc David Carlisle's small packages +relocated 1 +longdesc Many of David Carlisle's more substantial packages stand on +longdesc their own, or as part of the LaTeX latex-tools set; this set +longdesc contains: Making dotless 'j' characters for fonts that don't +longdesc have them; A method for combining the capabilities of longtable +longdesc and tabularx; An environment for including Plain TeX in LaTeX +longdesc documents; A jiffy to remove counters from other counters' +longdesc reset lists (now obsolete as it has been incorporated into the +longdesc LaTeX format); A jiffy to create 'slashed' characters for +longdesc physicists. +containersize 8664 +containerchecksum 679a07121b01b5ef1ad15b5713bf2b38374d49458d754eb204c914bc02dfd4ed429e30826efd980be0bfd1cefad7607804a04e8a820980877bea68286b23961f +doccontainersize 70876 +doccontainerchecksum 55265a53e2ae899bb6f856626f155c96084328b7967e6c599e56d53faa5b746efda2f98b6f9b4571d7473da8c664799c259d2f052776b4da218dddc03265df2b +docfiles size=19 + RELOC/doc/latex/carlisle/README.txt details="Bundle README" + RELOC/doc/latex/carlisle/ltx1.tex + RELOC/doc/latex/carlisle/ltxtable.pdf details="Documentation of ltxtable" +srccontainersize 2884 +srccontainerchecksum 350e30ed75ab3f6b3e33d4d0c16f84cc7cf887b022175437ab11bf561698c3d06d624f02971652ff370de1c4e6454e0a3cdbb75530e08bbf141ba9ef7298b942 +srcfiles size=2 + RELOC/source/latex/carlisle/ltxtable.tex +runfiles size=8 + RELOC/tex/latex/carlisle/dotlessj.sty + RELOC/tex/latex/carlisle/ltxtable.sty + RELOC/tex/latex/carlisle/plain.sty + RELOC/tex/latex/carlisle/remreset.sty + RELOC/tex/latex/carlisle/scalefnt.sty + RELOC/tex/latex/carlisle/slashed.sty +catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues +catalogue-contact-repository https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/latex/contrib/carlisle +catalogue-license lppl +catalogue-topics collection + +name carlito +category Package +revision 35002 +shortdesc Support for Carlito sans-serif fonts +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Carlito family of sans serif fonts, designed by +longdesc Lukasz Dziedzic of the tyPoland foundry and adopted by Google +longdesc for ChromeOS as a font-metric compatible replacement for +longdesc Calibri. +execute addMap carlito.map +containersize 2726328 +containerchecksum 57575185b89cf337f612f3e5b8458502e0d86a49c992d40f8cdb390417b0387fb0039ec316fa807fcddad7795e9f6617f62cf0bd6827bb654ac28231f65bc0a8 +doccontainersize 354048 +doccontainerchecksum b656565ef24d9939545e52af7bafcfc8a3613d0f206e1aab455e339c1d2590e930207db24033c8585a1e7950ec9f550d3b37a0c1adf456800b85ef63b68f875d +docfiles size=101 + RELOC/doc/fonts/carlito/Carlito-Regular.pdf details="Font tables" + RELOC/doc/fonts/carlito/LICENSE + RELOC/doc/fonts/carlito/README details="Readme" + RELOC/doc/fonts/carlito/samples.pdf details="Font samples" + RELOC/doc/fonts/carlito/samples.tex +runfiles size=1561 + RELOC/fonts/enc/dvips/carlito/crlt_57h366.enc + RELOC/fonts/enc/dvips/carlito/crlt_bxv5ge.enc + RELOC/fonts/enc/dvips/carlito/crlt_cegsyz.enc + RELOC/fonts/enc/dvips/carlito/crlt_csjzgd.enc + RELOC/fonts/enc/dvips/carlito/crlt_eckivh.enc + RELOC/fonts/enc/dvips/carlito/crlt_houcxd.enc + RELOC/fonts/enc/dvips/carlito/crlt_ibktmo.enc + RELOC/fonts/enc/dvips/carlito/crlt_lllwh4.enc + RELOC/fonts/enc/dvips/carlito/crlt_llspvt.enc + RELOC/fonts/enc/dvips/carlito/crlt_n2dr37.enc + RELOC/fonts/enc/dvips/carlito/crlt_n75whf.enc + RELOC/fonts/enc/dvips/carlito/crlt_ntvnfo.enc + RELOC/fonts/enc/dvips/carlito/crlt_o4ofpw.enc + RELOC/fonts/enc/dvips/carlito/crlt_orgsld.enc + RELOC/fonts/enc/dvips/carlito/crlt_rekp6x.enc + RELOC/fonts/enc/dvips/carlito/crlt_sghv4p.enc + RELOC/fonts/enc/dvips/carlito/crlt_ssbojb.enc + RELOC/fonts/enc/dvips/carlito/crlt_uuhkl6.enc + RELOC/fonts/enc/dvips/carlito/crlt_ynpzot.enc + RELOC/fonts/enc/dvips/carlito/crlt_z7vml3.enc + RELOC/fonts/map/dvips/carlito/carlito.map + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ts1.tfm + RELOC/fonts/truetype/typoland/carlito/Carlito-Bold.ttf + RELOC/fonts/truetype/typoland/carlito/Carlito-BoldItalic.ttf + RELOC/fonts/truetype/typoland/carlito/Carlito-Italic.ttf + RELOC/fonts/truetype/typoland/carlito/Carlito-Regular.ttf + RELOC/fonts/type1/typoland/carlito/Carlito-Bold.pfb + RELOC/fonts/type1/typoland/carlito/Carlito-BoldItalic.pfb + RELOC/fonts/type1/typoland/carlito/Carlito-Italic.pfb + RELOC/fonts/type1/typoland/carlito/Carlito.pfb + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tosf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tosf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tosf-ts1.vf + RELOC/tex/latex/carlito/LY1Carlito-Inf.fd + RELOC/tex/latex/carlito/LY1Carlito-LF.fd + RELOC/tex/latex/carlito/LY1Carlito-OsF.fd + RELOC/tex/latex/carlito/LY1Carlito-Sup.fd + RELOC/tex/latex/carlito/LY1Carlito-TLF.fd + RELOC/tex/latex/carlito/LY1Carlito-TOsF.fd + RELOC/tex/latex/carlito/OT1Carlito-Inf.fd + RELOC/tex/latex/carlito/OT1Carlito-LF.fd + RELOC/tex/latex/carlito/OT1Carlito-OsF.fd + RELOC/tex/latex/carlito/OT1Carlito-Sup.fd + RELOC/tex/latex/carlito/OT1Carlito-TLF.fd + RELOC/tex/latex/carlito/OT1Carlito-TOsF.fd + RELOC/tex/latex/carlito/T1Carlito-Inf.fd + RELOC/tex/latex/carlito/T1Carlito-LF.fd + RELOC/tex/latex/carlito/T1Carlito-OsF.fd + RELOC/tex/latex/carlito/T1Carlito-Sup.fd + RELOC/tex/latex/carlito/T1Carlito-TLF.fd + RELOC/tex/latex/carlito/T1Carlito-TOsF.fd + RELOC/tex/latex/carlito/TS1Carlito-LF.fd + RELOC/tex/latex/carlito/TS1Carlito-OsF.fd + RELOC/tex/latex/carlito/TS1Carlito-TLF.fd + RELOC/tex/latex/carlito/TS1Carlito-TOsF.fd + 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-license ofl +catalogue-topics font font-ttf font-type1 font-sans + +name carolmin-ps +category Package +revision 15878 +catalogue carolmin-t1 +shortdesc Adobe Type 1 format of Carolingian Minuscule fonts +relocated 1 +longdesc The bundle offers Adobe Type 1 format versions of Peter +longdesc Wilson's Carolingian Minuscule font set (part of the bookhands +longdesc collection). The fonts in the bundle are ready-to-use +longdesc replacements for the Metafont originals. +execute addMap cmin.map +containersize 105236 +containerchecksum 61ae809b5e4e7ff493de30ebb825870ab9caa8dc64d6d3c82d4654fece82dece4937c798e3c1e5086a84411edbcaf8c2ea777a9534865b38d4bc5457ae59aa25 +doccontainersize 520 +doccontainerchecksum 284d9f740d1e4b1a4c989b527bac80e54afa74013d1234bf9e1c2d42ac2ca4387c3b0d24004818e1fb92b001582114a4432480804c721cc7df0bd3b85835f111 +docfiles size=1 + RELOC/doc/fonts/carolmin-ps/README +runfiles size=38 + RELOC/fonts/afm/public/carolmin-ps/cmin10.afm + RELOC/fonts/afm/public/carolmin-ps/cmin17.afm + RELOC/fonts/afm/public/carolmin-ps/cmin7.afm + RELOC/fonts/afm/public/carolmin-ps/cminb10.afm + RELOC/fonts/afm/public/carolmin-ps/cminb17.afm + RELOC/fonts/afm/public/carolmin-ps/cminb7.afm + RELOC/fonts/map/dvips/carolmin-ps/cmin.map + RELOC/fonts/type1/public/carolmin-ps/cmin10.pfb + RELOC/fonts/type1/public/carolmin-ps/cmin17.pfb + RELOC/fonts/type1/public/carolmin-ps/cmin7.pfb + RELOC/fonts/type1/public/carolmin-ps/cminb10.pfb + RELOC/fonts/type1/public/carolmin-ps/cminb17.pfb + RELOC/fonts/type1/public/carolmin-ps/cminb7.pfb +catalogue-ctan /fonts/carolmin-ps +catalogue-license lppl +catalogue-topics font font-bookhand font-type1 + +name cascade +category Package +revision 55759 +shortdesc Constructions with braces to present mathematical demonstrations +relocated 1 +longdesc The LaTeX package cascade provides a command \Cascade to do +longdesc constructions to present mathematical demonstrations with +longdesc successive braces for the deductions. +containersize 2280 +containerchecksum 2c108ed478340c3605848c67dced82eb09040632e63dc59aa00c2ff52d0a0ff9c174240adb096ffdfbce8449c4b612df4ad0da05e41bfdf0040ed4e510a0ea19 +doccontainersize 168008 +doccontainerchecksum f3b650bc8ffcb089b09a94bdeda3e188df26c5494cbcc515c095670e6f13be31e6d18a19b781d98fd78ea9df7144f9d5e8bed13a79da99de1f2d0329079438f6 +docfiles size=47 + RELOC/doc/latex/cascade/README.md details="Readme" + RELOC/doc/latex/cascade/cascade-french.pdf details="Package documentation" language="fr" + RELOC/doc/latex/cascade/cascade-french.tex + RELOC/doc/latex/cascade/cascade.pdf details="Package documentation" +srccontainersize 6340 +srccontainerchecksum 3b5b9fc20b90dee62d281ba4d25953e660b52488271a812e595215f255c7947131ae33d3cbc65036242d25996bdfe40a980650cd942af2cf6029e408f0f7f915 +srcfiles size=7 + RELOC/source/latex/cascade/cascade.dtx + RELOC/source/latex/cascade/cascade.ins +runfiles size=2 + RELOC/tex/latex/cascade/cascade.sty +catalogue-ctan /macros/latex/contrib/cascade +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.1 + +name cascadia-code +category Package +revision 57478 +shortdesc The Cascadia Code font with support for LaTeX and pdfLaTeX +relocated 1 +longdesc Cascadia Code is a monospaced font by Microsoft. This package +longdesc provides the Cascadia Code family of fonts with support for +longdesc LaTeX and pdfLaTeX. Adding \usepackage{cascadia-code} to the +longdesc preamble of your document will activate Cascadia Code as the +longdesc typewriter font (\ttdefault). +execute addMap CascadiaCodThree.map +containersize 1752160 +containerchecksum 52364786bb0be4bf001ad0563b9bbd7929f7c4b09299919623a237f631633c9ae57a185515802372251c2dca3261dab41f66420e59e9be7d2912f2c6bd30dc66 +doccontainersize 185216 +doccontainerchecksum 48120981b674f9dbd5099255f4f430c33bae91bc50f6a2fda3f7e9625886584bfb024eddfc9ca795dedf4174f73d6546e2fbb0f85862b12e6b35bec527b6086c +docfiles size=49 + RELOC/doc/fonts/cascadia-code/LICENSE + RELOC/doc/fonts/cascadia-code/README details="Readme" + RELOC/doc/fonts/cascadia-code/cascadia-code-samples.pdf details="Font samples" + RELOC/doc/fonts/cascadia-code/cascadia-code-samples.tex +runfiles size=774 + RELOC/fonts/enc/dvips/cascadia-code/a_5rnmoj.enc + RELOC/fonts/enc/dvips/cascadia-code/a_i3ioen.enc + RELOC/fonts/enc/dvips/cascadia-code/a_lzhlbi.enc + RELOC/fonts/enc/dvips/cascadia-code/a_r2ngzv.enc + RELOC/fonts/enc/dvips/cascadia-code/a_rzdm5y.enc + RELOC/fonts/enc/dvips/cascadia-code/a_vqpkf5.enc + RELOC/fonts/enc/dvips/cascadia-code/a_zrxj4s.enc + RELOC/fonts/map/dvips/cascadia-code/CascadiaCodThree.map + RELOC/fonts/opentype/public/cascadia-code/CascadiaCod3-Bold.otf + RELOC/fonts/opentype/public/cascadia-code/CascadiaCod3-ExtraLight.otf + RELOC/fonts/opentype/public/cascadia-code/CascadiaCod3-Light.otf + RELOC/fonts/opentype/public/cascadia-code/CascadiaCod3-Regular.otf + RELOC/fonts/opentype/public/cascadia-code/CascadiaCod3-SemiBold.otf + RELOC/fonts/opentype/public/cascadia-code/CascadiaCod3-SemiLight.otf + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-sup-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-sup-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-sup-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-sup-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-tlf-t1.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cascadia-code/CascadiaCod3-SemiLight-tlf-ts1.tfm + RELOC/fonts/type1/public/cascadia-code/CascadiaCod3-Bold.pfb + RELOC/fonts/type1/public/cascadia-code/CascadiaCod3-ExtraLight.pfb + RELOC/fonts/type1/public/cascadia-code/CascadiaCod3-Light.pfb + RELOC/fonts/type1/public/cascadia-code/CascadiaCod3-Regular.pfb + RELOC/fonts/type1/public/cascadia-code/CascadiaCod3-SemiBold.pfb + RELOC/fonts/type1/public/cascadia-code/CascadiaCod3-SemiLight.pfb + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Bold-sup-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Bold-sup-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Bold-tlf-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Light-sup-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Light-sup-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Light-tlf-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Light-tlf-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Light-tlf-ts1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Regular-sup-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Regular-sup-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Regular-tlf-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiLight-sup-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiLight-sup-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiLight-tlf-ly1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiLight-tlf-t1.vf + RELOC/fonts/vf/public/cascadia-code/CascadiaCod3-SemiLight-tlf-ts1.vf + RELOC/tex/latex/cascadia-code/LY1CascadiaCodThree-Sup.fd + RELOC/tex/latex/cascadia-code/LY1CascadiaCodThree-TLF.fd + RELOC/tex/latex/cascadia-code/OT1CascadiaCodThree-Sup.fd + RELOC/tex/latex/cascadia-code/OT1CascadiaCodThree-TLF.fd + RELOC/tex/latex/cascadia-code/T1CascadiaCodThree-Sup.fd + RELOC/tex/latex/cascadia-code/T1CascadiaCodThree-TLF.fd + RELOC/tex/latex/cascadia-code/TS1CascadiaCodThree-TLF.fd + RELOC/tex/latex/cascadia-code/cascadia-code.sty +catalogue-contact-repository https://github.com/ccebinger/CTAN_cascadia-code +catalogue-ctan /fonts/cascadia-code +catalogue-license ofl lppl +catalogue-topics font font-mono font-sans font-otf font-type1 font-supp font-t1enc +catalogue-version 0.0.1 + +name cascadilla +category Package +revision 25144 +shortdesc Typeset papers conforming to the stylesheet of the Cascadilla Proceedings Project +relocated 1 +longdesc The class provides an extension of the standard LaTeX article +longdesc class that may be used to typeset papers conforming to the +longdesc stylesheet of the Cascadilla Proceedings Project, which is used +longdesc by a number of linguistics conference proceedings (e.g., +longdesc WCCFL). +containersize 9668 +containerchecksum df66bd91562f3678e2ef42f16a4a0c4af95209fb28b1176b5b63968632b3235391180b06431a42afdc73a9e4f97f47c8c954ed1ef2ccb746cdbf1d65058ad919 +doccontainersize 88068 +doccontainerchecksum 2c15b786f550642c26cc8f5e0151dd5b31e964b46d59837b3f1ccbe118fba6ad8f06f86c6a5bdc6a791615929bf4c9b7c2287f930d1ca3c8bd6c2d0d7ddf64b2 +docfiles size=32 + RELOC/doc/latex/cascadilla/LICENSE.txt + RELOC/doc/latex/cascadilla/README details="Readme" + RELOC/doc/latex/cascadilla/example.pdf details="Example document" + RELOC/doc/latex/cascadilla/example.tex + RELOC/doc/latex/cascadilla/exampleref.bib +runfiles size=11 + RELOC/bibtex/bst/cascadilla/cascadilla.bst + RELOC/tex/latex/cascadilla/cascadilla.cls +catalogue-ctan /macros/latex/contrib/cascadilla +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.8.2 + +name cases +category Package +revision 54682 +shortdesc Numbered cases environment +relocated 1 +longdesc This package provides a LaTeX environment "numcases" to produce +longdesc multi-case equations with a separate equation number for each +longdesc case. There is also a "subnumcases" environment which numbers +longdesc each case with the overall equation number plus a letter [8a, +longdesc 8b, etc.]. +containersize 4068 +containerchecksum 281f9d13741f16fa07f93bbd2628f4da34db07d5005b6c1d7994ec7713aa100f152efd066bf712417bf6dc3fafb496d0a80f65cd2127c4640ab28cca6a4ee1d5 +doccontainersize 338912 +doccontainerchecksum 89aa9005cbdecc26e0b2489b544cf3f504e952eddd9a28dedd2a2f555d3e0c5f8378ce1ef21dd78fbc5ebac616cdb7559f2147e143f3cef12286a3e33d9b5616 +docfiles size=86 + RELOC/doc/latex/cases/README details="Readme" + RELOC/doc/latex/cases/cases.pdf details="Package documentation" + RELOC/doc/latex/cases/cases.tex +runfiles size=3 + RELOC/tex/latex/cases/cases.sty +catalogue-ctan /macros/latex/contrib/cases +catalogue-license other-free +catalogue-topics maths-syseqn +catalogue-version 3.2 + +name casyl +category Package +revision 15878 +shortdesc Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics +relocated 1 +longdesc The bundle constitutes a font (as Metafont source) and LaTeX +longdesc macros for its use within a document. +containersize 5796 +containerchecksum 1536d4fe6c0cc647def47d3686ac73757da8b4ebbb99a5188e78944d59350c0da731f2e51a40c94a1e05b225a793f292766de4221792804887b4350631c8a24b +doccontainersize 73008 +doccontainerchecksum 74adbaee46656ad57512a11986f834239d60259eb45014e2c738f7f5b5bb47897185528c0feeb96c45ab7d6c04e679e1858417a93db791b72b5eea1cf828c0ce +docfiles size=26 + RELOC/doc/latex/casyl/README + RELOC/doc/latex/casyl/casyldoc.pdf details="Package documentation" + RELOC/doc/latex/casyl/casyldoc.tex +runfiles size=9 + RELOC/fonts/source/public/casyl/casyll10.mf + RELOC/fonts/tfm/public/casyl/casyll10.tfm + RELOC/tex/latex/casyl/casyltex.sty +catalogue-also oinuit +catalogue-ctan /language/casyl +catalogue-license pd +catalogue-topics linguistic font font-mf +catalogue-version 2.0 + +name catchfile +category Package +revision 53084 +shortdesc Catch an external file into a macro +relocated 1 +longdesc This package catches the contents of a file and puts it in a +longdesc macro. It requires e-TeX. Both LaTeX and plain TeX are +longdesc supported. +containersize 2748 +containerchecksum 6e01a91913a2a81224a533eb7f119283c267682efaa2a6cec11e9db7fc593b0d7a6830b83e482f22e96df208dba598b1c6596a78ae5d4cd17aa4c9a50eeaddea +doccontainersize 297388 +doccontainerchecksum ad0d938e0bb4fe3d307dff1afc5ff93cd4b76948a88f88a65e3d036fe679cddc91c52e64febbf887c766d423fa5d94371869793c93138eeb919188b9b44234a7 +docfiles size=74 + RELOC/doc/latex/catchfile/README.md + RELOC/doc/latex/catchfile/catchfile.pdf details="Package documentation" +srccontainersize 6164 +srccontainerchecksum e254709b62517cbb717c43e894c17a72277465504bcbfdcacb2bf7423173e0476cce8355acb9772ca74fb267abd43faf0470ebf92139dd7847c756244efbc3fb +srcfiles size=6 + RELOC/source/latex/catchfile/catchfile.dtx +runfiles size=3 + RELOC/tex/generic/catchfile/catchfile.sty +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-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.8 + +name catchfilebetweentags +category Package +revision 21476 +shortdesc Catch text delimited by docstrip tags +relocated 1 +longdesc This package (built using the facilities of catchfile) provides +longdesc a macro \catchfilebetweentags acts like the original \catchfile +longdesc but only extracts a portion of the file instead of the complete +longdesc file. The extracted portion can be delimited by strings or by +longdesc docstrip tags: %<*tag> .... % (comments in the caught +longdesc region may be included or dropped). +containersize 1968 +containerchecksum 71656fb162aae4fccf15767911b8524c4f3a72f4c6fbeaea45a3dd9593489ec7644e7c10ab61a49cdd125ffe56e61331c30e35a10517720948d4f03b97b20056 +doccontainersize 140092 +doccontainerchecksum 4071d6d6ada488b5bbbac0df3b7604939fafbebc17808430d8bd389b86a8aeca0df90da77fb00f8be14af9e9a79c45bf5a2dc0b9ea45af34f60cbce83810e1a5 +docfiles size=48 + RELOC/doc/latex/catchfilebetweentags/README details="Readme" + RELOC/doc/latex/catchfilebetweentags/catchfilebetweentags.pdf details="Package documentation" +srccontainersize 9544 +srccontainerchecksum 0d0e6436d1e065fd518a743fd39062f1ef9a86f450130a2339ae59e5af0a9fd0ebeaf72a66301c8ad42c6e218a01bef48c977044cf284c98cbf25e6c8f1773b9 +srcfiles size=10 + RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.drv + RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.dtx + RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.ins +runfiles size=1 + RELOC/tex/latex/catchfilebetweentags/catchfilebetweentags.sty +catalogue-ctan /macros/latex/contrib/catchfilebetweentags +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.1 + +name catcodes +category Package +revision 38859 +shortdesc Generic handling of TeX category codes +relocated 1 +longdesc The bundle deals with category code switching; the packages of +longdesc the bundle should work with any TeX format (with the support of +longdesc the plainpkg package). The bundle provides: stacklet.sty, which +longdesc supports stacks that control the use of different catcodes; +longdesc actcodes.sty, which deals with active characters; and +longdesc catchdq.sty, which provides a simple quotation character +longdesc control mechanism. +containersize 6288 +containerchecksum 6eeba6d0c7435050e5ca07a6b0a24bca1714a9ba3d3a20168547502c2ec954b9d74918767c9728c1595355fdb84eb74ef258fee86cae1907fc5b186ccac0a939 +doccontainersize 542996 +doccontainerchecksum 4dbf09f34abc39d9aa5003ce3defe4f5a04b0cade5d6a848bbde4ff3f35ff6bd511b8dd8dade14f92b1ba38bda2595da65da589b0236920c7aa340d245e0cb7c +docfiles size=135 + RELOC/doc/generic/catcodes/README details="Readme" + RELOC/doc/generic/catcodes/SrcFILEs.txt + RELOC/doc/generic/catcodes/catcodes.pdf details="Package documentation" +srccontainersize 6940 +srccontainerchecksum 157520a8e968f5236add71d55aab0ddec48eeac801349ae1900cf70bcaf1faa4cfe98632ac5fa41cabee6dfb6fa46655a609023329d161cad06ece33f10d03d7 +srcfiles size=8 + RELOC/source/generic/catcodes/catcodes.tex + RELOC/source/generic/catcodes/fdatechk.tex + RELOC/source/generic/catcodes/makedoc.cfg + RELOC/source/generic/catcodes/mdoccorr.cfg + RELOC/source/generic/catcodes/srcfiles.tex +runfiles size=7 + RELOC/tex/generic/catcodes/actcodes.sty + RELOC/tex/generic/catcodes/catchdq.sty + RELOC/tex/generic/catcodes/catcodes.RLS + RELOC/tex/generic/catcodes/stacklet.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/generic/catcodes +catalogue-license lppl1.3 +catalogue-topics macro-supp quote-marks macro-gen +catalogue-version r0.2 + +name catechis +category Package +revision 49061 +shortdesc Macros for typesetting catechisms +relocated 1 +longdesc The macros include: format for question-and-answer; comments on +longdesc answers; lengthier explanations of answers; citations. The +longdesc formatting of all the macros is highly (and simply) +longdesc customizable. +containersize 1664 +containerchecksum 2fb8f8ae6f9e597740edbdd0e686f9715dbd4ad2df2cf9d3737b09d1ef496582e243b8e21414fab8cb89d3d5a8ad30a4d82276551ad6fa548895c6cbc7612cb9 +doccontainersize 395344 +doccontainerchecksum 2273842b6b0222c98736fe6338eec505e5a75ca45d180c259bb3073ed47a5d0bab65fbb95630076f764db64d978ad8b3dbdb6a12775d2af3ea730c9d1b938bf6 +docfiles size=102 + RELOC/doc/latex/catechis/CHANGES + RELOC/doc/latex/catechis/README details="Readme" + RELOC/doc/latex/catechis/catechis.pdf details="Package documentation" + RELOC/doc/latex/catechis/lppl.txt +srccontainersize 6420 +srccontainerchecksum bd78292392877d0694fc085ab92e64ea47df555103ac745c8a0751ac445d0c74a034bfa9be1b39a3e16c0578da7bb68c7635a359f3caf69a2dd3d03ad21b51fb +srcfiles size=7 + RELOC/source/latex/catechis/catechis.dtx + RELOC/source/latex/catechis/catechis.ins +runfiles size=1 + RELOC/tex/latex/catechis/catechis.sty +catalogue-ctan /macros/latex/contrib/catechis +catalogue-license lppl1.3 +catalogue-topics theology +catalogue-version 2.5 + +name catoptions +category Package +revision 35069 +shortdesc Preserving and recalling standard catcodes +relocated 1 +longdesc The package changes package loading internals so that all +longdesc subsequently loaded packages can rely on normal/standard +longdesc catcodes of all ASCII characters. The package defines canonical +longdesc control sequences to represent all the visible ASCII +longdesc characters. It also provides robust option parsing mechanisms +longdesc (XDeclareOption, XExecuteOptions and XProcessOptions, which +longdesc will be used by \documentclass if the package has already been +longdesc loaded). The package also provides a range of other TeX +longdesc programming tools. +containersize 37784 +containerchecksum 1169ec654a56230c615f561649ca1fc22716eaee05e5229d1d2320ff73717b708abb98789d7457093e5ab5f2dc67f3e818e58c7e8f32c8f29014e19548f02de1 +doccontainersize 19124 +doccontainerchecksum 4c35a3fc5829e3492fad27f2635bb4ae62b17b5d012db40fcdc5929ffe0f3917ec76c12a940d5fc6dad2b8d7d9d12042c7f5c2350467ba0777a23c97372cca5c +docfiles size=19 + RELOC/doc/latex/catoptions/README details="Readme" + RELOC/doc/latex/catoptions/catoptions-guide.tex +runfiles size=47 + RELOC/tex/latex/catoptions/catoptions-guide.cfg + RELOC/tex/latex/catoptions/catoptions.sty +catalogue-ctan /macros/latex/contrib/catoptions +catalogue-license lppl1.3 +catalogue-topics macro-supp keyval +catalogue-version 0.2.7h + +name causets +category Package +revision 57139 +shortdesc Draw causal set (Hasse) diagrams +relocated 1 +longdesc This LaTeX package uses TikZ to generate (Hasse) diagrams for +longdesc causal sets (causets) to be used inline with text or in +longdesc mathematical expressions. The macros can also be used in the +longdesc tikzpicture environment to annotate or modify a diagram, as +longdesc shown with some examples in the documentation. +containersize 3672 +containerchecksum 3dbe4a3c2e5985dbb4a36134a3739adb97636086ad2c1d3f510e4607fb6a6d0d01cbd2d4e135835a9eb88d63128e3b9a4408bce3b910c406b47dad0d0b5c19b6 +doccontainersize 424340 +doccontainerchecksum 77f5ec1d8c16bb6d3772a78913825a1652c5130327e7851ddd16d5a5b0da9315e09dc113c880659b03d4263558781c36e1ed9ac546fabb9df88cfd4b4a3fb84b +docfiles size=123 + RELOC/doc/latex/causets/README.md details="Readme" + RELOC/doc/latex/causets/causet_tikz_example1.pdf + RELOC/doc/latex/causets/causet_tikz_example1.tex + RELOC/doc/latex/causets/causet_tikz_example2.pdf + RELOC/doc/latex/causets/causet_tikz_example2.tex + RELOC/doc/latex/causets/causets.pdf details="Package documentation" + RELOC/doc/latex/causets/causets.tex +runfiles size=4 + RELOC/tex/latex/causets/causets.sty +catalogue-contact-bugs https://github.com/c-minz/LaTeX-causets/issues +catalogue-contact-repository https://github.com/c-minz/LaTeX-causets +catalogue-ctan /graphics/pgf/contrib/causets +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz diagram-maths maths +catalogue-version 1.1 + +name cbcoptic +category Package +revision 16666 +shortdesc Coptic fonts and LaTeX macros for general usage and for philology +relocated 1 +longdesc CBcoptic is a bundle of files for typesetting Coptic +longdesc philological text with the proper fonts and hyphenation. The +longdesc fonts are based on, but much extend, the fonts of the original +longdesc coptic bundle. The CBcoptic bundle includes font description +longdesc files, Metafont sources and equivalent Adobe Type 1 fonts in +longdesc pfb format. The bundle also includes a package that provides +longdesc some macros of philological interest. +containersize 100688 +containerchecksum 7d48e324b5c5ff5b0755903973e0b439025e98277269f21cae33709a6c39eb6df7cd8f054b22fb8b1c072cabf9e92d0f1456cb41fbdd5a6e99bc0d63952e6c3c +doccontainersize 189788 +doccontainerchecksum e7e33c5af518e7fc4f8fb15af79a9aefc1ab8cb4401d0eecbd6b418acfb01c2fa790d4d7f55206ec9d6d865aa177b2872f4d742bec2991e7118df4b834341af2 +docfiles size=56 + RELOC/doc/latex/cbcoptic/README details="Readme" + RELOC/doc/latex/cbcoptic/coptfont.pdf details="Font details and samples" + RELOC/doc/latex/cbcoptic/testcop.tex + RELOC/doc/latex/cbcoptic/testcopOK.pdf +runfiles size=72 + RELOC/fonts/source/public/cbcoptic/coptbase.mf + RELOC/fonts/source/public/cbcoptic/copti.mf + RELOC/fonts/source/public/cbcoptic/copto.mf + RELOC/fonts/tfm/public/cbcoptic/copti.tfm + RELOC/fonts/tfm/public/cbcoptic/copto.tfm + RELOC/fonts/type1/public/cbcoptic/copti.pfb + RELOC/fonts/type1/public/cbcoptic/copto.pfb + RELOC/tex/latex/cbcoptic/coptic.sty + RELOC/tex/latex/cbcoptic/lcopcoptic.fd + RELOC/tex/latex/cbcoptic/prnthyph.sty +catalogue-ctan /language/coptic/cbcoptic +catalogue-license lppl +catalogue-topics coptic font font-mf font-type1 +catalogue-version 0.2 + +name cbfonts +category Package +revision 54080 +catalogue cbgreek-complete +shortdesc Complete set of Greek fonts +relocated 1 +longdesc This bundle presents the whole of Beccari's original Greek font +longdesc set, which use the 'Lispiakos' font shape derived from the +longdesc shape of the fonts used in printers' shops in Lispia. The fonts +longdesc are available both as Metafont source and in Adobe Type 1 +longdesc format, and at the same wide set of design sizes as are such +longdesc font sets as the EC fonts. Please note that this package needs +longdesc the complementary cbfonts-fd package to work properly. +depend cbfonts-fd +execute addMixedMap cbgreek-full.map +containersize 66006520 +containerchecksum 0e7cecfdfa102113f75f46f9c8bc76f578fca6c967128bb8b203af76cc64cbefd123ae87a8b04a9780f498517bd9f660d12e2dc586220f2c12cc8aa76f1aa40a +doccontainersize 428692 +doccontainerchecksum a069b7ca1b46e5656a05a5e38a0f9ea5c3ab1e5301edc47d7fdd43817a8f5d641980c2e54b7731dcbcf16e12f0dff17df5a816d66f7bd2b613232788815bb8e0 +docfiles size=149 + RELOC/doc/fonts/cbfonts/README details="Readme" + RELOC/doc/fonts/cbfonts/cbgreek.pdf details="Package documentation" + RELOC/doc/fonts/cbfonts/cbgreek.tex + RELOC/doc/fonts/cbfonts/grmn1000table.pdf details="Sample font table" +runfiles size=20512 + RELOC/fonts/enc/dvips/cbfonts/CB.enc + RELOC/fonts/enc/dvips/cbfonts/gmtr.enc + RELOC/fonts/map/dvips/cbfonts/cbgreek-full.map + RELOC/fonts/source/public/cbfonts/cbaccent.mf + RELOC/fonts/source/public/cbfonts/cbbase.mf + RELOC/fonts/source/public/cbfonts/cbdigits.mf + RELOC/fonts/source/public/cbfonts/cbgreek.mf + RELOC/fonts/source/public/cbfonts/cblig.mf + RELOC/fonts/source/public/cbfonts/cbligit.mf + RELOC/fonts/source/public/cbfonts/cbligrm.mf + RELOC/fonts/source/public/cbfonts/cbligsc.mf + RELOC/fonts/source/public/cbfonts/cbligtt.mf + RELOC/fonts/source/public/cbfonts/cblower.mf + RELOC/fonts/source/public/cbfonts/cbmetre.mf + RELOC/fonts/source/public/cbfonts/cbpunct.mf + RELOC/fonts/source/public/cbfonts/cbspline.mf + RELOC/fonts/source/public/cbfonts/cbupper.mf + RELOC/fonts/source/public/cbfonts/glic.mf + RELOC/fonts/source/public/cbfonts/glic0700.mf + RELOC/fonts/source/public/cbfonts/glic0800.mf + RELOC/fonts/source/public/cbfonts/glic1000.mf + RELOC/fonts/source/public/cbfonts/glic1200.mf + RELOC/fonts/source/public/cbfonts/glic1382.mf + RELOC/fonts/source/public/cbfonts/glic1659.mf + RELOC/fonts/source/public/cbfonts/glic1991.mf + RELOC/fonts/source/public/cbfonts/glic2389.mf + RELOC/fonts/source/public/cbfonts/glic2866.mf + RELOC/fonts/source/public/cbfonts/glic3440.mf + RELOC/fonts/source/public/cbfonts/glic4128.mf + RELOC/fonts/source/public/cbfonts/glii.mf + RELOC/fonts/source/public/cbfonts/glii0700.mf + RELOC/fonts/source/public/cbfonts/glii0800.mf + RELOC/fonts/source/public/cbfonts/glii1000.mf + RELOC/fonts/source/public/cbfonts/glii1200.mf + RELOC/fonts/source/public/cbfonts/glii1382.mf + RELOC/fonts/source/public/cbfonts/glii1659.mf + RELOC/fonts/source/public/cbfonts/glii1991.mf + RELOC/fonts/source/public/cbfonts/glii2389.mf + RELOC/fonts/source/public/cbfonts/glii2866.mf + RELOC/fonts/source/public/cbfonts/glii3440.mf + RELOC/fonts/source/public/cbfonts/glii4128.mf + RELOC/fonts/source/public/cbfonts/glin.mf + RELOC/fonts/source/public/cbfonts/glin0700.mf + RELOC/fonts/source/public/cbfonts/glin0800.mf + RELOC/fonts/source/public/cbfonts/glin1000.mf + RELOC/fonts/source/public/cbfonts/glin1200.mf + RELOC/fonts/source/public/cbfonts/glin1382.mf + RELOC/fonts/source/public/cbfonts/glin1659.mf + RELOC/fonts/source/public/cbfonts/glin1991.mf + RELOC/fonts/source/public/cbfonts/glin2389.mf + RELOC/fonts/source/public/cbfonts/glin2866.mf + RELOC/fonts/source/public/cbfonts/glin3440.mf + RELOC/fonts/source/public/cbfonts/glin4128.mf + RELOC/fonts/source/public/cbfonts/glio.mf + RELOC/fonts/source/public/cbfonts/glio0700.mf + RELOC/fonts/source/public/cbfonts/glio0800.mf + RELOC/fonts/source/public/cbfonts/glio1000.mf + RELOC/fonts/source/public/cbfonts/glio1200.mf + RELOC/fonts/source/public/cbfonts/glio1382.mf + RELOC/fonts/source/public/cbfonts/glio1659.mf + RELOC/fonts/source/public/cbfonts/glio1991.mf + RELOC/fonts/source/public/cbfonts/glio2389.mf + RELOC/fonts/source/public/cbfonts/glio2866.mf + RELOC/fonts/source/public/cbfonts/glio3440.mf + RELOC/fonts/source/public/cbfonts/glio4128.mf + RELOC/fonts/source/public/cbfonts/gliu.mf + RELOC/fonts/source/public/cbfonts/gliu0700.mf + RELOC/fonts/source/public/cbfonts/gliu0800.mf + RELOC/fonts/source/public/cbfonts/gliu1000.mf + RELOC/fonts/source/public/cbfonts/gliu1200.mf + RELOC/fonts/source/public/cbfonts/gliu1382.mf + RELOC/fonts/source/public/cbfonts/gliu1659.mf + RELOC/fonts/source/public/cbfonts/gliu1991.mf + RELOC/fonts/source/public/cbfonts/gliu2389.mf + RELOC/fonts/source/public/cbfonts/gliu2866.mf + RELOC/fonts/source/public/cbfonts/gliu3440.mf + RELOC/fonts/source/public/cbfonts/gliu4128.mf + RELOC/fonts/source/public/cbfonts/gljc.mf + RELOC/fonts/source/public/cbfonts/gljc0700.mf + RELOC/fonts/source/public/cbfonts/gljc0800.mf + RELOC/fonts/source/public/cbfonts/gljc1000.mf + RELOC/fonts/source/public/cbfonts/gljc1200.mf + RELOC/fonts/source/public/cbfonts/gljc1382.mf + RELOC/fonts/source/public/cbfonts/gljc1659.mf + RELOC/fonts/source/public/cbfonts/gljc1991.mf + RELOC/fonts/source/public/cbfonts/gljc2389.mf + RELOC/fonts/source/public/cbfonts/gljc2866.mf + RELOC/fonts/source/public/cbfonts/gljc3440.mf + RELOC/fonts/source/public/cbfonts/gljc4128.mf + RELOC/fonts/source/public/cbfonts/gljn.mf + RELOC/fonts/source/public/cbfonts/gljn0700.mf + RELOC/fonts/source/public/cbfonts/gljn0800.mf + RELOC/fonts/source/public/cbfonts/gljn1000.mf + RELOC/fonts/source/public/cbfonts/gljn1200.mf + RELOC/fonts/source/public/cbfonts/gljn1382.mf + RELOC/fonts/source/public/cbfonts/gljn1659.mf + RELOC/fonts/source/public/cbfonts/gljn1991.mf + RELOC/fonts/source/public/cbfonts/gljn2389.mf + RELOC/fonts/source/public/cbfonts/gljn2866.mf + RELOC/fonts/source/public/cbfonts/gljn3440.mf + RELOC/fonts/source/public/cbfonts/gljn4128.mf + RELOC/fonts/source/public/cbfonts/gljo.mf + RELOC/fonts/source/public/cbfonts/gljo0700.mf + RELOC/fonts/source/public/cbfonts/gljo0800.mf + RELOC/fonts/source/public/cbfonts/gljo1000.mf + RELOC/fonts/source/public/cbfonts/gljo1200.mf + RELOC/fonts/source/public/cbfonts/gljo1382.mf + RELOC/fonts/source/public/cbfonts/gljo1659.mf + RELOC/fonts/source/public/cbfonts/gljo1991.mf + RELOC/fonts/source/public/cbfonts/gljo2389.mf + RELOC/fonts/source/public/cbfonts/gljo2866.mf + RELOC/fonts/source/public/cbfonts/gljo3440.mf + RELOC/fonts/source/public/cbfonts/gljo4128.mf + RELOC/fonts/source/public/cbfonts/glmc.mf + RELOC/fonts/source/public/cbfonts/glmc0700.mf + RELOC/fonts/source/public/cbfonts/glmc0800.mf + RELOC/fonts/source/public/cbfonts/glmc1000.mf + RELOC/fonts/source/public/cbfonts/glmc1200.mf + RELOC/fonts/source/public/cbfonts/glmc1382.mf + RELOC/fonts/source/public/cbfonts/glmc1659.mf + RELOC/fonts/source/public/cbfonts/glmc1991.mf + RELOC/fonts/source/public/cbfonts/glmc2389.mf + RELOC/fonts/source/public/cbfonts/glmc2866.mf + RELOC/fonts/source/public/cbfonts/glmc3440.mf + RELOC/fonts/source/public/cbfonts/glmc4128.mf + RELOC/fonts/source/public/cbfonts/glmi.mf + RELOC/fonts/source/public/cbfonts/glmi0700.mf + RELOC/fonts/source/public/cbfonts/glmi0800.mf + RELOC/fonts/source/public/cbfonts/glmi1000.mf + RELOC/fonts/source/public/cbfonts/glmi1200.mf + RELOC/fonts/source/public/cbfonts/glmi1382.mf + RELOC/fonts/source/public/cbfonts/glmi1659.mf + RELOC/fonts/source/public/cbfonts/glmi1991.mf + RELOC/fonts/source/public/cbfonts/glmi2389.mf + RELOC/fonts/source/public/cbfonts/glmi2866.mf + RELOC/fonts/source/public/cbfonts/glmi3440.mf + RELOC/fonts/source/public/cbfonts/glmi4128.mf + RELOC/fonts/source/public/cbfonts/glmn.mf + RELOC/fonts/source/public/cbfonts/glmn0700.mf + RELOC/fonts/source/public/cbfonts/glmn0800.mf + RELOC/fonts/source/public/cbfonts/glmn1000.mf + RELOC/fonts/source/public/cbfonts/glmn1200.mf + RELOC/fonts/source/public/cbfonts/glmn1382.mf + RELOC/fonts/source/public/cbfonts/glmn1659.mf + RELOC/fonts/source/public/cbfonts/glmn1991.mf + RELOC/fonts/source/public/cbfonts/glmn2389.mf + RELOC/fonts/source/public/cbfonts/glmn2866.mf + RELOC/fonts/source/public/cbfonts/glmn3440.mf + RELOC/fonts/source/public/cbfonts/glmn4128.mf + RELOC/fonts/source/public/cbfonts/glmo.mf + RELOC/fonts/source/public/cbfonts/glmo0700.mf + RELOC/fonts/source/public/cbfonts/glmo0800.mf + RELOC/fonts/source/public/cbfonts/glmo1000.mf + RELOC/fonts/source/public/cbfonts/glmo1200.mf + RELOC/fonts/source/public/cbfonts/glmo1382.mf + RELOC/fonts/source/public/cbfonts/glmo1659.mf + RELOC/fonts/source/public/cbfonts/glmo1991.mf + RELOC/fonts/source/public/cbfonts/glmo2389.mf + RELOC/fonts/source/public/cbfonts/glmo2866.mf + RELOC/fonts/source/public/cbfonts/glmo3440.mf + RELOC/fonts/source/public/cbfonts/glmo4128.mf + RELOC/fonts/source/public/cbfonts/glmu.mf + RELOC/fonts/source/public/cbfonts/glmu0700.mf + RELOC/fonts/source/public/cbfonts/glmu0800.mf + RELOC/fonts/source/public/cbfonts/glmu1000.mf + RELOC/fonts/source/public/cbfonts/glmu1200.mf + RELOC/fonts/source/public/cbfonts/glmu1382.mf + RELOC/fonts/source/public/cbfonts/glmu1659.mf + RELOC/fonts/source/public/cbfonts/glmu1991.mf + RELOC/fonts/source/public/cbfonts/glmu2389.mf + RELOC/fonts/source/public/cbfonts/glmu2866.mf + RELOC/fonts/source/public/cbfonts/glmu3440.mf + RELOC/fonts/source/public/cbfonts/glmu4128.mf + RELOC/fonts/source/public/cbfonts/gltc.mf + RELOC/fonts/source/public/cbfonts/gltc0700.mf + RELOC/fonts/source/public/cbfonts/gltc0800.mf + RELOC/fonts/source/public/cbfonts/gltc1000.mf + RELOC/fonts/source/public/cbfonts/gltc1200.mf + RELOC/fonts/source/public/cbfonts/gltc1382.mf + RELOC/fonts/source/public/cbfonts/gltc1659.mf + RELOC/fonts/source/public/cbfonts/gltc1991.mf + RELOC/fonts/source/public/cbfonts/gltc2389.mf + RELOC/fonts/source/public/cbfonts/gltc2866.mf + RELOC/fonts/source/public/cbfonts/gltc3440.mf + RELOC/fonts/source/public/cbfonts/gltc4128.mf + RELOC/fonts/source/public/cbfonts/gltn.mf + RELOC/fonts/source/public/cbfonts/gltn0700.mf + RELOC/fonts/source/public/cbfonts/gltn0800.mf + RELOC/fonts/source/public/cbfonts/gltn1000.mf + RELOC/fonts/source/public/cbfonts/gltn1200.mf + RELOC/fonts/source/public/cbfonts/gltn1382.mf + RELOC/fonts/source/public/cbfonts/gltn1659.mf + RELOC/fonts/source/public/cbfonts/gltn1991.mf + RELOC/fonts/source/public/cbfonts/gltn2389.mf + RELOC/fonts/source/public/cbfonts/gltn2866.mf + RELOC/fonts/source/public/cbfonts/gltn3440.mf + RELOC/fonts/source/public/cbfonts/gltn4128.mf + RELOC/fonts/source/public/cbfonts/glto.mf + RELOC/fonts/source/public/cbfonts/glto0700.mf + RELOC/fonts/source/public/cbfonts/glto0800.mf + RELOC/fonts/source/public/cbfonts/glto1000.mf + RELOC/fonts/source/public/cbfonts/glto1200.mf + RELOC/fonts/source/public/cbfonts/glto1382.mf + RELOC/fonts/source/public/cbfonts/glto1659.mf + RELOC/fonts/source/public/cbfonts/glto1991.mf + RELOC/fonts/source/public/cbfonts/glto2389.mf + RELOC/fonts/source/public/cbfonts/glto2866.mf + RELOC/fonts/source/public/cbfonts/glto3440.mf + RELOC/fonts/source/public/cbfonts/glto4128.mf + RELOC/fonts/source/public/cbfonts/glwc.mf + RELOC/fonts/source/public/cbfonts/glwc0700.mf + RELOC/fonts/source/public/cbfonts/glwc0800.mf + RELOC/fonts/source/public/cbfonts/glwc1000.mf + RELOC/fonts/source/public/cbfonts/glwc1200.mf + RELOC/fonts/source/public/cbfonts/glwc1382.mf + RELOC/fonts/source/public/cbfonts/glwc1659.mf + RELOC/fonts/source/public/cbfonts/glwc1991.mf + RELOC/fonts/source/public/cbfonts/glwc2389.mf + RELOC/fonts/source/public/cbfonts/glwc2866.mf + RELOC/fonts/source/public/cbfonts/glwc3440.mf + RELOC/fonts/source/public/cbfonts/glwc4128.mf + RELOC/fonts/source/public/cbfonts/glwi.mf + RELOC/fonts/source/public/cbfonts/glwi0700.mf + RELOC/fonts/source/public/cbfonts/glwi0800.mf + RELOC/fonts/source/public/cbfonts/glwi1000.mf + RELOC/fonts/source/public/cbfonts/glwi1200.mf + RELOC/fonts/source/public/cbfonts/glwi1382.mf + RELOC/fonts/source/public/cbfonts/glwi1659.mf + RELOC/fonts/source/public/cbfonts/glwi1991.mf + RELOC/fonts/source/public/cbfonts/glwi2389.mf + RELOC/fonts/source/public/cbfonts/glwi2866.mf + RELOC/fonts/source/public/cbfonts/glwi3440.mf + RELOC/fonts/source/public/cbfonts/glwi4128.mf + RELOC/fonts/source/public/cbfonts/glwn.mf + RELOC/fonts/source/public/cbfonts/glwn0700.mf + RELOC/fonts/source/public/cbfonts/glwn0800.mf + RELOC/fonts/source/public/cbfonts/glwn1000.mf + RELOC/fonts/source/public/cbfonts/glwn1200.mf + RELOC/fonts/source/public/cbfonts/glwn1382.mf + RELOC/fonts/source/public/cbfonts/glwn1659.mf + RELOC/fonts/source/public/cbfonts/glwn1991.mf + RELOC/fonts/source/public/cbfonts/glwn2389.mf + RELOC/fonts/source/public/cbfonts/glwn2866.mf + RELOC/fonts/source/public/cbfonts/glwn3440.mf + RELOC/fonts/source/public/cbfonts/glwn4128.mf + RELOC/fonts/source/public/cbfonts/glwo.mf + RELOC/fonts/source/public/cbfonts/glwo0700.mf + RELOC/fonts/source/public/cbfonts/glwo0800.mf + RELOC/fonts/source/public/cbfonts/glwo1000.mf + RELOC/fonts/source/public/cbfonts/glwo1200.mf + RELOC/fonts/source/public/cbfonts/glwo1382.mf + RELOC/fonts/source/public/cbfonts/glwo1659.mf + RELOC/fonts/source/public/cbfonts/glwo1991.mf + RELOC/fonts/source/public/cbfonts/glwo2389.mf + RELOC/fonts/source/public/cbfonts/glwo2866.mf + RELOC/fonts/source/public/cbfonts/glwo3440.mf + RELOC/fonts/source/public/cbfonts/glwo4128.mf + RELOC/fonts/source/public/cbfonts/glwu.mf + RELOC/fonts/source/public/cbfonts/glwu0700.mf + RELOC/fonts/source/public/cbfonts/glwu0800.mf + RELOC/fonts/source/public/cbfonts/glwu1000.mf + RELOC/fonts/source/public/cbfonts/glwu1200.mf + RELOC/fonts/source/public/cbfonts/glwu1382.mf + RELOC/fonts/source/public/cbfonts/glwu1659.mf + RELOC/fonts/source/public/cbfonts/glwu1991.mf + RELOC/fonts/source/public/cbfonts/glwu2389.mf + RELOC/fonts/source/public/cbfonts/glwu2866.mf + RELOC/fonts/source/public/cbfonts/glwu3440.mf + RELOC/fonts/source/public/cbfonts/glwu4128.mf + RELOC/fonts/source/public/cbfonts/glxc.mf + RELOC/fonts/source/public/cbfonts/glxc0700.mf + RELOC/fonts/source/public/cbfonts/glxc0800.mf + RELOC/fonts/source/public/cbfonts/glxc1000.mf + RELOC/fonts/source/public/cbfonts/glxc1200.mf + RELOC/fonts/source/public/cbfonts/glxc1382.mf + RELOC/fonts/source/public/cbfonts/glxc1659.mf + RELOC/fonts/source/public/cbfonts/glxc1991.mf + RELOC/fonts/source/public/cbfonts/glxc2389.mf + RELOC/fonts/source/public/cbfonts/glxc2866.mf + RELOC/fonts/source/public/cbfonts/glxc3440.mf + RELOC/fonts/source/public/cbfonts/glxc4128.mf + RELOC/fonts/source/public/cbfonts/glxi.mf + RELOC/fonts/source/public/cbfonts/glxi0700.mf + RELOC/fonts/source/public/cbfonts/glxi0800.mf + RELOC/fonts/source/public/cbfonts/glxi1000.mf + RELOC/fonts/source/public/cbfonts/glxi1200.mf + RELOC/fonts/source/public/cbfonts/glxi1382.mf + RELOC/fonts/source/public/cbfonts/glxi1659.mf + RELOC/fonts/source/public/cbfonts/glxi1991.mf + RELOC/fonts/source/public/cbfonts/glxi2389.mf + RELOC/fonts/source/public/cbfonts/glxi2866.mf + RELOC/fonts/source/public/cbfonts/glxi3440.mf + RELOC/fonts/source/public/cbfonts/glxi4128.mf + RELOC/fonts/source/public/cbfonts/glxn.mf + RELOC/fonts/source/public/cbfonts/glxn0700.mf + RELOC/fonts/source/public/cbfonts/glxn0800.mf + RELOC/fonts/source/public/cbfonts/glxn1000.mf + RELOC/fonts/source/public/cbfonts/glxn1200.mf + RELOC/fonts/source/public/cbfonts/glxn1382.mf + RELOC/fonts/source/public/cbfonts/glxn1659.mf + RELOC/fonts/source/public/cbfonts/glxn1991.mf + RELOC/fonts/source/public/cbfonts/glxn2389.mf + RELOC/fonts/source/public/cbfonts/glxn2866.mf + RELOC/fonts/source/public/cbfonts/glxn3440.mf + RELOC/fonts/source/public/cbfonts/glxn4128.mf + RELOC/fonts/source/public/cbfonts/glxo.mf + RELOC/fonts/source/public/cbfonts/glxo0700.mf + RELOC/fonts/source/public/cbfonts/glxo0800.mf + RELOC/fonts/source/public/cbfonts/glxo1000.mf + RELOC/fonts/source/public/cbfonts/glxo1200.mf + RELOC/fonts/source/public/cbfonts/glxo1382.mf + RELOC/fonts/source/public/cbfonts/glxo1659.mf + RELOC/fonts/source/public/cbfonts/glxo1991.mf + RELOC/fonts/source/public/cbfonts/glxo2389.mf + RELOC/fonts/source/public/cbfonts/glxo2866.mf + RELOC/fonts/source/public/cbfonts/glxo3440.mf + RELOC/fonts/source/public/cbfonts/glxo4128.mf + RELOC/fonts/source/public/cbfonts/glxu.mf + RELOC/fonts/source/public/cbfonts/glxu0700.mf + RELOC/fonts/source/public/cbfonts/glxu0800.mf + RELOC/fonts/source/public/cbfonts/glxu1000.mf + RELOC/fonts/source/public/cbfonts/glxu1200.mf + RELOC/fonts/source/public/cbfonts/glxu1382.mf + RELOC/fonts/source/public/cbfonts/glxu1659.mf + RELOC/fonts/source/public/cbfonts/glxu1991.mf + RELOC/fonts/source/public/cbfonts/glxu2389.mf + RELOC/fonts/source/public/cbfonts/glxu2866.mf + RELOC/fonts/source/public/cbfonts/glxu3440.mf + RELOC/fonts/source/public/cbfonts/glxu4128.mf + RELOC/fonts/source/public/cbfonts/gmmn.mf + RELOC/fonts/source/public/cbfonts/gmmn0500.mf + RELOC/fonts/source/public/cbfonts/gmmn0600.mf + RELOC/fonts/source/public/cbfonts/gmmn0700.mf + RELOC/fonts/source/public/cbfonts/gmmn0800.mf + RELOC/fonts/source/public/cbfonts/gmmn0900.mf + RELOC/fonts/source/public/cbfonts/gmmn1000.mf + RELOC/fonts/source/public/cbfonts/gmmn1095.mf + RELOC/fonts/source/public/cbfonts/gmmn1200.mf + RELOC/fonts/source/public/cbfonts/gmmn1440.mf + RELOC/fonts/source/public/cbfonts/gmmn1728.mf + RELOC/fonts/source/public/cbfonts/gmmn2074.mf + RELOC/fonts/source/public/cbfonts/gmmn2488.mf + RELOC/fonts/source/public/cbfonts/gmmn2986.mf + RELOC/fonts/source/public/cbfonts/gmmn3583.mf + RELOC/fonts/source/public/cbfonts/gmmo.mf + RELOC/fonts/source/public/cbfonts/gmmo0500.mf + RELOC/fonts/source/public/cbfonts/gmmo0600.mf + RELOC/fonts/source/public/cbfonts/gmmo0700.mf + RELOC/fonts/source/public/cbfonts/gmmo0800.mf + RELOC/fonts/source/public/cbfonts/gmmo0900.mf + RELOC/fonts/source/public/cbfonts/gmmo1000.mf + RELOC/fonts/source/public/cbfonts/gmmo1095.mf + RELOC/fonts/source/public/cbfonts/gmmo1200.mf + RELOC/fonts/source/public/cbfonts/gmmo1440.mf + RELOC/fonts/source/public/cbfonts/gmmo1728.mf + RELOC/fonts/source/public/cbfonts/gmmo2074.mf + RELOC/fonts/source/public/cbfonts/gmmo2488.mf + RELOC/fonts/source/public/cbfonts/gmmo2986.mf + RELOC/fonts/source/public/cbfonts/gmmo3583.mf + RELOC/fonts/source/public/cbfonts/gmtr.mf + RELOC/fonts/source/public/cbfonts/gmtr0500.mf + RELOC/fonts/source/public/cbfonts/gmtr0600.mf + RELOC/fonts/source/public/cbfonts/gmtr0700.mf + RELOC/fonts/source/public/cbfonts/gmtr0800.mf + RELOC/fonts/source/public/cbfonts/gmtr0900.mf + RELOC/fonts/source/public/cbfonts/gmtr1000.mf + RELOC/fonts/source/public/cbfonts/gmtr1095.mf + RELOC/fonts/source/public/cbfonts/gmtr1200.mf + RELOC/fonts/source/public/cbfonts/gmtr1440.mf + RELOC/fonts/source/public/cbfonts/gmtr1728.mf + RELOC/fonts/source/public/cbfonts/gmtr2074.mf + RELOC/fonts/source/public/cbfonts/gmtr2488.mf + RELOC/fonts/source/public/cbfonts/gmtr2986.mf + RELOC/fonts/source/public/cbfonts/gmtr3583.mf + RELOC/fonts/source/public/cbfonts/gmxn.mf + RELOC/fonts/source/public/cbfonts/gmxn0500.mf + RELOC/fonts/source/public/cbfonts/gmxn0600.mf + RELOC/fonts/source/public/cbfonts/gmxn0700.mf + RELOC/fonts/source/public/cbfonts/gmxn0800.mf + RELOC/fonts/source/public/cbfonts/gmxn0900.mf + RELOC/fonts/source/public/cbfonts/gmxn1000.mf + RELOC/fonts/source/public/cbfonts/gmxn1095.mf + RELOC/fonts/source/public/cbfonts/gmxn1200.mf + RELOC/fonts/source/public/cbfonts/gmxn1440.mf + RELOC/fonts/source/public/cbfonts/gmxn1728.mf + RELOC/fonts/source/public/cbfonts/gmxn2074.mf + RELOC/fonts/source/public/cbfonts/gmxn2488.mf + RELOC/fonts/source/public/cbfonts/gmxn2986.mf + RELOC/fonts/source/public/cbfonts/gmxn3583.mf + RELOC/fonts/source/public/cbfonts/gmxo.mf + RELOC/fonts/source/public/cbfonts/gmxo0500.mf + RELOC/fonts/source/public/cbfonts/gmxo0600.mf + RELOC/fonts/source/public/cbfonts/gmxo0700.mf + RELOC/fonts/source/public/cbfonts/gmxo0800.mf + RELOC/fonts/source/public/cbfonts/gmxo0900.mf + RELOC/fonts/source/public/cbfonts/gmxo1000.mf + RELOC/fonts/source/public/cbfonts/gmxo1095.mf + RELOC/fonts/source/public/cbfonts/gmxo1200.mf + RELOC/fonts/source/public/cbfonts/gmxo1440.mf + RELOC/fonts/source/public/cbfonts/gmxo1728.mf + RELOC/fonts/source/public/cbfonts/gmxo2074.mf + RELOC/fonts/source/public/cbfonts/gmxo2488.mf + RELOC/fonts/source/public/cbfonts/gmxo2986.mf + RELOC/fonts/source/public/cbfonts/gmxo3583.mf + RELOC/fonts/source/public/cbfonts/gomc.mf + RELOC/fonts/source/public/cbfonts/gomc0500.mf + RELOC/fonts/source/public/cbfonts/gomc0600.mf + RELOC/fonts/source/public/cbfonts/gomc0700.mf + RELOC/fonts/source/public/cbfonts/gomc0800.mf + RELOC/fonts/source/public/cbfonts/gomc0900.mf + RELOC/fonts/source/public/cbfonts/gomc1000.mf + RELOC/fonts/source/public/cbfonts/gomc1095.mf + RELOC/fonts/source/public/cbfonts/gomc1200.mf + RELOC/fonts/source/public/cbfonts/gomc1440.mf + RELOC/fonts/source/public/cbfonts/gomc1728.mf + RELOC/fonts/source/public/cbfonts/gomc2074.mf + RELOC/fonts/source/public/cbfonts/gomc2488.mf + RELOC/fonts/source/public/cbfonts/gomc2986.mf + RELOC/fonts/source/public/cbfonts/gomc3583.mf + RELOC/fonts/source/public/cbfonts/gomi.mf + RELOC/fonts/source/public/cbfonts/gomi0500.mf + RELOC/fonts/source/public/cbfonts/gomi0600.mf + RELOC/fonts/source/public/cbfonts/gomi0700.mf + RELOC/fonts/source/public/cbfonts/gomi0800.mf + RELOC/fonts/source/public/cbfonts/gomi0900.mf + RELOC/fonts/source/public/cbfonts/gomi1000.mf + RELOC/fonts/source/public/cbfonts/gomi1095.mf + RELOC/fonts/source/public/cbfonts/gomi1200.mf + RELOC/fonts/source/public/cbfonts/gomi1440.mf + RELOC/fonts/source/public/cbfonts/gomi1728.mf + RELOC/fonts/source/public/cbfonts/gomi2074.mf + RELOC/fonts/source/public/cbfonts/gomi2488.mf + RELOC/fonts/source/public/cbfonts/gomi2986.mf + RELOC/fonts/source/public/cbfonts/gomi3583.mf + RELOC/fonts/source/public/cbfonts/gomn.mf + RELOC/fonts/source/public/cbfonts/gomn0500.mf + RELOC/fonts/source/public/cbfonts/gomn0600.mf + RELOC/fonts/source/public/cbfonts/gomn0700.mf + RELOC/fonts/source/public/cbfonts/gomn0800.mf + RELOC/fonts/source/public/cbfonts/gomn0900.mf + RELOC/fonts/source/public/cbfonts/gomn1000.mf + RELOC/fonts/source/public/cbfonts/gomn1095.mf + RELOC/fonts/source/public/cbfonts/gomn1200.mf + RELOC/fonts/source/public/cbfonts/gomn1440.mf + RELOC/fonts/source/public/cbfonts/gomn1728.mf + RELOC/fonts/source/public/cbfonts/gomn2074.mf + RELOC/fonts/source/public/cbfonts/gomn2488.mf + RELOC/fonts/source/public/cbfonts/gomn2986.mf + RELOC/fonts/source/public/cbfonts/gomn3583.mf + RELOC/fonts/source/public/cbfonts/gomo.mf + RELOC/fonts/source/public/cbfonts/gomo0500.mf + RELOC/fonts/source/public/cbfonts/gomo0600.mf + RELOC/fonts/source/public/cbfonts/gomo0700.mf + RELOC/fonts/source/public/cbfonts/gomo0800.mf + RELOC/fonts/source/public/cbfonts/gomo0900.mf + RELOC/fonts/source/public/cbfonts/gomo1000.mf + RELOC/fonts/source/public/cbfonts/gomo1095.mf + RELOC/fonts/source/public/cbfonts/gomo1200.mf + RELOC/fonts/source/public/cbfonts/gomo1440.mf + RELOC/fonts/source/public/cbfonts/gomo1728.mf + RELOC/fonts/source/public/cbfonts/gomo2074.mf + RELOC/fonts/source/public/cbfonts/gomo2488.mf + RELOC/fonts/source/public/cbfonts/gomo2986.mf + RELOC/fonts/source/public/cbfonts/gomo3583.mf + RELOC/fonts/source/public/cbfonts/gomu.mf + RELOC/fonts/source/public/cbfonts/gomu0500.mf + RELOC/fonts/source/public/cbfonts/gomu0600.mf + RELOC/fonts/source/public/cbfonts/gomu0700.mf + RELOC/fonts/source/public/cbfonts/gomu0800.mf + RELOC/fonts/source/public/cbfonts/gomu0900.mf + RELOC/fonts/source/public/cbfonts/gomu1000.mf + RELOC/fonts/source/public/cbfonts/gomu1095.mf + RELOC/fonts/source/public/cbfonts/gomu1200.mf + RELOC/fonts/source/public/cbfonts/gomu1440.mf + RELOC/fonts/source/public/cbfonts/gomu1728.mf + RELOC/fonts/source/public/cbfonts/gomu2074.mf + RELOC/fonts/source/public/cbfonts/gomu2488.mf + RELOC/fonts/source/public/cbfonts/gomu2986.mf + RELOC/fonts/source/public/cbfonts/gomu3583.mf + RELOC/fonts/source/public/cbfonts/goxc.mf + RELOC/fonts/source/public/cbfonts/goxc0500.mf + RELOC/fonts/source/public/cbfonts/goxc0600.mf + RELOC/fonts/source/public/cbfonts/goxc0700.mf + RELOC/fonts/source/public/cbfonts/goxc0800.mf + RELOC/fonts/source/public/cbfonts/goxc0900.mf + RELOC/fonts/source/public/cbfonts/goxc1000.mf + RELOC/fonts/source/public/cbfonts/goxc1095.mf + RELOC/fonts/source/public/cbfonts/goxc1200.mf + RELOC/fonts/source/public/cbfonts/goxc1440.mf + RELOC/fonts/source/public/cbfonts/goxc1728.mf + RELOC/fonts/source/public/cbfonts/goxc2074.mf + RELOC/fonts/source/public/cbfonts/goxc2488.mf + RELOC/fonts/source/public/cbfonts/goxc2986.mf + RELOC/fonts/source/public/cbfonts/goxc3583.mf + RELOC/fonts/source/public/cbfonts/goxi.mf + RELOC/fonts/source/public/cbfonts/goxi0500.mf + RELOC/fonts/source/public/cbfonts/goxi0600.mf + RELOC/fonts/source/public/cbfonts/goxi0700.mf + RELOC/fonts/source/public/cbfonts/goxi0800.mf + RELOC/fonts/source/public/cbfonts/goxi0900.mf + RELOC/fonts/source/public/cbfonts/goxi1000.mf + RELOC/fonts/source/public/cbfonts/goxi1095.mf + RELOC/fonts/source/public/cbfonts/goxi1200.mf + RELOC/fonts/source/public/cbfonts/goxi1440.mf + RELOC/fonts/source/public/cbfonts/goxi1728.mf + RELOC/fonts/source/public/cbfonts/goxi2074.mf + RELOC/fonts/source/public/cbfonts/goxi2488.mf + RELOC/fonts/source/public/cbfonts/goxi2986.mf + RELOC/fonts/source/public/cbfonts/goxi3583.mf + RELOC/fonts/source/public/cbfonts/goxn.mf + RELOC/fonts/source/public/cbfonts/goxn0500.mf + RELOC/fonts/source/public/cbfonts/goxn0600.mf + RELOC/fonts/source/public/cbfonts/goxn0700.mf + RELOC/fonts/source/public/cbfonts/goxn0800.mf + RELOC/fonts/source/public/cbfonts/goxn0900.mf + RELOC/fonts/source/public/cbfonts/goxn1000.mf + RELOC/fonts/source/public/cbfonts/goxn1095.mf + RELOC/fonts/source/public/cbfonts/goxn1200.mf + RELOC/fonts/source/public/cbfonts/goxn1440.mf + RELOC/fonts/source/public/cbfonts/goxn1728.mf + RELOC/fonts/source/public/cbfonts/goxn2074.mf + RELOC/fonts/source/public/cbfonts/goxn2488.mf + RELOC/fonts/source/public/cbfonts/goxn2986.mf + RELOC/fonts/source/public/cbfonts/goxn3583.mf + RELOC/fonts/source/public/cbfonts/goxo.mf + RELOC/fonts/source/public/cbfonts/goxo0500.mf + RELOC/fonts/source/public/cbfonts/goxo0600.mf + RELOC/fonts/source/public/cbfonts/goxo0700.mf + RELOC/fonts/source/public/cbfonts/goxo0800.mf + RELOC/fonts/source/public/cbfonts/goxo0900.mf + RELOC/fonts/source/public/cbfonts/goxo1000.mf + RELOC/fonts/source/public/cbfonts/goxo1095.mf + RELOC/fonts/source/public/cbfonts/goxo1200.mf + RELOC/fonts/source/public/cbfonts/goxo1440.mf + RELOC/fonts/source/public/cbfonts/goxo1728.mf + RELOC/fonts/source/public/cbfonts/goxo2074.mf + RELOC/fonts/source/public/cbfonts/goxo2488.mf + RELOC/fonts/source/public/cbfonts/goxo2986.mf + RELOC/fonts/source/public/cbfonts/goxo3583.mf + RELOC/fonts/source/public/cbfonts/goxu.mf + RELOC/fonts/source/public/cbfonts/goxu0500.mf + RELOC/fonts/source/public/cbfonts/goxu0600.mf + RELOC/fonts/source/public/cbfonts/goxu0700.mf + RELOC/fonts/source/public/cbfonts/goxu0800.mf + RELOC/fonts/source/public/cbfonts/goxu0900.mf + RELOC/fonts/source/public/cbfonts/goxu1000.mf + RELOC/fonts/source/public/cbfonts/goxu1095.mf + RELOC/fonts/source/public/cbfonts/goxu1200.mf + RELOC/fonts/source/public/cbfonts/goxu1440.mf + RELOC/fonts/source/public/cbfonts/goxu1728.mf + RELOC/fonts/source/public/cbfonts/goxu2074.mf + RELOC/fonts/source/public/cbfonts/goxu2488.mf + RELOC/fonts/source/public/cbfonts/goxu2986.mf + RELOC/fonts/source/public/cbfonts/goxu3583.mf + RELOC/fonts/source/public/cbfonts/grbl.mf + RELOC/fonts/source/public/cbfonts/grbl0500.mf + RELOC/fonts/source/public/cbfonts/grbl0600.mf + RELOC/fonts/source/public/cbfonts/grbl0700.mf + RELOC/fonts/source/public/cbfonts/grbl0800.mf + RELOC/fonts/source/public/cbfonts/grbl0900.mf + RELOC/fonts/source/public/cbfonts/grbl1000.mf + RELOC/fonts/source/public/cbfonts/grbl1095.mf + RELOC/fonts/source/public/cbfonts/grbl1200.mf + RELOC/fonts/source/public/cbfonts/grbl1440.mf + RELOC/fonts/source/public/cbfonts/grbl1728.mf + RELOC/fonts/source/public/cbfonts/grbl2074.mf + RELOC/fonts/source/public/cbfonts/grbl2488.mf + RELOC/fonts/source/public/cbfonts/grbl2986.mf + RELOC/fonts/source/public/cbfonts/grbl3583.mf + RELOC/fonts/source/public/cbfonts/grmc.mf + RELOC/fonts/source/public/cbfonts/grmc0500.mf + RELOC/fonts/source/public/cbfonts/grmc0600.mf + RELOC/fonts/source/public/cbfonts/grmc0700.mf + RELOC/fonts/source/public/cbfonts/grmc0800.mf + RELOC/fonts/source/public/cbfonts/grmc0900.mf + RELOC/fonts/source/public/cbfonts/grmc1000.mf + RELOC/fonts/source/public/cbfonts/grmc1095.mf + RELOC/fonts/source/public/cbfonts/grmc1200.mf + RELOC/fonts/source/public/cbfonts/grmc1440.mf + RELOC/fonts/source/public/cbfonts/grmc1728.mf + RELOC/fonts/source/public/cbfonts/grmc2074.mf + RELOC/fonts/source/public/cbfonts/grmc2488.mf + RELOC/fonts/source/public/cbfonts/grmc2986.mf + RELOC/fonts/source/public/cbfonts/grmc3583.mf + RELOC/fonts/source/public/cbfonts/grmi.mf + RELOC/fonts/source/public/cbfonts/grmi0500.mf + RELOC/fonts/source/public/cbfonts/grmi0600.mf + RELOC/fonts/source/public/cbfonts/grmi0700.mf + RELOC/fonts/source/public/cbfonts/grmi0800.mf + RELOC/fonts/source/public/cbfonts/grmi0900.mf + RELOC/fonts/source/public/cbfonts/grmi1000.mf + RELOC/fonts/source/public/cbfonts/grmi1095.mf + RELOC/fonts/source/public/cbfonts/grmi1200.mf + RELOC/fonts/source/public/cbfonts/grmi1440.mf + RELOC/fonts/source/public/cbfonts/grmi1728.mf + RELOC/fonts/source/public/cbfonts/grmi2074.mf + RELOC/fonts/source/public/cbfonts/grmi2488.mf + RELOC/fonts/source/public/cbfonts/grmi2986.mf + RELOC/fonts/source/public/cbfonts/grmi3583.mf + RELOC/fonts/source/public/cbfonts/grml.mf + RELOC/fonts/source/public/cbfonts/grml0500.mf + RELOC/fonts/source/public/cbfonts/grml0600.mf + RELOC/fonts/source/public/cbfonts/grml0700.mf + RELOC/fonts/source/public/cbfonts/grml0800.mf + RELOC/fonts/source/public/cbfonts/grml0900.mf + RELOC/fonts/source/public/cbfonts/grml1000.mf + RELOC/fonts/source/public/cbfonts/grml1095.mf + RELOC/fonts/source/public/cbfonts/grml1200.mf + RELOC/fonts/source/public/cbfonts/grml1440.mf + RELOC/fonts/source/public/cbfonts/grml1728.mf + RELOC/fonts/source/public/cbfonts/grml2074.mf + RELOC/fonts/source/public/cbfonts/grml2488.mf + RELOC/fonts/source/public/cbfonts/grml2986.mf + RELOC/fonts/source/public/cbfonts/grml3583.mf + RELOC/fonts/source/public/cbfonts/grmn.mf + RELOC/fonts/source/public/cbfonts/grmn0500.mf + RELOC/fonts/source/public/cbfonts/grmn0600.mf + RELOC/fonts/source/public/cbfonts/grmn0700.mf + RELOC/fonts/source/public/cbfonts/grmn0800.mf + RELOC/fonts/source/public/cbfonts/grmn0900.mf + RELOC/fonts/source/public/cbfonts/grmn1000.mf + RELOC/fonts/source/public/cbfonts/grmn1095.mf + RELOC/fonts/source/public/cbfonts/grmn1200.mf + RELOC/fonts/source/public/cbfonts/grmn1440.mf + RELOC/fonts/source/public/cbfonts/grmn1728.mf + RELOC/fonts/source/public/cbfonts/grmn2074.mf + RELOC/fonts/source/public/cbfonts/grmn2488.mf + RELOC/fonts/source/public/cbfonts/grmn2986.mf + RELOC/fonts/source/public/cbfonts/grmn3583.mf + RELOC/fonts/source/public/cbfonts/grmo.mf + RELOC/fonts/source/public/cbfonts/grmo0500.mf + RELOC/fonts/source/public/cbfonts/grmo0600.mf + RELOC/fonts/source/public/cbfonts/grmo0700.mf + RELOC/fonts/source/public/cbfonts/grmo0800.mf + RELOC/fonts/source/public/cbfonts/grmo0900.mf + RELOC/fonts/source/public/cbfonts/grmo1000.mf + RELOC/fonts/source/public/cbfonts/grmo1095.mf + RELOC/fonts/source/public/cbfonts/grmo1200.mf + RELOC/fonts/source/public/cbfonts/grmo1440.mf + RELOC/fonts/source/public/cbfonts/grmo1728.mf + RELOC/fonts/source/public/cbfonts/grmo2074.mf + RELOC/fonts/source/public/cbfonts/grmo2488.mf + RELOC/fonts/source/public/cbfonts/grmo2986.mf + RELOC/fonts/source/public/cbfonts/grmo3583.mf + RELOC/fonts/source/public/cbfonts/grmu.mf + RELOC/fonts/source/public/cbfonts/grmu0500.mf + RELOC/fonts/source/public/cbfonts/grmu0600.mf + RELOC/fonts/source/public/cbfonts/grmu0700.mf + RELOC/fonts/source/public/cbfonts/grmu0800.mf + RELOC/fonts/source/public/cbfonts/grmu0900.mf + RELOC/fonts/source/public/cbfonts/grmu1000.mf + RELOC/fonts/source/public/cbfonts/grmu1095.mf + RELOC/fonts/source/public/cbfonts/grmu1200.mf + RELOC/fonts/source/public/cbfonts/grmu1440.mf + RELOC/fonts/source/public/cbfonts/grmu1728.mf + RELOC/fonts/source/public/cbfonts/grmu2074.mf + RELOC/fonts/source/public/cbfonts/grmu2488.mf + RELOC/fonts/source/public/cbfonts/grmu2986.mf + RELOC/fonts/source/public/cbfonts/grmu3583.mf + RELOC/fonts/source/public/cbfonts/grxc.mf + RELOC/fonts/source/public/cbfonts/grxc0500.mf + RELOC/fonts/source/public/cbfonts/grxc0600.mf + RELOC/fonts/source/public/cbfonts/grxc0700.mf + RELOC/fonts/source/public/cbfonts/grxc0800.mf + RELOC/fonts/source/public/cbfonts/grxc0900.mf + RELOC/fonts/source/public/cbfonts/grxc1000.mf + RELOC/fonts/source/public/cbfonts/grxc1095.mf + RELOC/fonts/source/public/cbfonts/grxc1200.mf + RELOC/fonts/source/public/cbfonts/grxc1440.mf + RELOC/fonts/source/public/cbfonts/grxc1728.mf + RELOC/fonts/source/public/cbfonts/grxc2074.mf + RELOC/fonts/source/public/cbfonts/grxc2488.mf + RELOC/fonts/source/public/cbfonts/grxc2986.mf + RELOC/fonts/source/public/cbfonts/grxc3583.mf + RELOC/fonts/source/public/cbfonts/grxi.mf + RELOC/fonts/source/public/cbfonts/grxi0500.mf + RELOC/fonts/source/public/cbfonts/grxi0600.mf + RELOC/fonts/source/public/cbfonts/grxi0700.mf + RELOC/fonts/source/public/cbfonts/grxi0800.mf + RELOC/fonts/source/public/cbfonts/grxi0900.mf + RELOC/fonts/source/public/cbfonts/grxi1000.mf + RELOC/fonts/source/public/cbfonts/grxi1095.mf + RELOC/fonts/source/public/cbfonts/grxi1200.mf + RELOC/fonts/source/public/cbfonts/grxi1440.mf + RELOC/fonts/source/public/cbfonts/grxi1728.mf + RELOC/fonts/source/public/cbfonts/grxi2074.mf + RELOC/fonts/source/public/cbfonts/grxi2488.mf + RELOC/fonts/source/public/cbfonts/grxi2986.mf + RELOC/fonts/source/public/cbfonts/grxi3583.mf + RELOC/fonts/source/public/cbfonts/grxl.mf + RELOC/fonts/source/public/cbfonts/grxl0500.mf + RELOC/fonts/source/public/cbfonts/grxl0600.mf + RELOC/fonts/source/public/cbfonts/grxl0700.mf + RELOC/fonts/source/public/cbfonts/grxl0800.mf + RELOC/fonts/source/public/cbfonts/grxl0900.mf + RELOC/fonts/source/public/cbfonts/grxl1000.mf + RELOC/fonts/source/public/cbfonts/grxl1095.mf + RELOC/fonts/source/public/cbfonts/grxl1200.mf + RELOC/fonts/source/public/cbfonts/grxl1440.mf + RELOC/fonts/source/public/cbfonts/grxl1728.mf + RELOC/fonts/source/public/cbfonts/grxl2074.mf + RELOC/fonts/source/public/cbfonts/grxl2488.mf + RELOC/fonts/source/public/cbfonts/grxl2986.mf + RELOC/fonts/source/public/cbfonts/grxl3583.mf + RELOC/fonts/source/public/cbfonts/grxn.mf + RELOC/fonts/source/public/cbfonts/grxn0500.mf + RELOC/fonts/source/public/cbfonts/grxn0600.mf + RELOC/fonts/source/public/cbfonts/grxn0700.mf + RELOC/fonts/source/public/cbfonts/grxn0800.mf + RELOC/fonts/source/public/cbfonts/grxn0900.mf + RELOC/fonts/source/public/cbfonts/grxn1000.mf + RELOC/fonts/source/public/cbfonts/grxn1095.mf + RELOC/fonts/source/public/cbfonts/grxn1200.mf + RELOC/fonts/source/public/cbfonts/grxn1440.mf + RELOC/fonts/source/public/cbfonts/grxn1728.mf + RELOC/fonts/source/public/cbfonts/grxn2074.mf + RELOC/fonts/source/public/cbfonts/grxn2488.mf + RELOC/fonts/source/public/cbfonts/grxn2986.mf + RELOC/fonts/source/public/cbfonts/grxn3583.mf + RELOC/fonts/source/public/cbfonts/grxo.mf + RELOC/fonts/source/public/cbfonts/grxo0500.mf + RELOC/fonts/source/public/cbfonts/grxo0600.mf + RELOC/fonts/source/public/cbfonts/grxo0700.mf + RELOC/fonts/source/public/cbfonts/grxo0800.mf + RELOC/fonts/source/public/cbfonts/grxo0900.mf + RELOC/fonts/source/public/cbfonts/grxo1000.mf + RELOC/fonts/source/public/cbfonts/grxo1095.mf + RELOC/fonts/source/public/cbfonts/grxo1200.mf + RELOC/fonts/source/public/cbfonts/grxo1440.mf + RELOC/fonts/source/public/cbfonts/grxo1728.mf + RELOC/fonts/source/public/cbfonts/grxo2074.mf + RELOC/fonts/source/public/cbfonts/grxo2488.mf + RELOC/fonts/source/public/cbfonts/grxo2986.mf + RELOC/fonts/source/public/cbfonts/grxo3583.mf + RELOC/fonts/source/public/cbfonts/grxu.mf + RELOC/fonts/source/public/cbfonts/grxu0500.mf + RELOC/fonts/source/public/cbfonts/grxu0600.mf + RELOC/fonts/source/public/cbfonts/grxu0700.mf + RELOC/fonts/source/public/cbfonts/grxu0800.mf + RELOC/fonts/source/public/cbfonts/grxu0900.mf + RELOC/fonts/source/public/cbfonts/grxu1000.mf + RELOC/fonts/source/public/cbfonts/grxu1095.mf + RELOC/fonts/source/public/cbfonts/grxu1200.mf + RELOC/fonts/source/public/cbfonts/grxu1440.mf + RELOC/fonts/source/public/cbfonts/grxu1728.mf + RELOC/fonts/source/public/cbfonts/grxu2074.mf + RELOC/fonts/source/public/cbfonts/grxu2488.mf + RELOC/fonts/source/public/cbfonts/grxu2986.mf + RELOC/fonts/source/public/cbfonts/grxu3583.mf + RELOC/fonts/source/public/cbfonts/gsma.mf + RELOC/fonts/source/public/cbfonts/gsma0500.mf + RELOC/fonts/source/public/cbfonts/gsma0600.mf + RELOC/fonts/source/public/cbfonts/gsma0700.mf + RELOC/fonts/source/public/cbfonts/gsma0800.mf + RELOC/fonts/source/public/cbfonts/gsma0900.mf + RELOC/fonts/source/public/cbfonts/gsma1000.mf + RELOC/fonts/source/public/cbfonts/gsma1095.mf + RELOC/fonts/source/public/cbfonts/gsma1200.mf + RELOC/fonts/source/public/cbfonts/gsma1440.mf + RELOC/fonts/source/public/cbfonts/gsma1728.mf + RELOC/fonts/source/public/cbfonts/gsma2074.mf + RELOC/fonts/source/public/cbfonts/gsma2488.mf + RELOC/fonts/source/public/cbfonts/gsma2986.mf + RELOC/fonts/source/public/cbfonts/gsma3583.mf + RELOC/fonts/source/public/cbfonts/gsmc.mf + RELOC/fonts/source/public/cbfonts/gsmc0500.mf + RELOC/fonts/source/public/cbfonts/gsmc0600.mf + RELOC/fonts/source/public/cbfonts/gsmc0700.mf + RELOC/fonts/source/public/cbfonts/gsmc0800.mf + RELOC/fonts/source/public/cbfonts/gsmc0900.mf + RELOC/fonts/source/public/cbfonts/gsmc1000.mf + RELOC/fonts/source/public/cbfonts/gsmc1095.mf + RELOC/fonts/source/public/cbfonts/gsmc1200.mf + RELOC/fonts/source/public/cbfonts/gsmc1440.mf + RELOC/fonts/source/public/cbfonts/gsmc1728.mf + RELOC/fonts/source/public/cbfonts/gsmc2074.mf + RELOC/fonts/source/public/cbfonts/gsmc2488.mf + RELOC/fonts/source/public/cbfonts/gsmc2986.mf + RELOC/fonts/source/public/cbfonts/gsmc3583.mf + RELOC/fonts/source/public/cbfonts/gsme.mf + RELOC/fonts/source/public/cbfonts/gsme0500.mf + RELOC/fonts/source/public/cbfonts/gsme0600.mf + RELOC/fonts/source/public/cbfonts/gsme0700.mf + RELOC/fonts/source/public/cbfonts/gsme0800.mf + RELOC/fonts/source/public/cbfonts/gsme0900.mf + RELOC/fonts/source/public/cbfonts/gsme1000.mf + RELOC/fonts/source/public/cbfonts/gsme1095.mf + RELOC/fonts/source/public/cbfonts/gsme1200.mf + RELOC/fonts/source/public/cbfonts/gsme1440.mf + RELOC/fonts/source/public/cbfonts/gsme1728.mf + RELOC/fonts/source/public/cbfonts/gsme2074.mf + RELOC/fonts/source/public/cbfonts/gsme2488.mf + RELOC/fonts/source/public/cbfonts/gsme2986.mf + RELOC/fonts/source/public/cbfonts/gsme3583.mf + RELOC/fonts/source/public/cbfonts/gsmi.mf + RELOC/fonts/source/public/cbfonts/gsmi0500.mf + RELOC/fonts/source/public/cbfonts/gsmi0600.mf + RELOC/fonts/source/public/cbfonts/gsmi0700.mf + RELOC/fonts/source/public/cbfonts/gsmi0800.mf + RELOC/fonts/source/public/cbfonts/gsmi0900.mf + RELOC/fonts/source/public/cbfonts/gsmi1000.mf + RELOC/fonts/source/public/cbfonts/gsmi1095.mf + RELOC/fonts/source/public/cbfonts/gsmi1200.mf + RELOC/fonts/source/public/cbfonts/gsmi1440.mf + RELOC/fonts/source/public/cbfonts/gsmi1728.mf + RELOC/fonts/source/public/cbfonts/gsmi2074.mf + RELOC/fonts/source/public/cbfonts/gsmi2488.mf + RELOC/fonts/source/public/cbfonts/gsmi2986.mf + RELOC/fonts/source/public/cbfonts/gsmi3583.mf + RELOC/fonts/source/public/cbfonts/gsmn.mf + RELOC/fonts/source/public/cbfonts/gsmn0500.mf + RELOC/fonts/source/public/cbfonts/gsmn0600.mf + RELOC/fonts/source/public/cbfonts/gsmn0700.mf + RELOC/fonts/source/public/cbfonts/gsmn0800.mf + RELOC/fonts/source/public/cbfonts/gsmn0900.mf + RELOC/fonts/source/public/cbfonts/gsmn1000.mf + RELOC/fonts/source/public/cbfonts/gsmn1095.mf + RELOC/fonts/source/public/cbfonts/gsmn1200.mf + RELOC/fonts/source/public/cbfonts/gsmn1440.mf + RELOC/fonts/source/public/cbfonts/gsmn1728.mf + RELOC/fonts/source/public/cbfonts/gsmn2074.mf + RELOC/fonts/source/public/cbfonts/gsmn2488.mf + RELOC/fonts/source/public/cbfonts/gsmn2986.mf + RELOC/fonts/source/public/cbfonts/gsmn3583.mf + RELOC/fonts/source/public/cbfonts/gsmo.mf + RELOC/fonts/source/public/cbfonts/gsmo0500.mf + RELOC/fonts/source/public/cbfonts/gsmo0600.mf + RELOC/fonts/source/public/cbfonts/gsmo0700.mf + RELOC/fonts/source/public/cbfonts/gsmo0800.mf + RELOC/fonts/source/public/cbfonts/gsmo0900.mf + RELOC/fonts/source/public/cbfonts/gsmo1000.mf + RELOC/fonts/source/public/cbfonts/gsmo1095.mf + RELOC/fonts/source/public/cbfonts/gsmo1200.mf + RELOC/fonts/source/public/cbfonts/gsmo1440.mf + RELOC/fonts/source/public/cbfonts/gsmo1728.mf + RELOC/fonts/source/public/cbfonts/gsmo2074.mf + RELOC/fonts/source/public/cbfonts/gsmo2488.mf + RELOC/fonts/source/public/cbfonts/gsmo2986.mf + RELOC/fonts/source/public/cbfonts/gsmo3583.mf + RELOC/fonts/source/public/cbfonts/gsmu.mf + RELOC/fonts/source/public/cbfonts/gsmu0500.mf + RELOC/fonts/source/public/cbfonts/gsmu0600.mf + RELOC/fonts/source/public/cbfonts/gsmu0700.mf + RELOC/fonts/source/public/cbfonts/gsmu0800.mf + RELOC/fonts/source/public/cbfonts/gsmu0900.mf + RELOC/fonts/source/public/cbfonts/gsmu1000.mf + RELOC/fonts/source/public/cbfonts/gsmu1095.mf + RELOC/fonts/source/public/cbfonts/gsmu1200.mf + RELOC/fonts/source/public/cbfonts/gsmu1440.mf + RELOC/fonts/source/public/cbfonts/gsmu1728.mf + RELOC/fonts/source/public/cbfonts/gsmu2074.mf + RELOC/fonts/source/public/cbfonts/gsmu2488.mf + RELOC/fonts/source/public/cbfonts/gsmu2986.mf + RELOC/fonts/source/public/cbfonts/gsmu3583.mf + RELOC/fonts/source/public/cbfonts/gsxa.mf + RELOC/fonts/source/public/cbfonts/gsxa0500.mf + RELOC/fonts/source/public/cbfonts/gsxa0600.mf + RELOC/fonts/source/public/cbfonts/gsxa0700.mf + RELOC/fonts/source/public/cbfonts/gsxa0800.mf + RELOC/fonts/source/public/cbfonts/gsxa0900.mf + RELOC/fonts/source/public/cbfonts/gsxa1000.mf + RELOC/fonts/source/public/cbfonts/gsxa1095.mf + RELOC/fonts/source/public/cbfonts/gsxa1200.mf + RELOC/fonts/source/public/cbfonts/gsxa1440.mf + RELOC/fonts/source/public/cbfonts/gsxa1728.mf + RELOC/fonts/source/public/cbfonts/gsxa2074.mf + RELOC/fonts/source/public/cbfonts/gsxa2488.mf + RELOC/fonts/source/public/cbfonts/gsxa2986.mf + RELOC/fonts/source/public/cbfonts/gsxa3583.mf + RELOC/fonts/source/public/cbfonts/gsxc.mf + RELOC/fonts/source/public/cbfonts/gsxc0500.mf + RELOC/fonts/source/public/cbfonts/gsxc0600.mf + RELOC/fonts/source/public/cbfonts/gsxc0700.mf + RELOC/fonts/source/public/cbfonts/gsxc0800.mf + RELOC/fonts/source/public/cbfonts/gsxc0900.mf + RELOC/fonts/source/public/cbfonts/gsxc1000.mf + RELOC/fonts/source/public/cbfonts/gsxc1095.mf + RELOC/fonts/source/public/cbfonts/gsxc1200.mf + RELOC/fonts/source/public/cbfonts/gsxc1440.mf + RELOC/fonts/source/public/cbfonts/gsxc1728.mf + RELOC/fonts/source/public/cbfonts/gsxc2074.mf + RELOC/fonts/source/public/cbfonts/gsxc2488.mf + RELOC/fonts/source/public/cbfonts/gsxc2986.mf + RELOC/fonts/source/public/cbfonts/gsxc3583.mf + RELOC/fonts/source/public/cbfonts/gsxe.mf + RELOC/fonts/source/public/cbfonts/gsxe0500.mf + RELOC/fonts/source/public/cbfonts/gsxe0600.mf + RELOC/fonts/source/public/cbfonts/gsxe0700.mf + RELOC/fonts/source/public/cbfonts/gsxe0800.mf + RELOC/fonts/source/public/cbfonts/gsxe0900.mf + RELOC/fonts/source/public/cbfonts/gsxe1000.mf + RELOC/fonts/source/public/cbfonts/gsxe1095.mf + RELOC/fonts/source/public/cbfonts/gsxe1200.mf + RELOC/fonts/source/public/cbfonts/gsxe1440.mf + RELOC/fonts/source/public/cbfonts/gsxe1728.mf + RELOC/fonts/source/public/cbfonts/gsxe2074.mf + RELOC/fonts/source/public/cbfonts/gsxe2488.mf + RELOC/fonts/source/public/cbfonts/gsxe2986.mf + RELOC/fonts/source/public/cbfonts/gsxe3583.mf + RELOC/fonts/source/public/cbfonts/gsxi.mf + RELOC/fonts/source/public/cbfonts/gsxi0500.mf + RELOC/fonts/source/public/cbfonts/gsxi0600.mf + RELOC/fonts/source/public/cbfonts/gsxi0700.mf + RELOC/fonts/source/public/cbfonts/gsxi0800.mf + RELOC/fonts/source/public/cbfonts/gsxi0900.mf + RELOC/fonts/source/public/cbfonts/gsxi1000.mf + RELOC/fonts/source/public/cbfonts/gsxi1095.mf + RELOC/fonts/source/public/cbfonts/gsxi1200.mf + RELOC/fonts/source/public/cbfonts/gsxi1440.mf + RELOC/fonts/source/public/cbfonts/gsxi1728.mf + RELOC/fonts/source/public/cbfonts/gsxi2074.mf + RELOC/fonts/source/public/cbfonts/gsxi2488.mf + RELOC/fonts/source/public/cbfonts/gsxi2986.mf + RELOC/fonts/source/public/cbfonts/gsxi3583.mf + RELOC/fonts/source/public/cbfonts/gsxn.mf + RELOC/fonts/source/public/cbfonts/gsxn0500.mf + RELOC/fonts/source/public/cbfonts/gsxn0600.mf + RELOC/fonts/source/public/cbfonts/gsxn0700.mf + RELOC/fonts/source/public/cbfonts/gsxn0800.mf + RELOC/fonts/source/public/cbfonts/gsxn0900.mf + RELOC/fonts/source/public/cbfonts/gsxn1000.mf + RELOC/fonts/source/public/cbfonts/gsxn1095.mf + RELOC/fonts/source/public/cbfonts/gsxn1200.mf + RELOC/fonts/source/public/cbfonts/gsxn1440.mf + RELOC/fonts/source/public/cbfonts/gsxn1728.mf + RELOC/fonts/source/public/cbfonts/gsxn2074.mf + RELOC/fonts/source/public/cbfonts/gsxn2488.mf + RELOC/fonts/source/public/cbfonts/gsxn2986.mf + RELOC/fonts/source/public/cbfonts/gsxn3583.mf + RELOC/fonts/source/public/cbfonts/gsxo.mf + RELOC/fonts/source/public/cbfonts/gsxo0500.mf + RELOC/fonts/source/public/cbfonts/gsxo0600.mf + RELOC/fonts/source/public/cbfonts/gsxo0700.mf + RELOC/fonts/source/public/cbfonts/gsxo0800.mf + RELOC/fonts/source/public/cbfonts/gsxo0900.mf + RELOC/fonts/source/public/cbfonts/gsxo1000.mf + RELOC/fonts/source/public/cbfonts/gsxo1095.mf + RELOC/fonts/source/public/cbfonts/gsxo1200.mf + RELOC/fonts/source/public/cbfonts/gsxo1440.mf + RELOC/fonts/source/public/cbfonts/gsxo1728.mf + RELOC/fonts/source/public/cbfonts/gsxo2074.mf + RELOC/fonts/source/public/cbfonts/gsxo2488.mf + RELOC/fonts/source/public/cbfonts/gsxo2986.mf + RELOC/fonts/source/public/cbfonts/gsxo3583.mf + RELOC/fonts/source/public/cbfonts/gsxu.mf + RELOC/fonts/source/public/cbfonts/gsxu0500.mf + RELOC/fonts/source/public/cbfonts/gsxu0600.mf + RELOC/fonts/source/public/cbfonts/gsxu0700.mf + RELOC/fonts/source/public/cbfonts/gsxu0800.mf + RELOC/fonts/source/public/cbfonts/gsxu0900.mf + RELOC/fonts/source/public/cbfonts/gsxu1000.mf + RELOC/fonts/source/public/cbfonts/gsxu1095.mf + RELOC/fonts/source/public/cbfonts/gsxu1200.mf + RELOC/fonts/source/public/cbfonts/gsxu1440.mf + RELOC/fonts/source/public/cbfonts/gsxu1728.mf + RELOC/fonts/source/public/cbfonts/gsxu2074.mf + RELOC/fonts/source/public/cbfonts/gsxu2488.mf + RELOC/fonts/source/public/cbfonts/gsxu2986.mf + RELOC/fonts/source/public/cbfonts/gsxu3583.mf + RELOC/fonts/source/public/cbfonts/gttc.mf + RELOC/fonts/source/public/cbfonts/gttc0500.mf + RELOC/fonts/source/public/cbfonts/gttc0600.mf + RELOC/fonts/source/public/cbfonts/gttc0700.mf + RELOC/fonts/source/public/cbfonts/gttc0800.mf + RELOC/fonts/source/public/cbfonts/gttc0900.mf + RELOC/fonts/source/public/cbfonts/gttc1000.mf + RELOC/fonts/source/public/cbfonts/gttc1095.mf + RELOC/fonts/source/public/cbfonts/gttc1200.mf + RELOC/fonts/source/public/cbfonts/gttc1440.mf + RELOC/fonts/source/public/cbfonts/gttc1728.mf + RELOC/fonts/source/public/cbfonts/gttc2074.mf + RELOC/fonts/source/public/cbfonts/gttc2488.mf + RELOC/fonts/source/public/cbfonts/gttc2986.mf + RELOC/fonts/source/public/cbfonts/gttc3583.mf + RELOC/fonts/source/public/cbfonts/gtti.mf + RELOC/fonts/source/public/cbfonts/gtti0500.mf + RELOC/fonts/source/public/cbfonts/gtti0600.mf + RELOC/fonts/source/public/cbfonts/gtti0700.mf + RELOC/fonts/source/public/cbfonts/gtti0800.mf + RELOC/fonts/source/public/cbfonts/gtti0900.mf + RELOC/fonts/source/public/cbfonts/gtti1000.mf + RELOC/fonts/source/public/cbfonts/gtti1095.mf + RELOC/fonts/source/public/cbfonts/gtti1200.mf + RELOC/fonts/source/public/cbfonts/gtti1440.mf + RELOC/fonts/source/public/cbfonts/gtti1728.mf + RELOC/fonts/source/public/cbfonts/gtti2074.mf + RELOC/fonts/source/public/cbfonts/gtti2488.mf + RELOC/fonts/source/public/cbfonts/gtti2986.mf + RELOC/fonts/source/public/cbfonts/gtti3583.mf + RELOC/fonts/source/public/cbfonts/gttn.mf + RELOC/fonts/source/public/cbfonts/gttn0500.mf + RELOC/fonts/source/public/cbfonts/gttn0600.mf + RELOC/fonts/source/public/cbfonts/gttn0700.mf + RELOC/fonts/source/public/cbfonts/gttn0800.mf + RELOC/fonts/source/public/cbfonts/gttn0900.mf + RELOC/fonts/source/public/cbfonts/gttn1000.mf + RELOC/fonts/source/public/cbfonts/gttn1095.mf + RELOC/fonts/source/public/cbfonts/gttn1200.mf + RELOC/fonts/source/public/cbfonts/gttn1440.mf + RELOC/fonts/source/public/cbfonts/gttn1728.mf + RELOC/fonts/source/public/cbfonts/gttn2074.mf + RELOC/fonts/source/public/cbfonts/gttn2488.mf + RELOC/fonts/source/public/cbfonts/gttn2986.mf + RELOC/fonts/source/public/cbfonts/gttn3583.mf + RELOC/fonts/source/public/cbfonts/gtto.mf + RELOC/fonts/source/public/cbfonts/gtto0500.mf + RELOC/fonts/source/public/cbfonts/gtto0600.mf + RELOC/fonts/source/public/cbfonts/gtto0700.mf + RELOC/fonts/source/public/cbfonts/gtto0800.mf + RELOC/fonts/source/public/cbfonts/gtto0900.mf + RELOC/fonts/source/public/cbfonts/gtto1000.mf + RELOC/fonts/source/public/cbfonts/gtto1095.mf + RELOC/fonts/source/public/cbfonts/gtto1200.mf + RELOC/fonts/source/public/cbfonts/gtto1440.mf + RELOC/fonts/source/public/cbfonts/gtto1728.mf + RELOC/fonts/source/public/cbfonts/gtto2074.mf + RELOC/fonts/source/public/cbfonts/gtto2488.mf + RELOC/fonts/source/public/cbfonts/gtto2986.mf + RELOC/fonts/source/public/cbfonts/gtto3583.mf + RELOC/fonts/source/public/cbfonts/gttu.mf + RELOC/fonts/source/public/cbfonts/gttu0500.mf + RELOC/fonts/source/public/cbfonts/gttu0600.mf + RELOC/fonts/source/public/cbfonts/gttu0700.mf + RELOC/fonts/source/public/cbfonts/gttu0800.mf + RELOC/fonts/source/public/cbfonts/gttu0900.mf + RELOC/fonts/source/public/cbfonts/gttu1000.mf + RELOC/fonts/source/public/cbfonts/gttu1095.mf + RELOC/fonts/source/public/cbfonts/gttu1200.mf + RELOC/fonts/source/public/cbfonts/gttu1440.mf + RELOC/fonts/source/public/cbfonts/gttu1728.mf + RELOC/fonts/source/public/cbfonts/gttu2074.mf + RELOC/fonts/source/public/cbfonts/gttu2488.mf + RELOC/fonts/source/public/cbfonts/gttu2986.mf + RELOC/fonts/source/public/cbfonts/gttu3583.mf + RELOC/fonts/tfm/public/cbfonts/glic0700.tfm + RELOC/fonts/tfm/public/cbfonts/glic0800.tfm + RELOC/fonts/tfm/public/cbfonts/glic1000.tfm + RELOC/fonts/tfm/public/cbfonts/glic1200.tfm + RELOC/fonts/tfm/public/cbfonts/glic1382.tfm + RELOC/fonts/tfm/public/cbfonts/glic1659.tfm + RELOC/fonts/tfm/public/cbfonts/glic1991.tfm + RELOC/fonts/tfm/public/cbfonts/glic2389.tfm + RELOC/fonts/tfm/public/cbfonts/glic2866.tfm + RELOC/fonts/tfm/public/cbfonts/glic3440.tfm + RELOC/fonts/tfm/public/cbfonts/glic4128.tfm + RELOC/fonts/tfm/public/cbfonts/glii0700.tfm + RELOC/fonts/tfm/public/cbfonts/glii0800.tfm + RELOC/fonts/tfm/public/cbfonts/glii1000.tfm + RELOC/fonts/tfm/public/cbfonts/glii1200.tfm + RELOC/fonts/tfm/public/cbfonts/glii1382.tfm + RELOC/fonts/tfm/public/cbfonts/glii1659.tfm + RELOC/fonts/tfm/public/cbfonts/glii1991.tfm + RELOC/fonts/tfm/public/cbfonts/glii2389.tfm + RELOC/fonts/tfm/public/cbfonts/glii2866.tfm + RELOC/fonts/tfm/public/cbfonts/glii3440.tfm + RELOC/fonts/tfm/public/cbfonts/glii4128.tfm + RELOC/fonts/tfm/public/cbfonts/glin0700.tfm + RELOC/fonts/tfm/public/cbfonts/glin0800.tfm + RELOC/fonts/tfm/public/cbfonts/glin1000.tfm + RELOC/fonts/tfm/public/cbfonts/glin1200.tfm + RELOC/fonts/tfm/public/cbfonts/glin1382.tfm + RELOC/fonts/tfm/public/cbfonts/glin1659.tfm + RELOC/fonts/tfm/public/cbfonts/glin1991.tfm + RELOC/fonts/tfm/public/cbfonts/glin2389.tfm + RELOC/fonts/tfm/public/cbfonts/glin2866.tfm + RELOC/fonts/tfm/public/cbfonts/glin3440.tfm + RELOC/fonts/tfm/public/cbfonts/glin4128.tfm + RELOC/fonts/tfm/public/cbfonts/glio0700.tfm + RELOC/fonts/tfm/public/cbfonts/glio0800.tfm + RELOC/fonts/tfm/public/cbfonts/glio1000.tfm + RELOC/fonts/tfm/public/cbfonts/glio1200.tfm + RELOC/fonts/tfm/public/cbfonts/glio1382.tfm + RELOC/fonts/tfm/public/cbfonts/glio1659.tfm + RELOC/fonts/tfm/public/cbfonts/glio1991.tfm + RELOC/fonts/tfm/public/cbfonts/glio2389.tfm + RELOC/fonts/tfm/public/cbfonts/glio2866.tfm + RELOC/fonts/tfm/public/cbfonts/glio3440.tfm + RELOC/fonts/tfm/public/cbfonts/glio4128.tfm + RELOC/fonts/tfm/public/cbfonts/gliu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gliu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1382.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1659.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1991.tfm + RELOC/fonts/tfm/public/cbfonts/gliu2389.tfm + RELOC/fonts/tfm/public/cbfonts/gliu2866.tfm + RELOC/fonts/tfm/public/cbfonts/gliu3440.tfm + RELOC/fonts/tfm/public/cbfonts/gliu4128.tfm + RELOC/fonts/tfm/public/cbfonts/gljc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gljc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1382.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1659.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1991.tfm + RELOC/fonts/tfm/public/cbfonts/gljc2389.tfm + RELOC/fonts/tfm/public/cbfonts/gljc2866.tfm + RELOC/fonts/tfm/public/cbfonts/gljc3440.tfm + RELOC/fonts/tfm/public/cbfonts/gljc4128.tfm + RELOC/fonts/tfm/public/cbfonts/gljn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gljn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1382.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1659.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1991.tfm + RELOC/fonts/tfm/public/cbfonts/gljn2389.tfm + RELOC/fonts/tfm/public/cbfonts/gljn2866.tfm + RELOC/fonts/tfm/public/cbfonts/gljn3440.tfm + RELOC/fonts/tfm/public/cbfonts/gljn4128.tfm + RELOC/fonts/tfm/public/cbfonts/gljo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gljo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1382.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1659.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1991.tfm + RELOC/fonts/tfm/public/cbfonts/gljo2389.tfm + RELOC/fonts/tfm/public/cbfonts/gljo2866.tfm + RELOC/fonts/tfm/public/cbfonts/gljo3440.tfm + RELOC/fonts/tfm/public/cbfonts/gljo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmc0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmc0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmc2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmc2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmc3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmc4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmi0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmi0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmi2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmi2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmi3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmi4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmn2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmn2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmn3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmo2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmo2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmo3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmu0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmu0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmu2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmu2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmu3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmu4128.tfm + RELOC/fonts/tfm/public/cbfonts/gltc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gltc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1382.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1659.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1991.tfm + RELOC/fonts/tfm/public/cbfonts/gltc2389.tfm + RELOC/fonts/tfm/public/cbfonts/gltc2866.tfm + RELOC/fonts/tfm/public/cbfonts/gltc3440.tfm + RELOC/fonts/tfm/public/cbfonts/gltc4128.tfm + RELOC/fonts/tfm/public/cbfonts/gltn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gltn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1382.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1659.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1991.tfm + RELOC/fonts/tfm/public/cbfonts/gltn2389.tfm + RELOC/fonts/tfm/public/cbfonts/gltn2866.tfm + RELOC/fonts/tfm/public/cbfonts/gltn3440.tfm + RELOC/fonts/tfm/public/cbfonts/gltn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glto0700.tfm + RELOC/fonts/tfm/public/cbfonts/glto0800.tfm + RELOC/fonts/tfm/public/cbfonts/glto1000.tfm + RELOC/fonts/tfm/public/cbfonts/glto1200.tfm + RELOC/fonts/tfm/public/cbfonts/glto1382.tfm + RELOC/fonts/tfm/public/cbfonts/glto1659.tfm + RELOC/fonts/tfm/public/cbfonts/glto1991.tfm + RELOC/fonts/tfm/public/cbfonts/glto2389.tfm + RELOC/fonts/tfm/public/cbfonts/glto2866.tfm + RELOC/fonts/tfm/public/cbfonts/glto3440.tfm + RELOC/fonts/tfm/public/cbfonts/glto4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwc0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwc0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwc2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwc2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwc3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwc4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwi0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwi0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwi2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwi2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwi3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwi4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwn0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwn0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwn2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwn2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwn3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwo0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwo0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwo2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwo2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwo3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwu0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwu0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwu2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwu2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwu3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwu4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxc2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxc2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxc3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxc4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxi2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxi2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxi3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxi4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxn2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxn2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxn3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxo2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxo2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxo3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxu2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxu2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxu3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxu4128.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomi2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomi2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomi2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomi3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomu3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxc2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxc2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxc2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxc3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxi2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxi2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxi2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxi3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxu2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxu2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxu2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxu3583.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0500.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0600.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0700.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0800.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0900.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1000.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1095.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1200.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1440.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1728.tfm + RELOC/fonts/tfm/public/cbfonts/grbl2074.tfm + RELOC/fonts/tfm/public/cbfonts/grbl2488.tfm + RELOC/fonts/tfm/public/cbfonts/grbl2986.tfm + RELOC/fonts/tfm/public/cbfonts/grbl3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmc2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmc2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmc2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmc3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmi2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmi2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmi2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmi3583.tfm + RELOC/fonts/tfm/public/cbfonts/grml0500.tfm + RELOC/fonts/tfm/public/cbfonts/grml0600.tfm + RELOC/fonts/tfm/public/cbfonts/grml0700.tfm + RELOC/fonts/tfm/public/cbfonts/grml0800.tfm + RELOC/fonts/tfm/public/cbfonts/grml0900.tfm + RELOC/fonts/tfm/public/cbfonts/grml1000.tfm + RELOC/fonts/tfm/public/cbfonts/grml1095.tfm + RELOC/fonts/tfm/public/cbfonts/grml1200.tfm + RELOC/fonts/tfm/public/cbfonts/grml1440.tfm + RELOC/fonts/tfm/public/cbfonts/grml1728.tfm + RELOC/fonts/tfm/public/cbfonts/grml2074.tfm + RELOC/fonts/tfm/public/cbfonts/grml2488.tfm + RELOC/fonts/tfm/public/cbfonts/grml2986.tfm + RELOC/fonts/tfm/public/cbfonts/grml3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmn2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmn2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmn2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmn3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmo2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmo2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmo2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmo3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmu2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmu2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmu2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmu3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxc2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxc2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxc2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxc3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxi2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxi2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxi2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxi3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxl2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxl2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxl2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxl3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxu2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxu2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxu2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxu3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsma2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsma2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsma2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsma3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsme2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsme2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsme2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsme3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu3583.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gttc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gttc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gttc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gttc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0500.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0600.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0700.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0800.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0900.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1000.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1095.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1200.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1440.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1728.tfm + RELOC/fonts/tfm/public/cbfonts/gtti2074.tfm + RELOC/fonts/tfm/public/cbfonts/gtti2488.tfm + RELOC/fonts/tfm/public/cbfonts/gtti2986.tfm + RELOC/fonts/tfm/public/cbfonts/gtti3583.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gttn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gttn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gttn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gttn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0500.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0600.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0700.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0800.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0900.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1000.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1095.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1200.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1440.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1728.tfm + RELOC/fonts/tfm/public/cbfonts/gtto2074.tfm + RELOC/fonts/tfm/public/cbfonts/gtto2488.tfm + RELOC/fonts/tfm/public/cbfonts/gtto2986.tfm + RELOC/fonts/tfm/public/cbfonts/gtto3583.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gttu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gttu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gttu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gttu3583.tfm + RELOC/fonts/type1/public/cbfonts/glic0700.pfb + RELOC/fonts/type1/public/cbfonts/glic0800.pfb + RELOC/fonts/type1/public/cbfonts/glic1000.pfb + RELOC/fonts/type1/public/cbfonts/glic1200.pfb + RELOC/fonts/type1/public/cbfonts/glic1382.pfb + RELOC/fonts/type1/public/cbfonts/glic1659.pfb + RELOC/fonts/type1/public/cbfonts/glic1991.pfb + RELOC/fonts/type1/public/cbfonts/glic2389.pfb + RELOC/fonts/type1/public/cbfonts/glic2866.pfb + RELOC/fonts/type1/public/cbfonts/glic3440.pfb + RELOC/fonts/type1/public/cbfonts/glic4128.pfb + RELOC/fonts/type1/public/cbfonts/glii0700.pfb + RELOC/fonts/type1/public/cbfonts/glii0800.pfb + RELOC/fonts/type1/public/cbfonts/glii1000.pfb + RELOC/fonts/type1/public/cbfonts/glii1200.pfb + RELOC/fonts/type1/public/cbfonts/glii1382.pfb + RELOC/fonts/type1/public/cbfonts/glii1659.pfb + RELOC/fonts/type1/public/cbfonts/glii1991.pfb + RELOC/fonts/type1/public/cbfonts/glii2389.pfb + RELOC/fonts/type1/public/cbfonts/glii2866.pfb + RELOC/fonts/type1/public/cbfonts/glii3440.pfb + RELOC/fonts/type1/public/cbfonts/glii4128.pfb + RELOC/fonts/type1/public/cbfonts/glin0700.pfb + RELOC/fonts/type1/public/cbfonts/glin0800.pfb + RELOC/fonts/type1/public/cbfonts/glin1000.pfb + RELOC/fonts/type1/public/cbfonts/glin1200.pfb + RELOC/fonts/type1/public/cbfonts/glin1382.pfb + RELOC/fonts/type1/public/cbfonts/glin1659.pfb + RELOC/fonts/type1/public/cbfonts/glin1991.pfb + RELOC/fonts/type1/public/cbfonts/glin2389.pfb + RELOC/fonts/type1/public/cbfonts/glin2866.pfb + RELOC/fonts/type1/public/cbfonts/glin3440.pfb + RELOC/fonts/type1/public/cbfonts/glin4128.pfb + RELOC/fonts/type1/public/cbfonts/glio0700.pfb + RELOC/fonts/type1/public/cbfonts/glio0800.pfb + RELOC/fonts/type1/public/cbfonts/glio1000.pfb + RELOC/fonts/type1/public/cbfonts/glio1200.pfb + RELOC/fonts/type1/public/cbfonts/glio1382.pfb + RELOC/fonts/type1/public/cbfonts/glio1659.pfb + RELOC/fonts/type1/public/cbfonts/glio1991.pfb + RELOC/fonts/type1/public/cbfonts/glio2389.pfb + RELOC/fonts/type1/public/cbfonts/glio2866.pfb + RELOC/fonts/type1/public/cbfonts/glio3440.pfb + RELOC/fonts/type1/public/cbfonts/glio4128.pfb + RELOC/fonts/type1/public/cbfonts/gliu0700.pfb + RELOC/fonts/type1/public/cbfonts/gliu0800.pfb + RELOC/fonts/type1/public/cbfonts/gliu1000.pfb + RELOC/fonts/type1/public/cbfonts/gliu1200.pfb + RELOC/fonts/type1/public/cbfonts/gliu1382.pfb + RELOC/fonts/type1/public/cbfonts/gliu1659.pfb + RELOC/fonts/type1/public/cbfonts/gliu1991.pfb + RELOC/fonts/type1/public/cbfonts/gliu2389.pfb + RELOC/fonts/type1/public/cbfonts/gliu2866.pfb + RELOC/fonts/type1/public/cbfonts/gliu3440.pfb + RELOC/fonts/type1/public/cbfonts/gliu4128.pfb + RELOC/fonts/type1/public/cbfonts/gljc0700.pfb + RELOC/fonts/type1/public/cbfonts/gljc0800.pfb + RELOC/fonts/type1/public/cbfonts/gljc1000.pfb + RELOC/fonts/type1/public/cbfonts/gljc1200.pfb + RELOC/fonts/type1/public/cbfonts/gljc1382.pfb + RELOC/fonts/type1/public/cbfonts/gljc1659.pfb + RELOC/fonts/type1/public/cbfonts/gljc1991.pfb + RELOC/fonts/type1/public/cbfonts/gljc2389.pfb + RELOC/fonts/type1/public/cbfonts/gljc2866.pfb + RELOC/fonts/type1/public/cbfonts/gljc3440.pfb + RELOC/fonts/type1/public/cbfonts/gljc4128.pfb + RELOC/fonts/type1/public/cbfonts/gljn0700.pfb + RELOC/fonts/type1/public/cbfonts/gljn0800.pfb + RELOC/fonts/type1/public/cbfonts/gljn1000.pfb + RELOC/fonts/type1/public/cbfonts/gljn1200.pfb + RELOC/fonts/type1/public/cbfonts/gljn1382.pfb + RELOC/fonts/type1/public/cbfonts/gljn1659.pfb + RELOC/fonts/type1/public/cbfonts/gljn1991.pfb + RELOC/fonts/type1/public/cbfonts/gljn2389.pfb + RELOC/fonts/type1/public/cbfonts/gljn2866.pfb + RELOC/fonts/type1/public/cbfonts/gljn3440.pfb + RELOC/fonts/type1/public/cbfonts/gljn4128.pfb + RELOC/fonts/type1/public/cbfonts/gljo0700.pfb + RELOC/fonts/type1/public/cbfonts/gljo0800.pfb + RELOC/fonts/type1/public/cbfonts/gljo1000.pfb + RELOC/fonts/type1/public/cbfonts/gljo1200.pfb + RELOC/fonts/type1/public/cbfonts/gljo1382.pfb + RELOC/fonts/type1/public/cbfonts/gljo1659.pfb + RELOC/fonts/type1/public/cbfonts/gljo1991.pfb + RELOC/fonts/type1/public/cbfonts/gljo2389.pfb + RELOC/fonts/type1/public/cbfonts/gljo2866.pfb + RELOC/fonts/type1/public/cbfonts/gljo3440.pfb + RELOC/fonts/type1/public/cbfonts/gljo4128.pfb + RELOC/fonts/type1/public/cbfonts/glmc0700.pfb + RELOC/fonts/type1/public/cbfonts/glmc0800.pfb + RELOC/fonts/type1/public/cbfonts/glmc1000.pfb + RELOC/fonts/type1/public/cbfonts/glmc1200.pfb + RELOC/fonts/type1/public/cbfonts/glmc1382.pfb + RELOC/fonts/type1/public/cbfonts/glmc1659.pfb + RELOC/fonts/type1/public/cbfonts/glmc1991.pfb + RELOC/fonts/type1/public/cbfonts/glmc2389.pfb + RELOC/fonts/type1/public/cbfonts/glmc2866.pfb + RELOC/fonts/type1/public/cbfonts/glmc3440.pfb + RELOC/fonts/type1/public/cbfonts/glmc4128.pfb + RELOC/fonts/type1/public/cbfonts/glmi0700.pfb + RELOC/fonts/type1/public/cbfonts/glmi0800.pfb + RELOC/fonts/type1/public/cbfonts/glmi1000.pfb + RELOC/fonts/type1/public/cbfonts/glmi1200.pfb + RELOC/fonts/type1/public/cbfonts/glmi1382.pfb + RELOC/fonts/type1/public/cbfonts/glmi1659.pfb + RELOC/fonts/type1/public/cbfonts/glmi1991.pfb + RELOC/fonts/type1/public/cbfonts/glmi2389.pfb + RELOC/fonts/type1/public/cbfonts/glmi2866.pfb + RELOC/fonts/type1/public/cbfonts/glmi3440.pfb + RELOC/fonts/type1/public/cbfonts/glmi4128.pfb + RELOC/fonts/type1/public/cbfonts/glmn0700.pfb + RELOC/fonts/type1/public/cbfonts/glmn0800.pfb + RELOC/fonts/type1/public/cbfonts/glmn1000.pfb + RELOC/fonts/type1/public/cbfonts/glmn1200.pfb + RELOC/fonts/type1/public/cbfonts/glmn1382.pfb + RELOC/fonts/type1/public/cbfonts/glmn1659.pfb + RELOC/fonts/type1/public/cbfonts/glmn1991.pfb + RELOC/fonts/type1/public/cbfonts/glmn2389.pfb + RELOC/fonts/type1/public/cbfonts/glmn2866.pfb + RELOC/fonts/type1/public/cbfonts/glmn3440.pfb + RELOC/fonts/type1/public/cbfonts/glmn4128.pfb + RELOC/fonts/type1/public/cbfonts/glmo0700.pfb + RELOC/fonts/type1/public/cbfonts/glmo0800.pfb + RELOC/fonts/type1/public/cbfonts/glmo1000.pfb + RELOC/fonts/type1/public/cbfonts/glmo1200.pfb + RELOC/fonts/type1/public/cbfonts/glmo1382.pfb + RELOC/fonts/type1/public/cbfonts/glmo1659.pfb + RELOC/fonts/type1/public/cbfonts/glmo1991.pfb + RELOC/fonts/type1/public/cbfonts/glmo2389.pfb + RELOC/fonts/type1/public/cbfonts/glmo2866.pfb + RELOC/fonts/type1/public/cbfonts/glmo3440.pfb + RELOC/fonts/type1/public/cbfonts/glmo4128.pfb + RELOC/fonts/type1/public/cbfonts/glmu0700.pfb + RELOC/fonts/type1/public/cbfonts/glmu0800.pfb + RELOC/fonts/type1/public/cbfonts/glmu1000.pfb + RELOC/fonts/type1/public/cbfonts/glmu1200.pfb + RELOC/fonts/type1/public/cbfonts/glmu1382.pfb + RELOC/fonts/type1/public/cbfonts/glmu1659.pfb + RELOC/fonts/type1/public/cbfonts/glmu1991.pfb + RELOC/fonts/type1/public/cbfonts/glmu2389.pfb + RELOC/fonts/type1/public/cbfonts/glmu2866.pfb + RELOC/fonts/type1/public/cbfonts/glmu3440.pfb + RELOC/fonts/type1/public/cbfonts/glmu4128.pfb + RELOC/fonts/type1/public/cbfonts/gltc0700.pfb + RELOC/fonts/type1/public/cbfonts/gltc0800.pfb + RELOC/fonts/type1/public/cbfonts/gltc1000.pfb + RELOC/fonts/type1/public/cbfonts/gltc1200.pfb + RELOC/fonts/type1/public/cbfonts/gltc1382.pfb + RELOC/fonts/type1/public/cbfonts/gltc1659.pfb + RELOC/fonts/type1/public/cbfonts/gltc1991.pfb + RELOC/fonts/type1/public/cbfonts/gltc2389.pfb + RELOC/fonts/type1/public/cbfonts/gltc2866.pfb + RELOC/fonts/type1/public/cbfonts/gltc3440.pfb + RELOC/fonts/type1/public/cbfonts/gltc4128.pfb + RELOC/fonts/type1/public/cbfonts/gltn0700.pfb + RELOC/fonts/type1/public/cbfonts/gltn0800.pfb + RELOC/fonts/type1/public/cbfonts/gltn1000.pfb + RELOC/fonts/type1/public/cbfonts/gltn1200.pfb + RELOC/fonts/type1/public/cbfonts/gltn1382.pfb + RELOC/fonts/type1/public/cbfonts/gltn1659.pfb + RELOC/fonts/type1/public/cbfonts/gltn1991.pfb + RELOC/fonts/type1/public/cbfonts/gltn2389.pfb + RELOC/fonts/type1/public/cbfonts/gltn2866.pfb + RELOC/fonts/type1/public/cbfonts/gltn3440.pfb + RELOC/fonts/type1/public/cbfonts/gltn4128.pfb + RELOC/fonts/type1/public/cbfonts/glto0700.pfb + RELOC/fonts/type1/public/cbfonts/glto0800.pfb + RELOC/fonts/type1/public/cbfonts/glto1000.pfb + RELOC/fonts/type1/public/cbfonts/glto1200.pfb + RELOC/fonts/type1/public/cbfonts/glto1382.pfb + RELOC/fonts/type1/public/cbfonts/glto1659.pfb + RELOC/fonts/type1/public/cbfonts/glto1991.pfb + RELOC/fonts/type1/public/cbfonts/glto2389.pfb + RELOC/fonts/type1/public/cbfonts/glto2866.pfb + RELOC/fonts/type1/public/cbfonts/glto3440.pfb + RELOC/fonts/type1/public/cbfonts/glto4128.pfb + RELOC/fonts/type1/public/cbfonts/glwc0700.pfb + RELOC/fonts/type1/public/cbfonts/glwc0800.pfb + RELOC/fonts/type1/public/cbfonts/glwc1000.pfb + RELOC/fonts/type1/public/cbfonts/glwc1200.pfb + RELOC/fonts/type1/public/cbfonts/glwc1382.pfb + RELOC/fonts/type1/public/cbfonts/glwc1659.pfb + RELOC/fonts/type1/public/cbfonts/glwc1991.pfb + RELOC/fonts/type1/public/cbfonts/glwc2389.pfb + RELOC/fonts/type1/public/cbfonts/glwc2866.pfb + RELOC/fonts/type1/public/cbfonts/glwc3440.pfb + RELOC/fonts/type1/public/cbfonts/glwc4128.pfb + RELOC/fonts/type1/public/cbfonts/glwi0700.pfb + RELOC/fonts/type1/public/cbfonts/glwi0800.pfb + RELOC/fonts/type1/public/cbfonts/glwi1000.pfb + RELOC/fonts/type1/public/cbfonts/glwi1200.pfb + RELOC/fonts/type1/public/cbfonts/glwi1382.pfb + RELOC/fonts/type1/public/cbfonts/glwi1659.pfb + RELOC/fonts/type1/public/cbfonts/glwi1991.pfb + RELOC/fonts/type1/public/cbfonts/glwi2389.pfb + RELOC/fonts/type1/public/cbfonts/glwi2866.pfb + RELOC/fonts/type1/public/cbfonts/glwi3440.pfb + RELOC/fonts/type1/public/cbfonts/glwi4128.pfb + RELOC/fonts/type1/public/cbfonts/glwn0700.pfb + RELOC/fonts/type1/public/cbfonts/glwn0800.pfb + RELOC/fonts/type1/public/cbfonts/glwn1000.pfb + RELOC/fonts/type1/public/cbfonts/glwn1200.pfb + RELOC/fonts/type1/public/cbfonts/glwn1382.pfb + RELOC/fonts/type1/public/cbfonts/glwn1659.pfb + RELOC/fonts/type1/public/cbfonts/glwn1991.pfb + RELOC/fonts/type1/public/cbfonts/glwn2389.pfb + RELOC/fonts/type1/public/cbfonts/glwn2866.pfb + RELOC/fonts/type1/public/cbfonts/glwn3440.pfb + RELOC/fonts/type1/public/cbfonts/glwn4128.pfb + RELOC/fonts/type1/public/cbfonts/glwo0700.pfb + RELOC/fonts/type1/public/cbfonts/glwo0800.pfb + RELOC/fonts/type1/public/cbfonts/glwo1000.pfb + RELOC/fonts/type1/public/cbfonts/glwo1200.pfb + RELOC/fonts/type1/public/cbfonts/glwo1382.pfb + RELOC/fonts/type1/public/cbfonts/glwo1659.pfb + RELOC/fonts/type1/public/cbfonts/glwo1991.pfb + RELOC/fonts/type1/public/cbfonts/glwo2389.pfb + RELOC/fonts/type1/public/cbfonts/glwo2866.pfb + RELOC/fonts/type1/public/cbfonts/glwo3440.pfb + RELOC/fonts/type1/public/cbfonts/glwo4128.pfb + RELOC/fonts/type1/public/cbfonts/glwu0700.pfb + RELOC/fonts/type1/public/cbfonts/glwu0800.pfb + RELOC/fonts/type1/public/cbfonts/glwu1000.pfb + RELOC/fonts/type1/public/cbfonts/glwu1200.pfb + RELOC/fonts/type1/public/cbfonts/glwu1382.pfb + RELOC/fonts/type1/public/cbfonts/glwu1659.pfb + RELOC/fonts/type1/public/cbfonts/glwu1991.pfb + RELOC/fonts/type1/public/cbfonts/glwu2389.pfb + RELOC/fonts/type1/public/cbfonts/glwu2866.pfb + RELOC/fonts/type1/public/cbfonts/glwu3440.pfb + RELOC/fonts/type1/public/cbfonts/glwu4128.pfb + RELOC/fonts/type1/public/cbfonts/glxc0700.pfb + RELOC/fonts/type1/public/cbfonts/glxc0800.pfb + RELOC/fonts/type1/public/cbfonts/glxc1000.pfb + RELOC/fonts/type1/public/cbfonts/glxc1200.pfb + RELOC/fonts/type1/public/cbfonts/glxc1382.pfb + RELOC/fonts/type1/public/cbfonts/glxc1659.pfb + RELOC/fonts/type1/public/cbfonts/glxc1991.pfb + RELOC/fonts/type1/public/cbfonts/glxc2389.pfb + RELOC/fonts/type1/public/cbfonts/glxc2866.pfb + RELOC/fonts/type1/public/cbfonts/glxc3440.pfb + RELOC/fonts/type1/public/cbfonts/glxc4128.pfb + RELOC/fonts/type1/public/cbfonts/glxi0700.pfb + RELOC/fonts/type1/public/cbfonts/glxi0800.pfb + RELOC/fonts/type1/public/cbfonts/glxi1000.pfb + RELOC/fonts/type1/public/cbfonts/glxi1200.pfb + RELOC/fonts/type1/public/cbfonts/glxi1382.pfb + RELOC/fonts/type1/public/cbfonts/glxi1659.pfb + RELOC/fonts/type1/public/cbfonts/glxi1991.pfb + RELOC/fonts/type1/public/cbfonts/glxi2389.pfb + RELOC/fonts/type1/public/cbfonts/glxi2866.pfb + RELOC/fonts/type1/public/cbfonts/glxi3440.pfb + RELOC/fonts/type1/public/cbfonts/glxi4128.pfb + RELOC/fonts/type1/public/cbfonts/glxn0700.pfb + RELOC/fonts/type1/public/cbfonts/glxn0800.pfb + RELOC/fonts/type1/public/cbfonts/glxn1000.pfb + RELOC/fonts/type1/public/cbfonts/glxn1200.pfb + RELOC/fonts/type1/public/cbfonts/glxn1382.pfb + RELOC/fonts/type1/public/cbfonts/glxn1659.pfb + RELOC/fonts/type1/public/cbfonts/glxn1991.pfb + RELOC/fonts/type1/public/cbfonts/glxn2389.pfb + RELOC/fonts/type1/public/cbfonts/glxn2866.pfb + RELOC/fonts/type1/public/cbfonts/glxn3440.pfb + RELOC/fonts/type1/public/cbfonts/glxn4128.pfb + RELOC/fonts/type1/public/cbfonts/glxo0700.pfb + RELOC/fonts/type1/public/cbfonts/glxo0800.pfb + RELOC/fonts/type1/public/cbfonts/glxo1000.pfb + RELOC/fonts/type1/public/cbfonts/glxo1200.pfb + RELOC/fonts/type1/public/cbfonts/glxo1382.pfb + RELOC/fonts/type1/public/cbfonts/glxo1659.pfb + RELOC/fonts/type1/public/cbfonts/glxo1991.pfb + RELOC/fonts/type1/public/cbfonts/glxo2389.pfb + RELOC/fonts/type1/public/cbfonts/glxo2866.pfb + RELOC/fonts/type1/public/cbfonts/glxo3440.pfb + RELOC/fonts/type1/public/cbfonts/glxo4128.pfb + RELOC/fonts/type1/public/cbfonts/glxu0700.pfb + RELOC/fonts/type1/public/cbfonts/glxu0800.pfb + RELOC/fonts/type1/public/cbfonts/glxu1000.pfb + RELOC/fonts/type1/public/cbfonts/glxu1200.pfb + RELOC/fonts/type1/public/cbfonts/glxu1382.pfb + RELOC/fonts/type1/public/cbfonts/glxu1659.pfb + RELOC/fonts/type1/public/cbfonts/glxu1991.pfb + RELOC/fonts/type1/public/cbfonts/glxu2389.pfb + RELOC/fonts/type1/public/cbfonts/glxu2866.pfb + RELOC/fonts/type1/public/cbfonts/glxu3440.pfb + RELOC/fonts/type1/public/cbfonts/glxu4128.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0500.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0600.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0700.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0800.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0900.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1000.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1095.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1200.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1440.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1728.pfb + RELOC/fonts/type1/public/cbfonts/gmmn2074.pfb + RELOC/fonts/type1/public/cbfonts/gmmn2488.pfb + RELOC/fonts/type1/public/cbfonts/gmmn2986.pfb + RELOC/fonts/type1/public/cbfonts/gmmn3583.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0500.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0600.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0700.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0800.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0900.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1000.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1095.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1200.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1440.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1728.pfb + RELOC/fonts/type1/public/cbfonts/gmmo2074.pfb + RELOC/fonts/type1/public/cbfonts/gmmo2488.pfb + RELOC/fonts/type1/public/cbfonts/gmmo2986.pfb + RELOC/fonts/type1/public/cbfonts/gmmo3583.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0500.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0600.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0700.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0800.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0900.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1000.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1095.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1200.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1440.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1728.pfb + RELOC/fonts/type1/public/cbfonts/gmtr2074.pfb + RELOC/fonts/type1/public/cbfonts/gmtr2488.pfb + RELOC/fonts/type1/public/cbfonts/gmtr2986.pfb + RELOC/fonts/type1/public/cbfonts/gmtr3583.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0500.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0600.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0700.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0800.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0900.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1000.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1095.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1200.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1440.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1728.pfb + RELOC/fonts/type1/public/cbfonts/gmxn2074.pfb + RELOC/fonts/type1/public/cbfonts/gmxn2488.pfb + RELOC/fonts/type1/public/cbfonts/gmxn2986.pfb + RELOC/fonts/type1/public/cbfonts/gmxn3583.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0500.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0600.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0700.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0800.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0900.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1000.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1095.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1200.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1440.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1728.pfb + RELOC/fonts/type1/public/cbfonts/gmxo2074.pfb + RELOC/fonts/type1/public/cbfonts/gmxo2488.pfb + RELOC/fonts/type1/public/cbfonts/gmxo2986.pfb + RELOC/fonts/type1/public/cbfonts/gmxo3583.pfb + RELOC/fonts/type1/public/cbfonts/gomc0500.pfb + RELOC/fonts/type1/public/cbfonts/gomc0600.pfb + RELOC/fonts/type1/public/cbfonts/gomc0700.pfb + RELOC/fonts/type1/public/cbfonts/gomc0800.pfb + RELOC/fonts/type1/public/cbfonts/gomc0900.pfb + RELOC/fonts/type1/public/cbfonts/gomc1000.pfb + RELOC/fonts/type1/public/cbfonts/gomc1095.pfb + RELOC/fonts/type1/public/cbfonts/gomc1200.pfb + RELOC/fonts/type1/public/cbfonts/gomc1440.pfb + RELOC/fonts/type1/public/cbfonts/gomc1728.pfb + RELOC/fonts/type1/public/cbfonts/gomc2074.pfb + RELOC/fonts/type1/public/cbfonts/gomc2488.pfb + RELOC/fonts/type1/public/cbfonts/gomc2986.pfb + RELOC/fonts/type1/public/cbfonts/gomc3583.pfb + RELOC/fonts/type1/public/cbfonts/gomi0500.pfb + RELOC/fonts/type1/public/cbfonts/gomi0600.pfb + RELOC/fonts/type1/public/cbfonts/gomi0700.pfb + RELOC/fonts/type1/public/cbfonts/gomi0800.pfb + RELOC/fonts/type1/public/cbfonts/gomi0900.pfb + RELOC/fonts/type1/public/cbfonts/gomi1000.pfb + RELOC/fonts/type1/public/cbfonts/gomi1095.pfb + RELOC/fonts/type1/public/cbfonts/gomi1200.pfb + RELOC/fonts/type1/public/cbfonts/gomi1440.pfb + RELOC/fonts/type1/public/cbfonts/gomi1728.pfb + RELOC/fonts/type1/public/cbfonts/gomi2074.pfb + RELOC/fonts/type1/public/cbfonts/gomi2488.pfb + RELOC/fonts/type1/public/cbfonts/gomi2986.pfb + RELOC/fonts/type1/public/cbfonts/gomi3583.pfb + RELOC/fonts/type1/public/cbfonts/gomn0500.pfb + RELOC/fonts/type1/public/cbfonts/gomn0600.pfb + RELOC/fonts/type1/public/cbfonts/gomn0700.pfb + RELOC/fonts/type1/public/cbfonts/gomn0800.pfb + RELOC/fonts/type1/public/cbfonts/gomn0900.pfb + RELOC/fonts/type1/public/cbfonts/gomn1000.pfb + RELOC/fonts/type1/public/cbfonts/gomn1095.pfb + RELOC/fonts/type1/public/cbfonts/gomn1200.pfb + RELOC/fonts/type1/public/cbfonts/gomn1440.pfb + RELOC/fonts/type1/public/cbfonts/gomn1728.pfb + RELOC/fonts/type1/public/cbfonts/gomn2074.pfb + RELOC/fonts/type1/public/cbfonts/gomn2488.pfb + RELOC/fonts/type1/public/cbfonts/gomn2986.pfb + RELOC/fonts/type1/public/cbfonts/gomn3583.pfb + RELOC/fonts/type1/public/cbfonts/gomo0500.pfb + RELOC/fonts/type1/public/cbfonts/gomo0600.pfb + RELOC/fonts/type1/public/cbfonts/gomo0700.pfb + RELOC/fonts/type1/public/cbfonts/gomo0800.pfb + RELOC/fonts/type1/public/cbfonts/gomo0900.pfb + RELOC/fonts/type1/public/cbfonts/gomo1000.pfb + RELOC/fonts/type1/public/cbfonts/gomo1095.pfb + RELOC/fonts/type1/public/cbfonts/gomo1200.pfb + RELOC/fonts/type1/public/cbfonts/gomo1440.pfb + RELOC/fonts/type1/public/cbfonts/gomo1728.pfb + RELOC/fonts/type1/public/cbfonts/gomo2074.pfb + RELOC/fonts/type1/public/cbfonts/gomo2488.pfb + RELOC/fonts/type1/public/cbfonts/gomo2986.pfb + RELOC/fonts/type1/public/cbfonts/gomo3583.pfb + RELOC/fonts/type1/public/cbfonts/gomu0500.pfb + RELOC/fonts/type1/public/cbfonts/gomu0600.pfb + RELOC/fonts/type1/public/cbfonts/gomu0700.pfb + RELOC/fonts/type1/public/cbfonts/gomu0800.pfb + RELOC/fonts/type1/public/cbfonts/gomu0900.pfb + RELOC/fonts/type1/public/cbfonts/gomu1000.pfb + RELOC/fonts/type1/public/cbfonts/gomu1095.pfb + RELOC/fonts/type1/public/cbfonts/gomu1200.pfb + RELOC/fonts/type1/public/cbfonts/gomu1440.pfb + RELOC/fonts/type1/public/cbfonts/gomu1728.pfb + RELOC/fonts/type1/public/cbfonts/gomu2074.pfb + RELOC/fonts/type1/public/cbfonts/gomu2488.pfb + RELOC/fonts/type1/public/cbfonts/gomu2986.pfb + RELOC/fonts/type1/public/cbfonts/gomu3583.pfb + RELOC/fonts/type1/public/cbfonts/goxc0500.pfb + RELOC/fonts/type1/public/cbfonts/goxc0600.pfb + RELOC/fonts/type1/public/cbfonts/goxc0700.pfb + RELOC/fonts/type1/public/cbfonts/goxc0800.pfb + RELOC/fonts/type1/public/cbfonts/goxc0900.pfb + RELOC/fonts/type1/public/cbfonts/goxc1000.pfb + RELOC/fonts/type1/public/cbfonts/goxc1095.pfb + RELOC/fonts/type1/public/cbfonts/goxc1200.pfb + RELOC/fonts/type1/public/cbfonts/goxc1440.pfb + RELOC/fonts/type1/public/cbfonts/goxc1728.pfb + RELOC/fonts/type1/public/cbfonts/goxc2074.pfb + RELOC/fonts/type1/public/cbfonts/goxc2488.pfb + RELOC/fonts/type1/public/cbfonts/goxc2986.pfb + RELOC/fonts/type1/public/cbfonts/goxc3583.pfb + RELOC/fonts/type1/public/cbfonts/goxi0500.pfb + RELOC/fonts/type1/public/cbfonts/goxi0600.pfb + RELOC/fonts/type1/public/cbfonts/goxi0700.pfb + RELOC/fonts/type1/public/cbfonts/goxi0800.pfb + RELOC/fonts/type1/public/cbfonts/goxi0900.pfb + RELOC/fonts/type1/public/cbfonts/goxi1000.pfb + RELOC/fonts/type1/public/cbfonts/goxi1095.pfb + RELOC/fonts/type1/public/cbfonts/goxi1200.pfb + RELOC/fonts/type1/public/cbfonts/goxi1440.pfb + RELOC/fonts/type1/public/cbfonts/goxi1728.pfb + RELOC/fonts/type1/public/cbfonts/goxi2074.pfb + RELOC/fonts/type1/public/cbfonts/goxi2488.pfb + RELOC/fonts/type1/public/cbfonts/goxi2986.pfb + RELOC/fonts/type1/public/cbfonts/goxi3583.pfb + RELOC/fonts/type1/public/cbfonts/goxn0500.pfb + RELOC/fonts/type1/public/cbfonts/goxn0600.pfb + RELOC/fonts/type1/public/cbfonts/goxn0700.pfb + RELOC/fonts/type1/public/cbfonts/goxn0800.pfb + RELOC/fonts/type1/public/cbfonts/goxn0900.pfb + RELOC/fonts/type1/public/cbfonts/goxn1000.pfb + RELOC/fonts/type1/public/cbfonts/goxn1095.pfb + RELOC/fonts/type1/public/cbfonts/goxn1200.pfb + RELOC/fonts/type1/public/cbfonts/goxn1440.pfb + RELOC/fonts/type1/public/cbfonts/goxn1728.pfb + RELOC/fonts/type1/public/cbfonts/goxn2074.pfb + RELOC/fonts/type1/public/cbfonts/goxn2488.pfb + RELOC/fonts/type1/public/cbfonts/goxn2986.pfb + RELOC/fonts/type1/public/cbfonts/goxn3583.pfb + RELOC/fonts/type1/public/cbfonts/goxo0500.pfb + RELOC/fonts/type1/public/cbfonts/goxo0600.pfb + RELOC/fonts/type1/public/cbfonts/goxo0700.pfb + RELOC/fonts/type1/public/cbfonts/goxo0800.pfb + RELOC/fonts/type1/public/cbfonts/goxo0900.pfb + RELOC/fonts/type1/public/cbfonts/goxo1000.pfb + RELOC/fonts/type1/public/cbfonts/goxo1095.pfb + RELOC/fonts/type1/public/cbfonts/goxo1200.pfb + RELOC/fonts/type1/public/cbfonts/goxo1440.pfb + RELOC/fonts/type1/public/cbfonts/goxo1728.pfb + RELOC/fonts/type1/public/cbfonts/goxo2074.pfb + RELOC/fonts/type1/public/cbfonts/goxo2488.pfb + RELOC/fonts/type1/public/cbfonts/goxo2986.pfb + RELOC/fonts/type1/public/cbfonts/goxo3583.pfb + RELOC/fonts/type1/public/cbfonts/goxu0500.pfb + RELOC/fonts/type1/public/cbfonts/goxu0600.pfb + RELOC/fonts/type1/public/cbfonts/goxu0700.pfb + RELOC/fonts/type1/public/cbfonts/goxu0800.pfb + RELOC/fonts/type1/public/cbfonts/goxu0900.pfb + RELOC/fonts/type1/public/cbfonts/goxu1000.pfb + RELOC/fonts/type1/public/cbfonts/goxu1095.pfb + RELOC/fonts/type1/public/cbfonts/goxu1200.pfb + RELOC/fonts/type1/public/cbfonts/goxu1440.pfb + RELOC/fonts/type1/public/cbfonts/goxu1728.pfb + RELOC/fonts/type1/public/cbfonts/goxu2074.pfb + RELOC/fonts/type1/public/cbfonts/goxu2488.pfb + RELOC/fonts/type1/public/cbfonts/goxu2986.pfb + RELOC/fonts/type1/public/cbfonts/goxu3583.pfb + RELOC/fonts/type1/public/cbfonts/grbl0500.pfb + RELOC/fonts/type1/public/cbfonts/grbl0600.pfb + RELOC/fonts/type1/public/cbfonts/grbl0700.pfb + RELOC/fonts/type1/public/cbfonts/grbl0800.pfb + RELOC/fonts/type1/public/cbfonts/grbl0900.pfb + RELOC/fonts/type1/public/cbfonts/grbl1000.pfb + RELOC/fonts/type1/public/cbfonts/grbl1095.pfb + RELOC/fonts/type1/public/cbfonts/grbl1200.pfb + RELOC/fonts/type1/public/cbfonts/grbl1440.pfb + RELOC/fonts/type1/public/cbfonts/grbl1728.pfb + RELOC/fonts/type1/public/cbfonts/grbl2074.pfb + RELOC/fonts/type1/public/cbfonts/grbl2488.pfb + RELOC/fonts/type1/public/cbfonts/grbl2986.pfb + RELOC/fonts/type1/public/cbfonts/grbl3583.pfb + RELOC/fonts/type1/public/cbfonts/grmc0500.pfb + RELOC/fonts/type1/public/cbfonts/grmc0600.pfb + RELOC/fonts/type1/public/cbfonts/grmc0700.pfb + RELOC/fonts/type1/public/cbfonts/grmc0800.pfb + RELOC/fonts/type1/public/cbfonts/grmc0900.pfb + RELOC/fonts/type1/public/cbfonts/grmc1000.pfb + RELOC/fonts/type1/public/cbfonts/grmc1095.pfb + RELOC/fonts/type1/public/cbfonts/grmc1200.pfb + RELOC/fonts/type1/public/cbfonts/grmc1440.pfb + RELOC/fonts/type1/public/cbfonts/grmc1728.pfb + RELOC/fonts/type1/public/cbfonts/grmc2074.pfb + RELOC/fonts/type1/public/cbfonts/grmc2488.pfb + RELOC/fonts/type1/public/cbfonts/grmc2986.pfb + RELOC/fonts/type1/public/cbfonts/grmc3583.pfb + RELOC/fonts/type1/public/cbfonts/grmi0500.pfb + RELOC/fonts/type1/public/cbfonts/grmi0600.pfb + RELOC/fonts/type1/public/cbfonts/grmi0700.pfb + RELOC/fonts/type1/public/cbfonts/grmi0800.pfb + RELOC/fonts/type1/public/cbfonts/grmi0900.pfb + RELOC/fonts/type1/public/cbfonts/grmi1000.pfb + RELOC/fonts/type1/public/cbfonts/grmi1095.pfb + RELOC/fonts/type1/public/cbfonts/grmi1200.pfb + RELOC/fonts/type1/public/cbfonts/grmi1440.pfb + RELOC/fonts/type1/public/cbfonts/grmi1728.pfb + RELOC/fonts/type1/public/cbfonts/grmi2074.pfb + RELOC/fonts/type1/public/cbfonts/grmi2488.pfb + RELOC/fonts/type1/public/cbfonts/grmi2986.pfb + RELOC/fonts/type1/public/cbfonts/grmi3583.pfb + RELOC/fonts/type1/public/cbfonts/grml0500.pfb + RELOC/fonts/type1/public/cbfonts/grml0600.pfb + RELOC/fonts/type1/public/cbfonts/grml0700.pfb + RELOC/fonts/type1/public/cbfonts/grml0800.pfb + RELOC/fonts/type1/public/cbfonts/grml0900.pfb + RELOC/fonts/type1/public/cbfonts/grml1000.pfb + RELOC/fonts/type1/public/cbfonts/grml1095.pfb + RELOC/fonts/type1/public/cbfonts/grml1200.pfb + RELOC/fonts/type1/public/cbfonts/grml1440.pfb + RELOC/fonts/type1/public/cbfonts/grml1728.pfb + RELOC/fonts/type1/public/cbfonts/grml2074.pfb + RELOC/fonts/type1/public/cbfonts/grml2488.pfb + RELOC/fonts/type1/public/cbfonts/grml2986.pfb + RELOC/fonts/type1/public/cbfonts/grml3583.pfb + RELOC/fonts/type1/public/cbfonts/grmn0500.pfb + RELOC/fonts/type1/public/cbfonts/grmn0600.pfb + RELOC/fonts/type1/public/cbfonts/grmn0700.pfb + RELOC/fonts/type1/public/cbfonts/grmn0800.pfb + RELOC/fonts/type1/public/cbfonts/grmn0900.pfb + RELOC/fonts/type1/public/cbfonts/grmn1000.pfb + RELOC/fonts/type1/public/cbfonts/grmn1095.pfb + RELOC/fonts/type1/public/cbfonts/grmn1200.pfb + RELOC/fonts/type1/public/cbfonts/grmn1440.pfb + RELOC/fonts/type1/public/cbfonts/grmn1728.pfb + RELOC/fonts/type1/public/cbfonts/grmn2074.pfb + RELOC/fonts/type1/public/cbfonts/grmn2488.pfb + RELOC/fonts/type1/public/cbfonts/grmn2986.pfb + RELOC/fonts/type1/public/cbfonts/grmn3583.pfb + RELOC/fonts/type1/public/cbfonts/grmo0500.pfb + RELOC/fonts/type1/public/cbfonts/grmo0600.pfb + RELOC/fonts/type1/public/cbfonts/grmo0700.pfb + RELOC/fonts/type1/public/cbfonts/grmo0800.pfb + RELOC/fonts/type1/public/cbfonts/grmo0900.pfb + RELOC/fonts/type1/public/cbfonts/grmo1000.pfb + RELOC/fonts/type1/public/cbfonts/grmo1095.pfb + RELOC/fonts/type1/public/cbfonts/grmo1200.pfb + RELOC/fonts/type1/public/cbfonts/grmo1440.pfb + RELOC/fonts/type1/public/cbfonts/grmo1728.pfb + RELOC/fonts/type1/public/cbfonts/grmo2074.pfb + RELOC/fonts/type1/public/cbfonts/grmo2488.pfb + RELOC/fonts/type1/public/cbfonts/grmo2986.pfb + RELOC/fonts/type1/public/cbfonts/grmo3583.pfb + RELOC/fonts/type1/public/cbfonts/grmu0500.pfb + RELOC/fonts/type1/public/cbfonts/grmu0600.pfb + RELOC/fonts/type1/public/cbfonts/grmu0700.pfb + RELOC/fonts/type1/public/cbfonts/grmu0800.pfb + RELOC/fonts/type1/public/cbfonts/grmu0900.pfb + RELOC/fonts/type1/public/cbfonts/grmu1000.pfb + RELOC/fonts/type1/public/cbfonts/grmu1095.pfb + RELOC/fonts/type1/public/cbfonts/grmu1200.pfb + RELOC/fonts/type1/public/cbfonts/grmu1440.pfb + RELOC/fonts/type1/public/cbfonts/grmu1728.pfb + RELOC/fonts/type1/public/cbfonts/grmu2074.pfb + RELOC/fonts/type1/public/cbfonts/grmu2488.pfb + RELOC/fonts/type1/public/cbfonts/grmu2986.pfb + RELOC/fonts/type1/public/cbfonts/grmu3583.pfb + RELOC/fonts/type1/public/cbfonts/grxc0500.pfb + RELOC/fonts/type1/public/cbfonts/grxc0600.pfb + RELOC/fonts/type1/public/cbfonts/grxc0700.pfb + RELOC/fonts/type1/public/cbfonts/grxc0800.pfb + RELOC/fonts/type1/public/cbfonts/grxc0900.pfb + RELOC/fonts/type1/public/cbfonts/grxc1000.pfb + RELOC/fonts/type1/public/cbfonts/grxc1095.pfb + RELOC/fonts/type1/public/cbfonts/grxc1200.pfb + RELOC/fonts/type1/public/cbfonts/grxc1440.pfb + RELOC/fonts/type1/public/cbfonts/grxc1728.pfb + RELOC/fonts/type1/public/cbfonts/grxc2074.pfb + RELOC/fonts/type1/public/cbfonts/grxc2488.pfb + RELOC/fonts/type1/public/cbfonts/grxc2986.pfb + RELOC/fonts/type1/public/cbfonts/grxc3583.pfb + RELOC/fonts/type1/public/cbfonts/grxi0500.pfb + RELOC/fonts/type1/public/cbfonts/grxi0600.pfb + RELOC/fonts/type1/public/cbfonts/grxi0700.pfb + RELOC/fonts/type1/public/cbfonts/grxi0800.pfb + RELOC/fonts/type1/public/cbfonts/grxi0900.pfb + RELOC/fonts/type1/public/cbfonts/grxi1000.pfb + RELOC/fonts/type1/public/cbfonts/grxi1095.pfb + RELOC/fonts/type1/public/cbfonts/grxi1200.pfb + RELOC/fonts/type1/public/cbfonts/grxi1440.pfb + RELOC/fonts/type1/public/cbfonts/grxi1728.pfb + RELOC/fonts/type1/public/cbfonts/grxi2074.pfb + RELOC/fonts/type1/public/cbfonts/grxi2488.pfb + RELOC/fonts/type1/public/cbfonts/grxi2986.pfb + RELOC/fonts/type1/public/cbfonts/grxi3583.pfb + RELOC/fonts/type1/public/cbfonts/grxl0500.pfb + RELOC/fonts/type1/public/cbfonts/grxl0600.pfb + RELOC/fonts/type1/public/cbfonts/grxl0700.pfb + RELOC/fonts/type1/public/cbfonts/grxl0800.pfb + RELOC/fonts/type1/public/cbfonts/grxl0900.pfb + RELOC/fonts/type1/public/cbfonts/grxl1000.pfb + RELOC/fonts/type1/public/cbfonts/grxl1095.pfb + RELOC/fonts/type1/public/cbfonts/grxl1200.pfb + RELOC/fonts/type1/public/cbfonts/grxl1440.pfb + RELOC/fonts/type1/public/cbfonts/grxl1728.pfb + RELOC/fonts/type1/public/cbfonts/grxl2074.pfb + RELOC/fonts/type1/public/cbfonts/grxl2488.pfb + RELOC/fonts/type1/public/cbfonts/grxl2986.pfb + RELOC/fonts/type1/public/cbfonts/grxl3583.pfb + RELOC/fonts/type1/public/cbfonts/grxn0500.pfb + RELOC/fonts/type1/public/cbfonts/grxn0600.pfb + RELOC/fonts/type1/public/cbfonts/grxn0700.pfb + RELOC/fonts/type1/public/cbfonts/grxn0800.pfb + RELOC/fonts/type1/public/cbfonts/grxn0900.pfb + RELOC/fonts/type1/public/cbfonts/grxn1000.pfb + RELOC/fonts/type1/public/cbfonts/grxn1095.pfb + RELOC/fonts/type1/public/cbfonts/grxn1200.pfb + RELOC/fonts/type1/public/cbfonts/grxn1440.pfb + RELOC/fonts/type1/public/cbfonts/grxn1728.pfb + RELOC/fonts/type1/public/cbfonts/grxn2074.pfb + RELOC/fonts/type1/public/cbfonts/grxn2488.pfb + RELOC/fonts/type1/public/cbfonts/grxn2986.pfb + RELOC/fonts/type1/public/cbfonts/grxn3583.pfb + RELOC/fonts/type1/public/cbfonts/grxo0500.pfb + RELOC/fonts/type1/public/cbfonts/grxo0600.pfb + RELOC/fonts/type1/public/cbfonts/grxo0700.pfb + RELOC/fonts/type1/public/cbfonts/grxo0800.pfb + RELOC/fonts/type1/public/cbfonts/grxo0900.pfb + RELOC/fonts/type1/public/cbfonts/grxo1000.pfb + RELOC/fonts/type1/public/cbfonts/grxo1095.pfb + RELOC/fonts/type1/public/cbfonts/grxo1200.pfb + RELOC/fonts/type1/public/cbfonts/grxo1440.pfb + RELOC/fonts/type1/public/cbfonts/grxo1728.pfb + RELOC/fonts/type1/public/cbfonts/grxo2074.pfb + RELOC/fonts/type1/public/cbfonts/grxo2488.pfb + RELOC/fonts/type1/public/cbfonts/grxo2986.pfb + RELOC/fonts/type1/public/cbfonts/grxo3583.pfb + RELOC/fonts/type1/public/cbfonts/grxu0500.pfb + RELOC/fonts/type1/public/cbfonts/grxu0600.pfb + RELOC/fonts/type1/public/cbfonts/grxu0700.pfb + RELOC/fonts/type1/public/cbfonts/grxu0800.pfb + RELOC/fonts/type1/public/cbfonts/grxu0900.pfb + RELOC/fonts/type1/public/cbfonts/grxu1000.pfb + RELOC/fonts/type1/public/cbfonts/grxu1095.pfb + RELOC/fonts/type1/public/cbfonts/grxu1200.pfb + RELOC/fonts/type1/public/cbfonts/grxu1440.pfb + RELOC/fonts/type1/public/cbfonts/grxu1728.pfb + RELOC/fonts/type1/public/cbfonts/grxu2074.pfb + RELOC/fonts/type1/public/cbfonts/grxu2488.pfb + RELOC/fonts/type1/public/cbfonts/grxu2986.pfb + RELOC/fonts/type1/public/cbfonts/grxu3583.pfb + RELOC/fonts/type1/public/cbfonts/gsma0500.pfb + RELOC/fonts/type1/public/cbfonts/gsma0600.pfb + RELOC/fonts/type1/public/cbfonts/gsma0700.pfb + RELOC/fonts/type1/public/cbfonts/gsma0800.pfb + RELOC/fonts/type1/public/cbfonts/gsma0900.pfb + RELOC/fonts/type1/public/cbfonts/gsma1000.pfb + RELOC/fonts/type1/public/cbfonts/gsma1095.pfb + RELOC/fonts/type1/public/cbfonts/gsma1200.pfb + RELOC/fonts/type1/public/cbfonts/gsma1440.pfb + RELOC/fonts/type1/public/cbfonts/gsma1728.pfb + RELOC/fonts/type1/public/cbfonts/gsma2074.pfb + RELOC/fonts/type1/public/cbfonts/gsma2488.pfb + RELOC/fonts/type1/public/cbfonts/gsma2986.pfb + RELOC/fonts/type1/public/cbfonts/gsma3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmc2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmc2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmc2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmc3583.pfb + RELOC/fonts/type1/public/cbfonts/gsme0500.pfb + RELOC/fonts/type1/public/cbfonts/gsme0600.pfb + RELOC/fonts/type1/public/cbfonts/gsme0700.pfb + RELOC/fonts/type1/public/cbfonts/gsme0800.pfb + RELOC/fonts/type1/public/cbfonts/gsme0900.pfb + RELOC/fonts/type1/public/cbfonts/gsme1000.pfb + RELOC/fonts/type1/public/cbfonts/gsme1095.pfb + RELOC/fonts/type1/public/cbfonts/gsme1200.pfb + RELOC/fonts/type1/public/cbfonts/gsme1440.pfb + RELOC/fonts/type1/public/cbfonts/gsme1728.pfb + RELOC/fonts/type1/public/cbfonts/gsme2074.pfb + RELOC/fonts/type1/public/cbfonts/gsme2488.pfb + RELOC/fonts/type1/public/cbfonts/gsme2986.pfb + RELOC/fonts/type1/public/cbfonts/gsme3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmi2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmi2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmi2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmi3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmn2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmn2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmn2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmn3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmo2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmo2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmo2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmo3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmu2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmu2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmu2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmu3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxa2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxa2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxa2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxa3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxc2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxc2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxc2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxc3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxe2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxe2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxe2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxe3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxi2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxi2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxi2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxi3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxn2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxn2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxn2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxn3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxo2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxo2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxo2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxo3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxu2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxu2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxu2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxu3583.pfb + RELOC/fonts/type1/public/cbfonts/gttc0500.pfb + RELOC/fonts/type1/public/cbfonts/gttc0600.pfb + RELOC/fonts/type1/public/cbfonts/gttc0700.pfb + RELOC/fonts/type1/public/cbfonts/gttc0800.pfb + RELOC/fonts/type1/public/cbfonts/gttc0900.pfb + RELOC/fonts/type1/public/cbfonts/gttc1000.pfb + RELOC/fonts/type1/public/cbfonts/gttc1095.pfb + RELOC/fonts/type1/public/cbfonts/gttc1200.pfb + RELOC/fonts/type1/public/cbfonts/gttc1440.pfb + RELOC/fonts/type1/public/cbfonts/gttc1728.pfb + RELOC/fonts/type1/public/cbfonts/gttc2074.pfb + RELOC/fonts/type1/public/cbfonts/gttc2488.pfb + RELOC/fonts/type1/public/cbfonts/gttc2986.pfb + RELOC/fonts/type1/public/cbfonts/gttc3583.pfb + RELOC/fonts/type1/public/cbfonts/gtti0500.pfb + RELOC/fonts/type1/public/cbfonts/gtti0600.pfb + RELOC/fonts/type1/public/cbfonts/gtti0700.pfb + RELOC/fonts/type1/public/cbfonts/gtti0800.pfb + RELOC/fonts/type1/public/cbfonts/gtti0900.pfb + RELOC/fonts/type1/public/cbfonts/gtti1000.pfb + RELOC/fonts/type1/public/cbfonts/gtti1095.pfb + RELOC/fonts/type1/public/cbfonts/gtti1200.pfb + RELOC/fonts/type1/public/cbfonts/gtti1440.pfb + RELOC/fonts/type1/public/cbfonts/gtti1728.pfb + RELOC/fonts/type1/public/cbfonts/gtti2074.pfb + RELOC/fonts/type1/public/cbfonts/gtti2488.pfb + RELOC/fonts/type1/public/cbfonts/gtti2986.pfb + RELOC/fonts/type1/public/cbfonts/gtti3583.pfb + RELOC/fonts/type1/public/cbfonts/gttn0500.pfb + RELOC/fonts/type1/public/cbfonts/gttn0600.pfb + RELOC/fonts/type1/public/cbfonts/gttn0700.pfb + RELOC/fonts/type1/public/cbfonts/gttn0800.pfb + RELOC/fonts/type1/public/cbfonts/gttn0900.pfb + RELOC/fonts/type1/public/cbfonts/gttn1000.pfb + RELOC/fonts/type1/public/cbfonts/gttn1095.pfb + RELOC/fonts/type1/public/cbfonts/gttn1200.pfb + RELOC/fonts/type1/public/cbfonts/gttn1440.pfb + RELOC/fonts/type1/public/cbfonts/gttn1728.pfb + RELOC/fonts/type1/public/cbfonts/gttn2074.pfb + RELOC/fonts/type1/public/cbfonts/gttn2488.pfb + RELOC/fonts/type1/public/cbfonts/gttn2986.pfb + RELOC/fonts/type1/public/cbfonts/gttn3583.pfb + RELOC/fonts/type1/public/cbfonts/gtto0500.pfb + RELOC/fonts/type1/public/cbfonts/gtto0600.pfb + RELOC/fonts/type1/public/cbfonts/gtto0700.pfb + RELOC/fonts/type1/public/cbfonts/gtto0800.pfb + RELOC/fonts/type1/public/cbfonts/gtto0900.pfb + RELOC/fonts/type1/public/cbfonts/gtto1000.pfb + RELOC/fonts/type1/public/cbfonts/gtto1095.pfb + RELOC/fonts/type1/public/cbfonts/gtto1200.pfb + RELOC/fonts/type1/public/cbfonts/gtto1440.pfb + RELOC/fonts/type1/public/cbfonts/gtto1728.pfb + RELOC/fonts/type1/public/cbfonts/gtto2074.pfb + RELOC/fonts/type1/public/cbfonts/gtto2488.pfb + RELOC/fonts/type1/public/cbfonts/gtto2986.pfb + RELOC/fonts/type1/public/cbfonts/gtto3583.pfb + RELOC/fonts/type1/public/cbfonts/gttu0500.pfb + RELOC/fonts/type1/public/cbfonts/gttu0600.pfb + RELOC/fonts/type1/public/cbfonts/gttu0700.pfb + RELOC/fonts/type1/public/cbfonts/gttu0800.pfb + RELOC/fonts/type1/public/cbfonts/gttu0900.pfb + RELOC/fonts/type1/public/cbfonts/gttu1000.pfb + RELOC/fonts/type1/public/cbfonts/gttu1095.pfb + RELOC/fonts/type1/public/cbfonts/gttu1200.pfb + RELOC/fonts/type1/public/cbfonts/gttu1440.pfb + RELOC/fonts/type1/public/cbfonts/gttu1728.pfb + RELOC/fonts/type1/public/cbfonts/gttu2074.pfb + RELOC/fonts/type1/public/cbfonts/gttu2488.pfb + RELOC/fonts/type1/public/cbfonts/gttu2986.pfb + RELOC/fonts/type1/public/cbfonts/gttu3583.pfb +catalogue-also cbfonts-fd +catalogue-ctan /fonts/greek/cbfonts +catalogue-license lppl +catalogue-topics greek font font-greek font-mf font-type1 + +name cbfonts-fd +category Package +revision 54080 +shortdesc LaTeX font description files for the CB Greek fonts +relocated 1 +longdesc The package provides font description files for all the many +longdesc shapes available from the cbfonts collection. The files provide +longdesc the means whereby the NFSS knows which fonts a LaTeX user is +longdesc requesting. The package depends on cbgreek-complete. +containersize 3312 +containerchecksum af6f11a601f2ea3fd38d639beb3f836becb71aca7d282f5d0c7e020e9f73269c560ae3ac08d93706731872bd1a271c75724e1049c2dbf65e9ac0ea8f6c9b4724 +doccontainersize 444288 +doccontainerchecksum 8fb94b444966e6e3bd63b5b3ea62f661c038767222b08df2bd288965902cf152e1af4ad4b9d69859d11b1b558f4015b2f304afb0a43c356ff663498d830e1554 +docfiles size=111 + RELOC/doc/fonts/cbfonts-fd/README details="Readme" + RELOC/doc/fonts/cbfonts-fd/cbfonts-fd.pdf details="Package documentation" + RELOC/doc/fonts/cbfonts-fd/manifest.txt +srccontainersize 8568 +srccontainerchecksum d21d517c40e8c5058c8e610ee0a8ebaf19d97a6b284b9d16ceafb87ec401b4110a483f6ed00ac626fc5ed2e1fd97f9cce99df5cc12e73ee7b92b04c84972f280 +srcfiles size=10 + RELOC/source/fonts/cbfonts-fd/cbfonts-fd.fdd +runfiles size=13 + RELOC/tex/latex/cbfonts-fd/lgrcmr.fd + RELOC/tex/latex/cbfonts-fd/lgrcmro.fd + RELOC/tex/latex/cbfonts-fd/lgrcmss.fd + RELOC/tex/latex/cbfonts-fd/lgrcmtt.fd + RELOC/tex/latex/cbfonts-fd/lgrlcmss.fd + RELOC/tex/latex/cbfonts-fd/lgrlcmtt.fd + RELOC/tex/latex/cbfonts-fd/lgrlmr.fd + RELOC/tex/latex/cbfonts-fd/lgrlmro.fd + RELOC/tex/latex/cbfonts-fd/lgrlmss.fd + RELOC/tex/latex/cbfonts-fd/lgrlmtt.fd +catalogue-also cbgreek-complete +catalogue-ctan /fonts/greek/cbfonts-fd +catalogue-license lppl1.3 +catalogue-topics font-supp font-greek +catalogue-version 1.2 + +name cc-pl +category Package +revision 58602 +shortdesc Polish extension of Computer Concrete fonts +relocated 1 +longdesc These Metafont sources rely on the availability of the Metafont +longdesc 'Polish' fonts and of the Metafont sources of the original +longdesc Concrete fonts. Adobe Type 1 versions of the fonts are +longdesc included. +execute addMixedMap ccpl.map +containersize 426652 +containerchecksum 3d0bef5ca5c37f1cae98bd0555d714ed4408b6fde4ffcfa78cf2512114c9aa09b81b23bc6d76705f64dd08ea493add2027e7af997357ff5c4cc360deae11ba92 +doccontainersize 1588 +doccontainerchecksum f5503008430e969a604973e4481f8ab51269a2c3570f757787eb7a1a9d11b8508ec7ca1709a21b9e2299059a9c8ca20e5806093bd24166eb44e167c06e4fd0ee +docfiles size=1 + RELOC/doc/fonts/cc-pl/README details="Readme" +runfiles size=150 + RELOC/fonts/map/dvips/cc-pl/ccpl.map + RELOC/fonts/source/public/cc-pl/fic_mic.mf + RELOC/fonts/source/public/cc-pl/pccsc10.mf + RELOC/fonts/source/public/cc-pl/pcmi10.mf + RELOC/fonts/source/public/cc-pl/pcr10.mf + RELOC/fonts/source/public/cc-pl/pcr5.mf + RELOC/fonts/source/public/cc-pl/pcr6.mf + RELOC/fonts/source/public/cc-pl/pcr7.mf + RELOC/fonts/source/public/cc-pl/pcr8.mf + RELOC/fonts/source/public/cc-pl/pcr9.mf + RELOC/fonts/source/public/cc-pl/pcsl10.mf + RELOC/fonts/source/public/cc-pl/pcslc9.mf + RELOC/fonts/source/public/cc-pl/pcti10.mf + RELOC/fonts/tfm/public/cc-pl/pccsc10.tfm + RELOC/fonts/tfm/public/cc-pl/pcmi10.tfm + RELOC/fonts/tfm/public/cc-pl/pcr10.tfm + RELOC/fonts/tfm/public/cc-pl/pcr5.tfm + RELOC/fonts/tfm/public/cc-pl/pcr6.tfm + RELOC/fonts/tfm/public/cc-pl/pcr7.tfm + RELOC/fonts/tfm/public/cc-pl/pcr8.tfm + RELOC/fonts/tfm/public/cc-pl/pcr9.tfm + RELOC/fonts/tfm/public/cc-pl/pcsl10.tfm + RELOC/fonts/tfm/public/cc-pl/pcslc9.tfm + RELOC/fonts/tfm/public/cc-pl/pcti10.tfm + RELOC/fonts/type1/public/cc-pl/pccsc10.pfb + RELOC/fonts/type1/public/cc-pl/pcmi10.pfb + RELOC/fonts/type1/public/cc-pl/pcr10.pfb + RELOC/fonts/type1/public/cc-pl/pcr5.pfb + RELOC/fonts/type1/public/cc-pl/pcr6.pfb + RELOC/fonts/type1/public/cc-pl/pcr7.pfb + RELOC/fonts/type1/public/cc-pl/pcr8.pfb + RELOC/fonts/type1/public/cc-pl/pcr9.pfb + RELOC/fonts/type1/public/cc-pl/pcsl10.pfb + RELOC/fonts/type1/public/cc-pl/pcslc9.pfb + RELOC/fonts/type1/public/cc-pl/pcti10.pfb +catalogue-ctan /fonts/cc-pl +catalogue-license pd +catalogue-topics polish font font-serif font-mf font-type1 +catalogue-version 1.02.3 + +name ccaption +category Package +revision 23443 +shortdesc Continuation headings and legends for floats +relocated 1 +longdesc A package providing commands for 'continuation captions', +longdesc unnumbered captions, and also a non-specific legend heading for +longdesc any environment. Methods are also provided to define captions +longdesc for use outside float (e.g., figure and table) environments, +longdesc and to define new float environments and Lists of Floats. Tools +longdesc are provided for specifying your own captioning styles. +containersize 5484 +containerchecksum f002efbd7af71c108e041daaa182a4432d1886a058cbfda2da7fcf6c0f75a217d04bbb8498deed29c7f03a8d22d4d2e24327e6a3b284d38c7b37200431f17918 +doccontainersize 468272 +doccontainerchecksum a3d2f92700e3421c37a666093944ae297ed39a35d99d6971978f5707619046603fad06b84aad55f41d3af08725535470ccec6d6bde3ab8f1ce4f0a53038e9ca8 +docfiles size=116 + RELOC/doc/latex/ccaption/README details="Readme" + RELOC/doc/latex/ccaption/ccaption.pdf details="Package documentation" +srccontainersize 34500 +srccontainerchecksum 83a8ab7b7b72c156ea07bf7d19c759d342187440574dc82dc0f5e683abe490c3b408d672464d142922229593a1f8363881a48475da0884920484c6057a40358a +srcfiles size=37 + RELOC/source/latex/ccaption/ccaption.dtx + RELOC/source/latex/ccaption/ccaption.ins +runfiles size=6 + RELOC/tex/latex/ccaption/ccaption.sty +catalogue-also float caption +catalogue-ctan /macros/latex/contrib/ccaption +catalogue-license lppl1.3 +catalogue-topics caption +catalogue-version 3.2c + +name ccfonts +category Package +revision 54686 +shortdesc Support for Concrete text and math fonts in LaTeX +relocated 1 +longdesc LaTeX font definition files for the Concrete fonts and a LaTeX +longdesc package for typesetting documents using Concrete as the default +longdesc font family. The files support OT1, T1, TS1, and Concrete +longdesc mathematics including AMS fonts (Ulrik Vieth's concmath). +containersize 2124 +containerchecksum abac4ad2c89e2d07281de95ac76922066713c511a77d067219dee9fff64e6ed54870da0db5cf83bacca89af11b2e720e352638eee1adfd4265e63a9e887ade14 +doccontainersize 197776 +doccontainerchecksum a327a036c804040973462e836c6028895cbb3897047785c1e1f9152ba85393aaa0ab6c876b8878e58bc8e124656ba22e38bcc90ca75ba8d7d74fbbb66a1a4955 +docfiles size=50 + RELOC/doc/latex/ccfonts/README details="Readme" + RELOC/doc/latex/ccfonts/ccfonts.pdf details="Package documentation" +srccontainersize 5756 +srccontainerchecksum fe3f77676ac1ddad784ef83cbe96e5a70219b7f7fd5b624f7338a95655851cac79d7c28951ac4ec1a62fbb62cd087b22bf38712b0130e05a833f2d46195d62ec +srcfiles size=6 + RELOC/source/latex/ccfonts/cc.fdd + RELOC/source/latex/ccfonts/ccfonts.dtx + RELOC/source/latex/ccfonts/ccfonts.ins +runfiles size=3 + RELOC/tex/latex/ccfonts/ccfonts.sty + RELOC/tex/latex/ccfonts/t1ccr.fd + RELOC/tex/latex/ccfonts/ts1ccr.fd +catalogue-also ecc +catalogue-ctan /macros/latex/contrib/ccfonts +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 1.2 + +name ccicons +category Package +revision 54512 +shortdesc LaTeX support for Creative Commons icons +relocated 1 +longdesc The package provides the means to typeset Creative Commons +longdesc icons, in documents licensed under CC licences. A font (in +longdesc Adobe Type 1 format) and LaTeX support macros are provided. +execute addMap ccicons.map +containersize 15564 +containerchecksum 4e755538440c87c2bc1f8d57d41ce78ddaeae9a0e3c1c85aeed172c2a25e952963b26245cd1ddc3222285c883ed4574ac4228d17f1263db31cc330bdb1f345a4 +doccontainersize 89352 +doccontainerchecksum 0e4216adcbe01d8feb95d31e2df143ad739f66c2239196f9f5c58638a87d320949256baee32703663d6116bd13b4af607dd38d16d4ccae218af55f5402308c03 +docfiles size=25 + RELOC/doc/fonts/ccicons/FONTLOG.txt + RELOC/doc/fonts/ccicons/OFL.txt + RELOC/doc/latex/ccicons/ccicons.pdf details="Package documentation" +srccontainersize 8828 +srccontainerchecksum af84fa01272028018fbcb4fa9e04971b9580b1e6fd63f0e07419a088005b75e852a122a5ee0416afb7391ff165ae39549f8931a157aae1ea272d97be05132e8d +srcfiles size=9 + RELOC/source/fonts/ccicons/ccicons.sfd + RELOC/source/latex/ccicons/ccicons.dtx + RELOC/source/latex/ccicons/ccicons.ins +runfiles size=10 + RELOC/fonts/enc/dvips/ccicons/ccicons-u.enc + RELOC/fonts/map/dvips/ccicons/ccicons.map + RELOC/fonts/opentype/public/ccicons/ccicons.otf + RELOC/fonts/tfm/public/ccicons/ccicons.tfm + RELOC/fonts/type1/public/ccicons/ccicons.pfb + RELOC/tex/latex/ccicons/ccicons.sty +catalogue-contact-home https://github.com/ummels/ccicons +catalogue-ctan /fonts/ccicons +catalogue-license lppl1.3c ofl +catalogue-topics font font-symbol font-type1 +catalogue-version 1.6 + +name cclicenses +category Package +revision 15878 +shortdesc Typeset Creative Commons licence logos +relocated 1 +longdesc The cclicenses package helps users typesetting Creative Commons +longdesc logos in LaTeX. It defines some commands useful to quickly +longdesc write these logos, related to CC licences versions 1.0 and 2.0. +containersize 1604 +containerchecksum dca388e065610abad24a76f7dc600d9ae659973fbc47f4fc2157958aa2850d9c3bae7811418bf76effaf696386a62584c8a2ff158e98ec7a971bd1dc800424ea +doccontainersize 81072 +doccontainerchecksum eb710fbac41527da39c26d5d27aaa84faf05e380356e9c3bc1a0c0fcb4d2dd5412f304d323ccf13084dfe8d31243698350fbdbefac07fff6cfabceed9f4d842c +docfiles size=25 + RELOC/doc/latex/cclicenses/README details="Readme" + RELOC/doc/latex/cclicenses/cclicenses_short.pdf details="Brief package documentation" +srccontainersize 4060 +srccontainerchecksum d20b1cce1635b415d7368e49a9a32ee3a61efca8d0807b67c7e92ed59604fda1fd9b9d168ac23d54b90e396d971fd421463eb1ec77009d3e077e474166afed55 +srcfiles size=4 + RELOC/source/latex/cclicenses/cclicenses.dtx + RELOC/source/latex/cclicenses/cclicenses.ins +runfiles size=2 + RELOC/tex/latex/cclicenses/cclicenses.sty +catalogue-ctan /macros/latex/contrib/cclicenses +catalogue-license lppl +catalogue-topics logo + +name ccool +category Package +revision 56636 +shortdesc A key-value document command parser +relocated 1 +longdesc This package provides a key-value interface, \Ccool, on top of +longdesc xparse's document command parser. Global options control input +longdesc processing and its expansion. By default, they are set to meet +longdesc likely requirements, depending on context: the selected +longdesc language, and which of text and math mode is active. These +longdesc options can be overridden inline. This versality could find its +longdesc use, for example, to encode notational conventions (such as +longdesc \Real - \mathbb{R}) at the point where they are introduced in +longdesc the document ("Let R denote real numbers"). Polymorphic +longdesc commands can be generated by parameterizing the keys (for +longdesc instance, one parameter value for style, another for a +longdesc property). User input to \Ccool can optionally be serialized. +longdesc This can useful for typesetting documents sharing the same +longdesc notation. +containersize 3764 +containerchecksum 4571aa4b0d83f6651784f43e5b9b982a9d42494f9ddd5006a794d4eaa94c4217ef0e85ec2170eb2502c243c02b7b67f0e8dcacdf2ad2714f70e7f6cbbc24aa3b +doccontainersize 810856 +doccontainerchecksum 99c777464f24e2cc5775a342d682f43686d13dd13db606c30126408de8521cf68ae62acdeecf351dee510ab6550b247100bbe6cfdc2e04cbd183270fc91c62af +docfiles size=202 + RELOC/doc/latex/ccool/README.md details="Readme" + RELOC/doc/latex/ccool/ccool-1343e33-8ca.tex + RELOC/doc/latex/ccool/ccool.pdf details="Package documentation" +srccontainersize 16120 +srccontainerchecksum 31f6f051fbff8806df6bc84c03fbf5b33440800cea7083b8d6d36e585140dfe24e7fbb192531614dc65d27f23f53e46349b0c020a2cddf4817fe9d3b7b23be44 +srcfiles size=19 + RELOC/source/latex/ccool/ccool.dtx +runfiles size=3 + RELOC/tex/latex/ccool/ccool.sty +catalogue-also cool +catalogue-contact-repository https://github.com/rogard/ccool +catalogue-ctan /macros/latex/contrib/ccool +catalogue-license lppl1.3c +catalogue-topics macro-def expl3 +catalogue-version 3.1 + +name cd +category Package +revision 34452 +shortdesc Typeset CD covers +relocated 1 +longdesc Normal usage will ordinarily require no more than a simple data +longdesc file per cover; the package will make a full insert for a CD +longdesc case (it copes with both normal and slim cases). +containersize 4380 +containerchecksum 8b47a219e4d40364e1a4ed4d13245c0c9334508ffca0cff565a8d8856aef32184bdf0a19966027fc4e958a06b4f5a53bfb66188c6fd065a1b3b230cf1da2f484 +doccontainersize 72848 +doccontainerchecksum 5ab78083715332130aacf3a97f6280f2533e7f9383c38ddf431d3486c6e88589cc69b7cd760088fbd2928c9b349ff583bc275ce8d80590234deeaf1e1a23b4ca +docfiles size=25 + RELOC/doc/latex/cd/CD.tex + RELOC/doc/latex/cd/CDlist.tex + RELOC/doc/latex/cd/README details="Readme" + RELOC/doc/latex/cd/cd.pdf details="Package documentation" + RELOC/doc/latex/cd/example.dat + RELOC/doc/latex/cd/parsecd.rb + RELOC/doc/latex/cd/slimCD.tex + RELOC/doc/latex/cd/slimCDlist.tex +srccontainersize 9672 +srccontainerchecksum 094b4b41d99fcc81c4c02ec7aeeaa999b3e5ec7dd4984976021a1d75c5bf9c5a3e3f13b0acb939c14f80ec05b3843fda7558aaf7c324315434b69954084c57ed +srcfiles size=10 + RELOC/source/latex/cd/cd.dtx + RELOC/source/latex/cd/cd.ins +runfiles size=6 + RELOC/tex/latex/cd/cd.cls +catalogue-also cdcover +catalogue-ctan /macros/latex/contrib/cd +catalogue-license gpl +catalogue-topics labels +catalogue-version 1.4 + +name cd-cover +category Package +revision 17121 +catalogue cdcover +shortdesc Typeset CD covers +relocated 1 +longdesc The CD-cover class will typeset front and back cover sheets for +longdesc CD jewel cases, or an entire paper cover, or a label for a +longdesc plastic slip-cover. +containersize 3864 +containerchecksum 345b001cd40137d9739a97c3c06549c3c7b761f56f61109dd4908c767151515081defd6c432232ec7a9fdeb8e85e95258ded345facdef0cf6bffa82bb5c39fbe +doccontainersize 303956 +doccontainerchecksum f22c8eccbecb35d4c3c01788c0eb8ca793fbaf7b97e2bd54ec79e78ba10c13a4eef46c5eee70f1550cc7c378bb01926e8eecc6d41916df22a6e615aacd2b1e75 +docfiles size=82 + RELOC/doc/latex/cd-cover/README details="Readme" + RELOC/doc/latex/cd-cover/cd-cover.pdf details="Package documentation" +srccontainersize 12956 +srccontainerchecksum d8ecc73c18376678b2ee97b8bc81aebae7860e40451427e03f382aedbacdbc17a7761e8a78e275470c36927b3461c422bc62462163c6d92c509eb50cfa75598c +srcfiles size=12 + RELOC/source/latex/cd-cover/cd-cover.dtx + RELOC/source/latex/cd-cover/cd-cover.ins +runfiles size=4 + RELOC/tex/latex/cd-cover/cd-cover.cls +catalogue-also cd +catalogue-ctan /macros/latex/contrib/cd-cover +catalogue-license gpl +catalogue-topics covers +catalogue-version 1.0 + +name cdpbundl +category Package +revision 46613 +shortdesc Business letters in the Italian style +relocated 1 +longdesc The C.D.P. Bundle can be used to typeset high-quality business +longdesc letters formatted according to Italian style conventions. It is +longdesc highly configurable, and its modular structure provides you +longdesc with building blocks of increasing level, by means of which you +longdesc can compose a large variety of letters. It is also possible to +longdesc write letters divided into sections and paragraphs, to include +longdesc floating figures and tables, and to have the relevant indexes +longdesc compiled automatically. A single input file can contain several +longdesc letters, and each letter will have its own table of contents, +longdesc etc., independant from the other ones. +containersize 19100 +containerchecksum 142dc5657e1482cdf7392ee7df6967557cf09e5b733b12e8c7559863c2edc66a3439b29c7cf16c2461cc1090090117337f63db899bf7bba0cc23d04bb573c633 +doccontainersize 768180 +doccontainerchecksum 3fbfe5b5a8771bf3a74c6adc7a90e04f6085179c11a6db4ed8ebe644e00e334f447f3d32214d72ac341d18e3c79d3bfcfd788053d2065eeced76ad7c7ce6a9aa +docfiles size=201 + RELOC/doc/latex/cdpbundl/00readme.txt details="Basic introduction" + RELOC/doc/latex/cdpbundl/Makefile + RELOC/doc/latex/cdpbundl/README details="Readme" + RELOC/doc/latex/cdpbundl/cdp-ver-0-36.pdf + RELOC/doc/latex/cdpbundl/cdp-ver-0-36.tex + RELOC/doc/latex/cdpbundl/cdpbundl-doc.pdf details="Package overview" + RELOC/doc/latex/cdpbundl/manifest.txt +srccontainersize 68824 +srccontainerchecksum 579575c916a417be5d097d7e766c0cc599856d0b2aa3d4eae5880748c57c7735457aed493d3818974f25f07990b7496b6c5a92ceee39e0116510c420ae69d81f +srcfiles size=75 + RELOC/source/latex/cdpbundl/cdpbundl.dtx + RELOC/source/latex/cdpbundl/cdpbundl.ins +runfiles size=28 + RELOC/tex/latex/cdpbundl/articoletteracdp.cls + RELOC/tex/latex/cdpbundl/cdpaddon.sty + RELOC/tex/latex/cdpbundl/cdpbabel.sty + RELOC/tex/latex/cdpbundl/cdpnamesenglish.ldf + RELOC/tex/latex/cdpbundl/cdpnamesitalian.ldf + RELOC/tex/latex/cdpbundl/cdpshues-example.def + RELOC/tex/latex/cdpbundl/cdpshues.cfg + RELOC/tex/latex/cdpbundl/epson-stylus-740.def + RELOC/tex/latex/cdpbundl/hp-laserjet-4500.def + RELOC/tex/latex/cdpbundl/letteracdp.cls +catalogue-ctan /macros/latex/contrib/cdpbundl +catalogue-license lppl +catalogue-topics letter +catalogue-version 0.36d + +name cell +category Package +revision 42428 +shortdesc Bibliography style for Cell +relocated 1 +longdesc This is an "apa-like" style (cf. apalike.bst in the BibTeX +longdesc distribution), developed from the same author's JMB style. A +longdesc supporting LaTeX package is also provided. +containersize 11228 +containerchecksum 917431174b203fd839d3cf81ed965cc654d66597246ef7a4f9f3c3a945397b546eef1e7bfc4f9fb52889e149ee2fd195dd559c317472831e66e0fc3253a6c22b +doccontainersize 480 +doccontainerchecksum 3cbf1ffa3902f49c155f2ee6b13e24b9abcbdf50da4668042dbc720ef20f483e230fd2ffdc8448007df7ced1ed34077811199cda4fbb35c104dce73084215bf4 +docfiles size=1 + RELOC/doc/latex/cell/README details="Readme" +runfiles size=10 + RELOC/bibtex/bst/cell/cell.bst + RELOC/tex/latex/cell/cell.sty +catalogue-ctan /macros/latex/contrib/cell +catalogue-license pd +catalogue-topics bibtex-sty + +name cellprops +category Package +revision 57599 +shortdesc Accept CSS-like selectors in tabular, array, ... +relocated 1 +longdesc This package reworks the internals of tabular, array, and +longdesc similar constructs, and adds a \cellprops command accepting +longdesc CSS-like selectors and properties. It depends on mdwtab, +longdesc xcolor, expl3, and xparse. +containersize 6992 +containerchecksum 44aa6378b682ec67b547458ffbdd26416c517cbd8df6b021325448696e291e0a8006ec036edcd476f105dc8cf41e556867f8f87fad30da184668050bb2d8d34e +doccontainersize 567908 +doccontainerchecksum 187c5708944d275b5d17f616a2b4bbfc76fcaa0dc9d11da2d67769e46b232656f1bab0602ea94b3fcb1665c92500abb7ffe60645ff267da077ea98f35620efb3 +docfiles size=151 + RELOC/doc/latex/cellprops/LICENSE + RELOC/doc/latex/cellprops/README.md details="Readme" + RELOC/doc/latex/cellprops/cellprops.pdf details="Package documentation" +srccontainersize 13580 +srccontainerchecksum 771b6bc32e1e82a62dc1a93c955b01455b14ca5f9fe43d79f29e131487ec695ac50d6106cfe68c5e1e8fdf6d88980b7d7220613a8132472cc8fcd0d9d3b63045 +srcfiles size=16 + RELOC/source/latex/cellprops/cellprops.dtx + RELOC/source/latex/cellprops/cellprops.ins +runfiles size=10 + RELOC/tex/latex/cellprops/cellprops.sty +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-license gpl3+ +catalogue-topics table expl3 +catalogue-version 2.0 + +name cellspace +category Package +revision 50374 +shortdesc Ensure minimal spacing of table cells +relocated 1 +longdesc It is well known that high or deep cells tend to touch the +longdesc \hlines of a tabular. This package provides a modifier S acting +longdesc on usual column types so that to ensure a minimal distance that +longdesc can be controlled through two parameters \cellspacetoplimit and +longdesc \cellspacebottomlimit. The approach employed by this package is +longdesc noticeably simpler than that of tabls, which considers the +longdesc dimensions of each entire row; whereas you can ask the +longdesc cellspace only to look at the cells of potentially difficult +longdesc columns. The package depends on ifthen, array, calc, and +longdesc xkeyval. +containersize 2448 +containerchecksum d2de1e55913a434eb5b0ab19f615ee325dca750eaa8d61222045220153d521eb8149bf025aa03b1e6a7c625cd994b8bdaea241b227b28d1622c1a75ec72d76fd +doccontainersize 342008 +doccontainerchecksum a1cdfb273e8c32374b03dfcd1d2ccbf12a19918fdeada025cf948fefa624decda07f8c3384a4dd859efdaa9048adcf0c513f59f28e48f31062819c1f9acdcd0d +docfiles size=88 + RELOC/doc/latex/cellspace/README details="Readme" + RELOC/doc/latex/cellspace/cellspace.pdf details="Package documentation" + RELOC/doc/latex/cellspace/cellspace.tex +runfiles size=2 + RELOC/tex/latex/cellspace/cellspace.sty +catalogue-ctan /macros/latex/contrib/cellspace +catalogue-license lppl +catalogue-topics table +catalogue-version 1.8.1 + +name celtic +category Package +revision 39797 +shortdesc A TikZ library for drawing celtic knots +relocated 1 +longdesc The package provides a TikZ library for drawing celtic knots. +containersize 3780 +containerchecksum df78495c7a42a60bf40be46bf14c30d97dcd7c7d1b283f487026f7c3b6a680c750d09527cdd578f69234500eca05764792ddc90ae4dc8005126510ae33fcab4a +doccontainersize 676044 +doccontainerchecksum ed29c2882619bc7f076578c91cfb7e1e83af9e6960ee58af78486c1af6aeeb2b2b6eabdf916fa30ab865991c677955c0fd15a43f128aecb635ee30b3ba514bb3 +docfiles size=172 + RELOC/doc/latex/celtic/README details="Readme" + RELOC/doc/latex/celtic/celtic.pdf details="Package documentation" + RELOC/doc/latex/celtic/celtic_code.pdf + RELOC/doc/latex/celtic/celtic_doc.tex +srccontainersize 8344 +srccontainerchecksum d60ef14ae649288b8b9484844fc9fbf15ce564209c04249b47c3cb0beb96c209c0401cf3f9200ca3be27ba0417c60a2a7a9780341ea311e1bc836753a2df7882 +srcfiles size=10 + RELOC/source/latex/celtic/celtic.dtx + RELOC/source/latex/celtic/celtic.ins +runfiles size=5 + RELOC/tex/latex/celtic/tikzlibraryceltic.code.tex +catalogue-ctan /graphics/pgf/contrib/celtic +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz +catalogue-version 1.1 + +name censor +category Package +revision 49168 +shortdesc Tools for producing redacted documents +relocated 1 +longdesc This package provides simple tools for creating redacted +longdesc documents with blacked-out text. Its tools are useful both for +longdesc creating documents in a restricted environment (for redacted +longdesc release in an unrestricted environment) as well as in an +longdesc unrestricted environment (for eventual transfer and completion +longdesc in the restricted environment). +containersize 2212 +containerchecksum 03b94dea9f5f69f0fde8dbd198e73a1ccc1e7b118b26c8272b217bfe76b7cec7eb0c8706dfbca7dd2a9438ea7337482cb55d631d3cabfaff3dab19d1cc565780 +doccontainersize 195860 +doccontainerchecksum 131b995300b302f482359820bb9dab62188be11f46470e2c9d25753a22d6b81def5e272cdca4f2057adbacb3bb9aa777e758ebfe8a95205db7de36b378369bdb +docfiles size=57 + RELOC/doc/latex/censor/README details="Readme" + RELOC/doc/latex/censor/censor.pdf details="Package documentation" + RELOC/doc/latex/censor/censor.tex +runfiles size=2 + RELOC/tex/latex/censor/censor.sty +catalogue-ctan /macros/latex/contrib/censor +catalogue-license lppl1.3 +catalogue-topics security +catalogue-version 3.22 + +name centeredline +category Package +revision 50971 +shortdesc A macro for centering lines +relocated 1 +longdesc This package provides a macro \centeredline{...} which allows +longdesc to conveniently center a line inside a paragraph while allowing +longdesc usage therein of \verb or other macros changing catcodes. It +longdesc works nicely in list environments, and material whose natural +longdesc width exceeds the current linewidth will get properly centered +longdesc too. +containersize 1168 +containerchecksum 7b1359bd93853830d85fd84c9132d997c1384211c504999f4bc819cd6fe85effbe9f0fba64cc502419484cea3cacedf02beae22052bd10a7a7dbad3f97583731 +doccontainersize 1288 +doccontainerchecksum 237af456a51f539d02d96bc1c2bfd1fde1328cb270985b50a0ee9760f4b6f3675610ca088af135a86f07c02a0cd84c651118726915a0a01546468030acd596f3 +docfiles size=1 + RELOC/doc/latex/centeredline/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/centeredline/centeredline.sty +catalogue-ctan /macros/latex/contrib/centeredline +catalogue-license lppl1.3c +catalogue-topics layout alignment +catalogue-version 1.1 + +name centerlastline +category Package +revision 56644 +shortdesc Paragraphs with last line centered, known as "Spanish" paragraphs +relocated 1 +longdesc This LaTeX package provides a command \centerlastline and an +longdesc environment centerlastline that typeset "Spanish" paragraphs, +longdesc that is paragraphs without indentation, and last line centered, +longdesc useful to finish a large paragraph of text at the end of +longdesc chapters, prologues, etc. +containersize 1092 +containerchecksum a695c30f3b3db43c83e1ae592de9bf32b2856cca45561835e78a03808c7d3d3d8b71f4cb2cf6ecd82ff475012787f953320e4a6a5817ea384382741b7ac88cd1 +doccontainersize 227760 +doccontainerchecksum 850bd95a2ba3c9538e08163b34c900c045808ab69ab021fbb2068e1ab0fd3c5f29fca0b95864203b52704a3c33b81df7ab3cb46eb7296131fd49de71ad0fb876 +docfiles size=57 + RELOC/doc/latex/centerlastline/README details="Readme" + RELOC/doc/latex/centerlastline/centerlastline.pdf details="Package documentation" +srccontainersize 2252 +srccontainerchecksum 0463b1c97472750b66fed17bbe1c644b78da98ce4e02cda29cb58c4ad680124d5c5153c0b3714aaf43aab971fe38b471e7c801885d35434210d61dc43a316a43 +srcfiles size=2 + RELOC/source/latex/centerlastline/centerlastline.dtx + RELOC/source/latex/centerlastline/centerlastline.ins +runfiles size=1 + RELOC/tex/latex/centerlastline/centerlastline.sty +catalogue-ctan /macros/latex/contrib/centerlastline +catalogue-license lppl1.2 +catalogue-topics micro-layout +catalogue-version 1.0 + +name cesenaexam +category Package +revision 44960 +shortdesc A class file to typeset exams +relocated 1 +longdesc This LaTeX document class has been designed to typeset exams. +containersize 3532 +containerchecksum 780962e24e1dc4c6c385c18a6c95b8864b1930b2bc684d9a556a1d6579a2a8d06ec0df3fdb085c3ae8115dc72d06e376ed8ea6f6d801af07dfcbf133c9cb9c67 +doccontainersize 514948 +doccontainerchecksum 72d53ea8ffc1827f3965c6f0728aa5f2cae36f645ab10d78ff8c16a3537f79c6f53fd34f388f2991e5cd2261b366e7746a140285df95d17475adde9cee3fcaed +docfiles size=132 + RELOC/doc/latex/cesenaexam/Makefile + RELOC/doc/latex/cesenaexam/README.md details="Readme" + RELOC/doc/latex/cesenaexam/cesenaexam.pdf details="Package documentation" + RELOC/doc/latex/cesenaexam/cesenaexam_example.pdf details="Example document" + RELOC/doc/latex/cesenaexam/cesenaexam_example.tex +srccontainersize 6452 +srccontainerchecksum e1668fb9f07baea5ccb79e2f61d672f838a83c8d5d01b3da2b3080473865b9bc8acb0165dad58aa46d1ca296e2ef8dc545db3e856d95f6749310a4c90591b4e6 +srcfiles size=7 + RELOC/source/latex/cesenaexam/cesenaexam.dtx + RELOC/source/latex/cesenaexam/cesenaexam.ins +runfiles size=5 + RELOC/tex/latex/cesenaexam/cesenaexam.cls + RELOC/tex/latex/cesenaexam/cesenaexam.sty +catalogue-contact-bugs https://github.com/alexpacini/cesenaexam/issues +catalogue-contact-repository https://github.com/alexpacini/cesenaexam +catalogue-ctan /macros/latex/contrib/cesenaexam +catalogue-license lppl1.3c +catalogue-topics exam class +catalogue-version 0.2 + +name cfr-initials +category Package +revision 36728 +shortdesc LaTeX packages for use of initials +relocated 1 +longdesc This is a set of 23 tiny packages designed to make it easier to +longdesc use fonts from the initials package in LaTeX, e.g. with the +longdesc lettrine package. It is a response to comments on an answer at +longdesc TeX Stack Exchange (http://tex.stackexchange.com/a/236410/) +longdesc requesting sample package files for others to copy. I had +longdesc previously assumed these were too trivial to be of interest, +longdesc but if they would be useful, then I would prefer them to be +longdesc generally available via CTAN. +containersize 2332 +containerchecksum d67830168afffe72ef37784db45176528065210d4956b4aef2a166d41c886f5b3874e0878da9c56302412cf5939291451e1e20ba3e676429c598342982b64083 +doccontainersize 687232 +doccontainerchecksum 0d628f9134254a92c7b88d0744b588bb197c6850d7d5e44a90e91c1ed128625c7add731916b727c2d3b532ade017daaf17f45e446e4bc6f0e447bb5fdb770066 +docfiles size=171 + RELOC/doc/latex/cfr-initials/README details="Readme" + RELOC/doc/latex/cfr-initials/cfr-initials.pdf details="Package documentation" + RELOC/doc/latex/cfr-initials/cfr-initials.tex + RELOC/doc/latex/cfr-initials/manifest.txt +runfiles size=23 + RELOC/tex/latex/cfr-initials/Acorn.sty + RELOC/tex/latex/cfr-initials/AnnSton.sty + RELOC/tex/latex/cfr-initials/ArtNouv.sty + RELOC/tex/latex/cfr-initials/ArtNouvc.sty + RELOC/tex/latex/cfr-initials/Carrickc.sty + RELOC/tex/latex/cfr-initials/Eichenla.sty + RELOC/tex/latex/cfr-initials/Eileen.sty + RELOC/tex/latex/cfr-initials/EileenBl.sty + RELOC/tex/latex/cfr-initials/Elzevier.sty + RELOC/tex/latex/cfr-initials/GotIn.sty + RELOC/tex/latex/cfr-initials/GoudyIn.sty + RELOC/tex/latex/cfr-initials/Kinigcap.sty + RELOC/tex/latex/cfr-initials/Konanur.sty + RELOC/tex/latex/cfr-initials/Kramer.sty + RELOC/tex/latex/cfr-initials/MorrisIn.sty + RELOC/tex/latex/cfr-initials/Nouveaud.sty + RELOC/tex/latex/cfr-initials/Romantik.sty + RELOC/tex/latex/cfr-initials/Rothdn.sty + RELOC/tex/latex/cfr-initials/Royal.sty + RELOC/tex/latex/cfr-initials/Sanremo.sty + RELOC/tex/latex/cfr-initials/Starburst.sty + RELOC/tex/latex/cfr-initials/Typocaps.sty + RELOC/tex/latex/cfr-initials/Zallman.sty +catalogue-ctan /macros/latex/contrib/cfr-initials +catalogue-license lppl1.3 +catalogue-topics font-supp font-decor +catalogue-version 1.01 + +name cfr-lm +category Package +revision 36195 +shortdesc Enhanced support for the Latin Modern fonts +relocated 1 +longdesc The package supports a number of features of the Latin Modern +longdesc fonts which are not easily accessible via the default (La)TeX +longdesc support provided in the official distribution. In particular, +longdesc the package supports the use of the various styles of digits +longdesc available, small-caps and upright italic shapes, and +longdesc alternative weights and widths. It also supports variable width +longdesc typewriter and the "quotation" font. Version 2.004 of the Latin +longdesc Modern fonts is supported. By default, the package uses +longdesc proportional oldstyle digits and variable width typewriter but +longdesc this can be changed by passing appropriate options to the +longdesc package. The package also supports using (for example) +longdesc different styles of digits within a document so it is possible +longdesc to use proportional oldstyle digits by default, say, but +longdesc tabular lining digits within a particular table. The package +longdesc requires the official Latin Modern distribution, including its +longdesc (La)TeX support. The package relies on the availability of both +longdesc the fonts themselves and the official font support files. The +longdesc package also makes use of the nfssext-cfr package. Only the T1 +longdesc and TS1 encodings are supported for text fonts. The set up of +longdesc fonts for mathematics is identical to that provided by Latin +longdesc Modern. +execute addMap clm.map +containersize 136092 +containerchecksum 02e30f6d6d19bede2121ee0a8db20c3d96c26ef000ffeab08e800bb1da994dfa2cb356a6d67c815e8579566cf97b33b956c79940de61725524c4a239f7c1a251 +doccontainersize 2524956 +doccontainerchecksum 32488ecec8a781f5548419a782775725e6b32276bab5e1d7f660b99468d47e71087fb35b8f4534f874b1dcf236d04eae9d7920fcf0bb46e139a4e7fedc415ef1 +docfiles size=670 + RELOC/doc/fonts/cfr-lm/README details="Readme" + RELOC/doc/fonts/cfr-lm/cfr-lm.pdf details="Package documentation" + RELOC/doc/fonts/cfr-lm/cfr-lm.tex + RELOC/doc/fonts/cfr-lm/clm-test.pdf details="Samples from available fonts" + RELOC/doc/fonts/cfr-lm/clm-test.tex + RELOC/doc/fonts/cfr-lm/manifest.txt +srccontainersize 12588 +srccontainerchecksum 643e7f1b48e3947506e97e1596972b686fab538511c2a0749ad936285c1e097ca8677730ea0748d1def6d6318030e7bb289e55d0c8f0ae9fc01fb308e974c24d +srcfiles size=37 + RELOC/source/fonts/cfr-lm/clm-map.tex + RELOC/source/fonts/cfr-lm/clm-t1-drv.tex + RELOC/source/fonts/cfr-lm/clm-ts1-drv.tex + RELOC/source/fonts/cfr-lm/dotdigits.etx + RELOC/source/fonts/cfr-lm/dotoldstyle.etx + RELOC/source/fonts/cfr-lm/dotprop.etx + RELOC/source/fonts/cfr-lm/dottaboldstyle.etx + RELOC/source/fonts/cfr-lm/t1-clm.etx +runfiles size=1536 + RELOC/fonts/enc/dvips/cfr-lm/dotdigits-clm.enc + RELOC/fonts/enc/dvips/cfr-lm/t1-clm.enc + RELOC/fonts/map/dvips/cfr-lm/clm.map + RELOC/fonts/tfm/public/cfr-lm/clmb28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2i8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2ij8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxi8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxji8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcscj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcscjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsco8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdun2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdun2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunh28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunh2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunh8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunhj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmduno8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssb2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssb2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbx28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbx2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbx8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbxj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssd2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssd2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdc28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdc2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdcj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq2o8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqb2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqb2o8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbx28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbx2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbx8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbxj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcsc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcscj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcsjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcso8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtk8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtkj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtkjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtko8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtl8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlcj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlcjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlco8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtljo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtti8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttij8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtto8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmu28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmu2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmu8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmuj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtkj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtkjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtko8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtlj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtljo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtlo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvttj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvttjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtto8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmb10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx5.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx6.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx7.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbxi10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbxo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmcsco10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmdunh10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmduno10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr5.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr6.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr7.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri7.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssdc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssdo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssq8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssqbo8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssqbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssqo8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtcso10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtlc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtlco10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtti10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtto10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmu10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtto10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmb8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl5.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl6.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl7.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbxi8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbxo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmcsc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmcsco8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmdunh8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmduno8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl5.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl6.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl7.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl7.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssbo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssbx8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssdc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssdo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssq8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssqbo8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssqbx8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssqo8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtcsc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtcso8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtk8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtko8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtl8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtlc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtlco8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtlo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtti8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtto8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmu8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtk8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtko8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtl8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtlo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtt8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtto8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmb10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx5.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx6.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx7.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbxi10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbxo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmcsco10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmdunh10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmduno10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr5.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr6.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr7.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri7.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssdc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssdo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssq8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssqbo8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssqbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssqo8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtcso10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtlc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtlco10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtti10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtto10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmu10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtto10.tfm + RELOC/fonts/vf/public/cfr-lm/clmb28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2i8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2ij8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbxi8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbxji8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcscj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcscjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsco8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdun2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdun2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunh28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunh2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunh8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunhj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmduno8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t5.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t6.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmssb2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssb2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbx28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbx2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbx8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbxj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssd2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssd2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdc28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdc2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdcj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t17.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmssq28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq2o8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqb2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqb2o8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbx28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbx2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbx8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbxj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmtcsc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtcscj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtcsjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtcso8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtk8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtkj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtkjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtko8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtl8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlcj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlcjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlco8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtljo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmtti8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmttij8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmttjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtto8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmu28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmu2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmu8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmuj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtkj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtkjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtko8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtlj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtljo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtlo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvttj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvttjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtto8t10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmb10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx5.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx6.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx7.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbxi10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbxo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmcsc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmcsco10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmdunh10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmduno10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr5.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr6.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr7.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri7.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssbo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssbx10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssdc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssdo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssq8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssqbo8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssqbx8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssqo8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtcsc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtcso10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtk10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtko10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtl10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtlc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtlco10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtlo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtti10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtto10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmu10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtk10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtko10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtl10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtlo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtt10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtto10.vf + RELOC/tex/latex/cfr-lm/cfr-lm.sty + RELOC/tex/latex/cfr-lm/t1clm.fd + RELOC/tex/latex/cfr-lm/t1clm2.fd + RELOC/tex/latex/cfr-lm/t1clm2d.fd + RELOC/tex/latex/cfr-lm/t1clm2dj.fd + RELOC/tex/latex/cfr-lm/t1clm2j.fd + RELOC/tex/latex/cfr-lm/t1clm2jqs.fd + RELOC/tex/latex/cfr-lm/t1clm2js.fd + RELOC/tex/latex/cfr-lm/t1clm2jt.fd + RELOC/tex/latex/cfr-lm/t1clm2jv.fd + RELOC/tex/latex/cfr-lm/t1clm2qs.fd + RELOC/tex/latex/cfr-lm/t1clm2s.fd + RELOC/tex/latex/cfr-lm/t1clm2t.fd + RELOC/tex/latex/cfr-lm/t1clm2v.fd + RELOC/tex/latex/cfr-lm/t1clmd.fd + RELOC/tex/latex/cfr-lm/t1clmdj.fd + RELOC/tex/latex/cfr-lm/t1clmj.fd + RELOC/tex/latex/cfr-lm/t1clmjqs.fd + RELOC/tex/latex/cfr-lm/t1clmjs.fd + RELOC/tex/latex/cfr-lm/t1clmjt.fd + RELOC/tex/latex/cfr-lm/t1clmjv.fd + RELOC/tex/latex/cfr-lm/t1clmqs.fd + RELOC/tex/latex/cfr-lm/t1clms.fd + RELOC/tex/latex/cfr-lm/t1clmt.fd + RELOC/tex/latex/cfr-lm/t1clmv.fd + RELOC/tex/latex/cfr-lm/ts1clm.fd + RELOC/tex/latex/cfr-lm/ts1clm2.fd + RELOC/tex/latex/cfr-lm/ts1clm2d.fd + RELOC/tex/latex/cfr-lm/ts1clm2dj.fd + RELOC/tex/latex/cfr-lm/ts1clm2j.fd + RELOC/tex/latex/cfr-lm/ts1clm2jqs.fd + RELOC/tex/latex/cfr-lm/ts1clm2js.fd + RELOC/tex/latex/cfr-lm/ts1clm2jt.fd + RELOC/tex/latex/cfr-lm/ts1clm2jv.fd + RELOC/tex/latex/cfr-lm/ts1clm2qs.fd + RELOC/tex/latex/cfr-lm/ts1clm2s.fd + RELOC/tex/latex/cfr-lm/ts1clm2t.fd + RELOC/tex/latex/cfr-lm/ts1clm2v.fd + RELOC/tex/latex/cfr-lm/ts1clmd.fd + RELOC/tex/latex/cfr-lm/ts1clmdj.fd + RELOC/tex/latex/cfr-lm/ts1clmj.fd + RELOC/tex/latex/cfr-lm/ts1clmjqs.fd + RELOC/tex/latex/cfr-lm/ts1clmjs.fd + RELOC/tex/latex/cfr-lm/ts1clmjt.fd + RELOC/tex/latex/cfr-lm/ts1clmjv.fd + RELOC/tex/latex/cfr-lm/ts1clmqs.fd + RELOC/tex/latex/cfr-lm/ts1clms.fd + RELOC/tex/latex/cfr-lm/ts1clmt.fd + RELOC/tex/latex/cfr-lm/ts1clmv.fd + RELOC/tex/latex/cfr-lm/uclm.fd + RELOC/tex/latex/cfr-lm/uclm2.fd + RELOC/tex/latex/cfr-lm/uclm2d.fd + RELOC/tex/latex/cfr-lm/uclm2dj.fd + RELOC/tex/latex/cfr-lm/uclm2j.fd + RELOC/tex/latex/cfr-lm/uclm2jqs.fd + RELOC/tex/latex/cfr-lm/uclm2js.fd + RELOC/tex/latex/cfr-lm/uclm2jt.fd + RELOC/tex/latex/cfr-lm/uclm2jv.fd + RELOC/tex/latex/cfr-lm/uclm2qs.fd + RELOC/tex/latex/cfr-lm/uclm2s.fd + RELOC/tex/latex/cfr-lm/uclm2t.fd + RELOC/tex/latex/cfr-lm/uclm2v.fd + RELOC/tex/latex/cfr-lm/uclmd.fd + RELOC/tex/latex/cfr-lm/uclmdj.fd + RELOC/tex/latex/cfr-lm/uclmj.fd + RELOC/tex/latex/cfr-lm/uclmjqs.fd + RELOC/tex/latex/cfr-lm/uclmjs.fd + RELOC/tex/latex/cfr-lm/uclmjt.fd + RELOC/tex/latex/cfr-lm/uclmjv.fd + RELOC/tex/latex/cfr-lm/uclmqs.fd + RELOC/tex/latex/cfr-lm/uclms.fd + RELOC/tex/latex/cfr-lm/uclmt.fd + RELOC/tex/latex/cfr-lm/uclmv.fd +catalogue-ctan /fonts/cfr-lm +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 1.5 + +name changebar +category Package +revision 46919 +shortdesc Generate changebars in LaTeX documents +relocated 1 +longdesc Identify areas of text to be marked with changebars with the +longdesc \cbstart and \cbend commands; the bars may be coloured. The +longdesc package uses 'drivers' to place the bars; the available drivers +longdesc can work with dvitoln03, dvitops, dvips, the emTeX and TeXtures +longdesc DVI drivers, and VTeX and pdfTeX. +containersize 7032 +containerchecksum fa75f75aead49adb949e0bb5b5c116387e14b5fcf804502e12b7214a2638ec2032699125adc6ba8c528445c9f5c552ec744007530d1e5a69159f1041d2b7bceb +doccontainersize 636464 +doccontainerchecksum f25c8bd3cb493bfe8446d98f3c599ec002f818daecac76ec4f08d19bfd15581bf8bf8970fd145886a42c51cd40a53df7bfc2e10641df2f4c2cdcd8aa02bf6c30 +docfiles size=199 + RELOC/doc/latex/changebar/CATALOG + RELOC/doc/latex/changebar/MANIFEST + RELOC/doc/latex/changebar/README details="Readme" + RELOC/doc/latex/changebar/cbtest1-ltx.pdf + RELOC/doc/latex/changebar/cbtest1-pdf.pdf + RELOC/doc/latex/changebar/cbtest1.tex + RELOC/doc/latex/changebar/cbtest1good.pdf + RELOC/doc/latex/changebar/cbtest1wrong.pdf + RELOC/doc/latex/changebar/cbtest2-ltx.pdf + RELOC/doc/latex/changebar/cbtest2-pdf.pdf + RELOC/doc/latex/changebar/cbtest2.tex + RELOC/doc/latex/changebar/changebar.bug + RELOC/doc/latex/changebar/changebar.pdf details="Package documentation" + RELOC/doc/latex/changebar/chbar.1 + RELOC/doc/latex/changebar/chbar.sh +srccontainersize 27104 +srccontainerchecksum a7e2519d4dfd4b0b12a9cd8ea59ce32a37e4d0cb6e637b659e93ea5b296bed21298f8dfa13a13798eb87ce0ea0719546f721875a4115c62cf0ea6110d9ac8f76 +srcfiles size=31 + RELOC/source/latex/changebar/changebar.dtx + RELOC/source/latex/changebar/changebar.ins +runfiles size=9 + RELOC/tex/latex/changebar/changebar.sty +catalogue-also chbar xechangebar backgrnd +catalogue-ctan /macros/latex/contrib/changebar +catalogue-license lppl1.3 +catalogue-topics editorial +catalogue-version 3.6c + +name changelayout +category Package +revision 16094 +shortdesc Change the layout of individual pages and their text +relocated 1 +longdesc The package is an extension of the changepage package to permit +longdesc the user to change the layout of individual pages and their +longdesc texts. +containersize 3872 +containerchecksum c6852a40bc8415656b8137cfb90a79cff8f8e9938979eba4e02dadb3c5d1ffef60966f9e5779696402f2b9344026ebc1e22ddeb9dba856d779317ca801f26e7e +doccontainersize 57396 +doccontainerchecksum bb81e02317d12b4dae8b0886ac3222849a457563ee8c43e09495596c56482202bb702352a8551f5d760ee41a82dde6b3f3c2bf57b4671831a25805d44e8705de +docfiles size=19 + RELOC/doc/latex/changelayout/README details="Readme" + RELOC/doc/latex/changelayout/changelayout-guide.pdf details="Package example (see code for details)" + RELOC/doc/latex/changelayout/changelayout-guide.tex +runfiles size=5 + RELOC/tex/latex/changelayout/changelayout.sty +catalogue-ctan /macros/latex/contrib/changelayout +catalogue-license lppl +catalogue-topics geometry-adj +catalogue-version 1.0 + +name changelog +category Package +revision 56338 +shortdesc Provides a changelog environment +relocated 1 +longdesc This package provides a changelog environment (which itself +longdesc provides a version environment) to represent a changelog. The +longdesc package supports multiple authors, unreleased changes, and +longdesc yanked (revoked) releases. Inspired by keepachangelog.com. +containersize 3024 +containerchecksum f91facbc1ee2f959fb9d4ea679b0d2f9b740664e7b7941a02a87c1df23545591e0f355713f35a7c01504105dcfd33820dfef266529be4965b606bb1647c7c503 +doccontainersize 164420 +doccontainerchecksum d3e62f5756bb5c0159523bb23d9c3c9f05725b2756913747410f6e58d41924b88aeb9746faf1bed8847a51295963d30cdfa8d6bb72df423ec2af899f1e399e5e +docfiles size=55 + RELOC/doc/latex/changelog/LICENSE.txt + RELOC/doc/latex/changelog/README.md details="Readme" + RELOC/doc/latex/changelog/changelog.pdf details="Package documentation" + RELOC/doc/latex/changelog/changelog.tex + RELOC/doc/latex/changelog/example.pdf + RELOC/doc/latex/changelog/example.tex + RELOC/doc/latex/changelog/screenshot.png +runfiles size=3 + RELOC/tex/latex/changelog/changelog.sty +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-license gpl3 +catalogue-topics version-control doc-mgmt +catalogue-version 2.4.0 + +name changepage +category Package +revision 15878 +shortdesc Margin adjustment and detection of odd/even pages +relocated 1 +longdesc The package provides commands to change the page layout in the +longdesc middle of a document, and to robustly check for typesetting on +longdesc odd or even pages. Instructions for use are at the end of the +longdesc file. The package is an extraction of code from the memoir +longdesc class, whose user interface it shares. It is intended the this +longdesc package will eventually replace the chngpage package, which is +longdesc distributed with the package. +containersize 2612 +containerchecksum 0ef1d3370affd4ffc2ef77031a8713b5c663263802d67142b10fa7fc025569b3914dbbaa5e71e2c643718940a0cb89194d79ec83a83b93fcf5d57e0bfbbdbb46 +doccontainersize 274712 +doccontainerchecksum e3894d3a475f132e2242a6402899e8b9b6045681ce1fdb05fc5b0570e4d6b8b6980c2b5f5953602690250826db0e7dc9bab2f235d39fa5bda0e1161fd781478f +docfiles size=87 + RELOC/doc/latex/changepage/README details="Readme" + RELOC/doc/latex/changepage/changepage.pdf details="Package documentation" +srccontainersize 5956 +srccontainerchecksum 45ba09248231ad1bf14dfa553b11172e610ae8f46948451437ce3a88521f84791ae149a83c1ff104dd0f00ea6a1a029e816ab7dbe1e38b9eb97902c4a9b9b312 +srcfiles size=6 + RELOC/source/latex/changepage/changepage.ins + RELOC/source/latex/changepage/changepage.tex +runfiles size=4 + RELOC/tex/latex/changepage/changepage.sty + RELOC/tex/latex/changepage/chngpage.sty +catalogue-ctan /macros/latex/contrib/changepage +catalogue-license lppl1.3 +catalogue-topics geometry-adj +catalogue-version 1.0c + +name changes +category Package +revision 58773 +shortdesc Manual change markup +relocated 1 +longdesc The package allows the user to manually markup changes of text, +longdesc such as additions, deletions, or replacements. Changed text is +longdesc shown in a different color; deleted text is striked out. +longdesc Additionally, text can be highlighted and/or commented. The +longdesc package allows free definition of additional authors and their +longdesc associated color. It also allows you to change the markup of +longdesc changes, authors, highlights or comments. A Python script is +longdesc provided for removing the changes. +containersize 7892 +containerchecksum 946a37d1b66fd2fa900a6683d08ccdabc88304c9dcb9d48a3f6b2d83208f73cb3b9f7d2c8e86565db16356e3a1b128e53f5d8ddfc6979129ed30e56f120b9442 +doccontainersize 2433612 +doccontainerchecksum a653f0e5f3b03252d30d24dec3a6623621858b433734c437a3ae6bd56e293ab00503fb7e2a92e51a0f88ed906fc0c05484577fb09c5348a44248eb7b12f41cf0 +docfiles size=2257 + RELOC/doc/latex/changes/README details="Readme" language="en" + RELOC/doc/latex/changes/changes.english.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/changes/changes.english.withcode.pdf details="Package documentation, with code listing (English)" language="en" + RELOC/doc/latex/changes/changes.ngerman.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.bf.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.bf.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.colored.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.colored.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.dashuline.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.dashuline.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.dotuline.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.dotuline.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.em.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.em.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.it.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.it.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.sl.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.sl.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.uline.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.uline.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.uuline.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.uuline.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.uwave.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.uwave.tex + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.addedmarkup.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkup.brackets.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkup.brackets.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkup.footnote.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkup.footnote.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkup.none.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkup.none.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkup.subscript.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkup.subscript.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkup.superscript.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkup.superscript.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkup.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkup.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkupposition.left.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkupposition.left.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkupposition.right.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkupposition.right.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkupposition.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkupposition.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkuptext.id.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkuptext.id.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkuptext.name.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkuptext.name.tex + RELOC/doc/latex/changes/examples/changes.example.authormarkuptext.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.authormarkuptext.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.always.pdf + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.always.tex + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.ifneeded.pdf + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.ifneeded.tex + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.none.pdf + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.none.tex + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.commandnameprefix.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.footnote.pdf + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.footnote.tex + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.margin.pdf + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.margin.tex + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.todo.pdf + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.todo.tex + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.uwave.pdf + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.uwave.tex + RELOC/doc/latex/changes/examples/changes.example.defaultcolor.pdf + RELOC/doc/latex/changes/examples/changes.example.defaultcolor.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.bf.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.bf.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.colored.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.colored.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.dashuline.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.dashuline.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.dotuline.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.dotuline.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.em.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.em.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.it.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.it.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.sl.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.sl.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.sout.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.sout.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.uline.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.uline.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.uuline.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.uuline.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.uwave.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.uwave.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.xout.pdf + RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.xout.tex + RELOC/doc/latex/changes/examples/changes.example.draft.pdf + RELOC/doc/latex/changes/examples/changes.example.draft.tex + RELOC/doc/latex/changes/examples/changes.example.final.pdf + RELOC/doc/latex/changes/examples/changes.example.final.tex + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.background.pdf + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.background.tex + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.uuline.pdf + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.uuline.tex + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.uwave.pdf + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.uwave.tex + RELOC/doc/latex/changes/examples/changes.example.listofchanges.all.pdf + RELOC/doc/latex/changes/examples/changes.example.listofchanges.all.tex + RELOC/doc/latex/changes/examples/changes.example.listofchanges.compactsummary.pdf + RELOC/doc/latex/changes/examples/changes.example.listofchanges.compactsummary.tex + RELOC/doc/latex/changes/examples/changes.example.listofchanges.list.pdf + RELOC/doc/latex/changes/examples/changes.example.listofchanges.list.tex + RELOC/doc/latex/changes/examples/changes.example.listofchanges.show.pdf + RELOC/doc/latex/changes/examples/changes.example.listofchanges.show.tex + RELOC/doc/latex/changes/examples/changes.example.listofchanges.summary.pdf + RELOC/doc/latex/changes/examples/changes.example.listofchanges.summary.tex + RELOC/doc/latex/changes/examples/changes.example.listofchanges.title.pdf + RELOC/doc/latex/changes/examples/changes.example.listofchanges.title.tex + RELOC/doc/latex/changes/examples/changes.example.listofchanges.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.listofchanges.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.markup.bfit.pdf + RELOC/doc/latex/changes/examples/changes.example.markup.bfit.tex + RELOC/doc/latex/changes/examples/changes.example.markup.default.pdf + RELOC/doc/latex/changes/examples/changes.example.markup.default.tex + RELOC/doc/latex/changes/examples/changes.example.markup.nocolor.pdf + RELOC/doc/latex/changes/examples/changes.example.markup.nocolor.tex + RELOC/doc/latex/changes/examples/changes.example.markup.underlined.pdf + RELOC/doc/latex/changes/examples/changes.example.markup.underlined.tex + RELOC/doc/latex/changes/examples/changes.example.markup.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.markup.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.packageoptions.todonotes.pdf + RELOC/doc/latex/changes/examples/changes.example.packageoptions.todonotes.tex + RELOC/doc/latex/changes/examples/changes.example.packageoptions.truncate.pdf + RELOC/doc/latex/changes/examples/changes.example.packageoptions.truncate.tex + RELOC/doc/latex/changes/examples/changes.example.packageoptions.ulem.pdf + RELOC/doc/latex/changes/examples/changes.example.packageoptions.ulem.tex + RELOC/doc/latex/changes/examples/changes.example.packageoptions.xcolor.pdf + RELOC/doc/latex/changes/examples/changes.example.packageoptions.xcolor.tex + RELOC/doc/latex/changes/examples/changes.example.screenshot.pdf + RELOC/doc/latex/changes/examples/changes.example.screenshot.tex + RELOC/doc/latex/changes/examples/changes.example.setaddedmarkup.pdf + RELOC/doc/latex/changes/examples/changes.example.setaddedmarkup.tex + RELOC/doc/latex/changes/examples/changes.example.setauthormarkup.pdf + RELOC/doc/latex/changes/examples/changes.example.setauthormarkup.tex + RELOC/doc/latex/changes/examples/changes.example.setauthormarkupposition.pdf + RELOC/doc/latex/changes/examples/changes.example.setauthormarkupposition.tex + RELOC/doc/latex/changes/examples/changes.example.setauthormarkuptext.pdf + RELOC/doc/latex/changes/examples/changes.example.setauthormarkuptext.tex + RELOC/doc/latex/changes/examples/changes.example.setcommentmarkup.pdf + RELOC/doc/latex/changes/examples/changes.example.setcommentmarkup.tex + RELOC/doc/latex/changes/examples/changes.example.setdeletedmarkup.pdf + RELOC/doc/latex/changes/examples/changes.example.setdeletedmarkup.tex + RELOC/doc/latex/changes/examples/changes.example.sethighlightmarkup.pdf + RELOC/doc/latex/changes/examples/changes.example.sethighlightmarkup.tex + RELOC/doc/latex/changes/examples/changes.example.setsocextension.pdf + RELOC/doc/latex/changes/examples/changes.example.setsocextension.tex + RELOC/doc/latex/changes/examples/changes.example.setsummarytowidth.pdf + RELOC/doc/latex/changes/examples/changes.example.setsummarytowidth.tex + RELOC/doc/latex/changes/examples/changes.example.setsummarywidth.pdf + RELOC/doc/latex/changes/examples/changes.example.setsummarywidth.tex + RELOC/doc/latex/changes/examples/changes.example.settruncatewidth.pdf + RELOC/doc/latex/changes/examples/changes.example.settruncatewidth.tex + RELOC/doc/latex/changes/examples/changes.example.simple.pdf + RELOC/doc/latex/changes/examples/changes.example.simple.tex + RELOC/doc/latex/changes/userdoc/added_ex.tex + RELOC/doc/latex/changes/userdoc/added_in.tex + RELOC/doc/latex/changes/userdoc/changes.de.tex + RELOC/doc/latex/changes/userdoc/changes.en.tex + RELOC/doc/latex/changes/userdoc/comment_ex.tex + RELOC/doc/latex/changes/userdoc/comment_in.tex + RELOC/doc/latex/changes/userdoc/definechangesauthor_ex.tex + RELOC/doc/latex/changes/userdoc/definechangesauthor_in.tex + RELOC/doc/latex/changes/userdoc/deleted_ex.tex + RELOC/doc/latex/changes/userdoc/deleted_in.tex + RELOC/doc/latex/changes/userdoc/highlight_ex.tex + RELOC/doc/latex/changes/userdoc/highlight_in.tex + RELOC/doc/latex/changes/userdoc/listofchanges_ex.tex + RELOC/doc/latex/changes/userdoc/listofchanges_in.tex + RELOC/doc/latex/changes/userdoc/path_doc_examples_in.tex + RELOC/doc/latex/changes/userdoc/path_script_in.tex + RELOC/doc/latex/changes/userdoc/replaced_ex.tex + RELOC/doc/latex/changes/userdoc/replaced_in.tex + RELOC/doc/latex/changes/userdoc/script_pymergechanges.tex + RELOC/doc/latex/changes/userdoc/script_pymergechanges_empty.tex + RELOC/doc/latex/changes/userdoc/setaddedmarkup_ex.tex + RELOC/doc/latex/changes/userdoc/setaddedmarkup_in.tex + RELOC/doc/latex/changes/userdoc/setauthormarkup_ex.tex + RELOC/doc/latex/changes/userdoc/setauthormarkup_in.tex + RELOC/doc/latex/changes/userdoc/setauthormarkupposition_ex.tex + RELOC/doc/latex/changes/userdoc/setauthormarkupposition_in.tex + RELOC/doc/latex/changes/userdoc/setauthormarkuptext_ex.tex + RELOC/doc/latex/changes/userdoc/setauthormarkuptext_in.tex + RELOC/doc/latex/changes/userdoc/setcommentmarkup_ex.tex + RELOC/doc/latex/changes/userdoc/setcommentmarkup_in.tex + RELOC/doc/latex/changes/userdoc/setdeletedmarkup_ex.tex + RELOC/doc/latex/changes/userdoc/setdeletedmarkup_in.tex + RELOC/doc/latex/changes/userdoc/sethighlightmarkup_ex.tex + RELOC/doc/latex/changes/userdoc/sethighlightmarkup_in.tex + RELOC/doc/latex/changes/userdoc/setlocextension_ex.tex + RELOC/doc/latex/changes/userdoc/setlocextension_in.tex + RELOC/doc/latex/changes/userdoc/setsocextension_ex.tex + RELOC/doc/latex/changes/userdoc/setsocextension_in.tex + RELOC/doc/latex/changes/userdoc/setsummarytowidth_ex.tex + RELOC/doc/latex/changes/userdoc/setsummarytowidth_in.tex + RELOC/doc/latex/changes/userdoc/setsummarywidth_ex.tex + RELOC/doc/latex/changes/userdoc/setsummarywidth_in.tex + RELOC/doc/latex/changes/userdoc/settruncatewidth_ex.tex + RELOC/doc/latex/changes/userdoc/settruncatewidth_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_addedmarkup_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_addedmarkup_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_authormarkup_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_authormarkup_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_authormarkupposition_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_authormarkupposition_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_authormarkuptext_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_authormarkuptext_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_commandnameprefix_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_commandnameprefix_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_commentmarkup_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_commentmarkup_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_defaultcolor_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_defaultcolor_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_deletedmarkup_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_deletedmarkup_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_draft_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_final_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_highlightmarkup_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_highlightmarkup_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_markup_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_markup_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_options_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_todonotes_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_todonotes_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_truncate_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_truncate_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_ulem_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_ulem_changes_in.tex + RELOC/doc/latex/changes/userdoc/usepackage_xcolor_changes_ex.tex + RELOC/doc/latex/changes/userdoc/usepackage_xcolor_changes_in.tex +srccontainersize 16908 +srccontainerchecksum a74ee0bd131301f12a674155d87ffec87b88916e242e80a4daa18fca251d8479e05dc8ddd343943c96055cb3c54fdaa37f91198c8daab1a0c85eb8029d8f9f9b +srcfiles size=27 + RELOC/source/latex/changes/changes.drv + RELOC/source/latex/changes/changes.dtx + RELOC/source/latex/changes/changes.ins + RELOC/source/latex/changes/example-screenshot.dtx + RELOC/source/latex/changes/examples.dtx +runfiles size=10 + RELOC/scripts/changes/pyMergeChanges.py + RELOC/tex/latex/changes/changes.sty +catalogue-contact-bugs https://gitlab.com/ekleinod/changes/issues +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-license lppl1.3 +catalogue-topics editorial doc-tool +catalogue-version 4.0.2 + +name chappg +category Package +revision 15878 +shortdesc Page numbering by chapter +relocated 1 +longdesc The package provides for 'chapterno-pageno' or +longdesc 'chaptername-pageno' page numbering. Provision is made for +longdesc front- and backmatter in book class. +containersize 1896 +containerchecksum 8286a7b7664f7634bc5dd16ae1888cc4b70e2880c8749fe2e894d209384da7a8513b2daa318a4154f9b443f89b7eb2e3c6d620b81e1bbfa1ed64c243ad57e47d +doccontainersize 189408 +doccontainerchecksum c0d42e7a9cbae3fc7386e9734492cd3f879ecf69551d17483c4f4516c2ea09d0b9b76914decb987f850af362e54c638af190de6d0d6414d09c49cf48c0635f59 +docfiles size=51 + RELOC/doc/latex/chappg/chappg.pdf details="Package documentation" +srccontainersize 6372 +srccontainerchecksum 371b6630fc12563694db35e8e086f7659e60f49a6b881281bd3bf2c081c6ccc2af74b630b6a53ac9d8b447635f2700f3d15643a02f7d873b5451c9b43a331b5d +srcfiles size=6 + RELOC/source/latex/chappg/chappg.dtx + RELOC/source/latex/chappg/chappg.ins +runfiles size=1 + RELOC/tex/latex/chappg/chappg.sty +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-license lppl +catalogue-topics page-nos +catalogue-version 2.1b + +name chapterfolder +category Package +revision 15878 +shortdesc Package for working with complicated folder structures +relocated 1 +longdesc This package simplifies working with folder structures that +longdesc match the chapter/section/subsection structure. It provides +longdesc macros to define a folder that contains the file for a +longdesc chapter/section/subsection, and provides macros that allow +longdesc inclusion without using the full path, rather the path relative +longdesc to the current folder of the chapter/section/subsection. It +longdesc makes easy changing the name of a folder, for example. +containersize 1588 +containerchecksum b5f68c160249e9cd94efc4c664a18c04e627d416b304697859144d6bbc5ef787c0f8721d19cd6aab6c60864dedc65e84b3ea9114b7c823a8131b4bfdfad0c2b8 +doccontainersize 186732 +doccontainerchecksum 43a28dd7182e02ebe0541c7b236046a6c23d55c73e36aa1a0e85954c5efd917667e1916ed0bb7000cbc5285230d162d5e844726282f0bb93ff85dfbde5fe8c57 +docfiles size=49 + RELOC/doc/latex/chapterfolder/chapterfolder.pdf details="Package documentation" +srccontainersize 2884 +srccontainerchecksum 179e4fd7966f1bc12fa89fa36a5e292f0d9937bd5ae74dbc9ef5846b0d55fdfd53e998fdb9ea40311dd34c7a99646d2dfb309fc942c6cfa3ada312297975f1e9 +srcfiles size=5 + RELOC/source/latex/chapterfolder/chapterfolder.dtx + RELOC/source/latex/chapterfolder/chapterfolder.ins +runfiles size=2 + RELOC/tex/latex/chapterfolder/chapterfolder.sty +catalogue-ctan /macros/latex/contrib/chapterfolder +catalogue-license lppl +catalogue-topics doc-mgmt +catalogue-version 2.0.1 + +name charissil +category Package +revision 55920 +shortdesc CharisSIL fonts with support for XeLaTeX or LuaLaTeX +relocated 1 +longdesc This package provides the CharisSIL family of fonts adapted by +longdesc SIL International from Bitstream Charter in TrueType format, +longdesc with support for XeLaTeX or LuaLaTeX. +containersize 1193728 +containerchecksum c12562bce62a161bf261cc3a899c16f71f2c26091531a30626f7a0021cb0b321e1068cb9b2ff48cfd0128f1502d4e7012c12847b303295abe6758a970a759d3c +doccontainersize 807284 +doccontainerchecksum ccaa2f0bfb3c76e9fd6ba2fcb35e926bdaa70ddd65abc14b2ccd2ab5db9eeef8ecdd4aadbf245fea4674265f6c616e7c42a2b1251214548f91bf72cc881bdcbb +docfiles size=214 + RELOC/doc/fonts/charissil/CharisSIL-features.pdf + RELOC/doc/fonts/charissil/CharisSIL-samples.pdf details="Font samples" + RELOC/doc/fonts/charissil/CharisSIL-samples.tex + RELOC/doc/fonts/charissil/FONTLOG.txt + RELOC/doc/fonts/charissil/OFL.txt + RELOC/doc/fonts/charissil/README details="Readme" +runfiles size=1460 + RELOC/fonts/truetype/SIL/charissil/CharisSIL-B.ttf + RELOC/fonts/truetype/SIL/charissil/CharisSIL-BI.ttf + RELOC/fonts/truetype/SIL/charissil/CharisSIL-I.ttf + RELOC/fonts/truetype/SIL/charissil/CharisSIL-R.ttf + RELOC/tex/latex/charissil/CharisSIL.sty +catalogue-contact-home https://software.sil.org/charis/ +catalogue-ctan /fonts/charissil +catalogue-license ofl lppl +catalogue-topics font font-body font-cyrillic font-multilingual font-proportional font-serif font-ttf font-supp +catalogue-version 5.0 + +name charter +category Package +revision 15878 +shortdesc Charter fonts +relocated 1 +longdesc A commercial text font donated for the common good. Support for +longdesc use with LaTeX is available in freenfss, part of psnfss. +containersize 175180 +containerchecksum 706efb4e3daf7c304f5047b99d1f68051aedafc110cdd51b2e3cc520ebe628a87c41579cf476978e70aa0ae920e7a3aca1082013b41be8902174975e164a8f9b +doccontainersize 800 +doccontainerchecksum 846ccf6ea679e3fc70192e340ce79982cd916d1383579a8549dba7125de645e4fcd4c276800bd5815fcb67d7227081a66b51f42dabebe8cf112585ce9685fb8e +docfiles size=1 + RELOC/doc/fonts/charter/readme.charter details="Readme" +runfiles size=127 + RELOC/fonts/afm/bitstrea/charter/bchb8a.afm + RELOC/fonts/afm/bitstrea/charter/bchbi8a.afm + RELOC/fonts/afm/bitstrea/charter/bchr8a.afm + RELOC/fonts/afm/bitstrea/charter/bchri8a.afm + RELOC/fonts/tfm/bitstrea/charter/bchb7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchb8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchb8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchb8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbc7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbc8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchrc7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchrc8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro8t.tfm + RELOC/fonts/type1/bitstrea/charter/bchb8a.pfb + RELOC/fonts/type1/bitstrea/charter/bchbi8a.pfb + RELOC/fonts/type1/bitstrea/charter/bchr8a.pfb + RELOC/fonts/type1/bitstrea/charter/bchri8a.pfb + RELOC/fonts/vf/bitstrea/charter/bchb7t.vf + RELOC/fonts/vf/bitstrea/charter/bchb8c.vf + RELOC/fonts/vf/bitstrea/charter/bchb8t.vf + RELOC/fonts/vf/bitstrea/charter/bchbc7t.vf + RELOC/fonts/vf/bitstrea/charter/bchbc8t.vf + RELOC/fonts/vf/bitstrea/charter/bchbi7t.vf + RELOC/fonts/vf/bitstrea/charter/bchbi8c.vf + RELOC/fonts/vf/bitstrea/charter/bchbi8t.vf + RELOC/fonts/vf/bitstrea/charter/bchbo7t.vf + RELOC/fonts/vf/bitstrea/charter/bchbo8c.vf + RELOC/fonts/vf/bitstrea/charter/bchbo8t.vf + RELOC/fonts/vf/bitstrea/charter/bchr7t.vf + RELOC/fonts/vf/bitstrea/charter/bchr8c.vf + RELOC/fonts/vf/bitstrea/charter/bchr8t.vf + RELOC/fonts/vf/bitstrea/charter/bchrc7t.vf + RELOC/fonts/vf/bitstrea/charter/bchrc8t.vf + RELOC/fonts/vf/bitstrea/charter/bchri7t.vf + RELOC/fonts/vf/bitstrea/charter/bchri8c.vf + RELOC/fonts/vf/bitstrea/charter/bchri8t.vf + RELOC/fonts/vf/bitstrea/charter/bchro7t.vf + RELOC/fonts/vf/bitstrea/charter/bchro8c.vf + RELOC/fonts/vf/bitstrea/charter/bchro8t.vf +catalogue-ctan /fonts/charter +catalogue-license other-free +catalogue-topics font font-serif font-type1 + +name chbibref +category Package +revision 17120 +shortdesc Change the Bibliography/References title +relocated 1 +longdesc Defines a single command, \setbibref, which sets whichever of +longdesc \bibname and \refname is in use. (\bibname is used in book.cls +longdesc and report.cls, and \refname is used in article.cls.) +containersize 1060 +containerchecksum c87fc723f7d78aaf6f47f0eb34760d20c22a46983e802f1383ca4d952b354e199fe17dcb0e8b42e66522826f71f1031c59457ad4c5f5751c6ffeba66adeb4c30 +doccontainersize 169552 +doccontainerchecksum 58c43dbb1274e99ab60ae8c2911dff6d73099c02f3c6b4b97eeccaa336f56e677ad3a1897a4fd782cf97e59b9938c83f13c0741697630d2dcaa4a7daa0b852e0 +docfiles size=44 + RELOC/doc/latex/chbibref/chbibref.pdf details="Package documentation" + RELOC/doc/latex/chbibref/chbibref.tex +runfiles size=1 + RELOC/tex/latex/chbibref/chbibref.sty +catalogue-ctan /macros/latex/contrib/chbibref +catalogue-license lppl +catalogue-topics headings +catalogue-version 1.0 + +name cheatsheet +category Package +revision 45069 +shortdesc A simple cheatsheet class +relocated 1 +longdesc The package provides a clean, multi-column design intended for +longdesc cheat sheets. It imports the most useful packages and encloses +longdesc the document in a multicol environment. +containersize 2676 +containerchecksum 5d50e5bc579821cc9296209983af68f5c12f6aaea90dffe386efb85d72683c10dd518fc2abefd51687402125bdd4f108ea6325c546ed6b2216cff130abdd1a51 +doccontainersize 404360 +doccontainerchecksum 0c798c7057e6e9d8b3aabaf745b374823f0a186e95a01d6208ec22df8f733f02a86c01b35bf4dfab88837574fc63f159ffe177f6c155e52f85bc0d062966acd3 +docfiles size=100 + RELOC/doc/latex/cheatsheet/README.md details="Readme" + RELOC/doc/latex/cheatsheet/cheatsheet.pdf details="Package documentation" +srccontainersize 5984 +srccontainerchecksum 66f00ad307295e106dbc45827a78041329bc8f4eb7fb3eff6b2c34ea6614b84496e4cec43e81213304022121268cef3e844f2f55e95c850f56ad261068448127 +srcfiles size=5 + RELOC/source/latex/cheatsheet/cheatsheet.dtx + RELOC/source/latex/cheatsheet/cheatsheet.ins +runfiles size=2 + RELOC/tex/latex/cheatsheet/cheatsheet.cls +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-license mit +catalogue-topics tut-cheat +catalogue-version 0.8 + +name checkcites +category Package +revision 52022 +shortdesc Check citation commands in a document +longdesc The package provides a lua script written for the sole purpose +longdesc of detecting undefined and unused references from LaTeX +longdesc auxiliary or bibliography files. +depend checkcites.ARCH +containersize 6152 +containerchecksum 65af6aa0b8a8f0d6f4e3a1dbaeabea845bdec985beffe8589bef06784fde37a02baf41c3ea65055b3ff2b21dd003b51749b20a84ef0e1d0337bdb8ea416a0751 +doccontainersize 295052 +doccontainerchecksum 35b79a866235727c65053f0fa2dae53372230395a61e8ed4b530b02c4760d9cb3a89f81e4ac905ed4966ed4137c8047dd80655f6d94ebb260bfd96e441e45781 +docfiles size=78 + texmf-dist/doc/support/checkcites/README details="Readme" + texmf-dist/doc/support/checkcites/checkcites-doc.pdf details="Package documentation" + texmf-dist/doc/support/checkcites/checkcites-doc.tex +runfiles size=7 + texmf-dist/scripts/checkcites/checkcites.lua +catalogue-contact-bugs https://github.com/cereda/checkcites/issues +catalogue-contact-repository https://github.com/cereda/checkcites +catalogue-ctan /support/checkcites +catalogue-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 2.4 + +name checkcites.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of checkcites +containersize 344 +containerchecksum 124f8102477f86ccd0a7ead8f9f082e7cd567632fef5df1e74e6042da068219bf145bb80e977e45d85cd0b735746f5c6deab5c05352e669c7778c269fce76fba +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/checkcites + +name checkcites.amd64-freebsd +category Package +revision 25623 +shortdesc amd64-freebsd files of checkcites +containersize 344 +containerchecksum 4de3a159c9ca04adbcd61018ace5f50c697b40d79f90159ff8bf7a814002e17c53e1d973551362033871c67adfa4613224f27891fe1a93884b4b2f3a5361b2d0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/checkcites + +name checkcites.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of checkcites +containersize 344 +containerchecksum 2c5d4339127277b721245c3047150b860d98ef9e9b5ecfe0f6e1a0f91a250d6df92edb51f981cdbe8a099b2acc56c0489c66e6d5249969277c7502d08e37247f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/checkcites + +name checkcites.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of checkcites +containersize 344 +containerchecksum d7f149d74066ca521158c99e11e89abe4a4a543d5b62639591dd88c4d68a381fe1c4d355761948309d4faeb420fd0cdc891e3626fa824803d3b98d977c576a19 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/checkcites + +name checkcites.i386-cygwin +category Package +revision 25623 +shortdesc i386-cygwin files of checkcites +containersize 344 +containerchecksum ed555451bf5cdd1d4d512ea8fcc0993bbb944fdf1d5b17076c6c8c88e19069f40a207e9123f8f97f33430ad22cdde8b083d60369a40b0db70ce0171178c423c7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/checkcites + +name checkcites.i386-freebsd +category Package +revision 25623 +shortdesc i386-freebsd files of checkcites +containersize 344 +containerchecksum 84e344f28b911faa11852fd6009cfba643587a4819e036b4bdfdc523fdeddda918b53cb131a5913ed016d28b46dd7b783fb08c985b1f7270f303ff792cc03b22 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/checkcites + +name checkcites.i386-linux +category Package +revision 25623 +shortdesc i386-linux files of checkcites +containersize 344 +containerchecksum e49382fad64fa3f1761c0e8b3a64422dcd980e4a83a6fe52952ba720156e0a89319c0df8742ab31068d53229bc78e4183b45ead9a694a9a83ef0b7bf1bd25c04 +binfiles arch=i386-linux size=1 + bin/i386-linux/checkcites + +name checkcites.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of checkcites +containersize 344 +containerchecksum 34a2d9d1ecafe5a3a04a21acfd3dbe28f40fda819dbc69a4c6e6ab2062a4c0712ecc87a2ef0f650f6042cf86cd2c1ca78e0fc24f370d3c8f576f15aa13c7a3d6 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/checkcites + +name checkcites.i386-solaris +category Package +revision 25623 +shortdesc i386-solaris files of checkcites +containersize 344 +containerchecksum 44174b013fe4f9e74d15469f096ed0e39a3b031258f8ed2648c4ba86661dd0b5b67f9c48a0083544dfad40c06381d02e60e9b5d8f917dff94847800e5dc2e852 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/checkcites + +name checkcites.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of checkcites +containersize 344 +containerchecksum 70d5e730bb192b1fc7edcec64f422a22bf4dd1b5262d1d312477e48ab25ba19ad6ac9414eeca7cf01468d90af45a93d8da1c0eef66d793ec6391c5c95d4472de +binfiles arch=universal-darwin size=1 + bin/universal-darwin/checkcites + +name checkcites.win32 +category Package +revision 25623 +shortdesc win32 files of checkcites +containersize 688 +containerchecksum 5461bcf73d9455c39040b5db44ffeb9f1f05d81e14f0c3e489a6dfada504e6545d15e2e723d4638db322a5a017cdf45c24bd6a4817a21ca10cd299c104f43a3a +binfiles arch=win32 size=1 + bin/win32/checkcites.exe + +name checkcites.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of checkcites +containersize 344 +containerchecksum 1c624c872a4f38262f37b465c7fce18fc0669f55e07a6ca1c2298521fb83d20395dc4b88f4f0e291cf8c6ba71f0fd9742f48faa3c6366ca0c9976ac3d02e0473 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/checkcites + +name checkcites.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of checkcites +containersize 356 +containerchecksum bc6224f3925c0b3e94d3fa19e172384d59d572febc1e84f7f9c0a3a1184f5bb01f8f181ec093b48b1f88316f30be79b030f32f2df82365253011bbd0d3581e4e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/checkcites + +name checkcites.x86_64-linux +category Package +revision 25623 +shortdesc x86_64-linux files of checkcites +containersize 344 +containerchecksum bdd29e325c0342eecfd324b822fb6992d34ad27bbba94082a7f7ed52238b6d48178f286052320c5c80647dd1e1090fd103ff2ddf82ef12b50d604847b216e714 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/checkcites + +name checkcites.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of checkcites +containersize 348 +containerchecksum 88fd112d83c18e9ed30d85c26e901e52bfbc84eb85ead9467843cb7b05d70d98e796b43ff8601a349369edb2a26cbcab8434ffa0e428b194f1ff94ce7251c79f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/checkcites + +name checkcites.x86_64-solaris +category Package +revision 25623 +shortdesc x86_64-solaris files of checkcites +containersize 344 +containerchecksum 66a11f5542c150c82302b0342ecbe3830b67f48edb61a391c80672bda8aadd6e2f5defe3ab893c8d1406a7a0672f180c8120a240ed8b75fc8dffa34a34b97bc7 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/checkcites + +name checkend +category Package +revision 51475 +shortdesc Extend "improperly closed environment" messages +relocated 1 +longdesc When an environment is left open, LaTeX gives an error at the +longdesc end of the document. However it only informs about the first of +longdesc them, while the rest are shown with meaningless errors: (\end +longdesc occurred inside a group at level N) This package replaces these +longdesc errors with more useful messages which show which environments +longdesc (in reverse order) were not closed. There are no user macros: +longdesc just use the package. +containersize 1732 +containerchecksum 40af84a5510dc3038c536c4b0aae0176651f01953650c1e6ec8b5d76459e7000246205d55f2b13ef566930649daf1eafc38e6d2d822787d1fa462e99837b6ba7 +doccontainersize 672 +doccontainerchecksum 0527c3c080f502baaaaa14a398ecbdfa714cec872f6cf8391ef8a766aa24b497a0fc00012433409904ea11d7fec425dd7c7116a52e8d983bddb2633248d2b090 +docfiles size=1 + RELOC/doc/latex/checkend/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/checkend/checkend.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos +catalogue-ctan /macros/latex/contrib/checkend +catalogue-license mit +catalogue-topics macro-supp +catalogue-version 1.0 + +name checklistings +category Package +revision 38300 +shortdesc Pass verbatim contents through a compiler and reincorporate the resulting output +longdesc This package augments the fancyvrb and listings packages to +longdesc allow the source code they contain to be checked by an external +longdesc tool (like a compiler). The external tool's messages can be +longdesc automatically reincorporated into the original document. The +longdesc package does not focus on a specific programming language, but +longdesc it is designed to work well with languages and compilers in the +longdesc ML family. +depend checklistings.ARCH +containersize 6496 +containerchecksum 599ed476321a825bea61fbdd468670cadcdb11249a4a9324fc88339a9445ceeced3680459dc2d27c2e6263cd207ffc0ce3b60b325d31072922bf4644478cf544 +doccontainersize 364456 +doccontainerchecksum 3f8d6eb67f305fa5e03bb625a4034ffe616a6c0223774688463884df99c337c1e5bdd76bbfa3b9428ec4812ec72388979c4252ba7407ae8b79e3de7cfacbeb01 +docfiles size=96 + texmf-dist/doc/latex/checklistings/Makefile + texmf-dist/doc/latex/checklistings/README.md details="Readme" + texmf-dist/doc/latex/checklistings/checklistings.hva + texmf-dist/doc/latex/checklistings/checklistings.pdf details="Package documentation" + texmf-dist/doc/latex/checklistings/example.html + texmf-dist/doc/latex/checklistings/example.pdf details="Example of use" + texmf-dist/doc/latex/checklistings/example.tex +srccontainersize 10948 +srccontainerchecksum a7435841305ce368f1bedac9cb531d8f0fce3fac27484547821a2e82998e977968e578601382f4cddf6c089b42e8e175c56d2e466faa5c4c0e5b49edaf6baf1d +srcfiles size=11 + texmf-dist/source/latex/checklistings/checklistings.dtx + texmf-dist/source/latex/checklistings/checklistings.ins +runfiles size=6 + texmf-dist/scripts/checklistings/checklistings.sh + texmf-dist/tex/latex/checklistings/checklistings.sty +catalogue-contact-repository https://github.com/tbrk/checklistings +catalogue-ctan /macros/latex/contrib/checklistings +catalogue-license lppl1.2 +catalogue-topics callback listing +catalogue-version 1.0 + +name checklistings.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of checklistings +containersize 348 +containerchecksum 1b9f15667531f7051882fda1938474d83cdc6b13e84073a4b554c5925c887f98f780434f32b247ab45cd8a78cb269c5647c3b4b0b9ad7393e8196e6ca9b18d6e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/checklistings + +name checklistings.amd64-freebsd +category Package +revision 38300 +shortdesc amd64-freebsd files of checklistings +containersize 348 +containerchecksum d9b746b10d073975ee19fae94239ad9819cf5176ca2e2c54c5cf570ae2a1c50f1a86fda4857421c24aa08bb28817169cf36c3430e32406b39baf3b70269a0944 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/checklistings + +name checklistings.amd64-netbsd +category Package +revision 38300 +shortdesc amd64-netbsd files of checklistings +containersize 344 +containerchecksum 4fea897cfbb693aaa35bc426a33404f1c075d68e799d3283b9a964272461ff34ba6a9f589d8e07ef3819a775d2368ba7c28bc7c6ce3347877864eb12a15753cb +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/checklistings + +name checklistings.armhf-linux +category Package +revision 38300 +shortdesc armhf-linux files of checklistings +containersize 348 +containerchecksum 58d4cdbcd2a0108de2ffd7f143514d3a1d0dceee6944d489e0db988b526d56e09790023fb6955a50f77d23c9e21a87e08ca3cd0b1311dcf1b0d4629e6f5c4527 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/checklistings + +name checklistings.i386-cygwin +category Package +revision 38300 +shortdesc i386-cygwin files of checklistings +containersize 344 +containerchecksum 42e4be7598fe732c3585ed64ab21748794fe8cd29e86cfc3d9d719b7bbab8ec58be40a92c586323fc1816e4b847197b8a733b818649446b6d888869dbbab89fa +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/checklistings + +name checklistings.i386-freebsd +category Package +revision 38300 +shortdesc i386-freebsd files of checklistings +containersize 348 +containerchecksum e4dcc5326144080be8ce78cefceb0e323a22096f2760f35c7625176ebd6b4d06d27a0f0887d7ace52059a6a6539870bd3e6a32f3fca90e11bff5b15f78b72711 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/checklistings + +name checklistings.i386-linux +category Package +revision 38300 +shortdesc i386-linux files of checklistings +containersize 348 +containerchecksum 967d63835da87dc84d92dee3474b11f6e910cd2016a2553903e1e289840e4694a1d39edbd0d4c385a857b877531857ada7072b4e4a17bf06060e46e7cda23f05 +binfiles arch=i386-linux size=1 + bin/i386-linux/checklistings + +name checklistings.i386-netbsd +category Package +revision 38300 +shortdesc i386-netbsd files of checklistings +containersize 344 +containerchecksum 8aab97f54e1dba3fd1109d8b0e23344249c386aee161afacfc1f436c25130aea5286c392f85334e6a26e953676338e40acf38b16f88f92a7f3a53781e247c12e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/checklistings + +name checklistings.i386-solaris +category Package +revision 38300 +shortdesc i386-solaris files of checklistings +containersize 344 +containerchecksum 190382726ed7d08a4dbe8e91083ca83fa7e7554fe477134309de3ed9ca08a498580a2c5293f811b1bca14f1f7bb07475e225181827bb4be3aa76567d66b72fea +binfiles arch=i386-solaris size=1 + bin/i386-solaris/checklistings + +name checklistings.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of checklistings +containersize 344 +containerchecksum a1569349088637c2472df261aaba0b5d8a46a9b1fde87c0da6f1c7b63c270caefd0a6a87502cd5f50139c5406d6291f390be9fdd26dd64daa9aca04082dbf372 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/checklistings + +name checklistings.x86_64-cygwin +category Package +revision 38300 +shortdesc x86_64-cygwin files of checklistings +containersize 348 +containerchecksum afd2ce8fbd988e3ec4d9acfb44f31549efcf8a82baf37b921edcbf14220d08b8de2d1b340a594f204457e98f37734eff37608d0ef73ea0a8705585ee4a3a3b9c +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/checklistings + +name checklistings.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of checklistings +containersize 356 +containerchecksum 6d445b62e19511189c819f64502fa8ce75bfe39e0151e6b969245136903905ab20ac25de292716896e2c811eb239aa4c268a7ef6b6b661f574bb7020baad17de +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/checklistings + +name checklistings.x86_64-linux +category Package +revision 38300 +shortdesc x86_64-linux files of checklistings +containersize 344 +containerchecksum 864a320e41e6e635641604743cc94eb402b924e3d7962f2a29ebbb43dcdc31ddcdef4595b26aa8094068a4edf0bec2cab1a358c4feaad9c2e21416d01f3102cf +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/checklistings + +name checklistings.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of checklistings +containersize 348 +containerchecksum 184eb9f8eaee991efe054a32abc0e0f0e72356c77bd40609d7868d208aa7c213f4600d176dd62f0d5490f072745e642f39a9d3e3f8537bbfb32ef50814e97fce +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/checklistings + +name checklistings.x86_64-solaris +category Package +revision 38300 +shortdesc x86_64-solaris files of checklistings +containersize 344 +containerchecksum d7f40c89b55f7be00c385c518fcfb5a0b4324c04f499fbc82fdfe61e46df6a65779fa2ba731d470ffcb70597083b3aa01d790fcfb1ee447d8afa774373f3f269 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/checklistings + +name chem-journal +category Package +revision 15878 +shortdesc Various BibTeX formats for journals in Chemistry +relocated 1 +longdesc Various BibTeX formats for journals in Chemistry, including +longdesc Reviews in Computational Chemistry, Journal of Physical +longdesc Chemistry, Journal of Computational Chemistry, and Physical +longdesc Chemistry Chemical Physics. +containersize 4992 +containerchecksum afe7c82f6e139c1321759ef9125f262d504bf602c1c5e16a11d41cc00ea47dac3f2befd602a863a12c46beaac4c50fe6fcdb145c5c6582c9d44c2740aa1b7743 +runfiles size=20 + RELOC/bibtex/bst/chem-journal/jcc.bst + RELOC/bibtex/bst/chem-journal/jpc.bst + RELOC/bibtex/bst/chem-journal/pccp.bst + RELOC/bibtex/bst/chem-journal/revcompchem.bst +catalogue-ctan /biblio/bibtex/contrib/chem-journal +catalogue-license gpl +catalogue-topics chemistry bibtex-supp journalpub + +name chemarrow +category Package +revision 17146 +shortdesc Arrows for use in chemistry +relocated 1 +longdesc This bundle consists of a font (available as Metafont source, +longdesc MetaPost source, and generated type 1 versions), and a package +longdesc to use it. The arrows in the font are designed to look more +longdesc like those in chemistry text-books than do Knuth's originals. +execute addMap chemarrow.map +containersize 5212 +containerchecksum 4a95a6b81bd649764dea052984eb21c7f9e89c612ff96d23907eefce29e2d33fe92bd7944d94a6b108213d1820b3340feab35e3646f727288cb1df9b78302990 +doccontainersize 343744 +doccontainerchecksum 882e6c6fbeb5223fc1d2404e8b9ef9bce2c3b2ed1279d2bdc45616476a856c63fe07cdeb42e27f3bc459199f3537fc620ef08c00f4eea83df77502463fc30ca6 +docfiles size=121 + RELOC/doc/fonts/chemarrow/Liesmich.txt details="Package Liesmich" language="de" + RELOC/doc/fonts/chemarrow/README details="Package README" language="en" + RELOC/doc/fonts/chemarrow/arrow.Mac.sit.hqx + RELOC/doc/fonts/chemarrow/chemarrow-de.pdf details="Package documentation (German)" language="de" + RELOC/doc/fonts/chemarrow/chemarrow-de.tex + RELOC/doc/fonts/chemarrow/chemarrow.pdf details="Package documentation (English)" language="en" + RELOC/doc/fonts/chemarrow/chemarrow.tex + RELOC/doc/fonts/chemarrow/testchem.tex +srccontainersize 3136 +srccontainerchecksum 19903052aaa97902f721892bf4a9df8d685db46ffddb4cdeb4df280c24a72d2166bc13408a32d5c760272aee45ad5516b899c0024ff3f077fec6825f94e36736 +srcfiles size=3 + RELOC/source/fonts/chemarrow/Arrow.vfb + RELOC/source/fonts/chemarrow/arrow.mp +runfiles size=9 + RELOC/fonts/afm/public/chemarrow/arrow.afm + RELOC/fonts/map/dvips/chemarrow/chemarrow.map + RELOC/fonts/source/public/chemarrow/arrow.mf + RELOC/fonts/tfm/public/chemarrow/arrow.tfm + RELOC/fonts/type1/public/chemarrow/arrow.inf + RELOC/fonts/type1/public/chemarrow/arrow.pfb + RELOC/fonts/type1/public/chemarrow/arrow.pfm + RELOC/tex/latex/chemarrow/chemarrow.sty +catalogue-also chemarr +catalogue-ctan /macros/latex/contrib/chemarrow +catalogue-license pd +catalogue-topics chemistry diagram +catalogue-version 0.9 + +name chembst +category Package +revision 15878 +shortdesc A collection of BibTeX files for chemistry journals +relocated 1 +longdesc The package offers a collection of advanced BibTeX style files +longdesc suitable for publications in chemistry journals. Currently, +longdesc style files for journals published by the American Chemical +longdesc Society, Wiley-VCH and The Royal Society of Chemistry are +longdesc available. The style files support advanced features such as +longdesc automatic formatting of errata or creating an appropriate entry +longdesc for publications in Angewandte Chemie where both English and +longdesc German should be cited simultaneously. +containersize 6916 +containerchecksum f6bc14345c841db93207745de1d6ce189e08a30d17110d8efe04af0c5aa98cf7e3a1208e1969afeca0c69f747fb5db39437645e2437f9596ba5a70610747b6d4 +doccontainersize 204580 +doccontainerchecksum 3263dbeee44d46b6661e2e755ba10e22475432d03de6b3286d1191acf2fc8df1541d9a9684d5e00143dbebf65bee468e9244ffe73d7ff43889153925b6edb379 +docfiles size=60 + RELOC/doc/latex/chembst/README details="Readme" + RELOC/doc/latex/chembst/chembst.pdf details="Package documentation" +srccontainersize 16300 +srccontainerchecksum c0c6658210450aa13a17e04eaee082f4d08b71a50a1552b571a49557ce8422d709da325c8bc91e742eeae04de388a777134a4d626d72409da3662c2d152cfc12 +srcfiles size=21 + RELOC/source/latex/chembst/chembst.dtx + RELOC/source/latex/chembst/chembst.ins +runfiles size=48 + RELOC/bibtex/bst/chembst/ChemCommun.bst + RELOC/bibtex/bst/chembst/ChemEurJ.bst + RELOC/bibtex/bst/chembst/InorgChem.bst + RELOC/bibtex/bst/chembst/JAmChemSoc.bst + RELOC/bibtex/bst/chembst/JAmChemSoc_all.bst + RELOC/bibtex/bst/chembst/cv.bst +catalogue-ctan /biblio/bibtex/contrib/chembst +catalogue-license lppl +catalogue-topics bibtex-sty chemistry +catalogue-version 0.2.5 + +name chemcompounds +category Package +revision 15878 +shortdesc Simple consecutive numbering of chemical compounds +relocated 1 +longdesc The chemcompounds package allows for a simple consecutive +longdesc numbering of chemical compounds. Optionally, it is possible to +longdesc supply a custom name for each compound. The package differs +longdesc from the chemcono package by not generating an odd-looking list +longdesc of compounds inside the text. +containersize 1956 +containerchecksum d8cafe15f21045522812279337f9680a975a3f9b9930231b7992435bf694f8f180b061623bdf5fbe7dc9cfdf7d6342e0d6c2dae1cbe0d8e855699064a97a95fd +doccontainersize 111604 +doccontainerchecksum 26d9568f73f6b0c557cc55b48a99826b70d87724f7f5776f7c58691e8374b3b6ed400206b338bb0397ae5e0c1df5d1bdbb638e80d0dbfea228138b96863587ad +docfiles size=33 + RELOC/doc/latex/chemcompounds/README + RELOC/doc/latex/chemcompounds/chemcompounds.pdf details="Package documentation" +srccontainersize 7200 +srccontainerchecksum d1a0c821c6624efcb31ca21ab658a64919dd6eca51add909bea4467dbf47b20dfb60f10ee979a7525a04bae0f7440ddfae2c244da25444ccf0486708b4d1a1a6 +srcfiles size=8 + RELOC/source/latex/chemcompounds/chemcompounds.dtx + RELOC/source/latex/chemcompounds/chemcompounds.ins +runfiles size=2 + RELOC/tex/latex/chemcompounds/chemcompounds.sty +catalogue-ctan /macros/latex/contrib/chemcompounds +catalogue-license lppl +catalogue-topics chemistry + +name chemcono +category Package +revision 17119 +shortdesc Support for compound numbers in chemistry documents +relocated 1 +longdesc A LaTeX package for using compound numbers in chemistry +longdesc documents. It works like \cite and the \thebibliography, using +longdesc \fcite and \theffbibliography instead. It allows compound names +longdesc in documents to be numbered and does not affect the normal +longdesc citation routines. +containersize 8132 +containerchecksum 29b6e78d47cdcb21c634540ed6a935cd5c6eea5fb6a28ee85cfe681ff00c8bd24d7175ee5adbbeab03e11db2f56a38d3359235ed44771976917f35c673fd21c5 +doccontainersize 231312 +doccontainerchecksum 9936d1f0ce1e6ab9498aec9d68c176ddd803de3ed1e5a698ca7b548203cac66492ce319af3e5951144ad11878065c8b349f57668498d245413d7db62d1b6a8ae +docfiles size=62 + RELOC/doc/latex/chemcono/chemcono.pdf details="Package documentation" + RELOC/doc/latex/chemcono/chemcono.tex + RELOC/doc/latex/chemcono/example.tex +runfiles size=7 + RELOC/tex/latex/chemcono/chemcono.sty + RELOC/tex/latex/chemcono/drftcono.sty + RELOC/tex/latex/chemcono/showkeysff.sty +catalogue-ctan /macros/latex/contrib/chemcono +catalogue-license lppl +catalogue-topics chemistry +catalogue-version 1.3 + +name chemexec +category Package +revision 21632 +shortdesc Creating (chemical) exercise sheets +relocated 1 +longdesc The package provides environments and commands that the author +longdesc needed when preparing exercise sheets and other teaching +longdesc material. In particular, the package supports the creation of +longdesc exercise sheets, with separating printing of solutions +containersize 7656 +containerchecksum 62f374a57c799873aa4d1db52c56fcaf2f15dd813e3bd9295044499defa29a88567034e39b20af1e8a7e4208dcc35aa422c0ea8e1e0925fb1ae3e02a1a8cb482 +doccontainersize 310880 +doccontainerchecksum 83b622fe694111fefb9c7863d5322f7a717778727c99db3fe5eedec0b6575d4fe50e6b5076413cbbf36a222ee7765bbb847c44783d6ce45cb07f55bab16955da +docfiles size=131 + RELOC/doc/latex/chemexec/README details="Readme" + RELOC/doc/latex/chemexec/chemexec_de.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/chemexec/chemexec_de.tex + RELOC/doc/latex/chemexec/chemexec_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/chemexec/chemexec_en.tex +runfiles size=9 + RELOC/tex/latex/chemexec/chemexec.sty +catalogue-ctan /macros/latex/contrib/chemexec +catalogue-license lppl1.3 +catalogue-topics chemistry exercise +catalogue-version 1.0 + +name chemfig +category Package +revision 58014 +shortdesc Draw molecules with easy syntax +relocated 1 +longdesc The package provides the command \chemfig{}, which draws +longdesc molecules using the TikZ package. The argument provides +longdesc instructions for the drawing operation. While the diagrams +longdesc produced are essentially 2-dimensional, the package supports +longdesc many of the conventional notations for illustrating the +longdesc 3-dimensional layout of a molecule. The package uses TikZ for +longdesc its actual drawing operations. +containersize 26356 +containerchecksum ac0f3fff6f24fe83c3a1cd7bfd456cf187c57ae66776c672aab980d267d9552b7b480b0244e3d2e1c8d9f39f1d6524f9e882fc8a71be9fc8a5c0263d4899f718 +doccontainersize 2050380 +doccontainerchecksum c8721852c551909c7ded202793a5c1c999d522f3217e9c4fe7a9c4307b7ee054ca360ae72d0d12ea09ac3b538445d79a5d103493c7e14f669762debd2eb92536 +docfiles size=637 + RELOC/doc/generic/chemfig/README details="Readme" + RELOC/doc/generic/chemfig/chemfig-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/chemfig/chemfig-en.tex + RELOC/doc/generic/chemfig/chemfig-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/chemfig/chemfig-fr.tex +runfiles size=32 + RELOC/tex/generic/chemfig/chemfig-lewis.tex + RELOC/tex/generic/chemfig/chemfig.sty + RELOC/tex/generic/chemfig/chemfig.tex +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-license lppl1.3c +catalogue-topics graphics diagram chemistry pgf-tikz macro-gen etex +catalogue-version 1.6a + +name chemformula +category Package +revision 57206 +shortdesc Command for typesetting chemical formulas and reactions +relocated 1 +longdesc The package provides a command to typeset chemical formulas and +longdesc reactions in support of other chemistry packages (such as +longdesc chemmacros). The package used to be distributed as a part of +longdesc chemmacros. +depend units +containersize 18164 +containerchecksum 6f1cbdeb8a7a30cf561febcc1232d92feadaa59c796a96881ebb04379c49804e8d39cc65dc96bba02d1843118fba347660e23906ea5633af6f00c4fb39388e60 +doccontainersize 910168 +doccontainerchecksum 61da2685650fa1652e20c97c4ed51930b133cfb137f3c1bf8dbe0477b22293693e6837c9545bed3175aa3722e8710441ca12d063bb36542b13e2cd413849cd32 +docfiles size=239 + RELOC/doc/latex/chemformula/README details="Readme" + RELOC/doc/latex/chemformula/chemformula-manual.cls + RELOC/doc/latex/chemformula/chemformula-manual.pdf details="Package documentation" + RELOC/doc/latex/chemformula/chemformula-manual.tex +runfiles size=32 + RELOC/tex/latex/chemformula/chemformula.sty +catalogue-contact-bugs https://github.com/cgnieder/chemformula/issues +catalogue-contact-repository https://github.com/cgnieder/chemformula/ +catalogue-ctan /macros/latex/contrib/chemformula +catalogue-license lppl1.3c +catalogue-topics chemistry expl3 +catalogue-version 4.16 + +name chemgreek +category Package +revision 53437 +shortdesc Upright Greek letters in chemistry +relocated 1 +longdesc The package provides upright Greek letters in support of other +longdesc chemistry packages (such as chemmacros). The package used to be +longdesc distributed as a part of chemmacros. +containersize 7120 +containerchecksum 8e70154271fb921ad9edf6ab5f8a21ce7c229723f88d7e37fe17aedb189c67a5749ea9e622c2dcebeedd614efbf18b9138e0219aea998f7a8ab3087348afa788 +doccontainersize 714860 +doccontainerchecksum 69ef091ed42bb40826af81c9a4ce5536873a5debd971d70d30804f75a3240bc1aea037817cdc42346537cd025306c928fa347938785af9e69022ef51fba20d2d +docfiles size=181 + RELOC/doc/latex/chemgreek/README details="Readme" + RELOC/doc/latex/chemgreek/chemgreek_en.pdf details="Package documentation" + RELOC/doc/latex/chemgreek/chemgreek_en.tex +runfiles size=12 + RELOC/tex/latex/chemgreek/chemgreek.sty +catalogue-contact-repository https://github.com/cgnieder/chemgreek/ +catalogue-ctan /macros/latex/contrib/chemgreek +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 1.1a + +name chemmacros +category Package +revision 56983 +shortdesc A collection of macros to support typesetting chemistry documents +relocated 1 +longdesc The bundle offers a collection of macros and commands which are +longdesc intended to make typesetting chemistry documents faster and +longdesc more convenient. Coverage includes some nomenclature commands, +longdesc oxidation numbers, thermodynamic data, newman projections, etc. +longdesc The package relies on the following supporting packages: +longdesc chemformula, providing a command for typesetting chemical +longdesc formulae and reactions (doing a similar task to that of +longdesc mhchem); chemgreek, offering support for use of greek letters; +longdesc and ghsystem, providing for the UN globally harmonised chemical +longdesc notation. The packages are written using current versions of +longdesc the experimental LaTeX 3 coding conventions and the LaTeX 3 +longdesc support packages. +containersize 44372 +containerchecksum 9ca4d903e5d1126aa4f6fc6c07ea2efc86a5750883c354f3bcd48dbe3960ac3ea2cbc47626c67c8f8bec5343d7dd4d61aa548faa33cc42ab09d15011da551a2a +doccontainersize 1024756 +doccontainerchecksum 3482d6c49bf23bd604a2d0c4f506762c61abc1e2785cf83685af2f96006b9093886d51fed8c16a5e430b35f138ccbd35d183291208df47e1281b47d758d7d123 +docfiles size=289 + RELOC/doc/latex/chemmacros/README details="Readme" + RELOC/doc/latex/chemmacros/chemmacros-manual.pdf details="Chemmacros package documentation" language="en" + RELOC/doc/latex/chemmacros/chemmacros-manual.tex + RELOC/doc/latex/chemmacros/chemmacros.history +runfiles size=111 + RELOC/tex/latex/chemmacros/chemmacros-manual.cls + RELOC/tex/latex/chemmacros/chemmacros.module.acid-base.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.all.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.base.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.charges.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.chemformula.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.errorcheck.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.greek.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.isotopes.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.lang.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.mechanisms.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.newman.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.nomenclature.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.orbital.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.particles.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.phases.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.polymers.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.reactions.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.redox.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.scheme.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.spectroscopy.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.symbols.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.thermodynamics.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.tikz.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.units.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.xfrac.code.tex + RELOC/tex/latex/chemmacros/chemmacros.sty + RELOC/tex/latex/chemmacros/chemmacros4.sty + RELOC/tex/latex/chemmacros/chemmacros5.sty +catalogue-contact-bugs https://github.com/cgnieder/chemmacros/issues +catalogue-contact-repository https://github.com/cgnieder/chemmacros/ +catalogue-ctan /macros/latex/contrib/chemmacros +catalogue-license lppl1.3c +catalogue-topics chemistry expl3 +catalogue-version 5.11a + +name chemnum +category Package +revision 57490 +shortdesc A method for numbering chemical compounds +relocated 1 +longdesc The package defines a \label- and \ref-like commands for +longdesc compound numbers. The package requires LaTeX3 packages expl3 +longdesc (from the l3kernel bundle) as well as xparse and l3keys2e (from +longdesc the l3packages bundle). +containersize 11532 +containerchecksum ea8bcdbb4e69422052758aa7c49f8870c468834ca15833ba4aa89df98c88dd025b4677a9a15b85dd9f953eed6e05b62bd8ef2d4849bdbb113f16de9fbede1205 +doccontainersize 794728 +doccontainerchecksum 31d1e6c6165f7d8ab15ed322b1cacea608fc796c74e3cbadde89a56f1e7bf45c01bcc6985d24a69b459976f75565f35f61174fc34562265b7f159b5b42d1ac30 +docfiles size=274 + RELOC/doc/latex/chemnum/README details="Readme" + RELOC/doc/latex/chemnum/chemnum_en.pdf details="Package documentation (English)" + RELOC/doc/latex/chemnum/chemnum_en.tex + RELOC/doc/latex/chemnum/scheme-bla.ps + RELOC/doc/latex/chemnum/scheme-tmp.ps +runfiles size=19 + RELOC/tex/latex/chemnum/chemnum.sty +catalogue-also chemcompounds chemcono +catalogue-contact-bugs https://github.com/cgnieder/chemnum/issues +catalogue-contact-repository https://github.com/cgnieder/chemnum/ +catalogue-ctan /macros/latex/contrib/chemnum +catalogue-license lppl1.3c +catalogue-topics chemistry expl3 +catalogue-version 1.3a + +name chemplants +category Package +revision 52863 +shortdesc Symbology to draw chemical plants with TikZ +relocated 1 +longdesc This package offers tools to draw simple or barely complex +longdesc schemes of chemical processes. The package defines several +longdesc standard symbols and styles to draw process units and streams. +longdesc The guiding light of the package is the UNICHIM regulation. All +longdesc of the symbols and styles are defined using tools of the TikZ +longdesc package, thus a basic knowledge of the logic of this powerful +longdesc tool is required to profitably use chemplants. +containersize 6316 +containerchecksum 271a8f113b9c722f08c750d77aa6d70c5342396c6bfee815f94e90cbd7f6ed7f9793dfcaed9f5ce49612e15924298f2e995b2b5f504b975c8081338076a61272 +doccontainersize 878916 +doccontainerchecksum 18eb6cbbab95af45040cbf66384e32701e83e509c62bc3a68b82e760f131827740a16d5da35175eaea20810d4a66e8b1cc586baa10f372f1ad2a043c8f9f3f54 +docfiles size=267 + RELOC/doc/latex/chemplants/README.md details="Readme" + RELOC/doc/latex/chemplants/chemplants-changes.pdf + RELOC/doc/latex/chemplants/chemplants-changes.tex + RELOC/doc/latex/chemplants/chemplants-doc.pdf details="Package documentation" + RELOC/doc/latex/chemplants/chemplants-doc.tex +runfiles size=11 + RELOC/tex/latex/chemplants/chemplants.sty +catalogue-ctan /graphics/pgf/contrib/chemplants +catalogue-license lppl1.3c +catalogue-topics chemistry graphics pgf-tikz diagram-flow +catalogue-version 0.9.8 + +name chemschemex +category Package +revision 46723 +shortdesc Typeset and cross-reference chemical schemes based on TikZ code +relocated 1 +longdesc The package provides a comfortable means of typesetting +longdesc chemical schemes, and also offers automatic structure +longdesc referencing. +containersize 6716 +containerchecksum c7375af2dbf1a7b55d41b0ab617111cc198f1aeac98c354813cb2886e0707ce5648d3e4fd9eefdd23bffddc08b96c35a050c1f440f21d5a2d7d5c6b5e0b6aaac +doccontainersize 291444 +doccontainerchecksum b5e864a02ed664e7d7596b56e2583f9a4aff2b8117f79415156df0cab9be084bb96eb6c70c4fca9dd4bd03b30e8b145e4cd809b165d17325625ae625c33f1dc3 +docfiles size=84 + RELOC/doc/latex/chemschemex/C2H4.pdf + RELOC/doc/latex/chemschemex/CH2CH-R2.pdf + RELOC/doc/latex/chemschemex/R1-CHCH2.pdf + RELOC/doc/latex/chemschemex/R2-CHCH-R1.pdf + RELOC/doc/latex/chemschemex/README details="Readme" + RELOC/doc/latex/chemschemex/RuCH-R1.pdf + RELOC/doc/latex/chemschemex/RuCH2.pdf + RELOC/doc/latex/chemschemex/chemschemex.pdf details="Package documentation" + RELOC/doc/latex/chemschemex/cp.pdf + RELOC/doc/latex/chemschemex/maleimid.pdf + RELOC/doc/latex/chemschemex/product.pdf + RELOC/doc/latex/chemschemex/product_num.pdf +srccontainersize 14224 +srccontainerchecksum 56174f5943b8dc3aa0cccaefaf9d3f24903626d3c4eb48bc79f01f2a7be603921f7b1ee300e4009038e3a92cd550c08c37aff239a9426ef3277e47f645964488 +srcfiles size=21 + RELOC/source/latex/chemschemex/chemschemex.dtx + RELOC/source/latex/chemschemex/chemschemex.ins +runfiles size=10 + RELOC/tex/latex/chemschemex/chemschemex.sty +catalogue-also chemscheme +catalogue-ctan /macros/latex/contrib/chemschemex +catalogue-license lppl1.2 +catalogue-topics chemistry +catalogue-version 1.2 + +name chemsec +category Package +revision 46972 +shortdesc Automated creation of numeric entity labels +relocated 1 +longdesc Packages provides creation of sequential numeric labels for +longdesc entities in a document. The motivating example is chemical +longdesc structures in a scientific document. The package can +longdesc automatically output a full object name and label on the first +longdesc occurence in the document and just labels only on subsequent +longdesc references. +containersize 3216 +containerchecksum 7a69ed2535d477063e55541d53f73f5d1972905f63d2298629522dfbfbbc97dba0e9ea4a48ed1667ad7b50e24c4a0f7b6d5dbbf79863c9e79a0b3de522be54c4 +doccontainersize 252160 +doccontainerchecksum 5e132354e874b3ad5a4363cfbcad49e3601380dea8f53e106bb0b5d92fb1aff6facfedbad69444ea362c76473dcc7bd8703beeeda9b69f2501d995da98ef71a2 +docfiles size=68 + RELOC/doc/latex/chemsec/README.md details="Readme" + RELOC/doc/latex/chemsec/chemsec.pdf + RELOC/doc/latex/chemsec/example1.tex + RELOC/doc/latex/chemsec/example2.tex + RELOC/doc/latex/chemsec/example3.tex + RELOC/doc/latex/chemsec/example4.tex + RELOC/doc/latex/chemsec/example5.tex +srccontainersize 11632 +srccontainerchecksum b81e9807d8a082b1223d4747a3f0ad3eb3dd21d1d145de5c25b8c44a384dcd941eedf7117c794efc6e4af2397997d060d0b80bad1c7f487ae98b0679f5412b2a +srcfiles size=13 + RELOC/source/latex/chemsec/chemsec.dtx + RELOC/source/latex/chemsec/chemsec.ins +runfiles size=4 + RELOC/tex/latex/chemsec/chemsec.sty +catalogue-contact-home https://github.com/jfinn24985/chemsec/wiki +catalogue-contact-repository https://github.com/jfinn24985/chemsec +catalogue-ctan /macros/latex/contrib/chemsec +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.12a + +name chemstyle +category Package +revision 31096 +shortdesc Writing chemistry with style +relocated 1 +longdesc Chemstyle has been developed as a successor to the LaTeX +longdesc package provided by the rsc bundle. The package provides an +longdesc extensible system for formatting chemistry documents according +longdesc to the conventions of a number of leading journals. It also +longdesc provides some handy chemistry-related macros. Chemstyle is much +longdesc enhanced compared to its predecessor, and users of rsc are +longdesc strongly encouraged to migrate (all of the additional macros in +longdesc the rsc LaTeX package are present in chemstyle). The package +longdesc chemscheme is distributed with chemstyle; chemstyle itself +longdesc incorporates ideas that come from the trivfloat package; the +longdesc documentation uses the auto-pst-pdf package. +containersize 6272 +containerchecksum 299e15460a64019177530a4d28154453a813c6987e6e89b6f60466ae9e59372c1a5e0fc418c49b85364ba3185d4fe4e4b7f98caad9add7dce9bbe1792d4e314d +doccontainersize 271232 +doccontainerchecksum f8d6c51cd7e3df7ea8366ade62d0cf8ec3825b0ca54be600107a6be8853d1c58e1989f5c13bddcacd97673260890fd0f63e9a0282203dbdbc6a01653d86f0537 +docfiles size=71 + RELOC/doc/latex/chemstyle/README details="Readme" + RELOC/doc/latex/chemstyle/chemscheme.cdx + RELOC/doc/latex/chemstyle/chemstyle-demo.tex + RELOC/doc/latex/chemstyle/chemstyle.pdf details="Package documentation" +srccontainersize 25008 +srccontainerchecksum 0ee97edc8ecf8f08ed39ed9fffe18b89249c513f33ff415e4205619395baa6e8b7c77832d5110d113d78d94c1d79ba84f79a5ff23a43fd0bb23d19db96badf52 +srcfiles size=25 + RELOC/source/latex/chemstyle/chemstyle.dtx + RELOC/source/latex/chemstyle/chemstyle.ins +runfiles size=14 + RELOC/tex/latex/chemstyle/chemscheme.sty + RELOC/tex/latex/chemstyle/chemstyle.sty + RELOC/tex/latex/chemstyle/config/angew.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/ic.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/jacs.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/jomc.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/orglett.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/rsc.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/tetlett.chemstyle.cfg +catalogue-ctan /macros/latex/contrib/chemstyle +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 2.0m + +name cherokee +category Package +revision 21046 +shortdesc A font for the Cherokee script +relocated 1 +longdesc The Cherokee script was designed in 1821 by Segwoya. The +longdesc alphabet is essentially syllabic, only 6 characters (a e i o s +longdesc u) correspond to Roman letters: the font encodes these to the +longdesc corresponding roman letter. The remaining 79 characters have +longdesc been arbitrarily encoded in the range 38-122; the cherokee +longdesc package provides commands that map each such syllable to the +longdesc appropriate character; for example, Segwoya himself would be +longdesc represented \Cse\Cgwo\Cya. The font is distributed as Metafont +longdesc source; it works very poorly in modern environments, and could +longdesc do with expert attention (if you are interested, please contact +longdesc the CTAN team for details). +containersize 4424 +containerchecksum 731fb10454a9d359d91abf927a27215e72283a9635cbd853a6738ddbd5047d81fdb8d547b891f29836d0b604d97749074e9f2676c5ad122522d987ac9bb46105 +doccontainersize 616 +doccontainerchecksum 34b258b5b699f644cc0f7f9b673f3dbe48357bbd338726af2b404da4888a9e742f04e397cc3b6a3221d218a96ac7180ce1e6ba80a19c688de0960ce59cb14bb8 +docfiles size=1 + RELOC/doc/fonts/cherokee/README details="Readme" +runfiles size=8 + RELOC/fonts/source/public/cherokee/cherokee.mf + RELOC/fonts/tfm/public/cherokee/cherokee.tfm + RELOC/tex/latex/cherokee/cherokee.sty +catalogue-also ocherokee +catalogue-ctan /fonts/cherokee +catalogue-license other-free +catalogue-topics font font-nonroman font-mf + +name chess +category Package +revision 20582 +shortdesc Fonts for typesetting chess boards +relocated 1 +longdesc The original (and now somewhat dated) TeX chess font package. +longdesc Potential users should consider skak (for alternative fonts, +longdesc and notation support), texmate (for alternative notation +longdesc support), or chessfss (for flexible font choices). +containersize 10984 +containerchecksum 236e195febc213825fbb5569d8eddd1967fbce1c6e9d550a1c52729be43674e063161adcd5dcb1f6293d9ecf8809518d40064fee08ab64ffe444affe3282224b +doccontainersize 44696 +doccontainerchecksum 95d3b598f63231abb6cdccddc970d6ccb29bec7e9fa29efcf1391bca70b610e9c0bc65754061a4b955548a854bcbbdd8cdf05f8f93fe52bea400b7c281ccc0da +docfiles size=61 + RELOC/doc/fonts/chess/board.epsf + RELOC/doc/fonts/chess/boards.ltx + RELOC/doc/fonts/chess/changes12 + RELOC/doc/fonts/chess/chessdiag.Xmf + RELOC/doc/fonts/chess/copyright + RELOC/doc/fonts/chess/dutch-tt.ltx + RELOC/doc/fonts/chess/dutch-tt.tex + RELOC/doc/fonts/chess/installation + RELOC/doc/fonts/chess/kasparov.ltx + RELOC/doc/fonts/chess/makefile + RELOC/doc/fonts/chess/readme details="Readme" + RELOC/doc/fonts/chess/schaakmaatje.ltx + RELOC/doc/fonts/chess/symbols.ltx + RELOC/doc/fonts/chess/symbols.tex + RELOC/doc/fonts/chess/tal.ltx + RELOC/doc/fonts/chess/tal.tex + RELOC/doc/fonts/chess/tugboat.ltx + RELOC/doc/fonts/chess/tuggame.ltx +runfiles size=21 + RELOC/fonts/source/public/chess/README.mf + RELOC/fonts/source/public/chess/chess10.mf + RELOC/fonts/source/public/chess/chess20.mf + RELOC/fonts/source/public/chess/chess30.mf + RELOC/fonts/source/public/chess/chessbase.mf + RELOC/fonts/source/public/chess/chessdiag.mf + RELOC/fonts/source/public/chess/chessf10.mf + RELOC/fonts/source/public/chess/chesspieces.mf + RELOC/fonts/source/public/chess/empty.mf + RELOC/fonts/tfm/public/chess/chess10.tfm + RELOC/fonts/tfm/public/chess/chess20.tfm + RELOC/fonts/tfm/public/chess/chess30.tfm + RELOC/fonts/tfm/public/chess/chessf10.tfm + RELOC/fonts/tfm/public/chess/chessfig10.tfm + RELOC/tex/latex/chess/chess.sty +catalogue-ctan /fonts/chess/chess +catalogue-license pd +catalogue-topics font font-chess games +catalogue-version 1.2 + +name chess-problem-diagrams +category Package +revision 53302 +shortdesc A package for typesetting chess problem diagrams +relocated 1 +longdesc This package provides macros to typeset chess problem diagrams +longdesc including fairy chess problems (mostly using rotated images of +longdesc pieces) and other boards. +containersize 12036 +containerchecksum 5125a7f27889534f74acd4918641ba1ec10344efb639fc7490941b605d530ab5f7c1d9e31beef978d471693e328640d0be89fea5628b1a9f9a20322649db5e05 +doccontainersize 299316 +doccontainerchecksum a329c412da558e092d52bbe429cfe2dd815a7e5709022d2ace45ca9f42588a7b563b16259222214680e955c77adc38d044a4f19639ecbfd8d85cb97c6e82b8a0 +docfiles size=89 + RELOC/doc/latex/chess-problem-diagrams/README details="Readme" + RELOC/doc/latex/chess-problem-diagrams/diagram.pdf details="Package documentation" +srccontainersize 23732 +srccontainerchecksum 2f5c30195017fdf2f8fbce3bd80f6bfbf89f2e4dd9beacc172bc6c38a761e4cdfec9e278118c4c5aa0e64fe0c51a735acad2a862c24ca6f3684c024238da5f10 +srcfiles size=27 + RELOC/source/latex/chess-problem-diagrams/diagram.dtx + RELOC/source/latex/chess-problem-diagrams/diagram.ins +runfiles size=15 + RELOC/tex/latex/chess-problem-diagrams/diagram.sty +catalogue-ctan /macros/latex/contrib/chess-problem-diagrams +catalogue-license lppl1.2 +catalogue-topics games +catalogue-version 1.15 + +name chessboard +category Package +revision 56833 +shortdesc Print chess boards +relocated 1 +longdesc This package offers commands to print chessboards. It can print +longdesc partial boards, hide pieces and fields, color the boards and +longdesc put various marks on the board. It has a lot of options to +longdesc place pieces on the board. Using exotic pieces (e.g., for fairy +longdesc chess) is possible. The documentation includes an example of an +longdesc animated chessboard, for those whose PDF viewer can display +longdesc animations. +containersize 22600 +containerchecksum 9447eb4dd8712ccbb519f91e99ccd1c64cc0e9ba904bd46dd8c83ce03c31e5caddca8e76c2cfeeefd5946c8881b9e6b198d50c131a1e8d5622b054d1459865cc +doccontainersize 523316 +doccontainerchecksum 1c2e8ab2776a247ab1cbaf5527e04392dbcd1eae3a9b1c6785223268d1811a778c0812a1a5437a15cf4bbf08ff28785a57da10c472dd7567f1f0217b2d7de556 +docfiles size=641 + RELOC/doc/latex/chessboard/README.md details="Readme" + RELOC/doc/latex/chessboard/brett.jpg + RELOC/doc/latex/chessboard/chessboard-skakps.pdf + RELOC/doc/latex/chessboard/chessboard-skakps.tex + RELOC/doc/latex/chessboard/chessboard.pdf details="Package documentation" + RELOC/doc/latex/chessboard/chessboard.tex + RELOC/doc/latex/chessboard/chessboard_and_beamer.pdf + RELOC/doc/latex/chessboard/chessboard_and_beamer.tex + RELOC/doc/latex/chessboard/file.fen +srccontainersize 20904 +srccontainerchecksum 674ac2dd69312d3959bca053d5170bf98381ec70e3d688c991e276f07260c10ded70055b4f9b819fa0cefc8f1ac7850dd9df61d38a97b58c0fc05c824a42c3e5 +srcfiles size=48 + RELOC/source/latex/chessboard/chessboard.dtx + RELOC/source/latex/chessboard/chessboard.ins +runfiles size=50 + RELOC/tex/latex/chessboard/UF-chessboard-documentation.sty + RELOC/tex/latex/chessboard/chessboard-keys-main.sty + RELOC/tex/latex/chessboard/chessboard-keys-pgf.sty + RELOC/tex/latex/chessboard/chessboard-pgf.sty + RELOC/tex/latex/chessboard/chessboard.sty +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-license lppl +catalogue-topics games +catalogue-version 1.9 + +name chessfss +category Package +revision 19440 +shortdesc A package to handle chess fonts +relocated 1 +longdesc This package offers commands to use and switch between chess +longdesc fonts. It uses the LaTeX font selection scheme (nfss). The +longdesc package doesn't parse, format and print PGN input like e.g. the +longdesc packages skak or texmate; the aim of the package is to offer +longdesc writers of chess packages a bundle of commands for fonts, so +longdesc that they don't have to implement all these commands for +longdesc themselves. A normal user can use the package to print e.g. +longdesc single chess symbols and simple diagrams. The documentation +longdesc contains also a section about installation of chess fonts. +containersize 10968 +containerchecksum 8250d4b470a74877c44093888657b0a3c6ce71abc2a23780e71590d0398fc08943ef77ffafcfdabdc6bfd739f7d5b4ca15f2436df103271de029e5ff6102f579 +doccontainersize 1376 +doccontainerchecksum 1f9e625cb7765450fde23f5666af3b43ddb9ba2e67e7d04b98ef19446117cf26eaec3c2586be7c683286dedc37f8d628e4142bae834af716f2c068ac28beef58 +docfiles size=2 + RELOC/doc/latex/chessfss/README details="Readme" + RELOC/doc/latex/chessfss/README.TEXLIVE +srccontainersize 10896 +srccontainerchecksum 8745f5c712df2da39a61aa3d7ec3b6b4917c4905e3a0c4ac25ea6484555f25db6fd31b49a9c86566f69a660108683b4749abeb17f512ece9af54ffd7806c1d79 +srcfiles size=25 + RELOC/source/latex/chessfss/chessfss-src.dtx + RELOC/source/latex/chessfss/chessfss.ins +runfiles size=47 + RELOC/fonts/enc/dvips/chessfss/chess-board-example-enc.enc + RELOC/fonts/enc/dvips/chessfss/chess-fig-example-enc.enc + RELOC/tex/latex/chessfss/chessfss.sty + RELOC/tex/latex/chessfss/lsb1enc.def + RELOC/tex/latex/chessfss/lsb1skak.fd + RELOC/tex/latex/chessfss/lsb1skaknew.fd + RELOC/tex/latex/chessfss/lsb2enc.def + RELOC/tex/latex/chessfss/lsb2skak.fd + RELOC/tex/latex/chessfss/lsb2skaknew.fd + RELOC/tex/latex/chessfss/lsb3enc.def + RELOC/tex/latex/chessfss/lsb3skak.fd + RELOC/tex/latex/chessfss/lsb3skaknew.fd + RELOC/tex/latex/chessfss/lsbc1enc.def + RELOC/tex/latex/chessfss/lsbc1skaknew.fd + RELOC/tex/latex/chessfss/lsbc2enc.def + RELOC/tex/latex/chessfss/lsbc2skaknew.fd + RELOC/tex/latex/chessfss/lsbc3enc.def + RELOC/tex/latex/chessfss/lsbc3skaknew.fd + RELOC/tex/latex/chessfss/lsbc4enc.def + RELOC/tex/latex/chessfss/lsbc4skaknew.fd + RELOC/tex/latex/chessfss/lsbc5enc.def + RELOC/tex/latex/chessfss/lsbc5skaknew.fd + RELOC/tex/latex/chessfss/lsbenc.def + RELOC/tex/latex/chessfss/lsbskak.fd + RELOC/tex/latex/chessfss/lsbskaknew.fd + RELOC/tex/latex/chessfss/lsfenc.def + RELOC/tex/latex/chessfss/lsfskak.fd + RELOC/tex/latex/chessfss/lsfskaknew.fd + RELOC/tex/latex/chessfss/lsienc.def + RELOC/tex/latex/chessfss/lsiskak.fd + RELOC/tex/latex/chessfss/lsiskaknew.fd +catalogue-ctan /macros/latex/contrib/chessfss +catalogue-license lppl +catalogue-topics font-supp games +catalogue-version 1.2a + +name chet +category Package +revision 45081 +shortdesc LaTeX layout inspired by harvmac +relocated 1 +longdesc The package aims to streamline the work of typesetting, and to +longdesc provide the look and feel of harvmac for readers. +containersize 5628 +containerchecksum d4a43d5ed1f8e74f0b4681abeb2b1134e9ad770cbde69679d53ea77e09a1a23412f03705691cd31110d145a96dd97e078d675274342c9323b849c770828db5fd +doccontainersize 175744 +doccontainerchecksum 143b224d3ad957def3ec22a6e55c1b9eebd5db582065d422e1cf972580eb321ffc768c51cd687add62c01ab1cf3dec170422e6d9bbbab01846bf3e4cf84ec936 +docfiles size=46 + RELOC/doc/latex/chet/README details="Readme" + RELOC/doc/latex/chet/chetdoc.pdf details="Package documentation" + RELOC/doc/latex/chet/chetdoc.tex +runfiles size=7 + RELOC/bibtex/bst/chet/chetref.bst + RELOC/tex/latex/chet/chet.sty +catalogue-ctan /macros/latex/contrib/chet +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 2.2 + +name chextras +category Package +revision 27118 +shortdesc A companion package for the Swiss typesetter +relocated 1 +longdesc The package simplifies the preparation of Swiss documents and +longdesc letters by setting up linguistic and common packages. While it +longdesc is a useful addition to the chletter document class, it is not +longdesc tied to it and may be used as a general purpose package. +containersize 4820 +containerchecksum 6fa92c9cf1da7cbe2ba74dd10f1f71274e25b228156f01efe5c67e54a2ba258500f7b2cc39fe935d4e92c641b760eacb7f39ea70643557ade4816e92e92a0b17 +doccontainersize 125712 +doccontainerchecksum 8bcc8a6c99be02d8e0babc82ec016fd6e91823a31338701e3d741af895a1d87d224a849598c2784f5de9cfefaf9cd7a09ee5b102636114d528b1e17b830ffecf +docfiles size=33 + RELOC/doc/latex/chextras/README details="Readme" + RELOC/doc/latex/chextras/chextras.pdf details="Package documentation" +srccontainersize 11708 +srccontainerchecksum 1b82f258f1420b07699a0ee75f99e330acb4b9ad1fadc9ffb0f42a1a4321cbad9c08718f9bbb94185eea9bef8d707f729d610b5f671db7014fd237dca5fb0d6a +srcfiles size=13 + RELOC/source/latex/chextras/chextras.dtx + RELOC/source/latex/chextras/chextras.ins +runfiles size=11 + RELOC/tex/latex/chextras/chextras.sty + RELOC/tex/latex/chextras/eu1lmros.fd + RELOC/tex/latex/chextras/eu1lmssos.fd + RELOC/tex/latex/chextras/eu1lmttos.fd + RELOC/tex/latex/chextras/eu1lmvttos.fd + RELOC/tex/latex/chextras/t1lmros.fd + RELOC/tex/latex/chextras/t1lmssos.fd + RELOC/tex/latex/chextras/t1lmttos.fd + RELOC/tex/latex/chextras/t1lmvttos.fd +catalogue-also chletter +catalogue-ctan /macros/latex/contrib/chextras +catalogue-license lppl1.3 +catalogue-topics swiss +catalogue-version 1.01 + +name chhaya +category Package +revision 57508 +shortdesc Linguistic glossing in Marathi language +relocated 1 +longdesc muNbii vidyaapiitthaacyaa chaayaalekhn niymaavliis anusruun +longdesc bhaassaavaijnyaanik chaayaaNgaaNce sNkssep purvnnaaraa +longdesc aajnyaasNc. This package provides macros for linguistic +longdesc glossing as per the rules given by Mumbai University. +containersize 2348 +containerchecksum 55d70033c02029065f6a619249a14febe37b0960e25c248cdd35fdc7e0afcb6d7e128ae9113001e19c2cc22172aa19002d8f06f0671628edd4bb811edfc92f29 +doccontainersize 46596 +doccontainerchecksum eac6b06915dccdcd74cb98cdf45073c06cd63fe48ac88fd50aa652ededaa1df36efc8604ac7dd335347b56bf10339d8397a9ec2db304c55e6c07132ff18a0b4a +docfiles size=14 + RELOC/doc/latex/chhaya/README.txt details="Readme" + RELOC/doc/latex/chhaya/chhaya.pdf details="Package documentation" language="mr" + RELOC/doc/latex/chhaya/ref.bib +srccontainersize 4140 +srccontainerchecksum f6117bcbfda21aebbbe90db0932f93792fb343fb0831d8b02c4c61114cc3d10631c3b548cbd2ea12349e4dfb694597f657dd2a2c0b3a126d01b23bf19b228ed1 +srcfiles size=5 + RELOC/source/latex/chhaya/chhaya.dtx + RELOC/source/latex/chhaya/chhaya.ins +runfiles size=2 + RELOC/tex/latex/chhaya/chhaya.sty + RELOC/tex/latex/chhaya/sankshep.tex +catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/chhaya/-/issues +catalogue-contact-home https://gitlab.com/niranjanvikastambe/chhaya +catalogue-ctan /macros/unicodetex/latex/chhaya +catalogue-license lppl1.3c +catalogue-topics linguistic marathi +catalogue-version 0.2 + +name chicago +category Package +revision 15878 +shortdesc A "Chicago" bibliography style +relocated 1 +longdesc Chicago is a BibTeX style that follows the "B" reference style +longdesc of the 13th Edition of the Chicago manual of style; a LaTeX +longdesc package (to LaTeX 2.09 conventions) is also provided. The style +longdesc was derived from the newapa style. +containersize 10508 +containerchecksum 2313d7911a8c6bbcfbfb25405e3fd2ea8c0721045f77b9ecf27e4daaee5cfc1a5c010c72d192583e6025aecc6f69421fbd7921d63daa9f29145eb6f9c96c3abb +runfiles size=13 + RELOC/bibtex/bst/chicago/chicago.bst + RELOC/tex/latex/chicago/chicago.sty +catalogue-ctan /biblio/bibtex/contrib/chicago +catalogue-license other-free +catalogue-topics bibtex-sty + +name chicago-annote +category Package +revision 15878 +shortdesc Chicago-based annotated BibTeX style +relocated 1 +longdesc This is a revision of chicagoa.bst, using the commonly-used +longdesc annote field in place of the original's annotation. +containersize 8920 +containerchecksum be2bc8e7e8eaa881ed7a8225b211ef464dd5635b93b867333458521e405fa42375d4804fbdebe1b913fa694aaaa839703494a155b0ea5d4a99162f6335ccef0b +doccontainersize 416 +doccontainerchecksum 893ba3ff20355e0c395b2092fc01689bd956eb177434ab7152aea686210a7167a04b64ed8ec21030e4f4cbc7e1367a90976168b174fd068d6aecbd0304f380db +docfiles size=1 + RELOC/doc/bibtex/chicago-annote/README +runfiles size=10 + RELOC/bibtex/bst/chicago-annote/chicago-annote.bst +catalogue-ctan /biblio/bibtex/contrib/chicago-annote +catalogue-license lppl +catalogue-topics bibtex-sty bibtex-annote + +name chicagoa +category Package +revision 52567 +shortdesc "Chicago" bibliography style with annotations +relocated 1 +longdesc This is a modification of the author's chicago style, to +longdesc support an 'annotation' field in bibliographies. +containersize 8840 +containerchecksum 47cd96b4933b6c0bc4af01e5085af2450b60168813715c946ea18e3e7e5f6bda409862638038917bb678579bfba127fadf51b9a5916e4fb6c78bd10481a273a4 +runfiles size=10 + RELOC/bibtex/bst/chicagoa/chicagoa.bst +catalogue-ctan /biblio/bibtex/contrib/misc/chicagoa.bst +catalogue-license other-free +catalogue-topics bibtex-sty bibtex-annote + +name chickenize +category Package +revision 57325 +shortdesc Use lua callbacks for "interesting" textual effects +relocated 1 +longdesc The package allows manipulations of any LuaTeX document (it is +longdesc known to work with Plain LuaTeX and LuaLaTeX). Most of the +longdesc package's functions are merely for fun or educational use, but +longdesc some functions (for example, colorstretch for visualising the +longdesc badness and font expansion of each line, and letterspaceadjust +longdesc doing what its name says) could be useful in a "normal" LuaTeX +longdesc document. +containersize 14392 +containerchecksum 3cb2182717630c6d251a055021ff671eb930885e5b33978c0cd51176225b1743938447e3d761cfa83c9e3f46cbca1b5686c18f734a1ea5fef50a7ce48873ee0a +doccontainersize 225844 +doccontainerchecksum a2a7ccaa210583de7a765b940959ed4cc2678c6800b283c05f301814b69bb8c704394f8795a1824b41b03652e27106b9e47ed9d5a57179df685294fc3caa16f2 +docfiles size=58 + RELOC/doc/luatex/chickenize/README.md details="Readme" + RELOC/doc/luatex/chickenize/chickenize.pdf details="Package documentation" +srccontainersize 34560 +srccontainerchecksum 614f105bf01bc1a36ece9ed319763a06fc2480bb5c5b1845f47b17ae1753e9fea5e4f25dab9b35cd493d2c6c31de1c636723b676269495d85829b683420b7e6d +srcfiles size=32 + RELOC/source/luatex/chickenize/chickenize.dtx +runfiles size=17 + RELOC/tex/luatex/chickenize/chickenize.lua + RELOC/tex/luatex/chickenize/chickenize.sty + RELOC/tex/luatex/chickenize/chickenize.tex +catalogue-contact-repository https://github.com/alt/chickenize +catalogue-ctan /macros/luatex/generic/chickenize +catalogue-license lppl1.3 +catalogue-topics typesetting games luatex +catalogue-version 0.3 + +name chifoot +category Package +revision 57312 +shortdesc Chicago-style footnote formatting +relocated 1 +longdesc A very short snippet. Will set the footnotes to be conformant +longdesc with the Chicago style, so the footnotes at the bottom of the +longdesc page are now marked with a full-sized number, rather than with +longdesc a superscript number. +containersize 744 +containerchecksum 492361fbe54dae9585b4d62eb1d3c3bf4a81ff8ca8020ad997cb9b30c673cfd8b35cf8ff8d742fe6c1ec7cf529e3ce558b9d5604851fc39c75d72d0fda37dc6d +doccontainersize 948 +doccontainerchecksum 34f5bed1ff3660a5fb1fdacb0ec26311fd47593ed6aa659d12eca8141262d9fa7d6c75b2601dc59a38ab02212269f0e69a5fb5da3d9ae1d884f25677f0f6b545 +docfiles size=1 + RELOC/doc/latex/chifoot/README details="Readme" +runfiles size=1 + RELOC/tex/latex/chifoot/chifoot.sty +catalogue-ctan /macros/latex/contrib/chifoot +catalogue-license lppl1.3 +catalogue-topics footnote page-hf footnote footnote +catalogue-version 1.0 + +name childdoc +category Package +revision 49543 +shortdesc Directly compile \include'd child documents +relocated 1 +longdesc This LaTeX2e package enables the direct compilation of document +longdesc sections included by \include to individual files. +containersize 1320 +containerchecksum b268695b1d91b49ba6a0179124cafa5e5cfed56672424ab40cc31924c07879b4f50be47f9fe9d574f2adb3f183c71d799cde8854a2942b530c40a1e101d399ef +doccontainersize 261280 +doccontainerchecksum 1a74059d946b82da211f5fed7cb120453049ceaf5f10841a78ff8864b41444064b223939bd2296142bde9c7bececc0ca8bed141be02431fd60f069ecab998d87 +docfiles size=75 + RELOC/doc/latex/childdoc/README.txt details="Readme" + RELOC/doc/latex/childdoc/cdocsamp.tex + RELOC/doc/latex/childdoc/cdocsch1.tex + RELOC/doc/latex/childdoc/cdocsch2.tex + RELOC/doc/latex/childdoc/cdocsdrf.tex + RELOC/doc/latex/childdoc/cdocsfn1.tex + RELOC/doc/latex/childdoc/cdocsfn2.tex + RELOC/doc/latex/childdoc/cdocspt3.tex + RELOC/doc/latex/childdoc/cdocspt4.tex + RELOC/doc/latex/childdoc/childdoc.pdf details="Package documentation" +srccontainersize 11000 +srccontainerchecksum d74e34799e3cce5093f59d66d2680350ccf559b0a06045882dad98a60626c59f8e0ed8a6e03d09cb4ff443d3f68a33208af996e2b870047fb381f97bf92dbea8 +srcfiles size=12 + RELOC/source/latex/childdoc/childdoc.dtx + RELOC/source/latex/childdoc/childdoc.ins +runfiles size=1 + RELOC/tex/latex/childdoc/childdoc.def +catalogue-also subfiles +catalogue-ctan /macros/latex/contrib/childdoc +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 2.0 + +name chinese-jfm +category Package +revision 57758 +shortdesc Luatexja-jfm files for Chinese typesetting +relocated 1 +longdesc ChineseJFM is a series of luatexja-jfm files for better Chinese +longdesc typesetting, providing quanjiao, banjiao, and kaiming three +longdesc styles and other fancy features. It can be used for both +longdesc horizontal and vertical writing mode in Simplified/Traditional +longdesc Chinese or Japanese fonts. +containersize 2492 +containerchecksum 28dc8b70bf5e97a4e31defe09a16805a57054a019fa7908f6dda7ecededd8a37bff3f782d04a7c2fb72ec17ee1695d5a5a68daf3a159092080e5a7d667b4c9e1 +doccontainersize 116496 +doccontainerchecksum 6b0b2e65ba4bb79a6c6eb5e4075a1611b2bc752cefe1aae5b220e663b33fde685184433c397ac4957e4f2a6716129aeff5c40ff2082b2a3bcfc13d591e06897a +docfiles size=33 + RELOC/doc/luatex/chinese-jfm/LICENSE + RELOC/doc/luatex/chinese-jfm/README.md details="Readme" + RELOC/doc/luatex/chinese-jfm/chinese-jfm.pdf details="Package documentation" language="zh" + RELOC/doc/luatex/chinese-jfm/chinese-jfm.tex +runfiles size=8 + RELOC/tex/luatex/chinese-jfm/jfm-ja_JP.lua + RELOC/tex/luatex/chinese-jfm/jfm-zh_CN.lua + RELOC/tex/luatex/chinese-jfm/jfm-zh_TW.lua +catalogue-also luatexja +catalogue-contact-bugs https://github.com/tanukihee/ChineseJFM/issues +catalogue-contact-repository https://github.com/tanukihee/ChineseJFM +catalogue-ctan /macros/luatex/generic/chinese-jfm +catalogue-license mit +catalogue-topics chinese luatex macro-gen +catalogue-version 1.1.1 + +name chivo +category Package +revision 54512 +shortdesc Using the free Chivo fonts with LaTeX +relocated 1 +longdesc This work provides the necessary files to use the Chivo fonts +longdesc with LaTeX. Chivo is a set of eight fonts provided by Hector +longdesc Gatti & Omnibus Team under the Open Font License +longdesc [(OFL)](http://scripts.sil.org/OFL), version 1.1. The fonts are +longdesc copyright (c) 2011-2019, Omnibus-Type. +execute addMap Chivo.map +containersize 2380144 +containerchecksum 41098de0294384383294b382722821c90ed2481f7172957b97c5f6f1775c94e0165a1c3aa7dea3c50742683b05419ecf009941bd79cb234b8b2400a7c3f0d567 +doccontainersize 599484 +doccontainerchecksum f430375203fe46e44ce013061f09a8a935b7fca7b4391df2e3f18d2125f4b13ec9b80415e432ce9af267f1caa6f88d6528b474cfc6833e5256e002d54fd221d2 +docfiles size=150 + RELOC/doc/fonts/chivo/Chivo.pdf details="Package documentation" + RELOC/doc/fonts/chivo/OFL.txt + RELOC/doc/fonts/chivo/README.md details="Readme" +srccontainersize 7244 +srccontainerchecksum ca9cb13d589c3141e5e2a981ae9dd1acfe7d18f5c902664c6f836e228a7b95bccc8906b9a54337ebe561e4cdcfee37265bd71ee5c3f7dd1d013188852ac224a2 +srcfiles size=7 + RELOC/source/fonts/chivo/Chivo.dtx + RELOC/source/fonts/chivo/Chivo.ins +runfiles size=2509 + RELOC/fonts/enc/dvips/chivo/chi_24xxsv.enc + RELOC/fonts/enc/dvips/chivo/chi_2lqlus.enc + RELOC/fonts/enc/dvips/chivo/chi_2sgwql.enc + RELOC/fonts/enc/dvips/chivo/chi_3avctt.enc + RELOC/fonts/enc/dvips/chivo/chi_7yzfgj.enc + RELOC/fonts/enc/dvips/chivo/chi_adz5lu.enc + RELOC/fonts/enc/dvips/chivo/chi_bv7x5e.enc + RELOC/fonts/enc/dvips/chivo/chi_c6jprw.enc + RELOC/fonts/enc/dvips/chivo/chi_d2anrk.enc + RELOC/fonts/enc/dvips/chivo/chi_f6ejpj.enc + RELOC/fonts/enc/dvips/chivo/chi_fiyauo.enc + RELOC/fonts/enc/dvips/chivo/chi_h6jra2.enc + RELOC/fonts/enc/dvips/chivo/chi_hhbfoh.enc + RELOC/fonts/enc/dvips/chivo/chi_hlvv6p.enc + RELOC/fonts/enc/dvips/chivo/chi_jo7tnr.enc + RELOC/fonts/enc/dvips/chivo/chi_krtxg6.enc + RELOC/fonts/enc/dvips/chivo/chi_mq36jn.enc + RELOC/fonts/enc/dvips/chivo/chi_pxrm2a.enc + RELOC/fonts/enc/dvips/chivo/chi_rymxky.enc + RELOC/fonts/enc/dvips/chivo/chi_ttjzpe.enc + RELOC/fonts/enc/dvips/chivo/chi_utd4ik.enc + RELOC/fonts/enc/dvips/chivo/chi_vgwtwr.enc + RELOC/fonts/enc/dvips/chivo/chi_wlsyn3.enc + RELOC/fonts/enc/dvips/chivo/chi_wxmaut.enc + RELOC/fonts/enc/dvips/chivo/chi_znhcko.enc + RELOC/fonts/map/dvips/chivo/Chivo.map + RELOC/fonts/opentype/public/chivo/Chivo-Black.otf + RELOC/fonts/opentype/public/chivo/Chivo-BlackItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Bold.otf + RELOC/fonts/opentype/public/chivo/Chivo-BoldItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-ExtraBold.otf + RELOC/fonts/opentype/public/chivo/Chivo-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Italic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Light.otf + RELOC/fonts/opentype/public/chivo/Chivo-LightItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Medium.otf + RELOC/fonts/opentype/public/chivo/Chivo-MediumItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Regular.otf + RELOC/fonts/opentype/public/chivo/Chivo-Thin.otf + RELOC/fonts/opentype/public/chivo/Chivo-ThinItalic.otf + RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/chivo/Chivo-Black.pfb + RELOC/fonts/type1/public/chivo/Chivo-BlackItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-Bold.pfb + RELOC/fonts/type1/public/chivo/Chivo-BoldItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-ExtraBold.pfb + RELOC/fonts/type1/public/chivo/Chivo-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-Italic.pfb + RELOC/fonts/type1/public/chivo/Chivo-Light.pfb + RELOC/fonts/type1/public/chivo/Chivo-LightItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-Medium.pfb + RELOC/fonts/type1/public/chivo/Chivo-MediumItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-Regular.pfb + RELOC/fonts/type1/public/chivo/Chivo-Thin.pfb + RELOC/fonts/type1/public/chivo/Chivo-ThinItalic.pfb + RELOC/fonts/vf/public/chivo/Chivo-Black-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tosf-ts1.vf + RELOC/tex/latex/chivo/Chivo.sty + RELOC/tex/latex/chivo/LY1Chivo-Dnom.fd + RELOC/tex/latex/chivo/LY1Chivo-Inf.fd + RELOC/tex/latex/chivo/LY1Chivo-LF.fd + RELOC/tex/latex/chivo/LY1Chivo-Numr.fd + RELOC/tex/latex/chivo/LY1Chivo-OsF.fd + RELOC/tex/latex/chivo/LY1Chivo-Sup.fd + RELOC/tex/latex/chivo/LY1Chivo-TLF.fd + RELOC/tex/latex/chivo/LY1Chivo-TOsF.fd + RELOC/tex/latex/chivo/OT1Chivo-Dnom.fd + RELOC/tex/latex/chivo/OT1Chivo-Inf.fd + RELOC/tex/latex/chivo/OT1Chivo-LF.fd + RELOC/tex/latex/chivo/OT1Chivo-Numr.fd + RELOC/tex/latex/chivo/OT1Chivo-OsF.fd + RELOC/tex/latex/chivo/OT1Chivo-Sup.fd + RELOC/tex/latex/chivo/OT1Chivo-TLF.fd + RELOC/tex/latex/chivo/OT1Chivo-TOsF.fd + RELOC/tex/latex/chivo/T1Chivo-Dnom.fd + RELOC/tex/latex/chivo/T1Chivo-Inf.fd + RELOC/tex/latex/chivo/T1Chivo-LF.fd + RELOC/tex/latex/chivo/T1Chivo-Numr.fd + RELOC/tex/latex/chivo/T1Chivo-OsF.fd + RELOC/tex/latex/chivo/T1Chivo-Sup.fd + RELOC/tex/latex/chivo/T1Chivo-TLF.fd + RELOC/tex/latex/chivo/T1Chivo-TOsF.fd + RELOC/tex/latex/chivo/TS1Chivo-LF.fd + RELOC/tex/latex/chivo/TS1Chivo-OsF.fd + RELOC/tex/latex/chivo/TS1Chivo-TLF.fd + RELOC/tex/latex/chivo/TS1Chivo-TOsF.fd +catalogue-contact-home https://www.omnibus-type.com/fonts/chivo/ +catalogue-ctan /fonts/chivo +catalogue-license ofl lppl1.3c +catalogue-topics font font-body font-proportional font-sans font-otf font-type1 font-supp font-t1enc +catalogue-version 2.1 + +name chkfloat +category Package +revision 27473 +shortdesc Warn whenever a float is placed "to far away" +relocated 1 +longdesc The package checks for floats that are placed too far from +longdesc their origin. It was motivated by a question on the question +longdesc and answer page. +containersize 1144 +containerchecksum 2a08b71c204709846bbf26ec3883e9037af6ff22e9bdf13b27319ceda55381eb9e3816ead4e444eba4b8a050a188e58d14f0d9153a813953f587c6cabb3932b8 +doccontainersize 44988 +doccontainerchecksum b79b6bd6943dcd07656bb46d44bf50ca2c0148bdb6ae711d17a49e78f3bbf2b95781cd6f3d0b2f7625b131f7485d3db608c963367dd91dc91070501b367471b3 +docfiles size=15 + RELOC/doc/latex/chkfloat/README details="Readme" + RELOC/doc/latex/chkfloat/chkfloat.pdf details="Package documentation" + RELOC/doc/latex/chkfloat/chkfloat.tex +runfiles size=1 + RELOC/tex/latex/chkfloat/chkfloat.sty +catalogue-ctan /macros/latex/contrib/chkfloat +catalogue-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 0.1 + +name chklref +category Package +revision 52649 +shortdesc Check for problems with labels in LaTeX +longdesc It is quite common that after modifying a TeX file, many unused +longdesc labels remain in it. The purpose of chklref is to automatically +longdesc find these useless labels. It also looks for "non starred" +longdesc mathematical environments with no labels and advises the user +longdesc to use a starred version instead. +depend chklref.ARCH +containersize 5084 +containerchecksum 12f5e950ae439d0efd3f625572e8b81d993485a1efd71dc04c078cb1dc9b76650de3c424d7a6c60ebc5ccb5d29f37ed04c477ea1306acf4c5f4fccbd95e18985 +doccontainersize 320916 +doccontainerchecksum 5aeb13824c1781feefe94215f3efce15c212e0d38f9e0d5fb393e96c2159ba43f165c600cd64ee9d8c42c0a4f0db6c2e462ee85a93993965bad0420b6b662ef6 +docfiles size=86 + texmf-dist/doc/man/man1/chklref.1 + texmf-dist/doc/man/man1/chklref.man1.pdf + texmf-dist/doc/support/chklref/Makefile.doc + texmf-dist/doc/support/chklref/README.md details="Readme" + texmf-dist/doc/support/chklref/VERSION + texmf-dist/doc/support/chklref/chklref.pdf details="Package documentation" + texmf-dist/doc/support/chklref/chklref.tex + texmf-dist/doc/support/chklref/release.sh +runfiles size=5 + texmf-dist/scripts/chklref/chklref.pl + texmf-dist/tex/latex/chklref/chklref.sty +catalogue-contact-bugs https://github.com/jlelong/chklref/issues +catalogue-contact-repository https://github.com/jlelong/chklref +catalogue-ctan /support/chklref +catalogue-license gpl3 +catalogue-topics debug-supp +catalogue-version 3.1.2 + +name chklref.aarch64-linux +category Package +revision 52631 +shortdesc aarch64-linux files of chklref +containersize 340 +containerchecksum 1059945445611fa0fa7ebd02a2619c418e9aa0b457a019a3f850522fd741fc399982a7ce9ad87df1f3a9800241849dc46240159c4ddde6386f10ae94134d8f32 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/chklref + +name chklref.amd64-freebsd +category Package +revision 52631 +shortdesc amd64-freebsd files of chklref +containersize 340 +containerchecksum fd147a7b819475a28dcad44c5a875bca2e2a2de020c9d47f4f0e1ef94cb87a14422ee86fdacbfc8baf8cab290cab73d48a39b73702cb65b0f27968f23d339181 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/chklref + +name chklref.amd64-netbsd +category Package +revision 52631 +shortdesc amd64-netbsd files of chklref +containersize 336 +containerchecksum b01ae3017cc5bdbf39351933b14a16047a4b74402773a5558e594642098e44adafaf364d3a0afa52c5beaef7918a9cbdceabb061ca19e1b4a84d9a0195ab769e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/chklref + +name chklref.armhf-linux +category Package +revision 52631 +shortdesc armhf-linux files of chklref +containersize 336 +containerchecksum b5758df3789dbb93914ad9e210ab8400440c64fd15955482df147347cfe0f0b817ae04e236a89432b0cbd936aa21909c5f788ebc58979c85a8de58d9c3ba0cf0 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/chklref + +name chklref.i386-cygwin +category Package +revision 52631 +shortdesc i386-cygwin files of chklref +containersize 336 +containerchecksum 532c6807179abbd4bed22e153a4d79b29972dcdbf4b8e34c81a250b49d41bb42139f6b111f951eb8a49552cab70e5c60c29d6595f1097702392fa8fd93f70f2e +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/chklref + +name chklref.i386-freebsd +category Package +revision 52631 +shortdesc i386-freebsd files of chklref +containersize 340 +containerchecksum 447936d8b5f124242bd2b37c3da7de9b5843161df55fbc4548603dce052b4052a7dc3ee5cf9ac02668651c32e2424253a6c980b9f07f89b2877a9640b8fcff8a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/chklref + +name chklref.i386-linux +category Package +revision 52631 +shortdesc i386-linux files of chklref +containersize 336 +containerchecksum afc6e4d434c858de403a7b5a72c4dc084d60aec2edc542dc4f873b3796ac08136af9b5c04ad3f39dfb3fc8ed2479f5812f73dd8a71943c73f32a45edcfa50f19 +binfiles arch=i386-linux size=1 + bin/i386-linux/chklref + +name chklref.i386-netbsd +category Package +revision 52631 +shortdesc i386-netbsd files of chklref +containersize 336 +containerchecksum 5cdf406d2a685082213027db2b9395efb7912c672c4c065404549310a3cc385d8090f499e97248c64d779fe18b2963de5e38ad147902c2f2e58ff255cb9e4d95 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/chklref + +name chklref.i386-solaris +category Package +revision 52631 +shortdesc i386-solaris files of chklref +containersize 336 +containerchecksum a858b7cb4015d655688ae87d345ce54e5aabd5fb9d83586de3929ef0e25f477ef14c1951ebaed85bfd9e3ac484acafadc35c8d4bc3d0a11d09ceb0bc8ac374fb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/chklref + +name chklref.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of chklref +containersize 340 +containerchecksum c0b6f216c96bc95857a0a639b6a837b83f6faa36bf6ab312803c3c45e25885d794c5818c52d1fddf531e7dbaac670350455a1e01d8e2a69e867afb5171f2bc04 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/chklref + +name chklref.win32 +category Package +revision 52631 +shortdesc win32 files of chklref +containersize 680 +containerchecksum 85a91343daaf1ce84566f3db1980116a3322eead95640300274e0e858b23d1a68517c4c4eda366ade6b20845a0740c058fa6c97759abce5a136a929e6c21ed15 +binfiles arch=win32 size=1 + bin/win32/chklref.exe + +name chklref.x86_64-cygwin +category Package +revision 52631 +shortdesc x86_64-cygwin files of chklref +containersize 336 +containerchecksum 64b253e00e4337dd5f7ab0aca8db70ea73e17a28b66a29f9e7483b8cbb13d09665e98de8a1a7728f2ec22888c42d6cf75afc96a36f299be856ce958a24ed12c8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/chklref + +name chklref.x86_64-darwinlegacy +category Package +revision 52631 +shortdesc x86_64-darwinlegacy files of chklref +containersize 344 +containerchecksum 6831e2f0b8fc35c1734529b4a1dfa952f82de1569bbc6299e908a423bc46a5b46678b7f933722b060bd1f11663878942000d777e23825a08207e3379c057e6c0 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/chklref + +name chklref.x86_64-linux +category Package +revision 52631 +shortdesc x86_64-linux files of chklref +containersize 336 +containerchecksum 30b1ec0fa231038e52454198f2c0db11485e4809e0919e744d5b70d6564c221b0c35bc9b247860099bf8ac695989b9bd99e6b2c56e8bc7483de682fedf85ec4f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/chklref + +name chklref.x86_64-linuxmusl +category Package +revision 52631 +shortdesc x86_64-linuxmusl files of chklref +containersize 340 +containerchecksum 66487838a7c158e38c1c42fec3a889f99b185f5e0b08dd1869a3bf89779ca2d94e61d54bde523947cf25af124a45423bc8dc53efeeafd3ad763a14a00b7efefd +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/chklref + +name chklref.x86_64-solaris +category Package +revision 52631 +shortdesc x86_64-solaris files of chklref +containersize 336 +containerchecksum e55ebaad9cb420d0d254ea752c4ccb3855f01e3b2624f0423be976b09647c8d895bb5a54fb6feb24d07961550ab2d9260e3eb9495997e43cba4a31d3019fab87 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/chklref + +name chktex +category TLCore +revision 52851 +shortdesc Check for errors in LaTeX documents +longdesc The program reports typographic and other errors in LaTeX +longdesc documents. Filters are also provided for checking the LaTeX +longdesc parts of CWEB documents. +depend chktex.ARCH +containersize 9944 +containerchecksum 918392b98262e29503fff544c735b9c7d8da07340362d258b88b09a940d6c8495d761c416ae79b99711ad0fafc559b4ec3b71511e881adac3f3d55c617ddc2cc +doccontainersize 425800 +doccontainerchecksum 5c24c5fe8f3100346e52104d0f65b096b9e3af7cdf02318fdc1977c7b9ded9b2a40fb06bd13a77866a34a9bfe77365038303e0cd09a327afcfe6c81b3dc36fdf +docfiles size=112 + texmf-dist/doc/chktex/ChkTeX.pdf details="System documentation" + texmf-dist/doc/man/man1/chktex.1 + texmf-dist/doc/man/man1/chktex.man1.pdf + texmf-dist/doc/man/man1/chkweb.1 + texmf-dist/doc/man/man1/chkweb.man1.pdf + texmf-dist/doc/man/man1/deweb.1 + texmf-dist/doc/man/man1/deweb.man1.pdf +runfiles size=8 + texmf-dist/chktex/chktexrc + texmf-dist/scripts/chktex/chkweb.sh + texmf-dist/scripts/chktex/deweb.pl +catalogue-contact-home http://www.nongnu.org/chktex/ +catalogue-ctan /support/chktex +catalogue-license gpl2 +catalogue-topics debug-supp +catalogue-version 1.7.6 + +name chktex.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of chktex +containersize 52044 +containerchecksum 44462e296c7c83a93fc9a461fc528902d4e06305b518aaf019b7d1ecc2d56f879b7bb840549ae1b504026b190485eb615880e1ede52ebc84d3ad9b9630ee42f9 +binfiles arch=aarch64-linux size=38 + bin/aarch64-linux/chktex + bin/aarch64-linux/chkweb + bin/aarch64-linux/deweb + +name chktex.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of chktex +containersize 56696 +containerchecksum 64c5fe8d7dcb19868a6922111368f8b8d6140fd55bf2e132c6a1341b3f9cb357996d104a0f9f7c574f2c873732086ec61e8f79b36927cbf76ff1853927b42c10 +binfiles arch=amd64-freebsd size=37 + bin/amd64-freebsd/chktex + bin/amd64-freebsd/chkweb + bin/amd64-freebsd/deweb + +name chktex.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of chktex +containersize 50780 +containerchecksum 0ab9c2fb439906929284ece5ca972277d99f7fb17a861be0d17ae52db9d1e924c4a8df7fdb26e1e5d46ba445ce9f009cdcf9d7bbbab04195b1c2ecf5d91c0450 +binfiles arch=amd64-netbsd size=43 + bin/amd64-netbsd/chktex + bin/amd64-netbsd/chkweb + bin/amd64-netbsd/deweb + +name chktex.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of chktex +containersize 43216 +containerchecksum e834e89773708a8a6c45c6f49204ff93853ab1bf0a6fe0f634b6b4230ed223933da156aac5c70874b9cf76a2ba65aecc3b8409b57f2588ead93a79cf0ebda38b +binfiles arch=armhf-linux size=31 + bin/armhf-linux/chktex + bin/armhf-linux/chkweb + bin/armhf-linux/deweb + +name chktex.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of chktex +containersize 24572 +containerchecksum 0c2e9f228858bbf376cb7bf365200d241bfabfe8983ef21397d9ced8982b881f31cbebdce93668cb80f62f3415e4ea0d30840a1283149f3519ff9da502d60855 +binfiles arch=i386-cygwin size=17 + bin/i386-cygwin/chktex.exe + bin/i386-cygwin/chkweb + bin/i386-cygwin/deweb + +name chktex.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of chktex +containersize 50116 +containerchecksum 16ab759ee5ddd44bdef1bcfb65677a4c79de7b06a4fe528ce0ecac8d0f36b856c1d23ff6a7f860624d9ee61bfd6423851ba7ce1887d9657fba2d2ac7dcf72f0b +binfiles arch=i386-freebsd size=32 + bin/i386-freebsd/chktex + bin/i386-freebsd/chkweb + bin/i386-freebsd/deweb + +name chktex.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of chktex +containersize 56784 +containerchecksum 7f6a9f78c386fa6e391206b2d27eb7512393579a28133e84d7fed57bb1ee8a3fa2370e438802e5c134981a9258f01c3d6166ab3cda2bfb56ae985c324258c7e6 +binfiles arch=i386-linux size=39 + bin/i386-linux/chktex + bin/i386-linux/chkweb + bin/i386-linux/deweb + +name chktex.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of chktex +containersize 45852 +containerchecksum 33191759b3c467ce0846e487c1ca57237889601df57e57547a5fee1961407b9cf1b742bb14ce3518e8bbffc5d31b474e11f2fbf67757ca24920a455dba0b9ed3 +binfiles arch=i386-netbsd size=38 + bin/i386-netbsd/chktex + bin/i386-netbsd/chkweb + bin/i386-netbsd/deweb + +name chktex.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of chktex +containersize 53748 +containerchecksum b306c9422a924baa6fbdc2eb05f14096cc166b504a121ab920bc7dc9979b685fa22bece5ce6ae809e709141aa0e7f63cacdfee3f59de5b236417f9d85bfb0b9e +binfiles arch=i386-solaris size=32 + bin/i386-solaris/chktex + bin/i386-solaris/chkweb + bin/i386-solaris/deweb + +name chktex.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of chktex +containersize 104632 +containerchecksum 9f39b5989bf27e91d743abb1a07ed3ab3e692d80e32d4cd7f0feb53a799cea06266e2dd5da0e9c165cca3d8f6137e6bfc9dbefd3cfbad07fcb55643c00e4d605 +binfiles arch=universal-darwin size=90 + bin/universal-darwin/chktex + bin/universal-darwin/chkweb + bin/universal-darwin/deweb + +name chktex.win32 +category TLCore +revision 58783 +shortdesc win32 files of chktex +containersize 44920 +containerchecksum 10c7e7626fc1600e0ce0652752592e183a05f25d44c0eeaee6f6618221bfbfd42082db07724151f8bb51ab22f6eb17b0d45a2fb3f69875109b8370a7070eb0a4 +binfiles arch=win32 size=23 + bin/win32/chktex.exe + bin/win32/deweb.exe + +name chktex.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of chktex +containersize 26212 +containerchecksum 5bc5957b9d6b05691f79926c8e478fd0d3f256f35f181ee36cd5b6e60a53e99d82b1fbc60c338d87a0fccf8226b493a36f15f938045b99fc47a2cea121acd5d7 +binfiles arch=x86_64-cygwin size=18 + bin/x86_64-cygwin/chktex.exe + bin/x86_64-cygwin/chkweb + bin/x86_64-cygwin/deweb + +name chktex.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of chktex +containersize 54100 +containerchecksum f0403525e5782e61b087748e9876121ce53eac394ce18ab8a84d3ab92cffb5f876d869f7c2ce454fd1cf56c6a7f144bead86990c46e72b9ff183314c6e80ba52 +binfiles arch=x86_64-darwinlegacy size=34 + bin/x86_64-darwinlegacy/chktex + bin/x86_64-darwinlegacy/chkweb + bin/x86_64-darwinlegacy/deweb + +name chktex.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of chktex +containersize 55220 +containerchecksum 27f6af4039dd9a2344b1bec6b99f14f1df39e5c3687ebabf2b06b5a0a767844eb879f52a3c03109ed325d02c1f59f6db25fd09826458a2fe21e5f3c10fe54ba5 +binfiles arch=x86_64-linux size=36 + bin/x86_64-linux/chktex + bin/x86_64-linux/chkweb + bin/x86_64-linux/deweb + +name chktex.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of chktex +containersize 60236 +containerchecksum 922659cbec7c90d9b176812d717f88f3fabe4de27a787e7c801c699a256d3e80ae492997a661b2ba094291b9fe716fb4bb2e53428958c4322f3b2146eea30224 +binfiles arch=x86_64-linuxmusl size=38 + bin/x86_64-linuxmusl/chktex + bin/x86_64-linuxmusl/chkweb + bin/x86_64-linuxmusl/deweb + +name chktex.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of chktex +containersize 59828 +containerchecksum 21908a4162b07c4d1d5d99cc7071afe4ac39cb808ba6dd408642eecb7880353e259cb4152160fad96bf6b45753d055ff670bf87765845942a712fbbd77133e95 +binfiles arch=x86_64-solaris size=38 + bin/x86_64-solaris/chktex + bin/x86_64-solaris/chkweb + bin/x86_64-solaris/deweb + +name chletter +category Package +revision 20060 +shortdesc Class for typesetting letters to Swiss rules +relocated 1 +longdesc The class enables composition of letters fitting into Swiss C5 +longdesc & C6/5 windowed envelopes. No assumption is made about the +longdesc language used. The class is based on the standard LaTeX classes +longdesc and is compatible with the LaTeX letter class. It is not +longdesc limited to letters and may be used as a generic document class; +longdesc it is used with the chextras package. +containersize 3724 +containerchecksum a32f71d89ee69ad60de6173f415d0a3aca7563107cfed71aab0ae99972a2ead442bc75f848ddf07c26c5d464b2224afed5ce976bf037049764f722396e9666d9 +doccontainersize 132172 +doccontainerchecksum 05cf8a4f37eb51cc00d9c254dcb817c41167eeb7643f7a793d1a841bd2c8a3715ced2036b974533521f48be48ae493e52ef0809789d36155d1ffc9624db538d5 +docfiles size=35 + RELOC/doc/latex/chletter/README details="Readme" + RELOC/doc/latex/chletter/chletter.pdf details="Package documentation" language="en" + RELOC/doc/latex/chletter/chlettmp.tex +srccontainersize 16892 +srccontainerchecksum 6e4c5063d7710fe5842ba684705d4b94478a9d468e68d60fe0b2ad23fdf717841421bb034317cf240269b77e4351eadce854145fe7e4300b2f9b698a6617679c +srcfiles size=17 + RELOC/source/latex/chletter/chletter.dtx + RELOC/source/latex/chletter/chletter.ins +runfiles size=3 + RELOC/tex/latex/chletter/chletter.cls +catalogue-ctan /macros/latex/contrib/chletter +catalogue-license lppl +catalogue-topics letter swiss +catalogue-version 2.0 + +name chngcntr +category Package +revision 47577 +shortdesc Change the resetting of counters +relocated 1 +longdesc Defines commands \counterwithin (which sets up a counter to be +longdesc reset when another is incremented) and \counterwithout (which +longdesc unsets such a relationship). +containersize 2048 +containerchecksum 0fc94f91911c623578912ed43526d18f85a003f797e94ef5610aab8477154078efae7000256892cc3d3103843ac8065c27d56a10c6f57c16d9ff13693930b0b0 +doccontainersize 234200 +doccontainerchecksum 3b63e4676232c05516bb12c189873e4af39b8b34df2690c897c4733203c9f19a30759850979c47b05e5fea0bd1c277a5c1ea0624709cda6a3a4ab0196231afb9 +docfiles size=59 + RELOC/doc/latex/chngcntr/README.md + RELOC/doc/latex/chngcntr/chngcntr.pdf details="Package documentation" + RELOC/doc/latex/chngcntr/chngcntr.tex +runfiles size=2 + RELOC/tex/latex/chngcntr/chngcntr.sty +catalogue-ctan /macros/latex/contrib/chngcntr +catalogue-license lppl +catalogue-topics macro-supp counter-mgmt +catalogue-version 1.1a + +name chordbars +category Package +revision 49569 +shortdesc Print chord grids for pop/jazz tunes +relocated 1 +longdesc This Tikz-based music-related package is targeted at pop/jazz +longdesc guitar/bass/piano musicians. They usually need only the chords +longdesc and the song structure. This package produces rectangular song +longdesc patterns with "one square per bar", with the chord shown inside +longdesc the square. It also handles the song structure by showing the +longdesc bar count and the repetitions of the patterns. +containersize 3376 +containerchecksum 1349aef2649fdd9b54751425d54cc9b0746dbcec9eebd1264c36867517c4f422d74d390a0e43d22fe81c5a36ff00e6cedc5e652183422e9408a2165486e79052 +doccontainersize 196648 +doccontainerchecksum ba8aae66430e2df58f01bb9860bfab9cdb3aa0636f77f657a1fe4405ec9397773b51b01d94201bb8dfc8660d05f2aa4ce9233ef985d3e4e35faf005c81759404 +docfiles size=56 + RELOC/doc/latex/chordbars/README.md details="Readme" + RELOC/doc/latex/chordbars/chordbars_manual.pdf details="Package documentation" + RELOC/doc/latex/chordbars/chordbars_manual.tex + RELOC/doc/latex/chordbars/listing_HOTRS.lst + RELOC/doc/latex/chordbars/listing_RBP.lst + RELOC/doc/latex/chordbars/listing_blues.lst + RELOC/doc/latex/chordbars/listing_halfbar.lst + RELOC/doc/latex/chordbars/listing_sharp_flat.lst +runfiles size=3 + RELOC/tex/latex/chordbars/chordbars.sty +catalogue-contact-bugs https://github.com/skramm/chordbars/issues +catalogue-contact-repository https://github.com/skramm/chordbars +catalogue-ctan /graphics/pgf/contrib/chordbars +catalogue-license lppl1.3 +catalogue-topics music chords pgf-tikz +catalogue-version 1.1 + +name chordbox +category Package +revision 51000 +shortdesc Draw chord diagrams +relocated 1 +longdesc This package provides two macros for drawing chord diagrams, as +longdesc may be found for example in chord charts/books and educational +longdesc materials. They are composed as TikZ pictures and have several +longdesc options to modify their appearance. +containersize 3376 +containerchecksum 0e07cae95a8ee5f040b4df4d94f996f772f0780bbe47c77db891fbf44b08f20e28ba8442dee3e981a052b0ccebb0d630e0f0917eb7c65a490c844a65f3b2e3f4 +doccontainersize 565268 +doccontainerchecksum 0826513579953ea80047d596b6c577e4b6f00fcdddb7a06bdc953bccd72e09ec2fd9123995c1e04260ad880bc860454abd283885817a9eb359ec7cb5beba3cc5 +docfiles size=143 + RELOC/doc/latex/chordbox/README.md details="Readme" + RELOC/doc/latex/chordbox/chordbox.pdf details="Package documentation" + RELOC/doc/latex/chordbox/chordbox.tex +runfiles size=2 + RELOC/tex/latex/chordbox/chordbox.sty +catalogue-contact-bugs https://github.com/sfranzen/chordbox/issues +catalogue-contact-repository https://github.com/sfranzen/chordbox +catalogue-ctan /graphics/pgf/contrib/chordbox +catalogue-license lppl1.3 +catalogue-topics music chords pgf-tikz +catalogue-version 1.0 + +name chronology +category Package +revision 37934 +shortdesc Provides a horizontal timeline +relocated 1 +longdesc A timeline package that allows labelling of events with per-day +longdesc granularity. Other features include relative positioning with +longdesc unit specification, adjustable tick mark step size, and scaling +longdesc to specified width. +containersize 1656 +containerchecksum 6fca0b31511366c1e39f6518bf5c6e10bfb503a8a901d9e1167866a40e2fbb9d2a6e109f48e146bbaaa2c017ac96e82196a5f49a91c6c9f52eee2633fd5c0737 +doccontainersize 12772 +doccontainerchecksum ce0417e339724dfd97c227f104d9cd0b697c1cb7a5c586c890c3e938bbdaf5db2984fa83a09d983970c1105751cd012e544807a74bf0a35ecd2074a97d0520a4 +docfiles size=6 + RELOC/doc/latex/chronology/README.md + RELOC/doc/latex/chronology/example.pdf details="Package documentation" + RELOC/doc/latex/chronology/example.tex +runfiles size=1 + RELOC/tex/latex/chronology/chronology.sty +catalogue-ctan /macros/latex/contrib/chronology +catalogue-license lppl1.3 +catalogue-topics planning calendar +catalogue-version 1.1.1 + +name chronosys +category Package +revision 26700 +shortdesc Drawing time-line diagrams +relocated 1 +longdesc Macros to produce time line diagrams. Interfaces for Plain TeX, +longdesc ConTeXt and LaTeX are provided. +containersize 7956 +containerchecksum a9503f9440dfa9a42a3f2d345c5e74faa9f40b03264bdf8482ffa58c34318467a7863033acaf089acff6056f91e9d85969676c1b0b080b363c1274ab96f022ed +doccontainersize 233192 +doccontainerchecksum 1f2078bc645e1a9af4220bf4041391353495f76f530ab5f1a35ebf2c2a534d60a910a9ec079ec2222ced7fc3d9c146bce3d6d4d703acd2bfb9ccf357f6fd812c +docfiles size=78 + RELOC/doc/generic/chronosys/README details="Readme" + RELOC/doc/generic/chronosys/docchronosys_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/chronosys/docchronosys_en.tex + RELOC/doc/generic/chronosys/docchronosys_fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/chronosys/docchronosys_fr.tex +runfiles size=12 + RELOC/tex/generic/chronosys/chronosys.sty + RELOC/tex/generic/chronosys/chronosys.tex + RELOC/tex/generic/chronosys/chronosyschr.tex + RELOC/tex/generic/chronosys/x-chronosys.tex +catalogue-ctan /macros/latex/contrib/chronosys +catalogue-license lppl1.3 +catalogue-topics diagram +catalogue-version 1.2 + +name chs-physics-report +category Package +revision 54512 +shortdesc Physics lab reports for Carmel High School +relocated 1 +longdesc This package may optionally be used by students at Carmel High +longdesc School in Indiana in the United States to write physics lab +longdesc reports for FW physics courses. As many students are beginners +longdesc at LaTeX, it also attempts to simplify the report-writing +longdesc process by offering macros for commonly used notation and by +longdesc automatically formatting the documents for students who will +longdesc only use TeX for mathematics and not typesetting. The package +longdesc depends on amsmath, calc, fancyhdr, geometry, graphicx, +longdesc letltxmacro, titlesec, transparent, and xcolor. +containersize 2824 +containerchecksum 568c7b71838651881417900aa5eb8711d5e38b4496e130802b7732482c4b8d83585c54a507d2f5ee27823c9d97581db7508ea79645275ac8b1b4d02238c814e3 +doccontainersize 194616 +doccontainerchecksum edfd22aa48a1d3db245d3e41b36cdceabe4e3c2e263d3fb270325b6acc57dabe686561af5359b849e8a17d1f2e9b77f2016cfbcf8b0af37ba3120085de9e6764 +docfiles size=56 + RELOC/doc/latex/chs-physics-report/README.txt details="Readme" + RELOC/doc/latex/chs-physics-report/chs-physics-report.pdf details="Package documentation" + RELOC/doc/latex/chs-physics-report/chs-physics-report.tex +runfiles size=2 + RELOC/tex/latex/chs-physics-report/chs-physics-report.sty +catalogue-ctan /macros/latex/contrib/chs-physics-report +catalogue-license pd cc-by-sa-3 +catalogue-topics physics report-like + +name chscite +category Package +revision 28552 +shortdesc Bibliography style for Chalmers University of Technology +relocated 1 +longdesc The package, heavily based on the harvard package for +longdesc Harvard-style citations, provides a citation suite for students +longdesc at Chalmers University of Technology that follows given +longdesc recommendations. +containersize 6344 +containerchecksum 809c76b1bb47e194c43c869b27352578fb5490f6a9a8bbc2fae662b357bd36a099f5114765611d73fae87a846526781ceb7b45aa8968836c543e15f13e7ad7a8 +doccontainersize 191012 +doccontainerchecksum 215085d808b75d0d7f3e7e95830c63172606fd43e1e30a20e376f43d12959da71e8e77a6f06a6058d8ab9f9406f1260262af3e904ff65254e5d2635ca6d15975 +docfiles size=48 + RELOC/doc/latex/chscite/README details="Readme" + RELOC/doc/latex/chscite/chscite.pdf details="Package documentation" +srccontainersize 9476 +srccontainerchecksum cf81a7ceda538e9a3a8bb0a78927c493d42993bb295680792ba643d6f771722e0fbe342bf59cd3104cccb63b1ece7905418b998c1af1dbd7c879cce024681f9f +srcfiles size=12 + RELOC/source/latex/chscite/chscite.dtx + RELOC/source/latex/chscite/chscite.ins +runfiles size=9 + RELOC/bibtex/bst/chscite/chscite.bst + RELOC/tex/latex/chscite/chscite.sty +catalogue-ctan /macros/latex/contrib/chscite +catalogue-license lppl1.2 +catalogue-topics bibtex-supp +catalogue-version 2.9999 + +name churchslavonic +category Package +revision 42751 +shortdesc Typeset documents in Church Slavonic language using Unicode +relocated 1 +longdesc The package provides fonts, hyphenation patterns, and +longdesc supporting macros to typeset Church Slavonic texts. It depends +longdesc on the following other packages: fonts-churchslavonic, +longdesc hyph-utf8, intcalc, etoolbox, and xcolor. +depend etoolbox +depend fonts-churchslavonic +depend hyphen-churchslavonic +depend oberdiek +depend xcolor +containersize 7036 +containerchecksum 6c572235b95bb1f8407addefdefa1d7d3facc09b963f4d65d2be317986eb6523db9a8ff7104f15c526962ea8fbd0e1430b68867bf619cebc9b494f5cc04bfb07 +doccontainersize 176072 +doccontainerchecksum 90d563afc8248ded0ea4f30ff685e2fd9da8dec7ea92a3d4313040905be883af3f11393a031ec85ad39e9e51d374557e0f1f373a78caf855d2048fc4e0393e37 +docfiles size=58 + RELOC/doc/latex/churchslavonic/LICENSE + RELOC/doc/latex/churchslavonic/README details="Readme" + RELOC/doc/latex/churchslavonic/churchslavonic-en.pdf details="Package documentation" + RELOC/doc/latex/churchslavonic/churchslavonic-en.tex + RELOC/doc/latex/churchslavonic/churchslavonic-ru.pdf details="Package documentation" language="ru" + RELOC/doc/latex/churchslavonic/churchslavonic-ru.tex + RELOC/doc/latex/churchslavonic/churchslavonic.tex +runfiles size=11 + RELOC/tex/latex/churchslavonic/churchslavonic.sty + RELOC/tex/latex/churchslavonic/cu-calendar.sty + RELOC/tex/latex/churchslavonic/cu-kinovar.sty + RELOC/tex/latex/churchslavonic/cu-num.sty + RELOC/tex/latex/churchslavonic/cu-util.sty + RELOC/tex/latex/churchslavonic/gloss-churchslavonic.ldf +catalogue-also fonts-churchslavonic +catalogue-contact-repository https://github.com/slavonic/cu-tex +catalogue-ctan /language/churchslavonic +catalogue-license mit +catalogue-topics churchslavonic multilingual-addon +catalogue-version 0.2.1 + +name cinzel +category Package +revision 54512 +shortdesc LaTeX support for Cinzel and Cinzel Decorative fonts +relocated 1 +longdesc Cinzel and Cinzel Decorative fonts, designed by Natanael Gama +longdesc Natanael Gama), find their inspiration in first century roman +longdesc inscriptions, and are based on classical proportions. Cinzel is +longdesc all-caps (similar to Trajan and Michelangelo), but is available +longdesc in three weights (Regular, Bold, Black). There are no italic +longdesc fonts, but there are Decorative variants, which can be selected +longdesc by the usual italic-selection commands in the package's LaTeX +longdesc support. +execute addMap cinzel.map +containersize 533316 +containerchecksum 7242b771113d9164231d060169e70f6ae6425fc992edebb86fae8e76128a294f1aba290c2340c9b28ad9e4a7d90f9dc44dbc793f6f171b10b13005bfa848e239 +doccontainersize 39128 +doccontainerchecksum 8bebe9427e35fd55a2b1e11d924124605b2045aaa50c7ae15e78b8fcad2b50c0363686f6eb6ddc8bcf3f407a8afc983df5b6cc1d8e2c9713616d1110532364d1 +docfiles size=13 + RELOC/doc/fonts/cinzel/README details="Readme" + RELOC/doc/fonts/cinzel/SIL_Open_Font_License.txt + RELOC/doc/fonts/cinzel/cinzel-samples.pdf details="Font samples" + RELOC/doc/fonts/cinzel/cinzel-samples.tex +runfiles size=431 + RELOC/fonts/enc/dvips/cinzel/cnzl_7luz43.enc + RELOC/fonts/enc/dvips/cinzel/cnzl_7t2zcj.enc + RELOC/fonts/enc/dvips/cinzel/cnzl_aakhvz.enc + RELOC/fonts/enc/dvips/cinzel/cnzl_k6z3ge.enc + RELOC/fonts/map/dvips/cinzel/cinzel.map + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1.tfm + RELOC/fonts/truetype/ndiscovered/cinzel/Cinzel-Black.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/Cinzel-Bold.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/Cinzel-Regular.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/CinzelDecorative-Black.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/CinzelDecorative-Bold.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/CinzelDecorative-Regular.ttf + RELOC/fonts/type1/ndiscovered/cinzel/Cinzel-Black.pfb + RELOC/fonts/type1/ndiscovered/cinzel/Cinzel-Bold.pfb + RELOC/fonts/type1/ndiscovered/cinzel/Cinzel-Regular.pfb + RELOC/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Black.pfb + RELOC/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Bold.pfb + RELOC/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Regular.pfb + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1.vf + RELOC/tex/latex/cinzel/LY1Cinzel-LF.fd + RELOC/tex/latex/cinzel/LY1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/OT1Cinzel-LF.fd + RELOC/tex/latex/cinzel/OT1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/T1Cinzel-LF.fd + RELOC/tex/latex/cinzel/T1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/TS1Cinzel-LF.fd + RELOC/tex/latex/cinzel/TS1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/cinzel.sty +catalogue-contact-home http://ndiscovered.com +catalogue-ctan /fonts/cinzel +catalogue-license ofl lppl +catalogue-topics font font-decor font-type1 font-ttf font-supp font-t1enc + +name circ +category Package +revision 15878 +shortdesc Macros for typesetting circuit diagrams +relocated 1 +longdesc Several electrical symbols like resistor, capacitor, +longdesc transistors etc., are defined. The symbols can be connected +longdesc with wires. The package also contains an American resistor +longdesc symbol for those of us on that side of the Atlantic. The +longdesc package also has simple facilities for producing optics +longdesc diagrams; however, no-one would deny that the PSTricks +longdesc pst-optic package, or the MetaPost makecirc package does the +longdesc job better. +containersize 23692 +containerchecksum 638a89cd3ef49ba7f21f42944d1452c2866265f326e33e07b47d9607723de7f477766e8c240df7a91081f864f12346aa358b48f66cb67017fc11ace129c9c694 +doccontainersize 207692 +doccontainerchecksum 389d98b3b5cce6c93d84bb3022f4aaaad1927bf78b323c106f7e89612835b92a2ff878fbe8d120406018549dba6cb370d88f098df523ff69a8810ff6e2b80241 +docfiles size=81 + RELOC/doc/latex/circ/COPYING + RELOC/doc/latex/circ/README details="Readme" + RELOC/doc/latex/circ/cidoc.tex + RELOC/doc/latex/circ/circ.pdf details="Package documentation" + RELOC/doc/latex/circ/circ.txt + RELOC/doc/latex/circ/cisyms.tex + RELOC/doc/latex/circ/index.hlp +srccontainersize 38440 +srccontainerchecksum b6127892465f3bbba51b3fa0f1d35e667cb4286adf0280691656a8b62c52ee57aa01578e716c495612b00a5725ed30c17b1a81b6346f184fd6d60611ea2663be +srcfiles size=47 + RELOC/source/latex/circ/Makefile + RELOC/source/latex/circ/circ.drv + RELOC/source/latex/circ/circ.dtx + RELOC/source/latex/circ/circ.ins +runfiles size=43 + RELOC/fonts/source/public/circ/cibimos.mf + RELOC/fonts/source/public/circ/cicirc.mf + RELOC/fonts/source/public/circ/cidiod.mf + RELOC/fonts/source/public/circ/cioptic.mf + RELOC/fonts/source/public/circ/ciphysic.mf + RELOC/fonts/source/public/circ/cirest.mf + RELOC/fonts/source/public/circ/cisym.mf + RELOC/fonts/source/public/circ/ciwidko.mf + RELOC/fonts/source/public/circ/csym.mf + RELOC/fonts/source/public/circ/defcirc.mf + RELOC/fonts/tfm/public/circ/cioptic.tfm + RELOC/tex/latex/circ/basic.def + RELOC/tex/latex/circ/box.def + RELOC/tex/latex/circ/circ.sty + RELOC/tex/latex/circ/gate.def + RELOC/tex/latex/circ/ic.def + RELOC/tex/latex/circ/oldgate.def + RELOC/tex/latex/circ/optics.def + RELOC/tex/latex/circ/physics.def +catalogue-also circuit-macros +catalogue-ctan /macros/generic/diagrams/circ +catalogue-license gpl +catalogue-topics diagram-circ font font-mf +catalogue-version 1.1 + +name circledsteps +category Package +revision 53382 +shortdesc Typeset circled numbers +relocated 1 +longdesc This package generates circled numbers (or other kinds of +longdesc markers or small text) to mark "steps" in procedures, +longdesc exercises, and so on. +containersize 1852 +containerchecksum f8e34dbb7167f4d9b6a9585c856f57cadcde9ccbde1d28a1918ff3f4c04916fe347acd2377cdfc5d0cb03ca2a8f5ed3389ca134e8621084da6504e0a5fa10622 +doccontainersize 415380 +doccontainerchecksum b7a50fa849e89393ebc6624623743ee7be737805c7807dd57957c05bd3489d908731c37c87d950615e5d6b835035169717a2648ba876ae458a0d4b0f779f0eea +docfiles size=109 + RELOC/doc/latex/circledsteps/README.md details="Readme" + RELOC/doc/latex/circledsteps/circledsteps-manual.pdf details="Package documentation" + RELOC/doc/latex/circledsteps/circledsteps-manual.tex + RELOC/doc/latex/circledsteps/ctikzexample.tex + RELOC/doc/latex/circledsteps/lppl-1-3c_license.txt +runfiles size=2 + RELOC/tex/latex/circledsteps/circledsteps.sty +catalogue-contact-home https://github.com/Rmano/circledsteps +catalogue-contact-support https://github.com/Rmano/circledsteps/issues +catalogue-ctan /macros/latex/contrib/circledsteps +catalogue-license lppl1.3c +catalogue-topics numbers +catalogue-version 1.3 + +name circuit-macros +category Package +revision 57308 +shortdesc M4 macros for electric circuit diagrams +relocated 1 +longdesc A set of m4 macros for drawing high-quality electric circuits +longdesc containing fundamental elements, amplifiers, transistors, and +longdesc basic logic gates to include in TeX, LaTeX, or similar +longdesc documents. Some tools and examples for other types of diagrams +longdesc are also included. The macros can be evaluated to drawing +longdesc commands in the pic language, which is very easy to understand +longdesc and which has a good power/complexity ratio. Pic contains +longdesc elements of a simple programming language, and is well-suited +longdesc to line drawings requiring parametric or conditional +longdesc components, fine tuning, significant geometric calculations or +longdesc repetition, or that are naturally block structured or tree +longdesc structured. (The m4 and pic processors are readily available +longdesc for Unix and PC machines.) Alternative output macros can create +longdesc TeX output to be read by pstricks, TikZ commands for use by the +longdesc pgf bundle, or SVG. +containersize 1500 +containerchecksum 38e9ed7362e27f836d3a364ea50f54593aac93f30b7a2b90a7bab9f0dd72f28a14cae86fd5d3dad2f47c00ef511afb458c2da29c5da203c3d65c9829b32aad52 +doccontainersize 2234380 +doccontainerchecksum 44251146179c9021159523d00acc93969c1caeb92bd0efca9701d95804fe57c8ba218f41cdab878aad8b942cdb21ace7d0266ed7c7c9373d0eb9676b9e636492 +docfiles size=1246 + RELOC/doc/latex/circuit-macros/CHANGES + RELOC/doc/latex/circuit-macros/Copying + RELOC/doc/latex/circuit-macros/INSTALL + RELOC/doc/latex/circuit-macros/Licence.txt + RELOC/doc/latex/circuit-macros/Makefile + RELOC/doc/latex/circuit-macros/README details="Readme" + RELOC/doc/latex/circuit-macros/darrow.m4 + RELOC/doc/latex/circuit-macros/doc/ACsymbol.m4 + RELOC/doc/latex/circuit-macros/doc/AmpTable.tex + RELOC/doc/latex/circuit-macros/doc/AmpTableMan.m4 + RELOC/doc/latex/circuit-macros/doc/AntennasMan.m4 + RELOC/doc/latex/circuit-macros/doc/ArrestersMan.m4 + RELOC/doc/latex/circuit-macros/doc/Audio.tex + RELOC/doc/latex/circuit-macros/doc/AudioMan.m4 + RELOC/doc/latex/circuit-macros/doc/Axes.m4 + RELOC/doc/latex/circuit-macros/doc/BigResistor.m4 + RELOC/doc/latex/circuit-macros/doc/Bip.tex + RELOC/doc/latex/circuit-macros/doc/BipMan.m4 + RELOC/doc/latex/circuit-macros/doc/Buffer.m4 + RELOC/doc/latex/circuit-macros/doc/Capture.JPG + RELOC/doc/latex/circuit-macros/doc/CctTable.tex + RELOC/doc/latex/circuit-macros/doc/CctTableMan.m4 + RELOC/doc/latex/circuit-macros/doc/Circuit_macros.bib + RELOC/doc/latex/circuit-macros/doc/Circuit_macros.pdf details="Package manual" + RELOC/doc/latex/circuit-macros/doc/Circuit_macros.tex + RELOC/doc/latex/circuit-macros/doc/Composite.m4 + RELOC/doc/latex/circuit-macros/doc/ConfigA.m4 + RELOC/doc/latex/circuit-macros/doc/ConfigB.m4 + RELOC/doc/latex/circuit-macros/doc/ConfigC.m4 + RELOC/doc/latex/circuit-macros/doc/Conn.tex + RELOC/doc/latex/circuit-macros/doc/ConnMan.m4 + RELOC/doc/latex/circuit-macros/doc/Contact.tex + RELOC/doc/latex/circuit-macros/doc/ContactMan.m4 + RELOC/doc/latex/circuit-macros/doc/Contacts.tex + RELOC/doc/latex/circuit-macros/doc/ContactsMan.m4 + RELOC/doc/latex/circuit-macros/doc/Corners.m4 + RELOC/doc/latex/circuit-macros/doc/DCsymbol.m4 + RELOC/doc/latex/circuit-macros/doc/Dac.m4 + RELOC/doc/latex/circuit-macros/doc/Darlington.m4 + RELOC/doc/latex/circuit-macros/doc/Demultiplexer.tex + RELOC/doc/latex/circuit-macros/doc/DemultiplexerMan.m4 + RELOC/doc/latex/circuit-macros/doc/Diodes.tex + RELOC/doc/latex/circuit-macros/doc/DiodesMan.m4 + RELOC/doc/latex/circuit-macros/doc/Emarrows.tex + RELOC/doc/latex/circuit-macros/doc/EmarrowsMan.m4 + RELOC/doc/latex/circuit-macros/doc/FF.m4 + RELOC/doc/latex/circuit-macros/doc/FlipFlop.m4 + RELOC/doc/latex/circuit-macros/doc/Flowdiag.m4 + RELOC/doc/latex/circuit-macros/doc/Fuses.tex + RELOC/doc/latex/circuit-macros/doc/FusesMan.m4 + RELOC/doc/latex/circuit-macros/doc/Grounds.tex + RELOC/doc/latex/circuit-macros/doc/GroundsMan.m4 + RELOC/doc/latex/circuit-macros/doc/Headers.tex + RELOC/doc/latex/circuit-macros/doc/HeadersMan.m4 + RELOC/doc/latex/circuit-macros/doc/HybridPi.m4 + RELOC/doc/latex/circuit-macros/doc/Jack.tex + RELOC/doc/latex/circuit-macros/doc/JackMan.m4 + RELOC/doc/latex/circuit-macros/doc/Logic.tex + RELOC/doc/latex/circuit-macros/doc/LogicMan.m4 + RELOC/doc/latex/circuit-macros/doc/Loop.m4 + RELOC/doc/latex/circuit-macros/doc/Makefile + RELOC/doc/latex/circuit-macros/doc/Multiplexer.tex + RELOC/doc/latex/circuit-macros/doc/MultiplexerMan.m4 + RELOC/doc/latex/circuit-macros/doc/NLG.tex + RELOC/doc/latex/circuit-macros/doc/NLGMan.m4 + RELOC/doc/latex/circuit-macros/doc/NPDT.tex + RELOC/doc/latex/circuit-macros/doc/NPDTMan.m4 + RELOC/doc/latex/circuit-macros/doc/Nport.tex + RELOC/doc/latex/circuit-macros/doc/NportMan.m4 + RELOC/doc/latex/circuit-macros/doc/Oblique.m4 + RELOC/doc/latex/circuit-macros/doc/OpampMan.m4 + RELOC/doc/latex/circuit-macros/doc/Opto.m4 + RELOC/doc/latex/circuit-macros/doc/ParSeries.m4 + RELOC/doc/latex/circuit-macros/doc/Pconn.tex + RELOC/doc/latex/circuit-macros/doc/PconnMan.m4 + RELOC/doc/latex/circuit-macros/doc/Potentiometers.m4 + RELOC/doc/latex/circuit-macros/doc/Relay.tex + RELOC/doc/latex/circuit-macros/doc/RelayMan.m4 + RELOC/doc/latex/circuit-macros/doc/Series.m4 + RELOC/doc/latex/circuit-macros/doc/ShiftR.tex + RELOC/doc/latex/circuit-macros/doc/ShiftRMan.m4 + RELOC/doc/latex/circuit-macros/doc/Sinus.m4 + RELOC/doc/latex/circuit-macros/doc/Sources.tex + RELOC/doc/latex/circuit-macros/doc/SourcesMan.m4 + RELOC/doc/latex/circuit-macros/doc/Switches.tex + RELOC/doc/latex/circuit-macros/doc/SwitchesMan.m4 + RELOC/doc/latex/circuit-macros/doc/Taps.m4 + RELOC/doc/latex/circuit-macros/doc/Tgate.tex + RELOC/doc/latex/circuit-macros/doc/TgateMan.m4 + RELOC/doc/latex/circuit-macros/doc/Thermal.m4 + RELOC/doc/latex/circuit-macros/doc/Tline.m4 + RELOC/doc/latex/circuit-macros/doc/Variable.tex + RELOC/doc/latex/circuit-macros/doc/VariableMan.m4 + RELOC/doc/latex/circuit-macros/doc/Version.tex + RELOC/doc/latex/circuit-macros/doc/WindingsMan.m4 + RELOC/doc/latex/circuit-macros/doc/Workflow.m4 + RELOC/doc/latex/circuit-macros/doc/Xform.tex + RELOC/doc/latex/circuit-macros/doc/XformMan.m4 + RELOC/doc/latex/circuit-macros/doc/bi_trans.m4 + RELOC/doc/latex/circuit-macros/doc/bistableMan.m4 + RELOC/doc/latex/circuit-macros/doc/bitr.m4 + RELOC/doc/latex/circuit-macros/doc/bitrbody.m4 + RELOC/doc/latex/circuit-macros/doc/body.tex + RELOC/doc/latex/circuit-macros/doc/currents.m4 + RELOC/doc/latex/circuit-macros/doc/defines.tex + RELOC/doc/latex/circuit-macros/doc/eboxdims.m4 + RELOC/doc/latex/circuit-macros/doc/fbfilter.m4 + RELOC/doc/latex/circuit-macros/doc/fet.tex + RELOC/doc/latex/circuit-macros/doc/fetMan.m4 + RELOC/doc/latex/circuit-macros/doc/lrarrows.m4 + RELOC/doc/latex/circuit-macros/doc/mplex.m4 + RELOC/doc/latex/circuit-macros/doc/oax.m4 + RELOC/doc/latex/circuit-macros/doc/oaxbody.m4 + RELOC/doc/latex/circuit-macros/doc/quick.m4 + RELOC/doc/latex/circuit-macros/doc/relaycoilMan.m4 + RELOC/doc/latex/circuit-macros/doc/sampleIC.m4 + RELOC/doc/latex/circuit-macros/doc/stringdims.m4 + RELOC/doc/latex/circuit-macros/doc/test.tex + RELOC/doc/latex/circuit-macros/doc/thyristor.tex + RELOC/doc/latex/circuit-macros/doc/thyristorMan.m4 + RELOC/doc/latex/circuit-macros/doc/tranbody.m4 + RELOC/doc/latex/circuit-macros/doc/ujt.tex + RELOC/doc/latex/circuit-macros/doc/ujtMan.m4 + RELOC/doc/latex/circuit-macros/doc/woodchips.m4 + RELOC/doc/latex/circuit-macros/dpictools.pic + RELOC/doc/latex/circuit-macros/examples/ABlogix.m4 + RELOC/doc/latex/circuit-macros/examples/ASME_Y14-5.m4 + RELOC/doc/latex/circuit-macros/examples/Adder.m4 + RELOC/doc/latex/circuit-macros/examples/Alogix.m4 + RELOC/doc/latex/circuit-macros/examples/AmpTable.m4 + RELOC/doc/latex/circuit-macros/examples/Antennas.m4 + RELOC/doc/latex/circuit-macros/examples/AntiqueClock.m4 + RELOC/doc/latex/circuit-macros/examples/Arrester.m4 + RELOC/doc/latex/circuit-macros/examples/Attention.m4 + RELOC/doc/latex/circuit-macros/examples/Audio.m4 + RELOC/doc/latex/circuit-macros/examples/Autoencoder.m4 + RELOC/doc/latex/circuit-macros/examples/Autologix.m4 + RELOC/doc/latex/circuit-macros/examples/Ball.m4 + RELOC/doc/latex/circuit-macros/examples/Bip.m4 + RELOC/doc/latex/circuit-macros/examples/Blogix.m4 + RELOC/doc/latex/circuit-macros/examples/Btree.m4 + RELOC/doc/latex/circuit-macros/examples/Buttons.m4 + RELOC/doc/latex/circuit-macros/examples/Byte.m4 + RELOC/doc/latex/circuit-macros/examples/CSlight.m4 + RELOC/doc/latex/circuit-macros/examples/CanLogic.m4 + RELOC/doc/latex/circuit-macros/examples/CctTable.m4 + RELOC/doc/latex/circuit-macros/examples/Ccurve.m4 + RELOC/doc/latex/circuit-macros/examples/Chuck.m4 + RELOC/doc/latex/circuit-macros/examples/Conn.m4 + RELOC/doc/latex/circuit-macros/examples/Connectors.m4 + RELOC/doc/latex/circuit-macros/examples/Contact.m4 + RELOC/doc/latex/circuit-macros/examples/Contacts.m4 + RELOC/doc/latex/circuit-macros/examples/Counting.m4 + RELOC/doc/latex/circuit-macros/examples/Coxeter.m4 + RELOC/doc/latex/circuit-macros/examples/Crossbar.m4 + RELOC/doc/latex/circuit-macros/examples/Crow.m4 + RELOC/doc/latex/circuit-macros/examples/Cruller.m4 + RELOC/doc/latex/circuit-macros/examples/Csource.m4 + RELOC/doc/latex/circuit-macros/examples/Decoder.m4 + RELOC/doc/latex/circuit-macros/examples/Demultiplexer.m4 + RELOC/doc/latex/circuit-macros/examples/Dini.m4 + RELOC/doc/latex/circuit-macros/examples/Diodes.m4 + RELOC/doc/latex/circuit-macros/examples/Drive.m4 + RELOC/doc/latex/circuit-macros/examples/Emarrows.m4 + RELOC/doc/latex/circuit-macros/examples/Escher.m4 + RELOC/doc/latex/circuit-macros/examples/Euro.m4 + RELOC/doc/latex/circuit-macros/examples/Floor.m4 + RELOC/doc/latex/circuit-macros/examples/Flow.m4 + RELOC/doc/latex/circuit-macros/examples/FlowchartDefs.m4 + RELOC/doc/latex/circuit-macros/examples/Fuses.m4 + RELOC/doc/latex/circuit-macros/examples/Geometry.m4 + RELOC/doc/latex/circuit-macros/examples/GrayCode.m4 + RELOC/doc/latex/circuit-macros/examples/Grounds.m4 + RELOC/doc/latex/circuit-macros/examples/Headers.m4 + RELOC/doc/latex/circuit-macros/examples/Heathkit.m4 + RELOC/doc/latex/circuit-macros/examples/I2L.m4 + RELOC/doc/latex/circuit-macros/examples/IC10107.m4 + RELOC/doc/latex/circuit-macros/examples/Incl.eps.bb + RELOC/doc/latex/circuit-macros/examples/Incl.eps.gz + RELOC/doc/latex/circuit-macros/examples/Incl.pdf + RELOC/doc/latex/circuit-macros/examples/Incleps.m4 + RELOC/doc/latex/circuit-macros/examples/Inclpdf.m4 + RELOC/doc/latex/circuit-macros/examples/Jack.m4 + RELOC/doc/latex/circuit-macros/examples/Koch.m4 + RELOC/doc/latex/circuit-macros/examples/Logic.m4 + RELOC/doc/latex/circuit-macros/examples/Loglog.m4 + RELOC/doc/latex/circuit-macros/examples/Lyap.m4 + RELOC/doc/latex/circuit-macros/examples/MC.m4 + RELOC/doc/latex/circuit-macros/examples/Makefile + RELOC/doc/latex/circuit-macros/examples/Mixer.m4 + RELOC/doc/latex/circuit-macros/examples/MotorControl.m4 + RELOC/doc/latex/circuit-macros/examples/Multiplexer.m4 + RELOC/doc/latex/circuit-macros/examples/NLG.m4 + RELOC/doc/latex/circuit-macros/examples/NPDT.m4 + RELOC/doc/latex/circuit-macros/examples/Nport.m4 + RELOC/doc/latex/circuit-macros/examples/OpAmpFilter.m4 + RELOC/doc/latex/circuit-macros/examples/Opamp.m4 + RELOC/doc/latex/circuit-macros/examples/Optoiso.m4 + RELOC/doc/latex/circuit-macros/examples/Orbits.m4 + RELOC/doc/latex/circuit-macros/examples/PPA.m4 + RELOC/doc/latex/circuit-macros/examples/Pconn.m4 + RELOC/doc/latex/circuit-macros/examples/Planes.m4 + RELOC/doc/latex/circuit-macros/examples/PushPull.m4 + RELOC/doc/latex/circuit-macros/examples/Quantum.m4 + RELOC/doc/latex/circuit-macros/examples/README-examples + RELOC/doc/latex/circuit-macros/examples/Rectifiers.m4 + RELOC/doc/latex/circuit-macros/examples/Relay.m4 + RELOC/doc/latex/circuit-macros/examples/Resolver.m4 + RELOC/doc/latex/circuit-macros/examples/Rotbox.m4 + RELOC/doc/latex/circuit-macros/examples/SPM.m4 + RELOC/doc/latex/circuit-macros/examples/SQUID.m4 + RELOC/doc/latex/circuit-macros/examples/SampleFlow.m4 + RELOC/doc/latex/circuit-macros/examples/Schottky.m4 + RELOC/doc/latex/circuit-macros/examples/Shaky.m4 + RELOC/doc/latex/circuit-macros/examples/ShiftR.m4 + RELOC/doc/latex/circuit-macros/examples/Sierpinski.m4 + RELOC/doc/latex/circuit-macros/examples/Sixpole.m4 + RELOC/doc/latex/circuit-macros/examples/Sources.m4 + RELOC/doc/latex/circuit-macros/examples/Switches.m4 + RELOC/doc/latex/circuit-macros/examples/TTLnand.m4 + RELOC/doc/latex/circuit-macros/examples/Tgate.m4 + RELOC/doc/latex/circuit-macros/examples/Three.m4 + RELOC/doc/latex/circuit-macros/examples/Ttree.m4 + RELOC/doc/latex/circuit-macros/examples/Tubediags.m4 + RELOC/doc/latex/circuit-macros/examples/Variable.m4 + RELOC/doc/latex/circuit-macros/examples/Wheat.m4 + RELOC/doc/latex/circuit-macros/examples/Windings.m4 + RELOC/doc/latex/circuit-macros/examples/XOR.m4 + RELOC/doc/latex/circuit-macros/examples/Xform.m4 + RELOC/doc/latex/circuit-macros/examples/Zcos.m4 + RELOC/doc/latex/circuit-macros/examples/birds.m4 + RELOC/doc/latex/circuit-macros/examples/bistable.m4 + RELOC/doc/latex/circuit-macros/examples/brace.m4 + RELOC/doc/latex/circuit-macros/examples/chaos.m4 + RELOC/doc/latex/circuit-macros/examples/clock.m4 + RELOC/doc/latex/circuit-macros/examples/control.m4 + RELOC/doc/latex/circuit-macros/examples/csc.m4 + RELOC/doc/latex/circuit-macros/examples/debug1.tex + RELOC/doc/latex/circuit-macros/examples/debug2.m4 + RELOC/doc/latex/circuit-macros/examples/diamond.m4 + RELOC/doc/latex/circuit-macros/examples/ex00.m4 + RELOC/doc/latex/circuit-macros/examples/ex01.m4 + RELOC/doc/latex/circuit-macros/examples/ex02.m4 + RELOC/doc/latex/circuit-macros/examples/ex03.m4 + RELOC/doc/latex/circuit-macros/examples/ex04.m4 + RELOC/doc/latex/circuit-macros/examples/ex05.m4 + RELOC/doc/latex/circuit-macros/examples/ex06.m4 + RELOC/doc/latex/circuit-macros/examples/ex08.m4 + RELOC/doc/latex/circuit-macros/examples/ex09.m4 + RELOC/doc/latex/circuit-macros/examples/ex10.m4 + RELOC/doc/latex/circuit-macros/examples/ex11.m4 + RELOC/doc/latex/circuit-macros/examples/ex12.m4 + RELOC/doc/latex/circuit-macros/examples/ex15.m4 + RELOC/doc/latex/circuit-macros/examples/ex16.m4 + RELOC/doc/latex/circuit-macros/examples/ex17.m4 + RELOC/doc/latex/circuit-macros/examples/ex18.m4 + RELOC/doc/latex/circuit-macros/examples/ex21.m4 + RELOC/doc/latex/circuit-macros/examples/examples.pdf + RELOC/doc/latex/circuit-macros/examples/examples.tex + RELOC/doc/latex/circuit-macros/examples/exp.m4 + RELOC/doc/latex/circuit-macros/examples/fet.m4 + RELOC/doc/latex/circuit-macros/examples/files.tex + RELOC/doc/latex/circuit-macros/examples/graysurf.m4 + RELOC/doc/latex/circuit-macros/examples/header.tex + RELOC/doc/latex/circuit-macros/examples/ics.m4 + RELOC/doc/latex/circuit-macros/examples/keyval.m4 + RELOC/doc/latex/circuit-macros/examples/lcct.m4 + RELOC/doc/latex/circuit-macros/examples/mf/Makefile + RELOC/doc/latex/circuit-macros/examples/mf/cct.mf + RELOC/doc/latex/circuit-macros/examples/mf/cct.tfm + RELOC/doc/latex/circuit-macros/examples/mf/font.m4 + RELOC/doc/latex/circuit-macros/examples/mf/mftest + RELOC/doc/latex/circuit-macros/examples/mpost/Makefile + RELOC/doc/latex/circuit-macros/examples/mpost/README-mpost + RELOC/doc/latex/circuit-macros/examples/mpost/examplesmpost.tex + RELOC/doc/latex/circuit-macros/examples/mpost/mptest + RELOC/doc/latex/circuit-macros/examples/mpost/tstmpost.tex + RELOC/doc/latex/circuit-macros/examples/person.m4 + RELOC/doc/latex/circuit-macros/examples/psfrag/Makefile + RELOC/doc/latex/circuit-macros/examples/psfrag/README-psfrag.txt + RELOC/doc/latex/circuit-macros/examples/psfrag/examplespsfrag.tex + RELOC/doc/latex/circuit-macros/examples/psfrag/tstpsfrag.tex + RELOC/doc/latex/circuit-macros/examples/pwrsupply.m4 + RELOC/doc/latex/circuit-macros/examples/quick.m4 + RELOC/doc/latex/circuit-macros/examples/random.m4 + RELOC/doc/latex/circuit-macros/examples/recycle.m4 + RELOC/doc/latex/circuit-macros/examples/relaycoil.m4 + RELOC/doc/latex/circuit-macros/examples/rose.m4 + RELOC/doc/latex/circuit-macros/examples/rotate.tex + RELOC/doc/latex/circuit-macros/examples/rotatetext.m4 + RELOC/doc/latex/circuit-macros/examples/rotellipse.m4 + RELOC/doc/latex/circuit-macros/examples/sfg.m4 + RELOC/doc/latex/circuit-macros/examples/shapes.m4 + RELOC/doc/latex/circuit-macros/examples/snake.m4 + RELOC/doc/latex/circuit-macros/examples/squiggle.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ABlogixSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AdderSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AlogixSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AmpTableSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AntennasSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AntiqueClockSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AudioSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AutoencoderSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/Banking.m4 + RELOC/doc/latex/circuit-macros/examples/svg/BipSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/BtreeSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ButtonsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ByteSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/CanLogicSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/CctTableSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ConnSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ConnectorsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ContactSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ContactsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/CountingSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/CrossbarSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/CrowSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/CrullerSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/CsourceSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/DecoderSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/DemultiplexerSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/DiniSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/DiodesSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/DriveSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/EmarrowsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/FlowSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/FontsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/FourbarSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/FusesSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/GeometrySVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/GrayCodeSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/GroundsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/HeadersSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/HeathkitSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/I2LSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/Incl.jpg + RELOC/doc/latex/circuit-macros/examples/svg/InclepsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/JackSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/LgateSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/LogicSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/LoglogSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/LyapSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/MCSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/Makefile + RELOC/doc/latex/circuit-macros/examples/svg/MixerSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/MotorControlSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/MultiplexerSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/NLGSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/NPDTSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/Np.m4 + RELOC/doc/latex/circuit-macros/examples/svg/NportSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/OpampSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/OptoisoSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/PconnSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/PushPullSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/QuantumSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/RectifiersSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/RelaySVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/RotboxSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/SQUIDSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/SVGconfig.m4 + RELOC/doc/latex/circuit-macros/examples/svg/SchottkySVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ShiftRSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/SierpinskiSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/SixpoleSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/SourcesSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/SwitchesSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/TTLnandSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/TgateSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ThreeSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/TimerSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/TtreeSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/TubediagsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/UNO.m4 + RELOC/doc/latex/circuit-macros/examples/svg/UNOSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/VariableSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/WindingsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/XORSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/XformSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/Xtest.m4 + RELOC/doc/latex/circuit-macros/examples/svg/Y14-5SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/controlSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/cscSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/diamondSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex00SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex01SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex02SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex03SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex04SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex05SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex06SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex08SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex09SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex10SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex11SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex12SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex15SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex16SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex17SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex18SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ex21SVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/examplesSVG.htmx + RELOC/doc/latex/circuit-macros/examples/svg/expSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/fetSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/graysurfSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/icsSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/lcctSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/local_init.m4 + RELOC/doc/latex/circuit-macros/examples/svg/paletteSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/pwrsupplySVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/quickSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/randomSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/recycleSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/relaycoilSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/roseSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/sfgSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/shapesSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/thyristorSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/tstSVG.htmx + RELOC/doc/latex/circuit-macros/examples/svg/ujtSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/windows.m4 + RELOC/doc/latex/circuit-macros/examples/svg/wormSVG.m4 + RELOC/doc/latex/circuit-macros/examples/test.m4 + RELOC/doc/latex/circuit-macros/examples/testpdf.tex + RELOC/doc/latex/circuit-macros/examples/thyristor.m4 + RELOC/doc/latex/circuit-macros/examples/tikz.tex + RELOC/doc/latex/circuit-macros/examples/tst.tex + RELOC/doc/latex/circuit-macros/examples/tst1.tex + RELOC/doc/latex/circuit-macros/examples/tubedefs.m4 + RELOC/doc/latex/circuit-macros/examples/ujt.m4 + RELOC/doc/latex/circuit-macros/examples/windows.m4 + RELOC/doc/latex/circuit-macros/examples/worm.m4 + RELOC/doc/latex/circuit-macros/examples/xfig/Makefile + RELOC/doc/latex/circuit-macros/examples/xfig/xfiglib.fig + RELOC/doc/latex/circuit-macros/examples/xfig/xfiglib.m4 + RELOC/doc/latex/circuit-macros/gpic.m4 + RELOC/doc/latex/circuit-macros/lib3D.m4 + RELOC/doc/latex/circuit-macros/libcct.m4 + RELOC/doc/latex/circuit-macros/libgen.m4 + RELOC/doc/latex/circuit-macros/liblog.m4 + RELOC/doc/latex/circuit-macros/mfpic.m4 + RELOC/doc/latex/circuit-macros/mpost.m4 + RELOC/doc/latex/circuit-macros/pgf.m4 + RELOC/doc/latex/circuit-macros/postscript.m4 + RELOC/doc/latex/circuit-macros/psfrag.m4 + RELOC/doc/latex/circuit-macros/pstricks.m4 + RELOC/doc/latex/circuit-macros/svg.m4 + RELOC/doc/latex/circuit-macros/xfig.m4 +runfiles size=1 + RELOC/tex/latex/circuit-macros/boxdims.sty +catalogue-also circ circuitikz +catalogue-contact-home https://ece.uwaterloo.ca/~aplevich/Circuit_macros/ +catalogue-contact-repository https://gitlab.com/aplevich/circuit_macros +catalogue-contact-support https://gitlab.com/aplevich/circuit_macros/issues +catalogue-ctan /graphics/circuit_macros +catalogue-license lppl1.3c +catalogue-topics diagram-circ electronic +catalogue-version 9.5 + +name circuitikz +category Package +revision 59054 +shortdesc Draw electrical networks with TikZ +relocated 1 +longdesc The package provides a set of macros for naturally typesetting +longdesc electrical and (somewhat less naturally, perhaps) electronic +longdesc networks. It is designed as a tool that is easy to use, with a +longdesc lean syntax, native to LaTeX, and directly supporting PDF +longdesc output format. It has therefore been based on the very +longdesc impressive PGF/TikZ package. +containersize 148584 +containerchecksum 2dbf94e9ae28b6b7bf7d7bb1b3eb924ea024401df38a49a5c9d84a0f43a248e368d30bd8e44d21e3823b27dff8956c5dcede6a2434f15dda5cc29c58f272b612 +doccontainersize 1484336 +doccontainerchecksum 64067a4f3ccabb7bc82140b7e7ac3a4068540fcc703d5f7e5b3c93de9337f9192597f27aa601c0195c02fe0dfbbb740264b21c4c119c0bfc874c8d406fa3336b +docfiles size=469 + RELOC/doc/context/third/circuitikz/circuitikz-context.pdf + RELOC/doc/context/third/circuitikz/circuitikz-context.tex + RELOC/doc/generic/circuitikz/CHANGELOG.md + RELOC/doc/generic/circuitikz/README.md details="Readme" + RELOC/doc/latex/circuitikz/changelog.tex + RELOC/doc/latex/circuitikz/circuitikzmanual.pdf details="Package documentation" + RELOC/doc/latex/circuitikz/circuitikzmanual.tex + RELOC/doc/latex/circuitikz/compatibility.tex + RELOC/doc/latex/circuitikz/ctikzmanutils.sty +runfiles size=2830 + RELOC/tex/context/third/circuitikz/t-circuitikz-0.8.3.tex + RELOC/tex/context/third/circuitikz/t-circuitikz-0.9.3.tex + RELOC/tex/context/third/circuitikz/t-circuitikz-0.9.6.tex + RELOC/tex/context/third/circuitikz/t-circuitikz-1.0.tex + RELOC/tex/context/third/circuitikz/t-circuitikz-1.1.2.tex + RELOC/tex/context/third/circuitikz/t-circuitikz-1.2.7.tex + RELOC/tex/context/third/circuitikz/t-circuitikz.tex + RELOC/tex/generic/circuitikz/ctikzstyle-example.tex + RELOC/tex/generic/circuitikz/ctikzstyle-legacy.tex + RELOC/tex/generic/circuitikz/ctikzstyle-romano.tex + RELOC/tex/generic/circuitikz/pgfcirc.defines.tex + RELOC/tex/generic/circuitikz/pgfcircbipoles.tex + RELOC/tex/generic/circuitikz/pgfcirccurrent.tex + RELOC/tex/generic/circuitikz/pgfcircflow.tex + RELOC/tex/generic/circuitikz/pgfcirclabel.tex + RELOC/tex/generic/circuitikz/pgfcircmonopoles.tex + RELOC/tex/generic/circuitikz/pgfcircmultipoles.tex + RELOC/tex/generic/circuitikz/pgfcircpath.tex + RELOC/tex/generic/circuitikz/pgfcircquadpoles.tex + RELOC/tex/generic/circuitikz/pgfcircshapes.tex + RELOC/tex/generic/circuitikz/pgfcirctripoles.tex + RELOC/tex/generic/circuitikz/pgfcircutils.tex + RELOC/tex/generic/circuitikz/pgfcircvoltage.tex + RELOC/tex/latex/circuitikz/circuitikz-0.4.sty + RELOC/tex/latex/circuitikz/circuitikz-0.6.sty + RELOC/tex/latex/circuitikz/circuitikz-0.7.sty + RELOC/tex/latex/circuitikz/circuitikz-0.8.3.sty + RELOC/tex/latex/circuitikz/circuitikz-0.9.3.sty + RELOC/tex/latex/circuitikz/circuitikz-0.9.6.sty + RELOC/tex/latex/circuitikz/circuitikz-1.0.sty + RELOC/tex/latex/circuitikz/circuitikz-1.1.2.sty + RELOC/tex/latex/circuitikz/circuitikz-1.2.7.sty + RELOC/tex/latex/circuitikz/circuitikz.sty +catalogue-contact-bugs https://github.com/circuitikz/circuitikz/issues +catalogue-contact-repository https://github.com/circuitikz/circuitikz +catalogue-ctan /graphics/pgf/contrib/circuitikz +catalogue-license lppl gpl +catalogue-topics graphics diagram-circ pgf-tikz electronic +catalogue-version 1.3.5 + +name cite +category Package +revision 36428 +shortdesc Improved citation handling in LaTeX +relocated 1 +longdesc The package supports compressed, sorted lists of numerical +longdesc citations, and also deals with various punctuation and other +longdesc issues of representation, including comprehensive management of +longdesc break points. The package is compatible with both hyperref and +longdesc backref. The package is (unsurprisingly) part of the cite +longdesc bundle of the author's citation-related packages. +containersize 20120 +containerchecksum 39196b799273a2da29591b1b59c0a504f0e0971a6fb12a21bed5ac45d94eb017f1e7c64691fcd46f5c151d867c1ffac706f050fe2e08bf3c58aec8867fa185d3 +doccontainersize 221780 +doccontainerchecksum f9ccc0e1975064ec792c6138907cd3dc8080ff2fd02a2925d1a1334cebbb2289797b234b46d92be0ba45d460c31359b5c143f20e28cd1aa1827489d04b88d300 +docfiles size=65 + RELOC/doc/latex/cite/README details="Bundle readme" + RELOC/doc/latex/cite/chapterbib.ltx + RELOC/doc/latex/cite/chapterbib.pdf + RELOC/doc/latex/cite/cite.ltx + RELOC/doc/latex/cite/cite.pdf details="Package documentation" +runfiles size=18 + RELOC/tex/latex/cite/chapterbib.sty + RELOC/tex/latex/cite/cite.sty + RELOC/tex/latex/cite/drftcite.sty + RELOC/tex/latex/cite/overcite.sty +catalogue-also natbib +catalogue-ctan /macros/latex/contrib/cite +catalogue-license other-free +catalogue-topics cite-supp +catalogue-version 5.5 + +name citeall +category Package +revision 45975 +shortdesc Cite all entries of a bbl created with BibLaTeX +relocated 1 +longdesc This small package allows to cite all entries of a bbl-file +longdesc created with BibLaTeX (v1.9). +containersize 2060 +containerchecksum 2549b398c98f82833849a45716d55a776ab3b7927fdc400c2e6d43c45fb0cf628bd66bdade7ca63bcaa2e98807914f7adb958c6a06c27762fb0ee70452d4d280 +doccontainersize 110028 +doccontainerchecksum f1eaf5ed48bf3fd2bc336b7d91dde09b5cfa9a1901bd6315d4abf032439571a89f1d7c4794ed0256ef1aff0456d275e68326e81627f164652c84de2900165a98 +docfiles size=31 + RELOC/doc/latex/citeall/README.md details="Readme" + RELOC/doc/latex/citeall/citeall.pdf details="Package documentation" + RELOC/doc/latex/citeall/citeall.tex + RELOC/doc/latex/citeall/examples-citeall.bib +runfiles size=2 + RELOC/tex/latex/citeall/citeall.sty +catalogue-ctan /macros/latex/contrib/biblatex-contrib/citeall +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.4 + +name citeref +category Package +revision 47407 +shortdesc Add reference-page-list to bibliography-items +relocated 1 +longdesc The package does its job without using the indexing facilities, +longdesc and needs no special \cite-replacement package. +containersize 2264 +containerchecksum 5f56fb1d813962358c737023e06bc2fa249712d8ef984f835073e11b075b676e845596a61ac312991e646d72068670b60eb002f78ac322f66d8e5a9bce185063 +doccontainersize 66208 +doccontainerchecksum 21d1a8063586b09ba953ac5df96a3b1552c586d66c5f2af517b1b1ceb75b40f173bd411654dd313c6aeebabc35db7543ea8edcbc8705ae104c7f63e5a5b3cf57 +docfiles size=18 + RELOC/doc/latex/citeref/README.pdf + RELOC/doc/latex/citeref/README.txt details="Readme" +runfiles size=1 + RELOC/tex/latex/citeref/citeref.sty +catalogue-also backref +catalogue-ctan /macros/latex/contrib/citeref +catalogue-license bsd4 +catalogue-topics bibtex-supp +catalogue-version 1.1 + +name cje +category Package +revision 46721 +shortdesc LaTeX document class for CJE articles +relocated 1 +longdesc The cje article class allows authors to format their papers to +longdesc Canadian Journal of Economics style with minimum effort. The +longdesc class includes options for two other formats: "review" (double +longdesc spaced, for use at the submission stage) and "proof" (used by +longdesc the typesetters to prepare the proof authors will receive for +longdesc approval). +containersize 26216 +containerchecksum cab80d266c2b5f9d4ba9d37cc5490e831e3f773d86c92fcbfab9474864aebbb6123e1ed44877127e84b6e1fe8037f2425259789b9b9597de49e1b24b123992a4 +doccontainersize 634044 +doccontainerchecksum 47a2d96b6b530be732385617af832ad48c3d6c7a34a7e9e0523c38a03b5116b94588c995afd153c25be6ceea9bc199685fab9eb83636b5fe27525b19a4bc7cec +docfiles size=178 + RELOC/doc/latex/cje/README.txt details="Readme" + RELOC/doc/latex/cje/ageingbib.bib + RELOC/doc/latex/cje/canadian-flag.pdf + RELOC/doc/latex/cje/cjeguide.pdf details="Package documentation" + RELOC/doc/latex/cje/cjeguide.tex + RELOC/doc/latex/cje/cjetemplate.tex +runfiles size=31 + RELOC/bibtex/bst/cje/cjebibstyle.bst + RELOC/tex/latex/cje/cje.cls + RELOC/tex/latex/cje/cjenatbib.sty + RELOC/tex/latex/cje/cjeupmath.sty +catalogue-ctan /macros/latex/contrib/cje +catalogue-license lppl1.3c +catalogue-topics journalpub +catalogue-version 1.06 + +name cjhebrew +category Package +revision 43444 +shortdesc Typeset Hebrew with LaTeX +relocated 1 +longdesc The cjhebrew package provides Adobe Type 1 fonts for Hebrew, +longdesc and LaTeX macros to support their use. Hebrew text can be +longdesc vocalised, and a few accents are also available. The package +longdesc makes it easy to include Hebrew text in other-language +longdesc documents. The package makes use of the e-TeX extensions to +longdesc TeX, so should be run using an "e-LaTeX". +execute addMap cjhebrew.map +containersize 41616 +containerchecksum 65a73380bcfd8892ab2eb93d088076e2d5371019244bc8a65a4695e69a45f743248fce59557533add032a02a0b7ea4f02d6ea4634265d2d9718a5b100f5a18c6 +doccontainersize 112888 +doccontainerchecksum 591d932ae099aa168d55f9479842d25c5212dd7aed27eac1a5d05a111a8a396baae7c73ddafe1087a7b8008528c50b1a85825851643d8107133d41470ce1e397 +docfiles size=32 + RELOC/doc/latex/cjhebrew/README details="Readme" + RELOC/doc/latex/cjhebrew/cjhebrew.pdf details="Package manual" + RELOC/doc/latex/cjhebrew/cjhebrew.tex + RELOC/doc/latex/cjhebrew/cjhebtst.tex +runfiles size=27 + RELOC/fonts/afm/public/cjhebrew/cjheblsm.afm + RELOC/fonts/afm/public/cjhebrew/cjhebltx.afm + RELOC/fonts/enc/dvips/cjhebrew/cjhebltx.enc + RELOC/fonts/map/dvips/cjhebrew/cjhebrew.map + RELOC/fonts/tfm/public/cjhebrew/cjhblsm.tfm + RELOC/fonts/tfm/public/cjhebrew/cjhbltx.tfm + RELOC/fonts/tfm/public/cjhebrew/cjheblsm.tfm + RELOC/fonts/tfm/public/cjhebrew/cjhebltx.tfm + RELOC/fonts/tfm/public/cjhebrew/rcjhblsm.tfm + RELOC/fonts/tfm/public/cjhebrew/rcjhbltx.tfm + RELOC/fonts/type1/public/cjhebrew/cjheblsm.pfb + RELOC/fonts/type1/public/cjhebrew/cjhebltx.pfb + RELOC/fonts/vf/public/cjhebrew/cjhblsm.vf + RELOC/fonts/vf/public/cjhebrew/cjhbltx.vf + RELOC/tex/latex/cjhebrew/cjhebrew.sty +catalogue-ctan /language/hebrew/cjhebrew +catalogue-license lppl +catalogue-topics hebrew font font-type1 font-hebrew font-supp +catalogue-version 0.2a + +name cjk +category Package +revision 36951 +shortdesc CJK language support +relocated 1 +longdesc CJK is a macro package for LaTeX, providing simultaneous +longdesc support for various Asian scripts in many encodings (including +longdesc Unicode): Chinese (both traditional and simplified), Japanese, +longdesc Korean and Thai. A special add-on feature is an interface to +longdesc the Emacs editor (cjk-enc.el) which gives simultaneous, +longdesc easy-to-use support to a bunch of other scripts in addition to +longdesc the above -- Cyrillic, Greek, Latin-based scripts, Russian and +longdesc Vietnamese are supported. +depend arphic +depend cns +depend garuda-c90 +depend norasi-c90 +depend uhc +depend wadalab +containersize 58340 +containerchecksum c35be1fc1d9f9d44e78effd6e7e539591020d785ae255a1cfa0d7e2508fcdd496d94e4bb0096bc7a281ee93b0b8e461efc6724c82f49d589dbcbdda35143c811 +doccontainersize 1458280 +doccontainerchecksum d598d599d02ca95b1375b8e989649b441980ae6467348270c366a670d79d606b1ca79801febdf5c8c636f2d1c7fa30eb87bd87f90f75b5b4436443ecdab53b73 +docfiles size=611 + RELOC/doc/latex/cjk/ChangeLog + RELOC/doc/latex/cjk/MANIFEST + RELOC/doc/latex/cjk/Makefile + RELOC/doc/latex/cjk/README details="Readme file" + RELOC/doc/latex/cjk/TODO + RELOC/doc/latex/cjk/doc/CEF.txt + RELOC/doc/latex/cjk/doc/CJK.txt + RELOC/doc/latex/cjk/doc/CJKnumb.txt + RELOC/doc/latex/cjk/doc/CJKspace.txt + RELOC/doc/latex/cjk/doc/CJKutf8.txt + RELOC/doc/latex/cjk/doc/COPYING + RELOC/doc/latex/cjk/doc/INSTALL + RELOC/doc/latex/cjk/doc/TDS.txt + RELOC/doc/latex/cjk/doc/chinese/README details="Readme file" + RELOC/doc/latex/cjk/doc/chinese/READMEb5.tex + RELOC/doc/latex/cjk/doc/chinese/READMEgb.tex + RELOC/doc/latex/cjk/doc/chinese/emTeXb5.txt + RELOC/doc/latex/cjk/doc/chinese/teTeXb5.txt + RELOC/doc/latex/cjk/doc/cjk-enc.txt + RELOC/doc/latex/cjk/doc/cjk/README details="Readme file" + RELOC/doc/latex/cjk/doc/cjk/READMEb5.cjk + RELOC/doc/latex/cjk/doc/commands.txt + RELOC/doc/latex/cjk/doc/dvidrv.txt + RELOC/doc/latex/cjk/doc/fdxfiles.txt + RELOC/doc/latex/cjk/doc/fonts.txt + RELOC/doc/latex/cjk/doc/hbf2gf.txt + RELOC/doc/latex/cjk/doc/history.2_5 + RELOC/doc/latex/cjk/doc/history.txt + RELOC/doc/latex/cjk/doc/japanese/README details="Readme file" + RELOC/doc/latex/cjk/doc/japanese/ascii.txt + RELOC/doc/latex/cjk/doc/japanese/japanese.jis + RELOC/doc/latex/cjk/doc/japanese/japanese.txt + RELOC/doc/latex/cjk/doc/japanese/jp-fonts.txt + RELOC/doc/latex/cjk/doc/japanese/jp-tex.txt + RELOC/doc/latex/cjk/doc/japanese/preview.txt + RELOC/doc/latex/cjk/doc/japanese/shibuaki.txt + RELOC/doc/latex/cjk/doc/pdf/READMEb5.pdf + RELOC/doc/latex/cjk/doc/pdf/READMEgb.pdf + RELOC/doc/latex/cjk/doc/pdfhowto/HOWTO.txt + RELOC/doc/latex/cjk/doc/pdfhowto/examples/bkai.map + RELOC/doc/latex/cjk/doc/pdfhowto/examples/cid-x.map + RELOC/doc/latex/cjk/doc/pdfhowto/examples/cwtb.map + RELOC/doc/latex/cjk/doc/pdfhowto/examples/dvipdfmx.cfg + RELOC/doc/latex/cjk/doc/pdfhowto/examples/gen-map.pl + RELOC/doc/latex/cjk/doc/pdfhowto/examples/map.list + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/updmap.my + RELOC/doc/latex/cjk/doc/pdfhowto/examples/wcl.sfd + RELOC/doc/latex/cjk/doc/pinyin.txt + RELOC/doc/latex/cjk/doc/pyhyphen.txt + RELOC/doc/latex/cjk/doc/reftex.txt + RELOC/doc/latex/cjk/doc/ruby.txt + RELOC/doc/latex/cjk/doc/thaifont.txt + RELOC/doc/latex/cjk/doc/vertical.txt + RELOC/doc/latex/cjk/examples/Big5.tex + RELOC/doc/latex/cjk/examples/Big5vert.tex + RELOC/doc/latex/cjk/examples/CEF_test.tex + RELOC/doc/latex/cjk/examples/CJKbabel.tex + RELOC/doc/latex/cjk/examples/CJKfntef.tex + RELOC/doc/latex/cjk/examples/CJKmixed.tex + RELOC/doc/latex/cjk/examples/CJKspace.tex + RELOC/doc/latex/cjk/examples/CJKutf8.tex + RELOC/doc/latex/cjk/examples/GB.tex + RELOC/doc/latex/cjk/examples/JIS.tex + RELOC/doc/latex/cjk/examples/KS.tex + RELOC/doc/latex/cjk/examples/README details="Readme file" + RELOC/doc/latex/cjk/examples/SJIS.tex + RELOC/doc/latex/cjk/examples/UTF8.tex + RELOC/doc/latex/cjk/examples/cjk/Big5.cjk + RELOC/doc/latex/cjk/examples/cjk/Big5vert.cjk + RELOC/doc/latex/cjk/examples/cjk/CEF_test.cjk + RELOC/doc/latex/cjk/examples/cjk/CJKbabel.cjk + RELOC/doc/latex/cjk/examples/cjk/SJIS.cjk + RELOC/doc/latex/cjk/examples/cjk/muletest.cjk + RELOC/doc/latex/cjk/examples/cjk/rubytest.cjk + RELOC/doc/latex/cjk/examples/cjk/thai.cjk + RELOC/doc/latex/cjk/examples/muletest.tex + RELOC/doc/latex/cjk/examples/pdf/Big5.pdf + RELOC/doc/latex/cjk/examples/pdf/Big5vert.pdf + RELOC/doc/latex/cjk/examples/pdf/CEF_test.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKbabel.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKfntef.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKmixed.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKspace.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKutf8.pdf + RELOC/doc/latex/cjk/examples/pdf/GB.pdf + RELOC/doc/latex/cjk/examples/pdf/JIS.pdf + RELOC/doc/latex/cjk/examples/pdf/KS.pdf + RELOC/doc/latex/cjk/examples/pdf/SJIS.pdf + RELOC/doc/latex/cjk/examples/pdf/UTF8.pdf + RELOC/doc/latex/cjk/examples/pdf/muletest.pdf + RELOC/doc/latex/cjk/examples/pdf/py_test.pdf + RELOC/doc/latex/cjk/examples/pdf/pytest.pdf + RELOC/doc/latex/cjk/examples/pdf/rubytest.pdf + RELOC/doc/latex/cjk/examples/pdf/thai.pdf + RELOC/doc/latex/cjk/examples/pdf/thai_utf8.pdf + RELOC/doc/latex/cjk/examples/py_test.tex + RELOC/doc/latex/cjk/examples/rubytest.tex + RELOC/doc/latex/cjk/examples/thai.tex + RELOC/doc/latex/cjk/texlive/bin-cjkutils.pl + RELOC/doc/latex/cjk/texlive/c90.pl + RELOC/doc/latex/cjk/texlive/cjk-build.pl + RELOC/doc/latex/cjk/texlive/cjk.pl + RELOC/doc/latex/cjk/texlive/dnp.pl + RELOC/doc/latex/cjk/texlive/garuda-c90.pl + RELOC/doc/latex/cjk/texlive/norasi-c90.pl + RELOC/doc/latex/cjk/utils/pyhyphen/pytest.tex +srccontainersize 70368 +srccontainerchecksum bebcc4f77716c92fdff317d926b0ab47ff32efc8b235f721d7d3d1808dff5672127b4c80bb729aa1023f25949cee2c4d508adb40574a3d606f3d5840642eb604 +srcfiles size=115 + RELOC/source/latex/cjk/contrib/wadalab/fixwada + RELOC/source/latex/cjk/contrib/wadalab/fixwada2.pl + RELOC/source/latex/cjk/contrib/wadalab/makefont + RELOC/source/latex/cjk/contrib/wadalab/makeuniwada.pl + RELOC/source/latex/cjk/contrib/wadalab/wadalab.map + RELOC/source/latex/cjk/contrib/wadalab/wadalab.txt + RELOC/source/latex/cjk/texinput/KS/HLaTeX/c63mj.fd + RELOC/source/latex/cjk/texinput/KS/HLaTeX/c64mj.fd + RELOC/source/latex/cjk/texinput/KS/HLaTeX/c65mj.fd + RELOC/source/latex/cjk/utils/Bg5conv/bg5conv.w + RELOC/source/latex/cjk/utils/Bg5conv/bg5latex.bat + RELOC/source/latex/cjk/utils/Bg5conv/bg5latex.cmd + RELOC/source/latex/cjk/utils/CEFconv/cef5conv.w + RELOC/source/latex/cjk/utils/CEFconv/cef5ltx.bat + RELOC/source/latex/cjk/utils/CEFconv/cef5ltx.cmd + RELOC/source/latex/cjk/utils/CEFconv/cefconv.w + RELOC/source/latex/cjk/utils/CEFconv/ceflatex.bat + RELOC/source/latex/cjk/utils/CEFconv/ceflatex.cmd + RELOC/source/latex/cjk/utils/CEFconv/cefsconv.w + RELOC/source/latex/cjk/utils/CEFconv/cefsltx.bat + RELOC/source/latex/cjk/utils/CEFconv/cefsltx.cmd + RELOC/source/latex/cjk/utils/SJISconv/sjisconv.w + RELOC/source/latex/cjk/utils/SJISconv/sjisltx.bat + RELOC/source/latex/cjk/utils/SJISconv/sjisltx.cmd + RELOC/source/latex/cjk/utils/extconv/bg5pltx.bat + RELOC/source/latex/cjk/utils/extconv/bg5pltx.cmd + RELOC/source/latex/cjk/utils/extconv/extconv.w + RELOC/source/latex/cjk/utils/extconv/gbklatex.bat + RELOC/source/latex/cjk/utils/extconv/gbklatex.cmd + RELOC/source/latex/cjk/utils/f_name.bat + RELOC/source/latex/cjk/utils/hbf2gf/Makefile.gnu + RELOC/source/latex/cjk/utils/hbf2gf/Makefile.in + RELOC/source/latex/cjk/utils/hbf2gf/README + RELOC/source/latex/cjk/utils/hbf2gf/c-auto.h + RELOC/source/latex/cjk/utils/hbf2gf/dvidrv.btm + RELOC/source/latex/cjk/utils/lisp/cjkspace.el + RELOC/source/latex/cjk/utils/lisp/cjktilde.el + RELOC/source/latex/cjk/utils/lisp/emacs/cjk-enc.el + RELOC/source/latex/cjk/utils/lisp/emacs/thai-word.el + RELOC/source/latex/cjk/utils/lisp/mule-2.3/cjk-enc.el + RELOC/source/latex/cjk/utils/pyhyphen/pinyin.c + RELOC/source/latex/cjk/utils/pyhyphen/pinyin.tr + RELOC/source/latex/cjk/utils/pyhyphen/pyhyph.tex + RELOC/source/latex/cjk/utils/subfonts/clonevf.pl + RELOC/source/latex/cjk/utils/subfonts/hlatex2agl.pl + RELOC/source/latex/cjk/utils/subfonts/makefdx.pl + RELOC/source/latex/cjk/utils/subfonts/sfd2uni.pl + RELOC/source/latex/cjk/utils/subfonts/subfonts.pe + RELOC/source/latex/cjk/utils/subfonts/uni2sfd.pl + RELOC/source/latex/cjk/utils/subfonts/vertical.pe + RELOC/source/latex/cjk/utils/subfonts/vertref.pe +runfiles size=294 + RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fd + RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c42maru.fd + RELOC/tex/latex/cjk/contrib/wadalab/c42maru.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c42min.fd + RELOC/tex/latex/cjk/contrib/wadalab/c42min.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c52maru.fd + RELOC/tex/latex/cjk/contrib/wadalab/c52maru.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c52min.fd + RELOC/tex/latex/cjk/contrib/wadalab/c52min.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c70goth.fd + RELOC/tex/latex/cjk/contrib/wadalab/c70goth.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c70maru.fd + RELOC/tex/latex/cjk/contrib/wadalab/c70maru.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c70min.fd + RELOC/tex/latex/cjk/contrib/wadalab/c70min.fdx + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.cap + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.chr + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.cpx + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.enc + RELOC/tex/latex/cjk/texinput/Bg5/HK.enc + RELOC/tex/latex/cjk/texinput/Bg5/c00bkai.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00bkai.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmi.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmi.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmir.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmir.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00cns.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00fs.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00kai.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00kair.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00kair.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00song.fd + RELOC/tex/latex/cjk/texinput/Bg5/c01song.fd + RELOC/tex/latex/cjk/texinput/Bg5/c05song.fd + RELOC/tex/latex/cjk/texinput/Bg5/c09song.fd + RELOC/tex/latex/cjk/texinput/CEF/c80song.fd + RELOC/tex/latex/cjk/texinput/CEF/c81song.fd + RELOC/tex/latex/cjk/texinput/CJK.enc + RELOC/tex/latex/cjk/texinput/CJK.sty + RELOC/tex/latex/cjk/texinput/CJKfntef.sty + RELOC/tex/latex/cjk/texinput/CJKnumb.sty + RELOC/tex/latex/cjk/texinput/CJKspace.sty + RELOC/tex/latex/cjk/texinput/CJKulem.sty + RELOC/tex/latex/cjk/texinput/CJKutf8.sty + RELOC/tex/latex/cjk/texinput/CJKvert.sty + RELOC/tex/latex/cjk/texinput/CNS/EUC-TW.bdg + RELOC/tex/latex/cjk/texinput/CNS/EUC-TW.chr + RELOC/tex/latex/cjk/texinput/CNS/EUC-TW.enc + RELOC/tex/latex/cjk/texinput/CNS/c31song.fd + RELOC/tex/latex/cjk/texinput/CNS/c32song.fd + RELOC/tex/latex/cjk/texinput/CNS/c33song.fd + RELOC/tex/latex/cjk/texinput/CNS/c34song.fd + RELOC/tex/latex/cjk/texinput/CNS/c35song.fd + RELOC/tex/latex/cjk/texinput/CNS/c36song.fd + RELOC/tex/latex/cjk/texinput/CNS/c37song.fd + RELOC/tex/latex/cjk/texinput/GB/GB.cap + RELOC/tex/latex/cjk/texinput/GB/GB.cpx + RELOC/tex/latex/cjk/texinput/GB/c10fs.fd + RELOC/tex/latex/cjk/texinput/GB/c10gbsn.fd + RELOC/tex/latex/cjk/texinput/GB/c10gbsn.fdx + RELOC/tex/latex/cjk/texinput/GB/c10gkai.fd + RELOC/tex/latex/cjk/texinput/GB/c10gkai.fdx + RELOC/tex/latex/cjk/texinput/GB/c10song.fd + RELOC/tex/latex/cjk/texinput/GB/c11song.fd + RELOC/tex/latex/cjk/texinput/GB/c19song.fd + RELOC/tex/latex/cjk/texinput/GB/c20song.fd + RELOC/tex/latex/cjk/texinput/GB/c21song.fd + RELOC/tex/latex/cjk/texinput/JIS/EUC-JP.bdg + RELOC/tex/latex/cjk/texinput/JIS/EUC-JP.chr + RELOC/tex/latex/cjk/texinput/JIS/EUC-JP.enc + RELOC/tex/latex/cjk/texinput/JIS/EUC-JPdnp.enc + RELOC/tex/latex/cjk/texinput/JIS/JIS.cap + RELOC/tex/latex/cjk/texinput/JIS/JIS.cpx + RELOC/tex/latex/cjk/texinput/JIS/JISdnp.enc + RELOC/tex/latex/cjk/texinput/JIS/c40song.fd + RELOC/tex/latex/cjk/texinput/JIS/c41song.fd + RELOC/tex/latex/cjk/texinput/JIS/c42song.fd + RELOC/tex/latex/cjk/texinput/JIS/c43song.fd + RELOC/tex/latex/cjk/texinput/JIS/c50song.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/HLaTeX.chr + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/KSHL.enc + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63bm.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63dn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63gr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63gs.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63gt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jgt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jmj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jnv.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jsr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63mj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63pg.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63pga.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63ph.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63pn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63sh.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63tz.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63vd.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63yt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64bm.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64dn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64gr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64gs.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64gt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jgt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jmj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jnv.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jsr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64mj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64pg.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64pga.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64ph.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64pn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64sh.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64tz.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64vd.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64yt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65bm.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65dn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65gr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65gs.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65gt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jgt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jmj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jnv.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jsr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65mj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65pg.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65pga.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65ph.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65pn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65sh.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65tz.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65vd.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65yt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/pshan.sty + RELOC/tex/latex/cjk/texinput/KS/KS.chr + RELOC/tex/latex/cjk/texinput/KS/KS.enc + RELOC/tex/latex/cjk/texinput/KS/c60dr.fd + RELOC/tex/latex/cjk/texinput/KS/c60gr.fd + RELOC/tex/latex/cjk/texinput/KS/c60gs.fd + RELOC/tex/latex/cjk/texinput/KS/c60gt.fd + RELOC/tex/latex/cjk/texinput/KS/c60hgt.fd + RELOC/tex/latex/cjk/texinput/KS/c60hmj.fd + RELOC/tex/latex/cjk/texinput/KS/c60hol.fd + RELOC/tex/latex/cjk/texinput/KS/c60hpg.fd + RELOC/tex/latex/cjk/texinput/KS/c60mj.fd + RELOC/tex/latex/cjk/texinput/KS/c61dr.fd + RELOC/tex/latex/cjk/texinput/KS/c61gr.fd + RELOC/tex/latex/cjk/texinput/KS/c61gs.fd + RELOC/tex/latex/cjk/texinput/KS/c61gt.fd + RELOC/tex/latex/cjk/texinput/KS/c61hgt.fd + RELOC/tex/latex/cjk/texinput/KS/c61hmj.fd + RELOC/tex/latex/cjk/texinput/KS/c61hol.fd + RELOC/tex/latex/cjk/texinput/KS/c61hpg.fd + RELOC/tex/latex/cjk/texinput/KS/c61mj.fd + RELOC/tex/latex/cjk/texinput/KS/c62song.fd + RELOC/tex/latex/cjk/texinput/KS/hangul.cap + RELOC/tex/latex/cjk/texinput/KS/hangul.cpx + RELOC/tex/latex/cjk/texinput/KS/hangul2.cap + RELOC/tex/latex/cjk/texinput/KS/hangul2.cpx + RELOC/tex/latex/cjk/texinput/KS/hanja.cap + RELOC/tex/latex/cjk/texinput/KS/hanja.cpx + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.bdg + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.cap + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.chr + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.cpx + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.enc + RELOC/tex/latex/cjk/texinput/SJIS/SJISdnp.chr + RELOC/tex/latex/cjk/texinput/SJIS/SJISdnp.enc + RELOC/tex/latex/cjk/texinput/SJIS/c49song.fd + RELOC/tex/latex/cjk/texinput/UTF8/UTF8.bdg + RELOC/tex/latex/cjk/texinput/UTF8/UTF8.chr + RELOC/tex/latex/cjk/texinput/UTF8/UTF8.enc + RELOC/tex/latex/cjk/texinput/UTF8/c70bkai.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70bkai.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70bsmi.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70bsmi.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70gbsn.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70gbsn.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70gkai.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70gkai.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70mj.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70mj.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70song.fd + RELOC/tex/latex/cjk/texinput/UTF8/ja.cpx + RELOC/tex/latex/cjk/texinput/UTF8/ko-Hang.cpx + RELOC/tex/latex/cjk/texinput/UTF8/ko-Hang2.cpx + RELOC/tex/latex/cjk/texinput/UTF8/ko-Hani.cpx + RELOC/tex/latex/cjk/texinput/UTF8/zh-Hans.cpx + RELOC/tex/latex/cjk/texinput/UTF8/zh-Hant.cpx + RELOC/tex/latex/cjk/texinput/extended.chr + RELOC/tex/latex/cjk/texinput/extended.enc + RELOC/tex/latex/cjk/texinput/mule/MULEenc.sty + RELOC/tex/latex/cjk/texinput/pinyin.sty + RELOC/tex/latex/cjk/texinput/pmC.chr + RELOC/tex/latex/cjk/texinput/pmCbig.enc + RELOC/tex/latex/cjk/texinput/pmCsmall.enc + RELOC/tex/latex/cjk/texinput/ruby.sty + RELOC/tex/latex/cjk/texinput/standard.bdg + RELOC/tex/latex/cjk/texinput/standard.chr + RELOC/tex/latex/cjk/texinput/standard.enc + RELOC/tex/latex/cjk/texinput/thai/c90cmr.fd + RELOC/tex/latex/cjk/texinput/thai/c90cmss.fd + RELOC/tex/latex/cjk/texinput/thai/c90cmtt.fd + RELOC/tex/latex/cjk/texinput/thai/c90enc.def + RELOC/tex/latex/cjk/texinput/thai/c90gar.fd + RELOC/tex/latex/cjk/texinput/thai/c90nrsr.fd + RELOC/tex/latex/cjk/texinput/thai/thaicjk.ldf + RELOC/tex/latex/cjk/utils/pyhyphen/pinyin.ldf +catalogue-also cjk-fonts +catalogue-ctan /language/chinese/CJK +catalogue-license gpl +catalogue-topics font-use font-cjk chinese japanese korean thai +catalogue-version 4.8.4 + +name cjk-gs-integrate +category Package +revision 57081 +shortdesc Tools to integrate CJK fonts into Ghostscript +longdesc This script searches a list of directories for CJK fonts, and +longdesc makes them available to an installed Ghostscript. In the +longdesc simplest case, with sufficient privileges, a run without +longdesc arguments should result in a complete setup of Ghostscript. +depend cjk-gs-integrate.ARCH +containersize 36348 +containerchecksum f2b8db61f861942df199cdb6e51ca7458f22d385396382bfda6291d2f2abe5555b6b35102629c4c0d478dc01b873ae917acf10b150bae7972a6fbb03ffd03f41 +doccontainersize 13232 +doccontainerchecksum 80f8054e0841bc5605faf0abd3b17ddd16919d0228d520af00c4117f884e1105e6b818d6ec92f312b38246f591f0e6743a76ff02ac05a9e93624e8f4bfaa31f4 +docfiles size=14 + texmf-dist/doc/fonts/cjk-gs-integrate/ChangeLog + texmf-dist/doc/fonts/cjk-gs-integrate/README.md details="Readme" +srccontainersize 560 +srccontainerchecksum 5d26311844626499997323d15806a31e5144b1dc6f6c18fc5dbab10f898382eff33dc316ac8429a3d76f57867720061cb8594d5c80510b7776dbad8970f0c0da +srcfiles size=1 + texmf-dist/source/fonts/cjk-gs-integrate/Makefile +runfiles size=75 + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-adobe.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-apple.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-arphic.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-bizud.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-cjkuni.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-dynacomware.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-fandol.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-fontworks.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-founder.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-hancom.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-haranoaji.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-heisei.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-hiragino.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-ipa.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-kozuka.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-macos-removeonly.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-microsoft.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-mogamobo.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-monotype.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-morisawa.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-nanum.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-notosans.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-notoserif.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-removeonly.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-ryokana.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sazanami.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sinotype.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-solaris.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sourcehansans.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sourcehanserif.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-toppan.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-typebank.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-ume.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-unfonts.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-wenquanyi.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-yu-osx.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-yu-win.dat + texmf-dist/fonts/misc/cjk-gs-integrate/zrlistttc.lua + 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-license gpl3 +catalogue-topics font-util +catalogue-version 20201206.0 + +name cjk-gs-integrate.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of cjk-gs-integrate +containersize 352 +containerchecksum 806ba2f8cda5254da7d11d64e03be2c95e2528b26066efda55e49aa1a8d20acb5bc87836a7c9b08344770fec3d1e03d7387b4187f36896f927048235d246f9e3 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/cjk-gs-integrate + +name cjk-gs-integrate.amd64-freebsd +category Package +revision 37223 +shortdesc amd64-freebsd files of cjk-gs-integrate +containersize 352 +containerchecksum 44f1eeeb009bdb5d616f07ccfa0336c377cfba29cb91e502ff557e9d67ec79ae66967548282a39aec0900a873303a7f8c1b79828558e08f9c71ca2bc61ecd46c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/cjk-gs-integrate + +name cjk-gs-integrate.amd64-netbsd +category Package +revision 37223 +shortdesc amd64-netbsd files of cjk-gs-integrate +containersize 352 +containerchecksum 70c50f498ce431d36d96a4f226648993896a72bc5e6dec3d5123c7f0027b96d7cf76ea0869ec6a29fa89ac151dd88f47d3362ffec84095369046405786f3836b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/cjk-gs-integrate + +name cjk-gs-integrate.armhf-linux +category Package +revision 37223 +shortdesc armhf-linux files of cjk-gs-integrate +containersize 348 +containerchecksum 5e2df0b6fb516ea2cf7f52047f5e2125c72e224a2c96909637bf57f10d38b0f7e02f645f1186fa1445b481690cf10c85b4c017cf3dfbcfe30588270028a9cb94 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/cjk-gs-integrate + +name cjk-gs-integrate.i386-cygwin +category Package +revision 37223 +shortdesc i386-cygwin files of cjk-gs-integrate +containersize 348 +containerchecksum 21dadd7e1e625f307cc661cbdd2643d83dbf12f1dec0d2a80607ad7cd89402d8448939b27a248d02948bbea8ec38b7cb68ea55bc1194eab59329a38031695964 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/cjk-gs-integrate + +name cjk-gs-integrate.i386-freebsd +category Package +revision 37223 +shortdesc i386-freebsd files of cjk-gs-integrate +containersize 352 +containerchecksum 3594af88365eec818c65ea24eb5f973393c113417ed0bb7c54af44fb994c763b2f717b843f1eea7a9ef15e4bdbe90974bc2f0cd5ef2ab6db47ce627f94bc20ab +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/cjk-gs-integrate + +name cjk-gs-integrate.i386-linux +category Package +revision 37223 +shortdesc i386-linux files of cjk-gs-integrate +containersize 352 +containerchecksum d9cd232b20b0b524710aca7eb4a6b6a649fc6a613b8c78626962c657b4abd01ee39f84d04e37f1e973256bb2bf4c4a8c968b1d0a158e31fa4d66b01ed2f3029f +binfiles arch=i386-linux size=1 + bin/i386-linux/cjk-gs-integrate + +name cjk-gs-integrate.i386-netbsd +category Package +revision 37223 +shortdesc i386-netbsd files of cjk-gs-integrate +containersize 352 +containerchecksum c531cb984b647088dbe1d485f9d8b068a6afb3b21e6c6f7a7db0855decadecb4b7c18b4de2fed5f0c3fd32f19cd064187dae55f19668eb5c80dc02e723a82669 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/cjk-gs-integrate + +name cjk-gs-integrate.i386-solaris +category Package +revision 37223 +shortdesc i386-solaris files of cjk-gs-integrate +containersize 352 +containerchecksum e52235a0adf9368704461bd5c03bfd742c48b3d53c6aa4c1d4bca87441975eebb74e8f6fb1d9c5196c893f6bf29da10123f9cc7fa26a2eec46c6b4b6e4baf167 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/cjk-gs-integrate + +name cjk-gs-integrate.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of cjk-gs-integrate +containersize 348 +containerchecksum 1a240c4232b118dc97bb50b90c277cd78671df428016c2c7a827898a21c630a06c142ce7cb1c26f3199e16fd2cbdcc3ac71fe6b17a53d7e3af1ba32ba8c308d0 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/cjk-gs-integrate + +name cjk-gs-integrate.win32 +category Package +revision 37223 +shortdesc win32 files of cjk-gs-integrate +containersize 696 +containerchecksum 333c4b1f402af106180dc4a571334234981f1d67d61de6941f398948f03593fe890a73b6d59cd5e759c3b70556217eaf87cc10310d578e6aca69c357b5dc46e1 +binfiles arch=win32 size=1 + bin/win32/cjk-gs-integrate.exe + +name cjk-gs-integrate.x86_64-cygwin +category Package +revision 37223 +shortdesc x86_64-cygwin files of cjk-gs-integrate +containersize 352 +containerchecksum 0bb93a6de6ef5c83c2afa85d44cac9c4e264cdf27a868e61bf6fde8732363dd10ba6185d7fc73cb719076908bc482e4c6574adf886fc66e73d5d61d8335520d1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of cjk-gs-integrate +containersize 360 +containerchecksum a03f7541f081a5f40837c0f6d8dcedce8a53660f7d3c842986284143821924a5223e59fa6a6293f37ffed27f173bff06ad8f926f8cb1fd9f4a580400503a707b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-linux +category Package +revision 37223 +shortdesc x86_64-linux files of cjk-gs-integrate +containersize 348 +containerchecksum 9b04db277b84b51d42882a8f7ed274526493b9518871010b630db00d72694da45635e2c08a121019b195a981708c2e03b84da25c7bd2098bef115251639ff47b +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of cjk-gs-integrate +containersize 356 +containerchecksum 187351253dc4c241efb8638afaf466f40a8502e31d0a60e80596ef875e08ff94e9fcf781024d2c0f7acc91268e08a6283ec0558deca3ab844226b42c9682765a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-solaris +category Package +revision 37223 +shortdesc x86_64-solaris files of cjk-gs-integrate +containersize 352 +containerchecksum 8755c44fd4d5414adc6ec59b6bc137463677c8213a29dbce2d32c20aa066622ec5db53c62f6217aea1cfd72ada2fd15e61d42b493eba2e7e23f3278fb3d51a5c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/cjk-gs-integrate + +name cjk-ko +category Package +revision 58081 +shortdesc Extension of the CJK package for Korean typesetting +relocated 1 +longdesc The package supports typesetting UTF-8-encoded modern Korean +longdesc documents with the help of the LaTeX2e CJK package. It provides +longdesc some enhanced features focused on Korean typesetting culture, +longdesc one of them being allowing line-break between Latin and CJK +longdesc characters. The package requires nanumtype1 fonts. +containersize 8292 +containerchecksum 5666ea878afe5ffec519ea1bb732f123a8e1dbe539d1b42919f0d0e73efb26f66850c446bfc3be5aa9e34138611da5701adf43b1f474e590dfe20a6784b3dbbf +doccontainersize 160716 +doccontainerchecksum 3985b243f47a964dde86cea55ff35bef042fe4f66171188dff03e7bebfe06369604fbad9dc0acf551778bcfffb7fed77250035f28b1f033b5f64e5577960aa44 +docfiles size=49 + RELOC/doc/latex/cjk-ko/ChangeLog + RELOC/doc/latex/cjk-ko/README details="Readme" + RELOC/doc/latex/cjk-ko/cjk-ko-doc.pdf details="Package documentation (Korean)" language="ko" + RELOC/doc/latex/cjk-ko/cjk-ko-doc.tex +runfiles size=11 + RELOC/tex/latex/cjk-ko/cjkutf8-josa.sty + RELOC/tex/latex/cjk-ko/cjkutf8-ko.sty + RELOC/tex/latex/cjk-ko/cjkutf8-nanummjhanja.sty + RELOC/tex/latex/cjk-ko/kolabels-utf.sty + RELOC/tex/latex/cjk-ko/konames-utf.sty + RELOC/tex/latex/cjk-ko/kotex.sty +catalogue-contact-repository https://github.com/dohyunkim/cjk-ko +catalogue-ctan /language/korean/cjk-ko +catalogue-license other-free +catalogue-topics korean +catalogue-version 1.9 + +name cjkpunct +category Package +revision 41119 +shortdesc Adjust locations and kerning of CJK punctuation marks +relocated 1 +longdesc The package serves as a companion package for CJK. +containersize 4060 +containerchecksum cb44aa3386cd79f05980e5402adcbbf9f8b67fa76bdd5b293063fe9810520edbdf243656cfb54fe17d6ca43d405e6b16e8012eda63bae3cb3d8fc0f7755e2551 +doccontainersize 143540 +doccontainerchecksum cb9383b6d3fe9ffd5926d10dddcb1ea758aabda232f015b22f61dc8a9b316193b30ca2d8e2b849b1c03d92e0073bba6d90cc5b3b50f47b28a745dff2f7229486 +docfiles size=43 + RELOC/doc/latex/cjkpunct/CJKpunct.pdf + RELOC/doc/latex/cjkpunct/README.md details="Readme" + RELOC/doc/latex/cjkpunct/examples/example-CJKfntef.tex + RELOC/doc/latex/cjkpunct/examples/example-gb.tex + RELOC/doc/latex/cjkpunct/examples/example-gbk.tex + RELOC/doc/latex/cjkpunct/examples/example-utf8.tex + RELOC/doc/latex/cjkpunct/setpunct/README.txt + RELOC/doc/latex/cjkpunct/setpunct/setpunct-macros.tex + RELOC/doc/latex/cjkpunct/setpunct/setpunct-main.tex +srccontainersize 7020 +srccontainerchecksum 0155261e5a1a22634a4c6c779054198534bc2b6ef1f1d85d471a25bde59b7e872db01627f08db6dc76c7fe6fd08d9a2363c47e79425c80ec5319648c994cbf48 +srcfiles size=9 + RELOC/source/latex/cjkpunct/CJKpunct.dtx + RELOC/source/latex/cjkpunct/CJKpunct.ins +runfiles size=6 + RELOC/tex/latex/cjkpunct/CJKpunct.spa + RELOC/tex/latex/cjkpunct/CJKpunct.sty +catalogue-ctan /language/chinese/cjkpunct +catalogue-license lppl1.3 +catalogue-topics chinese japanese korean +catalogue-version 4.8.4 + +name cjkutils +category TLCore +revision 52851 +catalogue cjk +shortdesc CJK language support +longdesc CJK is a macro package for LaTeX, providing simultaneous +longdesc support for various Asian scripts in many encodings (including +longdesc Unicode): Chinese (both traditional and simplified), Japanese, +longdesc Korean and Thai. A special add-on feature is an interface to +longdesc the Emacs editor (cjk-enc.el) which gives simultaneous, +longdesc easy-to-use support to a bunch of other scripts in addition to +longdesc the above -- Cyrillic, Greek, Latin-based scripts, Russian and +longdesc Vietnamese are supported. +depend cjkutils.ARCH +containersize 2016 +containerchecksum 84ae942d24c6a5b6dc8a5ae9a7aed0e1da511e68a2730c26d022d935974869c810600321f4ec1b8c5aeb00d17c6eb360d2735b2ac529bee6aaf85bbf4e44ec2b +doccontainersize 98060 +doccontainerchecksum f135a594a95a0d30262a00bbe8279a2d58c6549dba65533b6d1032f99b517b9ff91217ff3ece3768bffdd086e50ce99b56db494aea24dc460c7b077771e97921 +docfiles size=55 + texmf-dist/doc/man/man1/bg5conv.1 + texmf-dist/doc/man/man1/bg5conv.man1.pdf + texmf-dist/doc/man/man1/cef5conv.1 + texmf-dist/doc/man/man1/cef5conv.man1.pdf + texmf-dist/doc/man/man1/cefconv.1 + texmf-dist/doc/man/man1/cefconv.man1.pdf + texmf-dist/doc/man/man1/cefsconv.1 + texmf-dist/doc/man/man1/cefsconv.man1.pdf + texmf-dist/doc/man/man1/extconv.1 + texmf-dist/doc/man/man1/extconv.man1.pdf + texmf-dist/doc/man/man1/hbf2gf.1 + texmf-dist/doc/man/man1/hbf2gf.man1.pdf + texmf-dist/doc/man/man1/sjisconv.1 + texmf-dist/doc/man/man1/sjisconv.man1.pdf +runfiles size=16 + texmf-dist/hbf2gf/README + texmf-dist/hbf2gf/b5ka12.cfg + texmf-dist/hbf2gf/b5kr12.cfg + texmf-dist/hbf2gf/b5so12.cfg + texmf-dist/hbf2gf/c1so12.cfg + texmf-dist/hbf2gf/c2so12.cfg + texmf-dist/hbf2gf/c3so12.cfg + texmf-dist/hbf2gf/c4so12.cfg + texmf-dist/hbf2gf/c5so12.cfg + texmf-dist/hbf2gf/c6so12.cfg + texmf-dist/hbf2gf/c7so12.cfg + texmf-dist/hbf2gf/csso12.cfg + texmf-dist/hbf2gf/gsfs14.cfg + texmf-dist/hbf2gf/j2so12.cfg + texmf-dist/hbf2gf/jsso12.cfg + texmf-dist/hbf2gf/ksso17.cfg +catalogue-also cjk-fonts +catalogue-ctan /language/chinese/CJK +catalogue-license gpl +catalogue-topics font-use font-cjk chinese japanese korean thai +catalogue-version 4.8.4 + +name cjkutils.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of cjkutils +containersize 47944 +containerchecksum 80cd11650fb38d88c2f5887cb0b97b025c6378e3d3626c42486705549912cc9291cb93a5452a83888fe99c3d41e0f6c4d454e57120cc31ba9fbfd3e509d050b0 +binfiles arch=aarch64-linux size=57 + bin/aarch64-linux/bg5+latex + bin/aarch64-linux/bg5+pdflatex + bin/aarch64-linux/bg5conv + bin/aarch64-linux/bg5latex + bin/aarch64-linux/bg5pdflatex + bin/aarch64-linux/cef5conv + bin/aarch64-linux/cef5latex + bin/aarch64-linux/cef5pdflatex + bin/aarch64-linux/cefconv + bin/aarch64-linux/ceflatex + bin/aarch64-linux/cefpdflatex + bin/aarch64-linux/cefsconv + bin/aarch64-linux/cefslatex + bin/aarch64-linux/cefspdflatex + bin/aarch64-linux/extconv + bin/aarch64-linux/gbklatex + bin/aarch64-linux/gbkpdflatex + bin/aarch64-linux/hbf2gf + bin/aarch64-linux/sjisconv + bin/aarch64-linux/sjislatex + bin/aarch64-linux/sjispdflatex + +name cjkutils.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of cjkutils +containersize 50636 +containerchecksum 6173b93cb62773f0a26ea39a6c6d61ad6180dae3ca3b0c09e25e780844d44a7e27d3527caab44f0ee2b130bc037ab6c7409e7c85cce00db596ce1e3463842332 +binfiles arch=amd64-freebsd size=52 + bin/amd64-freebsd/bg5+latex + bin/amd64-freebsd/bg5+pdflatex + bin/amd64-freebsd/bg5conv + bin/amd64-freebsd/bg5latex + bin/amd64-freebsd/bg5pdflatex + bin/amd64-freebsd/cef5conv + bin/amd64-freebsd/cef5latex + bin/amd64-freebsd/cef5pdflatex + bin/amd64-freebsd/cefconv + bin/amd64-freebsd/ceflatex + bin/amd64-freebsd/cefpdflatex + bin/amd64-freebsd/cefsconv + bin/amd64-freebsd/cefslatex + bin/amd64-freebsd/cefspdflatex + bin/amd64-freebsd/extconv + bin/amd64-freebsd/gbklatex + bin/amd64-freebsd/gbkpdflatex + bin/amd64-freebsd/hbf2gf + bin/amd64-freebsd/sjisconv + bin/amd64-freebsd/sjislatex + bin/amd64-freebsd/sjispdflatex + +name cjkutils.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of cjkutils +containersize 44772 +containerchecksum faac86a8deb7fd3a1a9323272b847a2b2e633780529fbc8feb371482d013f79bc80c4ac9133b9cc4007d05c6dc41b0e5427c28439d00477496e253338c4601c1 +binfiles arch=amd64-netbsd size=60 + bin/amd64-netbsd/bg5+latex + bin/amd64-netbsd/bg5+pdflatex + bin/amd64-netbsd/bg5conv + bin/amd64-netbsd/bg5latex + bin/amd64-netbsd/bg5pdflatex + bin/amd64-netbsd/cef5conv + bin/amd64-netbsd/cef5latex + bin/amd64-netbsd/cef5pdflatex + bin/amd64-netbsd/cefconv + bin/amd64-netbsd/ceflatex + bin/amd64-netbsd/cefpdflatex + bin/amd64-netbsd/cefsconv + bin/amd64-netbsd/cefslatex + bin/amd64-netbsd/cefspdflatex + bin/amd64-netbsd/extconv + bin/amd64-netbsd/gbklatex + bin/amd64-netbsd/gbkpdflatex + bin/amd64-netbsd/hbf2gf + bin/amd64-netbsd/sjisconv + bin/amd64-netbsd/sjislatex + bin/amd64-netbsd/sjispdflatex + +name cjkutils.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of cjkutils +containersize 40212 +containerchecksum a76d6aaa4f26b2f4c3d0c1eb1581d21b9567eab79fd68eae7b9228ea38c2a279f6f4401c543ab7ad07afeb4beb40e28e055c5e600f3c426bbd6801796c7c0c35 +binfiles arch=armhf-linux size=48 + bin/armhf-linux/bg5+latex + bin/armhf-linux/bg5+pdflatex + bin/armhf-linux/bg5conv + bin/armhf-linux/bg5latex + bin/armhf-linux/bg5pdflatex + bin/armhf-linux/cef5conv + bin/armhf-linux/cef5latex + bin/armhf-linux/cef5pdflatex + bin/armhf-linux/cefconv + bin/armhf-linux/ceflatex + bin/armhf-linux/cefpdflatex + bin/armhf-linux/cefsconv + bin/armhf-linux/cefslatex + bin/armhf-linux/cefspdflatex + bin/armhf-linux/extconv + bin/armhf-linux/gbklatex + bin/armhf-linux/gbkpdflatex + bin/armhf-linux/hbf2gf + bin/armhf-linux/sjisconv + bin/armhf-linux/sjislatex + bin/armhf-linux/sjispdflatex + +name cjkutils.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of cjkutils +containersize 19264 +containerchecksum 32f20159f9ed386e76dab4cfe19f4c9a029f9d87d496de45df344843e26e0a163c6ad4c7eb6647d506c658f94f7198798a2933cd9312155fd277710b9cbeb1b7 +binfiles arch=i386-cygwin size=42 + bin/i386-cygwin/bg5+latex + bin/i386-cygwin/bg5+pdflatex + bin/i386-cygwin/bg5conv.exe + bin/i386-cygwin/bg5latex + bin/i386-cygwin/bg5pdflatex + bin/i386-cygwin/cef5conv.exe + bin/i386-cygwin/cef5latex + bin/i386-cygwin/cef5pdflatex + bin/i386-cygwin/cefconv.exe + bin/i386-cygwin/ceflatex + bin/i386-cygwin/cefpdflatex + bin/i386-cygwin/cefsconv.exe + bin/i386-cygwin/cefslatex + bin/i386-cygwin/cefspdflatex + bin/i386-cygwin/extconv.exe + bin/i386-cygwin/gbklatex + bin/i386-cygwin/gbkpdflatex + bin/i386-cygwin/hbf2gf.exe + bin/i386-cygwin/sjisconv.exe + bin/i386-cygwin/sjislatex + bin/i386-cygwin/sjispdflatex + +name cjkutils.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of cjkutils +containersize 45336 +containerchecksum 86d4cf566d41489bc14c949fe6304f35853d60426cfe2302598e7a77c7791d6eae0763b6bcc674cbbacdb7057f9a17b9406e47687e72929af1ec7a51891de5ca +binfiles arch=i386-freebsd size=50 + bin/i386-freebsd/bg5+latex + bin/i386-freebsd/bg5+pdflatex + bin/i386-freebsd/bg5conv + bin/i386-freebsd/bg5latex + bin/i386-freebsd/bg5pdflatex + bin/i386-freebsd/cef5conv + bin/i386-freebsd/cef5latex + bin/i386-freebsd/cef5pdflatex + bin/i386-freebsd/cefconv + bin/i386-freebsd/ceflatex + bin/i386-freebsd/cefpdflatex + bin/i386-freebsd/cefsconv + bin/i386-freebsd/cefslatex + bin/i386-freebsd/cefspdflatex + bin/i386-freebsd/extconv + bin/i386-freebsd/gbklatex + bin/i386-freebsd/gbkpdflatex + bin/i386-freebsd/hbf2gf + bin/i386-freebsd/sjisconv + bin/i386-freebsd/sjislatex + bin/i386-freebsd/sjispdflatex + +name cjkutils.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of cjkutils +containersize 51376 +containerchecksum d685117af0ca0b9e733db5c109bdf9e39dc049f6e9bfb6d0e8f5d4c5d5a196afee83ce999b7bbdc3edc26b20938739c9964901916907fe6bff69ffaa49502c2d +binfiles arch=i386-linux size=52 + bin/i386-linux/bg5+latex + bin/i386-linux/bg5+pdflatex + bin/i386-linux/bg5conv + bin/i386-linux/bg5latex + bin/i386-linux/bg5pdflatex + bin/i386-linux/cef5conv + bin/i386-linux/cef5latex + bin/i386-linux/cef5pdflatex + bin/i386-linux/cefconv + bin/i386-linux/ceflatex + bin/i386-linux/cefpdflatex + bin/i386-linux/cefsconv + bin/i386-linux/cefslatex + bin/i386-linux/cefspdflatex + bin/i386-linux/extconv + bin/i386-linux/gbklatex + bin/i386-linux/gbkpdflatex + bin/i386-linux/hbf2gf + bin/i386-linux/sjisconv + bin/i386-linux/sjislatex + bin/i386-linux/sjispdflatex + +name cjkutils.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of cjkutils +containersize 41368 +containerchecksum 188902895f9ddcf7fdaf6a7ef4c4ef805a23dd4f1d4e84e450e4e5f371f5f5c9065c7762716b1dfdc66aca8ecd4dd636121440638b912cc662e5a25f02064d91 +binfiles arch=i386-netbsd size=55 + bin/i386-netbsd/bg5+latex + bin/i386-netbsd/bg5+pdflatex + bin/i386-netbsd/bg5conv + bin/i386-netbsd/bg5latex + bin/i386-netbsd/bg5pdflatex + bin/i386-netbsd/cef5conv + bin/i386-netbsd/cef5latex + bin/i386-netbsd/cef5pdflatex + bin/i386-netbsd/cefconv + bin/i386-netbsd/ceflatex + bin/i386-netbsd/cefpdflatex + bin/i386-netbsd/cefsconv + bin/i386-netbsd/cefslatex + bin/i386-netbsd/cefspdflatex + bin/i386-netbsd/extconv + bin/i386-netbsd/gbklatex + bin/i386-netbsd/gbkpdflatex + bin/i386-netbsd/hbf2gf + bin/i386-netbsd/sjisconv + bin/i386-netbsd/sjislatex + bin/i386-netbsd/sjispdflatex + +name cjkutils.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of cjkutils +containersize 48096 +containerchecksum 1beef36e5a044af55b5a2fd99b420bb3878c083364c8e3a02dc3d5e273ab2eac01cc1849f0abb76f35e62c15a85a75f70e2d2d4720d3c18e11f8331beee84499 +binfiles arch=i386-solaris size=51 + bin/i386-solaris/bg5+latex + bin/i386-solaris/bg5+pdflatex + bin/i386-solaris/bg5conv + bin/i386-solaris/bg5latex + bin/i386-solaris/bg5pdflatex + bin/i386-solaris/cef5conv + bin/i386-solaris/cef5latex + bin/i386-solaris/cef5pdflatex + bin/i386-solaris/cefconv + bin/i386-solaris/ceflatex + bin/i386-solaris/cefpdflatex + bin/i386-solaris/cefsconv + bin/i386-solaris/cefslatex + bin/i386-solaris/cefspdflatex + bin/i386-solaris/extconv + bin/i386-solaris/gbklatex + bin/i386-solaris/gbkpdflatex + bin/i386-solaris/hbf2gf + bin/i386-solaris/sjisconv + bin/i386-solaris/sjislatex + bin/i386-solaris/sjispdflatex + +name cjkutils.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of cjkutils +containersize 102196 +containerchecksum df0071df7f48352809b3bbf0c04fbecdccdab270769383188d6421b987836bf43826bbc01f92c798a7493b880b4b4864fd5e621d56617050452cab181b8a1eb1 +binfiles arch=universal-darwin size=236 + bin/universal-darwin/bg5+latex + bin/universal-darwin/bg5+pdflatex + bin/universal-darwin/bg5conv + bin/universal-darwin/bg5latex + bin/universal-darwin/bg5pdflatex + bin/universal-darwin/cef5conv + bin/universal-darwin/cef5latex + bin/universal-darwin/cef5pdflatex + bin/universal-darwin/cefconv + bin/universal-darwin/ceflatex + bin/universal-darwin/cefpdflatex + bin/universal-darwin/cefsconv + bin/universal-darwin/cefslatex + bin/universal-darwin/cefspdflatex + bin/universal-darwin/extconv + bin/universal-darwin/gbklatex + bin/universal-darwin/gbkpdflatex + bin/universal-darwin/hbf2gf + bin/universal-darwin/sjisconv + bin/universal-darwin/sjislatex + bin/universal-darwin/sjispdflatex + +name cjkutils.win32 +category TLCore +revision 58783 +shortdesc win32 files of cjkutils +containersize 23216 +containerchecksum 34efc46ad403865192acde18c45b472a598705ef3d385bc9205f9811f72e5ed4f6400fecdd030fa4a5a60c1979090e8d4ab2361c91a66ebe5c84f09c8ac3f6a7 +binfiles arch=win32 size=57 + bin/win32/bg5conv.exe + bin/win32/bg5latex.exe + bin/win32/bg5pdflatex.exe + bin/win32/cef5conv.exe + bin/win32/cef5latex.exe + bin/win32/cef5pdflatex.exe + bin/win32/cefconv.exe + bin/win32/ceflatex.exe + bin/win32/cefpdflatex.exe + bin/win32/cefsconv.exe + bin/win32/cefslatex.exe + bin/win32/cefspdflatex.exe + bin/win32/extconv.exe + bin/win32/gbklatex.exe + bin/win32/gbkpdflatex.exe + bin/win32/hbf2gf.exe + bin/win32/sjisconv.exe + bin/win32/sjislatex.exe + bin/win32/sjispdflatex.exe + +name cjkutils.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of cjkutils +containersize 20144 +containerchecksum e18e5143af05b3cea178e66b06c7d6762a8170cd84167b2e900dc0833da9a993f76334a6389c1080ba8594bbc94135f6d03a79c686e403edc2affdf221e352e1 +binfiles arch=x86_64-cygwin size=42 + bin/x86_64-cygwin/bg5+latex + bin/x86_64-cygwin/bg5+pdflatex + bin/x86_64-cygwin/bg5conv.exe + bin/x86_64-cygwin/bg5latex + bin/x86_64-cygwin/bg5pdflatex + bin/x86_64-cygwin/cef5conv.exe + bin/x86_64-cygwin/cef5latex + bin/x86_64-cygwin/cef5pdflatex + bin/x86_64-cygwin/cefconv.exe + bin/x86_64-cygwin/ceflatex + bin/x86_64-cygwin/cefpdflatex + bin/x86_64-cygwin/cefsconv.exe + bin/x86_64-cygwin/cefslatex + bin/x86_64-cygwin/cefspdflatex + bin/x86_64-cygwin/extconv.exe + bin/x86_64-cygwin/gbklatex + bin/x86_64-cygwin/gbkpdflatex + bin/x86_64-cygwin/hbf2gf.exe + bin/x86_64-cygwin/sjisconv.exe + bin/x86_64-cygwin/sjislatex + bin/x86_64-cygwin/sjispdflatex + +name cjkutils.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of cjkutils +containersize 46788 +containerchecksum ada4bd14fc147dc7439cef95ae6d8d6efc35cb76580a9cdfb33bab0bb791e4baa1c5c799cb2427f2775b6ada6bc95e85d7988cc56f2add110efead12b2480e59 +binfiles arch=x86_64-darwinlegacy size=58 + bin/x86_64-darwinlegacy/bg5+latex + bin/x86_64-darwinlegacy/bg5+pdflatex + bin/x86_64-darwinlegacy/bg5conv + bin/x86_64-darwinlegacy/bg5latex + bin/x86_64-darwinlegacy/bg5pdflatex + bin/x86_64-darwinlegacy/cef5conv + bin/x86_64-darwinlegacy/cef5latex + bin/x86_64-darwinlegacy/cef5pdflatex + bin/x86_64-darwinlegacy/cefconv + bin/x86_64-darwinlegacy/ceflatex + bin/x86_64-darwinlegacy/cefpdflatex + bin/x86_64-darwinlegacy/cefsconv + bin/x86_64-darwinlegacy/cefslatex + bin/x86_64-darwinlegacy/cefspdflatex + bin/x86_64-darwinlegacy/extconv + bin/x86_64-darwinlegacy/gbklatex + bin/x86_64-darwinlegacy/gbkpdflatex + bin/x86_64-darwinlegacy/hbf2gf + bin/x86_64-darwinlegacy/sjisconv + bin/x86_64-darwinlegacy/sjislatex + bin/x86_64-darwinlegacy/sjispdflatex + +name cjkutils.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of cjkutils +containersize 49108 +containerchecksum fe006cb497b962f30157e06a4039931cbc3214e74c34eaa7e30c6701237a8e201fb059863f9315021d3da6926e43a0c0aeb545cf54eb77007ff7f7d6b490b46c +binfiles arch=x86_64-linux size=52 + bin/x86_64-linux/bg5+latex + bin/x86_64-linux/bg5+pdflatex + bin/x86_64-linux/bg5conv + bin/x86_64-linux/bg5latex + bin/x86_64-linux/bg5pdflatex + bin/x86_64-linux/cef5conv + bin/x86_64-linux/cef5latex + bin/x86_64-linux/cef5pdflatex + bin/x86_64-linux/cefconv + bin/x86_64-linux/ceflatex + bin/x86_64-linux/cefpdflatex + bin/x86_64-linux/cefsconv + bin/x86_64-linux/cefslatex + bin/x86_64-linux/cefspdflatex + bin/x86_64-linux/extconv + bin/x86_64-linux/gbklatex + bin/x86_64-linux/gbkpdflatex + bin/x86_64-linux/hbf2gf + bin/x86_64-linux/sjisconv + bin/x86_64-linux/sjislatex + bin/x86_64-linux/sjispdflatex + +name cjkutils.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of cjkutils +containersize 51008 +containerchecksum 5cb9ef42d1ddeead85f4584b96f4a47c50240ec3b8be84978207e3d1ab0ecbb2e36c603f5baab20047e6dd74262ac8d55adae60d251d62754a84b7abf8933111 +binfiles arch=x86_64-linuxmusl size=56 + bin/x86_64-linuxmusl/bg5+latex + bin/x86_64-linuxmusl/bg5+pdflatex + bin/x86_64-linuxmusl/bg5conv + bin/x86_64-linuxmusl/bg5latex + bin/x86_64-linuxmusl/bg5pdflatex + bin/x86_64-linuxmusl/cef5conv + bin/x86_64-linuxmusl/cef5latex + bin/x86_64-linuxmusl/cef5pdflatex + bin/x86_64-linuxmusl/cefconv + bin/x86_64-linuxmusl/ceflatex + bin/x86_64-linuxmusl/cefpdflatex + bin/x86_64-linuxmusl/cefsconv + bin/x86_64-linuxmusl/cefslatex + bin/x86_64-linuxmusl/cefspdflatex + bin/x86_64-linuxmusl/extconv + bin/x86_64-linuxmusl/gbklatex + bin/x86_64-linuxmusl/gbkpdflatex + bin/x86_64-linuxmusl/hbf2gf + bin/x86_64-linuxmusl/sjisconv + bin/x86_64-linuxmusl/sjislatex + bin/x86_64-linuxmusl/sjispdflatex + +name cjkutils.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of cjkutils +containersize 52336 +containerchecksum 6f5f929224272601517dce24c381d1e0448216a6b2613d2ab477395ab0ead63b557deff97a5b45ab1f5d9f024d4d02525c2cd7cf4a32559a7fd5728617728dfa +binfiles arch=x86_64-solaris size=58 + bin/x86_64-solaris/bg5+latex + bin/x86_64-solaris/bg5+pdflatex + bin/x86_64-solaris/bg5conv + bin/x86_64-solaris/bg5latex + bin/x86_64-solaris/bg5pdflatex + bin/x86_64-solaris/cef5conv + bin/x86_64-solaris/cef5latex + bin/x86_64-solaris/cef5pdflatex + bin/x86_64-solaris/cefconv + bin/x86_64-solaris/ceflatex + bin/x86_64-solaris/cefpdflatex + bin/x86_64-solaris/cefsconv + bin/x86_64-solaris/cefslatex + bin/x86_64-solaris/cefspdflatex + bin/x86_64-solaris/extconv + bin/x86_64-solaris/gbklatex + bin/x86_64-solaris/gbkpdflatex + bin/x86_64-solaris/hbf2gf + bin/x86_64-solaris/sjisconv + bin/x86_64-solaris/sjislatex + bin/x86_64-solaris/sjispdflatex + +name clara +category Package +revision 54512 +shortdesc A serif font family +relocated 1 +longdesc Clara is a type family created specially by Seamas O Brogain +longdesc for printing A Dictionary of Editing (2015). The family +longdesc includes italic, bold, bold italic, and small capitals, while +longdesc the character set includes (monotonic) Greek, Cyrillic, ogham, +longdesc phonetic and mathematical ranges, scribal abbreviations and +longdesc other specialist characters. The fonts also include some +longdesc OpenType features (such as ligature substitution, small +longdesc capitals, and old-style numerals) and variant forms for +longdesc particular languages. +execute addMap Clara.map +containersize 781784 +containerchecksum 549efe7ed1b523e0f414d8f6401137cb0078256f514253199f85e436a5bac595d7525380fd986fd0c674d087decb23fc401f41a67b193c58f1e8e3bf95a8283c +doccontainersize 323888 +doccontainerchecksum 6b7912050fd352e3095f6abede303f67d3c779b778825852bdaa37345dfec91df860e5b9d0f2fccb7e4e20abfb93740f7f8dba5959aa1d630b7cd990bc0fcf77 +docfiles size=102 + RELOC/doc/fonts/clara/COPYING + RELOC/doc/fonts/clara/README details="Readme" + RELOC/doc/fonts/clara/clara-doc.pdf details="Package documentation" + RELOC/doc/fonts/clara/clara-doc.tex + RELOC/doc/fonts/clara/clara-sample.pdf details="Samples" +runfiles size=515 + RELOC/fonts/enc/dvips/clara/a_2loy6v.enc + RELOC/fonts/enc/dvips/clara/a_2qt3g3.enc + RELOC/fonts/enc/dvips/clara/a_2sd372.enc + RELOC/fonts/enc/dvips/clara/a_3o7uxl.enc + RELOC/fonts/enc/dvips/clara/a_3xxmye.enc + RELOC/fonts/enc/dvips/clara/a_4fqbn7.enc + RELOC/fonts/enc/dvips/clara/a_4vguwe.enc + RELOC/fonts/enc/dvips/clara/a_5cnopr.enc + RELOC/fonts/enc/dvips/clara/a_6vj46g.enc + RELOC/fonts/enc/dvips/clara/a_7ho2jb.enc + RELOC/fonts/enc/dvips/clara/a_agquuh.enc + RELOC/fonts/enc/dvips/clara/a_awbndy.enc + RELOC/fonts/enc/dvips/clara/a_bcypke.enc + RELOC/fonts/enc/dvips/clara/a_bgeg5m.enc + RELOC/fonts/enc/dvips/clara/a_bjoktg.enc + RELOC/fonts/enc/dvips/clara/a_cf2qhu.enc + RELOC/fonts/enc/dvips/clara/a_cfejg4.enc + RELOC/fonts/enc/dvips/clara/a_d6finu.enc + RELOC/fonts/enc/dvips/clara/a_e42l7t.enc + RELOC/fonts/enc/dvips/clara/a_evkdvu.enc + RELOC/fonts/enc/dvips/clara/a_fsonrn.enc + RELOC/fonts/enc/dvips/clara/a_fyi7ch.enc + RELOC/fonts/enc/dvips/clara/a_g7oet2.enc + RELOC/fonts/enc/dvips/clara/a_h4oqw4.enc + RELOC/fonts/enc/dvips/clara/a_hbnu3g.enc + RELOC/fonts/enc/dvips/clara/a_hwn42e.enc + RELOC/fonts/enc/dvips/clara/a_hz5tc2.enc + RELOC/fonts/enc/dvips/clara/a_hzws3u.enc + RELOC/fonts/enc/dvips/clara/a_i325yp.enc + RELOC/fonts/enc/dvips/clara/a_iuscur.enc + RELOC/fonts/enc/dvips/clara/a_juafn7.enc + RELOC/fonts/enc/dvips/clara/a_k2goe4.enc + RELOC/fonts/enc/dvips/clara/a_kc6xc3.enc + RELOC/fonts/enc/dvips/clara/a_kkzari.enc + RELOC/fonts/enc/dvips/clara/a_klgvoj.enc + RELOC/fonts/enc/dvips/clara/a_lpkscq.enc + RELOC/fonts/enc/dvips/clara/a_mfkt2q.enc + RELOC/fonts/enc/dvips/clara/a_nggrjd.enc + RELOC/fonts/enc/dvips/clara/a_njaghn.enc + RELOC/fonts/enc/dvips/clara/a_nms33f.enc + RELOC/fonts/enc/dvips/clara/a_nppcjs.enc + RELOC/fonts/enc/dvips/clara/a_nrthq5.enc + RELOC/fonts/enc/dvips/clara/a_nw6hje.enc + RELOC/fonts/enc/dvips/clara/a_nyfqzj.enc + RELOC/fonts/enc/dvips/clara/a_nygz6z.enc + RELOC/fonts/enc/dvips/clara/a_o7cu7p.enc + RELOC/fonts/enc/dvips/clara/a_od3gqf.enc + RELOC/fonts/enc/dvips/clara/a_okrfpx.enc + RELOC/fonts/enc/dvips/clara/a_olbow4.enc + RELOC/fonts/enc/dvips/clara/a_ouhtwv.enc + RELOC/fonts/enc/dvips/clara/a_pq5qh7.enc + RELOC/fonts/enc/dvips/clara/a_rjjgaj.enc + RELOC/fonts/enc/dvips/clara/a_rn6hxp.enc + RELOC/fonts/enc/dvips/clara/a_rxba6k.enc + RELOC/fonts/enc/dvips/clara/a_ryhnwz.enc + RELOC/fonts/enc/dvips/clara/a_sax4h4.enc + RELOC/fonts/enc/dvips/clara/a_sgjkrw.enc + RELOC/fonts/enc/dvips/clara/a_tifa47.enc + RELOC/fonts/enc/dvips/clara/a_tlcr5j.enc + RELOC/fonts/enc/dvips/clara/a_tloikb.enc + RELOC/fonts/enc/dvips/clara/a_tsfqnz.enc + RELOC/fonts/enc/dvips/clara/a_tvfcps.enc + RELOC/fonts/enc/dvips/clara/a_udnfrw.enc + RELOC/fonts/enc/dvips/clara/a_vij5s5.enc + RELOC/fonts/enc/dvips/clara/a_vn5qte.enc + RELOC/fonts/enc/dvips/clara/a_vrmtcj.enc + RELOC/fonts/enc/dvips/clara/a_vzapqb.enc + RELOC/fonts/enc/dvips/clara/a_wtwzna.enc + RELOC/fonts/enc/dvips/clara/a_xhofkf.enc + RELOC/fonts/enc/dvips/clara/a_xojh7w.enc + RELOC/fonts/enc/dvips/clara/a_xxjjii.enc + RELOC/fonts/enc/dvips/clara/a_y2j5na.enc + RELOC/fonts/enc/dvips/clara/a_y55f6a.enc + RELOC/fonts/enc/dvips/clara/a_ylukkp.enc + RELOC/fonts/enc/dvips/clara/a_ytymvu.enc + RELOC/fonts/map/dvips/clara/Clara.map + RELOC/fonts/opentype/public/clara/clarab.otf + RELOC/fonts/opentype/public/clara/clarabi.otf + RELOC/fonts/opentype/public/clara/clarai.otf + RELOC/fonts/opentype/public/clara/clarar.otf + RELOC/fonts/tfm/public/clara/ClaraBold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-sup-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-sup-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tlf-ts1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-t1.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-t2a.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-t2b.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-t2c.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/clara/ClaraRegular-tosf-ts1.tfm + RELOC/fonts/type1/public/clara/ClaraBold.pfb + RELOC/fonts/type1/public/clara/ClaraBoldItalic.pfb + RELOC/fonts/type1/public/clara/ClaraItalic.pfb + RELOC/fonts/type1/public/clara/ClaraRegular.pfb + RELOC/fonts/vf/public/clara/ClaraBold-sup-lgr.vf + RELOC/fonts/vf/public/clara/ClaraBold-sup-ly1.vf + RELOC/fonts/vf/public/clara/ClaraBold-sup-t1.vf + RELOC/fonts/vf/public/clara/ClaraBold-tlf-lgr.vf + RELOC/fonts/vf/public/clara/ClaraBold-tlf-ly1.vf + RELOC/fonts/vf/public/clara/ClaraBold-tlf-t1.vf + RELOC/fonts/vf/public/clara/ClaraBold-tlf-ts1.vf + RELOC/fonts/vf/public/clara/ClaraBoldItalic-sup-lgr.vf + RELOC/fonts/vf/public/clara/ClaraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/clara/ClaraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/clara/ClaraBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/public/clara/ClaraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/clara/ClaraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/clara/ClaraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-sup-lgr.vf + RELOC/fonts/vf/public/clara/ClaraItalic-sup-ly1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-sup-t1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tlf-lgr.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tlf-ly1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tlf-t1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tlf-ts1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tosf-lgr.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tosf-ly1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tosf-t1.vf + RELOC/fonts/vf/public/clara/ClaraItalic-tosf-ts1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-sup-lgr.vf + RELOC/fonts/vf/public/clara/ClaraRegular-sup-ly1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-sup-t1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-lgr.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-ly1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-sc-lgr.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-sc-t1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-t1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tlf-ts1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-lgr.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-ly1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-sc-lgr.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-sc-t1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-t1.vf + RELOC/fonts/vf/public/clara/ClaraRegular-tosf-ts1.vf + RELOC/tex/latex/clara/LGRClara-Sup.fd + RELOC/tex/latex/clara/LGRClara-TLF.fd + RELOC/tex/latex/clara/LGRClara-TOsF.fd + RELOC/tex/latex/clara/LY1Clara-Sup.fd + RELOC/tex/latex/clara/LY1Clara-TLF.fd + RELOC/tex/latex/clara/LY1Clara-TOsF.fd + RELOC/tex/latex/clara/OT1Clara-Sup.fd + RELOC/tex/latex/clara/OT1Clara-TLF.fd + RELOC/tex/latex/clara/OT1Clara-TOsF.fd + RELOC/tex/latex/clara/T1Clara-Sup.fd + RELOC/tex/latex/clara/T1Clara-TLF.fd + RELOC/tex/latex/clara/T1Clara-TOsF.fd + RELOC/tex/latex/clara/T2AClara-Sup.fd + RELOC/tex/latex/clara/T2AClara-TLF.fd + RELOC/tex/latex/clara/T2AClara-TOsF.fd + RELOC/tex/latex/clara/T2BClara-Sup.fd + RELOC/tex/latex/clara/T2BClara-TLF.fd + RELOC/tex/latex/clara/T2BClara-TOsF.fd + RELOC/tex/latex/clara/T2CClara-Sup.fd + RELOC/tex/latex/clara/T2CClara-TLF.fd + RELOC/tex/latex/clara/T2CClara-TOsF.fd + RELOC/tex/latex/clara/TS1Clara-TLF.fd + RELOC/tex/latex/clara/TS1Clara-TOsF.fd + RELOC/tex/latex/clara/clara.sty +catalogue-contact-home http://www.leabhair.ie/clonna-en.html +catalogue-ctan /fonts/clara +catalogue-license ofl gpl2+ +catalogue-topics font font-body font-serif font-proportional font-multilingual font-cyrillic font-greek font-specialist font-maths font-otf font-type1 font-supp font-t1enc phonetic + +name classics +category Package +revision 53671 +shortdesc Cite classic works +relocated 1 +longdesc The package provides a basic framework to cite classic works +longdesc (specially from authors such as Homer, Plato, Aristotle, +longdesc Descartes, Hume, and Kant) in accordance with traditional +longdesc pagination systems. It may be used in conjunction with other +longdesc citation packages. +containersize 1844 +containerchecksum 86eaa987025658749c642f5132933745a418002feda5a3dec0f1dd9967a178af7e9c3188cde0b0b1fc8fb9ddf5cd59b68cf95942bd811d978d72a68f44a2999f +doccontainersize 209880 +doccontainerchecksum df7d88ae0dc936b8b7f60e98f806b1368d249a838a7407ebd12de05fe10a6e0c9da1ba8cddd3d396033271dd3692451441ad267a187c30cbdf28dd996f707b78 +docfiles size=55 + RELOC/doc/latex/classics/README details="Readme" + RELOC/doc/latex/classics/classics.pdf details="Package documentation" + RELOC/doc/latex/classics/classics.tex +runfiles size=1 + RELOC/tex/latex/classics/classics.sty +catalogue-ctan /macros/latex/contrib/classics +catalogue-license lppl1.3 +catalogue-topics humanities cite-supp expl3 +catalogue-version 0.1a + +name classicthesis +category Package +revision 48041 +shortdesc A "classically styled" thesis package +relocated 1 +longdesc This package provides an elegant layout designed in homage to +longdesc Bringhurst's "The Elements of Typographic Style". It makes use +longdesc of a range of techniques to get the best results achievable +longdesc using TeX. Included in the bundle are templates to make thesis +longdesc writing easier. +containersize 8944 +containerchecksum 9a8c0c9ad0d97f187cf66679613514000324a72d2745c1026889b73e5981e0dcf36f388a0bf630f5ab35d28a39ae50ac842db28c214442ccfd987ff2c132ce7b +doccontainersize 521304 +doccontainerchecksum 3eb82d6c0f951a060e56c763e90ec842d1692326501f538d71780f4a0981edfda33b0ac0b5d00ccded7d3273fa69d4dd5d4a9c3557d9a69e1c3bc17375fbf43b +docfiles size=228 + RELOC/doc/latex/classicthesis/AMiede_Publications.bib + RELOC/doc/latex/classicthesis/Bibliography.bib + RELOC/doc/latex/classicthesis/CHANGES + RELOC/doc/latex/classicthesis/COPYING + RELOC/doc/latex/classicthesis/Chapters/Chapter01.tex + RELOC/doc/latex/classicthesis/Chapters/Chapter02.tex + RELOC/doc/latex/classicthesis/Chapters/Chapter03.tex + RELOC/doc/latex/classicthesis/Chapters/Chapter0A.tex + RELOC/doc/latex/classicthesis/ClassicThesis.pdf details="Package documentation" + RELOC/doc/latex/classicthesis/ClassicThesis.tcp + RELOC/doc/latex/classicthesis/ClassicThesis.tex + RELOC/doc/latex/classicthesis/ClassicThesis.tps + RELOC/doc/latex/classicthesis/Examples/classicthesis-arsclassica-book.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-arsclassica-book.tex + RELOC/doc/latex/classicthesis/Examples/classicthesis-article.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-article.tex + RELOC/doc/latex/classicthesis/Examples/classicthesis-book-xelatex.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-book-xelatex.tex + RELOC/doc/latex/classicthesis/Examples/classicthesis-book.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-book.tex + RELOC/doc/latex/classicthesis/Examples/classicthesis-cv.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-cv.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Abstract.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Acknowledgments.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Bibliography.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Colophon.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Contents.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Declaration.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Dedication.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/DirtyTitlepage.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Publications.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Titleback.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Titlepage.tex + RELOC/doc/latex/classicthesis/LISTOFFILES + RELOC/doc/latex/classicthesis/README details="Package README" + RELOC/doc/latex/classicthesis/classicthesis-config.tex + RELOC/doc/latex/classicthesis/gfx/TFZsuperellipse_bw.pdf + RELOC/doc/latex/classicthesis/gfx/example_1.jpg + RELOC/doc/latex/classicthesis/gfx/example_2.jpg + RELOC/doc/latex/classicthesis/gfx/example_3.jpg + RELOC/doc/latex/classicthesis/gfx/example_4.jpg +runfiles size=9 + RELOC/tex/latex/classicthesis/classicthesis-arsclassica.sty + RELOC/tex/latex/classicthesis/classicthesis.sty +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-license gpl2+ +catalogue-topics dissertation +catalogue-version 4.6 + +name classpack +category Package +revision 55218 +shortdesc XML mastering for LaTeX classes and packages +relocated 1 +longdesc The package provides an experiment in using XML (specifically +longdesc DocBook 5) to mark up and maintain LaTeX classes and packages. +longdesc XSLT 2 styleheets generate the .dtx and .ins distribution files +longdesc expected by end users. +containersize 2292 +containerchecksum 483d96aff1739fc2cdb63e9753fbb86ec93b493ee3d8d104e6089c791e4674d522a30e0dc747a48d8ffc6690452a147b2ad15a3a9cc676c641a9f6aca535563e +doccontainersize 143968 +doccontainerchecksum 6e30295ea5d7ff19f47d4144a3ea6eadd85d02a80023b426675efc75cd2867e3c79b60a8210f26cb732e5b0e70bcb856d96d7ad98a6165cfeaed64affa070bec +docfiles size=42 + RELOC/doc/support/classpack/MANIFEST + RELOC/doc/support/classpack/README.md details="Readme" + RELOC/doc/support/classpack/VERSION + RELOC/doc/support/classpack/classpack.pdf details="Package documentation" +srccontainersize 21084 +srccontainerchecksum 59ab38731bbf23dcda81c02a297c69b5787ce89a69953697651c399dc86e0994db91e5d06358365e8a607a3f15b3a115ab93fcedd8bfc9b3e91946c428e5ba40 +srcfiles size=18 + RELOC/source/support/classpack/classpack.dtx + RELOC/source/support/classpack/classpack.ins +runfiles size=2 + RELOC/tex/latex/classpack/classpack.sty +catalogue-ctan /support/classpack +catalogue-license lppl1.3 +catalogue-topics class-supp package-devel +catalogue-version 1.19 + +name cleanthesis +category Package +revision 51472 +shortdesc A clean LaTeX style for thesis documents +relocated 1 +longdesc The package offers a clean, simple, and elegant LaTeX style for +longdesc thesis documents. +containersize 6756 +containerchecksum 0f12e2eb830014bd08e742ed6dbbc83f9b6d17141a4c0a6c00934ff1d831ab7a9e9dfca6931f5842284845435593449b11b8ed9cc29c7c607fe4df14c2b11d7a +doccontainersize 904536 +doccontainerchecksum 6042357f473bf4bce302b6f43d67fadcf0f449a3f1b1183a26d4b04375d60013eedc7389b002c1f0ed62ab1a8672735774d5aff0d7301e9a5e435080a4181c65 +docfiles size=489 + RELOC/doc/latex/cleanthesis/CHANGELOG.md + RELOC/doc/latex/cleanthesis/MANIFEST.md + RELOC/doc/latex/cleanthesis/README.md details="Readme" + RELOC/doc/latex/cleanthesis/VERSION + RELOC/doc/latex/cleanthesis/bib-refs.bib + RELOC/doc/latex/cleanthesis/content/abstract.tex + RELOC/doc/latex/cleanthesis/content/acknowledgement.tex + RELOC/doc/latex/cleanthesis/content/chapter-appendix.tex + RELOC/doc/latex/cleanthesis/content/chapter-concepts.tex + RELOC/doc/latex/cleanthesis/content/chapter-conclusion.tex + RELOC/doc/latex/cleanthesis/content/chapter-introduction.tex + RELOC/doc/latex/cleanthesis/content/chapter-related-work.tex + RELOC/doc/latex/cleanthesis/content/chapter-system.tex + RELOC/doc/latex/cleanthesis/content/colophon.tex + RELOC/doc/latex/cleanthesis/content/declaration.tex + RELOC/doc/latex/cleanthesis/content/titlepages.tex + RELOC/doc/latex/cleanthesis/doc/cleanthesis-doc.pdf details="Documentation" + RELOC/doc/latex/cleanthesis/doc/cleanthesis-doc.tex + RELOC/doc/latex/cleanthesis/gfx/Clean-Thesis-Figure.pdf + RELOC/doc/latex/cleanthesis/gfx/Clean-Thesis-Logo.pdf + RELOC/doc/latex/cleanthesis/my-thesis-setup.tex + RELOC/doc/latex/cleanthesis/my-thesis.pdf + RELOC/doc/latex/cleanthesis/my-thesis.tex +runfiles size=7 + RELOC/tex/latex/cleanthesis/cleanthesis.sty +catalogue-ctan /macros/latex/contrib/cleanthesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 0.4.0 + +name clearsans +category Package +revision 54512 +shortdesc Clear Sans fonts with LaTeX support +relocated 1 +longdesc Clear Sans was designed by Daniel Ratighan at Monotype under +longdesc the direction of the User Experience team at Intel's Open +longdesc Source Technology Center. Clear Sans is available in three +longdesc weights (regular, medium, and bold) with corresponding italics, +longdesc plus light and thin upright (without italics). Clear Sans has +longdesc minimized, unambiguous characters and slightly narrow +longdesc proportions, making it ideal for UI design. Its strong, +longdesc recognizable forms avoid distracting ambiguity, making Clear +longdesc Sans comfortable for reading short UI labels and long passages +longdesc in both screen and print. The fonts are available in both +longdesc TrueType and Type 1 formats. +execute addMap ClearSans.map +containersize 1322432 +containerchecksum 7a09ef6b27a828823b8bb4d57788805cfd3301196864c9023d5f1ac6ea688da6783535c8449c0e035c02647476de9f2fddd9abdb4180a1512d1ae24ce611baee +doccontainersize 198492 +doccontainerchecksum ec57c7551e9b751505d2973a50411b20b859190cee10c176eacba66b4e26c551b7b4230cbb5349a841645cb5d2e351e655ab242db59f4e3e5675f3e964977845 +docfiles size=58 + RELOC/doc/fonts/clearsans/LICENSE-2.0.txt + RELOC/doc/fonts/clearsans/README details="Readme" + RELOC/doc/fonts/clearsans/clear-samples.pdf details="Font samples" + RELOC/doc/fonts/clearsans/clear-samples.tex + RELOC/doc/fonts/clearsans/clearsans.png +runfiles size=962 + RELOC/fonts/enc/dvips/clearsans/clr_c5eikb.enc + RELOC/fonts/enc/dvips/clearsans/clr_lz5qp4.enc + RELOC/fonts/enc/dvips/clearsans/clr_nrghxx.enc + RELOC/fonts/enc/dvips/clearsans/clr_zxbkm4.enc + RELOC/fonts/map/dvips/clearsans/ClearSans.map + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-tlf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-tlf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-tlf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-tlf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-tlf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-tlf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-tlf-ts1.tfm + RELOC/fonts/truetype/intel/clearsans/ClearSans-Bold.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-BoldItalic.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Italic.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Light.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Medium.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-MediumItalic.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Regular.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Thin.ttf + RELOC/fonts/type1/intel/clearsans/ClearSans-Bold.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-BoldItalic.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Italic.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Light.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Medium.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-MediumItalic.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Regular.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Thin.pfb + RELOC/fonts/vf/intel/clearsans/ClearSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Bold-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Italic-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Light-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Light-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Light-tlf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Medium-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Medium-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Thin-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Thin-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-tlf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-tlf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-tlf-ts1.vf + RELOC/tex/latex/clearsans/ClearSans.sty + RELOC/tex/latex/clearsans/LY1ClearSans-TLF.fd + RELOC/tex/latex/clearsans/OT1ClearSans-TLF.fd + RELOC/tex/latex/clearsans/T1ClearSans-TLF.fd + RELOC/tex/latex/clearsans/TS1ClearSans-TLF.fd +catalogue-ctan /fonts/clearsans +catalogue-license apache2 lppl +catalogue-topics font font-body font-proportional font-sans font-ttf font-type1 font-supp font-t1enc + +name clefval +category Package +revision 55985 +shortdesc Key/value support with a hash +relocated 1 +longdesc This package provides only two macros viz. \TheKey and +longdesc \TheValue to define then use pairs of key/value and gives a +longdesc semblance of a hash. Syntax: \TheKey{key}{value} to define the +longdesc value associated to the key, does not produce text; +longdesc \TheValue{key} to return the value linked to the key. Both +longdesc arguments of \TheKey are 'moving' as LaTeX defines the term and +longdesc we have sometimes to protect them. +containersize 1540 +containerchecksum 1d92e279264970ca6d7612c3850fd46d4f3deb74df8a9149d6e63ac19eb665e5affeb1ab9bfea44d07825b80245b0a3b951d3ec08af0834c228a21270bc45437 +doccontainersize 810948 +doccontainerchecksum d8242b0dc52ad63167fe13a88c28fb4b088061f7bddbe3137a7b541dd1f15aacc75a1c7c1c9b6aee2db1ff14278edf3b83d8eea5cbd77e112f16f8af9e36f19a +docfiles size=216 + RELOC/doc/latex/clefval/LISEZMOI.md + RELOC/doc/latex/clefval/MANIFEST.md + RELOC/doc/latex/clefval/README.md details="Package README" + RELOC/doc/latex/clefval/clefval.pdf details="Package documentation" + RELOC/doc/latex/clefval/example-utf8.pdf + RELOC/doc/latex/clefval/example-utf8.tex + RELOC/doc/latex/clefval/example.pdf details="Package example of use (English)" + RELOC/doc/latex/clefval/example.tex + RELOC/doc/latex/clefval/exemple.pdf details="Package examples of use (French)" language="fr" + RELOC/doc/latex/clefval/exemple.tex +srccontainersize 8076 +srccontainerchecksum abf25917b9a6aac0c3ef310bdddad1063ccbb6c59e844c792638927de403da00013e93db8bb1e9c4a052a65ee8dfb46743404efcc9c8cca6191b2703a6ab16a1 +srcfiles size=6 + RELOC/source/latex/clefval/clefval.dtx + RELOC/source/latex/clefval/clefval.ins +runfiles size=1 + RELOC/tex/latex/clefval/clefval.sty +catalogue-ctan /macros/latex/contrib/clefval +catalogue-license lppl1.3c +catalogue-topics keyval +catalogue-version 0.1 + +name cleveref +category Package +revision 47525 +shortdesc Intelligent cross-referencing +relocated 1 +longdesc The package enhances LaTeX's cross-referencing features, +longdesc allowing the format of references to be determined +longdesc automatically according to the type of reference. The formats +longdesc used may be customised in the preamble of a document; babel +longdesc support is available (though the choice of languages remains +longdesc limited: currently Danish, Dutch, English, French, German, +longdesc Italian, Norwegian, Russian, Spanish and Ukranian). The package +longdesc also offers a means of referencing a list of references, each +longdesc formatted according to its type. In such lists, it can collapse +longdesc sequences of numerically-consecutive labels to a reference +longdesc range. +containersize 28484 +containerchecksum 669e122c22c55c1fe95353533a2c35adcd161080ab2e4f3120dab2286b60df316f4de792e9a6fe5b971d622bc2b087061836a3c0aebaf0bc5df17c854f64990b +doccontainersize 386944 +doccontainerchecksum 3885fe13cd51967620f1e48a25a82c2a4916b07ee45c963dfe9ea933a920f347512cf5c30f29ccef9c49c3862df4c9176fe0fa57b1043d3ac230b7cd8b3f8d78 +docfiles size=110 + RELOC/doc/latex/cleveref/README details="Readme" + RELOC/doc/latex/cleveref/cleveref.pdf details="Package documentation" +srccontainersize 77476 +srccontainerchecksum 71a49c96a943dc152cc1621e9e0ce1d0fe62762fa51f670ecd4a0e5a3613ccc52d41db355cfb0c31fc81867bdc07c26acd3e9ad74e0209459a099be823df2308 +srcfiles size=140 + RELOC/source/latex/cleveref/cleveref.dtx + RELOC/source/latex/cleveref/cleveref.ins +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-license lppl1.2 +catalogue-topics label-ref +catalogue-version 0.21.4 + +name clipboard +category Package +revision 47747 +shortdesc Copy and paste into and across documents +relocated 1 +longdesc The clipboard package provides a basic framework for copying +longdesc and pasting text and commands into and across multiple +longdesc documents. It replaces the copypaste package. +containersize 1028 +containerchecksum 19aed32c2dc229852133a44fe5ed692a0d3194d374cc77e2301314b3fff929b834fd4df82e811095049e64ba127180eddb77fcc4211aecd2db40e8124a38d55c +doccontainersize 161528 +doccontainerchecksum 50e7447b35c1d73c1d36bab165a8bb476764ffcc4ed7994e1bc63c6759baad0dd6c2c1f6a95334c7bf649dd13c8e79d17ec536120f1112d621e833b6f9f80578 +docfiles size=44 + RELOC/doc/latex/clipboard/README details="Readme" + RELOC/doc/latex/clipboard/clipboard.pdf details="Package documentation" + RELOC/doc/latex/clipboard/clipboard.tex +runfiles size=1 + RELOC/tex/latex/clipboard/clipboard.sty +catalogue-ctan /macros/latex/contrib/clipboard +catalogue-license lppl1.3 +catalogue-topics quotation-imp +catalogue-version 0.3 + +name clock +category Package +revision 15878 +shortdesc Graphical and textual clocks for TeX and LaTeX +relocated 1 +longdesc Features graphical clocks (with a classical 12h dial and two +longdesc hands) and text clocks (in 24h format) which can show system +longdesc time or any time the user desires. Works with both TeX and +longdesc LaTeX. The clock faces (appearances of the dial) are easily +longdesc expandable; the default uses a custom Metafont font. +containersize 2712 +containerchecksum ba378fe241cd2e51b641f0edc4bdd1403477b392e0a22363bcf540b513c1c15b1c0e3ab37020aa77ec147ce59cc7ad6f09c86cadcc0a77892a1a798c36c411aa +doccontainersize 68320 +doccontainerchecksum d06e263266ab91b48ae3238af6ce283c7f720c2113d95d10c7de6026b4557b0fcb22aaec44caba2f7ad743e578e9840da1b116fd3372558d545c424159d8f2e5 +docfiles size=35 + RELOC/doc/latex/clock/COPYING + RELOC/doc/latex/clock/EMTEX + RELOC/doc/latex/clock/HISTORY + RELOC/doc/latex/clock/INSTALL + RELOC/doc/latex/clock/MIKTEX + RELOC/doc/latex/clock/README details="Readme" + RELOC/doc/latex/clock/clockdoc.pdf + RELOC/doc/latex/clock/clockdoc.tex +runfiles size=4 + RELOC/fonts/source/public/clock/clock.mf + RELOC/fonts/tfm/public/clock/clock.tfm + RELOC/tex/latex/clock/clock.sty + RELOC/tex/latex/clock/clock.tex +catalogue-ctan /macros/latex/contrib/clock +catalogue-license other-free +catalogue-topics date-time + +name clojure-pamphlet +category Package +revision 52082 +shortdesc A simple literate programming tool based on clojure's pamphlet system +longdesc The Clojure pamphlet system is a system based on the Clojure +longdesc literate system. In the Clojure's pamphlet system you have your +longdesc main LaTeX file, which can be compiled regularly. This file +longdesc contains documentation and source code (just like in other +longdesc forms of literate programming). These code snippets are wrapped +longdesc in the chunk environment, hence they can be recognized by the +longdesc tangler in order to extract them. Chunks can be included inside +longdesc each other by the getchunk command (which will be typesetted +longdesc acordingly). Finally, the LaTeX file will be run through the +longdesc tangler to get the desired chunk of code. +depend clojure-pamphlet.ARCH +containersize 3660 +containerchecksum a420e5548af550ef91103a82c5bf8e43345abfce69bb438d488ed9a3a62db1e6763ea1c17b246ef307cc62d28b5c575b5da07d5857241e21ce7d789e9a2a055d +doccontainersize 193228 +doccontainerchecksum 23f6cd97dc5d521689555ec95a695db0f9cae8873d28e2bac2969f07e9e8d2f7ca9a6c8105ca127da202d811717b3c1f4219fe15f9af01036800a083f065cd09 +docfiles size=50 + texmf-dist/doc/support/clojure-pamphlet/README details="Readme" + texmf-dist/doc/support/clojure-pamphlet/clojure-pamphlet_guide.pdf details="Package documentation" + texmf-dist/doc/support/clojure-pamphlet/pamphletangler.1 +srccontainersize 4976 +srccontainerchecksum 32f90dabd0e73206930f589a97e8630c25ce2f95f1657d08ce71cd36241bafd6c2a79c483805f7574ccab29deb478d1ef8837fdf2e922592e6d8f18f43121a14 +srcfiles size=4 + texmf-dist/source/support/clojure-pamphlet/clojure-pamphlet.dtx + texmf-dist/source/support/clojure-pamphlet/clojure-pamphlet.ins +runfiles size=3 + texmf-dist/scripts/clojure-pamphlet/pamphletangler + texmf-dist/tex/latex/clojure-pamphlet/clojure-pamphlet.sty +catalogue-contact-bugs https://gitlab.com/elancha/clojure-pamphlet/issues +catalogue-contact-development https://gitlab.com/elancha/clojure-pamphlet/merge_requests +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-license gpl3+ +catalogue-topics litprog litprog-tools +catalogue-version 1.3 + +name clojure-pamphlet.aarch64-linux +category Package +revision 51944 +shortdesc aarch64-linux files of clojure-pamphlet +containersize 348 +containerchecksum c659b320cf199a5e7918261c63dee6939a107c7523c48bb2bb8d83f4c924501feaecb17d45eb2df6b5da5e3b664a341ac5ae85b11aa54bce2d524af32c86dfa0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pamphletangler + +name clojure-pamphlet.amd64-freebsd +category Package +revision 51944 +shortdesc amd64-freebsd files of clojure-pamphlet +containersize 352 +containerchecksum cede04acd7b20f29a24aa77e81344bb3ba273d7623261ae3f7a24bd00c399ebadd6bf322fd096b2f79653cd61820428bd5e6829db1748f2fb11297068546d44c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pamphletangler + +name clojure-pamphlet.amd64-netbsd +category Package +revision 51944 +shortdesc amd64-netbsd files of clojure-pamphlet +containersize 348 +containerchecksum 714fdde5d8d2ade9fc8856c3087f46a12f9bb076b162102f1375e26a4d0e1362b744e640db0dce8b6a278f2bd97a218514035d0efd5e88ff2001c75d05f0cdb5 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pamphletangler + +name clojure-pamphlet.armhf-linux +category Package +revision 51944 +shortdesc armhf-linux files of clojure-pamphlet +containersize 348 +containerchecksum dac2ef774f01fca4f6a563a3129304c25f9fe8642552bdd4c326b0ff684b9976ff6acad2a46d2389ea56b7c050c81c69c0f8fae47a31d799149e93568477aaca +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pamphletangler + +name clojure-pamphlet.i386-cygwin +category Package +revision 51944 +shortdesc i386-cygwin files of clojure-pamphlet +containersize 348 +containerchecksum e2c733c744c9810d5b69e5e7cc85a6cc68b39653f13466502cbd7069c079a911f020c00de8e64fb10e65cf598f6d2a82ebf34b9270349759399ae068aefac4b3 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pamphletangler + +name clojure-pamphlet.i386-freebsd +category Package +revision 51944 +shortdesc i386-freebsd files of clojure-pamphlet +containersize 348 +containerchecksum e73d7e68dfce5af6f9ab20fcc70e6906801d76eb277ed3005c1c9abcdb514078f64506a669b7dd258ccd7f329348fae806e74a02c1d01f515fe69e4e1899309e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pamphletangler + +name clojure-pamphlet.i386-linux +category Package +revision 51944 +shortdesc i386-linux files of clojure-pamphlet +containersize 348 +containerchecksum d5fbcf70e43566188656c8f61d05d36e11074b77bbfe5cf48fc21ef3602d530507cad6c7088f16facfe10dbf0316d5ee2e3e3f779f261f788ddfedb59190b9eb +binfiles arch=i386-linux size=1 + bin/i386-linux/pamphletangler + +name clojure-pamphlet.i386-netbsd +category Package +revision 51944 +shortdesc i386-netbsd files of clojure-pamphlet +containersize 348 +containerchecksum ab6e25df63f481acb7ba614adf49813889c7a3e47a59af4a6069ce79d4666a5782e261e7c85f664e5394d206a60121bb69b066b485a5fe80d7e14bf4c605de59 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pamphletangler + +name clojure-pamphlet.i386-solaris +category Package +revision 51944 +shortdesc i386-solaris files of clojure-pamphlet +containersize 348 +containerchecksum aa80f52c26d503fdbcb8d3e2e97a99bf2335ec43408d60c885ded7880ba0c9421dc5a1deb7d28fcba617aa3f3e7cd782b2c60cfa9ed9613eba6d24b94056f3a9 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pamphletangler + +name clojure-pamphlet.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of clojure-pamphlet +containersize 352 +containerchecksum 9a9472c0af588648dd178281030c62beb177e01ee57a59ec9603d29a5c1ff4adfc4013898cd2afe259d09ca763af035808ad18d4afd0778f184318c4e9d0fcbc +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pamphletangler + +name clojure-pamphlet.win32 +category Package +revision 51944 +shortdesc win32 files of clojure-pamphlet +containersize 692 +containerchecksum 89d4966a4bc2da2ef84c4cde99ff9c232e76c90921baee90e5b2614d847ea0c2d20cae1c40299c84d04851caf2d7ab1cbcbcca24cf945a76a49c75a5a4537988 +binfiles arch=win32 size=1 + bin/win32/pamphletangler.exe + +name clojure-pamphlet.x86_64-cygwin +category Package +revision 51944 +shortdesc x86_64-cygwin files of clojure-pamphlet +containersize 348 +containerchecksum fe730c4c9019b1fccba9755e031227dda95015d70da02ffc220c9b3cdfe794267430b53e7c657fdcb4def17ee29237e225f3babd88c76a114a02995cc1c454f6 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pamphletangler + +name clojure-pamphlet.x86_64-darwinlegacy +category Package +revision 51944 +shortdesc x86_64-darwinlegacy files of clojure-pamphlet +containersize 356 +containerchecksum 333a65aa2fbd86a73462b5e5b481de69d533ab315acc07e7101e2b68c5bcbc25d3bbb4c85141a0370e66bc913dfb1bcab9237d6a5f19a9fbaa37960d70bf2a42 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pamphletangler + +name clojure-pamphlet.x86_64-linux +category Package +revision 51944 +shortdesc x86_64-linux files of clojure-pamphlet +containersize 352 +containerchecksum 9ac92c5cc09ff58480270ca4009b52acec6c17ca4b7cc0345041df7d071580908d90c50f4d323980a6fb39534dff5905c7ae63ca3e0e0003ee0aa1edd1ad7c7b +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pamphletangler + +name clojure-pamphlet.x86_64-linuxmusl +category Package +revision 51944 +shortdesc x86_64-linuxmusl files of clojure-pamphlet +containersize 352 +containerchecksum faad199ff0db93657e4dc40e4dddf24db3c9117cac330584bdaf86bd35ba3f1a260267a681bd737daa642c110269a720f1411d215437680c0d0f83c81b1bbd37 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pamphletangler + +name clojure-pamphlet.x86_64-solaris +category Package +revision 51944 +shortdesc x86_64-solaris files of clojure-pamphlet +containersize 348 +containerchecksum 3f2ee9de4b0496c172448cb08eb67d3a73688f5b753fba7cb44a704a5294da843531a3eef5fd6a35f1b536e220b215ca0790934d0541cf39060418f360dfb8db +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pamphletangler + +name cloze +category Package +revision 55763 +shortdesc A LuaLaTeX package for creating cloze texts +relocated 1 +longdesc This is a LuaTeX or LuaLaTeX package for generating cloze +longdesc texts. The main feature of the package is that the formatting +longdesc doesn't change when using the hide and show options. There are +longdesc the commands \cloze, \clozefix, \clozefil, \clozenol, +longdesc \clozestrike and the environments clozepar and clozebox to +longdesc generate cloze texts. +containersize 9208 +containerchecksum f1c986699258bc9e7e27093a2d44f59d001ab13c3d9ba0717dc9bed0c53b00ce8ccf658c9cc3d7d457d18f45357a6d44da4d6710c1661ffcf299a8791822501b +doccontainersize 577160 +doccontainerchecksum ca3d9e0a4eb7486f40e4a26d0b6a2aa5dbf7e3d28343b9069ee97b089e7906aa137d8e7f8c6d010fd2cf472836191b88b9450248bd99728d80159afc54a8d1e7 +docfiles size=148 + RELOC/doc/luatex/cloze/README.md details="Readme" + RELOC/doc/luatex/cloze/cloze.pdf details="Package documentation" +srccontainersize 6008 +srccontainerchecksum 53d30866958183101890a4999a9b8f4b20b5bbca996d28ca4a22aaf81331f186facc695725917a9e80206545a3e0962b8c17b4e08b4d2db961878a273ba7c209 +srcfiles size=8 + RELOC/source/luatex/cloze/cloze.dtx + RELOC/source/luatex/cloze/cloze.ins +runfiles size=11 + RELOC/scripts/cloze/cloze.lua + RELOC/tex/luatex/cloze/cloze.sty + RELOC/tex/luatex/cloze/cloze.tex +catalogue-contact-bugs https://github.com/Josef-Friedrich/cloze/issues +catalogue-contact-development https://josef.friedrich.rocks +catalogue-contact-repository https://github.com/Josef-Friedrich/cloze +catalogue-ctan /macros/luatex/generic/cloze +catalogue-license lppl1.3 +catalogue-topics exam luatex +catalogue-version 1.6 + +name clrdblpg +category Package +revision 47511 +shortdesc Control pagestyle of pages left blank by \cleardoublepage +relocated 1 +longdesc This tiny package allows easy manipulation of the headers and +longdesc footers on pages left blank by \cleardoublepage. By default, +longdesc LaTeX has no easy facilities for this. This package uses more +longdesc or less the algorithm listed in the fancyhdr package +longdesc documentation, with some better indentation and added +longdesc flexibility. +containersize 1256 +containerchecksum bdd3de3ea16cb5d24879bcf2255bbe01612f8af70f663b9ac578a4ac98910119ea96b8a5b4a59d25c0406c1b33786997ee2940da0273b025455e334b48f17b7d +doccontainersize 289968 +doccontainerchecksum 53ba8c83224ee6573cd1549e7e425fd524b5caf65ab139b67e7de9b32bdd5c3c87f5af63c2c43696554fcc33c8bff4690373ad25582b23bf51134b9cb6301409 +docfiles size=76 + RELOC/doc/latex/clrdblpg/CHANGES + RELOC/doc/latex/clrdblpg/README details="Readme" + RELOC/doc/latex/clrdblpg/clrdblpg.pdf details="Package documentation" + RELOC/doc/latex/clrdblpg/lppl.txt +srccontainersize 2740 +srccontainerchecksum 8663b5fa032e10cd77f4f526d30fd16302fd31c1e5ee268d815de3d4b9aee9fe6688e5c94ba50f5d0cb2bb11c03198401bb1a3bd03c431dece50dab65ae3d638 +srcfiles size=3 + RELOC/source/latex/clrdblpg/clrdblpg.dtx + RELOC/source/latex/clrdblpg/clrdblpg.ins +runfiles size=1 + RELOC/tex/latex/clrdblpg/clrdblpg.sty +catalogue-also fancyhdr +catalogue-ctan /macros/latex/contrib/clrdblpg +catalogue-license lppl1.3 +catalogue-topics page-hf +catalogue-version 1.0 + +name clrscode +category Package +revision 51136 +shortdesc Typesets pseudocode as in Introduction to Algorithms +relocated 1 +longdesc This package allows you to typeset pseudocode in the style of +longdesc Introduction to Algorithms, Second edition, by Cormen, +longdesc Leiserson, Rivest, and Stein. The package was written by the +longdesc authors. You use the commands the same way the package's author +longdesc did when writing the book, and your output will look just like +longdesc the pseudocode in the text. +containersize 4520 +containerchecksum c26ac99b2f097b3b9df8bcb3ae040da959c0bd238be75a50b3711cdf0b7b0024ef40749169c0fe0437aa8c845b3ee9c9ec4ab46fe31fe6b1e28019fcd4779076 +doccontainersize 40052 +doccontainerchecksum b74c858703577f79c89b4e95a0fef2012a756defda525c25f2945952b6637fba7ae4c30791a5d566267a16627bf7ce991c4edf726f7106b27b2df3c2b81eb765 +docfiles size=19 + RELOC/doc/latex/clrscode/README + RELOC/doc/latex/clrscode/clrscode.pdf details="Package documentation" + RELOC/doc/latex/clrscode/clrscode.tex + RELOC/doc/latex/clrscode/page.tex +runfiles size=3 + RELOC/tex/latex/clrscode/clrscode.sty +catalogue-also newalg clrscode3e +catalogue-ctan /macros/latex/contrib/clrscode +catalogue-license lppl +catalogue-topics pseudocode +catalogue-version 1.7 + +name clrscode3e +category Package +revision 51137 +shortdesc Typesets pseudocode as in Introduction to Algorithms +relocated 1 +longdesc This package allows you to typeset pseudocode in the style of +longdesc Introduction to Algorithms, Third edition, by Cormen, +longdesc Leiserson, Rivest, and Stein. The package was written by the +longdesc authors. Use the commands the same way the package's author did +longdesc when writing the book, and your output will look just like the +longdesc pseudocode in the text. +containersize 5348 +containerchecksum eb609d4204f9292b387fb8ecac13eaaad77e1d32870cd29f4996771acc5f8e82560e3fb9dcd2c8284888ed55d2b7bfbf931b50e01b0e4b8790c2ce5ce4445588 +doccontainersize 79592 +doccontainerchecksum 0792d458ee46b44d37c31a5bbeaad2257ae1aca818ce33d0b1c8ae96b7e90ea6e06e9036ce61063f232c3829ec36bcef58f111b5df0b25d209e867ac53d322d1 +docfiles size=31 + RELOC/doc/latex/clrscode3e/README details="Readme" + RELOC/doc/latex/clrscode3e/clrscode3e.pdf details="Package documentation" + RELOC/doc/latex/clrscode3e/clrscode3e.tex + RELOC/doc/latex/clrscode3e/page.tex +runfiles size=4 + RELOC/tex/latex/clrscode3e/clrscode3e.sty +catalogue-also newalg clrscode +catalogue-ctan /macros/latex/contrib/clrscode3e +catalogue-license lppl +catalogue-topics pseudocode + +name clrstrip +category Package +revision 53537 +shortdesc Place contents into a full width colour strip +relocated 1 +longdesc This lightweight package provides the colorstrip environment, +longdesc that places its contents into a full page width colour strip. +containersize 1620 +containerchecksum 34893bc3758fa010c34523284d73e18d347cc51a46236599c5e6df7bde4ea196da4ae8731b316c13cb9d225d353f1b3ee9bf0357ba9f30e400a9f16783a6bbe5 +doccontainersize 194300 +doccontainerchecksum 8a18217808e2dbe8e6f96fff8c93458c14fa8bc97e6a8d460eb75c051b982bb2f423d46ea5c4b77bb45942896b126b8782bbbe1ab1a0f5fdc4831a5b8435d59d +docfiles size=49 + RELOC/doc/latex/clrstrip/README.md details="Readme" + RELOC/doc/latex/clrstrip/clrstrip.pdf details="Package documentation" +srccontainersize 4536 +srccontainerchecksum b5cfa0234c7960718b4d201dc1896c8a92c437cdcd531e8decc783470df2e1a932f923a49ee3434dcf540263c9238374e455a14a0f64e84c41cd3985e1f21084 +srcfiles size=4 + RELOC/source/latex/clrstrip/clrstrip.dtx +runfiles size=1 + RELOC/tex/latex/clrstrip/clrstrip.sty +catalogue-also tcolorbox +catalogue-contact-repository https://github.com/Skillmon/ltx_clrstrip +catalogue-ctan /macros/latex/contrib/clrstrip +catalogue-license lppl1.3c +catalogue-topics colour + +name cluttex +category Package +revision 53698 +shortdesc An automation tool for running LaTeX +longdesc This is another tool for the automation of LaTeX document +longdesc processing, like latexmk or arara. The main feature of this +longdesc tool is that it does not clutter your working directory with +longdesc .aux or .log or other auxiliary files. It has of course the +longdesc usual features of automation tools: It automatically re-runs +longdesc (La)TeX for cross-references. MakeIndex, BibTeX, Biber, or +longdesc makeglossaries will be executed if a corresponding option is +longdesc set. Furthermore, cluttex can watch input files for changes +longdesc (using an external program). +depend cluttex.ARCH +containersize 21376 +containerchecksum e211cd6fc89751628b0ebf0bd599ddffd18e39e24292fa896bd2394bbc1fe60c35d5230662a53fa685f051963db3966f27dd752cc63877585880a62483f6f93d +doccontainersize 676332 +doccontainerchecksum d26a6fe183999987b2a1d375d1061fadd78d23a1bddb0582d8f70561c5d1bd745d33e0c41e8256adb00e2dc5b9f4904e7de4f2c03a00a6688b6c4a433f1d359c +docfiles size=278 + texmf-dist/doc/support/cluttex/CHANGELOG.md + texmf-dist/doc/support/cluttex/COPYING + texmf-dist/doc/support/cluttex/Makefile + texmf-dist/doc/support/cluttex/README.md details="Readme" + texmf-dist/doc/support/cluttex/bin/cluttex.bat + texmf-dist/doc/support/cluttex/build.lua + texmf-dist/doc/support/cluttex/checkglobal.lua + texmf-dist/doc/support/cluttex/doc/Makefile + texmf-dist/doc/support/cluttex/doc/cluttex-ja.pdf details="Package documentation" language="ja" + texmf-dist/doc/support/cluttex/doc/cluttex-ja.tex + texmf-dist/doc/support/cluttex/doc/cluttex.pdf details="Package documentation" language="en" + texmf-dist/doc/support/cluttex/doc/cluttex.tex + texmf-dist/doc/support/cluttex/example/README.md details="Readme" + texmf-dist/doc/support/cluttex/example/biblatex/foo.bib + texmf-dist/doc/support/cluttex/example/biblatex/main.tex + texmf-dist/doc/support/cluttex/example/biblatex/sub.tex + texmf-dist/doc/support/cluttex/example/bibtex/baz.bib + texmf-dist/doc/support/cluttex/example/bibtex/foo.bib + texmf-dist/doc/support/cluttex/example/bibtex/main.tex + texmf-dist/doc/support/cluttex/example/bibtex/sub.tex + texmf-dist/doc/support/cluttex/example/empty/main.tex + texmf-dist/doc/support/cluttex/example/epstopdf/drawing.eps + texmf-dist/doc/support/cluttex/example/epstopdf/fig/drawing2.eps + texmf-dist/doc/support/cluttex/example/epstopdf/main.tex + texmf-dist/doc/support/cluttex/example/include/main.tex + texmf-dist/doc/support/cluttex/example/include/path/to/file.tex + texmf-dist/doc/support/cluttex/example/include/sub.tex + texmf-dist/doc/support/cluttex/example/include/sub2.tex + texmf-dist/doc/support/cluttex/example/makeindex/main.tex + texmf-dist/doc/support/cluttex/example/minted/file.lua + texmf-dist/doc/support/cluttex/example/minted/main.tex + texmf-dist/doc/support/cluttex/example/simple-ja/main-luatexja.tex + texmf-dist/doc/support/cluttex/example/simple-ja/main-platex.tex + texmf-dist/doc/support/cluttex/example/simple/main.tex + texmf-dist/doc/support/cluttex/src/cluttex.lua + texmf-dist/doc/support/cluttex/src/texrunner/auxfile.lua + texmf-dist/doc/support/cluttex/src/texrunner/checkdriver.lua + texmf-dist/doc/support/cluttex/src/texrunner/fsutil.lua + texmf-dist/doc/support/cluttex/src/texrunner/fswatcher_windows.lua + texmf-dist/doc/support/cluttex/src/texrunner/handleoption.lua + texmf-dist/doc/support/cluttex/src/texrunner/isatty.lua + texmf-dist/doc/support/cluttex/src/texrunner/luatexinit.lua + texmf-dist/doc/support/cluttex/src/texrunner/message.lua + texmf-dist/doc/support/cluttex/src/texrunner/option.lua + texmf-dist/doc/support/cluttex/src/texrunner/pathutil.lua + texmf-dist/doc/support/cluttex/src/texrunner/pathutil_unix.lua + texmf-dist/doc/support/cluttex/src/texrunner/pathutil_windows.lua + texmf-dist/doc/support/cluttex/src/texrunner/recovery.lua + texmf-dist/doc/support/cluttex/src/texrunner/reruncheck.lua + texmf-dist/doc/support/cluttex/src/texrunner/safename.lua + texmf-dist/doc/support/cluttex/src/texrunner/shellutil.lua + texmf-dist/doc/support/cluttex/src/texrunner/shellutil_unix.lua + texmf-dist/doc/support/cluttex/src/texrunner/shellutil_windows.lua + texmf-dist/doc/support/cluttex/src/texrunner/tex_engine.lua +runfiles size=29 + texmf-dist/scripts/cluttex/cluttex.lua +catalogue-contact-bugs https://github.com/minoki/cluttex/issues +catalogue-contact-repository https://github.com/minoki/cluttex +catalogue-ctan /support/cluttex +catalogue-license gpl3+ +catalogue-topics compilation use-lua +catalogue-version 0.5 + +name cluttex.aarch64-linux +category Package +revision 48871 +shortdesc aarch64-linux files of cluttex +containersize 388 +containerchecksum ec0e89696c8e99798a8fa54995c2420440577c2564867f3e6ad37e7501aa932a1ed94e2e88821fd74f4773a89c5caae6ea58bbcc12a45e665d2e9e3afa552318 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/cllualatex + bin/aarch64-linux/cluttex + bin/aarch64-linux/clxelatex + +name cluttex.amd64-freebsd +category Package +revision 48871 +shortdesc amd64-freebsd files of cluttex +containersize 388 +containerchecksum fe148484416b1b66bafa8c8be8ffb4808387ed5f7139fa4d2b1ab5bbc1de51ede1a22b6c3378364f86498ea5cf1ae05a8654c5f623abfdde5fc9d236cca0f563 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/cllualatex + bin/amd64-freebsd/cluttex + bin/amd64-freebsd/clxelatex + +name cluttex.amd64-netbsd +category Package +revision 48871 +shortdesc amd64-netbsd files of cluttex +containersize 388 +containerchecksum c19e112122da5207c35d4329a9cf0b4ce52843df9b141c98148c3575a505d03a52ff217e17093d333cde877e88a26b50b47fc4fa1fc511120d3093cf84683e20 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/cllualatex + bin/amd64-netbsd/cluttex + bin/amd64-netbsd/clxelatex + +name cluttex.armhf-linux +category Package +revision 48871 +shortdesc armhf-linux files of cluttex +containersize 388 +containerchecksum b31b9ae855141985b48a968e19b7d2310bec509c61dfd9072fd8e6f85d946320c0304155cf74524ef3428d0ba94e3894d06b85cb56519a250c9f14e462fe5ed7 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/cllualatex + bin/armhf-linux/cluttex + bin/armhf-linux/clxelatex + +name cluttex.i386-cygwin +category Package +revision 48871 +shortdesc i386-cygwin files of cluttex +containersize 384 +containerchecksum 6b9b69cec90932dc3abe7315342a068b6f037764f8cedfe54a2eb2226331c334e060afb63baf6a1d43003ced1faa524ce238c4b5304d487ecbbe329982ff532d +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/cllualatex + bin/i386-cygwin/cluttex + bin/i386-cygwin/clxelatex + +name cluttex.i386-freebsd +category Package +revision 48871 +shortdesc i386-freebsd files of cluttex +containersize 388 +containerchecksum f6d4f59938e7c5b67b6d8b16a8d224a559869e7e09cc3cdf326d23f5158501de400f7b919a6e2fa5db3b0c017821cea48fb427bcc9a0efdb2a47d781e2e1d2a0 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/cllualatex + bin/i386-freebsd/cluttex + bin/i386-freebsd/clxelatex + +name cluttex.i386-linux +category Package +revision 48871 +shortdesc i386-linux files of cluttex +containersize 384 +containerchecksum 822fd929b4f8259793149adccc3121153282459b61f767b90ff98ad003e293879319ad6b4edcbe52ef1fcc4d19e33dff13a6dd508323e9f534ccd96fc7732888 +binfiles arch=i386-linux size=3 + bin/i386-linux/cllualatex + bin/i386-linux/cluttex + bin/i386-linux/clxelatex + +name cluttex.i386-netbsd +category Package +revision 48871 +shortdesc i386-netbsd files of cluttex +containersize 388 +containerchecksum e5efac55cfc6f4dcc51b37d1912d0776a1e1f5e7e2b9d94b4f7d5719577f78566cc288402e91551978d122a032879e2abc1a702d254af70fda14e04fe3f66dae +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/cllualatex + bin/i386-netbsd/cluttex + bin/i386-netbsd/clxelatex + +name cluttex.i386-solaris +category Package +revision 48871 +shortdesc i386-solaris files of cluttex +containersize 388 +containerchecksum 3e31342fadb8b4d9dae7ad4d96fdc96f5a212f5c4dcdbb9fa8bf4b92677fde85fecbdd6632e87391f5ea956ec038ea1ae652dcb0f61bf3e6bcf28076b2f4a7b7 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/cllualatex + bin/i386-solaris/cluttex + bin/i386-solaris/clxelatex + +name cluttex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of cluttex +containersize 388 +containerchecksum 8d0189fda9e50b2eedb500aed01b893e1f2c38a1a4faa1050d5d2d79a147c843647712ce3b9edebda64e86668b29f9ac21527eb16c1e120ad0dbd0a3605c9931 +binfiles arch=universal-darwin size=3 + bin/universal-darwin/cllualatex + bin/universal-darwin/cluttex + bin/universal-darwin/clxelatex + +name cluttex.win32 +category Package +revision 48876 +shortdesc win32 files of cluttex +containersize 716 +containerchecksum 765a92a84529d9ae5c0dd3fc27ae4314dac490f61c1073c7b6848876395aef860c5e97c22b6bd8cd9c43aeccb5201f967886cc0544c72f76d2c5b5cc9130de77 +binfiles arch=win32 size=3 + bin/win32/cllualatex.exe + bin/win32/cluttex.exe + bin/win32/clxelatex.exe + +name cluttex.x86_64-cygwin +category Package +revision 48871 +shortdesc x86_64-cygwin files of cluttex +containersize 388 +containerchecksum 9df9fa61fb0cc2520ebd7899e202f806af91ef0b0489f1c3af38f09f48dcf218ddb574e524744879b330242667a064c178e057adaad21948414fdf3de6fa1cb6 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/cllualatex + bin/x86_64-cygwin/cluttex + bin/x86_64-cygwin/clxelatex + +name cluttex.x86_64-darwinlegacy +category Package +revision 48871 +shortdesc x86_64-darwinlegacy files of cluttex +containersize 396 +containerchecksum 2c94c28a38f4be4cdb828dd200c7be2597676fb2be94441b9da2d2dfa4ddf473f3759f59bdf24ad47bd60dfec71ce64eb4cb7832d3687fc2634a6e17b1b9becd +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/cllualatex + bin/x86_64-darwinlegacy/cluttex + bin/x86_64-darwinlegacy/clxelatex + +name cluttex.x86_64-linux +category Package +revision 48871 +shortdesc x86_64-linux files of cluttex +containersize 388 +containerchecksum 20139142ae86d9562bff4af2c3dcecc2dfc4dec8d228a6872502634ac4e1f931d28e37ba0035e169ec4fa838ab34a62efcc291c1e0e7ab2b3ffb49b0797979af +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/cllualatex + bin/x86_64-linux/cluttex + bin/x86_64-linux/clxelatex + +name cluttex.x86_64-linuxmusl +category Package +revision 48871 +shortdesc x86_64-linuxmusl files of cluttex +containersize 392 +containerchecksum 43b7e0c8ce544830fb3f960a4a0d80e2514c99b3c4e7736b22d56cd68f989c86a85507d46c75189f78db72c83fc7dbecab3ed7fbcfcbe28d8f40667d7946cd08 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/cllualatex + bin/x86_64-linuxmusl/cluttex + bin/x86_64-linuxmusl/clxelatex + +name cluttex.x86_64-solaris +category Package +revision 48871 +shortdesc x86_64-solaris files of cluttex +containersize 388 +containerchecksum 87ed84aa5552f7915e5eb721b41664f0d032890edbe3739961a8f2f20e2a233dfb4d765edf60ba033fbb5a9144357d7536bd9c9e7190f0b4b516868482c71290 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/cllualatex + bin/x86_64-solaris/cluttex + bin/x86_64-solaris/clxelatex + +name cm +category Package +revision 57963 +shortdesc Computer Modern fonts +relocated 1 +longdesc Knuth's final iteration of his re-interpretation of a c.19 +longdesc Modern-style font from Monotype. The family is comprehensive, +longdesc offering both sans and roman styles, and a monospaced font, +longdesc together with mathematics fonts closely integrated with the +longdesc mathematical facilities of TeX itself. The base fonts are +longdesc distributed as Metafont source, but autotraced PostScript Type +longdesc 1 versions are available (one version in the AMS fonts +longdesc distribution, and also the BaKoMa distribution). The Computer +longdesc Modern fonts have inspired many later families, notably the +longdesc European Computer Modern and the Latin Modern families. +execute addMixedMap cmtext-bsr-interpolated.map +containersize 238064 +containerchecksum e65b2096ca183ca21d8ff987489223bc98750fcbaf4f9f9a9996f5153a76c5587d1ad77693234d02f80753b8b8cb86fd957514f82065bd7aab9eb64bad9003a3 +doccontainersize 2500 +doccontainerchecksum 39ccdee82d86f01e11aaeb53844639b4f976677c0baef7675817fafe4263e8e44cfec144f6fce265c9c80d9a9373a2f46ac8a55b7f20923c680eaddd0222a045 +docfiles size=2 + RELOC/doc/fonts/cm/README + RELOC/doc/fonts/cm/README-cmps.txt +runfiles size=340 + RELOC/fonts/map/dvips/cm/cmtext-bsr-interpolated.map + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmbx10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmex10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmmi10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmmi7.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr12.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr17.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr6.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr7.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr8.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsl10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsy10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsy7.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmti10.pk + RELOC/fonts/source/public/cm/accent.mf + RELOC/fonts/source/public/cm/bigacc.mf + RELOC/fonts/source/public/cm/bigdel.mf + RELOC/fonts/source/public/cm/bigop.mf + RELOC/fonts/source/public/cm/calu.mf + RELOC/fonts/source/public/cm/cmb10.mf + RELOC/fonts/source/public/cm/cmbase.mf + RELOC/fonts/source/public/cm/cmbsy10.mf + RELOC/fonts/source/public/cm/cmbx10.mf + RELOC/fonts/source/public/cm/cmbx12.mf + RELOC/fonts/source/public/cm/cmbx5.mf + RELOC/fonts/source/public/cm/cmbx6.mf + RELOC/fonts/source/public/cm/cmbx7.mf + RELOC/fonts/source/public/cm/cmbx8.mf + RELOC/fonts/source/public/cm/cmbx9.mf + RELOC/fonts/source/public/cm/cmbxsl10.mf + RELOC/fonts/source/public/cm/cmbxti10.mf + RELOC/fonts/source/public/cm/cmcsc10.mf + RELOC/fonts/source/public/cm/cmdunh10.mf + RELOC/fonts/source/public/cm/cmex10.mf + RELOC/fonts/source/public/cm/cmff10.mf + RELOC/fonts/source/public/cm/cmfi10.mf + RELOC/fonts/source/public/cm/cmfib8.mf + RELOC/fonts/source/public/cm/cminch.mf + RELOC/fonts/source/public/cm/cmitt10.mf + RELOC/fonts/source/public/cm/cmmi10.mf + RELOC/fonts/source/public/cm/cmmi12.mf + RELOC/fonts/source/public/cm/cmmi5.mf + RELOC/fonts/source/public/cm/cmmi6.mf + RELOC/fonts/source/public/cm/cmmi7.mf + RELOC/fonts/source/public/cm/cmmi8.mf + RELOC/fonts/source/public/cm/cmmi9.mf + RELOC/fonts/source/public/cm/cmmib10.mf + RELOC/fonts/source/public/cm/cmplain.mf + RELOC/fonts/source/public/cm/cmr10.mf + RELOC/fonts/source/public/cm/cmr12.mf + RELOC/fonts/source/public/cm/cmr17.mf + RELOC/fonts/source/public/cm/cmr5.mf + RELOC/fonts/source/public/cm/cmr6.mf + RELOC/fonts/source/public/cm/cmr7.mf + RELOC/fonts/source/public/cm/cmr8.mf + RELOC/fonts/source/public/cm/cmr9.mf + RELOC/fonts/source/public/cm/cmsl10.mf + RELOC/fonts/source/public/cm/cmsl12.mf + RELOC/fonts/source/public/cm/cmsl8.mf + RELOC/fonts/source/public/cm/cmsl9.mf + RELOC/fonts/source/public/cm/cmsltt10.mf + RELOC/fonts/source/public/cm/cmss10.mf + RELOC/fonts/source/public/cm/cmss12.mf + RELOC/fonts/source/public/cm/cmss17.mf + RELOC/fonts/source/public/cm/cmss8.mf + RELOC/fonts/source/public/cm/cmss9.mf + RELOC/fonts/source/public/cm/cmssbx10.mf + RELOC/fonts/source/public/cm/cmssdc10.mf + RELOC/fonts/source/public/cm/cmssi10.mf + RELOC/fonts/source/public/cm/cmssi12.mf + RELOC/fonts/source/public/cm/cmssi17.mf + RELOC/fonts/source/public/cm/cmssi8.mf + RELOC/fonts/source/public/cm/cmssi9.mf + RELOC/fonts/source/public/cm/cmssq8.mf + RELOC/fonts/source/public/cm/cmssqi8.mf + RELOC/fonts/source/public/cm/cmsy10.mf + RELOC/fonts/source/public/cm/cmsy5.mf + RELOC/fonts/source/public/cm/cmsy6.mf + RELOC/fonts/source/public/cm/cmsy7.mf + RELOC/fonts/source/public/cm/cmsy8.mf + RELOC/fonts/source/public/cm/cmsy9.mf + RELOC/fonts/source/public/cm/cmtcsc10.mf + RELOC/fonts/source/public/cm/cmtex10.mf + RELOC/fonts/source/public/cm/cmtex8.mf + RELOC/fonts/source/public/cm/cmtex9.mf + RELOC/fonts/source/public/cm/cmti10.mf + RELOC/fonts/source/public/cm/cmti12.mf + RELOC/fonts/source/public/cm/cmti7.mf + RELOC/fonts/source/public/cm/cmti8.mf + RELOC/fonts/source/public/cm/cmti9.mf + RELOC/fonts/source/public/cm/cmtt10.mf + RELOC/fonts/source/public/cm/cmtt12.mf + RELOC/fonts/source/public/cm/cmtt8.mf + RELOC/fonts/source/public/cm/cmtt9.mf + RELOC/fonts/source/public/cm/cmu10.mf + RELOC/fonts/source/public/cm/cmvtt10.mf + RELOC/fonts/source/public/cm/comlig.mf + RELOC/fonts/source/public/cm/csc.mf + RELOC/fonts/source/public/cm/cscspu.mf + RELOC/fonts/source/public/cm/greekl.mf + RELOC/fonts/source/public/cm/greeku.mf + RELOC/fonts/source/public/cm/itald.mf + RELOC/fonts/source/public/cm/italig.mf + RELOC/fonts/source/public/cm/itall.mf + RELOC/fonts/source/public/cm/italms.mf + RELOC/fonts/source/public/cm/italp.mf + RELOC/fonts/source/public/cm/italsp.mf + RELOC/fonts/source/public/cm/mathex.mf + RELOC/fonts/source/public/cm/mathit.mf + RELOC/fonts/source/public/cm/mathsy.mf + RELOC/fonts/source/public/cm/olddig.mf + RELOC/fonts/source/public/cm/punct.mf + RELOC/fonts/source/public/cm/roman.mf + RELOC/fonts/source/public/cm/romand.mf + RELOC/fonts/source/public/cm/romanl.mf + RELOC/fonts/source/public/cm/romanp.mf + RELOC/fonts/source/public/cm/romanu.mf + RELOC/fonts/source/public/cm/romlig.mf + RELOC/fonts/source/public/cm/romms.mf + RELOC/fonts/source/public/cm/romspl.mf + RELOC/fonts/source/public/cm/romspu.mf + RELOC/fonts/source/public/cm/romsub.mf + RELOC/fonts/source/public/cm/sym.mf + RELOC/fonts/source/public/cm/symbol.mf + RELOC/fonts/source/public/cm/texset.mf + RELOC/fonts/source/public/cm/textit.mf + RELOC/fonts/source/public/cm/title.mf + RELOC/fonts/source/public/cm/tset.mf + RELOC/fonts/source/public/cm/tsetsl.mf + RELOC/fonts/source/public/cm/white_setup.mf + RELOC/fonts/tfm/public/cm/cmb10.tfm + RELOC/fonts/tfm/public/cm/cmbsy10.tfm + RELOC/fonts/tfm/public/cm/cmbx10.tfm + RELOC/fonts/tfm/public/cm/cmbx12.tfm + RELOC/fonts/tfm/public/cm/cmbx5.tfm + RELOC/fonts/tfm/public/cm/cmbx6.tfm + RELOC/fonts/tfm/public/cm/cmbx7.tfm + RELOC/fonts/tfm/public/cm/cmbx8.tfm + RELOC/fonts/tfm/public/cm/cmbx9.tfm + RELOC/fonts/tfm/public/cm/cmbxsl10.tfm + RELOC/fonts/tfm/public/cm/cmbxti10.tfm + RELOC/fonts/tfm/public/cm/cmcsc10.tfm + RELOC/fonts/tfm/public/cm/cmdunh10.tfm + RELOC/fonts/tfm/public/cm/cmex10.tfm + RELOC/fonts/tfm/public/cm/cmff10.tfm + RELOC/fonts/tfm/public/cm/cmfi10.tfm + RELOC/fonts/tfm/public/cm/cmfib8.tfm + RELOC/fonts/tfm/public/cm/cminch.tfm + RELOC/fonts/tfm/public/cm/cmitt10.tfm + RELOC/fonts/tfm/public/cm/cmmi10.tfm + RELOC/fonts/tfm/public/cm/cmmi12.tfm + RELOC/fonts/tfm/public/cm/cmmi5.tfm + RELOC/fonts/tfm/public/cm/cmmi6.tfm + RELOC/fonts/tfm/public/cm/cmmi7.tfm + RELOC/fonts/tfm/public/cm/cmmi8.tfm + RELOC/fonts/tfm/public/cm/cmmi9.tfm + RELOC/fonts/tfm/public/cm/cmmib10.tfm + RELOC/fonts/tfm/public/cm/cmr10.tfm + RELOC/fonts/tfm/public/cm/cmr12.tfm + RELOC/fonts/tfm/public/cm/cmr17.tfm + RELOC/fonts/tfm/public/cm/cmr5.tfm + RELOC/fonts/tfm/public/cm/cmr6.tfm + RELOC/fonts/tfm/public/cm/cmr7.tfm + RELOC/fonts/tfm/public/cm/cmr8.tfm + RELOC/fonts/tfm/public/cm/cmr9.tfm + RELOC/fonts/tfm/public/cm/cmsl10.tfm + RELOC/fonts/tfm/public/cm/cmsl12.tfm + RELOC/fonts/tfm/public/cm/cmsl8.tfm + RELOC/fonts/tfm/public/cm/cmsl9.tfm + RELOC/fonts/tfm/public/cm/cmsltt10.tfm + RELOC/fonts/tfm/public/cm/cmss10.tfm + RELOC/fonts/tfm/public/cm/cmss12.tfm + RELOC/fonts/tfm/public/cm/cmss17.tfm + RELOC/fonts/tfm/public/cm/cmss8.tfm + RELOC/fonts/tfm/public/cm/cmss9.tfm + RELOC/fonts/tfm/public/cm/cmssbx10.tfm + RELOC/fonts/tfm/public/cm/cmssdc10.tfm + RELOC/fonts/tfm/public/cm/cmssi10.tfm + RELOC/fonts/tfm/public/cm/cmssi12.tfm + RELOC/fonts/tfm/public/cm/cmssi17.tfm + RELOC/fonts/tfm/public/cm/cmssi8.tfm + RELOC/fonts/tfm/public/cm/cmssi9.tfm + RELOC/fonts/tfm/public/cm/cmssq8.tfm + RELOC/fonts/tfm/public/cm/cmssqi8.tfm + RELOC/fonts/tfm/public/cm/cmsy10.tfm + RELOC/fonts/tfm/public/cm/cmsy5.tfm + RELOC/fonts/tfm/public/cm/cmsy6.tfm + RELOC/fonts/tfm/public/cm/cmsy7.tfm + RELOC/fonts/tfm/public/cm/cmsy8.tfm + RELOC/fonts/tfm/public/cm/cmsy9.tfm + RELOC/fonts/tfm/public/cm/cmtcsc10.tfm + RELOC/fonts/tfm/public/cm/cmtex10.tfm + RELOC/fonts/tfm/public/cm/cmtex8.tfm + RELOC/fonts/tfm/public/cm/cmtex9.tfm + RELOC/fonts/tfm/public/cm/cmti10.tfm + RELOC/fonts/tfm/public/cm/cmti12.tfm + RELOC/fonts/tfm/public/cm/cmti7.tfm + RELOC/fonts/tfm/public/cm/cmti8.tfm + RELOC/fonts/tfm/public/cm/cmti9.tfm + RELOC/fonts/tfm/public/cm/cmtt10.tfm + RELOC/fonts/tfm/public/cm/cmtt12.tfm + RELOC/fonts/tfm/public/cm/cmtt8.tfm + RELOC/fonts/tfm/public/cm/cmtt9.tfm + RELOC/fonts/tfm/public/cm/cmu10.tfm + RELOC/fonts/tfm/public/cm/cmvtt10.tfm +catalogue-ctan /fonts/cm +catalogue-license knuth +catalogue-topics font font-mf font-proportional font-mono font-cm + +name cm-lgc +category Package +revision 28250 +shortdesc Type 1 CM-based fonts for Latin, Greek and Cyrillic +relocated 1 +longdesc The fonts are converted from Metafont sources of the Computer +longdesc Modern font families, using textrace. Supported encodings are: +longdesc T1 (Latin), T2A (Cyrillic), LGR (Greek) and TS1. The package +longdesc also includes Unicode virtual fonts for use with Omega. The +longdesc font set is not a replacement for any of the other Computer +longdesc Modern-based font sets (for example, cm-super for Latin and +longdesc Cyrillic, or cbgreek for Greek), since it is available at a +longdesc single size only; it offers a compact set for 'general' +longdesc working. The fonts themselves are encoded to external +longdesc standards, and virtual fonts are provided for use with TeX. +execute addMap cm-lgc.map +containersize 4867236 +containerchecksum 5fcf591d132314d8ce160e3070036f6fba56962ed40d8fee7b58b0e8219a8124bcf380b1be4e943209ba230f05cfcd374c96e3e799695a018356d12be3215760 +doccontainersize 89820 +doccontainerchecksum eda2082e865dec858a010b757a2d60e0be9526d2e5f2c276d1c5e8d386a71f4d7631d1af8dee009f9d61e0682904697bfdc89222863499c8e1aca2b11d0f3ed9 +docfiles size=31 + RELOC/doc/fonts/cm-lgc/COPYING + RELOC/doc/fonts/cm-lgc/HISTORY + RELOC/doc/fonts/cm-lgc/INSTALL details="Installation instructions" + RELOC/doc/fonts/cm-lgc/README details="Bundle Readme" + RELOC/doc/fonts/cm-lgc/scripts.tar.gz +runfiles size=5154 + RELOC/fonts/afm/public/cm-lgc/fcmb6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmb6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmb8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbc6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmbc6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmbc8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbcce.afm + RELOC/fonts/afm/public/cm-lgc/fcmbce.afm + RELOC/fonts/afm/public/cm-lgc/fcmbcpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmbi6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmbi6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmbi8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbice.afm + RELOC/fonts/afm/public/cm-lgc/fcmbij6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmbij6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmbij8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbijce.afm + RELOC/fonts/afm/public/cm-lgc/fcmbijpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmbipg.afm + RELOC/fonts/afm/public/cm-lgc/fcmbpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmr6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmr6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmr8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrc6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmrc6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmrc8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrcce.afm + RELOC/fonts/afm/public/cm-lgc/fcmrce.afm + RELOC/fonts/afm/public/cm-lgc/fcmrcpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmri6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmri6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmri8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrice.afm + RELOC/fonts/afm/public/cm-lgc/fcmrij6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmrij6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmrij8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrijce.afm + RELOC/fonts/afm/public/cm-lgc/fcmrijpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmripg.afm + RELOC/fonts/afm/public/cm-lgc/fcmrpg.afm + RELOC/fonts/afm/public/cm-lgc/fcsb6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsb6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsb8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsbce.afm + RELOC/fonts/afm/public/cm-lgc/fcsbo6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsbo6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsbo8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsboce.afm + RELOC/fonts/afm/public/cm-lgc/fcsbopg.afm + RELOC/fonts/afm/public/cm-lgc/fcsbpg.afm + RELOC/fonts/afm/public/cm-lgc/fcsr6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsr6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsr8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsrce.afm + RELOC/fonts/afm/public/cm-lgc/fcsro6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsro6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsro8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsroce.afm + RELOC/fonts/afm/public/cm-lgc/fcsropg.afm + RELOC/fonts/afm/public/cm-lgc/fcsrpg.afm + RELOC/fonts/afm/public/cm-lgc/fctr6y.afm + RELOC/fonts/afm/public/cm-lgc/fctr6z.afm + RELOC/fonts/afm/public/cm-lgc/fctr8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrc6y.afm + RELOC/fonts/afm/public/cm-lgc/fctrc6z.afm + RELOC/fonts/afm/public/cm-lgc/fctrc8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrcce.afm + RELOC/fonts/afm/public/cm-lgc/fctrce.afm + RELOC/fonts/afm/public/cm-lgc/fctrcpg.afm + RELOC/fonts/afm/public/cm-lgc/fctri6y.afm + RELOC/fonts/afm/public/cm-lgc/fctri6z.afm + RELOC/fonts/afm/public/cm-lgc/fctri8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrice.afm + RELOC/fonts/afm/public/cm-lgc/fctrij6y.afm + RELOC/fonts/afm/public/cm-lgc/fctrij6z.afm + RELOC/fonts/afm/public/cm-lgc/fctrij8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrijce.afm + RELOC/fonts/afm/public/cm-lgc/fctrijpg.afm + RELOC/fonts/afm/public/cm-lgc/fctripg.afm + RELOC/fonts/afm/public/cm-lgc/fctrpg.afm + RELOC/fonts/enc/dvips/cm-lgc/8r-mod.enc + RELOC/fonts/map/dvips/cm-lgc/cm-lgc.map + RELOC/fonts/ofm/public/cm-lgc/fcmbcut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbiut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbuut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmrcut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmriut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmrout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmrut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmruut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsbout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsbut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsrout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsrut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctrcut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctriut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctrout.ofm + RELOC/fonts/ofm/public/cm-lgc/fctrut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctruut.ofm + RELOC/fonts/ovf/public/cm-lgc/fcmbcut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbiut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbuut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmrcut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmriut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmrout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmrut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmruut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsbout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsbut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsrout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsrut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctrcut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctriut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctrout.ovf + RELOC/fonts/ovf/public/cm-lgc/fctrut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctruut.ovf + RELOC/fonts/tfm/public/cm-lgc/fcmb6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbcce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbcgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbcpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbice.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbigr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbij8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbij8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbipg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmboc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmboce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbopg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbuce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbugr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbuj8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbupg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrcce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrcgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrcpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrice.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrigr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrij8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrij8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmripg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmroc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmroce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmropg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmruce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrugr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmruj8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrupg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsboce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbopg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsroce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsropg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrcce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrcgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrcpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrice.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrigr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrij8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrij8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctripg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctroc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctroce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctropg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctruce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrugr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctruj8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrupg.tfm + RELOC/fonts/type1/public/cm-lgc/fcmb6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmb6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmb6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmb6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmb8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmb8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbc6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmbc6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbc6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmbc6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbc8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmbc8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbcce.inf + RELOC/fonts/type1/public/cm-lgc/fcmbcce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbce.inf + RELOC/fonts/type1/public/cm-lgc/fcmbce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbcpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbcpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbi6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmbi6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbi6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmbi6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbi8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmbi8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbice.inf + RELOC/fonts/type1/public/cm-lgc/fcmbice.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbij6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmbij6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbij6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmbij6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbij8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmbij8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbijce.inf + RELOC/fonts/type1/public/cm-lgc/fcmbijce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbijpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbijpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbipg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbipg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmr6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmr6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmr6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmr6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmr8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmr8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrc6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmrc6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrc6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmrc6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrc8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmrc8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrcce.inf + RELOC/fonts/type1/public/cm-lgc/fcmrcce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrce.inf + RELOC/fonts/type1/public/cm-lgc/fcmrce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrcpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmrcpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmri6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmri6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmri6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmri6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmri8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmri8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrice.inf + RELOC/fonts/type1/public/cm-lgc/fcmrice.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrij6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmrij6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrij6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmrij6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrij8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmrij8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrijce.inf + RELOC/fonts/type1/public/cm-lgc/fcmrijce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrijpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmrijpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmripg.inf + RELOC/fonts/type1/public/cm-lgc/fcmripg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmrpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsb6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsb6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsb6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsb6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsb8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsb8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbce.inf + RELOC/fonts/type1/public/cm-lgc/fcsbce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbo6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsbo6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbo6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsbo6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbo8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsbo8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsboce.inf + RELOC/fonts/type1/public/cm-lgc/fcsboce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbopg.inf + RELOC/fonts/type1/public/cm-lgc/fcsbopg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbpg.inf + RELOC/fonts/type1/public/cm-lgc/fcsbpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsr6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsr6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsr6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsr6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsr8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsr8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsrce.inf + RELOC/fonts/type1/public/cm-lgc/fcsrce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsro6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsro6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsro6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsro6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsro8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsro8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsroce.inf + RELOC/fonts/type1/public/cm-lgc/fcsroce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsropg.inf + RELOC/fonts/type1/public/cm-lgc/fcsropg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsrpg.inf + RELOC/fonts/type1/public/cm-lgc/fcsrpg.pfb + RELOC/fonts/type1/public/cm-lgc/fctr6y.inf + RELOC/fonts/type1/public/cm-lgc/fctr6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctr6z.inf + RELOC/fonts/type1/public/cm-lgc/fctr6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctr8a.inf + RELOC/fonts/type1/public/cm-lgc/fctr8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrc6y.inf + RELOC/fonts/type1/public/cm-lgc/fctrc6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctrc6z.inf + RELOC/fonts/type1/public/cm-lgc/fctrc6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctrc8a.inf + RELOC/fonts/type1/public/cm-lgc/fctrc8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrcce.inf + RELOC/fonts/type1/public/cm-lgc/fctrcce.pfb + RELOC/fonts/type1/public/cm-lgc/fctrce.inf + RELOC/fonts/type1/public/cm-lgc/fctrce.pfb + RELOC/fonts/type1/public/cm-lgc/fctrcpg.inf + RELOC/fonts/type1/public/cm-lgc/fctrcpg.pfb + RELOC/fonts/type1/public/cm-lgc/fctri6y.inf + RELOC/fonts/type1/public/cm-lgc/fctri6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctri6z.inf + RELOC/fonts/type1/public/cm-lgc/fctri6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctri8a.inf + RELOC/fonts/type1/public/cm-lgc/fctri8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrice.inf + RELOC/fonts/type1/public/cm-lgc/fctrice.pfb + RELOC/fonts/type1/public/cm-lgc/fctrij6y.inf + RELOC/fonts/type1/public/cm-lgc/fctrij6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctrij6z.inf + RELOC/fonts/type1/public/cm-lgc/fctrij6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctrij8a.inf + RELOC/fonts/type1/public/cm-lgc/fctrij8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrijce.inf + RELOC/fonts/type1/public/cm-lgc/fctrijce.pfb + RELOC/fonts/type1/public/cm-lgc/fctrijpg.inf + RELOC/fonts/type1/public/cm-lgc/fctrijpg.pfb + RELOC/fonts/type1/public/cm-lgc/fctripg.inf + RELOC/fonts/type1/public/cm-lgc/fctripg.pfb + RELOC/fonts/type1/public/cm-lgc/fctrpg.inf + RELOC/fonts/type1/public/cm-lgc/fctrpg.pfb + RELOC/fonts/vf/public/cm-lgc/fcmb6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmb7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmb7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmb8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmb8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbcgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbigr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbogr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbugr.vf + RELOC/fonts/vf/public/cm-lgc/fcmr6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmr7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmr7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmr8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmr8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrcgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmrgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmri6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmri7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmri7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmri8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmri8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrigr.vf + RELOC/fonts/vf/public/cm-lgc/fcmro6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmro7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmro7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmro8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmro8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrogr.vf + RELOC/fonts/vf/public/cm-lgc/fcmru6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmru7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmru7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmru8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmru8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrugr.vf + RELOC/fonts/vf/public/cm-lgc/fcsb6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsb7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsb7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsb8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsb8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsbgr.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsbogr.vf + RELOC/fonts/vf/public/cm-lgc/fcsr6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsr7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsr7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsr8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsr8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsrgr.vf + RELOC/fonts/vf/public/cm-lgc/fcsro6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsro7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsro7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsro8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsro8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsrogr.vf + RELOC/fonts/vf/public/cm-lgc/fctr6a.vf + RELOC/fonts/vf/public/cm-lgc/fctr7k.vf + RELOC/fonts/vf/public/cm-lgc/fctr7t.vf + RELOC/fonts/vf/public/cm-lgc/fctr8c.vf + RELOC/fonts/vf/public/cm-lgc/fctr8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrc6a.vf + RELOC/fonts/vf/public/cm-lgc/fctrc7k.vf + RELOC/fonts/vf/public/cm-lgc/fctrc7t.vf + RELOC/fonts/vf/public/cm-lgc/fctrc8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrcgr.vf + RELOC/fonts/vf/public/cm-lgc/fctrgr.vf + RELOC/fonts/vf/public/cm-lgc/fctri6a.vf + RELOC/fonts/vf/public/cm-lgc/fctri7k.vf + RELOC/fonts/vf/public/cm-lgc/fctri7t.vf + RELOC/fonts/vf/public/cm-lgc/fctri8c.vf + RELOC/fonts/vf/public/cm-lgc/fctri8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrigr.vf + RELOC/fonts/vf/public/cm-lgc/fctro6a.vf + RELOC/fonts/vf/public/cm-lgc/fctro7k.vf + RELOC/fonts/vf/public/cm-lgc/fctro7t.vf + RELOC/fonts/vf/public/cm-lgc/fctro8c.vf + RELOC/fonts/vf/public/cm-lgc/fctro8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrogr.vf + RELOC/fonts/vf/public/cm-lgc/fctru6a.vf + RELOC/fonts/vf/public/cm-lgc/fctru7k.vf + RELOC/fonts/vf/public/cm-lgc/fctru7t.vf + RELOC/fonts/vf/public/cm-lgc/fctru8c.vf + RELOC/fonts/vf/public/cm-lgc/fctru8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrugr.vf + RELOC/tex/latex/cm-lgc/antcmlgc.sty + RELOC/tex/latex/cm-lgc/cmlgc.sty + RELOC/tex/latex/cm-lgc/lgrfcm.fd + RELOC/tex/latex/cm-lgc/lgrfcs.fd + RELOC/tex/latex/cm-lgc/lgrfct.fd + RELOC/tex/latex/cm-lgc/ot1fcm.fd + RELOC/tex/latex/cm-lgc/ot1fcs.fd + RELOC/tex/latex/cm-lgc/ot1fct.fd + RELOC/tex/latex/cm-lgc/ot2fcm.fd + RELOC/tex/latex/cm-lgc/ot2fcs.fd + RELOC/tex/latex/cm-lgc/ot2fct.fd + RELOC/tex/latex/cm-lgc/t1fcm.fd + RELOC/tex/latex/cm-lgc/t1fcs.fd + RELOC/tex/latex/cm-lgc/t1fct.fd + RELOC/tex/latex/cm-lgc/t2afcm.fd + RELOC/tex/latex/cm-lgc/t2afcs.fd + RELOC/tex/latex/cm-lgc/t2afct.fd + RELOC/tex/latex/cm-lgc/ts1fcm.fd + RELOC/tex/latex/cm-lgc/ts1fcs.fd + RELOC/tex/latex/cm-lgc/ts1fct.fd + RELOC/tex/latex/cm-lgc/ut1fcm.fd + RELOC/tex/latex/cm-lgc/ut1fcs.fd + RELOC/tex/latex/cm-lgc/ut1fct.fd +catalogue-ctan /fonts/ps-type1/cm-lgc +catalogue-license gpl +catalogue-topics font font-serif font-sans font-mono font-greek font-cyrillic font-type1 omega +catalogue-version 0.5 + +name cm-mf-extra-bold +category Package +revision 54512 +shortdesc Extra Metafont files for CM +relocated 1 +longdesc The bundle provides bold versions of cmcsc, cmex, cmtex and +longdesc cmtt fonts (all parts of the standard computer modern font +longdesc distribution), as Metafont base files. +containersize 4896 +containerchecksum 1845d58827ff828d6b60b82e4eda94760cd3c86076982b861e53b4f996a0dfcc9a5926ce58de27891ca3ea115a752cc4abc56b06b112d43194aa8a27c61b86fd +runfiles size=15 + RELOC/fonts/source/public/cm-mf-extra-bold/cmbcsc10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtex10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtt10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtt8.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtt9.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmexb10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmttb10.mf + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbcsc10.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtex10.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtt10.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtt8.tfm + 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-license gpl pd +catalogue-topics font font-mf + +name cm-super +category Package +revision 15878 +shortdesc CM-Super family of fonts +relocated 1 +longdesc The CM-Super family provides Adobe Type 1 fonts that replace +longdesc the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded +longdesc Concrete, T1/TS1-encoded CM bright and LH Cyrillic fonts (thus +longdesc supporting all European languages except Greek), and bringing +longdesc many ameliorations in typesetting quality. The fonts exhibit +longdesc the same metrics as the Metafont-encoded originals. +execute addMixedMap cm-super-t1.map +execute addMixedMap cm-super-t2a.map +execute addMixedMap cm-super-t2b.map +execute addMixedMap cm-super-t2c.map +execute addMixedMap cm-super-ts1.map +execute addMixedMap cm-super-x2.map +containersize 64562404 +containerchecksum 45638ebf4ef2ffb7c4b74669ea089a9f8d3ab4b98e555b3f9b2e9bd9732b48fdba61dc91188e2c8962b8bfa3caaab31c10d1ccd3e0aa9e26197b148e59576f8f +doccontainersize 22564 +doccontainerchecksum 5b524c55dbcfa1db87484d3437156ca9987fcca66e2c2e6d69e562c48ae708e51f089051524f324cbafb72a29e08f90e70c408d7fea7341e9ef0b5d53288b7d3 +docfiles size=17 + RELOC/doc/fonts/cm-super/COPYING + RELOC/doc/fonts/cm-super/ChangeLog + RELOC/doc/fonts/cm-super/FAQ details="Frequently Asked Questions" + RELOC/doc/fonts/cm-super/INSTALL + RELOC/doc/fonts/cm-super/README details="Bundle Readme" + RELOC/doc/fonts/cm-super/TODO + RELOC/doc/fonts/cm-super/cm-super-inf.tar.bz2 +runfiles size=17068 + RELOC/dvips/cm-super/cm-super.GS + RELOC/dvips/cm-super/config.cm-super + RELOC/fonts/afm/public/cm-super/isflb8.afm.gz + RELOC/fonts/afm/public/cm-super/isfli8.afm.gz + RELOC/fonts/afm/public/cm-super/isflo8.afm.gz + RELOC/fonts/afm/public/cm-super/isflq8.afm.gz + RELOC/fonts/afm/public/cm-super/isfltt8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbbx10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbtl10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbto10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfci2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfci2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfci2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfci3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh3583.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0500.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0600.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0700.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0800.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0900.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1000.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1095.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1200.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1440.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1728.afm.gz + RELOC/fonts/afm/public/cm-super/sffb2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfff0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfff2488.afm.gz + RELOC/fonts/afm/public/cm-super/sffi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sffi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0500.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0600.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0700.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0800.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0900.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1000.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1095.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1200.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1440.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1728.afm.gz + RELOC/fonts/afm/public/cm-super/sffs2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfit0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfit0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfit2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfit2488.afm.gz + RELOC/fonts/afm/public/cm-super/sflb8.afm.gz + RELOC/fonts/afm/public/cm-super/sfli8.afm.gz + RELOC/fonts/afm/public/cm-super/sflo8.afm.gz + RELOC/fonts/afm/public/cm-super/sflq8.afm.gz + RELOC/fonts/afm/public/cm-super/sfltt8.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfocc10.afm.gz + RELOC/fonts/afm/public/cm-super/sform10.afm.gz + RELOC/fonts/afm/public/cm-super/sform5.afm.gz + RELOC/fonts/afm/public/cm-super/sform6.afm.gz + RELOC/fonts/afm/public/cm-super/sform7.afm.gz + RELOC/fonts/afm/public/cm-super/sform8.afm.gz + RELOC/fonts/afm/public/cm-super/sform9.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl10.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl5.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl6.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl7.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl8.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl9.afm.gz + RELOC/fonts/afm/public/cm-super/sfoti10.afm.gz + RELOC/fonts/afm/public/cm-super/sfqi8.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfso2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfso2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfso2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfso3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsq8.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfss2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfss2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfss2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfss3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfssdc10.afm.gz + RELOC/fonts/afm/public/cm-super/sfst0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfst0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfst2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfst2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfst2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfst3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx3583.afm.gz + RELOC/fonts/afm/public/cm-super/sftc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sftc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sftc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sftc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sftc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sftc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfti2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfti2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfti2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfti3583.afm.gz + RELOC/fonts/afm/public/cm-super/sftt0800.afm.gz + RELOC/fonts/afm/public/cm-super/sftt0900.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1000.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1095.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1200.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1440.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1728.afm.gz + RELOC/fonts/afm/public/cm-super/sftt2074.afm.gz + RELOC/fonts/afm/public/cm-super/sftt2488.afm.gz + RELOC/fonts/afm/public/cm-super/sftt2986.afm.gz + RELOC/fonts/afm/public/cm-super/sftt3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfui2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfui2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfui2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfui3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc3583.afm.gz + RELOC/fonts/enc/dvips/cm-super/cm-super-t1.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-t2a.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-t2b.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-t2c.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-ts1.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-x2.enc + RELOC/fonts/map/dvips/cm-super/cm-super-t1.map + RELOC/fonts/map/dvips/cm-super/cm-super-t2a.map + RELOC/fonts/map/dvips/cm-super/cm-super-t2b.map + RELOC/fonts/map/dvips/cm-super/cm-super-t2c.map + RELOC/fonts/map/dvips/cm-super/cm-super-ts1.map + RELOC/fonts/map/dvips/cm-super/cm-super-x2.map + RELOC/fonts/map/vtex/cm-super/cm-super-t1.ali + RELOC/fonts/map/vtex/cm-super/cm-super-t2a.ali + RELOC/fonts/map/vtex/cm-super/cm-super-t2b.ali + RELOC/fonts/map/vtex/cm-super/cm-super-t2c.ali + RELOC/fonts/map/vtex/cm-super/cm-super-ts1.ali + RELOC/fonts/map/vtex/cm-super/cm-super-x2.ali + RELOC/fonts/map/vtex/cm-super/cm-super.ali + RELOC/fonts/type1/public/cm-super/isflb8.pfb + RELOC/fonts/type1/public/cm-super/isfli8.pfb + RELOC/fonts/type1/public/cm-super/isflo8.pfb + RELOC/fonts/type1/public/cm-super/isflq8.pfb + RELOC/fonts/type1/public/cm-super/isfltt8.pfb + RELOC/fonts/type1/public/cm-super/sfbbx10.pfb + RELOC/fonts/type1/public/cm-super/sfbi0500.pfb + RELOC/fonts/type1/public/cm-super/sfbi0600.pfb + RELOC/fonts/type1/public/cm-super/sfbi0700.pfb + RELOC/fonts/type1/public/cm-super/sfbi0800.pfb + RELOC/fonts/type1/public/cm-super/sfbi0900.pfb + RELOC/fonts/type1/public/cm-super/sfbi1000.pfb + RELOC/fonts/type1/public/cm-super/sfbi1095.pfb + RELOC/fonts/type1/public/cm-super/sfbi1200.pfb + RELOC/fonts/type1/public/cm-super/sfbi1440.pfb + RELOC/fonts/type1/public/cm-super/sfbi1728.pfb + RELOC/fonts/type1/public/cm-super/sfbi2074.pfb + RELOC/fonts/type1/public/cm-super/sfbi2488.pfb + RELOC/fonts/type1/public/cm-super/sfbi2986.pfb + RELOC/fonts/type1/public/cm-super/sfbi3583.pfb + RELOC/fonts/type1/public/cm-super/sfbl0500.pfb + RELOC/fonts/type1/public/cm-super/sfbl0600.pfb + RELOC/fonts/type1/public/cm-super/sfbl0700.pfb + RELOC/fonts/type1/public/cm-super/sfbl0800.pfb + RELOC/fonts/type1/public/cm-super/sfbl0900.pfb + RELOC/fonts/type1/public/cm-super/sfbl1000.pfb + RELOC/fonts/type1/public/cm-super/sfbl1095.pfb + RELOC/fonts/type1/public/cm-super/sfbl1200.pfb + RELOC/fonts/type1/public/cm-super/sfbl1440.pfb + RELOC/fonts/type1/public/cm-super/sfbl1728.pfb + RELOC/fonts/type1/public/cm-super/sfbl2074.pfb + RELOC/fonts/type1/public/cm-super/sfbl2488.pfb + RELOC/fonts/type1/public/cm-super/sfbl2986.pfb + RELOC/fonts/type1/public/cm-super/sfbl3583.pfb + RELOC/fonts/type1/public/cm-super/sfbm0500.pfb + RELOC/fonts/type1/public/cm-super/sfbm0700.pfb + RELOC/fonts/type1/public/cm-super/sfbm0900.pfb + RELOC/fonts/type1/public/cm-super/sfbm1000.pfb + RELOC/fonts/type1/public/cm-super/sfbm1095.pfb + RELOC/fonts/type1/public/cm-super/sfbm1200.pfb + RELOC/fonts/type1/public/cm-super/sfbm1440.pfb + RELOC/fonts/type1/public/cm-super/sfbm1728.pfb + RELOC/fonts/type1/public/cm-super/sfbm2074.pfb + RELOC/fonts/type1/public/cm-super/sfbm2488.pfb + RELOC/fonts/type1/public/cm-super/sfbm2986.pfb + RELOC/fonts/type1/public/cm-super/sfbm3583.pfb + RELOC/fonts/type1/public/cm-super/sfbmo10.pfb + RELOC/fonts/type1/public/cm-super/sfbmo17.pfb + RELOC/fonts/type1/public/cm-super/sfbmo8.pfb + RELOC/fonts/type1/public/cm-super/sfbmo9.pfb + RELOC/fonts/type1/public/cm-super/sfbmr10.pfb + RELOC/fonts/type1/public/cm-super/sfbmr17.pfb + RELOC/fonts/type1/public/cm-super/sfbmr8.pfb + RELOC/fonts/type1/public/cm-super/sfbmr9.pfb + RELOC/fonts/type1/public/cm-super/sfbso10.pfb + RELOC/fonts/type1/public/cm-super/sfbso17.pfb + RELOC/fonts/type1/public/cm-super/sfbso8.pfb + RELOC/fonts/type1/public/cm-super/sfbso9.pfb + RELOC/fonts/type1/public/cm-super/sfbsr10.pfb + RELOC/fonts/type1/public/cm-super/sfbsr17.pfb + RELOC/fonts/type1/public/cm-super/sfbsr8.pfb + RELOC/fonts/type1/public/cm-super/sfbsr9.pfb + RELOC/fonts/type1/public/cm-super/sfbtl10.pfb + RELOC/fonts/type1/public/cm-super/sfbto10.pfb + RELOC/fonts/type1/public/cm-super/sfbx0500.pfb + RELOC/fonts/type1/public/cm-super/sfbx0600.pfb + RELOC/fonts/type1/public/cm-super/sfbx0700.pfb + RELOC/fonts/type1/public/cm-super/sfbx0800.pfb + RELOC/fonts/type1/public/cm-super/sfbx0900.pfb + RELOC/fonts/type1/public/cm-super/sfbx1000.pfb + RELOC/fonts/type1/public/cm-super/sfbx1095.pfb + RELOC/fonts/type1/public/cm-super/sfbx1200.pfb + RELOC/fonts/type1/public/cm-super/sfbx1440.pfb + RELOC/fonts/type1/public/cm-super/sfbx1728.pfb + RELOC/fonts/type1/public/cm-super/sfbx2074.pfb + RELOC/fonts/type1/public/cm-super/sfbx2488.pfb + RELOC/fonts/type1/public/cm-super/sfbx2986.pfb + RELOC/fonts/type1/public/cm-super/sfbx3583.pfb + RELOC/fonts/type1/public/cm-super/sfcc0500.pfb + RELOC/fonts/type1/public/cm-super/sfcc0600.pfb + RELOC/fonts/type1/public/cm-super/sfcc0700.pfb + RELOC/fonts/type1/public/cm-super/sfcc0800.pfb + RELOC/fonts/type1/public/cm-super/sfcc0900.pfb + RELOC/fonts/type1/public/cm-super/sfcc1000.pfb + RELOC/fonts/type1/public/cm-super/sfcc1095.pfb + RELOC/fonts/type1/public/cm-super/sfcc1200.pfb + RELOC/fonts/type1/public/cm-super/sfcc1440.pfb + RELOC/fonts/type1/public/cm-super/sfcc1728.pfb + RELOC/fonts/type1/public/cm-super/sfcc2074.pfb + RELOC/fonts/type1/public/cm-super/sfcc2488.pfb + RELOC/fonts/type1/public/cm-super/sfcc2986.pfb + RELOC/fonts/type1/public/cm-super/sfcc3583.pfb + RELOC/fonts/type1/public/cm-super/sfci0500.pfb + RELOC/fonts/type1/public/cm-super/sfci0600.pfb + RELOC/fonts/type1/public/cm-super/sfci0700.pfb + RELOC/fonts/type1/public/cm-super/sfci0800.pfb + RELOC/fonts/type1/public/cm-super/sfci0900.pfb + RELOC/fonts/type1/public/cm-super/sfci1000.pfb + RELOC/fonts/type1/public/cm-super/sfci1095.pfb + RELOC/fonts/type1/public/cm-super/sfci1200.pfb + RELOC/fonts/type1/public/cm-super/sfci1440.pfb + RELOC/fonts/type1/public/cm-super/sfci1728.pfb + RELOC/fonts/type1/public/cm-super/sfci2074.pfb + RELOC/fonts/type1/public/cm-super/sfci2488.pfb + RELOC/fonts/type1/public/cm-super/sfci2986.pfb + RELOC/fonts/type1/public/cm-super/sfci3583.pfb + RELOC/fonts/type1/public/cm-super/sfdh0500.pfb + RELOC/fonts/type1/public/cm-super/sfdh0600.pfb + RELOC/fonts/type1/public/cm-super/sfdh0700.pfb + RELOC/fonts/type1/public/cm-super/sfdh0800.pfb + RELOC/fonts/type1/public/cm-super/sfdh0900.pfb + RELOC/fonts/type1/public/cm-super/sfdh1000.pfb + RELOC/fonts/type1/public/cm-super/sfdh1095.pfb + RELOC/fonts/type1/public/cm-super/sfdh1200.pfb + RELOC/fonts/type1/public/cm-super/sfdh1440.pfb + RELOC/fonts/type1/public/cm-super/sfdh1728.pfb + RELOC/fonts/type1/public/cm-super/sfdh2074.pfb + RELOC/fonts/type1/public/cm-super/sfdh2488.pfb + RELOC/fonts/type1/public/cm-super/sfdh2986.pfb + RELOC/fonts/type1/public/cm-super/sfdh3583.pfb + RELOC/fonts/type1/public/cm-super/sffb0500.pfb + RELOC/fonts/type1/public/cm-super/sffb0600.pfb + RELOC/fonts/type1/public/cm-super/sffb0700.pfb + RELOC/fonts/type1/public/cm-super/sffb0800.pfb + RELOC/fonts/type1/public/cm-super/sffb0900.pfb + RELOC/fonts/type1/public/cm-super/sffb1000.pfb + RELOC/fonts/type1/public/cm-super/sffb1095.pfb + RELOC/fonts/type1/public/cm-super/sffb1200.pfb + RELOC/fonts/type1/public/cm-super/sffb1440.pfb + RELOC/fonts/type1/public/cm-super/sffb1728.pfb + RELOC/fonts/type1/public/cm-super/sffb2074.pfb + RELOC/fonts/type1/public/cm-super/sfff0900.pfb + RELOC/fonts/type1/public/cm-super/sfff1000.pfb + RELOC/fonts/type1/public/cm-super/sfff1095.pfb + RELOC/fonts/type1/public/cm-super/sfff1200.pfb + RELOC/fonts/type1/public/cm-super/sfff1440.pfb + RELOC/fonts/type1/public/cm-super/sfff2488.pfb + RELOC/fonts/type1/public/cm-super/sffi0900.pfb + RELOC/fonts/type1/public/cm-super/sffi1000.pfb + RELOC/fonts/type1/public/cm-super/sffi1095.pfb + RELOC/fonts/type1/public/cm-super/sffi1200.pfb + RELOC/fonts/type1/public/cm-super/sffi1440.pfb + RELOC/fonts/type1/public/cm-super/sffi1728.pfb + RELOC/fonts/type1/public/cm-super/sffi2074.pfb + RELOC/fonts/type1/public/cm-super/sffs0500.pfb + RELOC/fonts/type1/public/cm-super/sffs0600.pfb + RELOC/fonts/type1/public/cm-super/sffs0700.pfb + RELOC/fonts/type1/public/cm-super/sffs0800.pfb + RELOC/fonts/type1/public/cm-super/sffs0900.pfb + RELOC/fonts/type1/public/cm-super/sffs1000.pfb + RELOC/fonts/type1/public/cm-super/sffs1095.pfb + RELOC/fonts/type1/public/cm-super/sffs1200.pfb + RELOC/fonts/type1/public/cm-super/sffs1440.pfb + RELOC/fonts/type1/public/cm-super/sffs1728.pfb + RELOC/fonts/type1/public/cm-super/sffs2074.pfb + RELOC/fonts/type1/public/cm-super/sfit0800.pfb + RELOC/fonts/type1/public/cm-super/sfit0900.pfb + RELOC/fonts/type1/public/cm-super/sfit1000.pfb + RELOC/fonts/type1/public/cm-super/sfit1095.pfb + RELOC/fonts/type1/public/cm-super/sfit1200.pfb + RELOC/fonts/type1/public/cm-super/sfit1440.pfb + RELOC/fonts/type1/public/cm-super/sfit1728.pfb + RELOC/fonts/type1/public/cm-super/sfit2074.pfb + RELOC/fonts/type1/public/cm-super/sfit2488.pfb + RELOC/fonts/type1/public/cm-super/sflb8.pfb + RELOC/fonts/type1/public/cm-super/sfli8.pfb + RELOC/fonts/type1/public/cm-super/sflo8.pfb + RELOC/fonts/type1/public/cm-super/sflq8.pfb + RELOC/fonts/type1/public/cm-super/sfltt8.pfb + RELOC/fonts/type1/public/cm-super/sfoc0500.pfb + RELOC/fonts/type1/public/cm-super/sfoc0600.pfb + RELOC/fonts/type1/public/cm-super/sfoc0700.pfb + RELOC/fonts/type1/public/cm-super/sfoc0800.pfb + RELOC/fonts/type1/public/cm-super/sfoc0900.pfb + RELOC/fonts/type1/public/cm-super/sfoc1000.pfb + RELOC/fonts/type1/public/cm-super/sfoc1095.pfb + RELOC/fonts/type1/public/cm-super/sfoc1200.pfb + RELOC/fonts/type1/public/cm-super/sfoc1440.pfb + RELOC/fonts/type1/public/cm-super/sfoc1728.pfb + RELOC/fonts/type1/public/cm-super/sfoc2074.pfb + RELOC/fonts/type1/public/cm-super/sfoc2488.pfb + RELOC/fonts/type1/public/cm-super/sfoc2986.pfb + RELOC/fonts/type1/public/cm-super/sfoc3583.pfb + RELOC/fonts/type1/public/cm-super/sfocc10.pfb + RELOC/fonts/type1/public/cm-super/sform10.pfb + RELOC/fonts/type1/public/cm-super/sform5.pfb + RELOC/fonts/type1/public/cm-super/sform6.pfb + RELOC/fonts/type1/public/cm-super/sform7.pfb + RELOC/fonts/type1/public/cm-super/sform8.pfb + RELOC/fonts/type1/public/cm-super/sform9.pfb + RELOC/fonts/type1/public/cm-super/sfosl10.pfb + RELOC/fonts/type1/public/cm-super/sfosl5.pfb + RELOC/fonts/type1/public/cm-super/sfosl6.pfb + RELOC/fonts/type1/public/cm-super/sfosl7.pfb + RELOC/fonts/type1/public/cm-super/sfosl8.pfb + RELOC/fonts/type1/public/cm-super/sfosl9.pfb + RELOC/fonts/type1/public/cm-super/sfoti10.pfb + RELOC/fonts/type1/public/cm-super/sfqi8.pfb + RELOC/fonts/type1/public/cm-super/sfrb0500.pfb + RELOC/fonts/type1/public/cm-super/sfrb0600.pfb + RELOC/fonts/type1/public/cm-super/sfrb0700.pfb + RELOC/fonts/type1/public/cm-super/sfrb0800.pfb + RELOC/fonts/type1/public/cm-super/sfrb0900.pfb + RELOC/fonts/type1/public/cm-super/sfrb1000.pfb + RELOC/fonts/type1/public/cm-super/sfrb1095.pfb + RELOC/fonts/type1/public/cm-super/sfrb1200.pfb + RELOC/fonts/type1/public/cm-super/sfrb1440.pfb + RELOC/fonts/type1/public/cm-super/sfrb1728.pfb + RELOC/fonts/type1/public/cm-super/sfrb2074.pfb + RELOC/fonts/type1/public/cm-super/sfrb2488.pfb + RELOC/fonts/type1/public/cm-super/sfrb2986.pfb + RELOC/fonts/type1/public/cm-super/sfrb3583.pfb + RELOC/fonts/type1/public/cm-super/sfrm0500.pfb + RELOC/fonts/type1/public/cm-super/sfrm0600.pfb + RELOC/fonts/type1/public/cm-super/sfrm0700.pfb + RELOC/fonts/type1/public/cm-super/sfrm0800.pfb + RELOC/fonts/type1/public/cm-super/sfrm0900.pfb + RELOC/fonts/type1/public/cm-super/sfrm1000.pfb + RELOC/fonts/type1/public/cm-super/sfrm1095.pfb + RELOC/fonts/type1/public/cm-super/sfrm1200.pfb + RELOC/fonts/type1/public/cm-super/sfrm1440.pfb + RELOC/fonts/type1/public/cm-super/sfrm1728.pfb + RELOC/fonts/type1/public/cm-super/sfrm2074.pfb + RELOC/fonts/type1/public/cm-super/sfrm2488.pfb + RELOC/fonts/type1/public/cm-super/sfrm2986.pfb + RELOC/fonts/type1/public/cm-super/sfrm3583.pfb + RELOC/fonts/type1/public/cm-super/sfsc0500.pfb + RELOC/fonts/type1/public/cm-super/sfsc0600.pfb + RELOC/fonts/type1/public/cm-super/sfsc0700.pfb + RELOC/fonts/type1/public/cm-super/sfsc0800.pfb + RELOC/fonts/type1/public/cm-super/sfsc0900.pfb + RELOC/fonts/type1/public/cm-super/sfsc1000.pfb + RELOC/fonts/type1/public/cm-super/sfsc1095.pfb + RELOC/fonts/type1/public/cm-super/sfsc1200.pfb + RELOC/fonts/type1/public/cm-super/sfsc1440.pfb + RELOC/fonts/type1/public/cm-super/sfsc1728.pfb + RELOC/fonts/type1/public/cm-super/sfsc2074.pfb + RELOC/fonts/type1/public/cm-super/sfsc2488.pfb + RELOC/fonts/type1/public/cm-super/sfsc2986.pfb + RELOC/fonts/type1/public/cm-super/sfsc3583.pfb + RELOC/fonts/type1/public/cm-super/sfsi0500.pfb + RELOC/fonts/type1/public/cm-super/sfsi0600.pfb + RELOC/fonts/type1/public/cm-super/sfsi0700.pfb + RELOC/fonts/type1/public/cm-super/sfsi0800.pfb + RELOC/fonts/type1/public/cm-super/sfsi0900.pfb + RELOC/fonts/type1/public/cm-super/sfsi1000.pfb + RELOC/fonts/type1/public/cm-super/sfsi1095.pfb + RELOC/fonts/type1/public/cm-super/sfsi1200.pfb + RELOC/fonts/type1/public/cm-super/sfsi1440.pfb + RELOC/fonts/type1/public/cm-super/sfsi1728.pfb + RELOC/fonts/type1/public/cm-super/sfsi2074.pfb + RELOC/fonts/type1/public/cm-super/sfsi2488.pfb + RELOC/fonts/type1/public/cm-super/sfsi2986.pfb + RELOC/fonts/type1/public/cm-super/sfsi3583.pfb + RELOC/fonts/type1/public/cm-super/sfsl0500.pfb + RELOC/fonts/type1/public/cm-super/sfsl0600.pfb + RELOC/fonts/type1/public/cm-super/sfsl0700.pfb + RELOC/fonts/type1/public/cm-super/sfsl0800.pfb + RELOC/fonts/type1/public/cm-super/sfsl0900.pfb + RELOC/fonts/type1/public/cm-super/sfsl1000.pfb + RELOC/fonts/type1/public/cm-super/sfsl1095.pfb + RELOC/fonts/type1/public/cm-super/sfsl1200.pfb + RELOC/fonts/type1/public/cm-super/sfsl1440.pfb + RELOC/fonts/type1/public/cm-super/sfsl1728.pfb + RELOC/fonts/type1/public/cm-super/sfsl2074.pfb + RELOC/fonts/type1/public/cm-super/sfsl2488.pfb + RELOC/fonts/type1/public/cm-super/sfsl2986.pfb + RELOC/fonts/type1/public/cm-super/sfsl3583.pfb + RELOC/fonts/type1/public/cm-super/sfso0500.pfb + RELOC/fonts/type1/public/cm-super/sfso0600.pfb + RELOC/fonts/type1/public/cm-super/sfso0700.pfb + RELOC/fonts/type1/public/cm-super/sfso0800.pfb + RELOC/fonts/type1/public/cm-super/sfso0900.pfb + RELOC/fonts/type1/public/cm-super/sfso1000.pfb + RELOC/fonts/type1/public/cm-super/sfso1095.pfb + RELOC/fonts/type1/public/cm-super/sfso1200.pfb + RELOC/fonts/type1/public/cm-super/sfso1440.pfb + RELOC/fonts/type1/public/cm-super/sfso1728.pfb + RELOC/fonts/type1/public/cm-super/sfso2074.pfb + RELOC/fonts/type1/public/cm-super/sfso2488.pfb + RELOC/fonts/type1/public/cm-super/sfso2986.pfb + RELOC/fonts/type1/public/cm-super/sfso3583.pfb + RELOC/fonts/type1/public/cm-super/sfsq8.pfb + RELOC/fonts/type1/public/cm-super/sfss0500.pfb + RELOC/fonts/type1/public/cm-super/sfss0600.pfb + RELOC/fonts/type1/public/cm-super/sfss0700.pfb + RELOC/fonts/type1/public/cm-super/sfss0800.pfb + RELOC/fonts/type1/public/cm-super/sfss0900.pfb + RELOC/fonts/type1/public/cm-super/sfss1000.pfb + RELOC/fonts/type1/public/cm-super/sfss1095.pfb + RELOC/fonts/type1/public/cm-super/sfss1200.pfb + RELOC/fonts/type1/public/cm-super/sfss1440.pfb + RELOC/fonts/type1/public/cm-super/sfss1728.pfb + RELOC/fonts/type1/public/cm-super/sfss2074.pfb + RELOC/fonts/type1/public/cm-super/sfss2488.pfb + RELOC/fonts/type1/public/cm-super/sfss2986.pfb + RELOC/fonts/type1/public/cm-super/sfss3583.pfb + RELOC/fonts/type1/public/cm-super/sfssdc10.pfb + RELOC/fonts/type1/public/cm-super/sfst0800.pfb + RELOC/fonts/type1/public/cm-super/sfst0900.pfb + RELOC/fonts/type1/public/cm-super/sfst1000.pfb + RELOC/fonts/type1/public/cm-super/sfst1095.pfb + RELOC/fonts/type1/public/cm-super/sfst1200.pfb + RELOC/fonts/type1/public/cm-super/sfst1440.pfb + RELOC/fonts/type1/public/cm-super/sfst1728.pfb + RELOC/fonts/type1/public/cm-super/sfst2074.pfb + RELOC/fonts/type1/public/cm-super/sfst2488.pfb + RELOC/fonts/type1/public/cm-super/sfst2986.pfb + RELOC/fonts/type1/public/cm-super/sfst3583.pfb + RELOC/fonts/type1/public/cm-super/sfsx0500.pfb + RELOC/fonts/type1/public/cm-super/sfsx0600.pfb + RELOC/fonts/type1/public/cm-super/sfsx0700.pfb + RELOC/fonts/type1/public/cm-super/sfsx0800.pfb + RELOC/fonts/type1/public/cm-super/sfsx0900.pfb + RELOC/fonts/type1/public/cm-super/sfsx1000.pfb + RELOC/fonts/type1/public/cm-super/sfsx1095.pfb + RELOC/fonts/type1/public/cm-super/sfsx1200.pfb + RELOC/fonts/type1/public/cm-super/sfsx1440.pfb + RELOC/fonts/type1/public/cm-super/sfsx1728.pfb + RELOC/fonts/type1/public/cm-super/sfsx2074.pfb + RELOC/fonts/type1/public/cm-super/sfsx2488.pfb + RELOC/fonts/type1/public/cm-super/sfsx2986.pfb + RELOC/fonts/type1/public/cm-super/sfsx3583.pfb + RELOC/fonts/type1/public/cm-super/sftc0800.pfb + RELOC/fonts/type1/public/cm-super/sftc0900.pfb + RELOC/fonts/type1/public/cm-super/sftc1000.pfb + RELOC/fonts/type1/public/cm-super/sftc1095.pfb + RELOC/fonts/type1/public/cm-super/sftc1200.pfb + RELOC/fonts/type1/public/cm-super/sftc1440.pfb + RELOC/fonts/type1/public/cm-super/sftc1728.pfb + RELOC/fonts/type1/public/cm-super/sftc2074.pfb + RELOC/fonts/type1/public/cm-super/sftc2488.pfb + RELOC/fonts/type1/public/cm-super/sftc2986.pfb + RELOC/fonts/type1/public/cm-super/sftc3583.pfb + RELOC/fonts/type1/public/cm-super/sfti0500.pfb + RELOC/fonts/type1/public/cm-super/sfti0600.pfb + RELOC/fonts/type1/public/cm-super/sfti0700.pfb + RELOC/fonts/type1/public/cm-super/sfti0800.pfb + RELOC/fonts/type1/public/cm-super/sfti0900.pfb + RELOC/fonts/type1/public/cm-super/sfti1000.pfb + RELOC/fonts/type1/public/cm-super/sfti1095.pfb + RELOC/fonts/type1/public/cm-super/sfti1200.pfb + RELOC/fonts/type1/public/cm-super/sfti1440.pfb + RELOC/fonts/type1/public/cm-super/sfti1728.pfb + RELOC/fonts/type1/public/cm-super/sfti2074.pfb + RELOC/fonts/type1/public/cm-super/sfti2488.pfb + RELOC/fonts/type1/public/cm-super/sfti2986.pfb + RELOC/fonts/type1/public/cm-super/sfti3583.pfb + RELOC/fonts/type1/public/cm-super/sftt0800.pfb + RELOC/fonts/type1/public/cm-super/sftt0900.pfb + RELOC/fonts/type1/public/cm-super/sftt1000.pfb + RELOC/fonts/type1/public/cm-super/sftt1095.pfb + RELOC/fonts/type1/public/cm-super/sftt1200.pfb + RELOC/fonts/type1/public/cm-super/sftt1440.pfb + RELOC/fonts/type1/public/cm-super/sftt1728.pfb + RELOC/fonts/type1/public/cm-super/sftt2074.pfb + RELOC/fonts/type1/public/cm-super/sftt2488.pfb + RELOC/fonts/type1/public/cm-super/sftt2986.pfb + RELOC/fonts/type1/public/cm-super/sftt3583.pfb + RELOC/fonts/type1/public/cm-super/sfui0500.pfb + RELOC/fonts/type1/public/cm-super/sfui0600.pfb + RELOC/fonts/type1/public/cm-super/sfui0700.pfb + RELOC/fonts/type1/public/cm-super/sfui0800.pfb + RELOC/fonts/type1/public/cm-super/sfui0900.pfb + RELOC/fonts/type1/public/cm-super/sfui1000.pfb + RELOC/fonts/type1/public/cm-super/sfui1095.pfb + RELOC/fonts/type1/public/cm-super/sfui1200.pfb + RELOC/fonts/type1/public/cm-super/sfui1440.pfb + RELOC/fonts/type1/public/cm-super/sfui1728.pfb + RELOC/fonts/type1/public/cm-super/sfui2074.pfb + RELOC/fonts/type1/public/cm-super/sfui2488.pfb + RELOC/fonts/type1/public/cm-super/sfui2986.pfb + RELOC/fonts/type1/public/cm-super/sfui3583.pfb + RELOC/fonts/type1/public/cm-super/sfvi0800.pfb + RELOC/fonts/type1/public/cm-super/sfvi0900.pfb + RELOC/fonts/type1/public/cm-super/sfvi1000.pfb + RELOC/fonts/type1/public/cm-super/sfvi1095.pfb + RELOC/fonts/type1/public/cm-super/sfvi1200.pfb + RELOC/fonts/type1/public/cm-super/sfvi1440.pfb + RELOC/fonts/type1/public/cm-super/sfvi1728.pfb + RELOC/fonts/type1/public/cm-super/sfvi2074.pfb + RELOC/fonts/type1/public/cm-super/sfvi2488.pfb + RELOC/fonts/type1/public/cm-super/sfvi2986.pfb + RELOC/fonts/type1/public/cm-super/sfvi3583.pfb + RELOC/fonts/type1/public/cm-super/sfvt0800.pfb + RELOC/fonts/type1/public/cm-super/sfvt0900.pfb + RELOC/fonts/type1/public/cm-super/sfvt1000.pfb + RELOC/fonts/type1/public/cm-super/sfvt1095.pfb + RELOC/fonts/type1/public/cm-super/sfvt1200.pfb + RELOC/fonts/type1/public/cm-super/sfvt1440.pfb + RELOC/fonts/type1/public/cm-super/sfvt1728.pfb + RELOC/fonts/type1/public/cm-super/sfvt2074.pfb + RELOC/fonts/type1/public/cm-super/sfvt2488.pfb + RELOC/fonts/type1/public/cm-super/sfvt2986.pfb + RELOC/fonts/type1/public/cm-super/sfvt3583.pfb + RELOC/fonts/type1/public/cm-super/sfxc0500.pfb + RELOC/fonts/type1/public/cm-super/sfxc0600.pfb + RELOC/fonts/type1/public/cm-super/sfxc0700.pfb + RELOC/fonts/type1/public/cm-super/sfxc0800.pfb + RELOC/fonts/type1/public/cm-super/sfxc0900.pfb + RELOC/fonts/type1/public/cm-super/sfxc1000.pfb + RELOC/fonts/type1/public/cm-super/sfxc1095.pfb + RELOC/fonts/type1/public/cm-super/sfxc1200.pfb + RELOC/fonts/type1/public/cm-super/sfxc1440.pfb + RELOC/fonts/type1/public/cm-super/sfxc1728.pfb + RELOC/fonts/type1/public/cm-super/sfxc2074.pfb + RELOC/fonts/type1/public/cm-super/sfxc2488.pfb + RELOC/fonts/type1/public/cm-super/sfxc2986.pfb + RELOC/fonts/type1/public/cm-super/sfxc3583.pfb + RELOC/tex/latex/cm-super/type1ec.sty +catalogue-ctan /fonts/ps-type1/cm-super +catalogue-license gpl +catalogue-topics font font-proportional font-mono font-cyrillic font-type1 font-cm + +name cm-unicode +category Package +revision 58661 +shortdesc Computer Modern Unicode font family +relocated 1 +longdesc Computer Modern Unicode fonts, converted from Metafont sources +longdesc using mftrace with autotrace backend and fontforge. Some +longdesc characters in several fonts are copied from Blue Sky type 1 +longdesc fonts released by AMS. Currently the fonts contain glyphs from +longdesc Latin (Metafont ec, tc, vnr), Cyrillic (lh), Greek (cbgreek +longdesc when available) code sets and IPA extensions (from tipa). This +longdesc font set contains 33 fonts. This archive contains AFM, PFB and +longdesc OTF versions; the OTF version of the Computer Modern Unicode +longdesc fonts works with TeX engines that directly support OpenType +longdesc features, such as XeTeX and LuaTeX. +containersize 14122248 +containerchecksum 5d6cce2e396ffa0dc887e839f4ef57865db9eda3dcdf6a62737008b53837c40ee1498d97ab06eab8f0802e745787fa5c107c0738a8dedd4e65f6996aee555c48 +doccontainersize 950712 +doccontainerchecksum f7633d0dbd08cc1e82f6804f51c8b117dee909a81d8496826abe3e9b7107577f2818323dbd789555f8cd3f62d8f1ffac440fde64a6497135f879fb58a779cf64 +docfiles size=292 + RELOC/doc/fonts/cm-unicode/Changes + RELOC/doc/fonts/cm-unicode/FAQ + RELOC/doc/fonts/cm-unicode/FontLog.txt + RELOC/doc/fonts/cm-unicode/Fontmap.CMU.alias + RELOC/doc/fonts/cm-unicode/Fontmap.CMU.otf + RELOC/doc/fonts/cm-unicode/Fontmap.CMU.pfb + RELOC/doc/fonts/cm-unicode/INSTALL + RELOC/doc/fonts/cm-unicode/OFL-FAQ.txt + RELOC/doc/fonts/cm-unicode/OFL.txt + RELOC/doc/fonts/cm-unicode/README details="Readme" + RELOC/doc/fonts/cm-unicode/README.doc + RELOC/doc/fonts/cm-unicode/TODO + RELOC/doc/fonts/cm-unicode/cmunrm.pdf details="Upright font tables" + RELOC/doc/fonts/cm-unicode/cmunti.pdf details="Italic font tables" + RELOC/doc/fonts/cm-unicode/config.cmu +runfiles size=6942 + RELOC/fonts/afm/public/cm-unicode/cmunbbx.afm + RELOC/fonts/afm/public/cm-unicode/cmunbi.afm + RELOC/fonts/afm/public/cm-unicode/cmunbl.afm + RELOC/fonts/afm/public/cm-unicode/cmunbmo.afm + RELOC/fonts/afm/public/cm-unicode/cmunbmr.afm + RELOC/fonts/afm/public/cm-unicode/cmunbso.afm + RELOC/fonts/afm/public/cm-unicode/cmunbsr.afm + RELOC/fonts/afm/public/cm-unicode/cmunbtl.afm + RELOC/fonts/afm/public/cm-unicode/cmunbto.afm + RELOC/fonts/afm/public/cm-unicode/cmunbx.afm + RELOC/fonts/afm/public/cm-unicode/cmunbxo.afm + RELOC/fonts/afm/public/cm-unicode/cmunci.afm + RELOC/fonts/afm/public/cm-unicode/cmunit.afm + RELOC/fonts/afm/public/cm-unicode/cmunobi.afm + RELOC/fonts/afm/public/cm-unicode/cmunobx.afm + RELOC/fonts/afm/public/cm-unicode/cmunorm.afm + RELOC/fonts/afm/public/cm-unicode/cmunoti.afm + RELOC/fonts/afm/public/cm-unicode/cmunrb.afm + RELOC/fonts/afm/public/cm-unicode/cmunrm.afm + RELOC/fonts/afm/public/cm-unicode/cmunsi.afm + RELOC/fonts/afm/public/cm-unicode/cmunsl.afm + RELOC/fonts/afm/public/cm-unicode/cmunso.afm + RELOC/fonts/afm/public/cm-unicode/cmunss.afm + RELOC/fonts/afm/public/cm-unicode/cmunssdc.afm + RELOC/fonts/afm/public/cm-unicode/cmunst.afm + RELOC/fonts/afm/public/cm-unicode/cmunsx.afm + RELOC/fonts/afm/public/cm-unicode/cmuntb.afm + RELOC/fonts/afm/public/cm-unicode/cmunti.afm + RELOC/fonts/afm/public/cm-unicode/cmuntt.afm + RELOC/fonts/afm/public/cm-unicode/cmuntx.afm + RELOC/fonts/afm/public/cm-unicode/cmunui.afm + RELOC/fonts/afm/public/cm-unicode/cmunvi.afm + RELOC/fonts/afm/public/cm-unicode/cmunvt.afm + RELOC/fonts/enc/dvips/cm-unicode/cmu-ec.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-ecsc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-g.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-gsc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-la.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-lasc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-lb.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-lc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-ld.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-rx.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-tc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-tipa.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-tipx.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-ux.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-uxsc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-vn.enc + RELOC/fonts/map/dvips/cm-unicode/cmu.map + RELOC/fonts/opentype/public/cm-unicode/cmunbbx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbl.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbmo.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbmr.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbso.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbsr.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbtl.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbto.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbxo.otf + RELOC/fonts/opentype/public/cm-unicode/cmunci.otf + RELOC/fonts/opentype/public/cm-unicode/cmunit.otf + RELOC/fonts/opentype/public/cm-unicode/cmunobi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunobx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunorm.otf + RELOC/fonts/opentype/public/cm-unicode/cmunoti.otf + RELOC/fonts/opentype/public/cm-unicode/cmunrb.otf + RELOC/fonts/opentype/public/cm-unicode/cmunrm.otf + RELOC/fonts/opentype/public/cm-unicode/cmunsi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunsl.otf + RELOC/fonts/opentype/public/cm-unicode/cmunso.otf + RELOC/fonts/opentype/public/cm-unicode/cmunss.otf + RELOC/fonts/opentype/public/cm-unicode/cmunssdc.otf + RELOC/fonts/opentype/public/cm-unicode/cmunst.otf + RELOC/fonts/opentype/public/cm-unicode/cmunsx.otf + RELOC/fonts/opentype/public/cm-unicode/cmuntb.otf + RELOC/fonts/opentype/public/cm-unicode/cmunti.otf + RELOC/fonts/opentype/public/cm-unicode/cmuntt.otf + RELOC/fonts/opentype/public/cm-unicode/cmuntx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunui.otf + RELOC/fonts/opentype/public/cm-unicode/cmunvi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunvt.otf + RELOC/fonts/type1/public/cm-unicode/cmunbbx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbl.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbmo.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbmr.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbso.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbsr.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbtl.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbto.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbxo.pfb + RELOC/fonts/type1/public/cm-unicode/cmunci.pfb + RELOC/fonts/type1/public/cm-unicode/cmunit.pfb + RELOC/fonts/type1/public/cm-unicode/cmunobi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunobx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunorm.pfb + RELOC/fonts/type1/public/cm-unicode/cmunoti.pfb + RELOC/fonts/type1/public/cm-unicode/cmunrb.pfb + RELOC/fonts/type1/public/cm-unicode/cmunrm.pfb + RELOC/fonts/type1/public/cm-unicode/cmunsi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunsl.pfb + RELOC/fonts/type1/public/cm-unicode/cmunso.pfb + RELOC/fonts/type1/public/cm-unicode/cmunss.pfb + RELOC/fonts/type1/public/cm-unicode/cmunssdc.pfb + RELOC/fonts/type1/public/cm-unicode/cmunst.pfb + RELOC/fonts/type1/public/cm-unicode/cmunsx.pfb + RELOC/fonts/type1/public/cm-unicode/cmuntb.pfb + RELOC/fonts/type1/public/cm-unicode/cmunti.pfb + RELOC/fonts/type1/public/cm-unicode/cmuntt.pfb + RELOC/fonts/type1/public/cm-unicode/cmuntx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunui.pfb + RELOC/fonts/type1/public/cm-unicode/cmunvi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunvt.pfb +catalogue-contact-repository https://cm-unicode.sourceforge.io/ +catalogue-ctan /fonts/cm-unicode +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 + +name cmap +category Package +revision 57640 +shortdesc Make PDF files searchable and copyable +relocated 1 +longdesc The cmap package provides character map tables, which make PDF +longdesc files generated by pdfLaTeX both searchable and copy-able in +longdesc acrobat reader and other compliant PDF viewers. Encodings +longdesc supported are OT1, OT6, T1, T2A, T2B, T2C and T5, together with +longdesc LAE (Arabic), LFE (Farsi) and LGR (Greek) and a variant OT1tt +longdesc for cmtt-like fonts. The package's main limitation currently is +longdesc the inability to work with virtual fonts, because of +longdesc limitations of pdfTeX. This restriction may be resolved in a +longdesc future version of pdfTeX. +containersize 5728 +containerchecksum 4857f7ab9719a2b6828582599c98715c61731288899494aed96026dd6ad8bac92028586cb6b008ebaf3fb516d918861f79f544ecd64bca1e6a6183bd8bc398c1 +doccontainersize 2284 +doccontainerchecksum 5a8b1bd0c47bd5b4a3df3d0270c15c0d3c8691c96f2e5ee272ab97362463c2cfc7d1e2a9a19f5aa7ab8b145e9ae63390b1ded80b48dec52f8bf62118dabd6cd3 +docfiles size=2 + RELOC/doc/latex/cmap/README details="Readme" +runfiles size=12 + RELOC/tex/latex/cmap/cmap.sty + RELOC/tex/latex/cmap/lae.cmap + RELOC/tex/latex/cmap/lfe.cmap + RELOC/tex/latex/cmap/lgr.cmap + RELOC/tex/latex/cmap/ot1.cmap + RELOC/tex/latex/cmap/ot1tt.cmap + RELOC/tex/latex/cmap/ot6.cmap + RELOC/tex/latex/cmap/t1.cmap + RELOC/tex/latex/cmap/t2a.cmap + RELOC/tex/latex/cmap/t2b.cmap + RELOC/tex/latex/cmap/t2c.cmap + RELOC/tex/latex/cmap/t5.cmap +catalogue-also pdftex mmap +catalogue-ctan /macros/latex/contrib/cmap +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 1.0j + +name cmarrows +category Package +revision 24378 +shortdesc MetaPost arrows and braces in the Computer Modern style +relocated 1 +longdesc This MetaPost package contains macros to draw arrows and braces +longdesc in the Computer Modern style. +containersize 10204 +containerchecksum 5f56f9ab77b2f250aff664b0007aa17eccad96d6f674ae7417f610b62d84123fc85bc80cf83948e0df2a7bfb721300e149fc764b03638e5005cc4832f2fa5544 +doccontainersize 47780 +doccontainerchecksum 0bc738eb48fc34b7cb35240622925d43e5ff5fce21b1c560158b2ceee2790a284b33816fd192a5b0161544ee5add98f4e3ebe7dd0165273d53e5ea2de7d994ac +docfiles size=14 + RELOC/doc/metapost/cmarrows/README details="Readme" + RELOC/doc/metapost/cmarrows/cmarrows.pdf details="Package documentation" +runfiles size=59 + RELOC/metapost/cmarrows/cmarrows.mp + RELOC/metapost/cmarrows/rgbx0009.mp + RELOC/metapost/cmarrows/rgbx0016.mp + RELOC/metapost/cmarrows/rgbx0020.mp + RELOC/metapost/cmarrows/rgbx0025.mp + RELOC/metapost/cmarrows/sgbx0008.mp + RELOC/metapost/cmarrows/sgbx0010.mp + RELOC/metapost/cmarrows/sgbx0011.mp + RELOC/metapost/cmarrows/sgbx0012.mp + RELOC/metapost/cmarrows/sgbx0013.mp + RELOC/metapost/cmarrows/sgbx0014.mp + RELOC/metapost/cmarrows/sgbx0015.mp + RELOC/metapost/cmarrows/sgbx0017.mp + RELOC/metapost/cmarrows/sgbx0018.mp + RELOC/metapost/cmarrows/sgbx0019.mp + RELOC/metapost/cmarrows/sgbx0021.mp + RELOC/metapost/cmarrows/sgbx0022.mp + RELOC/metapost/cmarrows/sgbx0023.mp + RELOC/metapost/cmarrows/sgbx0024.mp + RELOC/metapost/cmarrows/tgbx0000.mp + RELOC/metapost/cmarrows/tgbx0001.mp + RELOC/metapost/cmarrows/tgbx0002.mp + RELOC/metapost/cmarrows/tgbx0003.mp + RELOC/metapost/cmarrows/tgbx0004.mp + RELOC/metapost/cmarrows/tgbx0005.mp + RELOC/metapost/cmarrows/tgbx0006.mp + RELOC/metapost/cmarrows/tgbx0007.mp + RELOC/metapost/cmarrows/tgbx0027.mp +catalogue-also pst-text +catalogue-ctan /graphics/metapost/contrib/macros/cmarrows +catalogue-license lppl +catalogue-topics graphics-symb +catalogue-version 0.9 + +name cmathbb +category Package +revision 56414 +shortdesc Computer modern mathematical blackboard bold font +relocated 1 +longdesc This font contains all digits and latin letters uppercase and +longdesc lowercase for the Computer Modern font family in blackboard +longdesc bold. +execute addMap cmathbb.map +containersize 89308 +containerchecksum 8e720662ac4d00557b143c883e9d410da8593cdfa056b5320e0ff348c2c0e37f9c0045341c28e583aa544790e576d9b7db8c80f93cffd8c4da699e46e35f73e0 +doccontainersize 71808 +doccontainerchecksum f1b0b1067260287c66347e52111883834d575e5857a3aede8e14930252a284b5c0bd6bd7247c9ee36462d57a63d351110582cb66ca894d9430d476445f37da44 +docfiles size=21 + RELOC/doc/fonts/cmathbb/README.md details="Readme" + RELOC/doc/fonts/cmathbb/cmathbb.pdf details="Package documentation" + RELOC/doc/fonts/cmathbb/cmathbb.tex +runfiles size=44 + RELOC/fonts/enc/dvips/cmathbb/a_ghauqe.enc + RELOC/fonts/enc/dvips/cmathbb/a_jggq4p.enc + RELOC/fonts/enc/dvips/cmathbb/a_ns6ls2.enc + RELOC/fonts/enc/dvips/cmathbb/a_szuv3s.enc + RELOC/fonts/map/dvips/cmathbb/cmathbb.map + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cmathbb/cmathbb-Regular-tlf-ts1.tfm + RELOC/fonts/type1/public/cmathbb/cmathbb-Regular.pfb + RELOC/fonts/type1/public/cmathbb/cmathbb-RegularLCDFJ.pfb + RELOC/fonts/vf/public/cmathbb/cmathbb-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/cmathbb/cmathbb-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/cmathbb/cmathbb-Regular-tlf-t1.vf + RELOC/fonts/vf/public/cmathbb/cmathbb-Regular-tlf-ts1.vf + RELOC/tex/latex/cmathbb/cmathbb.sty + RELOC/tex/latex/cmathbb/ucmath.fd +catalogue-ctan /fonts/cmathbb +catalogue-license lppl1.3c +catalogue-topics font-supp-maths +catalogue-version 1.0 + +name cmbright +category Package +revision 21107 +shortdesc Computer Modern Bright fonts +relocated 1 +longdesc A family of sans serif fonts for TeX and LaTeX, based on Donald +longdesc Knuth's CM fonts. It comprises OT1, T1 and TS1 encoded text +longdesc fonts of various shapes as well as all the fonts necessary for +longdesc mathematical typesetting, including AMS symbols. This +longdesc collection provides all the necessary files for using the fonts +longdesc with LaTeX. A commercial-quality Adobe Type 1 version of these +longdesc fonts is available from Micropress. Free versions are +longdesc available, in the cm-super font bundle (the T1 and TS1 encoded +longdesc part of the set), and in the hfbright package (the OT1 encoded +longdesc part, and the maths fonts). +containersize 111916 +containerchecksum 3251c7ce9f139a9e553e3cf343339367e98e6982850ca3d2a2087efe5e26f4828597e6f5c1ac85567e81897a09239f5be717a6a85d04b164442c9c5c53ea4fac +doccontainersize 61056 +doccontainerchecksum 7add06e9502ab0bf912e811afbb66caf7ac83d60b6e2575dbc75709438ce6252239a43106632633e2d90b2badd46bb800533c496c811de7316cd1766456058c9 +docfiles size=27 + RELOC/doc/fonts/cmbright/LICENSE + RELOC/doc/fonts/cmbright/README details="Readme" + RELOC/doc/fonts/cmbright/cmbright.txt + RELOC/doc/fonts/cmbright/manifest.txt + RELOC/doc/latex/cmbright/cmbright.pdf details="Package documentation" +srccontainersize 6944 +srccontainerchecksum 5824d33c26e94cf0ec8d2b69d0c80c715a68ef98ab5e2025c84fc20dcda2be4b89125dfe69400f2f27d46b773c5a3918af533cc2c25fad01694776bf5a546879 +srcfiles size=7 + RELOC/source/latex/cmbright/cmbright.dtx + RELOC/source/latex/cmbright/cmbright.ins +runfiles size=337 + RELOC/fonts/source/public/cmbright/ams10pt.mf + RELOC/fonts/source/public/cmbright/ams8pt.mf + RELOC/fonts/source/public/cmbright/ams9pt.mf + RELOC/fonts/source/public/cmbright/baccent.mf + RELOC/fonts/source/public/cmbright/bgreeku.mf + RELOC/fonts/source/public/cmbright/bitalms.mf + RELOC/fonts/source/public/cmbright/bpunct.mf + RELOC/fonts/source/public/cmbright/br10pt.mf + RELOC/fonts/source/public/cmbright/br17pt.mf + RELOC/fonts/source/public/cmbright/br8pt.mf + RELOC/fonts/source/public/cmbright/br9pt.mf + RELOC/fonts/source/public/cmbright/brmsa.mf + RELOC/fonts/source/public/cmbright/brmsb.mf + RELOC/fonts/source/public/cmbright/broman.mf + RELOC/fonts/source/public/cmbright/bromanl.mf + RELOC/fonts/source/public/cmbright/bromlig.mf + RELOC/fonts/source/public/cmbright/bromms.mf + RELOC/fonts/source/public/cmbright/brs10pt.mf + RELOC/fonts/source/public/cmbright/brs17pt.mf + RELOC/fonts/source/public/cmbright/brs8pt.mf + RELOC/fonts/source/public/cmbright/brs9pt.mf + RELOC/fonts/source/public/cmbright/cmbr10.mf + RELOC/fonts/source/public/cmbright/cmbr17.mf + RELOC/fonts/source/public/cmbright/cmbr8.mf + RELOC/fonts/source/public/cmbright/cmbr9.mf + RELOC/fonts/source/public/cmbright/cmbras10.mf + RELOC/fonts/source/public/cmbright/cmbras8.mf + RELOC/fonts/source/public/cmbright/cmbras9.mf + RELOC/fonts/source/public/cmbright/cmbrbs10.mf + RELOC/fonts/source/public/cmbright/cmbrbs8.mf + RELOC/fonts/source/public/cmbright/cmbrbs9.mf + RELOC/fonts/source/public/cmbright/cmbrbx10.mf + RELOC/fonts/source/public/cmbright/cmbrmb10.mf + RELOC/fonts/source/public/cmbright/cmbrmi10.mf + RELOC/fonts/source/public/cmbright/cmbrmi8.mf + RELOC/fonts/source/public/cmbright/cmbrmi9.mf + RELOC/fonts/source/public/cmbright/cmbrsl10.mf + RELOC/fonts/source/public/cmbright/cmbrsl17.mf + RELOC/fonts/source/public/cmbright/cmbrsl8.mf + RELOC/fonts/source/public/cmbright/cmbrsl9.mf + RELOC/fonts/source/public/cmbright/cmbrsy10.mf + RELOC/fonts/source/public/cmbright/cmbrsy8.mf + RELOC/fonts/source/public/cmbright/cmbrsy9.mf + RELOC/fonts/source/public/cmbright/cmsltl10.mf + RELOC/fonts/source/public/cmbright/cmtl10.mf + RELOC/fonts/source/public/cmbright/ebaccess.mf + RELOC/fonts/source/public/cmbright/ebbase.mf + RELOC/fonts/source/public/cmbright/ebbraces.mf + RELOC/fonts/source/public/cmbright/ebbx10.mf + RELOC/fonts/source/public/cmbright/ebmo10.mf + RELOC/fonts/source/public/cmbright/ebmo17.mf + RELOC/fonts/source/public/cmbright/ebmo8.mf + RELOC/fonts/source/public/cmbright/ebmo9.mf + RELOC/fonts/source/public/cmbright/ebmr10.mf + RELOC/fonts/source/public/cmbright/ebmr17.mf + RELOC/fonts/source/public/cmbright/ebmr8.mf + RELOC/fonts/source/public/cmbright/ebmr9.mf + RELOC/fonts/source/public/cmbright/ebpseudo.mf + RELOC/fonts/source/public/cmbright/ebpunct.mf + RELOC/fonts/source/public/cmbright/ebrleast.mf + RELOC/fonts/source/public/cmbright/ebrlig.mf + RELOC/fonts/source/public/cmbright/ebrligtb.mf + RELOC/fonts/source/public/cmbright/ebrllett.mf + RELOC/fonts/source/public/cmbright/ebrlwest.mf + RELOC/fonts/source/public/cmbright/ebroman.mf + RELOC/fonts/source/public/cmbright/ebso10.mf + RELOC/fonts/source/public/cmbright/ebso17.mf + RELOC/fonts/source/public/cmbright/ebso8.mf + RELOC/fonts/source/public/cmbright/ebso9.mf + RELOC/fonts/source/public/cmbright/ebsr10.mf + RELOC/fonts/source/public/cmbright/ebsr17.mf + RELOC/fonts/source/public/cmbright/ebsr8.mf + RELOC/fonts/source/public/cmbright/ebsr9.mf + RELOC/fonts/source/public/cmbright/ebtl10.mf + RELOC/fonts/source/public/cmbright/ebto10.mf + RELOC/fonts/source/public/cmbright/mathsl.mf + RELOC/fonts/source/public/cmbright/msa.mf + RELOC/fonts/source/public/cmbright/msb.mf + RELOC/fonts/source/public/cmbright/tbbx10.mf + RELOC/fonts/source/public/cmbright/tbmo10.mf + RELOC/fonts/source/public/cmbright/tbmo17.mf + RELOC/fonts/source/public/cmbright/tbmo8.mf + RELOC/fonts/source/public/cmbright/tbmo9.mf + RELOC/fonts/source/public/cmbright/tbmr10.mf + RELOC/fonts/source/public/cmbright/tbmr17.mf + RELOC/fonts/source/public/cmbright/tbmr8.mf + RELOC/fonts/source/public/cmbright/tbmr9.mf + RELOC/fonts/source/public/cmbright/tbpseudo.mf + RELOC/fonts/source/public/cmbright/tbso10.mf + RELOC/fonts/source/public/cmbright/tbso17.mf + RELOC/fonts/source/public/cmbright/tbso8.mf + RELOC/fonts/source/public/cmbright/tbso9.mf + RELOC/fonts/source/public/cmbright/tbsr10.mf + RELOC/fonts/source/public/cmbright/tbsr17.mf + RELOC/fonts/source/public/cmbright/tbsr8.mf + RELOC/fonts/source/public/cmbright/tbsr9.mf + RELOC/fonts/source/public/cmbright/tbsymb.mf + RELOC/fonts/source/public/cmbright/tbsymbol.mf + RELOC/fonts/source/public/cmbright/tbtl10.mf + RELOC/fonts/source/public/cmbright/tbto10.mf + RELOC/fonts/source/public/cmbright/ttsymb.mf + RELOC/fonts/source/public/cmbright/ttsymbol.mf + RELOC/fonts/tfm/public/cmbright/cmbr10.tfm + RELOC/fonts/tfm/public/cmbright/cmbr17.tfm + RELOC/fonts/tfm/public/cmbright/cmbr8.tfm + RELOC/fonts/tfm/public/cmbright/cmbr9.tfm + RELOC/fonts/tfm/public/cmbright/cmbras10.tfm + RELOC/fonts/tfm/public/cmbright/cmbras8.tfm + RELOC/fonts/tfm/public/cmbright/cmbras9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbs10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbs8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbs9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbx10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmb10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmi10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmi8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmi9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl17.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsy10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsy8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsy9.tfm + RELOC/fonts/tfm/public/cmbright/cmsltl10.tfm + RELOC/fonts/tfm/public/cmbright/cmtl10.tfm + RELOC/fonts/tfm/public/cmbright/ebbx10.tfm + RELOC/fonts/tfm/public/cmbright/ebmo10.tfm + RELOC/fonts/tfm/public/cmbright/ebmo17.tfm + RELOC/fonts/tfm/public/cmbright/ebmo8.tfm + RELOC/fonts/tfm/public/cmbright/ebmo9.tfm + RELOC/fonts/tfm/public/cmbright/ebmr10.tfm + RELOC/fonts/tfm/public/cmbright/ebmr17.tfm + RELOC/fonts/tfm/public/cmbright/ebmr8.tfm + RELOC/fonts/tfm/public/cmbright/ebmr9.tfm + RELOC/fonts/tfm/public/cmbright/ebso10.tfm + RELOC/fonts/tfm/public/cmbright/ebso17.tfm + RELOC/fonts/tfm/public/cmbright/ebso8.tfm + RELOC/fonts/tfm/public/cmbright/ebso9.tfm + RELOC/fonts/tfm/public/cmbright/ebsr10.tfm + RELOC/fonts/tfm/public/cmbright/ebsr17.tfm + RELOC/fonts/tfm/public/cmbright/ebsr8.tfm + RELOC/fonts/tfm/public/cmbright/ebsr9.tfm + RELOC/fonts/tfm/public/cmbright/ebtl10.tfm + RELOC/fonts/tfm/public/cmbright/ebto10.tfm + RELOC/fonts/tfm/public/cmbright/tbbx10.tfm + RELOC/fonts/tfm/public/cmbright/tbmo10.tfm + RELOC/fonts/tfm/public/cmbright/tbmo17.tfm + RELOC/fonts/tfm/public/cmbright/tbmo8.tfm + RELOC/fonts/tfm/public/cmbright/tbmo9.tfm + RELOC/fonts/tfm/public/cmbright/tbmr10.tfm + RELOC/fonts/tfm/public/cmbright/tbmr17.tfm + RELOC/fonts/tfm/public/cmbright/tbmr8.tfm + RELOC/fonts/tfm/public/cmbright/tbmr9.tfm + RELOC/fonts/tfm/public/cmbright/tbso10.tfm + RELOC/fonts/tfm/public/cmbright/tbso17.tfm + RELOC/fonts/tfm/public/cmbright/tbso8.tfm + RELOC/fonts/tfm/public/cmbright/tbso9.tfm + RELOC/fonts/tfm/public/cmbright/tbsr10.tfm + RELOC/fonts/tfm/public/cmbright/tbsr17.tfm + RELOC/fonts/tfm/public/cmbright/tbsr8.tfm + RELOC/fonts/tfm/public/cmbright/tbsr9.tfm + RELOC/fonts/tfm/public/cmbright/tbtl10.tfm + RELOC/fonts/tfm/public/cmbright/tbto10.tfm + RELOC/tex/latex/cmbright/cmbright.sty + RELOC/tex/latex/cmbright/omlcmbr.fd + RELOC/tex/latex/cmbright/omlcmbrm.fd + RELOC/tex/latex/cmbright/omscmbr.fd + RELOC/tex/latex/cmbright/omscmbrs.fd + RELOC/tex/latex/cmbright/ot1cmbr.fd + RELOC/tex/latex/cmbright/ot1cmtl.fd + RELOC/tex/latex/cmbright/t1cmbr.fd + RELOC/tex/latex/cmbright/t1cmtl.fd + RELOC/tex/latex/cmbright/ts1cmbr.fd + RELOC/tex/latex/cmbright/ts1cmtl.fd +catalogue-ctan /fonts/cmbright +catalogue-license lppl +catalogue-topics font font-maths font-sans font-mf +catalogue-version 8.1 + +name cmcyr +category Package +revision 39273 +shortdesc Computer Modern fonts with cyrillic extensions +relocated 1 +longdesc These are the Computer Modern fonts extended with Russian +longdesc letters, in Metafont sources and ATM Compatible Type 1 format. +longdesc The fonts are provided in KOI-7, but virtual fonts are +longdesc available to recode them to three other Russian 8-bit +longdesc encodings. +execute addMap cmcyr.map +containersize 901484 +containerchecksum 452551d8563b53408a058f847a4a8d3738ac7f0de1da15aea05208c030c67f904b848d71bacca2f6f5ec3e882cdf0be58a4037ed7dea7c7bbd2aeb08776427b9 +doccontainersize 5864 +doccontainerchecksum 748c60e2e54f49bc6afd2867574919003ad6412d721613dacf6f8dc48cb187ca915b1a5e7286a47db7087fe1133c8ceabd998a8c60b91e4d60264b6fc6253190 +docfiles size=40 + RELOC/doc/fonts/cmcyr/README details="Readme" + RELOC/doc/fonts/cmcyr/cmalt + RELOC/doc/fonts/cmcyr/cmalte + RELOC/doc/fonts/cmcyr/cmiso + RELOC/doc/fonts/cmcyr/cmisoe + RELOC/doc/fonts/cmcyr/cmkde + RELOC/doc/fonts/cmcyr/cmkdee + RELOC/doc/fonts/cmcyr/cmkoi8 + RELOC/doc/fonts/cmcyr/cmkoi8e + RELOC/doc/fonts/cmcyr/cmwin + RELOC/doc/fonts/cmcyr/cmwine + RELOC/doc/fonts/cmcyr/coding.bak + RELOC/doc/fonts/cmcyr/cyralt + RELOC/doc/fonts/cmcyr/cyralte + RELOC/doc/fonts/cmcyr/cyriso + RELOC/doc/fonts/cmcyr/cyrisoe + RELOC/doc/fonts/cmcyr/cyrkde + RELOC/doc/fonts/cmcyr/cyrkdee + RELOC/doc/fonts/cmcyr/cyrkoi8 + RELOC/doc/fonts/cmcyr/cyrkoi8e + RELOC/doc/fonts/cmcyr/cyrwin + RELOC/doc/fonts/cmcyr/cyrwine + RELOC/doc/fonts/cmcyr/merge.6i + RELOC/doc/fonts/cmcyr/merge.6k + RELOC/doc/fonts/cmcyr/merge.6w + RELOC/doc/fonts/cmcyr/merge.alt + RELOC/doc/fonts/cmcyr/merge.bat + RELOC/doc/fonts/cmcyr/merge.iso + RELOC/doc/fonts/cmcyr/merge.koi + RELOC/doc/fonts/cmcyr/merge.o6w + RELOC/doc/fonts/cmcyr/merge.win + RELOC/doc/fonts/cmcyr/vf/cmcyr6i/merge.bat + RELOC/doc/fonts/cmcyr/vf/cmcyr6k/merge.bat + RELOC/doc/fonts/cmcyr/vf/cmcyr6w/merge.bat + RELOC/doc/fonts/cmcyr/wncalt + RELOC/doc/fonts/cmcyr/wncalte + RELOC/doc/fonts/cmcyr/wnciso + RELOC/doc/fonts/cmcyr/wncisoe + RELOC/doc/fonts/cmcyr/wnckoi8 + RELOC/doc/fonts/cmcyr/wnckoi8e +runfiles size=979 + RELOC/fonts/map/dvips/cmcyr/cmcyr.map + RELOC/fonts/source/public/cmcyr/ccsc.mf + RELOC/fonts/source/public/cmcyr/citall.mf + RELOC/fonts/source/public/cmcyr/cmcb10.mf + RELOC/fonts/source/public/cmcyr/cmcbx10.mf + RELOC/fonts/source/public/cmcyr/cmcbx12.mf + RELOC/fonts/source/public/cmcyr/cmcbx5.mf + RELOC/fonts/source/public/cmcyr/cmcbx6.mf + RELOC/fonts/source/public/cmcyr/cmcbx7.mf + RELOC/fonts/source/public/cmcyr/cmcbx8.mf + RELOC/fonts/source/public/cmcyr/cmcbx9.mf + RELOC/fonts/source/public/cmcyr/cmcbxsl1.mf + RELOC/fonts/source/public/cmcyr/cmcbxti1.mf + RELOC/fonts/source/public/cmcyr/cmccsc10.mf + RELOC/fonts/source/public/cmcyr/cmccsc8.mf + RELOC/fonts/source/public/cmcyr/cmccsc9.mf + RELOC/fonts/source/public/cmcyr/cmcinch.mf + RELOC/fonts/source/public/cmcyr/cmcitt10.mf + RELOC/fonts/source/public/cmcyr/cmcsc11.mf + RELOC/fonts/source/public/cmcyr/cmcsc12.mf + RELOC/fonts/source/public/cmcyr/cmcsc14.mf + RELOC/fonts/source/public/cmcyr/cmcsc18.mf + RELOC/fonts/source/public/cmcyr/cmcsc24.mf + RELOC/fonts/source/public/cmcyr/cmcsc36.mf + RELOC/fonts/source/public/cmcyr/cmcscsl1.mf + RELOC/fonts/source/public/cmcyr/cmcsl10.mf + RELOC/fonts/source/public/cmcyr/cmcsl12.mf + RELOC/fonts/source/public/cmcyr/cmcsl8.mf + RELOC/fonts/source/public/cmcyr/cmcsl9.mf + RELOC/fonts/source/public/cmcyr/cmcsltt1.mf + RELOC/fonts/source/public/cmcyr/cmcss10.mf + RELOC/fonts/source/public/cmcyr/cmcss12.mf + RELOC/fonts/source/public/cmcyr/cmcss17.mf + RELOC/fonts/source/public/cmcyr/cmcss8.mf + RELOC/fonts/source/public/cmcyr/cmcss9.mf + RELOC/fonts/source/public/cmcyr/cmcssbx1.mf + RELOC/fonts/source/public/cmcyr/cmcssdc1.mf + RELOC/fonts/source/public/cmcyr/cmcssi10.mf + RELOC/fonts/source/public/cmcyr/cmcssi12.mf + RELOC/fonts/source/public/cmcyr/cmcssi17.mf + RELOC/fonts/source/public/cmcyr/cmcssi8.mf + RELOC/fonts/source/public/cmcyr/cmcssi9.mf + RELOC/fonts/source/public/cmcyr/cmcssq8.mf + RELOC/fonts/source/public/cmcyr/cmcssqi8.mf + RELOC/fonts/source/public/cmcyr/cmcti10.mf + RELOC/fonts/source/public/cmcyr/cmcti12.mf + RELOC/fonts/source/public/cmcyr/cmcti7.mf + RELOC/fonts/source/public/cmcyr/cmcti8.mf + RELOC/fonts/source/public/cmcyr/cmcti9.mf + RELOC/fonts/source/public/cmcyr/cmctitle.mf + RELOC/fonts/source/public/cmcyr/cmctt10.mf + RELOC/fonts/source/public/cmcyr/cmctt12.mf + RELOC/fonts/source/public/cmcyr/cmctt8.mf + RELOC/fonts/source/public/cmcyr/cmctt9.mf + RELOC/fonts/source/public/cmcyr/cmcu10.mf + RELOC/fonts/source/public/cmcyr/cmcyr10.mf + RELOC/fonts/source/public/cmcyr/cmcyr12.mf + RELOC/fonts/source/public/cmcyr/cmcyr17.mf + RELOC/fonts/source/public/cmcyr/cmcyr5.mf + RELOC/fonts/source/public/cmcyr/cmcyr6.mf + RELOC/fonts/source/public/cmcyr/cmcyr7.mf + RELOC/fonts/source/public/cmcyr/cmcyr8.mf + RELOC/fonts/source/public/cmcyr/cmcyr9.mf + RELOC/fonts/source/public/cmcyr/coding.mf + RELOC/fonts/source/public/cmcyr/cyrillic.mf + RELOC/fonts/source/public/cmcyr/cyrl.mf + RELOC/fonts/source/public/cmcyr/cyrlc.mf + RELOC/fonts/source/public/cmcyr/cyrsymb.mf + RELOC/fonts/source/public/cmcyr/cyrt.mf + RELOC/fonts/source/public/cmcyr/cyru.mf + RELOC/fonts/source/public/cmcyr/cytextit.mf + RELOC/fonts/source/public/cmcyr/cytitle.mf + RELOC/fonts/tfm/public/cmcyr/cmcb10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx5.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx6.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx7.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/cmccsc10.tfm + RELOC/fonts/tfm/public/cmcyr/cmccsc8.tfm + RELOC/fonts/tfm/public/cmcyr/cmccsc9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcinch.tfm + RELOC/fonts/tfm/public/cmcyr/cmcitt10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss17.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi17.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssq8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti7.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti9.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt10.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt12.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt8.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcu10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr17.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr5.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr6.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr7.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmb10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/kcminch.tfm + RELOC/fonts/tfm/public/cmcyr/kcmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr17.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr5.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr6.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss17.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmu10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmb10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/wcminch.tfm + RELOC/fonts/tfm/public/cmcyr/wcmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr17.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr5.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr6.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss17.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmu10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmb10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/xcminch.tfm + RELOC/fonts/tfm/public/cmcyr/xcmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr17.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr5.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr6.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss17.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmu10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmb10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/ycminch.tfm + RELOC/fonts/tfm/public/cmcyr/ycmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr17.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr5.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr6.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss17.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmu10.tfm + RELOC/fonts/type1/public/cmcyr/cmcb10.pfb + RELOC/fonts/type1/public/cmcyr/cmcb10.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx10.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx10.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx12.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx12.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx5.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx5.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx6.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx6.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx7.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx7.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx8.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx8.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx9.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx9.pfm + RELOC/fonts/type1/public/cmcyr/cmcbxsl1.pfb + RELOC/fonts/type1/public/cmcyr/cmcbxsl1.pfm + RELOC/fonts/type1/public/cmcyr/cmcbxti1.pfb + RELOC/fonts/type1/public/cmcyr/cmcbxti1.pfm + RELOC/fonts/type1/public/cmcyr/cmccsc10.pfb + RELOC/fonts/type1/public/cmcyr/cmccsc10.pfm + RELOC/fonts/type1/public/cmcyr/cmccsc8.pfb + RELOC/fonts/type1/public/cmcyr/cmccsc8.pfm + RELOC/fonts/type1/public/cmcyr/cmccsc9.pfb + RELOC/fonts/type1/public/cmcyr/cmccsc9.pfm + RELOC/fonts/type1/public/cmcyr/cmcinch7.pfb + RELOC/fonts/type1/public/cmcyr/cmcinch7.pfm + RELOC/fonts/type1/public/cmcyr/cmcitt10.pfb + RELOC/fonts/type1/public/cmcyr/cmcitt10.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl10.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl10.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl12.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl12.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl8.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl8.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl9.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl9.pfm + RELOC/fonts/type1/public/cmcyr/cmcsltt1.pfb + RELOC/fonts/type1/public/cmcyr/cmcsltt1.pfm + RELOC/fonts/type1/public/cmcyr/cmcss10.pfb + RELOC/fonts/type1/public/cmcyr/cmcss10.pfm + RELOC/fonts/type1/public/cmcyr/cmcss12.pfb + RELOC/fonts/type1/public/cmcyr/cmcss12.pfm + RELOC/fonts/type1/public/cmcyr/cmcss17.pfb + RELOC/fonts/type1/public/cmcyr/cmcss17.pfm + RELOC/fonts/type1/public/cmcyr/cmcss8.pfb + RELOC/fonts/type1/public/cmcyr/cmcss8.pfm + RELOC/fonts/type1/public/cmcyr/cmcss9.pfb + RELOC/fonts/type1/public/cmcyr/cmcss9.pfm + RELOC/fonts/type1/public/cmcyr/cmcssbx1.pfb + RELOC/fonts/type1/public/cmcyr/cmcssbx1.pfm + RELOC/fonts/type1/public/cmcyr/cmcssdc1.pfb + RELOC/fonts/type1/public/cmcyr/cmcssdc1.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi10.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi10.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi12.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi12.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi17.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi17.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi8.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi8.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi9.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi9.pfm + RELOC/fonts/type1/public/cmcyr/cmcssq8.pfb + RELOC/fonts/type1/public/cmcyr/cmcssq8.pfm + RELOC/fonts/type1/public/cmcyr/cmcssqi8.pfb + RELOC/fonts/type1/public/cmcyr/cmcssqi8.pfm + RELOC/fonts/type1/public/cmcyr/cmcti10.pfb + RELOC/fonts/type1/public/cmcyr/cmcti10.pfm + RELOC/fonts/type1/public/cmcyr/cmcti12.pfb + RELOC/fonts/type1/public/cmcyr/cmcti12.pfm + RELOC/fonts/type1/public/cmcyr/cmcti7.pfb + RELOC/fonts/type1/public/cmcyr/cmcti7.pfm + RELOC/fonts/type1/public/cmcyr/cmcti8.pfb + RELOC/fonts/type1/public/cmcyr/cmcti8.pfm + RELOC/fonts/type1/public/cmcyr/cmcti9.pfb + RELOC/fonts/type1/public/cmcyr/cmcti9.pfm + RELOC/fonts/type1/public/cmcyr/cmctt10.pfb + RELOC/fonts/type1/public/cmcyr/cmctt10.pfm + RELOC/fonts/type1/public/cmcyr/cmctt12.pfb + RELOC/fonts/type1/public/cmcyr/cmctt12.pfm + RELOC/fonts/type1/public/cmcyr/cmctt8.pfb + RELOC/fonts/type1/public/cmcyr/cmctt8.pfm + RELOC/fonts/type1/public/cmcyr/cmctt9.pfb + RELOC/fonts/type1/public/cmcyr/cmctt9.pfm + RELOC/fonts/type1/public/cmcyr/cmcu10.pfb + RELOC/fonts/type1/public/cmcyr/cmcu10.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr10.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr10.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr12.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr12.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr17.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr17.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr5.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr5.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr6.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr6.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr7.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr7.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr8.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr8.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr9.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr9.pfm + RELOC/fonts/vf/public/cmcyr/kcmb10.vf + RELOC/fonts/vf/public/cmcyr/kcmbx10.vf + RELOC/fonts/vf/public/cmcyr/kcmbx12.vf + RELOC/fonts/vf/public/cmcyr/kcmbx5.vf + RELOC/fonts/vf/public/cmcyr/kcmbx6.vf + RELOC/fonts/vf/public/cmcyr/kcmbx7.vf + RELOC/fonts/vf/public/cmcyr/kcmbx8.vf + RELOC/fonts/vf/public/cmcyr/kcmbx9.vf + RELOC/fonts/vf/public/cmcyr/kcmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/kcmbxti10.vf + RELOC/fonts/vf/public/cmcyr/kcmcsc10.vf + RELOC/fonts/vf/public/cmcyr/kcmcsc8.vf + RELOC/fonts/vf/public/cmcyr/kcmcsc9.vf + RELOC/fonts/vf/public/cmcyr/kcminch.vf + RELOC/fonts/vf/public/cmcyr/kcmitt10.vf + RELOC/fonts/vf/public/cmcyr/kcmmi10.vf + RELOC/fonts/vf/public/cmcyr/kcmmi12.vf + RELOC/fonts/vf/public/cmcyr/kcmmi5.vf + RELOC/fonts/vf/public/cmcyr/kcmmi6.vf + RELOC/fonts/vf/public/cmcyr/kcmmi7.vf + RELOC/fonts/vf/public/cmcyr/kcmmi8.vf + RELOC/fonts/vf/public/cmcyr/kcmmi9.vf + RELOC/fonts/vf/public/cmcyr/kcmmib10.vf + RELOC/fonts/vf/public/cmcyr/kcmr10.vf + RELOC/fonts/vf/public/cmcyr/kcmr12.vf + RELOC/fonts/vf/public/cmcyr/kcmr17.vf + RELOC/fonts/vf/public/cmcyr/kcmr5.vf + RELOC/fonts/vf/public/cmcyr/kcmr6.vf + RELOC/fonts/vf/public/cmcyr/kcmr7.vf + RELOC/fonts/vf/public/cmcyr/kcmr8.vf + RELOC/fonts/vf/public/cmcyr/kcmr9.vf + RELOC/fonts/vf/public/cmcyr/kcmsl10.vf + RELOC/fonts/vf/public/cmcyr/kcmsl12.vf + RELOC/fonts/vf/public/cmcyr/kcmsl8.vf + RELOC/fonts/vf/public/cmcyr/kcmsl9.vf + RELOC/fonts/vf/public/cmcyr/kcmsltt10.vf + RELOC/fonts/vf/public/cmcyr/kcmss10.vf + RELOC/fonts/vf/public/cmcyr/kcmss12.vf + RELOC/fonts/vf/public/cmcyr/kcmss17.vf + RELOC/fonts/vf/public/cmcyr/kcmss8.vf + RELOC/fonts/vf/public/cmcyr/kcmss9.vf + RELOC/fonts/vf/public/cmcyr/kcmssbx10.vf + RELOC/fonts/vf/public/cmcyr/kcmssdc10.vf + RELOC/fonts/vf/public/cmcyr/kcmssi10.vf + RELOC/fonts/vf/public/cmcyr/kcmssi12.vf + RELOC/fonts/vf/public/cmcyr/kcmssi17.vf + RELOC/fonts/vf/public/cmcyr/kcmssi8.vf + RELOC/fonts/vf/public/cmcyr/kcmssi9.vf + RELOC/fonts/vf/public/cmcyr/kcmssq8.vf + RELOC/fonts/vf/public/cmcyr/kcmssqi8.vf + RELOC/fonts/vf/public/cmcyr/kcmti10.vf + RELOC/fonts/vf/public/cmcyr/kcmti12.vf + RELOC/fonts/vf/public/cmcyr/kcmti7.vf + RELOC/fonts/vf/public/cmcyr/kcmti8.vf + RELOC/fonts/vf/public/cmcyr/kcmti9.vf + RELOC/fonts/vf/public/cmcyr/kcmtt10.vf + RELOC/fonts/vf/public/cmcyr/kcmtt12.vf + RELOC/fonts/vf/public/cmcyr/kcmtt8.vf + RELOC/fonts/vf/public/cmcyr/kcmtt9.vf + RELOC/fonts/vf/public/cmcyr/kcmu10.vf + RELOC/fonts/vf/public/cmcyr/wcmb10.vf + RELOC/fonts/vf/public/cmcyr/wcmbx10.vf + RELOC/fonts/vf/public/cmcyr/wcmbx12.vf + RELOC/fonts/vf/public/cmcyr/wcmbx5.vf + RELOC/fonts/vf/public/cmcyr/wcmbx6.vf + RELOC/fonts/vf/public/cmcyr/wcmbx7.vf + RELOC/fonts/vf/public/cmcyr/wcmbx8.vf + RELOC/fonts/vf/public/cmcyr/wcmbx9.vf + RELOC/fonts/vf/public/cmcyr/wcmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/wcmbxti10.vf + RELOC/fonts/vf/public/cmcyr/wcmcsc10.vf + RELOC/fonts/vf/public/cmcyr/wcmcsc8.vf + RELOC/fonts/vf/public/cmcyr/wcmcsc9.vf + RELOC/fonts/vf/public/cmcyr/wcminch.vf + RELOC/fonts/vf/public/cmcyr/wcmitt10.vf + RELOC/fonts/vf/public/cmcyr/wcmmi10.vf + RELOC/fonts/vf/public/cmcyr/wcmmi12.vf + RELOC/fonts/vf/public/cmcyr/wcmmi5.vf + RELOC/fonts/vf/public/cmcyr/wcmmi6.vf + RELOC/fonts/vf/public/cmcyr/wcmmi7.vf + RELOC/fonts/vf/public/cmcyr/wcmmi8.vf + RELOC/fonts/vf/public/cmcyr/wcmmi9.vf + RELOC/fonts/vf/public/cmcyr/wcmmib10.vf + RELOC/fonts/vf/public/cmcyr/wcmr10.vf + RELOC/fonts/vf/public/cmcyr/wcmr12.vf + RELOC/fonts/vf/public/cmcyr/wcmr17.vf + RELOC/fonts/vf/public/cmcyr/wcmr5.vf + RELOC/fonts/vf/public/cmcyr/wcmr6.vf + RELOC/fonts/vf/public/cmcyr/wcmr7.vf + RELOC/fonts/vf/public/cmcyr/wcmr8.vf + RELOC/fonts/vf/public/cmcyr/wcmr9.vf + RELOC/fonts/vf/public/cmcyr/wcmsl10.vf + RELOC/fonts/vf/public/cmcyr/wcmsl12.vf + RELOC/fonts/vf/public/cmcyr/wcmsl8.vf + RELOC/fonts/vf/public/cmcyr/wcmsl9.vf + RELOC/fonts/vf/public/cmcyr/wcmsltt10.vf + RELOC/fonts/vf/public/cmcyr/wcmss10.vf + RELOC/fonts/vf/public/cmcyr/wcmss12.vf + RELOC/fonts/vf/public/cmcyr/wcmss17.vf + RELOC/fonts/vf/public/cmcyr/wcmss8.vf + RELOC/fonts/vf/public/cmcyr/wcmss9.vf + RELOC/fonts/vf/public/cmcyr/wcmssbx10.vf + RELOC/fonts/vf/public/cmcyr/wcmssdc10.vf + RELOC/fonts/vf/public/cmcyr/wcmssi10.vf + RELOC/fonts/vf/public/cmcyr/wcmssi12.vf + RELOC/fonts/vf/public/cmcyr/wcmssi17.vf + RELOC/fonts/vf/public/cmcyr/wcmssi8.vf + RELOC/fonts/vf/public/cmcyr/wcmssi9.vf + RELOC/fonts/vf/public/cmcyr/wcmssq8.vf + RELOC/fonts/vf/public/cmcyr/wcmssqi8.vf + RELOC/fonts/vf/public/cmcyr/wcmti10.vf + RELOC/fonts/vf/public/cmcyr/wcmti12.vf + RELOC/fonts/vf/public/cmcyr/wcmti7.vf + RELOC/fonts/vf/public/cmcyr/wcmti8.vf + RELOC/fonts/vf/public/cmcyr/wcmti9.vf + RELOC/fonts/vf/public/cmcyr/wcmtt10.vf + RELOC/fonts/vf/public/cmcyr/wcmtt12.vf + RELOC/fonts/vf/public/cmcyr/wcmtt8.vf + RELOC/fonts/vf/public/cmcyr/wcmtt9.vf + RELOC/fonts/vf/public/cmcyr/wcmu10.vf + RELOC/fonts/vf/public/cmcyr/xcmb10.vf + RELOC/fonts/vf/public/cmcyr/xcmbx10.vf + RELOC/fonts/vf/public/cmcyr/xcmbx12.vf + RELOC/fonts/vf/public/cmcyr/xcmbx5.vf + RELOC/fonts/vf/public/cmcyr/xcmbx6.vf + RELOC/fonts/vf/public/cmcyr/xcmbx7.vf + RELOC/fonts/vf/public/cmcyr/xcmbx8.vf + RELOC/fonts/vf/public/cmcyr/xcmbx9.vf + RELOC/fonts/vf/public/cmcyr/xcmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/xcmbxti10.vf + RELOC/fonts/vf/public/cmcyr/xcmcsc10.vf + RELOC/fonts/vf/public/cmcyr/xcmcsc8.vf + RELOC/fonts/vf/public/cmcyr/xcmcsc9.vf + RELOC/fonts/vf/public/cmcyr/xcminch.vf + RELOC/fonts/vf/public/cmcyr/xcmitt10.vf + RELOC/fonts/vf/public/cmcyr/xcmmi10.vf + RELOC/fonts/vf/public/cmcyr/xcmmi12.vf + RELOC/fonts/vf/public/cmcyr/xcmmi5.vf + RELOC/fonts/vf/public/cmcyr/xcmmi6.vf + RELOC/fonts/vf/public/cmcyr/xcmmi7.vf + RELOC/fonts/vf/public/cmcyr/xcmmi8.vf + RELOC/fonts/vf/public/cmcyr/xcmmi9.vf + RELOC/fonts/vf/public/cmcyr/xcmmib10.vf + RELOC/fonts/vf/public/cmcyr/xcmr10.vf + RELOC/fonts/vf/public/cmcyr/xcmr12.vf + RELOC/fonts/vf/public/cmcyr/xcmr17.vf + RELOC/fonts/vf/public/cmcyr/xcmr5.vf + RELOC/fonts/vf/public/cmcyr/xcmr6.vf + RELOC/fonts/vf/public/cmcyr/xcmr7.vf + RELOC/fonts/vf/public/cmcyr/xcmr8.vf + RELOC/fonts/vf/public/cmcyr/xcmr9.vf + RELOC/fonts/vf/public/cmcyr/xcmsl10.vf + RELOC/fonts/vf/public/cmcyr/xcmsl12.vf + RELOC/fonts/vf/public/cmcyr/xcmsl8.vf + RELOC/fonts/vf/public/cmcyr/xcmsl9.vf + RELOC/fonts/vf/public/cmcyr/xcmsltt10.vf + RELOC/fonts/vf/public/cmcyr/xcmss10.vf + RELOC/fonts/vf/public/cmcyr/xcmss12.vf + RELOC/fonts/vf/public/cmcyr/xcmss17.vf + RELOC/fonts/vf/public/cmcyr/xcmss8.vf + RELOC/fonts/vf/public/cmcyr/xcmss9.vf + RELOC/fonts/vf/public/cmcyr/xcmssbx10.vf + RELOC/fonts/vf/public/cmcyr/xcmssdc10.vf + RELOC/fonts/vf/public/cmcyr/xcmssi10.vf + RELOC/fonts/vf/public/cmcyr/xcmssi12.vf + RELOC/fonts/vf/public/cmcyr/xcmssi17.vf + RELOC/fonts/vf/public/cmcyr/xcmssi8.vf + RELOC/fonts/vf/public/cmcyr/xcmssi9.vf + RELOC/fonts/vf/public/cmcyr/xcmssq8.vf + RELOC/fonts/vf/public/cmcyr/xcmssqi8.vf + RELOC/fonts/vf/public/cmcyr/xcmti10.vf + RELOC/fonts/vf/public/cmcyr/xcmti12.vf + RELOC/fonts/vf/public/cmcyr/xcmti7.vf + RELOC/fonts/vf/public/cmcyr/xcmti8.vf + RELOC/fonts/vf/public/cmcyr/xcmti9.vf + RELOC/fonts/vf/public/cmcyr/xcmtt10.vf + RELOC/fonts/vf/public/cmcyr/xcmtt12.vf + RELOC/fonts/vf/public/cmcyr/xcmtt8.vf + RELOC/fonts/vf/public/cmcyr/xcmtt9.vf + RELOC/fonts/vf/public/cmcyr/xcmu10.vf + RELOC/fonts/vf/public/cmcyr/ycmb10.vf + RELOC/fonts/vf/public/cmcyr/ycmbx10.vf + RELOC/fonts/vf/public/cmcyr/ycmbx12.vf + RELOC/fonts/vf/public/cmcyr/ycmbx5.vf + RELOC/fonts/vf/public/cmcyr/ycmbx6.vf + RELOC/fonts/vf/public/cmcyr/ycmbx7.vf + RELOC/fonts/vf/public/cmcyr/ycmbx8.vf + RELOC/fonts/vf/public/cmcyr/ycmbx9.vf + RELOC/fonts/vf/public/cmcyr/ycmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/ycmbxti10.vf + RELOC/fonts/vf/public/cmcyr/ycmcsc10.vf + RELOC/fonts/vf/public/cmcyr/ycmcsc8.vf + RELOC/fonts/vf/public/cmcyr/ycmcsc9.vf + RELOC/fonts/vf/public/cmcyr/ycminch.vf + RELOC/fonts/vf/public/cmcyr/ycmitt10.vf + RELOC/fonts/vf/public/cmcyr/ycmmi10.vf + RELOC/fonts/vf/public/cmcyr/ycmmi12.vf + RELOC/fonts/vf/public/cmcyr/ycmmi5.vf + RELOC/fonts/vf/public/cmcyr/ycmmi6.vf + RELOC/fonts/vf/public/cmcyr/ycmmi7.vf + RELOC/fonts/vf/public/cmcyr/ycmmi8.vf + RELOC/fonts/vf/public/cmcyr/ycmmi9.vf + RELOC/fonts/vf/public/cmcyr/ycmmib10.vf + RELOC/fonts/vf/public/cmcyr/ycmr10.vf + RELOC/fonts/vf/public/cmcyr/ycmr12.vf + RELOC/fonts/vf/public/cmcyr/ycmr17.vf + RELOC/fonts/vf/public/cmcyr/ycmr5.vf + RELOC/fonts/vf/public/cmcyr/ycmr6.vf + RELOC/fonts/vf/public/cmcyr/ycmr7.vf + RELOC/fonts/vf/public/cmcyr/ycmr8.vf + RELOC/fonts/vf/public/cmcyr/ycmr9.vf + RELOC/fonts/vf/public/cmcyr/ycmsl10.vf + RELOC/fonts/vf/public/cmcyr/ycmsl12.vf + RELOC/fonts/vf/public/cmcyr/ycmsl8.vf + RELOC/fonts/vf/public/cmcyr/ycmsl9.vf + RELOC/fonts/vf/public/cmcyr/ycmsltt10.vf + RELOC/fonts/vf/public/cmcyr/ycmss10.vf + RELOC/fonts/vf/public/cmcyr/ycmss12.vf + RELOC/fonts/vf/public/cmcyr/ycmss17.vf + RELOC/fonts/vf/public/cmcyr/ycmss8.vf + RELOC/fonts/vf/public/cmcyr/ycmss9.vf + RELOC/fonts/vf/public/cmcyr/ycmssbx10.vf + RELOC/fonts/vf/public/cmcyr/ycmssdc10.vf + RELOC/fonts/vf/public/cmcyr/ycmssi10.vf + RELOC/fonts/vf/public/cmcyr/ycmssi12.vf + RELOC/fonts/vf/public/cmcyr/ycmssi17.vf + RELOC/fonts/vf/public/cmcyr/ycmssi8.vf + RELOC/fonts/vf/public/cmcyr/ycmssi9.vf + RELOC/fonts/vf/public/cmcyr/ycmssq8.vf + RELOC/fonts/vf/public/cmcyr/ycmssqi8.vf + RELOC/fonts/vf/public/cmcyr/ycmti10.vf + RELOC/fonts/vf/public/cmcyr/ycmti12.vf + RELOC/fonts/vf/public/cmcyr/ycmti7.vf + RELOC/fonts/vf/public/cmcyr/ycmti8.vf + RELOC/fonts/vf/public/cmcyr/ycmti9.vf + RELOC/fonts/vf/public/cmcyr/ycmtt10.vf + RELOC/fonts/vf/public/cmcyr/ycmtt12.vf + RELOC/fonts/vf/public/cmcyr/ycmtt8.vf + RELOC/fonts/vf/public/cmcyr/ycmtt9.vf + RELOC/fonts/vf/public/cmcyr/ycmu10.vf +catalogue-ctan /fonts/cyrillic/cmcyr +catalogue-license pd +catalogue-topics font font-cyrillic font-type1 font-mf + +name cmdstring +category Package +revision 15878 +shortdesc Get command name reliably +relocated 1 +longdesc Extracts the letters of a command's name (e.g., foo for command +longdesc \foo), in a reliable way. +containersize 872 +containerchecksum b05a8f8d326a6546b7c865e4cbc1afdfb0fa50993f4ad5e3b3a1e1781be9ed7590e1dd17b18d58f8a96c83aa2fe6218328b2df3e193e2dc7923d051374ebc9ba +doccontainersize 346136 +doccontainerchecksum c102fcd054597d84d98a4f74656f36a9e1aa53623bebaa4ef39f341ddb889062a0e0c705074a4909bf50ae3cdc9a0e0da06fc6b12fde10bcaf5391fe6c792818 +docfiles size=90 + RELOC/doc/latex/cmdstring/README details="Readme" + RELOC/doc/latex/cmdstring/cmdstring.pdf details="Package documentation" + RELOC/doc/latex/cmdstring/cmdstring.tex +runfiles size=1 + RELOC/tex/latex/cmdstring/cmdstring.sty +catalogue-ctan /macros/latex/contrib/cmdstring +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.1 + +name cmdtrack +category Package +revision 28910 +shortdesc Check used commands +relocated 1 +longdesc The package keeps track of whether a command defined in a +longdesc document preamble is actually used somewhere in the document. +longdesc After the package is loaded in the preamble of a document, all +longdesc \newcommand (and similar command definitions) between that +longdesc point and the beginning of the document will be marked for +longdesc logging. At the end of the document a report of command usage +longdesc will be printed in the TeX log, for example: "mdash was used on +longdesc line 25"; "ndash was never used". +containersize 2884 +containerchecksum 22de643d5b45f3898a1aeee44ae88594b545af34bb5bdac937753c13d31071872a78935dc2c73fb22c0e591d164f618549a2bd67a00550f3fb70753a951ad4cc +doccontainersize 131540 +doccontainerchecksum 2a69b054e1de07b31426e653af45125824bd037cf5a24fcde1f0fe1b6aa3eb925688959aa84094ecc65954b92030e1b78545db18f08a39990c4412d487ce2284 +docfiles size=34 + RELOC/doc/latex/cmdtrack/Makefile + RELOC/doc/latex/cmdtrack/README + RELOC/doc/latex/cmdtrack/cmdtrack.pdf details="Package documentation" +srccontainersize 5748 +srccontainerchecksum c6b02dd165bfb3ab40ee05aa3ac9df74faff8167de021495fb08e0d173b83f75453915a634d81d260d4739166b2e5a519b8cecfc7807d25f396c27c5b65f58f3 +srcfiles size=5 + RELOC/source/latex/cmdtrack/cmdtrack.dtx + RELOC/source/latex/cmdtrack/cmdtrack.ins +runfiles size=2 + RELOC/tex/latex/cmdtrack/cmdtrack.sty +catalogue-ctan /macros/latex/contrib/cmdtrack +catalogue-license lppl1 +catalogue-topics debug-supp + +name cmexb +category Package +revision 54074 +shortdesc cmexb10 metrics and Type 1 +relocated 1 +longdesc Computer Modern Math Extension bold, metrics and .pfb file. +longdesc Made by Petr Olsak via autotracing. +execute addMap cmexb.map +containersize 31728 +containerchecksum 584aa7d96c86be809a1da92955c92c9e73946fc236e9991925431bae4041001f6b4d7029b13004ada0435ae291a90fce8990e527188e1f35a3be922a39faefed +doccontainersize 916 +doccontainerchecksum e6f362bfa79f6c32537245af645f8b6a343ef5a9204b9cd50cfab9337e9617554bfc3fc813fe4c65d2664fc617d460f15a4ea099961699bbee82381df0856760 +docfiles size=1 + RELOC/doc/fonts/cmexb/README-cmexb +runfiles size=11 + RELOC/fonts/map/dvips/cmexb/cmexb.map + RELOC/fonts/tfm/public/cmexb/cmexb10.tfm + RELOC/fonts/type1/public/cmexb/cmexb10.pfb + +name cmextra +category Package +revision 57866 +catalogue knuth-local +shortdesc Knuth's local information +relocated 1 +longdesc A collection of experimental programs and developments based +longdesc on, or complementary to, the matter in his distribution +longdesc directories. +containersize 21740 +containerchecksum fa6bd1e79ca96500080405e01a7524a6fd13358335d34b3e2983a7f33f7b7a50ff4106ee5f2f483f3e040a3a7135b4133d727c6a7cb0c90f63be40e5410e3b48 +runfiles size=58 + RELOC/fonts/source/public/cmextra/bible12.mf + RELOC/fonts/source/public/cmextra/cmbxcd10.mf + RELOC/fonts/source/public/cmextra/cmbxti12.mf + RELOC/fonts/source/public/cmextra/cmbxti7.mf + RELOC/fonts/source/public/cmextra/cmcscsl10.mf + RELOC/fonts/source/public/cmextra/cmfibs8.mf + RELOC/fonts/source/public/cmextra/cmitt12.mf + RELOC/fonts/source/public/cmextra/cmitt9.mf + RELOC/fonts/source/public/cmextra/cmman.mf + RELOC/fonts/source/public/cmextra/cmntex10.mf + RELOC/fonts/source/public/cmextra/cmntt10.mf + RELOC/fonts/source/public/cmextra/cmsl6.mf + RELOC/fonts/source/public/cmextra/cmsltt9.mf + RELOC/fonts/source/public/cmextra/cmssbxo10.mf + RELOC/fonts/source/public/cmextra/cmsslu30.mf + RELOC/fonts/source/public/cmextra/cmssu30.mf + RELOC/fonts/source/public/cmextra/cmsytt10.mf + RELOC/fonts/source/public/cmextra/cmtim.mf + RELOC/fonts/source/public/cmextra/cmvtti10.mf + RELOC/fonts/source/public/cmextra/diam12.mf + RELOC/fonts/source/public/cmextra/gen.mf + RELOC/fonts/source/public/cmextra/gen10.mf + RELOC/fonts/source/public/cmextra/gen8.mf + RELOC/fonts/source/public/cmextra/gen9.mf + RELOC/fonts/tfm/public/cmextra/bible12.tfm + RELOC/fonts/tfm/public/cmextra/cmbxcd10.tfm + RELOC/fonts/tfm/public/cmextra/cmbxti12.tfm + RELOC/fonts/tfm/public/cmextra/cmbxti7.tfm + RELOC/fonts/tfm/public/cmextra/cmcscsl10.tfm + RELOC/fonts/tfm/public/cmextra/cmfibs8.tfm + RELOC/fonts/tfm/public/cmextra/cmitt12.tfm + RELOC/fonts/tfm/public/cmextra/cmitt9.tfm + RELOC/fonts/tfm/public/cmextra/cmman.tfm + RELOC/fonts/tfm/public/cmextra/cmntex10.tfm + RELOC/fonts/tfm/public/cmextra/cmntt10.tfm + RELOC/fonts/tfm/public/cmextra/cmsl6.tfm + RELOC/fonts/tfm/public/cmextra/cmsltt9.tfm + RELOC/fonts/tfm/public/cmextra/cmssbxo10.tfm + RELOC/fonts/tfm/public/cmextra/cmsslu30.tfm + RELOC/fonts/tfm/public/cmextra/cmssu30.tfm + RELOC/fonts/tfm/public/cmextra/cmsytt10.tfm + RELOC/fonts/tfm/public/cmextra/cmtim.tfm + RELOC/fonts/tfm/public/cmextra/cmvtti10.tfm + RELOC/fonts/tfm/public/cmextra/diam12.tfm + RELOC/fonts/tfm/public/cmextra/gen10.tfm + RELOC/fonts/tfm/public/cmextra/gen8.tfm + RELOC/fonts/tfm/public/cmextra/gen9.tfm +catalogue-also knuth-dist +catalogue-ctan /systems/knuth/local +catalogue-license pd +catalogue-topics collection + +name cmll +category Package +revision 17964 +shortdesc Symbols for linear logic +relocated 1 +longdesc This is a very small font set that contain some symbols useful +longdesc in linear logic, which are apparently not available elsewhere. +longdesc Variants are included for use with Computer Modern serif and +longdesc sans-serif and with the AMS Euler series. The font is provided +longdesc both as Metafont source, and in Adobe Type 1 format. LaTeX +longdesc support is provided. +execute addMixedMap cmll.map +containersize 329904 +containerchecksum 8470819c5a37b3d8d1d44aae53b62ff020087e1125f381e51ef4a639fd6b2394c3d6f15a3a86fe70e61a4545213059bde6fc3e9d06cd054e46218e90e64c0543 +doccontainersize 96492 +doccontainerchecksum 71a7cd27a2744e8e3ab09b8fbbc514eb2e38d9740349139212f0861c67948fa1a98728acb1d22a4397fe95d8efd5c6fcb87a1843a1f9dbd0d161e2e835e1ac11 +docfiles size=28 + RELOC/doc/fonts/cmll/README details="Readme" + RELOC/doc/fonts/cmll/cmll.pdf details="Package documentation" +srccontainersize 4464 +srccontainerchecksum de17c8e0627408358ae3de41a5bf557d99abf76bb480ab28ef9df424d8b7ae1f73ca2e30f4eeb26ac9eb2dd36ddafa143cd49ce6618b2ca36fcfc6e22e83d217 +srcfiles size=5 + RELOC/source/latex/cmll/cmll.dtx + RELOC/source/latex/cmll/cmll.ins +runfiles size=191 + RELOC/fonts/map/dvips/cmll/cmll.map + RELOC/fonts/source/public/cmll/cmllbx10.mf + RELOC/fonts/source/public/cmll/cmllbx12.mf + RELOC/fonts/source/public/cmll/cmllbx5.mf + RELOC/fonts/source/public/cmll/cmllbx6.mf + RELOC/fonts/source/public/cmll/cmllbx7.mf + RELOC/fonts/source/public/cmll/cmllbx8.mf + RELOC/fonts/source/public/cmll/cmllbx9.mf + RELOC/fonts/source/public/cmll/cmllr10.mf + RELOC/fonts/source/public/cmll/cmllr12.mf + RELOC/fonts/source/public/cmll/cmllr17.mf + RELOC/fonts/source/public/cmll/cmllr5.mf + RELOC/fonts/source/public/cmll/cmllr6.mf + RELOC/fonts/source/public/cmll/cmllr7.mf + RELOC/fonts/source/public/cmll/cmllr8.mf + RELOC/fonts/source/public/cmll/cmllr9.mf + RELOC/fonts/source/public/cmll/cmllss10.mf + RELOC/fonts/source/public/cmll/cmllss12.mf + RELOC/fonts/source/public/cmll/cmllss17.mf + RELOC/fonts/source/public/cmll/cmllss8.mf + RELOC/fonts/source/public/cmll/cmllss9.mf + RELOC/fonts/source/public/cmll/cmllssbx10.mf + RELOC/fonts/source/public/cmll/eullbx10.mf + RELOC/fonts/source/public/cmll/eullbx5.mf + RELOC/fonts/source/public/cmll/eullbx6.mf + RELOC/fonts/source/public/cmll/eullbx7.mf + RELOC/fonts/source/public/cmll/eullbx8.mf + RELOC/fonts/source/public/cmll/eullbx9.mf + RELOC/fonts/source/public/cmll/eullr10.mf + RELOC/fonts/source/public/cmll/eullr5.mf + RELOC/fonts/source/public/cmll/eullr6.mf + RELOC/fonts/source/public/cmll/eullr7.mf + RELOC/fonts/source/public/cmll/eullr8.mf + RELOC/fonts/source/public/cmll/eullr9.mf + RELOC/fonts/source/public/cmll/llcommon.mf + RELOC/fonts/source/public/cmll/lleusym.mf + RELOC/fonts/source/public/cmll/llsymbols.mf + RELOC/fonts/tfm/public/cmll/cmllbx10.tfm + RELOC/fonts/tfm/public/cmll/cmllbx12.tfm + RELOC/fonts/tfm/public/cmll/cmllbx5.tfm + RELOC/fonts/tfm/public/cmll/cmllbx6.tfm + RELOC/fonts/tfm/public/cmll/cmllbx7.tfm + RELOC/fonts/tfm/public/cmll/cmllbx8.tfm + RELOC/fonts/tfm/public/cmll/cmllbx9.tfm + RELOC/fonts/tfm/public/cmll/cmllr10.tfm + RELOC/fonts/tfm/public/cmll/cmllr12.tfm + RELOC/fonts/tfm/public/cmll/cmllr17.tfm + RELOC/fonts/tfm/public/cmll/cmllr5.tfm + RELOC/fonts/tfm/public/cmll/cmllr6.tfm + RELOC/fonts/tfm/public/cmll/cmllr7.tfm + RELOC/fonts/tfm/public/cmll/cmllr8.tfm + RELOC/fonts/tfm/public/cmll/cmllr9.tfm + RELOC/fonts/tfm/public/cmll/cmllss10.tfm + RELOC/fonts/tfm/public/cmll/cmllss12.tfm + RELOC/fonts/tfm/public/cmll/cmllss17.tfm + RELOC/fonts/tfm/public/cmll/cmllss8.tfm + RELOC/fonts/tfm/public/cmll/cmllss9.tfm + RELOC/fonts/tfm/public/cmll/cmllssbx10.tfm + RELOC/fonts/tfm/public/cmll/eullbx10.tfm + RELOC/fonts/tfm/public/cmll/eullbx5.tfm + RELOC/fonts/tfm/public/cmll/eullbx6.tfm + RELOC/fonts/tfm/public/cmll/eullbx7.tfm + RELOC/fonts/tfm/public/cmll/eullbx8.tfm + RELOC/fonts/tfm/public/cmll/eullbx9.tfm + RELOC/fonts/tfm/public/cmll/eullr10.tfm + RELOC/fonts/tfm/public/cmll/eullr5.tfm + RELOC/fonts/tfm/public/cmll/eullr6.tfm + RELOC/fonts/tfm/public/cmll/eullr7.tfm + RELOC/fonts/tfm/public/cmll/eullr8.tfm + RELOC/fonts/tfm/public/cmll/eullr9.tfm + RELOC/fonts/type1/public/cmll/cmllbx10.pfb + RELOC/fonts/type1/public/cmll/cmllbx12.pfb + RELOC/fonts/type1/public/cmll/cmllbx5.pfb + RELOC/fonts/type1/public/cmll/cmllbx6.pfb + RELOC/fonts/type1/public/cmll/cmllbx7.pfb + RELOC/fonts/type1/public/cmll/cmllbx8.pfb + RELOC/fonts/type1/public/cmll/cmllbx9.pfb + RELOC/fonts/type1/public/cmll/cmllr10.pfb + RELOC/fonts/type1/public/cmll/cmllr12.pfb + RELOC/fonts/type1/public/cmll/cmllr17.pfb + RELOC/fonts/type1/public/cmll/cmllr5.pfb + RELOC/fonts/type1/public/cmll/cmllr6.pfb + RELOC/fonts/type1/public/cmll/cmllr7.pfb + RELOC/fonts/type1/public/cmll/cmllr8.pfb + RELOC/fonts/type1/public/cmll/cmllr9.pfb + RELOC/fonts/type1/public/cmll/cmllss10.pfb + RELOC/fonts/type1/public/cmll/cmllss12.pfb + RELOC/fonts/type1/public/cmll/cmllss17.pfb + RELOC/fonts/type1/public/cmll/cmllss8.pfb + RELOC/fonts/type1/public/cmll/cmllss9.pfb + RELOC/fonts/type1/public/cmll/cmllssbx10.pfb + RELOC/fonts/type1/public/cmll/eullbx10.pfb + RELOC/fonts/type1/public/cmll/eullbx5.pfb + RELOC/fonts/type1/public/cmll/eullbx6.pfb + RELOC/fonts/type1/public/cmll/eullbx7.pfb + RELOC/fonts/type1/public/cmll/eullbx8.pfb + RELOC/fonts/type1/public/cmll/eullbx9.pfb + RELOC/fonts/type1/public/cmll/eullr10.pfb + RELOC/fonts/type1/public/cmll/eullr5.pfb + RELOC/fonts/type1/public/cmll/eullr6.pfb + RELOC/fonts/type1/public/cmll/eullr7.pfb + RELOC/fonts/type1/public/cmll/eullr8.pfb + RELOC/fonts/type1/public/cmll/eullr9.pfb + RELOC/tex/latex/cmll/cmll.sty + RELOC/tex/latex/cmll/ucmllr.fd + RELOC/tex/latex/cmll/ucmllss.fd + RELOC/tex/latex/cmll/ueull.fd +catalogue-ctan /fonts/cmll +catalogue-license lppl +catalogue-topics font font-maths font-mf font-type1 + +name cmpica +category Package +revision 15878 +shortdesc A Computer Modern Pica variant +relocated 1 +longdesc An approximate equivalent of the Xerox Pica typeface; the font +longdesc is optimised for submitting fiction manuscripts to mainline +longdesc publishers. The font is a fixed-width one, rather less heavy +longdesc than Computer Modern typewriter. Emphasis for bold-face comes +longdesc from a wavy underline of each letter. The two fonts are +longdesc supplied as Metafont source. +containersize 6448 +containerchecksum 2aac63861c3c1099054286647917f4ab594fd535de9d513f790cb70e8a38278ffda0be29656e1da57206c7bac21928cf5179bd1cc22f50e0f10d1ca8083f4b86 +doccontainersize 1092 +doccontainerchecksum 7c6251f1c5090328c93f6ec224bbb6d05433b5471c6cb8b4d7f3b9ff05f9be8ad49587d24a34702fb23b9f1803ca3df3a638b16335944a9b2dc35422ca8bf9fe +docfiles size=1 + RELOC/doc/latex/cmpica/README details="Readme" +runfiles size=13 + RELOC/fonts/source/public/cmpica/cmpica.mf + RELOC/fonts/source/public/cmpica/cmpicab.mf + RELOC/fonts/source/public/cmpica/cmpicati.mf + RELOC/fonts/source/public/cmpica/pcpunct.mf + RELOC/fonts/source/public/cmpica/pica.mf + RELOC/fonts/tfm/public/cmpica/cmpica.tfm + RELOC/fonts/tfm/public/cmpica/cmpicab.tfm + RELOC/fonts/tfm/public/cmpica/cmpicati.tfm +catalogue-ctan /fonts/cmpica +catalogue-license pd +catalogue-topics font font-mf + +name cmpj +category Package +revision 58506 +shortdesc Style for the journal Condensed Matter Physics +relocated 1 +longdesc The package contains macros and some documentation for +longdesc typesetting papers for submission to the Condensed Matter +longdesc Physics journal published by the Institute for Condensed Matter +longdesc Physics of the National Academy of Sciences of Ukraine. +containersize 49420 +containerchecksum 11eafc9af424689d7f4a225eea5f5d5f6123f79265f805506f4e98155d97e557fd96a6ce5dba6b1d598817ec87f561189cf48267f08c7cd7823781eaced17e55 +doccontainersize 548252 +doccontainerchecksum b1113cf0dbc02b69e3ed72d70168103b742d85c2115e78b1f0feece71f342293fae109f112be948e5e106dde226ae8d4d53706c3846a641b8d6e8417e8444408 +docfiles size=196 + RELOC/doc/latex/cmpj/README details="Readme" + RELOC/doc/latex/cmpj/cmpjxampl.bib + RELOC/doc/latex/cmpj/eps_demo.eps + RELOC/doc/latex/cmpj/eps_demo.pdf + RELOC/doc/latex/cmpj/icmphome.eps + RELOC/doc/latex/cmpj/icmphome.pdf + RELOC/doc/latex/cmpj/template.pdf details="Template and instructions to authors" + RELOC/doc/latex/cmpj/template.tex +runfiles size=76 + RELOC/bibtex/bst/cmpj/cmpj.bst + RELOC/tex/latex/cmpj/cmp-logo.eps + RELOC/tex/latex/cmpj/cmp-logo.pdf + RELOC/tex/latex/cmpj/cmpj-cc-by-small.eps + RELOC/tex/latex/cmpj/cmpj-cc-by-small.pdf + RELOC/tex/latex/cmpj/cmpj.sty + RELOC/tex/latex/cmpj/cmpj2.sty + RELOC/tex/latex/cmpj/cmpj3.sty +catalogue-contact-home http://www.icmp.lviv.ua/journal/Instructions.html +catalogue-ctan /macros/latex/contrib/cmpj +catalogue-license lppl +catalogue-topics physics journalpub +catalogue-version 3.03 + +name cmsd +category Package +revision 18787 +shortdesc Interfaces to the CM Sans Serif Bold fonts +relocated 1 +longdesc Thr purpose of the package is to provide an alternative +longdesc interface to the CM Sans Serif boldface fonts. The EC (T1, +longdesc Cork) encoded versions of the 'CM Sans Serif boldface extended' +longdesc fonts differ considerably from the traditionally (OT1) encoded +longdesc ones: at large sizes, >10pt, they have thinner strokes and are +longdesc much wider. At 25pt they are hardly to be recognized as being +longdesc 'boldface'. This package attempts to make these T1 fonts look +longdesc like the traditional ones did. You do not need any new fonts; +longdesc the package just changes the way LaTeX makes use of the current +longdesc ones. +containersize 1236 +containerchecksum 97e1830bdbab04e321433f43e14d65fd2e9820d46a6fb3616f2cea38a54208e80e1238eba7b5cfd20137f6e3a3da3a1586a7caa3e0a495ed91235a05120d444c +doccontainersize 2288 +doccontainerchecksum f9994a39f6e14f40398abacfe0f4c1a9cbd71d7b55c29787105fdbf8212953fb761f1696cf35196d446b9905a967d2908d7e41e7742e5cd7dd538ac0e7d3f5d0 +docfiles size=2 + RELOC/doc/latex/cmsd/liesmich + RELOC/doc/latex/cmsd/readme details="Readme" +runfiles size=3 + RELOC/tex/latex/cmsd/cmsd.sty + RELOC/tex/latex/cmsd/t1cmsd.fd + RELOC/tex/latex/cmsd/ts1cmsd.fd +catalogue-ctan /macros/latex/contrib/cmsd +catalogue-license lppl +catalogue-topics font-supp + +name cmsrb +category Package +revision 54706 +shortdesc Computer Modern for Serbian and Macedonian +relocated 1 +longdesc This package provides provides Adobe Type 1 Computer Modern +longdesc fonts for the Serbian and Macedonian languages. Although the +longdesc cm-super package provides great support for cyrillic script in +longdesc various languages, there remains a problem with italic variants +longdesc of some letters for Serbian and Macedonian. This package +longdesc includes the correct shapes for italic letters \cyrb, \cyrg, +longdesc \cyrd, \cyrp, and \cyrt. It also offers some improvements in +longdesc letters and accents used in the Serbian language. Supported +longdesc encodings are: T1, T2A, TS1, X2 and OT2. The OT2 encoding is +longdesc modified so that it is now easy to transcribe Latin text to +longdesc Cyrillic. +execute addMap cmsrb.map +containersize 2299372 +containerchecksum 2fef47e94ba1a5ad0774667ac84e29040a3715c413990585aa09c866297beb61c7da533685bc1e102c8edb30d7bf6bddf8fee5486dd6d4d6ea9ebe51d2424196 +doccontainersize 711664 +doccontainerchecksum 9200b4da942f308cc60dc53b2fba9cefb7448e95d89f0c34d03604e5f7a9119aea4e762d70cfa35fd12f555f8c4ae1ab4c0b12abb04742e17b6e680bd80cc9d3 +docfiles size=256 + RELOC/doc/fonts/cmsrb/README.md details="Readme" + RELOC/doc/fonts/cmsrb/cmsrb-SR.pdf details="Package documentation (Serbian)" language="sr" + RELOC/doc/fonts/cmsrb/cmsrb-SR.tex + RELOC/doc/fonts/cmsrb/cmsrb.pdf details="Package documentation" + RELOC/doc/fonts/cmsrb/cmsrb.tex +runfiles size=1380 + RELOC/fonts/afm/public/cmsrb/cmsrbrb.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrc.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrd.afm + RELOC/fonts/afm/public/cmsrb/cmsrbri.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrr.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrs.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrx.afm + RELOC/fonts/afm/public/cmsrb/cmsrbry.afm + RELOC/fonts/afm/public/cmsrb/cmsrbsb.afm + RELOC/fonts/afm/public/cmsrb/cmsrbsr.afm + RELOC/fonts/afm/public/cmsrb/cmsrbss.afm + RELOC/fonts/afm/public/cmsrb/cmsrbst.afm + RELOC/fonts/afm/public/cmsrb/cmsrbtc.afm + RELOC/fonts/afm/public/cmsrb/cmsrbti.afm + RELOC/fonts/afm/public/cmsrb/cmsrbtr.afm + RELOC/fonts/afm/public/cmsrb/cmsrbts.afm + RELOC/fonts/enc/dvips/cmsrb/cmsrbecmsrb1.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbecmsrb2.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbot2.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbt1.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbt2a.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbts1.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbx2.enc + RELOC/fonts/map/dvips/cmsrb/cmsrb.map + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb1cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/ecmsrb2cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbts.tfm + RELOC/fonts/type1/public/cmsrb/cmsrbrb.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrc.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrd.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbri.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrr.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrs.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrx.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbry.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbsb.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbsr.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbss.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbst.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbtc.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbti.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbtr.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbts.pfb + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb1cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/ecmsrb2cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbri.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbry.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbss.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbst.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbti.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbts.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbts.vf + RELOC/tex/latex/cmsrb/cmsrb.sty + RELOC/tex/latex/cmsrb/ecmsrb1cmr.fd + RELOC/tex/latex/cmsrb/ecmsrb1cmsrbr.fd + RELOC/tex/latex/cmsrb/ecmsrb1cmsrbs.fd + RELOC/tex/latex/cmsrb/ecmsrb1cmsrbt.fd + RELOC/tex/latex/cmsrb/ecmsrb1enc.def + RELOC/tex/latex/cmsrb/ecmsrb2cmr.fd + RELOC/tex/latex/cmsrb/ecmsrb2cmsrbr.fd + RELOC/tex/latex/cmsrb/ecmsrb2cmsrbs.fd + RELOC/tex/latex/cmsrb/ecmsrb2cmsrbt.fd + RELOC/tex/latex/cmsrb/ecmsrb2enc.def + RELOC/tex/latex/cmsrb/ot2cmsrbr.fd + RELOC/tex/latex/cmsrb/ot2cmsrbs.fd + RELOC/tex/latex/cmsrb/ot2cmsrbt.fd + RELOC/tex/latex/cmsrb/t1cmsrbr.fd + RELOC/tex/latex/cmsrb/t1cmsrbs.fd + RELOC/tex/latex/cmsrb/t1cmsrbt.fd + RELOC/tex/latex/cmsrb/t2acmsrbr.fd + RELOC/tex/latex/cmsrb/t2acmsrbs.fd + RELOC/tex/latex/cmsrb/t2acmsrbt.fd + RELOC/tex/latex/cmsrb/ts1cmsrbr.fd + RELOC/tex/latex/cmsrb/ts1cmsrbs.fd + RELOC/tex/latex/cmsrb/ts1cmsrbt.fd + RELOC/tex/latex/cmsrb/x2cmsrbr.fd + RELOC/tex/latex/cmsrb/x2cmsrbs.fd + RELOC/tex/latex/cmsrb/x2cmsrbt.fd +catalogue-ctan /fonts/cmsrb +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 4.0 + +name cmtiup +category Package +revision 39728 +shortdesc Upright punctuation with CM italic +relocated 1 +longdesc The cmtiup fonts address a problem with the appearance of +longdesc punctuation in italic text in mathematical documents. To +longdesc achieve this, all punctuation characters are upright, and +longdesc kerning between letters and punctuation is adjusted to allow +longdesc for the italic correction. The fonts are implemented as a set +longdesc of vf files; a package for support in LaTeX 2e is provided. +containersize 43612 +containerchecksum 9412576d07ec490fda4dd01445f28e4b966d2664a81e5f44a574019df1eb4de4189b8d06edf7a1a3b57e8ade129b57c0147a96fa9b77337d9a906134e33f2067 +doccontainersize 585536 +doccontainerchecksum aae6105fc9e828715193bc4d251210f23ce6f4c4d703c79c244ff765a377f90055188f8af83e705da062cea8db8bf6b89beecc488cce32d7903fb7fb8c4bcad9 +docfiles size=204 + RELOC/doc/latex/cmtiup/README details="Readme" + RELOC/doc/latex/cmtiup/cmtiup.dtx + RELOC/doc/latex/cmtiup/cmtiup.ins + RELOC/doc/latex/cmtiup/cmtiup.pdf details="Package documentation" +runfiles size=165 + RELOC/fonts/source/public/cmtiup/cmtiup10.mf + RELOC/fonts/source/public/cmtiup/cmtiup12.mf + RELOC/fonts/source/public/cmtiup/cmtiup7.mf + RELOC/fonts/source/public/cmtiup/cmtiup8.mf + RELOC/fonts/source/public/cmtiup/cmtiup9.mf + RELOC/fonts/source/public/cmtiup/cmtiupgn.mf + RELOC/fonts/source/public/cmtiup/cmtiuplg.mf + RELOC/fonts/source/public/cmtiup/cmtiupp.mf + RELOC/fonts/tfm/public/cmtiup/cmbxtiup10.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup10.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup12.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup7.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup8.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup9.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0500.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0600.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0700.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0800.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0900.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1000.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1095.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1200.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1440.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1728.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup2074.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup2488.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup2986.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup3583.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0500.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0600.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0700.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0800.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0900.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1000.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1095.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1200.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1440.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1728.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup2074.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup2488.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup2986.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup3583.tfm + RELOC/fonts/vf/public/cmtiup/cmbxtiup10.vf + RELOC/fonts/vf/public/cmtiup/cmtiup10.vf + RELOC/fonts/vf/public/cmtiup/cmtiup12.vf + RELOC/fonts/vf/public/cmtiup/cmtiup7.vf + RELOC/fonts/vf/public/cmtiup/cmtiup8.vf + RELOC/fonts/vf/public/cmtiup/cmtiup9.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0500.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0600.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0700.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0800.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0900.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1000.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1095.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1200.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1440.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1728.vf + RELOC/fonts/vf/public/cmtiup/ecbiup2074.vf + RELOC/fonts/vf/public/cmtiup/ecbiup2488.vf + RELOC/fonts/vf/public/cmtiup/ecbiup2986.vf + RELOC/fonts/vf/public/cmtiup/ecbiup3583.vf + RELOC/fonts/vf/public/cmtiup/ectiup0500.vf + RELOC/fonts/vf/public/cmtiup/ectiup0600.vf + RELOC/fonts/vf/public/cmtiup/ectiup0700.vf + RELOC/fonts/vf/public/cmtiup/ectiup0800.vf + RELOC/fonts/vf/public/cmtiup/ectiup0900.vf + RELOC/fonts/vf/public/cmtiup/ectiup1000.vf + RELOC/fonts/vf/public/cmtiup/ectiup1095.vf + RELOC/fonts/vf/public/cmtiup/ectiup1200.vf + RELOC/fonts/vf/public/cmtiup/ectiup1440.vf + RELOC/fonts/vf/public/cmtiup/ectiup1728.vf + RELOC/fonts/vf/public/cmtiup/ectiup2074.vf + RELOC/fonts/vf/public/cmtiup/ectiup2488.vf + RELOC/fonts/vf/public/cmtiup/ectiup2986.vf + RELOC/fonts/vf/public/cmtiup/ectiup3583.vf + RELOC/tex/latex/cmtiup/cmtiup.sty +catalogue-also cmslup +catalogue-ctan /fonts/cm/cmtiup +catalogue-license lppl1.3 +catalogue-topics font font-mf font-virtual +catalogue-version 2.1 + +name cmupint +category Package +revision 54735 +shortdesc Upright integral symbols for Computer Modern +relocated 1 +longdesc This package contains various upright integral symbols to match +longdesc the Computer Modern font. +execute addMixedMap cmupint.map +containersize 44680 +containerchecksum ce08962145a80b7b6748145a7385cc78e361295d85ea96f24397aad3025b7eaa2e962d4d30380ca1a8d22da7175a3135abacef78a76d9d4615f03aed049a4b10 +doccontainersize 310712 +doccontainerchecksum 80cab8f9387e74db3b3650b8e7b055ecf1e094f75f0e43c4540b32658e43e392c82f3fa8ab6a6c08495ef6f9f2773501a7f282acaf7d7d640f0bd891cb8b1f08 +docfiles size=85 + RELOC/doc/fonts/cmupint/README.md details="Readme" + RELOC/doc/fonts/cmupint/cmupint.pdf details="Package documentation" + RELOC/doc/fonts/cmupint/cmupint.tex +runfiles size=42 + RELOC/fonts/afm/public/cmupint/cmupint.afm + RELOC/fonts/map/dvips/cmupint/cmupint.map + RELOC/fonts/source/public/cmupint/cmupint.mf + RELOC/fonts/source/public/cmupint/upintsym.mf + RELOC/fonts/source/public/cmupint/upintsymd.mf + RELOC/fonts/tfm/public/cmupint/cmupint.tfm + RELOC/fonts/type1/public/cmupint/cmupint.pfb + RELOC/tex/latex/cmupint/cmupint.sty + RELOC/tex/latex/cmupint/ucmupint.fd +catalogue-ctan /fonts/cmupint +catalogue-license lppl +catalogue-topics font-cm font-maths font-symbol-maths font-mf font-type1 font-supp +catalogue-version 1.1 + +name cnbwp +category Package +revision 32550 +shortdesc Typeset working papers of the Czech National Bank +relocated 1 +longdesc The package supports proper formatting of Working Papers of the +longdesc Czech National Bank (WP CNB). The package was developed for CNB +longdesc but it is also intended for authors from outside CNB. +containersize 9924 +containerchecksum 31c83774160e64dadc95afebe830ea1aa7c929e48f611cf5c9742cb66e12a3dd459928c85ed1378460247241fd4f007145b002ae7aabb88e773779124510c86f +doccontainersize 684304 +doccontainerchecksum d41f72a3c5482b1ec50f1bacbaf8bed5f926c5d522ab5e3574d71d68b2d7c63e20fa1df65962f94e53b70f75aa7dee5337d064c212990c0f3351c30b05b567ac +docfiles size=246 + RELOC/doc/latex/cnbwp/README details="Readme" + RELOC/doc/latex/cnbwp/biblio.tex + RELOC/doc/latex/cnbwp/cnbpaper.pdf + RELOC/doc/latex/cnbwp/cnbpaper.tex + RELOC/doc/latex/cnbwp/cnbsample.bib + RELOC/doc/latex/cnbwp/cnbwp-manual-cs.pdf details="Package documentation (Czech)" + RELOC/doc/latex/cnbwp/cnbwp-manual-cs.tex + RELOC/doc/latex/cnbwp/cnbwp-manual-en.pdf details="Package documentation (English)" + RELOC/doc/latex/cnbwp/cnbwp-manual-en.tex + RELOC/doc/latex/cnbwp/graph18.eps + RELOC/doc/latex/cnbwp/graph18.gif + RELOC/doc/latex/cnbwp/graph18.jpg + RELOC/doc/latex/cnbwp/graph18.pdf + RELOC/doc/latex/cnbwp/graph18.png + RELOC/doc/latex/cnbwp/numtable.tex + RELOC/doc/latex/cnbwp/widematrix.tex +runfiles size=15 + RELOC/bibtex/bst/cnbwp/abbrvcnb.bst + RELOC/makeindex/cnbwp/cnbindex.ist + RELOC/tex/latex/cnbwp/cnbwp-manual.sty + RELOC/tex/latex/cnbwp/cnbwp.cls + RELOC/tex/latex/cnbwp/cnbwpsizes.clo +catalogue-ctan /macros/latex/contrib/cnbwp +catalogue-license lppl +catalogue-topics misc-paper + +name cnltx +category Package +revision 55265 +shortdesc LaTeX tools and documenting facilities +relocated 1 +longdesc This is a versatile bundle of packages and classes for +longdesc consistent formatting of control sequences, package options, +longdesc source code examples, and writing a package manual (including +longdesc an index containing the explained control sequences, options, +longdesc ldots). The bundle also provides several other small ideas of +longdesc mine such as a mechansim for providing abbreviations etc. Not +longdesc at least it provides a number of programming tools. The +longdesc intention behind this bundle mainly is a selfish one: +longdesc documenting my own packages. The bundle contains an index style +longdesc file cnltx.ist that should be placed in a directory in a TDS +longdesc makeindex directory. +containersize 34840 +containerchecksum fa858296b0d71265f4812289d7e50e1650deea64fe8feb86c1d9a3ce49719ed4d265e457fc1e6c9382c9344b9798ef2de322419ab38b86dfaa2f20ca87052ea4 +doccontainersize 790520 +doccontainerchecksum b1481a3f56079e4655b94ac7855019492b051de1405016830fd196442f1c3fb8213d00540ec5fa42dccf743eefd9ff1d0a581626d2b0c64b7462e43708ccb502 +docfiles size=221 + RELOC/doc/latex/cnltx/README details="Readme" + RELOC/doc/latex/cnltx/cnltx_en.pdf details="Package documentation" + RELOC/doc/latex/cnltx/cnltx_en.tex +runfiles size=51 + RELOC/bibtex/bib/cnltx/cnltx.bib + RELOC/makeindex/cnltx/cnltx.ist + RELOC/tex/latex/cnltx/cnltx-base.sty + RELOC/tex/latex/cnltx/cnltx-doc.cls + RELOC/tex/latex/cnltx/cnltx-example.sty + RELOC/tex/latex/cnltx/cnltx-listings.sty + RELOC/tex/latex/cnltx/cnltx-names.sty + RELOC/tex/latex/cnltx/cnltx-tools.sty + RELOC/tex/latex/cnltx/cnltx-translations.sty + RELOC/tex/latex/cnltx/cnltx.bbx + RELOC/tex/latex/cnltx/cnltx.cbx + RELOC/tex/latex/cnltx/cnltx.dbx + RELOC/tex/latex/cnltx/cnltx.sty +catalogue-contact-repository https://github.com/cgnieder/cnltx/ +catalogue-ctan /macros/latex/contrib/cnltx +catalogue-license lppl1.3 +catalogue-topics doc-supp class expl3 macro-demo +catalogue-version 0.15 + +name cns +category Package +revision 45677 +catalogue cjk-fonts +shortdesc Chinese/Japanese/Korean bitmap fonts +relocated 1 +longdesc Fonts to go with the cjk macro package for Chinese, Japanese +longdesc and Korean with LaTeX2e. The package aims to supersede HLaTeX +longdesc fonts bundle. +containersize 2985692 +containerchecksum 0b3645da07e0fc9482cfeddd93f949e18dc12b6aa02e5a6c45669f3d5f7f25d5fa7ff4992f40b9b71894e21b5b1855999ba8e1b130be27e8b7001444ed30db0f +doccontainersize 756 +doccontainerchecksum 264c64f2ae29bff96b428500af07a81402434d9422792a36ee0da74e9821f161cf8281d38317787c0db78109d2eeaaff4e62730855ae1f1e1f250f4173740d35 +docfiles size=8 + RELOC/doc/fonts/cns/cns40-1/README details="Readme" + RELOC/doc/fonts/cns/cns40-2/README details="Readme" + RELOC/doc/fonts/cns/cns40-3/README details="Readme" + RELOC/doc/fonts/cns/cns40-4/README details="Readme" + RELOC/doc/fonts/cns/cns40-5/README details="Readme" + RELOC/doc/fonts/cns/cns40-6/README details="Readme" + RELOC/doc/fonts/cns/cns40-7/README details="Readme" + RELOC/doc/fonts/cns/cns40-b5/README details="Readme" +runfiles size=2650 + RELOC/fonts/misc/cns/4040w0.bin + RELOC/fonts/misc/cns/4040w1.bin + RELOC/fonts/misc/cns/4040w2.bin + RELOC/fonts/misc/cns/4040w3.bin + RELOC/fonts/misc/cns/4040w4.bin + RELOC/fonts/misc/cns/4040w5.bin + RELOC/fonts/misc/cns/4040w6.bin + RELOC/fonts/misc/cns/4040w7.bin + RELOC/fonts/misc/cns/cns40-1.hbf + RELOC/fonts/misc/cns/cns40-2.hbf + RELOC/fonts/misc/cns/cns40-3.hbf + RELOC/fonts/misc/cns/cns40-4.hbf + RELOC/fonts/misc/cns/cns40-5.hbf + RELOC/fonts/misc/cns/cns40-6.hbf + RELOC/fonts/misc/cns/cns40-7.hbf + RELOC/fonts/misc/cns/cns40-b5.hbf + RELOC/fonts/tfm/cns/c0so12/c0so1201.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1202.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1203.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1204.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1205.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1206.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1207.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1208.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1209.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1210.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1211.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1212.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1213.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1214.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1215.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1216.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1217.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1218.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1219.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1220.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1221.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1222.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1223.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1224.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1225.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1226.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1227.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1228.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1229.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1230.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1231.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1232.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1233.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1234.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1235.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1236.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1237.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1238.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1239.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1240.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1241.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1242.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1243.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1244.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1245.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1246.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1247.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1248.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1249.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1250.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1251.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1252.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1253.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1254.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1255.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1201.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1202.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1203.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1204.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1205.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1206.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1207.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1208.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1209.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1210.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1211.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1212.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1213.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1214.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1215.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1216.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1217.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1218.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1219.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1220.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1221.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1222.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1223.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1224.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1225.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1226.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1227.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1228.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1229.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1230.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1231.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1232.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1233.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1234.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1201.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1202.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1203.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1204.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1205.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1206.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1207.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1208.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1209.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1210.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1211.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1212.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1213.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1214.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1215.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1216.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1217.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1218.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1219.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1220.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1221.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1222.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1223.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1224.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1225.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1226.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1227.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1228.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1229.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1230.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1201.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1202.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1203.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1204.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1205.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1206.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1207.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1208.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1209.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1210.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1211.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1212.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1213.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1214.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1215.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1216.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1217.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1218.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1219.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1220.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1221.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1222.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1223.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1224.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1225.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1201.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1202.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1203.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1204.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1205.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1206.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1207.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1208.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1209.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1210.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1211.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1212.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1213.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1214.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1215.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1216.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1217.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1218.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1219.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1220.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1221.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1222.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1223.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1224.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1225.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1226.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1227.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1228.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1229.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1201.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1202.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1203.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1204.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1205.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1206.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1207.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1208.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1209.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1210.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1211.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1212.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1213.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1214.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1215.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1216.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1217.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1218.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1219.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1220.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1221.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1222.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1223.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1224.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1225.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1226.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1227.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1228.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1229.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1230.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1231.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1232.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1233.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1234.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1201.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1202.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1203.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1204.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1205.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1206.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1207.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1208.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1209.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1210.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1211.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1212.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1213.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1214.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1215.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1216.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1217.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1218.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1219.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1220.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1221.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1222.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1223.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1224.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1225.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1201.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1202.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1203.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1204.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1205.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1206.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1207.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1208.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1209.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1210.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1211.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1212.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1213.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1214.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1215.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1216.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1217.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1218.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1219.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1220.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1221.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1222.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1223.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1224.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1225.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1226.tfm +catalogue-also arphic wadalab +catalogue-ctan /fonts/CJK +catalogue-license pd +catalogue-topics font font-cjk chinese japanese korean +catalogue-version 4.2.0 + +name cntformats +category Package +revision 34668 +shortdesc A different way to read counters +relocated 1 +longdesc The package offers package or class authors a way to format +longdesc counters with 'patterns'. These patterns do not affect 'normal' +longdesc LaTeX treatment of counters. +containersize 2688 +containerchecksum f829d6452faa20a514bfe43a8b002d4d728b57e0d6c44de7ba8aebaa96d9a40fc0ac26ca6ef637ab9efd3f133c70cd4d5b9c81dd382ed8adcd5abd1b2fb5d6cd +doccontainersize 427824 +doccontainerchecksum 4d6c9b8ad41dea1e14eec71570afdeb28fb834191587ba964642628674526a5ac82d6ceb972d5d89e0faeb3fb46da26361dea45f8757523f58765dfbdb773a3d +docfiles size=109 + RELOC/doc/latex/cntformats/README details="Readme" + RELOC/doc/latex/cntformats/cntformats_en.pdf details="Package documentation" + RELOC/doc/latex/cntformats/cntformats_en.tex +runfiles size=3 + RELOC/tex/latex/cntformats/cntformats.sty +catalogue-contact-repository https://github.com/cgnieder/cntformats/ +catalogue-ctan /macros/latex/contrib/cntformats +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 0.7 + +name cntperchap +category Package +revision 37572 +shortdesc Store counter values per chapter +relocated 1 +longdesc This package stores values of counters (which have been +longdesc registered beforehand) on a per chapter base and provides the +longdesc values on demand in the 2nd LaTeX compilation run. In this way +longdesc it is possible to know how many sections etc. there are lying +longdesc ahead and to react to these counter values, if needed. This is +longdesc a preliminary version that has been tested with book.cls, +longdesc memoir.cls, and scrbook.cls. The packages assoccnt (by the same +longdesc author) and xparse are needed as well. +containersize 3964 +containerchecksum ade4e6bbb00d619d52cb65549cb50f4ff9275d20a9e871ddee99064fb2ae0e02ba7d403bd6c7d658fdc6d542d7a32244ce8ff7fbe023b4fe292697584aed966a +doccontainersize 271048 +doccontainerchecksum 354ea40ce2fe4e543016970fe81745c151a53c182800e8b861006d7e1c6fff84628a0baa4bfad29a0b81c8d0eede9f31145e7d3f380953921a48f31c5b8d0a8a +docfiles size=74 + RELOC/doc/latex/cntperchap/README details="Readme" + RELOC/doc/latex/cntperchap/cntperchap_doc.pdf details="Package documentation" + RELOC/doc/latex/cntperchap/cntperchap_doc.tex + RELOC/doc/latex/cntperchap/cntperchap_example.pdf details="Example of use" + RELOC/doc/latex/cntperchap/cntperchap_example.tex +runfiles size=3 + RELOC/tex/latex/cntperchap/cntperchap.sty +catalogue-also xcntperchap +catalogue-ctan /macros/latex/contrib/cntperchap +catalogue-license lppl1.3 +catalogue-topics counter-mgmt macro-supp +catalogue-version 0.3 + +name cochineal +category Package +revision 58717 +shortdesc Cochineal fonts with LaTeX support +relocated 1 +longdesc Cochineal is a fork from the Crimson fonts (Roman, Italic, +longdesc Bold, BoldItalic only) released under the OFL by Sebastian +longdesc Kosch. These remarkable fonts are inspired by the famous +longdesc oldstyle fonts in the garalde family (Garamond, Bembo) but, in +longdesc the end, look more similar to Minion, though with smaller +longdesc xheight and less plain in detail. The Crimson fonts on which +longdesc these were based had roughly 4200 glyphs in the four styles +longdesc mentioned above. Cochineal adds more than 1500 glyphs in those +longdesc styles so that it is possible to make a TeX support collection +longdesc that contains essentially all glyphs in all styles. Bringing +longdesc the Semibold styles up the same level would have required +longdesc adding about 2000 additional glyphs, which I could not even +longdesc contemplate. The fonts are provided in OpenType and PostScript +longdesc formats. +execute addMap Cochineal.map +containersize 2532576 +containerchecksum 51596bff44f2aeb5720d6723283cd2c7a4c81419b0391af9aeda3231fd429c8bb8a6342278fab7f1cf17ed4cb752a25bd7c55c085671ef205bf9a28c429cfdc9 +doccontainersize 369568 +doccontainerchecksum 930c4bcbcec523c8800f3c52b286197758f7721aa511a7f0617fff68f2e1a86cabc7cc9f8ba2887f64edd0e61fff9c17a05eb615043d0a2de9a56e03e72b5e65 +docfiles size=113 + RELOC/doc/fonts/cochineal/OFL-FAQ.txt + RELOC/doc/fonts/cochineal/OFL.txt + RELOC/doc/fonts/cochineal/README details="Readme" + RELOC/doc/fonts/cochineal/cochineal-doc.pdf details="Package manual" + RELOC/doc/fonts/cochineal/cochineal-doc.tex + RELOC/doc/fonts/cochineal/newgermanglyphs-crop.pdf + RELOC/doc/fonts/cochineal/newgermanglyphs.pdf + RELOC/doc/fonts/cochineal/newgermanglyphs.tex +runfiles size=5144 + RELOC/fonts/afm/public/cochineal/Cochineal-Bold.afm + RELOC/fonts/afm/public/cochineal/Cochineal-BoldItalic.afm + RELOC/fonts/afm/public/cochineal/Cochineal-Italic.afm + RELOC/fonts/afm/public/cochineal/Cochineal-Roman.afm + RELOC/fonts/afm/public/cochineal/cochBMI.afm + RELOC/fonts/afm/public/cochineal/cochBRM.afm + RELOC/fonts/afm/public/cochineal/cochMI.afm + RELOC/fonts/afm/public/cochineal/cochMRM.afm + RELOC/fonts/enc/dvips/cochineal/coch-t2a.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-ec.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-lf-ly1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-lf-ot1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-lf-t1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-osf-ly1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-osf-ot1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-osf-t1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-tlf-ly1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-tlf-ot1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-tlf-t1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-tosf-ly1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-tosf-ot1.enc + RELOC/fonts/enc/dvips/cochineal/cochTH-tosf-t1.enc + RELOC/fonts/enc/dvips/cochineal/coch_2cqomt.enc + RELOC/fonts/enc/dvips/cochineal/coch_2expjo.enc + RELOC/fonts/enc/dvips/cochineal/coch_2gvyjv.enc + RELOC/fonts/enc/dvips/cochineal/coch_2wxnkf.enc + RELOC/fonts/enc/dvips/cochineal/coch_2zgday.enc + RELOC/fonts/enc/dvips/cochineal/coch_3brrog.enc + RELOC/fonts/enc/dvips/cochineal/coch_3m7z6q.enc + RELOC/fonts/enc/dvips/cochineal/coch_3q3crd.enc + RELOC/fonts/enc/dvips/cochineal/coch_3tt4zg.enc + RELOC/fonts/enc/dvips/cochineal/coch_47bkd3.enc + RELOC/fonts/enc/dvips/cochineal/coch_4agesf.enc + RELOC/fonts/enc/dvips/cochineal/coch_4plcvc.enc + RELOC/fonts/enc/dvips/cochineal/coch_4srkt4.enc + RELOC/fonts/enc/dvips/cochineal/coch_5bitfe.enc + RELOC/fonts/enc/dvips/cochineal/coch_5dzpv7.enc + RELOC/fonts/enc/dvips/cochineal/coch_5f3gw2.enc + RELOC/fonts/enc/dvips/cochineal/coch_5o2hga.enc + RELOC/fonts/enc/dvips/cochineal/coch_5tib5i.enc + RELOC/fonts/enc/dvips/cochineal/coch_5tmqae.enc + RELOC/fonts/enc/dvips/cochineal/coch_5xilzy.enc + RELOC/fonts/enc/dvips/cochineal/coch_5xjvtq.enc + RELOC/fonts/enc/dvips/cochineal/coch_6lje3b.enc + RELOC/fonts/enc/dvips/cochineal/coch_6ry5ir.enc + RELOC/fonts/enc/dvips/cochineal/coch_6uoyes.enc + RELOC/fonts/enc/dvips/cochineal/coch_6wh55u.enc + RELOC/fonts/enc/dvips/cochineal/coch_6xmcha.enc + RELOC/fonts/enc/dvips/cochineal/coch_7cy5le.enc + RELOC/fonts/enc/dvips/cochineal/coch_7fuy52.enc + RELOC/fonts/enc/dvips/cochineal/coch_7fzfry.enc + RELOC/fonts/enc/dvips/cochineal/coch_7kg32s.enc + RELOC/fonts/enc/dvips/cochineal/coch_7trhhc.enc + RELOC/fonts/enc/dvips/cochineal/coch_7v73vk.enc + RELOC/fonts/enc/dvips/cochineal/coch_aeaj7m.enc + RELOC/fonts/enc/dvips/cochineal/coch_aiajjq.enc + RELOC/fonts/enc/dvips/cochineal/coch_alzuis.enc + RELOC/fonts/enc/dvips/cochineal/coch_apzg65.enc + RELOC/fonts/enc/dvips/cochineal/coch_bat6hu.enc + RELOC/fonts/enc/dvips/cochineal/coch_bhbiwe.enc + RELOC/fonts/enc/dvips/cochineal/coch_bhnmej.enc + RELOC/fonts/enc/dvips/cochineal/coch_bi2nei.enc + RELOC/fonts/enc/dvips/cochineal/coch_bjqtqq.enc + RELOC/fonts/enc/dvips/cochineal/coch_bjtzvy.enc + RELOC/fonts/enc/dvips/cochineal/coch_bnbjdf.enc + RELOC/fonts/enc/dvips/cochineal/coch_bp2pg7.enc + RELOC/fonts/enc/dvips/cochineal/coch_cacm2n.enc + RELOC/fonts/enc/dvips/cochineal/coch_cbs7ow.enc + RELOC/fonts/enc/dvips/cochineal/coch_cuw7wa.enc + RELOC/fonts/enc/dvips/cochineal/coch_d2hjcw.enc + RELOC/fonts/enc/dvips/cochineal/coch_d2sl3v.enc + RELOC/fonts/enc/dvips/cochineal/coch_da7weg.enc + RELOC/fonts/enc/dvips/cochineal/coch_dbsvsj.enc + RELOC/fonts/enc/dvips/cochineal/coch_df5kan.enc + RELOC/fonts/enc/dvips/cochineal/coch_djzri5.enc + RELOC/fonts/enc/dvips/cochineal/coch_dwjlw5.enc + RELOC/fonts/enc/dvips/cochineal/coch_dx3muq.enc + RELOC/fonts/enc/dvips/cochineal/coch_dxwjai.enc + RELOC/fonts/enc/dvips/cochineal/coch_e745te.enc + RELOC/fonts/enc/dvips/cochineal/coch_e77avd.enc + RELOC/fonts/enc/dvips/cochineal/coch_ekjpcs.enc + RELOC/fonts/enc/dvips/cochineal/coch_eluj5m.enc + RELOC/fonts/enc/dvips/cochineal/coch_ermyhb.enc + RELOC/fonts/enc/dvips/cochineal/coch_f6cstm.enc + RELOC/fonts/enc/dvips/cochineal/coch_fdemcn.enc + RELOC/fonts/enc/dvips/cochineal/coch_fgurd2.enc + RELOC/fonts/enc/dvips/cochineal/coch_fn4k7j.enc + RELOC/fonts/enc/dvips/cochineal/coch_g2axst.enc + RELOC/fonts/enc/dvips/cochineal/coch_gcpa6j.enc + RELOC/fonts/enc/dvips/cochineal/coch_gkpez6.enc + RELOC/fonts/enc/dvips/cochineal/coch_grutwx.enc + RELOC/fonts/enc/dvips/cochineal/coch_h2t4ei.enc + RELOC/fonts/enc/dvips/cochineal/coch_hqneph.enc + RELOC/fonts/enc/dvips/cochineal/coch_huz7n5.enc + RELOC/fonts/enc/dvips/cochineal/coch_ibp3xz.enc + RELOC/fonts/enc/dvips/cochineal/coch_izjs6r.enc + RELOC/fonts/enc/dvips/cochineal/coch_j7mi7a.enc + RELOC/fonts/enc/dvips/cochineal/coch_jgxutr.enc + RELOC/fonts/enc/dvips/cochineal/coch_jhwmea.enc + RELOC/fonts/enc/dvips/cochineal/coch_jhwq7e.enc + RELOC/fonts/enc/dvips/cochineal/coch_kbpxlj.enc + RELOC/fonts/enc/dvips/cochineal/coch_kbxkrg.enc + RELOC/fonts/enc/dvips/cochineal/coch_kfj2qw.enc + RELOC/fonts/enc/dvips/cochineal/coch_kfnsdu.enc + RELOC/fonts/enc/dvips/cochineal/coch_klonus.enc + RELOC/fonts/enc/dvips/cochineal/coch_ktoy4w.enc + RELOC/fonts/enc/dvips/cochineal/coch_kuld3f.enc + RELOC/fonts/enc/dvips/cochineal/coch_kxx5cy.enc + RELOC/fonts/enc/dvips/cochineal/coch_kzot5v.enc + RELOC/fonts/enc/dvips/cochineal/coch_l47tcy.enc + RELOC/fonts/enc/dvips/cochineal/coch_l64ji6.enc + RELOC/fonts/enc/dvips/cochineal/coch_lchlkf.enc + RELOC/fonts/enc/dvips/cochineal/coch_liz2hd.enc + RELOC/fonts/enc/dvips/cochineal/coch_lqmdx6.enc + RELOC/fonts/enc/dvips/cochineal/coch_lropbz.enc + RELOC/fonts/enc/dvips/cochineal/coch_mgd2ev.enc + RELOC/fonts/enc/dvips/cochineal/coch_mo2enl.enc + RELOC/fonts/enc/dvips/cochineal/coch_nlwa7l.enc + RELOC/fonts/enc/dvips/cochineal/coch_ns6y37.enc + RELOC/fonts/enc/dvips/cochineal/coch_o4vutb.enc + RELOC/fonts/enc/dvips/cochineal/coch_o5mx43.enc + RELOC/fonts/enc/dvips/cochineal/coch_odnecf.enc + RELOC/fonts/enc/dvips/cochineal/coch_okzdl2.enc + RELOC/fonts/enc/dvips/cochineal/coch_ol4knl.enc + RELOC/fonts/enc/dvips/cochineal/coch_opxmsy.enc + RELOC/fonts/enc/dvips/cochineal/coch_oqmhja.enc + RELOC/fonts/enc/dvips/cochineal/coch_otkq6i.enc + RELOC/fonts/enc/dvips/cochineal/coch_p7j4gw.enc + RELOC/fonts/enc/dvips/cochineal/coch_pf3hrr.enc + RELOC/fonts/enc/dvips/cochineal/coch_pqzq4p.enc + RELOC/fonts/enc/dvips/cochineal/coch_q35ey5.enc + RELOC/fonts/enc/dvips/cochineal/coch_q4ulxa.enc + RELOC/fonts/enc/dvips/cochineal/coch_qkxc47.enc + RELOC/fonts/enc/dvips/cochineal/coch_qqsbmj.enc + RELOC/fonts/enc/dvips/cochineal/coch_qy633g.enc + RELOC/fonts/enc/dvips/cochineal/coch_qyvxxn.enc + RELOC/fonts/enc/dvips/cochineal/coch_qzhi24.enc + RELOC/fonts/enc/dvips/cochineal/coch_r2kqsv.enc + RELOC/fonts/enc/dvips/cochineal/coch_rix5n3.enc + RELOC/fonts/enc/dvips/cochineal/coch_saoql6.enc + RELOC/fonts/enc/dvips/cochineal/coch_sc4bro.enc + RELOC/fonts/enc/dvips/cochineal/coch_sq6y2y.enc + RELOC/fonts/enc/dvips/cochineal/coch_sygphi.enc + RELOC/fonts/enc/dvips/cochineal/coch_syo7sr.enc + RELOC/fonts/enc/dvips/cochineal/coch_t556x2.enc + RELOC/fonts/enc/dvips/cochineal/coch_t7e5d4.enc + RELOC/fonts/enc/dvips/cochineal/coch_tfefcu.enc + RELOC/fonts/enc/dvips/cochineal/coch_tjygyt.enc + RELOC/fonts/enc/dvips/cochineal/coch_tkhq7f.enc + RELOC/fonts/enc/dvips/cochineal/coch_u3j4lk.enc + RELOC/fonts/enc/dvips/cochineal/coch_uavkhn.enc + RELOC/fonts/enc/dvips/cochineal/coch_uh66oa.enc + RELOC/fonts/enc/dvips/cochineal/coch_uk6vx5.enc + RELOC/fonts/enc/dvips/cochineal/coch_uqbj7f.enc + RELOC/fonts/enc/dvips/cochineal/coch_vb2qex.enc + RELOC/fonts/enc/dvips/cochineal/coch_vew4u5.enc + RELOC/fonts/enc/dvips/cochineal/coch_vpdkzq.enc + RELOC/fonts/enc/dvips/cochineal/coch_w6vdgs.enc + RELOC/fonts/enc/dvips/cochineal/coch_wa4y3o.enc + RELOC/fonts/enc/dvips/cochineal/coch_wcbuwv.enc + RELOC/fonts/enc/dvips/cochineal/coch_wdpw3f.enc + RELOC/fonts/enc/dvips/cochineal/coch_wnd62o.enc + RELOC/fonts/enc/dvips/cochineal/coch_wpweoy.enc + RELOC/fonts/enc/dvips/cochineal/coch_wuwrcy.enc + RELOC/fonts/enc/dvips/cochineal/coch_x3v6nt.enc + RELOC/fonts/enc/dvips/cochineal/coch_x4ugem.enc + RELOC/fonts/enc/dvips/cochineal/coch_xaxcx7.enc + RELOC/fonts/enc/dvips/cochineal/coch_xsridg.enc + RELOC/fonts/enc/dvips/cochineal/coch_ygltby.enc + RELOC/fonts/enc/dvips/cochineal/coch_yprnrw.enc + RELOC/fonts/enc/dvips/cochineal/coch_z2oun7.enc + RELOC/fonts/enc/dvips/cochineal/coch_zbphsw.enc + RELOC/fonts/enc/dvips/cochineal/coch_zg5irv.enc + RELOC/fonts/enc/dvips/cochineal/cochalph.enc + RELOC/fonts/enc/dvips/cochineal/cochlf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochlf-ot2.enc + RELOC/fonts/enc/dvips/cochineal/cochosf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochosf-ot2.enc + RELOC/fonts/enc/dvips/cochineal/cochtabosf.enc + RELOC/fonts/enc/dvips/cochineal/cochtlf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochtlf-ot2.enc + RELOC/fonts/enc/dvips/cochineal/cochtosf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochtosf-ot2.enc + RELOC/fonts/map/dvips/cochineal/Cochineal.map + RELOC/fonts/opentype/public/cochineal/Cochineal-Bold.otf + RELOC/fonts/opentype/public/cochineal/Cochineal-BoldItalic.otf + RELOC/fonts/opentype/public/cochineal/Cochineal-Italic.otf + RELOC/fonts/opentype/public/cochineal/Cochineal-Roman.otf + RELOC/fonts/tfm/public/cochineal/Cochineal-Bol-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bol-osf.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BolIta-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-ts1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-ts1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Ita-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-ts1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-ts1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-osf.tfm + RELOC/fonts/tfm/public/cochineal/cochBMI.tfm + RELOC/fonts/tfm/public/cochineal/cochBRM.tfm + RELOC/fonts/tfm/public/cochineal/cochMI.tfm + RELOC/fonts/tfm/public/cochineal/cochMRM.tfm + RELOC/fonts/tfm/public/cochineal/zcochbmi.tfm + RELOC/fonts/tfm/public/cochineal/zcochbmia.tfm + RELOC/fonts/tfm/public/cochineal/zcochmi.tfm + RELOC/fonts/tfm/public/cochineal/zcochmia.tfm + RELOC/fonts/type1/public/cochineal/Cochineal-Bold.pfb + RELOC/fonts/type1/public/cochineal/Cochineal-BoldItalic.pfb + RELOC/fonts/type1/public/cochineal/Cochineal-Italic.pfb + RELOC/fonts/type1/public/cochineal/Cochineal-Roman.pfb + RELOC/fonts/type1/public/cochineal/cochBMI.pfb + RELOC/fonts/type1/public/cochineal/cochBRM.pfb + RELOC/fonts/type1/public/cochineal/cochMI.pfb + RELOC/fonts/type1/public/cochineal/cochMRM.pfb + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-inf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-sup-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-ts1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bolditalic-ts1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-inf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-sup-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-ts1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-ts1.vf + RELOC/fonts/vf/public/cochineal/zcochbmi.vf + RELOC/fonts/vf/public/cochineal/zcochbmia.vf + RELOC/fonts/vf/public/cochineal/zcochmi.vf + RELOC/fonts/vf/public/cochineal/zcochmia.vf + RELOC/tex/latex/cochineal/LGRCochineal-LF.fd + RELOC/tex/latex/cochineal/LGRCochineal-OsF.fd + RELOC/tex/latex/cochineal/LGRCochineal-TLF.fd + RELOC/tex/latex/cochineal/LGRCochineal-TOsF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-Dnom.fd + RELOC/tex/latex/cochineal/LY1Cochineal-Inf.fd + RELOC/tex/latex/cochineal/LY1Cochineal-LF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-Sup.fd + RELOC/tex/latex/cochineal/LY1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-Dnom.fd + RELOC/tex/latex/cochineal/OT1Cochineal-Inf.fd + RELOC/tex/latex/cochineal/OT1Cochineal-LF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-Sup.fd + RELOC/tex/latex/cochineal/OT1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-LF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-OsF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-TLF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/T1Cochineal-Dnom.fd + RELOC/tex/latex/cochineal/T1Cochineal-Inf.fd + RELOC/tex/latex/cochineal/T1Cochineal-LF.fd + RELOC/tex/latex/cochineal/T1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/T1Cochineal-Sup.fd + RELOC/tex/latex/cochineal/T1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/T1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/T2ACochineal-TLF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-LF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/cochineal.fontspec + RELOC/tex/latex/cochineal/cochineal.sty + RELOC/tex/latex/cochineal/omlzcochmi.fd + RELOC/tex/latex/cochineal/uzcochmia.fd +catalogue-ctan /fonts/cochineal +catalogue-license ofl lppl1.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.066 + +name codeanatomy +category Package +revision 51627 +shortdesc Typeset code with annotations +relocated 1 +longdesc The idea of this Package is to typeset illustrations of pieces +longdesc of code with annotations on each single part of code (Code +longdesc Anatomy). The origin of this idea are code illustrations from +longdesc the book "Computer Science: An Interdisciplinary Approach" from +longdesc Robert Sedgewick and Kevin Wayne. The package depends on expl3, +longdesc xparse, and TikZ. +containersize 1836 +containerchecksum 0f7613af5e91d364d0c8cc3978ce5251cff4650bf5e187ef03606b9cf5294eed82751b8f7604583af5187b62f40688733a39aaaca6a022ddd0087ab610f8c978 +doccontainersize 257164 +doccontainerchecksum 877a827dfd0bb9e79f80fa0a9cd7275a647fc4f0451af5c5a5253caee306f202a419f0164b2878c7a780176e018a2f1a3f8e9ec37fd8245997da537eefcd4e7b +docfiles size=87 + RELOC/doc/latex/codeanatomy/README.md details="Readme" + RELOC/doc/latex/codeanatomy/codeanatomy.lstlisting.pdf details="Usage with listings" + RELOC/doc/latex/codeanatomy/codeanatomy.lstlisting.tex + RELOC/doc/latex/codeanatomy/codeanatomy.pdf details="Package documentation (Implementation)" + RELOC/doc/latex/codeanatomy/codeanatomy.usage.pdf details="Package documentation (Usage)" + RELOC/doc/latex/codeanatomy/codeanatomy.usage.tex + RELOC/doc/latex/codeanatomy/literatur.bib +srccontainersize 4596 +srccontainerchecksum 9cbe9969e777ccbe711f68936798bdd28e570e6ed772ba3aa8ad54f083792cd725c97055859cecc115bab420f3a929d707eb49584c483a9f223d7ea7bb5fe388 +srcfiles size=5 + RELOC/source/latex/codeanatomy/codeanatomy.dtx + RELOC/source/latex/codeanatomy/codeanatomy.ins +runfiles size=1 + RELOC/tex/latex/codeanatomy/codeanatomy.sty +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-license lppl1.3c +catalogue-topics program-doc graphics pgf-tikz expl3 +catalogue-version 0.4-Alpha + +name codedoc +category Package +revision 17630 +shortdesc LaTeX code and documentation in LaTeX-format file +relocated 1 +longdesc The CodeDoc class is an alternative to DocStrip (and others) to +longdesc produce LaTeX code along with its documentation without +longdesc departing from LaTeX's ordinary syntax. The documentation is +longdesc prepared like any other LaTeX document and the code to be +longdesc commented verbatim is simply delimited by an environment. When +longdesc an option is turned on in the class options, this code is +longdesc written to the desired file(s). The class also includes fully +longdesc customizable verbatim environments which provide the author +longdesc with separate commands to typeset the material and/or to +longdesc execute it. +containersize 10108 +containerchecksum 8dc006776f2a3f0f28aeed0450e2d7b714402de1939a92d1e7f1e0174a8de7e9f7099e7ae9a5de34df03613ff16800bde17f7cc90fa82798f30c775c10c655ff +doccontainersize 377460 +doccontainerchecksum fa23f45c539ec134cff114d7252a4d96585168729dc33d0865f4976f94620a8d3c02fa21572953161977d893c7f311b0d15a431f74b8526d1de0680dfdad7341 +docfiles size=187 + RELOC/doc/latex/codedoc/CodeDoc-manual.pdf details="Package manual" + RELOC/doc/latex/codedoc/CodeDoc-manual.tex + RELOC/doc/latex/codedoc/README details="Readme" +runfiles size=12 + RELOC/tex/latex/codedoc/codedoc.cls +catalogue-also doc gmdoc +catalogue-ctan /macros/latex/contrib/codedoc +catalogue-license lppl +catalogue-topics doc-supp +catalogue-version 0.3 + +name codepage +category Package +revision 51502 +shortdesc Support for variant code pages +relocated 1 +longdesc The package provides a mechanism for inputting non-ASCII text. +longdesc Nowadays, the job is mostly done by the inputenc package in the +longdesc LaTeX distribution. +containersize 10952 +containerchecksum 2531186744ce4915b8d903e0ea49e1d3e0a6be5ab2db7bc2a5cbc70e675c2dd00104a677c08b7b7d12eca56dfc4b283c49ee599fff6d3460c6238f414ba3cb76 +doccontainersize 257084 +doccontainerchecksum b49ffff68cc599835acf436de3117c7f9511b362d821bdd8c18f0af930c5b717dc0bcd00477e6f0f367229b9d1f6dd150a8166dd74bbfbc2cfcb77ccf28cd8d5 +docfiles size=82 + RELOC/doc/latex/codepage/LISEZMOI details="Readme" language="fr" + RELOC/doc/latex/codepage/README details="Readme" language="en" + RELOC/doc/latex/codepage/codepage.pdf details="Package documentation" language="en" + RELOC/doc/latex/codepage/frintro.pdf details="Introduction to package" language="fr" + RELOC/doc/latex/codepage/voyel850.tex + RELOC/doc/latex/codepage/voyeliso.tex +srccontainersize 24136 +srccontainerchecksum 2c12bf42c1aa818d5718f2bbbb07460364ad40f7bc4cf0676cb064a03751e1bd88be16fffaae097f5ed9c0793f60ffb93374b43f7b90acf8ad3cbc8f5d7b8b70 +srcfiles size=37 + RELOC/source/latex/codepage/codepage.drv + RELOC/source/latex/codepage/codepage.dtx + RELOC/source/latex/codepage/codepage.ins + RELOC/source/latex/codepage/frintro.drv +runfiles size=26 + RELOC/tex/latex/codepage/code437.tex + RELOC/tex/latex/codepage/code850.tex + RELOC/tex/latex/codepage/codeiso1.tex + RELOC/tex/latex/codepage/codemac.tex + RELOC/tex/latex/codepage/codepage.sty + RELOC/tex/latex/codepage/initcar.tex + RELOC/tex/latex/codepage/shapecm.tex + RELOC/tex/latex/codepage/shapedc.tex +catalogue-ctan /macros/latex/contrib/codepage +catalogue-license other-free +catalogue-topics inputenc + +name codesection +category Package +revision 34481 +shortdesc Provides an environment that may be conditionally included +relocated 1 +longdesc This package provides an environment to switch a section of +longdesc code on or off. The code may be placed anywhere in the file (it +longdesc is not limited to the document or the preamble). The motivation +longdesc for this package was to have commands which allow preselection +longdesc based on whether sections of code in a preamble of a template +longdesc are executed. +containersize 2144 +containerchecksum 95318ae4933d0cb43226c714c8ff931aaa8e06cfb2c44c3929db59ae8336882c588e26268445b62f8da32145a962bae0030daff3d5cfa22007919fb7b13fd69d +doccontainersize 376892 +doccontainerchecksum 881e62381793f548d0c291141944d81e19cf4340f2c1f63916857f5702756e18d107337c340568d62de48fe2190cf4c74a8d6604f8d4843c47ceb7c59608c0b0 +docfiles size=94 + RELOC/doc/latex/codesection/README details="Readme" + RELOC/doc/latex/codesection/codesection.pdf details="Package documentation" +srccontainersize 4192 +srccontainerchecksum e2ca6d6cb96977d494bfa9818d90aef30a915dd4c284fb7e555e79c09db022819a6e1f825ab895108594b90b488e70780f268022a896feef7dcc1ab590fabce9 +srcfiles size=4 + RELOC/source/latex/codesection/codesection.dtx + RELOC/source/latex/codesection/codesection.ins +runfiles size=2 + RELOC/tex/latex/codesection/codesection.sty +catalogue-also comment optional version +catalogue-ctan /macros/latex/contrib/codesection +catalogue-license lppl1.3 +catalogue-topics cond-comp +catalogue-version 0.1 + +name codicefiscaleitaliano +category Package +revision 29803 +shortdesc Test the consistency of the Italian personal Fiscal Code +relocated 1 +longdesc The alphanumeric string that forms the Italian personal Fiscal +longdesc Code is prone to be misspelled thus rendering a legal document +longdesc invalid. The package quickly verifies the consistency of the +longdesc fiscal code string, and can therefore be useful for lawyers and +longdesc accountants that use fiscal codes very frequently. +containersize 1836 +containerchecksum 7c93841ceadbb7bbfc9846d281fdbd84b7f284117344e1c4fd984e746186403e9be3e2048cfca53f6690a1e20b7471224b8d30ed1358959053111c22d3f15191 +doccontainersize 217732 +doccontainerchecksum 7b0c13252796be7d584d3e5dad65711229cf916ce7c8e89e423805183629f161b3d4e4f47d6c9488ab32ff8b52723b0fbc4252f2ca99e965f4d7c4409881b67d +docfiles size=54 + RELOC/doc/latex/codicefiscaleitaliano/README details="Readme (English and Italian)" language="it" + RELOC/doc/latex/codicefiscaleitaliano/codicefiscaleitaliano.pdf details="Package documentation (principally Italian)" language="it" +srccontainersize 8224 +srccontainerchecksum 8602ad1eee729a5d21d760da54f31d67746bc336c9e18d43b9cf3a5443afaf8099d27a908cc1cd9cc028e94b2173e97179cf293d5739244834817f0bc50bbaa3 +srcfiles size=6 + RELOC/source/latex/codicefiscaleitaliano/codicefiscaleitaliano.dtx +runfiles size=1 + RELOC/tex/latex/codicefiscaleitaliano/codicefiscaleitaliano.sty +catalogue-ctan /macros/latex/contrib/codicefiscaleitaliano +catalogue-license lppl1.3 +catalogue-topics calculation italian +catalogue-version 1.2 + +name coelacanth +category Package +revision 54736 +shortdesc Coelacanth fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX +longdesc support for Coelecanth fonts, designed by Ben Whitmore. +longdesc Coelacanth is inspired by the classic Centaur type design of +longdesc Bruce Rogers, described by some as the most beautiful typeface +longdesc ever designed. It aims to be a professional quality type family +longdesc for general book typesetting. +execute addMap Coelacanth.map +containersize 6833700 +containerchecksum f23a337931736831148c779defdea8fef6291636334f0f42cb540c53d1228972a9acaeb605f35fdc33c4a077347b11c8e964821ae1218074fdf87c06c7029187 +doccontainersize 67096 +doccontainerchecksum be2ddb2897fb81682514c19aa21200c2dc9825bd106cdbff9cb5a31c6874c937d0f47ad4ccfc867f62d5dd00672791ce055d6e5e46a4e49587065a9f6134749d +docfiles size=20 + RELOC/doc/fonts/coelacanth/LICENSE.md + RELOC/doc/fonts/coelacanth/README details="Readme" + RELOC/doc/fonts/coelacanth/coelacanth-samples.pdf details="Package documentation" + RELOC/doc/fonts/coelacanth/coelacanth-samples.tex +runfiles size=3564 + RELOC/fonts/enc/dvips/coelacanth/coel_2bq22m.enc + RELOC/fonts/enc/dvips/coelacanth/coel_35r5ki.enc + RELOC/fonts/enc/dvips/coelacanth/coel_3oskfe.enc + RELOC/fonts/enc/dvips/coelacanth/coel_4ecnef.enc + RELOC/fonts/enc/dvips/coelacanth/coel_5fxan5.enc + RELOC/fonts/enc/dvips/coelacanth/coel_67mokw.enc + RELOC/fonts/enc/dvips/coelacanth/coel_7svyb7.enc + RELOC/fonts/enc/dvips/coelacanth/coel_asvvw4.enc + RELOC/fonts/enc/dvips/coelacanth/coel_bgukot.enc + RELOC/fonts/enc/dvips/coelacanth/coel_byq3vs.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ch6j2t.enc + RELOC/fonts/enc/dvips/coelacanth/coel_cktdqa.enc + RELOC/fonts/enc/dvips/coelacanth/coel_dorh3b.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ebzac6.enc + RELOC/fonts/enc/dvips/coelacanth/coel_emnr2s.enc + RELOC/fonts/enc/dvips/coelacanth/coel_f7qowf.enc + RELOC/fonts/enc/dvips/coelacanth/coel_fv62g6.enc + RELOC/fonts/enc/dvips/coelacanth/coel_gi7fl5.enc + RELOC/fonts/enc/dvips/coelacanth/coel_h4us3h.enc + RELOC/fonts/enc/dvips/coelacanth/coel_h5bkro.enc + RELOC/fonts/enc/dvips/coelacanth/coel_imsj7k.enc + RELOC/fonts/enc/dvips/coelacanth/coel_k3v2sl.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ko4m4s.enc + RELOC/fonts/enc/dvips/coelacanth/coel_kue4xj.enc + RELOC/fonts/enc/dvips/coelacanth/coel_lv7uve.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ozxgjl.enc + RELOC/fonts/enc/dvips/coelacanth/coel_pvge6z.enc + RELOC/fonts/enc/dvips/coelacanth/coel_pxgy5y.enc + RELOC/fonts/enc/dvips/coelacanth/coel_qu2jnl.enc + RELOC/fonts/enc/dvips/coelacanth/coel_qyombs.enc + RELOC/fonts/enc/dvips/coelacanth/coel_r3sloy.enc + RELOC/fonts/enc/dvips/coelacanth/coel_rvr22c.enc + RELOC/fonts/enc/dvips/coelacanth/coel_s2u7t3.enc + RELOC/fonts/enc/dvips/coelacanth/coel_st6med.enc + RELOC/fonts/enc/dvips/coelacanth/coel_surv45.enc + RELOC/fonts/enc/dvips/coelacanth/coel_tzvqqj.enc + RELOC/fonts/enc/dvips/coelacanth/coel_u3c7bp.enc + RELOC/fonts/enc/dvips/coelacanth/coel_uohwx2.enc + RELOC/fonts/enc/dvips/coelacanth/coel_v4acog.enc + RELOC/fonts/enc/dvips/coelacanth/coel_w7crpc.enc + RELOC/fonts/enc/dvips/coelacanth/coel_wabiju.enc + RELOC/fonts/enc/dvips/coelacanth/coel_wcgv5q.enc + RELOC/fonts/enc/dvips/coelacanth/coel_xy7bza.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ycj2j6.enc + RELOC/fonts/enc/dvips/coelacanth/coel_z3thca.enc + RELOC/fonts/enc/dvips/coelacanth/coel_z4xltd.enc + RELOC/fonts/map/dvips/coelacanth/Coelacanth.map + RELOC/fonts/opentype/public/coelacanth/Coelacanth.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthBold.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthExtraLt.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthHeavy.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthItalic.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthLt.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthSemibd.otf + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ts1.tfm + RELOC/fonts/type1/public/coelacanth/Coelacanth.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthBold.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthExtraLt.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthHeavy.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthItalic.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthLt.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthSemibd.pfb + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-ts1.vf + RELOC/tex/latex/coelacanth/LY1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/LY1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/LY1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/LY1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/coelacanth.sty +catalogue-ctan /fonts/coelacanth +catalogue-license ofl lppl +catalogue-topics font font-body font-serif font-proportional font-type1 font-otf font-supp font-t1enc +catalogue-version 0.005 + +name collcell +category Package +revision 56291 +shortdesc Collect contents of a tabular cell as argument to a macro +relocated 1 +longdesc The package provides macros that collect the content of a +longdesc tabular cell, and offer them as an argument to a macro. Special +longdesc care is taken to remove all aligning macros inserted by tabular +longdesc from the cell content. The macros also work in the last column +longdesc of a table, but do not support verbatim material inside the +longdesc cells. +containersize 2252 +containerchecksum fff5f9ae7f9cd27f85189a895193f205e0b52874d46171f1f3957d7c816e0641dde6d2711783897953a1f1be699e001fbd9048aa3c15c24cfd33413db1ae688f +doccontainersize 221632 +doccontainerchecksum 22dd2b527ca195cb4cbf6d34d8dbd181dbb3386fa738fb09530957eea1413261fd596b0a00395647ce2582c477625cdd87e8ffa1cf2dad5387032a7d7d737edc +docfiles size=68 + RELOC/doc/latex/collcell/collcell.pdf details="Package documentation" +srccontainersize 7536 +srccontainerchecksum 9a5a173381fe9b6e0383571868b215184b75c51e39d18ca209d00e4064c28d7a477c4b887a0be5dd4867d393c6854022a5abd7be63d3be593549e645e3e09aba +srcfiles size=8 + RELOC/source/latex/collcell/Makefile + RELOC/source/latex/collcell/README + RELOC/source/latex/collcell/collcell.dtx + RELOC/source/latex/collcell/collcell.ins +runfiles size=2 + RELOC/tex/latex/collcell/collcell.sty +catalogue-contact-bugs https://sourceforge.net/p/collcell/tickets/ +catalogue-contact-home https://sourceforge.net/p/collcell/ +catalogue-contact-repository https://sourceforge.net/p/collcell/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/collcell +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 0.5 + +name collectbox +category Package +revision 56291 +shortdesc Collect and process macro arguments as boxes +relocated 1 +longdesc The package provides macros to collect and process a macro +longdesc argument (i.e., something which looks like a macro argument) as +longdesc a horizontal box rather than as a real macro argument. The +longdesc "arguments" are stored as if they had been saved by \savebox or +longdesc by the lrbox environment. Grouping tokens \bgroup and \egroup +longdesc may be used, which allows the user to have the beginning and +longdesc end of a group in different macro invocations, or to place them +longdesc in the begin and end code of an environment. Arguments may +longdesc contain verbatim material or other special use of characters. +longdesc The macros were designed for use within other macros. +containersize 2876 +containerchecksum 6d5b59bbad4aea17a5298e73c2f8538e7d98f27ded848096ada4db7b63a50a7f8fc0e725887cc13165c57222b2e3d27ffe4a6cf7abd5d0e1f54c8314b2f73db5 +doccontainersize 270912 +doccontainerchecksum 62a8651ba04958886591113a9ca831aca0f61d23d94c2105873ff5040db1014c61e0535650ed792e8ae3ff776027680b98d64fac47b5fa30b14cf1c723b99a71 +docfiles size=67 + RELOC/doc/latex/collectbox/README details="Readme" + RELOC/doc/latex/collectbox/collectbox.pdf +srccontainersize 8064 +srccontainerchecksum c7b44356a97790883b1e7ba7bc86bd6d5d334536dbca5388e19fe019f82187d1daeba76567e88946038b99cdf835743ae807a8d0ab383a519ea2decb80d4eb54 +srcfiles size=9 + RELOC/source/latex/collectbox/collectbox.dtx + RELOC/source/latex/collectbox/collectbox.ins +runfiles size=3 + RELOC/tex/latex/collectbox/collectbox.sty +catalogue-contact-bugs https://sourceforge.net/p/collectbox/tickets/ +catalogue-contact-home https://sourceforge.net/p/collectbox/ +catalogue-contact-repository https://sourceforge.net/p/collectbox/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/collectbox +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 0.4b + +name collection-basic +category Collection +revision 56569 +shortdesc Essential programs and files +relocated 1 +longdesc These files are regarded as basic for any TeX system, covering +longdesc plain TeX macros, Computer Modern fonts, and configuration for +longdesc common drivers; no LaTeX. +depend amsfonts +depend bibtex +depend cm +depend colorprofiles +depend dvipdfmx +depend dvips +depend ec +depend enctex +depend etex +depend etex-pkg +depend glyphlist +depend graphics-def +depend hyph-utf8 +depend hyphen-base +depend hyphenex +depend ifplatform +depend iftex +depend knuth-lib +depend knuth-local +depend kpathsea +depend lua-alt-getopt +depend luahbtex +depend luatex +depend makeindex +depend metafont +depend mflogo +depend mfware +depend modes +depend pdftex +depend plain +depend tex +depend tex-ini-files +depend texlive-common +depend texlive-docindex +depend texlive-en +depend texlive-msg-translations +depend texlive-scripts +depend texlive.infra +depend tlshell +depend unicode-data +depend xdvi +containersize 632 +containerchecksum 39ff4680cb002b6e29dac2fd5005d0d63b279deab21f025a87a7e860110a7eba04748adc11c9bf12f580cfc991380d2f301819801c32f681353c43053f98af48 + +name collection-bibtexextra +category Collection +revision 58437 +shortdesc BibTeX additional styles +relocated 1 +longdesc Additional BibTeX styles and bibliography data(bases), notably +longdesc including BibLaTeX. +depend aaai-named +depend aichej +depend ajl +depend amsrefs +depend annotate +depend apacite +depend apalike2 +depend archaeologie +depend authordate +depend beebe +depend besjournals +depend bestpapers +depend bib2gls +depend bibarts +depend biber +depend bibexport +depend bibhtml +depend biblatex +depend biblatex-abnt +depend biblatex-ajc2020unofficial +depend biblatex-anonymous +depend biblatex-apa +depend biblatex-apa6 +depend biblatex-archaeology +depend biblatex-arthistory-bonn +depend biblatex-bath +depend biblatex-bookinarticle +depend biblatex-bookinother +depend biblatex-bwl +depend biblatex-caspervector +depend biblatex-chem +depend biblatex-chicago +depend biblatex-claves +depend biblatex-dw +depend biblatex-enc +depend biblatex-ext +depend biblatex-fiwi +depend biblatex-gb7714-2015 +depend biblatex-german-legal +depend biblatex-gost +depend biblatex-historian +depend biblatex-ieee +depend biblatex-ijsra +depend biblatex-iso690 +depend biblatex-jura2 +depend biblatex-juradiss +depend biblatex-license +depend biblatex-lni +depend biblatex-luh-ipw +depend biblatex-manuscripts-philology +depend biblatex-mla +depend biblatex-morenames +depend biblatex-multiple-dm +depend biblatex-musuos +depend biblatex-nature +depend biblatex-nejm +depend biblatex-nottsclassic +depend biblatex-opcit-booktitle +depend biblatex-oxref +depend biblatex-philosophy +depend biblatex-phys +depend biblatex-publist +depend biblatex-realauthor +depend biblatex-sbl +depend biblatex-science +depend biblatex-shortfields +depend biblatex-socialscienceshuberlin +depend biblatex-software +depend biblatex-source-division +depend biblatex-subseries +depend biblatex-swiss-legal +depend biblatex-trad +depend biblatex-true-citepages-omit +depend biblatex-unified +depend biblatex-vancouver +depend biblatex2bibitem +depend biblist +depend bibtexperllibs +depend bibtopic +depend bibtopicprefix +depend bibunits +depend biolett-bst +depend bookdb +depend breakcites +depend cell +depend chbibref +depend chembst +depend chicago +depend chicago-annote +depend chicagoa +depend chscite +depend citeall +depend citeref +depend collection-latex +depend collref +depend compactbib +depend crossrefware +depend custom-bib +depend din1505 +depend dk-bib +depend doipubmed +depend ecobiblatex +depend econ-bst +depend economic +depend fbs +depend figbib +depend footbib +depend francais-bst +depend gbt7714 +depend geschichtsfrkl +depend harvard +depend harvmac +depend historische-zeitschrift +depend icite +depend ietfbibs +depend ijqc +depend inlinebib +depend iopart-num +depend is-bst +depend jbact +depend jmb +depend jneurosci +depend jurabib +depend ksfh_nat +depend listbib +depend logreq +depend ltb2bib +depend luabibentry +depend margbib +depend multibib +depend multibibliography +depend munich +depend nar +depend nmbib +depend notes2bib +depend notex-bst +depend oscola +depend perception +depend plainyr +depend pnas2009 +depend rsc +depend showtags +depend sort-by-letters +depend splitbib +depend turabian-formatting +depend uni-wtal-ger +depend uni-wtal-lin +depend urlbst +depend usebib +depend vak +depend windycity +depend xcite +depend zootaxa-bst +containersize 1228 +containerchecksum 0a0b978dcb21f9c26e0931c14b7faf7b0d8b5e1229d4180127c6b53899e001620246f2c0a7b0f6f1dc81639aee94701a637ac7af4ab20f144b661686c7d321a3 + +name collection-binextra +category Collection +revision 56352 +shortdesc TeX auxiliary programs +relocated 1 +longdesc Myriad additional TeX-related support programs. Includes +longdesc programs and macros for DVI file manipulation, literate +longdesc programming, patgen, and plenty more. +depend a2ping +depend adhocfilelist +depend arara +depend asymptote +depend bibtex8 +depend bibtexu +depend bundledoc +depend checklistings +depend chklref +depend chktex +depend clojure-pamphlet +depend cluttex +depend collection-basic +depend ctan-o-mat +depend ctan_chk +depend ctanbib +depend ctanify +depend ctanupload +depend ctie +depend cweb +depend de-macro +depend detex +depend dtl +depend dtxgen +depend dvi2tty +depend dviasm +depend dvicopy +depend dvidvi +depend dviinfox +depend dviljk +depend dviout-util +depend dvipng +depend dvipos +depend dvisvgm +depend findhyph +depend fragmaster +depend git-latexdiff +depend gsftopk +depend hook-pre-commit-pkg +depend installfont +depend ketcindy +depend lacheck +depend latex-git-log +depend latex-papersize +depend latex2man +depend latex2nemeth +depend latexdiff +depend latexfileversion +depend latexindent +depend latexmk +depend latexpand +depend light-latex-make +depend listings-ext +depend ltxfileinfo +depend ltximg +depend luajittex +depend make4ht +depend match_parens +depend mflua +depend mkjobtexmf +depend patgen +depend pdfbook2 +depend pdfcrop +depend pdfjam +depend pdflatexpicscale +depend pdftex-quiet +depend pdftosrc +depend pdfxup +depend pfarrei +depend pkfix +depend pkfix-helper +depend purifyeps +depend pythontex +depend seetexk +depend spix +depend srcredact +depend sty2dtx +depend synctex +depend tex4ebook +depend texcount +depend texdef +depend texdiff +depend texdirflatten +depend texdoc +depend texdoctk +depend texfot +depend texlive-scripts-extra +depend texliveonfly +depend texloganalyser +depend texosquery +depend texplate +depend texware +depend tie +depend tlcockpit +depend tpic2pdftex +depend typeoutfileinfo +depend web +depend xindex +depend xindy +depend xpdfopen +containersize 944 +containerchecksum 6c6b6344f7d294bf74f3601850f036543ae6f8dc78bf01e32867d46d7c20089a388f779c445173c5d54e874278e718b697691eb94a5a2029ef64acdb914461ae + +name collection-context +category Collection +revision 54074 +shortdesc ConTeXt and packages +relocated 1 +longdesc Hans Hagen's powerful ConTeXt system, http://pragma-ade.com. +longdesc Also includes third-party ConTeXt packages. +depend collection-basic +depend context +depend context-account +depend context-algorithmic +depend context-animation +depend context-annotation +depend context-bnf +depend context-chromato +depend context-cmscbf +depend context-cmttbf +depend context-construction-plan +depend context-cyrillicnumbers +depend context-degrade +depend context-fancybreak +depend context-filter +depend context-french +depend context-fullpage +depend context-gantt +depend context-gnuplot +depend context-handlecsv +depend context-inifile +depend context-layout +depend context-letter +depend context-lettrine +depend context-mathsets +depend context-notes-zh-cn +depend context-rst +depend context-ruby +depend context-simplefonts +depend context-simpleslides +depend context-title +depend context-transliterator +depend context-typearea +depend context-typescripts +depend context-vim +depend context-visualcounter +depend jmn +depend npp-for-context +containersize 596 +containerchecksum 5bd74e1a434549cf31ce31777e9a32f90baa14148e6658633945508a46dbf6611644c4212b53812bb32a399e850517369e3d89bb0e495c89e6f2a979090ed765 + +name collection-fontsextra +category Collection +revision 58253 +shortdesc Additional fonts +relocated 1 +depend Asana-Math +depend academicons +depend accanthis +depend adforn +depend adfsymbols +depend aesupp +depend alegreya +depend alfaslabone +depend algolrevived +depend allrunes +depend almendra +depend almfixed +depend anonymouspro +depend antiqua +depend antt +depend archaic +depend archivo +depend arev +depend arimo +depend arvo +depend asapsym +depend ascii-font +depend aspectratio +depend astro +depend atkinson +depend augie +depend auncial-new +depend aurical +depend b1encoding +depend barcodes +depend baskervald +depend baskervaldx +depend baskervillef +depend bbding +depend bbm +depend bbm-macros +depend bbold +depend bbold-type1 +depend belleek +depend bera +depend berenisadf +depend beuron +depend bguq +depend bitter +depend blacklettert1 +depend boisik +depend bookhands +depend boondox +depend braille +depend brushscr +depend cabin +depend caladea +depend calligra +depend calligra-type1 +depend cantarell +depend carlito +depend carolmin-ps +depend cascadia-code +depend ccicons +depend cfr-initials +depend cfr-lm +depend charissil +depend cherokee +depend chivo +depend cinzel +depend clara +depend clearsans +depend cm-lgc +depend cm-mf-extra-bold +depend cm-unicode +depend cmathbb +depend cmbright +depend cmexb +depend cmll +depend cmpica +depend cmsrb +depend cmtiup +depend cmupint +depend cochineal +depend coelacanth +depend collection-basic +depend comfortaa +depend comicneue +depend concmath-fonts +depend cookingsymbols +depend cormorantgaramond +depend countriesofeurope +depend courier-scaled +depend courierten +depend crimson +depend crimsonpro +depend cryst +depend cuprum +depend cyklop +depend dancers +depend dantelogo +depend dejavu +depend dejavu-otf +depend dice +depend dictsym +depend dingbat +depend domitian +depend doublestroke +depend doulossil +depend dozenal +depend drm +depend droid +depend dsserif +depend duerer +depend duerer-latex +depend dutchcal +depend ean +depend ebgaramond +depend ebgaramond-maths +depend ecc +depend eco +depend eczar +depend eiad +depend eiad-ltx +depend ektype-tanka +depend electrum +depend elvish +depend epigrafica +depend epsdice +depend erewhon +depend erewhon-math +depend esrelation +depend esstix +depend esvect +depend etbb +depend eulervm +depend euxm +depend fbb +depend fdsymbol +depend fetamont +depend feyn +depend fge +depend fira +depend firamath +depend firamath-otf +depend foekfont +depend fonetika +depend fontawesome +depend fontawesome5 +depend fontmfizz +depend fonts-churchslavonic +depend forum +depend fourier +depend fouriernc +depend frcursive +depend frederika2016 +depend frimurer +depend garamond-libre +depend garamond-math +depend genealogy +depend gentium-tug +depend gfsartemisia +depend gfsbodoni +depend gfscomplutum +depend gfsdidot +depend gfsdidotclassic +depend gfsneohellenic +depend gfsneohellenicmath +depend gfssolomos +depend gillcm +depend gillius +depend gnu-freefont +depend gofonts +depend gothic +depend greenpoint +depend grotesq +depend gudea +depend hacm +depend hands +depend heuristica +depend hfbright +depend hfoldsty +depend hindmadurai +depend ibarra +depend ifsym +depend imfellenglish +depend inconsolata +depend initials +depend inriafonts +depend inter +depend ipaex-type1 +depend iwona +depend jablantile +depend jamtimes +depend josefin +depend junicode +depend kixfont +depend kpfonts +depend kpfonts-otf +depend kurier +depend lato +depend lexend +depend lfb +depend libertine +depend libertinegc +depend libertinus +depend libertinus-fonts +depend libertinus-otf +depend libertinus-type1 +depend libertinust1math +depend librebaskerville +depend librebodoni +depend librecaslon +depend librefranklin +depend libris +depend linearA +depend linguisticspro +depend lobster2 +depend logix +depend lxfonts +depend ly1 +depend magra +depend marcellus +depend mathabx +depend mathabx-type1 +depend mathdesign +depend mdputu +depend mdsymbol +depend merriweather +depend miama +depend mintspirit +depend missaali +depend mlmodern +depend mnsymbol +depend montserrat +depend mpfonts +depend mweights +depend newcomputermodern +depend newpx +depend newtx +depend newtxsf +depend newtxtt +depend niceframe-type1 +depend nimbus15 +depend nkarta +depend noto +depend noto-emoji +depend notomath +depend nunito +depend obnov +depend ocherokee +depend ocr-b +depend ocr-b-outline +depend ogham +depend oinuit +depend old-arrows +depend oldlatin +depend oldstandard +depend opensans +depend orkhun +depend oswald +depend overlock +depend pacioli +depend paratype +depend phaistos +depend phonetic +depend pigpen +depend playfair +depend plex +depend plex-otf +depend plimsoll +depend poiretone +depend poltawski +depend prodint +depend punk +depend punk-latex +depend punknova +depend pxtxalfa +depend qualitype +depend quattrocento +depend raleway +depend recycle +depend roboto +depend romande +depend rosario +depend rsfso +depend sansmathaccent +depend sansmathfonts +depend sauter +depend sauterfonts +depend scholax +depend schulschriften +depend semaphor +depend shobhika +depend skull +depend sourcecodepro +depend sourcesanspro +depend sourceserifpro +depend spectral +depend starfont +depend staves +depend step +depend stepgreek +depend stickstoo +depend stix +depend stix2-otf +depend stix2-type1 +depend superiors +depend svrsymbols +depend tapir +depend tempora +depend tengwarscript +depend tfrupee +depend theanodidot +depend theanomodern +depend theanooldstyle +depend tinos +depend tpslifonts +depend trajan +depend twemoji-colr +depend txfontsb +depend txuprcal +depend typicons +depend umtypewriter +depend universa +depend universalis +depend uppunctlm +depend urwchancal +depend venturisadf +depend wsuipa +depend xcharter +depend xits +depend yfonts +depend yfonts-t1 +depend yinit-otf +depend zlmtt +containersize 1912 +containerchecksum 27d3200f8bab180da6c0ce7b6fc9773950fa0755d8f7ae3b43b76eeaa7f960a99ab1941793bb50e3d7eaf0b2b3fe0bd6b5261ba9ed645d839cf8a3075b2aaa2a + +name collection-fontsrecommended +category Collection +revision 54074 +shortdesc Recommended fonts +relocated 1 +longdesc Recommended fonts, including the base 35 PostScript fonts, +longdesc Latin Modern, TeX Gyre, and T1 and other encoding support for +longdesc Computer Modern, in outline form. +depend avantgar +depend bookman +depend charter +depend cm-super +depend cmextra +depend collection-basic +depend courier +depend euro +depend euro-ce +depend eurosym +depend fpl +depend helvetic +depend lm +depend lm-math +depend manfnt-font +depend marvosym +depend mathpazo +depend mflogo-font +depend ncntrsbk +depend palatino +depend pxfonts +depend rsfs +depend symbol +depend tex-gyre +depend tex-gyre-math +depend times +depend tipa +depend txfonts +depend utopia +depend wasy +depend wasy-type1 +depend wasysym +depend zapfchan +depend zapfding +containersize 560 +containerchecksum eaa6e54780a0813a88102258ee3bd7a4640787be0b89eff4ba2c9cc19298bf3e2799ffab4e03e49f20131d07fbac9f601a7223fc1b47257dd0feeb04797c56a8 + +name collection-fontutils +category Collection +revision 57089 +shortdesc Graphics and font utilities +relocated 1 +longdesc Programs for conversion between font formats, testing fonts, +longdesc virtual fonts, .gf and .pk manipulation, mft, fontinst, etc. +longdesc Manipulating OpenType, TrueType, Type 1,and for manipulation of +longdesc PostScript and other image formats. +depend accfonts +depend afm2pl +depend albatross +depend collection-basic +depend dosepsbin +depend dvipsconfig +depend epstopdf +depend fontinst +depend fontools +depend fontware +depend lcdftypetools +depend metatype1 +depend mf2pt1 +depend ps2eps +depend ps2pk +depend psutils +depend t1utils +depend ttfutils +containersize 528 +containerchecksum 9bc0964c2ce55e4bcab2b2ad0ae1c784a49ffc981620ef3cd549052a5e2b201325ddc444d9afbe57da6dc64d1890d61be5e97caa2c9c63ebbafc5f5d0322acae + +name collection-formatsextra +category Collection +revision 54074 +shortdesc Additional formats +relocated 1 +longdesc Collected TeX `formats', i.e., large-scale macro packages +longdesc designed to be dumped into .fmt files -- excluding the most +longdesc common ones, such as latex and context, which have their own +longdesc package(s). It also includes the Aleph engine and related Omega +longdesc formats and packages. +depend aleph +depend antomega +depend collection-basic +depend collection-latex +depend edmac +depend eplain +depend jadetex +depend lambda +depend lollipop +depend mltex +depend mxedruli +depend omega +depend omegaware +depend otibet +depend passivetex +depend psizzl +depend startex +depend texsis +depend xmltex +depend xmltexconfig +containersize 568 +containerchecksum 7700a6cc293a1d45208794db34a276d5de5c975fe91cb00e5b1896515f288b05437344f00997501a54ad2af515bccc983930a75ddda55c6951edc625cd6bda35 + +name collection-games +category Collection +revision 58896 +shortdesc Games typesetting +relocated 1 +longdesc Setups for typesetting various games, including chess. +depend bartel-chess-fonts +depend chess +depend chess-problem-diagrams +depend chessboard +depend chessfss +depend collection-latex +depend crossword +depend crosswrd +depend egameps +depend gamebook +depend go +depend hanoi +depend havannah +depend hexgame +depend hmtrump +depend horoscop +depend jigsaw +depend labyrinth +depend logicpuzzle +depend mahjong +depend musikui +depend nimsticks +depend onedown +depend othello +depend othelloboard +depend pas-crosswords +depend psgo +depend realtranspose +depend reverxii +depend rubik +depend schwalbe-chess +depend sgame +depend skak +depend skaknew +depend soup +depend sudoku +depend sudokubundle +depend xq +depend xskak +containersize 536 +containerchecksum 225b5e39067455805cb367653f727ed3ac363246411dadbc85948560bf6883de00110bc90953c10c9292a355e5db8087d15fd7bee2bb5fd268b361cf69509535 + +name collection-humanities +category Collection +revision 56575 +shortdesc Humanities packages +relocated 1 +longdesc Packages for law, linguistics, social sciences, humanities, +longdesc etc. +depend adtrees +depend bibleref +depend bibleref-lds +depend bibleref-mouth +depend bibleref-parse +depend collection-latex +depend covington +depend diadia +depend dramatist +depend dvgloss +depend ecltree +depend edfnotes +depend ednotes +depend eledform +depend eledmac +depend expex +depend gb4e +depend gmverse +depend jura +depend juraabbrev +depend juramisc +depend jurarsp +depend ledmac +depend lexikon +depend lexref +depend ling-macros +depend linguex +depend liturg +depend metrix +depend nnext +depend parallel +depend parrun +depend phonrule +depend plari +depend play +depend poemscol +depend poetry +depend poetrytex +depend qobitree +depend qtree +depend reledmac +depend rrgtrees +depend rtklage +depend screenplay +depend screenplay-pkg +depend sides +depend stage +depend textglos +depend thalie +depend theatre +depend tree-dvips +depend verse +depend xyling +containersize 588 +containerchecksum 8239a85051576d691f7a367b2858dbc191e0545d88e0f193107cf68ccc527c7f4980a6a18cd14bf7735277ea2552955d7be50520290a96a24ff3bc856a13742e + +name collection-langarabic +category Collection +revision 59003 +shortdesc Arabic +relocated 1 +longdesc Support for Arabic and Persian. +depend alkalami +depend alpha-persian +depend amiri +depend arabi +depend arabi-add +depend arabluatex +depend arabtex +depend bidi +depend bidihl +depend collection-basic +depend dad +depend ghab +depend hvarabic +depend hyphen-arabic +depend hyphen-farsi +depend imsproc +depend kurdishlipsum +depend lshort-persian +depend luabidi +depend na-box +depend persian-bib +depend quran +depend sexam +depend simurgh +depend texnegar +depend tram +depend xepersian +depend xepersian-hm +depend xindy-persian +containersize 448 +containerchecksum fea2044669380d81e34c45f19deeefeeeb42ea5c7b6afd0376eff49193c82903b09e061343a39677283002bd05089b6b6822132507fc4ff8fc13bffcd275cbbd + +name collection-langchinese +category Collection +revision 58965 +shortdesc Chinese +relocated 1 +longdesc Support for Chinese; additional packages in collection-langcjk. +depend arphic +depend arphic-ttf +depend asymptote-by-example-zh-cn +depend asymptote-faq-zh-cn +depend asymptote-manual-zh-cn +depend cns +depend collection-langcjk +depend ctex +depend ctex-faq +depend fandol +depend fduthesis +depend hyphen-chinese +depend impatient-cn +depend install-latex-guide-zh-cn +depend latex-notes-zh-cn +depend lshort-chinese +depend nanicolle +depend njurepo +depend pgfornament-han +depend qyxf-book +depend texlive-zh-cn +depend texproposal +depend tlmgr-intro-zh-cn +depend upzhkinsoku +depend xpinyin +depend xtuthesis +depend zhlineskip +depend zhlipsum +depend zhmetrics +depend zhmetrics-uptex +depend zhnumber +depend zhspacing +containersize 540 +containerchecksum 5f06485f3709fcca6275a176ecbde04cc260643c3ceb795ab127c91a423a4a06c84839231656c734fec242347bded79bb9b3fe88824dd2e7b23334bee48b2197 + +name collection-langcjk +category Collection +revision 54191 +shortdesc Chinese/Japanese/Korean (base) +relocated 1 +longdesc Packages supporting a combination of Chinese, Japanese, Korean, +longdesc including macros, fonts, documentation. Also Thai in the c90 +longdesc encoding, since there is some overlap in those fonts; standard +longdesc Thai support is in collection-langother. Additional packages +longdesc for CJK are in their individual language collections. +depend adobemapping +depend c90 +depend cjk +depend cjk-gs-integrate +depend cjkpunct +depend cjkutils +depend collection-basic +depend dnp +depend fixjfm +depend garuda-c90 +depend jfmutil +depend norasi-c90 +depend pxtatescale +depend xcjk2uni +depend zxjafont +containersize 568 +containerchecksum d6186e42081f4a1c2e15cf196de053108e7f8e046bab631e122b3d44ad8217bf83aeaf915c4fda7ebcb1d4be2a8f6dd1fa7027ed8624d31f16257ab8357d4a0b + +name collection-langcyrillic +category Collection +revision 54074 +shortdesc Cyrillic +relocated 1 +longdesc Support for Cyrillic scripts (Bulgarian, Russian, Serbian, +longdesc Ukrainian), even if Latin alphabets may also be used. +depend babel-belarusian +depend babel-bulgarian +depend babel-russian +depend babel-serbian +depend babel-serbianc +depend babel-ukrainian +depend churchslavonic +depend cmcyr +depend collection-basic +depend collection-latex +depend cyrillic +depend cyrillic-bin +depend cyrplain +depend disser +depend eskd +depend eskdx +depend gost +depend hyphen-belarusian +depend hyphen-bulgarian +depend hyphen-churchslavonic +depend hyphen-mongolian +depend hyphen-russian +depend hyphen-serbian +depend hyphen-ukrainian +depend lcyw +depend lh +depend lhcyr +depend lshort-bulgarian +depend lshort-mongol +depend lshort-russian +depend lshort-ukr +depend mongolian-babel +depend montex +depend mpman-ru +depend numnameru +depend pst-eucl-translation-bg +depend ruhyphen +depend russ +depend serbian-apostrophe +depend serbian-date-lat +depend serbian-def-cyr +depend serbian-lig +depend t2 +depend texlive-ru +depend texlive-sr +depend ukrhyph +depend xecyrmongolian +containersize 608 +containerchecksum 43ba5d0f21162fbdb6fd0e9dc7c990fa845918704020da8ca5c6770139370be55f4b707f98708c28b472f9500ee25ea734bdd96c5541a22e66b69c03ae777ad0 + +name collection-langczechslovak +category Collection +revision 54074 +shortdesc Czech/Slovak +relocated 1 +longdesc Support for Czech/Slovak. +depend babel-czech +depend babel-slovak +depend cnbwp +depend collection-basic +depend collection-latex +depend cs +depend csbulletin +depend cslatex +depend csplain +depend cstex +depend hyphen-czech +depend hyphen-slovak +depend lshort-czech +depend lshort-slovak +depend texlive-cz +depend vlna +containersize 372 +containerchecksum 719c321173ca12660891080dae509080934f72d13a9417b2c40a22add963c7c5a1ee95d3b306f0d6c26b0db97d69979c27fbb15d1690849aa03b06d4b0193a67 + +name collection-langenglish +category Collection +revision 58290 +shortdesc US and UK English +relocated 1 +longdesc Support for, and documentation in, English. +depend MemoirChapStyles +depend Type1fonts +depend amiweb2c-guide +depend amscls-doc +depend amslatex-primer +depend around-the-bend +depend ascii-chart +depend biblatex-cheatsheet +depend collection-basic +depend components-of-TeX +depend comprehensive +depend dickimaw +depend docsurvey +depend dtxtut +depend first-latex-doc +depend forest-quickstart +depend gentle +depend guide-to-latex +depend happy4th +depend hyphen-english +depend impatient +depend intro-scientific +depend knuth-errata +depend knuth-pdf +depend l2tabu-english +depend latex-brochure +depend latex-course +depend latex-doc-ptr +depend latex-graphics-companion +depend latex-refsheet +depend latex-veryshortguide +depend latex-web-companion +depend latex2e-help-texinfo +depend latex4wp +depend latexcheat +depend latexcourse-rug +depend latexfileinfo-pkgs +depend lshort-english +depend macros2e +depend math-into-latex-4 +depend maths-symbols +depend memdesign +depend metafont-beginners +depend metapost-examples +depend patgen2-tutorial +depend pictexsum +depend plain-doc +depend short-math-guide +depend simplified-latex +depend startlatex2e +depend svg-inkscape +depend tamethebeast +depend tds +depend tex-font-errors-cheatsheet +depend tex-nutshell +depend tex-overview +depend tex-refs +depend texbytopic +depend texonly +depend titlepages +depend tlc2 +depend tlmgrbasics +depend undergradmath +depend visualfaq +depend webguide +depend xetexref +containersize 844 +containerchecksum 6d8bd7a5722a0720003c831c38ddc66c4af4fdc465c676050d71fb2bfec9c66791044b8d7c62399953ec4017c1935062ccbffd4c66028df79c9dd59fe42073b3 + +name collection-langeuropean +category Collection +revision 58626 +shortdesc Other European languages +relocated 1 +longdesc Support for a number of European languages; others (Greek, +longdesc German, French, ...) have their own collections, depending +longdesc simply on the size of the support. +depend armtex +depend babel-albanian +depend babel-bosnian +depend babel-breton +depend babel-croatian +depend babel-danish +depend babel-dutch +depend babel-estonian +depend babel-finnish +depend babel-friulan +depend babel-hungarian +depend babel-icelandic +depend babel-irish +depend babel-kurmanji +depend babel-latin +depend babel-latvian +depend babel-macedonian +depend babel-norsk +depend babel-occitan +depend babel-piedmontese +depend babel-romanian +depend babel-romansh +depend babel-samin +depend babel-scottish +depend babel-slovenian +depend babel-swedish +depend babel-turkish +depend babel-welsh +depend collection-basic +depend finbib +depend gloss-occitan +depend hrlatex +depend hulipsum +depend hyphen-croatian +depend hyphen-danish +depend hyphen-dutch +depend hyphen-estonian +depend hyphen-finnish +depend hyphen-friulan +depend hyphen-hungarian +depend hyphen-icelandic +depend hyphen-irish +depend hyphen-kurmanji +depend hyphen-latin +depend hyphen-latvian +depend hyphen-lithuanian +depend hyphen-macedonian +depend hyphen-norwegian +depend hyphen-occitan +depend hyphen-piedmontese +depend hyphen-romanian +depend hyphen-romansh +depend hyphen-slovenian +depend hyphen-swedish +depend hyphen-turkish +depend hyphen-uppersorbian +depend hyphen-welsh +depend lithuanian +depend lshort-dutch +depend lshort-estonian +depend lshort-finnish +depend lshort-slovenian +depend lshort-turkish +depend nevelok +depend rojud +depend swebib +depend turkmen +containersize 704 +containerchecksum a1fe7a0531b3a0581591988c62cba7c3032bab5ed8291edbff2c8573adae0ce96ea9087c7f4b018ad0ae341070a826501fb6a92d768ae939a632bae41c0d84f4 + +name collection-langfrench +category Collection +revision 57491 +shortdesc French +relocated 1 +longdesc Support for French and Basque. +depend aeguill +depend annee-scolaire +depend apprendre-a-programmer-en-tex +depend apprends-latex +depend babel-basque +depend babel-french +depend basque-book +depend basque-date +depend bib-fr +depend bibleref-french +depend booktabs-fr +depend collection-basic +depend droit-fr +depend e-french +depend epslatex-fr +depend expose-expl3-dunkerque-2019 +depend facture +depend formation-latex-ul +depend frenchmath +depend frletter +depend frpseudocode +depend hyphen-basque +depend hyphen-french +depend impatient-fr +depend impnattypo +depend l2tabu-french +depend latex2e-help-texinfo-fr +depend lshort-french +depend mafr +depend matapli +depend profcollege +depend tabvar +depend tdsfrmath +depend texlive-fr +depend translation-array-fr +depend translation-dcolumn-fr +depend translation-natbib-fr +depend translation-tabbing-fr +depend variations +depend visualtikz +containersize 596 +containerchecksum da9bc3d0e81b2848a4517aecefd8dbdf98b04f46b3a9631c3d7f07256a9454db59e9f80379fbb07827b3c178f671b21b087a0e2fd780e1e10611cbc8ddfbad3c + +name collection-langgerman +category Collection +revision 55706 +shortdesc German +relocated 1 +longdesc Support for German. +depend apalike-german +depend babel-german +depend bibleref-german +depend booktabs-de +depend collection-basic +depend csquotes-de +depend dehyph +depend dehyph-exptl +depend dhua +depend dtk-bibliography +depend etdipa +depend etoolbox-de +depend fifinddo-info +depend german +depend germbib +depend germkorr +depend hausarbeit-jura +depend hyphen-german +depend koma-script-examples +depend l2picfaq +depend l2tabu +depend latexcheat-de +depend lshort-german +depend lualatex-doc-de +depend microtype-de +depend milog +depend quran-de +depend r_und_s +depend schulmathematik +depend templates-fenn +depend templates-sommer +depend termcal-de +depend texlive-de +depend tipa-de +depend translation-arsclassica-de +depend translation-biblatex-de +depend translation-chemsym-de +depend translation-ecv-de +depend translation-enumitem-de +depend translation-europecv-de +depend translation-filecontents-de +depend translation-moreverb-de +depend udesoftec +depend uhrzeit +depend umlaute +depend voss-mathcol +containersize 628 +containerchecksum 19b9f47b68ca6068900c413d8216e13c20d25ab084cdcbd500694a18a10cbaa35ba5681be09392e0b20873788519a436c28c1ea89a728e3f546083ce0883c15c + +name collection-langgreek +category Collection +revision 54139 +shortdesc Greek +relocated 1 +longdesc Support for Greek. +depend babel-greek +depend begingreek +depend betababel +depend cbfonts +depend cbfonts-fd +depend collection-basic +depend gfsbaskerville +depend gfsporson +depend greek-fontenc +depend greek-inputenc +depend greekdates +depend greektex +depend greektonoi +depend hyphen-ancientgreek +depend hyphen-greek +depend ibycus-babel +depend ibygrk +depend kerkis +depend levy +depend lgreek +depend mkgrkindex +depend teubner +depend xgreek +depend yannisgr +containersize 428 +containerchecksum 15a0ac0f1e4e3c4f1e107e34ae2794e637b20a00e1d40f3a8d8fda225ff8a9e948fb77153b043bbcd0e7aaef4840a97ce9e19ae059ce2560d468fc373fc37cfa + +name collection-langitalian +category Collection +revision 55129 +shortdesc Italian +relocated 1 +longdesc Support for Italian. +depend amsldoc-it +depend amsmath-it +depend amsthdoc-it +depend antanilipsum +depend babel-italian +depend codicefiscaleitaliano +depend collection-basic +depend fancyhdr-it +depend fixltxhyph +depend frontespizio +depend hyphen-italian +depend itnumpar +depend l2tabu-italian +depend latex4wp-it +depend layaureo +depend lshort-italian +depend psfrag-italian +depend texlive-it +depend verifica +containersize 432 +containerchecksum 6ec5e8a62e3c1ed8e3c23542381091d38c77af507af7088a55e44f1e34b85d01ec19342db4541d9d6cd712c0929d54a3fc663e1d8fde3c53fef0d6fc43be4994 + +name collection-langjapanese +category Collection +revision 58754 +shortdesc Japanese +relocated 1 +longdesc Support for Japanese; additional packages are in +longdesc collection-langcjk. +depend ascmac +depend babel-japanese +depend bxbase +depend bxcjkjatype +depend bxghost +depend bxjaholiday +depend bxjalipsum +depend bxjaprnind +depend bxjatoucs +depend bxjscls +depend bxorigcapt +depend bxwareki +depend collection-langcjk +depend convbkmk +depend endnotesj +depend gckanbun +depend gentombow +depend haranoaji +depend haranoaji-extra +depend ifptex +depend ifxptex +depend ipaex +depend japanese-otf +depend japanese-otf-uptex +depend jlreq +depend jlreq-deluxe +depend jsclasses +depend lshort-japanese +depend luatexja +depend mendex-doc +depend morisawa +depend pbibtex-base +depend platex +depend platex-tools +depend platexcheat +depend plautopatch +depend ptex +depend ptex-base +depend ptex-fontmaps +depend ptex-fonts +depend ptex-manual +depend ptex2pdf +depend pxbase +depend pxchfon +depend pxcjkcat +depend pxjahyper +depend pxjodel +depend pxrubrica +depend pxufont +depend texlive-ja +depend uplatex +depend uptex +depend uptex-base +depend uptex-fonts +depend wadalab +depend zxjafbfont +depend zxjatype +containersize 628 +containerchecksum 7bccea1e7b80bf4ad0af3f0f6b5636088cdac94562fc87b4b619cdef5c9b2d0abef1ab588a6525acf920449a3bdf2e201f146f8ccba2851cdb70b46da92128fb + +name collection-langkorean +category Collection +revision 54074 +shortdesc Korean +relocated 1 +longdesc Support for Korean; additional packages in collection-langcjk. +depend baekmuk +depend cjk-ko +depend collection-langcjk +depend kotex-oblivoir +depend kotex-plain +depend kotex-utf +depend kotex-utils +depend lshort-korean +depend nanumtype1 +depend pmhanguljamo +depend uhc +depend unfonts-core +depend unfonts-extra +containersize 396 +containerchecksum 2d93df728d34137c8f9a884aa2871a2980e806672006f2c5f0c5f79412d5789c6f94958363cfc9a78b5a97a7d76bbb6cb157b2cb2a8a283f7afdfd838fa24883 + +name collection-langother +category Collection +revision 57757 +shortdesc Other languages +relocated 1 +longdesc Support for languages not otherwise listed, including Indic, +longdesc Thai, Vietnamese, Hebrew, Indonesian, African languages, and +longdesc plenty more. The split is made simply on the basis of the size +longdesc of the support, to keep both collection sizes and the number of +longdesc collections reasonable. +depend aalok +depend akshar +depend amsldoc-vn +depend aramaic-serto +depend babel-azerbaijani +depend babel-esperanto +depend babel-georgian +depend babel-hebrew +depend babel-indonesian +depend babel-interlingua +depend babel-malay +depend babel-sorbian +depend babel-thai +depend babel-vietnamese +depend bangtex +depend bengali +depend burmese +depend chhaya +depend cjhebrew +depend collection-basic +depend ctib +depend ebong +depend ethiop +depend ethiop-t1 +depend fc +depend fonts-tlwg +depend hindawi-latex-template +depend hyphen-afrikaans +depend hyphen-armenian +depend hyphen-coptic +depend hyphen-esperanto +depend hyphen-ethiopic +depend hyphen-georgian +depend hyphen-indic +depend hyphen-indonesian +depend hyphen-interlingua +depend hyphen-sanskrit +depend hyphen-thai +depend hyphen-turkmen +depend latex-mr +depend latexbangla +depend latino-sine-flexione +depend lshort-thai +depend lshort-vietnamese +depend marathi +depend ntheorem-vn +depend padauk +depend quran-bn +depend quran-ur +depend sanskrit +depend sanskrit-t1 +depend thaienum +depend thaispec +depend unicode-alphabets +depend velthuis +depend vntex +depend wnri +depend wnri-latex +depend xetex-devanagari +containersize 804 +containerchecksum 0594347c16da942376cecee568ca57700245e744b84eeec39b5381025743de24f4954005fe5778dca3f0c44a5e2cd918eaf5f38db1c8771e5850a395e3040f7c + +name collection-langpolish +category Collection +revision 54074 +shortdesc Polish +relocated 1 +longdesc Support for Polish. +depend babel-polish +depend bredzenie +depend cc-pl +depend collection-basic +depend collection-latex +depend gustlib +depend gustprog +depend hyphen-polish +depend lshort-polish +depend mex +depend mwcls +depend pl +depend polski +depend przechlewski-book +depend qpxqtx +depend tap +depend tex-virtual-academy-pl +depend texlive-pl +depend utf8mex +containersize 408 +containerchecksum fc0d08f70aeb83869109290e6d1585d513097dcd4e17791752ecd3d26ac202838afb5931f78ceaeeaf72c63b18fe9183edd650c075d03188f24cb2caded178de + +name collection-langportuguese +category Collection +revision 54074 +shortdesc Portuguese +relocated 1 +longdesc Support for Portuguese. +depend babel-portuges +depend beamer-tut-pt +depend collection-basic +depend cursolatex +depend feupphdteses +depend hyphen-portuguese +depend latex-via-exemplos +depend latexcheat-ptbr +depend lshort-portuguese +depend numberpt +depend ordinalpt +depend xypic-tut-pt +containersize 392 +containerchecksum 16d67d288fb702807b43dcf8da044a45206c27c5cf0d953688fc341966fb166db8cec69b727b1de079b9bf434f024f7338eaf34529510cab7881147d1635b43d + +name collection-langspanish +category Collection +revision 54141 +shortdesc Spanish +relocated 1 +longdesc Support for Spanish. +depend babel-catalan +depend babel-galician +depend babel-spanish +depend collection-basic +depend es-tex-faq +depend hyphen-catalan +depend hyphen-galician +depend hyphen-spanish +depend l2tabu-spanish +depend latex2e-help-texinfo-spanish +depend latexcheat-esmx +depend lshort-spanish +depend texlive-es +containersize 380 +containerchecksum 88bdc5cefd5519bc80e50e2d808abf32aae8f7c730023afab3babb82ab817dc034c78d42b4143135df187343de7164a8fd94dc95c5ec8909e317a2f5628de15e + +name collection-latex +category Collection +revision 57048 +shortdesc LaTeX fundamental packages +relocated 1 +longdesc These packages are either mandated by the core LaTeX team, or +longdesc very widely used and strongly recommended in practice. +depend ae +depend amscls +depend amsmath +depend atbegshi +depend atveryend +depend auxhook +depend babel +depend babel-english +depend babelbib +depend bigintcalc +depend bitset +depend bookmark +depend carlisle +depend collection-basic +depend colortbl +depend epstopdf-pkg +depend etexcmds +depend fancyhdr +depend firstaid +depend fix2col +depend geometry +depend gettitlestring +depend graphics +depend graphics-cfg +depend grfext +depend hopatch +depend hycolor +depend hyperref +depend intcalc +depend kvdefinekeys +depend kvoptions +depend kvsetkeys +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-bin +depend latex-fonts +depend latexconfig +depend letltxmacro +depend ltxcmds +depend ltxmisc +depend mfnfss +depend mptopdf +depend natbib +depend oberdiek +depend pagesel +depend pdfescape +depend pslatex +depend psnfss +depend pspicture +depend refcount +depend rerunfilecheck +depend stringenc +depend tools +depend uniquecounter +depend url +containersize 696 +containerchecksum 0568a3251d71fb3106fbb3961427200419ae1df22d39b5e72c608e2d94fc35a0e5c77fbe41bbb6fa33610321f2620624264d99675e2f88e72f9d156693143a7e + +name collection-latexextra +category Collection +revision 59009 +shortdesc LaTeX additional packages +relocated 1 +longdesc A very large collection of add-on packages for LaTeX. +depend 2up +depend ESIEEcv +depend GS1 +depend HA-prosper +depend Tabbing +depend a0poster +depend a4wide +depend a5comb +depend abraces +depend abstract +depend accessibility +depend accsupp +depend achemso +depend acro +depend acronym +depend acroterm +depend actuarialangle +depend actuarialsymbol +depend addfont +depend addlines +depend adjmulticol +depend adjustbox +depend adrconv +depend advdate +depend akktex +depend akletter +depend alertmessage +depend alnumsec +depend alphalph +depend altfont +depend amsaddr +depend animate +depend anonchap +depend answers +depend anyfontsize +depend appendix +depend appendixnumberbeamer +depend apptools +depend arabicfront +depend arcs +depend arraycols +depend arrayjobx +depend arraysort +depend arydshln +depend asciilist +depend askinclude +depend assignment +depend assoccnt +depend association-matrix +depend atenddvi +depend attachfile +depend aurl +depend authoraftertitle +depend authorarchive +depend authorindex +depend autofancyhdr +depend autonum +depend autopdf +depend avremu +depend axessibility +depend background +depend bankstatement +depend bashful +depend basicarith +depend bchart +depend beamer-rl +depend beamer2thesis +depend beamerappendixnote +depend beameraudience +depend beamerauxtheme +depend beamercolorthemeowl +depend beamerdarkthemes +depend beamerposter +depend beamersubframe +depend beamertheme-cuerna +depend beamertheme-detlevcm +depend beamertheme-epyt +depend beamertheme-focus +depend beamertheme-light +depend beamertheme-metropolis +depend beamertheme-npbt +depend beamertheme-phnompenh +depend beamertheme-pure-minimalistic +depend beamertheme-saintpetersburg +depend beamertheme-trigon +depend beamertheme-upenn-bc +depend beamerthemejltree +depend beamerthemelalic +depend beamerthemenirma +depend beamerthemenord +depend bearwear +depend beaulivre +depend beton +depend bewerbung +depend bez123 +depend bhcexam +depend bibletext +depend bigfoot +depend bigints +depend biochemistry-colors +depend bithesis +depend bizcard +depend blindtext +depend blkarray +depend block +depend blowup +depend bnumexpr +depend boites +depend bold-extra +depend bookcover +depend bookest +depend booklet +depend bookshelf +depend boolexpr +depend bophook +depend boxedminipage +depend boxhandler +depend bracketkey +depend braket +depend breakurl +depend bubblesort +depend bullcntr +depend bxcalc +depend bxdpx-beamer +depend bxdvidriver +depend bxenclose +depend bxnewfont +depend bxpapersize +depend bxpdfver +depend bxtexlogo +depend calcage +depend calctab +depend calculator +depend calrsfs +depend cals +depend calxxxx-yyyy +depend cancel +depend canoniclayout +depend capt-of +depend captcont +depend captdef +depend carbohydrates +depend cases +depend casyl +depend catchfile +depend catchfilebetweentags +depend catechis +depend catoptions +depend cbcoptic +depend ccaption +depend cclicenses +depend cd +depend cd-cover +depend cdpbundl +depend cellprops +depend cellspace +depend censor +depend centeredline +depend centerlastline +depend changebar +depend changelayout +depend changelog +depend changepage +depend changes +depend chappg +depend chapterfolder +depend cheatsheet +depend checkend +depend chet +depend chextras +depend childdoc +depend chkfloat +depend chletter +depend chngcntr +depend chronology +depend circ +depend circledsteps +depend classics +depend classpack +depend clefval +depend cleveref +depend clipboard +depend clock +depend clrdblpg +depend clrstrip +depend cmdstring +depend cmdtrack +depend cmsd +depend cnltx +depend cntformats +depend cntperchap +depend codedoc +depend codepage +depend codesection +depend collcell +depend collectbox +depend collection-latexrecommended +depend collection-pictures +depend colophon +depend color-edits +depend colordoc +depend colorinfo +depend coloring +depend colorist +depend colorspace +depend colortab +depend colorwav +depend colorweb +depend colourchange +depend combelow +depend combine +depend comma +depend commado +depend commedit +depend comment +depend competences +depend concepts +depend concprog +depend conditext +depend constants +depend continue +depend contour +depend contracard +depend conv-xkv +depend cooking +depend cooking-units +depend cool +depend coollist +depend coolstr +depend coolthms +depend cooltooltips +depend coordsys +depend copyedit +depend copyrightbox +depend coseoul +depend counttexruns +depend courseoutline +depend coursepaper +depend coverpage +depend cprotect +depend crbox +depend crossreference +depend crossreftools +depend csquotes +depend css-colors +depend csvmerge +depend csvsimple +depend cuisine +depend currency +depend currfile +depend currvita +depend cutwin +depend cv +depend cv4tw +depend cweb-latex +depend cyber +depend cybercic +depend dashbox +depend dashrule +depend dashundergaps +depend dataref +depend datatool +depend datax +depend dateiliste +depend datenumber +depend datetime +depend datetime2 +depend datetime2-bahasai +depend datetime2-basque +depend datetime2-breton +depend datetime2-bulgarian +depend datetime2-catalan +depend datetime2-croatian +depend datetime2-czech +depend datetime2-danish +depend datetime2-dutch +depend datetime2-en-fulltext +depend datetime2-english +depend datetime2-esperanto +depend datetime2-estonian +depend datetime2-finnish +depend datetime2-french +depend datetime2-galician +depend datetime2-german +depend datetime2-greek +depend datetime2-hebrew +depend datetime2-icelandic +depend datetime2-irish +depend datetime2-it-fulltext +depend datetime2-italian +depend datetime2-latin +depend datetime2-lsorbian +depend datetime2-magyar +depend datetime2-norsk +depend datetime2-polish +depend datetime2-portuges +depend datetime2-romanian +depend datetime2-russian +depend datetime2-samin +depend datetime2-scottish +depend datetime2-serbian +depend datetime2-slovak +depend datetime2-slovene +depend datetime2-spanish +depend datetime2-swedish +depend datetime2-turkish +depend datetime2-ukrainian +depend datetime2-usorbian +depend datetime2-welsh +depend dblfloatfix +depend decimal +depend decorule +depend delimtxt +depend denisbdoc +depend diabetes-logbook +depend diagbox +depend diagnose +depend dialogl +depend dichokey +depend dimnum +depend dinbrief +depend directory +depend dirtytalk +depend dlfltxb +depend dnaseq +depend doclicense +depend docmfp +depend docmute +depend doctools +depend documentation +depend docutils +depend doi +depend dotarrow +depend dotlessi +depend dotseqn +depend download +depend dox +depend dpfloat +depend dprogress +depend drac +depend draftcopy +depend draftfigure +depend draftwatermark +depend dtk +depend dtxdescribe +depend dtxgallery +depend ducksay +depend duckuments +depend dvdcoll +depend dynamicnumber +depend dynblocks +depend ean13isbn +depend easy +depend easy-todo +depend easybook +depend easyfig +depend easyfloats +depend easyformat +depend easylist +depend easyreview +depend ebezier +depend ecclesiastic +depend econlipsum +depend ecv +depend ed +depend edichokey +depend edmargin +depend eemeir +depend efbox +depend egplot +depend ehhline +depend einfart +depend elegantbook +depend elegantnote +depend elegantpaper +depend elements +depend ellipsis +depend elmath +depend elocalloc +depend elpres +depend elzcards +depend emarks +depend embedall +depend embedfile +depend embrac +depend emptypage +depend emulateapj +depend endfloat +depend endheads +depend endnotes +depend endnotes-hy +depend engpron +depend engrec +depend enotez +depend enumitem +depend enumitem-zref +depend envbig +depend environ +depend envlab +depend epigraph +depend epigraph-keys +depend epiolmec +depend eq-pin2corr +depend eqell +depend eqlist +depend eqnalign +depend eqname +depend eqparbox +depend errata +depend erw-l3 +depend esami +depend esdiff +depend esindex +depend esint +depend esint-type1 +depend etaremune +depend etextools +depend etoc +depend eukdate +depend eulerpx +depend europasscv +depend europecv +depend everyhook +depend everypage +depend exam +depend exam-n +depend exam-randomizechoices +depend examdesign +depend example +depend examplep +depend exceltex +depend excludeonly +depend exercise +depend exercisebank +depend exercisepoints +depend exercises +depend exesheet +depend exframe +depend exp-testopt +depend expdlist +depend export +depend exsheets +depend exsol +depend extract +depend facsimile +depend factura +depend fancyhandout +depend fancylabel +depend fancynum +depend fancypar +depend fancyslides +depend fancytabs +depend fancytooltips +depend fbox +depend fcolumn +depend fetchcls +depend fewerfloatpages +depend ffslides +depend fgruler +depend fibeamer +depend fifo-stack +depend figsize +depend filecontents +depend filecontentsdef +depend filedate +depend fileinfo +depend filemod +depend fink +depend finstrut +depend fithesis +depend fixcmex +depend fixfoot +depend fixme +depend fixmetodonotes +depend fjodor +depend flabels +depend flacards +depend flagderiv +depend flashcards +depend flashmovie +depend flipbook +depend flippdf +depend floatflt +depend floatrow +depend flowfram +depend fmp +depend fmtcount +depend fn2end +depend fnbreak +depend fncychap +depend fncylab +depend fnpara +depend fnpct +depend fnumprint +depend foilhtml +depend foliono +depend fontaxes +depend fontsetup +depend fontsize +depend fonttable +depend footmisc +depend footmisx +depend footnotebackref +depend footnoterange +depend footnpag +depend forarray +depend foreign +depend forloop +depend formlett +depend forms16be +depend formular +depend fragments +depend frame +depend framed +depend frankenstein +depend frege +depend froufrou +depend ftcap +depend ftnxtra +depend fullblck +depend fullminipage +depend fullwidth +depend fundus-calligra +depend fundus-cyr +depend fundus-sueterlin +depend fvextra +depend fwlw +depend g-brief +depend gatherenum +depend gauss +depend gcard +depend gcite +depend gender +depend genmpage +depend getfiledate +depend getitems +depend gindex +depend ginpenc +depend gitfile-info +depend gitinfo +depend gitinfo2 +depend gitlog +depend gitver +depend globalvals +depend gloss +depend glossaries +depend glossaries-danish +depend glossaries-dutch +depend glossaries-english +depend glossaries-estonian +depend glossaries-extra +depend glossaries-finnish +depend glossaries-french +depend glossaries-german +depend glossaries-irish +depend glossaries-italian +depend glossaries-magyar +depend glossaries-nynorsk +depend glossaries-polish +depend glossaries-portuges +depend glossaries-serbian +depend glossaries-slovene +depend glossaries-spanish +depend gmdoc +depend gmdoc-enhance +depend gmiflink +depend gmutils +depend gmverb +depend grabbox +depend graphbox +depend graphicx-psmin +depend graphicxbox +depend graphpaper +depend grayhints +depend grfpaste +depend grid +depend grid-system +depend gridpapers +depend gridset +depend gridslides +depend guitlogo +depend hackthefootline +depend halloweenmath +depend handin +depend handout +depend hang +depend hanging +depend hardwrap +depend harnon-cv +depend harpoon +depend hc +depend he-she +depend hhtensor +depend highlightlatex +depend histogr +depend hitec +depend hitreport +depend hletter +depend hobsub +depend hpsdiss +depend hrefhide +depend huawei +depend hvindex +depend hvqrurl +depend hypdestopt +depend hypdvips +depend hyper +depend hyperbar +depend hypernat +depend hyperxmp +depend hyphenat +depend identkey +depend idxcmds +depend idxlayout +depend iffont +depend ifmslide +depend ifmtarg +depend ifnextok +depend ifoddpage +depend ifthenx +depend iitem +depend image-gallery +depend imakeidx +depend import +depend incgraph +depend indextools +depend inline-images +depend inlinedef +depend inputenx +depend inputtrc +depend interactiveworkbook +depend interfaces +depend intopdf +depend inversepath +depend invoice +depend invoice-class +depend invoice2 +depend iso +depend iso10303 +depend isodate +depend isodoc +depend isonums +depend isopt +depend isorot +depend isotope +depend issuulinks +depend iwhdp +depend jlabels +depend jslectureplanner +depend jumplines +depend jvlisting +depend kalendarium +depend kantlipsum +depend kerntest +depend keycommand +depend keyfloat +depend keyindex +depend keyreader +depend keystroke +depend keyval2e +depend keyvaltable +depend kix +depend knowledge +depend koma-moderncvclassic +depend koma-script-sfs +depend komacv +depend komacv-rg +depend ktv-texdata +depend l3build +depend labbook +depend labels +depend labels4easylist +depend labelschanged +depend lastpackage +depend lastpage +depend latex-amsmath-dev +depend latex-base-dev +depend latex-bin-dev +depend latex-firstaid-dev +depend latex-graphics-dev +depend latex-tools-dev +depend latex-uni8 +depend latexcolors +depend latexdemo +depend latexgit +depend layouts +depend lazylist +depend lccaps +depend lcd +depend lcg +depend leading +depend leaflet +depend lebhart +depend lectures +depend lectureslides +depend leftidx +depend leftindex +depend leipzig +depend lengthconvert +depend lettre +depend lettrine +depend lewis +depend lhelp +depend libgreek +depend limap +depend linegoal +depend linop +depend lipsum +depend lisp-on-tex +depend listing +depend listingsutf8 +depend listlbls +depend listliketab +depend listofsymbols +depend lkproof +depend lmake +depend locality +depend logbox +depend logical-markup-utils +depend logpap +depend longfbox +depend longfigure +depend longnamefilelist +depend loops +depend lsc +depend lstaddons +depend lstfiracode +depend lt3graph +depend ltablex +depend ltabptch +depend ltxdockit +depend ltxguidex +depend ltxkeys +depend ltxnew +depend ltxtools +depend lua-check-hyphen +depend lua-physical +depend luatodonotes +depend macroswap +depend magaz +depend magicnum +depend mailing +depend mailmerge +depend makebarcode +depend makebase +depend makebox +depend makecell +depend makecirc +depend makecmds +depend makecookbook +depend makedtx +depend makeglos +depend makerobust +depend mandi +depend manfnt +depend manuscript +depend manyind +depend marginfit +depend marginfix +depend marginnote +depend markdown +depend mathalpha +depend mathastext +depend mathexam +depend mathfam256 +depend mathfont +depend maybemath +depend mcaption +depend mceinleger +depend mcexam +depend mcite +depend mciteplus +depend mdframed +depend media4svg +depend media9 +depend medstarbeamer +depend meetingmins +depend memexsupp +depend memory +depend mensa-tex +depend menu +depend menucard +depend menukeys +depend metalogox +depend metanorma +depend metastr +depend method +depend metre +depend mfirstuc +depend mftinc +depend mi-solns +depend midpage +depend mindflow +depend minibox +depend minidocument +depend minifp +depend minimalist +depend minipage-marginpar +depend minitoc +depend minorrevision +depend minted +depend minutes +depend mla-paper +depend mleftright +depend mlist +depend mmap +depend mnotes +depend moderncv +depend modernposter +depend moderntimeline +depend modref +depend modroman +depend modular +depend monofill +depend moodle +depend moreenum +depend morefloats +depend morehype +depend moresize +depend moreverb +depend morewrites +depend movie15 +depend mparhack +depend mpostinl +depend msc +depend msg +depend mslapa +depend mtgreek +depend multenum +depend multiaudience +depend multibbl +depend multicap +depend multicolrule +depend multidef +depend multienv +depend multiexpand +depend multilang +depend multirow +depend mversion +depend mwe +depend mycv +depend mylatex +depend mylatexformat +depend nag +depend nameauth +depend namespc +depend ncclatex +depend ncctools +depend needspace +depend nestquot +depend newcommand +depend newenviron +depend newfile +depend newlfm +depend newspaper +depend newunicodechar +depend newvbtm +depend newverbs +depend nextpage +depend nfssext-cfr +depend nicefilelist +depend niceframe +depend nicetext +depend nidanfloat +depend ninecolors +depend nlctdoc +depend noconflict +depend noindentafter +depend noitcrul +depend nolbreaks +depend nomencl +depend nomentbl +depend nonfloat +depend nonumonpart +depend nopageno +depend normalcolor +depend notes +depend notespages +depend notestex +depend notoccite +depend nowidow +depend nox +depend ntheorem +depend numberedblock +depend numname +depend numprint +depend numspell +depend ocg-p +depend ocgx +depend ocgx2 +depend ocr-latex +depend octavo +depend oldstyle +depend onlyamsmath +depend opcit +depend optidef +depend optional +depend options +depend orcidlink +depend orientation +depend outline +depend outliner +depend outlines +depend outlining +depend overlays +depend overpic +depend padcount +depend pagecolor +depend pagecont +depend pagenote +depend pagerange +depend pageslts +depend paper +depend papercdcase +depend papermas +depend papertex +depend paracol +depend parades +depend paralist +depend paresse +depend parnotes +depend parsa +depend parselines +depend pas-cours +depend pas-cv +depend pas-tableur +depend patch +depend patchcmd +depend pauldoc +depend pawpict +depend pax +depend pbalance +depend pbox +depend pbsheet +depend pdf14 +depend pdfcolmk +depend pdfcomment +depend pdfcprot +depend pdfmarginpar +depend pdfoverlay +depend pdfpagediff +depend pdfpc +depend pdfpc-movie +depend pdfprivacy +depend pdfreview +depend pdfscreen +depend pdfslide +depend pdfsync +depend pdfwin +depend pdfx +depend pecha +depend perltex +depend permute +depend petiteannonce +depend phffullpagefigure +depend phfnote +depend phfparen +depend phfqit +depend phfquotetext +depend phfsvnwatermark +depend phfthm +depend philex +depend phonenumbers +depend photo +depend picture +depend piff +depend pkgloader +depend placeins +depend plantslabels +depend plates +depend plweb +depend pmboxdraw +depend polynom +depend polynomial +depend polytable +depend postcards +depend poster-mac +depend powerdot +depend ppr-prv +depend practicalreports +depend prelim2e +depend preprint +depend pressrelease +depend prettyref +depend preview +depend printlen +depend probsoln +depend program +depend progress +depend progressbar +depend proofread +depend properties +depend prosper +depend protex +depend protocol +depend psfragx +depend pstool +depend pstring +depend pxgreeks +depend pygmentex +depend python +depend qcm +depend qstest +depend qsymbols +depend quicktype +depend quiz2socrative +depend quotchap +depend quoting +depend quotmark +depend ran_toks +depend randtext +depend rccol +depend rcs-multi +depend rcsinfo +depend readablecv +depend readarray +depend realboxes +depend recipe +depend recipebook +depend recipecard +depend rectopma +depend refcheck +depend refenums +depend reflectgraphics +depend refman +depend refstyle +depend regcount +depend regexpatch +depend register +depend regstats +depend relenc +depend relsize +depend repeatindex +depend repltext +depend returntogrid +depend rgltxdoc +depend rjlparshap +depend rlepsf +depend rmpage +depend robustcommand +depend robustindex +depend romanbar +depend romanbarpagenumber +depend romanneg +depend romannum +depend rotfloat +depend rotpages +depend roundbox +depend rterface +depend rtkinenc +depend rulerbox +depend rulercompass +depend runcode +depend rvwrite +depend sanitize-umlaut +depend sauerj +depend savefnmark +depend savesym +depend savetrees +depend scale +depend scalebar +depend scalerel +depend scanpages +depend schedule +depend schooldocs +depend scontents +depend scrlayer-fancyhdr +depend scrlttr2copy +depend sdaps +depend sdrt +depend secdot +depend secnum +depend sectionbox +depend sectionbreak +depend sectsty +depend seealso +depend selectp +depend selinput +depend semantex +depend semantic +depend semantic-markup +depend semesterplanner +depend semioneside +depend semproc +depend semtex +depend sepfootnotes +depend seqsplit +depend sesstime +depend sf298 +depend sffms +depend sfmath +depend shadethm +depend shadow +depend shadowtext +depend shapepar +depend shdoc +depend shipunov +depend shorttoc +depend show2e +depend showcharinbox +depend showdim +depend showexpl +depend showhyphens +depend showlabels +depend sidecap +depend sidenotes +depend silence +depend simplecd +depend simplecv +depend simpleinvoice +depend simplivre +depend sitem +depend skb +depend skdoc +depend skeldoc +depend skeycommand +depend skeyval +depend skills +depend skrapport +depend slantsc +depend smalltableof +depend smartref +depend smartunits +depend snapshot +depend snotez +depend soulpos +depend soulutf8 +depend spacingtricks +depend spark-otf +depend sparklines +depend sphack +depend splitindex +depend spot +depend spotcolor +depend spreadtab +depend spverbatim +depend srbook-mem +depend srcltx +depend sseq +depend sslides +depend stack +depend stackengine +depend standalone +depend stdclsdv +depend stdpage +depend stealcaps +depend stex +depend storebox +depend storecmd +depend stringstrings +depend sttools +depend stubs +depend studenthandouts +depend subdepth +depend subdocs +depend subeqn +depend subeqnarray +depend subfigmat +depend subfigure +depend subfiles +depend subfloat +depend substitutefont +depend substr +depend supertabular +depend suppose +depend svg +depend svgcolor +depend svn +depend svn-multi +depend svn-prov +depend svninfo +depend swfigure +depend syntax +depend syntrace +depend synttree +depend tabfigures +depend tableaux +depend tablefootnote +depend tableof +depend tablestyles +depend tablists +depend tabls +depend tablvar +depend tabstackengine +depend tabto-ltx +depend tabu +depend tabularborder +depend tabularcalc +depend tabularew +depend tabulary +depend tagging +depend tagpair +depend tagpdf +depend talk +depend tamefloats +depend tasks +depend tcldoc +depend tcolorbox +depend tdclock +depend technics +depend ted +depend templatetools +depend termcal +depend termlist +depend testhyphens +depend testidx +depend tex-label +depend tex-locale +depend texlogos +depend texmate +depend texments +depend texpower +depend texshade +depend textfit +depend textmerg +depend textpos +depend textualicomma +depend texvc +depend theoremref +depend thinsp +depend thmtools +depend threadcol +depend threeparttable +depend threeparttablex +depend thumb +depend thumbs +depend thumby +depend ticket +depend tipauni +depend titlecaps +depend titlefoot +depend titlepic +depend titleref +depend titlesec +depend titling +depend tocbibind +depend tocdata +depend tocloft +depend tocvsec2 +depend todo +depend todonotes +depend tokcycle +depend tokenizer +depend toolbox +depend topfloat +depend topiclongtable +depend totalcount +depend totcount +depend totpages +depend translations +depend transparent +depend trfsigns +depend trimspaces +depend trivfloat +depend trsym +depend truncate +depend tucv +depend turnthepage +depend twoinone +depend twoup +depend txgreeks +depend type1cm +depend typed-checklist +depend typeface +depend typoaid +depend typogrid +depend uassign +depend ucs +depend uebungsblatt +depend umoline +depend underlin +depend underoverlap +depend undolabl +depend unitconv +depend unitipa +depend units +depend unravel +depend upmethodology +depend upquote +depend uri +depend ushort +depend uspace +depend utf8add +depend uwmslide +depend variablelm +depend varindex +depend varsfromjobname +depend varwidth +depend vcell +depend vdmlisting +depend verbasef +depend verbatimbox +depend verbatimcopy +depend verbdef +depend verbments +depend verifiche +depend version +depend versions +depend versonotes +depend vertbars +depend vgrid +depend vhistory +depend vmargin +depend volumes +depend vpe +depend vruler +depend vtable +depend vwcol +depend wallcalendar +depend wallpaper +depend warning +depend warpcol +depend was +depend webquiz +depend widetable +depend widows-and-orphans +depend williams +depend willowtreebook +depend withargs +depend wordcount +depend wordlike +depend worksheet +depend wrapfig +depend wtref +depend xargs +depend xassoccnt +depend xbmks +depend xcntperchap +depend xcolor-material +depend xcolor-solarized +depend xcomment +depend xcookybooky +depend xcpdftips +depend xdoc +depend xellipsis +depend xfakebold +depend xfor +depend xhfill +depend xifthen +depend xint +depend xkcdcolors +depend xltabular +depend xmpincl +depend xnewcommand +depend xoptarg +depend xpatch +depend xpeek +depend xprintlen +depend xpunctuate +depend xsavebox +depend xsim +depend xstring +depend xtab +depend xurl +depend xwatermark +depend xytree +depend yafoot +depend yagusylo +depend yaletter +depend ycbook +depend ydoc +depend yplan +depend zebra-goodies +depend zed-csp +depend ziffer +depend zref +depend zwgetfdate +depend zwpagelayout +containersize 6332 +containerchecksum ea36c500bf0b7e1012ac178a67bfd5257b98de8c1a2d2df6290cf89c25bb5b2c9d4807f41158b1658dd8722b2766216b7b6ef3ac2dfd4edec992abd92b4d9f36 + +name collection-latexrecommended +category Collection +revision 57862 +shortdesc LaTeX recommended packages +relocated 1 +longdesc A collection of recommended add-on packages for LaTeX which +longdesc have widespread use, and the release candidate formats +longdesc latex-dev, etc. +depend anysize +depend attachfile2 +depend beamer +depend booktabs +depend breqn +depend caption +depend cite +depend cmap +depend collection-latex +depend crop +depend ctable +depend eso-pic +depend etoolbox +depend euenc +depend euler +depend everysel +depend everyshi +depend extsizes +depend fancybox +depend fancyref +depend fancyvrb +depend filehook +depend float +depend fontspec +depend footnotehyper +depend fp +depend grffile +depend hologo +depend index +depend infwarerr +depend jknapltx +depend koma-script +depend l3experimental +depend latexbug +depend lineno +depend listings +depend lwarp +depend mathspec +depend mathtools +depend mdwtools +depend memoir +depend metalogo +depend microtype +depend ms +depend newfloat +depend ntgclass +depend parskip +depend pdflscape +depend pdfmanagement-testphase +depend pdfpages +depend pdftexcmds +depend polyglossia +depend psfrag +depend ragged2e +depend rcs +depend sansmath +depend section +depend seminar +depend sepnum +depend setspace +depend subfig +depend textcase +depend thumbpdf +depend translator +depend typehtml +depend ucharcat +depend underscore +depend unicode-math +depend xcolor +depend xkeyval +depend xltxtra +depend xunicode +containersize 772 +containerchecksum f763ff9a6832abce7a148bc5e8b9e5860f883ce0a56ad2119d9e18e7fb4dad794456fdc07b3ea107dca17d4174910ebf1613f1072b946a80f29d291ae513d097 + +name collection-luatex +category Collection +revision 58124 +shortdesc LuaTeX packages +relocated 1 +longdesc Packages for LuaTeX, a Unicode-aware extension of pdfTeX, using +longdesc Lua as an embedded scripting and extension language. +longdesc http://luatex.org/ +depend addliga +depend auto-pst-pdf-lua +depend barracuda +depend bezierplot +depend checkcites +depend chickenize +depend chinese-jfm +depend cloze +depend collection-basic +depend combofont +depend cstypo +depend ctablestack +depend ekdosis +depend emoji +depend emojicite +depend enigma +depend innerscript +depend interpreter +depend kanaparser +depend lua-typo +depend lua-uca +depend lua-ul +depend lua-uni-algos +depend lua-visual-debug +depend luacode +depend luacolor +depend luahyphenrules +depend luaimageembed +depend luaindex +depend luainputenc +depend luaintro +depend luakeys +depend lualatex-doc +depend lualatex-math +depend lualatex-truncate +depend lualibs +depend luamplib +depend luaotfload +depend luapackageloader +depend luaprogtable +depend luarandom +depend luatex85 +depend luatexbase +depend luatexko +depend luatextra +depend luavlna +depend luaxml +depend newpax +depend nodetree +depend odsfile +depend optex +depend pdfarticle +depend placeat +depend plantuml +depend selnolig +depend spelling +depend stricttex +depend typewriter +depend uninormalize +containersize 716 +containerchecksum 9534a3381a1dcbe324bb6a7f01645c92a2e922dbfe5787692ae8b10d1668be87120419e4cac48f68db9fe0d1f1c3dd396792ddf221253cc290b86564b87d322d + +name collection-mathscience +category Collection +revision 57759 +shortdesc Mathematics, natural sciences, computer science packages +relocated 1 +depend 12many +depend SIstyle +depend SIunits +depend accents +depend alg +depend algobox +depend algorithm2e +depend algorithmicx +depend algorithms +depend algpseudocodex +depend algxpar +depend aligned-overset +depend amscdx +depend amstex +depend apxproof +depend autobreak +depend axodraw2 +depend backnaur +depend begriff +depend binomexp +depend biocon +depend bitpattern +depend bohr +depend boldtensors +depend bosisio +depend bpchem +depend bropd +depend bussproofs +depend bussproofs-extra +depend bytefield +depend calculation +depend cascade +depend causets +depend ccfonts +depend ccool +depend chemarrow +depend chemcompounds +depend chemcono +depend chemexec +depend chemformula +depend chemgreek +depend chemmacros +depend chemnum +depend chemplants +depend chemschemex +depend chemsec +depend chemstyle +depend clrscode +depend clrscode3e +depend codeanatomy +depend collection-fontsrecommended +depend collection-latex +depend commath +depend commutative-diagrams +depend complexity +depend computational-complexity +depend concmath +depend concrete +depend conteq +depend correctmathalign +depend cryptocode +depend decision-table +depend delim +depend delimseasy +depend delimset +depend derivative +depend diffcoeff +depend digiconfigs +depend dijkstra +depend drawmatrix +depend drawstack +depend dyntree +depend ebproof +depend econometrics +depend eltex +depend emf +depend endiagram +depend engtlc +depend eqexpl +depend eqnarray +depend eqnnumwarn +depend euclideangeometry +depend extarrows +depend extpfeil +depend faktor +depend fascicules +depend fnspe +depend fouridx +depend functan +depend galois +depend gastex +depend gene-logic +depend ghsystem +depend glosmathtools +depend gotoh +depend grundgesetze +depend gu +depend helmholtz-ellis-ji-notation +depend hep +depend hepnames +depend hepparticles +depend hepthesis +depend hepunits +depend includernw +depend interval +depend ionumbers +depend isomath +depend jkmath +depend jupynotex +depend karnaugh +depend karnaugh-map +depend karnaughmap +depend kvmap +depend letterswitharrows +depend lie-hasse +depend logicproof +depend longdivision +depend lpform +depend lplfitch +depend lstbayes +depend mathcommand +depend mathcomp +depend mathfixs +depend mathlig +depend mathpartir +depend mathpunctspace +depend matlab-prettifier +depend matrix-skeleton +depend mattens +depend membranecomputing +depend memorygraphs +depend mgltex +depend mhchem +depend mhequ +depend miller +depend mismath +depend multiobjective +depend natded +depend nath +depend nicematrix +depend nuc +depend nucleardata +depend numerica +depend objectz +depend oplotsymbl +depend ot-tableau +depend oubraces +depend perfectcut +depend physconst +depend physics +depend physunits +depend pinoutikz +depend pm-isomath +depend polexpr +depend prftree +depend principia +depend proba +depend proof-at-the-end +depend prooftrees +depend pseudo +depend pseudocode +depend pythonhighlight +depend qsharp +depend rank-2-roots +depend rec-thy +depend rest-api +depend revquantum +depend ribbonproofs +depend rmathbr +depend sankey +depend sasnrdisplay +depend sciposter +depend sclang-prettifier +depend scratchx +depend sesamanuel +depend sfg +depend shuffle +depend simplebnf +depend simpler-wick +depend simplewick +depend siunitx +depend skmath +depend spalign +depend stanli +depend statex +depend statex2 +depend statistics +depend statistik +depend statmath +depend steinmetz +depend stmaryrd +depend structmech +depend struktex +depend substances +depend subsupscripts +depend subtext +depend susy +depend syllogism +depend sympytexpackage +depend synproof +depend t-angles +depend tablor +depend tensind +depend tensor +depend tex-ewd +depend textgreek +depend textopo +depend thmbox +depend turnstile +depend ulqda +depend unitsdef +depend venn +depend witharrows +depend xymtex +depend yhmath +depend youngtab +depend yquant +depend ytableau +containersize 1480 +containerchecksum 6d82088780ac299028a33232fe067408c2140cb8d17a8d40a2d3d510bb5d29b41f1c11299de31c061701aaa723d85a71b1f26f7bb45b7a4b500168bbd50c91d2 + +name collection-metapost +category Collection +revision 50293 +shortdesc MetaPost and Metafont packages +relocated 1 +depend automata +depend bbcard +depend blockdraw_mp +depend bpolynomial +depend cmarrows +depend collection-basic +depend drv +depend dviincl +depend emp +depend epsincl +depend expressg +depend exteps +depend featpost +depend feynmf +depend feynmp-auto +depend fiziko +depend garrigues +depend gmp +depend hatching +depend latexmp +depend mcf2graph +depend metago +depend metaobj +depend metaplot +depend metapost +depend metapost-colorbrewer +depend metauml +depend mfpic +depend mfpic4ode +depend mp3d +depend mparrows +depend mpattern +depend mpcolornames +depend mpgraphics +depend mptrees +depend piechartmp +depend repere +depend roex +depend roundrect +depend shapes +depend slideshow +depend splines +depend suanpan +depend textpath +depend threeddice +containersize 540 +containerchecksum 09dfaa35971f85134d0854c08a99c4d2b01ddf08e8ab97449460bb99d1236a38c48643501e7bb56197a844491509af301da6c4f75a33d9286601633211ec7d93 + +name collection-music +category Collection +revision 57878 +shortdesc Music packages +relocated 1 +longdesc Music-related fonts and packages. +depend abc +depend autosp +depend bagpipe +depend chordbars +depend chordbox +depend collection-latex +depend ddphonism +depend figbas +depend gchords +depend gregoriotex +depend gtrcrd +depend guitar +depend guitarchordschemes +depend guitartabs +depend harmony +depend latex4musicians +depend leadsheets +depend lilyglyphs +depend lyluatex +depend m-tx +depend musical +depend musicography +depend musixguit +depend musixtex +depend musixtex-fonts +depend musixtnt +depend octave +depend piano +depend pmx +depend pmxchords +depend songbook +depend songs +depend xml2pmx +depend xpiano +containersize 476 +containerchecksum bc842942513a72c6a0f2346025739f09477ae1e920eaefc5e396e0b68ba53465b745db9d9c4534ec39b70f43410a0ae036c69a4e2226944b8f128b507340cc15 + +name collection-pictures +category Collection +revision 58924 +shortdesc Graphics, pictures, diagrams +relocated 1 +longdesc Including TikZ, pict, etc., but MetaPost and PStricks are +longdesc separate. +depend adigraph +depend aobs-tikz +depend askmaps +depend asyfig +depend asypictureb +depend autoarea +depend bardiag +depend beamerswitch +depend binarytree +depend blochsphere +depend bloques +depend blox +depend bodegraph +depend bondgraph +depend bondgraphs +depend braids +depend bxeepic +depend byo-twemojis +depend cachepic +depend callouts +depend celtic +depend chemfig +depend circuit-macros +depend circuitikz +depend collection-basic +depend combinedgraphics +depend curve +depend curve2e +depend curves +depend dcpic +depend diagmac2 +depend ditaa +depend doc-pictex +depend dot2texi +depend dottex +depend dpcircling +depend dratex +depend drs +depend duotenzor +depend dynkin-diagrams +depend ecgdraw +depend eepic +depend ellipse +depend endofproofwd +depend epspdf +depend epspdfconversion +depend esk +depend euflag +depend fast-diagram +depend fig4latex +depend figchild +depend fitbox +depend flowchart +depend forest +depend genealogytree +depend getmap +depend gincltex +depend gnuplottex +depend gradientframe +depend grafcet +depend graph35 +depend graphicxpsd +depend graphviz +depend gtrlib-largetrees +depend harveyballs +depend here +depend hf-tikz +depend hobby +depend hvfloat +depend istgame +depend kblocks +depend knitting +depend knittingpattern +depend ladder +depend lapdf +depend latex-make +depend lpic +depend lroundrect +depend luamesh +depend luasseq +depend maker +depend makeshape +depend mathspic +depend mercatormap +depend milsymb +depend miniplot +depend mkpic +depend modiagram +depend neuralnetwork +depend nl-interval +depend numericplots +depend pb-diagram +depend penrose +depend petri-nets +depend pgf +depend pgf-blur +depend pgf-cmykshadings +depend pgf-pie +depend pgf-soroban +depend pgf-spectra +depend pgf-umlcd +depend pgf-umlsd +depend pgfgantt +depend pgfkeyx +depend pgfmolbio +depend pgfmorepages +depend pgfopts +depend pgfornament +depend pgfplots +depend picinpar +depend pict2e +depend pictex +depend pictex2 +depend pinlabel +depend pixelart +depend pmgraph +depend postage +depend prerex +depend productbox +depend ptolemaicastronomy +depend puyotikz +depend pxpgfmark +depend pxpic +depend qcircuit +depend qrcode +depend quantikz +depend randbild +depend randomwalk +depend realhats +depend reotex +depend rviewport +depend sa-tikz +depend schemabloc +depend scratch +depend scratch3 +depend scsnowman +depend setdeck +depend signchart +depend simpleoptics +depend smartdiagram +depend spath3 +depend spectralsequences +depend swimgraf +depend syntaxdi +depend table-fct +depend texdraw +depend ticollege +depend tikz-3dplot +depend tikz-among-us +depend tikz-bayesnet +depend tikz-bbox +depend tikz-cd +depend tikz-dependency +depend tikz-dimline +depend tikz-feynhand +depend tikz-feynman +depend tikz-imagelabels +depend tikz-inet +depend tikz-kalender +depend tikz-karnaugh +depend tikz-ladder +depend tikz-lake-fig +depend tikz-layers +depend tikz-nef +depend tikz-network +depend tikz-opm +depend tikz-optics +depend tikz-page +depend tikz-palattice +depend tikz-planets +depend tikz-qtree +depend tikz-relay +depend tikz-sfc +depend tikz-timing +depend tikz-trackschematic +depend tikz-truchet +depend tikzcodeblocks +depend tikzducks +depend tikzinclude +depend tikzlings +depend tikzmark +depend tikzmarmots +depend tikzorbital +depend tikzpackets +depend tikzpagenodes +depend tikzpeople +depend tikzpfeile +depend tikzposter +depend tikzscale +depend tikzsymbols +depend tikztosvg +depend tile-graphic +depend timing-diagrams +depend tipfr +depend tkz-base +depend tkz-berge +depend tkz-doc +depend tkz-euclide +depend tkz-fct +depend tkz-graph +depend tkz-orm +depend tkz-tab +depend tqft +depend tsemlines +depend tufte-latex +depend tzplot +depend utfsym +depend venndiagram +depend visualpstricks +depend worldflags +depend xpicture +depend xypic +containersize 1448 +containerchecksum 0465a084f27c59f8fdc8ff386b8a0dd0e8f3c484be463ab89e29bedd652b6b61eec37cea4ec12f488e7902d0422bb04e4dda1e58915cc27eaa12dc8e7a4944f1 + +name collection-plaingeneric +category Collection +revision 58874 +shortdesc Plain (La)TeX packages +relocated 1 +longdesc Add-on packages and macros that work with plain TeX, often +longdesc LaTeX, and occasionally other formats. +depend abbr +depend abstyles +depend apnum +depend autoaligne +depend barr +depend bitelist +depend borceux +depend c-pascal +depend catcodes +depend chronosys +depend collection-basic +depend colorsep +depend compare +depend cweb-old +depend dinat +depend dirtree +depend docbytex +depend dowith +depend eijkhout +depend encxvlna +depend epigram +depend epsf +depend epsf-dvipdfmx +depend expkv +depend expkv-cs +depend expkv-def +depend expkv-opt +depend fenixpar +depend figflow +depend fixpdfmag +depend fltpoint +depend fntproof +depend font-change +depend fontch +depend fontname +depend gates +depend getoptk +depend gfnotation +depend gobble +depend graphics-pln +depend gtl +depend hlist +depend hyplain +depend insbox +depend js-misc +depend kastrup +depend lambda-lists +depend langcode +depend lecturer +depend letterspacing +depend librarian +depend listofitems +depend localloc +depend mathdots +depend metatex +depend midnight +depend mkpattern +depend modulus +depend multido +depend namedef +depend navigator +depend newsletr +depend nth +depend ofs +depend olsak-misc +depend outerhbox +depend path +depend pdf-trans +depend pitex +depend placeins-plain +depend plainpkg +depend plipsum +depend plnfss +depend plstmary +depend poormanlog +depend present +depend pwebmac +depend random +depend randomlist +depend resumemac +depend ruler +depend schemata +depend shade +depend simplekv +depend soul +depend swrule +depend systeme +depend tabto-generic +depend termmenu +depend tex-ps +depend tex4ht +depend texapi +depend texdate +depend texinfo +depend timetable +depend tracklang +depend treetex +depend trigonometry +depend ulem +depend upca +depend varisize +depend xii +depend xii-lat +depend xintsession +depend xlop +depend yax +depend zztex +containersize 940 +containerchecksum dc1481c1acd3a0fd8ed7b99ac8625dd1ca2c9693671d35ef05dfcc22e7a4fa59ccf1ad74ac6b9bf464b8e2cbc95001b4ff36c3fcd29398bbbafc87e56a953068 + +name collection-pstricks +category Collection +revision 54455 +shortdesc PSTricks +relocated 1 +longdesc PSTricks core and all add-on packages. +depend auto-pst-pdf +depend bclogo +depend collection-basic +depend collection-plaingeneric +depend dsptricks +depend makeplot +depend pdftricks +depend pdftricks2 +depend pedigree-perl +depend psbao +depend pst-2dplot +depend pst-3d +depend pst-3dplot +depend pst-abspos +depend pst-am +depend pst-antiprism +depend pst-arrow +depend pst-asr +depend pst-bar +depend pst-barcode +depend pst-bezier +depend pst-blur +depend pst-bspline +depend pst-calculate +depend pst-calendar +depend pst-cie +depend pst-circ +depend pst-coil +depend pst-contourplot +depend pst-cox +depend pst-dart +depend pst-dbicons +depend pst-diffraction +depend pst-electricfield +depend pst-eps +depend pst-eucl +depend pst-exa +depend pst-feyn +depend pst-fill +depend pst-fit +depend pst-fr3d +depend pst-fractal +depend pst-fun +depend pst-func +depend pst-gantt +depend pst-geo +depend pst-geometrictools +depend pst-ghsb +depend pst-gr3d +depend pst-grad +depend pst-graphicx +depend pst-infixplot +depend pst-intersect +depend pst-jtree +depend pst-knot +depend pst-labo +depend pst-layout +depend pst-lens +depend pst-light3d +depend pst-lsystem +depend pst-magneticfield +depend pst-marble +depend pst-math +depend pst-mirror +depend pst-moire +depend pst-node +depend pst-ob3d +depend pst-ode +depend pst-optexp +depend pst-optic +depend pst-osci +depend pst-ovl +depend pst-pad +depend pst-pdf +depend pst-pdgr +depend pst-perspective +depend pst-platon +depend pst-plot +depend pst-poker +depend pst-poly +depend pst-pulley +depend pst-qtree +depend pst-rputover +depend pst-rubans +depend pst-shell +depend pst-sigsys +depend pst-slpe +depend pst-solarsystem +depend pst-solides3d +depend pst-soroban +depend pst-spectra +depend pst-spinner +depend pst-stru +depend pst-support +depend pst-text +depend pst-thick +depend pst-tools +depend pst-tree +depend pst-turtle +depend pst-tvz +depend pst-uml +depend pst-vectorian +depend pst-vehicle +depend pst-venn +depend pst-vowel +depend pst2pdf +depend pstricks +depend pstricks-add +depend pstricks_calcnotes +depend uml +depend vaucanson-g +depend vocaltract +containersize 808 +containerchecksum 653143f95761352dc349c66f618b01a77650b20bf8b2cf45137e72b2f05ba3dcefbf0238f1b2757297ac37ec6cbd4a05283c0bfc03d6e153e57f4be23ca8f87f + +name collection-publishers +category Collection +revision 59002 +shortdesc Publisher styles, theses, etc. +relocated 1 +depend IEEEconf +depend IEEEtran +depend aastex +depend abnt +depend abntex2 +depend acmart +depend acmconf +depend active-conf +depend adfathesis +depend afparticle +depend afthesis +depend aguplus +depend aiaa +depend ametsoc +depend anonymous-acm +depend anufinalexam +depend aomart +depend apa +depend apa6 +depend apa6e +depend apa7 +depend arsclassica +depend articleingud +depend asaetr +depend ascelike +depend asmeconf +depend asmejour +depend aucklandthesis +depend bangorcsthesis +depend bangorexam +depend bath-bst +depend beamer-FUBerlin +depend beamer-verona +depend beilstein +depend bgteubner +depend br-lex +depend brandeis-dissertation +depend brandeis-problemset +depend brandeis-thesis +depend buctthesis +depend cascadilla +depend cesenaexam +depend chem-journal +depend chifoot +depend chs-physics-report +depend cje +depend classicthesis +depend cleanthesis +depend cmpj +depend collection-latex +depend confproc +depend cquthesis +depend dccpaper +depend dithesis +depend ebook +depend ebsthesis +depend ecothesis +depend ejpecp +depend ekaia +depend elbioimp +depend els-cas-templates +depend elsarticle +depend elteikthesis +depend emisa +depend erdc +depend estcpmm +depend etsvthor +depend facture-belge-simple-sans-tva +depend fbithesis +depend fcavtex +depend fcltxdoc +depend fei +depend ftc-notebook +depend gaceta +depend gammas +depend gatech-thesis +depend gradstudentresume +depend grant +depend gsemthesis +depend gzt +depend h2020proposal +depend hagenberg-thesis +depend har2nat +depend hecthese +depend hep-paper +depend hithesis +depend hitszbeamer +depend hitszthesis +depend hobete +depend hu-berlin-bundle +depend hustthesis +depend icsv +depend ieeepes +depend ijmart +depend ijsra +depend imac +depend imtekda +depend inkpaper +depend iodhbwm +depend iscram +depend jacow +depend jmlr +depend jnuexam +depend jpsj +depend kdgdocs +depend kluwer +depend ksp-thesis +depend ku-template +depend langsci +depend langsci-avm +depend limecv +depend lion-msc +depend llncsconf +depend lni +depend lps +depend matc3 +depend matc3mem +depend mcmthesis +depend mentis +depend mlacls +depend mluexercise +depend mnras +depend modeles-factures-belges-assocs +depend msu-thesis +depend mucproc +depend mugsthesis +depend muling +depend musuos +depend muthesis +depend mynsfc +depend nature +depend navydocs +depend nddiss +depend ndsu-thesis +depend nih +depend nihbiosketch +depend nostarch +depend novel +depend nrc +depend nwejm +depend onrannual +depend opteng +depend oup-authoring-template +depend philosophersimprint +depend pittetd +depend pkuthss +depend powerdot-fuberlin +depend powerdot-tuliplab +depend pracjourn +depend procIAGssymp +depend proposal +depend prtec +depend ptptex +depend qrbill +depend quantumarticle +depend resphilosophica +depend resumecls +depend revtex +depend revtex4 +depend revtex4-1 +depend rutitlepage +depend ryersonsgsthesis +depend ryethesis +depend sageep +depend sapthesis +depend schule +depend scientific-thesis-cover +depend scrjrnl +depend sduthesis +depend seuthesis +depend seuthesix +depend shortmathj +depend shtthesis +depend smflatex +depend soton +depend sphdthesis +depend spie +depend sr-vorl +depend srdp-mathematik +depend stellenbosch +depend suftesi +depend sugconf +depend tabriz-thesis +depend technion-thesis-template +depend texilikechaps +depend texilikecover +depend thesis-ekf +depend thesis-gwu +depend thesis-qom +depend thesis-titlepage-fhac +depend thuaslogos +depend thucoursework +depend thuthesis +depend timbreicmc +depend tlc-article +depend topletter +depend toptesi +depend tuda-ci +depend tudscr +depend tugboat +depend tugboat-plain +depend tui +depend turabian +depend uaclasses +depend uafthesis +depend uantwerpendocs +depend ucalgmthesis +depend ucbthesis +depend ucdavisthesis +depend ucsmonograph +depend ucthesis +depend uestcthesis +depend uhhassignment +depend uiucredborder +depend uiucthesis +depend ulthese +depend umbclegislation +depend umich-thesis +depend umthesis +depend unam-thesis +depend unamth-template +depend unamthesis +depend unifith +depend unitn-bimrep +depend univie-ling +depend unizgklasa +depend unswcover +depend uothesis +depend uowthesis +depend uowthesistitlepage +depend urcls +depend uspatent +depend ut-thesis +depend utexasthesis +depend uwthesis +depend vancouver +depend wsemclassic +depend xduthesis +depend xmuthesis +depend yathesis +depend yazd-thesis +depend york-thesis +containersize 1548 +containerchecksum 431f3c14b442940da7bc1cbc9c50afe2ca72120a90987890b4eb441faf8342b6658b6a8bf176fc6ac4f4d0483fa7d5f2268a6aa5d4b491b03536c1f5031c377f + +name collection-texworks +category Collection +revision 54074 +shortdesc TeXworks editor; TL includes only the Windows binary +relocated 1 +longdesc See http://tug.org/texworks. +depend collection-basic +depend texworks +containersize 340 +containerchecksum b1f38877115fb6efc9b63a5591c399b799f3a258e342d5e198b74b582628461ad67ea7c1ab76e5ae83a3e8e538c62ac3e7c5b3d3f1d29c093331843067cfec57 + +name collection-wintools +category Collection +revision 54074 +shortdesc Windows-only support programs +relocated 1 +longdesc Utilities for Windows, since they are not readily available +longdesc there: chktex, unzip, wget, xpdf, and the dviout previewer. +depend dviout.win32 +depend wintools.win32 +containersize 388 +containerchecksum 9bf4c58094748424c1b60a3731d9cb2b1ad1d24764469072da693de26a4e4e857df3bcab6d4c2b5ae7454a69f9730fc596fd156b46b7704eafb1421f6936d66a + +name collection-xetex +category Collection +revision 58543 +shortdesc XeTeX and packages +relocated 1 +longdesc Packages for XeTeX, the Unicode/OpenType-enabled TeX by +longdesc Jonathan Kew, http://tug.org/xetex. +depend arabxetex +depend awesomebox +depend bidi-atbegshi +depend bidicontour +depend bidipagegrid +depend bidipresentation +depend bidishadowtext +depend businesscard-qrcode +depend collection-basic +depend cqubeamer +depend fixlatvian +depend font-change-xetex +depend fontbook +depend fontwrap +depend interchar +depend na-position +depend philokalia +depend ptext +depend realscripts +depend simple-resume-cv +depend simple-thesis-dissertation +depend tetragonos +depend ucharclasses +depend unicode-bidi +depend unisugar +depend xebaposter +depend xechangebar +depend xecjk +depend xecolor +depend xecyr +depend xeindex +depend xelatex-dev +depend xesearch +depend xespotcolor +depend xetex +depend xetex-itrans +depend xetex-pstricks +depend xetex-tibetan +depend xetexconfig +depend xetexfontinfo +depend xetexko +depend xevlna +depend zbmath-review-template +containersize 656 +containerchecksum a312699117932ac031f6b09fb0456518dec5c92fa046df27cfc0439f686c0dd26a362075b78b3b8d08dfbdf54f073c2ee4643801d63c67a79d728ee52db3dffb + +name collref +category Package +revision 46358 +shortdesc Collect blocks of references into a single reference +relocated 1 +longdesc The package automatically collects multiple \bibitem +longdesc references, which always appear in the same sequence in \cite, +longdesc into a single \bibitem block. +containersize 1696 +containerchecksum 56c2fda36523ae348bea381d90493238c7cbf5ab59f074437c7b694b441f913e6b58795ca81d2c549fbba01505a8895e9e139a9d143050761bceced2717fdb97 +doccontainersize 272712 +doccontainerchecksum 2d75180ab389632ec320795d6e6b989d902b82d1cfc97ea3c5113647e605c1eead0d0f5a6733cb692b624f4caa7120959c0b15018e35be4d4894183ad3e4c37d +docfiles size=71 + RELOC/doc/latex/collref/README.txt details="Readme" + RELOC/doc/latex/collref/collref.pdf details="Package documentation" + RELOC/doc/latex/collref/collsamp.tex +srccontainersize 7172 +srccontainerchecksum 5a89f6703ab1818375ff33840b1295aee99e6a36338790014b7ac4b54bd49850adcf73ca793c57fb8159be87417741dcdd6ad3934af8bfde74595367f5e3a9fd +srcfiles size=7 + RELOC/source/latex/collref/collref.dtx + RELOC/source/latex/collref/collref.ins +runfiles size=1 + RELOC/tex/latex/collref/collref.sty +catalogue-also mcite +catalogue-ctan /macros/latex/contrib/collref +catalogue-license lppl1.3 +catalogue-topics cite-supp +catalogue-version 2.0c + +name colophon +category Package +revision 47913 +shortdesc Provides commands for producing a colophon +relocated 1 +longdesc Colophons are a once-common design device by which a book (or +longdesc document) designer gave some information to his readers about +longdesc the design and makeup of the text. It typically includes the +longdesc publisher (if not included elsewhere in the document), font +longdesc size, leading size, measure, and of course font face +longdesc identification. Sometimes it includes information about the +longdesc tools used, as well. This package provides some highly +longdesc configurable macros, with sensible defaults, for producing +longdesc colophons without having to muck around with a lot of manual +longdesc code. +containersize 2028 +containerchecksum e85dfdef7eefa2fedd6af7c0b6eb71200485b5190268de3a89cbec8dd15f8e66b3260430660f6cb860e2712d3e20e5a8d0b874592a71b116dc07de6e28161474 +doccontainersize 377660 +doccontainerchecksum aba1badf34551d8340f733bb9e365a99c56c473f96ed69deadda917232ea8313df800579cb347e074ff0836553bdeb49f60330883581fb3cc7a3eeedc736d1ba +docfiles size=98 + RELOC/doc/latex/colophon/CHANGES + RELOC/doc/latex/colophon/README details="Readme" + RELOC/doc/latex/colophon/colophon.pdf details="Package documentation" + RELOC/doc/latex/colophon/lppl.txt +srccontainersize 7080 +srccontainerchecksum 8764595f95806d0aa8cd956bdfbec118f16376c936ae457d3d28c072eb8e2d6f0e7028fdb91ab301dfb587a721cc40fae13f56f5245b418413187f8776624855 +srcfiles size=6 + RELOC/source/latex/colophon/colophon.dtx + RELOC/source/latex/colophon/colophon.ins +runfiles size=2 + RELOC/tex/latex/colophon/colophon.sty +catalogue-ctan /macros/latex/contrib/colophon +catalogue-license lppl1.3 +catalogue-topics typeset-tool +catalogue-version 1.1 + +name color-edits +category Package +revision 56707 +shortdesc Colorful edits for multiple authors of a shared document +relocated 1 +longdesc This package provides a fairly light-weight solution for +longdesc annotating LaTeX source code with color to show +longdesc additions/changes, replacements, deletions, and comments. This +longdesc is particularly useful when a document is being edited by +longdesc multiple authors. Two package options allow the quick +longdesc suppression of all colorful edits and comments, and showing +longdesc text whose deletion was proposed. +containersize 1920 +containerchecksum e1023d734b7c8c2c781fd037f29a8c845a45fcd1c62d7880d51755bf943dba142fee040c2f0b9bea2ef6986818b5f67126ff468639c0d962d0a779f6840fb1c7 +doccontainersize 231020 +doccontainerchecksum 17322e4a1e9cd8cd6043a37e0c06bca019b887aad0100367b0c99b70fe3043d32568b5cf587cb42d0bdfe77cf18bf222fba126833d9a61789bba88bd121dbc4c +docfiles size=62 + RELOC/doc/latex/color-edits/README.md details="Readme" + RELOC/doc/latex/color-edits/color-edits.pdf details="Package documentation" +srccontainersize 7604 +srccontainerchecksum b23f1893840a3a2a8d5a77386515c224656ca0c82aec3eb82209c862ebb222e8a2cdf4942bce3d43f4538bd380f9518fe031f08259dd063578760431a6230f10 +srcfiles size=8 + RELOC/source/latex/color-edits/color-edits.dtx + RELOC/source/latex/color-edits/color-edits.ins +runfiles size=2 + RELOC/tex/latex/color-edits/color-edits.sty +catalogue-ctan /macros/latex/contrib/color-edits +catalogue-license lppl1.3 +catalogue-topics editorial colour +catalogue-version 1.1 + +name colordoc +category Package +revision 18270 +shortdesc Coloured syntax highlights in documentation +relocated 1 +longdesc The package is used in documentation files (that use the doc +longdesc package); with it the code listings will highlight (for +longdesc example) pairs of curly braces with matching colors. Other +longdesc delimiters like \if ... \fi, are highlighted, as are the names +longdesc of new commands. All this makes code a little more readable, +longdesc and helps during process of writing. Three options are +longdesc provided, including a non-color option designed for printing +longdesc (which numbers delimiters and underlines new commands). +containersize 2228 +containerchecksum a4d87deccae89f844a6251887e4d20817837fff4eef9cbd2874bef8890d41e0ab930a3ee55fae9ee46685c6b3b2b3324b54ce8507f1cb10eef332b7a480b94a8 +doccontainersize 173692 +doccontainerchecksum a2e5c6699a615651dd31a570ba6524cc7cb3d2f3c8d4b1fe49092dd4c01b40714c1c534f3554fca20fad7c17fdfb7104b699a10677519f57538e239820b6f1e7 +docfiles size=50 + RELOC/doc/latex/colordoc/README details="Readme" + RELOC/doc/latex/colordoc/colordoc.pdf details="Package documentation" +srccontainersize 11304 +srccontainerchecksum 2c42638129705d6e08375298684ff96c867a4deeb1d836ea12f8d6b0ad9f61f6840159ed04b92f2cac4c8d126da3a8e657589635ebd3388b9d457994bbc53a36 +srcfiles size=11 + RELOC/source/latex/colordoc/colordoc.dtx + RELOC/source/latex/colordoc/colordoc.ins +runfiles size=2 + RELOC/tex/latex/colordoc/colordoc.sty +catalogue-ctan /macros/latex/contrib/colordoc +catalogue-license lppl1 +catalogue-topics doc-supp + +name colorinfo +category Package +revision 15878 +shortdesc Retrieve colour model and values for defined colours +relocated 1 +containersize 2020 +containerchecksum 63bfe1dcdfd85dd1d7d3c7c8d3d345f221bc90bd34bd75888c361d4de97633b9c14d96930b41adf63370403c858f754e740c53d8100b9eb3c5557dd66e6876b3 +doccontainersize 784 +doccontainerchecksum d871a76648cd57af0bd6bd800ee8673ff07b2572ea514a3806731713d9ec4ab368fba2cf540ba71005300d4e02beb180f8eba82c0b060bcaa7a60e54ae601df1 +docfiles size=2 + RELOC/doc/latex/colorinfo/README details="Readme" + RELOC/doc/latex/colorinfo/colorinfo-test.tex +runfiles size=2 + RELOC/tex/latex/colorinfo/colorinfo.sty +catalogue-ctan /macros/latex/contrib/colorinfo +catalogue-license lppl +catalogue-topics colour +catalogue-version 0.3c + +name coloring +category Package +revision 41042 +shortdesc Define missing colors by their names +relocated 1 +longdesc This package makes it possible to define colors automatically +longdesc by their names. This can be useful in drawing TikZ pictures and +longdesc designing beamer themes. Using the package, you don't need to +longdesc write \definecolor before using a color. +containersize 1480 +containerchecksum 7c89a6c53212beaa06d54dc091021c5fd57cc30fccc917ea413d23b0790ec637b6b8e69a3bf1b44d0a9ed24fa1c0dd21608b174c0230a0a94a2e5aed221be033 +doccontainersize 25984 +doccontainerchecksum cfe600ff32f680f7b7d3916e5a2e767732a9ab9f1e6d06133afbadc87dc1b8ac420284c75c221ed5b5a81b76f6b01302c5595b69439566775adc18ab11185961 +docfiles size=9 + RELOC/doc/latex/coloring/README details="Readme" + RELOC/doc/latex/coloring/coloring-doc.pdf details="Package documentation" + RELOC/doc/latex/coloring/coloring-doc.tex +runfiles size=1 + RELOC/tex/latex/coloring/coloring.sty +catalogue-contact-repository https://github.com/zohooo/coloring +catalogue-ctan /macros/latex/contrib/coloring +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.2 + +name colorist +category Package +revision 58434 +shortdesc Write your articles or books in a colorful way +relocated 1 +longdesc This package offers you a LaTeX style file and two classes to +longdesc typeset articles or books in a colorful way. These classes +longdesc currently have native support for English and French +longdesc typesetting. They compile with any major TeX engine. You may +longdesc also wish to consider the packages lebhart and beaulivre, which +longdesc are enhanced versions of the classes provided here. They have +longdesc unicode support, thus can only be used with either XeLaTeX or +longdesc LuaLaTeX. Currently they have native support for English, +longdesc French, and Chinese typesetting, and also use more beautiful +longdesc fonts. +containersize 7328 +containerchecksum 9787be368fba699437305f4757434ad5e8cd19bbf200bd42517478a46ce01173cef8d7fdef204c1b02fbec0b09f40d44a84a7e79ba98b54705f5864dcbe511db +doccontainersize 54348 +doccontainerchecksum e6991e2a45b789f907d4534e86970d6a0abb63e98fc1e281f2568303d83bcde569881f808813ead6c09f598a62b2d0411589355db2529a90e2f48d22594f29f3 +docfiles size=21 + RELOC/doc/latex/colorist/LICENSE + RELOC/doc/latex/colorist/README.md details="Readme" + RELOC/doc/latex/colorist/colorist-doc.pdf details="Package documentation" + RELOC/doc/latex/colorist/colorist-doc.tex +runfiles size=9 + RELOC/tex/latex/colorist/colorart.cls + RELOC/tex/latex/colorist/colorbook.cls + RELOC/tex/latex/colorist/colorist.sty +catalogue-also lebhart beaulivre +catalogue-contact-repository https://github.com/Jinwen-XU/colorist +catalogue-ctan /macros/latex/contrib/colorist +catalogue-license lppl1.3c +catalogue-topics class article-like book-pub + +name colorprofiles +category Package +revision 49086 +shortdesc Collection of free ICC profiles +relocated 1 +longdesc This package collects free ICC profiles that can be used by +longdesc color profile aware applications/tools like the pdfx package, +longdesc as well as TeX and LaTeX packages to access them. +containersize 87972 +containerchecksum 49be492e62fcd615b08bb6a32767cac54a9535ab859d2a27d1c84788d4e168df2a10133e5408ab1bd3a802ffa8465a61c4144cd9cbafc6fa98f995cb7af89381 +doccontainersize 27632 +doccontainerchecksum ab7cabd369cdde5c2e5108b4d75d71bfa5e6b44d7ecc2eda25509078f26bfbc8515dd10a6dd82adab979170e12552fbecffca1f5bd3a1105db21b31097ec5f12 +docfiles size=33 + RELOC/doc/generic/colorprofiles/FOGRA39L_coated.iccprofile.xml + RELOC/doc/generic/colorprofiles/README details="Readme" +runfiles size=33 + RELOC/tex/generic/colorprofiles/FOGRA39L_coated.icc + RELOC/tex/generic/colorprofiles/colorprofiles.sty + RELOC/tex/generic/colorprofiles/colorprofiles.tex + RELOC/tex/generic/colorprofiles/sRGB.icc +catalogue-ctan /support/colorprofiles +catalogue-license other-free +catalogue-topics colour +catalogue-version 20181105 + +name colorsep +category Package +revision 13293 +shortdesc Color separation +relocated 1 +longdesc Support for colour separation when using dvips. +containersize 1884 +containerchecksum 3c6387a4c538235181dcaf7b6c3ac51d2893d35fa2c18d95d85810b778fecaed7ae2337d2b284ee3439f44d3570ee86884d42616539bf61a15526aa711da70e9 +runfiles size=2 + RELOC/dvips/colorsep/colorsep.pro +catalogue-ctan /graphics/colorsep +catalogue-license pd +catalogue-topics colour + +name colorspace +category Package +revision 50585 +shortdesc Provides PDF color spaces +relocated 1 +longdesc The package provides PDF color spaces. Currently, only spot +longdesc colors and overprinting are supported. It requires xcolor, and +longdesc supports pdfTeX and LuaTeX. +containersize 6904 +containerchecksum 677f462e9ec347467ab39f3c4e776b870861ed0a38447d61a50abfc3172936c99b468320ad40a5b43713df070434c0b280e2d9d13609e141603453fa7d6c37f8 +doccontainersize 116840 +doccontainerchecksum 702060f3a2805be7dc472bab428fad866e947d8f700f8357e897443909d555dee399ac857feb1e341875bbd4017e7e456c46c4282def6daabc092417859bc634 +docfiles size=35 + RELOC/doc/latex/colorspace/README.md details="Readme" + RELOC/doc/latex/colorspace/colorspace.pdf details="Package documentation" + RELOC/doc/latex/colorspace/colorspace.tex + RELOC/doc/latex/colorspace/colorspaceshade.png +runfiles size=6 + RELOC/tex/latex/colorspace/colorspace.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos/colorspace +catalogue-ctan /macros/latex/contrib/colorspace +catalogue-license mit +catalogue-topics colour +catalogue-version 1.3 + +name colortab +category Package +revision 22155 +shortdesc Shade cells of tables and halign +relocated 1 +longdesc The package lets you shade or colour the cells in the alignment +longdesc environments such as \halign and LaTeX's tabular and array +longdesc environments. The colortbl package is to be preferred today +longdesc with LaTeX (it assures compatibility with the longtable +longdesc package, which is no longer true with colortab); another modern +longdesc option is the table-colouring option of the xcolor. However, +longdesc colortab remains an adequate solution for use with Plain TeX. +containersize 7960 +containerchecksum 460225705cfa914efc689df2d3f0c0ef7f5883082195e3d8e29e124726589fb5e9b7fc4679541b685439de097b6b297b803cf08e104ec13b849dbb26cffeaa04 +doccontainersize 60256 +doccontainerchecksum 947e46ffe5c83c3803e40f0da9a1a926e830e2b24f1d486d158da24bceade870cb1fe580aded3838f895deb238d1615cc0e3f95a05e99800fb1bad87ddf0b134 +docfiles size=22 + RELOC/doc/generic/colortab/Changes + RELOC/doc/generic/colortab/Makefile + RELOC/doc/generic/colortab/colortab-doc.pdf details="Package documentation" + RELOC/doc/generic/colortab/colortab-doc.tex +runfiles size=7 + RELOC/tex/generic/colortab/colortab.sty + RELOC/tex/generic/colortab/colortab.tex +catalogue-ctan /macros/generic/colortab +catalogue-license lppl +catalogue-topics colour table +catalogue-version 1.0 + +name colortbl +category Package +revision 53545 +shortdesc Add colour to LaTeX tables +relocated 1 +longdesc The package allows rows and columns to be coloured, and even +longdesc individual cells. +containersize 3284 +containerchecksum b24972e5a945458318a7b383ad652c7851f01e6c66fa40f8d670f4f3724d280e18d825fc905d76d111d7de969bf6be29f45447eaab78fe985275984a23fd47bd +doccontainersize 592016 +doccontainerchecksum 4de654d192374960d94c13ff47785ce40f2b0a298bae0d1b5342119f018844653ccf4f4c99c6286accdd62d94bab82cdf6eef1f7977cbb583cf37e21496b0420 +docfiles size=152 + RELOC/doc/latex/colortbl/README.txt details="Readme" + RELOC/doc/latex/colortbl/colortbl-DE.pdf details="Package manual (German)" language="de" + RELOC/doc/latex/colortbl/colortbl-DE.tex + RELOC/doc/latex/colortbl/colortbl.pdf details="Package manual (English)" language="en" +srccontainersize 11468 +srccontainerchecksum 6e88584339dfc54f00b9f18096c2c35fe147f7da1e0f08807ad0964d22dfc61554ec28335eef428c76adaff8d1cf37ccee4945f128869465751ae5c1f1e31d03 +srcfiles size=12 + RELOC/source/latex/colortbl/colortbl.dtx + RELOC/source/latex/colortbl/colortbl.ins +runfiles size=3 + RELOC/tex/latex/colortbl/colortbl.sty +catalogue-also xcolor +catalogue-ctan /macros/latex/contrib/colortbl +catalogue-license lppl +catalogue-topics colour table +catalogue-version 1.0e + +name colorwav +category Package +revision 15878 +shortdesc Colours by wavelength of visible light +relocated 1 +longdesc The package allows the user to obtain an RGB value (suitable +longdesc for use in the color package) from a wavelength of light. The +longdesc default unit is nanometres, but other units may be used. Note +longdesc that this function is also available within xcolor. +containersize 1952 +containerchecksum 618f813c9e009a671069a151bc6d438a42b2c589b255685d91dbbbd162e6a106164d626cd772bdb3e6538a1b010ae178dd7e1519195b6b1fee10ce6e46253b6c +doccontainersize 98884 +doccontainerchecksum e042c10fcd4d2760383352ace13b2d3600682a01c900220913c79a950fb1597a59a82483429557aa7598e1cd1eea52b73dd23367139fb741ea48ee9c84c4c572 +docfiles size=30 + RELOC/doc/latex/colorwav/README details="Readme" + RELOC/doc/latex/colorwav/colorwav.pdf details="Package documentation" +srccontainersize 4204 +srccontainerchecksum 96ff1933d48bbe938de3635588d9a9c682ac387415d5a7c316e310ed0931e7fa0adf44185d8232d753a1532653b6bb5c0f6c402903bdab654333694f7c293215 +srcfiles size=7 + RELOC/source/latex/colorwav/colorwav.dtx + RELOC/source/latex/colorwav/colorwav.ins +runfiles size=2 + RELOC/tex/latex/colorwav/colorwav.sty +catalogue-ctan /macros/latex/contrib/colorwav +catalogue-license lgpl +catalogue-topics colour +catalogue-version 1.0 + +name colorweb +category Package +revision 31490 +shortdesc Extend the color package colour space +relocated 1 +longdesc The package makes the 216 "web-safe colours" available to the +longdesc standard color package. +containersize 3064 +containerchecksum dd8e53aa707f1e73276cca9a9c5732b012ca7dcb0926d101c71aa5fe3829f07251a7f606accc95266f6c9aa4b867a38cc654ca97cc32857edc3d196b2c5a7fd4 +doccontainersize 1224824 +doccontainerchecksum b1ae7c14f2f07405b7a957831b60829046b058f6d1640051cbee877100c98a8f47d2c1d40f60599c42ff90eed246248b4f48dd8c1d31f9d45082f9ec5c341626 +docfiles size=463 + RELOC/doc/latex/colorweb/README details="Readme" + RELOC/doc/latex/colorweb/colorweb.pdf + RELOC/doc/latex/colorweb/colorwebfull.pdf details="Full package documentation" + RELOC/doc/latex/colorweb/colorwebuser.pdf details="Documentation for users" + RELOC/doc/latex/colorweb/descript.ion +srccontainersize 11920 +srccontainerchecksum 4016805ddde5974257fc9f20a0f4a8e40b12d059ba74ed6425f206c4b10127596d579dd8c057e85289e32dc1652b2258f6d2590ec6d4cb10c72aa4a874158275 +srcfiles size=21 + RELOC/source/latex/colorweb/colorweb.dtx + RELOC/source/latex/colorweb/colorweb.ins +runfiles size=5 + RELOC/tex/latex/colorweb/colorweb.sty +catalogue-ctan /macros/latex/contrib/colorweb +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 1.3 + +name colourchange +category Package +revision 21741 +shortdesc Colourchange +relocated 1 +longdesc The package allows you to change the colour of the structural +longdesc elements (inner theme and outer theme) of your beamer +longdesc presentation during the presentation. There is a manual option +longdesc but there is also the option to have your structure colour +longdesc change from one colour to another as a function of how far +longdesc through the presentation you are. +containersize 2060 +containerchecksum dba4ef8d97324c3da71de1c6a37e268618bab0a876e1da37226ec9fb187087d39f32507e97f4ab4fa801fd4bbb98c51a322c6f2493b719133154b24223bfba46 +doccontainersize 234136 +doccontainerchecksum 628bc515058108ba97312c15ee5af00e086ea3dc124b4e7b038b176d4175e2146afc6f571593c006d749634896fa286d16c923c17d4dc9e55e81ac3a8aa95442 +docfiles size=59 + RELOC/doc/latex/colourchange/README details="Readme" + RELOC/doc/latex/colourchange/colourchangedoc.pdf details="Package documentation" + RELOC/doc/latex/colourchange/colourchangedoc.tex +runfiles size=2 + RELOC/tex/latex/colourchange/colourchange.sty +catalogue-ctan /macros/latex/contrib/colourchange +catalogue-license gpl3 +catalogue-topics presentation colour +catalogue-version 1.22 + +name combelow +category Package +revision 18462 +shortdesc Typeset "comma-below" letters, as in Romanian +relocated 1 +longdesc The package defines a command \cb that positions a comma below +longdesc a letter, as required (for example) in Romanian typesetting. +longdesc The command is robust, but interferes with hyphenation. +containersize 1040 +containerchecksum 17f1beb58a11f3c754c57331d1b2d9338fee359b6c27cdc0a855671397e78c0b2d29ba60247f3104d3eece22619671f56d2aac862ac404502faaea08f40d7be4 +doccontainersize 96092 +doccontainerchecksum 82d8e60a5cd8d46b952aa27dff03398cb6e65a1c5a76c1eb260d3e30172af89206a7a8ec7ab3871d5e33e87ccc2c99e2f54740facfd71d43ea6f88821c9ceb2a +docfiles size=30 + RELOC/doc/latex/combelow/README details="Readme" + RELOC/doc/latex/combelow/combelow.bib + RELOC/doc/latex/combelow/combelow.pdf details="Package documentation" + RELOC/doc/latex/combelow/combelow.tex +runfiles size=1 + RELOC/tex/latex/combelow/combelow.sty +catalogue-ctan /macros/latex/contrib/combelow +catalogue-license lppl1.3 +catalogue-topics fake-glyph +catalogue-version 0.99f + +name combine +category Package +revision 19361 +shortdesc Bundle individual documents into a single document +relocated 1 +longdesc The combine class lets you bundle individual documents into a +longdesc single document, such as when preparing a conference +longdesc proceedings. The auxiliary combinet package puts the titles and +longdesc authors from \maketitle commands into the main document's Table +longdesc of Contents. The package cooperates with the abstract and +longdesc titling packages. +containersize 10568 +containerchecksum 9e57b01fa0a14556473764144dc3b5e4e3d40a7f913932b02826a68efdd952adc69e990ba75f6b5057d69850d3e693e1c5b5c40d2c3443aab2741ce9646d522e +doccontainersize 463152 +doccontainerchecksum 4e09fd0a9b587d61da2c6a15579675b9a839c83f0b38b0f958b2f4aa2c0a49adf93730ebafa235043cf645d6b8689cbcc5916e4bba92b5e30ac87a8282402859 +docfiles size=116 + RELOC/doc/latex/combine/README details="Package Readme" + RELOC/doc/latex/combine/combine.pdf details="Package documentation" +srccontainersize 31336 +srccontainerchecksum 25df0ae6e799710f575de4aab975f774f53abb28e627547cf61fe68a4de18cd1f9fa3a8cfd242ecede15e6363734844a8ca37b49da7bb4efda6bc90f4f1da168 +srcfiles size=37 + RELOC/source/latex/combine/combine.dtx + RELOC/source/latex/combine/combine.ins +runfiles size=16 + RELOC/tex/latex/combine/combcite.sty + RELOC/tex/latex/combine/combine.cls + RELOC/tex/latex/combine/combinet.sty + RELOC/tex/latex/combine/combnat.sty +catalogue-also docmute includex newclude standalone +catalogue-ctan /macros/latex/contrib/combine +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 0.7a + +name combinedgraphics +category Package +revision 27198 +shortdesc Include graphic (EPS or PDF)/LaTeX combinations +relocated 1 +longdesc This package provides a macro (\includecombinedgraphics) for +longdesc the inclusion of combined EPS/LaTeX and PDF/LaTeX graphics (an +longdesc export format of Gnuplot, Xfig, and maybe other programs). +longdesc Instead of including the graphics with a simple \input, the +longdesc \includecombinedgraphics macro has some comforts: changing the +longdesc font and color of the text of the LaTeX part; rescaling the +longdesc graphics without affecting the font of the LaTeX part; +longdesc automatic inclusion of the vector graphics part, as far as +longdesc LaTeX part does not do it (e.g., for files exported from +longdesc Gnuplot before version 4.2); and rescaling and rotating of +longdesc complete graphics (similar to \includegraphics from the +longdesc graphicx package). +containersize 3532 +containerchecksum 22d36d3a44fbbe5f11522f28e716be862d354998750492d014d86037a24407a748248571e50dc99a6fe5518d8ecbf61ca657407194a43b75510b613438fa4b65 +doccontainersize 429112 +doccontainerchecksum 4802871f57bbc131c850f89eef43778ed25a9abb0a850dac0e91e762b7a321567348f147ae02847cad4c226f9acf2bce921f9745832d1dc298d751b8123741b4 +docfiles size=138 + RELOC/doc/latex/combinedgraphics/COPYING + RELOC/doc/latex/combinedgraphics/Makefile + RELOC/doc/latex/combinedgraphics/README details="Readme" + RELOC/doc/latex/combinedgraphics/combinedgraphics.pdf details="Package documentation" + RELOC/doc/latex/combinedgraphics/test/Makefile + RELOC/doc/latex/combinedgraphics/test/combinedgraphics_test.pdf + RELOC/doc/latex/combinedgraphics/test/combinedgraphics_test.tex + RELOC/doc/latex/combinedgraphics/test/gnuplot42.eps + RELOC/doc/latex/combinedgraphics/test/gnuplot42.pdf + RELOC/doc/latex/combinedgraphics/test/gnuplot42.plt + RELOC/doc/latex/combinedgraphics/test/gnuplot42.tex + RELOC/doc/latex/combinedgraphics/test/xfig325.eps + RELOC/doc/latex/combinedgraphics/test/xfig325.fig + RELOC/doc/latex/combinedgraphics/test/xfig325.pdf + RELOC/doc/latex/combinedgraphics/test/xfig325.tex +srccontainersize 9428 +srccontainerchecksum 248524984e09cfe3a2a6bafdb0011d3470035243807635dff3ee6e6bd5c7d2ecb0483e7ce069a76f1589dc5bc2da4aab2ef94ce9ef587915a03d285bd95965ad +srcfiles size=10 + RELOC/source/latex/combinedgraphics/combinedgraphics.dtx + RELOC/source/latex/combinedgraphics/combinedgraphics.ins +runfiles size=4 + RELOC/tex/latex/combinedgraphics/combinedgraphics.sty +catalogue-ctan /macros/latex/contrib/combinedgraphics +catalogue-license gpl +catalogue-topics graphics-supp +catalogue-version 0.2.2 + +name combofont +category Package +revision 51348 +shortdesc Add NFSS-declarations of combo fonts to LuaLaTeX documents +relocated 1 +longdesc This highly experimental package can be used to add +longdesc NFSS-declarations of combo fonts to LuaLaTeX documents. This +longdesc package may disappear without notice, e.g. if luaotfload +longdesc changes in a way so that it no longer works, or if LuaTeX +longdesc changes, or if fontspec itself includes the code. It is also +longdesc possible that the package's syntax and commands may change in +longdesc an incompatible way. So if you use it in a production +longdesc environment: You have been warned. +containersize 1816 +containerchecksum 838f10474c2e89f317df4592443deaec3d1a3310f7bb2b458c2a1b29a03013c4274912020ddd9b5807bb6018b6564c11df7b14b8a6db556e8db58dd98049c002 +doccontainersize 93188 +doccontainerchecksum ab322618efb3cd8089e9142a28800d34724e499bacbd0cc4a0db14a409bea3cb355f50d412f92862f53c0a5f91fef8af7b652b21be0596cc9687e4919f5122b4 +docfiles size=29 + RELOC/doc/lualatex/combofont/README.md details="Readme" + RELOC/doc/lualatex/combofont/combofont-test-fira-math.pdf + RELOC/doc/lualatex/combofont/combofont-test-fira-math.tex + RELOC/doc/lualatex/combofont/combofont.pdf details="Package documentation" + RELOC/doc/lualatex/combofont/combofont.tex +runfiles size=1 + RELOC/tex/lualatex/combofont/combofont.sty +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-license lppl1.3c +catalogue-topics luatex font-mgmt +catalogue-version 0.3 + +name comfortaa +category Package +revision 54512 +shortdesc Sans serif font, with LaTeX support +relocated 1 +longdesc Comfortaa is a sans-serif font, comfortable in every aspect, +longdesc designed by Johan Aakerlund. The font, which includes three +longdesc weights (thin, regular and bold), is available on Johan's +longdesc deviantArt web page as TrueType files under the Open Font +longdesc License version 1.1. This package provides support for this +longdesc font in LaTeX, and includes both the TrueType fonts, and +longdesc conversions to Adobe Type 1 format. +execute addMap comfortaa.map +containersize 555724 +containerchecksum 6b851b6c56ef5b6ae6e59c5a3606238671af34963c5dfb8a39a9bd6b84597f673d12963abdd687013f11edade4fb9ae37794a4789650c38c29f64bea1d41dea5 +doccontainersize 307912 +doccontainerchecksum b1b4efa42012646538316af9bdd5c724f285aa784e18e85a1239376dc02cf1b79bf43bb0ce07a822995a82811eb6562e6943aca0b903f9241bda088ac0675fce +docfiles size=89 + RELOC/doc/fonts/comfortaa/CHANGES + RELOC/doc/fonts/comfortaa/README details="Readme" + RELOC/doc/fonts/comfortaa/comfortaa-samples.pdf details="Font samples" + RELOC/doc/fonts/comfortaa/comfortaa.pdf details="Package documentation" +runfiles size=515 + RELOC/fonts/enc/dvips/comfortaa/a_64c3ob.enc + RELOC/fonts/enc/dvips/comfortaa/a_bh4242.enc + RELOC/fonts/enc/dvips/comfortaa/a_e4iqkg.enc + RELOC/fonts/enc/dvips/comfortaa/a_m2qr2b.enc + RELOC/fonts/enc/dvips/comfortaa/a_n5moke.enc + RELOC/fonts/enc/dvips/comfortaa/a_ovobyi.enc + RELOC/fonts/enc/dvips/comfortaa/a_q4mh67.enc + RELOC/fonts/enc/dvips/comfortaa/a_qfuw5x.enc + RELOC/fonts/enc/dvips/comfortaa/a_xu66hj.enc + RELOC/fonts/map/dvips/comfortaa/comfortaa.map + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-LGR--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-LGR-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-LGR-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-LGR.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-OT1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-OT1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-OT1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-OT1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2A--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2A-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2A-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2A.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2B--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2B-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2B-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2B.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2C--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2C-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2C-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-T2C.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-TS1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-TS1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-TS1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-TS1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-X2--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-X2-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-X2-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Bold-X2.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-LGR--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-LGR-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-LGR-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-LGR.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-OT1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-OT1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-OT1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-OT1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2A--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2A-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2A-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2A.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2B--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2B-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2B-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2B.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2C--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2C-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2C-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-T2C.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-TS1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-TS1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-TS1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-TS1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-X2--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-X2-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-X2-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Light-X2.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-LGR--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-LGR-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-LGR-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-LGR.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-OT1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-OT1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-OT1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-OT1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2A--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2A-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2A-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2A.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2B--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2B-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2B-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2B.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2C--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2C-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2C-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-T2C.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-TS1--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-TS1-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-TS1-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-TS1.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-X2--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-X2-Slanted--base.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-X2-Slanted.tfm + RELOC/fonts/tfm/aajohan/comfortaa/Comfortaa-Regular-X2.tfm + RELOC/fonts/truetype/aajohan/comfortaa/Comfortaa-Bold.ttf + RELOC/fonts/truetype/aajohan/comfortaa/Comfortaa-Light.ttf + RELOC/fonts/truetype/aajohan/comfortaa/Comfortaa-Regular.ttf + RELOC/fonts/type1/aajohan/comfortaa/Comfortaa-Bold.pfb + RELOC/fonts/type1/aajohan/comfortaa/Comfortaa-Light.pfb + RELOC/fonts/type1/aajohan/comfortaa/Comfortaa-Regular.pfb + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-LGR-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-LGR.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-OT1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-OT1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T2A-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T2A.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T2B-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T2B.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T2C-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-T2C.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-TS1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-TS1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-X2-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Bold-X2.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-LGR-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-LGR.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-OT1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-OT1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T2A-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T2A.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T2B-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T2B.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T2C-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-T2C.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-TS1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-TS1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-X2-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Light-X2.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-LGR-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-LGR.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-OT1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-OT1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T2A-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T2A.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T2B-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T2B.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T2C-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-T2C.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-TS1-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-TS1.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-X2-Slanted.vf + RELOC/fonts/vf/aajohan/comfortaa/Comfortaa-Regular-X2.vf + RELOC/tex/latex/comfortaa/LGRcomfortaa.fd + RELOC/tex/latex/comfortaa/OT1comfortaa.fd + RELOC/tex/latex/comfortaa/T1comfortaa.fd + RELOC/tex/latex/comfortaa/T2Acomfortaa.fd + RELOC/tex/latex/comfortaa/T2Bcomfortaa.fd + RELOC/tex/latex/comfortaa/T2Ccomfortaa.fd + RELOC/tex/latex/comfortaa/TS1comfortaa.fd + RELOC/tex/latex/comfortaa/X2comfortaa.fd + RELOC/tex/latex/comfortaa/comfortaa.sty +catalogue-ctan /fonts/comfortaa +catalogue-license ofl lppl1.3c +catalogue-topics font font-sans font-supp +catalogue-version 3.2 + +name comicneue +category Package +revision 54891 +shortdesc Use Comic Neue with TeX(-alike) systems +relocated 1 +longdesc Comic Neue is a well-known redesign of the (in)famous Comic +longdesc Sans font. The package provides the original OpenType font for +longdesc XeTeX and LuaTeX users, and also has converted Type1 files for +longdesc pdfTeX users. Issues with this package can be reported on +longdesc GitHub or emailed to tex@slxh.nl. +execute addMap ComicNeue.map +execute addMap ComicNeueAngular.map +containersize 872884 +containerchecksum 5dc900d215fef53fe69ffda6e9120f1230173f40d220c71eaaa3d7eb21610b214591bdc043f27f0fe5259daf2a800b695167d2deee1810a67045997aff7c2a76 +doccontainersize 200176 +doccontainerchecksum 24baee44951d9dc6fd70b6b6092112a1d7d13c394eeb495162c3f80444ebd799b526acf7b7c86b7590afc9f5f6efa97c10b661ddead6ca11a168325c7c840650 +docfiles size=97 + RELOC/doc/latex/comicneue/README.md details="Readme" + RELOC/doc/latex/comicneue/SIL-License.txt + RELOC/doc/latex/comicneue/comicneue-otf-specimen.pdf + RELOC/doc/latex/comicneue/comicneue-otf-specimen.tex + RELOC/doc/latex/comicneue/comicneue-type1-specimen.pdf + RELOC/doc/latex/comicneue/comicneue-type1-specimen.tex + RELOC/doc/latex/comicneue/comicneue.pdf details="Package documentation" + RELOC/doc/latex/comicneue/comicneue.tex +runfiles size=459 + RELOC/fonts/enc/dvips/comicneue/a_3f3vls.enc + RELOC/fonts/enc/dvips/comicneue/a_d7lrxj.enc + RELOC/fonts/enc/dvips/comicneue/a_fqjac7.enc + RELOC/fonts/enc/dvips/comicneue/a_ixwebc.enc + RELOC/fonts/enc/dvips/comicneue/a_ncyf37.enc + RELOC/fonts/enc/dvips/comicneue/a_nhwyv3.enc + RELOC/fonts/enc/dvips/comicneue/a_trnund.enc + RELOC/fonts/enc/dvips/comicneue/a_upn2ip.enc + RELOC/fonts/enc/dvips/comicneue/a_wfs66e.enc + RELOC/fonts/map/dvips/comicneue/ComicNeue.map + RELOC/fonts/map/dvips/comicneue/ComicNeueAngular.map + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Bold.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-BoldItalic.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Light.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-LightItalic.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Regular.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-RegularItalic.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-Bold.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-BoldItalic.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-Light.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-LightItalic.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-Regular.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-RegularItalic.otf + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ts1.tfm + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Bold.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldItalic.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Italic.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Light.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightItalic.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Regular.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Bold.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldItalic.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Italic.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-ItalicLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Light.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightItalic.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightItalicLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Regular.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-RegularLCDFJ.pfb + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Italic-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Italic-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Italic-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightItalic-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Regular-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Regular-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Regular-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ts1.vf + RELOC/tex/latex/comicneue/LY1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/LY1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/OT1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/OT1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/T1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/T1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/TS1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/TS1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/comicneue.sty +catalogue-contact-repository https://github.com/silkeh/latex-comicneue/issues +catalogue-ctan /fonts/comicneue +catalogue-license ofl +catalogue-topics font font-otf font-supp font-type1 +catalogue-version 1.2 + +name comma +category Package +revision 18259 +shortdesc Formats a number by inserting commas +relocated 1 +longdesc A flexible package that allows commas (or anything else) to be +longdesc inserted every three digits in a number, as in 1,234. +containersize 1696 +containerchecksum 65c21bca8e6a707697847ff96d1cd909cbe0c7d33140b4b175a2e3464c1c67827cea9c9f65e45dfcd31fcf2fd94262daa907358341fddf351241753ab47ac99c +doccontainersize 153428 +doccontainerchecksum b25433b52a32cee71043c1f13d2ca45beff32733ac24259f767b6093f5b5f38e0da3c88569bcd637267397c49d26e546c26454381cf916040c52a2833b02df65 +docfiles size=41 + RELOC/doc/latex/comma/README details="Readme" + RELOC/doc/latex/comma/comma.pdf details="Package documentation" + RELOC/doc/latex/comma/comma.tex +runfiles size=1 + RELOC/tex/latex/comma/comma.sty +catalogue-ctan /macros/latex/contrib/comma +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1.2 + +name commado +category Package +revision 38875 +shortdesc Expandable iteration on comma-separated and filename lists +relocated 1 +longdesc The bundle provides two packages: commado and filesdo. The +longdesc package commado provides the command \DoWithCSL: +longdesc \DoWithCSL{}{} applies an existing one-parameter +longdesc macro to each item in a list in which terms are +longdesc separated by commas. The package filesdo provides the command +longdesc \DoWithBasesExts: \DoWithBasesExts{}{}{} +longdesc which runs the single parameter command on each file +longdesc whose base and extension are respectively from the +longdesc comma-separated lists and . These 'loop'-like +longdesc commands are (themselves) entirely expandable. The packages +longdesc rely on packages plainpkg, and stacklet +containersize 2816 +containerchecksum c5e48910b5e685c792b9dfe191cd8666472e24e7ef6d6c2fdb3bfb05b2f39f4d4ca68cc7b859d07f50e5d596250e36e1664e1ca48666b0e3126eb8c91d27c384 +doccontainersize 596344 +doccontainerchecksum 457d03b34ba53988ff287060d18f993f8e01ca99991505c5373abc05cfdde4cfcdda8fbb6dc3737e91c66ef0b30c083c31e64e326c08d4959ff8ed1a66cd4d33 +docfiles size=148 + RELOC/doc/generic/commado/README details="Readme" + RELOC/doc/generic/commado/SrcFILEs.txt + RELOC/doc/generic/commado/commado.pdf details="Package documentation" +srccontainersize 4420 +srccontainerchecksum e0f280bd901ae306f17ef58686345ca38546fd635dde274456af67f41fc05523a91c1f0c0a2b7f433c992193a6442f870031459071a5d7fd6c12f68728f24809 +srcfiles size=4 + RELOC/source/generic/commado/commado.tex + RELOC/source/generic/commado/srcfiles.tex +runfiles size=3 + RELOC/tex/generic/commado/commado.RLS + RELOC/tex/generic/commado/commado.sty + RELOC/tex/generic/commado/filesdo.sty +catalogue-also loops +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/generic/commado +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version r0.11a + +name commath +category Package +revision 15878 +shortdesc Mathematics typesetting support +relocated 1 +longdesc Provides a range of differential, partial differential and +longdesc delimiter commands, together with a \fullfunction (function, +longdesc with both domain and range, and function operation) and various +longdesc reference commands. +containersize 2460 +containerchecksum 68c25e035e211107c65eece91bf84d65f2328ebaa3dc81d70186707c081f865abcb1be383cecec7d780bbebf3f565647406d6bcfc2c6bb3e846058d50882a6b0 +doccontainersize 101092 +doccontainerchecksum 5d1d162cf8fd6692788bd15e2d3c2021fa6ed96f289f2c17e9d7e9d2afb428030f0d016f4b4aac62aebec1c8988aa1a978f71bdc7f4873e181f1b2ec7e0f6d0d +docfiles size=37 + RELOC/doc/latex/commath/README details="Readme" + RELOC/doc/latex/commath/commath.pdf details="Package documentation" + RELOC/doc/latex/commath/commath.tex +runfiles size=3 + RELOC/tex/latex/commath/commath.sty +catalogue-ctan /macros/latex/contrib/commath +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.3 + +name commedit +category Package +revision 50116 +shortdesc Commented editions with LaTeX +relocated 1 +longdesc The package is intended for commented editions. An example of +longdesc commented edition is a teacher's book based on a student's +longdesc textbook. Each page of a teacher's book is a page from the +longdesc textbook and comments for the teacher. This package was +longdesc commissioned by Instituto de Matematica Pura e Aplicada ( IMPA) +containersize 3436 +containerchecksum 7a2248fc7c3de4755a68dfb769c0862332f41945a5efdac8f0b9911c3479bc45cf72ef0176d8d2ed2abe127aaf388c17c90d1f58cfea4aec8bd9e488f2d96c5f +doccontainersize 600556 +doccontainerchecksum b8c6fbb8c67aeb878fef32bb6e61dacdb3ebf9bb7ac92bcdb685bccfac8129ee3145d40ae579ff77b097fc81ebe0438ee5c50c6bc3df156910a287b368728c6e +docfiles size=173 + RELOC/doc/latex/commedit/README details="Readme" + RELOC/doc/latex/commedit/commedit.pdf details="Package documentation" + RELOC/doc/latex/commedit/commented.pdf + RELOC/doc/latex/commedit/sample.pdf + RELOC/doc/latex/commedit/sample.tex + RELOC/doc/latex/commedit/vitruvian.jpg +srccontainersize 8200 +srccontainerchecksum 19db6434ff564e454ca44fee29d22bb6a930b9f51f54265955565fffd8a7a4a1be89e3475c727a47c3723da99160f4d9ad9899321913d8739821c6491117c843 +srcfiles size=10 + RELOC/source/latex/commedit/Makefile + RELOC/source/latex/commedit/commedit.dtx + RELOC/source/latex/commedit/commedit.ins +runfiles size=4 + RELOC/tex/latex/commedit/commedit.sty +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-license lppl1.3 +catalogue-topics editorial crit-ed +catalogue-version 1.02 + +name comment +category Package +revision 41927 +shortdesc Selectively include/exclude portions of text +relocated 1 +longdesc Selectively include/exclude pieces of text, allowing the user +longdesc to define new, separately controlled, comment versions. All +longdesc text between \comment ... \endcomment or \begin{comment} ... +longdesc \end{comment} is discarded. The opening and closing commands +longdesc should appear on a line of their own. No starting spaces, +longdesc nothing after it. This environment should work with arbitrary +longdesc amounts of comment, and the comment can be arbitrary text. +longdesc Other 'comment' environments are defined and +longdesc selected/deselected with \includecomment{versiona} and +longdesc \excludecoment{versionb} These environments are used as +longdesc \versiona ... \endversiona or \begin{versiona} ... +longdesc \end{versiona} with the opening and closing commands again on a +longdesc line of their own. +containersize 4124 +containerchecksum 36b5b4c4d4345a4fcf706f5040c02c2de52567fae76146a06b7f084d59b12d151e65faba1ee4aeeaebee018d81200c2902feb81ae575de35a68c00fa14ed6ba3 +doccontainersize 535056 +doccontainerchecksum d5a360c6a0c549fee1d46fa0e9c3f9aaaa4b19b30ac48046e736008ddb42393062824950684185175f8ab569cec221bc8f9a798a07623dbe26cc92a3fd6bc72b +docfiles size=145 + RELOC/doc/latex/comment/Makefile + RELOC/doc/latex/comment/README details="Readme" + RELOC/doc/latex/comment/comm_bug.tex + RELOC/doc/latex/comment/comm_test.pdf + RELOC/doc/latex/comment/comm_test.tex + RELOC/doc/latex/comment/comm_test_ivo.tex + RELOC/doc/latex/comment/comm_test_l.tex + RELOC/doc/latex/comment/comment.pdf details="Package documentation" + RELOC/doc/latex/comment/comment.tex + RELOC/doc/latex/comment/comment_plain.tex + RELOC/doc/latex/comment/t1test.pdf + RELOC/doc/latex/comment/t1test.tex + RELOC/doc/latex/comment/writeup.pdf + RELOC/doc/latex/comment/writeup.tex +runfiles size=3 + RELOC/tex/latex/comment/comment.sty +catalogue-ctan /macros/latex/contrib/comment +catalogue-license gpl2 +catalogue-topics cond-comp editorial +catalogue-version 3.8 + +name commutative-diagrams +category Package +revision 55526 +shortdesc CoDi: Commutative Diagrams for TeX +relocated 1 +longdesc This package provides a TikZ library for making commutative +longdesc diagrams easy to design, parse and tweak. +containersize 12684 +containerchecksum ff7cd8401eb54f14bd013db9a62e2540a8015e51ad573cb76683b19c2cf2fed0a2081be87c5c81238664ab441f6d17eedc896e41fa0700dcd70b088d08e6ec8a +doccontainersize 549992 +doccontainerchecksum 3709730425aafd1fd9aed5b4cbb1b80bf70ed474c792f0ad6f35d4ae6ad64624db64bda7a02656b226c13ea93159d2811356eb75f8b2756328f0ecea2289f738 +docfiles size=146 + RELOC/doc/generic/commutative-diagrams/README details="Readme" + RELOC/doc/generic/commutative-diagrams/commutative-diagrams-doc.pdf details="Package documentation" + RELOC/doc/generic/commutative-diagrams/commutative-diagrams-doc.tex +runfiles size=22 + RELOC/tex/context/third/commutative-diagrams/t-commutative-diagrams.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.bapto.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.diorthono.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.ektropi.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.katharizo.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.koinos.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.mandyas.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.mitra.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.ozos.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.ramma.code.tex + RELOC/tex/generic/commutative-diagrams/tikzlibrarycommutative-diagrams.velos.code.tex + RELOC/tex/latex/commutative-diagrams/commutative-diagrams.sty + RELOC/tex/latex/commutative-diagrams/kodi.sty + RELOC/tex/plain/commutative-diagrams/commutative-diagrams.tex +catalogue-contact-bugs https://github.com/paolobrasolin/commutative-diagrams/issues +catalogue-contact-repository https://github.com/paolobrasolin/commutative-diagrams +catalogue-ctan /graphics/pgf/contrib/commutative-diagrams +catalogue-license mit +catalogue-topics diagram-comm diagram-maths diagram maths pgf-tikz graphics +catalogue-version 1.0.1 + +name compactbib +category Package +revision 15878 +shortdesc Multiple thebibliography environments +relocated 1 +longdesc Allows a second bibliography, optionally with a different +longdesc title, after the main bibliography. +containersize 1860 +containerchecksum dbc3bb28178a656b400a2a72e48ec813d6e282ddba7c70bb4dd0b5ed7f76e9e0be1dffb0ecf43e4893210453ef420c1b1d859c287663cad6bfe8c7f46dc8d86b +runfiles size=2 + RELOC/tex/latex/compactbib/compactbib.sty +catalogue-ctan /macros/latex/contrib/compactbib +catalogue-license lppl +catalogue-topics bibtex-supp + +name compare +category Package +revision 54265 +shortdesc Compare two strings +relocated 1 +longdesc The file defines a macro \compare, which takes two arguments; +longdesc the macro expands to -1, 0, 1, according as the first argument +longdesc is less than, equal to, or greater than the second argument. +longdesc Sorting is alphabetic, using ASCII collating order. +containersize 708 +containerchecksum 16d6ffeaa66c1165ce4c6795ff2f73e0cc5a811045198db6e7aa2556bc6ff8b20883478011fae9f06400475f9a96a57fea34f7513b7fbbb392aee03dbd30ad01 +runfiles size=1 + RELOC/tex/generic/compare/compare.tex +catalogue-ctan /macros/generic/misc/compare.tex +catalogue-license pd +catalogue-topics macro-supp + +name competences +category Package +revision 47573 +shortdesc Track skills of classroom checks +relocated 1 +longdesc This package is an attempt to track skills assessed during a +longdesc classroom check. Each question can be associated with one or +longdesc more skills and be assigned a number of points to be earned. At +longdesc the end of the text, a table set summarizes the skills +longdesc assessed, and in what proportions. +containersize 2384 +containerchecksum e5b2b3a77418d5bc55e8fbbc68c39b1852ce6081b00bf6115573ac29cb7c2b8fd70392fda9b04edca5c3aa1617424541fef2da4d2f777c433b8ee168e850ad99 +doccontainersize 1304 +doccontainerchecksum 8a0078f2a3c32f03aef58a5d1ba4167ac4c738103d65cad9a5f4bae67aebcce3cb7a16d6aa27fa7b83955c95b28c1f70a0404f5633e3231c3b6d4232265e6c53 +docfiles size=2 + RELOC/doc/latex/competences/README.md details="Readme" + RELOC/doc/latex/competences/example.tex +srccontainersize 4048 +srccontainerchecksum 2fb4c80d75808aca093a664bb2ef152cb4ca6bbf1ba0253c2eeb6ece3cdd2299cf7f183423b65f47655128c3b374eb756cd870cc24034da7aaae206216e79fef +srcfiles size=4 + RELOC/source/latex/competences/competences.dtx + RELOC/source/latex/competences/competences.ins +runfiles size=2 + RELOC/tex/latex/competences/competences.sty +catalogue-ctan /macros/latex/contrib/competences +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 1.0 + +name complexity +category Package +revision 45322 +shortdesc Computational complexity class names +relocated 1 +longdesc Complexity is a LaTeX package that defines commands to typeset +longdesc Computational Complexity Classes such as $\P$ and $\NP$ (as +longdesc well as hundreds of others). It also offers several options +longdesc including which font classes are typeset in and how many are +longdesc defined (all of them or just the basic, most commonly used +longdesc ones). The package has no dependencies other than the standard +longdesc ifthen package. +containersize 5604 +containerchecksum 352e1a308e159e432c3123afeba8b173b28e164c81b4874273ddd3f8bb8c8866ef33ba7c06e061d52a3845eafb3307b045b82c9da5ea6a812f3808417fa074d6 +doccontainersize 265392 +doccontainerchecksum 2ffc63af2d86b7dc121c6e122ee1d23387c4c73a6ba65b226413671b86644d0cd9e9ec646b3eef49d9c4b2d64575d83ff45f3691337ba1dea6835945ca80de13 +docfiles size=72 + RELOC/doc/latex/complexity/README details="Readme" + RELOC/doc/latex/complexity/complexity.pdf details="Package documentation" + RELOC/doc/latex/complexity/complexity.tex + RELOC/doc/latex/complexity/tableofclasses.tex +runfiles size=8 + RELOC/tex/latex/complexity/complexity.sty + RELOC/tex/latex/complexity/mycomplexity.sty +catalogue-ctan /macros/latex/contrib/complexity +catalogue-license lppl1.3c +catalogue-topics graphics-symb +catalogue-version 0.81a + +name components-of-TeX +category Package +revision 15878 +catalogue components +shortdesc Components of TeX +relocated 1 +longdesc An introduction to the components and files users of TeX may +longdesc encounter. +containersize 392 +containerchecksum 364836128154056aa5d1e005144a64aa64ee105c78d34127958599c8c0eb82aa70e856017be3d7166d723a0fd7c9656d72cb24e46bd61d8768c1dc82991c5f77 +doccontainersize 11052 +doccontainerchecksum 5da762a898a6cb95d5da95f444e862c8d0ac351ca63eca776fc1a9e35e2fb00389d414a85fa1bef357abc3d68b691a36ddac8c6aba20b7ea6f398c9017ac13fb +docfiles size=11 + RELOC/doc/generic/components-of-TeX/README details="Package README" + RELOC/doc/generic/components-of-TeX/etexkomp.tex + RELOC/doc/generic/components-of-TeX/figkomp.tex + RELOC/doc/generic/components-of-TeX/figtotal.tex + RELOC/doc/generic/components-of-TeX/names.sty + RELOC/doc/generic/components-of-TeX/texrep.sty +catalogue-ctan /info/components-of-TeX +catalogue-license gpl +catalogue-topics documentation + +name comprehensive +category Package +revision 55667 +shortdesc Symbols accessible from LaTeX +relocated 1 +longdesc Over 14000 symbols are listed as a set of tables. The tables of +longdesc symbols are ordered in a logical way (the document begins with +longdesc a 'frequently requested symbols' list), the aim being to make +longdesc the document a convenient way of looking up symbols. +containersize 500 +containerchecksum 57046d6981bcda498ff025644fe915ce67a01b60c6fe58431060754e801b51b9332eb718fca263fd39b9b728b9db6702d83e227d8ed579c03d58f6d653c76a0d +doccontainersize 17436548 +doccontainerchecksum a2c4c855c0321e2d57d430f6788e762ab1bc8d51a5513fbbf0f6f4b53874d8816b877d9e4d5f3222e1014b8ea8384ff16a9d52742e9bebfc7932e08ab170e53e +docfiles size=4929 + RELOC/doc/latex/comprehensive/README details="Package README" + RELOC/doc/latex/comprehensive/README.TEXLIVE + RELOC/doc/latex/comprehensive/SYMLIST details="Plain text list of symbol commands" + RELOC/doc/latex/comprehensive/rawtables-a4.pdf + RELOC/doc/latex/comprehensive/source/Makefile + RELOC/doc/latex/comprehensive/source/fakeallrunes.sty + RELOC/doc/latex/comprehensive/source/fakearcs.sty + RELOC/doc/latex/comprehensive/source/fakearevmath.sty + RELOC/doc/latex/comprehensive/source/fakedozenal.sty + RELOC/doc/latex/comprehensive/source/fakego.sty + RELOC/doc/latex/comprehensive/source/fakelatexsym.sty + RELOC/doc/latex/comprehensive/source/fakemusixtex.sty + RELOC/doc/latex/comprehensive/source/fakeold-arrows.sty + RELOC/doc/latex/comprehensive/source/lightbulb.eps + RELOC/doc/latex/comprehensive/source/lightbulb.map + RELOC/doc/latex/comprehensive/source/lightbulb.mf + RELOC/doc/latex/comprehensive/source/lightbulb10.mf + RELOC/doc/latex/comprehensive/source/lightbulb10.pfb + RELOC/doc/latex/comprehensive/source/makefakeMnSymbol + RELOC/doc/latex/comprehensive/source/makefakeboisik + RELOC/doc/latex/comprehensive/source/makefakecmupint + RELOC/doc/latex/comprehensive/source/makefakefdsymbol + RELOC/doc/latex/comprehensive/source/makefakestarfont + RELOC/doc/latex/comprehensive/source/makefakestix + RELOC/doc/latex/comprehensive/source/makerawtables + RELOC/doc/latex/comprehensive/source/symbols.ist + RELOC/doc/latex/comprehensive/source/symbols.tex + RELOC/doc/latex/comprehensive/source/teubner-subset.sty + 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-license lppl1.3 +catalogue-topics font-index ref-latex +catalogue-version 13.0 + +name computational-complexity +category Package +revision 44847 +shortdesc Class for the journal Computational Complexity +relocated 1 +longdesc The LaTeX2e class cc was written for the journal Computational +longdesc Complexity, and it can also be used for a lot of other +longdesc articles. You may like it since it contains a lot of features +longdesc such as more intelligent references, a set of theorem +longdesc definitions, an algorithm environment, and more. The class +longdesc requires natbib. +containersize 32516 +containerchecksum 639ae984ee1b581260434ace517d8209843127795e674af045ddafe16838946bebbd2dbeded45fddf62ec0a49b1a30492db0cba4ad1e5bf65530d1d5a5df9198 +doccontainersize 799564 +doccontainerchecksum 9daf1691d33bbf00b67b82cc29de0002e1aef968cb1f182bc3d722082582ed7e60945f74675b48a87baf67aa9f5fee4a167bf1548d3312492a8f570feda93ac8 +docfiles size=273 + RELOC/doc/latex/computational-complexity/README details="Readme" + RELOC/doc/latex/computational-complexity/cc-cls-inline.tex + RELOC/doc/latex/computational-complexity/cc-journals.bib + RELOC/doc/latex/computational-complexity/cc-portability-frame.tex + RELOC/doc/latex/computational-complexity/cc.pdf details="Package documentation" + RELOC/doc/latex/computational-complexity/cc2.dbj + RELOC/doc/latex/computational-complexity/ccquickref.tex + RELOC/doc/latex/computational-complexity/cctemplate.tex +srccontainersize 87476 +srccontainerchecksum 37d9b700194fb1ad6cd11fd9008aa1634a6b425133365819b5f76ec349a962e44ef43e8c18572fec16bb4f7b44fea29bcb4f01936016486c3eee4d44ddfc5ba2 +srcfiles size=100 + RELOC/source/latex/computational-complexity/cc.dtx + RELOC/source/latex/computational-complexity/cc.ins +runfiles size=57 + RELOC/bibtex/bst/computational-complexity/cc.bst + RELOC/bibtex/bst/computational-complexity/cc2.bst + RELOC/tex/latex/computational-complexity/cc-cls.sty + RELOC/tex/latex/computational-complexity/cc.cls + RELOC/tex/latex/computational-complexity/cc2cite.sty + RELOC/tex/latex/computational-complexity/cc4amsart.sty + RELOC/tex/latex/computational-complexity/cc4apjrnl.sty + RELOC/tex/latex/computational-complexity/cc4elsart.sty + RELOC/tex/latex/computational-complexity/cc4jT.sty + RELOC/tex/latex/computational-complexity/cc4llncs.sty + RELOC/tex/latex/computational-complexity/cc4siamltex.sty + RELOC/tex/latex/computational-complexity/cc4svjour.sty + RELOC/tex/latex/computational-complexity/ccalgo.sty + RELOC/tex/latex/computational-complexity/ccaux.sty + RELOC/tex/latex/computational-complexity/cccite.sty + RELOC/tex/latex/computational-complexity/ccdbs.sty + RELOC/tex/latex/computational-complexity/cclayout.sty + RELOC/tex/latex/computational-complexity/ccproof.sty + RELOC/tex/latex/computational-complexity/ccqed.sty + RELOC/tex/latex/computational-complexity/ccref.sty + RELOC/tex/latex/computational-complexity/ccreltx.sty + RELOC/tex/latex/computational-complexity/ccthm.sty + RELOC/tex/latex/computational-complexity/relabel.sty + RELOC/tex/latex/computational-complexity/thcc.sty +catalogue-ctan /macros/latex/contrib/computational-complexity +catalogue-license lppl1.2 +catalogue-topics journalpub class +catalogue-version 2.25f + +name concepts +category Package +revision 29020 +shortdesc Keeping track of formal 'concepts' for a particular field +relocated 1 +longdesc The package helps to keep track of formal 'concepts' for a +longdesc specific field or document. This is particularly useful for +longdesc scientific papers (for example, in physics, mathematics or +longdesc computer science), which may introduce several concepts (with +longdesc their own symbols). The package's commands allow the user to +longdesc define a concept (typically, near its first use), and will +longdesc ensure consistent use throughout the document. The package +longdesc depends on several other packages; while these are fairly +longdesc common packages, the user should check the package's README +longdesc file for the complete list. +containersize 7124 +containerchecksum 2fe917ad25df3b14bd3a20566b97a7ece0f87f79ec7ef10bcafdffde1834f6fc4bfa6775a7ec8d044e5f3ad241913b2664a7a5c25893e9406de26c0a1008d25c +doccontainersize 317328 +doccontainerchecksum 5519f645d55e2a3e4e5f9156bdac2ea9e4ad4735ec9104255e75ea254f45b135f0d635322cf46a5536e8600eee1447ab48753763a4c89310e92d51c94c4fde80 +docfiles size=89 + RELOC/doc/latex/concepts/README details="Readme" + RELOC/doc/latex/concepts/concepts.pdf details="Package documentation" + RELOC/doc/latex/concepts/concepts.tex + RELOC/doc/latex/concepts/dry.sty + RELOC/doc/latex/concepts/packagedoc.cls + RELOC/doc/latex/concepts/with.sty +runfiles size=7 + RELOC/tex/latex/concepts/concepts.sty +catalogue-ctan /macros/latex/contrib/concepts +catalogue-license lppl +catalogue-topics editorial-consistency +catalogue-version 0.0.5-r1 + +name concmath +category Package +revision 17219 +shortdesc Concrete Math fonts +relocated 1 +longdesc A LaTeX package and font definition files to access the +longdesc Concrete mathematics fonts, which were derived from Computer +longdesc Modern math fonts using parameters from Concrete Roman text +longdesc fonts. +containersize 2176 +containerchecksum 1e2fd3339fd2bf2a48967102ca42c930ff41a5b4a9fa850cbce6aa2ed701ab351a5dfb931ed80de34aa13e18ab2b01fa2893f981fc671d6399f4d55aa9f8ea40 +doccontainersize 266164 +doccontainerchecksum 05dbb0a6d89d3f72f3d77824670afb29e6ea8dbba6d37255f6a36006a6a6b630fb56b12815ae3075c41dd698d6a85c6be7ce1dc2da9b3b69b636fcd8c4855a84 +docfiles size=71 + RELOC/doc/fonts/concmath/CATALOGUE + RELOC/doc/fonts/concmath/README details="Readme" + RELOC/doc/fonts/concmath/concmath.pdf details="Package documentation" +srccontainersize 9604 +srccontainerchecksum 6c4a5a4af907174df5fdeb77f0c4d0f554c2b8ac0d95031fe98f4a748bc4a96c7a526e44229174ffaccdec5bcf086722b355b3c4dcbc4441e1a67c91a71376db +srcfiles size=10 + RELOC/source/latex/concmath/Makefile + RELOC/source/latex/concmath/concmath.dtx + RELOC/source/latex/concmath/concmath.ins +runfiles size=9 + RELOC/tex/latex/concmath/concmath.sty + RELOC/tex/latex/concmath/omlccm.fd + RELOC/tex/latex/concmath/omlccr.fd + RELOC/tex/latex/concmath/omsccr.fd + RELOC/tex/latex/concmath/omsccsy.fd + RELOC/tex/latex/concmath/omxccex.fd + RELOC/tex/latex/concmath/ot1ccr.fd + RELOC/tex/latex/concmath/ucca.fd + RELOC/tex/latex/concmath/uccb.fd +catalogue-also concrete ccfonts +catalogue-ctan /macros/latex/contrib/concmath +catalogue-license lppl +catalogue-topics font-supp + +name concmath-fonts +category Package +revision 17218 +shortdesc Concrete mathematics fonts +relocated 1 +longdesc The fonts are derived from the computer modern mathematics +longdesc fonts and from Knuth's Concrete Roman fonts; they are +longdesc distributed as Metafont source. LaTeX support is offered by the +longdesc concmath package. +containersize 15176 +containerchecksum 65b3f7003b8aaaf6565bea6a65da11f42dca2283f1d53710f4b476a48ab39ae6fffc1d0f9206e23b66047b572c28e793e1a75d047f1c1a892fb4e7c17c854741 +doccontainersize 2640 +doccontainerchecksum 7b2db9b8f2f23816cf413676dfbf6ca3413a39bb20cbc12070b9202bd2e98714a86dcb5f27a746ae197efd2284eb794f06af1b2941667abfddb72773ceb61378 +docfiles size=3 + RELOC/doc/fonts/concmath-fonts/CATALOGUE + RELOC/doc/fonts/concmath-fonts/Makefile + RELOC/doc/fonts/concmath-fonts/README details="Package Readme" +runfiles size=78 + RELOC/fonts/source/public/concmath-fonts/xccam10.mf + RELOC/fonts/source/public/concmath-fonts/xccam5.mf + RELOC/fonts/source/public/concmath-fonts/xccam6.mf + RELOC/fonts/source/public/concmath-fonts/xccam7.mf + RELOC/fonts/source/public/concmath-fonts/xccam8.mf + RELOC/fonts/source/public/concmath-fonts/xccam9.mf + RELOC/fonts/source/public/concmath-fonts/xccbm10.mf + RELOC/fonts/source/public/concmath-fonts/xccbm5.mf + RELOC/fonts/source/public/concmath-fonts/xccbm6.mf + RELOC/fonts/source/public/concmath-fonts/xccbm7.mf + RELOC/fonts/source/public/concmath-fonts/xccbm8.mf + RELOC/fonts/source/public/concmath-fonts/xccbm9.mf + RELOC/fonts/source/public/concmath-fonts/xccex10.mf + RELOC/fonts/source/public/concmath-fonts/xccex7.mf + RELOC/fonts/source/public/concmath-fonts/xccex8.mf + RELOC/fonts/source/public/concmath-fonts/xccex9.mf + RELOC/fonts/source/public/concmath-fonts/xccmi10.mf + RELOC/fonts/source/public/concmath-fonts/xccmi5.mf + RELOC/fonts/source/public/concmath-fonts/xccmi6.mf + RELOC/fonts/source/public/concmath-fonts/xccmi7.mf + RELOC/fonts/source/public/concmath-fonts/xccmi8.mf + RELOC/fonts/source/public/concmath-fonts/xccmi9.mf + RELOC/fonts/source/public/concmath-fonts/xccsy10.mf + RELOC/fonts/source/public/concmath-fonts/xccsy5.mf + RELOC/fonts/source/public/concmath-fonts/xccsy6.mf + RELOC/fonts/source/public/concmath-fonts/xccsy7.mf + RELOC/fonts/source/public/concmath-fonts/xccsy8.mf + RELOC/fonts/source/public/concmath-fonts/xccsy9.mf + RELOC/fonts/tfm/public/concmath-fonts/xccam10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy9.tfm +catalogue-ctan /fonts/concmath +catalogue-license lppl +catalogue-topics font font-mf font-maths + +name concprog +category Package +revision 18791 +shortdesc Concert programmes +relocated 1 +longdesc A class which provides the necessary macros to prepare a +longdesc (classical) concert programme; a sample is provided. +containersize 4280 +containerchecksum f650acafa4ffa424451f338d6432d665ff679396ed367650d360adf699d3b1e7d8d23f5b3fd070440cb4d6578d07978bfd02960c1219eed6c8594f110708e5cc +doccontainersize 1064 +doccontainerchecksum bf4d76362f7a764ae4c7937edf05a575b3faa8d6919c6c857ae350b742f53d6390546263d14958dbdfd423c9b45a7f9eebe862a00378f51c754b5fee65f60bc0 +docfiles size=1 + RELOC/doc/latex/concprog/program.tex +runfiles size=4 + RELOC/tex/latex/concprog/ConcProg.cls +catalogue-ctan /macros/latex/contrib/concprog +catalogue-license gpl +catalogue-topics advert + +name concrete +category Package +revision 57963 +shortdesc Concrete Roman fonts +relocated 1 +longdesc Concrete Roman fonts, designed by Donald E. Knuth, originally +longdesc for use with Euler mathematics fonts. Alternative mathematics +longdesc fonts, based on the concrete 'parameter set' are available as +longdesc the concmath fonts bundle. LaTeX support is offered by the +longdesc beton, concmath and ccfonts packages. T1- and TS1-encoded +longdesc versions of the fonts are available in the ecc bundle, and +longdesc Adobe Type 1 versions of the ecc fonts are part of the cm-super +longdesc bundle. +containersize 9556 +containerchecksum 9bf9621c120f831110f71cf8d53ee5d4d42869da8c9b2c653125dd6cb6eb9b8d264116645753ee34dce1076204e008d9e74bd0596b46ffac596cc7726b0c75a9 +doccontainersize 2348 +doccontainerchecksum c70e9c299e69daa29e9471293b59ed4bf375b8314729381c1973c5390ec5d73b3cffa16db8864e8d84466dbd078179e98b2ffa3e6466d67441e30efcd02676fb +docfiles size=3 + RELOC/doc/fonts/concrete/CATALOGUE + RELOC/doc/fonts/concrete/Makefile + RELOC/doc/fonts/concrete/README details="Readme" +runfiles size=29 + RELOC/fonts/source/public/concrete/cccsc10.mf + RELOC/fonts/source/public/concrete/ccmi10.mf + RELOC/fonts/source/public/concrete/ccmic9.mf + RELOC/fonts/source/public/concrete/ccn10.mf + RELOC/fonts/source/public/concrete/ccr10.mf + RELOC/fonts/source/public/concrete/ccr5.mf + RELOC/fonts/source/public/concrete/ccr6.mf + RELOC/fonts/source/public/concrete/ccr7.mf + RELOC/fonts/source/public/concrete/ccr8.mf + RELOC/fonts/source/public/concrete/ccr9.mf + RELOC/fonts/source/public/concrete/ccsl10.mf + RELOC/fonts/source/public/concrete/ccsl9.mf + RELOC/fonts/source/public/concrete/ccslc9.mf + RELOC/fonts/source/public/concrete/ccti10.mf + RELOC/fonts/source/public/concrete/odigs.mf + RELOC/fonts/tfm/public/concrete/cccsc10.tfm + RELOC/fonts/tfm/public/concrete/ccmi10.tfm + RELOC/fonts/tfm/public/concrete/ccmic9.tfm + RELOC/fonts/tfm/public/concrete/ccr10.tfm + RELOC/fonts/tfm/public/concrete/ccr5.tfm + RELOC/fonts/tfm/public/concrete/ccr6.tfm + RELOC/fonts/tfm/public/concrete/ccr7.tfm + RELOC/fonts/tfm/public/concrete/ccr8.tfm + RELOC/fonts/tfm/public/concrete/ccr9.tfm + RELOC/fonts/tfm/public/concrete/ccsl10.tfm + RELOC/fonts/tfm/public/concrete/ccsl9.tfm + RELOC/fonts/tfm/public/concrete/ccslc9.tfm + RELOC/fonts/tfm/public/concrete/ccti10.tfm +catalogue-ctan /fonts/concrete +catalogue-license knuth +catalogue-topics font font-mf + +name conditext +category Package +revision 55387 +shortdesc Define and manage conditional content +relocated 1 +longdesc This package provides some commands to define and manage +longdesc conditional content in a LaTeX source document. A conditional +longdesc content, in the sense within this is understood in this +longdesc package, is a text (including mathematical or other formulas) +longdesc and/or a graphical element (diagram, figure, image...) as +longdesc substitutable forms, which, according to a condition test, may +longdesc or may not appear in the generated document. One of the most +longdesc common forms of conditional content management is multilingual +longdesc ; but it can also include versioning, confidentiality levels, +longdesc and so on. The philosophy of this package is based on the +longdesc respective notions of condition field, condition property and +longdesc condition space. With this package, any substitutable form in a +longdesc source document is identified by a condition field and a +longdesc condition property. The condition field is a functional theme +longdesc that allows you to group together substitutable forms for the +longdesc same conditional management. The condition property is a +longdesc functional characterization specific to each substitutable form +longdesc of a single condition domain. The condition space is used to +longdesc designate the substitutable form(s) that must appear in the +longdesc generated document. A condition space is defined by specifying +longdesc a condition domain and a condition property to match with one +longdesc or more substitutable forms. +containersize 6304 +containerchecksum 60619cdd5031d0fbd2f9e4e8614dacf8f439282787f6230bd2662bad21607720757a19ab27ef783a36a6a19299d5960fb786d8cc787e471a46e89f8cc2e7c866 +doccontainersize 528648 +doccontainerchecksum 3949b2f03c86a922d306cab525a5ca321509d64cfd73b99a39e3404800f63f15e262921e2c1e8eedf98ba2f6cbdda00dfb14e54198af5b7438afdea4572a86ee +docfiles size=164 + RELOC/doc/latex/conditext/README.txt details="Readme" + RELOC/doc/latex/conditext/conditext-examples/conditext-example01a.tex + RELOC/doc/latex/conditext/conditext-examples/conditext-example01b.tex + RELOC/doc/latex/conditext/conditext-examples/conditext-example02-image01.png + RELOC/doc/latex/conditext/conditext-examples/conditext-example02-image02.png + RELOC/doc/latex/conditext/conditext-examples/conditext-example02-image03.png + RELOC/doc/latex/conditext/conditext-examples/conditext-example02-image04.png + RELOC/doc/latex/conditext/conditext-examples/conditext-example02.tex + RELOC/doc/latex/conditext/conditext-examples/conditext-example03a.tex + RELOC/doc/latex/conditext/conditext-examples/conditext-example03b.tex + RELOC/doc/latex/conditext/conditext.pdf details="Package documentation" + RELOC/doc/latex/conditext/conditext.tex +runfiles size=15 + RELOC/tex/latex/conditext/CondiTeXt.sty +catalogue-ctan /macros/latex/contrib/conditext +catalogue-license lppl1.3c +catalogue-topics cond-comp +catalogue-version 1.5 + +name confproc +category Package +revision 29349 +shortdesc A set of tools for generating conference proceedings +relocated 1 +longdesc The confproc collection comprises a class, a BibTeX style, and +longdesc some scripts for generating conference proceedings. It derives +longdesc from LaTeX scripts written for the DAFx-06 conference +longdesc proceedings, largely based on the pdfpages package for +longdesc including the proceedings papers and the hyperref package for +longdesc creating a proper table of contents, bookmarks and general +longdesc bibliography back-references. Confproc also uses many other +longdesc packages for fine tuning of the table of contents, bibliography +longdesc and index of authors. The added value of the class resides in +longdesc its time-saving aspects when designing conference proceedings. +containersize 16388 +containerchecksum b6e054332f7f6a239a6eb102ae4b022f90d9523628a293517b1d070602290bea8e623379b5c246fcd5b8daae29c9d32d02a8a7637cd704ede5b1b928de4536fd +doccontainersize 1871032 +doccontainerchecksum 0bd697d12f1740257e89cd5853aac7340659350a6374c32c5fc22da4249ea08b7e176dc499712f4c2cac6641c0161394ff0433513f7ce1942d50ac69021c14aa +docfiles size=871 + RELOC/doc/latex/confproc/README details="Readme" + RELOC/doc/latex/confproc/buildcls.sh + RELOC/doc/latex/confproc/buildcppdfpapers.sh + RELOC/doc/latex/confproc/buildpapers.sh + RELOC/doc/latex/confproc/buildproc.sh + RELOC/doc/latex/confproc/buildprocelpb.sh + RELOC/doc/latex/confproc/cleancls.sh + RELOC/doc/latex/confproc/confproc-short.tex + RELOC/doc/latex/confproc/confproc.pdf details="Package documentation" + RELOC/doc/latex/confproc/confproc_diag.pdf + RELOC/doc/latex/confproc/countnbpages.sh + RELOC/doc/latex/confproc/example/IEEEtran.bst + RELOC/doc/latex/confproc/example/buildcppdfpapers.sh + RELOC/doc/latex/confproc/example/buildpapers.sh + RELOC/doc/latex/confproc/example/buildproc.sh + RELOC/doc/latex/confproc/example/buildprocelpb.sh + RELOC/doc/latex/confproc/example/countnbpages.sh + RELOC/doc/latex/confproc/example/dafx_06.sty + RELOC/doc/latex/confproc/example/example1empty.tex + RELOC/doc/latex/confproc/example/example2custom.tex + RELOC/doc/latex/confproc/example/example3optim.tex + RELOC/doc/latex/confproc/example/example4optim.tex + RELOC/doc/latex/confproc/example/exbiblio.bib + RELOC/doc/latex/confproc/example/exclasslastel.tex + RELOC/doc/latex/confproc/example/exclasslastpb.tex + RELOC/doc/latex/confproc/example/exclasspre.tex + RELOC/doc/latex/confproc/example/expages.tex + RELOC/doc/latex/confproc/example/expapersswitch.tex + RELOC/doc/latex/confproc/example/exportIndividualPDFs.sh + RELOC/doc/latex/confproc/example/exprogram.csv + RELOC/doc/latex/confproc/example/generateswitch.pl + RELOC/doc/latex/confproc/example/papers/IEEEtran.bst + RELOC/doc/latex/confproc/example/papers/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/expages.tex + RELOC/doc/latex/confproc/example/papers/p_001.pdf + RELOC/doc/latex/confproc/example/papers/p_003.pdf + RELOC/doc/latex/confproc/example/papers/p_005.pdf + RELOC/doc/latex/confproc/example/papers/p_007.pdf + RELOC/doc/latex/confproc/example/papers/p_009.pdf + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/p_001.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/p_001.tex + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/p_003.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/p_003.tex + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/p_005.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/p_005.tex + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/p_007.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/p_007.tex + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/p_009.bib + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/p_009.tex + RELOC/doc/latex/confproc/example/papersinfo.sh + RELOC/doc/latex/confproc/example/paperssplitpreamble.sh + RELOC/doc/latex/confproc/example/pictures/ex_1stpage.pdf + RELOC/doc/latex/confproc/example/removeLaTeXcmds.sh + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/p_001.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/p_001.tex + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/p_003.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/p_003.tex + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/p_005.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/p_005.tex + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/p_007.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/p_007.tex + RELOC/doc/latex/confproc/example/sources_tex/p_009/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_tex/p_009/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_tex/p_009/p_009.bib + RELOC/doc/latex/confproc/example/sources_tex/p_009/p_009.tex + RELOC/doc/latex/confproc/example1empty.tex + RELOC/doc/latex/confproc/example2custom.tex + RELOC/doc/latex/confproc/example3optim.tex + RELOC/doc/latex/confproc/exbiblio.bib + RELOC/doc/latex/confproc/exclasslastel.tex + RELOC/doc/latex/confproc/exclasslastpb.tex + RELOC/doc/latex/confproc/exclasspre.tex + RELOC/doc/latex/confproc/expages.tex + RELOC/doc/latex/confproc/expapersswitch.tex + RELOC/doc/latex/confproc/exportIndividualPDFs.sh + RELOC/doc/latex/confproc/exprogram.csv + RELOC/doc/latex/confproc/generateswitch.pl + RELOC/doc/latex/confproc/papersinfo.sh + RELOC/doc/latex/confproc/paperssplitpreamble.sh + RELOC/doc/latex/confproc/prepareexample.sh + RELOC/doc/latex/confproc/removeLaTeXcmds.sh +srccontainersize 92900 +srccontainerchecksum f8530a8106931edceb4c5f0b87022092fc85368966e5029ab25e9f2f19cf95a3c97694dcedd5a78d707b4d9e4a9f358a6bc4f92084a49dde7d6100b50e77fd1a +srcfiles size=125 + RELOC/source/latex/confproc/confproc.drv + RELOC/source/latex/confproc/confproc.dtx + RELOC/source/latex/confproc/confproc.ins +runfiles size=23 + RELOC/bibtex/bst/confproc/newapave.bst + RELOC/makeindex/confproc/confproc1.ist + RELOC/makeindex/confproc/confproc2.ist + RELOC/tex/latex/confproc/confproc.cfg + RELOC/tex/latex/confproc/confproc.cls + RELOC/tex/latex/confproc/newapave.sty +catalogue-ctan /macros/latex/contrib/conferences/confproc +catalogue-license lppl +catalogue-topics confproc +catalogue-version 0.8 + +name constants +category Package +revision 15878 +shortdesc Automatic numbering of constants +relocated 1 +longdesc The package provides a way to number constants in a +longdesc mathematical proof automatically, with a system for +longdesc labelling/referencing. In addition, several families of +longdesc constants (with different symbols) may be defined. +containersize 2196 +containerchecksum c4f807315c7f95fe7945e937e750ea18c346a8ecabb80a39922a9b861e3cce3956db31c55e68a0d3417406284d7187fd3b1d1c336c0a130eabb07e4bb60503ca +doccontainersize 91104 +doccontainerchecksum 2712e46552a8391b0f2a95991368882a393007788cebabe7ed6c5a604eb2085b4bf00749c6fde3c88028904b7117cd4865b964d11eb443c6939e734495d4df2b +docfiles size=30 + RELOC/doc/latex/constants/README details="Readme" + RELOC/doc/latex/constants/constants.pdf details="Package documentation" +srccontainersize 7084 +srccontainerchecksum 6ea97687aa1f8f1772ba82a09b251c557b3cbacd056a27fc45412c9d72161d04814c9478bc495ca78ba2f8796ba44b3c29ff70f94382cf173b3e6ea2eb7dead3 +srcfiles size=7 + RELOC/source/latex/constants/constants.dtx + RELOC/source/latex/constants/constants.ins +runfiles size=2 + RELOC/tex/latex/constants/constants.sty +catalogue-ctan /macros/latex/contrib/constants +catalogue-license lppl +catalogue-topics maths +catalogue-version 1.0 + +name conteq +category Package +revision 37868 +shortdesc Typeset multiline continued equalities +relocated 1 +longdesc The package provides an environment conteq, which will lay out +longdesc systems of continued equalities (or inequalities). Several +longdesc variant layouts of the equalities are provided, and the user +longdesc may define their own. The package is written using LaTeX 3 +longdesc macros. +containersize 2268 +containerchecksum ee0f344ed0eab872aca3c54422f83a6f8bbed2462a22cbd54dde075ceae79dc5a01ef13947327ec726d5eeb64eee5519e4074c138f4d172bbf2b4024eb88ceff +doccontainersize 395140 +doccontainerchecksum edf52893cef8c5f8538a64d626a12725b043c5f0106a63f02cad91df9ad632009cfe3da51149750d4c23c12742c00052b951ada957b89641d9a0da59e93396c8 +docfiles size=98 + RELOC/doc/latex/conteq/README.txt + RELOC/doc/latex/conteq/conteq.hd + RELOC/doc/latex/conteq/conteq.pdf details="Package documentation" +srccontainersize 4924 +srccontainerchecksum d3796e7bd679bd64c59a8d16e50ee7e190f9fe3c0774ece399486f8d5df7f6f63ec8a0c595572be305532c66b94011a92bde3bb5850f2feb4ec162e3415b5102 +srcfiles size=5 + RELOC/source/latex/conteq/conteq.dtx + RELOC/source/latex/conteq/conteq.ins +runfiles size=2 + RELOC/tex/latex/conteq/conteq.sty +catalogue-contact-repository https://github.com/nomeata/conteq +catalogue-ctan /macros/latex/contrib/conteq +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.1.1 + +name context +category Package +revision 58167 +shortdesc The ConTeXt macro package +longdesc A full featured, parameter driven macro package, which fully +longdesc supports advanced interactive documents. See the ConTeXt garden +longdesc for a wealth of support information. +depend amsfonts +depend context.ARCH +depend lm +depend lm-math +depend luatex +depend manfnt-font +depend metapost +depend mflogo-font +depend mptopdf +depend pdftex +depend stmaryrd +depend xetex +execute AddFormat name=cont-en engine=pdftex patterns=cont-usr.tex options="-8bit *cont-en.mkii" +execute AddFormat name=cont-en engine=xetex patterns=cont-usr.tex options="-8bit *cont-en.mkii" +execute AddFormat name=cont-fr mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-fr.mkii" fmttriggers=context +execute AddFormat name=cont-it mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-it.mkii" fmttriggers=context +execute AddFormat name=cont-nl mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-nl.mkii" fmttriggers=context +execute AddFormat name=cont-ro mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-ro.mkii" fmttriggers=context +execute addMap original-context-symbol.map +containersize 9617092 +containerchecksum 61fcc778837ecff88bb0e80e39e2acb3ee64e2c26e4069f7634e5dc6c74dc93caab78e4b0088ed58f494d6dcd3a5084bc55cd471baaeb292dc208cf2a241bf69 +doccontainersize 94613364 +doccontainerchecksum ee4458cd6d45a41652ae24b3b82bea5cfa2d8b9c14cf4ba1357f9f07d6572f8ba83e350b74659c471ebf5068f33f5c5762a11669ab2a4f5adb3db41f392956dd +docfiles size=29399 + texmf-dist/doc/context/documents/general/leaflets/leaflet-context.pdf + texmf-dist/doc/context/documents/general/leaflets/leaflet-luametatex.pdf + texmf-dist/doc/context/documents/general/leaflets/leaflet-mixing.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0000-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0002-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0006-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0007-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0010-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1101-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1102-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1103-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1104-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1105-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/about.pdf + texmf-dist/doc/context/documents/general/manuals/bidi.pdf + texmf-dist/doc/context/documents/general/manuals/charts-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/cld-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/colors-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/columnsets.pdf + texmf-dist/doc/context/documents/general/manuals/details.pdf + texmf-dist/doc/context/documents/general/manuals/ecmascript-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/epub-mkiv-demo.epub + texmf-dist/doc/context/documents/general/manuals/epub-mkiv-demo.pdf + texmf-dist/doc/context/documents/general/manuals/epub-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/evenmore.pdf + texmf-dist/doc/context/documents/general/manuals/followingup.pdf + texmf-dist/doc/context/documents/general/manuals/fonts-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/graphics.pdf + texmf-dist/doc/context/documents/general/manuals/hybrid.pdf + texmf-dist/doc/context/documents/general/manuals/interaction.pdf + texmf-dist/doc/context/documents/general/manuals/languages-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/libraries-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-boxes.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-characters.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-conditionals.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-expansion.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-grouping.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-macros.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-paragraphs.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-registers.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-scope.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-security.pdf + texmf-dist/doc/context/documents/general/manuals/lua-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/luametafun.pdf + texmf-dist/doc/context/documents/general/manuals/luametatex.pdf + texmf-dist/doc/context/documents/general/manuals/luatex.pdf + texmf-dist/doc/context/documents/general/manuals/ma-cb-en.pdf + texmf-dist/doc/context/documents/general/manuals/math-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/metafun-p.pdf + texmf-dist/doc/context/documents/general/manuals/metafun-s.pdf + texmf-dist/doc/context/documents/general/manuals/mk.pdf + texmf-dist/doc/context/documents/general/manuals/mkiv-publications.pdf + texmf-dist/doc/context/documents/general/manuals/mmlexamp.pdf + texmf-dist/doc/context/documents/general/manuals/mmlprime.pdf + texmf-dist/doc/context/documents/general/manuals/mreadme.pdf + texmf-dist/doc/context/documents/general/manuals/musings.pdf + texmf-dist/doc/context/documents/general/manuals/nodes.pdf + texmf-dist/doc/context/documents/general/manuals/notnow.pdf + texmf-dist/doc/context/documents/general/manuals/onandon.pdf + texmf-dist/doc/context/documents/general/manuals/pagecolumns.pdf + texmf-dist/doc/context/documents/general/manuals/primitives.pdf + texmf-dist/doc/context/documents/general/manuals/rules-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/spacing-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/spreadsheets-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/sql-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/steps-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/still.pdf + texmf-dist/doc/context/documents/general/manuals/svg-lmtx.pdf + texmf-dist/doc/context/documents/general/manuals/swiglib-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/templates-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/texit.pdf + texmf-dist/doc/context/documents/general/manuals/tiptrick.pdf + texmf-dist/doc/context/documents/general/manuals/tools-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/units-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/workflows-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/xml-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/xtables-mkiv.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-cs.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-de.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-en.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-fr.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-it.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-cs.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-de.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-en.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-fr.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-it.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-nl.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-ro.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-nl.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-ro.pdf + texmf-dist/doc/context/examples/calculator/calculator.pdf + texmf-dist/doc/context/examples/calculator/calculator.tex + texmf-dist/doc/context/examples/clock/clock.pdf + texmf-dist/doc/context/examples/clock/clock.tex + texmf-dist/doc/context/presentations/bachotex/2005/bachotex-2005-fonts.tex + texmf-dist/doc/context/presentations/bachotex/2005/bachotex-2005-hyphenation.tex + texmf-dist/doc/context/presentations/bachotex/2009/bachotex-2009-luatex.tex + texmf-dist/doc/context/presentations/bachotex/2009/bachotex-2009-math.tex + texmf-dist/doc/context/presentations/bachotex/2009/bachotex-2009-opentype.tex + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-clash.pdf + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-clash.tex + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-move.pdf + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-move.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-cld-and-mkvi.pdf + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-cld-and-mkvi.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-ebook.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-math.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-metapost.tex + texmf-dist/doc/context/presentations/bachotex/2012/bachotex-2012-context.tex + texmf-dist/doc/context/presentations/bachotex/2012/bachotex-2012-future.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-bits.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-bits.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-luatex.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-luatex.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-sense.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-sense.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-speed.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-speed.tex + texmf-dist/doc/context/presentations/bachotex/2014/bachotex-2014-luatex.tex + texmf-dist/doc/context/presentations/bachotex/2014/bachotex-2014-metapost.tex + texmf-dist/doc/context/presentations/bachotex/2015/bachotex-2015-ligatures.pdf + texmf-dist/doc/context/presentations/bachotex/2015/bachotex-2015-ligatures.tex + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-opentype.pdf + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-opentype.tex + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-toolbox.pdf + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-toolbox.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji-demo.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji-demo.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts-demo.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts-demo.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts.tex + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-fonteffects.pdf + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-fonteffects.tex + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-mp.pdf + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-mp.tex + texmf-dist/doc/context/presentations/bachotex/2019/bachotex-2019-followingup.pdf + texmf-dist/doc/context/presentations/bachotex/2019/bachotex-2019-followingup.tex + texmf-dist/doc/context/presentations/context/2007/context-2007-luatex.tex + texmf-dist/doc/context/presentations/context/2007/context-2007-mkiv.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-just-in-time-1.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-just-in-time-2.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-requirements.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-structure-matters.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-workflows.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-ebook-export.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-ebook-export.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-mathml-update.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-mathml-update.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-metapost-how-we-adapt.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-metapost-how-we-adapt.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-sorting-registers.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-sorting-registers.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-after-the-cleanup.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-after-the-cleanup.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-lexing-sources.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-lexing-sources.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-mixed-columns.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-mixed-columns.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-the-script.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-the-script.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-visual-debugging.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-visual-debugging.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-xml-news.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-xml-news.tex + texmf-dist/doc/context/presentations/context/2013/context-2013-math.pdf + texmf-dist/doc/context/presentations/context/2013/context-2013-math.tex + texmf-dist/doc/context/presentations/context/2013/context-2013-speed.pdf + texmf-dist/doc/context/presentations/context/2013/context-2013-speed.tex + texmf-dist/doc/context/presentations/context/2015/context-2015-status.pdf + texmf-dist/doc/context/presentations/context/2015/context-2015-status.tex + texmf-dist/doc/context/presentations/context/2016/context-2016-luatex.pdf + texmf-dist/doc/context/presentations/context/2016/context-2016-luatex.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-css-selectors.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-css-selectors.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-features-chaintest.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-features-chaintest.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-features-kerntest.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-features-kerntest.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-features-pairtest.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-features-pairtest.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-features-singletest.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-features-singletest.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-features-spacetest.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-features-spacetest.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-features-substitutiontest.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-features-substitutiontest.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-features.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-features.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-performance.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-performance.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-synctex.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-synctex.tex + texmf-dist/doc/context/presentations/context/2017/context-2017-tables.pdf + texmf-dist/doc/context/presentations/context/2017/context-2017-tables.tex + texmf-dist/doc/context/presentations/context/2019/context-2019-lmtx.pdf + texmf-dist/doc/context/presentations/context/2019/context-2019-lmtx.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-concepts.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-concepts.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-datatypes.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-datatypes.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-ecmascript.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-ecmascript.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-gpdemo.gp + texmf-dist/doc/context/presentations/context/2020/context-2020-gpdemo.svg + texmf-dist/doc/context/presentations/context/2020/context-2020-implementers.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-implementers.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-luametatex.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-luametatex.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-mkii-mkiv-mkxl.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-mkii-mkiv-mkxl.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-mp.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-mp.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-sin.svg + texmf-dist/doc/context/presentations/context/2020/context-2020-svg.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-svg.tex + texmf-dist/doc/context/presentations/context/2020/context-2020-tokens.pdf + texmf-dist/doc/context/presentations/context/2020/context-2020-tokens.tex + texmf-dist/doc/context/presentations/examples/present-balls-001.pdf + texmf-dist/doc/context/presentations/examples/present-balls-001.tex + texmf-dist/doc/context/presentations/examples/present-colorful-001.pdf + texmf-dist/doc/context/presentations/examples/present-colorful-001.tex + texmf-dist/doc/context/presentations/examples/present-funny-001.pdf + texmf-dist/doc/context/presentations/examples/present-funny-001.tex + texmf-dist/doc/context/presentations/examples/present-fuzzy-001.pdf + texmf-dist/doc/context/presentations/examples/present-fuzzy-001.tex + texmf-dist/doc/context/presentations/examples/present-green-001.pdf + texmf-dist/doc/context/presentations/examples/present-green-001.tex + texmf-dist/doc/context/presentations/examples/present-grow-001.pdf + texmf-dist/doc/context/presentations/examples/present-grow-001.tex + texmf-dist/doc/context/presentations/examples/present-organic-001.pdf + texmf-dist/doc/context/presentations/examples/present-organic-001.tex + texmf-dist/doc/context/presentations/examples/present-original-001.pdf + texmf-dist/doc/context/presentations/examples/present-original-001.tex + texmf-dist/doc/context/presentations/examples/present-punk-001.pdf + texmf-dist/doc/context/presentations/examples/present-punk-001.tex + texmf-dist/doc/context/presentations/examples/present-random-001.pdf + texmf-dist/doc/context/presentations/examples/present-random-001.tex + texmf-dist/doc/context/presentations/examples/present-shaded-001.pdf + texmf-dist/doc/context/presentations/examples/present-shaded-001.tex + texmf-dist/doc/context/presentations/examples/present-split-001.pdf + texmf-dist/doc/context/presentations/examples/present-split-001.tex + texmf-dist/doc/context/presentations/examples/present-stepper-001.pdf + texmf-dist/doc/context/presentations/examples/present-stepper-001.tex + texmf-dist/doc/context/presentations/examples/present-steps-001.pdf + texmf-dist/doc/context/presentations/examples/present-steps-001.tex + texmf-dist/doc/context/presentations/examples/present-tiles-001.pdf + texmf-dist/doc/context/presentations/examples/present-tiles-001.tex + texmf-dist/doc/context/presentations/examples/present-weird-001.pdf + texmf-dist/doc/context/presentations/examples/present-weird-001.tex + texmf-dist/doc/context/presentations/examples/present-windows-001.pdf + texmf-dist/doc/context/presentations/examples/present-windows-001.tex + texmf-dist/doc/context/presentations/present-readme.pdf + texmf-dist/doc/context/presentations/present-readme.tex + texmf-dist/doc/context/presentations/tug/2001/tug-2001-ideas.pdf + texmf-dist/doc/context/presentations/tug/2001/tug-2001-ideas.tex + texmf-dist/doc/context/presentations/tug/2007/tug-2007-fonts.pdf + texmf-dist/doc/context/presentations/tug/2007/tug-2007-fonts.tex + texmf-dist/doc/context/scripts/mkii/ctxtools.html + texmf-dist/doc/context/scripts/mkii/ctxtools.man + texmf-dist/doc/context/scripts/mkii/ctxtools.xml + texmf-dist/doc/context/scripts/mkii/imgtopdf.html + texmf-dist/doc/context/scripts/mkii/imgtopdf.man + texmf-dist/doc/context/scripts/mkii/imgtopdf.xml + texmf-dist/doc/context/scripts/mkii/mptopdf.html + texmf-dist/doc/context/scripts/mkii/mptopdf.xml + texmf-dist/doc/context/scripts/mkii/pdftools.html + texmf-dist/doc/context/scripts/mkii/pdftools.man + texmf-dist/doc/context/scripts/mkii/pdftools.xml + texmf-dist/doc/context/scripts/mkii/pstopdf.html + texmf-dist/doc/context/scripts/mkii/pstopdf.man + texmf-dist/doc/context/scripts/mkii/pstopdf.xml + texmf-dist/doc/context/scripts/mkii/rlxtools.html + texmf-dist/doc/context/scripts/mkii/rlxtools.man + texmf-dist/doc/context/scripts/mkii/rlxtools.xml + texmf-dist/doc/context/scripts/mkii/texexec.html + texmf-dist/doc/context/scripts/mkii/texexec.man + texmf-dist/doc/context/scripts/mkii/texexec.xml + texmf-dist/doc/context/scripts/mkii/texmfstart.html + texmf-dist/doc/context/scripts/mkii/texmfstart.man + texmf-dist/doc/context/scripts/mkii/texmfstart.xml + texmf-dist/doc/context/scripts/mkii/textools.html + texmf-dist/doc/context/scripts/mkii/textools.man + texmf-dist/doc/context/scripts/mkii/textools.xml + texmf-dist/doc/context/scripts/mkii/texutil.html + texmf-dist/doc/context/scripts/mkii/texutil.man + texmf-dist/doc/context/scripts/mkii/texutil.xml + texmf-dist/doc/context/scripts/mkii/tmftools.html + texmf-dist/doc/context/scripts/mkii/tmftools.man + texmf-dist/doc/context/scripts/mkii/tmftools.xml + texmf-dist/doc/context/scripts/mkii/xmltools.html + texmf-dist/doc/context/scripts/mkii/xmltools.man + texmf-dist/doc/context/scripts/mkii/xmltools.xml + texmf-dist/doc/context/scripts/mkiv/context.html + texmf-dist/doc/context/scripts/mkiv/context.man + texmf-dist/doc/context/scripts/mkiv/context.xml + texmf-dist/doc/context/scripts/mkiv/luatools.html + texmf-dist/doc/context/scripts/mkiv/luatools.man + texmf-dist/doc/context/scripts/mkiv/luatools.xml + texmf-dist/doc/context/scripts/mkiv/mtx-babel.html + texmf-dist/doc/context/scripts/mkiv/mtx-babel.man + texmf-dist/doc/context/scripts/mkiv/mtx-babel.xml + texmf-dist/doc/context/scripts/mkiv/mtx-base.html + texmf-dist/doc/context/scripts/mkiv/mtx-base.man + texmf-dist/doc/context/scripts/mkiv/mtx-base.xml + texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.html + texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.man + texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.xml + texmf-dist/doc/context/scripts/mkiv/mtx-cache.html + texmf-dist/doc/context/scripts/mkiv/mtx-cache.man + texmf-dist/doc/context/scripts/mkiv/mtx-cache.xml + texmf-dist/doc/context/scripts/mkiv/mtx-chars.html + texmf-dist/doc/context/scripts/mkiv/mtx-chars.man + texmf-dist/doc/context/scripts/mkiv/mtx-chars.xml + texmf-dist/doc/context/scripts/mkiv/mtx-check.html + texmf-dist/doc/context/scripts/mkiv/mtx-check.man + texmf-dist/doc/context/scripts/mkiv/mtx-check.xml + texmf-dist/doc/context/scripts/mkiv/mtx-colors.html + texmf-dist/doc/context/scripts/mkiv/mtx-colors.man + texmf-dist/doc/context/scripts/mkiv/mtx-colors.xml + texmf-dist/doc/context/scripts/mkiv/mtx-context.html + texmf-dist/doc/context/scripts/mkiv/mtx-context.man + texmf-dist/doc/context/scripts/mkiv/mtx-context.xml + texmf-dist/doc/context/scripts/mkiv/mtx-dvi.html + texmf-dist/doc/context/scripts/mkiv/mtx-dvi.man + texmf-dist/doc/context/scripts/mkiv/mtx-dvi.xml + texmf-dist/doc/context/scripts/mkiv/mtx-epub.html + texmf-dist/doc/context/scripts/mkiv/mtx-epub.man + texmf-dist/doc/context/scripts/mkiv/mtx-epub.xml + texmf-dist/doc/context/scripts/mkiv/mtx-evohome.html + texmf-dist/doc/context/scripts/mkiv/mtx-evohome.man + texmf-dist/doc/context/scripts/mkiv/mtx-evohome.xml + texmf-dist/doc/context/scripts/mkiv/mtx-fcd.html + texmf-dist/doc/context/scripts/mkiv/mtx-fcd.man + texmf-dist/doc/context/scripts/mkiv/mtx-fcd.xml + texmf-dist/doc/context/scripts/mkiv/mtx-flac.html + texmf-dist/doc/context/scripts/mkiv/mtx-flac.man + texmf-dist/doc/context/scripts/mkiv/mtx-flac.xml + texmf-dist/doc/context/scripts/mkiv/mtx-fonts.html + texmf-dist/doc/context/scripts/mkiv/mtx-fonts.man + texmf-dist/doc/context/scripts/mkiv/mtx-fonts.xml + texmf-dist/doc/context/scripts/mkiv/mtx-grep.html + texmf-dist/doc/context/scripts/mkiv/mtx-grep.man + texmf-dist/doc/context/scripts/mkiv/mtx-grep.xml + texmf-dist/doc/context/scripts/mkiv/mtx-interface.html + texmf-dist/doc/context/scripts/mkiv/mtx-interface.man + texmf-dist/doc/context/scripts/mkiv/mtx-interface.xml + texmf-dist/doc/context/scripts/mkiv/mtx-metapost.html + texmf-dist/doc/context/scripts/mkiv/mtx-metapost.man + texmf-dist/doc/context/scripts/mkiv/mtx-metapost.xml + texmf-dist/doc/context/scripts/mkiv/mtx-modules.html + texmf-dist/doc/context/scripts/mkiv/mtx-modules.man + texmf-dist/doc/context/scripts/mkiv/mtx-modules.xml + texmf-dist/doc/context/scripts/mkiv/mtx-package.html + texmf-dist/doc/context/scripts/mkiv/mtx-package.man + texmf-dist/doc/context/scripts/mkiv/mtx-package.xml + texmf-dist/doc/context/scripts/mkiv/mtx-patterns.html + texmf-dist/doc/context/scripts/mkiv/mtx-patterns.man + texmf-dist/doc/context/scripts/mkiv/mtx-patterns.xml + texmf-dist/doc/context/scripts/mkiv/mtx-pdf.html + texmf-dist/doc/context/scripts/mkiv/mtx-pdf.man + texmf-dist/doc/context/scripts/mkiv/mtx-pdf.xml + texmf-dist/doc/context/scripts/mkiv/mtx-plain.html + texmf-dist/doc/context/scripts/mkiv/mtx-plain.man + texmf-dist/doc/context/scripts/mkiv/mtx-plain.xml + texmf-dist/doc/context/scripts/mkiv/mtx-profile.html + texmf-dist/doc/context/scripts/mkiv/mtx-profile.man + texmf-dist/doc/context/scripts/mkiv/mtx-profile.xml + texmf-dist/doc/context/scripts/mkiv/mtx-rsync.html + texmf-dist/doc/context/scripts/mkiv/mtx-rsync.man + texmf-dist/doc/context/scripts/mkiv/mtx-rsync.xml + texmf-dist/doc/context/scripts/mkiv/mtx-scite.html + texmf-dist/doc/context/scripts/mkiv/mtx-scite.man + texmf-dist/doc/context/scripts/mkiv/mtx-scite.xml + texmf-dist/doc/context/scripts/mkiv/mtx-server.html + texmf-dist/doc/context/scripts/mkiv/mtx-server.man + texmf-dist/doc/context/scripts/mkiv/mtx-server.xml + texmf-dist/doc/context/scripts/mkiv/mtx-texworks.html + texmf-dist/doc/context/scripts/mkiv/mtx-texworks.man + texmf-dist/doc/context/scripts/mkiv/mtx-texworks.xml + texmf-dist/doc/context/scripts/mkiv/mtx-timing.html + texmf-dist/doc/context/scripts/mkiv/mtx-timing.man + texmf-dist/doc/context/scripts/mkiv/mtx-timing.xml + texmf-dist/doc/context/scripts/mkiv/mtx-tools.html + texmf-dist/doc/context/scripts/mkiv/mtx-tools.man + texmf-dist/doc/context/scripts/mkiv/mtx-tools.xml + texmf-dist/doc/context/scripts/mkiv/mtx-unicode.html + texmf-dist/doc/context/scripts/mkiv/mtx-unicode.man + texmf-dist/doc/context/scripts/mkiv/mtx-unicode.xml + texmf-dist/doc/context/scripts/mkiv/mtx-unzip.html + texmf-dist/doc/context/scripts/mkiv/mtx-unzip.man + texmf-dist/doc/context/scripts/mkiv/mtx-unzip.xml + texmf-dist/doc/context/scripts/mkiv/mtx-update.html + texmf-dist/doc/context/scripts/mkiv/mtx-update.man + texmf-dist/doc/context/scripts/mkiv/mtx-update.xml + texmf-dist/doc/context/scripts/mkiv/mtx-vscode.html + texmf-dist/doc/context/scripts/mkiv/mtx-vscode.man + texmf-dist/doc/context/scripts/mkiv/mtx-vscode.xml + texmf-dist/doc/context/scripts/mkiv/mtx-watch.html + texmf-dist/doc/context/scripts/mkiv/mtx-watch.man + texmf-dist/doc/context/scripts/mkiv/mtx-watch.xml + texmf-dist/doc/context/scripts/mkiv/mtx-youless.html + texmf-dist/doc/context/scripts/mkiv/mtx-youless.man + texmf-dist/doc/context/scripts/mkiv/mtx-youless.xml + texmf-dist/doc/context/scripts/mkiv/mtxrun.html + texmf-dist/doc/context/scripts/mkiv/mtxrun.man + texmf-dist/doc/context/scripts/mkiv/mtxrun.xml + texmf-dist/doc/context/sources/general/leaflets/leaflet-common.tex + texmf-dist/doc/context/sources/general/leaflets/leaflet-context.tex + texmf-dist/doc/context/sources/general/leaflets/leaflet-luametatex.tex + texmf-dist/doc/context/sources/general/leaflets/leaflet-mixing.tex + texmf-dist/doc/context/sources/general/magazines/mag-0000-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0002-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0006-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0007-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0010-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1101-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1102-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1103-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1104-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1105-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/about/about-calls.tex + texmf-dist/doc/context/sources/general/manuals/about/about-contents.tex + texmf-dist/doc/context/sources/general/manuals/about/about-environment.tex + texmf-dist/doc/context/sources/general/manuals/about/about-expanding.tex + texmf-dist/doc/context/sources/general/manuals/about/about-hashing.tex + texmf-dist/doc/context/sources/general/manuals/about/about-hz.tex + texmf-dist/doc/context/sources/general/manuals/about/about-introduction.tex + texmf-dist/doc/context/sources/general/manuals/about/about-jitting-jit-2013-06-04.lua + texmf-dist/doc/context/sources/general/manuals/about/about-jitting-jit.lua + texmf-dist/doc/context/sources/general/manuals/about/about-jitting.tex + texmf-dist/doc/context/sources/general/manuals/about/about-luafunctions.tex + texmf-dist/doc/context/sources/general/manuals/about/about-mathstackers.tex + texmf-dist/doc/context/sources/general/manuals/about/about-mathstyles.tex + texmf-dist/doc/context/sources/general/manuals/about/about-metafun.tex + texmf-dist/doc/context/sources/general/manuals/about/about-mobility.tex + texmf-dist/doc/context/sources/general/manuals/about/about-nodes.tex + texmf-dist/doc/context/sources/general/manuals/about/about-nuts.tex + texmf-dist/doc/context/sources/general/manuals/about/about-properties.tex + texmf-dist/doc/context/sources/general/manuals/about/about-speed.tex + texmf-dist/doc/context/sources/general/manuals/about/about-threequarters.tex + texmf-dist/doc/context/sources/general/manuals/about/about-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/about/about.tex + texmf-dist/doc/context/sources/general/manuals/about/demo-data.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luajittex-073-JIT20.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luajittex-073-LUA51-40-6.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luajittex-073-LUA51.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luatex-073-LUA52-40-6.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luatex-073-LUA52.lua + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-1.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-2.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-3.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-4.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-5.tex + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-1.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-10.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-2.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-3.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-4.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-5.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-6.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-7.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-8.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-9.png + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-contents.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-fonts.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-introduction.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-lua.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-mixed.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-numbering.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-style.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi-vertical.tex + texmf-dist/doc/context/sources/general/manuals/bidi/bidi.tex + texmf-dist/doc/context/sources/general/manuals/charts/charts-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-abitoflua.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-afewdetails.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-backendcode.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-callbacks.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-contents.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-ctxfunctions.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-environment.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-files.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-gettingstarted.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-goodies.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-graphics.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-introduction.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-logging.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-luafunctions.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-macros.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-moreonfunctions.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-nicetoknow.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-scanners.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-somemoreexamples.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-specialcommands.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-summary.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-variables.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-verbatim.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-basics.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-environment.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-graphics.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-introduction.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-metafun.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-000.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-001.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-002.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-003.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-004.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-005.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-006.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-007.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-101.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-102.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-103.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-201.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-202.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-203.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-204.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-205.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-206.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-301.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-401.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-402.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-403.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-404.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-405.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-601.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-701.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-702.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-703.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-704.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-801.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-802.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-803.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-804.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-805.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-806.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-901.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-902.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-903.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets.tex + texmf-dist/doc/context/sources/general/manuals/details/back-0.tex + texmf-dist/doc/context/sources/general/manuals/details/back-1.tex + texmf-dist/doc/context/sources/general/manuals/details/back-2.tex + texmf-dist/doc/context/sources/general/manuals/details/back-4.tex + texmf-dist/doc/context/sources/general/manuals/details/back-5.tex + texmf-dist/doc/context/sources/general/manuals/details/cow.pdf + texmf-dist/doc/context/sources/general/manuals/details/details-backpage.tex + texmf-dist/doc/context/sources/general/manuals/details/details-captiontrickery.tex + texmf-dist/doc/context/sources/general/manuals/details/details-colofon.tex + texmf-dist/doc/context/sources/general/manuals/details/details-contents.tex + texmf-dist/doc/context/sources/general/manuals/details/details-environment.tex + texmf-dist/doc/context/sources/general/manuals/details/details-finetuningfloats.tex + texmf-dist/doc/context/sources/general/manuals/details/details-floatingaround.tex + texmf-dist/doc/context/sources/general/manuals/details/details-frontpage.tex + texmf-dist/doc/context/sources/general/manuals/details/details-gridtrickery.tex + texmf-dist/doc/context/sources/general/manuals/details/details-index.tex + texmf-dist/doc/context/sources/general/manuals/details/details-introduction.tex + texmf-dist/doc/context/sources/general/manuals/details/details-ornaments.tex + texmf-dist/doc/context/sources/general/manuals/details/details-pseudocolumns.tex + texmf-dist/doc/context/sources/general/manuals/details/details-snappingheads.tex + texmf-dist/doc/context/sources/general/manuals/details/details-textbackgrounds.tex + texmf-dist/doc/context/sources/general/manuals/details/details-tuningformulas.tex + texmf-dist/doc/context/sources/general/manuals/details/details.tex + texmf-dist/doc/context/sources/general/manuals/details/detcow.mp + texmf-dist/doc/context/sources/general/manuals/details/detcow.tex + texmf-dist/doc/context/sources/general/manuals/details/detcowmp.mps + texmf-dist/doc/context/sources/general/manuals/details/hacker.jpg + texmf-dist/doc/context/sources/general/manuals/details/mill.png + texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv-demo.tex + texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-contents.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-expansion.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-fonts.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-introduction.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-keywords.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-libraries.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-normalization.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-numbers.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-parameters.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-parsing.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-pi.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-style.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-threesix.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-tokens.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-whattex.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/mozilla-svg-001.svg + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-bitmaps.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-cleanup.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-compilation.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-contents.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-directions.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-evolution.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-feedback.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-fonts.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-introduction.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-logging.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-lua.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-mp.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-performance.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-rejected.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-retrospect.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-stripping.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-stubs.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-style.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-tex.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-whatsits.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-appendix.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-demo-rule.lua + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-environment.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-extensions.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-features.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-formats.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-hooks.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-introduction.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-lookups.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-math.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-methods.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-modes.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-scripts.tex + texmf-dist/doc/context/sources/general/manuals/fonts/fonts-tricks.tex + texmf-dist/doc/context/sources/general/manuals/graphics/graphics.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-1.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-2.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-3.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-4.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-5.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/calibri-fontshop.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-metafun-1.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-metafun-2.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-pdf.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-xhtml.png + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-backend.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-bidi.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-callbacks.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-characters.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-codebase.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-contents.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-ebooks.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-environment.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-export.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-fontnames.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-glocal.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-goodies.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-grouping.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-inserts.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-intermezzo.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-introduction.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-italics.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-jit.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-languages.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-math.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-mathml.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-merge.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-mkvi.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-optimize.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-parbuilder.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-partests.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-tags.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-weird.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/luatex-co-acceptablelowres.jpg + texmf-dist/doc/context/sources/general/manuals/hybrid/mtx-server-ctx-fonttest.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-001.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-002.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-003.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-004.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-005.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-006.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-007.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-008.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-009.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-010.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-011.png + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-actions.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-annotations.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-attachments.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-bookmarks.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-buttons.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-comments.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-contents.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-enabling.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-hyperlinks.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-importing.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-introduction.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-javascript.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-menus.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-progress.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-structure.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-style.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-tagging.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-transitions.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-widgets.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-appendix.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-basics.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-environment.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-goodies.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-hyphenation.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-introduction.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-labels.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-numbering.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-sorting.tex + texmf-dist/doc/context/sources/general/manuals/libraries/ecmascript-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/libraries/libraries-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-boxes.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-characters.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-conditionals.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-expansion.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-grouping.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-macros.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-paragraphs.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-registers.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-scope.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-security.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-style.tex + texmf-dist/doc/context/sources/general/manuals/lua/lua-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-arrow.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-axis.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-chart.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-color.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-contents.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-contour.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-followtext.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-fonts.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-function.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-grid.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-groups.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-interface.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-introduction.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-mesh-examples.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-mesh.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-outline.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-placeholder.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-poisson.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-shade.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-style.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-surface.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-svg.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-technology.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-text.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun.tex + texmf-dist/doc/context/sources/general/manuals/luametafun/mozilla-svg-001.svg + texmf-dist/doc/context/sources/general/manuals/luametafun/mozilla-svg-002.svg + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-callbacks.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-codes.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-contents.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-differences.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-enhancements.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-firstpage.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-fonts.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-introduction.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-languages.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-libraries.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-lua.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-math.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-metapost.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-modifications.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-nodes.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-pdf.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-preamble.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-primitives.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-registers.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-statistics.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-style.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-tex.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-contents.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-enhancements.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-firstpage.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-fonts.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-introduction.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-languages.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-logos.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-lua.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-math.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-modifications.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-nodes.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-preamble.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-registers.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-statistics.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-style.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex.tex + texmf-dist/doc/context/sources/general/manuals/manuals-explaining-contents.tex + texmf-dist/doc/context/sources/general/manuals/manuals-explaining-cover.tex + texmf-dist/doc/context/sources/general/manuals/manuals-explaining-environment.tex + texmf-dist/doc/context/sources/general/manuals/manuals-xml-environment.tex + texmf-dist/doc/context/sources/general/manuals/math/math-alignments.tex + texmf-dist/doc/context/sources/general/manuals/math/math-combining.tex + texmf-dist/doc/context/sources/general/manuals/math/math-contents.tex + texmf-dist/doc/context/sources/general/manuals/math/math-definitions.tex + texmf-dist/doc/context/sources/general/manuals/math/math-features.tex + texmf-dist/doc/context/sources/general/manuals/math/math-framing-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-framing.tex + texmf-dist/doc/context/sources/general/manuals/math/math-input.tex + texmf-dist/doc/context/sources/general/manuals/math/math-introduction.tex + texmf-dist/doc/context/sources/general/manuals/math/math-layout.tex + texmf-dist/doc/context/sources/general/manuals/math/math-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/math/math-numbering.tex + texmf-dist/doc/context/sources/general/manuals/math/math-oddities.tex + texmf-dist/doc/context/sources/general/manuals/math/math-spacing-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-spacing.tex + texmf-dist/doc/context/sources/general/manuals/math/math-suboptimal.tex + texmf-dist/doc/context/sources/general/manuals/math/math-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/math/math-tricks.tex + texmf-dist/doc/context/sources/general/manuals/mathml/envexamp.tex + texmf-dist/doc/context/sources/general/manuals/mathml/mmlexamp.tex + texmf-dist/doc/context/sources/general/manuals/mathml/mmlprime.tex + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-004.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-005.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-006.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-007.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-008.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-009.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-010.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-011.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-043.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-051.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-i-022.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-i-380.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-s-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-s-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-s-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-004.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-005.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-006.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-007.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-008.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-009.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-010.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-011.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-012.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-013.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-014.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-015.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-016.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-004.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-s-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-s-002.xml + texmf-dist/doc/context/sources/general/manuals/mcommon.tex + texmf-dist/doc/context/sources/general/manuals/metafun/cow-fun.mps + texmf-dist/doc/context/sources/general/manuals/metafun/gracht.mp + texmf-dist/doc/context/sources/general/manuals/metafun/hacker.png + texmf-dist/doc/context/sources/general/manuals/metafun/m-1.png + texmf-dist/doc/context/sources/general/manuals/metafun/m-2.png + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-backgrounds.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-backpage.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-basics.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-colofon-paper.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-colofon-screen.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-colofon.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-contents.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-conventions.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-debugging.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-document.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-effects.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-embedding.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment-layout.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment-samples.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment-screen.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-examples.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-functions.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-gadgets.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-graphics.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-index.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-introduction.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-layout.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-lua.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-macros.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-positioning.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-reference.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-sneaky.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-styles.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-syntax.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-text-lmtx.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-text.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-titlepage-paper.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-titlepage-screen.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-welcome.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-700.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-771.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-772.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-773.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-774.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-775.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-776.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-800.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-900.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-901.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-902.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-mrun-demo.mp + texmf-dist/doc/context/sources/general/manuals/metafun/mycow.mp + texmf-dist/doc/context/sources/general/manuals/metafun/mycow.pdf + texmf-dist/doc/context/sources/general/manuals/metafun/somecow.pdf + texmf-dist/doc/context/sources/general/manuals/mk/luatexref-t-luatex-progress-intermediate.lut + texmf-dist/doc/context/sources/general/manuals/mk/luatexref-t-luatex-progress-runtime.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-arabic.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-breakingapart.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-calcmath.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-cjk.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-code.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-colors.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-contents.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-debug.png + texmf-dist/doc/context/sources/general/manuals/mk/mk-dirtytricks.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-environment.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-error.png + texmf-dist/doc/context/sources/general/manuals/mk/mk-fallback.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-fonts.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-goingbeta.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-goingutf.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-halfway.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-iitoiv.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-initialization.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-introduction.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-itworks.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-last-state.pdf + texmf-dist/doc/context/sources/general/manuals/mk/mk-last.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-luafitsin.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-math.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-memory.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-mix.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-mplib.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-nicetoknow.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-nodes.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-open.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-optimization.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-order.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-performance.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-plain.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-punk.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-reflection.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-structure.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-1-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-1.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-2-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-2.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-3-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-3.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-tokenspeak.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-tracking.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-xml.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-xml.xml + texmf-dist/doc/context/sources/general/manuals/mk/mk-zapfino.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-children.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-contents.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-introduction.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-names.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-perception.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-plain.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-roadmap.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-stability.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-staygo.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-style.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-whytex.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings.tex + texmf-dist/doc/context/sources/general/manuals/nodes/nodes-sun-pia-03149.jpg + texmf-dist/doc/context/sources/general/manuals/nodes/nodes-sun-pia-03150.jpg + texmf-dist/doc/context/sources/general/manuals/nodes/nodes.tex + texmf-dist/doc/context/sources/general/manuals/notnow/notnow-columns-and-notes.tex + texmf-dist/doc/context/sources/general/manuals/notnow/notnow-sidefloats.tex + texmf-dist/doc/context/sources/general/manuals/notnow/notnow.tex + texmf-dist/doc/context/sources/general/manuals/onandon/m-fonts-plugins-timings-luajittex.lua + texmf-dist/doc/context/sources/general/manuals/onandon/m-fonts-plugins-timings-luatex.lua + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-110.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-53.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-decade.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-editing.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-emoji.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-execute.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-expansion.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-fences.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-ffi.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-media.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-modern.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-performance.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-runtoks.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-seguiemj.pdf + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-seguiemj.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-000.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-001.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-002.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-003.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-005.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-006.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-007.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-008.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-009.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-010.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-011.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-012.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-variable.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-000.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-001.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-002.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-003.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-004.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-005.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-006.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-007.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns.tex + texmf-dist/doc/context/sources/general/manuals/primitives/primitives.tex + texmf-dist/doc/context/sources/general/manuals/publications/122176.pdf + texmf-dist/doc/context/sources/general/manuals/publications/124484.mol + texmf-dist/doc/context/sources/general/manuals/publications/124484.pdf + texmf-dist/doc/context/sources/general/manuals/publications/4953942.mol + texmf-dist/doc/context/sources/general/manuals/publications/4953942.pdf + texmf-dist/doc/context/sources/general/manuals/publications/971.mol + texmf-dist/doc/context/sources/general/manuals/publications/971.pdf + texmf-dist/doc/context/sources/general/manuals/publications/C6H6O.bib + texmf-dist/doc/context/sources/general/manuals/publications/boekplan.bib + texmf-dist/doc/context/sources/general/manuals/publications/duane.bib + texmf-dist/doc/context/sources/general/manuals/publications/manuals.bib + texmf-dist/doc/context/sources/general/manuals/publications/mkiv-publications.bib + texmf-dist/doc/context/sources/general/manuals/publications/mkiv-publications.lua + texmf-dist/doc/context/sources/general/manuals/publications/mkiv-publications.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-citations.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-completeness.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-contents.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-customize.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-database.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-datasets.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-exporting.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-extensions.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-fields.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-introduction.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-journals.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-lua.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-otheruse.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-overviews.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-performance.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-quick-example.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-quick.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-rendering.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-style.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-tracing.tex + texmf-dist/doc/context/sources/general/manuals/publications/template-clean.bib + texmf-dist/doc/context/sources/general/manuals/readme/mreadme.tex + texmf-dist/doc/context/sources/general/manuals/rules/rules-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-contents.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-introduction.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-linecorrection.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-periods.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-spaces.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-style.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/spreadsheets/spreadsheets-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/sql/sql-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/start/en/hasseltbook.bib + texmf-dist/doc/context/sources/general/manuals/start/en/hasseltbook.pdf + texmf-dist/doc/context/sources/general/manuals/start/en/hasseltbook.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-alignments.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-backpage.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-bibliography.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-chemical.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-citations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-color.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-columns.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-commandlist.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-commands.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-composedcharacters.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-descriptions.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-document.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-enumerations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-errors.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-figures.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-fonts.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-footnotes.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-framedtexts.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-frames.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-gettingstarted.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-headers.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-heads.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-interactivity.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-introduction.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-itemizations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-layout.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-margintexts.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-math.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-mathcharacters.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-metapost.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-modules.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-pagebackgrounds.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-pages.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-paragraphs.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-presentations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-processingfiles.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-references.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-registers.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-runtimefiles.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-setupcommands.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-sortedlists.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-specialcharacters.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-structure.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-support.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-synonyms.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-tables.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-tablesofcontent.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-tabulations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-textbackgrounds.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-texteditor.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-units.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-usersetups.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-whatever.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-language.tex + texmf-dist/doc/context/sources/general/manuals/start/en/sounds-001.tex + texmf-dist/doc/context/sources/general/manuals/start/graphics/cow.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/fig-page-areas-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/fig-page-parameters-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-00.eps + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-00.mp + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-00.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-01.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-03.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-04.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-07.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-08.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-12.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-13.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-15.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-16.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-18.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-19.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-20.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-21.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-22.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-23.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-24.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-25.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-26.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/minibook-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/minibook-en.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-abbreviations.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-colofon.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-copyright.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-graphics.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-links.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-screen.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-style.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb.tex + texmf-dist/doc/context/sources/general/manuals/steps/steps-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/still/still-acrobat-math.png + texmf-dist/doc/context/sources/general/manuals/still/still-acrobat-text.png + texmf-dist/doc/context/sources/general/manuals/still/still-backend.tex + texmf-dist/doc/context/sources/general/manuals/still/still-contents.tex + texmf-dist/doc/context/sources/general/manuals/still/still-environment.tex + texmf-dist/doc/context/sources/general/manuals/still/still-expanding.tex + texmf-dist/doc/context/sources/general/manuals/still/still-introduction.tex + texmf-dist/doc/context/sources/general/manuals/still/still-math-stripe.png + texmf-dist/doc/context/sources/general/manuals/still/still-math.tex + texmf-dist/doc/context/sources/general/manuals/still/still-one.tex + texmf-dist/doc/context/sources/general/manuals/still/still-opentypemath.tex + texmf-dist/doc/context/sources/general/manuals/still/still-profiling.tex + texmf-dist/doc/context/sources/general/manuals/still/still-simple.tex + texmf-dist/doc/context/sources/general/manuals/still/still-sumatra-math.png + texmf-dist/doc/context/sources/general/manuals/still/still-sumatra-text.png + texmf-dist/doc/context/sources/general/manuals/still/still-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/still/still-tokens.tex + texmf-dist/doc/context/sources/general/manuals/still/still.tex + texmf-dist/doc/context/sources/general/manuals/svg/mozilla-tiger.svg + texmf-dist/doc/context/sources/general/manuals/svg/svg-lmtx-microsoft.lua + texmf-dist/doc/context/sources/general/manuals/svg/svg-lmtx-mozilla.lua + texmf-dist/doc/context/sources/general/manuals/svg/svg-lmtx.tex + texmf-dist/doc/context/sources/general/manuals/svg/svglogo.svg + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv-gm-1.jpg + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv-gm-1.pdf + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv-gm-1.png + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/templates/templates-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-conditions.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-contents.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-introduction.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-leaders.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-lookahead.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-style.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit.tex + texmf-dist/doc/context/sources/general/manuals/tiptrick/tiptrick.tex + texmf-dist/doc/context/sources/general/manuals/tiptrick/tiptrick.xml + texmf-dist/doc/context/sources/general/manuals/tools/tools-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/units/units-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-contents.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-graphics.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-injectors.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-introduction.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-parallel.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-resources.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-running.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-setups.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-style.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-suspects.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-synctex.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-xml.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-01.xml + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-02.xml + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-commands.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-contents.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-converter.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-examples.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-expressions.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-filtering.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-introduction.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-lookups.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-lpath.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-style.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-tricks.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/xtables/xtables-mkiv.tex + texmf-dist/doc/man/man1/context.1 + texmf-dist/doc/man/man1/context.man1.pdf + texmf-dist/doc/man/man1/luatools.1 + texmf-dist/doc/man/man1/luatools.man1.pdf + texmf-dist/doc/man/man1/mtx-babel.1 + texmf-dist/doc/man/man1/mtx-babel.man1.pdf + texmf-dist/doc/man/man1/mtx-base.1 + texmf-dist/doc/man/man1/mtx-base.man1.pdf + texmf-dist/doc/man/man1/mtx-bibtex.1 + texmf-dist/doc/man/man1/mtx-bibtex.man1.pdf + texmf-dist/doc/man/man1/mtx-cache.1 + texmf-dist/doc/man/man1/mtx-cache.man1.pdf + texmf-dist/doc/man/man1/mtx-chars.1 + texmf-dist/doc/man/man1/mtx-chars.man1.pdf + texmf-dist/doc/man/man1/mtx-check.1 + texmf-dist/doc/man/man1/mtx-check.man1.pdf + texmf-dist/doc/man/man1/mtx-colors.1 + texmf-dist/doc/man/man1/mtx-colors.man1.pdf + texmf-dist/doc/man/man1/mtx-context.1 + texmf-dist/doc/man/man1/mtx-context.man1.pdf + texmf-dist/doc/man/man1/mtx-dvi.1 + texmf-dist/doc/man/man1/mtx-dvi.man1.pdf + texmf-dist/doc/man/man1/mtx-epub.1 + texmf-dist/doc/man/man1/mtx-epub.man1.pdf + texmf-dist/doc/man/man1/mtx-evohome.1 + texmf-dist/doc/man/man1/mtx-evohome.man1.pdf + texmf-dist/doc/man/man1/mtx-fcd.1 + texmf-dist/doc/man/man1/mtx-fcd.man1.pdf + texmf-dist/doc/man/man1/mtx-flac.1 + texmf-dist/doc/man/man1/mtx-flac.man1.pdf + texmf-dist/doc/man/man1/mtx-fonts.1 + texmf-dist/doc/man/man1/mtx-fonts.man1.pdf + texmf-dist/doc/man/man1/mtx-grep.1 + texmf-dist/doc/man/man1/mtx-grep.man1.pdf + texmf-dist/doc/man/man1/mtx-interface.1 + texmf-dist/doc/man/man1/mtx-interface.man1.pdf + texmf-dist/doc/man/man1/mtx-metapost.1 + texmf-dist/doc/man/man1/mtx-metapost.man1.pdf + texmf-dist/doc/man/man1/mtx-modules.1 + texmf-dist/doc/man/man1/mtx-modules.man1.pdf + texmf-dist/doc/man/man1/mtx-package.1 + texmf-dist/doc/man/man1/mtx-package.man1.pdf + texmf-dist/doc/man/man1/mtx-patterns.1 + texmf-dist/doc/man/man1/mtx-patterns.man1.pdf + texmf-dist/doc/man/man1/mtx-pdf.1 + texmf-dist/doc/man/man1/mtx-pdf.man1.pdf + texmf-dist/doc/man/man1/mtx-plain.1 + texmf-dist/doc/man/man1/mtx-plain.man1.pdf + texmf-dist/doc/man/man1/mtx-profile.1 + texmf-dist/doc/man/man1/mtx-profile.man1.pdf + texmf-dist/doc/man/man1/mtx-rsync.1 + texmf-dist/doc/man/man1/mtx-rsync.man1.pdf + texmf-dist/doc/man/man1/mtx-scite.1 + texmf-dist/doc/man/man1/mtx-scite.man1.pdf + texmf-dist/doc/man/man1/mtx-server.1 + texmf-dist/doc/man/man1/mtx-server.man1.pdf + texmf-dist/doc/man/man1/mtx-texworks.1 + texmf-dist/doc/man/man1/mtx-texworks.man1.pdf + texmf-dist/doc/man/man1/mtx-timing.1 + texmf-dist/doc/man/man1/mtx-timing.man1.pdf + texmf-dist/doc/man/man1/mtx-tools.1 + texmf-dist/doc/man/man1/mtx-tools.man1.pdf + texmf-dist/doc/man/man1/mtx-unicode.1 + texmf-dist/doc/man/man1/mtx-unicode.man1.pdf + texmf-dist/doc/man/man1/mtx-unzip.1 + texmf-dist/doc/man/man1/mtx-unzip.man1.pdf + texmf-dist/doc/man/man1/mtx-update.1 + texmf-dist/doc/man/man1/mtx-update.man1.pdf + texmf-dist/doc/man/man1/mtx-vscode.1 + texmf-dist/doc/man/man1/mtx-vscode.man1.pdf + texmf-dist/doc/man/man1/mtx-watch.1 + texmf-dist/doc/man/man1/mtx-watch.man1.pdf + texmf-dist/doc/man/man1/mtx-youless.1 + texmf-dist/doc/man/man1/mtx-youless.man1.pdf + texmf-dist/doc/man/man1/mtxrun.1 + texmf-dist/doc/man/man1/mtxrun.man1.pdf + texmf-dist/doc/man/man1/texexec.1 + texmf-dist/doc/man/man1/texexec.man1.pdf + texmf-dist/doc/man/man1/texmfstart.1 + texmf-dist/doc/man/man1/texmfstart.man1.pdf +runfiles size=17901 + texmf-dist/bibtex/bst/context/mkii/cont-ab.bst + texmf-dist/bibtex/bst/context/mkii/cont-au.bst + texmf-dist/bibtex/bst/context/mkii/cont-no.bst + texmf-dist/bibtex/bst/context/mkii/cont-ti.bst + texmf-dist/context/data/scite/context/documents/scite-context-readme.pdf + texmf-dist/context/data/scite/context/documents/scite-context-readme.tex + texmf-dist/context/data/scite/context/documents/scite-context-visual.pdf + texmf-dist/context/data/scite/context/documents/scite-context-visual.png + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-bidi.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-context.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-interfaces.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metafun.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metapost.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-tex.lua + texmf-dist/context/data/scite/context/lexers/lexer.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bibtex.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bnf.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cld.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp-web.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-dummy.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-json.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua-longstring.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-mps.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-object.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-xref.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-sas.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-sql.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex-web.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-txt.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web-snippets.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-cdata.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-comment.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-script.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer.lua + texmf-dist/context/data/scite/context/lexers/themes/scite-context-theme.lua + texmf-dist/context/data/scite/context/scite-context-data-context.properties + texmf-dist/context/data/scite/context/scite-context-data-interfaces.properties + texmf-dist/context/data/scite/context/scite-context-data-metafun.properties + texmf-dist/context/data/scite/context/scite-context-data-metapost.properties + texmf-dist/context/data/scite/context/scite-context-data-tex.properties + texmf-dist/context/data/scite/context/scite-context-external.properties + texmf-dist/context/data/scite/context/scite-context-internal.properties + texmf-dist/context/data/scite/context/scite-context-user.properties + texmf-dist/context/data/scite/context/scite-context.properties + texmf-dist/context/data/scite/context/scite-ctx-bidi.lua + texmf-dist/context/data/scite/context/scite-ctx-context.properties + texmf-dist/context/data/scite/context/scite-ctx-example.properties + texmf-dist/context/data/scite/context/scite-ctx-templates.lua + texmf-dist/context/data/scite/context/scite-ctx.lua + texmf-dist/context/data/scite/context/scite-ctx.properties + texmf-dist/context/data/scite/context/scite-metapost.properties + texmf-dist/context/data/scite/context/scite-pragma.properties + texmf-dist/context/data/scite/context/scite-tex.properties + texmf-dist/context/data/texfont/type-buy.dat + texmf-dist/context/data/texfont/type-fsf.dat + texmf-dist/context/data/texfont/type-ghz.dat + texmf-dist/context/data/texfont/type-tmf.dat + texmf-dist/context/data/textadept/context/data/scite-context-data-bidi.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-context.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-interfaces.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-metafun.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-metapost.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-tex.lua + texmf-dist/context/data/textadept/context/init.lua + texmf-dist/context/data/textadept/context/lexers/lexer.lua + texmf-dist/context/data/textadept/context/lexers/lexer.rme + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bibtex.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bidi.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bnf.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cld.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cpp-web.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cpp.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-dummy.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-json.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-lua-longstring.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-lua.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-mps.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf-object.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf-xref.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-sas.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-sql.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-tex.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-txt.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-web-snippets.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-web.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-cdata.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-comment.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-script.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer.lua + texmf-dist/context/data/textadept/context/lexers/text.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-files.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-runner.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-settings.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-types.lua + texmf-dist/context/data/textadept/context/textadept-context.cmd + texmf-dist/context/data/textadept/context/textadept-context.sh + texmf-dist/context/data/textadept/context/themes/scite-context-theme.lua + texmf-dist/context/data/texworks/TUG/TeXworks.ini + texmf-dist/context/data/texworks/completion/tw-context.txt + texmf-dist/context/data/texworks/configuration/auto-indent-patterns.txt + texmf-dist/context/data/texworks/configuration/delimiter-pairs.txt + texmf-dist/context/data/texworks/configuration/smart-quotes-modes.txt + texmf-dist/context/data/texworks/configuration/syntax-patterns.txt + texmf-dist/context/data/texworks/configuration/tag-patterns.txt + texmf-dist/context/data/texworks/configuration/texworks-config.txt + texmf-dist/context/data/texworks/configuration/tools.ini + texmf-dist/context/data/texworks/texworks-context.rme + texmf-dist/context/data/texworks/texworks-setup.ini + texmf-dist/context/data/vscode/extensions/context/keybindings/context.json + texmf-dist/context/data/vscode/extensions/context/package.json + texmf-dist/context/data/vscode/extensions/context/package.nls.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-bibtex.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-bnf.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-cld.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-cpp.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-json.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-lua.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-mps.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-pdf.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-sql.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-tex.json + texmf-dist/context/data/vscode/extensions/context/settings/context-settings-xml.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-bibtex.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-bnf.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-cld.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-cpp.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-json.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-lua.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-mps.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-pdf.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-sql.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-tex.json + texmf-dist/context/data/vscode/extensions/context/syntaxes/context-syntax-xml.json + texmf-dist/context/data/vscode/extensions/context/tasks/context.json + texmf-dist/context/data/vscode/extensions/context/themes/context.json + texmf-dist/context/data/vscode/extensions/context/vscode-context.readme + texmf-dist/context/data/vscode/settings.json + texmf-dist/context/data/vscode/tasks.json + texmf-dist/context/data/vscode/vscode-context.cmd + texmf-dist/fonts/afm/hoekwater/context/contnav.afm + texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap + texmf-dist/fonts/enc/dvips/context/cmin.enc + texmf-dist/fonts/enc/dvips/context/cmit.enc + texmf-dist/fonts/enc/dvips/context/cmitt.enc + texmf-dist/fonts/enc/dvips/context/cmrm.enc + texmf-dist/fonts/enc/dvips/context/cmsc.enc + texmf-dist/fonts/enc/dvips/context/cmtt.enc + texmf-dist/fonts/enc/dvips/context/ec-2004.enc + texmf-dist/fonts/enc/dvips/context/q-8r.enc + texmf-dist/fonts/enc/dvips/context/teff-trinite.enc + texmf-dist/fonts/map/dvips/context/contnav.map + texmf-dist/fonts/map/luatex/context/demo-font.lum + texmf-dist/fonts/map/pdftex/context/8r-base.map + texmf-dist/fonts/map/pdftex/context/ec-base.map + texmf-dist/fonts/map/pdftex/context/ec-os-public-lm.map + texmf-dist/fonts/map/pdftex/context/mkiv-base.map + texmf-dist/fonts/map/pdftex/context/mkiv-px.map + texmf-dist/fonts/map/pdftex/context/mkiv-tx.map + texmf-dist/fonts/map/pdftex/context/original-adobe-euro.map + texmf-dist/fonts/map/pdftex/context/original-ams-base.map + texmf-dist/fonts/map/pdftex/context/original-ams-cmr.map + texmf-dist/fonts/map/pdftex/context/original-ams-euler.map + texmf-dist/fonts/map/pdftex/context/original-base.map + texmf-dist/fonts/map/pdftex/context/original-context-symbol.map + texmf-dist/fonts/map/pdftex/context/original-dummy.map + texmf-dist/fonts/map/pdftex/context/original-empty.map + texmf-dist/fonts/map/pdftex/context/original-micropress-informal.map + texmf-dist/fonts/map/pdftex/context/original-public-csr.map + texmf-dist/fonts/map/pdftex/context/original-public-lm.map + texmf-dist/fonts/map/pdftex/context/original-public-plr.map + texmf-dist/fonts/map/pdftex/context/original-public-vnr.map + texmf-dist/fonts/map/pdftex/context/original-vogel-symbol.map + texmf-dist/fonts/map/pdftex/context/original-wasy.map + texmf-dist/fonts/map/pdftex/context/original-youngryu-px.map + texmf-dist/fonts/map/pdftex/context/original-youngryu-tx.map + texmf-dist/fonts/map/pdftex/context/qx-base.map + texmf-dist/fonts/map/pdftex/context/qx-os-public-lm.map + texmf-dist/fonts/map/pdftex/context/t5-base.map + texmf-dist/fonts/map/pdftex/context/t5-os-public-lm.map + texmf-dist/fonts/map/pdftex/context/texnansi-base.map + texmf-dist/fonts/map/pdftex/context/texnansi-os-public-lm.map + texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.map + texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.tec + texmf-dist/fonts/tfm/hoekwater/context/contnav.tfm + texmf-dist/fonts/type1/hoekwater/context/contnav.pfb + texmf-dist/fonts/type1/hoekwater/context/contnav.pfm + texmf-dist/metapost/context/base/common/metafun.mp + texmf-dist/metapost/context/base/common/mp-back.mp + texmf-dist/metapost/context/base/common/mp-fobg.mp + texmf-dist/metapost/context/base/common/mp-symb.mp + texmf-dist/metapost/context/base/mpii/metafun.mpii + texmf-dist/metapost/context/base/mpii/mp-back.mpii + texmf-dist/metapost/context/base/mpii/mp-base.mpii + texmf-dist/metapost/context/base/mpii/mp-butt.mpii + texmf-dist/metapost/context/base/mpii/mp-char.mpii + texmf-dist/metapost/context/base/mpii/mp-core.mpii + texmf-dist/metapost/context/base/mpii/mp-figs.mpii + texmf-dist/metapost/context/base/mpii/mp-fobg.mpii + texmf-dist/metapost/context/base/mpii/mp-form.mpii + texmf-dist/metapost/context/base/mpii/mp-func.mpii + texmf-dist/metapost/context/base/mpii/mp-grid.mpii + texmf-dist/metapost/context/base/mpii/mp-grph.mpii + texmf-dist/metapost/context/base/mpii/mp-page.mpii + texmf-dist/metapost/context/base/mpii/mp-shap.mpii + texmf-dist/metapost/context/base/mpii/mp-spec.mpii + texmf-dist/metapost/context/base/mpii/mp-step.mpii + texmf-dist/metapost/context/base/mpii/mp-symb.mpii + texmf-dist/metapost/context/base/mpii/mp-text.mpii + texmf-dist/metapost/context/base/mpii/mp-tool.mpii + texmf-dist/metapost/context/base/mpii/mp-txts.mpii + texmf-dist/metapost/context/base/mpiv/metafun.mpiv + texmf-dist/metapost/context/base/mpiv/minifun.mpiv + texmf-dist/metapost/context/base/mpiv/mp-abck.mpiv + texmf-dist/metapost/context/base/mpiv/mp-apos.mpiv + texmf-dist/metapost/context/base/mpiv/mp-asnc.mpiv + texmf-dist/metapost/context/base/mpiv/mp-back.mpiv + texmf-dist/metapost/context/base/mpiv/mp-bare.mpiv + texmf-dist/metapost/context/base/mpiv/mp-base.mpiv + texmf-dist/metapost/context/base/mpiv/mp-blob.mpiv + texmf-dist/metapost/context/base/mpiv/mp-butt.mpiv + texmf-dist/metapost/context/base/mpiv/mp-char.mpiv + texmf-dist/metapost/context/base/mpiv/mp-chem.mpiv + texmf-dist/metapost/context/base/mpiv/mp-cont.mpiv + texmf-dist/metapost/context/base/mpiv/mp-cows.mpiv + texmf-dist/metapost/context/base/mpiv/mp-crop.mpiv + texmf-dist/metapost/context/base/mpiv/mp-figs.mpiv + texmf-dist/metapost/context/base/mpiv/mp-fobg.mpiv + texmf-dist/metapost/context/base/mpiv/mp-form.mpiv + texmf-dist/metapost/context/base/mpiv/mp-func.mpiv + texmf-dist/metapost/context/base/mpiv/mp-grap.mpiv + texmf-dist/metapost/context/base/mpiv/mp-grid.mpiv + texmf-dist/metapost/context/base/mpiv/mp-grph.mpiv + texmf-dist/metapost/context/base/mpiv/mp-idea.mpiv + texmf-dist/metapost/context/base/mpiv/mp-luas.mpiv + texmf-dist/metapost/context/base/mpiv/mp-mlib.mpiv + texmf-dist/metapost/context/base/mpiv/mp-node.mpiv + texmf-dist/metapost/context/base/mpiv/mp-page.mpiv + texmf-dist/metapost/context/base/mpiv/mp-shap.mpiv + texmf-dist/metapost/context/base/mpiv/mp-step.mpiv + texmf-dist/metapost/context/base/mpiv/mp-symb.mpiv + texmf-dist/metapost/context/base/mpiv/mp-text.mpiv + texmf-dist/metapost/context/base/mpiv/mp-tool.mpiv + texmf-dist/metapost/context/base/mpiv/mp-tres.mpiv + texmf-dist/metapost/context/base/mpxl/metafun.mpxl + texmf-dist/metapost/context/base/mpxl/minifun.mpxl + texmf-dist/metapost/context/base/mpxl/mp-abck.mpxl + texmf-dist/metapost/context/base/mpxl/mp-apos.mpxl + texmf-dist/metapost/context/base/mpxl/mp-base.mpxl + texmf-dist/metapost/context/base/mpxl/mp-blob.mpxl + texmf-dist/metapost/context/base/mpxl/mp-butt.mpxl + texmf-dist/metapost/context/base/mpxl/mp-cont.mpxl + texmf-dist/metapost/context/base/mpxl/mp-figs.mpxl + texmf-dist/metapost/context/base/mpxl/mp-form.mpxl + texmf-dist/metapost/context/base/mpxl/mp-func.mpxl + texmf-dist/metapost/context/base/mpxl/mp-grid.mpxl + texmf-dist/metapost/context/base/mpxl/mp-grph.mpxl + texmf-dist/metapost/context/base/mpxl/mp-lmtx.mpxl + texmf-dist/metapost/context/base/mpxl/mp-luas.mpxl + texmf-dist/metapost/context/base/mpxl/mp-math.mpxl + texmf-dist/metapost/context/base/mpxl/mp-miss.mpxl + texmf-dist/metapost/context/base/mpxl/mp-mlib.mpxl + texmf-dist/metapost/context/base/mpxl/mp-node.mpxl + texmf-dist/metapost/context/base/mpxl/mp-page.mpxl + texmf-dist/metapost/context/base/mpxl/mp-shap.mpxl + texmf-dist/metapost/context/base/mpxl/mp-text.mpxl + texmf-dist/metapost/context/base/mpxl/mp-tool.mpxl + texmf-dist/metapost/context/fonts/mpiv/bidi-symbols.mp + texmf-dist/metapost/context/fonts/mpiv/bidi-symbols.tex + texmf-dist/metapost/context/fonts/mpiv/demo-symbols.mp + texmf-dist/metapost/context/fonts/mpiv/demo-symbols.tex + texmf-dist/metapost/context/fonts/mpiv/punkfont-bold.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-boldslanted.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-characters.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-definitions.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-slanted.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont.mp + texmf-dist/scripts/context/lua/context.lua + texmf-dist/scripts/context/lua/mtx-babel.lua + texmf-dist/scripts/context/lua/mtx-base.lua + texmf-dist/scripts/context/lua/mtx-bibtex.lua + texmf-dist/scripts/context/lua/mtx-cache.lua + texmf-dist/scripts/context/lua/mtx-chars.lua + texmf-dist/scripts/context/lua/mtx-check.lua + texmf-dist/scripts/context/lua/mtx-colors.lua + texmf-dist/scripts/context/lua/mtx-context.lua + texmf-dist/scripts/context/lua/mtx-context.xml + texmf-dist/scripts/context/lua/mtx-convert.lua + texmf-dist/scripts/context/lua/mtx-dvi.lua + texmf-dist/scripts/context/lua/mtx-epub.lua + texmf-dist/scripts/context/lua/mtx-evohome.lua + texmf-dist/scripts/context/lua/mtx-fcd.lua + texmf-dist/scripts/context/lua/mtx-flac.lua + texmf-dist/scripts/context/lua/mtx-fonts.lua + texmf-dist/scripts/context/lua/mtx-grep.lua + texmf-dist/scripts/context/lua/mtx-install.lua + texmf-dist/scripts/context/lua/mtx-interface.lua + texmf-dist/scripts/context/lua/mtx-kpse.lua + texmf-dist/scripts/context/lua/mtx-metapost.lua + texmf-dist/scripts/context/lua/mtx-mk-help.lua + texmf-dist/scripts/context/lua/mtx-modules.lua + texmf-dist/scripts/context/lua/mtx-package.lua + texmf-dist/scripts/context/lua/mtx-patterns.lua + texmf-dist/scripts/context/lua/mtx-pdf.lua + texmf-dist/scripts/context/lua/mtx-plain.lua + texmf-dist/scripts/context/lua/mtx-profile.lua + texmf-dist/scripts/context/lua/mtx-rsync.lua + texmf-dist/scripts/context/lua/mtx-scite.lua + texmf-dist/scripts/context/lua/mtx-server-ctx-fonttest.lua + texmf-dist/scripts/context/lua/mtx-server-ctx-help.lua + texmf-dist/scripts/context/lua/mtx-server-ctx-startup.lua + texmf-dist/scripts/context/lua/mtx-server.lua + texmf-dist/scripts/context/lua/mtx-synctex.lua + texmf-dist/scripts/context/lua/mtx-texworks.lua + texmf-dist/scripts/context/lua/mtx-tools.lua + texmf-dist/scripts/context/lua/mtx-unicode.lua + texmf-dist/scripts/context/lua/mtx-unzip.lua + texmf-dist/scripts/context/lua/mtx-update.lua + texmf-dist/scripts/context/lua/mtx-vscode.lua + texmf-dist/scripts/context/lua/mtx-watch.lua + texmf-dist/scripts/context/lua/mtx-youless.lua + texmf-dist/scripts/context/lua/mtxlibs.lua + texmf-dist/scripts/context/lua/mtxrun.lua + texmf-dist/scripts/context/perl/makempy.pl + texmf-dist/scripts/context/perl/path_tre.pm + texmf-dist/scripts/context/perl/pdftrimwhite.pl + texmf-dist/scripts/context/perl/texfind.pl + texmf-dist/scripts/context/perl/texfont.pl + texmf-dist/scripts/context/ruby/base/ctx.rb + texmf-dist/scripts/context/ruby/base/exa.rb + texmf-dist/scripts/context/ruby/base/file.rb + texmf-dist/scripts/context/ruby/base/kpse.rb + texmf-dist/scripts/context/ruby/base/kpse/drb.rb + texmf-dist/scripts/context/ruby/base/kpse/soap.rb + texmf-dist/scripts/context/ruby/base/kpse/trees.rb + texmf-dist/scripts/context/ruby/base/kpsedirect.rb + texmf-dist/scripts/context/ruby/base/kpsefast.rb + texmf-dist/scripts/context/ruby/base/kpseremote.rb + texmf-dist/scripts/context/ruby/base/kpserunner.rb + texmf-dist/scripts/context/ruby/base/logger.rb + texmf-dist/scripts/context/ruby/base/merge.rb + texmf-dist/scripts/context/ruby/base/mp.rb + texmf-dist/scripts/context/ruby/base/pdf.rb + texmf-dist/scripts/context/ruby/base/state.rb + texmf-dist/scripts/context/ruby/base/switch.rb + texmf-dist/scripts/context/ruby/base/system.rb + texmf-dist/scripts/context/ruby/base/tex.rb + texmf-dist/scripts/context/ruby/base/texutil.rb + texmf-dist/scripts/context/ruby/base/tool.rb + texmf-dist/scripts/context/ruby/base/variables.rb + texmf-dist/scripts/context/ruby/concheck.rb + texmf-dist/scripts/context/ruby/ctxtools.rb + texmf-dist/scripts/context/ruby/graphics/gs.rb + texmf-dist/scripts/context/ruby/graphics/inkscape.rb + texmf-dist/scripts/context/ruby/graphics/magick.rb + texmf-dist/scripts/context/ruby/imgtopdf.rb + texmf-dist/scripts/context/ruby/pdftools.rb + texmf-dist/scripts/context/ruby/pstopdf.rb + texmf-dist/scripts/context/ruby/rlxtools.rb + texmf-dist/scripts/context/ruby/rscortool.rb + texmf-dist/scripts/context/ruby/rsfiltool.rb + texmf-dist/scripts/context/ruby/rslb/base.rb + texmf-dist/scripts/context/ruby/rslibtool.rb + texmf-dist/scripts/context/ruby/runtools.rb + texmf-dist/scripts/context/ruby/texexec.rb + texmf-dist/scripts/context/ruby/texmfstart.rb + texmf-dist/scripts/context/ruby/textools.rb + texmf-dist/scripts/context/ruby/texutil.rb + texmf-dist/scripts/context/ruby/tmftools.rb + texmf-dist/scripts/context/ruby/xmltools.rb + texmf-dist/scripts/context/stubs/install/first-setup.bat + texmf-dist/scripts/context/stubs/install/first-setup.sh + texmf-dist/scripts/context/stubs/mswin/context.exe + texmf-dist/scripts/context/stubs/mswin/contextjit.exe + texmf-dist/scripts/context/stubs/mswin/ctxtools.exe + texmf-dist/scripts/context/stubs/mswin/luatools.exe + texmf-dist/scripts/context/stubs/mswin/mtxrun.dll + texmf-dist/scripts/context/stubs/mswin/mtxrun.exe + texmf-dist/scripts/context/stubs/mswin/mtxrun.lua + texmf-dist/scripts/context/stubs/mswin/mtxrunjit.exe + texmf-dist/scripts/context/stubs/mswin/pstopdf.exe + texmf-dist/scripts/context/stubs/mswin/texexec.exe + texmf-dist/scripts/context/stubs/mswin/texmfstart.exe + texmf-dist/scripts/context/stubs/setup/setuptex + texmf-dist/scripts/context/stubs/setup/setuptex.bat + texmf-dist/scripts/context/stubs/setup/setuptex.csh + texmf-dist/scripts/context/stubs/source/mtxrun_dll.c + texmf-dist/scripts/context/stubs/source/mtxrun_exe.c + texmf-dist/scripts/context/stubs/source/readme.txt + texmf-dist/scripts/context/stubs/unix/context + texmf-dist/scripts/context/stubs/unix/contextjit + texmf-dist/scripts/context/stubs/unix/ctxtools + texmf-dist/scripts/context/stubs/unix/luatools + texmf-dist/scripts/context/stubs/unix/mptopdf + texmf-dist/scripts/context/stubs/unix/mtxrun + texmf-dist/scripts/context/stubs/unix/mtxrunjit + texmf-dist/scripts/context/stubs/unix/pstopdf + texmf-dist/scripts/context/stubs/unix/texexec + texmf-dist/scripts/context/stubs/unix/texmfstart + texmf-dist/scripts/context/stubs/win64/context.exe + texmf-dist/scripts/context/stubs/win64/contextjit.exe + texmf-dist/scripts/context/stubs/win64/ctxtools.exe + texmf-dist/scripts/context/stubs/win64/luatools.exe + texmf-dist/scripts/context/stubs/win64/mptopdf.exe + texmf-dist/scripts/context/stubs/win64/mtxrun.dll + texmf-dist/scripts/context/stubs/win64/mtxrun.exe + texmf-dist/scripts/context/stubs/win64/mtxrun.lua + texmf-dist/scripts/context/stubs/win64/mtxrunjit.exe + texmf-dist/scripts/context/stubs/win64/pstopdf.exe + texmf-dist/scripts/context/stubs/win64/texexec.exe + texmf-dist/scripts/context/stubs/win64/texmfstart.exe + texmf-dist/tex/context/base/context-version.pdf + texmf-dist/tex/context/base/context-version.png + texmf-dist/tex/context/base/context.rme + texmf-dist/tex/context/base/mkii/anch-bar.mkii + texmf-dist/tex/context/base/mkii/anch-pgr.mkii + texmf-dist/tex/context/base/mkii/anch-pos.mkii + texmf-dist/tex/context/base/mkii/anch-snc.mkii + texmf-dist/tex/context/base/mkii/bibl-tra.mkii + texmf-dist/tex/context/base/mkii/buff-ini.mkii + texmf-dist/tex/context/base/mkii/buff-ver.mkii + texmf-dist/tex/context/base/mkii/catc-act.mkii + texmf-dist/tex/context/base/mkii/catc-ctx.mkii + texmf-dist/tex/context/base/mkii/catc-def.mkii + texmf-dist/tex/context/base/mkii/catc-ini.mkii + texmf-dist/tex/context/base/mkii/catc-sym.mkii + texmf-dist/tex/context/base/mkii/catc-xml.mkii + texmf-dist/tex/context/base/mkii/colo-ema.mkii + texmf-dist/tex/context/base/mkii/colo-ext.mkii + texmf-dist/tex/context/base/mkii/colo-hex.mkii + texmf-dist/tex/context/base/mkii/colo-ini.mkii + texmf-dist/tex/context/base/mkii/colo-rgb.mkii + texmf-dist/tex/context/base/mkii/colo-run.mkii + texmf-dist/tex/context/base/mkii/colo-x11.mkii + texmf-dist/tex/context/base/mkii/colo-xwi.mkii + texmf-dist/tex/context/base/mkii/cont-cs.mkii + texmf-dist/tex/context/base/mkii/cont-de.mkii + texmf-dist/tex/context/base/mkii/cont-en.mkii + texmf-dist/tex/context/base/mkii/cont-err.mkii + texmf-dist/tex/context/base/mkii/cont-fil.mkii + texmf-dist/tex/context/base/mkii/cont-fr.mkii + texmf-dist/tex/context/base/mkii/cont-gb.mkii + texmf-dist/tex/context/base/mkii/cont-it.mkii + texmf-dist/tex/context/base/mkii/cont-log.mkii + texmf-dist/tex/context/base/mkii/cont-new.mkii + texmf-dist/tex/context/base/mkii/cont-nl.mkii + texmf-dist/tex/context/base/mkii/cont-ro.mkii + texmf-dist/tex/context/base/mkii/cont-sys.ori + texmf-dist/tex/context/base/mkii/context.mkii + texmf-dist/tex/context/base/mkii/core-con.mkii + texmf-dist/tex/context/base/mkii/core-ctx.mkii + texmf-dist/tex/context/base/mkii/core-def.mkii + texmf-dist/tex/context/base/mkii/core-env.mkii + texmf-dist/tex/context/base/mkii/core-fil.mkii + texmf-dist/tex/context/base/mkii/core-fnt.mkii + texmf-dist/tex/context/base/mkii/core-gen.mkii + texmf-dist/tex/context/base/mkii/core-ini.mkii + texmf-dist/tex/context/base/mkii/core-job.mkii + texmf-dist/tex/context/base/mkii/core-mis.mkii + texmf-dist/tex/context/base/mkii/core-par.mkii + texmf-dist/tex/context/base/mkii/core-stg.mkii + texmf-dist/tex/context/base/mkii/core-sys.mkii + texmf-dist/tex/context/base/mkii/core-two.mkii + texmf-dist/tex/context/base/mkii/core-uti.mkii + texmf-dist/tex/context/base/mkii/core-var.mkii + texmf-dist/tex/context/base/mkii/enco-032.mkii + texmf-dist/tex/context/base/mkii/enco-037.mkii + texmf-dist/tex/context/base/mkii/enco-acc.mkii + texmf-dist/tex/context/base/mkii/enco-agr.mkii + texmf-dist/tex/context/base/mkii/enco-ans.mkii + texmf-dist/tex/context/base/mkii/enco-cas.mkii + texmf-dist/tex/context/base/mkii/enco-chi.mkii + texmf-dist/tex/context/base/mkii/enco-com.mkii + texmf-dist/tex/context/base/mkii/enco-cyr.mkii + texmf-dist/tex/context/base/mkii/enco-def.mkii + texmf-dist/tex/context/base/mkii/enco-ec.mkii + texmf-dist/tex/context/base/mkii/enco-ecm.mkii + texmf-dist/tex/context/base/mkii/enco-el.mkii + texmf-dist/tex/context/base/mkii/enco-fde.mkii + texmf-dist/tex/context/base/mkii/enco-ffr.mkii + texmf-dist/tex/context/base/mkii/enco-fpl.mkii + texmf-dist/tex/context/base/mkii/enco-fro.mkii + texmf-dist/tex/context/base/mkii/enco-fsl.mkii + texmf-dist/tex/context/base/mkii/enco-grk.mkii + texmf-dist/tex/context/base/mkii/enco-heb.mkii + texmf-dist/tex/context/base/mkii/enco-ibm.mkii + texmf-dist/tex/context/base/mkii/enco-il2.mkii + texmf-dist/tex/context/base/mkii/enco-ini.mkii + texmf-dist/tex/context/base/mkii/enco-l7x.mkii + texmf-dist/tex/context/base/mkii/enco-lat.mkii + texmf-dist/tex/context/base/mkii/enco-mis.mkii + texmf-dist/tex/context/base/mkii/enco-pdf.mkii + texmf-dist/tex/context/base/mkii/enco-pfr.mkii + texmf-dist/tex/context/base/mkii/enco-pol.mkii + texmf-dist/tex/context/base/mkii/enco-qx.mkii + texmf-dist/tex/context/base/mkii/enco-raw.mkii + texmf-dist/tex/context/base/mkii/enco-run.mkii + texmf-dist/tex/context/base/mkii/enco-t5.mkii + texmf-dist/tex/context/base/mkii/enco-tbo.mkii + texmf-dist/tex/context/base/mkii/enco-uc.mkii + texmf-dist/tex/context/base/mkii/enco-vis.mkii + texmf-dist/tex/context/base/mkii/enco-vna.mkii + texmf-dist/tex/context/base/mkii/enco-win.mkii + texmf-dist/tex/context/base/mkii/enco-x5.mkii + texmf-dist/tex/context/base/mkii/filt-bas.mkii + texmf-dist/tex/context/base/mkii/filt-ini.mkii + texmf-dist/tex/context/base/mkii/font-arb.mkii + texmf-dist/tex/context/base/mkii/font-bfm.mkii + texmf-dist/tex/context/base/mkii/font-chi.mkii + texmf-dist/tex/context/base/mkii/font-heb.mkii + texmf-dist/tex/context/base/mkii/font-ini.mkii + texmf-dist/tex/context/base/mkii/font-jap.mkii + texmf-dist/tex/context/base/mkii/font-run.mkii + texmf-dist/tex/context/base/mkii/font-uni.mkii + texmf-dist/tex/context/base/mkii/font-unk.mkii + texmf-dist/tex/context/base/mkii/font-xtx.mkii + texmf-dist/tex/context/base/mkii/grph-fig.mkii + texmf-dist/tex/context/base/mkii/grph-inc.mkii + texmf-dist/tex/context/base/mkii/grph-trf.mkii + texmf-dist/tex/context/base/mkii/hand-def.mkii + texmf-dist/tex/context/base/mkii/hand-ini.mkii + texmf-dist/tex/context/base/mkii/java-ans.mkii + texmf-dist/tex/context/base/mkii/java-exa.mkii + texmf-dist/tex/context/base/mkii/java-fil.mkii + texmf-dist/tex/context/base/mkii/java-fld.mkii + texmf-dist/tex/context/base/mkii/java-ini.mkii + texmf-dist/tex/context/base/mkii/java-stp.mkii + texmf-dist/tex/context/base/mkii/lang-alt.mkii + texmf-dist/tex/context/base/mkii/lang-ana.mkii + texmf-dist/tex/context/base/mkii/lang-art.mkii + texmf-dist/tex/context/base/mkii/lang-bal.mkii + texmf-dist/tex/context/base/mkii/lang-cel.mkii + texmf-dist/tex/context/base/mkii/lang-chi.mkii + texmf-dist/tex/context/base/mkii/lang-ctx.mkii + texmf-dist/tex/context/base/mkii/lang-cyr.mkii + texmf-dist/tex/context/base/mkii/lang-dis.mkii + texmf-dist/tex/context/base/mkii/lang-frd.mkii + texmf-dist/tex/context/base/mkii/lang-frq.mkii + texmf-dist/tex/context/base/mkii/lang-ger.mkii + texmf-dist/tex/context/base/mkii/lang-grk.mkii + texmf-dist/tex/context/base/mkii/lang-ind.mkii + texmf-dist/tex/context/base/mkii/lang-ini.mkii + texmf-dist/tex/context/base/mkii/lang-ita.mkii + texmf-dist/tex/context/base/mkii/lang-jap.mkii + texmf-dist/tex/context/base/mkii/lang-lab.mkii + texmf-dist/tex/context/base/mkii/lang-mis.mkii + texmf-dist/tex/context/base/mkii/lang-run.mkii + texmf-dist/tex/context/base/mkii/lang-sla.mkii + texmf-dist/tex/context/base/mkii/lang-spa.mkii + texmf-dist/tex/context/base/mkii/lang-spe.mkii + texmf-dist/tex/context/base/mkii/lang-ura.mkii + texmf-dist/tex/context/base/mkii/lang-url.mkii + texmf-dist/tex/context/base/mkii/lang-vn.mkii + texmf-dist/tex/context/base/mkii/math-ams.mkii + texmf-dist/tex/context/base/mkii/math-arr.mkii + texmf-dist/tex/context/base/mkii/math-cow.mkii + texmf-dist/tex/context/base/mkii/math-eul.mkii + texmf-dist/tex/context/base/mkii/math-fou.mkii + texmf-dist/tex/context/base/mkii/math-frc.mkii + texmf-dist/tex/context/base/mkii/math-ini.mkii + texmf-dist/tex/context/base/mkii/math-lbr.mkii + texmf-dist/tex/context/base/mkii/math-pln.mkii + texmf-dist/tex/context/base/mkii/math-run.mkii + texmf-dist/tex/context/base/mkii/math-tex.mkii + texmf-dist/tex/context/base/mkii/math-tim.mkii + texmf-dist/tex/context/base/mkii/math-uni.mkii + texmf-dist/tex/context/base/mkii/meta-clp.mkii + texmf-dist/tex/context/base/mkii/meta-dum.mkii + texmf-dist/tex/context/base/mkii/meta-fig.mkii + texmf-dist/tex/context/base/mkii/meta-ini.mkii + texmf-dist/tex/context/base/mkii/meta-mis.mkii + texmf-dist/tex/context/base/mkii/meta-nav.mkii + texmf-dist/tex/context/base/mkii/meta-pag.mkii + texmf-dist/tex/context/base/mkii/meta-pdf.mkii + texmf-dist/tex/context/base/mkii/meta-pre.mkii + texmf-dist/tex/context/base/mkii/meta-tex.mkii + texmf-dist/tex/context/base/mkii/meta-txt.mkii + texmf-dist/tex/context/base/mkii/meta-xml.mkii + texmf-dist/tex/context/base/mkii/mult-aux.mkii + texmf-dist/tex/context/base/mkii/mult-chk.mkii + texmf-dist/tex/context/base/mkii/mult-com.mkii + texmf-dist/tex/context/base/mkii/mult-con.mkii + texmf-dist/tex/context/base/mkii/mult-cs.mkii + texmf-dist/tex/context/base/mkii/mult-de.mkii + texmf-dist/tex/context/base/mkii/mult-def.mkii + texmf-dist/tex/context/base/mkii/mult-en.mkii + texmf-dist/tex/context/base/mkii/mult-fr.mkii + texmf-dist/tex/context/base/mkii/mult-fst.mkii + texmf-dist/tex/context/base/mkii/mult-ini.mkii + texmf-dist/tex/context/base/mkii/mult-it.mkii + texmf-dist/tex/context/base/mkii/mult-mcs.mkii + texmf-dist/tex/context/base/mkii/mult-mde.mkii + texmf-dist/tex/context/base/mkii/mult-men.mkii + texmf-dist/tex/context/base/mkii/mult-mfr.mkii + texmf-dist/tex/context/base/mkii/mult-mit.mkii + texmf-dist/tex/context/base/mkii/mult-mnl.mkii + texmf-dist/tex/context/base/mkii/mult-mno.mkii + texmf-dist/tex/context/base/mkii/mult-mpe.mkii + texmf-dist/tex/context/base/mkii/mult-mro.mkii + texmf-dist/tex/context/base/mkii/mult-nl.mkii + texmf-dist/tex/context/base/mkii/mult-pe.mkii + texmf-dist/tex/context/base/mkii/mult-ro.mkii + texmf-dist/tex/context/base/mkii/mult-sys.mkii + texmf-dist/tex/context/base/mkii/norm-alo.mkii + texmf-dist/tex/context/base/mkii/norm-ctx.mkii + texmf-dist/tex/context/base/mkii/norm-etx.mkii + texmf-dist/tex/context/base/mkii/norm-ltx.mkii + texmf-dist/tex/context/base/mkii/norm-ptx.mkii + texmf-dist/tex/context/base/mkii/norm-tex.mkii + texmf-dist/tex/context/base/mkii/norm-xtx.mkii + texmf-dist/tex/context/base/mkii/pack-box.mkii + texmf-dist/tex/context/base/mkii/pack-lyr.mkii + texmf-dist/tex/context/base/mkii/pack-obj.mkii + texmf-dist/tex/context/base/mkii/pack-rul.mkii + texmf-dist/tex/context/base/mkii/page-app.mkii + texmf-dist/tex/context/base/mkii/page-bck.mkii + texmf-dist/tex/context/base/mkii/page-flw.mkii + texmf-dist/tex/context/base/mkii/page-imp.mkii + texmf-dist/tex/context/base/mkii/page-ini.mkii + texmf-dist/tex/context/base/mkii/page-ins.mkii + texmf-dist/tex/context/base/mkii/page-lay.mkii + texmf-dist/tex/context/base/mkii/page-lin.mkii + texmf-dist/tex/context/base/mkii/page-log.mkii + texmf-dist/tex/context/base/mkii/page-mak.mkii + texmf-dist/tex/context/base/mkii/page-mar.mkii + texmf-dist/tex/context/base/mkii/page-mis.mkii + texmf-dist/tex/context/base/mkii/page-mul.mkii + texmf-dist/tex/context/base/mkii/page-not.mkii + texmf-dist/tex/context/base/mkii/page-one.mkii + texmf-dist/tex/context/base/mkii/page-par.mkii + texmf-dist/tex/context/base/mkii/page-plg.mkii + texmf-dist/tex/context/base/mkii/page-run.mkii + texmf-dist/tex/context/base/mkii/page-set.mkii + texmf-dist/tex/context/base/mkii/page-sid.mkii + texmf-dist/tex/context/base/mkii/page-spr.mkii + texmf-dist/tex/context/base/mkii/page-str.mkii + texmf-dist/tex/context/base/mkii/page-txt.mkii + texmf-dist/tex/context/base/mkii/pdfr-def.mkii + texmf-dist/tex/context/base/mkii/pdfr-ec.mkii + texmf-dist/tex/context/base/mkii/pdfr-il2.mkii + texmf-dist/tex/context/base/mkii/prop-ini.mkii + texmf-dist/tex/context/base/mkii/prop-lay.mkii + texmf-dist/tex/context/base/mkii/prop-mis.mkii + texmf-dist/tex/context/base/mkii/regi-8859-1.mkii + texmf-dist/tex/context/base/mkii/regi-8859-10.mkii + texmf-dist/tex/context/base/mkii/regi-8859-13.mkii + texmf-dist/tex/context/base/mkii/regi-8859-15.mkii + texmf-dist/tex/context/base/mkii/regi-8859-16.mkii + texmf-dist/tex/context/base/mkii/regi-8859-2.mkii + texmf-dist/tex/context/base/mkii/regi-8859-3.mkii + texmf-dist/tex/context/base/mkii/regi-8859-4.mkii + texmf-dist/tex/context/base/mkii/regi-8859-5.mkii + texmf-dist/tex/context/base/mkii/regi-8859-7.mkii + texmf-dist/tex/context/base/mkii/regi-8859-9.mkii + texmf-dist/tex/context/base/mkii/regi-cp1250.mkii + texmf-dist/tex/context/base/mkii/regi-cp1251.mkii + texmf-dist/tex/context/base/mkii/regi-cp1252.mkii + texmf-dist/tex/context/base/mkii/regi-cp1253.mkii + texmf-dist/tex/context/base/mkii/regi-cp1254.mkii + texmf-dist/tex/context/base/mkii/regi-cp1257.mkii + texmf-dist/tex/context/base/mkii/regi-cyp.mkii + texmf-dist/tex/context/base/mkii/regi-cyr.mkii + texmf-dist/tex/context/base/mkii/regi-def.mkii + texmf-dist/tex/context/base/mkii/regi-ibm.mkii + texmf-dist/tex/context/base/mkii/regi-ini.mkii + texmf-dist/tex/context/base/mkii/regi-mac.mkii + texmf-dist/tex/context/base/mkii/regi-syn.mkii + texmf-dist/tex/context/base/mkii/regi-uni.mkii + texmf-dist/tex/context/base/mkii/regi-utf.mkii + texmf-dist/tex/context/base/mkii/regi-vis.mkii + texmf-dist/tex/context/base/mkii/scrn-fld.mkii + texmf-dist/tex/context/base/mkii/scrn-hlp.mkii + texmf-dist/tex/context/base/mkii/scrn-int.mkii + texmf-dist/tex/context/base/mkii/scrn-nav.mkii + texmf-dist/tex/context/base/mkii/sort-def.mkii + texmf-dist/tex/context/base/mkii/sort-ini.mkii + texmf-dist/tex/context/base/mkii/sort-lan.mkii + texmf-dist/tex/context/base/mkii/spac-gen.mkii + texmf-dist/tex/context/base/mkii/spac-grd.mkii + texmf-dist/tex/context/base/mkii/spec-def.mkii + texmf-dist/tex/context/base/mkii/spec-dpm.mkii + texmf-dist/tex/context/base/mkii/spec-dpx.mkii + texmf-dist/tex/context/base/mkii/spec-dvi.mkii + texmf-dist/tex/context/base/mkii/spec-fdf.mkii + texmf-dist/tex/context/base/mkii/spec-ini.mkii + texmf-dist/tex/context/base/mkii/spec-mis.mkii + texmf-dist/tex/context/base/mkii/spec-pdf.mkii + texmf-dist/tex/context/base/mkii/spec-ps.mkii + texmf-dist/tex/context/base/mkii/spec-tpd.mkii + texmf-dist/tex/context/base/mkii/spec-tr.mkii + texmf-dist/tex/context/base/mkii/spec-tst.mkii + texmf-dist/tex/context/base/mkii/spec-var.mkii + texmf-dist/tex/context/base/mkii/spec-win.mkii + texmf-dist/tex/context/base/mkii/spec-xet.mkii + texmf-dist/tex/context/base/mkii/spec-xtx.mkii + texmf-dist/tex/context/base/mkii/spec-yy.mkii + texmf-dist/tex/context/base/mkii/strc-blk.mkii + texmf-dist/tex/context/base/mkii/strc-des.mkii + texmf-dist/tex/context/base/mkii/strc-flt.mkii + texmf-dist/tex/context/base/mkii/strc-itm.mkii + texmf-dist/tex/context/base/mkii/strc-lnt.mkii + texmf-dist/tex/context/base/mkii/strc-lst.mkii + texmf-dist/tex/context/base/mkii/strc-mar.mkii + texmf-dist/tex/context/base/mkii/strc-mat.mkii + texmf-dist/tex/context/base/mkii/strc-not.mkii + texmf-dist/tex/context/base/mkii/strc-num.mkii + texmf-dist/tex/context/base/mkii/strc-pag.mkii + texmf-dist/tex/context/base/mkii/strc-ref.mkii + texmf-dist/tex/context/base/mkii/strc-reg.mkii + texmf-dist/tex/context/base/mkii/strc-sec.mkii + texmf-dist/tex/context/base/mkii/strc-swd.mkii + texmf-dist/tex/context/base/mkii/strc-syn.mkii + texmf-dist/tex/context/base/mkii/supp-ali.mkii + texmf-dist/tex/context/base/mkii/supp-box.mkii + texmf-dist/tex/context/base/mkii/supp-dir.mkii + texmf-dist/tex/context/base/mkii/supp-emp.mkii + texmf-dist/tex/context/base/mkii/supp-eps.mkii + texmf-dist/tex/context/base/mkii/supp-fil.mkii + texmf-dist/tex/context/base/mkii/supp-fun.mkii + texmf-dist/tex/context/base/mkii/supp-lat.mkii + texmf-dist/tex/context/base/mkii/supp-mat.mkii + texmf-dist/tex/context/base/mkii/supp-mis.tex + texmf-dist/tex/context/base/mkii/supp-mpe.tex + texmf-dist/tex/context/base/mkii/supp-mps.mkii + texmf-dist/tex/context/base/mkii/supp-mrk.mkii + texmf-dist/tex/context/base/mkii/supp-num.mkii + texmf-dist/tex/context/base/mkii/supp-pat.mkii + texmf-dist/tex/context/base/mkii/supp-pdf.tex + texmf-dist/tex/context/base/mkii/supp-ran.mkii + texmf-dist/tex/context/base/mkii/supp-spe.mkii + texmf-dist/tex/context/base/mkii/supp-tpi.mkii + texmf-dist/tex/context/base/mkii/supp-vis.mkii + texmf-dist/tex/context/base/mkii/symb-cow.mkii + texmf-dist/tex/context/base/mkii/symb-eur.mkii + texmf-dist/tex/context/base/mkii/symb-glm.mkii + texmf-dist/tex/context/base/mkii/symb-ini.mkii + texmf-dist/tex/context/base/mkii/symb-jmn.mkii + texmf-dist/tex/context/base/mkii/symb-mis.mkii + texmf-dist/tex/context/base/mkii/symb-mvs.mkii + texmf-dist/tex/context/base/mkii/symb-nav.mkii + texmf-dist/tex/context/base/mkii/symb-run.mkii + texmf-dist/tex/context/base/mkii/symb-uni.mkii + texmf-dist/tex/context/base/mkii/symb-was.mkii + texmf-dist/tex/context/base/mkii/syst-con.mkii + texmf-dist/tex/context/base/mkii/syst-ext.mkii + texmf-dist/tex/context/base/mkii/syst-fnt.mkii + texmf-dist/tex/context/base/mkii/syst-gen.mkii + texmf-dist/tex/context/base/mkii/syst-ini.mkii + texmf-dist/tex/context/base/mkii/syst-new.mkii + texmf-dist/tex/context/base/mkii/syst-pln.mkii + texmf-dist/tex/context/base/mkii/syst-rtp.mkii + texmf-dist/tex/context/base/mkii/syst-str.mkii + texmf-dist/tex/context/base/mkii/tabl-com.mkii + texmf-dist/tex/context/base/mkii/tabl-ltb.mkii + texmf-dist/tex/context/base/mkii/tabl-ntb.mkii + texmf-dist/tex/context/base/mkii/tabl-nte.mkii + texmf-dist/tex/context/base/mkii/tabl-pln.mkii + texmf-dist/tex/context/base/mkii/tabl-tab.mkii + texmf-dist/tex/context/base/mkii/tabl-tbl.mkii + texmf-dist/tex/context/base/mkii/tabl-tsp.mkii + texmf-dist/tex/context/base/mkii/thrd-pic.mkii + texmf-dist/tex/context/base/mkii/thrd-ran.mkii + texmf-dist/tex/context/base/mkii/thrd-tab.mkii + texmf-dist/tex/context/base/mkii/thrd-trg.mkii + texmf-dist/tex/context/base/mkii/trac-vis.mkii + texmf-dist/tex/context/base/mkii/type-def.mkii + texmf-dist/tex/context/base/mkii/type-ini.mkii + texmf-dist/tex/context/base/mkii/type-one.mkii + texmf-dist/tex/context/base/mkii/type-otf.mkii + texmf-dist/tex/context/base/mkii/type-run.mkii + texmf-dist/tex/context/base/mkii/type-set.mkii + texmf-dist/tex/context/base/mkii/type-siz.mkii + texmf-dist/tex/context/base/mkii/type-tmf.mkii + texmf-dist/tex/context/base/mkii/typo-ini.mkii + texmf-dist/tex/context/base/mkii/unic-000.mkii + texmf-dist/tex/context/base/mkii/unic-001.mkii + texmf-dist/tex/context/base/mkii/unic-002.mkii + texmf-dist/tex/context/base/mkii/unic-003.mkii + texmf-dist/tex/context/base/mkii/unic-004.mkii + texmf-dist/tex/context/base/mkii/unic-005.mkii + texmf-dist/tex/context/base/mkii/unic-030.mkii + texmf-dist/tex/context/base/mkii/unic-031.mkii + texmf-dist/tex/context/base/mkii/unic-032.mkii + texmf-dist/tex/context/base/mkii/unic-033.mkii + texmf-dist/tex/context/base/mkii/unic-034.mkii + texmf-dist/tex/context/base/mkii/unic-035.mkii + texmf-dist/tex/context/base/mkii/unic-037.mkii + texmf-dist/tex/context/base/mkii/unic-039.mkii + texmf-dist/tex/context/base/mkii/unic-251.mkii + texmf-dist/tex/context/base/mkii/unic-cjk.mkii + texmf-dist/tex/context/base/mkii/unic-exp.mkii + texmf-dist/tex/context/base/mkii/unic-ini.mkii + texmf-dist/tex/context/base/mkii/unic-run.mkii + texmf-dist/tex/context/base/mkii/verb-c.mkii + texmf-dist/tex/context/base/mkii/verb-eif.mkii + texmf-dist/tex/context/base/mkii/verb-ini.mkii + texmf-dist/tex/context/base/mkii/verb-js.mkii + texmf-dist/tex/context/base/mkii/verb-jv.mkii + texmf-dist/tex/context/base/mkii/verb-mp.mkii + texmf-dist/tex/context/base/mkii/verb-pas.mkii + texmf-dist/tex/context/base/mkii/verb-pl.mkii + texmf-dist/tex/context/base/mkii/verb-raw.mkii + texmf-dist/tex/context/base/mkii/verb-sql.mkii + texmf-dist/tex/context/base/mkii/verb-tex.mkii + texmf-dist/tex/context/base/mkii/verb-xml.mkii + texmf-dist/tex/context/base/mkii/xetx-chr.mkii + texmf-dist/tex/context/base/mkii/xetx-cls.mkii + texmf-dist/tex/context/base/mkii/xetx-ini.mkii + texmf-dist/tex/context/base/mkii/xetx-utf.mkii + texmf-dist/tex/context/base/mkii/xtag-cml.mkii + texmf-dist/tex/context/base/mkii/xtag-ent.mkii + texmf-dist/tex/context/base/mkii/xtag-exp.mkii + texmf-dist/tex/context/base/mkii/xtag-ext.mkii + texmf-dist/tex/context/base/mkii/xtag-hyp.mkii + texmf-dist/tex/context/base/mkii/xtag-ini.mkii + texmf-dist/tex/context/base/mkii/xtag-map.mkii + texmf-dist/tex/context/base/mkii/xtag-mea.mkii + texmf-dist/tex/context/base/mkii/xtag-meb.mkii + texmf-dist/tex/context/base/mkii/xtag-mec.mkii + texmf-dist/tex/context/base/mkii/xtag-meh.mkii + texmf-dist/tex/context/base/mkii/xtag-men.mkii + texmf-dist/tex/context/base/mkii/xtag-meo.mkii + texmf-dist/tex/context/base/mkii/xtag-mer.mkii + texmf-dist/tex/context/base/mkii/xtag-mmc.mkii + texmf-dist/tex/context/base/mkii/xtag-mml.mkii + texmf-dist/tex/context/base/mkii/xtag-mmp.mkii + texmf-dist/tex/context/base/mkii/xtag-mxa.mkii + texmf-dist/tex/context/base/mkii/xtag-mxb.mkii + texmf-dist/tex/context/base/mkii/xtag-mxc.mkii + texmf-dist/tex/context/base/mkii/xtag-mxh.mkii + texmf-dist/tex/context/base/mkii/xtag-mxn.mkii + texmf-dist/tex/context/base/mkii/xtag-mxo.mkii + texmf-dist/tex/context/base/mkii/xtag-mxr.mkii + texmf-dist/tex/context/base/mkii/xtag-pml.mkii + texmf-dist/tex/context/base/mkii/xtag-pmu.mkii + texmf-dist/tex/context/base/mkii/xtag-pre.mkii + texmf-dist/tex/context/base/mkii/xtag-prs.mkii + texmf-dist/tex/context/base/mkii/xtag-raw.mkii + texmf-dist/tex/context/base/mkii/xtag-rng.mkii + texmf-dist/tex/context/base/mkii/xtag-run.mkii + texmf-dist/tex/context/base/mkii/xtag-stk.mkii + texmf-dist/tex/context/base/mkii/xtag-utf.mkii + texmf-dist/tex/context/base/mkii/xtag-xsd.mkii + texmf-dist/tex/context/base/mkii/xtag-xsl.mkii + texmf-dist/tex/context/base/mkiv/anch-bar.mkiv + texmf-dist/tex/context/base/mkiv/anch-bck.mkvi + texmf-dist/tex/context/base/mkiv/anch-pgr.lua + texmf-dist/tex/context/base/mkiv/anch-pgr.mkiv + texmf-dist/tex/context/base/mkiv/anch-pos.lua + texmf-dist/tex/context/base/mkiv/anch-pos.mkiv + texmf-dist/tex/context/base/mkiv/anch-snc.lua + texmf-dist/tex/context/base/mkiv/anch-snc.mkiv + texmf-dist/tex/context/base/mkiv/anch-tab.mkiv + texmf-dist/tex/context/base/mkiv/attr-col.lua + texmf-dist/tex/context/base/mkiv/attr-col.mkiv + texmf-dist/tex/context/base/mkiv/attr-eff.lua + texmf-dist/tex/context/base/mkiv/attr-eff.mkiv + texmf-dist/tex/context/base/mkiv/attr-ini.lua + texmf-dist/tex/context/base/mkiv/attr-ini.mkiv + texmf-dist/tex/context/base/mkiv/attr-lay.lua + texmf-dist/tex/context/base/mkiv/attr-lay.mkiv + texmf-dist/tex/context/base/mkiv/attr-mkr.lua + texmf-dist/tex/context/base/mkiv/attr-mkr.mkiv + texmf-dist/tex/context/base/mkiv/attr-neg.lua + texmf-dist/tex/context/base/mkiv/attr-neg.mkiv + texmf-dist/tex/context/base/mkiv/back-exp.lua + texmf-dist/tex/context/base/mkiv/back-exp.mkiv + texmf-dist/tex/context/base/mkiv/back-ini.lua + texmf-dist/tex/context/base/mkiv/back-ini.mkiv + texmf-dist/tex/context/base/mkiv/back-pdf.lua + texmf-dist/tex/context/base/mkiv/back-pdf.mkiv + texmf-dist/tex/context/base/mkiv/back-pdp.lua + texmf-dist/tex/context/base/mkiv/back-res.lua + texmf-dist/tex/context/base/mkiv/back-res.mkiv + texmf-dist/tex/context/base/mkiv/back-swf.mkiv + texmf-dist/tex/context/base/mkiv/back-trf.lua + texmf-dist/tex/context/base/mkiv/back-trf.mkiv + texmf-dist/tex/context/base/mkiv/back-u3d.mkiv + texmf-dist/tex/context/base/mkiv/bibl-bib.lua + texmf-dist/tex/context/base/mkiv/bibl-bib.mkiv + texmf-dist/tex/context/base/mkiv/bibl-tra.lua + texmf-dist/tex/context/base/mkiv/bibl-tra.mkiv + texmf-dist/tex/context/base/mkiv/bibl-tst.lua + texmf-dist/tex/context/base/mkiv/blob-ini.lua + texmf-dist/tex/context/base/mkiv/blob-ini.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-default.lua + texmf-dist/tex/context/base/mkiv/buff-imp-default.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-escaped.lua + texmf-dist/tex/context/base/mkiv/buff-imp-escaped.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-lua.lua + texmf-dist/tex/context/base/mkiv/buff-imp-lua.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-mp.lua + texmf-dist/tex/context/base/mkiv/buff-imp-mp.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-nested.lua + texmf-dist/tex/context/base/mkiv/buff-imp-nested.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-parsed-xml.lua + texmf-dist/tex/context/base/mkiv/buff-imp-parsed-xml.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-tex.lua + texmf-dist/tex/context/base/mkiv/buff-imp-tex.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-xml.lua + texmf-dist/tex/context/base/mkiv/buff-imp-xml.mkiv + texmf-dist/tex/context/base/mkiv/buff-ini.lua + texmf-dist/tex/context/base/mkiv/buff-ini.mkiv + texmf-dist/tex/context/base/mkiv/buff-par.lua + texmf-dist/tex/context/base/mkiv/buff-par.mkvi + texmf-dist/tex/context/base/mkiv/buff-ver.lua + texmf-dist/tex/context/base/mkiv/buff-ver.mkiv + texmf-dist/tex/context/base/mkiv/bxml-apa.mkiv + texmf-dist/tex/context/base/mkiv/catc-act.mkiv + texmf-dist/tex/context/base/mkiv/catc-ctx.mkiv + texmf-dist/tex/context/base/mkiv/catc-def.mkiv + texmf-dist/tex/context/base/mkiv/catc-ini.lua + texmf-dist/tex/context/base/mkiv/catc-ini.mkiv + texmf-dist/tex/context/base/mkiv/catc-sym.mkiv + texmf-dist/tex/context/base/mkiv/catc-xml.mkiv + texmf-dist/tex/context/base/mkiv/char-act.mkiv + texmf-dist/tex/context/base/mkiv/char-cjk.lua + texmf-dist/tex/context/base/mkiv/char-def.lua + texmf-dist/tex/context/base/mkiv/char-emj.lua + texmf-dist/tex/context/base/mkiv/char-enc.lua + texmf-dist/tex/context/base/mkiv/char-enc.mkiv + texmf-dist/tex/context/base/mkiv/char-ent.lua + texmf-dist/tex/context/base/mkiv/char-fio.lua + texmf-dist/tex/context/base/mkiv/char-ini.lua + texmf-dist/tex/context/base/mkiv/char-ini.mkiv + texmf-dist/tex/context/base/mkiv/char-map.lua + texmf-dist/tex/context/base/mkiv/char-prv.lua + texmf-dist/tex/context/base/mkiv/char-tex.lua + texmf-dist/tex/context/base/mkiv/char-utf.lua + texmf-dist/tex/context/base/mkiv/char-utf.mkiv + texmf-dist/tex/context/base/mkiv/chem-ini.lua + texmf-dist/tex/context/base/mkiv/chem-ini.mkiv + texmf-dist/tex/context/base/mkiv/chem-str.lua + texmf-dist/tex/context/base/mkiv/chem-str.mkiv + texmf-dist/tex/context/base/mkiv/cldf-bas.lua + texmf-dist/tex/context/base/mkiv/cldf-bas.mkiv + texmf-dist/tex/context/base/mkiv/cldf-com.lua + texmf-dist/tex/context/base/mkiv/cldf-com.mkiv + texmf-dist/tex/context/base/mkiv/cldf-ini.lua + texmf-dist/tex/context/base/mkiv/cldf-ini.mkiv + texmf-dist/tex/context/base/mkiv/cldf-int.lua + texmf-dist/tex/context/base/mkiv/cldf-int.mkiv + texmf-dist/tex/context/base/mkiv/cldf-prs.lua + texmf-dist/tex/context/base/mkiv/cldf-scn.lua + texmf-dist/tex/context/base/mkiv/cldf-stp.lua + texmf-dist/tex/context/base/mkiv/cldf-ver.lua + texmf-dist/tex/context/base/mkiv/cldf-ver.mkiv + texmf-dist/tex/context/base/mkiv/colo-ext.mkiv + texmf-dist/tex/context/base/mkiv/colo-grp.mkiv + texmf-dist/tex/context/base/mkiv/colo-icc.lua + texmf-dist/tex/context/base/mkiv/colo-imp-crayola.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-dem.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-ema.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-rainbow.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-ral.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-rgb.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-solarized.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-svg.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-x11.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-xwi.mkiv + texmf-dist/tex/context/base/mkiv/colo-ini.lua + texmf-dist/tex/context/base/mkiv/colo-ini.mkiv + texmf-dist/tex/context/base/mkiv/colo-run.lua + texmf-dist/tex/context/base/mkiv/colo-run.mkiv + texmf-dist/tex/context/base/mkiv/cont-cs.mkiv + texmf-dist/tex/context/base/mkiv/cont-de.mkiv + texmf-dist/tex/context/base/mkiv/cont-en.mkiv + texmf-dist/tex/context/base/mkiv/cont-fil.mkiv + texmf-dist/tex/context/base/mkiv/cont-fr.mkiv + texmf-dist/tex/context/base/mkiv/cont-gb.mkiv + texmf-dist/tex/context/base/mkiv/cont-it.mkiv + texmf-dist/tex/context/base/mkiv/cont-log.mkiv + texmf-dist/tex/context/base/mkiv/cont-new.mkiv + texmf-dist/tex/context/base/mkiv/cont-nl.mkiv + texmf-dist/tex/context/base/mkiv/cont-nop.mkiv + texmf-dist/tex/context/base/mkiv/cont-pe.mkiv + texmf-dist/tex/context/base/mkiv/cont-ro.mkiv + texmf-dist/tex/context/base/mkiv/cont-run.lua + texmf-dist/tex/context/base/mkiv/cont-run.mkiv + texmf-dist/tex/context/base/mkiv/cont-yes.mkiv + texmf-dist/tex/context/base/mkiv/context-base.lmx + texmf-dist/tex/context/base/mkiv/context-error.lmx + texmf-dist/tex/context/base/mkiv/context-fonttest.lmx + texmf-dist/tex/context/base/mkiv/context-help.lmx + texmf-dist/tex/context/base/mkiv/context-lmtx-error.pdf + texmf-dist/tex/context/base/mkiv/context-lmtx-error.tex + texmf-dist/tex/context/base/mkiv/context-performance.tex + texmf-dist/tex/context/base/mkiv/context-timing.lmx + texmf-dist/tex/context/base/mkiv/context-todo.tex + texmf-dist/tex/context/base/mkiv/context.css + texmf-dist/tex/context/base/mkiv/context.mkiv + texmf-dist/tex/context/base/mkiv/core-con.lua + texmf-dist/tex/context/base/mkiv/core-con.mkiv + texmf-dist/tex/context/base/mkiv/core-ctx.ctx + texmf-dist/tex/context/base/mkiv/core-ctx.lua + texmf-dist/tex/context/base/mkiv/core-ctx.mkiv + texmf-dist/tex/context/base/mkiv/core-dat.lua + texmf-dist/tex/context/base/mkiv/core-dat.mkiv + texmf-dist/tex/context/base/mkiv/core-def.mkiv + texmf-dist/tex/context/base/mkiv/core-env.lua + texmf-dist/tex/context/base/mkiv/core-env.mkiv + texmf-dist/tex/context/base/mkiv/core-ini.mkiv + texmf-dist/tex/context/base/mkiv/core-sys.lua + texmf-dist/tex/context/base/mkiv/core-sys.mkiv + texmf-dist/tex/context/base/mkiv/core-two.lua + texmf-dist/tex/context/base/mkiv/core-two.mkiv + texmf-dist/tex/context/base/mkiv/core-uti.lua + texmf-dist/tex/context/base/mkiv/core-uti.mkiv + texmf-dist/tex/context/base/mkiv/data-aux.lua + texmf-dist/tex/context/base/mkiv/data-bin.lua + texmf-dist/tex/context/base/mkiv/data-con.lua + texmf-dist/tex/context/base/mkiv/data-crl.lua + texmf-dist/tex/context/base/mkiv/data-ctx.lua + texmf-dist/tex/context/base/mkiv/data-env.lua + texmf-dist/tex/context/base/mkiv/data-exp.lua + texmf-dist/tex/context/base/mkiv/data-fil.lua + texmf-dist/tex/context/base/mkiv/data-gen.lua + texmf-dist/tex/context/base/mkiv/data-ini.lua + texmf-dist/tex/context/base/mkiv/data-inp.lua + texmf-dist/tex/context/base/mkiv/data-lst.lua + texmf-dist/tex/context/base/mkiv/data-lua.lua + texmf-dist/tex/context/base/mkiv/data-met.lua + texmf-dist/tex/context/base/mkiv/data-out.lua + texmf-dist/tex/context/base/mkiv/data-pre.lua + texmf-dist/tex/context/base/mkiv/data-res.lua + texmf-dist/tex/context/base/mkiv/data-sch.lua + texmf-dist/tex/context/base/mkiv/data-tex.lua + texmf-dist/tex/context/base/mkiv/data-tmf.lua + texmf-dist/tex/context/base/mkiv/data-tmp.lua + texmf-dist/tex/context/base/mkiv/data-tre.lua + texmf-dist/tex/context/base/mkiv/data-use.lua + texmf-dist/tex/context/base/mkiv/data-vir.lua + texmf-dist/tex/context/base/mkiv/data-zip.lua + texmf-dist/tex/context/base/mkiv/driv-ini.lua + texmf-dist/tex/context/base/mkiv/driv-ini.mkiv + texmf-dist/tex/context/base/mkiv/enco-ini.mkiv + texmf-dist/tex/context/base/mkiv/example.rng + texmf-dist/tex/context/base/mkiv/export-example.css + texmf-dist/tex/context/base/mkiv/export-example.rng + texmf-dist/tex/context/base/mkiv/export-example.tex + texmf-dist/tex/context/base/mkiv/file-ini.lua + texmf-dist/tex/context/base/mkiv/file-ini.mkvi + texmf-dist/tex/context/base/mkiv/file-job.lua + texmf-dist/tex/context/base/mkiv/file-job.mkvi + texmf-dist/tex/context/base/mkiv/file-lib.lua + texmf-dist/tex/context/base/mkiv/file-lib.mkiv + texmf-dist/tex/context/base/mkiv/file-mod.lua + texmf-dist/tex/context/base/mkiv/file-mod.mkvi + texmf-dist/tex/context/base/mkiv/file-res.lua + texmf-dist/tex/context/base/mkiv/file-res.mkvi + texmf-dist/tex/context/base/mkiv/file-syn.lua + texmf-dist/tex/context/base/mkiv/file-syn.mkvi + texmf-dist/tex/context/base/mkiv/font-afk.lua + texmf-dist/tex/context/base/mkiv/font-age.lua + texmf-dist/tex/context/base/mkiv/font-agl.lua + texmf-dist/tex/context/base/mkiv/font-aux.lua + texmf-dist/tex/context/base/mkiv/font-aux.mkvi + texmf-dist/tex/context/base/mkiv/font-cff.lua + texmf-dist/tex/context/base/mkiv/font-cft.lua + texmf-dist/tex/context/base/mkiv/font-chk.lua + texmf-dist/tex/context/base/mkiv/font-chk.mkiv + texmf-dist/tex/context/base/mkiv/font-cid.lua + texmf-dist/tex/context/base/mkiv/font-col.lua + texmf-dist/tex/context/base/mkiv/font-col.mkvi + texmf-dist/tex/context/base/mkiv/font-con.lua + texmf-dist/tex/context/base/mkiv/font-ctx.lua + texmf-dist/tex/context/base/mkiv/font-def.lua + texmf-dist/tex/context/base/mkiv/font-dsp.lua + texmf-dist/tex/context/base/mkiv/font-emp.mkvi + texmf-dist/tex/context/base/mkiv/font-enc.lua + texmf-dist/tex/context/base/mkiv/font-enh.lua + texmf-dist/tex/context/base/mkiv/font-fbk.lua + texmf-dist/tex/context/base/mkiv/font-fea.mkvi + texmf-dist/tex/context/base/mkiv/font-fil.mkvi + texmf-dist/tex/context/base/mkiv/font-gds.mkvi + texmf-dist/tex/context/base/mkiv/font-hsh.lua + texmf-dist/tex/context/base/mkiv/font-imp-combining.lua + texmf-dist/tex/context/base/mkiv/font-imp-dimensions.lua + texmf-dist/tex/context/base/mkiv/font-imp-effects.lua + texmf-dist/tex/context/base/mkiv/font-imp-italics.lua + texmf-dist/tex/context/base/mkiv/font-imp-ligatures.lua + texmf-dist/tex/context/base/mkiv/font-imp-math.lua + texmf-dist/tex/context/base/mkiv/font-imp-notused.lua + texmf-dist/tex/context/base/mkiv/font-imp-properties.lua + texmf-dist/tex/context/base/mkiv/font-imp-quality.lua + texmf-dist/tex/context/base/mkiv/font-imp-reorder.lua + texmf-dist/tex/context/base/mkiv/font-imp-spacekerns.lua + texmf-dist/tex/context/base/mkiv/font-imp-tex.lua + texmf-dist/tex/context/base/mkiv/font-imp-tracing.lua + texmf-dist/tex/context/base/mkiv/font-imp-tweaks.lua + texmf-dist/tex/context/base/mkiv/font-imp-unicode.lua + texmf-dist/tex/context/base/mkiv/font-ini.lua + texmf-dist/tex/context/base/mkiv/font-ini.mkvi + texmf-dist/tex/context/base/mkiv/font-lib.mkvi + texmf-dist/tex/context/base/mkiv/font-lig.lua + texmf-dist/tex/context/base/mkiv/font-log.lua + texmf-dist/tex/context/base/mkiv/font-lua.lua + texmf-dist/tex/context/base/mkiv/font-map.lua + texmf-dist/tex/context/base/mkiv/font-mat.mkvi + texmf-dist/tex/context/base/mkiv/font-mis.lua + texmf-dist/tex/context/base/mkiv/font-mps.lua + texmf-dist/tex/context/base/mkiv/font-nod.lua + texmf-dist/tex/context/base/mkiv/font-ocl.lua + texmf-dist/tex/context/base/mkiv/font-ocm.lua + texmf-dist/tex/context/base/mkiv/font-one.lua + texmf-dist/tex/context/base/mkiv/font-onr.lua + texmf-dist/tex/context/base/mkiv/font-osd.lua + texmf-dist/tex/context/base/mkiv/font-ota.lua + texmf-dist/tex/context/base/mkiv/font-otc.lua + texmf-dist/tex/context/base/mkiv/font-otd.lua + texmf-dist/tex/context/base/mkiv/font-oth.lua + texmf-dist/tex/context/base/mkiv/font-oti.lua + texmf-dist/tex/context/base/mkiv/font-otj.lua + texmf-dist/tex/context/base/mkiv/font-otl.lua + texmf-dist/tex/context/base/mkiv/font-oto.lua + texmf-dist/tex/context/base/mkiv/font-otr.lua + texmf-dist/tex/context/base/mkiv/font-ots.lua + texmf-dist/tex/context/base/mkiv/font-ott.lua + texmf-dist/tex/context/base/mkiv/font-oup.lua + texmf-dist/tex/context/base/mkiv/font-pat.lua + texmf-dist/tex/context/base/mkiv/font-pre.mkiv + texmf-dist/tex/context/base/mkiv/font-prv.lua + texmf-dist/tex/context/base/mkiv/font-run.mkiv + texmf-dist/tex/context/base/mkiv/font-sel.lua + texmf-dist/tex/context/base/mkiv/font-sel.mkvi + texmf-dist/tex/context/base/mkiv/font-set.mkvi + texmf-dist/tex/context/base/mkiv/font-shp.lua + texmf-dist/tex/context/base/mkiv/font-sol.lua + texmf-dist/tex/context/base/mkiv/font-sol.mkvi + texmf-dist/tex/context/base/mkiv/font-sty.mkvi + texmf-dist/tex/context/base/mkiv/font-sym.mkvi + texmf-dist/tex/context/base/mkiv/font-syn.lua + texmf-dist/tex/context/base/mkiv/font-tfm.lua + texmf-dist/tex/context/base/mkiv/font-tpk.lua + texmf-dist/tex/context/base/mkiv/font-tra.mkiv + texmf-dist/tex/context/base/mkiv/font-trt.lua + texmf-dist/tex/context/base/mkiv/font-ttf.lua + texmf-dist/tex/context/base/mkiv/font-uni.mkiv + texmf-dist/tex/context/base/mkiv/font-unk.mkiv + texmf-dist/tex/context/base/mkiv/font-var.mkvi + texmf-dist/tex/context/base/mkiv/font-vfc.lua + texmf-dist/tex/context/base/mkiv/font-vir.lua + texmf-dist/tex/context/base/mkiv/font-web.lua + texmf-dist/tex/context/base/mkiv/good-ctx.lua + texmf-dist/tex/context/base/mkiv/good-gen.lua + texmf-dist/tex/context/base/mkiv/good-ini.lua + texmf-dist/tex/context/base/mkiv/good-mth.lua + texmf-dist/tex/context/base/mkiv/grph-bmp.lua + texmf-dist/tex/context/base/mkiv/grph-chk.lua + texmf-dist/tex/context/base/mkiv/grph-con.lua + texmf-dist/tex/context/base/mkiv/grph-epd.lua + texmf-dist/tex/context/base/mkiv/grph-epd.mkiv + texmf-dist/tex/context/base/mkiv/grph-fig.mkiv + texmf-dist/tex/context/base/mkiv/grph-fil.lua + texmf-dist/tex/context/base/mkiv/grph-img.lua + texmf-dist/tex/context/base/mkiv/grph-inc.lua + texmf-dist/tex/context/base/mkiv/grph-inc.mkiv + texmf-dist/tex/context/base/mkiv/grph-mem.lua + texmf-dist/tex/context/base/mkiv/grph-pat.lua + texmf-dist/tex/context/base/mkiv/grph-pat.mkiv + texmf-dist/tex/context/base/mkiv/grph-raw.lua + texmf-dist/tex/context/base/mkiv/grph-raw.mkiv + texmf-dist/tex/context/base/mkiv/grph-rul.lua + texmf-dist/tex/context/base/mkiv/grph-rul.mkiv + texmf-dist/tex/context/base/mkiv/grph-swf.lua + texmf-dist/tex/context/base/mkiv/grph-trf.lua + texmf-dist/tex/context/base/mkiv/grph-trf.mkiv + texmf-dist/tex/context/base/mkiv/grph-u3d.lua + texmf-dist/tex/context/base/mkiv/grph-wnd.lua + texmf-dist/tex/context/base/mkiv/hand-ini.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-example.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-fields.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-highlight.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-print.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-steps.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-videoplayer.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-vplayer.mkiv + texmf-dist/tex/context/base/mkiv/java-ini.lua + texmf-dist/tex/context/base/mkiv/java-ini.mkiv + texmf-dist/tex/context/base/mkiv/l-bit32.lua + texmf-dist/tex/context/base/mkiv/l-boolean.lua + texmf-dist/tex/context/base/mkiv/l-dir.lua + texmf-dist/tex/context/base/mkiv/l-file.lua + texmf-dist/tex/context/base/mkiv/l-function.lua + texmf-dist/tex/context/base/mkiv/l-gzip.lua + texmf-dist/tex/context/base/mkiv/l-io.lua + texmf-dist/tex/context/base/mkiv/l-lpeg.lua + texmf-dist/tex/context/base/mkiv/l-lua.lua + texmf-dist/tex/context/base/mkiv/l-macro-imp-optimize.lua + texmf-dist/tex/context/base/mkiv/l-macro.lua + texmf-dist/tex/context/base/mkiv/l-math.lua + texmf-dist/tex/context/base/mkiv/l-md5.lua + texmf-dist/tex/context/base/mkiv/l-number.lua + texmf-dist/tex/context/base/mkiv/l-os.lua + texmf-dist/tex/context/base/mkiv/l-package.lua + texmf-dist/tex/context/base/mkiv/l-pdfview.lua + texmf-dist/tex/context/base/mkiv/l-sandbox.lua + texmf-dist/tex/context/base/mkiv/l-set.lua + texmf-dist/tex/context/base/mkiv/l-sha.lua + texmf-dist/tex/context/base/mkiv/l-string.lua + texmf-dist/tex/context/base/mkiv/l-table.lua + texmf-dist/tex/context/base/mkiv/l-unicode.lua + texmf-dist/tex/context/base/mkiv/l-url.lua + texmf-dist/tex/context/base/mkiv/l-xml.lua + texmf-dist/tex/context/base/mkiv/lang-cnt.lua + texmf-dist/tex/context/base/mkiv/lang-def.lua + texmf-dist/tex/context/base/mkiv/lang-def.mkiv + texmf-dist/tex/context/base/mkiv/lang-dis.lua + texmf-dist/tex/context/base/mkiv/lang-exc.lua + texmf-dist/tex/context/base/mkiv/lang-exp.lua + texmf-dist/tex/context/base/mkiv/lang-frd.mkiv + texmf-dist/tex/context/base/mkiv/lang-frq-de.lua + texmf-dist/tex/context/base/mkiv/lang-frq-en.lua + texmf-dist/tex/context/base/mkiv/lang-frq-nl.lua + texmf-dist/tex/context/base/mkiv/lang-frq-pt.lua + texmf-dist/tex/context/base/mkiv/lang-frq.mkiv + texmf-dist/tex/context/base/mkiv/lang-hyp.lua + texmf-dist/tex/context/base/mkiv/lang-hyp.mkiv + texmf-dist/tex/context/base/mkiv/lang-imp-serbian.lua + texmf-dist/tex/context/base/mkiv/lang-ini.lua + texmf-dist/tex/context/base/mkiv/lang-ini.mkiv + texmf-dist/tex/context/base/mkiv/lang-lab.lua + texmf-dist/tex/context/base/mkiv/lang-lab.mkiv + texmf-dist/tex/context/base/mkiv/lang-mis.mkiv + texmf-dist/tex/context/base/mkiv/lang-rep.lua + texmf-dist/tex/context/base/mkiv/lang-rep.mkiv + texmf-dist/tex/context/base/mkiv/lang-spa.mkiv + texmf-dist/tex/context/base/mkiv/lang-tra.lua + texmf-dist/tex/context/base/mkiv/lang-tra.mkiv + texmf-dist/tex/context/base/mkiv/lang-txt.lua + texmf-dist/tex/context/base/mkiv/lang-url.lua + texmf-dist/tex/context/base/mkiv/lang-url.mkiv + texmf-dist/tex/context/base/mkiv/lang-wrd.lua + texmf-dist/tex/context/base/mkiv/lang-wrd.mkiv + texmf-dist/tex/context/base/mkiv/layo-ini.lua + texmf-dist/tex/context/base/mkiv/layo-ini.mkiv + texmf-dist/tex/context/base/mkiv/libs-ini.lua + texmf-dist/tex/context/base/mkiv/lpdf-ano.lua + texmf-dist/tex/context/base/mkiv/lpdf-aux.lua + texmf-dist/tex/context/base/mkiv/lpdf-col.lua + texmf-dist/tex/context/base/mkiv/lpdf-enc.lua + texmf-dist/tex/context/base/mkiv/lpdf-eng.lua + texmf-dist/tex/context/base/mkiv/lpdf-epa.lua + texmf-dist/tex/context/base/mkiv/lpdf-fld.lua + texmf-dist/tex/context/base/mkiv/lpdf-fmt.lua + texmf-dist/tex/context/base/mkiv/lpdf-fnt.lua + texmf-dist/tex/context/base/mkiv/lpdf-grp.lua + texmf-dist/tex/context/base/mkiv/lpdf-ini.lua + texmf-dist/tex/context/base/mkiv/lpdf-mis.lua + texmf-dist/tex/context/base/mkiv/lpdf-mov.lua + texmf-dist/tex/context/base/mkiv/lpdf-nod.lua + texmf-dist/tex/context/base/mkiv/lpdf-pda.xml + texmf-dist/tex/context/base/mkiv/lpdf-pde.lua + texmf-dist/tex/context/base/mkiv/lpdf-pdx.xml + texmf-dist/tex/context/base/mkiv/lpdf-pua.xml + texmf-dist/tex/context/base/mkiv/lpdf-ren.lua + texmf-dist/tex/context/base/mkiv/lpdf-res.lua + texmf-dist/tex/context/base/mkiv/lpdf-swf.lua + texmf-dist/tex/context/base/mkiv/lpdf-tag.lua + texmf-dist/tex/context/base/mkiv/lpdf-u3d.lua + texmf-dist/tex/context/base/mkiv/lpdf-vfc.lua + texmf-dist/tex/context/base/mkiv/lpdf-wid.lua + texmf-dist/tex/context/base/mkiv/lpdf-xmp.lua + texmf-dist/tex/context/base/mkiv/luat-bas.mkiv + texmf-dist/tex/context/base/mkiv/luat-bwc.lua + texmf-dist/tex/context/base/mkiv/luat-cbk.lua + texmf-dist/tex/context/base/mkiv/luat-cnf.lua + texmf-dist/tex/context/base/mkiv/luat-cod.lua + texmf-dist/tex/context/base/mkiv/luat-cod.mkiv + texmf-dist/tex/context/base/mkiv/luat-env.lua + texmf-dist/tex/context/base/mkiv/luat-exe.lua + texmf-dist/tex/context/base/mkiv/luat-fio.lua + texmf-dist/tex/context/base/mkiv/luat-fmt.lua + texmf-dist/tex/context/base/mkiv/luat-ini.lua + texmf-dist/tex/context/base/mkiv/luat-ini.mkiv + texmf-dist/tex/context/base/mkiv/luat-iop.lua + texmf-dist/tex/context/base/mkiv/luat-lib.mkiv + texmf-dist/tex/context/base/mkiv/luat-log.lua + texmf-dist/tex/context/base/mkiv/luat-lua.lua + texmf-dist/tex/context/base/mkiv/luat-mac.lua + texmf-dist/tex/context/base/mkiv/luat-run.lua + texmf-dist/tex/context/base/mkiv/luat-soc.mkiv + texmf-dist/tex/context/base/mkiv/luat-sta.lua + texmf-dist/tex/context/base/mkiv/luat-sto.lua + texmf-dist/tex/context/base/mkiv/luat-usr.lua + texmf-dist/tex/context/base/mkiv/luat-usr.mkiv + texmf-dist/tex/context/base/mkiv/lxml-aux.lua + texmf-dist/tex/context/base/mkiv/lxml-css.lua + texmf-dist/tex/context/base/mkiv/lxml-css.mkiv + texmf-dist/tex/context/base/mkiv/lxml-ctx.lua + texmf-dist/tex/context/base/mkiv/lxml-ctx.mkiv + texmf-dist/tex/context/base/mkiv/lxml-dir.lua + texmf-dist/tex/context/base/mkiv/lxml-ent.lua + texmf-dist/tex/context/base/mkiv/lxml-inf.lua + texmf-dist/tex/context/base/mkiv/lxml-ini.lua + texmf-dist/tex/context/base/mkiv/lxml-ini.mkiv + texmf-dist/tex/context/base/mkiv/lxml-lpt.lua + texmf-dist/tex/context/base/mkiv/lxml-mis.lua + texmf-dist/tex/context/base/mkiv/lxml-sor.lua + texmf-dist/tex/context/base/mkiv/lxml-sor.mkiv + texmf-dist/tex/context/base/mkiv/lxml-tab.lua + texmf-dist/tex/context/base/mkiv/lxml-tex.lua + texmf-dist/tex/context/base/mkiv/lxml-xml.lua + texmf-dist/tex/context/base/mkiv/m-fonts-plugins.mkiv + texmf-dist/tex/context/base/mkiv/m-newcolumnsets.mkiv + texmf-dist/tex/context/base/mkiv/m-oldbibtex.mkiv + texmf-dist/tex/context/base/mkiv/math-acc.mkvi + texmf-dist/tex/context/base/mkiv/math-act.lua + texmf-dist/tex/context/base/mkiv/math-ali.mkiv + texmf-dist/tex/context/base/mkiv/math-arr.mkiv + texmf-dist/tex/context/base/mkiv/math-def.mkiv + texmf-dist/tex/context/base/mkiv/math-del.mkiv + texmf-dist/tex/context/base/mkiv/math-dim.lua + texmf-dist/tex/context/base/mkiv/math-dir.lua + texmf-dist/tex/context/base/mkiv/math-dis.mkiv + texmf-dist/tex/context/base/mkiv/math-ext.lua + texmf-dist/tex/context/base/mkiv/math-fbk.lua + texmf-dist/tex/context/base/mkiv/math-fen.mkiv + texmf-dist/tex/context/base/mkiv/math-for.mkiv + texmf-dist/tex/context/base/mkiv/math-frc.lua + texmf-dist/tex/context/base/mkiv/math-frc.mkiv + texmf-dist/tex/context/base/mkiv/math-inc.lua + texmf-dist/tex/context/base/mkiv/math-inc.mkiv + texmf-dist/tex/context/base/mkiv/math-ini.lua + texmf-dist/tex/context/base/mkiv/math-ini.mkiv + texmf-dist/tex/context/base/mkiv/math-inl.mkiv + texmf-dist/tex/context/base/mkiv/math-int.mkiv + texmf-dist/tex/context/base/mkiv/math-map.lua + texmf-dist/tex/context/base/mkiv/math-mis.mkiv + texmf-dist/tex/context/base/mkiv/math-noa.lua + texmf-dist/tex/context/base/mkiv/math-pln.mkiv + texmf-dist/tex/context/base/mkiv/math-rad.mkvi + texmf-dist/tex/context/base/mkiv/math-ren.lua + texmf-dist/tex/context/base/mkiv/math-scr.mkiv + texmf-dist/tex/context/base/mkiv/math-spa.lua + texmf-dist/tex/context/base/mkiv/math-stc.mkvi + texmf-dist/tex/context/base/mkiv/math-tag.lua + texmf-dist/tex/context/base/mkiv/math-ttv.lua + texmf-dist/tex/context/base/mkiv/math-vfu.lua + texmf-dist/tex/context/base/mkiv/meta-blb.lua + texmf-dist/tex/context/base/mkiv/meta-blb.mkiv + texmf-dist/tex/context/base/mkiv/meta-fig.mkiv + texmf-dist/tex/context/base/mkiv/meta-fnt.lua + texmf-dist/tex/context/base/mkiv/meta-fnt.mkiv + texmf-dist/tex/context/base/mkiv/meta-fun.lua + texmf-dist/tex/context/base/mkiv/meta-fun.mkiv + texmf-dist/tex/context/base/mkiv/meta-grd.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-clp.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-dum.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-fen.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-grid.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-mat.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-mis.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-nav.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-outlines.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-pre.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-tab.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-txt.mkiv + texmf-dist/tex/context/base/mkiv/meta-ini.lua + texmf-dist/tex/context/base/mkiv/meta-ini.mkiv + texmf-dist/tex/context/base/mkiv/meta-lua.lua + texmf-dist/tex/context/base/mkiv/meta-lua.mkiv + texmf-dist/tex/context/base/mkiv/meta-nod.lua + texmf-dist/tex/context/base/mkiv/meta-nod.mkiv + texmf-dist/tex/context/base/mkiv/meta-pag.mkiv + texmf-dist/tex/context/base/mkiv/meta-pdf.lua + texmf-dist/tex/context/base/mkiv/meta-pdf.mkiv + texmf-dist/tex/context/base/mkiv/meta-pdh.lua + texmf-dist/tex/context/base/mkiv/meta-pdh.mkiv + texmf-dist/tex/context/base/mkiv/meta-tex.lua + texmf-dist/tex/context/base/mkiv/meta-tex.mkiv + texmf-dist/tex/context/base/mkiv/meta-xml.mkiv + texmf-dist/tex/context/base/mkiv/mlib-ctx.lua + texmf-dist/tex/context/base/mkiv/mlib-ctx.mkiv + texmf-dist/tex/context/base/mkiv/mlib-fio.lua + texmf-dist/tex/context/base/mkiv/mlib-int.lua + texmf-dist/tex/context/base/mkiv/mlib-lmp.lua + texmf-dist/tex/context/base/mkiv/mlib-lua.lua + texmf-dist/tex/context/base/mkiv/mlib-mpf.lua + texmf-dist/tex/context/base/mkiv/mlib-pdf.lua + texmf-dist/tex/context/base/mkiv/mlib-pdf.mkiv + texmf-dist/tex/context/base/mkiv/mlib-pps.lua + texmf-dist/tex/context/base/mkiv/mlib-pps.mkiv + texmf-dist/tex/context/base/mkiv/mlib-run.lua + texmf-dist/tex/context/base/mkiv/mtx-context-arrange.tex + texmf-dist/tex/context/base/mkiv/mtx-context-combine.tex + texmf-dist/tex/context/base/mkiv/mtx-context-common.tex + texmf-dist/tex/context/base/mkiv/mtx-context-compare.tex + texmf-dist/tex/context/base/mkiv/mtx-context-copy.tex + texmf-dist/tex/context/base/mkiv/mtx-context-domotica.tex + texmf-dist/tex/context/base/mkiv/mtx-context-fonts.tex + texmf-dist/tex/context/base/mkiv/mtx-context-ideas.tex + texmf-dist/tex/context/base/mkiv/mtx-context-listing.tex + texmf-dist/tex/context/base/mkiv/mtx-context-meaning.tex + texmf-dist/tex/context/base/mkiv/mtx-context-module.tex + texmf-dist/tex/context/base/mkiv/mtx-context-precache.tex + texmf-dist/tex/context/base/mkiv/mtx-context-select.tex + texmf-dist/tex/context/base/mkiv/mtx-context-setups.tex + texmf-dist/tex/context/base/mkiv/mtx-context-sql.tex + texmf-dist/tex/context/base/mkiv/mtx-context-timing.tex + texmf-dist/tex/context/base/mkiv/mtx-context-trim.tex + texmf-dist/tex/context/base/mkiv/mtx-context-xml.tex + texmf-dist/tex/context/base/mkiv/mult-aux.lua + texmf-dist/tex/context/base/mkiv/mult-aux.mkiv + texmf-dist/tex/context/base/mkiv/mult-chk.lua + texmf-dist/tex/context/base/mkiv/mult-chk.mkiv + texmf-dist/tex/context/base/mkiv/mult-def.lua + texmf-dist/tex/context/base/mkiv/mult-def.mkiv + texmf-dist/tex/context/base/mkiv/mult-dim.mkvi + texmf-dist/tex/context/base/mkiv/mult-fmt.lua + texmf-dist/tex/context/base/mkiv/mult-fun.lua + texmf-dist/tex/context/base/mkiv/mult-ini.lua + texmf-dist/tex/context/base/mkiv/mult-ini.mkiv + texmf-dist/tex/context/base/mkiv/mult-low.lua + texmf-dist/tex/context/base/mkiv/mult-mes.lua + texmf-dist/tex/context/base/mkiv/mult-mps.lua + texmf-dist/tex/context/base/mkiv/mult-prm.lua + texmf-dist/tex/context/base/mkiv/mult-prm.mkiv + texmf-dist/tex/context/base/mkiv/mult-sys.mkiv + texmf-dist/tex/context/base/mkiv/node-acc.lua + texmf-dist/tex/context/base/mkiv/node-aux.lua + texmf-dist/tex/context/base/mkiv/node-bck.lua + texmf-dist/tex/context/base/mkiv/node-bck.mkiv + texmf-dist/tex/context/base/mkiv/node-dir.lua + texmf-dist/tex/context/base/mkiv/node-fin.lua + texmf-dist/tex/context/base/mkiv/node-fin.mkiv + texmf-dist/tex/context/base/mkiv/node-fnt.lua + texmf-dist/tex/context/base/mkiv/node-gcm.lua + texmf-dist/tex/context/base/mkiv/node-ini.lua + texmf-dist/tex/context/base/mkiv/node-ini.mkiv + texmf-dist/tex/context/base/mkiv/node-ltp.lua + texmf-dist/tex/context/base/mkiv/node-met.lua + texmf-dist/tex/context/base/mkiv/node-mig.lua + texmf-dist/tex/context/base/mkiv/node-mig.mkiv + texmf-dist/tex/context/base/mkiv/node-nut.lua + texmf-dist/tex/context/base/mkiv/node-par.lua + texmf-dist/tex/context/base/mkiv/node-ppt.lua + texmf-dist/tex/context/base/mkiv/node-pro.lua + texmf-dist/tex/context/base/mkiv/node-ref.lua + texmf-dist/tex/context/base/mkiv/node-res.lua + texmf-dist/tex/context/base/mkiv/node-rul.lua + texmf-dist/tex/context/base/mkiv/node-rul.mkiv + texmf-dist/tex/context/base/mkiv/node-scn.lua + texmf-dist/tex/context/base/mkiv/node-ser.lua + texmf-dist/tex/context/base/mkiv/node-shp.lua + texmf-dist/tex/context/base/mkiv/node-snp.lua + texmf-dist/tex/context/base/mkiv/node-syn.lua + texmf-dist/tex/context/base/mkiv/node-tex.lua + texmf-dist/tex/context/base/mkiv/node-tra.lua + texmf-dist/tex/context/base/mkiv/node-tsk.lua + texmf-dist/tex/context/base/mkiv/node-tst.lua + texmf-dist/tex/context/base/mkiv/node-typ.lua + texmf-dist/tex/context/base/mkiv/norm-ctx.mkiv + texmf-dist/tex/context/base/mkiv/pack-bar.mkiv + texmf-dist/tex/context/base/mkiv/pack-bck.mkvi + texmf-dist/tex/context/base/mkiv/pack-box.mkiv + texmf-dist/tex/context/base/mkiv/pack-com.mkiv + texmf-dist/tex/context/base/mkiv/pack-cut.mkiv + texmf-dist/tex/context/base/mkiv/pack-fen.mkiv + texmf-dist/tex/context/base/mkiv/pack-lyr.mkiv + texmf-dist/tex/context/base/mkiv/pack-mis.mkvi + texmf-dist/tex/context/base/mkiv/pack-mrl.mkiv + texmf-dist/tex/context/base/mkiv/pack-obj.lua + texmf-dist/tex/context/base/mkiv/pack-obj.mkiv + texmf-dist/tex/context/base/mkiv/pack-pos.mkiv + texmf-dist/tex/context/base/mkiv/pack-rul.lua + texmf-dist/tex/context/base/mkiv/pack-rul.mkiv + texmf-dist/tex/context/base/mkiv/page-app.mkiv + texmf-dist/tex/context/base/mkiv/page-bck.mkiv + texmf-dist/tex/context/base/mkiv/page-box.mkvi + texmf-dist/tex/context/base/mkiv/page-brk.mkiv + texmf-dist/tex/context/base/mkiv/page-col.mkiv + texmf-dist/tex/context/base/mkiv/page-com.mkiv + texmf-dist/tex/context/base/mkiv/page-cst.lua + texmf-dist/tex/context/base/mkiv/page-cst.mkiv + texmf-dist/tex/context/base/mkiv/page-fac.mkiv + texmf-dist/tex/context/base/mkiv/page-ffl.mkiv + texmf-dist/tex/context/base/mkiv/page-flt.lua + texmf-dist/tex/context/base/mkiv/page-flt.mkiv + texmf-dist/tex/context/base/mkiv/page-flw.mkiv + texmf-dist/tex/context/base/mkiv/page-imp.mkiv + texmf-dist/tex/context/base/mkiv/page-inf.mkiv + texmf-dist/tex/context/base/mkiv/page-ini.lua + texmf-dist/tex/context/base/mkiv/page-ini.mkiv + texmf-dist/tex/context/base/mkiv/page-inj.lua + texmf-dist/tex/context/base/mkiv/page-inj.mkvi + texmf-dist/tex/context/base/mkiv/page-ins.lua + texmf-dist/tex/context/base/mkiv/page-ins.mkiv + texmf-dist/tex/context/base/mkiv/page-lay.mkiv + texmf-dist/tex/context/base/mkiv/page-lin.lua + texmf-dist/tex/context/base/mkiv/page-lin.mkvi + texmf-dist/tex/context/base/mkiv/page-mak.mkvi + texmf-dist/tex/context/base/mkiv/page-mbk.mkvi + texmf-dist/tex/context/base/mkiv/page-mix.lua + texmf-dist/tex/context/base/mkiv/page-mix.mkiv + texmf-dist/tex/context/base/mkiv/page-mrk.mkiv + texmf-dist/tex/context/base/mkiv/page-mul.mkiv + texmf-dist/tex/context/base/mkiv/page-not.mkiv + texmf-dist/tex/context/base/mkiv/page-one.mkiv + texmf-dist/tex/context/base/mkiv/page-otr.lua + texmf-dist/tex/context/base/mkiv/page-otr.mkvi + texmf-dist/tex/context/base/mkiv/page-par.mkiv + texmf-dist/tex/context/base/mkiv/page-pcl.mkiv + texmf-dist/tex/context/base/mkiv/page-plg.mkiv + texmf-dist/tex/context/base/mkiv/page-pst.lua + texmf-dist/tex/context/base/mkiv/page-pst.mkiv + texmf-dist/tex/context/base/mkiv/page-run.lua + texmf-dist/tex/context/base/mkiv/page-run.mkiv + texmf-dist/tex/context/base/mkiv/page-sel.mkvi + texmf-dist/tex/context/base/mkiv/page-set.mkiv + texmf-dist/tex/context/base/mkiv/page-sid.mkiv + texmf-dist/tex/context/base/mkiv/page-smp.mkiv + texmf-dist/tex/context/base/mkiv/page-spr.mkiv + texmf-dist/tex/context/base/mkiv/page-str.lua + texmf-dist/tex/context/base/mkiv/page-str.mkiv + texmf-dist/tex/context/base/mkiv/page-txt.mkvi + texmf-dist/tex/context/base/mkiv/page-var.mkiv + texmf-dist/tex/context/base/mkiv/phys-dim.lua + texmf-dist/tex/context/base/mkiv/phys-dim.mkiv + texmf-dist/tex/context/base/mkiv/publ-aut.lua + texmf-dist/tex/context/base/mkiv/publ-dat.lua + texmf-dist/tex/context/base/mkiv/publ-fnd.lua + texmf-dist/tex/context/base/mkiv/publ-imp-apa.lua + texmf-dist/tex/context/base/mkiv/publ-imp-apa.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-aps.lua + texmf-dist/tex/context/base/mkiv/publ-imp-aps.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-author.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-chicago.lua + texmf-dist/tex/context/base/mkiv/publ-imp-chicago.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-cite.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-commands.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-default.lua + texmf-dist/tex/context/base/mkiv/publ-imp-default.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-definitions.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-list.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-page.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-replacements.lua + texmf-dist/tex/context/base/mkiv/publ-imp-test.bib + texmf-dist/tex/context/base/mkiv/publ-inc.lua + texmf-dist/tex/context/base/mkiv/publ-inc.mkiv + texmf-dist/tex/context/base/mkiv/publ-ini.lua + texmf-dist/tex/context/base/mkiv/publ-ini.mkiv + texmf-dist/tex/context/base/mkiv/publ-jrn.lua + texmf-dist/tex/context/base/mkiv/publ-old.mkiv + texmf-dist/tex/context/base/mkiv/publ-oth.lua + texmf-dist/tex/context/base/mkiv/publ-reg.lua + texmf-dist/tex/context/base/mkiv/publ-sor.lua + texmf-dist/tex/context/base/mkiv/publ-tra.lua + texmf-dist/tex/context/base/mkiv/publ-tra.mkiv + texmf-dist/tex/context/base/mkiv/publ-usr.lua + texmf-dist/tex/context/base/mkiv/publ-xml.mkiv + texmf-dist/tex/context/base/mkiv/regi-8859-1.lua + texmf-dist/tex/context/base/mkiv/regi-8859-10.lua + texmf-dist/tex/context/base/mkiv/regi-8859-11.lua + texmf-dist/tex/context/base/mkiv/regi-8859-13.lua + texmf-dist/tex/context/base/mkiv/regi-8859-14.lua + texmf-dist/tex/context/base/mkiv/regi-8859-15.lua + texmf-dist/tex/context/base/mkiv/regi-8859-16.lua + texmf-dist/tex/context/base/mkiv/regi-8859-2.lua + texmf-dist/tex/context/base/mkiv/regi-8859-3.lua + texmf-dist/tex/context/base/mkiv/regi-8859-4.lua + texmf-dist/tex/context/base/mkiv/regi-8859-5.lua + texmf-dist/tex/context/base/mkiv/regi-8859-6.lua + texmf-dist/tex/context/base/mkiv/regi-8859-7.lua + texmf-dist/tex/context/base/mkiv/regi-8859-8.lua + texmf-dist/tex/context/base/mkiv/regi-8859-9.lua + texmf-dist/tex/context/base/mkiv/regi-cp1250.lua + texmf-dist/tex/context/base/mkiv/regi-cp1251.lua + texmf-dist/tex/context/base/mkiv/regi-cp1252.lua + texmf-dist/tex/context/base/mkiv/regi-cp1253.lua + texmf-dist/tex/context/base/mkiv/regi-cp1254.lua + texmf-dist/tex/context/base/mkiv/regi-cp1255.lua + texmf-dist/tex/context/base/mkiv/regi-cp1256.lua + texmf-dist/tex/context/base/mkiv/regi-cp1257.lua + texmf-dist/tex/context/base/mkiv/regi-cp1258.lua + texmf-dist/tex/context/base/mkiv/regi-demo.lua + texmf-dist/tex/context/base/mkiv/regi-ibm.lua + texmf-dist/tex/context/base/mkiv/regi-ini.lua + texmf-dist/tex/context/base/mkiv/regi-ini.mkiv + texmf-dist/tex/context/base/mkiv/regi-pdfdoc.lua + texmf-dist/tex/context/base/mkiv/scrn-bar.mkvi + texmf-dist/tex/context/base/mkiv/scrn-but.lua + texmf-dist/tex/context/base/mkiv/scrn-but.mkvi + texmf-dist/tex/context/base/mkiv/scrn-fld.lua + texmf-dist/tex/context/base/mkiv/scrn-fld.mkvi + texmf-dist/tex/context/base/mkiv/scrn-hlp.lua + texmf-dist/tex/context/base/mkiv/scrn-hlp.mkvi + texmf-dist/tex/context/base/mkiv/scrn-ini.lua + texmf-dist/tex/context/base/mkiv/scrn-ini.mkvi + texmf-dist/tex/context/base/mkiv/scrn-pag.lua + texmf-dist/tex/context/base/mkiv/scrn-pag.mkvi + texmf-dist/tex/context/base/mkiv/scrn-ref.lua + texmf-dist/tex/context/base/mkiv/scrn-ref.mkvi + texmf-dist/tex/context/base/mkiv/scrn-wid.lua + texmf-dist/tex/context/base/mkiv/scrn-wid.mkvi + texmf-dist/tex/context/base/mkiv/scrp-cjk.lua + texmf-dist/tex/context/base/mkiv/scrp-eth.lua + texmf-dist/tex/context/base/mkiv/scrp-ini.lua + texmf-dist/tex/context/base/mkiv/scrp-ini.mkiv + texmf-dist/tex/context/base/mkiv/scrp-tha.lua + texmf-dist/tex/context/base/mkiv/scrp-tib.lua + texmf-dist/tex/context/base/mkiv/sort-ini.lua + texmf-dist/tex/context/base/mkiv/sort-ini.mkiv + texmf-dist/tex/context/base/mkiv/sort-lan.lua + texmf-dist/tex/context/base/mkiv/spac-ali.lua + texmf-dist/tex/context/base/mkiv/spac-ali.mkiv + texmf-dist/tex/context/base/mkiv/spac-chr.lua + texmf-dist/tex/context/base/mkiv/spac-chr.mkiv + texmf-dist/tex/context/base/mkiv/spac-def.mkiv + texmf-dist/tex/context/base/mkiv/spac-flr.mkiv + texmf-dist/tex/context/base/mkiv/spac-grd.mkiv + texmf-dist/tex/context/base/mkiv/spac-hor.lua + texmf-dist/tex/context/base/mkiv/spac-hor.mkiv + texmf-dist/tex/context/base/mkiv/spac-lin.mkiv + texmf-dist/tex/context/base/mkiv/spac-pag.mkiv + texmf-dist/tex/context/base/mkiv/spac-par.mkiv + texmf-dist/tex/context/base/mkiv/spac-prf.lua + texmf-dist/tex/context/base/mkiv/spac-prf.mkvi + texmf-dist/tex/context/base/mkiv/spac-ver.lua + texmf-dist/tex/context/base/mkiv/spac-ver.mkiv + texmf-dist/tex/context/base/mkiv/status-files.pdf + texmf-dist/tex/context/base/mkiv/status-lua.pdf + texmf-dist/tex/context/base/mkiv/strc-bkm.lua + texmf-dist/tex/context/base/mkiv/strc-bkm.mkiv + texmf-dist/tex/context/base/mkiv/strc-blk.lua + texmf-dist/tex/context/base/mkiv/strc-blk.mkiv + texmf-dist/tex/context/base/mkiv/strc-con.lua + texmf-dist/tex/context/base/mkiv/strc-con.mkvi + texmf-dist/tex/context/base/mkiv/strc-def.mkiv + texmf-dist/tex/context/base/mkiv/strc-des.mkvi + texmf-dist/tex/context/base/mkiv/strc-doc.lua + texmf-dist/tex/context/base/mkiv/strc-doc.mkiv + texmf-dist/tex/context/base/mkiv/strc-enu.mkvi + texmf-dist/tex/context/base/mkiv/strc-flt.lua + texmf-dist/tex/context/base/mkiv/strc-flt.mkvi + texmf-dist/tex/context/base/mkiv/strc-ind.mkiv + texmf-dist/tex/context/base/mkiv/strc-ini.lua + texmf-dist/tex/context/base/mkiv/strc-ini.mkvi + texmf-dist/tex/context/base/mkiv/strc-itm.lua + texmf-dist/tex/context/base/mkiv/strc-itm.mkvi + texmf-dist/tex/context/base/mkiv/strc-lab.mkiv + texmf-dist/tex/context/base/mkiv/strc-lev.lua + texmf-dist/tex/context/base/mkiv/strc-lev.mkvi + texmf-dist/tex/context/base/mkiv/strc-lnt.mkvi + texmf-dist/tex/context/base/mkiv/strc-lst.lua + texmf-dist/tex/context/base/mkiv/strc-lst.mkvi + texmf-dist/tex/context/base/mkiv/strc-mar.lua + texmf-dist/tex/context/base/mkiv/strc-mar.mkiv + texmf-dist/tex/context/base/mkiv/strc-mat.lua + texmf-dist/tex/context/base/mkiv/strc-mat.mkiv + texmf-dist/tex/context/base/mkiv/strc-not.lua + texmf-dist/tex/context/base/mkiv/strc-not.mkvi + texmf-dist/tex/context/base/mkiv/strc-num.lua + texmf-dist/tex/context/base/mkiv/strc-num.mkiv + texmf-dist/tex/context/base/mkiv/strc-pag.lua + texmf-dist/tex/context/base/mkiv/strc-pag.mkiv + texmf-dist/tex/context/base/mkiv/strc-ref.lua + texmf-dist/tex/context/base/mkiv/strc-ref.mkvi + texmf-dist/tex/context/base/mkiv/strc-reg.lua + texmf-dist/tex/context/base/mkiv/strc-reg.mkiv + texmf-dist/tex/context/base/mkiv/strc-ren.mkiv + texmf-dist/tex/context/base/mkiv/strc-rsc.lua + texmf-dist/tex/context/base/mkiv/strc-sbe.mkiv + texmf-dist/tex/context/base/mkiv/strc-sec.mkiv + texmf-dist/tex/context/base/mkiv/strc-syn.lua + texmf-dist/tex/context/base/mkiv/strc-syn.mkiv + texmf-dist/tex/context/base/mkiv/strc-tag.lua + texmf-dist/tex/context/base/mkiv/strc-tag.mkiv + texmf-dist/tex/context/base/mkiv/strc-tnt.mkiv + texmf-dist/tex/context/base/mkiv/strc-usr.lua + texmf-dist/tex/context/base/mkiv/strc-usr.mkiv + texmf-dist/tex/context/base/mkiv/strc-xml.mkiv + texmf-dist/tex/context/base/mkiv/supp-box.lua + texmf-dist/tex/context/base/mkiv/supp-box.mkiv + texmf-dist/tex/context/base/mkiv/supp-dir.mkiv + texmf-dist/tex/context/base/mkiv/supp-mat.mkiv + texmf-dist/tex/context/base/mkiv/supp-ran.lua + texmf-dist/tex/context/base/mkiv/supp-ran.mkiv + texmf-dist/tex/context/base/mkiv/supp-vis.mkiv + texmf-dist/tex/context/base/mkiv/symb-emj.lua + texmf-dist/tex/context/base/mkiv/symb-emj.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-cc.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-cow.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-eur.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-fontawesome.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-jmn.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-mis.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-mvs.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-nav.mkiv + texmf-dist/tex/context/base/mkiv/symb-ini.lua + texmf-dist/tex/context/base/mkiv/symb-ini.mkiv + texmf-dist/tex/context/base/mkiv/symb-run.mkiv + texmf-dist/tex/context/base/mkiv/syst-aux.lua + texmf-dist/tex/context/base/mkiv/syst-aux.mkiv + texmf-dist/tex/context/base/mkiv/syst-cmp.lua + texmf-dist/tex/context/base/mkiv/syst-cmp.mkiv + texmf-dist/tex/context/base/mkiv/syst-con.lua + texmf-dist/tex/context/base/mkiv/syst-con.mkiv + texmf-dist/tex/context/base/mkiv/syst-fnt.mkiv + texmf-dist/tex/context/base/mkiv/syst-ini.mkiv + texmf-dist/tex/context/base/mkiv/syst-lua.lua + texmf-dist/tex/context/base/mkiv/syst-lua.mkiv + texmf-dist/tex/context/base/mkiv/syst-mac.lua + texmf-dist/tex/context/base/mkiv/syst-mes.mkiv + texmf-dist/tex/context/base/mkiv/syst-pln.mkiv + texmf-dist/tex/context/base/mkiv/syst-rtp.mkiv + texmf-dist/tex/context/base/mkiv/tabl-com.mkiv + texmf-dist/tex/context/base/mkiv/tabl-frm.mkiv + texmf-dist/tex/context/base/mkiv/tabl-ltb.mkiv + texmf-dist/tex/context/base/mkiv/tabl-mis.mkiv + texmf-dist/tex/context/base/mkiv/tabl-ntb.mkiv + texmf-dist/tex/context/base/mkiv/tabl-nte.mkiv + texmf-dist/tex/context/base/mkiv/tabl-pln.mkiv + texmf-dist/tex/context/base/mkiv/tabl-tab.mkiv + texmf-dist/tex/context/base/mkiv/tabl-tbl.lua + texmf-dist/tex/context/base/mkiv/tabl-tbl.mkiv + texmf-dist/tex/context/base/mkiv/tabl-tsp.mkiv + texmf-dist/tex/context/base/mkiv/tabl-xnt.mkvi + texmf-dist/tex/context/base/mkiv/tabl-xtb.lua + texmf-dist/tex/context/base/mkiv/tabl-xtb.mkvi + texmf-dist/tex/context/base/mkiv/task-ini.lua + texmf-dist/tex/context/base/mkiv/task-ini.mkiv + texmf-dist/tex/context/base/mkiv/toks-aux.mkiv + texmf-dist/tex/context/base/mkiv/toks-ini.lua + texmf-dist/tex/context/base/mkiv/toks-ini.mkiv + texmf-dist/tex/context/base/mkiv/toks-map.lua + texmf-dist/tex/context/base/mkiv/toks-map.mkiv + texmf-dist/tex/context/base/mkiv/toks-scn.lua + texmf-dist/tex/context/base/mkiv/toks-scn.mkiv + texmf-dist/tex/context/base/mkiv/trac-ctx.lua + texmf-dist/tex/context/base/mkiv/trac-ctx.mkiv + texmf-dist/tex/context/base/mkiv/trac-deb.lua + texmf-dist/tex/context/base/mkiv/trac-deb.mkiv + texmf-dist/tex/context/base/mkiv/trac-exp.lua + texmf-dist/tex/context/base/mkiv/trac-fil.lua + texmf-dist/tex/context/base/mkiv/trac-inf.lua + texmf-dist/tex/context/base/mkiv/trac-jus.lua + texmf-dist/tex/context/base/mkiv/trac-jus.mkiv + texmf-dist/tex/context/base/mkiv/trac-lmx.lua + texmf-dist/tex/context/base/mkiv/trac-log.lua + texmf-dist/tex/context/base/mkiv/trac-par.lua + texmf-dist/tex/context/base/mkiv/trac-pro.lua + texmf-dist/tex/context/base/mkiv/trac-set.lua + texmf-dist/tex/context/base/mkiv/trac-tex.lua + texmf-dist/tex/context/base/mkiv/trac-tex.mkiv + texmf-dist/tex/context/base/mkiv/trac-tim.lua + texmf-dist/tex/context/base/mkiv/trac-vis.lua + texmf-dist/tex/context/base/mkiv/trac-vis.mkiv + texmf-dist/tex/context/base/mkiv/trac-xml.lua + texmf-dist/tex/context/base/mkiv/type-def.mkiv + texmf-dist/tex/context/base/mkiv/type-fbk.mkiv + texmf-dist/tex/context/base/mkiv/type-ini.lua + texmf-dist/tex/context/base/mkiv/type-ini.mkvi + texmf-dist/tex/context/base/mkiv/type-lua.mkiv + texmf-dist/tex/context/base/mkiv/type-one.mkiv + texmf-dist/tex/context/base/mkiv/type-otf.mkiv + texmf-dist/tex/context/base/mkiv/type-set.mkiv + texmf-dist/tex/context/base/mkiv/type-siz.mkiv + texmf-dist/tex/context/base/mkiv/type-tmf.mkiv + texmf-dist/tex/context/base/mkiv/typo-bld.lua + texmf-dist/tex/context/base/mkiv/typo-bld.mkiv + texmf-dist/tex/context/base/mkiv/typo-brk.lua + texmf-dist/tex/context/base/mkiv/typo-brk.mkiv + texmf-dist/tex/context/base/mkiv/typo-cap.lua + texmf-dist/tex/context/base/mkiv/typo-cap.mkiv + texmf-dist/tex/context/base/mkiv/typo-chr.lua + texmf-dist/tex/context/base/mkiv/typo-chr.mkiv + texmf-dist/tex/context/base/mkiv/typo-cln.lua + texmf-dist/tex/context/base/mkiv/typo-cln.mkiv + texmf-dist/tex/context/base/mkiv/typo-del.mkiv + texmf-dist/tex/context/base/mkiv/typo-dha.lua + texmf-dist/tex/context/base/mkiv/typo-dig.lua + texmf-dist/tex/context/base/mkiv/typo-dig.mkiv + texmf-dist/tex/context/base/mkiv/typo-dir.lua + texmf-dist/tex/context/base/mkiv/typo-dir.mkiv + texmf-dist/tex/context/base/mkiv/typo-drp.lua + texmf-dist/tex/context/base/mkiv/typo-drp.mkiv + texmf-dist/tex/context/base/mkiv/typo-dua.lua + texmf-dist/tex/context/base/mkiv/typo-dub.lua + texmf-dist/tex/context/base/mkiv/typo-duc.lua + texmf-dist/tex/context/base/mkiv/typo-fkr.lua + texmf-dist/tex/context/base/mkiv/typo-fkr.mkiv + texmf-dist/tex/context/base/mkiv/typo-fln.lua + texmf-dist/tex/context/base/mkiv/typo-fln.mkiv + texmf-dist/tex/context/base/mkiv/typo-ini.lua + texmf-dist/tex/context/base/mkiv/typo-ini.mkiv + texmf-dist/tex/context/base/mkiv/typo-inj.lua + texmf-dist/tex/context/base/mkiv/typo-inj.mkiv + texmf-dist/tex/context/base/mkiv/typo-itc.lua + texmf-dist/tex/context/base/mkiv/typo-itc.mkvi + texmf-dist/tex/context/base/mkiv/typo-itm.mkiv + texmf-dist/tex/context/base/mkiv/typo-krn.lua + texmf-dist/tex/context/base/mkiv/typo-krn.mkiv + texmf-dist/tex/context/base/mkiv/typo-lan.lua + texmf-dist/tex/context/base/mkiv/typo-lan.mkiv + texmf-dist/tex/context/base/mkiv/typo-lig.mkiv + texmf-dist/tex/context/base/mkiv/typo-lin.lua + texmf-dist/tex/context/base/mkiv/typo-lin.mkiv + texmf-dist/tex/context/base/mkiv/typo-man.lua + texmf-dist/tex/context/base/mkiv/typo-mar.lua + texmf-dist/tex/context/base/mkiv/typo-mar.mkiv + texmf-dist/tex/context/base/mkiv/typo-ovl.lua + texmf-dist/tex/context/base/mkiv/typo-ovl.mkiv + texmf-dist/tex/context/base/mkiv/typo-pag.lua + texmf-dist/tex/context/base/mkiv/typo-pag.mkiv + texmf-dist/tex/context/base/mkiv/typo-par.mkiv + texmf-dist/tex/context/base/mkiv/typo-plc.mkiv + texmf-dist/tex/context/base/mkiv/typo-pnc.lua + texmf-dist/tex/context/base/mkiv/typo-pnc.mkiv + texmf-dist/tex/context/base/mkiv/typo-prc.lua + texmf-dist/tex/context/base/mkiv/typo-prc.mkvi + texmf-dist/tex/context/base/mkiv/typo-rep.lua + texmf-dist/tex/context/base/mkiv/typo-rep.mkiv + texmf-dist/tex/context/base/mkiv/typo-rub.lua + texmf-dist/tex/context/base/mkiv/typo-rub.mkiv + texmf-dist/tex/context/base/mkiv/typo-scr.mkiv + texmf-dist/tex/context/base/mkiv/typo-spa.lua + texmf-dist/tex/context/base/mkiv/typo-spa.mkiv + texmf-dist/tex/context/base/mkiv/typo-sus.lua + texmf-dist/tex/context/base/mkiv/typo-sus.mkiv + texmf-dist/tex/context/base/mkiv/typo-tal.lua + texmf-dist/tex/context/base/mkiv/typo-tal.mkiv + texmf-dist/tex/context/base/mkiv/typo-txt.mkvi + texmf-dist/tex/context/base/mkiv/typo-wrp.lua + texmf-dist/tex/context/base/mkiv/typo-wrp.mkiv + texmf-dist/tex/context/base/mkiv/unic-ini.lua + texmf-dist/tex/context/base/mkiv/unic-ini.mkiv + texmf-dist/tex/context/base/mkiv/util-deb.lua + texmf-dist/tex/context/base/mkiv/util-dim.lua + texmf-dist/tex/context/base/mkiv/util-env.lua + texmf-dist/tex/context/base/mkiv/util-evo-imp-server.lua + texmf-dist/tex/context/base/mkiv/util-evo.lua + texmf-dist/tex/context/base/mkiv/util-fil.lua + texmf-dist/tex/context/base/mkiv/util-fmt.lua + texmf-dist/tex/context/base/mkiv/util-jsn.lua + texmf-dist/tex/context/base/mkiv/util-lib-imp-gm.lua + texmf-dist/tex/context/base/mkiv/util-lib-imp-gs.lua + texmf-dist/tex/context/base/mkiv/util-lib.lua + texmf-dist/tex/context/base/mkiv/util-lua.lua + texmf-dist/tex/context/base/mkiv/util-mrg.lua + texmf-dist/tex/context/base/mkiv/util-pck.lua + texmf-dist/tex/context/base/mkiv/util-prs.lua + texmf-dist/tex/context/base/mkiv/util-ran.lua + texmf-dist/tex/context/base/mkiv/util-sac.lua + texmf-dist/tex/context/base/mkiv/util-sbx.lua + texmf-dist/tex/context/base/mkiv/util-sci.lua + texmf-dist/tex/context/base/mkiv/util-seq.lua + texmf-dist/tex/context/base/mkiv/util-sha.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-copas.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-ftp.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-headers.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-http.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-ltn12.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-mime.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-reset.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-smtp.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-socket.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-tp.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-url.lua + texmf-dist/tex/context/base/mkiv/util-soc.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-client.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-ffi.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-library.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-sqlite.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-swiglib.lua + texmf-dist/tex/context/base/mkiv/util-sql-loggers.lua + texmf-dist/tex/context/base/mkiv/util-sql-logins.lua + texmf-dist/tex/context/base/mkiv/util-sql-sessions.lua + texmf-dist/tex/context/base/mkiv/util-sql-tickets.lua + texmf-dist/tex/context/base/mkiv/util-sql-tracers.lua + texmf-dist/tex/context/base/mkiv/util-sql-users.lua + texmf-dist/tex/context/base/mkiv/util-sql.lua + texmf-dist/tex/context/base/mkiv/util-sta.lua + texmf-dist/tex/context/base/mkiv/util-sto.lua + texmf-dist/tex/context/base/mkiv/util-str.lua + texmf-dist/tex/context/base/mkiv/util-tab.lua + texmf-dist/tex/context/base/mkiv/util-tpl.lua + texmf-dist/tex/context/base/mkiv/util-you.lua + texmf-dist/tex/context/base/mkiv/util-zip.lua + texmf-dist/tex/context/base/mkxl/anch-bar.mkxl + texmf-dist/tex/context/base/mkxl/anch-bck.mklx + texmf-dist/tex/context/base/mkxl/anch-pgr.lmt + texmf-dist/tex/context/base/mkxl/anch-pgr.mkxl + texmf-dist/tex/context/base/mkxl/anch-pos.lmt + texmf-dist/tex/context/base/mkxl/anch-pos.mkxl + texmf-dist/tex/context/base/mkxl/anch-snc.mkxl + texmf-dist/tex/context/base/mkxl/anch-tab.mkxl + texmf-dist/tex/context/base/mkxl/attr-alt.lmt + texmf-dist/tex/context/base/mkxl/attr-alt.mkxl + texmf-dist/tex/context/base/mkxl/attr-col.lmt + texmf-dist/tex/context/base/mkxl/attr-col.mkxl + texmf-dist/tex/context/base/mkxl/attr-eff.mkxl + texmf-dist/tex/context/base/mkxl/attr-ini.mkxl + texmf-dist/tex/context/base/mkxl/attr-lay.lmt + texmf-dist/tex/context/base/mkxl/attr-lay.mkxl + texmf-dist/tex/context/base/mkxl/attr-mkr.mkxl + texmf-dist/tex/context/base/mkxl/attr-neg.mkxl + texmf-dist/tex/context/base/mkxl/back-exp-imp-mth.lmt + texmf-dist/tex/context/base/mkxl/back-exp-imp-ref.lmt + texmf-dist/tex/context/base/mkxl/back-exp-imp-tag.lmt + texmf-dist/tex/context/base/mkxl/back-exp.lmt + texmf-dist/tex/context/base/mkxl/back-exp.mkxl + texmf-dist/tex/context/base/mkxl/back-ext.mkxl + texmf-dist/tex/context/base/mkxl/back-ini.lmt + texmf-dist/tex/context/base/mkxl/back-ini.mkxl + texmf-dist/tex/context/base/mkxl/back-lua.lmt + texmf-dist/tex/context/base/mkxl/back-lua.mkxl + texmf-dist/tex/context/base/mkxl/back-mps.lmt + texmf-dist/tex/context/base/mkxl/back-mps.mkxl + texmf-dist/tex/context/base/mkxl/back-pdf.lmt + texmf-dist/tex/context/base/mkxl/back-pdf.mkxl + texmf-dist/tex/context/base/mkxl/back-pdp.lmt + texmf-dist/tex/context/base/mkxl/back-res.lmt + texmf-dist/tex/context/base/mkxl/back-res.mkxl + texmf-dist/tex/context/base/mkxl/back-u3d.mkxl + texmf-dist/tex/context/base/mkxl/bibl-bib.mkxl + texmf-dist/tex/context/base/mkxl/bibl-tra.mkxl + texmf-dist/tex/context/base/mkxl/blob-ini.lmt + texmf-dist/tex/context/base/mkxl/blob-ini.mkxl + texmf-dist/tex/context/base/mkxl/buff-ini.lmt + texmf-dist/tex/context/base/mkxl/buff-ini.mkxl + texmf-dist/tex/context/base/mkxl/buff-par.mklx + texmf-dist/tex/context/base/mkxl/buff-ver.mkxl + texmf-dist/tex/context/base/mkxl/catc-act.mkxl + texmf-dist/tex/context/base/mkxl/catc-def.mkxl + texmf-dist/tex/context/base/mkxl/catc-ini.lmt + texmf-dist/tex/context/base/mkxl/catc-ini.mkxl + texmf-dist/tex/context/base/mkxl/catc-sym.mkxl + texmf-dist/tex/context/base/mkxl/char-act.mkxl + texmf-dist/tex/context/base/mkxl/char-enc.mkxl + texmf-dist/tex/context/base/mkxl/char-ini.mkxl + texmf-dist/tex/context/base/mkxl/char-tex.lmt + texmf-dist/tex/context/base/mkxl/char-utf.mkxl + texmf-dist/tex/context/base/mkxl/chem-ini.mkxl + texmf-dist/tex/context/base/mkxl/chem-str.mkxl + texmf-dist/tex/context/base/mkxl/cldf-bas.mkxl + texmf-dist/tex/context/base/mkxl/cldf-com.mkxl + texmf-dist/tex/context/base/mkxl/cldf-ini.mkxl + texmf-dist/tex/context/base/mkxl/cldf-int.lmt + texmf-dist/tex/context/base/mkxl/cldf-int.mkxl + texmf-dist/tex/context/base/mkxl/cldf-lmt.lmt + texmf-dist/tex/context/base/mkxl/cldf-ver.mkxl + texmf-dist/tex/context/base/mkxl/colo-ext.mkxl + texmf-dist/tex/context/base/mkxl/colo-grp.mkxl + texmf-dist/tex/context/base/mkxl/colo-ini.mkxl + texmf-dist/tex/context/base/mkxl/colo-nod.lmt + texmf-dist/tex/context/base/mkxl/colo-nod.mkxl + texmf-dist/tex/context/base/mkxl/cont-cs.mkxl + texmf-dist/tex/context/base/mkxl/cont-de.mkxl + texmf-dist/tex/context/base/mkxl/cont-en.mkxl + texmf-dist/tex/context/base/mkxl/cont-fil.mkxl + texmf-dist/tex/context/base/mkxl/cont-fr.mkxl + texmf-dist/tex/context/base/mkxl/cont-gb.mkxl + texmf-dist/tex/context/base/mkxl/cont-it.mkxl + texmf-dist/tex/context/base/mkxl/cont-log.mkxl + texmf-dist/tex/context/base/mkxl/cont-new.mkxl + texmf-dist/tex/context/base/mkxl/cont-nl.mkxl + texmf-dist/tex/context/base/mkxl/cont-pe.mkxl + texmf-dist/tex/context/base/mkxl/cont-ro.mkxl + texmf-dist/tex/context/base/mkxl/cont-run.lmt + texmf-dist/tex/context/base/mkxl/cont-run.mkxl + texmf-dist/tex/context/base/mkxl/context.mkxl + texmf-dist/tex/context/base/mkxl/core-con.mkxl + texmf-dist/tex/context/base/mkxl/core-ctx.mkxl + texmf-dist/tex/context/base/mkxl/core-dat.mkxl + texmf-dist/tex/context/base/mkxl/core-def.mkxl + texmf-dist/tex/context/base/mkxl/core-env.lmt + texmf-dist/tex/context/base/mkxl/core-env.mkxl + texmf-dist/tex/context/base/mkxl/core-ini.mkxl + texmf-dist/tex/context/base/mkxl/core-lmt.lmt + texmf-dist/tex/context/base/mkxl/core-lmt.mkxl + texmf-dist/tex/context/base/mkxl/core-sys.lmt + texmf-dist/tex/context/base/mkxl/core-sys.mkxl + texmf-dist/tex/context/base/mkxl/core-two.mkxl + texmf-dist/tex/context/base/mkxl/core-uti.lua + texmf-dist/tex/context/base/mkxl/core-uti.mkxl + texmf-dist/tex/context/base/mkxl/driv-ini.lmt + texmf-dist/tex/context/base/mkxl/driv-ini.mkxl + texmf-dist/tex/context/base/mkxl/driv-shp.lmt + texmf-dist/tex/context/base/mkxl/driv-shp.mkxl + texmf-dist/tex/context/base/mkxl/enco-ini.mkxl + texmf-dist/tex/context/base/mkxl/file-ini.mklx + texmf-dist/tex/context/base/mkxl/file-job.lmt + texmf-dist/tex/context/base/mkxl/file-job.mklx + texmf-dist/tex/context/base/mkxl/file-lib.mkxl + texmf-dist/tex/context/base/mkxl/file-mod.lmt + texmf-dist/tex/context/base/mkxl/file-mod.mklx + texmf-dist/tex/context/base/mkxl/file-res.mklx + texmf-dist/tex/context/base/mkxl/file-syn.mklx + texmf-dist/tex/context/base/mkxl/font-aux.mklx + texmf-dist/tex/context/base/mkxl/font-chk.lmt + texmf-dist/tex/context/base/mkxl/font-chk.mkxl + texmf-dist/tex/context/base/mkxl/font-col.lmt + texmf-dist/tex/context/base/mkxl/font-col.mklx + texmf-dist/tex/context/base/mkxl/font-con.lmt + texmf-dist/tex/context/base/mkxl/font-ctx.lmt + texmf-dist/tex/context/base/mkxl/font-def.lmt + texmf-dist/tex/context/base/mkxl/font-emp.mklx + texmf-dist/tex/context/base/mkxl/font-enh.lmt + texmf-dist/tex/context/base/mkxl/font-fbk.lmt + texmf-dist/tex/context/base/mkxl/font-fea.mklx + texmf-dist/tex/context/base/mkxl/font-fil.mklx + texmf-dist/tex/context/base/mkxl/font-fmp.lmt + texmf-dist/tex/context/base/mkxl/font-gds.mklx + texmf-dist/tex/context/base/mkxl/font-glf.mklx + texmf-dist/tex/context/base/mkxl/font-imp-math.lmt + texmf-dist/tex/context/base/mkxl/font-imp-tracing.lmt + texmf-dist/tex/context/base/mkxl/font-ini.lmt + texmf-dist/tex/context/base/mkxl/font-ini.mklx + texmf-dist/tex/context/base/mkxl/font-lib.mklx + texmf-dist/tex/context/base/mkxl/font-mat.mklx + texmf-dist/tex/context/base/mkxl/font-mpf.lmt + texmf-dist/tex/context/base/mkxl/font-mps.lmt + texmf-dist/tex/context/base/mkxl/font-ogr.lmt + texmf-dist/tex/context/base/mkxl/font-ota.lmt + texmf-dist/tex/context/base/mkxl/font-otj.lmt + texmf-dist/tex/context/base/mkxl/font-ots.lmt + texmf-dist/tex/context/base/mkxl/font-pre.mkxl + texmf-dist/tex/context/base/mkxl/font-sel.mklx + texmf-dist/tex/context/base/mkxl/font-set.mklx + texmf-dist/tex/context/base/mkxl/font-sol.mklx + texmf-dist/tex/context/base/mkxl/font-sty.mklx + texmf-dist/tex/context/base/mkxl/font-sym.mklx + texmf-dist/tex/context/base/mkxl/font-tex.lmt + texmf-dist/tex/context/base/mkxl/font-tex.mkxl + texmf-dist/tex/context/base/mkxl/font-tra.mkxl + texmf-dist/tex/context/base/mkxl/font-uni.mkxl + texmf-dist/tex/context/base/mkxl/font-unk.mkxl + texmf-dist/tex/context/base/mkxl/font-var.mklx + texmf-dist/tex/context/base/mkxl/font-vfc.lmt + texmf-dist/tex/context/base/mkxl/font-vir.lmt + texmf-dist/tex/context/base/mkxl/good-mth.lmt + texmf-dist/tex/context/base/mkxl/grph-epd.mkxl + texmf-dist/tex/context/base/mkxl/grph-fig.mkxl + texmf-dist/tex/context/base/mkxl/grph-inc.lmt + texmf-dist/tex/context/base/mkxl/grph-inc.mkxl + texmf-dist/tex/context/base/mkxl/grph-pat.mkxl + texmf-dist/tex/context/base/mkxl/grph-raw.mkxl + texmf-dist/tex/context/base/mkxl/grph-rul.lmt + texmf-dist/tex/context/base/mkxl/grph-rul.mkxl + texmf-dist/tex/context/base/mkxl/grph-trf.lmt + texmf-dist/tex/context/base/mkxl/grph-trf.mkxl + texmf-dist/tex/context/base/mkxl/hand-ini.mkxl + texmf-dist/tex/context/base/mkxl/java-ini.mkxl + texmf-dist/tex/context/base/mkxl/lang-def.mkxl + texmf-dist/tex/context/base/mkxl/lang-dis.lmt + texmf-dist/tex/context/base/mkxl/lang-frd.mkxl + texmf-dist/tex/context/base/mkxl/lang-frq.mkxl + texmf-dist/tex/context/base/mkxl/lang-hyp.lmt + texmf-dist/tex/context/base/mkxl/lang-hyp.mkxl + texmf-dist/tex/context/base/mkxl/lang-ini.lmt + texmf-dist/tex/context/base/mkxl/lang-ini.mkxl + texmf-dist/tex/context/base/mkxl/lang-lab.mkxl + texmf-dist/tex/context/base/mkxl/lang-mis.mkxl + texmf-dist/tex/context/base/mkxl/lang-rep.mkxl + texmf-dist/tex/context/base/mkxl/lang-spa.mkxl + texmf-dist/tex/context/base/mkxl/lang-tra.mkxl + texmf-dist/tex/context/base/mkxl/lang-url.mkxl + texmf-dist/tex/context/base/mkxl/lang-wrd.mkxl + texmf-dist/tex/context/base/mkxl/layo-ini.lmt + texmf-dist/tex/context/base/mkxl/layo-ini.mkxl + texmf-dist/tex/context/base/mkxl/libs-imp-curl.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-ghostscript.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-graphicsmagick.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-kpse.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-kpse.mkxl + texmf-dist/tex/context/base/mkxl/libs-imp-mujs.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-mujs.mkxl + texmf-dist/tex/context/base/mkxl/libs-imp-mysql.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-postgress.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-sqlite.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-zint.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-zint.mkxl + texmf-dist/tex/context/base/mkxl/libs-ini.mkxl + texmf-dist/tex/context/base/mkxl/lpdf-ano.lmt + texmf-dist/tex/context/base/mkxl/lpdf-aux.lmt + texmf-dist/tex/context/base/mkxl/lpdf-col.lmt + texmf-dist/tex/context/base/mkxl/lpdf-emb.lmt + texmf-dist/tex/context/base/mkxl/lpdf-enc.lmt + texmf-dist/tex/context/base/mkxl/lpdf-epa.lmt + texmf-dist/tex/context/base/mkxl/lpdf-fld.lmt + texmf-dist/tex/context/base/mkxl/lpdf-fmt.lmt + texmf-dist/tex/context/base/mkxl/lpdf-fnt.lmt + texmf-dist/tex/context/base/mkxl/lpdf-grp.lmt + texmf-dist/tex/context/base/mkxl/lpdf-img.lmt + texmf-dist/tex/context/base/mkxl/lpdf-ini.lmt + texmf-dist/tex/context/base/mkxl/lpdf-lmt.lmt + texmf-dist/tex/context/base/mkxl/lpdf-mis.lmt + texmf-dist/tex/context/base/mkxl/lpdf-mov.lmt + texmf-dist/tex/context/base/mkxl/lpdf-pde.lmt + texmf-dist/tex/context/base/mkxl/lpdf-ren.lmt + texmf-dist/tex/context/base/mkxl/lpdf-res.lmt + texmf-dist/tex/context/base/mkxl/lpdf-rul.lmt + texmf-dist/tex/context/base/mkxl/lpdf-tag.lmt + texmf-dist/tex/context/base/mkxl/lpdf-u3d.lmt + texmf-dist/tex/context/base/mkxl/lpdf-wid.lmt + texmf-dist/tex/context/base/mkxl/lpdf-xmp.lmt + texmf-dist/tex/context/base/mkxl/luat-bas.mkxl + texmf-dist/tex/context/base/mkxl/luat-cbk.lmt + texmf-dist/tex/context/base/mkxl/luat-cod.lmt + texmf-dist/tex/context/base/mkxl/luat-cod.mkxl + texmf-dist/tex/context/base/mkxl/luat-fio.lmt + texmf-dist/tex/context/base/mkxl/luat-ini.lmt + texmf-dist/tex/context/base/mkxl/luat-ini.mkxl + texmf-dist/tex/context/base/mkxl/luat-lib.mkxl + texmf-dist/tex/context/base/mkxl/luat-log.lmt + texmf-dist/tex/context/base/mkxl/luat-soc.mkxl + texmf-dist/tex/context/base/mkxl/luat-usr.lmt + texmf-dist/tex/context/base/mkxl/luat-usr.mkxl + texmf-dist/tex/context/base/mkxl/lxml-css.mkxl + texmf-dist/tex/context/base/mkxl/lxml-ctx.mkxl + texmf-dist/tex/context/base/mkxl/lxml-ini.mkxl + texmf-dist/tex/context/base/mkxl/lxml-sor.mkxl + texmf-dist/tex/context/base/mkxl/m-mkivmkxl.mkxl + texmf-dist/tex/context/base/mkxl/math-acc.mklx + texmf-dist/tex/context/base/mkxl/math-act.lmt + texmf-dist/tex/context/base/mkxl/math-ali.mkxl + texmf-dist/tex/context/base/mkxl/math-def.mkxl + texmf-dist/tex/context/base/mkxl/math-del.mkxl + texmf-dist/tex/context/base/mkxl/math-dis.mkxl + texmf-dist/tex/context/base/mkxl/math-fen.mkxl + texmf-dist/tex/context/base/mkxl/math-for.mkxl + texmf-dist/tex/context/base/mkxl/math-frc.mkxl + texmf-dist/tex/context/base/mkxl/math-inc.mkxl + texmf-dist/tex/context/base/mkxl/math-ini.mkxl + texmf-dist/tex/context/base/mkxl/math-inl.mkxl + texmf-dist/tex/context/base/mkxl/math-int.mkxl + texmf-dist/tex/context/base/mkxl/math-mis.mkxl + texmf-dist/tex/context/base/mkxl/math-noa.lmt + texmf-dist/tex/context/base/mkxl/math-pln.mkxl + texmf-dist/tex/context/base/mkxl/math-rad.mklx + texmf-dist/tex/context/base/mkxl/math-scr.mkxl + texmf-dist/tex/context/base/mkxl/math-stc.mklx + texmf-dist/tex/context/base/mkxl/math-tag.lmt + texmf-dist/tex/context/base/mkxl/math-toy.mkxl + texmf-dist/tex/context/base/mkxl/math-vfu.lmt + texmf-dist/tex/context/base/mkxl/meta-blb.mkxl + texmf-dist/tex/context/base/mkxl/meta-fig.mkxl + texmf-dist/tex/context/base/mkxl/meta-fnt.lmt + texmf-dist/tex/context/base/mkxl/meta-fnt.mkxl + texmf-dist/tex/context/base/mkxl/meta-fun.mkxl + texmf-dist/tex/context/base/mkxl/meta-grd.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-clock.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-demo.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-experiments.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-gamesymbols.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-punk.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-symbols.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-threesix.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-txt.mkxl + texmf-dist/tex/context/base/mkxl/meta-ini.lmt + texmf-dist/tex/context/base/mkxl/meta-ini.mkxl + texmf-dist/tex/context/base/mkxl/meta-lua.mkxl + texmf-dist/tex/context/base/mkxl/meta-mac.mkxl + texmf-dist/tex/context/base/mkxl/meta-nod.mkxl + texmf-dist/tex/context/base/mkxl/meta-pag.mkxl + texmf-dist/tex/context/base/mkxl/meta-pdf.mkxl + texmf-dist/tex/context/base/mkxl/meta-pdh.mkxl + texmf-dist/tex/context/base/mkxl/meta-tex.mkxl + texmf-dist/tex/context/base/mkxl/meta-xml.mkxl + texmf-dist/tex/context/base/mkxl/mlib-cnt.lmt + texmf-dist/tex/context/base/mkxl/mlib-ctx.lmt + texmf-dist/tex/context/base/mkxl/mlib-ctx.mkxl + texmf-dist/tex/context/base/mkxl/mlib-fio.lmt + texmf-dist/tex/context/base/mkxl/mlib-int.lmt + texmf-dist/tex/context/base/mkxl/mlib-lmp.lmt + texmf-dist/tex/context/base/mkxl/mlib-lmt.lmt + texmf-dist/tex/context/base/mkxl/mlib-lua.lmt + texmf-dist/tex/context/base/mkxl/mlib-mat.lmt + texmf-dist/tex/context/base/mkxl/mlib-mpf.lmt + texmf-dist/tex/context/base/mkxl/mlib-pdf.lmt + texmf-dist/tex/context/base/mkxl/mlib-pdf.mkxl + texmf-dist/tex/context/base/mkxl/mlib-pps.lmt + texmf-dist/tex/context/base/mkxl/mlib-pps.mkxl + texmf-dist/tex/context/base/mkxl/mlib-ran.lmt + texmf-dist/tex/context/base/mkxl/mlib-run.lmt + texmf-dist/tex/context/base/mkxl/mlib-scn.lmt + texmf-dist/tex/context/base/mkxl/mlib-svg.lmt + texmf-dist/tex/context/base/mkxl/mult-aux.mkxl + texmf-dist/tex/context/base/mkxl/mult-def.mkxl + texmf-dist/tex/context/base/mkxl/mult-dim.mklx + texmf-dist/tex/context/base/mkxl/mult-ini.lmt + texmf-dist/tex/context/base/mkxl/mult-ini.mkxl + texmf-dist/tex/context/base/mkxl/mult-prm.mkxl + texmf-dist/tex/context/base/mkxl/mult-sys.mkxl + texmf-dist/tex/context/base/mkxl/node-acc.lmt + texmf-dist/tex/context/base/mkxl/node-aux.lmt + texmf-dist/tex/context/base/mkxl/node-bck.lmt + texmf-dist/tex/context/base/mkxl/node-bck.mkxl + texmf-dist/tex/context/base/mkxl/node-cmp.lmt + texmf-dist/tex/context/base/mkxl/node-ext.lmt + texmf-dist/tex/context/base/mkxl/node-fin.lmt + texmf-dist/tex/context/base/mkxl/node-fin.mkxl + texmf-dist/tex/context/base/mkxl/node-fnt.lmt + texmf-dist/tex/context/base/mkxl/node-gcm.lmt + texmf-dist/tex/context/base/mkxl/node-ini.lmt + texmf-dist/tex/context/base/mkxl/node-ini.mkxl + texmf-dist/tex/context/base/mkxl/node-met.lmt + texmf-dist/tex/context/base/mkxl/node-mig.lmt + texmf-dist/tex/context/base/mkxl/node-mig.mkxl + texmf-dist/tex/context/base/mkxl/node-nut.lmt + texmf-dist/tex/context/base/mkxl/node-par.lmt + texmf-dist/tex/context/base/mkxl/node-pro.lmt + texmf-dist/tex/context/base/mkxl/node-ref.lmt + texmf-dist/tex/context/base/mkxl/node-res.lmt + texmf-dist/tex/context/base/mkxl/node-rul.lmt + texmf-dist/tex/context/base/mkxl/node-rul.mkxl + texmf-dist/tex/context/base/mkxl/node-scn.lmt + texmf-dist/tex/context/base/mkxl/node-ser.lmt + texmf-dist/tex/context/base/mkxl/node-shp.lmt + texmf-dist/tex/context/base/mkxl/node-snp.lmt + texmf-dist/tex/context/base/mkxl/node-syn.lmt + texmf-dist/tex/context/base/mkxl/node-tex.lmt + texmf-dist/tex/context/base/mkxl/node-tra.lmt + texmf-dist/tex/context/base/mkxl/norm-ctx.mkxl + texmf-dist/tex/context/base/mkxl/pack-bar.mkxl + texmf-dist/tex/context/base/mkxl/pack-bck.mklx + texmf-dist/tex/context/base/mkxl/pack-box.mkxl + texmf-dist/tex/context/base/mkxl/pack-com.mkxl + texmf-dist/tex/context/base/mkxl/pack-cut.mkxl + texmf-dist/tex/context/base/mkxl/pack-fen.mkxl + texmf-dist/tex/context/base/mkxl/pack-lyr.mkxl + texmf-dist/tex/context/base/mkxl/pack-mis.mklx + texmf-dist/tex/context/base/mkxl/pack-mrl.mkxl + texmf-dist/tex/context/base/mkxl/pack-obj.lmt + texmf-dist/tex/context/base/mkxl/pack-obj.mkxl + texmf-dist/tex/context/base/mkxl/pack-ori.lmt + texmf-dist/tex/context/base/mkxl/pack-ori.mkxl + texmf-dist/tex/context/base/mkxl/pack-pos.mkxl + texmf-dist/tex/context/base/mkxl/pack-rul.lmt + texmf-dist/tex/context/base/mkxl/pack-rul.mkxl + texmf-dist/tex/context/base/mkxl/page-app.mkxl + texmf-dist/tex/context/base/mkxl/page-bck.mkxl + texmf-dist/tex/context/base/mkxl/page-box.mklx + texmf-dist/tex/context/base/mkxl/page-brk.mkxl + texmf-dist/tex/context/base/mkxl/page-col.mkxl + texmf-dist/tex/context/base/mkxl/page-com.mkxl + texmf-dist/tex/context/base/mkxl/page-cst.mkxl + texmf-dist/tex/context/base/mkxl/page-fac.mkxl + texmf-dist/tex/context/base/mkxl/page-ffl.mkxl + texmf-dist/tex/context/base/mkxl/page-flt.mkxl + texmf-dist/tex/context/base/mkxl/page-flw.mkxl + texmf-dist/tex/context/base/mkxl/page-imp.mkxl + texmf-dist/tex/context/base/mkxl/page-inf.mkxl + texmf-dist/tex/context/base/mkxl/page-ini.mkxl + texmf-dist/tex/context/base/mkxl/page-inj.mklx + texmf-dist/tex/context/base/mkxl/page-ins.mkxl + texmf-dist/tex/context/base/mkxl/page-lay.mkxl + texmf-dist/tex/context/base/mkxl/page-lin.lmt + texmf-dist/tex/context/base/mkxl/page-lin.mklx + texmf-dist/tex/context/base/mkxl/page-mak.mklx + texmf-dist/tex/context/base/mkxl/page-mbk.mklx + texmf-dist/tex/context/base/mkxl/page-mcl.mkxl + texmf-dist/tex/context/base/mkxl/page-mix.mkxl + texmf-dist/tex/context/base/mkxl/page-mrk.mkxl + texmf-dist/tex/context/base/mkxl/page-not.mkxl + texmf-dist/tex/context/base/mkxl/page-one.mkxl + texmf-dist/tex/context/base/mkxl/page-otr.lmt + texmf-dist/tex/context/base/mkxl/page-otr.mklx + texmf-dist/tex/context/base/mkxl/page-par.mkxl + texmf-dist/tex/context/base/mkxl/page-pcl.mkxl + texmf-dist/tex/context/base/mkxl/page-plg.mkxl + texmf-dist/tex/context/base/mkxl/page-pst.mkxl + texmf-dist/tex/context/base/mkxl/page-sel.mklx + texmf-dist/tex/context/base/mkxl/page-sid.mkxl + texmf-dist/tex/context/base/mkxl/page-smp.mkxl + texmf-dist/tex/context/base/mkxl/page-spr.mkxl + texmf-dist/tex/context/base/mkxl/page-str.mkxl + texmf-dist/tex/context/base/mkxl/page-txt.mklx + texmf-dist/tex/context/base/mkxl/page-var.mkxl + texmf-dist/tex/context/base/mkxl/phys-dim.mkxl + texmf-dist/tex/context/base/mkxl/publ-inc.mkxl + texmf-dist/tex/context/base/mkxl/publ-ini.mkxl + texmf-dist/tex/context/base/mkxl/publ-old.mkxl + texmf-dist/tex/context/base/mkxl/publ-xml.mkxl + texmf-dist/tex/context/base/mkxl/regi-ini.mkxl + texmf-dist/tex/context/base/mkxl/scrn-bar.mklx + texmf-dist/tex/context/base/mkxl/scrn-but.mklx + texmf-dist/tex/context/base/mkxl/scrn-fld.mklx + texmf-dist/tex/context/base/mkxl/scrn-hlp.mklx + texmf-dist/tex/context/base/mkxl/scrn-ini.mklx + texmf-dist/tex/context/base/mkxl/scrn-pag.lmt + texmf-dist/tex/context/base/mkxl/scrn-pag.mklx + texmf-dist/tex/context/base/mkxl/scrn-ref.mklx + texmf-dist/tex/context/base/mkxl/scrn-wid.mklx + texmf-dist/tex/context/base/mkxl/scrp-ini.mkxl + texmf-dist/tex/context/base/mkxl/sort-ini.mkxl + texmf-dist/tex/context/base/mkxl/spac-ali.lmt + texmf-dist/tex/context/base/mkxl/spac-ali.mkxl + texmf-dist/tex/context/base/mkxl/spac-chr.lmt + texmf-dist/tex/context/base/mkxl/spac-chr.mkxl + texmf-dist/tex/context/base/mkxl/spac-def.mkxl + texmf-dist/tex/context/base/mkxl/spac-flr.mkxl + texmf-dist/tex/context/base/mkxl/spac-grd.mkxl + texmf-dist/tex/context/base/mkxl/spac-hor.lmt + texmf-dist/tex/context/base/mkxl/spac-hor.mkxl + texmf-dist/tex/context/base/mkxl/spac-lin.mkxl + texmf-dist/tex/context/base/mkxl/spac-pag.mkxl + texmf-dist/tex/context/base/mkxl/spac-par.lmt + texmf-dist/tex/context/base/mkxl/spac-par.mkxl + texmf-dist/tex/context/base/mkxl/spac-prf.lmt + texmf-dist/tex/context/base/mkxl/spac-prf.mklx + texmf-dist/tex/context/base/mkxl/spac-ver.lmt + texmf-dist/tex/context/base/mkxl/spac-ver.mkxl + texmf-dist/tex/context/base/mkxl/strc-bkm.mkxl + texmf-dist/tex/context/base/mkxl/strc-blk.mkxl + texmf-dist/tex/context/base/mkxl/strc-con.mklx + texmf-dist/tex/context/base/mkxl/strc-def.mkxl + texmf-dist/tex/context/base/mkxl/strc-des.mklx + texmf-dist/tex/context/base/mkxl/strc-doc.mkxl + texmf-dist/tex/context/base/mkxl/strc-enu.mklx + texmf-dist/tex/context/base/mkxl/strc-flt.mklx + texmf-dist/tex/context/base/mkxl/strc-ind.mkxl + texmf-dist/tex/context/base/mkxl/strc-ini.mklx + texmf-dist/tex/context/base/mkxl/strc-itm.mklx + texmf-dist/tex/context/base/mkxl/strc-lab.mkxl + texmf-dist/tex/context/base/mkxl/strc-lev.mklx + texmf-dist/tex/context/base/mkxl/strc-lnt.mklx + texmf-dist/tex/context/base/mkxl/strc-lst.mklx + texmf-dist/tex/context/base/mkxl/strc-mar.mkxl + texmf-dist/tex/context/base/mkxl/strc-mat.mkxl + texmf-dist/tex/context/base/mkxl/strc-not.mklx + texmf-dist/tex/context/base/mkxl/strc-num.mkxl + texmf-dist/tex/context/base/mkxl/strc-pag.mkxl + texmf-dist/tex/context/base/mkxl/strc-ref.mklx + texmf-dist/tex/context/base/mkxl/strc-reg.mkxl + texmf-dist/tex/context/base/mkxl/strc-ren.mkxl + texmf-dist/tex/context/base/mkxl/strc-sbe.mkxl + texmf-dist/tex/context/base/mkxl/strc-sec.mkxl + texmf-dist/tex/context/base/mkxl/strc-syn.mkxl + texmf-dist/tex/context/base/mkxl/strc-tag.lmt + texmf-dist/tex/context/base/mkxl/strc-tag.mkxl + texmf-dist/tex/context/base/mkxl/strc-tnt.mkxl + texmf-dist/tex/context/base/mkxl/strc-usr.mkxl + texmf-dist/tex/context/base/mkxl/supp-box.lmt + texmf-dist/tex/context/base/mkxl/supp-box.mkxl + texmf-dist/tex/context/base/mkxl/supp-dir.mkxl + texmf-dist/tex/context/base/mkxl/supp-mat.mkxl + texmf-dist/tex/context/base/mkxl/supp-ran.mkxl + texmf-dist/tex/context/base/mkxl/symb-emj.lmt + texmf-dist/tex/context/base/mkxl/symb-emj.mkxl + texmf-dist/tex/context/base/mkxl/symb-ini.lmt + texmf-dist/tex/context/base/mkxl/symb-ini.mkxl + texmf-dist/tex/context/base/mkxl/syst-aux.lmt + texmf-dist/tex/context/base/mkxl/syst-aux.mkxl + texmf-dist/tex/context/base/mkxl/syst-cmp.mkxl + texmf-dist/tex/context/base/mkxl/syst-con.mkxl + texmf-dist/tex/context/base/mkxl/syst-fnt.mkxl + texmf-dist/tex/context/base/mkxl/syst-ini.mkxl + texmf-dist/tex/context/base/mkxl/syst-lua.lmt + texmf-dist/tex/context/base/mkxl/syst-lua.mkxl + texmf-dist/tex/context/base/mkxl/syst-mac.lmt + texmf-dist/tex/context/base/mkxl/syst-pln.mkxl + texmf-dist/tex/context/base/mkxl/syst-rtp.mkxl + texmf-dist/tex/context/base/mkxl/tabl-com.mkxl + texmf-dist/tex/context/base/mkxl/tabl-frm.mkxl + texmf-dist/tex/context/base/mkxl/tabl-ltb.mkxl + texmf-dist/tex/context/base/mkxl/tabl-mis.mkxl + texmf-dist/tex/context/base/mkxl/tabl-ntb.mkxl + texmf-dist/tex/context/base/mkxl/tabl-nte.mkxl + texmf-dist/tex/context/base/mkxl/tabl-tab.mkxl + texmf-dist/tex/context/base/mkxl/tabl-tbl.mkxl + texmf-dist/tex/context/base/mkxl/tabl-tsp.mkxl + texmf-dist/tex/context/base/mkxl/tabl-xnt.mklx + texmf-dist/tex/context/base/mkxl/tabl-xtb.mklx + texmf-dist/tex/context/base/mkxl/task-ini.mkxl + texmf-dist/tex/context/base/mkxl/toks-aux.lmt + texmf-dist/tex/context/base/mkxl/toks-aux.mkxl + texmf-dist/tex/context/base/mkxl/toks-ini.lmt + texmf-dist/tex/context/base/mkxl/toks-ini.mkxl + texmf-dist/tex/context/base/mkxl/toks-scn.lmt + texmf-dist/tex/context/base/mkxl/toks-scn.mkxl + texmf-dist/tex/context/base/mkxl/trac-ctx.mkxl + texmf-dist/tex/context/base/mkxl/trac-deb.lmt + texmf-dist/tex/context/base/mkxl/trac-deb.mkxl + texmf-dist/tex/context/base/mkxl/trac-inf.lmt + texmf-dist/tex/context/base/mkxl/trac-jus.mkxl + texmf-dist/tex/context/base/mkxl/trac-tex.mkxl + texmf-dist/tex/context/base/mkxl/trac-tim.lmt + texmf-dist/tex/context/base/mkxl/trac-vis.lmt + texmf-dist/tex/context/base/mkxl/trac-vis.mkxl + texmf-dist/tex/context/base/mkxl/type-def.mkxl + texmf-dist/tex/context/base/mkxl/type-fbk.mkxl + texmf-dist/tex/context/base/mkxl/type-ini.lmt + texmf-dist/tex/context/base/mkxl/type-ini.mklx + texmf-dist/tex/context/base/mkxl/type-lua.mkxl + texmf-dist/tex/context/base/mkxl/type-set.mkxl + texmf-dist/tex/context/base/mkxl/type-siz.mkxl + texmf-dist/tex/context/base/mkxl/typo-bld.lmt + texmf-dist/tex/context/base/mkxl/typo-bld.mkxl + texmf-dist/tex/context/base/mkxl/typo-brk.lmt + texmf-dist/tex/context/base/mkxl/typo-brk.mkxl + texmf-dist/tex/context/base/mkxl/typo-cap.lmt + texmf-dist/tex/context/base/mkxl/typo-cap.mkxl + texmf-dist/tex/context/base/mkxl/typo-chr.lmt + texmf-dist/tex/context/base/mkxl/typo-chr.mkxl + texmf-dist/tex/context/base/mkxl/typo-cln.mkxl + texmf-dist/tex/context/base/mkxl/typo-del.mkxl + texmf-dist/tex/context/base/mkxl/typo-dig.lmt + texmf-dist/tex/context/base/mkxl/typo-dig.mkxl + texmf-dist/tex/context/base/mkxl/typo-dir.mkxl + texmf-dist/tex/context/base/mkxl/typo-drp.lmt + texmf-dist/tex/context/base/mkxl/typo-drp.mkxl + texmf-dist/tex/context/base/mkxl/typo-duc.lmt + texmf-dist/tex/context/base/mkxl/typo-fkr.mkxl + texmf-dist/tex/context/base/mkxl/typo-fln.lmt + texmf-dist/tex/context/base/mkxl/typo-fln.mkxl + texmf-dist/tex/context/base/mkxl/typo-ini.lmt + texmf-dist/tex/context/base/mkxl/typo-ini.mkxl + texmf-dist/tex/context/base/mkxl/typo-inj.mkxl + texmf-dist/tex/context/base/mkxl/typo-itc.lmt + texmf-dist/tex/context/base/mkxl/typo-itc.mklx + texmf-dist/tex/context/base/mkxl/typo-itm.mkxl + texmf-dist/tex/context/base/mkxl/typo-krn.lmt + texmf-dist/tex/context/base/mkxl/typo-krn.mkxl + texmf-dist/tex/context/base/mkxl/typo-lan.mkxl + texmf-dist/tex/context/base/mkxl/typo-lig.mkxl + texmf-dist/tex/context/base/mkxl/typo-lin.lmt + texmf-dist/tex/context/base/mkxl/typo-lin.mkxl + texmf-dist/tex/context/base/mkxl/typo-mar.lmt + texmf-dist/tex/context/base/mkxl/typo-mar.mkxl + texmf-dist/tex/context/base/mkxl/typo-ovl.lmt + texmf-dist/tex/context/base/mkxl/typo-ovl.mkxl + texmf-dist/tex/context/base/mkxl/typo-pag.lmt + texmf-dist/tex/context/base/mkxl/typo-pag.mkxl + texmf-dist/tex/context/base/mkxl/typo-par.lmt + texmf-dist/tex/context/base/mkxl/typo-par.mkxl + texmf-dist/tex/context/base/mkxl/typo-plc.mkxl + texmf-dist/tex/context/base/mkxl/typo-pnc.mkxl + texmf-dist/tex/context/base/mkxl/typo-prc.mklx + texmf-dist/tex/context/base/mkxl/typo-rep.mkxl + texmf-dist/tex/context/base/mkxl/typo-rub.lmt + texmf-dist/tex/context/base/mkxl/typo-rub.mkxl + texmf-dist/tex/context/base/mkxl/typo-scr.mkxl + texmf-dist/tex/context/base/mkxl/typo-shp.lmt + texmf-dist/tex/context/base/mkxl/typo-shp.mkxl + texmf-dist/tex/context/base/mkxl/typo-spa.lmt + texmf-dist/tex/context/base/mkxl/typo-spa.mkxl + texmf-dist/tex/context/base/mkxl/typo-sus.lmt + texmf-dist/tex/context/base/mkxl/typo-sus.mkxl + texmf-dist/tex/context/base/mkxl/typo-tal.lmt + texmf-dist/tex/context/base/mkxl/typo-tal.mkxl + texmf-dist/tex/context/base/mkxl/typo-txt.mklx + texmf-dist/tex/context/base/mkxl/typo-wrp.mkxl + texmf-dist/tex/context/base/mkxl/unic-ini.mkxl + texmf-dist/tex/context/bib/common/sample.bib + texmf-dist/tex/context/bib/mkii/bibl-ams.tex + texmf-dist/tex/context/bib/mkii/bibl-apa-de.tex + texmf-dist/tex/context/bib/mkii/bibl-apa-fr.tex + texmf-dist/tex/context/bib/mkii/bibl-apa-it.tex + texmf-dist/tex/context/bib/mkii/bibl-apa.tex + texmf-dist/tex/context/bib/mkii/bibl-aps.tex + texmf-dist/tex/context/bib/mkii/bibl-num-fr.tex + texmf-dist/tex/context/bib/mkii/bibl-num.tex + texmf-dist/tex/context/bib/mkii/bibl-ssa.tex + texmf-dist/tex/context/colors/icc/context/colorprofiles.lua + texmf-dist/tex/context/colors/icc/context/colorprofiles.xml + texmf-dist/tex/context/filenames.pdf + texmf-dist/tex/context/filenames.tex + texmf-dist/tex/context/fonts/mkii/type-buy.mkii + texmf-dist/tex/context/fonts/mkii/type-cbg.mkii + texmf-dist/tex/context/fonts/mkii/type-cow.mkii + texmf-dist/tex/context/fonts/mkii/type-exp.mkii + texmf-dist/tex/context/fonts/mkii/type-fsf.mkii + texmf-dist/tex/context/fonts/mkii/type-ghz.mkii + texmf-dist/tex/context/fonts/mkii/type-hgz.mkii + texmf-dist/tex/context/fonts/mkii/type-mac.mkii + texmf-dist/tex/context/fonts/mkii/type-msw.mkii + texmf-dist/tex/context/fonts/mkii/type-pre.mkii + texmf-dist/tex/context/fonts/mkii/type-win.mkii + texmf-dist/tex/context/fonts/mkii/type-xtx.mkii + texmf-dist/tex/context/fonts/mkiv/antykwa-math.lfg + texmf-dist/tex/context/fonts/mkiv/antykwapoltawskiego.lfg + texmf-dist/tex/context/fonts/mkiv/asana-math.lfg + texmf-dist/tex/context/fonts/mkiv/bonum-math.lfg + texmf-dist/tex/context/fonts/mkiv/cambria-math.lfg + texmf-dist/tex/context/fonts/mkiv/cambria.lfg + texmf-dist/tex/context/fonts/mkiv/cc-icons.lfg + texmf-dist/tex/context/fonts/mkiv/ccicons.lfg + texmf-dist/tex/context/fonts/mkiv/color-latin.lfg + texmf-dist/tex/context/fonts/mkiv/dejavu-math.lfg + texmf-dist/tex/context/fonts/mkiv/demo.lfg + texmf-dist/tex/context/fonts/mkiv/dingbats.lfg + texmf-dist/tex/context/fonts/mkiv/ebgaramond.lfg + texmf-dist/tex/context/fonts/mkiv/euler-math.lfg + texmf-dist/tex/context/fonts/mkiv/hanbatanglvt.lfg + texmf-dist/tex/context/fonts/mkiv/husayni.lfg + texmf-dist/tex/context/fonts/mkiv/hvmath-math.lfg + texmf-dist/tex/context/fonts/mkiv/informal-math.lfg + texmf-dist/tex/context/fonts/mkiv/iwona-math.lfg + texmf-dist/tex/context/fonts/mkiv/lm-math.lfg + texmf-dist/tex/context/fonts/mkiv/lm.lfg + texmf-dist/tex/context/fonts/mkiv/lucida-opentype-math.lfg + texmf-dist/tex/context/fonts/mkiv/lucida-typeone-math.lfg + texmf-dist/tex/context/fonts/mkiv/mathtimes-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdbch-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdici-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdpgd-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdpus-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdput-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdugm-math.lfg + texmf-dist/tex/context/fonts/mkiv/minion-math.lfg + texmf-dist/tex/context/fonts/mkiv/minion.lfg + texmf-dist/tex/context/fonts/mkiv/pagella-math.lfg + texmf-dist/tex/context/fonts/mkiv/px-math.lfg + texmf-dist/tex/context/fonts/mkiv/schola-math.lfg + texmf-dist/tex/context/fonts/mkiv/stix-two-math.lfg + texmf-dist/tex/context/fonts/mkiv/symbol-math.lfg + texmf-dist/tex/context/fonts/mkiv/termes-math.lfg + texmf-dist/tex/context/fonts/mkiv/texgyre.lfg + texmf-dist/tex/context/fonts/mkiv/treatments.lfg + texmf-dist/tex/context/fonts/mkiv/tx-math.lfg + texmf-dist/tex/context/fonts/mkiv/type-imp-antykwa.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-antykwapoltawskiego.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-asana.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-averia.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-buy.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-cambria.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-charter.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-cleartype.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-computer-modern-unicode.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-cow.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-dejavu.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-ebgaramond.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-euler.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-firacode.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-gentium.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-ghz.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-gofonts.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-hgz.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-husayni.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-hvmath.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-inconsolata.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-informal.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-ipaex.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-iwona.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-koeielettersot.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-kurier.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-latinmodern.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lato.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-liberation.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-libertine.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-libertinus.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lmnames.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lucida-opentype.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lucida-typeone.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mathdesign.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mathdigits.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mathtimes.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-minion.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-modernlatin.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mscore.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-opendyslexic.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-osx.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-plex.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-postscript.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-punk.mkxl + texmf-dist/tex/context/fonts/mkiv/type-imp-punknova.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-source.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-stix.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-texgyre.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-unfonts.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-xits.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-xitsbidi.mkiv + texmf-dist/tex/context/fonts/mkiv/unifraktur.lfg + texmf-dist/tex/context/fonts/mkiv/xits-math.lfg + texmf-dist/tex/context/interface/mkii/cont-cs.xml + texmf-dist/tex/context/interface/mkii/cont-de.xml + texmf-dist/tex/context/interface/mkii/cont-fr.xml + texmf-dist/tex/context/interface/mkii/cont-it.xml + texmf-dist/tex/context/interface/mkii/cont-nl.xml + texmf-dist/tex/context/interface/mkii/cont-pe.xml + texmf-dist/tex/context/interface/mkii/cont-ro.xml + texmf-dist/tex/context/interface/mkii/keys-cs.xml + texmf-dist/tex/context/interface/mkii/keys-cz.xml + texmf-dist/tex/context/interface/mkii/keys-de.xml + texmf-dist/tex/context/interface/mkii/keys-en.xml + texmf-dist/tex/context/interface/mkii/keys-fr.xml + texmf-dist/tex/context/interface/mkii/keys-it.xml + texmf-dist/tex/context/interface/mkii/keys-nl.xml + texmf-dist/tex/context/interface/mkii/keys-pe.xml + texmf-dist/tex/context/interface/mkii/keys-ro.xml + texmf-dist/tex/context/interface/mkiv/context-en.xml + texmf-dist/tex/context/interface/mkiv/i-accent.xml + texmf-dist/tex/context/interface/mkiv/i-align.xml + texmf-dist/tex/context/interface/mkiv/i-anchor.xml + texmf-dist/tex/context/interface/mkiv/i-attachment.xml + texmf-dist/tex/context/interface/mkiv/i-attribute.xml + texmf-dist/tex/context/interface/mkiv/i-backend.xml + texmf-dist/tex/context/interface/mkiv/i-background.xml + texmf-dist/tex/context/interface/mkiv/i-bar.xml + texmf-dist/tex/context/interface/mkiv/i-blackrule.xml + texmf-dist/tex/context/interface/mkiv/i-bleed.xml + texmf-dist/tex/context/interface/mkiv/i-block.xml + texmf-dist/tex/context/interface/mkiv/i-bookmark.xml + texmf-dist/tex/context/interface/mkiv/i-boxes.xml + texmf-dist/tex/context/interface/mkiv/i-buffer.xml + texmf-dist/tex/context/interface/mkiv/i-button.xml + texmf-dist/tex/context/interface/mkiv/i-capitals.xml + texmf-dist/tex/context/interface/mkiv/i-catcodes.xml + texmf-dist/tex/context/interface/mkiv/i-character.xml + texmf-dist/tex/context/interface/mkiv/i-characteralign.xml + texmf-dist/tex/context/interface/mkiv/i-characterspacing.xml + texmf-dist/tex/context/interface/mkiv/i-characterstripping.xml + texmf-dist/tex/context/interface/mkiv/i-chart.xml + texmf-dist/tex/context/interface/mkiv/i-charwidth.xml + texmf-dist/tex/context/interface/mkiv/i-chemical.xml + texmf-dist/tex/context/interface/mkiv/i-cleaning.xml + texmf-dist/tex/context/interface/mkiv/i-clipping.xml + texmf-dist/tex/context/interface/mkiv/i-collector.xml + texmf-dist/tex/context/interface/mkiv/i-color.xml + texmf-dist/tex/context/interface/mkiv/i-columns.xml + texmf-dist/tex/context/interface/mkiv/i-combination.xml + texmf-dist/tex/context/interface/mkiv/i-commandhandler.xml + texmf-dist/tex/context/interface/mkiv/i-comment.xml + texmf-dist/tex/context/interface/mkiv/i-common-argument.xml + texmf-dist/tex/context/interface/mkiv/i-common-assignment.xml + texmf-dist/tex/context/interface/mkiv/i-common-definitions.xml + texmf-dist/tex/context/interface/mkiv/i-common-instance.xml + texmf-dist/tex/context/interface/mkiv/i-common-keyword.xml + texmf-dist/tex/context/interface/mkiv/i-common-string.xml + texmf-dist/tex/context/interface/mkiv/i-common-value.xml + texmf-dist/tex/context/interface/mkiv/i-context-modules.xml + texmf-dist/tex/context/interface/mkiv/i-context.pdf + texmf-dist/tex/context/interface/mkiv/i-context.xml + texmf-dist/tex/context/interface/mkiv/i-contextname.xml + texmf-dist/tex/context/interface/mkiv/i-conversion.xml + texmf-dist/tex/context/interface/mkiv/i-counter.xml + texmf-dist/tex/context/interface/mkiv/i-database.xml + texmf-dist/tex/context/interface/mkiv/i-dataset.xml + texmf-dist/tex/context/interface/mkiv/i-define.xml + texmf-dist/tex/context/interface/mkiv/i-delimitedtext.xml + texmf-dist/tex/context/interface/mkiv/i-description.xml + texmf-dist/tex/context/interface/mkiv/i-digits.xml + texmf-dist/tex/context/interface/mkiv/i-dimension.xml + texmf-dist/tex/context/interface/mkiv/i-direction.xml + texmf-dist/tex/context/interface/mkiv/i-document.xml + texmf-dist/tex/context/interface/mkiv/i-dummy.xml + texmf-dist/tex/context/interface/mkiv/i-effect.xml + texmf-dist/tex/context/interface/mkiv/i-enumeration.xml + texmf-dist/tex/context/interface/mkiv/i-export.xml + texmf-dist/tex/context/interface/mkiv/i-field.xml + texmf-dist/tex/context/interface/mkiv/i-figure.xml + texmf-dist/tex/context/interface/mkiv/i-file.xml + texmf-dist/tex/context/interface/mkiv/i-filler.xml + texmf-dist/tex/context/interface/mkiv/i-fillinline.xml + texmf-dist/tex/context/interface/mkiv/i-fillinrule.xml + texmf-dist/tex/context/interface/mkiv/i-firstline.xml + texmf-dist/tex/context/interface/mkiv/i-fittingpage.xml + texmf-dist/tex/context/interface/mkiv/i-floats.xml + texmf-dist/tex/context/interface/mkiv/i-fontfamily.xml + texmf-dist/tex/context/interface/mkiv/i-fonts.xml + texmf-dist/tex/context/interface/mkiv/i-form.xml + texmf-dist/tex/context/interface/mkiv/i-formula.xml + texmf-dist/tex/context/interface/mkiv/i-fraction.xml + texmf-dist/tex/context/interface/mkiv/i-framed.xml + texmf-dist/tex/context/interface/mkiv/i-framedtable.xml + texmf-dist/tex/context/interface/mkiv/i-graphics.xml + texmf-dist/tex/context/interface/mkiv/i-grid.xml + texmf-dist/tex/context/interface/mkiv/i-help.xml + texmf-dist/tex/context/interface/mkiv/i-hemistich.xml + texmf-dist/tex/context/interface/mkiv/i-highlight.xml + texmf-dist/tex/context/interface/mkiv/i-hspace.xml + texmf-dist/tex/context/interface/mkiv/i-hyphenation.xml + texmf-dist/tex/context/interface/mkiv/i-imposition.xml + texmf-dist/tex/context/interface/mkiv/i-indent.xml + texmf-dist/tex/context/interface/mkiv/i-indentedtext.xml + texmf-dist/tex/context/interface/mkiv/i-initial.xml + texmf-dist/tex/context/interface/mkiv/i-injector.xml + texmf-dist/tex/context/interface/mkiv/i-insertion.xml + texmf-dist/tex/context/interface/mkiv/i-interaction.xml + texmf-dist/tex/context/interface/mkiv/i-interactionbar.xml + texmf-dist/tex/context/interface/mkiv/i-interactionmenu.xml + texmf-dist/tex/context/interface/mkiv/i-interactionscreen.xml + texmf-dist/tex/context/interface/mkiv/i-interface.xml + texmf-dist/tex/context/interface/mkiv/i-interlinespace.xml + texmf-dist/tex/context/interface/mkiv/i-ipsum.xml + texmf-dist/tex/context/interface/mkiv/i-italiccorrection.xml + texmf-dist/tex/context/interface/mkiv/i-itemgroup.xml + texmf-dist/tex/context/interface/mkiv/i-items.xml + texmf-dist/tex/context/interface/mkiv/i-javascript.xml + texmf-dist/tex/context/interface/mkiv/i-kerning.xml + texmf-dist/tex/context/interface/mkiv/i-label.xml + texmf-dist/tex/context/interface/mkiv/i-labeltext.xml + texmf-dist/tex/context/interface/mkiv/i-language.xml + texmf-dist/tex/context/interface/mkiv/i-layer.xml + texmf-dist/tex/context/interface/mkiv/i-layout.xml + texmf-dist/tex/context/interface/mkiv/i-linefiller.xml + texmf-dist/tex/context/interface/mkiv/i-linenumber.xml + texmf-dist/tex/context/interface/mkiv/i-lines.xml + texmf-dist/tex/context/interface/mkiv/i-linetable.xml + texmf-dist/tex/context/interface/mkiv/i-linewidth.xml + texmf-dist/tex/context/interface/mkiv/i-list.xml + texmf-dist/tex/context/interface/mkiv/i-logo.xml + texmf-dist/tex/context/interface/mkiv/i-lohi.xml + texmf-dist/tex/context/interface/mkiv/i-lua.xml + texmf-dist/tex/context/interface/mkiv/i-luatable.xml + texmf-dist/tex/context/interface/mkiv/i-makeup.xml + texmf-dist/tex/context/interface/mkiv/i-marginblock.xml + texmf-dist/tex/context/interface/mkiv/i-margindata.xml + texmf-dist/tex/context/interface/mkiv/i-marker.xml + texmf-dist/tex/context/interface/mkiv/i-marking.xml + texmf-dist/tex/context/interface/mkiv/i-math.xml + texmf-dist/tex/context/interface/mkiv/i-mathalignment.xml + texmf-dist/tex/context/interface/mkiv/i-mathcases.xml + texmf-dist/tex/context/interface/mkiv/i-mathfence.xml + texmf-dist/tex/context/interface/mkiv/i-mathmatrix.xml + texmf-dist/tex/context/interface/mkiv/i-mathname.xml + texmf-dist/tex/context/interface/mkiv/i-mathornament.xml + texmf-dist/tex/context/interface/mkiv/i-mathradical.xml + texmf-dist/tex/context/interface/mkiv/i-mathstackers.xml + texmf-dist/tex/context/interface/mkiv/i-metapost.xml + texmf-dist/tex/context/interface/mkiv/i-mixedcolumns.xml + texmf-dist/tex/context/interface/mkiv/i-modes.xml + texmf-dist/tex/context/interface/mkiv/i-modules.xml + texmf-dist/tex/context/interface/mkiv/i-narrow.xml + texmf-dist/tex/context/interface/mkiv/i-naturaltable.xml + texmf-dist/tex/context/interface/mkiv/i-note.xml + texmf-dist/tex/context/interface/mkiv/i-object.xml + texmf-dist/tex/context/interface/mkiv/i-offset.xml + texmf-dist/tex/context/interface/mkiv/i-opposite.xml + texmf-dist/tex/context/interface/mkiv/i-orientation.xml + texmf-dist/tex/context/interface/mkiv/i-ornament.xml + texmf-dist/tex/context/interface/mkiv/i-output.xml + texmf-dist/tex/context/interface/mkiv/i-overlay.xml + texmf-dist/tex/context/interface/mkiv/i-pagebreak.xml + texmf-dist/tex/context/interface/mkiv/i-pagecolumns.xml + texmf-dist/tex/context/interface/mkiv/i-pagecomment.xml + texmf-dist/tex/context/interface/mkiv/i-pagefigure.xml + texmf-dist/tex/context/interface/mkiv/i-pagegrid.xml + texmf-dist/tex/context/interface/mkiv/i-pageinjection.xml + texmf-dist/tex/context/interface/mkiv/i-pagelayout.xml + texmf-dist/tex/context/interface/mkiv/i-pagemarks.xml + texmf-dist/tex/context/interface/mkiv/i-pagenumber.xml + texmf-dist/tex/context/interface/mkiv/i-pageselection.xml + texmf-dist/tex/context/interface/mkiv/i-pageshift.xml + texmf-dist/tex/context/interface/mkiv/i-pagestate.xml + texmf-dist/tex/context/interface/mkiv/i-pairedbox.xml + texmf-dist/tex/context/interface/mkiv/i-papersize.xml + texmf-dist/tex/context/interface/mkiv/i-paragraph.xml + texmf-dist/tex/context/interface/mkiv/i-paragraphnumber.xml + texmf-dist/tex/context/interface/mkiv/i-paragraphs.xml + texmf-dist/tex/context/interface/mkiv/i-parallel.xml + texmf-dist/tex/context/interface/mkiv/i-parbuilder.xml + texmf-dist/tex/context/interface/mkiv/i-parwrapper.xml + texmf-dist/tex/context/interface/mkiv/i-pdf.xml + texmf-dist/tex/context/interface/mkiv/i-penalty.xml + texmf-dist/tex/context/interface/mkiv/i-periods.xml + texmf-dist/tex/context/interface/mkiv/i-phantom.xml + texmf-dist/tex/context/interface/mkiv/i-placeholder.xml + texmf-dist/tex/context/interface/mkiv/i-placement.xml + texmf-dist/tex/context/interface/mkiv/i-position.xml + texmf-dist/tex/context/interface/mkiv/i-positionbar.xml + texmf-dist/tex/context/interface/mkiv/i-positioning.xml + texmf-dist/tex/context/interface/mkiv/i-postponing.xml + texmf-dist/tex/context/interface/mkiv/i-processor.xml + texmf-dist/tex/context/interface/mkiv/i-profile.xml + texmf-dist/tex/context/interface/mkiv/i-publication.xml + texmf-dist/tex/context/interface/mkiv/i-random.xml + texmf-dist/tex/context/interface/mkiv/i-readme.pdf + texmf-dist/tex/context/interface/mkiv/i-readme.tex + texmf-dist/tex/context/interface/mkiv/i-references.xml + texmf-dist/tex/context/interface/mkiv/i-regime.xml + texmf-dist/tex/context/interface/mkiv/i-register.xml + texmf-dist/tex/context/interface/mkiv/i-renderingwindow.xml + texmf-dist/tex/context/interface/mkiv/i-replacement.xml + texmf-dist/tex/context/interface/mkiv/i-rotatation.xml + texmf-dist/tex/context/interface/mkiv/i-rotation.xml + texmf-dist/tex/context/interface/mkiv/i-ruby.xml + texmf-dist/tex/context/interface/mkiv/i-scale.xml + texmf-dist/tex/context/interface/mkiv/i-scite.xml + texmf-dist/tex/context/interface/mkiv/i-script.xml + texmf-dist/tex/context/interface/mkiv/i-section.xml + texmf-dist/tex/context/interface/mkiv/i-sectionblock.xml + texmf-dist/tex/context/interface/mkiv/i-selector.xml + texmf-dist/tex/context/interface/mkiv/i-setup.xml + texmf-dist/tex/context/interface/mkiv/i-setups.xml + texmf-dist/tex/context/interface/mkiv/i-shift.xml + texmf-dist/tex/context/interface/mkiv/i-sidebar.xml + texmf-dist/tex/context/interface/mkiv/i-simplecolumns.xml + texmf-dist/tex/context/interface/mkiv/i-smash.xml + texmf-dist/tex/context/interface/mkiv/i-sort.xml + texmf-dist/tex/context/interface/mkiv/i-soundtrack.xml + texmf-dist/tex/context/interface/mkiv/i-spellchecking.xml + texmf-dist/tex/context/interface/mkiv/i-spreadsheet.xml + texmf-dist/tex/context/interface/mkiv/i-startstop.xml + texmf-dist/tex/context/interface/mkiv/i-steps.xml + texmf-dist/tex/context/interface/mkiv/i-stream.xml + texmf-dist/tex/context/interface/mkiv/i-string.xml + texmf-dist/tex/context/interface/mkiv/i-strut.xml + texmf-dist/tex/context/interface/mkiv/i-symbol.xml + texmf-dist/tex/context/interface/mkiv/i-synctex.xml + texmf-dist/tex/context/interface/mkiv/i-synonym.xml + texmf-dist/tex/context/interface/mkiv/i-system.xml + texmf-dist/tex/context/interface/mkiv/i-systemlog.xml + texmf-dist/tex/context/interface/mkiv/i-table.xml + texmf-dist/tex/context/interface/mkiv/i-tabulation.xml + texmf-dist/tex/context/interface/mkiv/i-tagging.xml + texmf-dist/tex/context/interface/mkiv/i-tex.xml + texmf-dist/tex/context/interface/mkiv/i-textbackground.xml + texmf-dist/tex/context/interface/mkiv/i-textflow.xml + texmf-dist/tex/context/interface/mkiv/i-textrule.xml + texmf-dist/tex/context/interface/mkiv/i-texts.xml + texmf-dist/tex/context/interface/mkiv/i-thinrule.xml + texmf-dist/tex/context/interface/mkiv/i-todo.xml + texmf-dist/tex/context/interface/mkiv/i-token.xml + texmf-dist/tex/context/interface/mkiv/i-tolerance.xml + texmf-dist/tex/context/interface/mkiv/i-tooltip.xml + texmf-dist/tex/context/interface/mkiv/i-tracker.xml + texmf-dist/tex/context/interface/mkiv/i-translate.xml + texmf-dist/tex/context/interface/mkiv/i-translation.xml + texmf-dist/tex/context/interface/mkiv/i-twopassdata.xml + texmf-dist/tex/context/interface/mkiv/i-typography.xml + texmf-dist/tex/context/interface/mkiv/i-unit.xml + texmf-dist/tex/context/interface/mkiv/i-userdata.xml + texmf-dist/tex/context/interface/mkiv/i-variables.xml + texmf-dist/tex/context/interface/mkiv/i-verbatim.xml + texmf-dist/tex/context/interface/mkiv/i-version.xml + texmf-dist/tex/context/interface/mkiv/i-viewerlayer.xml + texmf-dist/tex/context/interface/mkiv/i-visual.xml + texmf-dist/tex/context/interface/mkiv/i-visualizer.xml + texmf-dist/tex/context/interface/mkiv/i-vspace.xml + texmf-dist/tex/context/interface/mkiv/i-whitespace.xml + texmf-dist/tex/context/interface/mkiv/i-xml.xml + texmf-dist/tex/context/interface/mkiv/i-xtable.xml + texmf-dist/tex/context/modules/common/s-abbreviations-extras.tex + texmf-dist/tex/context/modules/common/s-abbreviations-logos.tex + texmf-dist/tex/context/modules/common/s-abbreviations-mixed.mkiv + texmf-dist/tex/context/modules/common/s-abbreviations-pseudocaps.mkiv + texmf-dist/tex/context/modules/common/s-abbreviations-smallcaps.mkiv + texmf-dist/tex/context/modules/common/s-abbreviations-words.mkiv + texmf-dist/tex/context/modules/common/s-cdr-01.tex + texmf-dist/tex/context/modules/common/s-faq-00.tex + texmf-dist/tex/context/modules/common/s-faq-01.tex + texmf-dist/tex/context/modules/common/s-faq-02.tex + texmf-dist/tex/context/modules/common/s-faq-03.tex + texmf-dist/tex/context/modules/common/s-mod.ctx + texmf-dist/tex/context/modules/common/s-obsolete-tokens.mkiv + texmf-dist/tex/context/modules/common/s-pre-00.tex + texmf-dist/tex/context/modules/common/s-pre-06.tex + texmf-dist/tex/context/modules/common/s-pre-07.tex + texmf-dist/tex/context/modules/common/s-pre-08.tex + texmf-dist/tex/context/modules/common/s-pre-12.tex + texmf-dist/tex/context/modules/common/s-pre-13.tex + texmf-dist/tex/context/modules/common/s-pre-16.tex + texmf-dist/tex/context/modules/common/s-pre-18.tex + texmf-dist/tex/context/modules/common/s-pre-22.tex + texmf-dist/tex/context/modules/common/s-pre-23.tex + texmf-dist/tex/context/modules/common/s-pre-26.tex + texmf-dist/tex/context/modules/common/s-pre-27.tex + texmf-dist/tex/context/modules/common/s-pre-50.tex + texmf-dist/tex/context/modules/common/s-pre-66.tex + texmf-dist/tex/context/modules/common/s-pre-67.tex + texmf-dist/tex/context/modules/common/s-pre-93.tex + texmf-dist/tex/context/modules/common/s-pre-96.tex + texmf-dist/tex/context/modules/mkii/m-arabtex.mkii + texmf-dist/tex/context/modules/mkii/m-chart.mkii + texmf-dist/tex/context/modules/mkii/m-chemic.mkii + texmf-dist/tex/context/modules/mkii/m-cweb.mkii + texmf-dist/tex/context/modules/mkii/m-database.mkii + texmf-dist/tex/context/modules/mkii/m-dratex.mkii + texmf-dist/tex/context/modules/mkii/m-edtsnc.mkii + texmf-dist/tex/context/modules/mkii/m-educat.mkii + texmf-dist/tex/context/modules/mkii/m-format.mkii + texmf-dist/tex/context/modules/mkii/m-graph.mkii + texmf-dist/tex/context/modules/mkii/m-layout.mkii + texmf-dist/tex/context/modules/mkii/m-level.mkii + texmf-dist/tex/context/modules/mkii/m-narrowtt.mkii + texmf-dist/tex/context/modules/mkii/m-obsolete.mkii + texmf-dist/tex/context/modules/mkii/m-pdfsnc.mkii + texmf-dist/tex/context/modules/mkii/m-pictex.mkii + texmf-dist/tex/context/modules/mkii/m-pstricks.mkii + texmf-dist/tex/context/modules/mkii/m-quest.mkii + texmf-dist/tex/context/modules/mkii/m-r.mkii + texmf-dist/tex/context/modules/mkii/m-steps.mkii + texmf-dist/tex/context/modules/mkii/m-streams.mkii + texmf-dist/tex/context/modules/mkii/m-subsub.mkii + texmf-dist/tex/context/modules/mkii/m-tex4ht.mkii + texmf-dist/tex/context/modules/mkii/m-units.mkii + texmf-dist/tex/context/modules/mkii/m-visual.mkii + texmf-dist/tex/context/modules/mkii/ppchtex.mkii + texmf-dist/tex/context/modules/mkii/rlxcache.rlx + texmf-dist/tex/context/modules/mkii/rlxtools.rlx + texmf-dist/tex/context/modules/mkii/s-abr-01.mkii + texmf-dist/tex/context/modules/mkii/s-abr-02.mkii + texmf-dist/tex/context/modules/mkii/s-chi-00.mkii + texmf-dist/tex/context/modules/mkii/s-fnt-01.mkii + texmf-dist/tex/context/modules/mkii/s-fnt-02.mkii + texmf-dist/tex/context/modules/mkii/s-grk-00.mkii + texmf-dist/tex/context/modules/mkii/s-jap-00.mkii + texmf-dist/tex/context/modules/mkii/s-mag-01.mkii + texmf-dist/tex/context/modules/mkii/s-map-10.mkii + texmf-dist/tex/context/modules/mkii/s-mod-00.mkii + texmf-dist/tex/context/modules/mkii/s-mod-01.mkii + texmf-dist/tex/context/modules/mkii/s-mod-02.mkii + texmf-dist/tex/context/modules/mkii/s-pre-01.mkii + texmf-dist/tex/context/modules/mkii/s-pre-02.mkii + texmf-dist/tex/context/modules/mkii/s-pre-03.mkii + texmf-dist/tex/context/modules/mkii/s-pre-04.mkii + texmf-dist/tex/context/modules/mkii/s-pre-05.mkii + texmf-dist/tex/context/modules/mkii/s-pre-09.mkii + texmf-dist/tex/context/modules/mkii/s-pre-10.mkii + texmf-dist/tex/context/modules/mkii/s-pre-11.mkii + texmf-dist/tex/context/modules/mkii/s-pre-14.mkii + texmf-dist/tex/context/modules/mkii/s-pre-15.mkii + texmf-dist/tex/context/modules/mkii/s-pre-17.mkii + texmf-dist/tex/context/modules/mkii/s-pre-19.mkii + texmf-dist/tex/context/modules/mkii/s-pre-30.mkii + texmf-dist/tex/context/modules/mkii/s-pre-60.mkii + texmf-dist/tex/context/modules/mkii/s-pre-61.mkii + texmf-dist/tex/context/modules/mkii/s-pre-62.mkii + texmf-dist/tex/context/modules/mkii/s-pre-63.mkii + texmf-dist/tex/context/modules/mkii/s-pre-64.mkii + texmf-dist/tex/context/modules/mkii/s-pre-68.mkii + texmf-dist/tex/context/modules/mkii/s-pre-71.mkii + texmf-dist/tex/context/modules/mkii/s-ptj-01.mkii + texmf-dist/tex/context/modules/mkii/s-syntax.mkii + texmf-dist/tex/context/modules/mkii/x-calcmath.mkii + texmf-dist/tex/context/modules/mkii/x-chemml.mkii + texmf-dist/tex/context/modules/mkii/x-chemml.xsd + texmf-dist/tex/context/modules/mkii/x-contml.mkii + texmf-dist/tex/context/modules/mkii/x-contml.xsd + texmf-dist/tex/context/modules/mkii/x-corres.mkii + texmf-dist/tex/context/modules/mkii/x-corres.rng + texmf-dist/tex/context/modules/mkii/x-dir-01.mkii + texmf-dist/tex/context/modules/mkii/x-dir-02.mkii + texmf-dist/tex/context/modules/mkii/x-dir-05.mkii + texmf-dist/tex/context/modules/mkii/x-fdf-00.mkii + texmf-dist/tex/context/modules/mkii/x-fe.mkii + texmf-dist/tex/context/modules/mkii/x-fig-00.dtd + texmf-dist/tex/context/modules/mkii/x-fig-00.mkii + texmf-dist/tex/context/modules/mkii/x-fig-00.xsd + texmf-dist/tex/context/modules/mkii/x-fig-01.mkii + texmf-dist/tex/context/modules/mkii/x-fig-02.mkii + texmf-dist/tex/context/modules/mkii/x-fig-03.mkii + texmf-dist/tex/context/modules/mkii/x-fo.mkii + texmf-dist/tex/context/modules/mkii/x-foxet.mkii + texmf-dist/tex/context/modules/mkii/x-mathml.mkii + texmf-dist/tex/context/modules/mkii/x-mathml.xsd + texmf-dist/tex/context/modules/mkii/x-newcml.mkii + texmf-dist/tex/context/modules/mkii/x-newmme.mkii + texmf-dist/tex/context/modules/mkii/x-newmml.mkii + texmf-dist/tex/context/modules/mkii/x-newmmo.mkii + texmf-dist/tex/context/modules/mkii/x-newpml.mkii + texmf-dist/tex/context/modules/mkii/x-om2cml.xsl + texmf-dist/tex/context/modules/mkii/x-openmath.mkii + texmf-dist/tex/context/modules/mkii/x-openmath.xsl + texmf-dist/tex/context/modules/mkii/x-physml.mkii + texmf-dist/tex/context/modules/mkii/x-physml.xsd + texmf-dist/tex/context/modules/mkii/x-res-00.mkii + texmf-dist/tex/context/modules/mkii/x-res-01.mkii + texmf-dist/tex/context/modules/mkii/x-res-02.mkii + texmf-dist/tex/context/modules/mkii/x-res-03.mkii + texmf-dist/tex/context/modules/mkii/x-res-04.mkii + texmf-dist/tex/context/modules/mkii/x-res-08.mkii + texmf-dist/tex/context/modules/mkii/x-res-09.mkii + texmf-dist/tex/context/modules/mkii/x-res-10.mkii + texmf-dist/tex/context/modules/mkii/x-res-11.mkii + texmf-dist/tex/context/modules/mkii/x-res-12.mkii + texmf-dist/tex/context/modules/mkii/x-res-20.mkii + texmf-dist/tex/context/modules/mkii/x-res-50.mkii + texmf-dist/tex/context/modules/mkii/x-sch-00.mkii + texmf-dist/tex/context/modules/mkii/x-sch-01.mkii + texmf-dist/tex/context/modules/mkii/x-set-01.mkii + texmf-dist/tex/context/modules/mkii/x-set-02.mkii + texmf-dist/tex/context/modules/mkii/x-set-11.mkii + texmf-dist/tex/context/modules/mkii/x-set-12.mkii + texmf-dist/tex/context/modules/mkii/x-sm2om.xsl + texmf-dist/tex/context/modules/mkii/x-steps.mkii + texmf-dist/tex/context/modules/mkii/x-xml-01.mkii + texmf-dist/tex/context/modules/mkii/x-xml-02.mkii + texmf-dist/tex/context/modules/mkii/x-xml-11.mkii + texmf-dist/tex/context/modules/mkiv/m-asymptote.lua + texmf-dist/tex/context/modules/mkiv/m-asymptote.mkiv + texmf-dist/tex/context/modules/mkiv/m-barcodes.mkiv + texmf-dist/tex/context/modules/mkiv/m-catchword.mkiv + texmf-dist/tex/context/modules/mkiv/m-chart.lua + texmf-dist/tex/context/modules/mkiv/m-chart.mkvi + texmf-dist/tex/context/modules/mkiv/m-chemic.mkiv + texmf-dist/tex/context/modules/mkiv/m-compatible.mkiv + texmf-dist/tex/context/modules/mkiv/m-cweb.mkiv + texmf-dist/tex/context/modules/mkiv/m-database.lua + texmf-dist/tex/context/modules/mkiv/m-database.mkiv + texmf-dist/tex/context/modules/mkiv/m-directives.mkiv + texmf-dist/tex/context/modules/mkiv/m-educat.mkiv + texmf-dist/tex/context/modules/mkiv/m-escrito.lua + texmf-dist/tex/context/modules/mkiv/m-escrito.mkiv + texmf-dist/tex/context/modules/mkiv/m-examn.mkiv + texmf-dist/tex/context/modules/mkiv/m-fields.mkiv + texmf-dist/tex/context/modules/mkiv/m-format.mkiv + texmf-dist/tex/context/modules/mkiv/m-gnuplot.mkxl + texmf-dist/tex/context/modules/mkiv/m-graph.mkiv + texmf-dist/tex/context/modules/mkiv/m-hemistich.mkiv + texmf-dist/tex/context/modules/mkiv/m-ipsum.mkiv + texmf-dist/tex/context/modules/mkiv/m-json.mkiv + texmf-dist/tex/context/modules/mkiv/m-layout.mkiv + texmf-dist/tex/context/modules/mkiv/m-logcategories.mkiv + texmf-dist/tex/context/modules/mkiv/m-mathcrap.mkiv + texmf-dist/tex/context/modules/mkiv/m-matrix.mkiv + texmf-dist/tex/context/modules/mkiv/m-maybe.mkiv + texmf-dist/tex/context/modules/mkiv/m-media.mkiv + texmf-dist/tex/context/modules/mkiv/m-mkii.mkiv + texmf-dist/tex/context/modules/mkiv/m-mkivhacks.mkiv + texmf-dist/tex/context/modules/mkiv/m-morse.mkvi + texmf-dist/tex/context/modules/mkiv/m-narrowtt.mkiv + texmf-dist/tex/context/modules/mkiv/m-nodechart.lua + texmf-dist/tex/context/modules/mkiv/m-nodechart.mkvi + texmf-dist/tex/context/modules/mkiv/m-ntb-to-xtb.mkiv + texmf-dist/tex/context/modules/mkiv/m-obsolete.mkiv + texmf-dist/tex/context/modules/mkiv/m-old-columnsets.mkiv + texmf-dist/tex/context/modules/mkiv/m-old-multicolumns.mkiv + texmf-dist/tex/context/modules/mkiv/m-oldfun.mkiv + texmf-dist/tex/context/modules/mkiv/m-oldnum.mkiv + texmf-dist/tex/context/modules/mkiv/m-pictex.mkiv + texmf-dist/tex/context/modules/mkiv/m-pipemode.mkiv + texmf-dist/tex/context/modules/mkiv/m-pstricks.lua + texmf-dist/tex/context/modules/mkiv/m-pstricks.mkiv + texmf-dist/tex/context/modules/mkiv/m-punk.mkiv + texmf-dist/tex/context/modules/mkiv/m-scite.mkiv + texmf-dist/tex/context/modules/mkiv/m-simulate.mkiv + texmf-dist/tex/context/modules/mkiv/m-spreadsheet.lua + texmf-dist/tex/context/modules/mkiv/m-spreadsheet.mkiv + texmf-dist/tex/context/modules/mkiv/m-sql.mkiv + texmf-dist/tex/context/modules/mkiv/m-steps.lua + texmf-dist/tex/context/modules/mkiv/m-steps.mkvi + texmf-dist/tex/context/modules/mkiv/m-subsub.mkiv + texmf-dist/tex/context/modules/mkiv/m-system-aliasing.mkiv + texmf-dist/tex/context/modules/mkiv/m-system-readers.mkxl + texmf-dist/tex/context/modules/mkiv/m-three.mkiv + texmf-dist/tex/context/modules/mkiv/m-tikz.mkiv + texmf-dist/tex/context/modules/mkiv/m-timing.mkiv + texmf-dist/tex/context/modules/mkiv/m-timing.mkxl + texmf-dist/tex/context/modules/mkiv/m-trackers.mkiv + texmf-dist/tex/context/modules/mkiv/m-translate.mkiv + texmf-dist/tex/context/modules/mkiv/m-typesetting.mkiv + texmf-dist/tex/context/modules/mkiv/m-units.mkiv + texmf-dist/tex/context/modules/mkiv/m-visual.mkiv + texmf-dist/tex/context/modules/mkiv/ppchtex.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-mixed.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-pseudocaps.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-smallcaps.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-words.mkiv + texmf-dist/tex/context/modules/mkiv/s-article-basic.mkiv + texmf-dist/tex/context/modules/mkiv/s-article-titlepage.mkiv + texmf-dist/tex/context/modules/mkiv/s-article-titletop.mkiv + texmf-dist/tex/context/modules/mkiv/s-cgj.mkiv + texmf-dist/tex/context/modules/mkiv/s-characters-properties.lua + texmf-dist/tex/context/modules/mkiv/s-characters-properties.mkiv + texmf-dist/tex/context/modules/mkiv/s-domotica-settings.lua + texmf-dist/tex/context/modules/mkiv/s-domotica-settings.mkiv + texmf-dist/tex/context/modules/mkiv/s-evohome.mkiv + texmf-dist/tex/context/modules/mkiv/s-figures-names.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-basics.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-charts.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-cjk.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-complete.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-coverage.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-coverage.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-effects.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-emoji.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-engines.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-features.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-features.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-goodies.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-goodies.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-kerns.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-ligatures.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-missing.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-missing.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-overlay.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-shapes.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-shapes.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-statistics.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-steps.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-system.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-system.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-tables.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-tables.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-variable.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-variable.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-vectors.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-vectors.mkiv + texmf-dist/tex/context/modules/mkiv/s-inf-01.mkvi + texmf-dist/tex/context/modules/mkiv/s-inf-02.mkiv + texmf-dist/tex/context/modules/mkiv/s-inf-03.mkiv + texmf-dist/tex/context/modules/mkiv/s-inf-04.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-counters.lua + texmf-dist/tex/context/modules/mkiv/s-languages-counters.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-frequencies.lua + texmf-dist/tex/context/modules/mkiv/s-languages-frequencies.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-hyphenation.lua + texmf-dist/tex/context/modules/mkiv/s-languages-hyphenation.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-sorting.lua + texmf-dist/tex/context/modules/mkiv/s-languages-sorting.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-system.lua + texmf-dist/tex/context/modules/mkiv/s-languages-system.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-words.lua + texmf-dist/tex/context/modules/mkiv/s-languages-words.mkiv + texmf-dist/tex/context/modules/mkiv/s-lingual-de.mkiv + texmf-dist/tex/context/modules/mkiv/s-magazine-basic.mkiv + texmf-dist/tex/context/modules/mkiv/s-maps.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-characters.lua + texmf-dist/tex/context/modules/mkiv/s-math-characters.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-coverage.lua + texmf-dist/tex/context/modules/mkiv/s-math-coverage.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-extensibles.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-ligatures.lua + texmf-dist/tex/context/modules/mkiv/s-math-ligatures.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-parameters.lua + texmf-dist/tex/context/modules/mkiv/s-math-parameters.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-repertoire.mkiv + texmf-dist/tex/context/modules/mkiv/s-module-basic.mkiv + texmf-dist/tex/context/modules/mkiv/s-pages-statistics.mkiv + texmf-dist/tex/context/modules/mkiv/s-physics-units.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-balls.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-banner.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-bars.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-boring.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-colorful.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-common.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-dark.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-four.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-funny.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-fuzzy.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-green.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-grow.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-lines.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-luatex.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-organic.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-original.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-ovals.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-overlap.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-phone.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-punk.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-random.lua + texmf-dist/tex/context/modules/mkiv/s-present-random.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-shaded.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-simple.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-slanted.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-split.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-stack.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-stepper.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-steps.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-stepwise.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-tiles.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-weird.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-windows.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-wobbling.mkiv + texmf-dist/tex/context/modules/mkiv/s-references-identify.mkiv + texmf-dist/tex/context/modules/mkiv/s-references-show.mkiv + texmf-dist/tex/context/modules/mkiv/s-regimes-list.mkiv + texmf-dist/tex/context/modules/mkiv/s-setups-macros.mkiv + texmf-dist/tex/context/modules/mkiv/s-setups-missing.mkiv + texmf-dist/tex/context/modules/mkiv/s-sql-tables.lua + texmf-dist/tex/context/modules/mkiv/s-sql-tables.mkiv + texmf-dist/tex/context/modules/mkiv/s-structure-sections.mkiv + texmf-dist/tex/context/modules/mkiv/s-syntax.mkiv + texmf-dist/tex/context/modules/mkiv/s-system-macros.mkxl + texmf-dist/tex/context/modules/mkiv/s-system-tokens.mkxl + texmf-dist/tex/context/modules/mkiv/s-system-visual.mkiv + texmf-dist/tex/context/modules/mkiv/s-tugboat-columns.mkiv + texmf-dist/tex/context/modules/mkiv/s-tugboat.mkiv + texmf-dist/tex/context/modules/mkiv/s-typesetting-kerning.mkiv + texmf-dist/tex/context/modules/mkiv/s-xml-analyzers.lua + texmf-dist/tex/context/modules/mkiv/s-xml-analyzers.mkiv + texmf-dist/tex/context/modules/mkiv/s-youless.mkiv + texmf-dist/tex/context/modules/mkiv/x-asciimath.lua + texmf-dist/tex/context/modules/mkiv/x-asciimath.mkiv + texmf-dist/tex/context/modules/mkiv/x-calcmath.lua + texmf-dist/tex/context/modules/mkiv/x-calcmath.mkiv + texmf-dist/tex/context/modules/mkiv/x-cals.lua + texmf-dist/tex/context/modules/mkiv/x-cals.mkiv + texmf-dist/tex/context/modules/mkiv/x-chemml.lua + texmf-dist/tex/context/modules/mkiv/x-chemml.mkiv + texmf-dist/tex/context/modules/mkiv/x-ct.lua + texmf-dist/tex/context/modules/mkiv/x-ct.mkiv + texmf-dist/tex/context/modules/mkiv/x-entities.mkiv + texmf-dist/tex/context/modules/mkiv/x-foxet.mkiv + texmf-dist/tex/context/modules/mkiv/x-html.mkiv + texmf-dist/tex/context/modules/mkiv/x-ldx.ctx + texmf-dist/tex/context/modules/mkiv/x-ldx.lua + texmf-dist/tex/context/modules/mkiv/x-ldx.mkiv + texmf-dist/tex/context/modules/mkiv/x-lmx-demo.mkiv + texmf-dist/tex/context/modules/mkiv/x-lmx-html.mkiv + texmf-dist/tex/context/modules/mkiv/x-math-svg.lua + texmf-dist/tex/context/modules/mkiv/x-math-svg.mkvi + texmf-dist/tex/context/modules/mkiv/x-mathml-basics.mkiv + texmf-dist/tex/context/modules/mkiv/x-mathml-html.mkiv + texmf-dist/tex/context/modules/mkiv/x-mathml.lua + texmf-dist/tex/context/modules/mkiv/x-mathml.mkiv + texmf-dist/tex/context/modules/mkiv/x-newmml.mkiv + texmf-dist/tex/context/modules/mkiv/x-pandoc.mkiv + texmf-dist/tex/context/modules/mkiv/x-pfs-01.mkiv + texmf-dist/tex/context/modules/mkiv/x-pfsense.ctx + texmf-dist/tex/context/modules/mkiv/x-physml.mkiv + texmf-dist/tex/context/modules/mkiv/x-res-01.mkiv + texmf-dist/tex/context/modules/mkiv/x-res-50.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-basics.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-generate.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-overview.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-proofing.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups.ctx + texmf-dist/tex/context/modules/mkiv/x-setups.mkiv + texmf-dist/tex/context/modules/mkiv/x-steps.mkiv + texmf-dist/tex/context/modules/mkiv/x-udhr.mkiv + texmf-dist/tex/context/modules/mkiv/x-xfdf.mkiv + texmf-dist/tex/context/modules/mkxl/s-characters-combinations.lmt + texmf-dist/tex/context/modules/mkxl/s-characters-combinations.mkxl + texmf-dist/tex/context/modules/mkxl/s-colors-show.mkxl + texmf-dist/tex/context/modules/mkxl/s-fonts-show.mkxl + texmf-dist/tex/context/modules/mkxl/s-layout-show.mkxl + texmf-dist/tex/context/modules/mkxl/s-publications-show.mkxl + texmf-dist/tex/context/modules/mkxl/s-symbols-show.mkxl + texmf-dist/tex/context/patterns/common/lang-af.rme + texmf-dist/tex/context/patterns/common/lang-agr.rme + texmf-dist/tex/context/patterns/common/lang-ala.rme + texmf-dist/tex/context/patterns/common/lang-bg.rme + texmf-dist/tex/context/patterns/common/lang-ca.rme + texmf-dist/tex/context/patterns/common/lang-cs.rme + texmf-dist/tex/context/patterns/common/lang-cy.rme + texmf-dist/tex/context/patterns/common/lang-da.rme + texmf-dist/tex/context/patterns/common/lang-de.rme + texmf-dist/tex/context/patterns/common/lang-deo.rme + texmf-dist/tex/context/patterns/common/lang-eo.rme + texmf-dist/tex/context/patterns/common/lang-es.rme + texmf-dist/tex/context/patterns/common/lang-et.rme + texmf-dist/tex/context/patterns/common/lang-eu.rme + texmf-dist/tex/context/patterns/common/lang-fi.rme + texmf-dist/tex/context/patterns/common/lang-fr.rme + texmf-dist/tex/context/patterns/common/lang-gb.rme + texmf-dist/tex/context/patterns/common/lang-hr.rme + texmf-dist/tex/context/patterns/common/lang-hu.rme + texmf-dist/tex/context/patterns/common/lang-is.rme + texmf-dist/tex/context/patterns/common/lang-it.rme + texmf-dist/tex/context/patterns/common/lang-la.rme + texmf-dist/tex/context/patterns/common/lang-lt.rme + texmf-dist/tex/context/patterns/common/lang-lv.rme + texmf-dist/tex/context/patterns/common/lang-mk.rme + texmf-dist/tex/context/patterns/common/lang-ml.rme + texmf-dist/tex/context/patterns/common/lang-mn.rme + texmf-dist/tex/context/patterns/common/lang-nb.rme + texmf-dist/tex/context/patterns/common/lang-nl.rme + texmf-dist/tex/context/patterns/common/lang-nn.rme + texmf-dist/tex/context/patterns/common/lang-pl.rme + texmf-dist/tex/context/patterns/common/lang-pt.rme + texmf-dist/tex/context/patterns/common/lang-ro.rme + texmf-dist/tex/context/patterns/common/lang-ru.rme + texmf-dist/tex/context/patterns/common/lang-sk.rme + texmf-dist/tex/context/patterns/common/lang-sl.rme + texmf-dist/tex/context/patterns/common/lang-sr.rme + texmf-dist/tex/context/patterns/common/lang-sv.rme + texmf-dist/tex/context/patterns/common/lang-th.rme + texmf-dist/tex/context/patterns/common/lang-tk.rme + texmf-dist/tex/context/patterns/common/lang-tr.rme + texmf-dist/tex/context/patterns/common/lang-uk.rme + texmf-dist/tex/context/patterns/common/lang-us.rme + texmf-dist/tex/context/patterns/common/lang-zh.rme + texmf-dist/tex/context/patterns/mkii/lang-af.hyp + texmf-dist/tex/context/patterns/mkii/lang-af.pat + texmf-dist/tex/context/patterns/mkii/lang-agr.hyp + texmf-dist/tex/context/patterns/mkii/lang-agr.pat + texmf-dist/tex/context/patterns/mkii/lang-ala.hyp + texmf-dist/tex/context/patterns/mkii/lang-ala.pat + texmf-dist/tex/context/patterns/mkii/lang-bg.hyp + texmf-dist/tex/context/patterns/mkii/lang-bg.pat + texmf-dist/tex/context/patterns/mkii/lang-ca.hyp + texmf-dist/tex/context/patterns/mkii/lang-ca.pat + texmf-dist/tex/context/patterns/mkii/lang-cs.hyp + texmf-dist/tex/context/patterns/mkii/lang-cs.pat + texmf-dist/tex/context/patterns/mkii/lang-cy.hyp + texmf-dist/tex/context/patterns/mkii/lang-cy.pat + texmf-dist/tex/context/patterns/mkii/lang-da.hyp + texmf-dist/tex/context/patterns/mkii/lang-da.pat + texmf-dist/tex/context/patterns/mkii/lang-de.hyp + texmf-dist/tex/context/patterns/mkii/lang-de.pat + texmf-dist/tex/context/patterns/mkii/lang-deo.hyp + texmf-dist/tex/context/patterns/mkii/lang-deo.pat + texmf-dist/tex/context/patterns/mkii/lang-eo.hyp + texmf-dist/tex/context/patterns/mkii/lang-eo.pat + texmf-dist/tex/context/patterns/mkii/lang-es.hyp + texmf-dist/tex/context/patterns/mkii/lang-es.pat + texmf-dist/tex/context/patterns/mkii/lang-et.hyp + texmf-dist/tex/context/patterns/mkii/lang-et.pat + texmf-dist/tex/context/patterns/mkii/lang-eu.hyp + texmf-dist/tex/context/patterns/mkii/lang-eu.pat + texmf-dist/tex/context/patterns/mkii/lang-fi.hyp + texmf-dist/tex/context/patterns/mkii/lang-fi.pat + texmf-dist/tex/context/patterns/mkii/lang-fr.hyp + texmf-dist/tex/context/patterns/mkii/lang-fr.pat + texmf-dist/tex/context/patterns/mkii/lang-gb.hyp + texmf-dist/tex/context/patterns/mkii/lang-gb.pat + texmf-dist/tex/context/patterns/mkii/lang-hr.hyp + texmf-dist/tex/context/patterns/mkii/lang-hr.pat + texmf-dist/tex/context/patterns/mkii/lang-hu.hyp + texmf-dist/tex/context/patterns/mkii/lang-hu.pat + texmf-dist/tex/context/patterns/mkii/lang-is.hyp + texmf-dist/tex/context/patterns/mkii/lang-is.pat + texmf-dist/tex/context/patterns/mkii/lang-it.hyp + texmf-dist/tex/context/patterns/mkii/lang-it.pat + texmf-dist/tex/context/patterns/mkii/lang-la.hyp + texmf-dist/tex/context/patterns/mkii/lang-la.pat + texmf-dist/tex/context/patterns/mkii/lang-lt.hyp + texmf-dist/tex/context/patterns/mkii/lang-lt.pat + texmf-dist/tex/context/patterns/mkii/lang-lv.hyp + texmf-dist/tex/context/patterns/mkii/lang-lv.pat + texmf-dist/tex/context/patterns/mkii/lang-mk.hyp + texmf-dist/tex/context/patterns/mkii/lang-mk.pat + texmf-dist/tex/context/patterns/mkii/lang-ml.hyp + texmf-dist/tex/context/patterns/mkii/lang-ml.pat + texmf-dist/tex/context/patterns/mkii/lang-mn.hyp + texmf-dist/tex/context/patterns/mkii/lang-mn.pat + texmf-dist/tex/context/patterns/mkii/lang-nb.hyp + texmf-dist/tex/context/patterns/mkii/lang-nb.pat + texmf-dist/tex/context/patterns/mkii/lang-nl.hyp + texmf-dist/tex/context/patterns/mkii/lang-nl.pat + texmf-dist/tex/context/patterns/mkii/lang-nn.hyp + texmf-dist/tex/context/patterns/mkii/lang-nn.pat + texmf-dist/tex/context/patterns/mkii/lang-pl.hyp + texmf-dist/tex/context/patterns/mkii/lang-pl.pat + texmf-dist/tex/context/patterns/mkii/lang-pt.hyp + texmf-dist/tex/context/patterns/mkii/lang-pt.pat + texmf-dist/tex/context/patterns/mkii/lang-ro.hyp + texmf-dist/tex/context/patterns/mkii/lang-ro.pat + texmf-dist/tex/context/patterns/mkii/lang-ru.hyp + texmf-dist/tex/context/patterns/mkii/lang-ru.pat + texmf-dist/tex/context/patterns/mkii/lang-sk.hyp + texmf-dist/tex/context/patterns/mkii/lang-sk.pat + texmf-dist/tex/context/patterns/mkii/lang-sl.hyp + texmf-dist/tex/context/patterns/mkii/lang-sl.pat + texmf-dist/tex/context/patterns/mkii/lang-sr.hyp + texmf-dist/tex/context/patterns/mkii/lang-sr.pat + texmf-dist/tex/context/patterns/mkii/lang-sv.hyp + texmf-dist/tex/context/patterns/mkii/lang-sv.pat + texmf-dist/tex/context/patterns/mkii/lang-th.hyp + texmf-dist/tex/context/patterns/mkii/lang-th.pat + texmf-dist/tex/context/patterns/mkii/lang-tk.hyp + texmf-dist/tex/context/patterns/mkii/lang-tk.pat + texmf-dist/tex/context/patterns/mkii/lang-tr.hyp + texmf-dist/tex/context/patterns/mkii/lang-tr.pat + texmf-dist/tex/context/patterns/mkii/lang-uk.hyp + texmf-dist/tex/context/patterns/mkii/lang-uk.pat + texmf-dist/tex/context/patterns/mkii/lang-us.hyp + texmf-dist/tex/context/patterns/mkii/lang-us.pat + texmf-dist/tex/context/patterns/mkii/lang-zh.hyp + texmf-dist/tex/context/patterns/mkii/lang-zh.pat + texmf-dist/tex/context/patterns/mkiv/lang-af.lua + texmf-dist/tex/context/patterns/mkiv/lang-agr.lua + texmf-dist/tex/context/patterns/mkiv/lang-ala.lua + texmf-dist/tex/context/patterns/mkiv/lang-bg.lua + texmf-dist/tex/context/patterns/mkiv/lang-ca.lua + texmf-dist/tex/context/patterns/mkiv/lang-cs.lua + texmf-dist/tex/context/patterns/mkiv/lang-cy.lua + texmf-dist/tex/context/patterns/mkiv/lang-da.lua + texmf-dist/tex/context/patterns/mkiv/lang-de.lua + texmf-dist/tex/context/patterns/mkiv/lang-deo.lua + texmf-dist/tex/context/patterns/mkiv/lang-eo.lua + texmf-dist/tex/context/patterns/mkiv/lang-es.lua + texmf-dist/tex/context/patterns/mkiv/lang-et.lua + texmf-dist/tex/context/patterns/mkiv/lang-eu.lua + texmf-dist/tex/context/patterns/mkiv/lang-fi.lua + texmf-dist/tex/context/patterns/mkiv/lang-fr.lua + texmf-dist/tex/context/patterns/mkiv/lang-gb.lua + texmf-dist/tex/context/patterns/mkiv/lang-hr.lua + texmf-dist/tex/context/patterns/mkiv/lang-hu.lua + texmf-dist/tex/context/patterns/mkiv/lang-is.lua + texmf-dist/tex/context/patterns/mkiv/lang-it.lua + texmf-dist/tex/context/patterns/mkiv/lang-la.lua + texmf-dist/tex/context/patterns/mkiv/lang-lt.lua + texmf-dist/tex/context/patterns/mkiv/lang-lv.lua + texmf-dist/tex/context/patterns/mkiv/lang-mk.lua + texmf-dist/tex/context/patterns/mkiv/lang-ml.lua + texmf-dist/tex/context/patterns/mkiv/lang-mn.lua + texmf-dist/tex/context/patterns/mkiv/lang-nb.lua + texmf-dist/tex/context/patterns/mkiv/lang-nl.lua + texmf-dist/tex/context/patterns/mkiv/lang-nn.lua + texmf-dist/tex/context/patterns/mkiv/lang-pl.lua + texmf-dist/tex/context/patterns/mkiv/lang-pt.lua + texmf-dist/tex/context/patterns/mkiv/lang-ro.lua + texmf-dist/tex/context/patterns/mkiv/lang-ru.lua + texmf-dist/tex/context/patterns/mkiv/lang-sk.lua + texmf-dist/tex/context/patterns/mkiv/lang-sl.lua + texmf-dist/tex/context/patterns/mkiv/lang-sr.lua + texmf-dist/tex/context/patterns/mkiv/lang-sv.lua + texmf-dist/tex/context/patterns/mkiv/lang-th.lua + texmf-dist/tex/context/patterns/mkiv/lang-tk.lua + texmf-dist/tex/context/patterns/mkiv/lang-tr.lua + texmf-dist/tex/context/patterns/mkiv/lang-uk.lua + texmf-dist/tex/context/patterns/mkiv/lang-us.lua + texmf-dist/tex/context/patterns/mkiv/lang-zh.lua + texmf-dist/tex/context/patterns/mkiv/word-xx.lua + texmf-dist/tex/context/sample/common/bryson.tex + texmf-dist/tex/context/sample/common/carey.tex + texmf-dist/tex/context/sample/common/carrol.tex + texmf-dist/tex/context/sample/common/cow-black.mps + texmf-dist/tex/context/sample/common/cow-black.pdf + texmf-dist/tex/context/sample/common/cow-brown.mps + texmf-dist/tex/context/sample/common/cow-brown.pdf + texmf-dist/tex/context/sample/common/cow.pdf + texmf-dist/tex/context/sample/common/cuomo.tex + texmf-dist/tex/context/sample/common/d-res-01.xml + texmf-dist/tex/context/sample/common/darwin.tex + texmf-dist/tex/context/sample/common/davis.tex + texmf-dist/tex/context/sample/common/dawkins.tex + texmf-dist/tex/context/sample/common/demo-mps.tex + texmf-dist/tex/context/sample/common/demo-tex.tex + texmf-dist/tex/context/sample/common/demo-xml.tex + texmf-dist/tex/context/sample/common/douglas.tex + texmf-dist/tex/context/sample/common/gray.tex + texmf-dist/tex/context/sample/common/greenfield.tex + texmf-dist/tex/context/sample/common/hacker.jpg + texmf-dist/tex/context/sample/common/hawking.tex + texmf-dist/tex/context/sample/common/jojomayer.tex + texmf-dist/tex/context/sample/common/klein.tex + texmf-dist/tex/context/sample/common/knuth.tex + texmf-dist/tex/context/sample/common/linden.tex + texmf-dist/tex/context/sample/common/lorem.tex + texmf-dist/tex/context/sample/common/materie.tex + texmf-dist/tex/context/sample/common/mcnish.tex + texmf-dist/tex/context/sample/common/mill.png + texmf-dist/tex/context/sample/common/montgomery.tex + texmf-dist/tex/context/sample/common/poe.tex + texmf-dist/tex/context/sample/common/reich.tex + texmf-dist/tex/context/sample/common/sample.tex + texmf-dist/tex/context/sample/common/samples.bib + texmf-dist/tex/context/sample/common/samples.tex + texmf-dist/tex/context/sample/common/sapolsky.tex + texmf-dist/tex/context/sample/common/spider.eps + texmf-dist/tex/context/sample/common/thuan.tex + texmf-dist/tex/context/sample/common/tufte.tex + texmf-dist/tex/context/sample/common/waltham.tex + texmf-dist/tex/context/sample/common/ward.tex + texmf-dist/tex/context/sample/common/weisman.tex + texmf-dist/tex/context/sample/common/zapf.tex + texmf-dist/tex/context/sample/third/aesop-de.tex + texmf-dist/tex/context/sample/third/aristotle-grc.tex + texmf-dist/tex/context/sample/third/capek-cz.tex + texmf-dist/tex/context/sample/third/capek-vlnka-cz.tex + texmf-dist/tex/context/sample/third/cervantes-es.tex + texmf-dist/tex/context/sample/third/dequincey.tex + texmf-dist/tex/context/sample/third/dyrynk-cz.tex + texmf-dist/tex/context/sample/third/dyrynk-vlnka-cz.tex + texmf-dist/tex/context/sample/third/herbert-en.tex + texmf-dist/tex/context/sample/third/herbert-es.tex + texmf-dist/tex/context/sample/third/hviezdoslav-sk.tex + texmf-dist/tex/context/sample/third/hviezdoslav-vlnka-sk.tex + texmf-dist/tex/context/sample/third/jaros-sk.tex + texmf-dist/tex/context/sample/third/jaros-vlnka-sk.tex + texmf-dist/tex/context/sample/third/khatt-ar.tex + texmf-dist/tex/context/sample/third/khatt-en.tex + texmf-dist/tex/context/sample/third/kollar-cz.tex + texmf-dist/tex/context/sample/third/kollar-vlnka-cz.tex + texmf-dist/tex/context/sample/third/komensky-cz.tex + texmf-dist/tex/context/sample/third/komensky-vlnka-cz.tex + texmf-dist/tex/context/sample/third/krdel-sk.tex + texmf-dist/tex/context/sample/third/kun-cz.tex + texmf-dist/tex/context/sample/third/pope-en.tex + texmf-dist/tex/context/sample/third/pope-es.tex + texmf-dist/tex/context/sample/third/quevedo-es.tex + texmf-dist/tex/context/sample/third/readme.txt + texmf-dist/tex/context/sample/third/shakespeare-en.tex + texmf-dist/tex/context/sample/third/shakespeare-es.tex + texmf-dist/tex/context/sample/third/shelley-en.tex + texmf-dist/tex/context/sample/third/shelley-es.tex + texmf-dist/tex/context/sample/third/shelley-fr.tex + texmf-dist/tex/context/sample/third/slova-sk.tex + texmf-dist/tex/context/sample/third/smrek-sk.tex + texmf-dist/tex/context/sample/third/smrek-vlnka-sk.tex + texmf-dist/tex/context/sample/third/vallejo-trilce-es.tex + texmf-dist/tex/context/test/mkiv/context-test.tex + texmf-dist/tex/context/test/mkiv/pdf-a1a-2005.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a1b-2005.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a2a.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a2b.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a2u.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a3a.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a3b.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a3u.mkiv + texmf-dist/tex/context/test/mkiv/pdf-ua.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x-common.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x1a-2001.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x1a-2003.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x3-2002.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x3-2003.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x4.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x4p.mkiv + texmf-dist/tex/context/user/mkii/cont-sys.rme + texmf-dist/tex/generic/context/luatex/luatex-basics-chr.lua + texmf-dist/tex/generic/context/luatex/luatex-basics-gen.lua + texmf-dist/tex/generic/context/luatex/luatex-basics-nod.lua + texmf-dist/tex/generic/context/luatex/luatex-basics-prepare.tex + texmf-dist/tex/generic/context/luatex/luatex-basics.tex + texmf-dist/tex/generic/context/luatex/luatex-core.lua + texmf-dist/tex/generic/context/luatex/luatex-core.tex + texmf-dist/tex/generic/context/luatex/luatex-fonts-def.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-tt.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-vf-1.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-vf-4.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-enc.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-ext.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-gbn.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-lig.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-merged.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-mis.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-syn.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-tfm.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts.tex + texmf-dist/tex/generic/context/luatex/luatex-gadgets.lua + texmf-dist/tex/generic/context/luatex/luatex-gadgets.tex + texmf-dist/tex/generic/context/luatex/luatex-languages.lua + texmf-dist/tex/generic/context/luatex/luatex-languages.tex + texmf-dist/tex/generic/context/luatex/luatex-math.lua + texmf-dist/tex/generic/context/luatex/luatex-math.tex + texmf-dist/tex/generic/context/luatex/luatex-mplib.lua + texmf-dist/tex/generic/context/luatex/luatex-mplib.tex + texmf-dist/tex/generic/context/luatex/luatex-pdf.tex + texmf-dist/tex/generic/context/luatex/luatex-plain.tex + texmf-dist/tex/generic/context/luatex/luatex-preprocessor-test.tex + texmf-dist/tex/generic/context/luatex/luatex-preprocessor.lua + texmf-dist/tex/generic/context/luatex/luatex-preprocessor.tex + texmf-dist/tex/generic/context/luatex/luatex-swiglib-test.lua + texmf-dist/tex/generic/context/luatex/luatex-swiglib-test.tex + texmf-dist/tex/generic/context/luatex/luatex-swiglib.lua + texmf-dist/tex/generic/context/luatex/luatex-swiglib.tex + texmf-dist/tex/generic/context/luatex/luatex-test.tex + texmf-dist/tex/generic/context/ppchtex/m-ch-de.tex + texmf-dist/tex/generic/context/ppchtex/m-ch-en.tex + texmf-dist/tex/generic/context/ppchtex/m-ch-nl.tex + texmf-dist/tex/generic/context/ppchtex/ppchtex.noc + texmf-dist/tex/latex/context/ppchtex/m-ch-de.sty + texmf-dist/tex/latex/context/ppchtex/m-ch-en.sty + texmf-dist/tex/latex/context/ppchtex/m-ch-nl.sty + texmf-dist/tex/latex/context/ppchtex/m-pictex.sty +catalogue-contact-home http://www.pragma-ade.com/ +catalogue-ctan /macros/context/latest +catalogue-license other-free +catalogue-topics format context + +name context-account +category ConTeXt +revision 47085 +shortdesc A simple accounting package +relocated 1 +longdesc The package deals with "accounts" of its own specification. +depend context +containersize 6324 +containerchecksum 755ddb4c62a496873d5362df01307163c79d2a6c3fabce6ea01b442c16dad2f23d72909df71dd44eb4fbbf5c57366e20eb49bfce240807c2e2a9a52cbd76680a +doccontainersize 113848 +doccontainerchecksum b19f6d0330e5da99a961304f8c022609dedb2dc3a8cc4607cb9b2ca7eda38f9c8b972316bb9fac92cc36166e1c0822afaebda2c5e2d87db1e1efd2781f51956e +docfiles size=31 + RELOC/doc/context/third/account/README details="Readme" + RELOC/doc/context/third/account/VERSION + RELOC/doc/context/third/account/account-doc.pdf details="Package documented source" +runfiles size=11 + RELOC/tex/context/interface/third/t-account.xml + RELOC/tex/context/third/account/t-account.mkii + RELOC/tex/context/third/account/t-account.mkiv + RELOC/tex/context/third/account/t-account.tex + RELOC/tex/context/third/account/t-floatnumber.mkii + RELOC/tex/context/third/account/t-floatnumber.mkiv + RELOC/tex/context/third/account/t-floatnumber.tex +catalogue-ctan /macros/context/contrib/context-account +catalogue-license pd +catalogue-topics calculation + +name context-algorithmic +category ConTeXt +revision 47085 +shortdesc Algorithm handling in ConTeXt +relocated 1 +longdesc Support for typesetting algorithms (a port of the LaTeX package +longdesc algorithmic, which was a predecessor of algorithmicx). +depend context +containersize 3384 +containerchecksum 72d4bbfe723b4012f8701c2786f96009bbed3c6b4bd2129f7153306f172e72218920e222f97ee6d5ee4b863e9e915fc38dd92b0c42066385fde35c5c3d0cc42a +doccontainersize 352 +doccontainerchecksum 19ba676dc7822bc0a6583d6e9e031f3780977835c10d901e1ae02fca781719a0e015ac79cfc35c908a8de40a19614fcd17a35c604c9311b50972d0706d6f07e1 +docfiles size=1 + RELOC/doc/context/third/algorithmic/VERSION +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-license gpl +catalogue-topics pseudocode + +name context-animation +category ConTeXt +revision 47085 +shortdesc Generate fieldstack based animation with ConTeXt +relocated 1 +longdesc The package is a port, to Context (mkvi), of the corresponding +longdesc LaTeX package. +depend context +containersize 4044 +containerchecksum 19691ca3325b3f72154ac8439e616a128b5f3ba8c9447bb1e92979e175daa902cd756853a2b6e6a34a84fbe96e02771a0c6ef27ed5bbb7eac94f62dd72d571f1 +doccontainersize 632 +doccontainerchecksum a06227508c2dc343598fc6878e2b17b56341f5dd86a473957318eb94ecc6e150adaedf7346ffb931eda184651efd00d8f60e36ec6ea50e9ac94e2ed096058293 +docfiles size=2 + RELOC/doc/context/third/animation/README details="Readme" + RELOC/doc/context/third/animation/VERSION +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-license gpl3 +catalogue-topics graphics-motion + +name context-annotation +category ConTeXt +revision 47085 +shortdesc Annotate text blocks +relocated 1 +longdesc The annotation module lets you create your own commands and +longdesc environments to mark text blocks. +depend context +containersize 8476 +containerchecksum bb66132ed1e4f146c407bb3b2852c451b82d3d06de1dc25ddec6e692d17f4d994d1a67cfd7ff711dc2de7a4ce7259b1768d6efcfb58856321d5ea5b15271cd34 +doccontainersize 47140 +doccontainerchecksum 4491012c8172beb64478b2de5557ed8f97701cfcb3996a8a5ff9990048d79ddce8cc2796dbf4c08812bc8963c0d318f9d79d2d4c2d14bc372f06dbc28e012c3d +docfiles size=15 + RELOC/doc/context/third/annotation/README + RELOC/doc/context/third/annotation/VERSION + RELOC/doc/context/third/annotation/annotation-doc.pdf details="Package documentation" +runfiles size=13 + RELOC/tex/context/interface/third/t-annotation.xml + RELOC/tex/context/third/annotation/t-annotation.lua + RELOC/tex/context/third/annotation/t-annotation.mkvi +catalogue-ctan /macros/context/contrib/context-annotation +catalogue-license gpl +catalogue-topics context + +name context-bnf +category ConTeXt +revision 47085 +shortdesc A BNF module for ConTeXt +relocated 1 +longdesc The module provides a simple way to write good-looking +longdesc BNF-style grammars in ConTeXt. Grammars are written using the +longdesc BNF syntax right in your ConTeXt documents, so there is a clear +longdesc separation between content and layout. This allows the user to +longdesc decide exactly how the grammar is to be displayed, while also +longdesc allowing the gist of the grammar to be understood from simply +longdesc looking at the source ConTeXt document. +depend context +containersize 3056 +containerchecksum 53e5d3d7c977aab648bb024942263a8aed5da6314506825ace02556db890ea23400c6de714ddf6380235c942dfc02e127736579b6be1c5b0b0ecc65d25fb0d6b +doccontainersize 269848 +doccontainerchecksum d7ab60c2f8571ce2e2e96b82c1f97b140c5750324efb73275062a8d301d530279a3f9c19f6a6feebd6d7c72727d94f469d9aad05ad67cde5dbd3de9f695dad31 +docfiles size=72 + RELOC/doc/context/third/bnf/NEWS + RELOC/doc/context/third/bnf/README details="Readme" + RELOC/doc/context/third/bnf/VERSION + RELOC/doc/context/third/bnf/t-bnf.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/context/third/bnf/t-bnf.tex +catalogue-ctan /macros/context/contrib/context-bnf +catalogue-license gpl +catalogue-topics formal-spec + +name context-chromato +category ConTeXt +revision 47085 +shortdesc ConTeXt macros for chromatograms +relocated 1 +longdesc The module provides macros for drawing chromatograms. +depend context +containersize 2156 +containerchecksum 52e11c6953e7c2e2f9a3a20b8885fd12f5abef32d32da5ae5415b0321d37ac5ff8ff5bece3d522e1f785470cef542568cd56abd509d26671da9298c3d0ba27cc +doccontainersize 226428 +doccontainerchecksum 5c7c7f03050b0a17dadf23a09dced356a036c6b95ca76aeb0fda583dbc490d82222de64299c121224efaccc78b62364a1bc56daf020c177865c29e343529f040 +docfiles size=61 + RELOC/doc/context/third/chromato/VERSION + RELOC/doc/context/third/chromato/chromato-demo.pdf details="Package usage demo" + RELOC/doc/context/third/chromato/chromato-doc.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/context/third/chromato/t-chromato.tex +catalogue-ctan /macros/context/contrib/context-chromato +catalogue-license gpl +catalogue-topics diagram-lab + +name context-cmscbf +category ConTeXt +revision 47085 +shortdesc Use Computer Modern bold Caps and Small-caps in ConTeXt +relocated 1 +longdesc The module makes provision for bold caps and small caps CM +longdesc fonts, in ConTeXt. Such a font may be found in the Computer +longdesc Modern 'extra bold' font set. +depend context +containersize 1224 +containerchecksum cb0e5849ac3168a4ecdd1545edd029a1622ecf1c46d29eec97b28a66f65305e6b4d3a9c83e24d78e1596c8009ad5c9a0e25fa7e09448c3e0ea492e62bc933ea8 +doccontainersize 162748 +doccontainerchecksum 8f45989c08f09381ccbf2942a08c0b13792917a18d5b2e92fb45c7ac2f4b4538f5ffd633da0348e12835c03a6f79b0ea7044f1ebea5770365a83d2d097a56df4 +docfiles size=45 + RELOC/doc/context/third/cmscbf/VERSION + RELOC/doc/context/third/cmscbf/cmscbf-demo.pdf details="Demo of use" + RELOC/doc/context/third/cmscbf/cmscbf-doc.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/context/third/cmscbf/t-cmscbf.tex +catalogue-ctan /macros/context/contrib/context-cmscbf +catalogue-license gpl +catalogue-topics font-supp + +name context-cmttbf +category ConTeXt +revision 47085 +shortdesc Use Computer Modern Typewriter bold font in ConTeXt +relocated 1 +longdesc The module makes provision for bold typewriter CM fonts, in +longdesc ConTeXt. Such a font may be found in the Computer Modern 'extra +longdesc bold' font set. +depend context +containersize 1232 +containerchecksum e3bc048c09bfdf114efa25077fa4e6a6c20b4d0e2ba337cefa0a8a82348fd3376f82cae0c85b029b863b7a5db9d9552b4fc5f5487d5ed5f6d88484181ea98ced +doccontainersize 160724 +doccontainerchecksum 2b55367f236330a07120229902405213a495de2ba455f333bc23e1c1abbe0f0a4be16ee95415f613d41572916722e3d023a71698f74e5e37f34a8de4fdca6e47 +docfiles size=45 + RELOC/doc/context/third/cmttbf/VERSION + RELOC/doc/context/third/cmttbf/cmttbf-demo.pdf details="Demo of use" + RELOC/doc/context/third/cmttbf/cmttbf-doc.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/context/third/cmttbf/t-cmttbf.tex +catalogue-ctan /macros/context/contrib/context-cmttbf +catalogue-license gpl +catalogue-topics font-supp + +name context-construction-plan +category ConTeXt +revision 47085 +shortdesc Construction plans in ConTeXt +relocated 1 +longdesc Generate a page with a figure at a well-defined scale. +depend context +containersize 2288 +containerchecksum b292f8e271fcac88eaedc376257ae16a401a6c31009eaa3d4faeefba25c33d034f57d30ba4638e85b76ffd0d24ef4d541dfbceb1bc0b5c806a8412d239a32146 +doccontainersize 462200 +doccontainerchecksum 605e09bedb9e2ad1e98a621c0a4842f28592c93507c3da31f8c6437e95e63a47e795b38fa0263d7fa81fa3b8838f21d2426c8705f8e17ac1d827923cf5e88784 +docfiles size=120 + RELOC/doc/context/third/construction-plan/VERSION + RELOC/doc/context/third/construction-plan/construction-plan-demo.pdf details="Example of use" + RELOC/doc/context/third/construction-plan/construction-plan-doc.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/context/third/construction-plan/t-construction-plan.tex +catalogue-ctan /macros/context/contrib/context-construction-plan +catalogue-license gpl +catalogue-topics graphics-use + +name context-cyrillicnumbers +category ConTeXt +revision 47085 +shortdesc Write numbers as cyrillic glyphs +relocated 1 +longdesc The package extends ConTeXt's system of number conversion, by +longdesc adding numeration using cyrillic letters. +depend context +containersize 7820 +containerchecksum 14a90656d706d68ce441301aa6bccf2033c36f9c8d8605ec9dedeeedb71a5670dae325a5a198b2ca25373eb2b495e57fff31b85089c6c0fb987738c76ac636b2 +doccontainersize 180836 +doccontainerchecksum d95b1df26033aaff0a9f6759268ac3e68bff02556001e3f9b2bae1db68aa13c839a87047a6ae0a296f8e5817398ba35b7cbacc4f194dd93cf72684904190e7e3 +docfiles size=58 + RELOC/doc/context/third/cyrillicnumbers/COPYING + RELOC/doc/context/third/cyrillicnumbers/README.rst + RELOC/doc/context/third/cyrillicnumbers/VERSION + RELOC/doc/context/third/cyrillicnumbers/cyrillicnumbers.pdf details="Package documentation" + RELOC/doc/context/third/cyrillicnumbers/cyrillicnumbers.tex +runfiles size=10 + RELOC/tex/context/interface/third/t-cyrillicnumbers.xml + RELOC/tex/context/third/cyrillicnumbers/cyrillicnumbers.lua + RELOC/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkii + RELOC/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkvi +catalogue-ctan /macros/context/contrib/context-cyrillicnumbers +catalogue-license bsd +catalogue-topics cyrillic numbers + +name context-degrade +category ConTeXt +revision 47085 +shortdesc Degrading JPEG images in ConTeXt +relocated 1 +depend context +containersize 2340 +containerchecksum b2df5bbee492b7137180bfe7b0b826f4149b8231b78cb839ac9716f02b622e5b3a0eb5964e12625650a224ae463714bb7cafbecae6061a6e3120022d2f545d52 +doccontainersize 180360 +doccontainerchecksum 8f24fd70547ecfcbb163df2e3e4450525f0e56583b6984f61fb04559142bd838287e79c9b9d8cdef2c26a882688074b5010615e6d818a11f2f5812d88e31cd82 +docfiles size=49 + RELOC/doc/context/third/degrade/VERSION + RELOC/doc/context/third/degrade/degrade-demo.pdf details="Example of use" + RELOC/doc/context/third/degrade/degrade-doc.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/context/third/degrade/t-degrade.tex +catalogue-also degrade +catalogue-ctan /macros/context/contrib/context-degrade +catalogue-license gpl +catalogue-topics graphics-use + +name context-fancybreak +category ConTeXt +revision 47085 +shortdesc Overfull pages with ConTeXt +relocated 1 +longdesc The (ConTeXt) module allows insertion of thought breaks in +longdesc texts. With parameters one can adjust the spacing around the +longdesc content and set a default symbol. +depend context +containersize 4324 +containerchecksum 1e8e51de47c67a3287dfa4386f9c09b4dfaa494d9b59fe8d117a3a1b65a5041add24c36227f2d2d7fb3bf2ec34d6a5a8b6658d275b63f55793d05dea08722b10 +doccontainersize 187444 +doccontainerchecksum 6082670766d63da902d2a53f2a6ee89fcdce942fd73439fea8326ef3117e6a5483b86d9d4271d2f3d9546a5fe44277721cd15510a9da392db36356b44ae2f36d +docfiles size=50 + RELOC/doc/context/third/fancybreak/README details="README" + RELOC/doc/context/third/fancybreak/VERSION + RELOC/doc/context/third/fancybreak/fancybreak-doc.pdf details="Package documentation" +runfiles size=7 + RELOC/tex/context/interface/third/t-fancybreak.xml + RELOC/tex/context/third/fancybreak/t-fancybreak.mkii + RELOC/tex/context/third/fancybreak/t-fancybreak.mkvi +catalogue-ctan /macros/context/contrib/context-fancybreak +catalogue-license gpl +catalogue-topics typesetting + +name context-filter +category ConTeXt +revision 55718 +shortdesc Run external programs on the contents of a start-stop environment +relocated 1 +longdesc The filter module provides a simple interface to run external +longdesc programs on the contents of a start-stop environment. Options +longdesc are available to run the external program only if the content +longdesc of the environment has changed, to specify how the program +longdesc output should be read back, and to choose the name of the +longdesc temporary files that are created. The module is compatible with +longdesc both MkII and MkIV. +depend context +containersize 6564 +containerchecksum cfd8b7f1276464a8593dce148e170105c2da3d20a755a4d197999b2c00610a3ee0227a8820e5eb34c09ac3537381c8cc984a67efba2c3fe8b85f7c57cb13c720 +doccontainersize 10884 +doccontainerchecksum 20279aeab1d574ff034b208d8657b02d35efc7f6ab1a92847bc3a7d0453e152571fec214cbfc90a70cd8e8debd2ec57317fda47183a10f644776949c295fc1a9 +docfiles size=10 + RELOC/doc/context/third/filter/VERSION + RELOC/doc/context/third/filter/filter.txt details="Package notes" +runfiles size=12 + RELOC/tex/context/third/filter/t-filter.mkii + RELOC/tex/context/third/filter/t-filter.mkiv + 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-license bsd2 +catalogue-topics ext-code + +name context-french +category ConTeXt +revision 54215 +shortdesc Support for writing French in ConTeXt +relocated 1 +longdesc Deals with spacing around French punctuation; the package is +longdesc distributed for ConTeXt Mark IV only. +depend context +containersize 1680 +containerchecksum aed7a7f91e909e8b9b7efc5e0b45c67d5ed3e084c5019e1ddd68d8e9e969c0579b1dbbe4e25d74ca22b256324358ed34f3f54a92e2fb3a012a6aa43797e8aaa7 +doccontainersize 86204 +doccontainerchecksum 926a054d12f59d45dbe538eaed4087ed2c9f3321f1051c7006fe651af95d2275788030ee9371ffd39a7f7f8a4022776c19721323ab82871f061dca365c081728 +docfiles size=113 + RELOC/doc/context/third/french/VERSION + RELOC/doc/context/third/french/french-demo.pdf details="Example of use" + RELOC/doc/context/third/french/french-doc.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/context/third/french/t-french.mkiv +catalogue-ctan /macros/context/contrib/context-french +catalogue-license gpl +catalogue-topics french + +name context-fullpage +category ConTeXt +revision 47085 +shortdesc Overfull pages with ConTeXt +relocated 1 +longdesc The (ConTeXt) module copies the functionality of the fullpage, +longdesc and adds a styling parameter, given in the \usemodule command +depend context +containersize 2996 +containerchecksum 280a16b47e04f3099a2f960435bf1c22ec623553303e339df4d06135b768cee6565e20a0c4e0c080d8c6f621a32d862ba6203daacdbf9ecd03b62829dd0014fd +doccontainersize 82144 +doccontainerchecksum 1d4ff98bae26e0d6ec1ce1ca58fac82f8592158f8635eeac737546873f1f468b2ad7a82b9f8956b770fdc0c01443a9327c509265cdecb90d83dca15462cfa23b +docfiles size=41 + RELOC/doc/context/third/fullpage/README details="README" + RELOC/doc/context/third/fullpage/VERSION + RELOC/doc/context/third/fullpage/fullpage-doc.pdf details="Package documentation" +runfiles size=7 + RELOC/tex/context/interface/third/t-fullpage.xml + RELOC/tex/context/third/fullpage/t-fullpage.mkii + RELOC/tex/context/third/fullpage/t-fullpage.mkiv +catalogue-ctan /macros/context/contrib/context-fullpage +catalogue-license gpl +catalogue-topics geometry + +name context-gantt +category ConTeXt +revision 47085 +shortdesc GANTT module for ConTeXt +relocated 1 +longdesc Gantt is a module for drawing Gantt charts via MetaPost or +longdesc PGF/TikZ. +depend context +depend hatching +containersize 4180 +containerchecksum e0c61179f4ecdf93c13dbfe19f59487fbce55e1a0dece76ac025a88a452e7168c5e3b84e53c01bcae4cc412993be36eb554dc5f7299fc1205f4070aa07a834cf +doccontainersize 2072 +doccontainerchecksum a5cc76238f8377dc8d06869bf23a1367c880b57ba62ab8c8331886cbed145427e2819ba92965924fc7a78579d28b7c1cf331acf7f199cf72672ccb64962c9367 +docfiles size=8 + RELOC/doc/context/third/gantt/README details="Readme" + RELOC/doc/context/third/gantt/VERSION + RELOC/doc/context/third/gantt/examples/gantt-1.tex + RELOC/doc/context/third/gantt/examples/gantt-2.tex + RELOC/doc/context/third/gantt/examples/gantt-3.tex + RELOC/doc/context/third/gantt/examples/gantt-4.tex + RELOC/doc/context/third/gantt/examples/gantt-5.tex + RELOC/doc/context/third/gantt/gantt.txt details="Package documentation" +runfiles size=8 + RELOC/tex/context/third/gantt/gantt-s-mp.tex + 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-license pd +catalogue-topics diagram gantt + +name context-gnuplot +category ConTeXt +revision 47085 +shortdesc Inclusion of Gnuplot graphs in ConTeXt +relocated 1 +longdesc Enables simple creation and inclusion of graphs with Gnuplot. +longdesc The package writes a script into temporary file, runs Gnuplot +longdesc and includes the resulting graphic directly into the document. +longdesc See the ConTeXt Garden package page for further details. +depend context +containersize 18500 +containerchecksum d3d7dce105707bd8fd903038e458cae614ec63da7932231e1f659570ec3a7960ea0fab338a8405f2ca8ce8b03946b58db8255333d2a4ab5a659566f4d272b0b0 +doccontainersize 448972 +doccontainerchecksum 40e471b27d53ced33590792ac62992a220357c6db1c78cba901197362a36817bc14b049f2573ee2e5b5adad5182c5bea2880c4f7a2477bcd1a06ee7ccf88b0b9 +docfiles size=120 + RELOC/doc/context/third/gnuplot/VERSION + RELOC/doc/context/third/gnuplot/example.plt + RELOC/doc/context/third/gnuplot/fullpage-example.pdf + RELOC/doc/context/third/gnuplot/fullpage-example.tex + RELOC/doc/context/third/gnuplot/gnuplot-context-doc.pdf details="Package documentation" + RELOC/doc/context/third/gnuplot/gnuplot-context-doc.tex +runfiles size=27 + RELOC/metapost/context/third/gnuplot/mp-gnuplot.mp + RELOC/tex/context/third/gnuplot/t-gnuplot.mkii + RELOC/tex/context/third/gnuplot/t-gnuplot.mkiv +catalogue-also gnuplottex +catalogue-contact-home http://wiki.contextgarden.net/Gnuplot +catalogue-ctan /macros/context/contrib/context-gnuplot +catalogue-license gpl +catalogue-topics graphics-inline + +name context-handlecsv +category ConTeXt +revision 51306 +shortdesc Data merging for automatic document creation +relocated 1 +longdesc The package handles csv data merging for automatic document +longdesc creation. +depend context +containersize 16056 +containerchecksum 10f862b7152e0efe2a8444fcf847ade2aad2c1499e146b94643a7e08a438359c2f7d1927e7e9773f3dd14475fb4535d17fb4f29ff053e7a29c9463f40c6e5598 +doccontainersize 968756 +doccontainerchecksum 39330dfaf22a83181086343ac9ea7d64025fbe779e55161b33e5a9a9802e0928bb1c16941aeb307da641835aefdfe2e431becbc0cfe40ad8bb33a3816b9b177b +docfiles size=249 + RELOC/doc/context/third/handlecsv/VERSION + RELOC/doc/context/third/handlecsv/handlecsv.epub + RELOC/doc/context/third/handlecsv/handlecsv.pdf details="Package documentation" +runfiles size=22 + RELOC/tex/context/third/handlecsv/t-handlecsv-extra.lua + RELOC/tex/context/third/handlecsv/t-handlecsv-tools.lua + RELOC/tex/context/third/handlecsv/t-handlecsv.lua + RELOC/tex/context/third/handlecsv/t-handlecsv.tex +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-license gpl3 +catalogue-topics context csv-support + +name context-inifile +category ConTeXt +revision 47085 +shortdesc An ini-file pretty-printer, using ConTeXt +relocated 1 +longdesc The module parses an ini-file and prints the contents with a +longdesc user-defined layout. The entries of the file may be sorted by +longdesc up to three sort keys. The format of a simple ini-file would +longdesc be: [key1] symbol1 = value1 symbol2 = value2 [key2] symbol1 = +longdesc value3 symbol2 = value4 The module only works with ConTeXt +longdesc MkIV, and uses Lua to help process the input. +depend context +containersize 2756 +containerchecksum 9dd9b61cd2b5700b0e2b6e59bf4040de9431820c659f121c2681e454ddb4b34454270eac6c442836c90f8a1819761ce0d7659684a1f0c8876fec1f947a0b16f7 +doccontainersize 81492 +doccontainerchecksum 9635bc80ae7222c6a38004ad5f985004634b7db9596e03a23123ad71bbf177639bb1b028bdfe79d51b75c1c429c327f65c2b5e0720723d8bcdf63f4939312850 +docfiles size=24 + RELOC/doc/context/third/inifile/VERSION + RELOC/doc/context/third/inifile/inifile-demo.pdf details="Example of use" + RELOC/doc/context/third/inifile/inifile-doc.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/context/third/inifile/t-inifile.tex +catalogue-ctan /macros/context/contrib/context-inifile +catalogue-license gpl +catalogue-topics data-disp + +name context-layout +category ConTeXt +revision 47085 +shortdesc Show ConTeXt layouts +relocated 1 +longdesc Draws a representation of the layout of the current page and +longdesc displays the sizes of the widths and heights of the margins, +longdesc header, footer and text body. +depend context +containersize 3996 +containerchecksum 6cad00783d0bc91000ca0e0c8350fe2a2e99f7fefccd375d5bb2f1a144fc04a59f83122dcd490fc0596b1dc9fd0c0a779bfa35932362927ed50ed8df39ec359e +doccontainersize 211432 +doccontainerchecksum 4ecf7bfe5fbc78453cc116cf7a657f4b6ac7fc21ca7dd6da5beb0ea1af0c1fd48d6a74ab516213f49d1e29cb8bd47fbcc94145157472e3ea22b291f494fc3d1f +docfiles size=54 + RELOC/doc/context/third/layout/VERSION + RELOC/doc/context/third/layout/t-layout.pdf details="Package documentation" +runfiles size=3 + RELOC/tex/context/third/layout/t-layout.tex +catalogue-ctan /macros/context/contrib/context-layout +catalogue-license gpl +catalogue-topics context + +name context-letter +category ConTeXt +revision 56073 +shortdesc ConTeXt package for writing letters +relocated 1 +longdesc A means of writing 'vanilla' letters and memos is provided, +longdesc with support covering ConTeXt Mkii and Mkiv. The design of +longdesc letters may be amended by a wide range of style specifications. +depend context +containersize 27176 +containerchecksum 12c0e37865f241eb37b46989346e16c75cd49672e76e22f511d2a146ea221e0279c93ebacd0b85e0377cffab0ae07e26515fe3a6abb86bc85df52b87569dec2a +doccontainersize 692 +doccontainerchecksum 81e18af260a8441aedc04e48f120c69ea9fadf08fd69b18d95caeb1e98d5de8d0d37aadcb7589273122c4cf8a8b8832ed55675426f5cb29dfa3f9e60dd3012f4 +docfiles size=2 + RELOC/doc/context/third/letter/README details="Readme" + RELOC/doc/context/third/letter/VERSION +runfiles size=120 + RELOC/tex/context/interface/third/t-letter.xml + RELOC/tex/context/interface/third/t-memo.xml + RELOC/tex/context/third/letter/base/s-cor-00.lua + RELOC/tex/context/third/letter/base/s-cor-00.mkii + RELOC/tex/context/third/letter/base/s-cor-00.mkvi + RELOC/tex/context/third/letter/base/s-cor-01.mkii + RELOC/tex/context/third/letter/base/s-cor-01.mkvi + RELOC/tex/context/third/letter/base/s-cor-02.mkii + RELOC/tex/context/third/letter/base/s-cor-02.mkvi + RELOC/tex/context/third/letter/base/s-cor-03.mkvi + RELOC/tex/context/third/letter/base/s-cor-06.mkvi + RELOC/tex/context/third/letter/base/t-letter.mkii + RELOC/tex/context/third/letter/base/t-letter.mkiv + RELOC/tex/context/third/letter/base/t-memo.mkii + RELOC/tex/context/third/letter/base/t-memo.mkiv + RELOC/tex/context/third/letter/style/letter-imp-blockstyle.mkii + RELOC/tex/context/third/letter/style/letter-imp-blockstyle.mkiv + RELOC/tex/context/third/letter/style/letter-imp-default.mkii + RELOC/tex/context/third/letter/style/letter-imp-default.mkiv + RELOC/tex/context/third/letter/style/letter-imp-dina.mkii + RELOC/tex/context/third/letter/style/letter-imp-dina.mkiv + RELOC/tex/context/third/letter/style/letter-imp-dinb.mkii + RELOC/tex/context/third/letter/style/letter-imp-dinb.mkiv + RELOC/tex/context/third/letter/style/letter-imp-dutch.mkii + RELOC/tex/context/third/letter/style/letter-imp-dutch.mkiv + RELOC/tex/context/third/letter/style/letter-imp-french.mkii + RELOC/tex/context/third/letter/style/letter-imp-french.mkiv + RELOC/tex/context/third/letter/style/letter-imp-fullblock.mkii + RELOC/tex/context/third/letter/style/letter-imp-fullblock.mkiv + RELOC/tex/context/third/letter/style/letter-imp-gbrief.mkii + RELOC/tex/context/third/letter/style/letter-imp-gbrief.mkiv + RELOC/tex/context/third/letter/style/letter-imp-hanging.mkii + RELOC/tex/context/third/letter/style/letter-imp-hanging.mkiv + RELOC/tex/context/third/letter/style/letter-imp-knuth.mkii + RELOC/tex/context/third/letter/style/letter-imp-knuth.mkiv + RELOC/tex/context/third/letter/style/letter-imp-modified.mkii + RELOC/tex/context/third/letter/style/letter-imp-modified.mkiv + RELOC/tex/context/third/letter/style/letter-imp-semiblock.mkii + RELOC/tex/context/third/letter/style/letter-imp-semiblock.mkiv + RELOC/tex/context/third/letter/style/letter-imp-setups.mkii + RELOC/tex/context/third/letter/style/letter-imp-setups.mkiv + RELOC/tex/context/third/letter/style/letter-imp-simplified.mkii + RELOC/tex/context/third/letter/style/letter-imp-simplified.mkiv + RELOC/tex/context/third/letter/style/letter-imp-swiss.mkii + RELOC/tex/context/third/letter/style/letter-imp-swiss.mkiv + RELOC/tex/context/third/letter/style/letter-imp-swissleft.mkii + RELOC/tex/context/third/letter/style/letter-imp-swissleft.mkiv + RELOC/tex/context/third/letter/style/memo-imp-default.mkii + RELOC/tex/context/third/letter/style/memo-imp-default.mkiv + RELOC/tex/context/third/letter/style/memo-imp-margin.mkii + RELOC/tex/context/third/letter/style/memo-imp-margin.mkiv + RELOC/tex/context/third/letter/style/memo-imp-memo.mkii + RELOC/tex/context/third/letter/style/memo-imp-memo.mkiv + RELOC/tex/context/third/letter/style/memo-imp-table.mkii + RELOC/tex/context/third/letter/style/memo-imp-table.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-blue.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-green.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-grey.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-orange.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-red.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-blue.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-green.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-grey.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-orange.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-red.mkiv + 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-license gpl +catalogue-topics letter + +name context-lettrine +category ConTeXt +revision 47085 +shortdesc A ConTeXt implementation of lettrines +relocated 1 +longdesc This is a re-implementation of the LaTeX package lettrine. +depend context +containersize 2520 +containerchecksum 79e4e246a7bb0a300db53425e2769a3ef61bc0249ce57840c0b9037805e86eadbd1ef4ab8a110fd806584393feef00f498418732cfd53922aed6df67c561e535 +doccontainersize 89760 +doccontainerchecksum ab32697b6c309b1099b809c33182ffc48bb3019c8d520269cbb616b61e8f20678cc2cf4e7e971e06cadb22ffcee0d502deedf21aa95d8d372d1840e4fb4a6591 +docfiles size=32 + RELOC/doc/context/third/lettrine/VERSION + RELOC/doc/context/third/lettrine/W.pdf + RELOC/doc/context/third/lettrine/lettrine-doc.pdf details="MAPS paper about the package" + RELOC/doc/context/third/lettrine/lettrine-doc.tex +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-license pd +catalogue-topics lettrine + +name context-mathsets +category ConTeXt +revision 47085 +shortdesc Set notation in ConTeXt +relocated 1 +longdesc Typeset good-looking set notation (e.g., {x|x \in Y}), as well +longdesc as similar things such as Dirac bra-ket notation, conditional +longdesc probabilities, etc. The package is at least inspired by braket. +depend context +containersize 4896 +containerchecksum e4c689c745d06c61d6f693a9832001aa8c79d51664c2a5d6d0c6148a95b30870063f50eecca31ac0924193c6dab8c12cd5ccaca16eeaf5f83a99cef1a8889ec3 +doccontainersize 399952 +doccontainerchecksum f2c33244814da8e8838483038f507fe6b3e146f37691e55a37bb5355985d2af4c5fc423318133c4f13837a3e66a4fe72d5c14f6721bb5ee0417a59691b86d3f1 +docfiles size=102 + RELOC/doc/context/third/mathsets/VERSION + RELOC/doc/context/third/mathsets/mathsets-doc.pdf details="Package documentation" +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-license other-free +catalogue-topics maths + +name context-notes-zh-cn +category Package +revision 23171 +shortdesc Notes on using ConTeXt MkIV +relocated 1 +longdesc An introductory tutorial on ConTeXt, in Chinese. The document +longdesc covers ConTeXt installation, fonts, layout design, +longdesc cross-reference, project structure, metafun and presentation +longdesc design. +depend context +containersize 492 +containerchecksum a05cd68d609fb9427ca07f64ba1b9ad85762464a3294653c8a790c0a6a41d6af43aab72a1eb7ef0d56a299db2f54af5666dbe974f9fdac014f624350c8bfe50a +doccontainersize 858504 +doccontainerchecksum 4261b8aeb5b3cbebde2890af1b7039c6f557ce36f4979228f40f9e5e99b19aa5c457ed6842f4501f4dc32f51f58d9fcd0764028b9d5c74fd07d41c8c866220a1 +docfiles size=252 + RELOC/doc/context/third/context-notes-zh-cn/README details="Readme" + RELOC/doc/context/third/context-notes-zh-cn/ctxnotes.pdf details="The document itself" + RELOC/doc/context/third/context-notes-zh-cn/src/Makefile + RELOC/doc/context/third/context-notes-zh-cn/src/basis.tex + RELOC/doc/context/third/context-notes-zh-cn/src/bibl-lyr.tex + RELOC/doc/context/third/context-notes-zh-cn/src/bibliography.bib + RELOC/doc/context/third/context-notes-zh-cn/src/ctxnotes.tex + RELOC/doc/context/third/context-notes-zh-cn/src/doc-env.tex + RELOC/doc/context/third/context-notes-zh-cn/src/figures/bookmark.png + RELOC/doc/context/third/context-notes-zh-cn/src/figures/cow.pdf + RELOC/doc/context/third/context-notes-zh-cn/src/figures/gardeninglion.jpg + RELOC/doc/context/third/context-notes-zh-cn/src/figures/header.png + RELOC/doc/context/third/context-notes-zh-cn/src/fonts.tex + RELOC/doc/context/third/context-notes-zh-cn/src/layout.tex + RELOC/doc/context/third/context-notes-zh-cn/src/metafun.tex + RELOC/doc/context/third/context-notes-zh-cn/src/project.tex + RELOC/doc/context/third/context-notes-zh-cn/src/references.tex + RELOC/doc/context/third/context-notes-zh-cn/src/t-layout.tex + RELOC/doc/context/third/context-notes-zh-cn/src/t-zhfonts.lua + 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-license gpl +catalogue-topics chinese-doc + +name context-rst +category ConTeXt +revision 47085 +shortdesc Process reStructuredText with ConTeXt +relocated 1 +longdesc The package provides a converter and module for typesetting +longdesc reStructuredText with ConTeXt. The module uses several lua +longdesc scripts in doing its work. Documentation is supplied in rst, +longdesc which seems to be readable as text, but .... +depend context +containersize 31068 +containerchecksum f93173c1b27afe538d670c791048f495fa3f236cf75511d43b33172d140ac47fa3b5f11c674db5d515733b8ef9cfa7ac2d3c46b78b624768ee95a21884dae904 +doccontainersize 126944 +doccontainerchecksum 536f63f9fa02e37c38f445974dab1f75b38abf0769379ee1735001972db71be10d51a1782e850ddd75d73f2a6f1375cf043684c0fae1a88b20a1650248870f9a +docfiles size=47 + RELOC/doc/context/third/rst/OMakefile + RELOC/doc/context/third/rst/OMakefile.omc + RELOC/doc/context/third/rst/VERSION + RELOC/doc/context/third/rst/documentation.rst + RELOC/doc/context/third/rst/hybridtest.tex + RELOC/doc/context/third/rst/inc-first.rst + RELOC/doc/context/third/rst/inc-second.rst + RELOC/doc/context/third/rst/inc-third.rst + RELOC/doc/context/third/rst/inc.tex + RELOC/doc/context/third/rst/manual.bib + RELOC/doc/context/third/rst/manual.pdf details="Manual" + RELOC/doc/context/third/rst/manual.tex + RELOC/doc/context/third/rst/moduletest.tex +runfiles size=42 + RELOC/scripts/context/lua/third/rst/mtx-t-rst.lua + RELOC/tex/context/interface/third/t-rst.xml + RELOC/tex/context/third/rst/rst_context.lua + RELOC/tex/context/third/rst/rst_directives.lua + RELOC/tex/context/third/rst/rst_helpers.lua + RELOC/tex/context/third/rst/rst_parser.lua + RELOC/tex/context/third/rst/rst_setups.lua + RELOC/tex/context/third/rst/t-rst.mkiv +catalogue-ctan /macros/context/contrib/context-rst +catalogue-license other-free +catalogue-topics foreign-import + +name context-ruby +category ConTeXt +revision 47085 +shortdesc Ruby annotations in ConTeXt +relocated 1 +longdesc Ruby markup (aka furigana in Japan) are inline annotations +longdesc above or below a word to indicate the reading of ideographic +longdesc characters. The module implements the W3C specification for +longdesc simple ruby in ConTeXt. The position and layout of the base +longdesc text and the ruby text can becontrolled by parameters. +depend context +containersize 4348 +containerchecksum e219c6da61585d88f8e899278d1c85f0903ed32b6c7368cdb6076697230a0e79f5f88f53dd98514394fa09e7580c1c6b7c167d81c010107f3399dffb18b13d95 +doccontainersize 808 +doccontainerchecksum 179e501b428bd87a49830a68236008ea6e962b80e79ab45a0e75a7b86a7fc11025ac38ad463c459c6d290aa5ac8627da5849d1fd8f7502ea7d97696b53ed2647 +docfiles size=2 + RELOC/doc/context/third/ruby/README details="Readme" + RELOC/doc/context/third/ruby/VERSION +runfiles size=9 + RELOC/tex/context/third/ruby/t-ruby.mkii + RELOC/tex/context/third/ruby/t-ruby.mkiv + RELOC/tex/context/third/ruby/t-ruby.mkvi +catalogue-ctan /macros/context/contrib/context-ruby +catalogue-license pd +catalogue-topics notes + +name context-simplefonts +category ConTeXt +revision 47085 +shortdesc Simplified font usage for ConTeXt +relocated 1 +longdesc The package defines a set of commands for loading and using +longdesc fonts in ConTeXt. +depend context +containersize 7688 +containerchecksum 7c817f4a25a8883ce052c9657a3d6117042e8538fadc8d67b4b0194abd69238045c09d365e90e555d5b04d83a1ef82039ca9631aec00eb1f80b56fbefa729cd3 +doccontainersize 828 +doccontainerchecksum 238babc7694bf85c81e3079b5d72feabc9c9eeea4f3b625a57ecb133d70ac745334ca0426097dccfe53e3ffe108ac0859be4da7625bb6b683abec1101367ac06 +docfiles size=2 + RELOC/doc/context/third/simplefonts/README details="Readme" + RELOC/doc/context/third/simplefonts/VERSION +runfiles size=16 + RELOC/tex/context/third/simplefonts/t-simplefonts.lua + RELOC/tex/context/third/simplefonts/t-simplefonts.mkii + RELOC/tex/context/third/simplefonts/t-simplefonts.mkiv +catalogue-ctan /macros/context/contrib/context-simplefonts +catalogue-license gpl +catalogue-topics font-supp context + +name context-simpleslides +category ConTeXt +revision 47085 +shortdesc A module for preparing presentations +relocated 1 +longdesc This ConTeXt module provides an easy-to-use interface for +longdesc creating presentations for use with a digital projector. The +longdesc presentations are not interactive (no buttons, hyperlinks or +longdesc navigational tools such as tables of contents). Graphics may be +longdesc mixed with the text of slides. The module provides several +longdesc predefined styles, designed for academic presentation. Most +longdesc styles are configurable, and it is easy to design new styles. +depend context +containersize 29208 +containerchecksum 8bc6a0ee37116c200cffdc6595fa4d6b3383dd92da869f2e142d475a5693cc2ff4745144e3b2fd5a3ad0876a5182f1824a2a402aa48b0b02e288990e16056083 +doccontainersize 849592 +doccontainerchecksum 06b57a4d89ad4aebdc08fb002229b822073b36da4096db390ffa3dfc92c32b6a0b138fb31a09406a011d647d260fba9274144f5463a1df3c50ec816d31d2662a +docfiles size=2065 + RELOC/doc/context/third/simpleslides/VERSION + RELOC/doc/context/third/simpleslides/example.pdf + RELOC/doc/context/third/simpleslides/example.tex + RELOC/doc/context/third/simpleslides/simpleslides.pdf details="Package documentation" + RELOC/doc/context/third/simpleslides/simpleslides.tex + RELOC/doc/context/third/simpleslides/solutions/generic-talk-15min-45min.tex + RELOC/doc/context/third/simpleslides/solutions/speaker_introduction-2min.tex + RELOC/doc/context/third/simpleslides/solutions/style-template.tex + RELOC/doc/context/third/simpleslides/styles/BigNumber-blue.pdf + RELOC/doc/context/third/simpleslides/styles/BigNumber-red.pdf + RELOC/doc/context/third/simpleslides/styles/BottomSquares.pdf + RELOC/doc/context/third/simpleslides/styles/Boxed.pdf + RELOC/doc/context/third/simpleslides/styles/Ellipse.pdf + RELOC/doc/context/third/simpleslides/styles/Embossed.pdf + RELOC/doc/context/third/simpleslides/styles/Framed-square.pdf + RELOC/doc/context/third/simpleslides/styles/Framed-stripe.pdf + RELOC/doc/context/third/simpleslides/styles/FramedTitle.pdf + RELOC/doc/context/third/simpleslides/styles/HorizontalStripes-blue.pdf + RELOC/doc/context/third/simpleslides/styles/HorizontalStripes-green.pdf + RELOC/doc/context/third/simpleslides/styles/HorizontalStripes-red.pdf + RELOC/doc/context/third/simpleslides/styles/NarrowStripes-blue.pdf + RELOC/doc/context/third/simpleslides/styles/NarrowStripes-green.pdf + RELOC/doc/context/third/simpleslides/styles/NarrowStripes-red.pdf + RELOC/doc/context/third/simpleslides/styles/RainbowStripe.pdf + RELOC/doc/context/third/simpleslides/styles/Rounded.pdf + RELOC/doc/context/third/simpleslides/styles/Shaded-blue.pdf + RELOC/doc/context/third/simpleslides/styles/Shaded-bluered.pdf + RELOC/doc/context/third/simpleslides/styles/Shaded-green.pdf + RELOC/doc/context/third/simpleslides/styles/SideSquares.pdf + RELOC/doc/context/third/simpleslides/styles/SideToc.pdf + RELOC/doc/context/third/simpleslides/styles/Split.pdf + RELOC/doc/context/third/simpleslides/styles/Sunrise.pdf + RELOC/doc/context/third/simpleslides/styles/Swoosh.pdf + RELOC/doc/context/third/simpleslides/styles/ThickStripes.pdf +runfiles size=65 + RELOC/scripts/context/lua/third/simpleslides/mtx-simpleslides.lua + RELOC/tex/context/interface/third/t-simpleslides.xml + RELOC/tex/context/third/simpleslides/s-simpleslides-BigNumber.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-BlackBoard.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-BottomSquares.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Boxed.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-BoxedTitle.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Ellipse.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Embossed.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Framed.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-FramedTitle.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-FuzzyFrame.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-FuzzyTopic.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-HorizontalStripes.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-NarrowStripes.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-PlainCounter.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-RainbowStripe.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Rounded.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Shaded.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-SideSquares.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-SideToc.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Split.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Sunrise.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Swoosh.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-ThickStripes.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-default.tex + 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-license gpl +catalogue-topics context + +name context-title +category ConTeXt +revision 47085 +shortdesc Place document titles +relocated 1 +longdesc The title module provides the \placetitle command to put a +longdesc title block into your document. With the command \setuptitle +longdesc values can be set for \placetitle and change the formatting of +longdesc the content. +depend context +containersize 2208 +containerchecksum bc7d6cbd373cb6d6214489ed97117929ba381626c854a0a5a950bfa44c06214991d7a90290793c825c96e6d22ba1f6807054d4553d1d3980d9d9bc0e6dabafda +doccontainersize 23088 +doccontainerchecksum 3b910eeca8c8a442939873e082a4025523472b267ed3268e63cbf5fbe0821c9db8d8d183058d139aa02233dfdb6be7e23fb9df360a490f7d551875c59753c7c0 +docfiles size=8 + RELOC/doc/context/third/title/VERSION + RELOC/doc/context/third/title/title-doc.pdf details="Package documentation" +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-license gpl +catalogue-topics context + +name context-transliterator +category ConTeXt +revision 47085 +shortdesc Transliterate text from 'other' alphabets +relocated 1 +longdesc The package will read text in one alphabet, and provide a +longdesc transliterated version in another; this is useful for readers +longdesc who cannot read the original alphabet. The package can make +longdesc allowance for hyphenation. +depend context +containersize 70668 +containerchecksum d41cd0ebcb99670bd48f8becde633c21401dd9044bbf93618a031da10c59bb8f6d4d6bbc68eecac75965b26f5052f797609d67d791cd7a281f72cd062d3d7388 +doccontainersize 186784 +doccontainerchecksum 4dd501af23511dc81853ddd48ace2aa572c553aea0ba09cf2895b8bd05c4bdf08a6f5e254eab88d4098d441f1d410c0161b1e8b24e3ebf88a38bf364e90b8539 +docfiles size=55 + RELOC/doc/context/third/transliterator/COPYING + RELOC/doc/context/third/transliterator/VERSION + RELOC/doc/context/third/transliterator/transliterator.pdf details="Package documentation" + RELOC/doc/context/third/transliterator/transliterator.tex +runfiles size=112 + RELOC/tex/context/interface/third/t-transliterator.xml + RELOC/tex/context/third/transliterator/t-transliterator.ctl + RELOC/tex/context/third/transliterator/t-transliterator.log + RELOC/tex/context/third/transliterator/t-transliterator.mkii + RELOC/tex/context/third/transliterator/t-transliterator.mkiv + RELOC/tex/context/third/transliterator/t-transliterator.mkiv.prep + RELOC/tex/context/third/transliterator/t-transliterator.pdf + RELOC/tex/context/third/transliterator/t-transliterator.run + RELOC/tex/context/third/transliterator/t-transliterator.tex + RELOC/tex/context/third/transliterator/t-transliterator.tuc + RELOC/tex/context/third/transliterator/trans_tables_bg.lua + RELOC/tex/context/third/transliterator/trans_tables_glag.lua + RELOC/tex/context/third/transliterator/trans_tables_gr.lua + RELOC/tex/context/third/transliterator/trans_tables_iso9.lua + RELOC/tex/context/third/transliterator/trans_tables_scntfc.lua + RELOC/tex/context/third/transliterator/trans_tables_sr.lua + RELOC/tex/context/third/transliterator/trans_tables_trsc.lua + RELOC/tex/context/third/transliterator/transliterator.ctl + RELOC/tex/context/third/transliterator/transliterator.log + RELOC/tex/context/third/transliterator/transliterator.lua + RELOC/tex/context/third/transliterator/transliterator.run + RELOC/tex/context/third/transliterator/transliterator.tuc +catalogue-ctan /macros/context/contrib/context-transliterator +catalogue-license bsd +catalogue-topics enc-juggle + +name context-typearea +category ConTeXt +revision 47085 +shortdesc Something like Koma-Script typearea +relocated 1 +longdesc The module provides a command that calculates the page layout +longdesc as the LaTeX package typearea does. +depend context +containersize 1796 +containerchecksum c4a2f2317b146b31102273e9b616d403d4ee836a61fae96bd9315670b0bdd5f9d94ecde00b53d2ea5f7073773bd8af5c322b07c3b05bf7ad5262a9f0e0b623a1 +doccontainersize 77364 +doccontainerchecksum 7171bc5c5e82b3897f75421e745e876c2aea84e9e9cb74badd6dedc75666b8f9ddb8b6d11c523ea64be6b57dca4f84555827afa32a0c90f6df1c31b68b1f6395 +docfiles size=22 + RELOC/doc/context/third/typearea/VERSION + RELOC/doc/context/third/typearea/typearea-demo.pdf details="Package demo" + RELOC/doc/context/third/typearea/typearea-doc.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/context/third/typearea/t-typearea.tex +catalogue-ctan /macros/context/contrib/context-typearea +catalogue-license gpl +catalogue-topics geometry context + +name context-typescripts +category ConTeXt +revision 47085 +shortdesc Small modules to load various fonts for use in ConTeXt +relocated 1 +longdesc The package provides files offering interfaces to 33 publicly +longdesc available fonts (or collections of fonts from the same +longdesc foundry); each is available in a .mkii and a .mkiv version. +depend context +containersize 9224 +containerchecksum f2d43256997cfba2ab2fe0fc8ebe90a3798bb42e6d455fbe84540654a95fb06a170aa19cf11e4f3477517473b21fc05426247b1f1d39c9132e703c0f1a9a5d0c +doccontainersize 648 +doccontainerchecksum de15432472678cd9c7bdc0e2597f1fe02275fa986767f269fb4237e8d0095a1100908e0b46429741c8ffebfa84fcc27272045314cfc185ccaadf5ffbbe030f69 +docfiles size=2 + RELOC/doc/context/third/typescripts/README details="Readme" + RELOC/doc/context/third/typescripts/VERSION +runfiles size=71 + RELOC/tex/context/third/typescripts/type-adobe.mkii + RELOC/tex/context/third/typescripts/type-adobe.mkiv + RELOC/tex/context/third/typescripts/type-aller.mkii + RELOC/tex/context/third/typescripts/type-aller.mkiv + RELOC/tex/context/third/typescripts/type-anivers.mkii + RELOC/tex/context/third/typescripts/type-anivers.mkiv + RELOC/tex/context/third/typescripts/type-audimat.mkii + RELOC/tex/context/third/typescripts/type-audimat.mkiv + RELOC/tex/context/third/typescripts/type-axel.mkii + RELOC/tex/context/third/typescripts/type-axel.mkiv + RELOC/tex/context/third/typescripts/type-azuro.mkii + RELOC/tex/context/third/typescripts/type-azuro.mkiv + RELOC/tex/context/third/typescripts/type-calluna.mkii + RELOC/tex/context/third/typescripts/type-calluna.mkiv + RELOC/tex/context/third/typescripts/type-charissil.mkii + RELOC/tex/context/third/typescripts/type-charissil.mkiv + RELOC/tex/context/third/typescripts/type-charter.mkii + RELOC/tex/context/third/typescripts/type-charter.mkiv + RELOC/tex/context/third/typescripts/type-delicious.mkii + RELOC/tex/context/third/typescripts/type-delicious.mkiv + RELOC/tex/context/third/typescripts/type-diavlo.mkii + RELOC/tex/context/third/typescripts/type-diavlo.mkiv + RELOC/tex/context/third/typescripts/type-droid.mkii + RELOC/tex/context/third/typescripts/type-droid.mkiv + RELOC/tex/context/third/typescripts/type-ernestine.mkiv + RELOC/tex/context/third/typescripts/type-fertigo.mkii + RELOC/tex/context/third/typescripts/type-fertigo.mkiv + RELOC/tex/context/third/typescripts/type-fontin.mkii + RELOC/tex/context/third/typescripts/type-fontin.mkiv + RELOC/tex/context/third/typescripts/type-goudysans.mkii + RELOC/tex/context/third/typescripts/type-goudysans.mkiv + RELOC/tex/context/third/typescripts/type-junicode.mkii + RELOC/tex/context/third/typescripts/type-junicode.mkiv + RELOC/tex/context/third/typescripts/type-justus.mkii + RELOC/tex/context/third/typescripts/type-justus.mkiv + RELOC/tex/context/third/typescripts/type-kaffeesatz.mkii + RELOC/tex/context/third/typescripts/type-kaffeesatz.mkiv + RELOC/tex/context/third/typescripts/type-kontrapunkt.mkii + RELOC/tex/context/third/typescripts/type-kontrapunkt.mkiv + RELOC/tex/context/third/typescripts/type-liberation.mkii + RELOC/tex/context/third/typescripts/type-liberation.mkiv + RELOC/tex/context/third/typescripts/type-luxi.mkii + RELOC/tex/context/third/typescripts/type-luxi.mkiv + RELOC/tex/context/third/typescripts/type-miso.mkii + RELOC/tex/context/third/typescripts/type-miso.mkiv + RELOC/tex/context/third/typescripts/type-museo.mkii + RELOC/tex/context/third/typescripts/type-museo.mkiv + RELOC/tex/context/third/typescripts/type-office.mkiv + RELOC/tex/context/third/typescripts/type-pigiarniq.mkii + RELOC/tex/context/third/typescripts/type-pigiarniq.mkiv + RELOC/tex/context/third/typescripts/type-sabon.mkii + RELOC/tex/context/third/typescripts/type-sabon.mkiv + RELOC/tex/context/third/typescripts/type-tallys.mkii + RELOC/tex/context/third/typescripts/type-tallys.mkiv + RELOC/tex/context/third/typescripts/type-tuffy.mkii + RELOC/tex/context/third/typescripts/type-tuffy.mkiv + RELOC/tex/context/third/typescripts/type-ubuntu.mkii + RELOC/tex/context/third/typescripts/type-ubuntu.mkiv + RELOC/tex/context/third/typescripts/type-uqammaq.mkii + RELOC/tex/context/third/typescripts/type-uqammaq.mkiv + RELOC/tex/context/third/typescripts/type-vera.mkii + RELOC/tex/context/third/typescripts/type-vera.mkiv + RELOC/tex/context/third/typescripts/type-verajja.mkii + RELOC/tex/context/third/typescripts/type-verajja.mkiv + RELOC/tex/context/third/typescripts/type-vollkorn.mkii + RELOC/tex/context/third/typescripts/type-vollkorn.mkiv +catalogue-ctan /macros/context/contrib/context-typescripts +catalogue-license gpl2 +catalogue-topics font-use context + +name context-vim +category ConTeXt +revision 58082 +shortdesc Generate ConTeXt syntax highlighting code from vim +relocated 1 +longdesc ConTeXt has excellent pretty printing capabilities for many +longdesc languages. The code for pretty printing is written in TeX, and +longdesc due to catcode juggling, such verbatim typesetting is perhaps +longdesc the trickiest part of TeX. This makes it difficult for a +longdesc "normal" user to define syntax highlighting rules for a new +longdesc language. This module takes the onus of defining syntax +longdesc highlighting rules away from the user and uses ViM editor to +longdesc generate the syntax highlighting. There is a helper +longdesc 2context.vim script to do the syntax parsing in ViM. +depend context +depend context-filter +containersize 10048 +containerchecksum 47f6ef2dec0048dc5b858ac32bee045f3b0c62ac8ea4b8684f3e219b9df924f507889d69516bd03c582a36d62b1d5d213678871be58bd6792bf19edcd5a9dab4 +doccontainersize 10784 +doccontainerchecksum f67ae9f7864db3398f1dfaaa9b79cd7faa208d40531d6501c977fc45b4ae45ac2c73695fa7e2e35e446494009f38f5e7b1fe82075cccbaed92a1a312eb00e3b2 +docfiles size=10 + RELOC/doc/context/third/vim/VERSION + RELOC/doc/context/third/vim/vim.txt details="Package usage notes" +runfiles size=18 + RELOC/tex/context/third/vim/2context.vim + RELOC/tex/context/third/vim/t-syntax-groups.mkii + RELOC/tex/context/third/vim/t-syntax-groups.mkiv + RELOC/tex/context/third/vim/t-syntax-highlight.mkii + RELOC/tex/context/third/vim/t-syntax-highlight.mkiv + RELOC/tex/context/third/vim/t-vim.tex + RELOC/tex/context/third/vim/vimtyping-default.css +catalogue-also context-filter +catalogue-ctan /macros/context/contrib/context-vim +catalogue-license bsd +catalogue-topics synt-hlt ext-code context + +name context-visualcounter +category ConTeXt +revision 47085 +shortdesc Visual display of ConTeXt counters +relocated 1 +longdesc A typical document usually contains many counters: page +longdesc numbers, section numbers, itemizations, enumerations, theorems, +longdesc and so on. This module provides a visual display for such +longdesc counters. +depend context +containersize 3992 +containerchecksum da7799ee31a4298f8e8cb02cb4e480fa49fb4188b776df877648c663c93523636bdd7fa6ca5eb403fc8f3483064bf223fed042c1d27eb0817c224ddf8e21c673 +doccontainersize 263536 +doccontainerchecksum 1788355ea4109e7e2bbaa9bbc3798f60a814d549d082638a59a453cc5fb39b54ff8a00471a28a96a5501e91899874ae19981ae0f8a09b6353d19275b851b9f80 +docfiles size=68 + RELOC/doc/context/third/visualcounter/VERSION + RELOC/doc/context/third/visualcounter/visualcounter.pdf details="Package documentation" +srccontainersize 6744 +srccontainerchecksum 39bba551e9f0bb8d70c0b60a2b0fba3d7cad30555d4052fc6ae722bfd9cb79d5cca784474a9f1847faccccb1618662bc4dd2fadd1fdacaf2f4cc9c035b5501ec +srcfiles size=7 + RELOC/source/context/third/visualcounter/p-documentation.tex + RELOC/source/context/third/visualcounter/visualcounter.tex +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-license bsd2 +catalogue-topics context + +name context.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of context +containersize 468 +containerchecksum e9cee1a9fea82e473ee814778942308b955b5e75e892cd464fc317b6012f698a3130aa5a05a227e1dd21ef9cc5a2391b7fb8a4f2cef4ca2b1cd6c53aaed69067 +binfiles arch=aarch64-linux size=7 + bin/aarch64-linux/context + bin/aarch64-linux/contextjit + bin/aarch64-linux/luatools + bin/aarch64-linux/mtxrun + bin/aarch64-linux/mtxrunjit + bin/aarch64-linux/texexec + bin/aarch64-linux/texmfstart + +name context.amd64-freebsd +category Package +revision 34112 +shortdesc amd64-freebsd files of context +containersize 460 +containerchecksum 2f63ad94028aceb15c8da68e64660b555ad16b46c9366605982d1723c1a713bdc505963401f340898abb96eda41fc66e812dede665d374c7f1818adfc5aeeeff +binfiles arch=amd64-freebsd size=7 + bin/amd64-freebsd/context + bin/amd64-freebsd/contextjit + bin/amd64-freebsd/luatools + bin/amd64-freebsd/mtxrun + bin/amd64-freebsd/mtxrunjit + bin/amd64-freebsd/texexec + bin/amd64-freebsd/texmfstart + +name context.amd64-netbsd +category Package +revision 34112 +shortdesc amd64-netbsd files of context +containersize 464 +containerchecksum 6333829aa66af572ca46dbeb7194baa819b61bdee92c459f44a0bccf41ced1073533a48634b8d7b510113fb1d22383ef5b9b388ff44f6be40a03c529b4effc89 +binfiles arch=amd64-netbsd size=7 + bin/amd64-netbsd/context + bin/amd64-netbsd/contextjit + bin/amd64-netbsd/luatools + bin/amd64-netbsd/mtxrun + bin/amd64-netbsd/mtxrunjit + bin/amd64-netbsd/texexec + bin/amd64-netbsd/texmfstart + +name context.armhf-linux +category Package +revision 34112 +shortdesc armhf-linux files of context +containersize 468 +containerchecksum fecdb490311e357fe1e70b5f7cf24534331aa13ae559ab876835bf620cc24aebace0116b182d5af0dfc264c5940223da59f54c9c4b6f49041865b004e5247ecb +binfiles arch=armhf-linux size=7 + bin/armhf-linux/context + bin/armhf-linux/contextjit + bin/armhf-linux/luatools + bin/armhf-linux/mtxrun + bin/armhf-linux/mtxrunjit + bin/armhf-linux/texexec + bin/armhf-linux/texmfstart + +name context.i386-cygwin +category Package +revision 34112 +shortdesc i386-cygwin files of context +containersize 464 +containerchecksum 92e9be45e80960767c1840cdec387a4ea01794a26ece70ded484dea095aa3057a22af3e4b47da55a9298a6bffc18120559822439462c9683bdc8e1926c73d9f3 +binfiles arch=i386-cygwin size=7 + bin/i386-cygwin/context + bin/i386-cygwin/contextjit + bin/i386-cygwin/luatools + bin/i386-cygwin/mtxrun + bin/i386-cygwin/mtxrunjit + bin/i386-cygwin/texexec + bin/i386-cygwin/texmfstart + +name context.i386-freebsd +category Package +revision 34112 +shortdesc i386-freebsd files of context +containersize 472 +containerchecksum cf56ad167df69984888ff5c2ed3e9a7d2b8385432f5242a596b5cd9e52bcbf52fd7872f1762cb0c6d1f8354a1b9df4102c911aea52bce89fc2403fa61cbe7d4c +binfiles arch=i386-freebsd size=7 + bin/i386-freebsd/context + bin/i386-freebsd/contextjit + bin/i386-freebsd/luatools + bin/i386-freebsd/mtxrun + bin/i386-freebsd/mtxrunjit + bin/i386-freebsd/texexec + bin/i386-freebsd/texmfstart + +name context.i386-linux +category Package +revision 34112 +shortdesc i386-linux files of context +containersize 460 +containerchecksum 134f4bf731ee801fd7018100c8453180f339a2180781c85f1e5cd8a9c3d5e6f35b450cc99b77a73e2a9f90ea9027bf6145c429ebf70e59712248940f04c45b9a +binfiles arch=i386-linux size=7 + bin/i386-linux/context + bin/i386-linux/contextjit + bin/i386-linux/luatools + bin/i386-linux/mtxrun + bin/i386-linux/mtxrunjit + bin/i386-linux/texexec + bin/i386-linux/texmfstart + +name context.i386-netbsd +category Package +revision 34112 +shortdesc i386-netbsd files of context +containersize 460 +containerchecksum b046a1f317f91c5a567c5180436147a8221206d0b8364a8a91ba6d19c80b23222b9a2ab379a7715307a9599090905cea8a64bcef24580e240d1d4517d8179acb +binfiles arch=i386-netbsd size=7 + bin/i386-netbsd/context + bin/i386-netbsd/contextjit + bin/i386-netbsd/luatools + bin/i386-netbsd/mtxrun + bin/i386-netbsd/mtxrunjit + bin/i386-netbsd/texexec + bin/i386-netbsd/texmfstart + +name context.i386-solaris +category Package +revision 34112 +shortdesc i386-solaris files of context +containersize 472 +containerchecksum cd261832da8e7c0ad10e9e36d40f7eee5bf55a3f8dfd76a5643efa98dfb70bd668fcd9acdbf6809575a18a8ccf367df4fb87310d7bef61682ea7ebea442057cf +binfiles arch=i386-solaris size=7 + bin/i386-solaris/context + bin/i386-solaris/contextjit + bin/i386-solaris/luatools + bin/i386-solaris/mtxrun + bin/i386-solaris/mtxrunjit + bin/i386-solaris/texexec + bin/i386-solaris/texmfstart + +name context.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of context +containersize 472 +containerchecksum c65bac184d5dc03a965bf538fa6c7b34766e43f56662751228287899d3ca53476f9d4430fbf4b6b7779070881dcd33a5865078ec80af59ba47eea299d2874c59 +binfiles arch=universal-darwin size=7 + bin/universal-darwin/context + bin/universal-darwin/contextjit + bin/universal-darwin/luatools + bin/universal-darwin/mtxrun + bin/universal-darwin/mtxrunjit + bin/universal-darwin/texexec + bin/universal-darwin/texmfstart + +name context.win32 +category Package +revision 58167 +shortdesc win32 files of context +containersize 134260 +containerchecksum ff340adafa56834b4af6ad4d5ad023e9a7e5847b2eca62826f16c2e741bfad82a24593064f04986f76de5e661a2b42f4a86deeceb8d01f19ea01d3d6969d4f02 +binfiles arch=win32 size=185 + bin/win32/context.exe + bin/win32/contextjit.exe + bin/win32/luatools.exe + bin/win32/mtxrun.dll + bin/win32/mtxrun.exe + bin/win32/mtxrun.lua + bin/win32/mtxrunjit.exe + bin/win32/texexec.exe + bin/win32/texmfstart.exe + +name context.x86_64-cygwin +category Package +revision 34112 +shortdesc x86_64-cygwin files of context +containersize 472 +containerchecksum aeff6ffb44d74d8beabfbc309777fb78c8f2adb38274c9f774ebc42b47ebd90454b7849060665ebc63999811a2011509a1a219f6e7ad0a00364b69e7d8694ed4 +binfiles arch=x86_64-cygwin size=7 + bin/x86_64-cygwin/context + bin/x86_64-cygwin/contextjit + bin/x86_64-cygwin/luatools + bin/x86_64-cygwin/mtxrun + bin/x86_64-cygwin/mtxrunjit + bin/x86_64-cygwin/texexec + bin/x86_64-cygwin/texmfstart + +name context.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of context +containersize 476 +containerchecksum cb79e020b5de95a97ce69fa4170f1efea0fd13212f1dc54a33caff5d9abdd3804d824c0f0adbd3934a17bb5f2ddd0a1a86b839b9b37f11467bb1723bfab5864d +binfiles arch=x86_64-darwinlegacy size=7 + bin/x86_64-darwinlegacy/context + bin/x86_64-darwinlegacy/contextjit + bin/x86_64-darwinlegacy/luatools + bin/x86_64-darwinlegacy/mtxrun + bin/x86_64-darwinlegacy/mtxrunjit + bin/x86_64-darwinlegacy/texexec + bin/x86_64-darwinlegacy/texmfstart + +name context.x86_64-linux +category Package +revision 34112 +shortdesc x86_64-linux files of context +containersize 464 +containerchecksum eeea45be144fd63c2f07615cddf2b52eb8c34160fc0f1fdc27c3697e4cff1f5a72ad6dc1c2a48363067e15fddb00ad7dc7daffde53e60a0d84bd6887d83f4c07 +binfiles arch=x86_64-linux size=7 + bin/x86_64-linux/context + bin/x86_64-linux/contextjit + bin/x86_64-linux/luatools + bin/x86_64-linux/mtxrun + bin/x86_64-linux/mtxrunjit + bin/x86_64-linux/texexec + bin/x86_64-linux/texmfstart + +name context.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of context +containersize 476 +containerchecksum cd6d6eb0c40adabc8faacfd27b159606f9961c8b769cb6969a00df33d2b088e8d611fd54dad140f2aa21cf7a79fb17841776753280f9f45d91cac336a1c79e18 +binfiles arch=x86_64-linuxmusl size=7 + bin/x86_64-linuxmusl/context + bin/x86_64-linuxmusl/contextjit + bin/x86_64-linuxmusl/luatools + bin/x86_64-linuxmusl/mtxrun + bin/x86_64-linuxmusl/mtxrunjit + bin/x86_64-linuxmusl/texexec + bin/x86_64-linuxmusl/texmfstart + +name context.x86_64-solaris +category Package +revision 34112 +shortdesc x86_64-solaris files of context +containersize 460 +containerchecksum d099aae5eb3831e619a2094ec5aac94e03499f68a471f2087e3c7a9c02cf5c8890c71e9a898d11dc814ef7fd4858cd414d75f94492276d9754eaa2bcf926ce7b +binfiles arch=x86_64-solaris size=7 + bin/x86_64-solaris/context + bin/x86_64-solaris/contextjit + bin/x86_64-solaris/luatools + bin/x86_64-solaris/mtxrun + bin/x86_64-solaris/mtxrunjit + bin/x86_64-solaris/texexec + bin/x86_64-solaris/texmfstart + +name continue +category Package +revision 49449 +shortdesc Prints 'continuation' marks on pages of multipage documents +relocated 1 +longdesc This package provides for a variety of continuation indicators +longdesc on pages when the text continues on the following page. The +longdesc default is to only mark odd pages, but all pages can be marked +longdesc and the marking can be stopped or started at any point. +containersize 2960 +containerchecksum 42cda9a2796e9006263320163777df7046a79e38cb2c0ffb53f23c27cc03c686e00e39b066228b09ca99a6e5c2bf4a6cb32d5d7c49b40cf614c542e258968ab9 +doccontainersize 366292 +doccontainerchecksum 0b6bbf7c3123b7e741255bd3ff9e020ec61bcb81a236ddec41e709f14de514057d9b902ad783f48e5c04ba1ca6daee31a38f130649cb0e5b2d548ca9689d5dca +docfiles size=92 + RELOC/doc/latex/continue/README details="Readme" + RELOC/doc/latex/continue/continue.pdf details="Package documentation" + RELOC/doc/latex/continue/trycontinue.pdf + RELOC/doc/latex/continue/trycontinue.tex +srccontainersize 8652 +srccontainerchecksum 790671ec666983e4ff5ff594b7df54cdf7c9d136d57f9004f5400857c3001ffbd3a13a5fc559f3ab75a168c66fc5aa2ee3b5702e5ec417c9a31a1e65d18b801f +srcfiles size=8 + RELOC/source/latex/continue/continue.dtx + RELOC/source/latex/continue/continue.ins +runfiles size=2 + RELOC/tex/latex/continue/continue.sty +catalogue-also fwlw turnthepage +catalogue-ctan /macros/latex/contrib/continue +catalogue-license lppl1.3 +catalogue-topics layout page-hf +catalogue-version 0.2 + +name contour +category Package +revision 18950 +shortdesc Print a coloured contour around text +relocated 1 +longdesc This package generates a coloured contour around a given text +longdesc in order to enable printing text over a background without the +longdesc need of a coloured box around the text. +containersize 2672 +containerchecksum 0dd4a28f97efcfd0459595776cbab019168fca48984d78f9ec17e0f3af9dbebd378adc6649bce6a9a999651c75316f3ff44e0f10e208465dda2d904d080c41d3 +doccontainersize 153180 +doccontainerchecksum af1c649d2e5666ee3973395babce4802da2154ba95fa7fc08e378c261a8ea1c5be44053c40c5cc1bd0c74e2c54b659470c3d45063fbbd4330cdc5e664f19bff0 +docfiles size=49 + RELOC/doc/latex/contour/ChangeLog + RELOC/doc/latex/contour/Makefile + RELOC/doc/latex/contour/README details="Package Readme" + RELOC/doc/latex/contour/contour.pdf details="Package documentation" + RELOC/doc/latex/contour/contourtest.tex +srccontainersize 6840 +srccontainerchecksum 377b4a92031cd957b15d232cda9e4c2e7488a4c71624eed06dc2edf9dca37afc11e18691650ea377da2dd78b5f636272eeb6d94bebd99ad5ec1ec477f7b65784 +srcfiles size=8 + RELOC/source/latex/contour/contour.dtx + RELOC/source/latex/contour/contour.ins +runfiles size=7 + RELOC/tex/latex/contour/contour.cfg + RELOC/tex/latex/contour/contour.sty + RELOC/tex/latex/contour/dvips.cnt + RELOC/tex/latex/contour/dvipsone.cnt + RELOC/tex/latex/contour/pdftex.cnt + RELOC/tex/latex/contour/vtex.cnt +catalogue-ctan /macros/latex/contrib/contour +catalogue-license lppl +catalogue-topics decoration colour +catalogue-version 2.14 + +name contracard +category Package +revision 50217 +shortdesc Generate calling cards for dances +relocated 1 +longdesc A package and a class used to typeset traditional country +longdesc dances, such as contra and square dances, and to create calling +longdesc cards for the same. +containersize 5288 +containerchecksum 07c77a1e864c012a88be95a98ef662f5642fd63e84801a994be702f5ae2d62100b02e109ba6c775f2c8d11d75627fdef48acdbd55bdb4735896fd945edc4fdc6 +doccontainersize 182428 +doccontainerchecksum 984acf51897209c3bc3fe4760088a6b9cbae613acf51c5f8c848dae3a3d13e5e8171fc62db25dcea267cadaf9f2ba81d221085ae90a7da1fb5e6d0dd8e243f10 +docfiles size=49 + RELOC/doc/latex/contracard/LICENSE + RELOC/doc/latex/contracard/README details="Readme" + RELOC/doc/latex/contracard/contracard.pdf details="Package documentation" +srccontainersize 18312 +srccontainerchecksum 6a0f0536861da9f012b5600fc1c635a9f9124c25b4a5d9544ca00fbc3770760c0d1de77587452d33c254abec3bee6fd923e31f2bd34581c467f15d1d658a9cae +srcfiles size=23 + RELOC/source/latex/contracard/Makefile + RELOC/source/latex/contracard/contracard.dtx + RELOC/source/latex/contracard/contracard.ins +runfiles size=8 + RELOC/tex/latex/contracard/contracard.cls + RELOC/tex/latex/contracard/contracard.sty +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-license lppl1.3c +catalogue-topics music class +catalogue-version 2.0.0 + +name conv-xkv +category Package +revision 43558 +shortdesc Create new key-value syntax +relocated 1 +longdesc This small package supports key-value syntax other than the +longdesc standard LaTeX syntax of =. Using this package, +longdesc create key-values of the form : or ->, +longdesc for example. The package converts the new notation to xkeyval +longdesc notation and passes it on to xkeyval. +containersize 2408 +containerchecksum 7bbbcfd71a32704f2383289d91fcc1b5993aa9e184f5d974f6dd5592312e85848a926ad9e6f412bef801daa20cc2b9c999ba137b9b24e31facfd6931309630df +doccontainersize 79532 +doccontainerchecksum c1c923008185db09b3e7cfd90bfd9b33ca2a61ccc706b0f9cefb238e0860120da517fdc7166e4fe476a1cc02cb4a7a3fe4c9b81c87c8de25ddd1c0c417dcfca3 +docfiles size=24 + RELOC/doc/latex/conv-xkv/README.md details="Readme" + RELOC/doc/latex/conv-xkv/doc/conv-xkv.pdf details="Package documentation" + RELOC/doc/latex/conv-xkv/examples/convert2xkeyval.tex +srccontainersize 5336 +srccontainerchecksum edd5feac4453010dd996edbb3741339904b0380c021f9429933f6b27df6d9c002d593d617467043ae6087de3c5842fb7a4e8ccfcc95c7763e124ab5f5c9dc024 +srcfiles size=5 + RELOC/source/latex/conv-xkv/conv-xkv.dtx + RELOC/source/latex/conv-xkv/conv-xkv.ins +runfiles size=2 + RELOC/tex/latex/conv-xkv/conv-xkv.sty +catalogue-ctan /macros/latex/contrib/conv-xkv +catalogue-license lppl1.2 +catalogue-topics macro-supp + +name convbkmk +category Package +revision 49252 +shortdesc Correct platex/uplatex bookmarks in PDF created with hyperref +longdesc The package provides a small Ruby script that corrects +longdesc bookmarks in PDF files created by platex/uplatex, using +longdesc hyperref. +depend convbkmk.ARCH +containersize 5812 +containerchecksum 01bb9621459bac7eecc99b1d9aa59de420ba805b2e0ecdb2a89f5c86fa4a3021d957b4ddc69617ea406e77865d68e40c657979c488fc51f4676d084cfe6181cd +doccontainersize 960 +doccontainerchecksum 937d436cb9387eac601883ced516fa40f60e606bb4bae0be62e1ded2a31754a1d00461a34ad533cce1cc48f4d11e880233eaac128d80841e0b22f18801e86506 +docfiles size=1 + texmf-dist/doc/support/convbkmk/README.md details="Readme" +runfiles size=4 + texmf-dist/scripts/convbkmk/convbkmk.rb +catalogue-contact-repository https://github.com/t-tk/convbkmk +catalogue-ctan /support/convbkmk +catalogue-license mit +catalogue-topics pdfprocess +catalogue-version 0.30 + +name convbkmk.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of convbkmk +containersize 344 +containerchecksum d771e486462aa7e67b75bfb38f24510091bd03b3721c9812fceef4fd4dc6fa927cf6eac7f23507c115bef93839cc9934fd4f131c2edb0e431b84fc33af7da6b6 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/convbkmk + +name convbkmk.amd64-freebsd +category Package +revision 30408 +shortdesc amd64-freebsd files of convbkmk +containersize 344 +containerchecksum 30e3e0d1b222c9920efe370a53e3adc451449c74c04e7c4a2448e9755dac34ac806b5790dc7013a60d9f946e46886ed30d7d8fa827a6c22322e7ddf9d7facd04 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/convbkmk + +name convbkmk.amd64-netbsd +category Package +revision 30408 +shortdesc amd64-netbsd files of convbkmk +containersize 340 +containerchecksum 38fab2919f05df73da0ba2deb71129d5aa2019c15ee4c2f125e144b5b0e2f8ca7969da11872c509c3636dcfdc530948102461ac69913cbb0b7b0ac4672c96a9e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/convbkmk + +name convbkmk.armhf-linux +category Package +revision 30476 +shortdesc armhf-linux files of convbkmk +containersize 340 +containerchecksum eb1c2ec03fbd320b2999efe2b0eea3af8ee41b5956130122022444e7bf70efc9cc790297815d97867b66797517fd4b9cae35851c3e5f299d8ee7b61d09249882 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/convbkmk + +name convbkmk.i386-cygwin +category Package +revision 30408 +shortdesc i386-cygwin files of convbkmk +containersize 340 +containerchecksum 5e37da7699c7fc77d81a7eb62b773e8f8dc34640f413dc4db2c720ac7134305009eece97a672f387b154442e59b66726f155264dd54530053d7f68f1c466010a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/convbkmk + +name convbkmk.i386-freebsd +category Package +revision 30408 +shortdesc i386-freebsd files of convbkmk +containersize 344 +containerchecksum 85f359297544c1d6fcffefeff99eb68391e652da59c9951f3fd52edf3670697a3fdf6e7d10f8c09b2f18ea934506f65fb5b5b700d7ede690675700ec74f0afdb +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/convbkmk + +name convbkmk.i386-linux +category Package +revision 30408 +shortdesc i386-linux files of convbkmk +containersize 344 +containerchecksum 75a6c3863916a30ff03cbc8a25842a0887718b50b551706047627e4fc3e9bca9eafd1ae165c06171fdaf412dff376aa003edbe87f9711a77f15cb114cd03c1a6 +binfiles arch=i386-linux size=1 + bin/i386-linux/convbkmk + +name convbkmk.i386-netbsd +category Package +revision 30408 +shortdesc i386-netbsd files of convbkmk +containersize 340 +containerchecksum 1a042f1842f59ed7da6ecd6d0dcbaff45a5b858c53e553f29aef2af574c719b581739742eaf66fa19b4b47d7718908763b5e42ef286d0924b72663322a4ac391 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/convbkmk + +name convbkmk.i386-solaris +category Package +revision 30408 +shortdesc i386-solaris files of convbkmk +containersize 340 +containerchecksum b0ecc511b9cf56b76ac82efae21337696b2ffda2bde8d043d36412d1e1cebe4d072e99963941437e9ddb7974c5e12a22b8b9bc791cfa1082f22a6b4a813634e2 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/convbkmk + +name convbkmk.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of convbkmk +containersize 340 +containerchecksum cba31583379b47b0841e259642c11967e7203544eefa357f378aecb99fb2f819867b67b5d778ba1bb81af043e0c6730f045f5d2e343c175f556df953cf4dda06 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/convbkmk + +name convbkmk.win32 +category Package +revision 26326 +shortdesc win32 files of convbkmk +containersize 684 +containerchecksum 96b29060ff1ee66700757c5acf9015c33099c3ce62c3e1a4e6f45702b4ef235a53a33e4dbb044e1688a8117b90fe38a68d0260a043d806b3c5c70aede403d20c +binfiles arch=win32 size=1 + bin/win32/convbkmk.exe + +name convbkmk.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of convbkmk +containersize 344 +containerchecksum 517dc3424bdd6acd11aadc8eca56f7e7de38bac360f9b7a350be9ccc5f445f93e424d1e35c27cda33579981531dd7ffb37f31a3dcf9a98b9d913571196ec0b60 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/convbkmk + +name convbkmk.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of convbkmk +containersize 352 +containerchecksum 11558cc934d677eddc84b4cf8b16ff3deb47cfdcc4088bb986308cc2e92e212132512444b6f44c817b8610a37b3134d74605067676c43cb463a061e506b0ac91 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/convbkmk + +name convbkmk.x86_64-linux +category Package +revision 30408 +shortdesc x86_64-linux files of convbkmk +containersize 340 +containerchecksum 34b6d4a0f85c6683a2ec0f999c82504de73e5499af3135104f6fc9fa796134c2d59ace8cd8672322d16f8542f40c3224b0de3670d920a1631354aff9b206bc67 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/convbkmk + +name convbkmk.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of convbkmk +containersize 348 +containerchecksum 7ae257d42ea015696838747b4a787b703fa8e7b27d211a1987b908a11e5f3441ed9be2e235d2297af764ad0504a6baa929525d1927d2872b428aa668356829dc +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/convbkmk + +name convbkmk.x86_64-solaris +category Package +revision 30408 +shortdesc x86_64-solaris files of convbkmk +containersize 340 +containerchecksum 62905850a2e21d445296fd8d1f2ec9d7168e64468c90c906131b26344e0f97ad69291bb95b41e0960c35e6b7b1c8d99e8fcb705bb8cd53dd7d5ed9973e7ed75b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/convbkmk + +name cooking +category Package +revision 15878 +shortdesc Typeset recipes +relocated 1 +longdesc The package typesets recipes according to the style used in a +longdesc well-respected German cookery book. +containersize 1744 +containerchecksum 6c2fb1adf244dafa9689844e1283dce19786e2c1df170d4172d3567514555d90adcb82414f79b5d9dcd59cfdd3af5d6893fff57972d6e4fb32196add0ed5b1eb +doccontainersize 59896 +doccontainerchecksum 30cc2a5b4679126cad1b13785081d924f9d455a5f392e5047c14c8ce1dd3efca102bafb74e1a339dd938680f3a95111a7025a31508ea63108eb33cf32b03c9c5 +docfiles size=25 + RELOC/doc/latex/cooking/COPYING + RELOC/doc/latex/cooking/README details="Package Readme" + RELOC/doc/latex/cooking/cooking.pdf details="Package documentation" + RELOC/doc/latex/cooking/kraut.tex +srccontainersize 7608 +srccontainerchecksum 7b935bbf1a7e7dfeed2db1c4725e38a3bf847822dee7da8d6098e7df82b5b5035b47ce3f0b9403dcf35028b319c2661b0bd8288b8a1e80395944532777451bd9 +srcfiles size=7 + RELOC/source/latex/cooking/cooking.dtx + RELOC/source/latex/cooking/cooking.ins +runfiles size=1 + RELOC/tex/latex/cooking/cooking.sty +catalogue-also cuisine +catalogue-ctan /macros/latex/contrib/cooking +catalogue-license gpl +catalogue-topics cooking +catalogue-version 0.9b + +name cooking-units +category Package +revision 53403 +shortdesc Typeset and convert units for cookery books and recipes +relocated 1 +longdesc The package provides commands to typeset amounts and units +longdesc consistently and offers an easy-to-use key-value syntax to +longdesc convert one unit into another (for example 'dag' to 'g'; see +longdesc the documentation for more examples). This packages requires +longdesc expl3 and xparse, translations, xfrac, l3keys2e, and, +longdesc optionally, fmtcount. +containersize 17464 +containerchecksum 4182a43bc869dca19d022ae019fd479ac658c609a792677b9cfe5e3271af890ee353974b15b9cd4bb667f39fb38b96ee1a31359ca4a89986a3c03053ffd1974c +doccontainersize 697692 +doccontainerchecksum 71e7ab3f1a89984063e26d5532eb1c1533efb06b8d8164548b7b46eab966e88e8ce5300ca0c91c639ae896b95bf5e9487c8c149d2f90af7cca0168b674052c8e +docfiles size=172 + RELOC/doc/latex/cooking-units/README.md details="Readme" + RELOC/doc/latex/cooking-units/cooking-units.pdf details="Package documentation" +srccontainersize 56868 +srccontainerchecksum 8eb0c4698cf35fcb24b4e02db44f284c51f953ce1debc5f334fa514e4cee0ccb3278c74bdded88cfe379a47ac1f32efe089711f11fafa477f7a053e2e45a0092 +srcfiles size=72 + RELOC/source/latex/cooking-units/cooking-units.dtx + RELOC/source/latex/cooking-units/cooking-units.ins +runfiles size=32 + 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-license lppl +catalogue-topics cooking units +catalogue-version 1.46 + +name cookingsymbols +category Package +revision 35929 +shortdesc Symbols for recipes +relocated 1 +longdesc The package provides 11 symbols for typesetting recipes: oven, +longdesc gasstove, topheat, fanoven, gloves and dish symbol (among +longdesc others). The symbols are defined using Metafont. +containersize 3584 +containerchecksum 9b43ffdce038ebb001c0ab6198fa2d92ad6f1ec6040f1c315a53fbfd29367e5c851f4015c36b0cdb2eea84f4a8dc90aa3d5126a09f93766d614931bbf555f982 +doccontainersize 378876 +doccontainerchecksum fb6794942d016d12f527b86947c7fae9947a7cf9122a7b26d39bfeb6d5f55a7cccc11b666101b0c80a92c7385ae8305bcb4d792baa0974b738af80697ad12891 +docfiles size=101 + RELOC/doc/latex/cookingsymbols/README details="Readme" + RELOC/doc/latex/cookingsymbols/cookingsymbols.pdf details="Package documentation" +srccontainersize 5616 +srccontainerchecksum b2e8ff3274ffaff3a3f5b3de1ab95a534247878f163cba8cac9af0cb49c59c54f9ac7b362c75dbc394a3c942864b3255ed28310ac5ba842b5b63ea0d0d80f7d5 +srcfiles size=5 + RELOC/source/latex/cookingsymbols/cookingsymbols.dtx + RELOC/source/latex/cookingsymbols/cookingsymbols.ins +runfiles size=5 + RELOC/fonts/source/public/cookingsymbols/cookingsymbols.mf + RELOC/fonts/tfm/public/cookingsymbols/cookingsymbols.tfm + RELOC/tex/latex/cookingsymbols/cookingsymbols.sty +catalogue-ctan /macros/latex/contrib/cookingsymbols +catalogue-license lppl +catalogue-topics font font-mf font-symbol cooking +catalogue-version 1.1 + +name cool +category Package +revision 15878 +shortdesc COntent-Oriented LaTeX +relocated 1 +longdesc The package (COntent Oriented LaTeX) gives LaTeX the power to +longdesc retain mathematical meaning of its expressions in addition to +longdesc the typsetting instructions; essentially separating style from +longdesc the content of the math. One advantage of keeping mathematical +longdesc meaning is that conversion of LaTeX documents to other +longdesc executable formats (such as Content MathML or Mathematica code) +longdesc is greatly simplified. The package requires the coolstr, +longdesc coollist and forloop packages. +containersize 10204 +containerchecksum ec5b1612484852897856b58bde90aabc3e8c051f6a14674f2bf3a121993ce074214c3d61c7d074dae54e227c759630cff71793ac1ff433b048f3a15f90038c0f +doccontainersize 412164 +doccontainerchecksum bf27e08a04f02f58ffb04ae0fa7b26860ab4129d3de3e2ab20d244a99c96b112a7a3dc10d064a364e38a80c1087ea8c693e7e7538a36975b6914f75418a82547 +docfiles size=143 + RELOC/doc/latex/cool/Content_LaTeX_Package_Demo.pdf details="Tables of macros functions" + RELOC/doc/latex/cool/Content_LaTeX_Package_Demo.tex + RELOC/doc/latex/cool/README details="Package README" + RELOC/doc/latex/cool/cool.pdf details="Implementation details" +srccontainersize 22524 +srccontainerchecksum 1f5b16c0e1d4598ec4f4c5981e079537b0142f92b514d1f3dad567b2a71b02f9be0b3441087d7a973750f308f691270e750d75f669784fa3c787e6bc919d7e68 +srcfiles size=46 + RELOC/source/latex/cool/cool.dtx + RELOC/source/latex/cool/cool.ins +runfiles size=19 + RELOC/tex/latex/cool/cool.sty +catalogue-ctan /macros/latex/contrib/cool +catalogue-license lgpl +catalogue-topics maths struc-mkup +catalogue-version 1.35 + +name coollist +category Package +revision 15878 +shortdesc Manipulate COntent Oriented LaTeX Lists +relocated 1 +longdesc Lists are defined as a sequence of tokens separated by a comma. +longdesc The coollist package allows the user to access certain elements +longdesc of the list while neglecting others--essentially turning lists +longdesc into a sort of array. List elements are accessed by specifying +longdesc the position of the object within the list (the index of the +longdesc item). +containersize 2360 +containerchecksum e7568164dc7d7aa9395cd79e52e4f58b1087d1203d7ad73dca6aefab9222af6875cbacd3270d3ef193416c1b2d893877118c74a206fdc813b3fbd52935ac9d7c +doccontainersize 110360 +doccontainerchecksum 6e183739d0dea5e0da341381c06a671879caf6fc666a74c87b8c3e9df425d3a99cc4ca2f2acb32969cce869a496f0a50bbfbf1351bd71e177b63829bd11aa6ec +docfiles size=33 + RELOC/doc/latex/coollist/README + RELOC/doc/latex/coollist/coollist.pdf details="Package documentation" +srccontainersize 7020 +srccontainerchecksum 5c49e978c7d2ecb73de8a1b5284bbc81c10ed311f67fc2c435d27ebcf048562e2329be02d92cb829ebd497e5cdd11660ec1372bd3256bbce0037766ee8fb647a +srcfiles size=9 + RELOC/source/latex/coollist/coollist.dtx + RELOC/source/latex/coollist/coollist.ins +runfiles size=3 + RELOC/tex/latex/coollist/coollist.sty +catalogue-ctan /macros/latex/contrib/coollist +catalogue-license lgpl +catalogue-topics data-manip +catalogue-version 1.4 + +name coolstr +category Package +revision 15878 +shortdesc String manipulation in LaTeX +relocated 1 +longdesc Coolstr is a subpackage of the cool bundle that deals with the +longdesc manipulation of strings. A string is defined as a sequence of +longdesc characters (not tokens). The package provides the ability to +longdesc access a specific character of a string, as well as determine +longdesc if the string contains numeric or integer data. +containersize 2396 +containerchecksum d4fe8de308d6dd9711f1d877fd1d5ad32f36a4d6cb17480571d88f4b63f9441fb1db217629ddafb25e774bb6d43d148742f9e823e1d43f497a9799b869f90b62 +doccontainersize 116380 +doccontainerchecksum 63c833be3ab646ce509e5082af3d135d81224c7b586f6998e5fc7410f2ed0e52abb05adfb49d78bae721889fc522395b53810e3ee627184de83dddb198cd3083 +docfiles size=35 + RELOC/doc/latex/coolstr/README details="Readme" + RELOC/doc/latex/coolstr/coolstr.pdf details="Package documentation" +srccontainersize 6468 +srccontainerchecksum 69ba696387583767b4c4d0b196c2b37000da16198242ea1ba4e2208fce6dab8eddb2bd40093eb092fe62b3be82aacab4b11ee35e2f94422eb07e0ad489709930 +srcfiles size=10 + RELOC/source/latex/coolstr/coolstr.dtx + RELOC/source/latex/coolstr/coolstr.ins +runfiles size=3 + RELOC/tex/latex/coolstr/coolstr.sty +catalogue-ctan /macros/latex/contrib/coolstr +catalogue-license lgpl +catalogue-topics string +catalogue-version 2.2 + +name coolthms +category Package +revision 29062 +shortdesc Reference items in a theorem environment +relocated 1 +longdesc The package provides the means to directly reference items of +longdesc lists nested in theorem-like environments (e.g., as 'Theorem 1 +longdesc a'). The package extends the ntheorem and cleveref packages. +longdesc The package also provides other theorem markup commands. +containersize 2624 +containerchecksum 7a9d8f4605a0ff108ef5cb32ef4b6f455d16898248fee534e6557d8323c4378c8299fc1a6d58dd491020090ed4fdd3e41a90de99d18a9d114b72bd57b27b5e7d +doccontainersize 108508 +doccontainerchecksum 2f5ff3ead76bc83138e41ee881713829de7b8b0ecdda353fcbdd9ebdb7851139eb9022fb4eec1a1c03d125f4106ce748123a9d9fcd76859e82158a541aa20aba +docfiles size=28 + RELOC/doc/latex/coolthms/README details="Readme" + RELOC/doc/latex/coolthms/coolthms.pdf details="Package documentation" +srccontainersize 8968 +srccontainerchecksum 088f76522c4576925af08d387ecfd18b4906aa91fa741c4848eed49addb9a9334b3f27de30c516e7a85583a450fcfd0c7054b071bb926eb8f1f9ab54b5791ed0 +srcfiles size=9 + RELOC/source/latex/coolthms/coolthms.dtx + RELOC/source/latex/coolthms/coolthms.ins +runfiles size=2 + RELOC/tex/latex/coolthms/coolthms.sty +catalogue-ctan /macros/latex/contrib/coolthms +catalogue-license lppl +catalogue-topics maths-theorem label-ref +catalogue-version 1.2 + +name cooltooltips +category Package +revision 15878 +shortdesc Associate a pop-up window and tooltip with PDF hyperlinks +relocated 1 +longdesc The cooltooltips package enables a document to contain +longdesc hyperlinks that pop up a brief tooltip when the mouse moves +longdesc over them and also open a small window containing additional +longdesc text. cooltooltips provides the mechanism used by the Visual +longdesc LaTeX FAQ to indicate the question that each hyperlink answers. +containersize 2432 +containerchecksum c17cb15979b575ece2c16dac8d56991c7cb32d99e165205c099b5058b658c60b393696fee5f7178611d5ccdf1d812522640dee56c1c4c881a73a11edc2ec8799 +doccontainersize 189604 +doccontainerchecksum 6a091ed9c41f4cf31d9db7cb2c1c76a342583f9d568ed89380bb624fba35cb3b788abde47f746b0e8a0402da19171fce72c7f356da2a2e4cb8264452f727eff7 +docfiles size=57 + RELOC/doc/latex/cooltooltips/README details="Readme" + RELOC/doc/latex/cooltooltips/cooltooltips.pdf details="Package documentation" +srccontainersize 9564 +srccontainerchecksum 8aad4d9623d41caee76932db0a9436760ee5aef346c68e393e39fbc1ebdebb643b7b5215c232ef04f7968c34e3d0b73e0f4a23d2e060930d97b3a047d1bce149 +srcfiles size=9 + RELOC/source/latex/cooltooltips/cooltooltips.dtx + RELOC/source/latex/cooltooltips/cooltooltips.ins +runfiles size=2 + RELOC/tex/latex/cooltooltips/cooltooltips.sty +catalogue-ctan /macros/latex/contrib/cooltooltips +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 1.0 + +name coordsys +category Package +revision 15878 +shortdesc Draw cartesian coordinate systems +relocated 1 +longdesc The package provides commands for typesetting number lines +longdesc (coordinate axes), coordinate systems and grids in the picture +longdesc environment. The package may be integrated with other drawing +longdesc mechanisms: the documentation shows examples of drawing graphs +longdesc (coordinate tables created by Maple), using the eepic package's +longdesc drawing capabilities. +containersize 4560 +containerchecksum 83a57df64b3386b7e927ca30b4b2ea031bd656121dda79dba0f96779e77d733d2293b80a3b08081678bea9b31a31a586123e9866c6aa595561843af3de0cc4f6 +doccontainersize 251112 +doccontainerchecksum bb89a04e5889c39c23ee65c38232cc0be931dff383d52614e290b6bd8ab23e7c9063fd7ea656dde896c08830b8c7c85e1da7f56728fd43a1bedf31bef6ca2e83 +docfiles size=87 + RELOC/doc/latex/coordsys/README details="Bundle Readme" + RELOC/doc/latex/coordsys/coordsys.pdf details="Bundle documentation" + RELOC/doc/latex/coordsys/putfile.maple +srccontainersize 24480 +srccontainerchecksum dd03bf08143a43b3486524d4aadac592e3e2264d23aa45fbb499ec7e709edcabd87f66fa38349edd856a09fb6d55ef466d565714045559b9b7f418a7d3eb5acf +srcfiles size=29 + RELOC/source/latex/coordsys/coordsys.dtx + RELOC/source/latex/coordsys/coordsys.ins +runfiles size=9 + RELOC/tex/latex/coordsys/coordsys.sty + RELOC/tex/latex/coordsys/logsys.sty +catalogue-also logsys +catalogue-ctan /macros/latex/contrib/coordsys +catalogue-license lppl +catalogue-topics graphics-in-tex +catalogue-version 1.4 + +name copyedit +category Package +revision 37928 +shortdesc Copyediting support for LaTeX documents +relocated 1 +longdesc This package implements copyediting support for LaTeX +longdesc documents. Authors can enjoy the freedom of using, for example, +longdesc words with US or UK or Canadian or Australian spelling in a +longdesc mixed way, yet, they can choose any one of the usage forms for +longdesc their entire document irrespective of kinds of spelling they +longdesc have adopted. In the same fashion, the users can have the +longdesc benefit of the following features available in the package: +longdesc Localization -- British-American-Australian-Canadian Close-up, +longdesc Hyphenation, and Spaced words Latin abbreviations Acronyms and +longdesc Abbreviations Itemization, nonlocal lists and labels +longdesc Parenthetical and serial commas Non-local tokenization in +longdesc language through Abbreviations and pronouns. +containersize 3560 +containerchecksum 27f48ff201c66d61ed7702b4d11f0d39b0c74974ea3a90506dace0f3cb4ac3c4ee5cac28f9669574184620b3e64a4b9ef3fa5564213e3d200754bbab791e52ea +doccontainersize 309008 +doccontainerchecksum 60fde840ac3c6876f031daf09e852ddf79276d2f841dea2ee5299678bd116df31b2ec2dfa6d6175e45a42fd781be6935cbfa2aab8621af641985e3df2c665fc1 +docfiles size=80 + RELOC/doc/latex/copyedit/README details="Readme" + RELOC/doc/latex/copyedit/copyedit.pdf details="Package documentation" + RELOC/doc/latex/copyedit/example/test-copy.pdf + RELOC/doc/latex/copyedit/example/test-copy.tex + RELOC/doc/latex/copyedit/manifest.txt +srccontainersize 7372 +srccontainerchecksum 7d2bb6e2e8c036345e301d45c03665b6c8ae9dfe91668f354e77e30e2d8a47d1b6db2e7032717c4b04e8e122952b916459b991fc5b566a020262835bcdf6a6fe +srcfiles size=7 + RELOC/source/latex/copyedit/copyedit.dtx + RELOC/source/latex/copyedit/copyedit.ins +runfiles size=3 + RELOC/tex/latex/copyedit/copyedit.sty +catalogue-ctan /macros/latex/contrib/copyedit +catalogue-license lppl1.3 +catalogue-topics english +catalogue-version 1.6 + +name copyrightbox +category Package +revision 24829 +shortdesc Provide copyright notices for images in a document +relocated 1 +longdesc The package command \copyrightbox[]{}{}, which places the text as a copyright notice +longdesc relating to the matter created by the image command. +containersize 1480 +containerchecksum 2ae2afc738cc906d24fca0a6319c98dc1e9382bbde6db3d0c3a371d3de8b92c30b3bf05be04797bc0ed6d905933a50e74809eed52f06cdba5fc5088be033d4a9 +doccontainersize 1691464 +doccontainerchecksum 9b817f2874a35f3e023774d3be32e0f8bf53a26f9daf553525c95ce0c21a64a22c3a716fb20cdc76921ec90b7b5305f305bf44853cf87d13ac38ce853ca00ea4 +docfiles size=765 + RELOC/doc/latex/copyrightbox/README details="Readme" + RELOC/doc/latex/copyrightbox/coin.jpg + RELOC/doc/latex/copyrightbox/copyrightbox.pdf details="Package documentation" + RELOC/doc/latex/copyrightbox/copyrightbox.tex +runfiles size=1 + RELOC/tex/latex/copyrightbox/copyrightbox.sty +catalogue-ctan /macros/latex/contrib/copyrightbox +catalogue-license lppl +catalogue-topics typesetting +catalogue-version 0.1 + +name cormorantgaramond +category Package +revision 54696 +shortdesc Cormorant Garamond family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Cormorant Garamond family of fonts, designed by +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 5583244 +containerchecksum ecb159a7278d7f2e98402b0174f6985d6e29ce340e2c9cdaafb39116f7be42ae2f802b9cd48265bb8b7b0ef4e0320c35459e07df9af7f18831fb4f2750bb5437 +doccontainersize 158028 +doccontainerchecksum a746ec2d0702cc8ac5b9d62c824c5227ad9ad816a74f04f115fdfb9a19d8e64b31739e4d4421386ea43e98286eab05257f69686c1bb5edda0d9a25e533e81a8a +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 + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2ahxjn.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2fszuh.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_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_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_czjvuz.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_edlrwy.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ehskq2.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ezmsqi.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_fnl4sj.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_fqbaih.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_goqtbf.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_hnmd4t.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ho7x2y.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_i4ztt6.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_j5xrmg.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_jg7lls.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_jwbavo.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_k54atz.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_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_od3ly4.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_olzkph.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p4fks4.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p5fsj2.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 + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_qrc2n2.enc + 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_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_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_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_zc6byq.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zcfdr3.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 + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-Bold.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-Italic.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-Light.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-LightItalic.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-Medium.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-Regular.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-SemiBold.ttf + RELOC/fonts/truetype/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic.ttf + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Bold.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Italic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Light.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-LightItalic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Medium.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Regular.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-SemiBold.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic.pfb + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/cormorantgaramond/CormorantGaramond.sty + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/T2ACormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/T2ACormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/T2ACormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/T2ACormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/T2ACormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/T2ACormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/T2BCormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/T2BCormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/T2BCormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/T2BCormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/T2BCormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/T2BCormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/T2CCormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/T2CCormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/T2CCormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/T2CCormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/T2CCormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/T2CCormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-TOsF.fd +catalogue-ctan /fonts/cormorantgaramond +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-serif font-ttf font-type1 font-supp font-t1enc +catalogue-version 3.601 + +name correctmathalign +category Package +revision 44131 +shortdesc Correct spacing of the alignment in expressions +relocated 1 +longdesc This package realigns the horizontal spacing of the alignments +longdesc in some mathematical environments. +containersize 1508 +containerchecksum 5a7e9b3b51ae82980cc1ab9d4ae74aa0b65afa533d21230b1f5e6867bb6464f910a07bb1c38621eb18d8bccd8bc50260b8741752936c310012590706726ed6f2 +doccontainersize 478128 +doccontainerchecksum bc6c9f24a4107d28120e6934f6966b2560ca4c34169b0074023e941746240879bc0572840d3967effd3a1358ef288ac412946f79fd3b40151c1507cba8828be0 +docfiles size=204 + RELOC/doc/latex/correctmathalign/README.md details="Readme" + RELOC/doc/latex/correctmathalign/aligned-org.pdf + RELOC/doc/latex/correctmathalign/correctmathalign.pdf details="Package documentation" + RELOC/doc/latex/correctmathalign/correctmathalign.tex + RELOC/doc/latex/correctmathalign/eqnarray-org.pdf +runfiles size=1 + RELOC/tex/latex/correctmathalign/correctmathalign.sty +catalogue-ctan /macros/latex/contrib/correctmathalign +catalogue-license bsd +catalogue-topics maths +catalogue-version 1.1 + +name coseoul +category Package +revision 23862 +shortdesc Context sensitive outline elements +relocated 1 +longdesc The package provides "relative" commands that may be used in +longdesc place of \chapter, \section, etc. The documentation shows a +longdesc number of document-management scenarios in which such commands +longdesc are valuable. +containersize 968 +containerchecksum 21524a0721fa26d85b383879cc75600bcd55ee05220eac245171eadc30dea7296731e4d6d2d3d82d10b32f1d674d444bf1df41dd82b92d5cfa7ea06d53f56147 +doccontainersize 155852 +doccontainerchecksum 6e950d1f5129b39de2cfdbf7cc46b101f81336f29325a5e74f58dbb4378dd79189d1e29dd88a9e828fe4e758b6de93e76f70884c9fc582cc8a69f6db1e1f2617 +docfiles size=56 + RELOC/doc/latex/coseoul/README details="Readme" + RELOC/doc/latex/coseoul/coseoul.pdf details="Package documentation" + RELOC/doc/latex/coseoul/coseoul.tex + RELOC/doc/latex/coseoul/cosexamp.pdf + RELOC/doc/latex/coseoul/cosexamp.tex +runfiles size=1 + RELOC/tex/latex/coseoul/coseoul.sty +catalogue-also modular +catalogue-ctan /macros/latex/contrib/coseoul +catalogue-license lppl1.3 +catalogue-topics headings +catalogue-version 1.1 + +name countriesofeurope +category Package +revision 54512 +shortdesc A font with the images of the countries of Europe +relocated 1 +longdesc The bundle provides a font "CountriesOfEurope" (in Adobe Type 1 +longdesc format) and the necessary metrics, together with LaTeX macros +longdesc for its use. The font provides glyphs with a filled outline of +longdesc the shape of each country; each glyph is at the same +longdesc cartographic scale. +execute addMap countriesofeurope.map +containersize 219524 +containerchecksum fa0faa88db3e7c1baf73d5fad1fa196915c752e15dc024cef051127581f1e8a3d218d5f2f815b44bbedc9bd6fce6292825929471b595771e9ecd0b5131b11d26 +doccontainersize 103320 +doccontainerchecksum e99ac6f4b57a2aed80cfd1214da7625ae94336677f0cfa0306125b06054835c2c3b23ac901cc3f421d56e4d021dd468db12e21acd6b3883c8b937919dbda056a +docfiles size=30 + RELOC/doc/fonts/countriesofeurope/Changes + RELOC/doc/fonts/countriesofeurope/README details="Readme" + RELOC/doc/fonts/countriesofeurope/countriesofeurope.bib + RELOC/doc/fonts/countriesofeurope/countriesofeurope.pdf details="Package documentation" + RELOC/doc/fonts/countriesofeurope/countriesofeurope.tex +runfiles size=72 + RELOC/fonts/afm/public/countriesofeurope/countriesofeurope.afm + RELOC/fonts/enc/dvips/countriesofeurope/countriesofeurope.enc + RELOC/fonts/map/dvips/countriesofeurope/countriesofeurope.map + RELOC/fonts/opentype/public/countriesofeurope/countriesofeurope.otf + RELOC/fonts/tfm/public/countriesofeurope/countriesofeurope.tfm + RELOC/fonts/type1/public/countriesofeurope/countriesofeurope.pfb + RELOC/tex/latex/countriesofeurope/countriesofeurope.sty +catalogue-ctan /fonts/countriesofeurope +catalogue-license ofl lppl +catalogue-topics font font-type1 font-novelty +catalogue-version 0.23 + +name counttexruns +category Package +revision 27576 +shortdesc Count compilations of a document +relocated 1 +longdesc The package counts how often a LaTeX document is compiled, +longdesc keeping the data in an external file. To print the count, can +longdesc use the macro \thecounttexruns. +containersize 908 +containerchecksum 569393d76512308751bff3c5cb22bc11ecee420bb16b5f7d35d6b10beaa02f9c99a4d440e7f3a35bda4e6821405e5f8d621af5af176821549a0e0f0660f998bd +doccontainersize 232164 +doccontainerchecksum 4a67cac01589ae5d3eb61c5c6c66bb38ede138c9c2b56fcb6359c8f851bf55ce3cf2e5662cd7751d6708c86644cb5f607318612b01b60f769858d594c2b24218 +docfiles size=58 + RELOC/doc/latex/counttexruns/README details="Readme" + RELOC/doc/latex/counttexruns/counttexruns.pdf details="Package documentation" +srccontainersize 3280 +srccontainerchecksum ed482becf766081e5cb05affc10c64979e43f9f655074366063b95943229dc9043943422e1063ecf69e5d44659566fb1d0ffddcc27d33eebff9de69f4aa8c7f5 +srcfiles size=3 + RELOC/source/latex/counttexruns/counttexruns.dtx + RELOC/source/latex/counttexruns/counttexruns.ins +runfiles size=1 + RELOC/tex/latex/counttexruns/counttexruns.sty +catalogue-ctan /macros/latex/contrib/counttexruns +catalogue-license lppl1.3 +catalogue-topics compilation +catalogue-version 1.00a + +name courier +category Package +revision 35058 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap ucr.map +containersize 481100 +containerchecksum a7a7350f23921254b9a37e498c2360aeb67d4aa8161072dafa38c941eca35388eaa5d8a341e8b490e783f346ed6b0f4a4d356dd914f70a858c92c76ff1808440 +runfiles size=291 + RELOC/dvips/courier/config.ucr + RELOC/fonts/afm/adobe/courier/pcrb8a.afm + RELOC/fonts/afm/adobe/courier/pcrbo8a.afm + RELOC/fonts/afm/adobe/courier/pcrr8a.afm + RELOC/fonts/afm/adobe/courier/pcrro8a.afm + RELOC/fonts/afm/urw/courier/ucrb8a.afm + RELOC/fonts/afm/urw/courier/ucrbo8a.afm + RELOC/fonts/afm/urw/courier/ucrr8a.afm + RELOC/fonts/afm/urw/courier/ucrro8a.afm + RELOC/fonts/map/dvips/courier/ucr.map + RELOC/fonts/tfm/adobe/courier/pcrb.tfm + RELOC/fonts/tfm/adobe/courier/pcrb7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrb8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrb8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrb8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbc.tfm + RELOC/fonts/tfm/adobe/courier/pcrbc7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbc8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrr.tfm + RELOC/fonts/tfm/adobe/courier/pcrr7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrr8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrr8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrr8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrrc.tfm + RELOC/fonts/tfm/adobe/courier/pcrrc7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrrc8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrro.tfm + RELOC/fonts/tfm/adobe/courier/pcrro7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrro8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrro8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrro8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbc7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbc8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrrc7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrrc8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro8t.tfm + RELOC/fonts/type1/adobe/courier/pcrb8a.pfb + RELOC/fonts/type1/adobe/courier/pcrbi8a.pfb + RELOC/fonts/type1/adobe/courier/pcrbo8a.pfb + RELOC/fonts/type1/adobe/courier/pcri8a.pfb + RELOC/fonts/type1/adobe/courier/pcrr8a.pfb + RELOC/fonts/type1/adobe/courier/pcrro8a.pfb + RELOC/fonts/type1/urw/courier/ucrb8a.pfb + RELOC/fonts/type1/urw/courier/ucrb8a.pfm + RELOC/fonts/type1/urw/courier/ucrbo8a.pfb + RELOC/fonts/type1/urw/courier/ucrbo8a.pfm + RELOC/fonts/type1/urw/courier/ucrr8a.pfb + RELOC/fonts/type1/urw/courier/ucrr8a.pfm + RELOC/fonts/type1/urw/courier/ucrro8a.pfb + RELOC/fonts/type1/urw/courier/ucrro8a.pfm + RELOC/fonts/vf/adobe/courier/pcrb.vf + RELOC/fonts/vf/adobe/courier/pcrb7t.vf + RELOC/fonts/vf/adobe/courier/pcrb8c.vf + RELOC/fonts/vf/adobe/courier/pcrb8t.vf + RELOC/fonts/vf/adobe/courier/pcrbc.vf + RELOC/fonts/vf/adobe/courier/pcrbc7t.vf + RELOC/fonts/vf/adobe/courier/pcrbc8t.vf + RELOC/fonts/vf/adobe/courier/pcrbo.vf + RELOC/fonts/vf/adobe/courier/pcrbo7t.vf + RELOC/fonts/vf/adobe/courier/pcrbo8c.vf + RELOC/fonts/vf/adobe/courier/pcrbo8t.vf + RELOC/fonts/vf/adobe/courier/pcrr.vf + RELOC/fonts/vf/adobe/courier/pcrr7t.vf + RELOC/fonts/vf/adobe/courier/pcrr8c.vf + RELOC/fonts/vf/adobe/courier/pcrr8t.vf + RELOC/fonts/vf/adobe/courier/pcrrc.vf + RELOC/fonts/vf/adobe/courier/pcrrc7t.vf + RELOC/fonts/vf/adobe/courier/pcrrc8t.vf + RELOC/fonts/vf/adobe/courier/pcrro.vf + RELOC/fonts/vf/adobe/courier/pcrro7t.vf + RELOC/fonts/vf/adobe/courier/pcrro8c.vf + RELOC/fonts/vf/adobe/courier/pcrro8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrb7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrb8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrb8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbc7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbc8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbo7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbo8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrbo8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrr7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrr8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrr8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrrc7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrrc8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrro7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrro8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrro8t.vf + RELOC/tex/latex/courier/8rucr.fd + RELOC/tex/latex/courier/omlucr.fd + RELOC/tex/latex/courier/omsucr.fd + RELOC/tex/latex/courier/ot1ucr.fd + RELOC/tex/latex/courier/t1ucr.fd + RELOC/tex/latex/courier/ts1ucr.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name courier-scaled +category Package +revision 24940 +shortdesc Provides a scaled Courier font +relocated 1 +longdesc This package sets the default typewriter font to Courier with a +longdesc possible scale factor (in the same way as the helvet package +longdesc for Helvetica works for sans serif). +containersize 2080 +containerchecksum 570256a4353163cba169ac5d649458d363edc5c2836efccff1e7df83c12d9b552978b3531f2ab026430b3222b3dfc00be0e4700031e6bc50bdb60a739a68c9aa +doccontainersize 151604 +doccontainerchecksum 59c5cec8491e678b084afb4c6e63ed07ca179b5f17be8fe581ff341c80b3cee8016601799ada090e1fcde9eeb72197986f3d4aeffa7c7a9d10a014e34282f52a +docfiles size=39 + RELOC/doc/fonts/courier-scaled/Couriers.pdf details="Package documentation" + RELOC/doc/fonts/courier-scaled/Couriers.tex + RELOC/doc/fonts/courier-scaled/README details="Readme" +runfiles size=11 + RELOC/tex/latex/courier-scaled/8rpcrs.fd + RELOC/tex/latex/courier-scaled/couriers.sty + RELOC/tex/latex/courier-scaled/il2pcrs.fd + RELOC/tex/latex/courier-scaled/ly1pcrs.fd + RELOC/tex/latex/courier-scaled/omlpcrs.fd + RELOC/tex/latex/courier-scaled/omspcrs.fd + RELOC/tex/latex/courier-scaled/ot1pcrs.fd + RELOC/tex/latex/courier-scaled/t1pcrs.fd + RELOC/tex/latex/courier-scaled/t5pcrs.fd + RELOC/tex/latex/courier-scaled/ts1pcrs.fd + RELOC/tex/latex/courier-scaled/xl2pcrs.fd +catalogue-ctan /fonts/psfonts/courier-scaled +catalogue-license lppl1.2 +catalogue-topics font-use + +name courierten +category Package +revision 55436 +shortdesc Courier 10 Pitch BT with LaTeX support +relocated 1 +longdesc This is the font Courier 10 Pitch BT, with LaTeX support and an +longdesc OpenType conversion as well. +execute addMap CourierOneZeroPitch.map +containersize 241236 +containerchecksum 06343c68149c28b8808a38d5d7f2a57e9bff996d836c90a352ed77da4637fff150a18c13b8807f401e3d9cc9e7ecc773275f8ca18e2dc8d315ec5647c3f6b55c +doccontainersize 1068 +doccontainerchecksum 737818c02e35e5502eca7bd80427fb814f54d495bd1315b124ad32a033da0ba0b9b4a2cc5a1f8c19b0f8d91f8534a783253742728ad1c8499d97e14fc3a67938 +docfiles size=2 + RELOC/doc/fonts/courierten/COPYING + RELOC/doc/fonts/courierten/README details="Readme" +runfiles size=146 + RELOC/fonts/enc/dvips/courierten/a_2hg32y.enc + RELOC/fonts/enc/dvips/courierten/a_5k4rzj.enc + RELOC/fonts/enc/dvips/courierten/a_keoqme.enc + RELOC/fonts/enc/dvips/courierten/a_n2okah.enc + RELOC/fonts/map/dvips/courierten/CourierOneZeroPitch.map + RELOC/fonts/opentype/public/courierten/Courier10PitchBT-Bold.otf + RELOC/fonts/opentype/public/courierten/Courier10PitchBT-BoldItalic.otf + RELOC/fonts/opentype/public/courierten/Courier10PitchBT-Italic.otf + RELOC/fonts/opentype/public/courierten/Courier10PitchBT-Roman.otf + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ly1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ot1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-t1.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/courierten/Courier10PitchBT-Roman-tlf-ts1.tfm + RELOC/fonts/type1/public/courierten/Courier10PitchBT-Bold.pfb + RELOC/fonts/type1/public/courierten/Courier10PitchBT-BoldItalic.pfb + RELOC/fonts/type1/public/courierten/Courier10PitchBT-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/public/courierten/Courier10PitchBT-BoldLCDFJ.pfb + RELOC/fonts/type1/public/courierten/Courier10PitchBT-Italic.pfb + RELOC/fonts/type1/public/courierten/Courier10PitchBT-ItalicLCDFJ.pfb + RELOC/fonts/type1/public/courierten/Courier10PitchBT-Roman.pfb + RELOC/fonts/type1/public/courierten/Courier10PitchBT-RomanLCDFJ.pfb + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Bold-tlf-t1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Italic-tlf-ot1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Italic-tlf-t1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Roman-tlf-ly1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Roman-tlf-ot1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Roman-tlf-t1.vf + RELOC/fonts/vf/public/courierten/Courier10PitchBT-Roman-tlf-ts1.vf + RELOC/tex/latex/courierten/LY1CourierOneZeroPitch-TLF.fd + RELOC/tex/latex/courierten/OT1CourierOneZeroPitch-TLF.fd + RELOC/tex/latex/courierten/T1CourierOneZeroPitch-TLF.fd + RELOC/tex/latex/courierten/TS1CourierOneZeroPitch-TLF.fd + RELOC/tex/latex/courierten/courierten.sty +catalogue-ctan /fonts/courierten +catalogue-license other-free +catalogue-topics font font-mono font-type1 font-otf font-supp font-t1enc + +name courseoutline +category Package +revision 15878 +shortdesc Prepare university course outlines +relocated 1 +longdesc Courseoutline is a class designed to minimise markup in a +longdesc tedious task that needs to be repeated often. +containersize 3444 +containerchecksum fd3bbcd90570aa1cbfae49fca247d761ac0b886d795fd8097754706b21ab1d6954eb8d8a6c1fb4e69d550e7ec89294fa006f50bab0c7b806c545666eac4915f1 +doccontainersize 2564 +doccontainerchecksum 5a52cabfbc28fe27aa6f85b3653de3ace51b65011ca2e33b56be59854b364319ed8adf95576f8211d9494a367fb637b47fd2805a2663df87103b2d67a168dc13 +docfiles size=2 + RELOC/doc/latex/courseoutline/Outline.tex +runfiles size=3 + RELOC/tex/latex/courseoutline/courseoutline.cls +catalogue-ctan /macros/latex/contrib/courseoutline +catalogue-license other-free +catalogue-topics teaching +catalogue-version 1.0 + +name coursepaper +category Package +revision 15878 +shortdesc Prepare university course papers +relocated 1 +longdesc Coursepaper is a class with which students can provide simple +longdesc course papers, in a uniform design to ease the task of marking. +containersize 4532 +containerchecksum bae9e3188a3312f970434b21f23436251dcf8d7b5b2049decf1f95903f5e58ddf9dd328ffc6908c70bec436c9edc3ae62b05d110f42a8ab322eb3f464733ba96 +doccontainersize 1924 +doccontainerchecksum 359ee3956a6da4eb41947db9b5f8dbaac7c13c18ea91afd6d63f738ab43af4c77fd93e9123ecda28b4e2211387c910b7a46b2ccd97edeba70fd6d2852b228094 +docfiles size=2 + RELOC/doc/latex/coursepaper/coursepaper.tex +runfiles size=4 + RELOC/tex/latex/coursepaper/coursepaper.cls +catalogue-ctan /macros/latex/contrib/coursepaper +catalogue-license other-free +catalogue-topics essay +catalogue-version 2.0 + +name coverpage +category Package +revision 15878 +shortdesc Automatic cover page creation for scientific papers +relocated 1 +longdesc The package CoverPage was created to supplement scientific +longdesc papers with a cover page containing bibliographical +longdesc information, a copyright notice, and/or some logos of the +longdesc author's institution. The cover page is created (almost) +longdesc automatically; this is done by parsing BibTeX information +longdesc corresponding to the main document and reading a configuration +longdesc file in which the author can set information like the +longdesc affiliation he or she is associated with. The cover page +longdesc consists of header, body and footer; all three are macros which +longdesc can be redefined using \renewcommand, thus allowing easy +longdesc customization of the package. Additionally, it should be +longdesc stressed that the cover page layout is totally independent of +longdesc the main document and its page layout. This package requires +longdesc four other packages (keyval, url, textcomp, and verbatim), but +longdesc all of them are standard packages and should be part of every +longdesc LaTeX installation. +containersize 3676 +containerchecksum 6ba22fe89f292ef65ec41a958a93a8ab729954fab33f10677954791bb2be8bcbca71ba4953b6ec47066d3b92e444ebbef9b5f465952076ff0c679706f0ba406a +doccontainersize 280964 +doccontainerchecksum 01346bc57d5742be2196c8768106fc06534ce03571dc1e3e9d48957ba6d0e1a3aab1a4ac070d4e545f058d1b3833e908398fff62d3ce6bd462b927646ff1e60e +docfiles size=86 + RELOC/doc/latex/coverpage/CoverPage.pdf details="Package documentation" + RELOC/doc/latex/coverpage/ECCV06Sample.pdf details="Another sample" + RELOC/doc/latex/coverpage/README details="README file" + RELOC/doc/latex/coverpage/SimpleSample.BibTeX.txt + RELOC/doc/latex/coverpage/SimpleSample.pdf details="Simple sample" + RELOC/doc/latex/coverpage/SimpleSample.tex +srccontainersize 10320 +srccontainerchecksum cd47f6d17ab585e84244164bed3b905163157e911dec81ddcd630f23f0b520763b9972b3430f25ff4039e27310eac21e6257727aa4544b7a0e40e7020fc72b42 +srcfiles size=9 + RELOC/source/latex/coverpage/CoverPage.dtx + RELOC/source/latex/coverpage/CoverPage.ins +runfiles size=3 + RELOC/tex/latex/coverpage/CoverPage.cfg + RELOC/tex/latex/coverpage/CoverPage.sty +catalogue-ctan /macros/latex/contrib/coverpage +catalogue-license lppl1.2 +catalogue-topics journalpub +catalogue-version 1.01 + +name covington +category Package +revision 58589 +shortdesc Linguistic support +relocated 1 +longdesc Numerous minor LaTeX enhancements for linguistics, including +longdesc multiple accents on the same letter, interline glosses +longdesc (word-by-word translations), Discourse Representation +longdesc Structures, and example numbering. +containersize 8588 +containerchecksum 505e6d4ce7e009173d14eb2288bebd3805d1bdf39819f7c9dc58abea1687e4ea7ec816ed3c2e3c7dcd8c98bbc8cad3f59cba103404457ab9c8726e14cfa1d3cb +doccontainersize 500228 +doccontainerchecksum 73fdb576dfb6337c9500d8c92a2be2216d84da12fd04b1cfe7044f4e24fca0120c3bb98f18aa4263617721ec3449cdf98a39e441ece77c2adff63930182a1673 +docfiles size=135 + RELOC/doc/latex/covington/README details="Readme" + RELOC/doc/latex/covington/covington.pdf details="Package documentation" language="en" + RELOC/doc/latex/covington/covington.tex +runfiles size=8 + RELOC/tex/latex/covington/covington.sty +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-license lppl1.3 +catalogue-topics linguistic +catalogue-version 2.5 + +name cprotect +category Package +revision 21209 +shortdesc Allow verbatim, etc., in macro arguments +relocated 1 +longdesc The package defines the macro \cprotect that makes a following +longdesc macro proof against verbatim in its argument; as, for example, +longdesc \cprotect\section{\verb"foo"} A similar macro \cprotEnv +longdesc (applied to the \begin of an environment) sanitises the +longdesc behavior of fragile environments. Moving arguments, and +longdesc corresponding "tables of ..." work happily. +containersize 2864 +containerchecksum f4795674aa97744b0d6ed70bcae83a1ce3b41670a1bff2e67d12825154bcfd7eac2a740996bcb4aa0445697a3e4c17ef3d8606b308b7db3aea263269a7e2eb51 +doccontainersize 584752 +doccontainerchecksum e8a5000eb9a538f95bf6df4e2d68ecd8769974192e8181b6eb40e5f48b2cc3a9b9d405d1c7b611e35c41dac5ca5165a503efb7584ee94289ed3255a9482b2b2e +docfiles size=155 + RELOC/doc/latex/cprotect/README details="Readme" + RELOC/doc/latex/cprotect/README.txt + RELOC/doc/latex/cprotect/cprotect.pdf details="Package documentation" +srccontainersize 12100 +srccontainerchecksum a9c10d5437f4a9f55680fc3a9841e9dc665b7b642e2831c0bb6239d73ea08312eeae372cf95591d002fa7dd51ae45e7413d9651ea5d60e5837903adf565364e0 +srcfiles size=11 + RELOC/source/latex/cprotect/cprotect.dtx + RELOC/source/latex/cprotect/cprotect.ins +runfiles size=3 + RELOC/tex/latex/cprotect/cprotect.sty +catalogue-ctan /macros/latex/contrib/cprotect +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 1.0e + +name cqubeamer +category Package +revision 54512 +shortdesc LaTeX Beamer Template for Chongqing University +relocated 1 +longdesc This package provides a LaTeX beamer template designed for +longdesc researchers of Chongqing University. It can be used for +longdesc academic reports, conferences, or thesis defense, and can be +longdesc helpful for delivering a speech. It should be used with the +longdesc XeTeX engine. +containersize 3084 +containerchecksum 7c2c4548f8bbb4885680588ff113c8af96d79b5403d6cb01bebc6824745fecdd243af7e14b51bdacc91a6ee2301946ae911aa6c892d248958c1089d3fac383a0 +doccontainersize 2510176 +doccontainerchecksum f11c9d614b75a973cfd0452e283078c5af259127624f7746c0f49152da20ea016acb8842ce343cf342e4fd45f563bdadb48fc4e98cf964bb1c6dd044e610e202 +docfiles size=787 + RELOC/doc/xelatex/cqubeamer/LICENSE + RELOC/doc/xelatex/cqubeamer/README.md details="Readme" + RELOC/doc/xelatex/cqubeamer/cqubeamer.pdf details="Package documentation" language="zh" + RELOC/doc/xelatex/cqubeamer/cqubeamer.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_fontsetting.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_format.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_layout.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_titlepage.tex + RELOC/doc/xelatex/cqubeamer/figure/CQU_Campus_D.jpg + RELOC/doc/xelatex/cqubeamer/figure/Wechat.png + RELOC/doc/xelatex/cqubeamer/figure/go.png + RELOC/doc/xelatex/cqubeamer/logo/cqulogo.pdf + RELOC/doc/xelatex/cqubeamer/logo/cquname.pdf +runfiles size=3 + RELOC/tex/xelatex/cqubeamer/cqubeamer.sty +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-license mit cc-by-4 +catalogue-topics presentation xetex doc-templ chinese +catalogue-version 1.0 + +name cquthesis +category Package +revision 55643 +shortdesc LaTeX Thesis Template for Chongqing University +relocated 1 +longdesc CQUThesis stands for Chongqing University Thesis Template for +longdesc LaTeX, bearing the ability to support bachelor, master, doctor +longdesc dissertations with grace and speed. +containersize 16184 +containerchecksum 929e1b191e8aefd67e734c49227c24ba6f4a15704d3f40aa49b1c0390796dfef36b56e7735e068fade5415838918ec712bd34cfffc9aa2981929067d73d86ad9 +doccontainersize 1142980 +doccontainerchecksum ab270eb465858de3b92248b3b884fcb648b59cc3f947e3362a445562c29e910b0a7f1e4c137aea49c537e68ba61a90d08f40ab43d3340c109e01a293505cfdf9 +docfiles size=316 + RELOC/doc/latex/cquthesis/CONTRIBUTORS.md + RELOC/doc/latex/cquthesis/README-Chinese.md details="Readme (Chinese)" language="zh" + RELOC/doc/latex/cquthesis/README.md details="Readme" + RELOC/doc/latex/cquthesis/contents/ack.tex + RELOC/doc/latex/cquthesis/contents/analysis.tex + RELOC/doc/latex/cquthesis/contents/appendix.tex + RELOC/doc/latex/cquthesis/contents/conclusion.tex + RELOC/doc/latex/cquthesis/contents/cover.tex + RELOC/doc/latex/cquthesis/contents/denotation.tex + RELOC/doc/latex/cquthesis/contents/experiment.tex + RELOC/doc/latex/cquthesis/contents/introduction.tex + RELOC/doc/latex/cquthesis/cquthesis.pdf details="Package documentation" language="zh" + RELOC/doc/latex/cquthesis/dtx-style.sty + RELOC/doc/latex/cquthesis/figures/CQUbadge.pdf + RELOC/doc/latex/cquthesis/figures/README + RELOC/doc/latex/cquthesis/main.tex + RELOC/doc/latex/cquthesis/ref/refs.bib +srccontainersize 31152 +srccontainerchecksum 2184befc80f4ef6f23aba573778e99314dab80b65f053416e5dc8ebb0ff462c8f5d665085955fd28d88dd24cdc9e0599ba4735196b239e3123523cc1316da3a5 +srcfiles size=28 + RELOC/source/latex/cquthesis/Makefile + RELOC/source/latex/cquthesis/cquthesis.dtx + RELOC/source/latex/cquthesis/cquthesis.ins + RELOC/source/latex/cquthesis/makewin-en.bat + RELOC/source/latex/cquthesis/makewin.bat +runfiles size=18 + RELOC/bibtex/bst/cquthesis/cqunumerical.bst + RELOC/tex/latex/cquthesis/cquthesis.cfg + RELOC/tex/latex/cquthesis/cquthesis.cls + RELOC/tex/latex/cquthesis/cquthesis.sty +catalogue-also cqubeamer +catalogue-contact-announce https://github.com/nanmu42/CQUThesis/releases +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-license lppl1.3 +catalogue-topics dissertation class chinese +catalogue-version 1.50 + +name crbox +category Package +revision 29803 +shortdesc Boxes with crossed corners +relocated 1 +longdesc The package implements a \crbox command which produces boxes +longdesc with crossing lines at the corners. +containersize 1544 +containerchecksum 087ae9406fd8f6916e355b51d2f4dc7383228813716ab9f6c37714794c931a9b5defa4678a4471523c5fda2c6b0b7784d11dfb488a8d9c60f0244d9d2d64ab2b +doccontainersize 29448 +doccontainerchecksum 8927d6f60a3a895685c679e565632ee2ca68c1f2e8dfd795a481767463d88ec37579bfbd55858ce1e6e433a981de4b5140cf75489221243716cd8035a2967a90 +docfiles size=11 + RELOC/doc/latex/crbox/README details="Readme" + RELOC/doc/latex/crbox/crbox-doc.pdf details="Package documentation" + RELOC/doc/latex/crbox/crbox-doc.tex +runfiles size=1 + RELOC/tex/latex/crbox/crbox.sty +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-license lppl +catalogue-topics boxing typesetting decoration +catalogue-version 0.1 + +name crimson +category Package +revision 54512 +shortdesc Crimson fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX +longdesc support for the Crimson family of fonts, designed by Sebastian +longdesc Kosch. The Crimson family is for book production in the +longdesc tradition of beautiful oldstyle typefaces, inspired +longdesc particularly by the work of people like Jan Tschichold (Sabon), +longdesc Robert Slimbach (Arno, Minion), and Jonathan Hoefler (Hoefler +longdesc Text). Support for small caps and old-style numerals is still +longdesc "under construction"; these features are not supported by this +longdesc version of the package. +execute addMap crimson.map +containersize 1383508 +containerchecksum 26a4e2fb4439f111893c85b7f9b77162be5960a34e000d7a33ce59cc2db83c39cf283a882c89fcb031162ab6a398c481adfe0556dd42b76a2ab36cd9d1573108 +doccontainersize 34244 +doccontainerchecksum 1e97ec47cfe2a9fcc66a87469262c611e6e95c051444915548d2bea644f4c8fba3ce38beccdf2ac52d95e416e4fe8b6dba33eacb4aea9b33726e84e04ad11cb9 +docfiles size=12 + RELOC/doc/fonts/crimson/OFL.txt + RELOC/doc/fonts/crimson/README details="Readme" + RELOC/doc/fonts/crimson/crimson-samples.pdf details="Font samples" + RELOC/doc/fonts/crimson/crimson-samples.tex +runfiles size=655 + RELOC/fonts/enc/dvips/crimson/crm_3bejww.enc + RELOC/fonts/enc/dvips/crimson/crm_axwm4k.enc + RELOC/fonts/enc/dvips/crimson/crm_ayvnmf.enc + RELOC/fonts/enc/dvips/crimson/crm_bchha2.enc + RELOC/fonts/enc/dvips/crimson/crm_fllea6.enc + RELOC/fonts/enc/dvips/crimson/crm_g4bzis.enc + RELOC/fonts/enc/dvips/crimson/crm_izufyi.enc + RELOC/fonts/enc/dvips/crimson/crm_jdlmpi.enc + RELOC/fonts/enc/dvips/crimson/crm_kwsa5r.enc + RELOC/fonts/enc/dvips/crimson/crm_myjoho.enc + RELOC/fonts/enc/dvips/crimson/crm_n3gbj7.enc + RELOC/fonts/enc/dvips/crimson/crm_odbuza.enc + RELOC/fonts/enc/dvips/crimson/crm_ory2k7.enc + RELOC/fonts/enc/dvips/crimson/crm_qrsm2e.enc + RELOC/fonts/enc/dvips/crimson/crm_qst7o4.enc + RELOC/fonts/enc/dvips/crimson/crm_tyw3ea.enc + RELOC/fonts/enc/dvips/crimson/crm_uafi7a.enc + RELOC/fonts/enc/dvips/crimson/crm_ue2axx.enc + RELOC/fonts/enc/dvips/crimson/crm_vcz7kx.enc + RELOC/fonts/enc/dvips/crimson/crm_wef5am.enc + RELOC/fonts/enc/dvips/crimson/crm_wsbs26.enc + RELOC/fonts/enc/dvips/crimson/crm_wttfgh.enc + RELOC/fonts/map/dvips/crimson/crimson.map + RELOC/fonts/opentype/kosch/crimson/Crimson-Bold.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-BoldItalic.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-Italic.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-Roman.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-Semibold.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-SemiboldItalic.otf + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ts1.tfm + RELOC/fonts/type1/kosch/crimson/Crimson-Bold.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-BoldItalic.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-Italic.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-Roman.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-Semibold.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-SemiboldItalic.pfb + RELOC/fonts/vf/kosch/crimson/Crimson-Bold-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Bold-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Bold-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Italic-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Italic-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Italic-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Roman-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Roman-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-ts1.vf + RELOC/tex/latex/crimson/LY1Crimson-TLF.fd + RELOC/tex/latex/crimson/OT1Crimson-TLF.fd + RELOC/tex/latex/crimson/T1Crimson-TLF.fd + RELOC/tex/latex/crimson/TS1Crimson-TLF.fd + RELOC/tex/latex/crimson/crimson.sty +catalogue-also crimsonpro +catalogue-ctan /fonts/crimson +catalogue-license ofl lppl +catalogue-topics font font-serif font-t1enc font-proportional font-otf font-type1 + +name crimsonpro +category Package +revision 54512 +shortdesc CrimsonPro fonts with LaTeX support +relocated 1 +longdesc The CrimsonPro fonts are designed by Jacques Le Bailly and +longdesc derived from the Crimson Text fonts designed by Sebastian +longdesc Kosch. The family includes eight weights and italics for each +longdesc weight. +execute addMap CrimsonPro.map +containersize 2563452 +containerchecksum 4e7d10cc23057a5bf2bef8f62dc392f5a3855184d18c814e5569bd6e8d7f0ce692ed9329377aca920a3b6b8f924ea9df47c6c51cf29c638483b7a294da1a16f5 +doccontainersize 85172 +doccontainerchecksum 8c6e5951acce558777527fbe4f36380418e9ebae9dd38d62d034f6a33a87de76259c8fa074d2a3afedc746d595ea60f1710c792af6ab6a4c413ebf8a12480bba +docfiles size=24 + RELOC/doc/fonts/crimsonpro/OFL.txt + RELOC/doc/fonts/crimsonpro/README details="Readme" + RELOC/doc/fonts/crimsonpro/crimsonpro-samples.pdf details="Font samples" + RELOC/doc/fonts/crimsonpro/crimsonpro-samples.tex +runfiles size=3406 + RELOC/fonts/enc/dvips/crimsonpro/crp_2sgwql.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_3lrgtj.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_b4nxop.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_bapnwu.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_hxzdi6.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_iqth5t.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_izapv7.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_jvsxek.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_kpggsy.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_krtxg6.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_ldjqep.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_q22ex3.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_qlkdbr.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_spbxfw.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_umrhwx.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_wslvgt.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_xsutkk.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_ylc3fo.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_yyrdtm.enc + RELOC/fonts/map/dvips/crimsonpro/CrimsonPro.map + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Black.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-BlackItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Bold.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-BoldItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraBold.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraBoldItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraLight.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraLightItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Italic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Light.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-LightItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Medium.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-MediumItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Regular.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-SemiBold.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-SemiBoldItalic.ttf + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Black.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-BlackItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Bold.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-BoldItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraBold.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraLight.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraLightItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Italic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Light.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-LightItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Medium.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-MediumItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Regular.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-SemiBold.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-SemiBoldItalic.pfb + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/crimsonpro/CrimsonPro.sty + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-Inf.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-Sup.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-TOsF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-Inf.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-Sup.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-TOsF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-Inf.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-Sup.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-TOsF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-TOsF.fd +catalogue-also crimson +catalogue-ctan /fonts/crimsonpro +catalogue-license ofl lppl +catalogue-topics font font-serif font-t1enc font-proportional font-ttf font-type1 + +name crop +category Package +revision 55424 +shortdesc Support for cropmarks +relocated 1 +longdesc A package providing corner marks for camera alignment as well +longdesc as for trimming paper stacks, and additional page information +longdesc on every page if required. Most macros are easily adaptable to +longdesc personal preferences. An option is provided for selectively +longdesc suppressing graphics or text, which may be useful for printing +longdesc just colour graphics on a colour laser printer and the rest on +longdesc a cheap mono laser printer. A page info line contains the time +longdesc and a new cropmarks index and is printed at the top of the +longdesc page. A configuration command is provided for the info line +longdesc font. Options for better collaboration with dvips, pdfTeX and +longdesc vtex are provided. +containersize 4680 +containerchecksum f6161e7688d8853d2d9041cfe26360b71a920028df673d04ba38f258c810021752bb7282757ceb98b2e62f7ae52a5f4abcdc61333081d77b205d5431ca62a569 +doccontainersize 326624 +doccontainerchecksum 770ab2977a4ddfdfdbac5f1107e01b8bd5858a31747d44bf0186565dc79becbefde2f34a9514dcf214b8eb781390e98d5f5383f2e70e393ddc22043d4a0eacfc +docfiles size=81 + RELOC/doc/latex/crop/README details="Readme" + RELOC/doc/latex/crop/crop.pdf details="Package documentation" +srccontainersize 17840 +srccontainerchecksum 1b1f0e6a309d1657a12f9760ce2a01ab370de1d34bd628bc066768eded3d7126cbd1f8c38d315fc120c58d73cee48fbf2515492c218a6510306766dd83861b15 +srcfiles size=19 + RELOC/source/latex/crop/Makefile + RELOC/source/latex/crop/crop.dtx + RELOC/source/latex/crop/crop.ins +runfiles size=5 + RELOC/tex/latex/crop/crop.sty +catalogue-also zwpagelayout +catalogue-contact-repository https://github.com/rrthomas/crop +catalogue-ctan /macros/latex/contrib/crop +catalogue-license lppl +catalogue-topics layout-page +catalogue-version 1.10.2 + +name crossreference +category Package +revision 15878 +shortdesc Crossreferences within documents +relocated 1 +longdesc The package defines cross-references (essentially 'grand' label +longdesc references), which may be listed in a table of +longdesc cross-references. +containersize 1580 +containerchecksum e34b4d383b8398880b962cdddf248c95f2bc7187b5ed4f0caf84655a94f92b915906b150ef904c696f49f22ef23c039ee66427a03b1430f7a3d5f619f2a80d01 +doccontainersize 38828 +doccontainerchecksum e21b294ac2b3489cc81ccc99c54bc60985d8769e297f137180a9373ad289248b5d90acf3dd9800d0690907543cf52f0532f6317ef55a43a5b55541805e2be68b +docfiles size=17 + RELOC/doc/latex/crossreference/README details="Readme" + RELOC/doc/latex/crossreference/crossreference.pdf details="Package documentation" + RELOC/doc/latex/crossreference/xrefexample.tex +srccontainersize 2748 +srccontainerchecksum ebf66eeddeccc32574b0f6285d655d5e9a00e4c4c6a50c232ecbc438b51e4ac45876e925b41b71717b23004a24680b3302b8a0afb9ba124e279094d705676b2c +srcfiles size=4 + RELOC/source/latex/crossreference/crossreference.drv + RELOC/source/latex/crossreference/crossreference.dtx + RELOC/source/latex/crossreference/crossreference.ins +runfiles size=1 + RELOC/tex/latex/crossreference/crossreference.sty +catalogue-ctan /macros/latex/contrib/crossreference +catalogue-license lppl +catalogue-topics label-ref + +name crossreftools +category Package +revision 55879 +shortdesc Expandable extraction of cleveref data +relocated 1 +longdesc This package extracts information from cross-referencing +longdesc labels, especially those from cleveref, in an expandable +longdesc manner. +containersize 3304 +containerchecksum 50b8ce01e9bbfc1f3b4ec9093fe0b091780edbc197a9c637b98a025926600459c5f0b22f5683427bd0a4f0a6ddacadf77833f3171d2dbd45ce43dd6e1d80d813 +doccontainersize 347608 +doccontainerchecksum 0edf43d8b68decea7d83cf5eaf2f92f86635f19041680be4a511a57a7751dd40efe4b4ede05a898c2e00f91076caeb3f4b39c444d1ab8b05a4f0471913e4b475 +docfiles size=97 + RELOC/doc/latex/crossreftools/README details="Readme" + RELOC/doc/latex/crossreftools/crossreftools_doc.pdf details="Package documentation" + RELOC/doc/latex/crossreftools/crossreftools_doc.tex + RELOC/doc/latex/crossreftools/crossreftools_driver.pdf + RELOC/doc/latex/crossreftools/crossreftools_driver.tex +runfiles size=4 + RELOC/tex/latex/crossreftools/crossreftools.sty +catalogue-also cleveref +catalogue-ctan /macros/latex/contrib/crossreftools +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.0 + +name crossrefware +category Package +revision 47861 +shortdesc Scripts for working with crossref.org +longdesc This bundle contains the following scripts: bibdoiadd.pl: add +longdesc DOI numbers to papers in a given bib file, bibzbladd.pl: add +longdesc Zbl numbers to papers in a given bib file, bibmradd.pl: add MR +longdesc numbers to papers in a given bib file, bbl2bib.pl: convert +longdesc thebibliography environment to a bib file, biburl2doi.pl: +longdesc convert urls pointing to doi.org to dois ltx2crossrefxml.pl: a +longdesc tool for the creation of XML files for submitting to +longdesc crossref.org. The scripts use bibtexperllibs. +depend crossrefware.ARCH +containersize 8984 +containerchecksum 351f123bab2b83614b660959e86573845e32b6ac894ddabf24484cc3bbb68d71fef1e543b4d14a3684804f8b4b8e4a5123c8acc46fd813048320ab50f245475a +doccontainersize 231232 +doccontainerchecksum cef9694f4e984ee077902852143e2c88bb533739c6b53c010eae74c32b486faf7806010beecee49bfce07d5f35270bd312852f6d5701860073854a5fec949125 +docfiles size=88 + texmf-dist/doc/man/man1/bbl2bib.1 + texmf-dist/doc/man/man1/bbl2bib.man1.pdf + texmf-dist/doc/man/man1/bibdoiadd.1 + texmf-dist/doc/man/man1/bibdoiadd.man1.pdf + texmf-dist/doc/man/man1/bibmradd.1 + texmf-dist/doc/man/man1/bibmradd.man1.pdf + texmf-dist/doc/man/man1/biburl2doi.1 + texmf-dist/doc/man/man1/biburl2doi.man1.pdf + texmf-dist/doc/man/man1/bibzbladd.1 + texmf-dist/doc/man/man1/bibzbladd.man1.pdf + texmf-dist/doc/man/man1/ltx2crossrefxml.1 + texmf-dist/doc/man/man1/ltx2crossrefxml.man1.pdf + texmf-dist/doc/support/crossrefware/Makefile + texmf-dist/doc/support/crossrefware/README details="Readme" + texmf-dist/doc/support/crossrefware/citations.bib + texmf-dist/doc/support/crossrefware/crossrefware.pdf details="Package documentation" + texmf-dist/doc/support/crossrefware/head.ltx +runfiles size=14 + texmf-dist/scripts/crossrefware/bbl2bib.pl + texmf-dist/scripts/crossrefware/bibdoiadd.pl + texmf-dist/scripts/crossrefware/bibmradd.pl + texmf-dist/scripts/crossrefware/biburl2doi.pl + texmf-dist/scripts/crossrefware/bibzbladd.pl + texmf-dist/scripts/crossrefware/ltx2crossrefxml.pl + texmf-dist/tex/latex/crossrefware/bibdoiadd.cfg + texmf-dist/tex/latex/crossrefware/ltx2crossrefxml.cfg +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-license gpl +catalogue-topics bibtex-util + +name crossrefware.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of crossrefware +containersize 460 +containerchecksum 05a3de4a88472b4b95e7596fccbf314944beb008103e0519b25dbadb2a88817ecd5dfc4dc5069e415dad53e50fe74ef8691c5ab6fd52b2302fd4912045b030f5 +binfiles arch=aarch64-linux size=6 + bin/aarch64-linux/bbl2bib + bin/aarch64-linux/bibdoiadd + bin/aarch64-linux/bibmradd + bin/aarch64-linux/biburl2doi + bin/aarch64-linux/bibzbladd + bin/aarch64-linux/ltx2crossrefxml + +name crossrefware.amd64-freebsd +category Package +revision 45927 +shortdesc amd64-freebsd files of crossrefware +containersize 464 +containerchecksum d6e9cf8e669f8009a15308fd95c58006a1365773f7437362e7ca92e28e00068c0db45e0ec1ee60eaa3bd377e92dd952f21eabc8d9604830d0d871a3212676778 +binfiles arch=amd64-freebsd size=6 + bin/amd64-freebsd/bbl2bib + bin/amd64-freebsd/bibdoiadd + bin/amd64-freebsd/bibmradd + bin/amd64-freebsd/biburl2doi + bin/amd64-freebsd/bibzbladd + bin/amd64-freebsd/ltx2crossrefxml + +name crossrefware.amd64-netbsd +category Package +revision 45927 +shortdesc amd64-netbsd files of crossrefware +containersize 464 +containerchecksum 98b73aeba37d652ddad5f6b46bec910b38023068ec5851f7d746935c65bbbb0059723cf1fa072e0a2147efe528d7146ab5233984ffb921cb3ecc1864d8510adc +binfiles arch=amd64-netbsd size=6 + bin/amd64-netbsd/bbl2bib + bin/amd64-netbsd/bibdoiadd + bin/amd64-netbsd/bibmradd + bin/amd64-netbsd/biburl2doi + bin/amd64-netbsd/bibzbladd + bin/amd64-netbsd/ltx2crossrefxml + +name crossrefware.armhf-linux +category Package +revision 45927 +shortdesc armhf-linux files of crossrefware +containersize 460 +containerchecksum 542e8dbee21ef771eb9cafa2644d395ae7271067f97adeddbb7f50bee15ad050ef86e4d1559157421407c243fa2a33368182ed26d437efb49e46184484169746 +binfiles arch=armhf-linux size=6 + bin/armhf-linux/bbl2bib + bin/armhf-linux/bibdoiadd + bin/armhf-linux/bibmradd + bin/armhf-linux/biburl2doi + bin/armhf-linux/bibzbladd + bin/armhf-linux/ltx2crossrefxml + +name crossrefware.i386-cygwin +category Package +revision 45927 +shortdesc i386-cygwin files of crossrefware +containersize 460 +containerchecksum 52aa1a45cd5606717e86b48513db01043a566de2f95b897d2aa783d475e66cba876d47930dd747759d462e0c8c3f6be9482242fd9558e00274a05ac61de00f07 +binfiles arch=i386-cygwin size=6 + bin/i386-cygwin/bbl2bib + bin/i386-cygwin/bibdoiadd + bin/i386-cygwin/bibmradd + bin/i386-cygwin/biburl2doi + bin/i386-cygwin/bibzbladd + bin/i386-cygwin/ltx2crossrefxml + +name crossrefware.i386-freebsd +category Package +revision 45927 +shortdesc i386-freebsd files of crossrefware +containersize 460 +containerchecksum d9ae309c6cef1521ef112134d639bb14763a1876b27ecde0450edf9a2558dd485cb864f7b0dd17bcae709b381ec60515b34df05ba926ea127af6563306d786cc +binfiles arch=i386-freebsd size=6 + bin/i386-freebsd/bbl2bib + bin/i386-freebsd/bibdoiadd + bin/i386-freebsd/bibmradd + bin/i386-freebsd/biburl2doi + bin/i386-freebsd/bibzbladd + bin/i386-freebsd/ltx2crossrefxml + +name crossrefware.i386-linux +category Package +revision 45927 +shortdesc i386-linux files of crossrefware +containersize 460 +containerchecksum 7207b93fbfa32dc3ca49fe21dbaf425f1bccea6a3854e093aedb9d0e94f93d126681ee70512112041d0ca1e234d92a6fef115f37e97c779cecf6a3d800422a53 +binfiles arch=i386-linux size=6 + bin/i386-linux/bbl2bib + bin/i386-linux/bibdoiadd + bin/i386-linux/bibmradd + bin/i386-linux/biburl2doi + bin/i386-linux/bibzbladd + bin/i386-linux/ltx2crossrefxml + +name crossrefware.i386-netbsd +category Package +revision 45927 +shortdesc i386-netbsd files of crossrefware +containersize 460 +containerchecksum 8fd42c9e5e2f09d1e0c4101fff6636715e1bdda5d35a7705050949e47721a941c42d673c392c3054d8e7255639ff1ffc059596e06ea94a0389af156be7dced02 +binfiles arch=i386-netbsd size=6 + bin/i386-netbsd/bbl2bib + bin/i386-netbsd/bibdoiadd + bin/i386-netbsd/bibmradd + bin/i386-netbsd/biburl2doi + bin/i386-netbsd/bibzbladd + bin/i386-netbsd/ltx2crossrefxml + +name crossrefware.i386-solaris +category Package +revision 45927 +shortdesc i386-solaris files of crossrefware +containersize 460 +containerchecksum e81e75f423879a94b0e2fe782923686bac25e91e5d79bade566cd86a88a29e0b4f2623b135a1e3ecb594ec099efd98adbef23ab66715921e3c5a0ec59c1a699b +binfiles arch=i386-solaris size=6 + bin/i386-solaris/bbl2bib + bin/i386-solaris/bibdoiadd + bin/i386-solaris/bibmradd + bin/i386-solaris/biburl2doi + bin/i386-solaris/bibzbladd + bin/i386-solaris/ltx2crossrefxml + +name crossrefware.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of crossrefware +containersize 468 +containerchecksum 3b1cb9175e4e5b41788ed5fe492da6be5b815fa07d6e04cb3baad073abb059b576db4050862037dc47c47588a5174d413903cc9e3a5e38dfdac57593ac158b1e +binfiles arch=universal-darwin size=6 + bin/universal-darwin/bbl2bib + bin/universal-darwin/bibdoiadd + bin/universal-darwin/bibmradd + bin/universal-darwin/biburl2doi + bin/universal-darwin/bibzbladd + bin/universal-darwin/ltx2crossrefxml + +name crossrefware.win32 +category Package +revision 45927 +shortdesc win32 files of crossrefware +containersize 824 +containerchecksum 4be206409af49e572a90e2ebd86c3597537bf5d32c841cdb8456713619cf2bcd9eb7c482cf84531da30c9dd9a595fdea0db129e524b9dbfa6ea06d766456ebcd +binfiles arch=win32 size=6 + bin/win32/bbl2bib.exe + bin/win32/bibdoiadd.exe + bin/win32/bibmradd.exe + bin/win32/biburl2doi.exe + bin/win32/bibzbladd.exe + bin/win32/ltx2crossrefxml.exe + +name crossrefware.x86_64-cygwin +category Package +revision 45927 +shortdesc x86_64-cygwin files of crossrefware +containersize 468 +containerchecksum 64bc2cd919ade5a17b07691d733ddf6af6819c9dab24c0a716a5194f68aae11d72db951440ed8f3285d71a6707850962da8736a5d1ec27db854ba98ef7782558 +binfiles arch=x86_64-cygwin size=6 + bin/x86_64-cygwin/bbl2bib + bin/x86_64-cygwin/bibdoiadd + bin/x86_64-cygwin/bibmradd + bin/x86_64-cygwin/biburl2doi + bin/x86_64-cygwin/bibzbladd + bin/x86_64-cygwin/ltx2crossrefxml + +name crossrefware.x86_64-darwinlegacy +category Package +revision 45927 +shortdesc x86_64-darwinlegacy files of crossrefware +containersize 472 +containerchecksum 1ae714c0654ce8eff46921941d80c6bac27cb527821b2b380d5ffd5c8421f0d61165d339d2cba44ba5b181919d1654b635b17d0f29e4976965da22ab84c1275f +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/bbl2bib + bin/x86_64-darwinlegacy/bibdoiadd + bin/x86_64-darwinlegacy/bibmradd + bin/x86_64-darwinlegacy/biburl2doi + bin/x86_64-darwinlegacy/bibzbladd + bin/x86_64-darwinlegacy/ltx2crossrefxml + +name crossrefware.x86_64-linux +category Package +revision 45927 +shortdesc x86_64-linux files of crossrefware +containersize 460 +containerchecksum a45231ddb8da5ac3fa9b40a80e758311b19effb9eb1cffc2443dcad8e26f995c94950868fc130f1e230be0b218b2e3a08fa67bab161b857231d13ec6764231c5 +binfiles arch=x86_64-linux size=6 + bin/x86_64-linux/bbl2bib + bin/x86_64-linux/bibdoiadd + bin/x86_64-linux/bibmradd + bin/x86_64-linux/biburl2doi + bin/x86_64-linux/bibzbladd + bin/x86_64-linux/ltx2crossrefxml + +name crossrefware.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of crossrefware +containersize 468 +containerchecksum bbcb2b6c68df0b5d5b4c9b5282432287722b9cd379f1657a4b95c980de37439394db235d1f7145c896ea90dd774c29361a9c0091c8ce41a677a8719da20d59fc +binfiles arch=x86_64-linuxmusl size=6 + bin/x86_64-linuxmusl/bbl2bib + bin/x86_64-linuxmusl/bibdoiadd + bin/x86_64-linuxmusl/bibmradd + bin/x86_64-linuxmusl/biburl2doi + bin/x86_64-linuxmusl/bibzbladd + bin/x86_64-linuxmusl/ltx2crossrefxml + +name crossrefware.x86_64-solaris +category Package +revision 45927 +shortdesc x86_64-solaris files of crossrefware +containersize 468 +containerchecksum 0c870349083477fbb1201b718c4c7eaef0bce37e3beb280dfe1bbf9b0089b87360be1c195da25aae12ea0d354c3bd5b28967d739e7e42ae74f172f752fbc6e14 +binfiles arch=x86_64-solaris size=6 + bin/x86_64-solaris/bbl2bib + bin/x86_64-solaris/bibdoiadd + bin/x86_64-solaris/bibmradd + bin/x86_64-solaris/biburl2doi + bin/x86_64-solaris/bibzbladd + bin/x86_64-solaris/ltx2crossrefxml + +name crossword +category Package +revision 55271 +shortdesc Typeset crossword puzzles +relocated 1 +longdesc An extended grid-based puzzle package, designed to take all +longdesc input (both grid and clues) from the same file. The package can +longdesc typeset grids with holes in them (for advertisements, or other +longdesc sorts of stuff), and can deal with several sorts of puzzle: The +longdesc classical puzzle contains numbers for the words and clues for +longdesc the words to be filled in. The numbered puzzle contains numbers +longdesc in each cell where identical numbers represent identical +longdesc letters. The goal is to find out which number corresponds to +longdesc which letter. The fill-in type of puzzle consists of a grid and +longdesc a list of words. The goal is to place all words in the grid. +longdesc Sudoku and Kakuro puzzles involve filling in grids of numbers +longdesc according to their own rules. Format may be block-separated, or +longdesc separated by thick lines. Input to the package is somewhat +longdesc redundant: specification of the grid is separate from +longdesc specification of the clues (if they're necessary). The author +longdesc considers this style both 'natural' and robust. +containersize 4232 +containerchecksum 120d76d4513d2fb2d5ddaa9b5a45a3fabc42b4574776e60fc700f9de07030679ad36f2328ffd1dd5a0ce0148c4b2ce7c6f774eecf1fb2ad747fdbe585178ea26 +doccontainersize 338744 +doccontainerchecksum ca1d098a53724ce035ab8eb6e07de2f2b38deaca029b4e3a0d15e98dfa5ed9998fdb95b8dd5ab254862ca0ecbb7c15fda6bbef3d84cd6a7293f0172abbadb901 +docfiles size=87 + RELOC/doc/latex/crossword/LICENSE + RELOC/doc/latex/crossword/README.md details="Package Readme" + RELOC/doc/latex/crossword/cwpuzzle.pdf details="Package documentation" + RELOC/doc/latex/crossword/makefile +srccontainersize 15664 +srccontainerchecksum 4071af8acad185db5ff31137f966378dd239a155668b822fcaee4091d460fd8062a0b08fc39b5d5a2b0d2c0d1adfbacc0884ae9654a555eae634b71cf722adea +srcfiles size=20 + RELOC/source/latex/crossword/cwpuzzle.dtx + RELOC/source/latex/crossword/cwpuzzle.ins +runfiles size=3 + RELOC/tex/latex/crossword/cwpuzzle.sty +catalogue-also crosswrd +catalogue-contact-home http://gerd-neugebauer.de/software/TeX/cwpuzzle +catalogue-contact-repository https://sourceforge.net/p/gene-tex-lib/svn/HEAD/tree/cwpuzzle +catalogue-ctan /macros/latex/contrib/gene/crossword +catalogue-license other-free +catalogue-topics games cwpuzzle +catalogue-version 1.10 + +name crosswrd +category Package +revision 16896 +shortdesc Macros for typesetting crossword puzzles +relocated 1 +longdesc The package provides a LaTeX method of typesetting crosswords, +longdesc and assists the composer ensure that the grid all goes together +longdesc properly. Brian Hamilton Kelly's original was written for LaTeX +longdesc 2.09, and needed to be updated to run with current LaTeX. +containersize 3616 +containerchecksum 889334e046aa6371df566c814faa98fdf4931c85be3d49e04d932f02bb71bffaa929614398469be04bf6426ec05ccbfcdbe0ad9798017f9504fba5f3781521e6 +doccontainersize 215628 +doccontainerchecksum 0d4d1e8c1577ee23f7fc60ab8c106121978e986945b8dd399faef4ca55e60a7ed3ba65220ef56ad11b7a100690f89692f0c1ad80c845e2aa04d81c8664a6cd27 +docfiles size=66 + RELOC/doc/latex/crosswrd/README details="Readme" + RELOC/doc/latex/crosswrd/crosswrd.pdf + RELOC/doc/latex/crosswrd/grid0.tex + RELOC/doc/latex/crosswrd/grid1.tex + RELOC/doc/latex/crosswrd/grid2.tex + RELOC/doc/latex/crosswrd/test0.tex + RELOC/doc/latex/crosswrd/test1.tex + RELOC/doc/latex/crosswrd/test2.tex +srccontainersize 19500 +srccontainerchecksum edb2825137c510f1ed32b9380b3e59ac492a76ed35d2a1b16ef486a8287338c1afd8b26cee9d1ae447eff3dd12de14cd7f75d97db74ef5f084286c7f5cd8478c +srcfiles size=17 + RELOC/source/latex/crosswrd/crosswrd.dtx + RELOC/source/latex/crosswrd/crosswrd.ins +runfiles size=3 + RELOC/tex/latex/crosswrd/crosswrd.sty +catalogue-ctan /macros/latex/contrib/crosswrd +catalogue-license lppl +catalogue-topics games cwpuzzle +catalogue-version 3.0 + +name cryptocode +category Package +revision 55920 +shortdesc Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography +relocated 1 +longdesc The cryptocode package provides a set of macros to ease the +longdesc typesetting of pseudocode, algorithms and protocols. In +longdesc addition it comes with a wide range of tools to typeset +longdesc cryptographic papers. This includes simple predefined commands +longdesc for concepts such as a security parameter or advantage terms +longdesc but also flexible and powerful environments to layout +longdesc game-based proofs or black-box reductions. +containersize 21352 +containerchecksum df6a8f1f92357f235ce6ab120925c4e833985ba8ec487f8477a06ac8808997c3f34e2955178f505460cc008183966ffb06280b41a9ead249e8f03062cf2f7140 +doccontainersize 1029036 +doccontainerchecksum 1369982ed17f6205ed2206b082faa902b8d0b2fa88669f215cc113a4bdb7e027f9e696311a3a0a19e5a48151a858d5c7a151bf4d42eff04a807c32f8559d67bf +docfiles size=256 + RELOC/doc/latex/cryptocode/README.md details="Readme" + RELOC/doc/latex/cryptocode/cryptocode.pdf details="Package documentation" +srccontainersize 49508 +srccontainerchecksum e9849dd4382b51e6f2d19bea2e074c2918fd4aefbab9f7add357cc6a122a4b4c35416d50886b7fb68a2db899d00ff8892a38ab91833d1a694969f946ce415a56 +srcfiles size=72 + RELOC/source/latex/cryptocode/cryptocode.dtx + RELOC/source/latex/cryptocode/cryptocode.ins +runfiles size=61 + RELOC/tex/latex/cryptocode/cryptocode-2018-11-11.sty + RELOC/tex/latex/cryptocode/cryptocode-2020-04-24.sty + RELOC/tex/latex/cryptocode/cryptocode.sty +catalogue-contact-repository https://github.com/arnomi/cryptocode +catalogue-ctan /macros/latex/contrib/cryptocode +catalogue-license lppl1.3 +catalogue-topics pseudocode +catalogue-version 0.40 + +name cryst +category Package +revision 15878 +shortdesc Font for graphical symbols used in crystallography +relocated 1 +longdesc The font is provided as an Adobe Type 1 font, and as Metafont +longdesc source. Instructions for use are available both in the README +longdesc file and (with a font diagram) in the documentation. +containersize 35496 +containerchecksum 49e1c9d0cb6909e421446230bf71123fa71b4aad1d90b1c7614fc465651f701d91f576c2edd8b6840d1c78dfa5557cd604e61a5e745e1ccb2f60bde9e66117ed +doccontainersize 31468 +doccontainerchecksum 55c765a9a4799f719383473700a0ef5627ec8873fc9fbd4ffd191d205d24b29d57255d90687176789240a3c4a547a3a57ed341a0558d99aa01dbcff0fc7dffc1 +docfiles size=13 + RELOC/doc/latex/cryst/README details="Readme" + RELOC/doc/latex/cryst/cryst1.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/cryst/cryst1.tex +runfiles size=23 + RELOC/fonts/afm/public/cryst/cryst.afm + RELOC/fonts/source/public/cryst/cryst.mf + RELOC/fonts/tfm/public/cryst/cryst.tfm + RELOC/fonts/type1/public/cryst/cryst.pfb +catalogue-ctan /fonts/cryst +catalogue-license lppl +catalogue-topics font font-type1 font-mf font-symbol + +name cs +category Package +revision 41553 +catalogue csfonts +shortdesc Czech/Slovak-tuned Computer Modern fonts +relocated 1 +longdesc The fonts are provided as Metafont source; Type 1 format +longdesc versions (csfonts-t1) are also available. +depend cmexb +execute addMap cs-charter.map +execute addMap csfonts.map +containersize 1798840 +containerchecksum bc956c595d4460f35c64c92e7730a7cc9cd3af95301afba56c49bcf8415666863de926733409ce1afd99ba767fe3a3fa45c68f2dcc912b69c6f72b618289fb30 +runfiles size=919 + RELOC/fonts/enc/dvips/cs/xl2.enc + RELOC/fonts/enc/dvips/cs/xl2f.enc + RELOC/fonts/enc/dvips/cs/xt2.enc + RELOC/fonts/map/dvips/cs/cs-a35-nodownload.map + RELOC/fonts/map/dvips/cs/cs-a35-urwdownload.map + RELOC/fonts/map/dvips/cs/cs-charter.map + RELOC/fonts/map/dvips/cs/csfonts.map + RELOC/fonts/source/public/cs/csaccent.mf + RELOC/fonts/source/public/cs/csacutl.mf + RELOC/fonts/source/public/cs/csacutu.mf + RELOC/fonts/source/public/cs/csadded.mf + RELOC/fonts/source/public/cs/csb10.mf + RELOC/fonts/source/public/cs/csb12.mf + RELOC/fonts/source/public/cs/csb17.mf + RELOC/fonts/source/public/cs/csb5.mf + RELOC/fonts/source/public/cs/csb6.mf + RELOC/fonts/source/public/cs/csb7.mf + RELOC/fonts/source/public/cs/csb8.mf + RELOC/fonts/source/public/cs/csb9.mf + RELOC/fonts/source/public/cs/csbx10.mf + RELOC/fonts/source/public/cs/csbx12.mf + RELOC/fonts/source/public/cs/csbx5.mf + RELOC/fonts/source/public/cs/csbx6.mf + RELOC/fonts/source/public/cs/csbx7.mf + RELOC/fonts/source/public/cs/csbx8.mf + RELOC/fonts/source/public/cs/csbx9.mf + RELOC/fonts/source/public/cs/csbxsl10.mf + RELOC/fonts/source/public/cs/csbxsl12.mf + RELOC/fonts/source/public/cs/csbxsl5.mf + RELOC/fonts/source/public/cs/csbxsl6.mf + RELOC/fonts/source/public/cs/csbxsl7.mf + RELOC/fonts/source/public/cs/csbxsl8.mf + RELOC/fonts/source/public/cs/csbxsl9.mf + RELOC/fonts/source/public/cs/csbxti10.mf + RELOC/fonts/source/public/cs/csbxti12.mf + RELOC/fonts/source/public/cs/csbxti17.mf + RELOC/fonts/source/public/cs/cscode.mf + RELOC/fonts/source/public/cs/cscsc10.mf + RELOC/fonts/source/public/cs/cscsc12.mf + RELOC/fonts/source/public/cs/cscsc17.mf + RELOC/fonts/source/public/cs/cscsc8.mf + RELOC/fonts/source/public/cs/cscsc9.mf + RELOC/fonts/source/public/cs/csdunh10.mf + RELOC/fonts/source/public/cs/csdunh12.mf + RELOC/fonts/source/public/cs/csdunh17.mf + RELOC/fonts/source/public/cs/csdunh5.mf + RELOC/fonts/source/public/cs/csdunh6.mf + RELOC/fonts/source/public/cs/csdunh7.mf + RELOC/fonts/source/public/cs/csdunh8.mf + RELOC/fonts/source/public/cs/csdunh9.mf + RELOC/fonts/source/public/cs/csff10.mf + RELOC/fonts/source/public/cs/csfi10.mf + RELOC/fonts/source/public/cs/csfib10.mf + RELOC/fonts/source/public/cs/csfib12.mf + RELOC/fonts/source/public/cs/csfib8.mf + RELOC/fonts/source/public/cs/csfib9.mf + RELOC/fonts/source/public/cs/cshachel.mf + RELOC/fonts/source/public/cs/cshacheu.mf + RELOC/fonts/source/public/cs/cshyph.mf + RELOC/fonts/source/public/cs/csiacutl.mf + RELOC/fonts/source/public/cs/csihachl.mf + RELOC/fonts/source/public/cs/csinch.mf + RELOC/fonts/source/public/cs/csiothrl.mf + RELOC/fonts/source/public/cs/csitt10.mf + RELOC/fonts/source/public/cs/csitt12.mf + RELOC/fonts/source/public/cs/csitt17.mf + RELOC/fonts/source/public/cs/csitt8.mf + RELOC/fonts/source/public/cs/csitt9.mf + RELOC/fonts/source/public/cs/csotherl.mf + RELOC/fonts/source/public/cs/csotheru.mf + RELOC/fonts/source/public/cs/csr10.mf + RELOC/fonts/source/public/cs/csr12.mf + RELOC/fonts/source/public/cs/csr17.mf + RELOC/fonts/source/public/cs/csr5.mf + RELOC/fonts/source/public/cs/csr6.mf + RELOC/fonts/source/public/cs/csr7.mf + RELOC/fonts/source/public/cs/csr8.mf + RELOC/fonts/source/public/cs/csr9.mf + RELOC/fonts/source/public/cs/cssl10.mf + RELOC/fonts/source/public/cs/cssl12.mf + RELOC/fonts/source/public/cs/cssl17.mf + RELOC/fonts/source/public/cs/cssl5.mf + RELOC/fonts/source/public/cs/cssl6.mf + RELOC/fonts/source/public/cs/cssl7.mf + RELOC/fonts/source/public/cs/cssl8.mf + RELOC/fonts/source/public/cs/cssl9.mf + RELOC/fonts/source/public/cs/cssltt10.mf + RELOC/fonts/source/public/cs/cssltt12.mf + RELOC/fonts/source/public/cs/cssltt8.mf + RELOC/fonts/source/public/cs/cssltt9.mf + RELOC/fonts/source/public/cs/csss10.mf + RELOC/fonts/source/public/cs/csss12.mf + RELOC/fonts/source/public/cs/csss17.mf + RELOC/fonts/source/public/cs/csss8.mf + RELOC/fonts/source/public/cs/csss9.mf + RELOC/fonts/source/public/cs/csssbx10.mf + RELOC/fonts/source/public/cs/csssbx12.mf + RELOC/fonts/source/public/cs/csssbx17.mf + RELOC/fonts/source/public/cs/csssbx9.mf + RELOC/fonts/source/public/cs/csssdc10.mf + RELOC/fonts/source/public/cs/csssi10.mf + RELOC/fonts/source/public/cs/csssi12.mf + RELOC/fonts/source/public/cs/csssi17.mf + RELOC/fonts/source/public/cs/csssi8.mf + RELOC/fonts/source/public/cs/csssi9.mf + RELOC/fonts/source/public/cs/csssq8.mf + RELOC/fonts/source/public/cs/csssqi8.mf + RELOC/fonts/source/public/cs/cstcsc10.mf + RELOC/fonts/source/public/cs/cstcsc12.mf + RELOC/fonts/source/public/cs/cstcsc17.mf + RELOC/fonts/source/public/cs/cstex10.mf + RELOC/fonts/source/public/cs/cstex8.mf + RELOC/fonts/source/public/cs/cstex9.mf + RELOC/fonts/source/public/cs/csti10.mf + RELOC/fonts/source/public/cs/csti12.mf + RELOC/fonts/source/public/cs/csti17.mf + RELOC/fonts/source/public/cs/csti7.mf + RELOC/fonts/source/public/cs/csti8.mf + RELOC/fonts/source/public/cs/csti9.mf + RELOC/fonts/source/public/cs/cstt10.mf + RELOC/fonts/source/public/cs/cstt12.mf + RELOC/fonts/source/public/cs/cstt8.mf + RELOC/fonts/source/public/cs/cstt9.mf + RELOC/fonts/source/public/cs/csu10.mf + RELOC/fonts/source/public/cs/csu12.mf + RELOC/fonts/source/public/cs/csu17.mf + RELOC/fonts/source/public/cs/csu7.mf + RELOC/fonts/source/public/cs/csu8.mf + RELOC/fonts/source/public/cs/csu9.mf + RELOC/fonts/source/public/cs/csvtt10.mf + RELOC/fonts/source/public/cs/csvtt12.mf + RELOC/fonts/source/public/cs/csvtt8.mf + RELOC/fonts/source/public/cs/csvtt9.mf + RELOC/fonts/source/public/cs/icscsc10.mf + RELOC/fonts/source/public/cs/icstt8.mf + RELOC/fonts/source/public/cs/ilcsss8.mf + RELOC/fonts/source/public/cs/ilcsssb8.mf + RELOC/fonts/source/public/cs/ilcsssi8.mf + RELOC/fonts/source/public/cs/kmcsc.mf + RELOC/fonts/source/public/cs/kmroman.mf + RELOC/fonts/source/public/cs/kmtexset.mf + RELOC/fonts/source/public/cs/kmtextit.mf + RELOC/fonts/source/public/cs/kmtitle.mf + RELOC/fonts/source/public/cs/lcsss8.mf + RELOC/fonts/source/public/cs/lcsssb8.mf + RELOC/fonts/source/public/cs/lcsssi8.mf + RELOC/fonts/tfm/cs/cs-a35/README + RELOC/fonts/tfm/cs/cs-a35/pagd8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagdc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagdo8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagk8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagkc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagko8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkd8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkdc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkdi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkl8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbklc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkli8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrb8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrbc8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrbo8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrr8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrrc8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrro8u.tfm + RELOC/fonts/tfm/cs/cs-a35/phvb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbn8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbnc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbo8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbon8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvrn8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvrnc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvro8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvron8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncbi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncri8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplbi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplri8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmbi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmri8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pzcmi8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchb8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchbi8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchr8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchri8z.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchb.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchbi.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchr.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchri.tfm + RELOC/fonts/tfm/public/cs/csb10.tfm + RELOC/fonts/tfm/public/cs/csb12.tfm + RELOC/fonts/tfm/public/cs/csb17.tfm + RELOC/fonts/tfm/public/cs/csb5.tfm + RELOC/fonts/tfm/public/cs/csb6.tfm + RELOC/fonts/tfm/public/cs/csb7.tfm + RELOC/fonts/tfm/public/cs/csb8.tfm + RELOC/fonts/tfm/public/cs/csb9.tfm + RELOC/fonts/tfm/public/cs/csbx10.tfm + RELOC/fonts/tfm/public/cs/csbx12.tfm + RELOC/fonts/tfm/public/cs/csbx5.tfm + RELOC/fonts/tfm/public/cs/csbx6.tfm + RELOC/fonts/tfm/public/cs/csbx7.tfm + RELOC/fonts/tfm/public/cs/csbx8.tfm + RELOC/fonts/tfm/public/cs/csbx9.tfm + RELOC/fonts/tfm/public/cs/csbxsl10.tfm + RELOC/fonts/tfm/public/cs/csbxsl12.tfm + RELOC/fonts/tfm/public/cs/csbxsl5.tfm + RELOC/fonts/tfm/public/cs/csbxsl6.tfm + RELOC/fonts/tfm/public/cs/csbxsl7.tfm + RELOC/fonts/tfm/public/cs/csbxsl8.tfm + RELOC/fonts/tfm/public/cs/csbxsl9.tfm + RELOC/fonts/tfm/public/cs/csbxti10.tfm + RELOC/fonts/tfm/public/cs/csbxti12.tfm + RELOC/fonts/tfm/public/cs/csbxti17.tfm + RELOC/fonts/tfm/public/cs/cscsc10.tfm + RELOC/fonts/tfm/public/cs/cscsc12.tfm + RELOC/fonts/tfm/public/cs/cscsc17.tfm + RELOC/fonts/tfm/public/cs/cscsc8.tfm + RELOC/fonts/tfm/public/cs/cscsc9.tfm + RELOC/fonts/tfm/public/cs/csdunh10.tfm + RELOC/fonts/tfm/public/cs/csdunh12.tfm + RELOC/fonts/tfm/public/cs/csdunh17.tfm + RELOC/fonts/tfm/public/cs/csdunh5.tfm + RELOC/fonts/tfm/public/cs/csdunh6.tfm + RELOC/fonts/tfm/public/cs/csdunh7.tfm + RELOC/fonts/tfm/public/cs/csdunh8.tfm + RELOC/fonts/tfm/public/cs/csdunh9.tfm + RELOC/fonts/tfm/public/cs/csff10.tfm + RELOC/fonts/tfm/public/cs/csfi10.tfm + RELOC/fonts/tfm/public/cs/csfib10.tfm + RELOC/fonts/tfm/public/cs/csfib12.tfm + RELOC/fonts/tfm/public/cs/csfib8.tfm + RELOC/fonts/tfm/public/cs/csfib9.tfm + RELOC/fonts/tfm/public/cs/csinch.tfm + RELOC/fonts/tfm/public/cs/csitt10.tfm + RELOC/fonts/tfm/public/cs/csitt12.tfm + RELOC/fonts/tfm/public/cs/csitt17.tfm + RELOC/fonts/tfm/public/cs/csitt8.tfm + RELOC/fonts/tfm/public/cs/csitt9.tfm + RELOC/fonts/tfm/public/cs/csr10.tfm + RELOC/fonts/tfm/public/cs/csr12.tfm + RELOC/fonts/tfm/public/cs/csr17.tfm + RELOC/fonts/tfm/public/cs/csr5.tfm + RELOC/fonts/tfm/public/cs/csr6.tfm + RELOC/fonts/tfm/public/cs/csr7.tfm + RELOC/fonts/tfm/public/cs/csr8.tfm + RELOC/fonts/tfm/public/cs/csr9.tfm + RELOC/fonts/tfm/public/cs/cssl10.tfm + RELOC/fonts/tfm/public/cs/cssl12.tfm + RELOC/fonts/tfm/public/cs/cssl17.tfm + RELOC/fonts/tfm/public/cs/cssl5.tfm + RELOC/fonts/tfm/public/cs/cssl6.tfm + RELOC/fonts/tfm/public/cs/cssl7.tfm + RELOC/fonts/tfm/public/cs/cssl8.tfm + RELOC/fonts/tfm/public/cs/cssl9.tfm + RELOC/fonts/tfm/public/cs/cssltt10.tfm + RELOC/fonts/tfm/public/cs/cssltt12.tfm + RELOC/fonts/tfm/public/cs/cssltt8.tfm + RELOC/fonts/tfm/public/cs/cssltt9.tfm + RELOC/fonts/tfm/public/cs/csss10.tfm + RELOC/fonts/tfm/public/cs/csss12.tfm + RELOC/fonts/tfm/public/cs/csss17.tfm + RELOC/fonts/tfm/public/cs/csss8.tfm + RELOC/fonts/tfm/public/cs/csss9.tfm + RELOC/fonts/tfm/public/cs/csssbx10.tfm + RELOC/fonts/tfm/public/cs/csssbx12.tfm + RELOC/fonts/tfm/public/cs/csssbx17.tfm + RELOC/fonts/tfm/public/cs/csssbx9.tfm + RELOC/fonts/tfm/public/cs/csssdc10.tfm + RELOC/fonts/tfm/public/cs/csssi10.tfm + RELOC/fonts/tfm/public/cs/csssi12.tfm + RELOC/fonts/tfm/public/cs/csssi17.tfm + RELOC/fonts/tfm/public/cs/csssi8.tfm + RELOC/fonts/tfm/public/cs/csssi9.tfm + RELOC/fonts/tfm/public/cs/csssq8.tfm + RELOC/fonts/tfm/public/cs/csssqi8.tfm + RELOC/fonts/tfm/public/cs/cstcsc10.tfm + RELOC/fonts/tfm/public/cs/cstcsc12.tfm + RELOC/fonts/tfm/public/cs/cstcsc17.tfm + RELOC/fonts/tfm/public/cs/csti10.tfm + RELOC/fonts/tfm/public/cs/csti12.tfm + RELOC/fonts/tfm/public/cs/csti17.tfm + RELOC/fonts/tfm/public/cs/csti7.tfm + RELOC/fonts/tfm/public/cs/csti8.tfm + RELOC/fonts/tfm/public/cs/csti9.tfm + RELOC/fonts/tfm/public/cs/cstt10.tfm + RELOC/fonts/tfm/public/cs/cstt12.tfm + RELOC/fonts/tfm/public/cs/cstt8.tfm + RELOC/fonts/tfm/public/cs/cstt9.tfm + RELOC/fonts/tfm/public/cs/csu10.tfm + RELOC/fonts/tfm/public/cs/csu12.tfm + RELOC/fonts/tfm/public/cs/csu17.tfm + RELOC/fonts/tfm/public/cs/csu7.tfm + RELOC/fonts/tfm/public/cs/csu8.tfm + RELOC/fonts/tfm/public/cs/csu9.tfm + RELOC/fonts/tfm/public/cs/csvtt10.tfm + RELOC/fonts/tfm/public/cs/csvtt12.tfm + RELOC/fonts/tfm/public/cs/csvtt8.tfm + RELOC/fonts/tfm/public/cs/csvtt9.tfm + RELOC/fonts/tfm/public/cs/icscsc10.tfm + RELOC/fonts/tfm/public/cs/icstt8.tfm + RELOC/fonts/tfm/public/cs/ilcsss8.tfm + RELOC/fonts/tfm/public/cs/ilcsssb8.tfm + RELOC/fonts/tfm/public/cs/ilcsssi8.tfm + RELOC/fonts/tfm/public/cs/lcsss8.tfm + RELOC/fonts/tfm/public/cs/lcsssb8.tfm + RELOC/fonts/tfm/public/cs/lcsssi8.tfm + RELOC/fonts/type1/public/cs/README + RELOC/fonts/type1/public/cs/csb10.pfb + RELOC/fonts/type1/public/cs/csbx10.pfb + RELOC/fonts/type1/public/cs/csbx12.pfb + RELOC/fonts/type1/public/cs/csbx5.pfb + RELOC/fonts/type1/public/cs/csbx6.pfb + RELOC/fonts/type1/public/cs/csbx7.pfb + RELOC/fonts/type1/public/cs/csbx8.pfb + RELOC/fonts/type1/public/cs/csbx9.pfb + RELOC/fonts/type1/public/cs/csbxsl10.pfb + RELOC/fonts/type1/public/cs/csbxti10.pfb + RELOC/fonts/type1/public/cs/cscsc10.pfb + RELOC/fonts/type1/public/cs/csdunh10.pfb + RELOC/fonts/type1/public/cs/csff10.pfb + RELOC/fonts/type1/public/cs/csfi10.pfb + RELOC/fonts/type1/public/cs/csfib8.pfb + RELOC/fonts/type1/public/cs/csinch.pfb + RELOC/fonts/type1/public/cs/csitt10.pfb + RELOC/fonts/type1/public/cs/csr10.pfb + RELOC/fonts/type1/public/cs/csr12.pfb + RELOC/fonts/type1/public/cs/csr17.pfb + RELOC/fonts/type1/public/cs/csr5.pfb + RELOC/fonts/type1/public/cs/csr6.pfb + RELOC/fonts/type1/public/cs/csr7.pfb + RELOC/fonts/type1/public/cs/csr8.pfb + RELOC/fonts/type1/public/cs/csr9.pfb + RELOC/fonts/type1/public/cs/cssl10.pfb + RELOC/fonts/type1/public/cs/cssl12.pfb + RELOC/fonts/type1/public/cs/cssl8.pfb + RELOC/fonts/type1/public/cs/cssl9.pfb + RELOC/fonts/type1/public/cs/cssltt10.pfb + RELOC/fonts/type1/public/cs/csss10.pfb + RELOC/fonts/type1/public/cs/csss12.pfb + RELOC/fonts/type1/public/cs/csss17.pfb + RELOC/fonts/type1/public/cs/csss8.pfb + RELOC/fonts/type1/public/cs/csss9.pfb + RELOC/fonts/type1/public/cs/csssbx10.pfb + RELOC/fonts/type1/public/cs/csssdc10.pfb + RELOC/fonts/type1/public/cs/csssi10.pfb + RELOC/fonts/type1/public/cs/csssi12.pfb + RELOC/fonts/type1/public/cs/csssi17.pfb + RELOC/fonts/type1/public/cs/csssi8.pfb + RELOC/fonts/type1/public/cs/csssi9.pfb + RELOC/fonts/type1/public/cs/csssq8.pfb + RELOC/fonts/type1/public/cs/csssqi8.pfb + RELOC/fonts/type1/public/cs/cstcsc10.pfb + RELOC/fonts/type1/public/cs/csti10.pfb + RELOC/fonts/type1/public/cs/csti12.pfb + RELOC/fonts/type1/public/cs/csti7.pfb + RELOC/fonts/type1/public/cs/csti8.pfb + RELOC/fonts/type1/public/cs/csti9.pfb + RELOC/fonts/type1/public/cs/cstt10.pfb + RELOC/fonts/type1/public/cs/cstt12.pfb + RELOC/fonts/type1/public/cs/cstt8.pfb + RELOC/fonts/type1/public/cs/cstt9.pfb + RELOC/fonts/type1/public/cs/csu10.pfb + RELOC/fonts/type1/public/cs/csvtt10.pfb + RELOC/fonts/vf/cs/cs-a35/README + RELOC/fonts/vf/cs/cs-a35/pagdc8z.vf + RELOC/fonts/vf/cs/cs-a35/pagkc8z.vf + RELOC/fonts/vf/cs/cs-a35/pbkdc8z.vf + RELOC/fonts/vf/cs/cs-a35/pbklc8z.vf + RELOC/fonts/vf/cs/cs-a35/pcrbc8u.vf + RELOC/fonts/vf/cs/cs-a35/pcrrc8u.vf + RELOC/fonts/vf/cs/cs-a35/phvbc8z.vf + RELOC/fonts/vf/cs/cs-a35/phvbnc8z.vf + RELOC/fonts/vf/cs/cs-a35/phvrc8z.vf + RELOC/fonts/vf/cs/cs-a35/phvrnc8z.vf + RELOC/fonts/vf/cs/cs-a35/pncbc8z.vf + RELOC/fonts/vf/cs/cs-a35/pncrc8z.vf + RELOC/fonts/vf/cs/cs-a35/pplbc8z.vf + RELOC/fonts/vf/cs/cs-a35/pplrc8z.vf + RELOC/fonts/vf/cs/cs-a35/ptmbc8z.vf + RELOC/fonts/vf/cs/cs-a35/ptmrc8z.vf + RELOC/fonts/vf/cs/cs-charter/bchb8z.vf + RELOC/fonts/vf/cs/cs-charter/bchbi8z.vf + RELOC/fonts/vf/cs/cs-charter/bchr8z.vf + 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-license gpl +catalogue-topics czech slovak font font-mf + +name csbulletin +category Package +revision 54433 +shortdesc LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj) +relocated 1 +longdesc The package provides the class for articles for the CSTUG +longdesc Bulletin (Zpravodaj Ceskoslovenskeho sdruzeni uzivatelu TeXu). +longdesc You can see the structure of a document by looking at the +longdesc source file of the manual. +containersize 12916 +containerchecksum 7b1f41ce8c9cecd8cce3aa1458a029a558b3a70dbcf8e5fb53e192db5d4b56ffdca3e323fa54d7960e141d6e1e32ca52b8824b3c326c94def8b32ad42d0dfee0 +doccontainersize 274080 +doccontainerchecksum 4299308a6408a826f139bbca785cbb139f94ff10e67c80c597e0e7cbfd3bb6ff4889865a04922e4cbe23cf0d3d6f1c1ccc5cfe4d5c2dfee4c747ba18873d6190 +docfiles size=73 + RELOC/doc/latex/csbulletin/LICENSE.txt + RELOC/doc/latex/csbulletin/README details="Readme" + RELOC/doc/latex/csbulletin/csbulletin.pdf details="Package manual" + RELOC/doc/latex/csbulletin/csbulletin.tex +runfiles size=13 + RELOC/tex/latex/csbulletin/csbulacronym.sty + RELOC/tex/latex/csbulletin/csbulletin.cls + RELOC/tex/latex/csbulletin/csbulobalka.cls + RELOC/tex/latex/csbulletin/csbulobalka.sty + RELOC/tex/latex/csbulletin/csbulv1.cls +catalogue-ctan /macros/latex/contrib/csbulletin +catalogue-license lppl1.3 +catalogue-topics journalpub class + +name cslatex +category Package +revision 57972 +shortdesc LaTeX support for Czech/Slovak typesetting +depend atbegshi +depend atveryend +depend cm +depend cslatex.ARCH +depend csplain +depend everyshi +depend firstaid +depend hyphen-base +depend l3kernel +depend l3packages +depend latex +depend latex-fonts +depend tex-ini-files +depend unicode-data +execute AddFormat name=cslatex engine=pdftex options="-etex cslatex.ini" fmttriggers=atbegshi,atveryend,cm,csplain,everyshi,firstaid,hyphen-base,l3kernel,l3packages,latex-fonts,latex,unicode-data +execute AddFormat name=pdfcslatex engine=pdftex options="-etex cslatex.ini" fmttriggers=atbegshi,atveryend,cm,csplain,everyshi,firstaid,hyphen-base,l3kernel,l3packages,latex-fonts,latex,unicode-data,tex-ini-files +containersize 12744 +containerchecksum dd6b98eb22786f39c830a4c012396507dca694d727f1a7eb147a1c8c2d4442d8120e016de4c08c038239dfac866f828bc7686d8fd124d1af63edd0994db80f9f +doccontainersize 18996 +doccontainerchecksum 8ec3527c25c07641788b809cca4f4cc8bb034f63f1100b74270041b503dbc8926a410429a370692502596bd6ffec69a970a19b1c32178e4722f81acdbf0ea934 +docfiles size=14 + texmf-dist/doc/man/man1/cslatex.1 + texmf-dist/doc/man/man1/cslatex.man1.pdf + texmf-dist/doc/man/man1/pdfcslatex.1 + texmf-dist/doc/man/man1/pdfcslatex.man1.pdf +srccontainersize 24036 +srccontainerchecksum 0563f453bf7e34b4948a29d832207f8148082c5186a6915a6bdc1c41d0c08399505491ccdea0b45e8bf326a8e8459d37eeaca546143d9f622ce4dacba11cac7f +srcfiles size=26 + texmf-dist/source/cslatex/base/cslatex.dtx + texmf-dist/source/cslatex/base/cslatex.ins + texmf-dist/source/cslatex/cspsfonts/cspsfont.doc + texmf-dist/source/cslatex/cspsfonts/cspsfont.drv +runfiles size=46 + texmf-dist/tex/cslatex/base/cslatex.ini + texmf-dist/tex/cslatex/base/czech.sty + texmf-dist/tex/cslatex/base/fonttext.cfg + texmf-dist/tex/cslatex/base/hyphen.cfg + texmf-dist/tex/cslatex/base/il2cmdh.fd + texmf-dist/tex/cslatex/base/il2cmfib.fd + texmf-dist/tex/cslatex/base/il2cmfr.fd + texmf-dist/tex/cslatex/base/il2cmr.fd + texmf-dist/tex/cslatex/base/il2cmss.fd + texmf-dist/tex/cslatex/base/il2cmtt.fd + texmf-dist/tex/cslatex/base/il2cmvtt.fd + texmf-dist/tex/cslatex/base/il2enc.def + texmf-dist/tex/cslatex/base/il2lcmss.fd + texmf-dist/tex/cslatex/base/il2lcmtt.fd + texmf-dist/tex/cslatex/base/slovak.sty + texmf-dist/tex/cslatex/cspsfonts/cspsfont.il2 + texmf-dist/tex/cslatex/cspsfonts/cspsfont.tex + texmf-dist/tex/cslatex/cspsfonts/cspsfont.xl2 + texmf-dist/tex/cslatex/cspsfonts/il2pag.fd + texmf-dist/tex/cslatex/cspsfonts/il2pbk.fd + texmf-dist/tex/cslatex/cspsfonts/il2pcr.fd + texmf-dist/tex/cslatex/cspsfonts/il2phv.fd + texmf-dist/tex/cslatex/cspsfonts/il2phvn.fd + texmf-dist/tex/cslatex/cspsfonts/il2pnc.fd + texmf-dist/tex/cslatex/cspsfonts/il2ppl.fd + texmf-dist/tex/cslatex/cspsfonts/il2ptm.fd + texmf-dist/tex/cslatex/cspsfonts/il2pzc.fd + texmf-dist/tex/cslatex/cspsfonts/nhelvet.sty + texmf-dist/tex/cslatex/cspsfonts/ntimes.sty + texmf-dist/tex/cslatex/cspsfonts/xl2pag.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pbk.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pcr.fd + texmf-dist/tex/cslatex/cspsfonts/xl2phv.fd + texmf-dist/tex/cslatex/cspsfonts/xl2phvn.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pnc.fd + texmf-dist/tex/cslatex/cspsfonts/xl2ppl.fd + texmf-dist/tex/cslatex/cspsfonts/xl2ptm.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pzc.fd +catalogue-contact-home http://petr.olsak.net/cstex/ +catalogue-ctan /macros/cstex/base/cslatex.tar.gz +catalogue-license gpl +catalogue-topics czech slovak format + +name cslatex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of cslatex +containersize 340 +containerchecksum 9459e008368fe10c646015c4bd54521e66458b7a5270ae1e326618443f8bda5a4ac5ce383805cf946cc47f0c6956b03cfdec914f04d91675ef1b80f15a590cfe +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/cslatex + bin/aarch64-linux/pdfcslatex + +name cslatex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of cslatex +containersize 340 +containerchecksum feee76385d4cacb8ad98a3e3ee49faa9f5b3aa5a31305f356c0c3e396aa734dce7f0951d1faffb4e0e1b16d78bec6a564854c8ece8aa904cad3345f839b6fb27 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/cslatex + bin/amd64-freebsd/pdfcslatex + +name cslatex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of cslatex +containersize 340 +containerchecksum 574649e51748132a055a43a44935bf14608110055afd17ed396ca4beea06951e1cafc0b7a57b47f6080b82721b3e6ffcb3acdb711f63e455d77a44c15b6c1b3f +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/cslatex + bin/amd64-netbsd/pdfcslatex + +name cslatex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of cslatex +containersize 340 +containerchecksum 32fbba47e9b6ae308b0e35c8497ebc369aa8a73fe611b2697260ed640193ea06cc6c3d79aff0d90552b822aff55e6c10a5e9d5cb92c457d55ffd5116afb0114a +binfiles arch=armhf-linux size=2 + bin/armhf-linux/cslatex + bin/armhf-linux/pdfcslatex + +name cslatex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of cslatex +containersize 344 +containerchecksum f5c060fd52e58b88915b7d3e041cc987753bf13a415d6943899b58eafb53b6e5b3682d663894c3e0edab9e7957e371555f70b68c3a626988cd631efa9c061e51 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/cslatex + bin/i386-cygwin/pdfcslatex + +name cslatex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of cslatex +containersize 340 +containerchecksum 4b7dc56299cb2da05ed2707818741cb06a1d85b78d58b1394bad7ed7df473a93c148c6a55f89d10239fe114ca24eaa55a9e6f65db39a2138e719574c183202e3 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/cslatex + bin/i386-freebsd/pdfcslatex + +name cslatex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of cslatex +containersize 340 +containerchecksum a5a4d6725473a1f5c8ab1e196bc994210b03770244ffd61d83843702a06973255510184f86debd9fa6d575a0f3db5282b958e09531acf2d73de801cc6f0dd1ef +binfiles arch=i386-linux size=2 + bin/i386-linux/cslatex + bin/i386-linux/pdfcslatex + +name cslatex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of cslatex +containersize 340 +containerchecksum 411e95966d70e35837e222bb7a0eb0787e2cfe5c28d9e6fd88ce9777df534c09b88a4a664c0a90c5546ffa9baf985ec837d4eac6d164f93bcc62d85ca66bf481 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/cslatex + bin/i386-netbsd/pdfcslatex + +name cslatex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of cslatex +containersize 340 +containerchecksum 237f4c281634666023a4cd2147083b1d436c182cbe7562ac0be111b717ce4146a4dd2de5dafe7739b65c74a10bacd623cc0e1c8fb3b16b8f5686881f08efbb1c +binfiles arch=i386-solaris size=2 + bin/i386-solaris/cslatex + bin/i386-solaris/pdfcslatex + +name cslatex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of cslatex +containersize 344 +containerchecksum db843ca55648887621bff83eea4045052b9aa8c1d8515d53fd8c608c4b5a9c2f6eabdbeed32ce1d3b1288cb06ca7e02410ad9f1ac8500db628f5b1e7fd0cdf62 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/cslatex + bin/universal-darwin/pdfcslatex + +name cslatex.win32 +category Package +revision 57883 +shortdesc win32 files of cslatex +containersize 884 +containerchecksum 3fd2a7680e7b673aa800d8a174f87d9b6dcec76779cf7efca3c3734a57da38490a84ccb896dcbb805f921455d6e4e4a95c7bd784cc90f3008130dcf4ac20d781 +binfiles arch=win32 size=2 + bin/win32/cslatex.exe + bin/win32/pdfcslatex.exe + +name cslatex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of cslatex +containersize 344 +containerchecksum 070023745759951e5c8938ed7c4fae24eb0e6ee585181e45de57073b3d84bac6401a6270ee836f6aa6a3ebac75dd46b12a601d0c3c5ff3f14037062d98727dde +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/cslatex + bin/x86_64-cygwin/pdfcslatex + +name cslatex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of cslatex +containersize 348 +containerchecksum 6022b313974e068b944aee185ce1b408e7d4cbbe1028786ef1b47700a04c6ae851d9ffe8c68863c2acdc57418f6e3a915ec1cddbb51d2635aee73a029fe1ca3c +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/cslatex + bin/x86_64-darwinlegacy/pdfcslatex + +name cslatex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of cslatex +containersize 340 +containerchecksum 421620207df5bb34cbf14280889fd0bf999a2ed59bc324b96adc87d37aa2bb1c03ee58fc06c5a58de99171ac102ddd01759520425d8a22727b02660c4ed6861b +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/cslatex + bin/x86_64-linux/pdfcslatex + +name cslatex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of cslatex +containersize 348 +containerchecksum 9f9595e8ecd2a26180a34decce0bd35f2237cbf4de3fbf1390aceeee7214fda81ef0e66a587a265b10a9a84d4e3a25a1eed6cc60bbe4da57d7891c0bc9f69390 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/cslatex + bin/x86_64-linuxmusl/pdfcslatex + +name cslatex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of cslatex +containersize 344 +containerchecksum a45c40f926208faa837405d46f035519c4094e4f958a7f603fd2189db192b6834a7fd0be6069c9f3915e3ea0dff35612ab941656b936ca635c85aa80b47a6a66 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/cslatex + bin/x86_64-solaris/pdfcslatex + +name csplain +category Package +revision 58353 +shortdesc Plain TeX multilanguage support +longdesc CSplain is a small extension of basic Plain TeX macros, the +longdesc formats csplain and pdfcsplain can be generated. It supports: +longdesc hyphenation of words for 50+ languages, simple and powerfull +longdesc font loading system (various sizes of fonts), TeX, pdfTeX, +longdesc XeTeX and LuaTeX engines, math fonts simply loaded with full +longdesc amstex-like features, three internal encodings (IL2 for +longdesc Czech/Slovak languages, T1 for many languages with latin +longdesc alphabet and Unicode in new TeX engines), natural UTF-8 input +longdesc in pdfTeX using encTeX without any active characters, Czech and +longdesc Slovak special typesetting features. An important part of the +longdesc package is OPmac, which implements most of LaTeX's features +longdesc (sectioning, font selection, color, hyper reference and urls, +longdesc bibliography, index, toc, tables,etc.) by Plain TeX macros. The +longdesc OPmac macros can generate and bibliography without any external +longdesc program. +depend cm +depend cs +depend csplain.ARCH +depend enctex +depend hyph-utf8 +depend hyphen-base +depend luatex +depend luatex85 +depend plain +depend tex +depend tex-ini-files +execute AddFormat name=csplain engine=pdftex options="-etex -enc csplain-utf8.ini" fmttriggers=cm,cs,hyphen-base,plain,enctex,hyph-utf8 +execute AddFormat name=luacsplain engine=luatex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain,tex-ini-files,luatex,luatex85 +execute AddFormat name=pdfcsplain engine=luatex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain,tex-ini-files,luatex,luatex85 +execute AddFormat name=pdfcsplain engine=pdftex options="-etex -enc csplain-utf8.ini" fmttriggers=cm,cs,hyphen-base,plain,enctex,hyph-utf8,tex-ini-files +execute AddFormat name=pdfcsplain engine=xetex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain +containersize 122364 +containerchecksum 27fc3fbb1aa29693fcd1d39abf92e3248fa769b8c4e0171948c2a7957e52dad2e08759050321401f7cb900285de62246bc0013d22141281111a82681c11802e4 +runfiles size=217 + texmf-dist/tex/csplain/base/csenc-k.tex + texmf-dist/tex/csplain/base/csenc-p.tex + texmf-dist/tex/csplain/base/csenc-u.tex + texmf-dist/tex/csplain/base/csenc-w.tex + texmf-dist/tex/csplain/base/cseplain.ini + texmf-dist/tex/csplain/base/csfonts.tex + texmf-dist/tex/csplain/base/csfontsm.tex + texmf-dist/tex/csplain/base/csplain-utf8.ini + texmf-dist/tex/csplain/base/csplain.ini + texmf-dist/tex/csplain/base/czhyphen.ex + texmf-dist/tex/csplain/base/czhyphen.tex + texmf-dist/tex/csplain/base/etex-mac.tex + texmf-dist/tex/csplain/base/extcode.tex + texmf-dist/tex/csplain/base/fonttabs.tex + texmf-dist/tex/csplain/base/hyphen.ex + texmf-dist/tex/csplain/base/hyphen.lan + texmf-dist/tex/csplain/base/il2code.tex + texmf-dist/tex/csplain/base/lua-hyphen.lan + texmf-dist/tex/csplain/base/luaplain.ini + texmf-dist/tex/csplain/base/plaina4.tex + texmf-dist/tex/csplain/base/skhyphen.ex + texmf-dist/tex/csplain/base/skhyphen.tex + texmf-dist/tex/csplain/base/t1code.tex + texmf-dist/tex/csplain/base/t1enc-u.tex + texmf-dist/tex/csplain/base/ucode.tex + texmf-dist/tex/csplain/base/uni-lcuc.tex + texmf-dist/tex/csplain/base/xeplain.ini + texmf-dist/tex/csplain/fonts/ams-math.tex + texmf-dist/tex/csplain/fonts/cavantga.tex + texmf-dist/tex/csplain/fonts/cbookman.tex + texmf-dist/tex/csplain/fonts/chars-8z.tex + texmf-dist/tex/csplain/fonts/chelvet.tex + texmf-dist/tex/csplain/fonts/cncent.tex + texmf-dist/tex/csplain/fonts/cpalatin.tex + texmf-dist/tex/csplain/fonts/cs-adventor.tex + texmf-dist/tex/csplain/fonts/cs-all.tex + texmf-dist/tex/csplain/fonts/cs-antt.tex + texmf-dist/tex/csplain/fonts/cs-arev.tex + texmf-dist/tex/csplain/fonts/cs-baskerx.tex + texmf-dist/tex/csplain/fonts/cs-bera.tex + texmf-dist/tex/csplain/fonts/cs-bonum.tex + texmf-dist/tex/csplain/fonts/cs-charter.tex + texmf-dist/tex/csplain/fonts/cs-cursor.tex + texmf-dist/tex/csplain/fonts/cs-ebgaramond.tex + texmf-dist/tex/csplain/fonts/cs-heros.tex + texmf-dist/tex/csplain/fonts/cs-heuristica.tex + texmf-dist/tex/csplain/fonts/cs-iwona.tex + texmf-dist/tex/csplain/fonts/cs-kurier.tex + texmf-dist/tex/csplain/fonts/cs-libertine.tex + texmf-dist/tex/csplain/fonts/cs-pagella.tex + texmf-dist/tex/csplain/fonts/cs-polta.tex + texmf-dist/tex/csplain/fonts/cs-schola.tex + texmf-dist/tex/csplain/fonts/cs-termes.tex + texmf-dist/tex/csplain/fonts/ctimes.tex + texmf-dist/tex/csplain/fonts/cyrchars.tex + texmf-dist/tex/csplain/fonts/dcfonts.tex + texmf-dist/tex/csplain/fonts/ecfonts.tex + texmf-dist/tex/csplain/fonts/exchars.tex + texmf-dist/tex/csplain/fonts/ff-mac.tex + texmf-dist/tex/csplain/fonts/glyphtounicode-cs.tex + texmf-dist/tex/csplain/fonts/ki-math.tex + texmf-dist/tex/csplain/fonts/kp-fonts.tex + texmf-dist/tex/csplain/fonts/kp-math.tex + texmf-dist/tex/csplain/fonts/lmfonts.tex + texmf-dist/tex/csplain/fonts/luafonts.tex + texmf-dist/tex/csplain/fonts/ntx-math.tex + texmf-dist/tex/csplain/fonts/pazo-math.tex + texmf-dist/tex/csplain/fonts/tx-math.tex + texmf-dist/tex/csplain/fonts/uni-math.tex + texmf-dist/tex/csplain/fonts/unifam.tex + texmf-dist/tex/csplain/opmac/fontfam-catalog.tex + texmf-dist/tex/csplain/opmac/fontfam-global.tex + texmf-dist/tex/csplain/opmac/fontfam.tex + texmf-dist/tex/csplain/opmac/op-example.bib + texmf-dist/tex/csplain/opmac/opmac-bib-iso690.tex + texmf-dist/tex/csplain/opmac/opmac-bib-simple.tex + texmf-dist/tex/csplain/opmac/opmac-bib.tex + texmf-dist/tex/csplain/opmac/opmac-luatex.tex + texmf-dist/tex/csplain/opmac/opmac-xetex.tex + texmf-dist/tex/csplain/opmac/opmac.tex + 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-license other-free +catalogue-topics czech slovak format +catalogue-version Mar. 2021 + +name csplain.aarch64-linux +category Package +revision 50528 +shortdesc aarch64-linux files of csplain +containersize 372 +containerchecksum af0a8b0df2f73806fd766027a09b2d9db81bc54878b3c61c67e2031645af42128382c2fde6271cfab1313d33fe115f8253e1c896330ffcb1078068bb8f41c0b1 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/csplain + bin/aarch64-linux/luacsplain + bin/aarch64-linux/pdfcsplain + +name csplain.amd64-freebsd +category Package +revision 50528 +shortdesc amd64-freebsd files of csplain +containersize 372 +containerchecksum 9fc7c078c79769f1f939bdfbe3ff7a42bcaf97edd29faa1f4e75396e0bef57f120e256de03ebb06de83c0c8652c60313c41eaa9d4b41372d381512d6e6a84a72 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/csplain + bin/amd64-freebsd/luacsplain + bin/amd64-freebsd/pdfcsplain + +name csplain.amd64-netbsd +category Package +revision 50607 +shortdesc amd64-netbsd files of csplain +containersize 368 +containerchecksum 358dc81819e36b96b56abc1a8872b0822c7ccb90d5a477a31734272a745d8127d69dab89d9c19ffe9a251244ac49e187ec5e67d16731cd08adce221757410d13 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/csplain + bin/amd64-netbsd/luacsplain + bin/amd64-netbsd/pdfcsplain + +name csplain.armhf-linux +category Package +revision 50528 +shortdesc armhf-linux files of csplain +containersize 368 +containerchecksum 50c470491cb217d8a38429c07033c33343686c6491f69b8ef65b1b164248032e705a2001968689e613b2a43cd314dd6e95d9bbcec0dcc393b33f2e9718423434 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/csplain + bin/armhf-linux/luacsplain + bin/armhf-linux/pdfcsplain + +name csplain.i386-cygwin +category Package +revision 50544 +shortdesc i386-cygwin files of csplain +containersize 368 +containerchecksum 80b9025839b28e3f1b6d6d39ab8a8206227cb7523bf1bc215e70e0298bad71932891021adc6051f255a81dd75ce7fe1a10c9c36a4df54c841f0a9bd13c7e1c9a +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/csplain + bin/i386-cygwin/luacsplain + bin/i386-cygwin/pdfcsplain + +name csplain.i386-freebsd +category Package +revision 50528 +shortdesc i386-freebsd files of csplain +containersize 368 +containerchecksum 024cad98cabd462c02cb5e5cb88fa65ffe062a54162572812398d1349fcc74a30558bc45437e0f6003a567053e6a34eaa4002c0cf6bb8824315e3dae6eb28117 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/csplain + bin/i386-freebsd/luacsplain + bin/i386-freebsd/pdfcsplain + +name csplain.i386-linux +category Package +revision 50528 +shortdesc i386-linux files of csplain +containersize 368 +containerchecksum 0438b1d0418dc1a0d62f348a9b94419a6445e2ac8c6f0e4a92d7f9e7d5cc8bb534e080b57fa2cd8451e2833c7f93eb65b3f1dee47ed785de45805d9d1f4d421c +binfiles arch=i386-linux size=3 + bin/i386-linux/csplain + bin/i386-linux/luacsplain + bin/i386-linux/pdfcsplain + +name csplain.i386-netbsd +category Package +revision 50607 +shortdesc i386-netbsd files of csplain +containersize 368 +containerchecksum c3a1a581d6a3485086b2c7dbd5974e49dd57f675ce51e0aeb64600b624421bbc36f6a61ff9869a201d2394adb96d669cd17f42a9b6e1e635af9225aa0b93451d +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/csplain + bin/i386-netbsd/luacsplain + bin/i386-netbsd/pdfcsplain + +name csplain.i386-solaris +category Package +revision 50528 +shortdesc i386-solaris files of csplain +containersize 368 +containerchecksum 6806d78fdf76bd57d800d9f1701bf1c4fa8b303256d7175627b05f3169b127e9690ec12d3389efa8ea7968431def9301977825292d960e697f7b61f6f0291fbe +binfiles arch=i386-solaris size=3 + bin/i386-solaris/csplain + bin/i386-solaris/luacsplain + bin/i386-solaris/pdfcsplain + +name csplain.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of csplain +containersize 360 +containerchecksum 74ab7a6e09e142a8e6e4da72d955463c901f42327462aaa5bf19e81f24c2f63595fa1e0ce045d45eafd2d37ca35afa431ee28f66f3f43a0a567ab994d6afa350 +binfiles arch=universal-darwin size=3 + bin/universal-darwin/csplain + bin/universal-darwin/luacsplain + bin/universal-darwin/pdfcsplain + +name csplain.win32 +category Package +revision 57883 +shortdesc win32 files of csplain +containersize 912 +containerchecksum a3ba21f3fa21fd10c8c78d0a0865b19c092ae1ca759c24145d3068d3ebeb263cb7b19d6f6f5aec17fe7e5675708da2dec724e63005eb752c7adb46f78c05cce8 +binfiles arch=win32 size=3 + bin/win32/csplain.exe + bin/win32/luacsplain.exe + bin/win32/pdfcsplain.exe + +name csplain.x86_64-cygwin +category Package +revision 50544 +shortdesc x86_64-cygwin files of csplain +containersize 372 +containerchecksum dbad5ed40510cfa748013cbee3fea2ed8d2db1ae6f2429043914a3f741530ab45e197f6f6d8811d54f501786a7634417c89e19e0c82be6d7d5c4c08d5ff28162 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/csplain + bin/x86_64-cygwin/luacsplain + bin/x86_64-cygwin/pdfcsplain + +name csplain.x86_64-darwinlegacy +category Package +revision 50528 +shortdesc x86_64-darwinlegacy files of csplain +containersize 376 +containerchecksum 9d326b5283bf685369c78a7c02d1d86ed2df2c2fd4e57ae014fea4bb28cc629ae7e45cf85a39f3658f45f5c26f193e36c5d30f2bd0d14fe8578262d961688f4e +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/csplain + bin/x86_64-darwinlegacy/luacsplain + bin/x86_64-darwinlegacy/pdfcsplain + +name csplain.x86_64-linux +category Package +revision 50528 +shortdesc x86_64-linux files of csplain +containersize 368 +containerchecksum f9e53fb2818a1d8f265f6ae66223d5c4f336c765bad1b1a264897ca792c90d75f85a8a268ea664cf8004c436d744023c52e05003ed51b69d8a4735be0521ab41 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/csplain + bin/x86_64-linux/luacsplain + bin/x86_64-linux/pdfcsplain + +name csplain.x86_64-linuxmusl +category Package +revision 50528 +shortdesc x86_64-linuxmusl files of csplain +containersize 376 +containerchecksum e8974faab59cabc016de57e46561f5f4396ffad000709c6e7865dd1c3799c9989634a22d6d638ffcf2a86dce778b5536590d19e6ee46a4c022fc3687c3d3622f +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/csplain + bin/x86_64-linuxmusl/luacsplain + bin/x86_64-linuxmusl/pdfcsplain + +name csplain.x86_64-solaris +category Package +revision 50528 +shortdesc x86_64-solaris files of csplain +containersize 372 +containerchecksum 5bb6878f3f49996b690524beaccd2ad39546171b926801515612bae9f5f00b8b069879f5be2b384a24194d216614a61f4a943c2370ed30820e437f4dc6927d23 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/csplain + bin/x86_64-solaris/luacsplain + bin/x86_64-solaris/pdfcsplain + +name csquotes +category Package +revision 57844 +shortdesc Context sensitive quotation facilities +relocated 1 +longdesc This package provides advanced facilities for inline and +longdesc display quotations. It is designed for a wide range of tasks +longdesc ranging from the most simple applications to the more complex +longdesc demands of formal quotations. The facilities include commands, +longdesc environments, and user-definable 'smart quotes' which +longdesc dynamically adjust to their context. Quotation marks are +longdesc switched automatically if quotations are nested and they can be +longdesc adjusted to the current language if the babel package is +longdesc available. There are additional facilities designed to cope +longdesc with the more specific demands of academic writing, especially +longdesc in the humanities and the social sciences. All quote styles as +longdesc well as the optional active quotes are freely configurable. The +longdesc package is dependent on e-TeX, and requires the author's +longdesc etoolbox package. +depend etoolbox +containersize 17924 +containerchecksum c783ac945ed324cfbefad1c614010a1b1bf6774d7961a085ecdfe1a870d80134a86ef6bec6b0114f9274a83f292b22ecd21d8568977d8f7c07dda084b5bfb348 +doccontainersize 316964 +doccontainerchecksum 7a7ea8568c647fb06c5e309bdc64e48ef6f57f31b1cd7957e47f1a4a7897c9bd37ffe8ce4a17452db584546db741319baf90dbe99b5c3fe666dff5ecf53a843e +docfiles size=104 + RELOC/doc/latex/csquotes/README.md details="Package README" + RELOC/doc/latex/csquotes/csquotes.pdf details="Tutorial on use of the package" + RELOC/doc/latex/csquotes/csquotes.tex +runfiles size=25 + RELOC/tex/latex/csquotes/csq-compat.def + RELOC/tex/latex/csquotes/csquotes.cfg + RELOC/tex/latex/csquotes/csquotes.def + RELOC/tex/latex/csquotes/csquotes.sty +catalogue-ctan /macros/latex/contrib/csquotes +catalogue-license lppl1.3c +catalogue-topics quote-marks etex +catalogue-version 5.2l + +name csquotes-de +category Package +revision 23371 +shortdesc German translation of csquotes documentation +relocated 1 +longdesc This is a translation of the documentation of csquotes version +longdesc 5.1. +containersize 400 +containerchecksum 7d4667b77f1e27acb1d3c8becaad4889910edaab4b9da6b0fe821db262f3a31672050f5985a56533003178fbf1d579d170be3fcd22c31bbf41af9bcb68fb7c40 +doccontainersize 321176 +doccontainerchecksum 1e8829faf2cb23b2e565a4b5daa5a09ef01d590d920444ee4659964bee042148ea19e9fbcb63e4c4ea1e2698697554e0bc532fa0fb7610bbf9bb4bca234d33d5 +docfiles size=143 + RELOC/doc/latex/csquotes-de/LIESMICH details="Readme" language="de" + 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-license lppl +catalogue-topics quote-marks translation +catalogue-version 1.01 + +name css-colors +category Package +revision 54512 +shortdesc Named colors for web-safe design +relocated 1 +longdesc This package defines web-safe colors for use with D.P. +longdesc Carlisle's color package. It is intended for both authors and +longdesc package writers (e.g. to create Beamer color themes). +containersize 2236 +containerchecksum cebeb4e7cd71ecb1a502f6788fa62284f2d9e3e4afcdc1ddce585e94683a42b20e7b9838ff5c85fc0634894898d8061e01de79e062946e943b315d2970ad126c +doccontainersize 2090188 +doccontainerchecksum 6299617c5740f104b59e850ca826a2906d63ef3564b6730b01decb4f7707828e28ae3de2d44dc851c094abb702a00a9a4cb2bc61f18f020dc37c04e189521c1b +docfiles size=521 + RELOC/doc/latex/css-colors/README.txt details="Readme" + RELOC/doc/latex/css-colors/css-colors.pdf details="List of colours" + RELOC/doc/latex/css-colors/css-colors.xlsx +runfiles size=2 + RELOC/tex/latex/css-colors/css-colors.sty +catalogue-ctan /macros/latex/contrib/css-colors +catalogue-license lppl gpl +catalogue-topics colour +catalogue-version 1.02 + +name cstex +category Package +revision 58354 +shortdesc Support for Czech/Slovak languages +relocated 1 +longdesc This package mirrors the macros part of the home site's +longdesc distribution of CSTeX. The licence (modified GPL) applies to +longdesc some of the additions that make it a Czech/Slovak language +longdesc distribution, rather than the distribution of a basic +longdesc Plain/LaTeX distribution. +containersize 516 +containerchecksum bc27207c1b7ee821f876f9adbe6187b6e6c1c5d0fd207a99bb76fa8a01f3738012150c96fd2d16e99a2736a11f8505696d1ea6e22426dc5049a43be9116f5585 +doccontainersize 3963200 +doccontainerchecksum f9cc9398ecbe1e2d97391f27d9c997cd730c33f275708e399fd5604239f68bda7a408cc2e7ec3ba8220173090d4f5fa3771825c7904f7f4a81a477b16fae0ac9 +docfiles size=1156 + RELOC/doc/cstex/00-README-cslatex + RELOC/doc/cstex/INSTALL.cslatex + RELOC/doc/cstex/README-csplain + RELOC/doc/cstex/README-cspsfont + RELOC/doc/cstex/README-doc + RELOC/doc/cstex/README-opmac + RELOC/doc/cstex/README.cslatex + RELOC/doc/cstex/cspsfonts-gen/README details="Readme" language="cs" + RELOC/doc/cstex/cspsfonts-gen/fontgen + RELOC/doc/cstex/cspsfonts-gen/kernoff.c + RELOC/doc/cstex/cspsfonts-gen/mkf + RELOC/doc/cstex/cspsfonts-gen/mkfc + RELOC/doc/cstex/cspsfonts-gen/xl2.enc + RELOC/doc/cstex/cspsfonts-gen/xt2.enc + RELOC/doc/cstex/cstexman.pdf details="User manual" language="cs" + RELOC/doc/cstex/cstexman.tex + RELOC/doc/cstex/jemny.errata + RELOC/doc/cstex/jemny.pdf + RELOC/doc/cstex/jemny.tar.gz + RELOC/doc/cstex/kpfonts-plain.tex + RELOC/doc/cstex/lic-gpl.eng + RELOC/doc/cstex/opmac-d.tex + RELOC/doc/cstex/opmac-u-en.pdf + RELOC/doc/cstex/opmac-u-en.tex + RELOC/doc/cstex/opmac-u.pdf + RELOC/doc/cstex/opmac-u.tex + RELOC/doc/cstex/pdfuni-article.pdf + RELOC/doc/cstex/pdfuni-article.tex + RELOC/doc/cstex/prvni.pdf + RELOC/doc/cstex/prvni.tex + RELOC/doc/cstex/test8z.pdf + RELOC/doc/cstex/test8z.tex + RELOC/doc/cstex/testgyre8z.pdf + RELOC/doc/cstex/testgyre8z.tex + RELOC/doc/cstex/testlat.tex + RELOC/doc/cstex/zmeny.txt +catalogue-also cslatex +catalogue-contact-home http://math.feld.cvut.cz/olsak/cstex/ +catalogue-ctan /macros/cstex +catalogue-license other-free +catalogue-topics distribution + +name cstypo +category Package +revision 41986 +shortdesc Czech typography rules enforced through LuaTeX hooks +relocated 1 +longdesc This package provides macros that enforce basic Czech +longdesc typography rules through Lua hooks available in LuaTeX. +containersize 2064 +containerchecksum ecc9054a0866e4926277bf5f52faf97b0b07f0ea660b7c4d089a552ab57d3a900cd1d688981770df9b3a4285c3d451fb23f1b69757381f3cbdf88cf0c88cf61c +doccontainersize 104240 +doccontainerchecksum 1ac42bcd1cadde9165f8edceadb438c4c2e91d6a89486e56e31623cf1ffdd5f38ec800d836dc90a5a6a0bc48dfac4a8ec90192319f8f046665c77e91fc51b91d +docfiles size=33 + RELOC/doc/lualatex/cstypo/LICENSE + RELOC/doc/lualatex/cstypo/README.md details="Readme" + RELOC/doc/lualatex/cstypo/cstypo.pdf details="User Manual" + RELOC/doc/lualatex/cstypo/cstypo.tex + RELOC/doc/lualatex/cstypo/cstypotest.pdf details="Example of use" + RELOC/doc/lualatex/cstypo/cstypotest.tex +runfiles size=4 + RELOC/tex/lualatex/cstypo/cstypo.sty + RELOC/tex/luatex/cstypo/cstypo-tex.tex + RELOC/tex/luatex/cstypo/cstypo.lua +catalogue-contact-repository https://github.com/wilx/cstypo +catalogue-ctan /macros/luatex/generic/cstypo +catalogue-license mit +catalogue-topics luatex czech +catalogue-version 0.03 + +name csvmerge +category Package +revision 51857 +shortdesc Merge TeX code with csv data +relocated 1 +longdesc This package provides macros for processing a csv spreadsheet +longdesc file with a minimum of configuration for the csv file. The +longdesc first row names the columns and the remaining rows are data. +longdesc This data can be merged with TeX code residing in an auxiliary +longdesc file and the process repeated for each data row. There is one +longdesc macro to set things up, one to extract the data, and one to +longdesc tell if the field is empty or not. The documentation contains +longdesc examples. +containersize 2940 +containerchecksum f3f679127d912a8df32893f0afec13b21a272b6e5ed2d2c147e1bcbea5698e043d88d5dcadc0c772f5640945fdbbf4ff43655d6d4450b48966740cd3cb936829 +doccontainersize 218408 +doccontainerchecksum b090bd51f547f16270534c2305ba68af9f86800f55809b050eea25d5566be3a3ce245ad0f79a76ed21ac64b68b6650800fba5a5ad942cc1f3f8e982f56ba5286 +docfiles size=55 + RELOC/doc/latex/csvmerge/README details="Readme" + RELOC/doc/latex/csvmerge/csvmerge.pdf details="Package documentation" +srccontainersize 13912 +srccontainerchecksum b189b456daf9a54cf8fa09706f93de7e8365d75b792336a8328414d589ffa178ff0c39c17064b532316fc778b73b000610b3f966f9eb0d8e526cf1fd5b4bdd58 +srcfiles size=13 + RELOC/source/latex/csvmerge/csvmerge.dtx + RELOC/source/latex/csvmerge/csvmerge.ins +runfiles size=3 + RELOC/tex/latex/csvmerge/csvmerge.sty +catalogue-ctan /macros/latex/contrib/csvmerge +catalogue-license lppl1.3 +catalogue-topics csv-support +catalogue-version 1.0 + +name csvsimple +category Package +revision 51010 +shortdesc Simple CSV file processing +relocated 1 +longdesc The package provides a simple LaTeX interface for the +longdesc processing of files with comma separated values (CSV); it +longdesc relies on the key value syntax supported by pgfkeys to simplify +longdesc usage. Filtering and table generation are especially supported; +longdesc however, this lightweight tool offers no support for data +longdesc sorting or data base storage. The package depends on etoolbox, +longdesc ifthen, pgfrcs, pgfkeys, and shellesc. +containersize 5568 +containerchecksum c071fb93d269e27c7059919213a858d82bb5fc381d8a9a0faf82ad0b05eaac808dbfc19c30c8530a98582f3179a01774de78b0f290a15d4ef79e06eef0a9aba8 +doccontainersize 752344 +doccontainerchecksum da691d9d44e1624ccab48e5979ae9ecb8697387a19280602c28467c8f2aefbafc494067217836a09a6ba1a653c8fd3a7903e3607ca56922ebf47870bea49c583 +docfiles size=246 + RELOC/doc/latex/csvsimple/CHANGES + RELOC/doc/latex/csvsimple/README details="Readme" language="en" + RELOC/doc/latex/csvsimple/amountsort.xml + RELOC/doc/latex/csvsimple/catsort.xml + RELOC/doc/latex/csvsimple/csvsimple-example.pdf details="example of use" language="en" + RELOC/doc/latex/csvsimple/csvsimple-example.tex + RELOC/doc/latex/csvsimple/csvsimple.pdf details="Package documentation" language="en" + RELOC/doc/latex/csvsimple/csvsimple.tex + RELOC/doc/latex/csvsimple/encoding.xml + RELOC/doc/latex/csvsimple/gradesort.xml + RELOC/doc/latex/csvsimple/matriculationsort.xml + RELOC/doc/latex/csvsimple/namesort.xml + RELOC/doc/latex/csvsimple/transform.xml +runfiles size=7 + RELOC/tex/latex/csvsimple/csvsimple.sty +catalogue-also csvtools datatool +catalogue-ctan /macros/latex/contrib/csvsimple +catalogue-license lppl1.3 +catalogue-topics data-import data-disp csv-support +catalogue-version 1.21 + +name ctable +category Package +revision 38672 +shortdesc Flexible typesetting of table and figure floats using key/value directives +relocated 1 +longdesc Provides commands to typeset centered, left- or right-aligned +longdesc table and (multiple-)figure floats, with footnotes. Instead of +longdesc an environment, a command with 4 arguments is used; the first +longdesc is optional and is used for key,value pairs generating +longdesc variations on the defaults and offering a route for future +longdesc extensions. +containersize 3620 +containerchecksum 3192df463eb4d307ba886b82d586580a741da8d901dc560c06d293e04c5d5af9efff56a1482bc41b03aeaade2cc25cdf6f4dda3e1baa26da1f7d4d138f44bebc +doccontainersize 698160 +doccontainerchecksum a32bc9c82a87f1f9327d5cbf4c15052124608f970ecda1909aa67abcc2fb4f10bdfcbb5568d8af9332687817f6f5bd6aaa0ce4843490e8ffac22526bbe123fdd +docfiles size=243 + RELOC/doc/latex/ctable/01a + RELOC/doc/latex/ctable/01b + RELOC/doc/latex/ctable/02k + RELOC/doc/latex/ctable/02l + RELOC/doc/latex/ctable/02m + RELOC/doc/latex/ctable/03a + RELOC/doc/latex/ctable/03b + RELOC/doc/latex/ctable/04a + RELOC/doc/latex/ctable/04b + RELOC/doc/latex/ctable/05a + RELOC/doc/latex/ctable/05b + RELOC/doc/latex/ctable/05c + RELOC/doc/latex/ctable/06a + RELOC/doc/latex/ctable/06b + RELOC/doc/latex/ctable/07a + RELOC/doc/latex/ctable/07b + RELOC/doc/latex/ctable/08a + RELOC/doc/latex/ctable/08b + RELOC/doc/latex/ctable/09b + RELOC/doc/latex/ctable/10a + RELOC/doc/latex/ctable/10b + RELOC/doc/latex/ctable/12a + RELOC/doc/latex/ctable/12b + RELOC/doc/latex/ctable/13a + RELOC/doc/latex/ctable/13b + RELOC/doc/latex/ctable/13c + RELOC/doc/latex/ctable/14a + RELOC/doc/latex/ctable/README details="Readme" + RELOC/doc/latex/ctable/ctable.pdf details="Package documentation" + RELOC/doc/latex/ctable/doit + RELOC/doc/latex/ctable/inst + RELOC/doc/latex/ctable/lion.png + RELOC/doc/latex/ctable/penguin.jpg +srccontainersize 14844 +srccontainerchecksum 9886347fdf0a1a7105ab33bba00877ce22df66b1d82a60b8818af063da371d8c0c6d8f60252342dfe44bbaa65ba9a93ac8f972c64439bea7296b9e98e1be4b41 +srcfiles size=14 + RELOC/source/latex/ctable/ctable.dtx + RELOC/source/latex/ctable/ctable.ins +runfiles size=3 + RELOC/tex/latex/ctable/ctable.sty +catalogue-ctan /macros/latex/contrib/ctable +catalogue-license lppl +catalogue-topics table float +catalogue-version 1.31 + +name ctablestack +category Package +revision 38514 +shortdesc Catcode table stable support +relocated 1 +longdesc This package provides a method for defining category code table +longdesc stacks in LuaTeX. It builds on code provided by the 2015/10/01 +longdesc release of LaTeX2e (also available as ltluatex.sty for plain +longdesc users). It is required by the luatexbase package (v1.0 onward) +longdesc which uses ctablestack to provide a back-compatibility form of +longdesc this concept. +containersize 1128 +containerchecksum 3485fbd1bebf80814645c1be3e7358a959637439fa17cbbf7c2478ca73c4312cab82eed2aedb5403dfe94b0cfc09ee3e9c8182c08d3708608a267da235ab30a0 +doccontainersize 151908 +doccontainerchecksum 2c74b9d2aa44b25952307e4593b4a792cb5d98b78619efef82ddfb134ee3da64de87973db30f3e5d5788ce5e6ef138fca2cabc4ed412c97cfa7b3dc6c3ed1060 +docfiles size=38 + RELOC/doc/luatex/ctablestack/README.md details="Readme" + RELOC/doc/luatex/ctablestack/ctablestack.pdf details="Package documentation" +srccontainersize 2524 +srccontainerchecksum c39356d4d78cc8121b20e572fe59879541ab533ceab64e68f17a346723aad4f73103df79b1711feb12337e5e2dcb56222b00a9b36ddcbc04fb5e946831340d6d +srcfiles size=3 + RELOC/source/luatex/ctablestack/ctablestack.dtx + RELOC/source/luatex/ctablestack/ctablestack.ins +runfiles size=1 + RELOC/tex/luatex/ctablestack/ctablestack.sty +catalogue-ctan /macros/luatex/generic/ctablestack +catalogue-license lppl1.3 +catalogue-topics luatex +catalogue-version 1.0 + +name ctan-o-mat +category Package +revision 51578 +shortdesc Upload or validate a package for CTAN +longdesc This program can be used to automate the upload of a package to +longdesc CTAN. The description of the package is contained in a +longdesc configuration file. The provided information is validated in +longdesc any case. If the validation succeeds and not only the +longdesc validation is requested, then the provided archive file will be +longdesc placed in the incoming area of the CTAN for further processing +longdesc by the CTAN team. In any case any finding during the validation +longdesc is reported at the end of the processing. Note that the +longdesc validation is the default and an official submission has to be +longdesc requested by an appropriate command line option. ctan-o-mat +longdesc requires an Internet connection to the CTAN server. Even the +longdesc validation retrieves the known attributes and the basic +longdesc constraints from the server. +depend ctan-o-mat.ARCH +containersize 5968 +containerchecksum a995dfc6d79ba77fe673aa501f28eaf9f057c34501fa032423569317e5a4eed048c3375d806eafacedefec02e91bcb587fa6bfb8c0ff980395bb877b2ce88c4c +doccontainersize 54812 +doccontainerchecksum 423efc3f2f850c5a9bcbe787edb8155ef76e56ce5e3a1ba3332bb465b8239616bd1fcff2e8a58db6f5ce9d5191ae3209a5451f746250a3b081fe9b35d024eebd +docfiles size=26 + texmf-dist/doc/man/man1/ctan-o-mat.1 + texmf-dist/doc/man/man1/ctan-o-mat.man1.pdf + texmf-dist/doc/support/ctan-o-mat/LICENSE + texmf-dist/doc/support/ctan-o-mat/README.md details="Readme" + texmf-dist/doc/support/ctan-o-mat/ctan-o-mat + texmf-dist/doc/support/ctan-o-mat/ctan-o-mat.bat + texmf-dist/doc/support/ctan-o-mat/ctan-o-mat.pdf details="Package documentation" + texmf-dist/doc/support/ctan-o-mat/ctan-o-mat.pkg + texmf-dist/doc/support/ctan-o-mat/lib/md2ltx.pl + texmf-dist/doc/support/ctan-o-mat/makefile +runfiles size=5 + texmf-dist/scripts/ctan-o-mat/ctan-o-mat.pl +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-license bsd3 +catalogue-topics ctan +catalogue-version 1.2 + +name ctan-o-mat.aarch64-linux +category Package +revision 47001 +shortdesc aarch64-linux files of ctan-o-mat +containersize 344 +containerchecksum 44b73a9c193c2f39d9938b69477b95de53b9bc9be299e9dcb07f3586ce2a3f6f0b5d6da706828e3673c59571a99ebf9fd17164e8e1af975148caf0a8069d002a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctan-o-mat + +name ctan-o-mat.amd64-freebsd +category Package +revision 47009 +shortdesc amd64-freebsd files of ctan-o-mat +containersize 344 +containerchecksum 120fc79e1795b9655bd8f20fcebbefcfe99bfb4e5a6d1a5142ccf81e339cecd36fc854dcc7aef5987f14e2ebd6fb42a978348129f19566e48e2f08458965821a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctan-o-mat + +name ctan-o-mat.amd64-netbsd +category Package +revision 46999 +shortdesc amd64-netbsd files of ctan-o-mat +containersize 344 +containerchecksum 78085091452e4437a291063841134bb4294a14f497fcaf919903ba2e3659e86a0584b5705e14f24d9f0e4b315e4ed34e95a3d7472ed35cd1721ce9f83b7a6f83 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctan-o-mat + +name ctan-o-mat.armhf-linux +category Package +revision 47013 +shortdesc armhf-linux files of ctan-o-mat +containersize 344 +containerchecksum d1c396253433e3ab213864b88800be27ab06f9ece53eab980d5ba38dce9013897c80d352b50ff163bec6d3a3a6ffc1b6547026c528741db37f921a5636548365 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctan-o-mat + +name ctan-o-mat.i386-cygwin +category Package +revision 47461 +shortdesc i386-cygwin files of ctan-o-mat +containersize 340 +containerchecksum 299afb1a64801e0abadbbed353e428624b69cdf777f36b1aca99f792f3fb0cedc1aa27f1b59b95718607649218028ca6d0c5c82601f762ac16177cfd0904a3f4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctan-o-mat + +name ctan-o-mat.i386-freebsd +category Package +revision 47009 +shortdesc i386-freebsd files of ctan-o-mat +containersize 344 +containerchecksum 570d40f38f19325c430d7e6a7f9fe9e00283f8dc9824c07ad163cc9a842141348c451c6cdd7395dcab89914e2c483e9cb4b31ba0e19ca081096b0d961fcd57df +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctan-o-mat + +name ctan-o-mat.i386-linux +category Package +revision 46996 +shortdesc i386-linux files of ctan-o-mat +containersize 344 +containerchecksum 306470ec7e9970d75952cb42d1c79b89aa496d4aa43b0be20e0cba0f72b2fd9ccd21bb8ccce7da3c7535c03ab43579495890acd18589403aa83526be12e76aab +binfiles arch=i386-linux size=1 + bin/i386-linux/ctan-o-mat + +name ctan-o-mat.i386-netbsd +category Package +revision 46999 +shortdesc i386-netbsd files of ctan-o-mat +containersize 344 +containerchecksum 7fc61d6f98c1fa9f5c3dc7dc88b7e8fa821a0d4bb9e04e392db4a5f2401a3a7b6c0b44766540739d422a43776c03c34fb6caaa453e895639a70215faacf9748c +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctan-o-mat + +name ctan-o-mat.i386-solaris +category Package +revision 46997 +shortdesc i386-solaris files of ctan-o-mat +containersize 344 +containerchecksum cbb98c0cf5917094d3f71666c25883e248f4208502da267f71098f38fbdce952b12b108b1b73f8342cec7aab4c414c762ef31434614dab3de0d169422688eeac +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctan-o-mat + +name ctan-o-mat.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ctan-o-mat +containersize 344 +containerchecksum 7436012aaf6aca42b5eb2a3418c7dd5f1d1f5758423b368593b4bb54bf025090ef16416ada42a8f035ae1cb594e4a801b43518525b67c9b99dfd0c4b11f772f0 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ctan-o-mat + +name ctan-o-mat.win32 +category Package +revision 51578 +shortdesc win32 files of ctan-o-mat +containersize 684 +containerchecksum 2bb713d4b6f0ac5c72e7070f73d925ae240ad5183db9f8ca2c1f46f28494e41d48b0b662f10378203865597661743b970bc2af4e0f927b4359933cec46673d28 +binfiles arch=win32 size=1 + bin/win32/ctan-o-mat.exe + +name ctan-o-mat.x86_64-cygwin +category Package +revision 47461 +shortdesc x86_64-cygwin files of ctan-o-mat +containersize 344 +containerchecksum 6d12b14568afd8751736e1e7451714932f07a2223923cf28aa5c4ee084538dd7ea05807962ab5cd330f4243ffadfd1b2691492cd14f8b2f48100f7d46d0605c1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctan-o-mat + +name ctan-o-mat.x86_64-darwinlegacy +category Package +revision 46995 +shortdesc x86_64-darwinlegacy files of ctan-o-mat +containersize 352 +containerchecksum 52bc779e6220c25e9081acd0919d504fcdae9f0ce44d063fc5ff2b45e3d23f1a3de98e93d47725fca75b70e5f17b578ab05fd86d016f54cb4c0f1c4908ac32bb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctan-o-mat + +name ctan-o-mat.x86_64-linux +category Package +revision 47020 +shortdesc x86_64-linux files of ctan-o-mat +containersize 344 +containerchecksum 2d4e2232f2cb1d1c2be84210f81565afaccb311669a537c78d6e4f3432df6d9d1c49cf367777c0676ec2a68ceb62200bfad6df0bdfdad4d6aa64f118d4e7276a +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctan-o-mat + +name ctan-o-mat.x86_64-linuxmusl +category Package +revision 47036 +shortdesc x86_64-linuxmusl files of ctan-o-mat +containersize 348 +containerchecksum cec4ef4c8c2396ca20a9c5747dd4c141a11af7433fcfed22a8dd96dd4661c05e43d2358ce722bec3088748f9f252918ba90465351ea00a9758b5880fb9d8bafb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctan-o-mat + +name ctan-o-mat.x86_64-solaris +category Package +revision 46997 +shortdesc x86_64-solaris files of ctan-o-mat +containersize 344 +containerchecksum 3eccbafea9b327bfa2b368691be79867ebd09e7d119e0c9b01a5a75019f4cba5b03b53d8002e57f5422eda5338436d1bd8121127ee24cd752fcd575ba7cdec91 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctan-o-mat + +name ctan_chk +category Package +revision 36304 +shortdesc CTAN guidelines verifier and corrector for uploading projects +relocated 1 +longdesc Basic gawk program that uses CTAN's published guidelines for +longdesc authors to help eliminate sloppiness in uploaded +longdesc files/projects. It is completely open for users to program +longdesc additional guidelines as well as CTAN's future adjustments. +containersize 512 +containerchecksum 6eabd7281d79ff0ad19080350dfcca8ee3a33ddfa6d17827a7851cc53f09f627729c8d715a1dfe50e0c079add44331a07d543cb8b6a57000efa6d73c30f2ffe0 +doccontainersize 221996 +doccontainerchecksum c61bc0d70cadcc4382dae55cdc1af076882801321a2de16f164223267732e476e41f949f566808c928f446d69aa22bd9965adb155c97905e32b93808810c76c0 +docfiles size=64 + RELOC/doc/support/ctan_chk/README details="Readme" + RELOC/doc/support/ctan_chk/ctan_chk.gawk + RELOC/doc/support/ctan_chk/ctan_chk.pdf details="Package documentation" + RELOC/doc/support/ctan_chk/ctan_chk.w + RELOC/doc/support/ctan_chk/ctan_chk_bash +catalogue-ctan /support/ctan_chk +catalogue-license gpl3 +catalogue-topics ctan +catalogue-version 1.0 + +name ctanbib +category Package +revision 52145 +shortdesc Export CTAN entries to bib format +longdesc This package provides a Lua script which can be used for +longdesc retrieving bibliographic information in BibLaTeX format for +longdesc packages hosted on CTAN. The ctanbib script depends only on +longdesc LuaXML. +depend ctanbib.ARCH +containersize 2588 +containerchecksum af03e3079304d24b7cf996158ce7344a15aa2f17efc46378132bedc5e9bb4488f89210c24a8a5ef0c21a293600589aef78b7a8c7a7673ad09ceab2077b0a351d +doccontainersize 52852 +doccontainerchecksum 1a971e49827476b5ae419189f7acff4c17ab41159d60c5627663d435368b28aa7dc4aeeb5fcc2c4a9f34f648ac9f2de229b250660333ca2f32bfd0808f24e732 +docfiles size=17 + texmf-dist/doc/man/man1/ctanbib.1 + texmf-dist/doc/man/man1/ctanbib.man1.pdf + texmf-dist/doc/support/ctanbib/README.md details="Readme" + texmf-dist/doc/support/ctanbib/ctanbib-doc.pdf details="Package documentation" + texmf-dist/doc/support/ctanbib/ctanbib-doc.tex +runfiles size=2 + texmf-dist/scripts/ctanbib/ctanbib +catalogue-contact-bugs https://github.com/michal-h21/ctanbib/issues +catalogue-contact-repository https://github.com/michal-h21/ctanbib +catalogue-ctan /support/ctanbib +catalogue-license lppl1.3 +catalogue-topics bibtex-gen ctan luatex use-lua +catalogue-version 0.1d + +name ctanbib.aarch64-linux +category Package +revision 48478 +shortdesc aarch64-linux files of ctanbib +containersize 340 +containerchecksum 05ef7165542ad4e9004c3a99fff25c5f40296d44fdfd6cb2876959f6dccfa68a546f1533cc7cfbf0640518b60210aa22e7a61fb2259721823ea90ddac55d1c5f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctanbib + +name ctanbib.amd64-freebsd +category Package +revision 48478 +shortdesc amd64-freebsd files of ctanbib +containersize 340 +containerchecksum 374201e1a6a3906685446bd3402f639ae375a5ca3cf3de1c5aaeb8fb676eb33cc106f87357e93a4dab89740747c699c8d3a35f0bc35df5b2a79bd342edebac67 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctanbib + +name ctanbib.amd64-netbsd +category Package +revision 48715 +shortdesc amd64-netbsd files of ctanbib +containersize 340 +containerchecksum bc8021a98300955ecafd133226e53d8a7405d5b1376f5f4495a139c35e6f02f4da022c9334166447b0bc42292abbf90dc4beb06eb03054b0773e7f743fb1d0b8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctanbib + +name ctanbib.armhf-linux +category Package +revision 48478 +shortdesc armhf-linux files of ctanbib +containersize 340 +containerchecksum 8997fa78caf16ae39030385931772a4408f53276a2eab30a10e1596a7db1f2a81afbcdedfaaff3c55bb71a4615ad2dc7e4a6a75eebd9fc3de050f7647edc9906 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctanbib + +name ctanbib.i386-cygwin +category Package +revision 48478 +shortdesc i386-cygwin files of ctanbib +containersize 336 +containerchecksum 6c6e231c7dc313ef50d09a8293ccf113a2bb7ec381c44a705cb073e6d7f4b72f46b28a0bf648f6eee44366e77134fa5d92685a310a6d40cc5ff30a74f8d20351 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctanbib + +name ctanbib.i386-freebsd +category Package +revision 48478 +shortdesc i386-freebsd files of ctanbib +containersize 340 +containerchecksum 187e90aedfcfcc5a1b9000bef0589ca3debd4498cff08d017c46784c24ff85dc6334b4af34bb5a9fffd7b619e682387ff4d730e1e036bc6f5e08578d041df34f +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctanbib + +name ctanbib.i386-linux +category Package +revision 48478 +shortdesc i386-linux files of ctanbib +containersize 340 +containerchecksum e02b9685ef99961f3fa32ab16f8d8f69c9b37858135b7b1b8dbb6462d1d6d3bfa0e0281b037a682120e60442661ae801b579c3e5c49981caa39702ec6c94ff19 +binfiles arch=i386-linux size=1 + bin/i386-linux/ctanbib + +name ctanbib.i386-netbsd +category Package +revision 48478 +shortdesc i386-netbsd files of ctanbib +containersize 340 +containerchecksum 79544bea3b5d62185d0d7d5d387062018ca6e90f4edb184a5ae7cd0710516a6722be477ffe9412608055dd92a10a3ca7cf26804c4b609e0ab8d36e6b6eeae879 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctanbib + +name ctanbib.i386-solaris +category Package +revision 48478 +shortdesc i386-solaris files of ctanbib +containersize 336 +containerchecksum 0719b3449a76d6ea8ed7bd41f16d927031bcf3b28a5843160415c30e44583c18d950efbb4249b80619b2f7088052e056d7818f6df2f0d679debe0f2da5d020ac +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctanbib + +name ctanbib.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ctanbib +containersize 336 +containerchecksum 65580cf49c2de607c829035fbd32d81a435b298c0fc235ce743a2effa65742b43e2618578846438e586a3341c62722f3195235e2d4c3100d3e55d57a60591a5a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ctanbib + +name ctanbib.win32 +category Package +revision 48478 +shortdesc win32 files of ctanbib +containersize 680 +containerchecksum 54b57b4cccf3348f30718784bc4dafcea7c97ea10755d2ce1b6b46ae1a32a51b1f5c13cb1e891ee7227614cbe7d331403cee3ed4dbf10e501981796ced974ce9 +binfiles arch=win32 size=1 + bin/win32/ctanbib.exe + +name ctanbib.x86_64-cygwin +category Package +revision 48478 +shortdesc x86_64-cygwin files of ctanbib +containersize 340 +containerchecksum 3cc5caf8a27717ba9c96702708299cb8a4460331838701f8b56e400322b73b70a462b93cc371deeb9c2b214a117e3944b2d584275349e43546ba39ddf3de20f3 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctanbib + +name ctanbib.x86_64-darwinlegacy +category Package +revision 48478 +shortdesc x86_64-darwinlegacy files of ctanbib +containersize 348 +containerchecksum 85c983396ba09d7dad38a813356068219b7af42089412f7e48e6ba95fbf5117ee83d4b3ccd1734de2d6b2608287f1f823bcd29a4c304a5f7a5ddd8f9328aac78 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctanbib + +name ctanbib.x86_64-linux +category Package +revision 48478 +shortdesc x86_64-linux files of ctanbib +containersize 340 +containerchecksum 14d3ba75f31bfdff2351051bcd75d1f0ae23f8df93e667de6deab7270b61110449be4284b3ba5f0f9949b332caf0e30b85dbec96cf335ab68c9a3d770c3973b9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctanbib + +name ctanbib.x86_64-linuxmusl +category Package +revision 48478 +shortdesc x86_64-linuxmusl files of ctanbib +containersize 344 +containerchecksum 637bdee09f0a0c7a6beaa7af78c82ca4b0fdb47f24642b5324315476a4602fbeb97626e0a824854c40556860a93dadccf092ffce166f02f1836cfc4959fe7c13 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctanbib + +name ctanbib.x86_64-solaris +category Package +revision 48478 +shortdesc x86_64-solaris files of ctanbib +containersize 340 +containerchecksum ed3e7884247975e168a9470515954f879fcab8356ac01637d0aecbc033282f624a8dcfa5349c66b42da9bbca4d86e5f8977e2bc96b064c208dc835ba84f62563 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctanbib + +name ctanify +category Package +revision 44129 +shortdesc Prepare a package for upload to CTAN +longdesc Given a list of filenames, ctanify creates a tarball (a .tar.gz +longdesc file) with the files laid out in CTAN's preferred structure. By +longdesc default this tarball additionally contains a ZIP (.zip) file +longdesc with copies of all files laid out in the standard TeX Directory +longdesc Structure (TDS), which may be used by those intending to +longdesc install the package, or by those who need to incorporate it in +longdesc a distribution. (The TDS ZIP file will be installed in the CTAN +longdesc install/ tree.) Given that CTAN and TeX Live are not fond of +longdesc .tds.zip files for small and/or otherwise straightforward +longdesc packages, ctanify has now been provided with an option that +longdesc prevents the creation and inclusion of such a .tds.zip file. +depend ctanify.ARCH +containersize 8236 +containerchecksum 6774b151bb0fb052d41d8447c7e8d378d7f31b0a5aea5f2f00b93669b8c2f629f479ae21d40480fd62f468d866cbe0c6f0dedd8a0248f8d83cd1039131849439 +doccontainersize 57960 +doccontainerchecksum f9b636cb41b126809d808c167410a37052b1c6c385fe4eb8df3b819c0cf2cac2c7c1c74d7ea15d2916c1cbc563e078845e451000e3a08cd9a8e0696a342b22ac +docfiles size=23 + texmf-dist/doc/latex/ctanify/README details="Readme" + texmf-dist/doc/latex/ctanify/ctanify.pdf details="Package documentation" + texmf-dist/doc/man/man1/ctanify.1 + texmf-dist/doc/man/man1/ctanify.man1.pdf +runfiles size=6 + texmf-dist/scripts/ctanify/ctanify +catalogue-also ctanupload +catalogue-ctan /support/ctanify +catalogue-license lppl1.3c +catalogue-topics ctan +catalogue-version 1.9.1 + +name ctanify.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ctanify +containersize 340 +containerchecksum 8803651edc9ea59f6fc9c56aa8034fd765e11ff61bdc933a8a9d21f1bbdddef2d27aeea843d2cf12e8b28feb1195306d2b7c34b257f44e5bb39d6136c10ef036 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctanify + +name ctanify.amd64-freebsd +category Package +revision 24061 +shortdesc amd64-freebsd files of ctanify +containersize 340 +containerchecksum f27a6c25526b90364584c159018aaca6ddf14bfd6aa556dcf3acb5841c62240c191879da37f2caa4ad5ed871e431ec56c1cd7b557034504d8ffbef1e8a2a82e5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctanify + +name ctanify.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ctanify +containersize 340 +containerchecksum 8afbcad2230e49877b7cebb2ab1c429e3cbdcdfaa824cdbbefab2482248a4a2e1484faa27ef8552c1f23781ab002c59ff6af6b382aba8bdb517acc04c614f9f8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctanify + +name ctanify.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ctanify +containersize 340 +containerchecksum 8fe55551b1eda0082bf436242ba352d31b70dd2501a4cd1032b05e514b70f1009c65b29f3f399a2d7f8a8ffde9ce41a7b0f050ce3409153e62052c86b0e71a02 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctanify + +name ctanify.i386-cygwin +category Package +revision 24061 +shortdesc i386-cygwin files of ctanify +containersize 336 +containerchecksum 5e3ca783b0ea550b1b7d889ffd840a75b58a33114d53edf1f8cfa48f64c40d87ae5a6c618d751b40a21b34f379d27bd061ddfb92d9d511d47abe91db0f183a8d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctanify + +name ctanify.i386-freebsd +category Package +revision 24061 +shortdesc i386-freebsd files of ctanify +containersize 340 +containerchecksum eb5cb9eb1511046a759303f2b30936e8a4159011bc9031b4163dbcb890df3ee95239551df6326802af4114e845baa51a5485b757ed0fdcf2830b50399182fd74 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctanify + +name ctanify.i386-linux +category Package +revision 24061 +shortdesc i386-linux files of ctanify +containersize 340 +containerchecksum 6a0fcea64287ad918b03990b64e7a6d73ae5ee1406d857f54a2b9c712b26402b3c778c87d6e30dd83534871f9c15b49e71bc014f22cecc5f7ce77bce6b8d0a54 +binfiles arch=i386-linux size=1 + bin/i386-linux/ctanify + +name ctanify.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ctanify +containersize 340 +containerchecksum 163b5c5568ae3bb0334e33eace49288808d9f803d4af7bd82eac8eebefbdafa46c043d62ab221b7d3e5f93c873bd33856f9a02e2204c616fc686a71d5e2e755b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctanify + +name ctanify.i386-solaris +category Package +revision 24061 +shortdesc i386-solaris files of ctanify +containersize 336 +containerchecksum 4cd39007a490592483b7267196fa20bc828b7c71ea22a4b27680edb42970d17954173f3a6b44df895719b1a12f0fc81ab083cf38218b0ef09da426f19bef2977 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctanify + +name ctanify.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ctanify +containersize 336 +containerchecksum d07a4e363a441dbca463d86dad73fa8d5155075f7427f0c2e3be8d68bc1081cf5c5b55a252a544430d8c37c32ace27aa311009e15abbf082af22c8d2344fef2b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ctanify + +name ctanify.win32 +category Package +revision 24061 +shortdesc win32 files of ctanify +containersize 684 +containerchecksum c07df95ddc560a64cd77f7aae10073fbed090d6ea5e94d163aad07db5c98f9db2a64e56d7a9cd74698a7b0b153c20855ec96107e3867953d829c6efae3b8b49a +binfiles arch=win32 size=1 + bin/win32/ctanify.exe + +name ctanify.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ctanify +containersize 340 +containerchecksum ea2b61bb228b0f353b9712bcb5cd5b5c4eb4e3d8b454f6596b6a9c57837b2648d2d5ad800f08069d556782e83b3b623f1d04ce4cec984a1a9484e46eed0176e1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctanify + +name ctanify.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ctanify +containersize 348 +containerchecksum 71f9055c833a7b284c47a1faa409fd7ac8087b126389c611253e6aa87b352ee29628731169f09eac801114c1a64831cf5d6e386e6fe76f75b02f96d8b76e2a5d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctanify + +name ctanify.x86_64-linux +category Package +revision 24061 +shortdesc x86_64-linux files of ctanify +containersize 340 +containerchecksum 31edd084842362c213462a14fb344975f287791addbc02db1b0ad4ffe381e461a134b44bc6f15e0fb1e749f73aa2f96cfd6ecd0528e1de3d38aa342df115aaca +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctanify + +name ctanify.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ctanify +containersize 340 +containerchecksum c4b9276b9ee7956d187d885c7d80c7109b35be4f2637eaee4432ad8ec88d05127ccbbe98e9977ddf095e9110b3be9273bad1bd5f533ccd6f9e92cb6c31359d4f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctanify + +name ctanify.x86_64-solaris +category Package +revision 24061 +shortdesc x86_64-solaris files of ctanify +containersize 340 +containerchecksum a88ca9b4b8f9ea62ee6d34d55c1aa44d9bd28334b8ce7454b88a60a2fdee3682333d650e49cddbc6d62b87847e1e16d4cb727225258e19fc849bf4800f3e8002 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctanify + +name ctanupload +category Package +revision 26313 +shortdesc Support for users uploading to CTAN +longdesc The package provides a Perl script that allows the uploads of a +longdesc contribution to CTAN from the command line. The aim is to +longdesc simplify the release process for LaTeX package authors. Note by +longdesc the CTAN team (2015-02-05): It seems that this script is +longdesc currently not working. +depend ctanupload.ARCH +containersize 5104 +containerchecksum 4464bdfbf72318b24abcd88e1c25dae5925a96e867c694f3f02a594ed7b8b24cffdcdb345f0054e200a6af63f88b591ff84058af0adfb4a1b3feff2a057d9d72 +doccontainersize 174964 +doccontainerchecksum 9e027f7ce08041be7668a7a404fad6b6c7cfc71e581ad1216956d0b53c379d204bd84d2d55d186c74f784df8911770b96f934775f44f7141a5f1b9b5e773cb7a +docfiles size=47 + texmf-dist/doc/support/ctanupload/Makefile.example + texmf-dist/doc/support/ctanupload/README details="Readme" + texmf-dist/doc/support/ctanupload/ctanupload.pdf details="Package documentation" + texmf-dist/doc/support/ctanupload/ctanupload.tex +runfiles size=5 + texmf-dist/scripts/ctanupload/ctanupload.pl +catalogue-also ctanify +catalogue-ctan /support/ctanupload +catalogue-license gpl3 +catalogue-topics ctan +catalogue-version 1.2c + +name ctanupload.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ctanupload +containersize 344 +containerchecksum cd0060c5366c3c7e47c73fa58edd1b3dadd5c56974d139fec43994c974ec2cce3ce5c1a165e061789d3e1d7d0e8db76d754c485807ec13ac74ebf806b5afbd18 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctanupload + +name ctanupload.amd64-freebsd +category Package +revision 23866 +shortdesc amd64-freebsd files of ctanupload +containersize 344 +containerchecksum ea310aae05eb94c3119207b6b976492ffa6a56a3ff68d5da02cb4e8c1f3e09cb47118f0fbd2574d8e5d81eb008d36d19187c04ad1783cc73175e3d93a0294b30 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctanupload + +name ctanupload.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ctanupload +containersize 344 +containerchecksum 0e428eed00d8d9a2167611d46cc70b0f84739f175098706ab91f666d98f4b7f27cbcb55078c45cf9b4df16b45bbe7e0052bc1245555c99ea2c373bba7cfc4b79 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctanupload + +name ctanupload.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ctanupload +containersize 344 +containerchecksum 3b8fe6255a0c356ecc81c69deb91de18b9c0ac22a0870053541d617f978fc8090e810f174c0e9812a7ae0fa23ebd1492f92d4fa2a9795fa9052b0dec536a4623 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctanupload + +name ctanupload.i386-cygwin +category Package +revision 23866 +shortdesc i386-cygwin files of ctanupload +containersize 344 +containerchecksum 864ca9831ffc53262542213aa4be9f556086db6474299dd5889e74d818f0e037b67aab4510277b4a74f12f31ea7fd41fcb108bda91c83f045d2e464052b47856 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctanupload + +name ctanupload.i386-freebsd +category Package +revision 23866 +shortdesc i386-freebsd files of ctanupload +containersize 344 +containerchecksum cb3da08d7911d84344e5cdba8a0fcb2d3dbe4c0d923022d58a9d20a26d1e125eb90d9baa9798ab58bef7a46a29852cb0b15de7acf4c039c76122c55e96ab7547 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctanupload + +name ctanupload.i386-linux +category Package +revision 23866 +shortdesc i386-linux files of ctanupload +containersize 344 +containerchecksum 0eadc6e4cf42e8e24a2314e8b5110587c48be7bae33d9017a41b1f758eb740b0c776d1beacd2bcc80d9b647cc5c0edc756b460127b1df0585c11d9d4080fcb32 +binfiles arch=i386-linux size=1 + bin/i386-linux/ctanupload + +name ctanupload.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ctanupload +containersize 344 +containerchecksum 49320f66cf63a00a876f00aabd300bcc01b319812f5e34057673302580776aee50b93fa92e7a7e474d5aae078e5771ba8cb2ecf48100357628104bcf2d59b71a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctanupload + +name ctanupload.i386-solaris +category Package +revision 23866 +shortdesc i386-solaris files of ctanupload +containersize 340 +containerchecksum b08c7208da607f951a4ba1c2eaac0969f904891d46ca014c7e44f2620ba52e2b9de69fd924ae0fd37c6e1e60772afe2a12f1ec02a6a94e794d7f61c1657bf6c8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctanupload + +name ctanupload.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ctanupload +containersize 344 +containerchecksum 1e7fbd9a49fa9b82343e759f88d4d89b43c68cb0e795c8319e46a6955f35780c4676f97fd52aadbdc831e2b3628186f1d9e417abe9b1b56700a29b815fc2c425 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ctanupload + +name ctanupload.win32 +category Package +revision 23866 +shortdesc win32 files of ctanupload +containersize 684 +containerchecksum c2c20dbd0750a555f745b2472ccf919439f55bba1704037dd7678b3f67fac495167772a5cabf9b557dfd7dcdc406e6e77e60661d932e98bc6e2bf5de9480e324 +binfiles arch=win32 size=1 + bin/win32/ctanupload.exe + +name ctanupload.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ctanupload +containersize 344 +containerchecksum 989fcb749920d18bb685827664eb6aadc2e0fb0e4ae893d2cc2e53e0f0b6bec8f76cafff60a7660c3661936b068dba0749796ce0050006468f37660dd24dcfb8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctanupload + +name ctanupload.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ctanupload +containersize 352 +containerchecksum 271a6bc77fee6a885a6b6f0742e6956b75bbef2b924e51f11199d97dec3e7473c0b7e3fb541294fda13f75670c68f1c3ca72265c7a30d36abc8d540c03d140a6 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctanupload + +name ctanupload.x86_64-linux +category Package +revision 23866 +shortdesc x86_64-linux files of ctanupload +containersize 344 +containerchecksum cdcf5af60c46155ee3c7bfab6547845250d5e1fae1ed6af59f1ebe76c2013e1d717c9b0962f68d57752a23dfb0dc12c8a1b8fc7708a096896e91653bc1e51dd1 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctanupload + +name ctanupload.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ctanupload +containersize 348 +containerchecksum 828ba61c1c9864fa3889ce29cb12faca3ec593915878c95fe61507f4455060c5ca7c14d161764cfc2be4f6a542ef10e186d0a9f7a3b1d58c2e2ba563f1bc6602 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctanupload + +name ctanupload.x86_64-solaris +category Package +revision 23866 +shortdesc x86_64-solaris files of ctanupload +containersize 344 +containerchecksum f7e4b0faadbb299062024159b90f191e4f590b074834f40e95339df105d4c76ce07158c404395a587adbfaf355a5eac7eeaba31933d84beb0f71320be165fff9 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctanupload + +name ctex +category Package +revision 58583 +shortdesc LaTeX classes and packages for Chinese typesetting +relocated 1 +longdesc ctex is a collection of macro packages and document classes for +longdesc LaTeX Chinese typesetting. +depend adobemapping +depend atbegshi +depend beamer +depend cjk +depend cjkpunct +depend ec +depend epstopdf-pkg +depend etoolbox +depend everyhook +depend fandol +depend fontspec +depend iftex +depend infwarerr +depend kvoptions +depend kvsetkeys +depend latex-bin +depend ltxcmds +depend luatexja +depend mptopdf +depend ms +depend pdftexcmds +depend platex-tools +depend svn-prov +depend tipa +depend tools +depend ttfutils +depend ulem +depend uplatex +depend xcjk2uni +depend xecjk +depend xetex +depend xkeyval +depend xpinyin +depend xunicode +depend zhmetrics +depend zhmetrics-uptex +depend zhnumber +containersize 129772 +containerchecksum 64fa2fd00ebbf9fa5a16f0ec23429f77f48e9d84f8a064e2be475e9e0449c73bb9c5f63a93b574bd3ea7af737f5aea72ad7f0be1b98e2e1c0bdda5061becf6e3 +doccontainersize 1178224 +doccontainerchecksum 409173d58ffd65ba57acfc580fa2b0860327d536b8758816275ab0541138af0869ca1460f8fb725e0f185546349fca2d867afe24a19e74c9c147c36175d8e060 +docfiles size=299 + RELOC/doc/latex/ctex/README.md details="Readme" + RELOC/doc/latex/ctex/ctex.pdf details="Package documentation" language="zh" +srccontainersize 86952 +srccontainerchecksum 7fb4745ff434fa138fba81d2df95269be134caaa130a00e789252c3855dcbfb39206d558f963ed63c3a16072efc3184f6ce075f3bdae2d4ea23e00b2bcf32169 +srcfiles size=119 + RELOC/source/latex/ctex/ctex-zhconv-make.lua + RELOC/source/latex/ctex/ctex.dtx + RELOC/source/latex/ctex/ctex.ins + RELOC/source/latex/ctex/ctexpunct.spa +runfiles size=437 + RELOC/tex/generic/ctex/ctex-spa-macro.tex + RELOC/tex/generic/ctex/ctex-spa-make.tex + RELOC/tex/generic/ctex/ctxdocstrip.tex + RELOC/tex/generic/ctex/zhmap/ctex-zhmap-adobe.tex + RELOC/tex/generic/ctex/zhmap/ctex-zhmap-fandol.tex + RELOC/tex/generic/ctex/zhmap/ctex-zhmap-founder.tex + RELOC/tex/generic/ctex/zhmap/ctex-zhmap-mac.tex + RELOC/tex/generic/ctex/zhmap/ctex-zhmap-ubuntu.tex + RELOC/tex/generic/ctex/zhmap/ctex-zhmap-windows.tex + RELOC/tex/latex/ctex/config/ctex-name-gbk.cfg + RELOC/tex/latex/ctex/config/ctex-name-utf8.cfg + RELOC/tex/latex/ctex/config/ctex.cfg + RELOC/tex/latex/ctex/config/ctexbackend.cfg + RELOC/tex/latex/ctex/config/ctexopts.cfg + RELOC/tex/latex/ctex/ctex-c5size.clo + RELOC/tex/latex/ctex/ctex-cs4size.clo + RELOC/tex/latex/ctex/ctex.sty + RELOC/tex/latex/ctex/ctexart.cls + RELOC/tex/latex/ctex/ctexbeamer.cls + RELOC/tex/latex/ctex/ctexbook.cls + RELOC/tex/latex/ctex/ctexcap.sty + RELOC/tex/latex/ctex/ctexheading.sty + RELOC/tex/latex/ctex/ctexhook.sty + RELOC/tex/latex/ctex/ctexpatch.sty + RELOC/tex/latex/ctex/ctexrep.cls + RELOC/tex/latex/ctex/ctexsize.sty + RELOC/tex/latex/ctex/ctexspa.def + RELOC/tex/latex/ctex/ctxdoc.cls + RELOC/tex/latex/ctex/dictionary/translator-theorem-dictionary-ChineseGBK.dict + RELOC/tex/latex/ctex/dictionary/translator-theorem-dictionary-ChineseUTF8.dict + RELOC/tex/latex/ctex/engine/ctex-engine-aptex.def + RELOC/tex/latex/ctex/engine/ctex-engine-luatex.def + RELOC/tex/latex/ctex/engine/ctex-engine-pdftex.def + RELOC/tex/latex/ctex/engine/ctex-engine-uptex.def + RELOC/tex/latex/ctex/engine/ctex-engine-xetex.def + RELOC/tex/latex/ctex/fd/c19rm.fd + RELOC/tex/latex/ctex/fd/c19sf.fd + RELOC/tex/latex/ctex/fd/c19tt.fd + RELOC/tex/latex/ctex/fd/c70rm.fd + RELOC/tex/latex/ctex/fd/c70sf.fd + RELOC/tex/latex/ctex/fd/c70tt.fd + RELOC/tex/latex/ctex/fd/jt2zhrm.fd + RELOC/tex/latex/ctex/fd/jt2zhsf.fd + RELOC/tex/latex/ctex/fd/jt2zhtt.fd + RELOC/tex/latex/ctex/fd/jy2zhrm.fd + RELOC/tex/latex/ctex/fd/jy2zhsf.fd + RELOC/tex/latex/ctex/fd/jy2zhtt.fd + RELOC/tex/latex/ctex/fontset/ctex-fontset-adobe.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-fandol.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-founder.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-mac.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-macnew.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-macold.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-ubuntu.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-windows.def + RELOC/tex/latex/ctex/heading/ctex-heading-article.def + RELOC/tex/latex/ctex/heading/ctex-heading-beamer.def + RELOC/tex/latex/ctex/heading/ctex-heading-book.def + RELOC/tex/latex/ctex/heading/ctex-heading-report.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-beamer.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-book.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-report.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-article.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-beamer.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-book.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-report.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-plain.def + RELOC/tex/luatex/ctex/ctex-zhconv-index.lua + RELOC/tex/luatex/ctex/ctex-zhconv.lua +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +catalogue-contact-home http://www.ctex.org/HomePage +catalogue-contact-repository https://github.com/CTeX-org/ctex-kit +catalogue-ctan /language/chinese/ctex +catalogue-license lppl1.3c +catalogue-topics chinese book-pub class +catalogue-version 2.5.6 + +name ctex-faq +category Package +revision 15878 +shortdesc LaTeX FAQ by the Chinese TeX Society (ctex.org) +relocated 1 +longdesc Most questions were collected on the bbs.ctex.org forum, and +longdesc were answered in detail by the author. +containersize 432 +containerchecksum 39ff8931e0007a78e4fa0788d7c7fcd8f25dd4cf4fa3f34b694e681e10dfb3d804842daf45a6e56b5ff450bb965bc322dcf593bdce176ffec27f4696c1c99fc0 +doccontainersize 474648 +doccontainerchecksum 0942a249a30f97d56bf5cbac2eb4de285a63406620b825a36d9ff8d46fbccd614af488f89e2af7472f1a9075a0e2b7228bb65a5804451df6945ce6bf4287b0a2 +docfiles size=180 + RELOC/doc/latex/ctex-faq/README details="Readme (English)" language="en" + RELOC/doc/latex/ctex-faq/ctex-faq.pdf details="The FAQ (Chinese)" language="zh" + RELOC/doc/latex/ctex-faq/src/ctex-faq.sty + RELOC/doc/latex/ctex-faq/src/ctex-faq.tex + RELOC/doc/latex/ctex-faq/src/make.bat +catalogue-ctan /info/ctex-faq +catalogue-license fdl +catalogue-topics chinese-doc faq + +name ctib +category Package +revision 15878 +catalogue ctib4tex +shortdesc Tibetan for TeX and LaTeX2e +relocated 1 +longdesc A package using a modified version of Sirlin's Tibetan font. An +longdesc advantage of this Tibetan implementation is that all consonant +longdesc clusters are formed by TeX and Metafont. No external +longdesc preprocessor is needed. +containersize 116552 +containerchecksum 8999ea42b82e56cbb06e2485060b829a0781550834ea421607b4621199692976488f4031266eee1a6b1443b12828e2fb5148ff43eff137c01ee9db8770bb1565 +doccontainersize 217796 +doccontainerchecksum 65d8f613ddb651cef4c345791a4a849e3f672930fb94d1ba789e827b466c459bc321762c71675cb4c5fdec8fc456520bb7013d5b737b4ff2bd049bb5917a98ef +docfiles size=100 + RELOC/doc/latex/ctib/README details="Readme" + RELOC/doc/latex/ctib/ctib4tex.pdf details="Package documentation" + RELOC/doc/latex/ctib/ctib4tex.tex +srccontainersize 8532 +srccontainerchecksum b387b2cc636f98bf7bf43fc3be04cbb62dfd6597c419b7791605011f59981cd9e90737f9d2f0f668f63bf9abff854219a75a7527d881c991190188f307f3642d +srcfiles size=9 + RELOC/source/latex/ctib/COPYING + RELOC/source/latex/ctib/EMTEX + RELOC/source/latex/ctib/HISTORY + RELOC/source/latex/ctib/INSTALL + RELOC/source/latex/ctib/MIKTEX +runfiles size=206 + RELOC/fonts/source/public/ctib/bzrsetup.mf + RELOC/fonts/source/public/ctib/ctib.mf + RELOC/fonts/source/public/ctib/ctibcode.mf + RELOC/fonts/source/public/ctib/ctiblett.mf + RELOC/fonts/source/public/ctib/ctibligs.mf + RELOC/fonts/source/public/ctib/ctibnum.mf + RELOC/fonts/source/public/ctib/ctibpunc.mf + RELOC/fonts/source/public/ctib/ctibsplt.mf + RELOC/fonts/source/public/ctib/ctibvow.mf + RELOC/fonts/tfm/public/ctib/ctib.tfm + RELOC/tex/latex/ctib/ctib.sty + RELOC/tex/latex/ctib/ctib.tex + RELOC/tex/latex/ctib/lctctib.fd + RELOC/tex/latex/ctib/lctenc.def +catalogue-ctan /language/tibetan/ctib +catalogue-license gpl +catalogue-topics tibetan + +name ctie +category TLCore +revision 57972 +shortdesc C version of tie (merging Web change files) +longdesc This is a version of tie converted for use with cweb. +depend ctie.ARCH +depend kpathsea +containersize 384 +containerchecksum 68cb48fc07bb2b184d38b65d722918954d376243e7f5133ba2f6ba67be8cb8f6594d2f66dbb733e6ba16edca033aa5046da8abadc2a80426e1151e975f6b27c5 +doccontainersize 16976 +doccontainerchecksum a77483824772f5474b6f2954358548e6ce30a60635d1776e5cbd44b020bffad5ebf43ae0474b41b67832cd133f72ff4d25be8985fd669e493815d86f69d09c26 +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-license gpl +catalogue-topics litprog +catalogue-version 1.1 + +name ctie.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of ctie +containersize 34216 +containerchecksum 6d701222cc7fe6f71ade210eb89aa7b9254e67680e59401a4cd27b0fcffee7f908c3cea0fcd2208714ccfbe5ad2b1e48a031878b91f07e1a56b83ecf052ace35 +binfiles arch=aarch64-linux size=22 + bin/aarch64-linux/ctie + +name ctie.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of ctie +containersize 35480 +containerchecksum 79667ec054fdad3f048ca869c7ecb0edb1edbb2c294fe64e59601f49b6c807336faea533d110774f480a8bf264560a094d931316061e0a1c1bc9559b9037b632 +binfiles arch=amd64-freebsd size=21 + bin/amd64-freebsd/ctie + +name ctie.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of ctie +containersize 32220 +containerchecksum 175a6533fec2c4efe7c103ea2ef00f44e4aab7ad5afc82c6792ad47392df082a63cb5548f76a3261ee778ab31076a566c78b72837e4ebfcfd43494815da53782 +binfiles arch=amd64-netbsd size=25 + bin/amd64-netbsd/ctie + +name ctie.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of ctie +containersize 28732 +containerchecksum 182ecf5eba98b32a7fb9364a36dd07f27f419f823ac11796086516bbdfb2300866b821c571ca458f0713364262830846a36c417dd07ec414168546122324db47 +binfiles arch=armhf-linux size=18 + bin/armhf-linux/ctie + +name ctie.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of ctie +containersize 6672 +containerchecksum f30908f3247411a434d2024677dbe4cc9e988c79aae2936269f4c9636c841c418e35b28c3af08c54063c86ab6a7c0f97d74037cdd282b74cc47e45b937b710fc +binfiles arch=i386-cygwin size=5 + bin/i386-cygwin/ctie.exe + +name ctie.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of ctie +containersize 32124 +containerchecksum ced8a897819fb72d8c73a63ca84bb4d1e531a74b325c4c36ea126f6a00447a40f499d00e461574edf50c1a93ff87b50af22f0e0ffc40f90f36fb170560096a26 +binfiles arch=i386-freebsd size=19 + bin/i386-freebsd/ctie + +name ctie.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of ctie +containersize 38192 +containerchecksum 5a003d1974b2c43ad5609f4bb3092b763fe5bcae1bb6fc47a6e95e06c872cae55b900778fe14aa9d51676c82afc4e78291d7fb4c9a709f6028603b420c14a834 +binfiles arch=i386-linux size=24 + bin/i386-linux/ctie + +name ctie.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of ctie +containersize 29808 +containerchecksum b34ebdc1e65b8721e7b6240d0136a12e9010c8fc6cf6a63dbfc0c8cc66ac828fb012a066d5d2a265dd1fa5e3ef86f75cf616a583aeae58f00febceae5b9031ab +binfiles arch=i386-netbsd size=24 + bin/i386-netbsd/ctie + +name ctie.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of ctie +containersize 34268 +containerchecksum 165414b75a99fcc43439a3fc6d7dd43f3d190d1ed4cf4e7494edf640c73c84a33dee0c951a8712f280e5fd5009521621103af0f9e0536810d59e58d0214bfb99 +binfiles arch=i386-solaris size=19 + bin/i386-solaris/ctie + +name ctie.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of ctie +containersize 66028 +containerchecksum b6b180112460ec00f7fd0ac35c7e7edbe4c8e7d8ccc45d88896bffcfaaf3118075327f37f415a6b30deebd891b5e39e7c5b15c156994b356d54d252ac17a1db7 +binfiles arch=universal-darwin size=59 + bin/universal-darwin/ctie + +name ctie.win32 +category TLCore +revision 58783 +shortdesc win32 files of ctie +containersize 6920 +containerchecksum d1fd450690a1e98f109b19a41693a774163e463f92ebf699a05e7e04ee572e9ad82927544e2ef22aac8d12838dfe8e681286112889751411a698cc821832d217 +binfiles arch=win32 size=4 + bin/win32/ctie.exe + +name ctie.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of ctie +containersize 6792 +containerchecksum b281d6c1101f5da8753a0219b44c47a4b2b0c29d6b862cd97278cabdc51e692b5cd47020dd2f467961c2b3ecdc77ba462f651590e347eadfa6de7ce6b1dacda2 +binfiles arch=x86_64-cygwin size=5 + bin/x86_64-cygwin/ctie.exe + +name ctie.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of ctie +containersize 33740 +containerchecksum da5f7e91fef4677edd58cfbfce662c540c457198fef9d077b05d0e1e692479b2d7fe0cc14a08a6045767195b283d97a173781d349493728a18f2c3660938a484 +binfiles arch=x86_64-darwinlegacy size=20 + bin/x86_64-darwinlegacy/ctie + +name ctie.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of ctie +containersize 35932 +containerchecksum 8687c626c928bb025df16290c46e6af53db926634ee271885e45865cd80996ae92aef81f7bdb8a8eae58e5faae83abcdb44926bb65257adfc6827cd3c630cc91 +binfiles arch=x86_64-linux size=21 + bin/x86_64-linux/ctie + +name ctie.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of ctie +containersize 37116 +containerchecksum 2de209cb413bde6089a0cda6eee8a15e89f1bfbdf853ae567eeebe744a1a2343e556ae30977237d386ec826b1609cf208241cae20d29a60d6e19e775764a81f8 +binfiles arch=x86_64-linuxmusl size=22 + bin/x86_64-linuxmusl/ctie + +name ctie.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of ctie +containersize 36976 +containerchecksum 3eea8d78e3a103d9e7dc15c872e31ac89d9bae75d3f66f5d198b0625478e03089f003402690dc12cc274ac358c1d22b0ed94b91241edd42ce7fb76c19c39b80c +binfiles arch=x86_64-solaris size=23 + bin/x86_64-solaris/ctie + +name cuisine +category Package +revision 34453 +shortdesc Typeset recipes +relocated 1 +longdesc Typeset recipes with the ingredients lined up with their method +longdesc step (somewhat similarly to the layout used in cooking). +containersize 3000 +containerchecksum cb594c2ef79a1d1614ad2b7bedff3b5bd9853bf36947751c880c36c73a458152eb7036861d0292614992623192841c28a3f4010bc0c4107fd8a4277154a1baf5 +doccontainersize 256720 +doccontainerchecksum 9e4f55bf8199b4bd06847dd39e67e91a8a6885b3903c9ea772199d9b9fd9d7cade173dff6f785d143b4e7c3b154477622a4c2cad14576b22068a6729693a8227 +docfiles size=64 + RELOC/doc/latex/cuisine/README details="Package Readme" + RELOC/doc/latex/cuisine/cuisine.pdf details="Package documentation" +srccontainersize 11764 +srccontainerchecksum 1df5e248af42513b212d4c18cd95c8c9f2155598604624cf3b5e5e5b020643bdbb9c3addf03d8ff111c14185234d42f0db8a06a9de040fa0b58cec3895f32731 +srcfiles size=13 + RELOC/source/latex/cuisine/cuisine.dtx + RELOC/source/latex/cuisine/cuisine.ins +runfiles size=4 + RELOC/tex/latex/cuisine/cuisine.sty +catalogue-also recipe +catalogue-ctan /macros/latex/contrib/cuisine +catalogue-license lppl +catalogue-topics cooking +catalogue-version 0.7 + +name cuprum +category Package +revision 49909 +shortdesc Cuprum font family support for LaTeX +relocated 1 +longdesc This package provides support for the Cuprum font family (see +longdesc http://jovanny.ru). +execute addMap cuprum.map +containersize 87020 +containerchecksum 578ce2e5af01e81ba80c0cfcc0225985722c1515e8f98460a1cb5d71d8ee4630d400f28dee04bb505c429b13f5cb604364d26503af0b5d9bf98164b218b09413 +doccontainersize 42724 +doccontainerchecksum b9a9bda8eab6087a134b3b0660282998c7c3fa7fda8890e61ba107b9f7576d85ca01b59664c1c198679151e01cef6ebce5b8de29644a2e249a6ca2100f526fe2 +docfiles size=16 + RELOC/doc/fonts/cuprum/LICENSE.txt + RELOC/doc/fonts/cuprum/README.md details="Readme" + RELOC/doc/fonts/cuprum/cuprum.pdf details="Package documentation" + RELOC/doc/fonts/cuprum/cuprum.tex +runfiles size=113 + RELOC/fonts/map/dvips/cuprum/cuprum.map + RELOC/fonts/tfm/public/cuprum/cprbit8t.tfm + RELOC/fonts/tfm/public/cuprum/cprbn8t.tfm + RELOC/fonts/tfm/public/cuprum/cprmit8t.tfm + RELOC/fonts/tfm/public/cuprum/cprmn8t.tfm + RELOC/fonts/truetype/public/cuprum/Cuprum-Bold.ttf + RELOC/fonts/truetype/public/cuprum/Cuprum-BoldItalic.ttf + RELOC/fonts/truetype/public/cuprum/Cuprum-Italic.ttf + RELOC/fonts/truetype/public/cuprum/Cuprum-Regular.ttf + RELOC/tex/latex/cuprum/cuprum.sty + RELOC/tex/latex/cuprum/t1cpr.fd +catalogue-ctan /fonts/cuprum +catalogue-license ofl +catalogue-topics font font-body font-sans font-ttf font-t1enc font-proportional + +name currency +category Package +revision 48990 +shortdesc Format currencies in a consistent way +relocated 1 +longdesc The package facilitates the formatting of currencies (amounts +longdesc and units) with various formatting capabilities. +containersize 1896 +containerchecksum d975cbe846ad5708a3558252094f4568c3ea4c5bc840dea7ade74eb8f6d90f4527b417a875a7bc286010473078d895cf510560f1287013e70498c983c896750b +doccontainersize 710120 +doccontainerchecksum 1f32fed0bf778b3460e094239afd76b4be9915be8a3e8ea20b7e48b02f1ffdcffdd1e588a507b8145ed232a38cee43db1bac0e232c472d5b5dd85f1cf3954c8c +docfiles size=179 + RELOC/doc/latex/currency/README.md details="Readme" + RELOC/doc/latex/currency/currency.pdf + RELOC/doc/latex/currency/currency_doc.pdf details="Package documentation" + RELOC/doc/latex/currency/currency_doc.tex +srccontainersize 4164 +srccontainerchecksum c7a99bf685283b415c7cf71a6700bcf2928d2342f5db8a3b78e96148fc01ad028b0921a7c048f345dd5d5fbcb3f47618390fd580b02fb4ab1594e7bf5def9904 +srcfiles size=4 + RELOC/source/latex/currency/currency.dtx + RELOC/source/latex/currency/currency.ins +runfiles size=2 + RELOC/tex/latex/currency/currency.sty +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-license lppl1.3 +catalogue-topics units scientific-docs +catalogue-version 0.4 + +name currfile +category Package +revision 56478 +shortdesc Provide file name and path of input files +relocated 1 +longdesc The package provides macros holding file name information +longdesc (directory, base name, extension, full name and full path) for +longdesc files read by LaTeX \input and \include macros; it uses the +longdesc file hooks provided by the author's filehook. In particular, it +longdesc restores the parent file name after the trailing \clearpage of +longdesc an \included file; as a result, the macros may be usefully +longdesc employed in the page header and footer of the last printed page +longdesc of such a file. The depth of inclusion is made available, +longdesc together with the "parent" (including file) and "parents" (all +longdesc including files to the root of the tree). The package +longdesc supersedes FiNK. +containersize 3740 +containerchecksum 8305bee1b1375f3157a938714b0803d976818dce716d0587ae3aac2020c38fdd987ca45d55aa8605c497b3bd0cb5ac909f5c8347f30836dd5ec2b36d18d06a64 +doccontainersize 173380 +doccontainerchecksum 7efdf77590627c00ebf0741cc7c77f7813f64fa7a9596c7b35c48e0b0364328a9166fdae5d93f0426ce2b8878c42e1c8f2e7d36823a08ddc7e5fcbba4bebc2d9 +docfiles size=44 + RELOC/doc/latex/currfile/README details="Readme" + RELOC/doc/latex/currfile/currfile.pdf details="Package documentation" +srccontainersize 11704 +srccontainerchecksum 34db7dc10bc9573093242480a7e9a2b1138458dfdf3e71bc5a7a8fa3642a9e2545f1fbd308e27096213f031c55638f778594a9844ce96c6921e3f2290c9d0fc1 +srcfiles size=13 + RELOC/source/latex/currfile/currfile.dtx + RELOC/source/latex/currfile/currfile.ins +runfiles size=5 + RELOC/tex/latex/currfile/currfile-abspath.sty + RELOC/tex/latex/currfile/currfile.sty +catalogue-contact-bugs https://sourceforge.net/p/currfile/tickets/ +catalogue-contact-home https://sourceforge.net/p/currfile/ +catalogue-contact-repository https://sourceforge.net/p/currfile/code/ +catalogue-ctan /macros/latex/contrib/currfile +catalogue-license lppl1.3 +catalogue-topics doc-tool +catalogue-version 0.7d + +name currvita +category Package +revision 15878 +shortdesc Typeset a curriculum vitae +relocated 1 +longdesc Currvita is a package rather than a class (like most other +longdesc curriculum vitae offerings). The author considers that a +longdesc curriculum vitae can quite reasonably form part of another +longdesc document (such as a letter, or a dissertation). +containersize 2340 +containerchecksum c555b0e9c7a500e086f0435a2dc6cde8da8b02df4d27be14534d28c77c1f546aafecb863bc652922e07191d0441a77db647f8d1d11e33ec9bc6014f73a5822c2 +doccontainersize 89020 +doccontainerchecksum b3de1ad371cead2829225015d60a4defe604e63890ef06da65fa9223cce4e748707f0b6f4f0b0dcdf22c3096e381adc3432a7b21b36f834c18ae4eb32bfba024 +docfiles size=30 + RELOC/doc/latex/currvita/README details="Package Readme" + RELOC/doc/latex/currvita/currvita.pdf details="Package documentation" + RELOC/doc/latex/currvita/cvtest.tex +srccontainersize 16148 +srccontainerchecksum a1dc7d983ac6badf9ced1492c712373205d5b0a91934f0a76eb1ac546470292e6c9dda4cd5f5d721e06c90d6237eb39236f1417d1c6992a774f7a9f7df9213bb +srcfiles size=15 + RELOC/source/latex/currvita/currvita.dtx + RELOC/source/latex/currvita/currvita.ins +runfiles size=2 + RELOC/tex/latex/currvita/currvita.sty +catalogue-also curve cv esieecv europecv vita +catalogue-ctan /macros/latex/contrib/currvita +catalogue-license gpl +catalogue-topics cv + +name cursolatex +category Package +revision 24139 +shortdesc A LaTeX tutorial +relocated 1 +longdesc The tutorial is presented as a set of slides (in Portuguese). +containersize 392 +containerchecksum 6c58f5a0f6fb8f129e202b786c258ba088efa44639f162b9e0109182072c16bfc6ba928953d6e9b31b2b1c2f693fe064476095c232dcb9e0c6bfcf18bfb7994e +doccontainersize 5407688 +doccontainerchecksum a0f726330a5b2d8da94cbf25fb1b1a2b22e5e9010e0cafdfdee3781bf518f0cb48adb27dce0fe2e46572460f8c1749c0db1c16e06343cabb8cb94227e3da58b6 +docfiles size=1908 + RELOC/doc/latex/cursolatex/MiKTeX-Basic.png + RELOC/doc/latex/cursolatex/MiKTeX-Complete.png + RELOC/doc/latex/cursolatex/Musica.pdf + RELOC/doc/latex/cursolatex/README + RELOC/doc/latex/cursolatex/TeXShopPNG.png + RELOC/doc/latex/cursolatex/TeXworksPDF.pdf + RELOC/doc/latex/cursolatex/WinEdt.pdf + RELOC/doc/latex/cursolatex/cursolatex.nav + RELOC/doc/latex/cursolatex/cursolatex.pdf details="Package documentation" language="pt" + RELOC/doc/latex/cursolatex/cursolatex.snm + RELOC/doc/latex/cursolatex/cursolatex.tex + RELOC/doc/latex/cursolatex/cursolatex.vrb + RELOC/doc/latex/cursolatex/emacs.pdf + RELOC/doc/latex/cursolatex/integral.pdf + RELOC/doc/latex/cursolatex/tabuleiro.pdf + RELOC/doc/latex/cursolatex/texmaker.pdf + RELOC/doc/latex/cursolatex/texniccenter.pdf + RELOC/doc/latex/cursolatex/texstudio.pdf + RELOC/doc/latex/cursolatex/tipografia.pdf + RELOC/doc/latex/cursolatex/ubuntu.pdf +catalogue-ctan /info/portuguese/cursolatex +catalogue-license gpl +catalogue-topics tut-latex portuguese-doc + +name curve +category Package +revision 20745 +shortdesc A class for making curriculum vitae +relocated 1 +longdesc CurVe is a class for writing a CV, with configuration for the +longdesc language in which you write. The class provides a set of +longdesc commands to create rubrics, entries in these rubrics etc. CurVe +longdesc then format the CV (possibly splitting it onto multiple pages, +longdesc repeating the titles etc), which is usually the most painful +longdesc part of CV writing. Another nice feature of CurVe is its +longdesc ability to manage different CV 'flavours' simultaneously. It is +longdesc often the case that you want to maintain slightly divergent +longdesc versions of your CV at the same time, in order to emphasize on +longdesc different aspects of your background. CurVe also comes with +longdesc support for use with AUC-TeX. +containersize 6868 +containerchecksum 9d318d35ef04d171da1c36ab4646465d4aa0feebd90fd3e97db5f1cf09c28c174d0c3be288c369215812f51ca83b341abbfdf3fa44458d1994cf68dfaeef0615 +doccontainersize 249672 +doccontainerchecksum 7a56d7c3bd8b9b13ee675b99a2f5a8a27fb3dfd81dc5225f3a880f338d5390c893ca887cbbcd9ad8deae2a1d6b6620ef664ea64384f93fd93a75a5c886641a2d +docfiles size=80 + RELOC/doc/latex/curve/NEWS + RELOC/doc/latex/curve/README details="Readme" + RELOC/doc/latex/curve/THANKS + RELOC/doc/latex/curve/curve.el + RELOC/doc/latex/curve/curve.pdf details="Package documentation" + RELOC/doc/latex/curve/examples/Makefile + RELOC/doc/latex/curve/examples/bib.bib + RELOC/doc/latex/curve/examples/bib.tex + RELOC/doc/latex/curve/examples/raw.tex + RELOC/doc/latex/curve/examples/rubric.tex + RELOC/doc/latex/curve/header.inc +srccontainersize 22616 +srccontainerchecksum 8e5026da24dddda0f266b8431fb28c27037ad920e37010fd97fdbfb5dae8024cb687b681356a6e27244dd4812bbd043e12c91508978dbe796a119e3e8633566e +srcfiles size=23 + RELOC/source/latex/curve/curve.dtx + RELOC/source/latex/curve/curve.ins +runfiles size=7 + RELOC/tex/latex/curve/curve.cls +catalogue-also currvita cv esieecv europecv vita +catalogue-ctan /macros/latex/contrib/curve +catalogue-license lppl +catalogue-topics cv class +catalogue-version 1.16 + +name curve2e +category Package +revision 57402 +shortdesc Extensions for package pict2e +relocated 1 +longdesc The package extends the drawing capacities of the pict2e that +longdesc serves as a LaTeX2e replacement for picture mode. In +longdesc particular, curve2e introduces new macros for lines and +longdesc vectors, new specifications for line terminations and joins, +longdesc arcs with any angular aperture, arcs with arrows at one or both +longdesc ends, generic curves specified with their nodes and the tangent +longdesc direction at these nodes. +containersize 9920 +containerchecksum 9346fff324a93225d271a2bce1a038888a1850c27ec090832740c22538342192889098ccdcbff1c5034d48c41c479b131b1fa7a401e0db684ba01536f3eb7ef3 +doccontainersize 1170628 +doccontainerchecksum bd84b3122aac83e5584921c4c8484430b546012bd5d93f49a1387acf6476636bdf6f00f77b90af53252acb3600ae75c7038fed4d213b76e71543df3b5900eb09 +docfiles size=320 + RELOC/doc/latex/curve2e/README.txt details="Readme" + RELOC/doc/latex/curve2e/curve2e-manual.pdf details="User manual" + RELOC/doc/latex/curve2e/curve2e-manual.tex + RELOC/doc/latex/curve2e/curve2e.pdf details="Code documentation" +srccontainersize 46304 +srccontainerchecksum c64897e4f2c6c2705b5093b2a937d2cf2dfa8cc2d0c9290775d155f733c82e0b7f11d30b8c58e21416b0f4a1e0cd4b29f1bbac5cdb665e821ec11218767865b5 +srcfiles size=45 + RELOC/source/latex/curve2e/curve2e.dtx +runfiles size=15 + RELOC/tex/latex/curve2e/curve2e-v161.sty + RELOC/tex/latex/curve2e/curve2e.sty +catalogue-ctan /macros/latex/contrib/curve2e +catalogue-license lppl1.3c +catalogue-topics graphics graphics-in-tex graphics-curve +catalogue-version 2.2.15 + +name curves +category Package +revision 45255 +shortdesc Curves for LaTeX picture environment +relocated 1 +longdesc This package draws curves in the standard LaTeX picture +longdesc environment using parabolas between data points with continuous +longdesc slope at joins; for circles and arcs, it uses up to 16 +longdesc parabolas. The package can also draw symbols or dash patterns +longdesc along curves. The package provides facilities equivalent to +longdesc technical pens with compasses and French curves. Curves consist +longdesc of short secants drawn by overlapping disks or line-drawing +longdesc \special commands selected by package options. +containersize 5256 +containerchecksum b2ac96620bdcae2263e0ff37ef0975fc705efd2ec30fa53a5cc50d54378cb29c6ef44543cc321e6cb37dfca0ea9a6cdf85777825703b866bcbad9729235c9722 +doccontainersize 320428 +doccontainerchecksum afd68373952dbf2a97944bcd7b36dcb62d5b65727c660af56dd8da97137ef4845037988e211996289fb54efa435833fa4a503ae4bba70ab38cd6e55f1966db1e +docfiles size=81 + RELOC/doc/latex/curves/README details="Readme" + RELOC/doc/latex/curves/curves.pdf details="Package documentation" + RELOC/doc/latex/curves/latex2pdf +srccontainersize 22308 +srccontainerchecksum cdef0242776f9976f72d953ac743a4771ac5d5aaaabf6988ef37d695c78e206f43d546bf21621c5a9f91e191c95c02ecbe9fc9d7e3f1eb23372a755856d61d2b +srcfiles size=20 + RELOC/source/latex/curves/curves.dtx + RELOC/source/latex/curves/curves.ins +runfiles size=5 + RELOC/tex/latex/curves/curves.sty + RELOC/tex/latex/curves/curvesls.sty +catalogue-ctan /macros/latex/contrib/curves +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex graphics-curve +catalogue-version 1.55 + +name custom-bib +category Package +revision 24729 +shortdesc Customised BibTeX styles +relocated 1 +longdesc Package generating customized BibTeX bibliography styles from a +longdesc generic file using docstrip driven by parameters generated by a +longdesc menu application. Includes support for the Harvard style of +longdesc citations. +containersize 84528 +containerchecksum 95b485e330c97242bbea4b989ea9e70882d796f7ff8fdbb10b0627d102ef6177c8cdfca976a89853170a9171a69499c58711d1deeb0e420f9cb268e336d4f663 +doccontainersize 667864 +doccontainerchecksum 3d5fe696f095ef5661418e3066f2f98768968eddbeb24ce9ec84647b78452f97482ae1dd17cd9c84cfb81fc4a43052b05ef6aa4080e32a464d2ba4e8ce33869b +docfiles size=190 + RELOC/doc/latex/custom-bib/README details="Readme" + RELOC/doc/latex/custom-bib/makebst.pdf details="Package documentation" + RELOC/doc/latex/custom-bib/merlin.pdf details="Master style file documentation" + RELOC/doc/latex/custom-bib/readme.mkb +srccontainersize 17224 +srccontainerchecksum e17d437ae7fb0c1328c2fa333f1f7d286a517bb536f7cf2d66ced327d1ddc78b97791852cac8fc9de4994b41f1433da17fa1e41838ddf90f1fe387eaa9e477c6 +srcfiles size=16 + RELOC/source/latex/custom-bib/makebst.drv + RELOC/source/latex/custom-bib/makebst.dtx + RELOC/source/latex/custom-bib/makebst.ins + RELOC/source/latex/custom-bib/shorthnd.ins +runfiles size=140 + RELOC/tex/latex/custom-bib/catalan.mbs + RELOC/tex/latex/custom-bib/dansk.mbs + RELOC/tex/latex/custom-bib/dutch.mbs + RELOC/tex/latex/custom-bib/english.mbs + RELOC/tex/latex/custom-bib/esperant.mbs + RELOC/tex/latex/custom-bib/finnish.mbs + RELOC/tex/latex/custom-bib/french.mbs + RELOC/tex/latex/custom-bib/geojour.mbs + RELOC/tex/latex/custom-bib/geophys.tex + RELOC/tex/latex/custom-bib/german.mbs + RELOC/tex/latex/custom-bib/italian.mbs + RELOC/tex/latex/custom-bib/makebst.tex + RELOC/tex/latex/custom-bib/merlin.mbs + RELOC/tex/latex/custom-bib/norsk.mbs + RELOC/tex/latex/custom-bib/photjour.mbs + RELOC/tex/latex/custom-bib/physjour.mbs + RELOC/tex/latex/custom-bib/polski.mbs + RELOC/tex/latex/custom-bib/portuges.mbs + RELOC/tex/latex/custom-bib/shorthnd.tex + RELOC/tex/latex/custom-bib/slovene.mbs + RELOC/tex/latex/custom-bib/spanish.mbs + RELOC/tex/latex/custom-bib/suppjour.mbs + RELOC/tex/latex/custom-bib/svenska.mbs +catalogue-ctan /macros/latex/contrib/custom-bib +catalogue-license lppl +catalogue-topics bibtex-sty +catalogue-version 4.33 + +name cutwin +category Package +revision 29803 +shortdesc Cut a window in a paragraph, typeset material in it +relocated 1 +longdesc The package provides facilities to cut windows out of +longdesc paragraphs, and to typeset text or other material in the +longdesc window. The window may be rectangular, or may have other sorts +longdesc of shape. +containersize 2784 +containerchecksum 484c995cd3b18f723899fc04e3af7b49bc7ac90a02448c4b49643b8ebe09c445bab122bc2ca0f2cab872323438fb02af3e5a053977ae8ff6146cb4af96f08ba1 +doccontainersize 304448 +doccontainerchecksum 89b4fb68d949b86eb3b5d90f7d8c828e10df591cf734f5e6908a221aa9e2d50820841e6095dc912619d4461c37b735907504e63fffbfd95c3371602144f87429 +docfiles size=81 + RELOC/doc/latex/cutwin/README details="Readme" + RELOC/doc/latex/cutwin/cutwin.pdf details="Package documentation" +srccontainersize 9748 +srccontainerchecksum 0e6fbb5bdf3cc9b1d270979f379e2f50b356353533278495526275bab3211b1e6ef670a5269e412ae87c3fe4ca0ee8411dadfb42e4e2cce6dc200c863532b997 +srcfiles size=10 + RELOC/source/latex/cutwin/cutwin.dtx + RELOC/source/latex/cutwin/cutwin.ins +runfiles size=3 + RELOC/tex/latex/cutwin/cutwin.sty +catalogue-ctan /macros/latex/contrib/cutwin +catalogue-license lppl1.3 +catalogue-topics text-flow +catalogue-version 0.1 + +name cv +category Package +revision 15878 +shortdesc A package for creating a curriculum vitae +relocated 1 +longdesc The package is distributed with two example files; they (and +longdesc their formatted output) constitute the only real documentation. +longdesc Note that cv is just a package: you choose the overall +longdesc formatting by deciding which class to use, while the package +longdesc provides the detailed formatting. +containersize 832 +containerchecksum 624d9bd1578e0d2e40e2ca76cd97d7f44d9da5c71daf737e06e6b6b15c64911af17f0da197afa17b5ff3b145461cf7efb058a5cbcd02e7c21642e660cfa3ca4d +doccontainersize 52576 +doccontainerchecksum c04b207a635f1b6f76e316284da987b45fd4387961c59b7b1f1b947284937f91f4d95ade824195d1f0db00766fec870e6859a6dd27cf3b6b426d095866f17d6a +docfiles size=20 + RELOC/doc/latex/cv/ApplicationLetter.pdf details="Example application letter" + RELOC/doc/latex/cv/ApplicationLetter.tex + RELOC/doc/latex/cv/CVCTAN.pdf details="Example CV" + RELOC/doc/latex/cv/CVCTAN.tex + RELOC/doc/latex/cv/README details="Readme" +runfiles size=1 + RELOC/tex/latex/cv/CV.sty +catalogue-also moderncv curve +catalogue-ctan /macros/latex/contrib/cv +catalogue-license gpl +catalogue-topics cv class + +name cv4tw +category Package +revision 34577 +shortdesc LaTeX CV class, with extended details +relocated 1 +longdesc The class offers entries for assets and social networks; +longdesc customizable styles are provided. The class comes with no +longdesc documentation, but a worked example offers some guidance. +containersize 5132 +containerchecksum 607745abedd1325c59bc8ae360a1c5d00834ec7bd050b057ba5427c135f17046027da3fb6130a0718e8d33bcab74eaf235f2de7a1ace483da1af87be5e559867 +doccontainersize 98724 +doccontainerchecksum d9166421ab15d7569a4db66970486c78af43ddbda9d7f9c9488dbc46eed91ab5079c0f9b7851835afeed6045ee4c65c888e1be93a95cda14623405847267880b +docfiles size=33 + RELOC/doc/latex/cv4tw/README details="Readme" + RELOC/doc/latex/cv4tw/sample-jules-verne-compact.pdf + RELOC/doc/latex/cv4tw/sample-jules-verne-sharp.pdf + RELOC/doc/latex/cv4tw/sample-jules-verne-simple.pdf +runfiles size=9 + RELOC/tex/latex/cv4tw/cv4tw-scheme.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-compact.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-core.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-sharp.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-simple.sty + RELOC/tex/latex/cv4tw/cv4tw.cls +catalogue-also moderncv curve +catalogue-contact-repository https://github.com/Cicatrice/cv4tw +catalogue-ctan /macros/latex/contrib/cv4tw +catalogue-license other-free +catalogue-topics cv class +catalogue-version 0.2 + +name cweb +category Package +revision 57972 +catalogue cwebbin +shortdesc CWEB for ANSI-C/C++ compilers +longdesc A highly portable and extended version of Levy/Knuth CWEB 3.64c +longdesc for UNIX, Windows, Mac (and possibly other operating systems). +longdesc TeX macros, CWEB macros, and NLS catalogs are included for +longdesc German, French (partially), and Italian program documentation +longdesc on any machine. Major features: Thoroughly updated code base; +longdesc several bug fixes; clean compilation (with both C and TeX) on +longdesc at least four different architectures. Added CTWILL program +longdesc with tools and utilities for brave users; including +longdesc introductory manpage. Internationalization of CTANGLE, CWEAVE, +longdesc and CTWILL with "GNU gettext utilities". New code base for CWEB +longdesc in TeX Live 2019, incorporating all features of the TL 2018 +longdesc version and adding new features from CWEBbin. As of November +longdesc 2019 CTAN no longer holds a copy of this material. Please go to +longdesc the package's github repository for more information. +depend cweb.ARCH +containersize 23440 +containerchecksum 84af281f5dd3313b2601ade3c038b67baca43a388e6a40ff079be66e2de6fbee0bfc15971241f4c6021a105d2b26926ac228de236fe13019fd0d8d8c4fd6751a +doccontainersize 389396 +doccontainerchecksum e2b13d368b1c338e487c9ac770a8f0da5ea5a58880774b8b6b5a53047a2485d1cc98682808ab1161b308f7480f5a1fcbfd2c45ac39646a3aca8ae92d17db9f92 +docfiles size=139 + texmf-dist/doc/man/man1/ctangle.1 + texmf-dist/doc/man/man1/ctangle.man1.pdf + texmf-dist/doc/man/man1/ctwill-refsort.1 + texmf-dist/doc/man/man1/ctwill-refsort.man1.pdf + texmf-dist/doc/man/man1/ctwill-twinx.1 + texmf-dist/doc/man/man1/ctwill-twinx.man1.pdf + texmf-dist/doc/man/man1/ctwill.1 + texmf-dist/doc/man/man1/ctwill.man1.pdf + texmf-dist/doc/man/man1/cweave.1 + texmf-dist/doc/man/man1/cweave.man1.pdf + texmf-dist/doc/man/man1/cweb.1 + texmf-dist/doc/man/man1/cweb.man1.pdf + texmf-dist/doc/plain/cweb/cwebman.pdf +runfiles size=51 + texmf-dist/tex/plain/cweb/ctproofmac.tex + texmf-dist/tex/plain/cweb/cttwinxmac.tex + texmf-dist/tex/plain/cweb/ctwimac.tex + texmf-dist/tex/plain/cweb/cwebbin/Xcwebmac.tex + texmf-dist/tex/plain/cweb/cwebbin/cweb_ecma94.sty + texmf-dist/tex/plain/cweb/cwebbin/cweb_hp8.sty + texmf-dist/tex/plain/cweb/cwebbin/cweb_mac8.sty + texmf-dist/tex/plain/cweb/cwebbin/cweb_pc850.sty + texmf-dist/tex/plain/cweb/cwebbin/dctproofmac.tex + texmf-dist/tex/plain/cweb/cwebbin/dctwimac.tex + texmf-dist/tex/plain/cweb/cwebbin/dcwebmac.tex + texmf-dist/tex/plain/cweb/cwebbin/dcwebstrings.tex + texmf-dist/tex/plain/cweb/cwebbin/fcwebmac.tex + texmf-dist/tex/plain/cweb/cwebbin/icwebmac.tex + texmf-dist/tex/plain/cweb/cwebbin/pdfctwimac.tex + texmf-dist/tex/plain/cweb/cwebbin/pdfwebtocfront.tex + texmf-dist/tex/plain/cweb/cwebmac.tex +catalogue-contact-repository https://github.com/ascherer/cwebbin +catalogue-license knuth +catalogue-topics litprog + +name cweb-latex +category Package +revision 28878 +shortdesc A LaTeX version of CWEB +relocated 1 +longdesc This bundle allows marking-up of CWEB code in LaTeX. The +longdesc distribution includes the "Counting Words" program distributed +longdesc with CWEB, edited to run with LaTeX. +containersize 36236 +containerchecksum 5d94dd53bf3212967ae38c094115c4ae581ec15a49e3d0f64be311cd1aa190eb9efdfec2cd83bbc3bd89250efef9470a6a6af342247fb9670992546a976a5886 +doccontainersize 240884 +doccontainerchecksum 16c8cd2681e216084564cec718401b9e8d98228e6597d38c42f8ef4cc4775e8e606fa11c84d21f0450d85ee18c7ed1e5fd9e1f54bcd0e8c2927b1147ecd4591b +docfiles size=211 + RELOC/doc/latex/cweb-latex/CATALOG + RELOC/doc/latex/cweb-latex/History + RELOC/doc/latex/cweb-latex/INSTALL + RELOC/doc/latex/cweb-latex/License + RELOC/doc/latex/cweb-latex/MANIFEST + RELOC/doc/latex/cweb-latex/Makefile + RELOC/doc/latex/cweb-latex/README details="Readme" + RELOC/doc/latex/cweb-latex/contrib/Index + RELOC/doc/latex/cweb-latex/contrib/cwbl-deutsch.sty + RELOC/doc/latex/cweb-latex/contrib/cwbl-french.sty + RELOC/doc/latex/cweb-latex/contrib/cwbl-italian.sty + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/README.txt + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/cwbasehy.tex + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/cweb-hy.cls + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/nodoc.tex + RELOC/doc/latex/cweb-latex/contrib/wagner/cwebzw.sty + RELOC/doc/latex/cweb-latex/cweb-conf.pdf details="Internal interfaces" + RELOC/doc/latex/cweb-latex/cweb-user.pdf details="User manual" + RELOC/doc/latex/cweb-latex/examples/Makefile + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.aux + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.bbl + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.dvi + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.idx + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.log + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.scn + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.tex + RELOC/doc/latex/cweb-latex/examples/rcs.sty + RELOC/doc/latex/cweb-latex/examples/tex-it + RELOC/doc/latex/cweb-latex/examples/wcltx.bib + RELOC/doc/latex/cweb-latex/examples/wcltx.w + RELOC/doc/latex/cweb-latex/src/Imakefile + RELOC/doc/latex/cweb-latex/src/README details="Readme" + RELOC/doc/latex/cweb-latex/src/TODO + RELOC/doc/latex/cweb-latex/src/cwbl-german.sty + RELOC/doc/latex/cweb-latex/src/cweave-spec.tex + RELOC/doc/latex/cweb-latex/src/cweb-conf.tex + RELOC/doc/latex/cweb-latex/src/cweb-doc.sty + RELOC/doc/latex/cweb-latex/src/cweb-fsa.fig + RELOC/doc/latex/cweb-latex/src/cweb-fsa.latex + RELOC/doc/latex/cweb-latex/src/cweb-fsa.ltx + RELOC/doc/latex/cweb-latex/src/cweb-user.tex + RELOC/doc/latex/cweb-latex/src/cweb.doc + RELOC/doc/latex/cweb-latex/src/cwebarray.sty + RELOC/doc/latex/cweb-latex/src/cwebbase.doc + RELOC/doc/latex/cweb-latex/src/cwebparts.doc + RELOC/doc/latex/cweb-latex/src/cwebx.sty + RELOC/doc/latex/cweb-latex/src/keyvald.dtx + RELOC/doc/latex/cweb-latex/src/keyvald.ins + RELOC/doc/latex/cweb-latex/src/style/cweb-doc.el + RELOC/doc/latex/cweb-latex/src/test/Imakefile + RELOC/doc/latex/cweb-latex/src/test/badend.w + RELOC/doc/latex/cweb-latex/src/test/badopts.w + RELOC/doc/latex/cweb-latex/src/test/change.ch + RELOC/doc/latex/cweb-latex/src/test/change.w + RELOC/doc/latex/cweb-latex/src/test/enddocbegin.w + RELOC/doc/latex/cweb-latex/src/test/flat.w + RELOC/doc/latex/cweb-latex/src/test/german.w + RELOC/doc/latex/cweb-latex/src/test/language-german.ch + RELOC/doc/latex/cweb-latex/src/test/language-german.w + RELOC/doc/latex/cweb-latex/src/test/minimal.w + RELOC/doc/latex/cweb-latex/src/test/modes.w + RELOC/doc/latex/cweb-latex/src/test/newif.w + RELOC/doc/latex/cweb-latex/src/test/nolists.w + RELOC/doc/latex/cweb-latex/src/test/parts-code.w + RELOC/doc/latex/cweb-latex/src/test/parts.tex + RELOC/doc/latex/cweb-latex/src/test/refname.w + RELOC/doc/latex/cweb-latex/src/test/report.w + RELOC/doc/latex/cweb-latex/src/test/section.w + RELOC/doc/latex/cweb-latex/src/test/sup-changes.w + RELOC/doc/latex/cweb-latex/src/test/sup-format.w + RELOC/doc/latex/cweb-latex/src/test/sup-lists.w + RELOC/doc/latex/cweb-latex/src/test/titlepage.w + RELOC/doc/latex/cweb-latex/src/test/token.w + RELOC/doc/latex/cweb-latex/src/test/vbar.w +runfiles size=33 + RELOC/tex/latex/cweb-latex/cwbl-german.sty + RELOC/tex/latex/cweb-latex/cweb.cls + RELOC/tex/latex/cweb-latex/cwebarray.sty + RELOC/tex/latex/cweb-latex/cwebbase.tex + RELOC/tex/latex/cweb-latex/keyvald.sty +catalogue-ctan /macros/latex/contrib/cweb +catalogue-license gpl +catalogue-topics litprog + +name cweb-old +category Package +revision 49271 +relocated 1 +containersize 9720 +containerchecksum efb1c9b65f7c628905d2dac1373da96346b6b6c78f15e8c0c8055e86c1a52b09bdb5f78fb06106e350d10a8daa378eb45f5fe788c6c3d8b23f0b47c3db6f256a +runfiles size=16 + RELOC/tex/plain/cweb-old/README + RELOC/tex/plain/cweb-old/pdfXcwebmac.tex + RELOC/tex/plain/cweb-old/pdfcwebmac.tex + RELOC/tex/plain/cweb-old/pdfdcwebmac.tex + RELOC/tex/plain/cweb-old/pdffcwebmac.tex + RELOC/tex/plain/cweb-old/pdficwebmac.tex + RELOC/tex/plain/cweb-old/pdfwebmac.tex + +name cweb.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of cweb +containersize 110384 +containerchecksum 4095c853348c87d09bca2269c2e92c8a0ec3cde028fe19a58ae39398085e5902ce39753a3d0f73139cff7cdbfb10fee9daae7c10145bc199883494a110b2eb04 +binfiles arch=aarch64-linux size=114 + bin/aarch64-linux/ctangle + bin/aarch64-linux/ctwill + bin/aarch64-linux/ctwill-refsort + bin/aarch64-linux/ctwill-twinx + bin/aarch64-linux/cweave + +name cweb.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of cweb +containersize 131440 +containerchecksum 03be843dd2ecb1fd7017c69baed178ec06460913d0360480aba779b31043af6f2d3e86592483a910f43407be6ed443b7ef85f5e618de14f1ca708e9f672831df +binfiles arch=amd64-freebsd size=129 + bin/amd64-freebsd/ctangle + bin/amd64-freebsd/ctwill + bin/amd64-freebsd/ctwill-refsort + bin/amd64-freebsd/ctwill-twinx + bin/amd64-freebsd/cweave + +name cweb.amd64-netbsd +category Package +revision 58145 +shortdesc amd64-netbsd files of cweb +containersize 109416 +containerchecksum 50d4c4fcb78a26860735e7093967f31e2def983a6dce6db58d9ae4930ca032823a09bb1008cf8b5c83c4982449bc582e13d06cb421778e4717589f9d62814f81 +binfiles arch=amd64-netbsd size=130 + bin/amd64-netbsd/ctangle + bin/amd64-netbsd/ctwill + bin/amd64-netbsd/ctwill-refsort + bin/amd64-netbsd/ctwill-twinx + bin/amd64-netbsd/cweave + +name cweb.armhf-linux +category Package +revision 58180 +shortdesc armhf-linux files of cweb +containersize 87404 +containerchecksum 30da51997e72093a0a4d678ab97fcdb05990c3362d71fc2010de4172b176e0147fa5d22a1b280d613def8fc7e891370e00fc4ed46d10c480fad921b5d4d04362 +binfiles arch=armhf-linux size=92 + bin/armhf-linux/ctangle + bin/armhf-linux/ctwill + bin/armhf-linux/ctwill-refsort + bin/armhf-linux/ctwill-twinx + bin/armhf-linux/cweave + +name cweb.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of cweb +containersize 68048 +containerchecksum 28a6c70eea7fa648850fe99d8a95a2772d50ab86829a1dca813b5b9be2caeba4be1ff43f1d9ac5a09fafc7f7d4a654f33721b158f00a932ac3d443a5fb5c7472 +binfiles arch=i386-cygwin size=63 + bin/i386-cygwin/ctangle.exe + bin/i386-cygwin/ctwill-refsort.exe + bin/i386-cygwin/ctwill-twinx.exe + bin/i386-cygwin/ctwill.exe + bin/i386-cygwin/cweave.exe + +name cweb.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of cweb +containersize 107384 +containerchecksum fb36234ee88a9bad1165e437c44184ce809ab3619d0717bd2065ac16b497c9191ef5be7a4f6ab08cdcbf308fe681b68f4d11d31ca5a6a039968c4f6fee6c02ab +binfiles arch=i386-freebsd size=111 + bin/i386-freebsd/ctangle + bin/i386-freebsd/ctwill + bin/i386-freebsd/ctwill-refsort + bin/i386-freebsd/ctwill-twinx + bin/i386-freebsd/cweave + +name cweb.i386-linux +category Package +revision 58136 +shortdesc i386-linux files of cweb +containersize 110948 +containerchecksum 481a384feb53e234e95e1c7c9cf1c63aee3c40a85a07164ef99c2c7565bb5ce23fd02616ba67db67fa7d88c4cfdcb9451751a2d7bdbe6569d0fbd43a4b9333f0 +binfiles arch=i386-linux size=114 + bin/i386-linux/ctangle + bin/i386-linux/ctwill + bin/i386-linux/ctwill-refsort + bin/i386-linux/ctwill-twinx + bin/i386-linux/cweave + +name cweb.i386-netbsd +category Package +revision 58145 +shortdesc i386-netbsd files of cweb +containersize 90680 +containerchecksum b0320d33f0a989ef68521489996882ec3120f57df3ec618bc035f6796d0ebf30f628fd9c6c2fc9fb1ff554b1bd8496f204783ec66b65efd3aca4f97805384827 +binfiles arch=i386-netbsd size=117 + bin/i386-netbsd/ctangle + bin/i386-netbsd/ctwill + bin/i386-netbsd/ctwill-refsort + bin/i386-netbsd/ctwill-twinx + bin/i386-netbsd/cweave + +name cweb.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of cweb +containersize 106872 +containerchecksum 1710bd96d6fd2ece1ba93ef150bc88a18817b3f0c7c5b1e6049cdb8b6dd34b9d51d7b0a16d169816238718754d141d4cdba928c71989d07ae4ae28bb4b807836 +binfiles arch=i386-solaris size=99 + bin/i386-solaris/ctangle + bin/i386-solaris/ctwill + bin/i386-solaris/ctwill-refsort + bin/i386-solaris/ctwill-twinx + bin/i386-solaris/cweave + +name cweb.universal-darwin +category Package +revision 58157 +shortdesc universal-darwin files of cweb +containersize 243276 +containerchecksum 13ab399933101839446f61e35ddf8c12efe2254824e67bfa9d80ae2696732fd3ce8a99b45eb6edc454976f2d024de9b660f79f765577f696e28d53d62a7b2daa +binfiles arch=universal-darwin size=352 + bin/universal-darwin/ctangle + bin/universal-darwin/ctwill + bin/universal-darwin/ctwill-refsort + bin/universal-darwin/ctwill-twinx + bin/universal-darwin/cweave + +name cweb.win32 +category Package +revision 58783 +shortdesc win32 files of cweb +containersize 72252 +containerchecksum dad428345f1168959c89e02049d22d488ca07dc91a3ba1385aa9f49699a558a5d17491470122437124ba3bfcfb5b8d04c4bf298f867ae7963201a3bb9daf2186 +binfiles arch=win32 size=59 + bin/win32/ctangle.exe + bin/win32/ctwill-refsort.exe + bin/win32/ctwill-twinx.exe + bin/win32/ctwill.exe + bin/win32/cweave.exe + +name cweb.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of cweb +containersize 80848 +containerchecksum c8f070c25319332e6218c6631f926344503757bc42511eee07aae55cd08d5b4c73fb0545ca978050b4fe8e3eea8723783717740d81db4ffa9730b530f2356957 +binfiles arch=x86_64-cygwin size=63 + bin/x86_64-cygwin/ctangle.exe + bin/x86_64-cygwin/ctwill-refsort.exe + bin/x86_64-cygwin/ctwill-twinx.exe + bin/x86_64-cygwin/ctwill.exe + bin/x86_64-cygwin/cweave.exe + +name cweb.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of cweb +containersize 104596 +containerchecksum a28935b79d26df9ddc450ab8142164b574beed3a9137cd6722f3cbf5a5c986dd8f78dcd12c48c8b4190ef75856c177958bf24771a4f67746a83b13d9d5078131 +binfiles arch=x86_64-darwinlegacy size=104 + bin/x86_64-darwinlegacy/ctangle + bin/x86_64-darwinlegacy/ctwill + bin/x86_64-darwinlegacy/ctwill-refsort + bin/x86_64-darwinlegacy/ctwill-twinx + bin/x86_64-darwinlegacy/cweave + +name cweb.x86_64-linux +category Package +revision 58136 +shortdesc x86_64-linux files of cweb +containersize 116520 +containerchecksum 7f1e4a1f26d23b83a2a01cf61f6ff5624d355a95a20518733df94f4faa8f92a5078d86173e000c87e0417dbd02d56abf9bff2dc2d3b3621d398c1040a34d84a6 +binfiles arch=x86_64-linux size=107 + bin/x86_64-linux/ctangle + bin/x86_64-linux/ctwill + bin/x86_64-linux/ctwill-refsort + bin/x86_64-linux/ctwill-twinx + bin/x86_64-linux/cweave + +name cweb.x86_64-linuxmusl +category Package +revision 58136 +shortdesc x86_64-linuxmusl files of cweb +containersize 117428 +containerchecksum 5878ea36656565b93db88cb50b3adfc1a500bb03248b1170e4504caeb433b6c5139808be0e0ba847ef0559a3f4d62f74cb926e7ef2af429d8f4533af934dbde8 +binfiles arch=x86_64-linuxmusl size=112 + bin/x86_64-linuxmusl/ctangle + bin/x86_64-linuxmusl/ctwill + bin/x86_64-linuxmusl/ctwill-refsort + bin/x86_64-linuxmusl/ctwill-twinx + bin/x86_64-linuxmusl/cweave + +name cweb.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of cweb +containersize 122120 +containerchecksum e2e75ca95a62c76d0c6d3c99b7ab10c52930894d62cb837019de9391c0816c87b542d034483fb456ee56758f968febf6416a0d029e1d92b6fcfcf1017a92af5d +binfiles arch=x86_64-solaris size=116 + bin/x86_64-solaris/ctangle + bin/x86_64-solaris/ctwill + bin/x86_64-solaris/ctwill-refsort + bin/x86_64-solaris/ctwill-twinx + bin/x86_64-solaris/cweave + +name cyber +category Package +revision 46776 +shortdesc Annotate compliance with cybersecurity requirements +relocated 1 +longdesc This LaTeX package helps you write documents indicating your +longdesc compliance with cybersecurity requirements. It also helps you +longdesc format your document in a form suitable inside the U.S. +longdesc Department of Defense, by attaching distribution statements, +longdesc destruction notices, organization logos, and security labels to +longdesc it. +containersize 3508 +containerchecksum f79e9ce92036c8a106de0a5da06f5c2b833683527f1225f5b69298b6d886cb967f9d1eb459b7a0543d89b0943a8425dc802619fadb9d69aa4f57a5ccc71a593b +doccontainersize 247024 +doccontainerchecksum 4dfc2289e92552dde5cd1703e5644e6a19f4281dd16cb80d86caa35cfbc07eaf0f5cd57686e185adafce3883433fc87b1fcb590cd65087571115dd4b98023d02 +docfiles size=63 + RELOC/doc/latex/cyber/LICENSE + RELOC/doc/latex/cyber/README details="Readme" + RELOC/doc/latex/cyber/cyber.pdf details="Package documentation" +srccontainersize 12624 +srccontainerchecksum cf9beb92528c860a3ec39041c0436d40d113bb0cfaf89ae9c5b76dd44ca18b846b14739c1a2b447ea1ff84042dbecd48ac2cc118615ebd30013da305e822c81d +srcfiles size=11 + RELOC/source/latex/cyber/cyber.dtx + RELOC/source/latex/cyber/cyber.ins +runfiles size=3 + RELOC/tex/latex/cyber/cyber.sty +catalogue-ctan /macros/latex/contrib/cyber +catalogue-license mit +catalogue-topics doc-supp +catalogue-version 2.2 + +name cybercic +category Package +revision 37659 +shortdesc "Controls in Contents" for the cyber package +relocated 1 +longdesc This package is used in concert with the cyber package to make +longdesc documents with annotations of compliance with cybersecurity +longdesc requirements. "cic" stands for "Controls in Contents", and when +longdesc you include this package, some notations of compliance are +longdesc added to section names as seen in the table of contents of the +longdesc final document. It also makes your document more brittle in +longdesc unexpected ways: for example, when you use cybercic in the same +longdesc document as hyperref, you cannot use any formatting in your +longdesc section titles. So don't use cybercic unless you need to. +containersize 2392 +containerchecksum f3bfbece973cb3b9a3077c160b0212561056cbf7733e1c011b39fa1dbf94395937f4858964acd0874f1cd3ba283df9797cdf19e8e71e7363a7619c5ae653881c +doccontainersize 191164 +doccontainerchecksum dc72453f55c6a72913865f584b026baf287a35885548ee5c2c8d29cefd60595f4aa9f7c456f59ebf3ed3e3b72711beaf90cf85f24c2ce6773146fd2a4724767f +docfiles size=49 + RELOC/doc/latex/cybercic/LICENSE + RELOC/doc/latex/cybercic/README details="Readme" + RELOC/doc/latex/cybercic/cybercic.pdf details="Package documentation" +srccontainersize 7480 +srccontainerchecksum 55223353fadf2986f777b4a61b2f34662f493d2c70e29cba8712625c16dfa49ba50644d406f49a908afb0e4b6816666c1cf5f060685d5428eb2787b6b4ef233b +srcfiles size=6 + RELOC/source/latex/cybercic/cybercic.dtx + RELOC/source/latex/cybercic/cybercic.ins +runfiles size=2 + RELOC/tex/latex/cybercic/cybercic.sty +catalogue-ctan /macros/latex/contrib/cybercic +catalogue-license mit +catalogue-topics doc-supp toc-etc +catalogue-version 2.1 + +name cyklop +category Package +revision 18651 +shortdesc The Cyclop typeface +relocated 1 +longdesc The Cyclop typeface was designed in the 1920s at the workshop +longdesc of Warsaw type foundry "Odlewnia Czcionek J. Idzkowski i S-ka". +longdesc This sans serif typeface has a highly modulated stroke so it +longdesc has high typographic contrast. The vertical stems are much +longdesc heavier then horizontal ones. Most characters have thin +longdesc rectangles as additional counters giving the unique shape of +longdesc the characters. The lead types of Cyclop typeface were produced +longdesc in slanted variant at sizes 8-48 pt. It was heavily used for +longdesc heads in newspapers and accidents prints. Typesetters used +longdesc Cyclop in the inter-war period, during the occupation in the +longdesc underground press. The typeface was used until the beginnings +longdesc of the offset print and computer typesetting era. Nowadays it +longdesc is hard to find the metal types of this typeface. The font was +longdesc generated using the Metatype1 package. Then the original set of +longdesc characters was completed by adding the full set of accented +longdesc letters and characters of the modern Latin alphabets (including +longdesc Vietnamese). The upright variant was generated and it was more +longdesc complicated task than it appeared at the beginning. 11 upright +longdesc letters of the Cyclop typeface were presented in the book by +longdesc Filip Trzaska, "Podstawy techniki wydawniczej" ("Foundation of +longdesc the publishing techonology"), Warsaw 1967. But even the author +longdesc of the book does not know what was the source of the presented +longdesc examples. The fonts are distributed in the Type1 and OpenType +longdesc formats along with the files necessary for use these fonts in +longdesc TeX and LaTeX including encoding definition files: T1 (ec), T5 +longdesc (Vietnamese), OT4, QX, texnansi and nonstandard ones (IL2 for +longdesc Czech fonts). +execute addMap cyklop.map +containersize 314684 +containerchecksum dd6584831fae3eb388f66e42f289f9bdeff401412c7df471752c4aa56bc67c16c56f6f271d11c289a1389faae138ac15abc41bb716bf344bc2f49fa087ecd380 +doccontainersize 405780 +doccontainerchecksum 4d81a01eea30a4f86b2f0a7c9c21923196dbd28c7d5ba5c1639068318ef227720550b3052cf0ead6f3194450d50dce9acaa325a0dace0e6fd230e0ed11d9b106 +docfiles size=119 + RELOC/doc/fonts/cyklop/00readme + RELOC/doc/fonts/cyklop/00readme-pl + RELOC/doc/fonts/cyklop/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/cyklop/MANIFEST.txt + RELOC/doc/fonts/cyklop/cyklop-info.pdf details="Package documentation" +runfiles size=364 + RELOC/fonts/afm/public/cyklop/cyklopi.afm + RELOC/fonts/afm/public/cyklop/cyklopr.afm + RELOC/fonts/enc/dvips/cyklop/cs-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/cs-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/ec-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/ec-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/l7x-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/l7x-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/ly1-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/ly1-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/qx-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/qx-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/t5-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/t5-cyklop.enc + RELOC/fonts/map/dvips/cyklop/cyklop-cs.map + RELOC/fonts/map/dvips/cyklop/cyklop-ec.map + RELOC/fonts/map/dvips/cyklop/cyklop-l7x.map + RELOC/fonts/map/dvips/cyklop/cyklop-ly1.map + RELOC/fonts/map/dvips/cyklop/cyklop-qx.map + RELOC/fonts/map/dvips/cyklop/cyklop-t5.map + RELOC/fonts/map/dvips/cyklop/cyklop.map + RELOC/fonts/opentype/public/cyklop/cyklop-italic.otf + RELOC/fonts/opentype/public/cyklop/cyklop-regular.otf + RELOC/fonts/tfm/public/cyklop/cs-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/cs-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/cs-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/cs-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopr.tfm + RELOC/fonts/type1/public/cyklop/cyklopi.pfb + RELOC/fonts/type1/public/cyklop/cyklopr.pfb + RELOC/tex/latex/cyklop/cyklop.sty + RELOC/tex/latex/cyklop/il2cyklop.fd + RELOC/tex/latex/cyklop/l7xcyklop.fd + RELOC/tex/latex/cyklop/ly1cyklop.fd + RELOC/tex/latex/cyklop/ot1cyklop.fd + RELOC/tex/latex/cyklop/ot4cyklop.fd + RELOC/tex/latex/cyklop/qxcyklop.fd + RELOC/tex/latex/cyklop/t1cyklop.fd + RELOC/tex/latex/cyklop/t5cyklop.fd +catalogue-ctan /fonts/cyklop +catalogue-license gfl +catalogue-topics font font-sans font-otf font-type1 +catalogue-version 0.915 + +name cyrillic +category Package +revision 47350 +catalogue latex-cyrillic +shortdesc Support for Cyrillic fonts in LaTeX +relocated 1 +longdesc This bundle of macros files provides macro support (including +longdesc font encoding macros) for the use of Cyrillic characters in +longdesc fonts encoded under the T2* and X2 encodings. These encodings +longdesc cover (between them) pretty much every language that is written +longdesc in a Cyrillic alphabet. This directory is part of the LaTeX +longdesc "required" distribution. +depend cyrillic-bin +containersize 15820 +containerchecksum 447f8628641df193b258559435567e5e7f912de6a87688e68676ab683512f09661b2098707fa6ff9544972bdf3a58d81caf946811d3ff8516782062b1a10545c +doccontainersize 924900 +doccontainerchecksum fa2a5ca9c0952b80150e0d2b37f9472981ba3ce45e8ea5cba399551c6cf5a309d8329702494eefa759ca6423fc7df523cdce47eb9e9ecd12a5b15c1ba322ac48 +docfiles size=291 + RELOC/doc/latex/cyrillic/README.md details="Readme" + RELOC/doc/latex/cyrillic/changes.txt + RELOC/doc/latex/cyrillic/cyinpenc.pdf + RELOC/doc/latex/cyrillic/cyoutenc.pdf + RELOC/doc/latex/cyrillic/lcy.pdf + RELOC/doc/latex/cyrillic/lcycmlh.pdf + RELOC/doc/latex/cyrillic/manifest.txt + RELOC/doc/latex/cyrillic/ot2.pdf + RELOC/doc/latex/cyrillic/ot2cmams.pdf + RELOC/doc/latex/cyrillic/ot2cmlh.pdf + RELOC/doc/latex/cyrillic/t2lhfnt.pdf +srccontainersize 21448 +srccontainerchecksum 5f19310aa96200cd97eede4308ee7e0de75c06905880879b8fe83c614b63588717e2cff476e4dfa6e32a1a83c5925eeda0bc915d3b1bdf42250ac8523f61c215 +srcfiles size=46 + RELOC/source/latex/cyrillic/cyinpenc.dtx + RELOC/source/latex/cyrillic/cyoutenc.dtx + RELOC/source/latex/cyrillic/cyrlatex.ins + RELOC/source/latex/cyrillic/lcy.dtx + RELOC/source/latex/cyrillic/lcycmlh.fdd + RELOC/source/latex/cyrillic/ot2.dtx + RELOC/source/latex/cyrillic/ot2cmams.fdd + RELOC/source/latex/cyrillic/ot2cmlh.fdd + RELOC/source/latex/cyrillic/t2lhfnt.fdd +runfiles size=133 + RELOC/tex/latex/cyrillic/cp1251.def + RELOC/tex/latex/cyrillic/cp855.def + RELOC/tex/latex/cyrillic/cp866.def + RELOC/tex/latex/cyrillic/cp866av.def + RELOC/tex/latex/cyrillic/cp866mav.def + RELOC/tex/latex/cyrillic/cp866nav.def + RELOC/tex/latex/cyrillic/cp866tat.def + RELOC/tex/latex/cyrillic/ctt.def + RELOC/tex/latex/cyrillic/dbk.def + RELOC/tex/latex/cyrillic/iso88595.def + RELOC/tex/latex/cyrillic/isoir111.def + RELOC/tex/latex/cyrillic/koi8-r.def + RELOC/tex/latex/cyrillic/koi8-ru.def + RELOC/tex/latex/cyrillic/koi8-u.def + RELOC/tex/latex/cyrillic/lcy.sty + RELOC/tex/latex/cyrillic/lcyccr.fd + RELOC/tex/latex/cyrillic/lcycmbr.fd + RELOC/tex/latex/cyrillic/lcycmdh.fd + RELOC/tex/latex/cyrillic/lcycmfib.fd + RELOC/tex/latex/cyrillic/lcycmfr.fd + RELOC/tex/latex/cyrillic/lcycmr.fd + RELOC/tex/latex/cyrillic/lcycmss.fd + RELOC/tex/latex/cyrillic/lcycmtl.fd + RELOC/tex/latex/cyrillic/lcycmtt.fd + RELOC/tex/latex/cyrillic/lcycmvtt.fd + RELOC/tex/latex/cyrillic/lcydefs.tex + RELOC/tex/latex/cyrillic/lcyenc.def + RELOC/tex/latex/cyrillic/lcylcmss.fd + RELOC/tex/latex/cyrillic/lcylcmtt.fd + RELOC/tex/latex/cyrillic/maccyr.def + RELOC/tex/latex/cyrillic/macukr.def + RELOC/tex/latex/cyrillic/mik.def + RELOC/tex/latex/cyrillic/mls.def + RELOC/tex/latex/cyrillic/mnk.def + RELOC/tex/latex/cyrillic/mos.def + RELOC/tex/latex/cyrillic/ncc.def + RELOC/tex/latex/cyrillic/ot2ccr.fd + RELOC/tex/latex/cyrillic/ot2cmbr.fd + RELOC/tex/latex/cyrillic/ot2cmdh.fd + RELOC/tex/latex/cyrillic/ot2cmfib.fd + RELOC/tex/latex/cyrillic/ot2cmfr.fd + RELOC/tex/latex/cyrillic/ot2cmr.fd + RELOC/tex/latex/cyrillic/ot2cmss.fd + RELOC/tex/latex/cyrillic/ot2cmtl.fd + RELOC/tex/latex/cyrillic/ot2cmtt.fd + RELOC/tex/latex/cyrillic/ot2cmvtt.fd + RELOC/tex/latex/cyrillic/ot2enc.def + RELOC/tex/latex/cyrillic/ot2lcmss.fd + RELOC/tex/latex/cyrillic/ot2lcmtt.fd + RELOC/tex/latex/cyrillic/ot2wlcyr.fd + RELOC/tex/latex/cyrillic/ot2wlcyss.fd + RELOC/tex/latex/cyrillic/ot2wncyr.fd + RELOC/tex/latex/cyrillic/ot2wncyss.fd + RELOC/tex/latex/cyrillic/pt154.def + RELOC/tex/latex/cyrillic/pt254.def + RELOC/tex/latex/cyrillic/t2accr.fd + RELOC/tex/latex/cyrillic/t2acmbr.fd + RELOC/tex/latex/cyrillic/t2acmdh.fd + RELOC/tex/latex/cyrillic/t2acmfib.fd + RELOC/tex/latex/cyrillic/t2acmfr.fd + RELOC/tex/latex/cyrillic/t2acmr.fd + RELOC/tex/latex/cyrillic/t2acmss.fd + RELOC/tex/latex/cyrillic/t2acmtl.fd + RELOC/tex/latex/cyrillic/t2acmtt.fd + RELOC/tex/latex/cyrillic/t2acmvtt.fd + RELOC/tex/latex/cyrillic/t2aenc.def + RELOC/tex/latex/cyrillic/t2alcmss.fd + RELOC/tex/latex/cyrillic/t2alcmtt.fd + RELOC/tex/latex/cyrillic/t2bccr.fd + RELOC/tex/latex/cyrillic/t2bcmbr.fd + RELOC/tex/latex/cyrillic/t2bcmdh.fd + RELOC/tex/latex/cyrillic/t2bcmfib.fd + RELOC/tex/latex/cyrillic/t2bcmfr.fd + RELOC/tex/latex/cyrillic/t2bcmr.fd + RELOC/tex/latex/cyrillic/t2bcmss.fd + RELOC/tex/latex/cyrillic/t2bcmtl.fd + RELOC/tex/latex/cyrillic/t2bcmtt.fd + RELOC/tex/latex/cyrillic/t2bcmvtt.fd + RELOC/tex/latex/cyrillic/t2benc.def + RELOC/tex/latex/cyrillic/t2blcmss.fd + RELOC/tex/latex/cyrillic/t2blcmtt.fd + RELOC/tex/latex/cyrillic/t2cccr.fd + RELOC/tex/latex/cyrillic/t2ccmbr.fd + RELOC/tex/latex/cyrillic/t2ccmdh.fd + RELOC/tex/latex/cyrillic/t2ccmfib.fd + RELOC/tex/latex/cyrillic/t2ccmfr.fd + RELOC/tex/latex/cyrillic/t2ccmr.fd + RELOC/tex/latex/cyrillic/t2ccmss.fd + RELOC/tex/latex/cyrillic/t2ccmtl.fd + RELOC/tex/latex/cyrillic/t2ccmtt.fd + RELOC/tex/latex/cyrillic/t2ccmvtt.fd + RELOC/tex/latex/cyrillic/t2cenc.def + RELOC/tex/latex/cyrillic/t2clcmss.fd + RELOC/tex/latex/cyrillic/t2clcmtt.fd + RELOC/tex/latex/cyrillic/x2ccr.fd + RELOC/tex/latex/cyrillic/x2cmbr.fd + RELOC/tex/latex/cyrillic/x2cmdh.fd + RELOC/tex/latex/cyrillic/x2cmfib.fd + RELOC/tex/latex/cyrillic/x2cmfr.fd + RELOC/tex/latex/cyrillic/x2cmr.fd + RELOC/tex/latex/cyrillic/x2cmss.fd + RELOC/tex/latex/cyrillic/x2cmtl.fd + RELOC/tex/latex/cyrillic/x2cmtt.fd + RELOC/tex/latex/cyrillic/x2cmvtt.fd + RELOC/tex/latex/cyrillic/x2enc.def + RELOC/tex/latex/cyrillic/x2lcmss.fd + RELOC/tex/latex/cyrillic/x2lcmtt.fd +catalogue-ctan /macros/latex/required/cyrillic +catalogue-license lppl1.3 +catalogue-topics cyrillic + +name cyrillic-bin +category TLCore +revision 53559 +shortdesc Cyrillic bibtex and makeindex +depend cyrillic-bin.ARCH +containersize 1500 +containerchecksum cb6d1ed18b1e8cf24d0856fc8a8fe8b2e4c2e5889e68521440386c0fcde8226367242c8adee9d4f127cadaa3f4a4ca2693ee501810d243d426fc8a395a49e3a9 +doccontainersize 25592 +doccontainerchecksum e8f1aa0313026995668e491f63171c57841c79187435b8b7ad9e807d2c7b40970b2ec1b14181d6122231b7557fb66c39dca0eec0a877735380d152482865feec +docfiles size=12 + texmf-dist/doc/man/man1/rubibtex.1 + texmf-dist/doc/man/man1/rubibtex.man1.pdf + texmf-dist/doc/man/man1/rumakeindex.1 + texmf-dist/doc/man/man1/rumakeindex.man1.pdf +runfiles size=2 + texmf-dist/scripts/texlive-extra/rubibtex.sh + texmf-dist/scripts/texlive-extra/rumakeindex.sh + +name cyrillic-bin.aarch64-linux +category TLCore +revision 53554 +shortdesc aarch64-linux files of cyrillic-bin +containersize 384 +containerchecksum 45baa3d3f0d2773bbb5c591c340d1e7eb963f233b23644ed2a61cee3a46810a63d559cd94033141ed60187c96f012479153c54caea36f0bdd15c244c42cc8357 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/rubibtex + bin/aarch64-linux/rumakeindex + +name cyrillic-bin.amd64-freebsd +category TLCore +revision 53554 +shortdesc amd64-freebsd files of cyrillic-bin +containersize 388 +containerchecksum b747b041c469fd81be2d67a990e5201997efede0ee423096a62682d1e2ee8d9dbd80e105d15b82ab6283c881d8bfa0e5be2b8ee01703d0ffdc57fbc305edfae5 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/rubibtex + bin/amd64-freebsd/rumakeindex + +name cyrillic-bin.amd64-netbsd +category TLCore +revision 53554 +shortdesc amd64-netbsd files of cyrillic-bin +containersize 380 +containerchecksum 4726f7c74a575a7173d8d2ef1267a812ca2161309eab849eaa4afcc211ed1238c35d18df51a2a42a33cbaa9f6d7cc39e59a02fbd5a3ddffcf4d70c6d1b1e3d87 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/rubibtex + bin/amd64-netbsd/rumakeindex + +name cyrillic-bin.armhf-linux +category TLCore +revision 53554 +shortdesc armhf-linux files of cyrillic-bin +containersize 388 +containerchecksum 624ac1130f8d98dbba20c230590776d70ed0511da4bfa03a00f4b175e811d471bc15b9e21ada6d716e8a25c9343e6c0c3d3983ac3eb6f1960e133eb21f8c83b5 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/rubibtex + bin/armhf-linux/rumakeindex + +name cyrillic-bin.i386-cygwin +category TLCore +revision 53554 +shortdesc i386-cygwin files of cyrillic-bin +containersize 384 +containerchecksum 5da95d053cb49e1782b7a30ffa61b09c14a72a47cf8779c244039c25d848b00b1f2d5c6e2257b69120df8e13b0d46e61c1ed5b28d83ddceeb2d15ae62792ac59 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/rubibtex + bin/i386-cygwin/rumakeindex + +name cyrillic-bin.i386-freebsd +category TLCore +revision 53554 +shortdesc i386-freebsd files of cyrillic-bin +containersize 380 +containerchecksum 85582ac341e47eedff988e1768d9fe3f649ede8a8e4a04aafee6af43fc7764d079ee00efbe8ecb242247d9f9ea9c4066adae696b54e675bc7e83ff28add3f795 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/rubibtex + bin/i386-freebsd/rumakeindex + +name cyrillic-bin.i386-linux +category TLCore +revision 53554 +shortdesc i386-linux files of cyrillic-bin +containersize 384 +containerchecksum 888d3d89c3ef7f9df06339d13d20eec5d03283b33c30ba5fbf019dc6ec99b71cd63accf2abbff2462f025d77fb91d2f30adeb3ca191533a8d5e46c4cad3ef9ba +binfiles arch=i386-linux size=2 + bin/i386-linux/rubibtex + bin/i386-linux/rumakeindex + +name cyrillic-bin.i386-netbsd +category TLCore +revision 53554 +shortdesc i386-netbsd files of cyrillic-bin +containersize 384 +containerchecksum 64ef3697f6ef812e87166457af87ce2412a7a7dafe64b5312b8d61fdca260e9f93675d5992c93d540666139d5783df0711ce1e8cfe31ff774c37497d2141a317 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/rubibtex + bin/i386-netbsd/rumakeindex + +name cyrillic-bin.i386-solaris +category TLCore +revision 53554 +shortdesc i386-solaris files of cyrillic-bin +containersize 380 +containerchecksum c4219e49b22cc1fd5478dc5a470d019b40beea61f614308f9f968ed73becda121c110b8c28674f98a978d2d7d63fe4e9fe7965397d430b540f076c9d0e5dec39 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/rubibtex + bin/i386-solaris/rumakeindex + +name cyrillic-bin.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of cyrillic-bin +containersize 388 +containerchecksum 60f5c67a65a2f85fbf3fafc18f4b96dca77e988eb7d6fe22a119a7915bde634edd50a8a7d547907725d8badc84ad1735f5f35e6bfe93ea730590d5946b011e5e +binfiles arch=universal-darwin size=2 + bin/universal-darwin/rubibtex + bin/universal-darwin/rumakeindex + +name cyrillic-bin.x86_64-cygwin +category TLCore +revision 53554 +shortdesc x86_64-cygwin files of cyrillic-bin +containersize 388 +containerchecksum 923bcd40ad5de45f7a099add3d2fda218b0592a3e89b8cf3e1806e8c7fbca34340c7001fe4a1d3eda40e5bff58c8b89a278f4faca776c8abafafd6faa258e9e8 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/rubibtex + bin/x86_64-cygwin/rumakeindex + +name cyrillic-bin.x86_64-darwinlegacy +category TLCore +revision 53554 +shortdesc x86_64-darwinlegacy files of cyrillic-bin +containersize 388 +containerchecksum 78f947713bdeba8b13c0e1ee48bc7827bcd082253ddc4d43ce7d08916f7a490417d7e97190e535dd4fe4fa48810ccc17ce42b2016f8742bdbdd13ea3af0f6700 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/rubibtex + bin/x86_64-darwinlegacy/rumakeindex + +name cyrillic-bin.x86_64-linux +category TLCore +revision 53554 +shortdesc x86_64-linux files of cyrillic-bin +containersize 380 +containerchecksum b2739a02e9e564589d2ce50ec34bc53c61c5e5e0105cf766f5dab9098260d2662f8e7b4a090e41afad4ba1a343c737ac4abbe327d190c142245e89db77967757 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/rubibtex + bin/x86_64-linux/rumakeindex + +name cyrillic-bin.x86_64-linuxmusl +category TLCore +revision 53554 +shortdesc x86_64-linuxmusl files of cyrillic-bin +containersize 392 +containerchecksum 2599140ecd107c741d58e34f505792ae8b1e660cc2790736894cd1fce4be66885e6da68e48dab9c000df38375c0503ba17008721328fe2b56b7ec3eaaecc066e +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/rubibtex + bin/x86_64-linuxmusl/rumakeindex + +name cyrillic-bin.x86_64-solaris +category TLCore +revision 53554 +shortdesc x86_64-solaris files of cyrillic-bin +containersize 384 +containerchecksum 5fe0a19d57e49cce75bf83da110c1829034b6d52a8ae2112b7dc3a30fc709e6b6f07e171500bddbc0543d8572224eb193a86f5352ca623829a824dedbd7799ae +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/rubibtex + bin/x86_64-solaris/rumakeindex + +name cyrplain +category Package +revision 45692 +catalogue t2 +shortdesc Support for using T2 encoding +relocated 1 +longdesc The T2 bundle provides a variety of separate support functions +longdesc for using Cyrillic characters in LaTeX: the mathtext package, +longdesc for using Cyrillic letters 'transparently' in formulae; the +longdesc citehack package, for using Cyrillic (or indeed any non-ascii) +longdesc characters in citation keys; support for Cyrillic in BibTeX; +longdesc support for Cyrillic in Makeindex; and various items of font +longdesc support. +containersize 8724 +containerchecksum 84651aeb63d3e47f208732f3c0d54ba86862d0ff7da7c56b3d8b8d1b49b6b88ed4c5f9abfb4c1c9d8a1ef8a455632aaa69408651e238bdc4aeb4eb7709f62096 +runfiles size=17 + RELOC/tex/plain/cyrplain/README + RELOC/tex/plain/cyrplain/cyramstx.ini + RELOC/tex/plain/cyrplain/cyrblue.ini + RELOC/tex/plain/cyrplain/cyrcmfnt.tex + RELOC/tex/plain/cyrplain/cyrecfnt.tex + RELOC/tex/plain/cyrplain/cyrtex.cfg + RELOC/tex/plain/cyrplain/cyrtex.ini + RELOC/tex/plain/cyrplain/cyrtex.tex + RELOC/tex/plain/cyrplain/cyrtxinf.ini + RELOC/tex/plain/cyrplain/makefmts.bat + RELOC/tex/plain/cyrplain/makefmts.sh + RELOC/tex/plain/cyrplain/plainenc.tex + RELOC/tex/plain/cyrplain/txxdefs.tex + RELOC/tex/plain/cyrplain/txxextra.tex +catalogue-ctan /macros/latex/contrib/t2 +catalogue-license lppl +catalogue-topics fontenc cyrillic + +name dad +category Package +revision 54191 +shortdesc Simple typesetting system for mixed Arabic/Latin documents +relocated 1 +longdesc This package allows simple typesetting in Arabic script, +longdesc intended for mixed Arabic/Latin script usage in situations +longdesc where heavy-duty solutions are discouraged. The system operates +longdesc with both Unicode and transliterated input, allowing the user +longdesc to choose the most appropriate approach for every situation. +execute addMap dad.map +containersize 241644 +containerchecksum 600bd3267a47e5513f51e67135920c15aa7aefb51f2c3dea6e912f26d1a45071f936e4c568afd322aa7e89d5139e68398b394c287d5076c17e310297fa7f8fa8 +doccontainersize 199976 +doccontainerchecksum 97d4596972c436762e33bd1d5077f7fdbe7da2a74b016a8841ad98536c2e9d9a2bd01a91b1ad2fb306c7ba06a0a5532d47c7b813d42b0bd82a3390f3bd17760b +docfiles size=76 + RELOC/doc/fonts/dad/README details="Readme" + RELOC/doc/fonts/dad/dad-to-utf8.pl + RELOC/doc/fonts/dad/dad-user-guide.bib + RELOC/doc/fonts/dad/dad-user-guide.pdf details="Package documentation" + RELOC/doc/fonts/dad/dad-user-guide.tex + RELOC/doc/fonts/dad/dad.adjust + RELOC/doc/fonts/dad/dadbold.adjust + RELOC/doc/fonts/dad/dadmono.adjust + RELOC/doc/fonts/dad/make-dad-font.pl + RELOC/doc/fonts/dad/utf8-to-dad.pl +runfiles size=2588 + RELOC/fonts/afm/public/dad/Dad-bold.afm + RELOC/fonts/afm/public/dad/Dad-mono.afm + RELOC/fonts/afm/public/dad/Dad.afm + RELOC/fonts/map/dvips/dad/dad.map + RELOC/fonts/ofm/public/dad/dad.ofm + RELOC/fonts/ofm/public/dad/dadbold.ofm + RELOC/fonts/ofm/public/dad/dadmono.ofm + RELOC/fonts/ovf/public/dad/dad.ovf + RELOC/fonts/ovf/public/dad/dadbold.ovf + RELOC/fonts/ovf/public/dad/dadmono.ovf + RELOC/fonts/tfm/public/dad/dadreal.tfm + RELOC/fonts/tfm/public/dad/dadrealbold.tfm + RELOC/fonts/tfm/public/dad/dadrealmono.tfm + RELOC/fonts/type1/public/dad/Dad-bold.pfb + RELOC/fonts/type1/public/dad/Dad-mono.pfb + RELOC/fonts/type1/public/dad/Dad.pfb + RELOC/tex/lualatex/dad/OT1dad.fd + RELOC/tex/lualatex/dad/T1dad.fd + RELOC/tex/lualatex/dad/dad.sty +catalogue-ctan /language/arabic/dad +catalogue-license lppl +catalogue-topics arabic luatex font-type1 +catalogue-version 1.2 + +name dancers +category Package +revision 13293 +shortdesc Font for Conan Doyle's "The Dancing Men" +relocated 1 +longdesc The (Sherlock Holmes) book contains a code which uses dancing +longdesc men as glyphs. The alphabet as given is not complete, lacking +longdesc f, j, k, q, u, w, x and z, so those letters in the font are not +longdesc due to Conan Doyle. The code required word endings to be marked +longdesc by the dancing man representing the last letter to be holding a +longdesc flag: these are coded as A-Z. +longdesc thaTiStOsaYsentenceSiNthEcodElooKlikEthiS. In some cases, the +longdesc man has no arms, making it impossible for him to hold a flag. +longdesc In these cases, he is wearing a flag on his hat in the +longdesc 'character'. The font is distributed as Metafont source; it +longdesc works poorly in modern environments, and could do with expert +longdesc attention (if you are interested, please contact the CTAN team +longdesc for details). +containersize 3852 +containerchecksum f570e4c775a7e4cdbeaf2ad764ee147a685b5332369aea29175a76fdc9fb37f052da295d20a177eda8e4b8352d733034eba36882c2507fe804d7b996c0e0537a +runfiles size=9 + RELOC/fonts/source/public/dancers/dancers.mf + RELOC/fonts/tfm/public/dancers/dancers.tfm +catalogue-ctan /fonts/dancers +catalogue-license other-free +catalogue-topics font font-mf font-novelty + +name dantelogo +category Package +revision 38599 +shortdesc A font for DANTE's logo +relocated 1 +longdesc The DANTE font for the logo of DANTE (http://www.dante.de), the +longdesc German speaking TeX users group. The font includes only the +longdesc five characters d, a, n, t, and e. dantelogo.sty provides an +longdesc interface for LuaLaTeX/XeLaTeX/pdfLaTeX. +execute addMap dante.map +containersize 17044 +containerchecksum 883c5d6f8368bed41002eae123329954fe38cc23a5e6db7feecd57c16540b6b9277cf7d13af6ce8f63994c11148708e1d3dd10ddd9d17457b015d40477f91eac +doccontainersize 203152 +doccontainerchecksum 4612de774c6a39c7f09dfc99aa182fd37d9f3e32dece37726f1e87e48e5faae246f2959992267f5b2cb685c26177e47c5112fbe42b8f1ac3a60da92e6276a681 +docfiles size=53 + RELOC/doc/fonts/dantelogo/Changes + RELOC/doc/fonts/dantelogo/README details="Readme" + RELOC/doc/fonts/dantelogo/dantelogo-doc.pdf details="Package documentation" + RELOC/doc/fonts/dantelogo/dantelogo-doc.tex +runfiles size=37 + RELOC/fonts/enc/dvips/dantelogo/dante.enc + RELOC/fonts/map/dvips/dantelogo/dante.map + RELOC/fonts/opentype/public/dantelogo/DANTE-Bold-Italic.otf + RELOC/fonts/opentype/public/dantelogo/DANTE-Bold.otf + RELOC/fonts/opentype/public/dantelogo/DANTE-Italic.otf + RELOC/fonts/opentype/public/dantelogo/DANTE.otf + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold--texnansx--base.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold--texnansx.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold-Italic--texnansx--base.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold-Italic--texnansx.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Italic--texnansx--base.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Italic--texnansx.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE.tfm + RELOC/fonts/type1/public/dantelogo/DANTE-Bold-Italic.pfb + RELOC/fonts/type1/public/dantelogo/DANTE-Bold.pfb + RELOC/fonts/type1/public/dantelogo/DANTE-Italic.pfb + RELOC/fonts/type1/public/dantelogo/DANTE.pfb + RELOC/fonts/vf/public/dantelogo/DANTE-Bold--texnansx.vf + RELOC/fonts/vf/public/dantelogo/DANTE-Bold-Italic--texnansx.vf + RELOC/fonts/vf/public/dantelogo/DANTE-Italic--texnansx.vf + RELOC/tex/latex/dantelogo/OT1DANTE.fd + RELOC/tex/latex/dantelogo/T1DANTE.fd + RELOC/tex/latex/dantelogo/dantelogo.sty +catalogue-ctan /fonts/dantelogo +catalogue-license lppl +catalogue-topics font font-otf font-type1 +catalogue-version 0.03 + +name dashbox +category Package +revision 23425 +shortdesc Draw dashed boxes +relocated 1 +longdesc The package can draw boxes that perform like \framebox or +longdesc \fbox, but use dashed lines. The package can also draw (an +longdesc illusion of) vertical stacks of boxes. +containersize 1624 +containerchecksum a52bac248fa26031db34686e57cd3c9be90bc18b41339d7e2dc85a68de1de23a627648599e5fdb207d3364b2b4e3651aaf9c2d90e6c3bd0f0fdcaa30fbc8932d +doccontainersize 159404 +doccontainerchecksum 26672278ffdbdaee64b82f4e7554b5664ca3410ce8009454cfc229e3590439b4a4e212b77568605adda885761f5ad456bca022f198e259ff9a33b8e0abc1ea6d +docfiles size=39 + RELOC/doc/latex/dashbox/dashbox.pdf details="Package documentation" +srccontainersize 3964 +srccontainerchecksum 833bcc8f98e6fbf3e205b54311dddb9377026234132e5f988abd25e3ace36b9f3b54a95e98a5c4cc40ef1f049536093b0f779517c6f5a63a08459bf0a7ace741 +srcfiles size=5 + RELOC/source/latex/dashbox/dashbox.dtx + RELOC/source/latex/dashbox/dashbox.ins +runfiles size=2 + RELOC/tex/latex/dashbox/dashbox.sty +catalogue-ctan /macros/latex/contrib/dashbox +catalogue-license lppl +catalogue-topics boxing +catalogue-version 1.14 + +name dashrule +category Package +revision 29579 +shortdesc Draw dashed rules +relocated 1 +longdesc The dashrule package makes it easy to draw a huge variety of +longdesc dashed rules (i.e., lines) in LaTeX. dashrule provides a +longdesc command, \hdashrule, which is a cross between LaTeX's \rule and +longdesc PostScript's setdash command. \hdashrule draws horizontally +longdesc dashed rules using the same syntax as \rule, but with an +longdesc additional, setdash-like parameter that specifies the pattern +longdesc of dash segments and the space between those segments. Because +longdesc dashrule's rules are constructed internally using \rule (as +longdesc opposed to, e.g., PostScript \specials) they are fully +longdesc compatible with every LaTeX back-end processor. +containersize 1488 +containerchecksum 4b1b993e9044eb2ed4bf6bde0c114b0cd1fe7daed38f8bc5d3e25a2705d55cb41b8a372cce84b0d61093044d970003a4317de98cb468978c8cb1a8315f980940 +doccontainersize 230940 +doccontainerchecksum f45e0785d7c6522683e724ca27f7505e3da6bf5923d5a8c71a75ef8c67ffba8a4e4711b91b64f25dca95566448cbf74b5937dcecc73f5ec0aeff7ace8d0e4c1f +docfiles size=64 + RELOC/doc/latex/dashrule/README details="Readme" + RELOC/doc/latex/dashrule/dashrule.pdf +srccontainersize 6080 +srccontainerchecksum 0cf95a6d5fe3e80e9f77266033d64186300676d74a7cc39dd6f907784d1a6f7c9f83ff5a50198eec8bfc075ef5adecf58d226063f3f0e02f55dd7cc0daf691a4 +srcfiles size=6 + RELOC/source/latex/dashrule/dashrule.dtx + RELOC/source/latex/dashrule/dashrule.ins +runfiles size=1 + RELOC/tex/latex/dashrule/dashrule.sty +catalogue-ctan /macros/latex/contrib/dashrule +catalogue-license lppl +catalogue-topics line-patt +catalogue-version 1.3 + +name dashundergaps +category Package +revision 58150 +shortdesc Produce gaps that are underlined, dotted or dashed +relocated 1 +longdesc The package provides commands (\underline, \dotuline and +longdesc \dashuline) each of which underlines its argument with one of +longdesc the styles the package is capable of. A phantom mode is +longdesc provided, where the underline (of whatever form) can serve for +longdesc a 'fill-in block' for student evaluation sheets. +containersize 3512 +containerchecksum c3ecf5c63fad14f82228913e0b12c6596a9aee24b6de3419a4e95de8de94e40e3d43c2b163a30cf221602ad9c1aa1c3ba42429ac2adac9d13888d74ee1f4e900 +doccontainersize 916556 +doccontainerchecksum 88ca6be34c5d68ee4f983b9385bd83047e59bbeb94af12d2bd16105bc8afb99b8e6db9d0e25717fe5bd517d7e834d8795bed30ba24455d8f09760d1ad2c47803 +docfiles size=285 + RELOC/doc/latex/dashundergaps/README.md details="Readme" + RELOC/doc/latex/dashundergaps/changes.txt + RELOC/doc/latex/dashundergaps/dashundergaps-code.pdf + RELOC/doc/latex/dashundergaps/dashundergaps-code.tex + RELOC/doc/latex/dashundergaps/dashundergaps-doc.pdf details="Package documentation" + RELOC/doc/latex/dashundergaps/dashundergaps-doc.tex + RELOC/doc/latex/dashundergaps/l3doc-TUB.cls +srccontainersize 13284 +srccontainerchecksum 1fce3d4ccecef6c2f5775792162a9cf21951f0006e168df236884f89a4bcc662c1ab9028e856805ebdf19dd410c109ca3de993c088aa9c0611ec98565be06be4 +srcfiles size=12 + RELOC/source/latex/dashundergaps/dashundergaps.dtx + RELOC/source/latex/dashundergaps/dashundergaps.ins +runfiles size=3 + RELOC/tex/latex/dashundergaps/dashundergaps.sty +catalogue-contact-repository https://github.com/FrankMittelbach/fmitex-dashundergaps +catalogue-ctan /macros/latex/contrib/dashundergaps +catalogue-license lppl1.3c +catalogue-topics underline line-patt +catalogue-version 2.0h + +name dataref +category Package +revision 42883 +shortdesc Manage references to experimental data +relocated 1 +longdesc The package provides a mechanism that maintains a fixed +longdesc symbolic reference to numerical results; such results may vary +longdesc as the project proceeds (and hence the project report +longdesc develops). +containersize 6868 +containerchecksum 8b76861673fe05785582abbfb50d46ee6beea2cd63bd7f622e2640acce9c88a39e4fbf57b6db7872dc3f3b473d3e33581bb6c93f305e036148efb1c3ad4b6d8f +doccontainersize 247204 +doccontainerchecksum 2d1bb12245c071b8282db3d0aaf198206fe2b8509527ef6e56950464b6f13d20be8381015fa62a1b0c7469e004664182170ba400c7650b38bc597e269f1d173d +docfiles size=68 + RELOC/doc/latex/dataref/README.md details="Readme" + RELOC/doc/latex/dataref/dataref-doc.pdf details="Package documentation" + RELOC/doc/latex/dataref/dataref-doc.tex +runfiles size=7 + RELOC/tex/latex/dataref/dataref.sty +catalogue-contact-repository https://github.com/stettberger/dataref +catalogue-ctan /macros/latex/contrib/dataref +catalogue-license lppl1.3 +catalogue-topics label-ref data-manip +catalogue-version 0.6 + +name datatool +category Package +revision 52663 +shortdesc Tools to load and manipulate data +relocated 1 +longdesc The tools comprise six packages: datatool.sty: databases may be +longdesc created using LaTeX commands or by importing external files; +longdesc they may be sorted numerically or alphabetically; repetitive +longdesc operations (such as mail merging) may be performed on each row +longdesc of a database, subject to conditions to exclude particular +longdesc rows; commands are provided to examine database elements, and +longdesc to convert formats (for example, to convert a numeric element +longdesc to a format compatible with the fp package; datapie.sty: a +longdesc database may be represented as a pie chart; flexible options +longdesc allow colouring of the chart, and annotation hooks are +longdesc available; dataplot.sty: a database may be represented as a +longdesc 2-dimensional scatter or line plot; flexible options control of +longdesc the plot's overall appearance, and of legends and other extra +longdesc information; databar.sty: a database may be represented as a +longdesc bar chart; overall appearance, colouring and annotation are +longdesc controllable; datagidx.sty: provides a way of indexing or +longdesc creating glossaries/lists of acronyms that uses TeX to do the +longdesc sorting and collating instead of using an external indexing +longdesc application, such as xindy or makeindex; databib.sty: a +longdesc bibliography may be loaded into a datatool database, and +longdesc manipulated there before being printed (this permits a +longdesc LaTeX-based route to printing bibliographies in formats for +longdesc which no BibTeX style is available); and person.sty: provides +longdesc support for displaying a person's name and pronoun in a +longdesc document, thus avoiding cumbersome use of "he/she", etc. The +longdesc drawing packages make use of PGF/TikZ for their output. The +longdesc bundle supersedes and replaces the author's csvtools bundle. +depend fp +depend substr +depend xfor +depend xkeyval +containersize 55428 +containerchecksum 323b1526a32eb4e0d81db77278d66ebb6ac91fa357f7f76c8ac1f199efdc4be17ae4f8fb83fe55f3ac9cfb8a18d163a85d6c21cc11c26e4dea0db5f85dc12dd5 +doccontainersize 2683720 +doccontainerchecksum 32b5391c7197bc29783bab0c93a5225784fea999f69bdd8b1b5c152ed338716f82dbedfdb6cd19064ee409407c0b808e5f410e6090cda6d1f8ded2ca41f3ace9 +docfiles size=812 + RELOC/doc/latex/datatool/CHANGES + RELOC/doc/latex/datatool/INSTALL + RELOC/doc/latex/datatool/README details="Readme" + RELOC/doc/latex/datatool/datatool-code.pdf details="Documented code of the package" + RELOC/doc/latex/datatool/datatool-user.pdf details="User guide" + RELOC/doc/latex/datatool/datatool-user.tex + RELOC/doc/latex/datatool/samples/data-raw.dbtex + RELOC/doc/latex/datatool/samples/sample-autokeys-data.csv + RELOC/doc/latex/datatool/samples/sample-autokeys.pdf + RELOC/doc/latex/datatool/samples/sample-autokeys.tex + RELOC/doc/latex/datatool/samples/sample-barchart.pdf + RELOC/doc/latex/datatool/samples/sample-barchart.tex + RELOC/doc/latex/datatool/samples/sample-datatooltk.pdf + RELOC/doc/latex/datatool/samples/sample-datatooltk.tex + RELOC/doc/latex/datatool/samples/sample-dict.pdf + RELOC/doc/latex/datatool/samples/sample-dict.tex + RELOC/doc/latex/datatool/samples/sample-europecv-bib.pdf + RELOC/doc/latex/datatool/samples/sample-europecv-bib.tex + RELOC/doc/latex/datatool/samples/sample-gidx.pdf + RELOC/doc/latex/datatool/samples/sample-gidx.tex + RELOC/doc/latex/datatool/samples/sample-glossary.pdf + RELOC/doc/latex/datatool/samples/sample-glossary.tex + RELOC/doc/latex/datatool/samples/sample-index.pdf + RELOC/doc/latex/datatool/samples/sample-index.tex + RELOC/doc/latex/datatool/samples/sample-mail-merge.pdf + RELOC/doc/latex/datatool/samples/sample-mail-merge.tex + RELOC/doc/latex/datatool/samples/sample-piechart.pdf + RELOC/doc/latex/datatool/samples/sample-piechart.tex + RELOC/doc/latex/datatool/samples/sample-sort.pdf + RELOC/doc/latex/datatool/samples/sample-sort.tex + RELOC/doc/latex/datatool/samples/sample-student-records.csv + RELOC/doc/latex/datatool/samples/sample-student-scores.pdf + RELOC/doc/latex/datatool/samples/sample-student-scores.tex + RELOC/doc/latex/datatool/samples/sample-two-per-row.pdf + RELOC/doc/latex/datatool/samples/sample-two-per-row.tex +srccontainersize 103864 +srccontainerchecksum e149a3be96ee0161b2bd872ab73e74c36ea638f0a1f0a48e0268093bdff2c2c1cfabe5c0a4d3ca8ef7ee4c02bd03710c5c1b2ff9c1b543ed792a444160814493 +srcfiles size=206 + RELOC/source/latex/datatool/datatool.dtx + RELOC/source/latex/datatool/datatool.ins +runfiles size=119 + RELOC/bibtex/bst/datatool/databib.bst + RELOC/tex/latex/datatool/databar.sty + RELOC/tex/latex/datatool/databib.sty + RELOC/tex/latex/datatool/datagidx.sty + RELOC/tex/latex/datatool/datapie.sty + RELOC/tex/latex/datatool/dataplot.sty + RELOC/tex/latex/datatool/datatool-base.sty + RELOC/tex/latex/datatool/datatool-fp.sty + RELOC/tex/latex/datatool/datatool-pgfmath.sty + RELOC/tex/latex/datatool/datatool.sty + RELOC/tex/latex/datatool/person.sty +catalogue-ctan /macros/latex/contrib/datatool +catalogue-license lppl1.3 +catalogue-topics data-import data-disp data-manip +catalogue-version 2.32 + +name datax +category Package +revision 57033 +shortdesc Import individual data from script files +relocated 1 +longdesc This LaTeX package uses pgfkeys to retrieve individual data +longdesc points generated in some script. Analogous to how one might +longdesc generate graphics in a script and import those graphics into a +longdesc LaTeX document. +containersize 1208 +containerchecksum f8eda309dcff2ea8fd827cf3dd5c15ea265105234e33f96e27c14316e5e4183ade4c6a240b174df3564fcc1a4046ba3ada482a6fae653ffb5e43e18682852336 +doccontainersize 189688 +doccontainerchecksum e4257e66220e0048df198d60a963524187d7373ab7394f4b33944251f534f67648110a8cfda588a992500c381470dee55423be6c224a4e3cd08cf4e633bc0d3d +docfiles size=48 + RELOC/doc/latex/datax/README.md details="Readme" + RELOC/doc/latex/datax/datax-logo.tikz + RELOC/doc/latex/datax/datax.pdf details="Package documentation" +srccontainersize 4068 +srccontainerchecksum c47641c49bf9c1dc0e47eb8045920cdd0e519c07eb18efa047fb7c2a6122166a4e8bc793adfd3db8373b77be901dc6cc8501f5bc9dcf895ed3bce3a261b55671 +srcfiles size=4 + RELOC/source/latex/datax/datax.dtx + RELOC/source/latex/datax/datax.ins +runfiles size=1 + RELOC/tex/latex/datax/datax.sty +catalogue-contact-repository https://github.com/Datax-package/Datax.sty +catalogue-ctan /macros/latex/contrib/datax +catalogue-license lppl1.3 +catalogue-topics data-import +catalogue-version 1.1.1 + +name dateiliste +category Package +revision 27974 +shortdesc Extensions of the \listfiles concept +relocated 1 +longdesc The package provides a file list (similar to that offered by +longdesc \listfiles), neatly laid out as a table. The main document can +longdesc be included in the list, and a command is available for +longdesc providing RCS-maintained data for printing in the file list. +containersize 4264 +containerchecksum 6da6a802994a06e040d43ac7fc9db0515d9273ba9d4cac061e04b05922f9eb9fecaf138eb641b3149be7b98f9139c428084b6470bc177a020386e0dc053427b6 +doccontainersize 233644 +doccontainerchecksum 53ca32cabd7e3a32d02c77beb076b08ccaa782b6a2ae249b932242987741f0e255bdc83a2b6ccc7ed2e0efbec66923798026040745152f7244984a0843c8c23d +docfiles size=71 + RELOC/doc/latex/dateiliste/README details="Readme" + RELOC/doc/latex/dateiliste/README-de details="Readme" language="de" + RELOC/doc/latex/dateiliste/README-en details="Readme" language="en" + RELOC/doc/latex/dateiliste/README-eo details="Readme" language="eo" + RELOC/doc/latex/dateiliste/dateiliste.pdf details="Benutzerdoku" language="de" +srccontainersize 22632 +srccontainerchecksum 563840e069cd1e1c1e9b1774c5c3ee8b1703305fac3fd5f58a0afe76f154210150be05f779a94717c227978d2a1317a10f5b6232f51dc7b3e422638b84b2ce95 +srcfiles size=19 + RELOC/source/latex/dateiliste/dateiliste.dtx + RELOC/source/latex/dateiliste/dateiliste.ins +runfiles size=4 + RELOC/tex/latex/dateiliste/dateiliste.sty +catalogue-ctan /macros/latex/contrib/dateiliste +catalogue-license lppl +catalogue-topics doc-mgmt +catalogue-version 0.6 + +name datenumber +category Package +revision 18951 +shortdesc Convert a date into a number and vice versa +relocated 1 +longdesc This package provides commands to convert a date into a number +longdesc and vice versa. Additionally there are commands for +longdesc incrementing and decrementing a date. Leap years and the +longdesc Gregorian calendar reform are considered. +containersize 3328 +containerchecksum f87518683c9820e816f33e535bc8e5d7e31fcda124178593f9635b040151d1f43f6eeb4d69ca974b847c97efcf19fa94f571d5534dfdc8ac0e40d711d26190b3 +doccontainersize 94372 +doccontainerchecksum b9c156b19bd6abbb3f996495dcda633172f8e559add744ebe25bb58070ba06bc233c2dda54c93415da14aecc30d2888241bf9b80c0dc5922b46cd3ee05865701 +docfiles size=42 + RELOC/doc/latex/datenumber/README.txt details="Package README" language="en" + RELOC/doc/latex/datenumber/doc.pdf details="Package documentation" language="en" + RELOC/doc/latex/datenumber/doc.tex + RELOC/doc/latex/datenumber/docgerman.pdf details="Package documentation" language="de" + RELOC/doc/latex/datenumber/docgerman.tex +srccontainersize 5664 +srccontainerchecksum ffeea9042501496e815db5c90cf8a99931fe96bb8dbae6e2551994242336892567c140ed352ddf962d1f144844960eaf03187aec6869780a2c3e218446940174 +srcfiles size=6 + RELOC/source/latex/datenumber/datenumber.dtx + RELOC/source/latex/datenumber/datenumber.ins +runfiles size=8 + RELOC/tex/latex/datenumber/datenumber.sty + RELOC/tex/latex/datenumber/datenumberUSenglish.ldf + RELOC/tex/latex/datenumber/datenumberdummy.ldf + RELOC/tex/latex/datenumber/datenumberenglish.ldf + RELOC/tex/latex/datenumber/datenumberfrench.ldf + RELOC/tex/latex/datenumber/datenumbergerman.ldf + RELOC/tex/latex/datenumber/datenumberspanish.ldf +catalogue-ctan /macros/latex/contrib/datenumber +catalogue-license lppl +catalogue-topics date-time +catalogue-version 0.02 + +name datetime +category Package +revision 36650 +shortdesc Change format of \today with commands for current time +relocated 1 +longdesc Provides various different formats for the text created by the +longdesc command \today, and also provides commands for displaying the +longdesc current time (or any given time), in 12-hour, 24-hour or text +longdesc format. The package overrides babel's date format, having its +longdesc own library of date formats in different languages. The package +longdesc requires the fmtcount package. This package is now obsolete and +longdesc has been replaced by datetime2. +containersize 13604 +containerchecksum 3d033ee164d52f7085bffdc12f2062be7e94a644d9ed731b4d1b97a3a46838dabadcf6687063e165c65fc938a51a4adf8078339b720a305175d6cd6a3b889f07 +doccontainersize 427368 +doccontainerchecksum 510449d17b09d9207b76e732b5d426121888cf653f29bb3be8872b74a243596ac339f09d11a14a4a3007f8818171aab28727cd1713ee35c8908d2d168a57d9b0 +docfiles size=154 + RELOC/doc/latex/datetime/CHANGES + RELOC/doc/latex/datetime/README details="Package README" + RELOC/doc/latex/datetime/datetime-manual.css + RELOC/doc/latex/datetime/datetime-manual.html + RELOC/doc/latex/datetime/datetime-manual.tex + RELOC/doc/latex/datetime/datetime.pdf details="Package documentation (PDF)" + RELOC/doc/latex/datetime/datetime.perl + RELOC/doc/latex/datetime/dt-lang.tex + RELOC/doc/latex/datetime/dt-sampl.tex + RELOC/doc/latex/datetime/samples/dt-lang.pdf + RELOC/doc/latex/datetime/samples/dt-lang.tex + RELOC/doc/latex/datetime/samples/dt-sampl.pdf + RELOC/doc/latex/datetime/samples/dt-sampl.tex +srccontainersize 29100 +srccontainerchecksum 3e03ba12952ad5dafa701c7ddd5d79097890d13d3510d420cc399b30b1c60c2b6f72bc5caa2a6d2f53ec50430d13582c5c6fb549dcb3566f827af0d4abeaa011 +srcfiles size=51 + RELOC/source/latex/datetime/datetime.dtx + RELOC/source/latex/datetime/datetime.ins +runfiles size=66 + RELOC/tex/latex/datetime/datetime-defaults.sty + RELOC/tex/latex/datetime/datetime.sty + RELOC/tex/latex/datetime/dt-UKenglish.def + RELOC/tex/latex/datetime/dt-USenglish.def + RELOC/tex/latex/datetime/dt-american.def + RELOC/tex/latex/datetime/dt-australian.def + RELOC/tex/latex/datetime/dt-austrian.def + RELOC/tex/latex/datetime/dt-bahasa.def + RELOC/tex/latex/datetime/dt-basque.def + RELOC/tex/latex/datetime/dt-breton.def + RELOC/tex/latex/datetime/dt-british.def + RELOC/tex/latex/datetime/dt-bulgarian.def + RELOC/tex/latex/datetime/dt-canadian.def + RELOC/tex/latex/datetime/dt-catalan.def + RELOC/tex/latex/datetime/dt-croatian.def + RELOC/tex/latex/datetime/dt-czech.def + RELOC/tex/latex/datetime/dt-danish.def + RELOC/tex/latex/datetime/dt-dutch.def + RELOC/tex/latex/datetime/dt-esperanto.def + RELOC/tex/latex/datetime/dt-estonian.def + RELOC/tex/latex/datetime/dt-finnish.def + RELOC/tex/latex/datetime/dt-french.def + RELOC/tex/latex/datetime/dt-galician.def + RELOC/tex/latex/datetime/dt-german.def + RELOC/tex/latex/datetime/dt-greek.def + RELOC/tex/latex/datetime/dt-hebrew.def + RELOC/tex/latex/datetime/dt-icelandic.def + RELOC/tex/latex/datetime/dt-irish.def + RELOC/tex/latex/datetime/dt-italian.def + RELOC/tex/latex/datetime/dt-latin.def + RELOC/tex/latex/datetime/dt-lsorbian.def + RELOC/tex/latex/datetime/dt-magyar.def + RELOC/tex/latex/datetime/dt-naustrian.def + RELOC/tex/latex/datetime/dt-newzealand.def + RELOC/tex/latex/datetime/dt-ngerman.def + RELOC/tex/latex/datetime/dt-norsk.def + RELOC/tex/latex/datetime/dt-polish.def + RELOC/tex/latex/datetime/dt-portuges.def + RELOC/tex/latex/datetime/dt-romanian.def + RELOC/tex/latex/datetime/dt-russian.def + RELOC/tex/latex/datetime/dt-samin.def + RELOC/tex/latex/datetime/dt-scottish.def + RELOC/tex/latex/datetime/dt-serbian.def + RELOC/tex/latex/datetime/dt-slovak.def + RELOC/tex/latex/datetime/dt-slovene.def + RELOC/tex/latex/datetime/dt-spanish.def + RELOC/tex/latex/datetime/dt-swedish.def + RELOC/tex/latex/datetime/dt-turkish.def + RELOC/tex/latex/datetime/dt-ukraineb.def + RELOC/tex/latex/datetime/dt-usorbian.def + RELOC/tex/latex/datetime/dt-welsh.def +catalogue-ctan /obsolete/macros/latex/contrib/datetime +catalogue-license lppl1.3 +catalogue-topics date-time multilingual obsolete +catalogue-version 2.60 + +name datetime2 +category Package +revision 58590 +shortdesc Formats for dates, times and time zones +relocated 1 +longdesc This package provides commands for formatting dates, times and +longdesc time zones and redefines \today to use the same formatting +longdesc style. In addition to \today, you can also use \DTMcurrenttime +longdesc (current time) or \DTMnow (current date and time). Dates and +longdesc times can be saved for later use. The accompanying +longdesc datetime2-calc package can be used to convert date-times to +longdesc UTC+00:00. Language and regional support is provided by +longdesc independently maintained and installed modules. The +longdesc datetime2-calc package uses the pgfcalendar package (part of +longdesc the PGF/TikZ bundle). This package replaces datetime.sty which +longdesc is now obsolete. +containersize 8832 +containerchecksum 88aae0979b3ca9688aff9c5840c93a626e4d652f8fce664e70132dfb3413e8045f816d54ac6aac4477292f655bcb378f89f0f4f09465f2ae536520e3cf68c128 +doccontainersize 1017512 +doccontainerchecksum 5baa0ef9d3d1e6f0f375ce6dca2f83681d8dca9f3d027c60b705f005a22e87dc1d952a0f4f8d9fa50f0bb887794a8ad89e28ad89f8a99ceea78c97659a4a656f +docfiles size=265 + RELOC/doc/latex/datetime2/CHANGES + RELOC/doc/latex/datetime2/README details="Readme" + RELOC/doc/latex/datetime2/datetime2.pdf details="Package documentation" + RELOC/doc/latex/datetime2/samples/datetime2-sample-babel.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-babel.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-calc.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-calc.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-filedate.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-filedate.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-hyperref.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-hyperref.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-journal.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-journal.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.tex +srccontainersize 51628 +srccontainerchecksum c99ec68e3a0fcab5c3c1a3f09ab1553b299a79719c6963facf8d371d8f71488049bda47263f6b99244076d914ba85ffb449b014935654c93ee189fdd51456c3e +srcfiles size=79 + RELOC/source/latex/datetime2/datetime2.dtx + RELOC/source/latex/datetime2/datetime2.ins +runfiles size=17 + RELOC/tex/latex/datetime2/datetime2-calc.sty + RELOC/tex/latex/datetime2/datetime2.sty +catalogue-contact-home http://www.dickimaw-books.com/faqs/datetime2faq.html +catalogue-ctan /macros/latex/contrib/datetime2 +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.5.7 + +name datetime2-bahasai +category Package +revision 46287 +shortdesc Bahasai language module for the datetime2 package +relocated 1 +longdesc This module provides the "bahasai" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2208 +containerchecksum 6bc05fa0f1cfbf05008de715f9b278948272cf7894e8c29b52b6ee4ba436e01e5588356fa020fd5453ed2e9bee185cb46c54ee3e808417782587c9509bab17fc +doccontainersize 272028 +doccontainerchecksum d9542fe7057b9972c6e0b9ebc1360c2fde8f9b3538e70efd7249f0bb344f2d5c2845acac9ce39fec6f9f7197b47e65496ffc662b9f3a3044829e4709d6202995 +docfiles size=68 + RELOC/doc/latex/datetime2-bahasai/README details="Readme" + RELOC/doc/latex/datetime2-bahasai/datetime2-bahasai.pdf details="Package documentation" +srccontainersize 4124 +srccontainerchecksum 7edf39f7e2c5b44923e66cf3dee57e7681c549b7ae944ba2f4593e4643e9d50b686b8c1cb6905326899b6974ec5c0587ec7a5f4f880b5b1e81c94667240c601c +srcfiles size=4 + RELOC/source/latex/datetime2-bahasai/datetime2-bahasai.dtx + RELOC/source/latex/datetime2-bahasai/datetime2-bahasai.ins +runfiles size=2 + RELOC/tex/latex/datetime2-bahasai/datetime2-bahasai.ldf +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-bahasai +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.01 + +name datetime2-basque +category Package +revision 47064 +shortdesc Basque language module for the datetime2 package +relocated 1 +longdesc This module provides the "basque" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2428 +containerchecksum 73d7dcb4a2d13d4ad4747d4d2a19b839bd9a1bd55793657315832178091357f61d9b748d5aaefd317baa7f52df2a4926dad6196d11d11cbce0df78168b2ad380 +doccontainersize 1804 +doccontainerchecksum ce083f982f95f5e4beb33a706144d26f6f09de8ede946ac89d28ad5e5c75f9a475e4e9bca5fbc7773ee90a91ca095f0b1a9908fc0f74fcbb4117ec7511d603b2 +docfiles size=5 + RELOC/doc/latex/datetime2-basque/CHANGES + RELOC/doc/latex/datetime2-basque/Makefile + RELOC/doc/latex/datetime2-basque/README.txt details="Readme" + RELOC/doc/latex/datetime2-basque/datetime2-basque-small-test.tex + RELOC/doc/latex/datetime2-basque/datetime2-basque-test.tex +srccontainersize 4672 +srccontainerchecksum a2bab4c1956a0471571221a57f85e9f4260e349a9b775540638255d8313f5db2c9922120e045b8c769b7b7fe1698c7fcfae1e1aa101e858e84aac32673f6fb86 +srcfiles size=5 + RELOC/source/latex/datetime2-basque/datetime2-basque.dtx + RELOC/source/latex/datetime2-basque/datetime2-basque.ins +runfiles size=3 + RELOC/tex/latex/datetime2-basque/datetime2-basque.ldf +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-basque +catalogue-license lppl1.3 +catalogue-topics date-time multilingual basque +catalogue-version 1.2a + +name datetime2-breton +category Package +revision 52647 +shortdesc Breton language module for the datetime2 package +relocated 1 +longdesc This module provides the "breton" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2576 +containerchecksum 725766f3227119012a79807c5909daab83e8056718cc4e116d8992d13e11867439d71392cdd8a2118f2d8ead61b1d36af5ae42438f8ca68f26ea14f0bb7cd0c7 +doccontainersize 282380 +doccontainerchecksum f421a467caa9202ec50678d398e31e1c4cbb4e98805bf86114c97fd49479670e825c1c091955a41056adf0f9c7596dbf5dd14397326c1b88fbc2b6f75ec8ec55 +docfiles size=70 + RELOC/doc/latex/datetime2-breton/README details="Readme" + RELOC/doc/latex/datetime2-breton/datetime2-breton.pdf details="Package documentation" +srccontainersize 4776 +srccontainerchecksum 0d1d5ab08bd27ca1e322ee25f8a6d58733d29291439c2e901d971969f4f05148b2c1d660567ef07ef9d002e7939dc10d5bf37f03fb23728e6242b3db783928b8 +srcfiles size=5 + RELOC/source/latex/datetime2-breton/datetime2-breton.dtx + RELOC/source/latex/datetime2-breton/datetime2-breton.ins +runfiles size=4 + RELOC/tex/latex/datetime2-breton/datetime2-breton-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.2 + +name datetime2-bulgarian +category Package +revision 47031 +shortdesc Bulgarian language module for the datetime2 package +relocated 1 +longdesc This module provides the "bulgarian" style that can be set +longdesc using \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2716 +containerchecksum fe0cf5eb73c5253467a8d2b972cc20825b5179ccd3964f64656ee8f4fa5d7fb7bf1660a7e79d58c491fe74e8c9421b75c177d4c8bf7309782c81ddeb69ff1203 +doccontainersize 80628 +doccontainerchecksum f07df79af157b8ed471f5c8021719d8ac4dea9075885cc42ed0d64405692efc5ea59b6a77448225aee477b8fb05d564ce9155b7e1efb3d9cd7b7baa794783cb7 +docfiles size=22 + RELOC/doc/latex/datetime2-bulgarian/README details="Readme" + RELOC/doc/latex/datetime2-bulgarian/datetime2-bulgarian.pdf details="Package documentation" +srccontainersize 4988 +srccontainerchecksum 9692b6932f74a7e15a625612dfefd975a948f8a2111401c44b156702fad868d7d34381191b5cf675f0c17aaa6234071e10722f6b912e80f8afc4af69353dbc6d +srcfiles size=6 + RELOC/source/latex/datetime2-bulgarian/datetime2-bulgarian.dtx + RELOC/source/latex/datetime2-bulgarian/datetime2-bulgarian.ins +runfiles size=5 + RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-catalan +category Package +revision 47032 +shortdesc Catalan language module for the datetime2 package +relocated 1 +longdesc This module provides the "catalan" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2488 +containerchecksum 7a414761760e3fb61ed12c656a88b6ae4d36b8268998f10ffc85a9cd362a6ee60b73b37c0994aa47603e805d785a3a0faa7266efa46c3e017535b864f2282e5d +doccontainersize 280420 +doccontainerchecksum d1613bf5d8a35f69bf3dde127a764434b8527f0e627cecbdda43490642cb8d0a10ae629bf5f1359b7a87c12b3845bd468fb2c00b508be1d2cd80b6ad98904ebe +docfiles size=70 + RELOC/doc/latex/datetime2-catalan/README details="Readme" + RELOC/doc/latex/datetime2-catalan/datetime2-catalan.pdf details="Package documentation" +srccontainersize 4672 +srccontainerchecksum 35fbd618c48265f4cd6bdccca100396f54b6379111189f8fad705e93f69026fbbba21f246074a3d154855b0a04e83c4a310b99c78e2105f821d109cfdadff6a3 +srcfiles size=5 + RELOC/source/latex/datetime2-catalan/datetime2-catalan.dtx + RELOC/source/latex/datetime2-catalan/datetime2-catalan.ins +runfiles size=4 + RELOC/tex/latex/datetime2-catalan/datetime2-catalan-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-croatian +category Package +revision 36682 +shortdesc Croatian language module for the datetime2 package +relocated 1 +longdesc This module provides the "croatian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2584 +containerchecksum 603052fb5cff6ea8fa5b951623efb1fc72aa6583fa1ed560b4c5266ce96cdd209423773ee0d3a592465247343f3fff966d7a9cd9698e02e339d5a1c579591f37 +doccontainersize 83956 +doccontainerchecksum a56060b84fc6d2917fd0cf160f0405104a3413e02456ce91cbd97aebd746b0e91c730d2e2e4bbbb46f39521b5c6cbc45558bb4327c7260719ce21e8226fe5910 +docfiles size=22 + RELOC/doc/latex/datetime2-croatian/README details="Readme" + RELOC/doc/latex/datetime2-croatian/datetime2-croatian.pdf details="Package documentation" +srccontainersize 4940 +srccontainerchecksum 5eca1a663801a65b79e0cc069bfa8840e04e08e589445713ea0646f104f5acba51d6f925d2d4ea1c36a83b8f4e095693767a3ca71a33af1015fff5f396c51bc4 +srcfiles size=6 + RELOC/source/latex/datetime2-croatian/datetime2-croatian.dtx + RELOC/source/latex/datetime2-croatian/datetime2-croatian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-croatian/datetime2-croatian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.0 + +name datetime2-czech +category Package +revision 47033 +shortdesc Czech language module for the datetime2 package +relocated 1 +longdesc This module provides the "czech" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2568 +containerchecksum 048ffe6258ce1d4bf9d098e7623d3c5e25ef8215a538e33806c4d35d6368fda81941ff9adbb394085c9b4f058fe9a3b02cbeeaae8cb1f7b2bb55aaa35c743d61 +doccontainersize 81720 +doccontainerchecksum 976e98000a80e15a4ea5204f15a5288781ab35089bcd9427b62fb445f28a25ba0c03af4e64a3de688a51c5c94788732fa199705a68de3e9925f1db4ec7dcead7 +docfiles size=22 + RELOC/doc/latex/datetime2-czech/README details="Readme" + RELOC/doc/latex/datetime2-czech/datetime2-czech.pdf details="Package documentation" +srccontainersize 4748 +srccontainerchecksum 9ef924462b97d29d6102cb691d1845f68ec50054a71d93222b61af91f510211016fdaa4861433a65c589263af11a62cb23d64a79f5bb26624395589dfa812515 +srcfiles size=5 + RELOC/source/latex/datetime2-czech/datetime2-czech.dtx + RELOC/source/latex/datetime2-czech/datetime2-czech.ins +runfiles size=4 + RELOC/tex/latex/datetime2-czech/datetime2-czech-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-danish +category Package +revision 47034 +shortdesc Danish language module for the datetime2 package +relocated 1 +longdesc This module provides the "danish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2536 +containerchecksum b9e5b442282fcebfc114a772af8317d8888cdf24cd5cafebd5d3c79e3ea8790a4fd082c2facc1a466e7e5b4266b0d93ea5fb6cae64f96f3d131fd4869a465a4c +doccontainersize 83108 +doccontainerchecksum 1d933d9d48ad6ef3dd0716fce0b2da6de6700bcd8c1d729d8216145dc5f243ea83323b0fefb6adeaf10a9fb264343e1b429044aaf86e6a77a121b0c951c2c77a +docfiles size=22 + RELOC/doc/latex/datetime2-danish/README details="Readme" + RELOC/doc/latex/datetime2-danish/datetime2-danish.pdf details="Package documentation" +srccontainersize 4804 +srccontainerchecksum dbccc381f173d7204eeaeb8b8a4fcf59e6f0750213986207afbef3754554e4524e1ceb3620135a93ed43d786210583b3f931b41a1c645bfb22e33dcaa45a6c85 +srcfiles size=6 + RELOC/source/latex/datetime2-danish/datetime2-danish.dtx + RELOC/source/latex/datetime2-danish/datetime2-danish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-danish/datetime2-danish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-dutch +category Package +revision 47355 +shortdesc Dutch language module for the datetime2 package +relocated 1 +longdesc This module provides the "dutch" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2396 +containerchecksum c14fcbb882183095c60f0e881ad1668f90855b90cce352922a562371bf2cdd556bd196ec85068775b9aec590f098c956c784b98da283ee1117bec68ee585f5fa +doccontainersize 278696 +doccontainerchecksum e5f2fe126eaf87ef34dce686db6e9b9c3c322a2266293517e803435dfa67b55da6a771f6c7253203dcae0dd1237096093a6463f6bbbc096c108b73bac4a641d8 +docfiles size=69 + RELOC/doc/latex/datetime2-dutch/README details="Readme" + RELOC/doc/latex/datetime2-dutch/datetime2-dutch.pdf details="Package documentation" +srccontainersize 4352 +srccontainerchecksum 32036be5e4e8643da1cd0a2a291db4875328c5e8685f711e247eb7fc38b6b25b92db2f98bfa3769a02c982ea09cbedc75bb963d3f39c36860f9c335e73e331c9 +srcfiles size=5 + RELOC/source/latex/datetime2-dutch/datetime2-dutch.dtx + RELOC/source/latex/datetime2-dutch/datetime2-dutch.ins +runfiles size=2 + RELOC/tex/latex/datetime2-dutch/datetime2-dutch.ldf +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-dutch +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-en-fulltext +category Package +revision 36705 +shortdesc English Full Text styles for the datetime2 package +relocated 1 +longdesc English date and time styles that use words for the numbers and +longdesc ordinals. This package provides the following date and time +longdesc styles: "en-fulltext", "en-FullText", "en-FULLTEXT", and the +longdesc additional time style "en-Fulltext". (The date equivalent can +longdesc be obtained through commands like \Today.) Unlike the base +longdesc styles provided by datetime2.sty, these styles aren't +longdesc expandable styles. This means that you can't use the date or +longdesc time in PDF bookmarks or in the argument of certain commands, +longdesc such as \MakeUppercase, while these styles are in use. +containersize 2696 +containerchecksum 19f08e264921b8b12def2b20bb1d904f90dae712bcbe579a9697d1f657f148ad8311c6d7a8621f336dc82518ec64438640b49776fdab62f302b0919cc7de8e4a +doccontainersize 278384 +doccontainerchecksum a6ed1e804d8229d735aaf1874458dda3206ecb5e648c35af82a1d3fe524e65aeb7669088dc4bd9fd83919263d59035fd539a8318a24b2bc2470f14670e28eced +docfiles size=71 + RELOC/doc/latex/datetime2-en-fulltext/README details="Readme" + RELOC/doc/latex/datetime2-en-fulltext/datetime2-en-fulltext.pdf details="Package documentation" + RELOC/doc/latex/datetime2-en-fulltext/sample-en-fulltext.pdf + RELOC/doc/latex/datetime2-en-fulltext/sample-en-fulltext.tex +srccontainersize 4060 +srccontainerchecksum 9bf741dced10ac57d7c4fbc3a8a26b49b35d07a221f4d7ecf56ddfdea6500edeb39ef75ed0234d6e510ea07da5da06cf29691a36545dc4367b3682e879d92b10 +srcfiles size=7 + RELOC/source/latex/datetime2-en-fulltext/datetime2-en-fulltext.dtx + RELOC/source/latex/datetime2-en-fulltext/datetime2-en-fulltext.ins +runfiles size=4 + RELOC/tex/latex/datetime2-en-fulltext/datetime2-en-fulltext.sty +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-en-fulltext +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.0 + +name datetime2-english +category Package +revision 52479 +shortdesc English language module for the datetime2 package +relocated 1 +longdesc This module provides the following styles that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. The region not only +longdesc determines the date/time format but also the time zone +longdesc abbreviations if the zone mapping setting is on. english +longdesc (English - no region) en-GB (English - United Kingdom of Great +longdesc Britain and Northern Ireland) en-US (English - United States of +longdesc America) en-CA (English - Canada) en-AU (English - Commonwealth +longdesc of Australia) en-NZ (English - New Zealand) en-GG (English - +longdesc Bailiwick of Guernsey) en-JE (English - Bailiwick of Jersey) +longdesc en-IM (English - Isle of Man) en-MT (English - Republic of +longdesc Malta) en-IE (English - Republic of Ireland) +containersize 5892 +containerchecksum 2faf2dbcc9e49a9c30e5af599a26bb6925c6cb6831c1eb38bb58e08f50314cde1f3ebed343fc43ff50c6338a089caf90b8aaa53093f1284c583ba217c25cafa0 +doccontainersize 638380 +doccontainerchecksum ff904eb3279062f6573aa0190bd2f7426a18f4b67564b9b10673a88c4583c580cb88b33ccbfc0c8a979b10f6d2379bd22ad8483f19b1c4baf3f66e06d2ec52f4 +docfiles size=161 + RELOC/doc/latex/datetime2-english/CHANGES + RELOC/doc/latex/datetime2-english/README details="Readme" + RELOC/doc/latex/datetime2-english/datetime2-english-sample.pdf details="Sample article" + RELOC/doc/latex/datetime2-english/datetime2-english-sample.tex + RELOC/doc/latex/datetime2-english/datetime2-english.pdf details="Package documentation" +srccontainersize 13440 +srccontainerchecksum f5177d83f75709135356331615baa47cdea2a01fc706bb507391c40866b1d072260bbba4ec33fe88ce44e9995bec77941d636e5ec6132b6c4f07d2f1f25fffae +srcfiles size=36 + RELOC/source/latex/datetime2-english/datetime2-english.dtx + RELOC/source/latex/datetime2-english/datetime2-english.ins +runfiles size=26 + RELOC/tex/latex/datetime2-english/datetime2-en-AU.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-CA.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-GB.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-GG.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-IE.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-IM.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-JE.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-MT.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-NZ.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-US.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.05 + +name datetime2-esperanto +category Package +revision 47356 +shortdesc Esperanto language module for the datetime2 package +relocated 1 +longdesc This module provides the "esperanto" style that can be set +longdesc using \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2484 +containerchecksum 6406e5a6708c1c97da6e0f8460ba70d61c403875497c57008013a3d1a8a9100b344b3d7267ed869f777566aa403110e17d778e2a47b3970846324bf08e8ae046 +doccontainersize 81488 +doccontainerchecksum c200c3f39ed756765876ca5655b99025a898719f9723a996bd4772974643e0421edd8d36a8eeb00d29dc75ae715fb55927e31f067b1159bbb1f4dd218de780a7 +docfiles size=22 + RELOC/doc/latex/datetime2-esperanto/README details="Readme" + RELOC/doc/latex/datetime2-esperanto/datetime2-esperanto.pdf details="Package documentation" +srccontainersize 4732 +srccontainerchecksum 799b2197ce9f0950889a933952dcc33dc0ad2cb97d906baa61bdcf8d32bbf341d65aa2c2f1509fa59f366cb570e9ba6b4946d4d5785c5022c55117297192a32a +srcfiles size=5 + RELOC/source/latex/datetime2-esperanto/datetime2-esperanto.dtx + RELOC/source/latex/datetime2-esperanto/datetime2-esperanto.ins +runfiles size=4 + RELOC/tex/latex/datetime2-esperanto/datetime2-esperanto-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-estonian +category Package +revision 47565 +shortdesc Estonian language module for the datetime2 package +relocated 1 +longdesc This module provides the "estonian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2492 +containerchecksum 93e8ebc62b48da8f5c159822f53c35aaa2cbd2fb6bc701108cf6452db7eca3df39de3c1ba9b84136683d22d65a975dc138aace0a81960d1c9382309a4cee5f3f +doccontainersize 81032 +doccontainerchecksum 268b873d870ff19a3151d4244b0329994e559ab61198ab3d76d830b1bdd6a05e8b5a7a7df2fd6eec8d57b9e28626f80af755b1866f4ee90eb0c7e94b85f3c087 +docfiles size=21 + RELOC/doc/latex/datetime2-estonian/README details="Readme" + RELOC/doc/latex/datetime2-estonian/datetime2-estonian.pdf details="Package documentation" +srccontainersize 4740 +srccontainerchecksum 2cccbea84fc47da4668a06154b97116b39e1aa51e31196c7c9a41d517aa5f24924c86474fa8f7f1252e356a85392977553b6a28ad154d246bd5192a7e7f07b4d +srcfiles size=5 + RELOC/source/latex/datetime2-estonian/datetime2-estonian.dtx + RELOC/source/latex/datetime2-estonian/datetime2-estonian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-estonian/datetime2-estonian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-finnish +category Package +revision 47047 +shortdesc Finnish language module for the datetime2 package +relocated 1 +longdesc This module provides the "finnish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2732 +containerchecksum 45f971bd3711d1424b002f32e0535465658e50cd9abd9758faa3685aad6a6e74747e7b3cc840a38968ef49ecb91b3007ec678f63f0c0ad3b77ae0c39bdab2457 +doccontainersize 85496 +doccontainerchecksum 01470814a87a5c87bb54b17a763011872864aad8d1f78f82c2325defb7f135daf34aa2b721bb4cbe7ec80efcf839372de07c29245ecc477708fe60f3d501a258 +docfiles size=24 + RELOC/doc/latex/datetime2-finnish/CHANGES + RELOC/doc/latex/datetime2-finnish/README details="Readme" + RELOC/doc/latex/datetime2-finnish/datetime2-finnish.pdf details="Package documentation" +srccontainersize 5484 +srccontainerchecksum 56f4b99f506673c89115e37dfd9458f5e3e55b62dc9dedca98747bcbc7e6e27306dc2711c05b0c8e2844aa03a4c8f7835bf6643ff082b7d1ed246a68b2af37d3 +srcfiles size=8 + RELOC/source/latex/datetime2-finnish/datetime2-finnish.dtx + RELOC/source/latex/datetime2-finnish/datetime2-finnish.ins +runfiles size=5 + RELOC/tex/latex/datetime2-finnish/datetime2-finnish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.2 + +name datetime2-french +category Package +revision 56393 +shortdesc French language module for the datetime2 package +relocated 1 +longdesc This module provides the "french" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 3028 +containerchecksum b786e4534dad90a76fccae091d86396324c4f5ddeffed4a2aa44d2df53cc3a05556265603accbc5f07bd1464f00caa9fd5ddaec0faf8e10b4edc9ea036c3f82b +doccontainersize 387068 +doccontainerchecksum 6744ddc0a8cd6f190de4462a4629d01b57d3a3bbd33f7c2fda8529685316565a579903bcf4192b5e811cb879eb01427c3d03c9c94ea59828b03f1763ced586c4 +docfiles size=103 + RELOC/doc/latex/datetime2-french/README details="Readme" + RELOC/doc/latex/datetime2-french/datetime2-french-test-luatex.pdf + RELOC/doc/latex/datetime2-french/datetime2-french-test-luatex.tex + RELOC/doc/latex/datetime2-french/datetime2-french-test-pdftex.pdf + RELOC/doc/latex/datetime2-french/datetime2-french-test-pdftex.tex + RELOC/doc/latex/datetime2-french/datetime2-french-test-xetex.pdf + RELOC/doc/latex/datetime2-french/datetime2-french-test-xetex.tex + RELOC/doc/latex/datetime2-french/datetime2-french-test.tex + RELOC/doc/latex/datetime2-french/datetime2-french.pdf details="Package documentation" +srccontainersize 5028 +srccontainerchecksum 0566b2fefa4f170bece84fc5cf76ebea6805f96d48476f1314d2cd51252bfdc9814ce5b46de2a78a808ff1d8a60026753ead89bad17f022b717d36c0d6e8110c +srcfiles size=7 + RELOC/source/latex/datetime2-french/datetime2-french.dtx + RELOC/source/latex/datetime2-french/datetime2-french.ins +runfiles size=7 + RELOC/tex/latex/datetime2-french/datetime2-french-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.03 + +name datetime2-galician +category Package +revision 47631 +shortdesc Galician language module for the datetime2 package +relocated 1 +longdesc This module provides the "galician" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2508 +containerchecksum 050dd3e5db5aaae106804a315e679cdee0a4e9fc2d10481f21059c410a73492d6e41d9db070bbe5112377a4f1dbec3345bc5f87efba998130cb20e31a443bf34 +doccontainersize 81096 +doccontainerchecksum 881250aaf53eba33ee223e5d87f0d8d4081785ea723d5f2e605d04767aed63b2fd8a592eabddd4343c489f1abd809218c600aa5df2447b24bf0465e7a31c8ff5 +docfiles size=21 + RELOC/doc/latex/datetime2-galician/README details="Readme" + RELOC/doc/latex/datetime2-galician/datetime2-galician.pdf details="Package documentation" +srccontainersize 4700 +srccontainerchecksum 671230a9b4da0cfec5c1afd50db2ec103c1712006c70be0c9d6d1eec637461005673c73dd1c457561e54af1409072fab111e7d93e785a91ccc6dd0cbbb497127 +srcfiles size=5 + RELOC/source/latex/datetime2-galician/datetime2-galician.dtx + RELOC/source/latex/datetime2-galician/datetime2-galician.ins +runfiles size=4 + RELOC/tex/latex/datetime2-galician/datetime2-galician-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.0 + +name datetime2-german +category Package +revision 53125 +shortdesc German language module for the datetime2 package +relocated 1 +longdesc This module provides the "german" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 3708 +containerchecksum a27345e07164419862e2aa50a46252ffa05ccc1f3aa36cf530544642faee34a7670cb2d9279245b657bd5cfb5f9282eb537a94acfe56017bd855948a0b0d1ae7 +doccontainersize 133096 +doccontainerchecksum 70c3d14708a87ea3e7f81ce3fa26420daa123f214a1bbdee17a8d1a33c437be51602a5857081ddc82998526e5424e4899dc795d1fc7462519ff35cfe8b63df9a +docfiles size=35 + RELOC/doc/latex/datetime2-german/README.md details="Readme" + RELOC/doc/latex/datetime2-german/datetime2-german-doc.pdf details="Package documentation" +srccontainersize 8252 +srccontainerchecksum 04f88422f1134325f6c9dae292c8c6e10ea61da4c5159afb04774a776277f35130a5d7dd90d58e368df3db20a29d472e4c8c1ef2527d17cfe77ef1f46bb7dcdf +srcfiles size=19 + RELOC/source/latex/datetime2-german/datetime2-de-AT.dtx + RELOC/source/latex/datetime2-german/datetime2-de-CH.dtx + RELOC/source/latex/datetime2-german/datetime2-de-DE.dtx + RELOC/source/latex/datetime2-german/datetime2-german-base-ascii.dtx + RELOC/source/latex/datetime2-german/datetime2-german-base-utf8.dtx + RELOC/source/latex/datetime2-german/datetime2-german-base.dtx + RELOC/source/latex/datetime2-german/datetime2-german-doc.dtx + RELOC/source/latex/datetime2-german/datetime2-german.dtx + RELOC/source/latex/datetime2-german/datetime2-german.ins +runfiles size=11 + RELOC/tex/latex/datetime2-german/datetime2-de-AT.ldf + RELOC/tex/latex/datetime2-german/datetime2-de-CH.ldf + RELOC/tex/latex/datetime2-german/datetime2-de-DE.ldf + RELOC/tex/latex/datetime2-german/datetime2-german-base-ascii.ldf + RELOC/tex/latex/datetime2-german/datetime2-german-base-utf8.ldf + RELOC/tex/latex/datetime2-german/datetime2-german-base.ldf + RELOC/tex/latex/datetime2-german/datetime2-german.ldf +catalogue-contact-bugs https://gitlab.com/SFr682k/datetime2-german/issues +catalogue-contact-repository https://gitlab.com/SFr682k/datetime2-german +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-german +catalogue-license lppl1.3c +catalogue-topics date-time multilingual +catalogue-version 3.0 + +name datetime2-greek +category Package +revision 47533 +shortdesc Greek language module for the datetime2 package +relocated 1 +longdesc This module provides the "greek" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2524 +containerchecksum d067dc579e739c8ebfee602d667042c4727e73595fc199197d58d0c6caad4460401bc9d08965292b36811e38be5424c22d6dc4f49c4a9682da3ef34d46e35cdd +doccontainersize 78172 +doccontainerchecksum 5025cf0113e24efaa2bc413da5d2c14c58ead82ceb07fedad299783c5e445a40295d54e0d5ef3a5937586c484ccaf80e40fcb95e5592266fc82e5e52966af6dd +docfiles size=21 + RELOC/doc/latex/datetime2-greek/README details="Readme" + RELOC/doc/latex/datetime2-greek/datetime2-greek.pdf details="Package documentation" +srccontainersize 4716 +srccontainerchecksum b0cc23d43a600f72a13234938b2d1e26d011e416b5f979f86003b4ba4cf53f3fe76db4eb5301db23263490b59735d0226f0b27e10a8f521febe52758a3f63ade +srcfiles size=5 + RELOC/source/latex/datetime2-greek/datetime2-greek.dtx + RELOC/source/latex/datetime2-greek/datetime2-greek.ins +runfiles size=4 + RELOC/tex/latex/datetime2-greek/datetime2-greek-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-hebrew +category Package +revision 47534 +shortdesc Hebrew language module for the datetime2 package +relocated 1 +longdesc This module provides the "hebrew" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2164 +containerchecksum c9bfe10e1cda7e3890cd79fac15a8f629ece47971caa43229fe73236e80e1f476411aa4d05be61f7f03bc34324b114ccac2585b83cced2d38a28f279639523d1 +doccontainersize 270888 +doccontainerchecksum 636dd01321842cd0ae1c3a1ed8ef41e1704d720aeb830f03a93c921c4735c1913211a1d987a1b430e312c57440a11cf8cb80f4336b4770a13fddbd9d6a5c3cbe +docfiles size=67 + RELOC/doc/latex/datetime2-hebrew/README details="Readme" + RELOC/doc/latex/datetime2-hebrew/datetime2-hebrew.pdf details="Package documentation" +srccontainersize 3884 +srccontainerchecksum 9d1cd5f81a144ebe0efed5773ccc480fa2a14fca7411ac621a489884873dc7fcc6d877c66c7e70ec6736f4e2f6a90b57c9db0516baec961230f14dc6fb55d404 +srcfiles size=4 + RELOC/source/latex/datetime2-hebrew/datetime2-hebrew.dtx + RELOC/source/latex/datetime2-hebrew/datetime2-hebrew.ins +runfiles size=2 + RELOC/tex/latex/datetime2-hebrew/datetime2-hebrew.ldf +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-hebrew +catalogue-license lppl1.3 +catalogue-topics date-time hebrew multilingual +catalogue-version 1.1 + +name datetime2-icelandic +category Package +revision 47501 +shortdesc Icelandic language module for the datetime2 package +relocated 1 +longdesc This module provides the "icelandic" style that can be set +longdesc using \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2552 +containerchecksum 50b5b4a4dbe38b669929637c9b22517b960ac0eab3486705efbd92e57e50c7c3a7f46c0d2ab0048a1c382f052589f091724828e2139d8796408edb899cac2e50 +doccontainersize 80808 +doccontainerchecksum 148963ad2651a79371d8f218c763c90c96d28d18d84c2f57e76ad64b456418a44d15983fd1b1622e33c6ef256f6457b6b33090b7c57fd3c37b8dbc8a0754c09b +docfiles size=21 + RELOC/doc/latex/datetime2-icelandic/README details="Readme" + RELOC/doc/latex/datetime2-icelandic/datetime2-icelandic.pdf details="Package documentation" +srccontainersize 4784 +srccontainerchecksum 83cc155aa3cba3aff874762490d6cb9f85c0218c7209ff6ce304c16f04ef28a0b30a5978d08ed2e1ff24a2a81359387185e2ba16d45d8f83fdc8c81bdf5b5df4 +srcfiles size=5 + RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.dtx + RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.ins +runfiles size=4 + RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-irish +category Package +revision 47632 +shortdesc Irish Gaelic Language Module for the datetime2 Package +relocated 1 +longdesc This module provides the "irish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2908 +containerchecksum 8c1d54d5fc80b2f7dd8faabc31df20253c9ee48987c268ae685144b02acccb5c3ec6bdaaa5bc420e90ecf4ec7d421afc96d82aef1a76ec7e01fb8e5f81d0a036 +doccontainersize 321096 +doccontainerchecksum 692acb7c50c30e6790344b37e9fe3cb07f2a0e10b9d63b47c78df1b2d1bd1f8f186107acf4d75dabc14a99db57cb32810989bf7af817bfdd16fa694bfee5f17f +docfiles size=80 + RELOC/doc/latex/datetime2-irish/README details="Readme" + RELOC/doc/latex/datetime2-irish/datetime2-irish.pdf details="Package documentation" +srccontainersize 5444 +srccontainerchecksum 1e829006f0182374511addef820ef08868eb1c00b5e82d0da82efadb4df377531755a4212fb0e2f4a5df0d06aaed39863094524b351c29dd88dfd5ee71c84860 +srcfiles size=9 + RELOC/source/latex/datetime2-irish/datetime2-irish.dtx + RELOC/source/latex/datetime2-irish/datetime2-irish.ins +runfiles size=8 + RELOC/tex/latex/datetime2-irish/datetime2-ga-GB.ldf + RELOC/tex/latex/datetime2-irish/datetime2-ga-IE.ldf + RELOC/tex/latex/datetime2-irish/datetime2-irish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-it-fulltext +category Package +revision 54779 +shortdesc Italian full text styles for the datetime2 package +relocated 1 +longdesc Italian date and time styles that use words for the numbers and +longdesc ordinals. This package provides the following date and time +longdesc styles: "it-fulltext" and "it-fulltext-twenty-four". The first +longdesc style uses a format "am pm", the second a format "24 hours". +longdesc The necessary packages are datetime2, itnumpar, ifxetex, and +longdesc ifluatex. This package is the translation and adaptation of +longdesc datetime2-en-fulltext. +depend iftex +containersize 3736 +containerchecksum 29a67f9c4414d08adce673ac2b501e92be5822470511b55677b041fa1d89b55760246fea08ba0f4cac7ef6f8e7ff52498f0459d50f94bf2bc6b3e4a944976a99 +doccontainersize 123908 +doccontainerchecksum 24bceb74337abc4ae74bbf9101bd32cc65371d60a0461cec91c8e3ecc3822c848eb8c7f0bc8706ec1b2118294df659b44f3139c3a3ed1c0c243f9654ae1b3d6d +docfiles size=44 + RELOC/doc/latex/datetime2-it-fulltext/README details="Readme" + RELOC/doc/latex/datetime2-it-fulltext/datetime2-it-fulltext.pdf details="Package documentation" + RELOC/doc/latex/datetime2-it-fulltext/samples/BatTest.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/BatTestDate.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/it-fulltext-en-fulltext.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-second.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-semplice.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-twenty-four-second.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-twenty-four.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-timedatestyle1.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-timedatestyle2.tex +srccontainersize 4488 +srccontainerchecksum 89a91a69a45100324b24c5cca3e0bdedc8dec2a466c414e65044f55a6c1ec3c715946dd5c5ed942fc9dc8f6a597fe5f2075dd7d05c88d241da4bccb27ba9cb3d +srcfiles size=9 + RELOC/source/latex/datetime2-it-fulltext/datetime2-it-fulltext.dtx + RELOC/source/latex/datetime2-it-fulltext/datetime2-it-fulltext.ins +runfiles size=10 + RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.6 + +name datetime2-italian +category Package +revision 37146 +shortdesc Italian language module for the datetime2 package +relocated 1 +longdesc This module provides the "italian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2904 +containerchecksum d099d05904e416d44e9a9ffb337b23e2c1f908dfddbb41cfd7629c4abaa7769c76f50ef687751224ab4ae94a0df4d1962adbad602ed3a7473566e16c5c4bea48 +doccontainersize 3312 +doccontainerchecksum 963759f5e07e01315b827d4c67364d9367d114a09d518154524ba4496aee69f1ef08acbdeb67522d3b350a6f8abf8bf571171d4c380bc3f093d59ea3207beea1 +docfiles size=21 + RELOC/doc/latex/datetime2-italian/README details="Readme" + RELOC/doc/latex/datetime2-italian/sample/datetime1.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-babel.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-calc.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-hyperref.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-styles.tex + RELOC/doc/latex/datetime2-italian/sample/esempio1.tex + RELOC/doc/latex/datetime2-italian/sample/esempio10.tex + RELOC/doc/latex/datetime2-italian/sample/esempio11.tex + RELOC/doc/latex/datetime2-italian/sample/esempio12.tex + RELOC/doc/latex/datetime2-italian/sample/esempio13.tex + RELOC/doc/latex/datetime2-italian/sample/esempio2.tex + RELOC/doc/latex/datetime2-italian/sample/esempio3.tex + RELOC/doc/latex/datetime2-italian/sample/esempio4.tex + RELOC/doc/latex/datetime2-italian/sample/esempio5.tex + RELOC/doc/latex/datetime2-italian/sample/esempio6.tex + RELOC/doc/latex/datetime2-italian/sample/esempio6a.tex + RELOC/doc/latex/datetime2-italian/sample/esempio7.tex + RELOC/doc/latex/datetime2-italian/sample/esempio8.tex + RELOC/doc/latex/datetime2-italian/sample/esempio9.tex + RELOC/doc/latex/datetime2-italian/sample/tomorrow.tex +srccontainersize 4860 +srccontainerchecksum 4036338ded2298c97e49173758317706452c254bbf07dcbe83080e28b6d59415d0ff14657cd11b9a5981ca893a4033db338518e251d59d0c4eaddaa9498189f0 +srcfiles size=6 + RELOC/source/latex/datetime2-italian/datetime2-italian.dtx + RELOC/source/latex/datetime2-italian/datetime2-italian.ins +runfiles size=5 + RELOC/tex/latex/datetime2-italian/datetime2-italian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.3 + +name datetime2-latin +category Package +revision 47748 +shortdesc Latin language module for the datetime2 package +relocated 1 +longdesc This module provides the "latin" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2344 +containerchecksum 25f4e92c72abe14db9340aae354e0f598aadf88ec109b6dbe6b48e12f55926f63fc80ca420ccbbbf8fcc8dac066520d69b653981ccdd41b2e8588d85d4f11a99 +doccontainersize 272468 +doccontainerchecksum f683c8764e99edcd9d9a449eecd3f1e4a10a2803a20bff7be22568a69ee1b06c5d054d6664a051b0eef8cdac5bc2387175cb582d005e1af31a5be8bbac4a0de4 +docfiles size=68 + RELOC/doc/latex/datetime2-latin/README details="Readme" + RELOC/doc/latex/datetime2-latin/datetime2-latin.pdf details="Package documentation" +srccontainersize 4268 +srccontainerchecksum 9270951371b2595f59a5dd8f8214603d9a72856caeb7902488fd7e7068b16c09b7ebd8f94cf10b99d31fa95777b475d403d49429944bc79f20faf37ae9192f8a +srcfiles size=5 + RELOC/source/latex/datetime2-latin/datetime2-latin.dtx + RELOC/source/latex/datetime2-latin/datetime2-latin.ins +runfiles size=2 + RELOC/tex/latex/datetime2-latin/datetime2-latin.ldf +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-latin +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.0 + +name datetime2-lsorbian +category Package +revision 47749 +shortdesc Lower Sorbian language module for the datetime2 package +relocated 1 +longdesc This module provides the "lsorbian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2772 +containerchecksum 04fcebad65bee525697ba96cba9d66d6acfe9bc602b6cfb207103a2bfba0d3cbbef948d614930c1a2bc785a6ae2ad6c4e0b06db58d562681225d67b7a5f2f8a6 +doccontainersize 85956 +doccontainerchecksum 7bee606e0c48dcfa676835e3a313ec8c3b79f566fba6d6b65cb34c4f939e7a7df34d73e24f0f03d569e0f6a01cb244a90b9023e2846c597eb589e984ad9d1f18 +docfiles size=23 + RELOC/doc/latex/datetime2-lsorbian/README details="Readme" + RELOC/doc/latex/datetime2-lsorbian/datetime2-lsorbian.pdf details="Package documentation" +srccontainersize 5060 +srccontainerchecksum 9dee46b9c2290e00c1a9f9d7e63b3872ec206f7afe9ff0ca592824319b035da1295f566a8934d7d4e87f47b8061311682d2a6ace9a9ea15180433279759d847a +srcfiles size=6 + RELOC/source/latex/datetime2-lsorbian/datetime2-lsorbian.dtx + RELOC/source/latex/datetime2-lsorbian/datetime2-lsorbian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-magyar +category Package +revision 48266 +shortdesc Magyar language module for the datetime2 package +relocated 1 +longdesc This module provides the "magyar" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2536 +containerchecksum 4d3b27b0409d26431cc06a1ac83485b6d4d63b9bba30a862ac043cc27c25a77805d5c3aeff3a329e1348a32ca4ceaea917f2f840ce1696a58f00325775ae5009 +doccontainersize 81372 +doccontainerchecksum 1eff11bc2c7cdae101331521f08d3a9eb878e8d1695b35724475eb5b99e0a537bf16a00bd3c13760cb36306e84b72f15e5ec294ed958ab5d67e75ad8571ac9a2 +docfiles size=21 + RELOC/doc/latex/datetime2-magyar/README details="Readme" + RELOC/doc/latex/datetime2-magyar/datetime2-magyar.pdf details="Package documentation" +srccontainersize 4776 +srccontainerchecksum 674e795a5b3d49665bba89c7f01abdf4c366a72f9968ea008455179319f66061ef2f73e21c6ae736e6dd960aba1184b7e374eecff8429d1b533078202f294ad7 +srcfiles size=5 + RELOC/source/latex/datetime2-magyar/datetime2-magyar.dtx + RELOC/source/latex/datetime2-magyar/datetime2-magyar.ins +runfiles size=4 + RELOC/tex/latex/datetime2-magyar/datetime2-magyar-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-norsk +category Package +revision 48267 +shortdesc Norsk language module for the datetime2 package +relocated 1 +longdesc This module provides the "norsk" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2540 +containerchecksum 9ebcd994305b3b3aad61383b9ece13425b4c34432dae0aac2ce38c0219b2f19871f89cb30bd774a7db9be45cc8a21f7856f1f568c32941502b18f6089b787066 +doccontainersize 84152 +doccontainerchecksum 3d834d8572cb8f1237b4b9e69bcbcf1a5eb0a1e5c001e8610a00ec377204c570218f6d97765c3efbad9130cb2ad9ced3cb80b32bcdfccfd62d7069ece93ab1da +docfiles size=22 + RELOC/doc/latex/datetime2-norsk/README details="Readme" + RELOC/doc/latex/datetime2-norsk/datetime2-norsk.pdf details="Package documentation" +srccontainersize 4792 +srccontainerchecksum 7dbb4161731dceac735ce39e042713a07d3d63dabac0a4dec870a022ba79c2637d7fbde4715936908d39f3475746f243dbe2e39d88040f35822503f59c0f87d0 +srcfiles size=6 + RELOC/source/latex/datetime2-norsk/datetime2-norsk.dtx + RELOC/source/latex/datetime2-norsk/datetime2-norsk.ins +runfiles size=4 + RELOC/tex/latex/datetime2-norsk/datetime2-norsk-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-polish +category Package +revision 48456 +shortdesc Polish language module for the datetime2 package +relocated 1 +longdesc This module provides the "polish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2600 +containerchecksum 3b63541325de4082a828af5131a639c11f2562b8e2951f50199f7281e7c59e2a2deaf8cba124cc8679a4de5da3e95d988bb3533eed6cdbc9471a95476ec59bc4 +doccontainersize 83772 +doccontainerchecksum 6bcccc320063567e2527ca6acce6180c9d19a3ec8a1e922e640e82d3ad2a244cd455741e059e385fa26ee6479ddd5086b9dcf73a705988adec96a311cfc5e40b +docfiles size=22 + RELOC/doc/latex/datetime2-polish/README details="Readme" + RELOC/doc/latex/datetime2-polish/datetime2-polish.pdf details="Package documentation" +srccontainersize 4872 +srccontainerchecksum 0adc45a662620826c90aac5f0372d83462eb571b7dc0751465ea246602ffe4f7b43f6a5b3153cd04681ee8baa23703784e15b79e5ae2c15cc9e6db5808265b8e +srcfiles size=6 + RELOC/source/latex/datetime2-polish/datetime2-polish.dtx + RELOC/source/latex/datetime2-polish/datetime2-polish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-polish/datetime2-polish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-portuges +category Package +revision 48457 +shortdesc Portuguese language module for the datetime2 package +relocated 1 +longdesc This module provides the "portuges" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2516 +containerchecksum 976ad1440f05bd166659b5b950691b4d0ce988a3d71bb91525e4448b1520a6ead37bbb3ef9a899bac08c7dfe8cc7b9b7e15174c8ef143891133bc00e5c39e9fe +doccontainersize 286568 +doccontainerchecksum 3cd176813f3b0bb16341ddeee4d0a848b4eee9bacfb90734d97fd9ddc3e88285057dd0bf4f0f3ebb5641ebee48b15161feb3e4e75032e32368a51bfb9ca4a8f0 +docfiles size=71 + RELOC/doc/latex/datetime2-portuges/README details="Readme" + RELOC/doc/latex/datetime2-portuges/datetime2-portuges.pdf details="Package documentation" +srccontainersize 4772 +srccontainerchecksum 71b769e4a63cf02cf6c2794d3fb876a33d9c8b150059a2bc0960b8cd1b355e5ebde3d02b48ea47653cf781721fcec118d78301021e8b95543d32215e690a3c12 +srcfiles size=6 + RELOC/source/latex/datetime2-portuges/datetime2-portuges.dtx + RELOC/source/latex/datetime2-portuges/datetime2-portuges.ins +runfiles size=4 + RELOC/tex/latex/datetime2-portuges/datetime2-portuges-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-romanian +category Package +revision 56394 +shortdesc Romanian language module for the datetime2 package +relocated 1 +longdesc This module provides the "romanian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2856 +containerchecksum fed59ecdb496fbad41a5558526671cddf9cb487f50cdf103f61141fb1955170e54dbc3fc134ef51a2867715e7bc714dbf81bbb11e6d30c324a87492870738d39 +doccontainersize 142384 +doccontainerchecksum 7c65be46449bf92e2c41623e785c6262c710de23527ea54c505cbe155af50dd9e9831780dd380b3d0c44af7607bc59fd3b168d700c1a8041642bbe4b4ae9cd08 +docfiles size=42 + RELOC/doc/latex/datetime2-romanian/README details="Readme" + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-luatex.pdf + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-luatex.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-pdftex.pdf + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-pdftex.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-xetex.pdf + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-xetex.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian.pdf details="Package documentation" +srccontainersize 4880 +srccontainerchecksum 58e3773e40d6116f5cbb6f2a46d33fb6d557d42887efb130c051c24fd991d8f0709f5afbc8e6ee9b5ada21d613d4d8975488f2e691bd0951c5f5429eda7de61e +srcfiles size=7 + RELOC/source/latex/datetime2-romanian/datetime2-romanian.dtx + RELOC/source/latex/datetime2-romanian/datetime2-romanian.ins +runfiles size=5 + RELOC/tex/latex/datetime2-romanian/datetime2-romanian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.02 + +name datetime2-russian +category Package +revision 49345 +shortdesc Russian language module for the datetime2 package +relocated 1 +longdesc This module provides the "russian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2704 +containerchecksum 2821680ce189aacf8b0303d5698d9359f240ab4e470c0e2b052235e6aaeeffc882ea4b9c9c4f91d52b1402ef7486c7115bab8058e2223b7ebd3186fbd4c4c34f +doccontainersize 76424 +doccontainerchecksum 97c1b02377328ff75775194baeb2c3e15f2dafee303dbb85c47a0baf7f6edb4323f754578a9caf9db609477204c1310dade3b87d5a768a16fa940be2fe320081 +docfiles size=21 + RELOC/doc/latex/datetime2-russian/README details="Readme" + RELOC/doc/latex/datetime2-russian/datetime2-russian.pdf details="Package documentation" +srccontainersize 5056 +srccontainerchecksum f9055eefe76d9844e8764ec766c0e1da7d3c61db65c754115cdc47419ab68d84685688e59939f219cc5ab87f79570cd4c28011ca597ee4f89fcdc38c42e82a75 +srcfiles size=6 + RELOC/source/latex/datetime2-russian/datetime2-russian.dtx + RELOC/source/latex/datetime2-russian/datetime2-russian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-russian/datetime2-russian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-samin +category Package +revision 49346 +shortdesc Northern Sami language module for the datetime2 package +relocated 1 +longdesc This module provides the "samin" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2588 +containerchecksum fc4e6401ce02b1aa7be5fd78e5d5e74aff6ac35cbb6864cbce6d93fe0b2716510f6ccdd290c82286b8e51f37abe8460c0f8340ce0f9135838ecace7502f72784 +doccontainersize 73200 +doccontainerchecksum e5879faedd4d4fa5ac40575e0ccd1d0db94a80d78c3d01f8d36bb37875e2b9025537c876087b85626ccaed5c90f505a98fd3e5adee64ac1bc72f48ff66114438 +docfiles size=20 + RELOC/doc/latex/datetime2-samin/README details="Readme" + RELOC/doc/latex/datetime2-samin/datetime2-samin.pdf details="Package documentation" +srccontainersize 4860 +srccontainerchecksum 4aa4d272188a8a2b6e40792b97df9b205857870f3787153502c12fbaaf81ed61d9d823a7966e147fbc1d94f761c40f179d4025166a48f358821134559a7bee3b +srcfiles size=5 + RELOC/source/latex/datetime2-samin/datetime2-samin.dtx + RELOC/source/latex/datetime2-samin/datetime2-samin.ins +runfiles size=4 + RELOC/tex/latex/datetime2-samin/datetime2-samin-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-scottish +category Package +revision 52101 +shortdesc Scottish Gaelic Language Module for the datetime2 Package +relocated 1 +longdesc This module provides the "scottish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2548 +containerchecksum b3f8c2e2c61461c162f4b7c029ced53b5f0c61398415d17044a5189c08460550bfd0ddd15c693dc959b5cb5bacef63a1d4de8a9fe11108843edeff475964aae6 +doccontainersize 287108 +doccontainerchecksum 87035e38cea316b776f2c61d0c1522e61c560602650bf6955fc7330536fac42dcb17bdad1c3828f2accd10cef009efcd805ed917352ff921d03b46ed3d0bea18 +docfiles size=71 + RELOC/doc/latex/datetime2-scottish/README details="Readme" + RELOC/doc/latex/datetime2-scottish/datetime2-scottish.pdf details="Package documentation" +srccontainersize 4860 +srccontainerchecksum 4e4c7d02ea59a5d7592660e80c996adc11968433a2d88b54179ff15ab577a487789cba6fee4131511a5c22de2025879800544689653c48c0f7560a311b264c02 +srcfiles size=6 + RELOC/source/latex/datetime2-scottish/datetime2-scottish.dtx + RELOC/source/latex/datetime2-scottish/datetime2-scottish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-scottish/datetime2-scottish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-serbian +category Package +revision 52893 +shortdesc Serbian language module for the datetime2 package +relocated 1 +longdesc This module provides the "serbian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. It provides both +longdesc Cyrillic and Latin, Ekavian and Ijekavian variants of Serbian +longdesc date formats, regionalized and non-regionalized. +containersize 6716 +containerchecksum ebcdbb32af1743e9dc2b46b6730664c48a26ac4d15c4e9936c9df883a718fb52e8800f29285295e7521a02130471bdc10f8227b5dbbbeaf6481355d7025a8dd4 +doccontainersize 277140 +doccontainerchecksum c56761130dc00406a27356a8b38f4c82f233dab32fa6f19d58626139ecd7e12fe3c736edc676db52176c5918800b4f0a47362fcb9b3ef265ec3beebd641c1b15 +docfiles size=71 + RELOC/doc/latex/datetime2-serbian/README.md details="Readme" + RELOC/doc/latex/datetime2-serbian/datetime2-serbian.pdf details="Package documentation" +srccontainersize 15704 +srccontainerchecksum a7d421d3e090bfdcdd0fc5f734a45cf32d8849e1c27ddb2de3f829c5488d99220797400c8039deef2fb76c3ede96059519dad3d54412f2c780ca5b9bca39f043 +srcfiles size=53 + RELOC/source/latex/datetime2-serbian/datetime2-serbian.dtx + RELOC/source/latex/datetime2-serbian/datetime2-serbian.ins +runfiles size=35 + RELOC/tex/latex/datetime2-serbian/datetime2-serbian-base-ascii.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-serbian-base-utf8.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-serbian-base.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-serbian.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-serbianc.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Cyrl-BA.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Cyrl-ME.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Cyrl-RS.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Cyrl.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Latn-BA.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Latn-ME.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Latn-RS.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-sr-Latn.ldf +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-license lppl1.3 +catalogue-topics date-time multilingual serbian +catalogue-version 2.1.0 + +name datetime2-slovak +category Package +revision 52281 +shortdesc Slovak language module for the datetime2 package +relocated 1 +longdesc This module provides the "slovak" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2548 +containerchecksum c69d8eacf36fb7232a85d92e5db277b281b631c0c8f63df7fbba51876d1be782b7196efaaea0ac25140716f983ada40aedaa550102fbe0d445e5cddd41317a09 +doccontainersize 72652 +doccontainerchecksum c40e20b000f3fd5ac368c310d1f11519566410963cadaf4aabfb0c9cae05e0d3e8a3810c7da451a5e206e8b5b174ac0b837c1beff207597e050ec529e82acf51 +docfiles size=19 + RELOC/doc/latex/datetime2-slovak/README details="Readme" + RELOC/doc/latex/datetime2-slovak/datetime2-slovak.pdf details="Package documentation" +srccontainersize 4716 +srccontainerchecksum 19547ebf7016d1e416227830b81e95dd6d91c7ab7823d3fc2d6890d628a51074e4ba7b8b5f31020bf86c2fe447b60f22754bbecb3f7e65dc908ffcfa9087e12f +srcfiles size=5 + RELOC/source/latex/datetime2-slovak/datetime2-slovak.dtx + RELOC/source/latex/datetime2-slovak/datetime2-slovak.ins +runfiles size=4 + RELOC/tex/latex/datetime2-slovak/datetime2-slovak-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-slovene +category Package +revision 52282 +shortdesc Slovene language module for the datetime2 package +relocated 1 +longdesc This module provides the "slovene" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2480 +containerchecksum 1d0a73d3781fcc9ea0df63e391f6b7a0a254bfa920c63ad1a0c76b56d4770822bc4e049ce18c554974bbb20478150cd7a4f545ef8983bacd31a112fc3acd5419 +doccontainersize 72192 +doccontainerchecksum dfb2a9808488ab0e0b225d0a397490f7e1cd2343caf0a685d8e3f48feff2ce549092771f0b4017a3c45640067ad1ede8a852e714b313d9abfc7c9642f983cb46 +docfiles size=19 + RELOC/doc/latex/datetime2-slovene/README details="Readme" + RELOC/doc/latex/datetime2-slovene/datetime2-slovene.pdf details="Package documentation" +srccontainersize 4720 +srccontainerchecksum f1a60b0173e8c1f6f245459ba35014e4cca9308e2c5aea203d6123cb88f6de945a6f80ae350ecbfce6554f6d2b671f32487825c5f01093c3bd3fc7a1902231b6 +srcfiles size=5 + RELOC/source/latex/datetime2-slovene/datetime2-slovene.dtx + RELOC/source/latex/datetime2-slovene/datetime2-slovene.ins +runfiles size=4 + RELOC/tex/latex/datetime2-slovene/datetime2-slovene-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-spanish +category Package +revision 45785 +shortdesc Spanish language module for the datetime2 package +relocated 1 +longdesc This module provides the "spanish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2568 +containerchecksum 07c321a300d779e39de46628b8e1b95d383e2a1a0af882cc607929d894f11b2e8329cb256014193d428182e78f2cbd5e3e277bc7821d3ad7a2740fedacf14e28 +doccontainersize 287836 +doccontainerchecksum 629b4a2771fe68715978afcb202d984e1032d2e0f1af95d4971a980e14baf4b0705187f4a7ef9748c024eb27780f7720d8d5010ebfb23026ad8605a42730293f +docfiles size=72 + RELOC/doc/latex/datetime2-spanish/README details="Readme" + RELOC/doc/latex/datetime2-spanish/datetime2-spanish.pdf details="Package documentation" +srccontainersize 4824 +srccontainerchecksum 78565125794ec1f5cf762cc27fd24c96eef5a1792941d4ce88c85bbecbec777da239db94118260feed6502e55f81b45f105a170e4b6207ec5e4201f043fa67e4 +srcfiles size=6 + RELOC/source/latex/datetime2-spanish/datetime2-spanish.dtx + RELOC/source/latex/datetime2-spanish/datetime2-spanish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-spanish/datetime2-spanish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-swedish +category Package +revision 36700 +shortdesc Swedish language module for the datetime2 package +relocated 1 +longdesc This module provides the "swedish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2564 +containerchecksum b904b21b593e529ffb714f3762ca5b8de37e87fe25df593873defa43de3995d1c72b0500217182728eaee6030cacaca969376a5623bc0baf48fe33aafafc0a66 +doccontainersize 83536 +doccontainerchecksum 7d6f2468aaa20da4e086201c0ffa6e6ae031e2a23db7fcccbb9ee8776c59b56a51cda9a03dfcce9fbf81b618f2e7543272f4ae88871f2b5380d1b98ff89e451f +docfiles size=22 + RELOC/doc/latex/datetime2-swedish/README details="Readme" + RELOC/doc/latex/datetime2-swedish/datetime2-swedish.pdf details="Package documentation" +srccontainersize 4812 +srccontainerchecksum bcdb2b0eb40b7acad86b37e215cf4bd3c5376cad8fbd10d7f1af32a5983243aa28d950116d40abf4ae10bd28e32c10022297b77ca40daeab15b6f88ed33758d0 +srcfiles size=6 + RELOC/source/latex/datetime2-swedish/datetime2-swedish.dtx + RELOC/source/latex/datetime2-swedish/datetime2-swedish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-swedish/datetime2-swedish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.0 + +name datetime2-turkish +category Package +revision 52331 +shortdesc Turkish language module for the datetime2 package +relocated 1 +longdesc This module provides the "turkish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2480 +containerchecksum 7d4b756ab2f102c7981376d6f87e5a7f7b47d57b1ae9f821185bd5b04e7a5d9a81aebc7835a9bb43a217dffcfceb5b2c46b838bc652dab7c2f468d9510c2ee4a +doccontainersize 71700 +doccontainerchecksum 6c95641444f2eb510a330c7002bba2c40cf28daeb63fd9092d74846673c03d2aeafd1e7d61d5a7470bac95117c3717cd75566907a896f5cb4b54ccbe952c6d65 +docfiles size=19 + RELOC/doc/latex/datetime2-turkish/README details="Readme" + RELOC/doc/latex/datetime2-turkish/datetime2-turkish.pdf details="Package documentation" +srccontainersize 4648 +srccontainerchecksum da530162bdacda3904b07bb2d9b0ab74c56cec0341f0c0457d6bd2e27e45b2d8c1f5ca298718d96924e3dce30e83beacd0fef919d1b5bdb5dedae29c7b3edcc1 +srcfiles size=5 + RELOC/source/latex/datetime2-turkish/datetime2-turkish.dtx + RELOC/source/latex/datetime2-turkish/datetime2-turkish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-turkish/datetime2-turkish-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-ukrainian +category Package +revision 47552 +shortdesc Ukrainian language module for the datetime2 package +relocated 1 +longdesc This module provides the "ukrainian" style that can be set +longdesc using \DTMsetstyle provided by datetime2.sty. +containersize 3340 +containerchecksum 5e3d412b8a5b73bb6bd2ee176305806d9b41c5a67196ddd28640e958a7019b3e73f961964b7510be4cd69833c4599db1fed05c6a6f66d4d0b3bc5ad73b5d6dbc +doccontainersize 62424 +doccontainerchecksum df40b4e156164a1c05a94c926d691b887a56ef8f42baee26e684383871edff05e5c6e87eba95994783cac2fcea1a5c72347c8eb86f0cca360faa8dd4829349b5 +docfiles size=17 + RELOC/doc/latex/datetime2-ukrainian/README.md details="Readme" + RELOC/doc/latex/datetime2-ukrainian/datetime2-ukrainian.pdf details="Package documentation" +srccontainersize 8016 +srccontainerchecksum 36c7db71bd063a87e8b9f2958217c71c7e6820b4e5536a5cc46db35ef69e83dd5e7b0ddd57038b66f8405d5a24afd21253ca34f7a8d174a26b4a67607048caf4 +srcfiles size=12 + RELOC/source/latex/datetime2-ukrainian/datetime2-ukrainian.dtx + RELOC/source/latex/datetime2-ukrainian/datetime2-ukrainian.ins +runfiles size=8 + RELOC/tex/latex/datetime2-ukrainian/datetime2-ukrainian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.2a + +name datetime2-usorbian +category Package +revision 52375 +shortdesc Upper Sorbian language module for the datetime2 package +relocated 1 +longdesc This module provides the "usorbian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2760 +containerchecksum bae799fc523f01f7c70c7818ced0294bbb57a849567e05768c4f1c3f9cbe241755ac2dbda0a9ce0e3bb3f70eec45bae1c0607410302b458370a4c05951d791cf +doccontainersize 76044 +doccontainerchecksum bacc067e851e4b58b2978472551cf869cc9d3d4412ba930b2ab81f39c4fa9ca352188b6a6bffc5b5dc4a6bcf611146b3d1344d221732a7caaf45f95bb67d5589 +docfiles size=20 + RELOC/doc/latex/datetime2-usorbian/README details="Readme" + RELOC/doc/latex/datetime2-usorbian/datetime2-usorbian.pdf details="Package documentation" +srccontainersize 5048 +srccontainerchecksum dcc7b42ec9873ef0d23026d07165301deda63b829462ab7f4074ae7c828945bc5cff2e2dba372782e250175b596b1be536dd27271e4b2f0913f42fb1a17ff320 +srcfiles size=6 + RELOC/source/latex/datetime2-usorbian/datetime2-usorbian.dtx + RELOC/source/latex/datetime2-usorbian/datetime2-usorbian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-welsh +category Package +revision 52553 +shortdesc Welsh language module for the datetime2 package +relocated 1 +longdesc This module provides the "welsh" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +containersize 2580 +containerchecksum 2c3b56f2e2796840fec8a60b4f75800743a4d71128cb900ed7419a7a01acd306a9ef86c2b1587e661833f8de48ef89e22c11589af21c9abfa2cedbf709c4c340 +doccontainersize 286200 +doccontainerchecksum 7abb3d603eb94f99c1fc49e53ee28996d2a536d647b0940db20e5a9aa70eb10d7e00385300bfb3adbaf4f463db20c4277a8afbf0f174c449e402c02954c57243 +docfiles size=71 + RELOC/doc/latex/datetime2-welsh/README details="Readme" + RELOC/doc/latex/datetime2-welsh/datetime2-welsh.pdf details="Package documentation" +srccontainersize 4868 +srccontainerchecksum 92b71dbc5a21f650de8e9ef42bab3e3cdae1f4f1a48b34db9b656d894edc678e79e27dfe8b2143d85dd69aebf6e1cc9156a9b72d632065a2d146084f7da0f12f +srcfiles size=5 + RELOC/source/latex/datetime2-welsh/datetime2-welsh.dtx + RELOC/source/latex/datetime2-welsh/datetime2-welsh.ins +runfiles size=4 + RELOC/tex/latex/datetime2-welsh/datetime2-welsh-ascii.ldf + 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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name dblfloatfix +category Package +revision 28983 +shortdesc Fixes for twocolumn floats +relocated 1 +longdesc The package solves two problems: floats in a twocolumn document +longdesc come out in the right order and allowed float positions are now +longdesc [tbp]. The package actually merges facilities from fixltx2e and +longdesc stfloats. +containersize 2664 +containerchecksum 05931528012077b92702926856b1e0d1aa6472188f9b1fbff74e5534a41a3260e53b82bcdd0684ff045aafaf4b427dab6d8e06fc7a5d11cb42a545949bc6bfc8 +doccontainersize 219612 +doccontainerchecksum 5790850d01d9f3734cb89146c23077bc852d84242352718ee655f1410ee84b77366bef133d8df49fd46ad976aa007fe2c4039a08035122f93e719c5f0f7563f7 +docfiles size=55 + RELOC/doc/latex/dblfloatfix/dblfloatfix.pdf details="Package documentation" + RELOC/doc/latex/dblfloatfix/dblfloatfix.tex +runfiles size=2 + RELOC/tex/latex/dblfloatfix/dblfloatfix.sty +catalogue-ctan /macros/latex/contrib/dblfloatfix +catalogue-license lppl1.3 +catalogue-topics float +catalogue-version 1.0a + +name dccpaper +category Package +revision 57522 +shortdesc Typeset papers for the International Journal of Digital Curation +relocated 1 +longdesc The LaTeX class ijdc-v14 produces camera-ready papers and +longdesc articles suitable for inclusion in the International Journal of +longdesc Digital Curation, with applicability from volume 14 onwards; a +longdesc legacy class ijdc-v9 is provided for papers and articles +longdesc written for volumes 9-13. The similar idcc class can be used +longdesc for submissions to the International Digital Curation +longdesc Conference, beginning with the 2015 conference. +containersize 25252 +containerchecksum 02cf56e0c9d4450382336869d2edc09e543b119b68ff365c52049a7558297710e4089adb585124396d03745ce69b35d230091ee2c7d4e76011e78f6188cc9b9f +doccontainersize 302260 +doccontainerchecksum 2ed2fcfd16373b2af10f91169b2358b787d66af88374600290d362ca9da9db18dafe2cfbe4b2d057ff88b758b70572197ac037f834b02555313ee759af65d6cc +docfiles size=80 + RELOC/doc/latex/dccpaper/README.md details="Readme" + RELOC/doc/latex/dccpaper/dccpaper-apacite.bib + RELOC/doc/latex/dccpaper/dccpaper-biblatex.bib + RELOC/doc/latex/dccpaper/dccpaper.pdf details="Package documentation" +srccontainersize 27332 +srccontainerchecksum 16764f191263cd3b7ce5a4c128f61b60dff4920b65254202fb0a996e80ca94b206131d9279037fd4948a14fad1f1f007f6e7683373912c7d03ff6626ca3d0db8 +srcfiles size=27 + RELOC/source/latex/dccpaper/Makefile + RELOC/source/latex/dccpaper/dccpaper.dtx +runfiles size=28 + RELOC/tex/latex/dccpaper/dccpaper-base.sty + RELOC/tex/latex/dccpaper/dccpaper-by.eps + RELOC/tex/latex/dccpaper/dccpaper-by.pdf + RELOC/tex/latex/dccpaper/idcc.cls + RELOC/tex/latex/dccpaper/ijdc-v14.cls + RELOC/tex/latex/dccpaper/ijdc-v9.cls +catalogue-contact-bugs https://github.com/DigitalCurationCentre/dccpaper/issues +catalogue-contact-repository https://github.com/DigitalCurationCentre/dccpaper +catalogue-ctan /macros/latex/contrib/dccpaper +catalogue-license lppl1.3c cc-by-4 +catalogue-topics journalpub confproc class +catalogue-version 2.1 + +name dcpic +category Package +revision 30206 +shortdesc Commutative diagrams in a LaTeX and TeX documents +relocated 1 +longdesc DCpic is a package for typesetting Commutative Diagrams within +longdesc a LaTeX and TeX documents. Its distinguishing features are: a +longdesc powerful graphical engine, the PiCTeX package; an easy +longdesc specification syntax in which a commutative diagram is +longdesc described in terms of its objects and its arrows (morphism), +longdesc positioned in a Cartesian coordinate system. +containersize 13996 +containerchecksum 6cfae1fe50baa81ba778ee1b8cc76dd2d0e66e3cd4a868364857f2338b1078ac81178dbcea81d4edbe013726b7cb14700506f38e49eb528701bf784280ca7de8 +doccontainersize 927712 +doccontainerchecksum 25f768812f31cfc3e4d00717ed8d77392272f2480efe3311ecf5e922b18e1f5b6fa36892c7eb69cc077e350d5d7e55b7201673fc653c188ec8a76205f90b681c +docfiles size=275 + RELOC/doc/generic/dcpic/README + RELOC/doc/generic/dcpic/eurotex2001.pdf details="EuroTeX2001 paper" language="en" + RELOC/doc/generic/dcpic/eurotex2001.tex + RELOC/doc/generic/dcpic/examples.pdf + RELOC/doc/generic/dcpic/examples.tex + RELOC/doc/generic/dcpic/manDCPiC.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/dcpic/manDCPiC.tex + RELOC/doc/generic/dcpic/manDCPiCpt.pdf details="Package documentation (Portuguese)" language="pt" + RELOC/doc/generic/dcpic/manDCPiCpt.tex +runfiles size=14 + RELOC/tex/generic/dcpic/dcpic.sty + RELOC/tex/generic/dcpic/europroc.cls +catalogue-ctan /macros/generic/diagrams/dcpic +catalogue-license lppl1.3 +catalogue-topics diagram-comm +catalogue-version 5.0.0 + +name ddphonism +category Package +revision 52009 +shortdesc Dodecaphonic diagrams: twelve-tone matrices, clock diagrams, etc. +relocated 1 +longdesc This is a music-related package which is focused on notation +longdesc from the Twelve-Tone System, also called Dodecaphonism. It +longdesc provides LaTeX algorithms that produce typical dodecaphonic +longdesc notation based off a musical series, or row sequence, of +longdesc variable length. The package requires etoolbox, pgfkeys, TikZ, +longdesc xparse, and xstring. +containersize 3000 +containerchecksum 9ccd7a8715af4a808a72d4dbc96a1216663c7eddb7a0fea48b77bbcb546a12d0e9de00928189b424e9db8e612778ed53231456d087a1eb83bca827852c9691c8 +doccontainersize 284556 +doccontainerchecksum d75ead2518ae448eba251b3f43431751f415c9650e9ac023e1647fbfa828f700ef2fa3a19f53fdd6e28c9e8461e071fabb7c016aeaa62678ada20ed0b96017bb +docfiles size=73 + RELOC/doc/latex/ddphonism/README.md details="Readme" + RELOC/doc/latex/ddphonism/ddphonism.pdf details="Package documentation" + RELOC/doc/latex/ddphonism/ddphonism.tex +runfiles size=3 + RELOC/tex/latex/ddphonism/ddphonism.sty +catalogue-ctan /macros/latex/contrib/ddphonism +catalogue-license lppl1.3c +catalogue-topics music diagram pgf-tikz +catalogue-version 0.2 + +name de-macro +category Package +revision 57349 +shortdesc Expand private macros in a document +longdesc De-macro is a Python script that helps authors who like to use +longdesc private LaTeX macros (for example, as abbreviations). A +longdesc technical editor or a cooperating author may balk at such a +longdesc manuscript; you can avoid manuscript rejection misery by +longdesc running de-macro on it. De-macro will expand macros defined in +longdesc \(re)newcommand or \(re)newenvironment commands, within the +longdesc document, or in the document's "private" package file. +depend de-macro.ARCH +containersize 7920 +containerchecksum 558a55b14822cda4cfaa05511bbd6030049145916669b699795827181462e628d0a84baf087b8d56e3dccb353d17f581af9bc1662506878124e5cfaddbd97b9a +doccontainersize 57104 +doccontainerchecksum af0a7a463c7a9623050a3fe73782076965eefb58dec17752c80e35a647b5a7a6b354a1dea89ba03b503eef0faffbd2f134a6e5666f4c68665d322bf3b77922d6 +docfiles size=17 + texmf-dist/doc/support/de-macro/README details="Readme" + texmf-dist/doc/support/de-macro/user-guide.pdf details="Package documentation" + texmf-dist/doc/support/de-macro/user-guide.tex +runfiles size=8 + texmf-dist/scripts/de-macro/de-macro +catalogue-contact-home https://cs-web.bu.edu/faculty/gacs/software/de-macro/ +catalogue-ctan /support/de-macro +catalogue-license other-free +catalogue-topics macro-supp +catalogue-version 1.4 + +name de-macro.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of de-macro +containersize 340 +containerchecksum cbe1c840ff576e6fb04c0f4eb47d5eb495f7f45181c01f54a930fe6cdf821a5fc56e222d00b63e2380dd206ea0ec6244e42e6a767c7b346f81c59d9ad331deb4 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/de-macro + +name de-macro.amd64-freebsd +category Package +revision 17399 +shortdesc amd64-freebsd files of de-macro +containersize 340 +containerchecksum a106fda7f99b93f24537f0680ec5d969feeb04278aa135fd1304d3bf1493db5fc777cca08c3a3ac9f7c564dd8320d61f8f854a216c6ee5fa3b335767341f0ead +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/de-macro + +name de-macro.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of de-macro +containersize 340 +containerchecksum 1394c164d3e4ce41013e856266c4ef8eba1d42a21ca686a441892083f0676c2e876a179e8c0346c1cc19be159dcc5034b4a28f2a304db0c292c7bd6f22772d17 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/de-macro + +name de-macro.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of de-macro +containersize 340 +containerchecksum 6dc4b814f0617704425967d9fccc0c113ca0a8d33fd6b20dcd90c51d3944c6bae152b3d4eec24e52864e100f7111441bae751ed68099cc228728bd5c016ffc0c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/de-macro + +name de-macro.i386-cygwin +category Package +revision 17399 +shortdesc i386-cygwin files of de-macro +containersize 340 +containerchecksum 2144b76c876c56e78a830be05a0edc721a286547e53d9c8063b5e57711dbfe00246d86143ee2b57d4bbba808e12d06c34cd09bbc54336ac5c5871f3d606b1cd1 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/de-macro + +name de-macro.i386-freebsd +category Package +revision 17399 +shortdesc i386-freebsd files of de-macro +containersize 340 +containerchecksum a3f45aac9441265b419d11c86347f39315cfacb771cdd4dbd07b0939f471eacd65d2963f77da6660e7e6b3de331963900237a070f78b51331cbf8546262b8ca8 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/de-macro + +name de-macro.i386-linux +category Package +revision 17399 +shortdesc i386-linux files of de-macro +containersize 340 +containerchecksum fa6222987d18f030de17f21899df1c73ca4f3bef8adc116f8c811d41a7863c43284c75fc451809bd258bb7a6c8c7c2f20bb0f4d73f062531c0686dc6bdc446f9 +binfiles arch=i386-linux size=1 + bin/i386-linux/de-macro + +name de-macro.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of de-macro +containersize 340 +containerchecksum f611625c5fb41985656e9a36d71171cf9338430f9e78545a0a37526646aeeff5ba9a5df11c47aec72736ef1be2c8dfed67aac114713105de6e38d2302d0edbc5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/de-macro + +name de-macro.i386-solaris +category Package +revision 17399 +shortdesc i386-solaris files of de-macro +containersize 340 +containerchecksum 98bb281c2db4392a6aa1d2ac8f29610ec85e0f3fddea2b139730a0ce0f9f6d4b3ccc559157444105eea1c50b4f8e0e18fcf7c2f208dbb45818b1b04e249be7b4 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/de-macro + +name de-macro.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of de-macro +containersize 336 +containerchecksum f226fa7195df1aeeb848648987dfbe98d723ca4f1fc3be738c8a2e63d3d4f55080dfca73af719bf3c3affe76639389f65d919d1c2ea29e484c84a4e6313cc4af +binfiles arch=universal-darwin size=1 + bin/universal-darwin/de-macro + +name de-macro.win32 +category Package +revision 17428 +shortdesc win32 files of de-macro +containersize 684 +containerchecksum e521155458db58da2127c2e42408e8568c739ea2b09f6dba3f55f71a0282d84b55bcc1fe91cae73f71cc25f17e3ffb6ff25c16f3b21767daada9e13126fc52db +binfiles arch=win32 size=1 + bin/win32/de-macro.exe + +name de-macro.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of de-macro +containersize 340 +containerchecksum a3bddc2bb30495b6eca0a287bc48e3434643c6eb14506052c45878c47c80602aee9fa1ed75eb18a1e01ee750d9e937614cb080a91aa3df5fa3dd360cfbc6e83d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/de-macro + +name de-macro.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of de-macro +containersize 348 +containerchecksum 34dea8dc9727a4699b363b4f1a5b5af42109d96c55d6d0af78645183a6c43b72fbf38d7a656ead15e0614bf0879bb8a0cc02b849a68c41430553c7d262200f0f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/de-macro + +name de-macro.x86_64-linux +category Package +revision 17399 +shortdesc x86_64-linux files of de-macro +containersize 340 +containerchecksum 7409efad4bb76ef4c60095a9264e0720f3d77f67b988eceff8c0231cb3da5d6a4e54655f1563df10799c43daf3f9575fc0ae4bcc308b03cc8bff6b0f56ccc2c9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/de-macro + +name de-macro.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of de-macro +containersize 344 +containerchecksum f906151d43051bfe1684a84248759f3146241e3cf8f016ebd264eb8e365ca82d48b372911e54588ce471f902bea8be37dd9acc21480e28f50decde03366661ec +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/de-macro + +name de-macro.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of de-macro +containersize 340 +containerchecksum 6ce5e65bfe98003873240413f3dda96a87d553d16b68324ee379689cf5132ecf0c6b828d3fb031d4c5aa1a781c8bd4c29eb70d6151ecf1f62b0d3b5bb96c1953 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/de-macro + +name decimal +category Package +revision 23374 +shortdesc LaTeX package for the English raised decimal point +relocated 1 +longdesc This LaTeX package should be used by people who need the +longdesc traditional English raised decimal point, instead of the +longdesc American-style period. +containersize 1420 +containerchecksum 9a0d0947eacd52800b3b2cbc36d6e866c1876bd5f929896825dc604d9d633cfb169d93de0f86b0e78e3274936bb47834c222ee54b3571bfcdc0fe81bb2821776 +doccontainersize 155764 +doccontainerchecksum 977fc97627bbdbf4d65844dcb7ce267cb2291b102b718ca36ba2fee881d5fcf359d6d0dae839d4e640200d3b8a31cba301d20560f5002344b8ea256266efc9e4 +docfiles size=46 + RELOC/doc/latex/decimal/decimal.pdf details="Package documentation" +srccontainersize 6576 +srccontainerchecksum a880091295229345290acf605feb833489976ed3b661b403c8effaabd07c48730ac958a4b48dd48d429a3f031413c1392f4006b820f04e3dde6b2035a948747e +srcfiles size=5 + RELOC/source/latex/decimal/decimal.dtx + RELOC/source/latex/decimal/decimal.ins +runfiles size=1 + RELOC/tex/latex/decimal/decimal.sty +catalogue-ctan /macros/latex/contrib/decimal +catalogue-license lppl1 +catalogue-topics typesetting + +name decision-table +category Package +revision 57094 +shortdesc An easy way to create Decision Model and Notation decision tables +relocated 1 +longdesc The decision-table package allows for an easy way to generate +longdesc decision tables in the Decision Model and Notation (DMN) +longdesc format. This package ensures consistency in the tables (i.e. +longdesc fontsize), and is thus a better alternative to inserting tables +longdesc via images. The decision-table package adds the \dmntable +longdesc command, with which tables can be created. This command expands +longdesc into a tabular, so it can be used within a table or figure +longdesc environment. Furthermore, this allows labels and captions to be +longdesc added seamlessly. It is also possible to place multiple DMN +longdesc tables in one table/figure environment. The package relies on +longdesc nicematrix and l3keys2e. +containersize 1672 +containerchecksum 2e89be9bbbc6a6f0fef9f3eb3caa63a6f8c6b749df1057f712d5153a78d4b15542f1fb30d3d5f5078d99a1b45f4d4e92be44d7c631eb86e349e56b03dcb4c93b +doccontainersize 108752 +doccontainerchecksum cdfa48c2835b48f5b0f7d454a4255128613b0f3f9bd2d750b8107c7d8eef1a36aaca3ff6aecc6cfbb1572fd2dca109628d94b4b9419ca44d91cd1ddb12326cde +docfiles size=29 + RELOC/doc/latex/decision-table/README details="Readme" + RELOC/doc/latex/decision-table/decision-table.pdf details="Package documentation" +srccontainersize 4736 +srccontainerchecksum 12f617e0aeedfae0cfd2e2a1fadad55cbfaeb51abdd2faea829fb04c47edae811eacef4a7480cf46533c3a445eadf8a9090dc47aef0d656a3e204eb6f19a26bb +srcfiles size=5 + RELOC/source/latex/decision-table/decision-table.dtx + RELOC/source/latex/decision-table/decision-table.ins +runfiles size=1 + RELOC/tex/latex/decision-table/decision-table.sty +catalogue-contact-bugs https://gitlab.com/Vadevesi/dmn-tex/-/issues +catalogue-contact-repository https://gitlab.com/Vadevesi/dmn-tex/ +catalogue-ctan /macros/latex/contrib/decision-table +catalogue-license lppl1.3c +catalogue-topics diagram table planning expl3 +catalogue-version 0.0.3 + +name decorule +category Package +revision 55230 +shortdesc Decorative swelled rule using font character +relocated 1 +longdesc The package implements a decorative swelled rule using only a +longdesc symbol from a font installed with all distributions of TeX, so +longdesc it works independently, without the need to install any +longdesc additional software or fonts. This is the packaged version of +longdesc the macro which was originally published in the "Typographers' +longdesc Inn" column in TUGboat 31:1 (2010). +containersize 1476 +containerchecksum 783f09b3810616b14f04dace838ed1ed2faf32ea4df84dd0973df375928e16fb129ddf6429fc54560a317da0a9422630becc92543e1a1da76809c4962c423fc7 +doccontainersize 397084 +doccontainerchecksum 0c13e2ff2744ca2d0e32446a85cbec06d832ce1fc8af5a719f3c73ed59e1a85461d5f51d33fe5a51a89b209f80196ad52609e83adbf7cc41336f5bfae8c4389f +docfiles size=101 + RELOC/doc/latex/decorule/MANIFEST + RELOC/doc/latex/decorule/README.md details="Readme" + RELOC/doc/latex/decorule/VERSION + RELOC/doc/latex/decorule/decorule.pdf details="Package documentation" +srccontainersize 17264 +srccontainerchecksum 84ab7801ab7b0772ffa3520a42e132007e05152e206072fc1ebb43d8d9675ac4929ad1abb30d8111db7d825f05d37b038ecc923267c5095ed62a34cf3955dc20 +srcfiles size=15 + RELOC/source/latex/decorule/decorule.dtx + RELOC/source/latex/decorule/decorule.ins +runfiles size=1 + RELOC/tex/latex/decorule/decorule.sty +catalogue-also swrule +catalogue-ctan /macros/latex/contrib/decorule +catalogue-license lppl1.3 +catalogue-topics line-weight decoration +catalogue-version 0.7 + +name dehyph +category Package +revision 48599 +shortdesc German hyphenation patterns for traditional orthography +relocated 1 +longdesc The package provides older hyphenation patterns for the German +longdesc language. Please note that by default only pdfLaTeX uses these +longdesc patterns (mainly for backwards compatibility). The older +longdesc packages ghyphen and gnhyph are now bundled together with +longdesc dehyph, and are no longer be updated. Both XeLaTeX and LuaLaTeX +longdesc use the current German hyphenation patterns taken from +longdesc Hyphenation patterns in UTF-8, and using the Experimental +longdesc hyphenation patterns for the German language package it is +longdesc possible to make pdfLaTeX use the new German patterns as well. +containersize 46556 +containerchecksum 2dc4ee5b4389549c032f3a4d87740ab3c5e296a1ef109a6b673656a82ca4c317ca774f39f61417568b8ccbeac787c4058184fc893d53799bbf0b042ba5aca9a2 +runfiles size=57 + RELOC/tex/generic/dehyph/README + RELOC/tex/generic/dehyph/dehyphn.tex + RELOC/tex/generic/dehyph/dehypht.tex + RELOC/tex/generic/dehyph/dehyphtex.tex +catalogue-alias ghyphen gnhyph +catalogue-ctan /language/hyphenation/dehyph +catalogue-license lppl1 +catalogue-topics german hyphenation + +name dehyph-exptl +category Package +revision 58212 +shortdesc Experimental hyphenation patterns for the German language +relocated 1 +longdesc The package provides experimental hyphenation patterns for the +longdesc German language, covering both traditional and reformed +longdesc orthography. The patterns can be used with packages Babel and +longdesc hyphsubst from the Oberdiek bundle. Dieses Paket enthalt +longdesc experimentelle Trennmuster fur die deutsche Sprache. Die +longdesc Trennmuster decken das in Deutschland, Osterreich und der +longdesc Schweiz gebrauchliche Standarddeutsch in der traditionellen und +longdesc reformierten Rechtschreibung ab und konnen mit den Paketen +longdesc Babel und hyphsubst aus dem Oberdiek-Bundel verwendet werden. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=german-x-2021-02-26 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2021-02-26.tex file_patterns=hyph-de-1901.pat.txt file_exceptions= +execute AddHyphen name=ngerman-x-2021-02-26 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2021-02-26.tex file_patterns=hyph-de-1996.pat.txt file_exceptions= +containersize 129340 +containerchecksum ed2a3c4d91ecc125ecc2179594e66b5bbe66bb806c1b232ae1b71fdd0d29152a2d28e3dc6dbb2e1724650b8b8cb67e8c8bdf5b7506357207ba61c636768fb8c5 +doccontainersize 137796 +doccontainerchecksum e40955db986b94bb9bbbbf9daaf6a12d2898ae736741fb0a5626755b55908b056a2b4dbc1d87e9681201d7e45c99297393d6e1d2de17d135d8d74c732106897a +docfiles size=54 + RELOC/doc/generic/dehyph-exptl/CHANGES + RELOC/doc/generic/dehyph-exptl/INSTALL + RELOC/doc/generic/dehyph-exptl/LICENSE.data + RELOC/doc/generic/dehyph-exptl/LICENSE.documentation + RELOC/doc/generic/dehyph-exptl/README details="Readme" + RELOC/doc/generic/dehyph-exptl/dehyph-exptl.bib + RELOC/doc/generic/dehyph-exptl/dehyph-exptl.pdf details="Package documentation" language="de" + RELOC/doc/generic/dehyph-exptl/dehyph-exptl.tex +runfiles size=197 + RELOC/tex/generic/dehyph-exptl/dehyphn-x-2021-02-26.pat + RELOC/tex/generic/dehyph-exptl/dehyphn-x-2021-02-26.tex + RELOC/tex/generic/dehyph-exptl/dehypht-x-2021-02-26.pat + RELOC/tex/generic/dehyph-exptl/dehypht-x-2021-02-26.tex + RELOC/tex/generic/dehyph-exptl/dehyphts-x-2021-02-26.pat + RELOC/tex/generic/dehyph-exptl/dehyphts-x-2021-02-26.tex +catalogue-contact-home http://projekte.dante.de/Trennmuster/WebHome +catalogue-contact-repository https://repo.or.cz/w/wortliste.git +catalogue-contact-support mailto:trennmuster@dante.de +catalogue-ctan /language/hyphenation/dehyph-exptl +catalogue-license mit lppl +catalogue-topics hyphenation german +catalogue-version 0.7 + +name dejavu +category Package +revision 31771 +shortdesc LaTeX support for the DejaVu fonts +relocated 1 +longdesc The package contains LaTeX support for the DejaVu fonts, which +longdesc are derived from the Vera fonts but contain more characters and +longdesc styles. The fonts are included in the original TrueType format, +longdesc and in converted Type 1 format. The (currently) supported +longdesc encodings are: OT1, T1, IL2, TS1, T2*, X2, QX, and LGR. The +longdesc package doesn't (currently) support mathematics. More encodings +longdesc and/or features are expected. +execute addMap dejavu-type1.map +containersize 10725240 +containerchecksum a26a57bd02b14c6e67d328c2c00174730b819f7da37ac147ec7f34f37195b6aa17e3223ac4d03617f5239700b1dfa45ca1741eed7b4488d2e604f02ac34ef2a3 +doccontainersize 1085072 +doccontainerchecksum 7e3364a3e0863c63f2a66057780fa922cb53f4da2f81e42ce9e200d5a034854216f4d4b833756a6d4d6837385e48aa8d03f608846f2f95caa84a7ebffe3257b0 +docfiles size=656 + RELOC/doc/fonts/dejavu/AUTHORS + RELOC/doc/fonts/dejavu/BUGS + RELOC/doc/fonts/dejavu/CHANGELOG + RELOC/doc/fonts/dejavu/LICENSE + RELOC/doc/fonts/dejavu/NEWS + RELOC/doc/fonts/dejavu/README-font + RELOC/doc/fonts/dejavu/README.doc + RELOC/doc/fonts/dejavu/dejavu-sample.pdf details="Font samples" + RELOC/doc/fonts/dejavu/dejavu-sample.tex + RELOC/doc/fonts/dejavu/dejavu.pdf details="Package documentation" + RELOC/doc/fonts/dejavu/dejavu.tex + RELOC/doc/fonts/dejavu/extrakerns.zip + RELOC/doc/fonts/dejavu/langcover.txt + RELOC/doc/fonts/dejavu/manifest.txt + RELOC/doc/fonts/dejavu/status.txt + RELOC/doc/fonts/dejavu/unicover.txt +runfiles size=6222 + RELOC/fonts/afm/public/dejavu/DejaVuSans-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans-BoldOblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans-ExtraLight.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans-Oblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed-BoldOblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed-Oblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono-BoldOblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono-Oblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif-BoldItalic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif-Italic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed-BoldItalic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed-Italic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed.afm + RELOC/fonts/enc/dvips/dejavu/dejavumono_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_x2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_x2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_x2.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_x2.enc + RELOC/fonts/map/dvips/dejavu/dejavu-truetype.map + RELOC/fonts/map/dvips/dejavu/dejavu-type1.map + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-x2.tfm + RELOC/fonts/truetype/public/dejavu/DejaVuSans-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans-BoldOblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans-ExtraLight.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans-Oblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed-BoldOblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed-Oblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono-BoldOblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono-Oblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif-BoldItalic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif-Italic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed-BoldItalic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed-Italic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed.ttf + RELOC/fonts/type1/public/dejavu/DejaVuSans-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans-BoldOblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-BoldOblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans-ExtraLight.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-ExtraLight.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans-Oblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-Oblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-BoldOblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-BoldOblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Oblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Oblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-BoldOblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-BoldOblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Oblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Oblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif-BoldItalic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif-BoldItalic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Italic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Italic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-BoldItalic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-BoldItalic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Italic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Italic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed.pfm + RELOC/fonts/vf/public/dejavu/DejaVuSans-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-BoldOblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Oblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Oblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-BoldItalic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Italic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Italic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-tlf-ts1.vf + RELOC/tex/latex/dejavu/DejaVuSans.sty + RELOC/tex/latex/dejavu/DejaVuSansCondensed.sty + RELOC/tex/latex/dejavu/DejaVuSansMono.sty + RELOC/tex/latex/dejavu/DejaVuSerif.sty + RELOC/tex/latex/dejavu/DejaVuSerifCondensed.sty + RELOC/tex/latex/dejavu/IL2DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/dejavu.sty +catalogue-ctan /fonts/dejavu +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 + +name dejavu-otf +category Package +revision 45991 +shortdesc Support for the ttf and otf DejaVu fonts +relocated 1 +longdesc Package dejavu-otf supports the free ttf-fonts from the DejaVu +longdesc project which are available from GitHub or already part of your +longdesc system (Windows/Linux/...) and the OpenType version of the +longdesc TeXGyre Math, which is part of any TeX distribution.. Following +longdesc font files are supported: DejaVuSans-BoldOblique.ttf +longdesc DejaVuSans-Bold.ttf DejaVuSansCondensed-BoldOblique.ttf +longdesc DejaVuSansCondensed-Bold.ttf DejaVuSansCondensed-Oblique.ttf +longdesc DejaVuSansCondensed.ttf DejaVuSans-ExtraLight.ttf +longdesc DejaVuSansMono-BoldOblique.ttf DejaVuSansMono-Bold.ttf +longdesc DejaVuSansMono-Oblique.ttf DejaVuSansMono.ttf +longdesc DejaVuSans-Oblique.ttf DejaVuSans.ttf +longdesc DejaVuSerif-BoldItalic.ttf DejaVuSerif-Bold.ttf +longdesc DejaVuSerifCondensed-BoldItalic.ttf +longdesc DejaVuSerifCondensed-Bold.ttf DejaVuSerifCondensed-Italic.ttf +longdesc DejaVuSerifCondensed.ttf DejaVuSerif-Italic.ttf DejaVuSerif.ttf +longdesc texgyredejavu-math.otf +containersize 2036 +containerchecksum d0d32f3c9d53a1a61e6e717a6275f3fc934c0815fddc3b36fe2afbf7702e5128d4cf15e8cdfe8b02009a6fb7c203ea42b134eeeb080b9765ff99c4143f887744 +doccontainersize 334020 +doccontainerchecksum 212663371f747b03694327a40de3bec0be8efd5cda15c0cc343284f3a427890e8d16c4223098fc16a260b837a9d522c9cd35876a4c1004e09ee9ee29c05ec7b3 +docfiles size=89 + RELOC/doc/fonts/dejavu-otf/Changes + RELOC/doc/fonts/dejavu-otf/README.md details="Readme" + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.bib + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.fonts + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.tex +runfiles size=2 + RELOC/tex/latex/dejavu-otf/dejavu-otf.sty +catalogue-ctan /fonts/dejavu-otf +catalogue-license lppl1.3 +catalogue-topics font-absent font-otf font-ttf font-sans font-serif font-mono +catalogue-version 0.04 + +name delim +category Package +revision 23974 +shortdesc Simplify typesetting mathematical delimiters +relocated 1 +longdesc The package permits simpler control of delimiters without +longdesc excessive use of \big... commands (and the like). +containersize 1100 +containerchecksum c18dc230c5bac8db3d66f062402392761467ad18f48a65930a960c0772be30a7ed729a50657b12f533d72086563a67a98e8f5ce7afdc9947b52146e76e22b157 +doccontainersize 299600 +doccontainerchecksum c343842bcc03981c1814f5cffa2ba3eacc2e6abb5673ba700859406869a2398518e9abf02e159f4d92bf91383c3a6cdaa9f5720adaec81715fa30f4b8f36ff9d +docfiles size=74 + RELOC/doc/latex/delim/README details="Readme" + RELOC/doc/latex/delim/delim.pdf details="Package documentation" +srccontainersize 3548 +srccontainerchecksum 8ff42847f918ab8d65eca86ee8daadd14ee138f984e06e1c4d66704ab4b6c53c1271b23aeb33003f9a7489e22e29850711efce99459f10764150742854570034 +srcfiles size=4 + RELOC/source/latex/delim/delim.dtx + RELOC/source/latex/delim/delim.ins +runfiles size=1 + RELOC/tex/latex/delim/delim.sty +catalogue-also delimseasy +catalogue-ctan /macros/latex/contrib/delim +catalogue-license lppl1.2 +catalogue-topics maths +catalogue-version 1.0 + +name delimseasy +category Package +revision 39589 +shortdesc Delimiter commands that are easy to use and resize +relocated 1 +longdesc This package provides commands to give a consistent, +longdesc easy-to-remember, easy to edit way to control the size and +longdesc blackness of delimiters: append 1-4 "b"s to command for larger +longdesc sizes; prepend "B" for for boldface. These commands reduce the +longdesc likelihood of incomplete delimeter pairs and typically use +longdesc fewer characters than the LaTeX default. +containersize 4816 +containerchecksum 7f9b1d77e9b9bdc6e5c45ed3c38606fb0d65113f7303e03f591c1b84aa83748d72fb8ecde0cd0c7b19d1bc9fcb454834e156429fd9080660aec77ddfd7b53e42 +doccontainersize 233368 +doccontainerchecksum bc9c1ff757a9d98ff9b84993cedb62ee024d0f4aafee301db0d862be3d45c76d8d164d2d3099ae37d41017316282db1e7882330dd10de43a9539ba0b10e86b08 +docfiles size=61 + RELOC/doc/latex/delimseasy/README.txt details="Readme" + RELOC/doc/latex/delimseasy/delimseasyMan.pdf details="Package documentation" + RELOC/doc/latex/delimseasy/delimseasyMan.tex +runfiles size=7 + RELOC/tex/latex/delimseasy/delimseasy.sty +catalogue-also delim +catalogue-ctan /macros/latex/contrib/delimseasy +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 2.0 + +name delimset +category Package +revision 49544 +shortdesc Typeset and declare sets of delimiters with convenient size control +relocated 1 +longdesc delimset is a LaTeX2e package to typeset and declare sets of +longdesc delimiters in math mode whose size can be adjusted +longdesc conveniently. +containersize 2016 +containerchecksum 5c19bda2a87de91ac1d32981198ce7718d490184d4d65dade231b66c3f46621af91dbeb89bb79ba1370fd82a0527d01d0aa7cd9dddeea818e8c4b4380a7b63ed +doccontainersize 319324 +doccontainerchecksum 9e671fa601b878187b5b3ae1a47feffb6c451fd42f202f948a87b02f35385b47239947a3e91260e699c64c453df161d9ae734fa3a8e241b0e47056181fefc46c +docfiles size=83 + RELOC/doc/latex/delimset/README.txt details="Readme" + RELOC/doc/latex/delimset/delimset.pdf details="Package documentation" + RELOC/doc/latex/delimset/dlmssamp.tex +srccontainersize 11440 +srccontainerchecksum d5618af6db29684ddd58164c9f55fbee73417d6968550361d7277558de98e621e2d1233b593c87860ccd8f7beb66a3c2369518736e14c86472d77425d6499869 +srcfiles size=12 + RELOC/source/latex/delimset/delimset.dtx + RELOC/source/latex/delimset/delimset.ins +runfiles size=2 + RELOC/tex/latex/delimset/delimset.sty +catalogue-also delim delimseasy +catalogue-ctan /macros/latex/contrib/delimset +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.1 + +name delimtxt +category Package +revision 16549 +shortdesc Read and parse text tables +relocated 1 +longdesc This experimental package can read and parse text tables +longdesc delimited by user-defined tokens (e.g., tab). It can be used +longdesc for serial letters and the like, making it easier to export the +longdesc data file from MS-Excel/MS-Word +containersize 2040 +containerchecksum 25332ff7d2602047938630668c849829844fcbd622f911542bccd59d2eb1293e406cc79aca08ac3acaa98828b4a6fa4da98feb08fdf678ad3863c70cc2fc1817 +doccontainersize 44696 +doccontainerchecksum cd9363d8d44309c2ca51431bae067d87c790180eb884888144cd089cc9c14f83e1e7ea2389650d547e47d4575755a5b6b369e82b76cc19150b1dc973e99109fe +docfiles size=20 + RELOC/doc/latex/delimtxt/delimtxt.pdf details="Package documentation" + RELOC/doc/latex/delimtxt/resulta.dat + RELOC/doc/latex/delimtxt/resultb.dat + RELOC/doc/latex/delimtxt/resultc.dat + RELOC/doc/latex/delimtxt/test1.tex + RELOC/doc/latex/delimtxt/test2.tex + RELOC/doc/latex/delimtxt/test3.tex +srccontainersize 3764 +srccontainerchecksum 487557d866b99ec0fed6d9bf18c4bdaffa4ad6a8294cd2e9c681a4f65fbba051a97577b82e7170464daf4eb9f154e66478f46512331e1f4f41b48e61d65a86a3 +srcfiles size=4 + RELOC/source/latex/delimtxt/delimtxt.dtx + RELOC/source/latex/delimtxt/delimtxt.ins +runfiles size=2 + RELOC/tex/latex/delimtxt/delimtxt.sty +catalogue-ctan /macros/latex/exptl/delimtxt +catalogue-license lppl +catalogue-topics foreign-import + +name denisbdoc +category Package +revision 56664 +shortdesc A personal dirty package for documenting packages +relocated 1 +longdesc A personal dirty package for documenting packages. +containersize 15044 +containerchecksum 636537275629ba01fe78b5a189e94845898555715ddc879a3558539016e9cbc814ea74d6eed0cc31e42d8062e6ba6c6bb5c00064a14644c236a3c4f48f688e3f +doccontainersize 1184 +doccontainerchecksum 6e1715fe7ed2c3d0091688ffa4e0e2245a838063a896334727ea87bad566771fa93c66cd0580c3ce1980b217cdf5e6bfba36b77d10d19ea55afe4e8fd92db8be +docfiles size=3 + RELOC/doc/latex/denisbdoc/README.md details="Readme" + RELOC/doc/latex/denisbdoc/denisbdoc-chng.xdy + RELOC/doc/latex/denisbdoc/denisbdoc.xdy +srccontainersize 21392 +srccontainerchecksum 89abdd37bda49536437063229346ea70655211716ebcc0798a4df87d49df9a2fb38f201e0b80e8d3748a2d847ccc2ce320c29d71f9922d5f2932eb07de3c5645 +srcfiles size=21 + RELOC/source/latex/denisbdoc/denisbdoc.dtx +runfiles size=15 + RELOC/tex/latex/denisbdoc/denisbdoc.sty +catalogue-ctan /macros/latex/contrib/denisbdoc +catalogue-license lppl1.3c +catalogue-topics doc-supp +catalogue-version 0.9.1 + +name derivative +category Package +revision 55890 +shortdesc Nice and easy derivatives +relocated 1 +longdesc This package provides a set of commands \NewOdvVariant, +longdesc \NewPdvVariant etc. that can be used to define derivatives. +longdesc Each derivative comes with a great number of options that tweak +longdesc the derivative's format to your liking. The following types of +longdesc derivatives come readily defined: \odv Ordinary derivative, +longdesc \pdv Partial derivative, \fdv Functional derivative, \mdv +longdesc Material derivative, \adv Average rate of change, \jdv +longdesc Jacobian. +containersize 6972 +containerchecksum afb3a5e900dd77e4d262320485ef0526c362415cf68e2b0d199c388980211a8c21caef3789fdfe348f290563373823fad4e3881ca3bb11f0974a30fe49f6ecc3 +doccontainersize 198008 +doccontainerchecksum 800dbd742c60548ddab9d66cd97e142b389f81f3719ca34c6027d69ccae2b790480261eb984c1bf3d8775eaab29f607ebfa2eac6d778f36c999f083cf7ded323 +docfiles size=72 + RELOC/doc/latex/derivative/README.md details="Readme" + RELOC/doc/latex/derivative/derivative.pdf details="Package documentation" + RELOC/doc/latex/derivative/derivative.tex +runfiles size=11 + RELOC/tex/latex/derivative/derivative.sty +catalogue-also diffcoeff +catalogue-ctan /macros/latex/contrib/derivative +catalogue-license lppl1.3 +catalogue-topics maths expl3 +catalogue-version 0.98 + +name detex +category TLCore +revision 57972 +shortdesc Strip TeX from a source file +longdesc Detex is a program to remove TeX constructs from a text file. +longdesc It recognizes the \input command. The program assumes it is +longdesc dealing with LaTeX input if it sees the string \begin{document} +longdesc in the text. In this case, it also recognizes the \include and +longdesc \includeonly commands. The author now considers this program to +longdesc be "retired" and Piotr Kubowicz's OpenDetex as its successor. +depend detex.ARCH +containersize 592 +containerchecksum 869c42ec791b3a9dfc2c65b7081e52dabc4adcf8a95f1fb01362be7270ec9cf294bec7b41f9ce79a22d7708f08df03466fb3e1168ac4a4397580324dff3ad94f +doccontainersize 21848 +doccontainerchecksum 25abd181e5acf88a0984d31bb1d4d8ead50efd5c71720ce1903f54e2784ec5d1f185e5e89ff0a7efad6a35a0178efa22041e6be46c5da6b79c050f1e45e83e63 +docfiles size=8 + texmf-dist/doc/man/man1/detex.1 + texmf-dist/doc/man/man1/detex.man1.pdf +catalogue-contact-home http://www.cs.purdue.edu/homes/trinkle/detex/ +catalogue-license other-free +catalogue-topics plain-text obsolete + +name detex.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of detex +containersize 46364 +containerchecksum 8c85cd10e5addc94ffb8f1daec2b1b5057200b57ca3a13a6f7987cf3ef49caa384a14af764f44f102b95653a5f08380b6619637914908cdbb60601b199a47c2e +binfiles arch=aarch64-linux size=31 + bin/aarch64-linux/detex + +name detex.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of detex +containersize 49080 +containerchecksum bedabd34a838b2771c9b71a7afe9007e5e3d1e9a7be1426338ab4be55f03e146f6783ce5cf8e0c1018b9c69a0ee1912b4c1f36de3d6bf144b5b08feaaac68a2e +binfiles arch=amd64-freebsd size=30 + bin/amd64-freebsd/detex + +name detex.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of detex +containersize 43884 +containerchecksum 40595956bbe09fe274d7fdefa8d9e8cbb6d00bdc758df02a34c45f2b92fea69ed15e7b642cc73ac1c41594539af7d7d1ca3f22af82a7828e4febffed081e4021 +binfiles arch=amd64-netbsd size=34 + bin/amd64-netbsd/detex + +name detex.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of detex +containersize 40060 +containerchecksum 6f9ebfe006bb12dee0e1308507194f1c959ef18dced19b9976a84bcb9343628f78b14a0737a6e3c8a1127b80e9e46ec3f584076cf1744471aa65388c221dcc6a +binfiles arch=armhf-linux size=26 + bin/armhf-linux/detex + +name detex.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of detex +containersize 19200 +containerchecksum e77418d7761aaaf6ace076ffa9bbfeb26a0e62896c9f0815de5b35f65e4eb4cb59462c57bdd446bd719b171862dd3b28f923ce4401cd865fd861d86cad840be3 +binfiles arch=i386-cygwin size=14 + bin/i386-cygwin/detex.exe + +name detex.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of detex +containersize 43592 +containerchecksum b38fd3176848535d806eefb73f789e7864ebb04094ee8012c086662e14f8fdf3acd3729c7981fcc1ae9325131e9098013e6b3a4b1724c4936f63710e3e7c3dbd +binfiles arch=i386-freebsd size=27 + bin/i386-freebsd/detex + +name detex.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of detex +containersize 49936 +containerchecksum 47507a26e287552f0a3c03c8c6f99c9615375eb1f917d0a9772a648742761384efdba644e563926849d99f3494a9ee8a89f99798a1d69d8961e87531181c0944 +binfiles arch=i386-linux size=32 + bin/i386-linux/detex + +name detex.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of detex +containersize 40312 +containerchecksum c58ab5433f662db36f34a24ab652cd209deac87e8abc06ff6ee0f48620bdf1dd289004413409c3058a22a2f6be1938242a5c804e14446718b9b726de6a327169 +binfiles arch=i386-netbsd size=31 + bin/i386-netbsd/detex + +name detex.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of detex +containersize 47096 +containerchecksum 8dde6c88efc01b4d50c23ce36b076913c49fd39a68c0b7643123f443a2b88308f98d900c2f7d207dd0c03ed978f7597ef31616711bf9ad57d6df815cc0394edb +binfiles arch=i386-solaris size=29 + bin/i386-solaris/detex + +name detex.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of detex +containersize 85748 +containerchecksum 3bdd73753de44f8717b657ee2c027ed43a3a5af7875fcf3750f2fea74c1000c1df7147754866232af52dd602d5977ada96b4b544e9abc96a6bd083456922c6c7 +binfiles arch=universal-darwin size=75 + bin/universal-darwin/detex + +name detex.win32 +category TLCore +revision 58783 +shortdesc win32 files of detex +containersize 17368 +containerchecksum b7a19b33b3acddb8afda3587a767fd74d26e110fa0ab23dc5c1267f962e1e7dc866688c03668fb4a507601f7e73bd6a6b18e547b12658be8ea1374e9d7d26504 +binfiles arch=win32 size=10 + bin/win32/detex.exe + +name detex.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of detex +containersize 21396 +containerchecksum b1a7db15eae23d56d60a4f29b1d1da99d061e76a9adbc0c67554293618b468ca21521de30f0e4ec090f1f4313342cbb239e36a1d183ed1d84e0393d927f07323 +binfiles arch=x86_64-cygwin size=14 + bin/x86_64-cygwin/detex.exe + +name detex.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of detex +containersize 45432 +containerchecksum 4f11997155ad618db08280ff375b9258fb27bd2bf24ff222f34341107ca4ee29c2287524b02b429170649378203965cd8728bc02f3784fa968a6aecac6333131 +binfiles arch=x86_64-darwinlegacy size=29 + bin/x86_64-darwinlegacy/detex + +name detex.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of detex +containersize 49268 +containerchecksum 18989c7de0bb3142311bbe45fd21731569e2b1fa7097ac9db25df99687310419030b3ba6fe5faddf75ab26b8c396084f32881cc966dcbad04d220ce272f9fbf0 +binfiles arch=x86_64-linux size=30 + bin/x86_64-linux/detex + +name detex.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of detex +containersize 50660 +containerchecksum 0a81f6f785ae58be454bbc2892927c50d740dd227357427932c32dd062d9857e46e39b7369a0a145f65c568aa64989a0e7a11d6d566e0806d3b4120616593bac +binfiles arch=x86_64-linuxmusl size=31 + bin/x86_64-linuxmusl/detex + +name detex.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of detex +containersize 52764 +containerchecksum acca010d3e0c8fb7588a23b000a6bbfcb42abaea54a097e4f93fdfc1509d3105d2ceef70123dd44c61bf18e338ce64a07c991b6e4c7355473ba2b97539808d38 +binfiles arch=x86_64-solaris size=34 + bin/x86_64-solaris/detex + +name dhua +category Package +revision 24035 +shortdesc German abbreviations using thin space +relocated 1 +longdesc The package provides commands for those abbreviations of German +longdesc phrases for which the use of thin space is recommended. Setup +longdesc commands \newdhua and \newtwopartdhua are provided, as well as +longdesc commands for single cases (such as \zB for 'z. B.', saving the +longdesc user from typing such as 'z.\,B.'). To typeset the +longdesc documentation, the niceverb package, version 0.44, or later, is +longdesc required. Das Paket `dhua' stellt Befehle fur sog. +longdesc mehrgliedrige Abkurzungen bereit, fur die schmale Leerzeichen +longdesc (Festabstande) empfohlen werden (Duden, Wikipedia). In die +longdesc englische Paketdokumentation sind deutsche Erlauterungen +longdesc eingestreut. +containersize 4708 +containerchecksum c6e6187bdfc80cec3ce092a4dd3605055f3ad67ff49777bf0948af128c8b48118247ed9ca6f5feb1a69d32719f81968d8259794082a28277796eb6beccf9cedb +doccontainersize 323640 +doccontainerchecksum a2f9f61ed61c5476d5f70fdfe59a451e7b3cafd3412336c5767b53b0157416149ee9ae924834f8a05beaedabb9e4a8dd3e4dbcb2f17b733af113c0a8085e363c +docfiles size=90 + RELOC/doc/latex/dhua/README details="Readme" + RELOC/doc/latex/dhua/README.pdf + RELOC/doc/latex/dhua/SrcFILEs.txt + RELOC/doc/latex/dhua/dhua.pdf details="Package documentation" +srccontainersize 3096 +srccontainerchecksum ff72f267dcbd05830664f9ebc328fa1b6b80eb579627c5ae78965b47b8b8605ddf33c6b6a9b343774b2944d985afc9a9816924f23e8e7ec9fbc807f00bddb143 +srcfiles size=4 + RELOC/source/latex/dhua/README.tex + RELOC/source/latex/dhua/dhua.tex + RELOC/source/latex/dhua/srcfiles.tex +runfiles size=4 + RELOC/tex/latex/dhua/dhua.cfg + 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-license lppl1.3 +catalogue-topics shortcut german +catalogue-version 0.11 + +name diabetes-logbook +category Package +revision 54810 +shortdesc A logbook for people with type one diabetes +relocated 1 +longdesc Initally a logbook for me, a person with type one diabetes +longdesc mellitus, this evolved over time into a TeX project, making it +longdesc prettier and/or easier to use. I've made it simple to use, +longdesc while not forgoing the document's beauty or the speed of input. +longdesc The logbook, with slight commenting out and editing, could be +longdesc used as a journal by anybody, although the template and +longdesc graphing functionality are set up for people using insulin +longdesc injections and blood glucose teststrips, as well as +longdesc counting/estimating carbs, protein, and fat. Note: The names of +longdesc the package's files are not constructed using the long +longdesc "diabetes-logbook", but the acronym "dmlb" (for "diabetes +longdesc mellitus log book"). +containersize 7032 +containerchecksum 427912b3eeac373ba82f99b30a6ccf360b285a119248e9dd2aa175cfb7f2538327331d9e8eab7ff62cfd987466352c08016313f51b8651c4b42484fb6f089bda +doccontainersize 280396 +doccontainerchecksum 3a8c1c45b24d23ff236ca2d8bba6ff6d9ad055a688b5621a660cefbdff4e1407d71d96420cfa39dbb896f8035e6d5a2bf3f33fc2e80074527c9a41fcab72f976 +docfiles size=118 + RELOC/doc/latex/diabetes-logbook/LICENSE + RELOC/doc/latex/diabetes-logbook/QQ/20-04.tex + RELOC/doc/latex/diabetes-logbook/QQ/TEST/99-12.tex + RELOC/doc/latex/diabetes-logbook/README.md details="Readme" + RELOC/doc/latex/diabetes-logbook/dmlb-graphme.tex + RELOC/doc/latex/diabetes-logbook/dmlb-template.pdf details="Example of use (1)" + RELOC/doc/latex/diabetes-logbook/dmlb-template.tex + RELOC/doc/latex/diabetes-logbook/dmlb-templateGRAY.pdf details="Example of use (2)" + RELOC/doc/latex/diabetes-logbook/dmlbrow.sublime-snippet +runfiles size=6 + RELOC/tex/latex/diabetes-logbook/dmlb.sty +catalogue-contact-repository https://github.com/communistkiro/dmlb +catalogue-ctan /macros/latex/contrib/diabetes-logbook +catalogue-license other-free +catalogue-topics doc-templ data-disp + +name diadia +category Package +revision 37656 +shortdesc Package to keep a diabetes diary +longdesc The diadia package allows you to keep a diabetes diary. +longdesc Usually, this means keeping record of certain medical values +longdesc like blood sugar, blood pressure, pulse or weight. It might +longdesc also include other medical, pharmaceutical or nutritional data +longdesc (HbA1c, insulin doses, carbohydrate units). The diadia package +longdesc supports all of this plus more - simply by adding more columns +longdesc to the data file! It is able to evaluate the data file and +longdesc typesets formatted tables and derived plots. Furthermore, it +longdesc supports medication charts and info boxes. Supported languages: +longdesc English, German. Feel free to provide other translation files! +depend diadia.ARCH +containersize 6364 +containerchecksum 55a246d4e3ab86d6300210d830ce464a935bb83c9ffd29b5387f0a56f5c82d4c5a71cf107f78ffe0cde07f17897e2f949acf1fe70da9da7c7992b330a07b1c68 +doccontainersize 452484 +doccontainerchecksum e7487bb47fbe8aee714304150c00866780782a9ad32bf6ccbb02799aeb251345ce1cf042e8b4d7b4011083a3be2fe3b16b78f25a4a4206d173ac1384716592ab +docfiles size=143 + texmf-dist/doc/latex/diadia/201502.dat + texmf-dist/doc/latex/diadia/201503.dat + texmf-dist/doc/latex/diadia/201504.dat + texmf-dist/doc/latex/diadia/README details="Readme" + texmf-dist/doc/latex/diadia/ddbsl1avg.dat + texmf-dist/doc/latex/diadia/diadia-example.pdf details="Example of use" + texmf-dist/doc/latex/diadia/diadia-example.tex + texmf-dist/doc/latex/diadia/diadia.dat + texmf-dist/doc/latex/diadia/diadia.dtx + texmf-dist/doc/latex/diadia/diadia.pdf details="PDF file" + texmf-dist/doc/latex/diadia/hba1c.dat + texmf-dist/doc/latex/diadia/makefile + texmf-dist/doc/latex/diadia/manifest.txt +runfiles size=10 + texmf-dist/scripts/diadia/diadia.lua + texmf-dist/tex/latex/diadia/diadia-english.trsl + texmf-dist/tex/latex/diadia/diadia-fallback.trsl + texmf-dist/tex/latex/diadia/diadia-german.trsl + texmf-dist/tex/latex/diadia/diadia.cfg + texmf-dist/tex/latex/diadia/diadia.sty +catalogue-contact-repository https://bitbucket.org/kleberj/diadia/ +catalogue-ctan /macros/latex/contrib/diadia +catalogue-license lppl +catalogue-topics data-disp +catalogue-version 1.1 + +name diadia.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of diadia +containersize 340 +containerchecksum 7ca7e37befad77795a78ed9491bc8e2250dab52dcb61bf45559809884a80b249cb380f6343dfcf0d68b42fc9dcb214afc3cec84bd98700622387edf9586f7da0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/diadia + +name diadia.amd64-freebsd +category Package +revision 37645 +shortdesc amd64-freebsd files of diadia +containersize 340 +containerchecksum 9e7e6cf2faf4071dce95107463506d944c37aafcab534ea73aa4e7c390d75dace6bb815329ed408c7fa49325e05778fb997309b81207c91b6f448d9bc5468384 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/diadia + +name diadia.amd64-netbsd +category Package +revision 37645 +shortdesc amd64-netbsd files of diadia +containersize 340 +containerchecksum ad32f62ba00d18f1423b22fb3d097336684b380cff59465d89d7662d8fa123e51bf0dda9b914ef5371a19ea09211e96203f21c004ab1c04912652c005d8f3fce +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/diadia + +name diadia.armhf-linux +category Package +revision 37645 +shortdesc armhf-linux files of diadia +containersize 336 +containerchecksum 99917459e2b88adf62d351b023085da2998f9ed42e1e4b3bc6747b79c043ba9300a6cda8e3c68f4a5c6b6d198b2b3df0d990dcca162e996b52c45e67ddb24b4a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/diadia + +name diadia.i386-cygwin +category Package +revision 37645 +shortdesc i386-cygwin files of diadia +containersize 336 +containerchecksum c2dc12c140591b988047199e0d1ee3c0afb64b65b94741465f4915d1a14fffae5d87264255bebe6fa11d9c65d5b7fa01438aef1a0e4badcd7c7709c42023b8ad +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/diadia + +name diadia.i386-freebsd +category Package +revision 37645 +shortdesc i386-freebsd files of diadia +containersize 340 +containerchecksum 1b6415f0333f9c21e421f2eee66e774540276e7a6d9fe9f972b21889382c3c419af0c49500a7e867a1efae58c6d91022021b5f2aa78b8a192985a474adddf032 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/diadia + +name diadia.i386-linux +category Package +revision 37645 +shortdesc i386-linux files of diadia +containersize 340 +containerchecksum ee202753f8d73110ed0aaa333b3fa20d21023def204e052042e6494b4697bb261f59702da9ac9ec28a0c9a6732317de0d2b200c36e3406148281c9e2e3185f1c +binfiles arch=i386-linux size=1 + bin/i386-linux/diadia + +name diadia.i386-netbsd +category Package +revision 37645 +shortdesc i386-netbsd files of diadia +containersize 340 +containerchecksum 41a3e529f869751bef819ed78c59f2847cda0b60dec36b416a214f478b038b885a24094ff7e644689b189f7d8521ff70aefc617475e72c2a2d9b0f444cdb87ee +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/diadia + +name diadia.i386-solaris +category Package +revision 37645 +shortdesc i386-solaris files of diadia +containersize 340 +containerchecksum 3e6a9ca11a89df8fa5a7f119b2f67eb6f961e18bb2594531c34090a948a611dcdf1dc876f39b6134576933b3093ac3d3b0d6c0ce7da571b278e9bb54ec6dc619 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/diadia + +name diadia.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of diadia +containersize 340 +containerchecksum 7a83303f5758e79dfc5cbfc9a0a77075a8779688670cf1f186bbc19e4787f9205cf653982365a9e861da71435352ef89e7ed0b234a848d72848c4b05aeaeb696 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/diadia + +name diadia.win32 +category Package +revision 37645 +shortdesc win32 files of diadia +containersize 680 +containerchecksum 6b7bf08087ff7450879d0bb7373cfb4753dcedf9f2c6af0c046ae29dacbbb13973260c585cd6721e007510b6f37c6a9b0921451aaf146ca6ceae18f2cebd9ecc +binfiles arch=win32 size=1 + bin/win32/diadia.exe + +name diadia.x86_64-cygwin +category Package +revision 37645 +shortdesc x86_64-cygwin files of diadia +containersize 340 +containerchecksum 3c59703da4a2b7901558c23687d7ce24c13fecea08ab0f17d9b1e2095ab8022b06f4c75cfc6d3aea0625c87d9d56ba577765721532ccaa7a0067c0d2481650ea +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/diadia + +name diadia.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of diadia +containersize 348 +containerchecksum 45ab9db5153bbdc32aad99c07ef6c414bd78b7538bce74280b1430696828308a39214f80d4ff8b88955cb2b8a4888c0236d23becea6b9a3b83f0311f259c5644 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/diadia + +name diadia.x86_64-linux +category Package +revision 37645 +shortdesc x86_64-linux files of diadia +containersize 340 +containerchecksum a0b06858ace3358a1869cc83306e745e3b9b1f6a44918f83217046441f6b98fc6ee12e6323bb791c3c06dbcb5a3b6c87826f9d97b0a71507831b69e0fc601ac2 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/diadia + +name diadia.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of diadia +containersize 344 +containerchecksum f8073c1331fecc8718fb45889ab4f6c77b19e29843f84a4cceafcce19bc75e6de215efb4d25f4e9c7f121bec4970d29851d6e38df4276d161ac3943037eba00d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/diadia + +name diadia.x86_64-solaris +category Package +revision 37645 +shortdesc x86_64-solaris files of diadia +containersize 340 +containerchecksum 56c8abc55ec61f223f4fe089602ec6f09d71fe0a89fa9749737203fcfbed6ac81e0f19905c73c7ba5266e7244bd22f4752b5b75705926bceffa3dc9fcba0be45 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/diadia + +name diagbox +category Package +revision 54080 +shortdesc Table heads with diagonal lines +relocated 1 +longdesc The package's principal command, \diagbox, takes two arguments +longdesc (texts for the slash-separated parts of the box), and an +longdesc optional argument with which the direction the slash will go, +longdesc the box dimensions, etc., may be controlled. The package also +longdesc provides \slashbox and \backslashbox commands for compatibility +longdesc with the slashbox package, which it supersedes. diagbox depends +longdesc on e-TeX as well as the packages array, calc, fp, keyval, and +longdesc pict2e. +containersize 3660 +containerchecksum 34d2530343877efebe9ee53027253ddce0e59df3cd70900bf0f040905f34a8ad9d41328aa3c6ecbb622f7731f3bc9c4fce289caa58e2c1db46a6ec1bafefe6ca +doccontainersize 238496 +doccontainerchecksum 96310db4878e417f09e6202e5ca86f29524af5c1292ad8fed2563f1872e094be1249c4753eac5129c68492a5fe9ea87857783e2ca9af1ab77dfd1ca9b3309b2f +docfiles size=61 + RELOC/doc/latex/diagbox/README details="Readme" + RELOC/doc/latex/diagbox/diagbox.pdf details="Package documentation (English and Chinese)" +srccontainersize 12320 +srccontainerchecksum 65ac012205c309099ca2f1a23f6446abb434a1a9c66a36d75d15021eead74feeb70c21024386fc11b223386100404b35a0ec3571d24aeec13b5513e60b11b3c4 +srcfiles size=13 + RELOC/source/latex/diagbox/diagbox.dtx + RELOC/source/latex/diagbox/diagbox.ins +runfiles size=4 + RELOC/tex/latex/diagbox/diagbox.sty +catalogue-contact-repository https://github.com/leo-liu/tex-pkg +catalogue-ctan /macros/latex/contrib/diagbox +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 2.4 + +name diagmac2 +category Package +revision 15878 +shortdesc Diagram macros, using pict2e +relocated 1 +longdesc This is a development of the long-established diagmac package, +longdesc using pict2e so that the restrictions on line direction are +longdesc removed. +containersize 11188 +containerchecksum 553d3610ef7bba5bf669040cfe6b51b26718b9f04835413d43c3f8a018a8a37274b445bbdbaa4a512aaefc8327f6a2c7abd8d754b3d8cbd4687c9c518265ad09 +doccontainersize 208604 +doccontainerchecksum 37952cbaa4c20180a2d09455c748b245927245c40093510a79fa0461e5836197d8bc05bdc3cf5c7bafa72c54cb503fa9722d7a8ff9a0630ad1b5e8382b4029d2 +docfiles size=75 + RELOC/doc/latex/diagmac2/README details="Readme" + RELOC/doc/latex/diagmac2/doc/diagmac2.pdf details="Package documentation" + RELOC/doc/latex/diagmac2/doc/diagmac2.tex + RELOC/doc/latex/diagmac2/doc/diagmactest.pdf details="Example output" + RELOC/doc/latex/diagmac2/doc/diagmactest.tex +runfiles size=11 + RELOC/tex/latex/diagmac2/diagmac2.sty +catalogue-ctan /macros/latex/contrib/diagmac2 +catalogue-license lppl +catalogue-topics diagram-comm graphics-in-tex +catalogue-version 2.1 + +name diagnose +category Package +revision 19387 +shortdesc A diagnostic tool for a TeX installation +relocated 1 +longdesc Provides macros to assist evaluation of the capabilities of a +longdesc TeX installation (i.e., what extensions it supports). An +longdesc example document that examines the installation is available. +containersize 1008 +containerchecksum 91fd8eb4b7d896f27c15c2b3b2a0a9bc839bb736a1fa053d47896c6b989729c3dc3a644ad59f6b3bd4164c150034f6ede5d52b680fb1c8cea6838dc70713f654 +doccontainersize 66784 +doccontainerchecksum f3e7152e656ee4c5f6ac28205b1dd5e9c0cf19c3d9400e2c40c8d8e9fecbcbc01cb1f7a36534849b6ba26f222f9547e3d669114a7d8923645528b7150cd10de4 +docfiles size=29 + RELOC/doc/latex/diagnose/INSTALL + RELOC/doc/latex/diagnose/README details="Package Readme" + RELOC/doc/latex/diagnose/diagnose.pdf details="Package documentation" + RELOC/doc/latex/diagnose/diagnose.tex + RELOC/doc/latex/diagnose/mls-diag.tex +runfiles size=1 + RELOC/tex/latex/diagnose/diagnose.sty +catalogue-ctan /macros/latex/contrib/diagnose +catalogue-license gpl +catalogue-topics install-mgmt +catalogue-version 0.2 + +name dialogl +category Package +revision 28946 +shortdesc Macros for constructing interactive LaTeX scripts +relocated 1 +longdesc Gathers together a bunch of code and examples about how to +longdesc write macros to carry on a dialogue with the user. +containersize 21920 +containerchecksum 68fb25b66499e289c7615fda04fec859d2a3a6105ecb3bc69ecd0e5af8f87027e74170495fa587f21767028d9f423cf04e3d11768ea0581a7474e9a66d62882a +doccontainersize 721964 +doccontainerchecksum cc1fa10345fa089cd86ea4b0a638334c55c6a57cac3a9c549469cd52cff27b8eb3d349ce14d49de14fbb65f41d1887bf98e9c69081688703d8eef06e6324f684 +docfiles size=192 + RELOC/doc/latex/dialogl/Makefile + RELOC/doc/latex/dialogl/README details="Readme" + RELOC/doc/latex/dialogl/cnvunits.tex + RELOC/doc/latex/dialogl/codialog.pdf details="Tugboat article, overhauled" + RELOC/doc/latex/dialogl/default.los + RELOC/doc/latex/dialogl/dia-driv.pdf details="Package documentation" + RELOC/doc/latex/dialogl/dia-driv.tex + RELOC/doc/latex/dialogl/dialogl-doc.sty + RELOC/doc/latex/dialogl/diatest.tex + RELOC/doc/latex/dialogl/fontmenu.lg + RELOC/doc/latex/dialogl/fontmenu.tex + RELOC/doc/latex/dialogl/manifest.txt +srccontainersize 59740 +srccontainerchecksum 0a39faa751021dbfe7638f139e50689201f93d4490339af70b4ddd42a77cec252cffe7a18a5ddce43ce8dde7f9645dd088fbe9c6cbdc4efefa65280f70c54d23 +srcfiles size=65 + RELOC/source/latex/dialogl/dialogl.dtx + RELOC/source/latex/dialogl/dialogl.ins + RELOC/source/latex/dialogl/grabhedr.dtx + RELOC/source/latex/dialogl/listout.dtx + RELOC/source/latex/dialogl/menus.dtx +runfiles size=29 + RELOC/tex/latex/dialogl/dialog.sty + RELOC/tex/latex/dialogl/grabhedr.sty + RELOC/tex/latex/dialogl/listout.tex + RELOC/tex/latex/dialogl/menus.sty +catalogue-ctan /macros/latex/contrib/dialogl +catalogue-license lppl +catalogue-topics macro-supp + +name dice +category Package +revision 28501 +shortdesc A font for die faces +relocated 1 +longdesc A Metafont font that can produce die faces in 2D or with +longdesc various 3D effects. +containersize 3256 +containerchecksum 7ec762fccc174a13f2a84ee43aa49319548aa970f017cd17bca73add506ca270a6ac621f51ff96d47a4f5eadeafc89ecc44f1c99b31a2e76722e648519e1fd69 +doccontainersize 1236 +doccontainerchecksum 9c09c47b70e28e4c8ccffd4c75f8cac7942767279d0e01e543538ddf0ee70fe60cd15d1e3ddce27b56e1a9f865d5ad9b1794a875e41d131d763c11a3e0fb96ef +docfiles size=1 + RELOC/doc/fonts/dice/dice3d.tex +runfiles size=6 + RELOC/fonts/source/public/dice/dice3d.mf + RELOC/fonts/tfm/public/dice/dice3d.tfm +catalogue-also epsdice +catalogue-ctan /fonts/dice +catalogue-license lppl +catalogue-topics graphics-use font font-mf + +name dichokey +category Package +revision 17192 +shortdesc Construct dichotomous identification keys +relocated 1 +longdesc The package can be used to construct dichotomous identification +longdesc keys (used especially in biology for species identification), +longdesc taking care of numbering and indentation of successive key +longdesc steps automatically. An example file is provided, which +longdesc demonstrates usage. +containersize 1956 +containerchecksum 8ed4f0010546af68390f93642cab4495226387fd7461383e32fd3dfa72867050d0da05ba90cb768c6893afeac9bfe55d23b7299ef4a76432e8d11252012b47a4 +doccontainersize 210124 +doccontainerchecksum 16a75d20463a0b0b508c2d50aa67a77999cab525e003704ab34663d1f0212c39432caab0e4df1c69b540be014bc86901031c7c8f647ff18ceda77dcef7239233 +docfiles size=57 + RELOC/doc/latex/dichokey/dichokey.pdf details="Package documentation" + RELOC/doc/latex/dichokey/dichokey.tex + RELOC/doc/latex/dichokey/rhodocyb.pdf details="Example of use" + RELOC/doc/latex/dichokey/rhodocyb.tex +runfiles size=2 + RELOC/tex/latex/dichokey/dichokey.sty +catalogue-also identkey +catalogue-ctan /macros/latex/contrib/dichokey +catalogue-license pd +catalogue-topics biology + +name dickimaw +category Package +revision 32925 +shortdesc Books and tutorials from the "Dickimaw LaTeX Series" +relocated 1 +longdesc The package provides some of the books and tutorials that form +longdesc part of the "Dickimaw LaTeX Series". Only the A4 PDF of each +longdesc book is detailed here. Other formats, such as HTML or screen +longdesc optimized PDF, are available from the package home page. Books +longdesc included are: "LaTeX for Complete Novices": an introductory +longdesc guide to LaTeX. "Using LaTeX to Write a PhD Thesis": a +longdesc follow-on from "LaTeX for Complete Novices" geared towards +longdesc students who want to use LaTeX to write their PhD thesis. +longdesc "Creating a LaTeX minimal example": describes how to create a +longdesc minimal example, which can be used as a debugging aid when you +longdesc encounter errors in your LaTeX documents. +containersize 768 +containerchecksum 8e478160699ca5dd9c52ea7e6b0a7be491d0af44b3022c22797b02b9e6ba6ef67ce9dc35649d9a2ebb9b123e3fbcc02c0602271bd8049a12c4520a32a15d4ef3 +doccontainersize 6684412 +doccontainerchecksum 5ebe8605d1a4ebeb11896919c39aa736220e9ca247912b5655dbcadf03bfa45b4cdfe44ee6555bf8d5ecdaf63b0d2527d3d58ee6d7056a194a6a42f88ab0aa41 +docfiles size=2142 + RELOC/doc/latex/dickimaw/ERRATA + RELOC/doc/latex/dickimaw/README details="Readme" + RELOC/doc/latex/dickimaw/dickimaw-minexample.pdf details="Creating a LaTeX minimal example" + RELOC/doc/latex/dickimaw/dickimaw-novices.pdf details="LaTeX for Complete Novices" + RELOC/doc/latex/dickimaw/dickimaw-thesis.pdf details="Using LaTeX to Write a PhD Thesis" + RELOC/doc/latex/dickimaw/src/fdl.tex + RELOC/doc/latex/dickimaw/src/minexample/dickimaw-minexample.tex + RELOC/doc/latex/dickimaw/src/minexample/minexample.sty + RELOC/doc/latex/dickimaw/src/novices/dickimaw-novices.tex + RELOC/doc/latex/dickimaw/src/novices/glsentries.tex + RELOC/doc/latex/dickimaw/src/novices/keywords.tex + RELOC/doc/latex/dickimaw/src/novices/novices-a4paper.sty + RELOC/doc/latex/dickimaw/src/novices/novices-index.ist + RELOC/doc/latex/dickimaw/src/novices/novices.bib + RELOC/doc/latex/dickimaw/src/novices/novices.cls + RELOC/doc/latex/dickimaw/src/novices/pictures/acrobat.png + RELOC/doc/latex/dickimaw/src/novices/pictures/backtic.png + RELOC/doc/latex/dickimaw/src/novices/pictures/circle.pdf + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom5.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom6.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom7.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dinglist.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/draftimage.png + RELOC/doc/latex/dickimaw/src/novices/pictures/entersymbol.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/errormessage.png + RELOC/doc/latex/dickimaw/src/novices/pictures/exsamp.png + RELOC/doc/latex/dickimaw/src/novices/pictures/incgraph.png + RELOC/doc/latex/dickimaw/src/novices/pictures/incgraph2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/letterbox.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/maths.png + RELOC/doc/latex/dickimaw/src/novices/pictures/miktex1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/newdoc-1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/newdoc-2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/notepad1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/notepad2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/rectangle.pdf + RELOC/doc/latex/dickimaw/src/novices/pictures/reflbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/resizbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/rotbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/scalbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/shapes.pdf + RELOC/doc/latex/dickimaw/src/novices/pictures/tds.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal-texdoc.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal10.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal11.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal5.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal6.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal7.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal8.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal9.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-latexmk.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-preferences.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks5-annote.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks5.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks6.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks7.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks8.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks9.png + RELOC/doc/latex/dickimaw/src/novices/pictures/yap1.png + RELOC/doc/latex/dickimaw/src/novices/term-defs/argument.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/auxiliary.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/cls.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/command.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/declaration.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/dvi.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/environment.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/fragile.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/group.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/hyphenation.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/intersentencespacing.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/introduction.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/length.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/mandatory.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/optional.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/output.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/perl.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/preamble.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/robust.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/short.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/source.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/terminal.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/tex.tex + RELOC/doc/latex/dickimaw/src/thesis/dickimaw-thesis.tex + RELOC/doc/latex/dickimaw/src/thesis/dickimawthesis.cls + RELOC/doc/latex/dickimaw/src/thesis/glsentries.tex + RELOC/doc/latex/dickimaw/src/thesis/imgsource/titlepage.tex + RELOC/doc/latex/dickimaw/src/thesis/listing-samples/helloworld.c + RELOC/doc/latex/dickimaw/src/thesis/listing-samples/sqrt.c + RELOC/doc/latex/dickimaw/src/thesis/pictures/arara-installer.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/bibertool.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/doibutton.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/generatekey.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-dataprop-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-dataprop.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-pref-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-pref.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport1-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport1.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport2-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport2.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport3-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport3.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref1-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref1.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref10-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref10.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref11.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref12-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref12.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref2.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref3-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref3.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref4-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref4.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref5-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref5.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref6-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref6.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref7-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref7.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref8-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref8.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref9-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref9.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/pagestyle.tex + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-addbutton.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-arara.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-arara2.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-bibtex.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-latexmk.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-latexmkbibtex.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-makeglossaries.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-pdflatex.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-pref.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-texindy.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/titlepage.pdf + RELOC/doc/latex/dickimaw/src/thesis/thesis-a4paper.sty + RELOC/doc/latex/dickimaw/src/thesis/thesis-index.ist + RELOC/doc/latex/dickimaw/src/thesis/thesis.bib +catalogue-contact-home http://www.dickimaw-books.com/latex/ +catalogue-ctan /info/dickimaw +catalogue-license fdl +catalogue-topics tut-latex doc-debug + +name dictsym +category Package +revision 20031 +shortdesc DictSym font and macro package +relocated 1 +longdesc This directory contains the DictSym Type1 font designed by +longdesc Georg Verweyen and all files required to use it with LaTeX on +longdesc the Unix or PC platforms. The font provides a number of symbols +longdesc commonly used in dictionaries. The accompanying macro package +longdesc makes the symbols accessible as LaTeX commands. +execute addMap dictsym.map +containersize 31568 +containerchecksum 6195ea914b422d5bb1c098e3a8f103d91aaa94520bdff1f5a04d7c952f84f16b1aa96287dac4a309d8d72eabac65a5dbaca275abc211d9290266cfb8f5fcce3a +doccontainersize 19784 +doccontainerchecksum 935e67c0be73969b572146ccfc92ca42c15b3b5cf2cdfb596cf3ecb9368463b793d530221d2a7e90df18edd54b7938dd27d1ee00757b580c543ea59ddce5d277 +docfiles size=9 + RELOC/doc/fonts/dictsym/README details="Readme" + RELOC/doc/fonts/dictsym/dictsym.pdf details="Package documentation" + RELOC/doc/fonts/dictsym/dictsym.tex +runfiles size=20 + RELOC/fonts/afm/public/dictsym/dictsym.afm + RELOC/fonts/map/dvips/dictsym/dictsym.map + RELOC/fonts/tfm/public/dictsym/dictsym.tfm + RELOC/fonts/type1/public/dictsym/dictsym.pfb + RELOC/fonts/type1/public/dictsym/dictsym.pfm + RELOC/tex/latex/dictsym/dictsym.sty +catalogue-ctan /fonts/dictsym +catalogue-license lppl +catalogue-topics font font-symbol font-type1 linguistic + +name diffcoeff +category Package +revision 53244 +shortdesc Write differential coefficients easily and consistently +relocated 1 +longdesc diffcoeff.sty allows the easy and consistent writing of +longdesc ordinary, partial and other derivatives of arbitrary (algebraic +longdesc or numeric) order. For mixed partial derivatives, the total +longdesc order of differentiation is calculated by the package. Optional +longdesc arguments allow specification of points of evaluation (ordinary +longdesc derivatives), or variables held constant (partial derivatives), +longdesc and the placement of the differentiand (numerator or appended). +longdesc The package is built on xtemplate, allowing systematic +longdesc fine-tuning of the display and generation and use of variant +longdesc forms (like derivatives built from D, \Delta or \delta). A +longdesc command for differentials ensures the dx used in e.g. integrals +longdesc is consistent with the form used in derivatives. The package +longdesc requires the LaTeX3 bundles l3kernel and l3packages. +containersize 6040 +containerchecksum 4f8a1dd23b34cf7d6f213a6bf6699286c7e0df73a8a81ce59d6bd2d500f108f60293fac6f1c938c73afd5d4b1b20f64f2ccfe74f5031b0dda8cba65eabe7178a +doccontainersize 620496 +doccontainerchecksum b45ae815b92e542d0158da9a75978f97b2ca14056484a776dbd236da551dabe025fd85366fe2ca230b095119bb47fc3048fbb8f1cc4943f7fde9aa4820f0cb36 +docfiles size=188 + RELOC/doc/latex/diffcoeff/README.txt details="Readme" + RELOC/doc/latex/diffcoeff/diffcoeff.pdf details="Package documentation" + RELOC/doc/latex/diffcoeff/diffcoeff.tex +runfiles size=7 + RELOC/tex/latex/diffcoeff/diffcoeff-doc.def + RELOC/tex/latex/diffcoeff/diffcoeff.sty +catalogue-also derivative +catalogue-ctan /macros/latex/contrib/diffcoeff +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 3.2 + +name digiconfigs +category Package +revision 15878 +shortdesc Writing "configurations" +relocated 1 +longdesc In Stochastic Geometry and Digital Image Analysis some problems +longdesc can be solved in terms of so-called "configurations". A +longdesc configuration is basically a square matrix of \circ and \bullet +longdesc symbols. This package provides a convenient and compact +longdesc mechanism for displaying these configurations. +containersize 2096 +containerchecksum a1d5cf0e93aa2722087a491d49c87c1b6c1dc863a39807f28dca198d4c52d8add42706f992ee91b6a42fdbf379293a2aaf3a21199094526c545f41002e8992d3 +doccontainersize 120640 +doccontainerchecksum 95e948491a51321671b15aab55dddd7c6b8bad78bc67bcc25db0970dc478d1bba898fc2efe44537a18d46f3fcc73bd2af600c4a74af4982e8de8a5fc0345a134 +docfiles size=34 + RELOC/doc/latex/digiconfigs/README details="Readme" + RELOC/doc/latex/digiconfigs/digiconfigs.pdf details="Package documentation" + RELOC/doc/latex/digiconfigs/digiconfigs.tex +runfiles size=2 + RELOC/tex/latex/digiconfigs/digiconfigs.sty +catalogue-ctan /macros/latex/contrib/digiconfigs +catalogue-license lppl +catalogue-topics diagram +catalogue-version 0.5 + +name dijkstra +category Package +revision 55661 +shortdesc Dijkstra algorithm for LaTeX +relocated 1 +longdesc This small package uses the Dijkstra algorithm for weighted +longdesc graphs,directed or not: the search table of the shortest path +longdesc can be displayed, the minimum distance between two vertices and +longdesc the corresponding path are stored in macros. This packages +longdesc depends on simplekv. +containersize 4928 +containerchecksum c44121120afd9bc53e747ee3a5e11f6d72ab140f266ebecab5c57bff4fe8e10ac07e140df4b9a21482d61d3d40ed5cda3e7511e83d08214c832ce73bca00f199 +doccontainersize 374620 +doccontainerchecksum b258ff0230ac4b21a944602ae3382bda2ab79f162bd832a2b18e724101de4475218aaca09afbc23a7309c15a2897e02380743369ee681186ef577fb60745f493 +docfiles size=96 + RELOC/doc/latex/dijkstra/README details="Readme" + RELOC/doc/latex/dijkstra/dijkstra-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/dijkstra/dijkstra-fr.tex +runfiles size=5 + RELOC/tex/latex/dijkstra/dijkstra.sty +catalogue-ctan /macros/latex/contrib/dijkstra +catalogue-license lppl1.3c +catalogue-topics maths automata +catalogue-version 0.12 + +name dimnum +category Package +revision 58774 +shortdesc Commands for dimensionless numbers +relocated 1 +longdesc This package simplifies the calling of Dimensionless Numbers in +longdesc math or text mode. +containersize 2508 +containerchecksum 636543ee5f2e027ec242d59ab8af28e8aa6f35d3e91480e4812a72df3c1636fdfeed2cf472c79b29fae5ed65224da4ca4a0bf5040e2a4360b73fc5f4cec85bb0 +doccontainersize 207688 +doccontainerchecksum a00eb3157b84a22afeb66c6f918fb434bb2a183afba110340b93cdb7dc33152f4b9472da134f999f36057b7ddc221a2a78bbaac5fa0509e452c4d8d6e96ebcf3 +docfiles size=57 + RELOC/doc/latex/dimnum/README.md details="Readme" + RELOC/doc/latex/dimnum/changelog + RELOC/doc/latex/dimnum/dimnum.pdf details="Package documentation" +srccontainersize 5224 +srccontainerchecksum 2d729252a866edd8039c2d09b8ebc92c28aad4b0863777460c69075d7c4e1065ad515937e13f2de5b0578a89c4693cc508dccf002823e5591a6960c6d2752456 +srcfiles size=5 + RELOC/source/latex/dimnum/dimnum.dtx + RELOC/source/latex/dimnum/dimnum.ins +runfiles size=2 + RELOC/tex/latex/dimnum/dimnum.sty +catalogue-contact-repository https://github.com/CptRolinho/dimnum +catalogue-ctan /macros/latex/contrib/dimnum +catalogue-license lppl1.3 +catalogue-topics numbers abbrev physics chemistry +catalogue-version 1.0.1 + +name din1505 +category Package +revision 19441 +shortdesc Bibliography styles for German texts +relocated 1 +longdesc A set of bibliography styles that conformt to DIN 1505, and +longdesc match the original BibTeX standard set (plain, unsrt, alpha and +longdesc abbrv), together with a style natdin to work with natbib. +containersize 16420 +containerchecksum cb9b819eb69ce4870dd36da844b1d24e4f678ad05f43eabbe861e9de5b53258e45e70530ca76c0aa9fcf54232e8f33dc55623f94c1d9e5fc3dfc48481093c3cc +doccontainersize 2380 +doccontainerchecksum 4479f5ea1e1ade4bc7951d5722e397a688e75293da55ec57dd0f3d32add2bd551844da81336be0a77cc783e4c9af958be46501c4b78adbbf8a5463770b5cbb2c +docfiles size=4 + RELOC/doc/latex/din1505/README.TEXLIVE + RELOC/doc/latex/din1505/leitbild.bib + RELOC/doc/latex/din1505/natbib.cfg +runfiles size=67 + RELOC/bibtex/bst/din1505/abbrvdin.bst + RELOC/bibtex/bst/din1505/alphadin.bst + RELOC/bibtex/bst/din1505/natdin.bst + RELOC/bibtex/bst/din1505/plaindin.bst + RELOC/bibtex/bst/din1505/unsrtdin.bst +catalogue-also dinat +catalogue-ctan /biblio/bibtex/contrib/german/din1505 +catalogue-license other-free +catalogue-topics bibtex-sty + +name dinat +category Package +revision 15878 +shortdesc Bibliography style for German texts +relocated 1 +longdesc Bibliography style files intended for texts in german. They +longdesc draw up bibliographies in accordance with the german DIN 1505, +longdesc parts 2 and 3. +containersize 8828 +containerchecksum 0b22f43a5088f669820674b46af72e66f3f2714a36052bc7d18c334b202d0060fd07b1a608626adf183314d2380fad672baf58307ed83aaa888231e75c63b1c8 +doccontainersize 11468 +doccontainerchecksum f4491ab35e2ae8003faa8220e88c0abd2d970cc6b985d2baf993effd2ebe94a964ae8ece6db70a55f922abc83c91cce5f598ac2e722b5eb7e1584aee436e4393 +docfiles size=9 + RELOC/doc/bibtex/dinat/dinat-index.html details="Package documentation" language="de" + RELOC/doc/bibtex/dinat/history.html +runfiles size=11 + RELOC/bibtex/bst/dinat/dinat.bst +catalogue-also din1505 +catalogue-ctan /biblio/bibtex/contrib/german/dinat +catalogue-license pd +catalogue-topics bibtex-sty +catalogue-version 2.5 + +name dinbrief +category Package +revision 15878 +shortdesc German letter DIN style +relocated 1 +longdesc Implements a document layout for writing letters according to +longdesc the rules of DIN (Deutsches Institut fur Normung, German +longdesc standardisation institute). A style file for LaTeX 2.09 (with +longdesc limited support of the features) is part of the package. Since +longdesc the letter layout is based on a German standard, the user guide +longdesc is written in German, but most macros have English names from +longdesc which the user can recognize what they are used for. In +longdesc addition there are example files showing how letters may be +longdesc created with the package. A graphical interface for use of the +longdesc dinbrief is provided in the dinbrief-GUI bundle. +containersize 12616 +containerchecksum 0c2679265417acb042f81300895be7dc7d6b8d8f0bfa2ff8853b9c1adbb6bae78598c7eb4b7c2c91a9f95959ff7a7945f846e1f262f923d741e6fc77458be9f0 +doccontainersize 436584 +doccontainerchecksum 5182bf0761a484e89331ced44d05f82da097cb7be010333ad3eea1b987119af3f3e2a3cd8ac2c4b2b6149a09a5789325edee49205fdfe52d2960c12edacad0af +docfiles size=151 + RELOC/doc/latex/dinbrief/brfbody.tex + RELOC/doc/latex/dinbrief/brfkopf.tex + RELOC/doc/latex/dinbrief/dbold.tex + RELOC/doc/latex/dinbrief/dinbrief.pdf details="User Guide and Implementation" + RELOC/doc/latex/dinbrief/dinbrief.tex + RELOC/doc/latex/dinbrief/dintab.tex + RELOC/doc/latex/dinbrief/example.tex + RELOC/doc/latex/dinbrief/liesmich details="Package Readme" language="de" + RELOC/doc/latex/dinbrief/readme details="Package Readme" language="en" + RELOC/doc/latex/dinbrief/test10.tex + RELOC/doc/latex/dinbrief/test11.tex + RELOC/doc/latex/dinbrief/test12.tex + RELOC/doc/latex/dinbrief/testnorm.tex +srccontainersize 56276 +srccontainerchecksum 0f81c2cea6799ccd39039b3fc9c45ab38b2041d0eef6efad245cae9fdfc17a7f967c24509b241fd19870170b4028ebed40db25884556bdf74e0ce2fef1a6e1ec +srcfiles size=63 + RELOC/source/latex/dinbrief/dinbrief.drv + RELOC/source/latex/dinbrief/dinbrief.dtx + RELOC/source/latex/dinbrief/dinbrief.ins +runfiles size=17 + RELOC/tex/latex/dinbrief/dinbrief.cfg + RELOC/tex/latex/dinbrief/dinbrief.cls + RELOC/tex/latex/dinbrief/dinbrief.sty +catalogue-also akletter envlab formlett g-brief +catalogue-ctan /macros/latex/contrib/dinbrief +catalogue-license lppl +catalogue-topics std-conform letter class + +name dingbat +category Package +revision 27918 +shortdesc Two dingbat symbol fonts +relocated 1 +longdesc The fonts (ark10 and dingbat) are specified in Metafont; +longdesc support macros are provided for use in LaTeX. An Adobe Type 1 +longdesc version of the fonts is available in the niceframe fonts +longdesc bundle. +containersize 9248 +containerchecksum d6bdfc62eff8816e03eaea41ffbabf2d3af7194edbb2f9073c8d8b3d333c75f0b587a74556b916efb40afe41c88a8029f0dd764d7dc5894aa50e66e06fccb77a +doccontainersize 105752 +doccontainerchecksum 993ef5169759d86641e2a3185064f94df858d81d9b7ba4b0516b22abc51eab887b5d02ca487ad85b007e7ee3117563a257d80b803a361ea1d32857921e794b9f +docfiles size=34 + RELOC/doc/fonts/dingbat/README details="Readme" + RELOC/doc/fonts/dingbat/dingbat.pdf details="Package details including symbol table" + RELOC/doc/fonts/dingbat/dingbat.tex +srccontainersize 3772 +srccontainerchecksum 01e935a99ff83496cd1e5c9e297d316f879fa8e54808c33a2daa54c78e1afc5048d3fabbf93450d15d6fed09eb59389348da266c751782cf017f383a97214d2a +srcfiles size=4 + RELOC/source/latex/dingbat/dingbat.dtx + RELOC/source/latex/dingbat/dingbat.ins +runfiles size=14 + RELOC/fonts/source/public/dingbat/ark10.mf + RELOC/fonts/source/public/dingbat/dingbat.mf + RELOC/fonts/tfm/public/dingbat/ark10.tfm + RELOC/fonts/tfm/public/dingbat/dingbat.tfm + RELOC/tex/latex/dingbat/dingbat.sty + RELOC/tex/latex/dingbat/uark.fd + RELOC/tex/latex/dingbat/udingbat.fd +catalogue-ctan /fonts/dingbat +catalogue-license lppl +catalogue-topics font font-mf font-symbol +catalogue-version 1.0 + +name directory +category Package +revision 15878 +shortdesc An address book using BibTeX +relocated 1 +longdesc A package for LaTeX and BibTeX that facilitates the +longdesc construction, maintenance and exploitation of an address +longdesc book-like database. +containersize 11760 +containerchecksum c07947f06fb08da461391cf6101a7a2e55875179c5d19b41007b0d11ff1881623e353b813dcca1da1f09e55beb80bf412f85ea6c9f7e3dd6e52a875770a5ffdd +doccontainersize 167348 +doccontainerchecksum 24bf3fe447363c20e4ace4fb326c329a244aaeaafbf6f596ec91a3975e7cba86a2d711f9a5f10c2a70d72d74bc08dd2540e5139b4c4b525103e867a9d8e62bf9 +docfiles size=56 + RELOC/doc/latex/directory/README details="Package Readme" + RELOC/doc/latex/directory/directory.pdf details="Package documentation" + RELOC/doc/latex/directory/directory.tex +runfiles size=33 + RELOC/bibtex/bib/directory/business.bib + RELOC/bibtex/bib/directory/family.bib + RELOC/bibtex/bst/directory/address-html.bst + RELOC/bibtex/bst/directory/address-ldif.bst + RELOC/bibtex/bst/directory/address-vcard.bst + RELOC/bibtex/bst/directory/address.bst + RELOC/bibtex/bst/directory/birthday.bst + RELOC/bibtex/bst/directory/email-html.bst + RELOC/bibtex/bst/directory/email.bst + RELOC/bibtex/bst/directory/letter.bst + RELOC/bibtex/bst/directory/phone.bst + RELOC/tex/latex/directory/directory.sty +catalogue-contact-home http://geuz.org/directory +catalogue-ctan /biblio/bibtex/contrib/directory +catalogue-license lppl +catalogue-topics addr-list +catalogue-version 1.20 + +name dirtree +category Package +revision 42428 +shortdesc Display trees in the style of windows explorer +relocated 1 +longdesc This package is designed to emulate the way windows explorer +longdesc displays directory and file trees, with the root at top left, +longdesc and each level of subtree displaying one step in to the right. +longdesc The macros work equally well with Plain TeX and with LaTeX. +containersize 2484 +containerchecksum 5faecc2a6d79ae79929481c283b01e69df482267635957c5eb11c264d924ce299021d95baaf8cf6f9cb10e57f5fe14820c6b3506021b4d0213494bdeff5746a2 +doccontainersize 100148 +doccontainerchecksum 9edfb6fbcf4278c2b24599b58e10f64918d901bdd19dc0e9e8c8bd77756f2f3ba5dc13e31fefd2bd5f1467a0fb0dc0e765fe4e0515781103bdb1b81f687def7b +docfiles size=37 + RELOC/doc/generic/dirtree/README details="Readme" + RELOC/doc/generic/dirtree/dirtree.pdf details="Package documentation" +srccontainersize 7780 +srccontainerchecksum 4939918ace772a76142674410f9a1e91c698e02c113517385814346399cc94e031384905dc2719d717ac1dc65ff04d1d5a7049408ec55e20b4c0000f4b8a7049 +srcfiles size=8 + RELOC/source/generic/dirtree/dirtree.dtx + RELOC/source/generic/dirtree/dirtree.ins +runfiles size=3 + RELOC/tex/generic/dirtree/dirtree.sty + RELOC/tex/generic/dirtree/dirtree.tex +catalogue-ctan /macros/generic/dirtree +catalogue-license lppl +catalogue-topics tree +catalogue-version 0.32 + +name dirtytalk +category Package +revision 20520 +shortdesc A package to typeset quotations easier +relocated 1 +longdesc The package provides a macro to typeset quotations, using the +longdesc command \say{stuff}. The quotation mark glyphs are inserted by +longdesc the macro; nested quotations are detected. +containersize 1168 +containerchecksum d5cf28f17a68cd064a290769aff11e656debe87ff0c04e61d4dd4fe87d285daab6dab9516b80b33b03680d50c420a4f3a9858ed5d2d3d5c96fa7fbf9989d29d6 +doccontainersize 393132 +doccontainerchecksum 8cdbdbfca4bdc58a560703b6406c98334ea0b5d9920cbc98ea0fdb7b56c9f1d48844167201829cef83fa84f0e21530baf2fcf4a3f8f8b5e44c5e792864ebf94f +docfiles size=102 + RELOC/doc/latex/dirtytalk/README details="Readme" + RELOC/doc/latex/dirtytalk/dirtytalk.pdf details="Package documentation" +srccontainersize 3564 +srccontainerchecksum 448c9b5765cb054981e306b795f7747e6e5a9219f00a4698d6f5ee36ebc56c80a1adc857212b3baa1a065b9a8f585f9938e2d20d8f6d30f8d17aff9fc80b11c4 +srcfiles size=4 + RELOC/source/latex/dirtytalk/dirtytalk.dtx + RELOC/source/latex/dirtytalk/dirtytalk.ins +runfiles size=1 + RELOC/tex/latex/dirtytalk/dirtytalk.sty +catalogue-ctan /macros/latex/contrib/dirtytalk +catalogue-license pd +catalogue-topics quote-marks +catalogue-version 1.0 + +name disser +category Package +revision 43417 +shortdesc Class and templates for typesetting dissertations in Russian +relocated 1 +longdesc Disser comprises a document class and set of templates for +longdesc typesetting dissertations in Russian. One of its primary +longdesc advantages is a simplicity of format specification for +longdesc titlepage, headers and elements of automatically generated +longdesc lists (table of contents, list of figures, etc). Bibliography +longdesc styles, that conform to the requirements of the Russian +longdesc standard GOST R 7.0.11-2011, are provided. +containersize 13032 +containerchecksum 98c497bd8d422cacf639cb38ff3a489b5fcda3f92cb5a734287fc930666867eb0e9e6f6014ad42df527d3999eb5a87da28d7178b47cc53eb44a338567f952ca4 +doccontainersize 41680 +doccontainerchecksum ed0c04c0afccd7f9f68bb8f65a6497b9cbfb2bbcb5333852da7b790083e71ceec8348f6893f1e0f16bef7e4b5ca0b9d1a58ca46898dc58a02f0324a62971b916 +docfiles size=197 + RELOC/doc/latex/disser/ChangeLog + RELOC/doc/latex/disser/Makefile + RELOC/doc/latex/disser/README-ru.md details="Readme (Russian)" language="ru" + RELOC/doc/latex/disser/README.md details="Readme (English)" language="en" + RELOC/doc/latex/disser/include/latex.fig.mk + RELOC/doc/latex/disser/include/latex.fig.nmk.cmd + RELOC/doc/latex/disser/include/latex.mk + RELOC/doc/latex/disser/include/latex.nmk.cmd + RELOC/doc/latex/disser/manual.tex + RELOC/doc/latex/disser/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/Makefile + RELOC/doc/latex/disser/templates-utf8/bachelor/1.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/Makefile + RELOC/doc/latex/disser/templates-utf8/bachelor/a.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/concl.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/bachelor/fig/fig.eps + RELOC/doc/latex/disser/templates-utf8/bachelor/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/bachelor/intro.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/bachelor/thesis.bib + RELOC/doc/latex/disser/templates-utf8/bachelor/thesis.tex + RELOC/doc/latex/disser/templates-utf8/candidate/1.tex + RELOC/doc/latex/disser/templates-utf8/candidate/Makefile + RELOC/doc/latex/disser/templates-utf8/candidate/a.tex + RELOC/doc/latex/disser/templates-utf8/candidate/autoref.tex + RELOC/doc/latex/disser/templates-utf8/candidate/common.tex + RELOC/doc/latex/disser/templates-utf8/candidate/concl.tex + RELOC/doc/latex/disser/templates-utf8/candidate/dict.tex + RELOC/doc/latex/disser/templates-utf8/candidate/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/candidate/fig/facsimile.eps + RELOC/doc/latex/disser/templates-utf8/candidate/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/candidate/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates-utf8/candidate/intro.tex + RELOC/doc/latex/disser/templates-utf8/candidate/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/candidate/review.tex + RELOC/doc/latex/disser/templates-utf8/candidate/thesis.bib + RELOC/doc/latex/disser/templates-utf8/candidate/thesis.tex + RELOC/doc/latex/disser/templates-utf8/doctor/1.tex + RELOC/doc/latex/disser/templates-utf8/doctor/Makefile + RELOC/doc/latex/disser/templates-utf8/doctor/a.tex + RELOC/doc/latex/disser/templates-utf8/doctor/autoref.tex + RELOC/doc/latex/disser/templates-utf8/doctor/common.tex + RELOC/doc/latex/disser/templates-utf8/doctor/concl.tex + RELOC/doc/latex/disser/templates-utf8/doctor/dict.tex + RELOC/doc/latex/disser/templates-utf8/doctor/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/doctor/fig/facsimile.eps + RELOC/doc/latex/disser/templates-utf8/doctor/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/doctor/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates-utf8/doctor/intro.tex + RELOC/doc/latex/disser/templates-utf8/doctor/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/doctor/review.tex + RELOC/doc/latex/disser/templates-utf8/doctor/thesis.bib + RELOC/doc/latex/disser/templates-utf8/doctor/thesis.tex + RELOC/doc/latex/disser/templates-utf8/master/1.tex + RELOC/doc/latex/disser/templates-utf8/master/Makefile + RELOC/doc/latex/disser/templates-utf8/master/a.tex + RELOC/doc/latex/disser/templates-utf8/master/concl.tex + RELOC/doc/latex/disser/templates-utf8/master/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/master/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/master/intro.tex + RELOC/doc/latex/disser/templates-utf8/master/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/master/thesis.bib + RELOC/doc/latex/disser/templates-utf8/master/thesis.tex + RELOC/doc/latex/disser/templates-utf8/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/specialist/1.tex + RELOC/doc/latex/disser/templates-utf8/specialist/Makefile + RELOC/doc/latex/disser/templates-utf8/specialist/a.tex + RELOC/doc/latex/disser/templates-utf8/specialist/concl.tex + RELOC/doc/latex/disser/templates-utf8/specialist/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/specialist/fig/fig.eps + RELOC/doc/latex/disser/templates-utf8/specialist/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/specialist/intro.tex + RELOC/doc/latex/disser/templates-utf8/specialist/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/specialist/thesis.bib + RELOC/doc/latex/disser/templates-utf8/specialist/thesis.tex + RELOC/doc/latex/disser/templates/Makefile + RELOC/doc/latex/disser/templates/bachelor/1.tex + RELOC/doc/latex/disser/templates/bachelor/Makefile + RELOC/doc/latex/disser/templates/bachelor/a.tex + RELOC/doc/latex/disser/templates/bachelor/concl.tex + RELOC/doc/latex/disser/templates/bachelor/fig/Makefile + RELOC/doc/latex/disser/templates/bachelor/fig/fig.eps + RELOC/doc/latex/disser/templates/bachelor/fig/nomake.cmd + RELOC/doc/latex/disser/templates/bachelor/intro.tex + RELOC/doc/latex/disser/templates/bachelor/nomake.cmd + RELOC/doc/latex/disser/templates/bachelor/thesis.bib + RELOC/doc/latex/disser/templates/bachelor/thesis.tex + RELOC/doc/latex/disser/templates/candidate/1.tex + RELOC/doc/latex/disser/templates/candidate/Makefile + RELOC/doc/latex/disser/templates/candidate/a.tex + RELOC/doc/latex/disser/templates/candidate/autoref.tex + RELOC/doc/latex/disser/templates/candidate/common.tex + RELOC/doc/latex/disser/templates/candidate/concl.tex + RELOC/doc/latex/disser/templates/candidate/dict.tex + RELOC/doc/latex/disser/templates/candidate/fig/Makefile + RELOC/doc/latex/disser/templates/candidate/fig/facsimile.eps + RELOC/doc/latex/disser/templates/candidate/fig/nomake.cmd + RELOC/doc/latex/disser/templates/candidate/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates/candidate/intro.tex + RELOC/doc/latex/disser/templates/candidate/nomake.cmd + RELOC/doc/latex/disser/templates/candidate/review.tex + RELOC/doc/latex/disser/templates/candidate/thesis.bib + RELOC/doc/latex/disser/templates/candidate/thesis.tex + RELOC/doc/latex/disser/templates/doctor/1.tex + RELOC/doc/latex/disser/templates/doctor/Makefile + RELOC/doc/latex/disser/templates/doctor/a.tex + RELOC/doc/latex/disser/templates/doctor/autoref.tex + RELOC/doc/latex/disser/templates/doctor/common.tex + RELOC/doc/latex/disser/templates/doctor/concl.tex + RELOC/doc/latex/disser/templates/doctor/dict.tex + RELOC/doc/latex/disser/templates/doctor/fig/Makefile + RELOC/doc/latex/disser/templates/doctor/fig/facsimile.eps + RELOC/doc/latex/disser/templates/doctor/fig/nomake.cmd + RELOC/doc/latex/disser/templates/doctor/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates/doctor/intro.tex + RELOC/doc/latex/disser/templates/doctor/nomake.cmd + RELOC/doc/latex/disser/templates/doctor/review.tex + RELOC/doc/latex/disser/templates/doctor/thesis.bib + RELOC/doc/latex/disser/templates/doctor/thesis.tex + RELOC/doc/latex/disser/templates/master/1.tex + RELOC/doc/latex/disser/templates/master/Makefile + RELOC/doc/latex/disser/templates/master/a.tex + RELOC/doc/latex/disser/templates/master/concl.tex + RELOC/doc/latex/disser/templates/master/fig/Makefile + RELOC/doc/latex/disser/templates/master/fig/nomake.cmd + RELOC/doc/latex/disser/templates/master/intro.tex + RELOC/doc/latex/disser/templates/master/nomake.cmd + RELOC/doc/latex/disser/templates/master/thesis.bib + RELOC/doc/latex/disser/templates/master/thesis.tex + RELOC/doc/latex/disser/templates/nomake.cmd + RELOC/doc/latex/disser/templates/specialist/1.tex + RELOC/doc/latex/disser/templates/specialist/Makefile + RELOC/doc/latex/disser/templates/specialist/a.tex + RELOC/doc/latex/disser/templates/specialist/concl.tex + RELOC/doc/latex/disser/templates/specialist/fig/Makefile + RELOC/doc/latex/disser/templates/specialist/fig/fig.eps + RELOC/doc/latex/disser/templates/specialist/fig/nomake.cmd + RELOC/doc/latex/disser/templates/specialist/intro.tex + RELOC/doc/latex/disser/templates/specialist/nomake.cmd + RELOC/doc/latex/disser/templates/specialist/thesis.bib + RELOC/doc/latex/disser/templates/specialist/thesis.tex +srccontainersize 25344 +srccontainerchecksum 9a9770eea5ab44b2265cb191bd113be4e98038a0ba8f3c92ffb837791cf59447c82caf63d50af6bace698a3b5b8a2bc25f427add6cefb436a6377df4816524b2 +srcfiles size=46 + RELOC/source/latex/disser/autoref.dtx + RELOC/source/latex/disser/bachelor.dtx + RELOC/source/latex/disser/candidate.dtx + RELOC/source/latex/disser/chapter.dtx + RELOC/source/latex/disser/counters.dtx + RELOC/source/latex/disser/custom.dtx + RELOC/source/latex/disser/disser.dtx + RELOC/source/latex/disser/disser.ins + RELOC/source/latex/disser/doctor.dtx + RELOC/source/latex/disser/env.dtx + RELOC/source/latex/disser/floats.dtx + RELOC/source/latex/disser/footnote.dtx + RELOC/source/latex/disser/gost732.dtx + RELOC/source/latex/disser/lists.dtx + RELOC/source/latex/disser/master.dtx + RELOC/source/latex/disser/page.dtx + RELOC/source/latex/disser/part.dtx + RELOC/source/latex/disser/sections.dtx + RELOC/source/latex/disser/specialist.dtx + RELOC/source/latex/disser/titledefs.dtx + RELOC/source/latex/disser/titlepage.dtx + RELOC/source/latex/disser/toc.dtx +runfiles size=21 + RELOC/makeindex/disser/dtx.ist + RELOC/tex/latex/disser/autoref.rtx + RELOC/tex/latex/disser/bachelor.rtx + RELOC/tex/latex/disser/candidate.rtx + RELOC/tex/latex/disser/disser.cls + RELOC/tex/latex/disser/doctor.rtx + RELOC/tex/latex/disser/gost732.cls + RELOC/tex/latex/disser/master.rtx + RELOC/tex/latex/disser/specialist.rtx + RELOC/tex/latex/disser/titledefs.rtx +catalogue-ctan /macros/latex/contrib/disser +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.5.0 + +name ditaa +category Package +revision 48932 +shortdesc Use ditaa diagrams within LaTeX documents +relocated 1 +longdesc With this package ditaa (DIagrams Through Ascii Art) diagrams +longdesc can be embedded directly into LaTeX files. +containersize 1184 +containerchecksum 1aa2fab8150212ae8dbda9d0138a4c396f47256f93582ed38d9449f9440daba9e07dc0be397c49981e2d1813b7e41d2002fb7ff914382606f417f2738a8d2735 +doccontainersize 105808 +doccontainerchecksum 345d6d7d3f21d2dc728b93e2cbfeb4fc1f589797e852604809b1ff3e7bca53414d684571faf8245c740a50205e7d8787afd5304beb89efd3545a389ec4a74331 +docfiles size=34 + RELOC/doc/latex/ditaa/README details="Readme" + RELOC/doc/latex/ditaa/ditaa.pdf details="Package documentation" + RELOC/doc/latex/ditaa/ditaa.tex + RELOC/doc/latex/ditaa/example.tex + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample.ditaa + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample.png + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample2.ditaa + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample2.png +runfiles size=1 + RELOC/tex/latex/ditaa/ditaa.sty +catalogue-contact-announce https://github.com/dakusui/latex-ditaa/wiki/Announcements +catalogue-contact-bugs https://github.com/dakusui/latex-ditaa/issues +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-license lppl +catalogue-topics diagram +catalogue-version 0.9 + +name dithesis +category Package +revision 34295 +shortdesc A class for undergraduate theses at the University of Athens +relocated 1 +longdesc The class conforms to the requirements of the Department of +longdesc Informatics and Telecommunications at the University of Athens +longdesc regarding the preparation of undergraduate theses, as of Sep 1, +longdesc 2011. The class is designed for use with XeLaTeX; by default +longdesc (on a Windows platform), the font Arial is used, but provision +longdesc is made for use under Linux (with a different sans-serif font). +containersize 5580 +containerchecksum b11165408ccd30427390e9f409e8f561122d1a2dbe821ce90687df9feb2faef692d8ccd75fd8372b975a06e3f11bca0ba6e873d59b30aabfa95015ca35e557a8 +doccontainersize 184556 +doccontainerchecksum 25058b262f803fbbf3c41fa62ae8983ade351fc7bb65be7d886a4300390f836ef5d1240e59571839b407afa2ddb363e6c31e76e36c160ed3fe0c6d0e0ef71fbf +docfiles size=78 + RELOC/doc/latex/dithesis/README details="Readme" + RELOC/doc/latex/dithesis/athena.jpg + RELOC/doc/latex/dithesis/sample.pdf details="Package sample, serving as documentation" + RELOC/doc/latex/dithesis/sample.tex + RELOC/doc/latex/dithesis/sampleNoArial.pdf + RELOC/doc/latex/dithesis/sampleNoArial.tex +runfiles size=5 + RELOC/tex/latex/dithesis/dithesis.cls +catalogue-ctan /macros/latex/contrib/dithesis +catalogue-license lppl +catalogue-topics dissertation greek +catalogue-version 0.2 + +name dk-bib +category Package +revision 15878 +shortdesc Danish variants of standard BibTeX styles +relocated 1 +longdesc Dk-bib is a translation of the four standard BibTeX style files +longdesc (abbrv, alpha, plain and unsrt) and the apalike style file into +longdesc Danish. The files have been extended with URL, ISBN, ISSN, +longdesc annote and printing fields which can be enabled through a LaTeX +longdesc style file. Dk-bib also comes with a couple of Danish sorting +longdesc order files for BibTeX8. +containersize 13636 +containerchecksum 9de9e026b9e3de53b297d7925bd0e4e9ab08562e798a8f1b9e6988ecb891067534a741aefbbb81f1c53d7ae6b6cd0e0796d8c0690c5af661e76a5c6d9ea876df +doccontainersize 404476 +doccontainerchecksum 258d8413d860f6a30c597c10b8c25f352166f8bc39cf23714a137e46f4748ba716dcae8eb8b6e17378f6a850ae64a68a9f331c8301c938f0a8042d967b3e62b3 +docfiles size=115 + RELOC/doc/latex/dk-bib/COPYRIGHT + RELOC/doc/latex/dk-bib/README details="Readme" + RELOC/doc/latex/dk-bib/dk-bib.ltx + RELOC/doc/latex/dk-bib/dk-bib.pdf details="Package documentation" +srccontainersize 1300 +srccontainerchecksum ddb3927504b35d025c339bfd1c072e9ef770a159f046bf86220ea675df481e5b781026ed6395a776f27518ffedef83b7c5f95be30f1be49747a76bb2e2280817 +srcfiles size=1 + RELOC/source/latex/dk-bib/Makefile +runfiles size=42 + RELOC/bibtex/bib/dk-bib/litteratur.bib + RELOC/bibtex/bst/dk-bib/dk-abbrv.bst + RELOC/bibtex/bst/dk-bib/dk-alpha.bst + RELOC/bibtex/bst/dk-bib/dk-apali.bst + RELOC/bibtex/bst/dk-bib/dk-plain.bst + RELOC/bibtex/bst/dk-bib/dk-unsrt.bst + RELOC/bibtex/csf/dk-bib/88591-dk.csf + RELOC/bibtex/csf/dk-bib/cp850-dk.csf + RELOC/bibtex/csf/dk-bib/mac-dk.csf + RELOC/bibtex/csf/dk-bib/utf8-dk.csf + RELOC/tex/latex/dk-bib/dk-apali.sty + RELOC/tex/latex/dk-bib/dk-bib.sty +catalogue-ctan /biblio/bibtex/contrib/dk-bib +catalogue-license other-free +catalogue-topics bibtex-sty danish +catalogue-version 0.6 + +name dlfltxb +category Package +revision 17337 +shortdesc Macros related to "Introdktion til LaTeX" +relocated 1 +longdesc The bundle contains various macros either used for creating the +longdesc author's book "Introduktion til LaTeX" (in Danish), or +longdesc presented in the book as code tips. The bundle comprises: +longdesc dlfltxbcodetips: various macros helpful in typesetting +longdesc mathematics; dlfltxbmarkup: provides macros used throughout, +longdesc for registering macro names, packages etc. in the text, in the +longdesc margin and in the index, all by using categorised keys (note, a +longdesc configuration file may be used; a sample is included in the +longdesc distribution); dlfltxbtocconfig: macros for the two tables of +longdesc contents that the book has; dlfltxbmisc: various macros for +longdesc typesetting LaTeX arguments, and the macro used in the +longdesc bibliography that can wrap a URL up into a BibTeX entry. +longdesc Interested parties may review the book itself on the web at the +longdesc author's institution (it is written in Danish). +containersize 21700 +containerchecksum d1d7bd6a855d131324fee30bcb920e0dfa6ba733a1d52f94c59e8f328b533d63444b5ce7e5fca9dcc7f21833a9cef84460106aab0a578fd17974c0e348f1ee07 +doccontainersize 694612 +doccontainerchecksum 171d6661ca71533fb869832be2bf6f7d26244bb5735fb884b5b1ce7c27d291b3e9518a902d6c7565d94d2c55c37b00564184bc5851824a00b5a71963a577128f +docfiles size=205 + RELOC/doc/latex/dlfltxb/README details="Readme" + RELOC/doc/latex/dlfltxb/dlfltxbbibtex.dbj + RELOC/doc/latex/dlfltxb/dlfltxbcodetips.pdf details="dlfltxbcodetips package documentation" + RELOC/doc/latex/dlfltxb/dlfltxbcodetips.tex + RELOC/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.pdf details="dlfltxbmarkup key description summary" + RELOC/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.tex + RELOC/doc/latex/dlfltxb/dlfltxbmarkup.pdf details="dlfltxbmarkup package documentation" + RELOC/doc/latex/dlfltxb/dlfltxbmarkup.tex + RELOC/doc/latex/dlfltxb/dlfltxbmisc.pdf details="dlfltxbmisc package documentation" + RELOC/doc/latex/dlfltxb/dlfltxbmisc.tex + RELOC/doc/latex/dlfltxb/dlfltxbtocconfig.pdf + RELOC/doc/latex/dlfltxb/dlfltxbtocconfig.tex + RELOC/doc/latex/dlfltxb/package_doc.bib +runfiles size=26 + RELOC/bibtex/bst/dlfltxb/dlfltxbbibtex.bst + RELOC/tex/latex/dlfltxb/dlfltxbcodetips.sty + RELOC/tex/latex/dlfltxb/dlfltxbmarkup.sty + RELOC/tex/latex/dlfltxb/dlfltxbmarkupbookkeys.sty + RELOC/tex/latex/dlfltxb/dlfltxbmisc.sty + RELOC/tex/latex/dlfltxb/dlfltxbtocconfig.sty +catalogue-ctan /macros/latex/contrib/dlfltxb +catalogue-license lppl +catalogue-topics book-ex danish + +name dnaseq +category Package +revision 17194 +shortdesc Format DNA base sequences +relocated 1 +longdesc Defines a means of specifying sequences of bases. The bases may +longdesc be numbered (per line) and you may specify that subsequences be +longdesc coloured. For a more 'vanilla-flavoured' way of typesetting +longdesc base sequences, the user might consider the seqsplit package. +containersize 1780 +containerchecksum b4a83c42e16aa734611dd8295aa033904828ac1825ccdd41f297586c0667ebec4a43606740fde56bd01f58ffee1b1f4afa647ce196ed042a5dfdb641f0ee2d7d +doccontainersize 209036 +doccontainerchecksum 089352ea3210231ad158ecb0bc17d5ba0a9efe49ee4c609554f08dceff9ef534185a7f9f17526910d3b602c4c6c358f211fec4cfe27bd6df61555bce4f9d795f +docfiles size=56 + RELOC/doc/latex/dnaseq/DNAtest.tex + RELOC/doc/latex/dnaseq/README details="Readme" + RELOC/doc/latex/dnaseq/dnaseq.pdf details="Package documentation" +srccontainersize 2500 +srccontainerchecksum f4357ef3a23d8b1c7ca3168441ddda57fe725c4c17022807464e61035b89a8a8334684144d86f3d6ff0f3955c1c928903b80a61e6b1792cab633d6dab51d44df +srcfiles size=3 + RELOC/source/latex/dnaseq/dnaseq.dtx + RELOC/source/latex/dnaseq/dnaseq.ins +runfiles size=1 + RELOC/tex/latex/dnaseq/dnaseq.sty +catalogue-ctan /macros/latex/contrib/dnaseq +catalogue-license lppl +catalogue-topics molbio +catalogue-version 0.01 + +name dnp +category Package +revision 54074 +shortdesc subfont numbers for DNP font encoding +relocated 1 +longdesc part of the CJK package, ctan.org/pkg/cjk +containersize 856 +containerchecksum 27a4c150b3b5e3fa23e0df55289154d44e3eaa55330544e426cdd3126f8ce0308abcc17fa5a011e12d83460616cad039cc483f08d7254b64d4dae933db6273d9 +runfiles size=1 + RELOC/fonts/sfd/dnp/DNP.sfd + +name doc-pictex +category Package +revision 24927 +shortdesc A summary list of PicTeX documentation +relocated 1 +longdesc A summary of available resources providing (or merely +longdesc discussing) documentation of PicTeX. +containersize 468 +containerchecksum c866f0855f701917fa81966c16a7f1c869320ddaf38e2c1c2a71844fa7b224fe2216f267b7b700ef6e36a13f97fa6f33a1d05342d5a7a8dd47ccda761fc577f4 +doccontainersize 1508 +doccontainerchecksum 3440fd4d0e2117594d6b350dcfed891506ce7fc0500ecdd4f156431363a38e399061469f5def9082d59c39b14b65ebc19ccb3204fef71ade300825cf35659158 +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-license other-free +catalogue-topics doc-mgmt + +name docbytex +category Package +revision 34294 +shortdesc Creating documentation from source code +relocated 1 +longdesc The package creates documentation from C source code, or other +longdesc programming languages. +containersize 11140 +containerchecksum 0b212fe2131eb4070e08efad7f1e0745d0538b2173b274a41c113ae6dfce46d7d1fc8ebd22f16b3a956570865df9cad668866fc2038687ad6c0b7b72e76a79d8 +doccontainersize 1318672 +doccontainerchecksum 0daa32aa23ca248dce228b8029cb19c6d4509114094d46efdcc45b52d6593176c44da88040b37d83054ec286c4b79727ea4ab2cf07c4522e5f597750d85118fd +docfiles size=387 + RELOC/doc/generic/docbytex/README details="Readme" + RELOC/doc/generic/docbytex/annonce + RELOC/doc/generic/docbytex/base.c + RELOC/doc/generic/docbytex/base.d + RELOC/doc/generic/docbytex/cosi.c + RELOC/doc/generic/docbytex/docby-e.d + RELOC/doc/generic/docbytex/docby-e.pdf + RELOC/doc/generic/docbytex/docby.d + RELOC/doc/generic/docbytex/docby.pdf details="Package documentation" language="cs" + RELOC/doc/generic/docbytex/lup.pdf + RELOC/doc/generic/docbytex/lup.tex + RELOC/doc/generic/docbytex/main.c + RELOC/doc/generic/docbytex/main.d + RELOC/doc/generic/docbytex/win.c + RELOC/doc/generic/docbytex/win.d +runfiles size=10 + RELOC/tex/generic/docbytex/docby.tex +catalogue-contact-home http://www.olsak.net/docbytex.html +catalogue-ctan /macros/generic/docbytex +catalogue-license other-free +catalogue-topics program-doc + +name doclicense +category Package +revision 58350 +shortdesc Support for putting documents under a license +relocated 1 +longdesc This package allows you to put your document under a license +longdesc and include a link to read about the license or include an icon +longdesc or image of the license. Currently, only Creative Commons is +longdesc supported, but this package is designed to handle all kinds of +longdesc licenses. +containersize 234912 +containerchecksum 1f701453752b32f1030dd7cda6f51bd94d6d9d67f465070b613f4ea55857f300be8c7a19c7440c6fab129e3fc1749fe6b9aad13b1fc28b5b61670f65bf0e0a81 +doccontainersize 215236 +doccontainerchecksum 14b5f1cd3bbb3b9c411ab8f461673f1b4028549fa5675925ca6221723e6de3588df495a9a4e316b29d4e5c6836eff845ea3ef9544d2823fa548b4fc54080cd05 +docfiles size=68 + RELOC/doc/latex/doclicense/README.md details="Readme" + RELOC/doc/latex/doclicense/doclicense.pdf details="Package documentation" + RELOC/doc/latex/doclicense/manifest.txt +srccontainersize 11216 +srccontainerchecksum d5edb3908034af8d6c9b2e094eee6747398041df2d812b5cc1708223350e91837b5556a58db91897bf044e25a4cf036a0d945eec2db14f807d7e32c89340aaf4 +srcfiles size=12 + RELOC/source/latex/doclicense/Makefile + RELOC/source/latex/doclicense/doclicense.dtx + RELOC/source/latex/doclicense/doclicense.ins +runfiles size=429 + RELOC/tex/latex/doclicense/doclicense-UKenglish.ldf + RELOC/tex/latex/doclicense/doclicense-USenglish.ldf + RELOC/tex/latex/doclicense/doclicense-acadian.ldf + RELOC/tex/latex/doclicense/doclicense-american.ldf + RELOC/tex/latex/doclicense/doclicense-australian.ldf + RELOC/tex/latex/doclicense/doclicense-brazilian.ldf + RELOC/tex/latex/doclicense/doclicense-british.ldf + RELOC/tex/latex/doclicense/doclicense-bulgarian.ldf + RELOC/tex/latex/doclicense/doclicense-canadian.ldf + RELOC/tex/latex/doclicense/doclicense-canadien.ldf + RELOC/tex/latex/doclicense/doclicense-catalan.ldf + RELOC/tex/latex/doclicense/doclicense-chinese-gbk.ldf + RELOC/tex/latex/doclicense/doclicense-chinese-utf8.ldf + RELOC/tex/latex/doclicense/doclicense-english.ldf + RELOC/tex/latex/doclicense/doclicense-french.ldf + RELOC/tex/latex/doclicense/doclicense-galician.ldf + RELOC/tex/latex/doclicense/doclicense-german.ldf + RELOC/tex/latex/doclicense/doclicense-italian.ldf + RELOC/tex/latex/doclicense/doclicense-japanese.ldf + RELOC/tex/latex/doclicense/doclicense-marathi.ldf + RELOC/tex/latex/doclicense/doclicense-newzealand.ldf + RELOC/tex/latex/doclicense/doclicense-ngerman.ldf + RELOC/tex/latex/doclicense/doclicense-polish.ldf + RELOC/tex/latex/doclicense/doclicense-portuguese.ldf + RELOC/tex/latex/doclicense/doclicense-russian.ldf + RELOC/tex/latex/doclicense/doclicense-spanish.ldf + RELOC/tex/latex/doclicense/doclicense.sty + RELOC/tex/latex/doclicense/images/doclicense-CC-by-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-eu-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-eu-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-eu-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-eu-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-unofficial-mr-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-unofficial-mr-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-unofficial-mr-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-unofficial-mr-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-eu-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-eu-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-unofficial-mr-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-unofficial-mr-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-unofficial-mr-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-unofficial-mr-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-unofficial-mr-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-unofficial-mr-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-unofficial-mr-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-unofficial-mr-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-unofficial-mr-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-unofficial-mr-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-unofficial-mr-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd-unofficial-mr-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-unofficial-mr-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-unofficial-mr-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-unofficial-mr-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa-unofficial-mr-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-unofficial-mr-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-unofficial-mr-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-unofficial-mr-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-by-unofficial-mr-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-cc-zero-unofficial-mr-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-cc-zero-unofficial-mr-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-zero-80x15.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-zero-80x15.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-zero-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-zero-88x31.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-zero-unofficial-mr-88x31.eps + RELOC/tex/latex/doclicense/images/doclicense-CC-zero-unofficial-mr-88x31.pdf + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-3.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-4.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-3.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-4.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-3.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-4.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-3.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-4.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-3.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-4.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-3.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-4.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-zero-1.0-latex.html + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-zero-1.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-zero-1.0-plaintext.tex +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-license lppl1.3c +catalogue-topics licence-mgmt +catalogue-version 2.3.0 + +name docmfp +category Package +revision 15878 +shortdesc Document non-LaTeX code +relocated 1 +longdesc Extends the doc package to cater for documenting non-LaTeX +longdesc code, such as Metafont or MetaPost, or other programming +longdesc languages. +containersize 1956 +containerchecksum 55f68d7affd8d82631eb0e67c6232330bdff97ea908259a5e14255058d88f9f745afe55bd4a15eb91bff959b7cfc31835fa22196d3d0edcafa40da521b3105b6 +doccontainersize 148172 +doccontainerchecksum fc3721046105ae78b19b61a45fd01570873842c6786a096575efae282e4fc884f5f5dfd5ea6888a25ddc82077340bf0ede4a36977cd33d2b555ccfc3d0ff2c02 +docfiles size=44 + RELOC/doc/latex/docmfp/README details="Package Readme" + RELOC/doc/latex/docmfp/docmfp.pdf details="Package documentation" +srccontainersize 7932 +srccontainerchecksum 90c38a698f428980635ab3a826f35adb65a1f9b2a2dd385da8ff41ffba01870c071b7ce100dea1142d85ca216a68a0170aa8fdf92feb80a8ae055899f6b05633 +srcfiles size=8 + RELOC/source/latex/docmfp/docmfp.dtx + RELOC/source/latex/docmfp/docmfp.ins +runfiles size=2 + RELOC/tex/latex/docmfp/docmfp.sty +catalogue-ctan /macros/latex/contrib/docmfp +catalogue-license lppl +catalogue-topics doc-supp +catalogue-version 1.2d + +name docmute +category Package +revision 25741 +shortdesc Input files ignoring LaTeX preamble, etc +relocated 1 +longdesc Input or include stand-alone LaTeX documents, ignoring +longdesc everything but the material between \begin{document} and +longdesc \end{document}. +containersize 892 +containerchecksum 5c01f4e6922b7a23e753edf9110ae7f1386a4d6ca719ac898b058068a754a6c3bb123f918bdb1087baf5efd1176545f543ab8b93bcb6c9529c9000ad6a3b1e97 +doccontainersize 148464 +doccontainerchecksum 8207eade8841747201656a7e6edc789926a9dd411946a860e4d865fed618392bb9159245f7162adb4a58c88d00191d83f2daef49f610c3d8e5e231ad7f1fcb7e +docfiles size=38 + RELOC/doc/latex/docmute/README details="Readme" + RELOC/doc/latex/docmute/docmute.pdf details="Package documentation" +srccontainersize 3156 +srccontainerchecksum 1809026635be9610b39f5f428dfeb2c323b4588dbc6306a50e00f092910fd449921a2cd797fdbf3408442b9f24cfeaf7c69e75db9bd217dce975eee2f1a4b930 +srcfiles size=3 + RELOC/source/latex/docmute/docmute.dtx + RELOC/source/latex/docmute/docmute.ins +runfiles size=1 + RELOC/tex/latex/docmute/docmute.sty +catalogue-also combine includex newclude standalone +catalogue-ctan /macros/latex/contrib/docmute +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 1.4 + +name docsurvey +category Package +revision 57362 +shortdesc A survey of LaTeX documentation +relocated 1 +longdesc A survey of programming-related documentation for LaTeX. +longdesc Included are references to printed and electronic books and +longdesc manuals, symbol lists, FAQs, the LaTeX source code, CTAN and +longdesc distributions, programming-related packages, users groups and +longdesc online communities, and information on creating packages and +longdesc documentation. +containersize 548 +containerchecksum 89b01331fcfe0b039716b7b56f34c6006a15b69d9e8862426d0137221ed6c2909f7537f5252f657eb0448a1484d95bce57a947867bcf25486b893f679ef14072 +doccontainersize 358204 +doccontainerchecksum 795cfea7772c3a0a596dee18c0e2398e883c03e10f9d901a8bbc6dea0e8e599936502acbd687b22fc617d73f96993c6d0eb7801a5445ccf448e42a6ed1605eff +docfiles size=106 + RELOC/doc/latex/docsurvey/README.txt details="Readme" + RELOC/doc/latex/docsurvey/docsurvey.pdf details="The document itself" + RELOC/doc/latex/docsurvey/docsurvey.tex +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /info/docsurvey +catalogue-license lppl1.3 +catalogue-topics ref-latex review-document tut-latex tut-latex-prg + +name doctools +category Package +revision 34474 +shortdesc Tools for the documentation of LaTeX code +relocated 1 +longdesc The package provides a collection of tools for use either in an +longdesc "ordinary" LaTeX document, or within a .dtx file. +containersize 5852 +containerchecksum 5c621b063d752fbcce773f2b209d358de1588e7c4edec017eb45a74c350e86932ac9c4e0662415ba7ad5bca8ca86d1255b15f4e5572ea949a5d6404b28f14025 +doccontainersize 603152 +doccontainerchecksum a78cec3ce74e4689c848b49af7da035cc7c684730f78acd7a7f8d8f78194492e53880e7884eb00dd22d4bbca4f370aabe8175048503959f88023a12ee4f26598 +docfiles size=149 + RELOC/doc/latex/doctools/README details="Readme" + RELOC/doc/latex/doctools/doctools.pdf details="Package documentation" +srccontainersize 11196 +srccontainerchecksum bf61b5c519ad73fa8187797367355c195ed2048d83cb4842862edca740f51d60bc421881da10c474d950485faf701631af6299033d2005f0d2aa8c6561625864 +srcfiles size=11 + RELOC/source/latex/doctools/doctools.dtx + RELOC/source/latex/doctools/doctools.ins +runfiles size=5 + RELOC/tex/latex/doctools/doctools.sty +catalogue-ctan /macros/latex/contrib/doctools +catalogue-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 0.1 + +name documentation +category Package +revision 34521 +shortdesc Documentation support for C, Java and assembler code +relocated 1 +longdesc The package provides a simple means of typesetting computer +longdesc programs such that the result is acceptable for inclusion in +longdesc reports, etc. +containersize 1944 +containerchecksum 330534f15cafffa56dc35e5b4de8caac66a87ccb0b834df5419a68a7cb136136263af14ef14ee7ecaf01fedb2803c2653dab7570ec2535ad1ca3033e1afd64e2 +doccontainersize 87916 +doccontainerchecksum 09854b00d86dd902c26c1b4f8cda942ea09796911939a20014b6d50d01b052e04007b55fe814877cb4515a6aa1f4ca1a7ebb39a6a6ac1bfc89b98d1f910329ee +docfiles size=28 + RELOC/doc/latex/documentation/README details="Readme" + RELOC/doc/latex/documentation/documentation.pdf details="Package documentation" +srccontainersize 6436 +srccontainerchecksum 7e32523123407b913662fd7bbdedf5d3058e1e7e3592649b7afdd4d4df6bb704c7b1c3153fb0fdf3b8bea183259a64b8ab6ec17d74ee74ea086a56ef1dc90bc2 +srcfiles size=6 + RELOC/source/latex/documentation/documentation.dtx + RELOC/source/latex/documentation/documentation.ins +runfiles size=2 + RELOC/tex/latex/documentation/documentation.sty +catalogue-ctan /macros/latex/contrib/documentation +catalogue-license lppl1.2 +catalogue-topics listing +catalogue-version 0.1 + +name docutils +category Package +revision 56594 +shortdesc Helper commands and element definitions for Docutils LaTeX output +relocated 1 +longdesc The package is intended for use with LaTeX documents generated +longdesc from reStructuredText sources with Docutils. When generating +longdesc LaTeX documents, specify this package with the stylesheet +longdesc configuration option, e.g. rst2latex --stylesheet=docutils +longdesc exampledocument.txt +containersize 2556 +containerchecksum 13a31f6925efd5cb0e0ccc632d7b8ff80e15a2e95399779ba33ee6e0f1d3c1a3f4a397dcb7fe33455471ec65e6fbb18d681349a43b24a083882c23aed5a0b036 +doccontainersize 8064 +doccontainerchecksum 1748ee0bfe61704d8174202dfaf6a674fd52ba154456f6aa18cf90b2248be90f12bdb36993cfc4a701a8aa3037614c2f86be93ac8528f3da3bce96a611cb5748 +docfiles size=9 + RELOC/doc/latex/docutils/README.md details="Readme" + RELOC/doc/latex/docutils/docutils.sty.html + RELOC/doc/latex/docutils/docutils.sty.txt +runfiles size=2 + RELOC/tex/latex/docutils/docutils.sty +catalogue-contact-announce https://pypi.org/rss/project/docutils/releases.xml +catalogue-contact-bugs https://sourceforge.net/p/docutils/bugs/ +catalogue-contact-development https://sourceforge.net/p/docutils/mailman/ +catalogue-contact-home https://docutils.sourceforge.io/ +catalogue-contact-repository https://sourceforge.net/p/docutils/code/HEAD/tree/trunk/docutils/docutils/writers/latex2e/ +catalogue-contact-support https://sourceforge.net/p/docutils/mailman/ +catalogue-ctan /macros/latex/contrib/docutils +catalogue-license bsd +catalogue-topics markup + +name doi +category Package +revision 48634 +shortdesc Create correct hyperlinks for DOI numbers +relocated 1 +longdesc You can hyperlink DOI numbers to doi.org. However, some +longdesc publishers have elected to use nasty characters in their DOI +longdesc numbering scheme ('<', '>', '_' and ';' have all been spotted). +longdesc This will either upset (La)TeX, or your PDF reader. This +longdesc package contains a single user-level command \doi{}, which +longdesc takes a DOI number, and creates a correct hyperlink to the +longdesc target of the DOI. +containersize 2152 +containerchecksum 7a041a56ecc0f88d5200d39d7611c74f955e79e5f5f887d26a70c76624c334b6229f7b937426cbbabfd7de7ae0f9cd2aee70c502981c46fcc3f18fddd62261bc +doccontainersize 1024 +doccontainerchecksum 3dd77559fbcb32d8bee7121f62bc37ca14c14c8e62f8d2ba44978438920dcdd54605a543135a6294e2ea9742f5fde4862a2efe3eeb6bf22b6d7418b4b01a2ebd +docfiles size=1 + RELOC/doc/latex/doi/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/doi/doi.sty +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-license lppl +catalogue-topics hyper + +name doipubmed +category Package +revision 15878 +shortdesc Special commands for use in bibliographies +relocated 1 +longdesc The package provides the commands \doi, \pubmed and \citeurl. +longdesc These commands are primarily designed for use in +longdesc bibliographies. A LaTeX2HTML style file is also provided. +containersize 1932 +containerchecksum 3f313afd9cee76d11b5f957a3e9f7cc0d5d2d04003c285df7cd872adc0cdd26d0248c03f0642d62af53f23c4399e7e5ac3ffcde38da782f64ab265e5879a7f60 +doccontainersize 74000 +doccontainerchecksum 0298b7f4a408f2092bb7ecd8d5b0cee745f442bdcc2bae463d922ae4511d5b0fd79b8f78d1de49f77b4fb158937fcb752d919239efc25829228c1f75185454ae +docfiles size=25 + RELOC/doc/latex/doipubmed/CHANGES + RELOC/doc/latex/doipubmed/README details="Readme" + RELOC/doc/latex/doipubmed/doipubmed-manual.html details="Package documentation (HTML)" + RELOC/doc/latex/doipubmed/doipubmed.pdf details="Package documentation (PDF)" + RELOC/doc/latex/doipubmed/doipubmed.perl +srccontainersize 4020 +srccontainerchecksum ce8a2d5300a2a3555cef789064047d49810f1f7d9d00429eea8122cde3e4cf75b41d5cec901a3d6cb3596e83bfb43e8ccb2558c64ac3d0574970e9980ceceacf +srcfiles size=4 + RELOC/source/latex/doipubmed/doipubmed.dtx + RELOC/source/latex/doipubmed/doipubmed.ins +runfiles size=1 + RELOC/tex/latex/doipubmed/doipubmed.sty +catalogue-ctan /macros/latex/contrib/doipubmed +catalogue-license lppl +catalogue-topics cite-supp +catalogue-version 1.01 + +name domitian +category Package +revision 55286 +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. +execute addMap Domitian.map +containersize 1376968 +containerchecksum f228d1670e7904b08ba6064d0d1e8c23432fa826d52229d575bc2067e27adc904c3684d76889a8beb4885c3c9de5cd4a5004b9afd3f7140ae5e90d36b4961b9a +doccontainersize 63244 +doccontainerchecksum 81af6be4f2707ec5d46d5f78d459f42d81e0cf62a17a8e695e42b666076637183447a9f1888b3f4c84e4832362eefe01b8d8dc5d748a640eb8e20c72bdfc1f3e +docfiles size=29 + RELOC/doc/fonts/domitian/COPYING + RELOC/doc/fonts/domitian/README details="Readme" + RELOC/doc/fonts/domitian/domitian-doc.pdf details="Package documentation" + RELOC/doc/fonts/domitian/domitian-doc.tex +runfiles size=1193 + RELOC/fonts/enc/dvips/domitian/a_35nio2.enc + RELOC/fonts/enc/dvips/domitian/a_3pltbn.enc + RELOC/fonts/enc/dvips/domitian/a_3w3llx.enc + RELOC/fonts/enc/dvips/domitian/a_4ivb7d.enc + RELOC/fonts/enc/dvips/domitian/a_6377uz.enc + RELOC/fonts/enc/dvips/domitian/a_67soe5.enc + RELOC/fonts/enc/dvips/domitian/a_6i6esj.enc + RELOC/fonts/enc/dvips/domitian/a_6scvia.enc + RELOC/fonts/enc/dvips/domitian/a_7xosgq.enc + RELOC/fonts/enc/dvips/domitian/a_b7m3mh.enc + RELOC/fonts/enc/dvips/domitian/a_bhlgjd.enc + RELOC/fonts/enc/dvips/domitian/a_bwxm6z.enc + RELOC/fonts/enc/dvips/domitian/a_c6a6zb.enc + RELOC/fonts/enc/dvips/domitian/a_cekwsu.enc + RELOC/fonts/enc/dvips/domitian/a_clsg45.enc + RELOC/fonts/enc/dvips/domitian/a_d6ffl3.enc + RELOC/fonts/enc/dvips/domitian/a_emqd3c.enc + RELOC/fonts/enc/dvips/domitian/a_ghqtel.enc + RELOC/fonts/enc/dvips/domitian/a_h7ftxd.enc + RELOC/fonts/enc/dvips/domitian/a_hjkpcv.enc + RELOC/fonts/enc/dvips/domitian/a_hxu6ib.enc + RELOC/fonts/enc/dvips/domitian/a_i2hixx.enc + RELOC/fonts/enc/dvips/domitian/a_iobvua.enc + RELOC/fonts/enc/dvips/domitian/a_jdvb5w.enc + RELOC/fonts/enc/dvips/domitian/a_kqwyxb.enc + RELOC/fonts/enc/dvips/domitian/a_kvnmfl.enc + RELOC/fonts/enc/dvips/domitian/a_lrhprf.enc + RELOC/fonts/enc/dvips/domitian/a_m4gebc.enc + RELOC/fonts/enc/dvips/domitian/a_mndshu.enc + RELOC/fonts/enc/dvips/domitian/a_mpk3tx.enc + RELOC/fonts/enc/dvips/domitian/a_ms3bme.enc + RELOC/fonts/enc/dvips/domitian/a_mwmumz.enc + RELOC/fonts/enc/dvips/domitian/a_mwtjfi.enc + RELOC/fonts/enc/dvips/domitian/a_o47vim.enc + RELOC/fonts/enc/dvips/domitian/a_oozihx.enc + RELOC/fonts/enc/dvips/domitian/a_p3vr7e.enc + RELOC/fonts/enc/dvips/domitian/a_p56tga.enc + RELOC/fonts/enc/dvips/domitian/a_qd6cjk.enc + RELOC/fonts/enc/dvips/domitian/a_qenzo5.enc + RELOC/fonts/enc/dvips/domitian/a_qn46nm.enc + RELOC/fonts/enc/dvips/domitian/a_rs25bv.enc + RELOC/fonts/enc/dvips/domitian/a_rxs5r4.enc + RELOC/fonts/enc/dvips/domitian/a_rxxvt2.enc + RELOC/fonts/enc/dvips/domitian/a_s2ytkg.enc + RELOC/fonts/enc/dvips/domitian/a_uih534.enc + RELOC/fonts/enc/dvips/domitian/a_ulgwo3.enc + RELOC/fonts/enc/dvips/domitian/a_vbh7z5.enc + RELOC/fonts/enc/dvips/domitian/a_veicm7.enc + RELOC/fonts/enc/dvips/domitian/a_walexi.enc + RELOC/fonts/enc/dvips/domitian/a_x44hng.enc + RELOC/fonts/enc/dvips/domitian/a_xammmp.enc + RELOC/fonts/enc/dvips/domitian/a_xhkga7.enc + RELOC/fonts/enc/dvips/domitian/a_ze7hit.enc + RELOC/fonts/enc/dvips/domitian/a_zkzzwq.enc + RELOC/fonts/map/dvips/domitian/Domitian.map + RELOC/fonts/opentype/public/domitian/Domitian-Bold.otf + RELOC/fonts/opentype/public/domitian/Domitian-BoldItalic.otf + RELOC/fonts/opentype/public/domitian/Domitian-Italic.otf + RELOC/fonts/opentype/public/domitian/Domitian-Roman.otf + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-inf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-sup-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tlf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Bold-tosf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-inf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-sup-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tlf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-BoldItalic-tosf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-inf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-sup-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tlf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Italic-tosf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-inf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-sup-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-sc-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tlf-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-sc-ts3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2a.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2b--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2b.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2c--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t2c.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t3--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t3--lcdfj.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-t3.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ts1.tfm + RELOC/fonts/tfm/public/domitian/Domitian-Roman-tosf-ts3.tfm + RELOC/fonts/type1/public/domitian/Domitian-Bold.pfb + RELOC/fonts/type1/public/domitian/Domitian-BoldItalic.pfb + RELOC/fonts/type1/public/domitian/Domitian-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/public/domitian/Domitian-BoldLCDFJ.pfb + RELOC/fonts/type1/public/domitian/Domitian-Italic.pfb + RELOC/fonts/type1/public/domitian/Domitian-ItalicLCDFJ.pfb + RELOC/fonts/type1/public/domitian/Domitian-Roman.pfb + RELOC/fonts/type1/public/domitian/Domitian-RomanLCDFJ.pfb + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-inf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-sup-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-inf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-sup-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-inf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-sup-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-inf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-sup-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-sc-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tlf-ts1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-sc-lgr.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-sc-ly1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-sc-ot1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-sc-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-sc-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-sc-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-sc-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-t1.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-t2a.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-t2b.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-t2c.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-t3.vf + RELOC/fonts/vf/public/domitian/Domitian-Roman-tosf-ts1.vf + RELOC/tex/latex/domitian/LGRDomitian-Inf.fd + RELOC/tex/latex/domitian/LGRDomitian-Sup.fd + RELOC/tex/latex/domitian/LGRDomitian-TLF.fd + RELOC/tex/latex/domitian/LGRDomitian-TOsF.fd + RELOC/tex/latex/domitian/LY1Domitian-Inf.fd + RELOC/tex/latex/domitian/LY1Domitian-Sup.fd + RELOC/tex/latex/domitian/LY1Domitian-TLF.fd + RELOC/tex/latex/domitian/LY1Domitian-TOsF.fd + RELOC/tex/latex/domitian/OT1Domitian-Inf.fd + RELOC/tex/latex/domitian/OT1Domitian-Sup.fd + RELOC/tex/latex/domitian/OT1Domitian-TLF.fd + RELOC/tex/latex/domitian/OT1Domitian-TOsF.fd + RELOC/tex/latex/domitian/T1Domitian-Inf.fd + RELOC/tex/latex/domitian/T1Domitian-Sup.fd + RELOC/tex/latex/domitian/T1Domitian-TLF.fd + RELOC/tex/latex/domitian/T1Domitian-TOsF.fd + RELOC/tex/latex/domitian/T2ADomitian-Inf.fd + RELOC/tex/latex/domitian/T2ADomitian-Sup.fd + RELOC/tex/latex/domitian/T2ADomitian-TLF.fd + RELOC/tex/latex/domitian/T2ADomitian-TOsF.fd + RELOC/tex/latex/domitian/T2BDomitian-Inf.fd + RELOC/tex/latex/domitian/T2BDomitian-Sup.fd + RELOC/tex/latex/domitian/T2BDomitian-TLF.fd + RELOC/tex/latex/domitian/T2BDomitian-TOsF.fd + RELOC/tex/latex/domitian/T2CDomitian-Inf.fd + RELOC/tex/latex/domitian/T2CDomitian-Sup.fd + RELOC/tex/latex/domitian/T2CDomitian-TLF.fd + RELOC/tex/latex/domitian/T2CDomitian-TOsF.fd + RELOC/tex/latex/domitian/T3Domitian-Inf.fd + RELOC/tex/latex/domitian/T3Domitian-Sup.fd + RELOC/tex/latex/domitian/T3Domitian-TLF.fd + RELOC/tex/latex/domitian/T3Domitian-TOsF.fd + RELOC/tex/latex/domitian/TS1Domitian-TLF.fd + RELOC/tex/latex/domitian/TS1Domitian-TOsF.fd + RELOC/tex/latex/domitian/TS3Domitian-Inf.fd + RELOC/tex/latex/domitian/TS3Domitian-Sup.fd + RELOC/tex/latex/domitian/TS3Domitian-TLF.fd + RELOC/tex/latex/domitian/TS3Domitian-TOsF.fd + RELOC/tex/latex/domitian/domitian.sty +catalogue-contact-bugs https://github.com/dbenjaminmiller/domitian/issues +catalogue-contact-repository https://github.com/dbenjaminmiller/domitian +catalogue-ctan /fonts/domitian +catalogue-license lppl1.3c ofl other-free +catalogue-topics font font-serif font-otf font-type1 +catalogue-version 1.0.1 + +name dosepsbin +category Package +revision 29752 +shortdesc Deal with DOS binary EPS files +longdesc A Encapsulated PostScript (EPS) file may given in a special +longdesc binary format to support the inclusion of a thumbnail. This +longdesc file format, commonly known as DOS EPS format starts with a +longdesc binary header that contains the positions of the possible +longdesc sections: PostScript (PS); Windows Metafile Format (WMF); and +longdesc Tag Image File Format (TIFF). The PS section must be present +longdesc and either the WMF file or the TIFF file should be given. The +longdesc package provides a Perl program that will extract any of the +longdesc sections of such a file, in particular providing a 'text'-form +longdesc EPS file for use with (La)TeX. +depend dosepsbin.ARCH +containersize 4136 +containerchecksum 7f31d47d60b0bf151cd6e6516e29a8414c6344657c133e726e6e8dfe23818995b10b9a2898b1801c4bcb9219969a8af1d2725b75df514ffb119730b3e49008f1 +doccontainersize 57052 +doccontainerchecksum b9edce9984698db8e50f9183f89b025cfa89dca8a8725054af80f379c88ff1d2b02cef8f3d5f37ee5b8585a59d1a4d0f0ee0e541a7784f3f3f4e382d78e6a47e +docfiles size=26 + texmf-dist/doc/man/man1/dosepsbin.1 + texmf-dist/doc/man/man1/dosepsbin.man1.pdf + texmf-dist/doc/support/dosepsbin/Makefile.in + texmf-dist/doc/support/dosepsbin/README + texmf-dist/doc/support/dosepsbin/clean-case.pl + texmf-dist/doc/support/dosepsbin/dosepsbin.html + texmf-dist/doc/support/dosepsbin/dosepsbin.ltx + texmf-dist/doc/support/dosepsbin/dosepsbin.pdf details="Package documentation (PDF format)" + texmf-dist/doc/support/dosepsbin/dosepsbin.txt details="Package documentation (text format)" + texmf-dist/doc/support/dosepsbin/version.pl +srccontainersize 19036 +srccontainerchecksum d5739533a9d10e584ed7de4ec033b4a31be5681fd06fd9a2268f924d4434df902fc1f346ac2636f4ba7b7dcc6b5804a80b5431f7055fe8eccfeeea09915ad2e7 +srcfiles size=20 + texmf-dist/source/support/dosepsbin/configure + texmf-dist/source/support/dosepsbin/configure.ac + texmf-dist/source/support/dosepsbin/install-sh +runfiles size=3 + texmf-dist/scripts/dosepsbin/dosepsbin.pl +catalogue-ctan /support/dosepsbin +catalogue-license artistic +catalogue-topics image-supp +catalogue-version 1.2 + +name dosepsbin.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dosepsbin +containersize 340 +containerchecksum d9a6af193f574ee6b0b8f4745641c67016ac514ee9439357f175616e114f0e02aaac24811ad381fb8ed884926c30aa78029c38d910f205db0e306cbe3a87fdc1 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dosepsbin + +name dosepsbin.amd64-freebsd +category Package +revision 24759 +shortdesc amd64-freebsd files of dosepsbin +containersize 340 +containerchecksum df724f68b1a780246128666b54f2254565c5d03adf9d2b502420764838787b57769c309244b2ac06af297a91e3915e01ddfd520af3ad90dccde65215acb0496b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dosepsbin + +name dosepsbin.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of dosepsbin +containersize 340 +containerchecksum f1262559f58ed2103506a90bd61161676221dd54ad12d3730eabee03561eefaf39986952fceee542b98903d4bf7316b373670d19f449ef23a1c14d8012f05782 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dosepsbin + +name dosepsbin.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of dosepsbin +containersize 340 +containerchecksum bcdc2a4e1ba4f63e5558b8c19d8a2fdf0ba434c7b690052704d099dc2167a16f33cc4418219b596007b0ab6cf67b0811ed5c095ee5d9660264929e6cf343527c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dosepsbin + +name dosepsbin.i386-cygwin +category Package +revision 24759 +shortdesc i386-cygwin files of dosepsbin +containersize 340 +containerchecksum 5ac4d35ac5e394251bfe0b8096eda1eb6c76e74aeb75e029c3dacce5162043fd720832eb689f9e85264884f9be377373bb1937f0640368eff33ffd960add8517 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dosepsbin + +name dosepsbin.i386-freebsd +category Package +revision 24759 +shortdesc i386-freebsd files of dosepsbin +containersize 344 +containerchecksum 68bfd2c4c27bdb9596abebec35fddb936e26f6ffbc81d87637ca5a466a475e7878814a4e8f41f8887b5887f48df57cf3b9948cf98bc8d1bcf47691b270b76703 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dosepsbin + +name dosepsbin.i386-linux +category Package +revision 24759 +shortdesc i386-linux files of dosepsbin +containersize 340 +containerchecksum 913b50a0d19a979c8b717e15b320b3b14029cf6a66929851b579a03fc2e030c72840d83178cac631d8ffc5366a4fedf893bb35dc743804b7ead3643adb8d9cc7 +binfiles arch=i386-linux size=1 + bin/i386-linux/dosepsbin + +name dosepsbin.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of dosepsbin +containersize 340 +containerchecksum 6c514aed89e854c0093dd5918a360f4bc3eef79e865901fe575626e48e016acf62b1059fa4d7c70721f471ac4d0d1b59634c22570baec990ca373cf6c4228f83 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dosepsbin + +name dosepsbin.i386-solaris +category Package +revision 24759 +shortdesc i386-solaris files of dosepsbin +containersize 340 +containerchecksum 2473e3ab98daa1121151d3ccbd85a57dfc6804a81733b136ccb78acadc2c7019ff4f9fe5004e1d64264179cd481fbac40f38ba344ff5d02196ab841cdb1d6f58 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dosepsbin + +name dosepsbin.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of dosepsbin +containersize 340 +containerchecksum a5af89d2253e7bd231f9f2d56591531e763949949f575ab5db269f00e5752e79745f7a600e4d508a2c1d4680a7fbb03c5caf31cdfd813d43e693b3a77af6d374 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/dosepsbin + +name dosepsbin.win32 +category Package +revision 24759 +shortdesc win32 files of dosepsbin +containersize 684 +containerchecksum 880854e12823c3789df87ae2991fd2d1efd0f7a470cce497a20863e01b03b10ba1fea03359ce112d2912da0e691360d10edf58d9aaa610dd70a24fcba2b9ca41 +binfiles arch=win32 size=1 + bin/win32/dosepsbin.exe + +name dosepsbin.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of dosepsbin +containersize 340 +containerchecksum 6b0993789e1b2304efbe274adeb5fc89dc89dd11ae934e59f859826ac832326d5c1883a0f4585cf283ef2bbc35704c3a2a1ea687ba22e2e20b22f4387ceec04e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dosepsbin + +name dosepsbin.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of dosepsbin +containersize 348 +containerchecksum 6d2e39030cf384fe341807ee6e9de9b7527f9a2041827c70b43da061bc299dfacdcb6108a74af353c1fd2349ef982d03118214ce3f2c75c970e73301665d04fe +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dosepsbin + +name dosepsbin.x86_64-linux +category Package +revision 24759 +shortdesc x86_64-linux files of dosepsbin +containersize 340 +containerchecksum e1fe367ff6dd1d9ed9c35bd3b809766dcfbd3c5a603ff98be117053c3fb2c6376c385c5f5455e94f5d07f75e7493abe7ee4cb6102eb8b789e2c9e072429e1453 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dosepsbin + +name dosepsbin.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dosepsbin +containersize 344 +containerchecksum 93aa85da86c1341616d04d05a5cc806ae4a3d1a7a4f490e0395ca886ac82ee83242f1879ec12a1c0983981dd20efa0881ed896229b608aa61e7e27dea39542f1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dosepsbin + +name dosepsbin.x86_64-solaris +category Package +revision 24759 +shortdesc x86_64-solaris files of dosepsbin +containersize 340 +containerchecksum bf443a0d46e32c9328db3dfca863f5709d2fba8f2612aab152e841b6789e0f4ba46dc83362c50c077821051a17a05b7b2b03fce5858c1369082da26ad4befb01 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dosepsbin + +name dot2texi +category Package +revision 26237 +shortdesc Create graphs within LaTeX using the dot2tex tool +relocated 1 +longdesc The dot2texi package allows you to embed graphs in the DOT +longdesc graph description language in your LaTeX documents. The dot2tex +longdesc tool is used to invoke Graphviz for graph layout, and to +longdesc transform the output from Graphviz to LaTeX code. The generated +longdesc code relies on the TikZ and PGF package or the PSTricks +longdesc package. The process is automated if shell escape is enabled. +containersize 3740 +containerchecksum 20cc54f907b00e2eb14e4641d5098dd4886ce8d4627f391421bc5e819614dec97e0ec42c92794bacb8ffcb03737cb8736c308fad6984abf13c127f6d1174ee0f +doccontainersize 216576 +doccontainerchecksum 9e8461946582e0c99ee35437522e25769e2afe5d7051f072937a57c5d4e1a0c8e144509c751f9ddb7ef576f43ca408ffca663f81c8b5e69fb176a4233ff45ea3 +docfiles size=95 + RELOC/doc/latex/dot2texi/README details="Readme" + RELOC/doc/latex/dot2texi/dot2texi.pdf details="Package documentation" + RELOC/doc/latex/dot2texi/dot2texi.tex + RELOC/doc/latex/dot2texi/examples/d2tpstexamples.pdf + RELOC/doc/latex/dot2texi/examples/d2tpstexamples.tex + RELOC/doc/latex/dot2texi/examples/d2ttikzexamples.pdf + RELOC/doc/latex/dot2texi/examples/d2ttikzexamples.tex + RELOC/doc/latex/dot2texi/examples/docgraphs.pdf + RELOC/doc/latex/dot2texi/examples/docgraphs.tex + RELOC/doc/latex/dot2texi/examples/docgraphsorig.pdf + RELOC/doc/latex/dot2texi/gpl.txt +runfiles size=3 + RELOC/tex/latex/dot2texi/dot2texi.sty +catalogue-ctan /macros/latex/contrib/dot2texi +catalogue-license gpl +catalogue-topics foreign-import graphics +catalogue-version 3.0 + +name dotarrow +category Package +revision 15878 +shortdesc Extendable dotted arrows +relocated 1 +longdesc The package can draw dotted arrows that are extendable, in the +longdesc same was as \xrightarrow. +containersize 1592 +containerchecksum 43ff7e4e163764e703673312a1213c50f0a77da98f3f36b726e87042d082f3d2433e35156e1c963d1c6287aa4cea5ccc64f140f89b82569b0552f406b29813c9 +doccontainersize 75524 +doccontainerchecksum 7b5a4d0b2b31f55e657eed5b7cc0185a8895df77895bbe40f27c4d29d1086c9fef1779f7c4c726faae25821972fac418c379e9e68ad4cd059b1c6f5b0420e9fc +docfiles size=25 + RELOC/doc/latex/dotarrow/DotArrow.pdf details="Package documentation" + RELOC/doc/latex/dotarrow/DotArrow.tex + RELOC/doc/latex/dotarrow/README details="Readme" +srccontainersize 2828 +srccontainerchecksum 3d756e93ba60153727d1719f3eb77d278ecae65c08f18529a6352707b655bf39f01152f13b60490ce21ba358e2021681a64de8e9fa6f46f9f4bae5b3a754f1a9 +srcfiles size=4 + RELOC/source/latex/dotarrow/DotArrow.dtx + RELOC/source/latex/dotarrow/DotArrow.ins +runfiles size=2 + RELOC/tex/latex/dotarrow/DotArrow.sty +catalogue-ctan /macros/latex/contrib/dotarrow +catalogue-license lppl +catalogue-topics maths-symbol +catalogue-version 0.01a + +name dotlessi +category Package +revision 51476 +shortdesc Provides dotless i's and j's for use in any math font +relocated 1 +longdesc The package provides two commands: \dotlessi and \dotlessj, +longdesc which give access to dotless i's and j's in math mode. They are +longdesc intended for symbols in non English languages. +containersize 1832 +containerchecksum 348be296d710fe22d8122b45437d91027913b90ef36fa7aa365ad49dbdea566506c80072623ccc95170227e77ee2fc2fb3f711772afe4e7e7b83195eb3110b61 +doccontainersize 676 +doccontainerchecksum c77fed1f0b8ddbd6ed141fe8c9f914cbd5592820ffe3e457ecf35952817149d1315598f449dfe0e15e0e50328e45b408d3f1ef91fe83154f5374bcc62041ba77 +docfiles size=1 + RELOC/doc/latex/dotlessi/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/dotlessi/dotlessi.sty +catalogue-also dotlessj +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos +catalogue-ctan /macros/latex/contrib/dotlessi +catalogue-license mit +catalogue-topics typesetting +catalogue-version 1.1 + +name dotseqn +category Package +revision 17195 +shortdesc Flush left equations with dotted leaders to the numbers +relocated 1 +longdesc The package provides a different format for typesetting +longdesc equations, one reportedly used in 'old style Britsh books': +longdesc equations aligned on the left, with dots on the right leading +longdesc to the equation number. In default of an equation number, the +longdesc package operates much like the fleqn class option (no leaders). +containersize 1856 +containerchecksum 794be5110d50ff9134471aedec8adaf7267f112012d962ee6e1cd7ddaa36cc37d993517cf4663686c90df891fe2e912d260cc9c9945aaee25925c2915afcc45f +doccontainersize 131816 +doccontainerchecksum aeb026d83497b78725d623b52223877d4d5a0a745312511f007d69395b87ba5362904cfa26bb24f2f2c7d0e0ae14bb82699d6108533260d736c0e85bc29ceff2 +docfiles size=36 + RELOC/doc/latex/dotseqn/dotseqn.pdf details="Package documentation" + RELOC/doc/latex/dotseqn/readme details="Readme" +srccontainersize 5480 +srccontainerchecksum 7cd2a4a2001a38e999e0632222116f32b559d8f004c9e378493d84486028e5c1cd5268f63a0eb93f9d1402b2c2e11b2db2429547f300809cca3d9f39efd6b17e +srcfiles size=5 + RELOC/source/latex/dotseqn/dotseqn.dtx + RELOC/source/latex/dotseqn/dotseqn.ins +runfiles size=1 + RELOC/tex/latex/dotseqn/dotseqn.sty +catalogue-ctan /macros/latex/contrib/dotseqn +catalogue-license other-free +catalogue-topics maths +catalogue-version 1.1 + +name dottex +category Package +revision 15878 +shortdesc Use dot code in LaTeX +relocated 1 +longdesc The dottex package allows you to encapsulate 'dot' and 'neato' +longdesc files in your document (dot and neato are both part of +longdesc graphviz; dot creates directed graphs, neato undirected +longdesc graphs). If you have shell-escape enabled, the package will +longdesc arrange for your files to be processed at LaTeX time; +longdesc otherwise, the conversion must be done manually as an +longdesc intermediate process before a second LaTeX run. +containersize 2596 +containerchecksum 037586577425d8a38a2170bc4bb9a7fa28a7886ad852d1c85483f7c3b625321c41a204b613479382ff5fb9e8cc3f8f9d8ff6e0a07c14b71ce6fdc68280515e33 +doccontainersize 88372 +doccontainerchecksum 3708e08c630e27d744c3a865cc02e91868a32b1648b4d390cea0f20ea6340c56ea1720348f6b82796df6cc3f4d5b7feaf59ffe7e24c32e34535a4e5763318df6 +docfiles size=30 + RELOC/doc/latex/dottex/README + RELOC/doc/latex/dottex/dottex.pdf details="Package documentation" + RELOC/doc/latex/dottex/example.tex + RELOC/doc/latex/dottex/gpl.txt +srccontainersize 4668 +srccontainerchecksum adf26c722ad1e2fa26d10488125267516923db87c1185068a33a082c6f51bf5ec644ace69aefa0630eab9a604bfc28032cb5d10db15ef0c80ab28fc93839a13b +srcfiles size=5 + RELOC/source/latex/dottex/dottex.dtx + RELOC/source/latex/dottex/dottex.ins +runfiles size=2 + RELOC/tex/latex/dottex/dottex.sty +catalogue-ctan /macros/latex/contrib/dottex +catalogue-license gpl +catalogue-topics graphics-inline +catalogue-version 0.6 + +name doublestroke +category Package +revision 15878 +shortdesc Typeset mathematical double stroke symbols +relocated 1 +longdesc A font based on Computer Modern Roman useful for typesetting +longdesc the mathematical symbols for the natural numbers (N), whole +longdesc numbers (Z), rational numbers (Q), real numbers (R) and complex +longdesc numbers (C); coverage includes all Roman capital letters, '1', +longdesc 'h' and 'k'. The font is available both as Metafont source and +longdesc in Adobe Type 1 format, and LaTeX macros for its use are +longdesc provided. The fonts appear in the blackboard bold sampler. +execute addMap dstroke.map +containersize 67024 +containerchecksum ff1be47939d9a2e8ec4fe8e6852d9fa31c2776511de158611ef8b853ac73291d1aa4ffe81985bed60c75a16e3cfc963a3a8ce3fb9494dcf6664cd6d92a549e73 +doccontainersize 94088 +doccontainerchecksum 2cf0cc8936393be2b01ed06158b250a43514098aeec4007bf493bd9232fda911f4a59f45716fba5837e475bdc39a86cf6e1180d4220e6aef26ff9e0315389200 +docfiles size=31 + RELOC/doc/fonts/doublestroke/README details="Package Readme" + RELOC/doc/fonts/doublestroke/dsdoc.pdf details="Package documentation" + RELOC/doc/fonts/doublestroke/dsdoc.tex +runfiles size=58 + RELOC/fonts/map/dvips/doublestroke/dstroke.map + RELOC/fonts/source/public/doublestroke/dsrom.mf + RELOC/fonts/source/public/doublestroke/dsrom10.mf + RELOC/fonts/source/public/doublestroke/dsrom12.mf + RELOC/fonts/source/public/doublestroke/dsrom8.mf + RELOC/fonts/source/public/doublestroke/dsromo.mf + RELOC/fonts/source/public/doublestroke/dsromu.mf + RELOC/fonts/source/public/doublestroke/dsss10.mf + RELOC/fonts/source/public/doublestroke/dsss12.mf + RELOC/fonts/source/public/doublestroke/dsss8.mf + RELOC/fonts/tfm/public/doublestroke/dsrom10.tfm + RELOC/fonts/tfm/public/doublestroke/dsrom12.tfm + RELOC/fonts/tfm/public/doublestroke/dsrom8.tfm + RELOC/fonts/tfm/public/doublestroke/dsss10.tfm + RELOC/fonts/tfm/public/doublestroke/dsss12.tfm + RELOC/fonts/tfm/public/doublestroke/dsss8.tfm + RELOC/fonts/type1/public/doublestroke/dsrom10.pfb + RELOC/fonts/type1/public/doublestroke/dsrom12.pfb + RELOC/fonts/type1/public/doublestroke/dsrom8.pfb + RELOC/fonts/type1/public/doublestroke/dsss10.pfb + RELOC/fonts/type1/public/doublestroke/dsss12.pfb + RELOC/fonts/type1/public/doublestroke/dsss8.pfb + RELOC/tex/latex/doublestroke/Udsrom.fd + RELOC/tex/latex/doublestroke/Udsss.fd + RELOC/tex/latex/doublestroke/dsfont.sty +catalogue-also bbm bbold mbboard +catalogue-ctan /fonts/doublestroke +catalogue-license other-free +catalogue-topics font font-maths font-type1 font-mf font-bbd +catalogue-version 1.111 + +name doulossil +category Package +revision 56407 +shortdesc A font for typesetting the International Phonetic Alphabet (IPA) +relocated 1 +longdesc This package provides the IPA font Doulos SIL in TrueType +longdesc format. +containersize 404856 +containerchecksum f4260c3849929daf7d4d3de75096111e9004925998a251bfe759ed0b494b3da88634989f77597cfbd5277a94646ef56d4313ac12bb90431cd5c13681123998d1 +doccontainersize 60420 +doccontainerchecksum 0b258cc6512eb3fc01b193754520431c492ce91d9b3cd73d192e98dcbb9f4fe9190f89886fb0f8d453016ed8d0a89943b3356026da625904d26ffbb5b686b229 +docfiles size=17 + RELOC/doc/fonts/doulossil/README.txt details="Readme" + RELOC/doc/fonts/doulossil/doulossil.pdf details="Font samples" + RELOC/doc/fonts/doulossil/doulossil.tex +runfiles size=387 + RELOC/fonts/truetype/public/doulossil/Doulos_SIL_Regular.ttf +catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/doulossil/-/issues +catalogue-contact-repository https://gitlab.com/niranjanvikastambe/doulossil +catalogue-ctan /fonts/doulossil +catalogue-license ofl +catalogue-topics font font-ttf font-symbol phonetic linguistic +catalogue-version 0.1 + +name dowith +category Package +revision 38860 +shortdesc Apply a command to a list of items +relocated 1 +longdesc The package provides macros for applying a command to all +longdesc elements of a list without separators, such as +longdesc '\DoWithAllIn{}{}', and also for extending and +longdesc reducing macros storing such lists. Applications in mind +longdesc belonged to LaTeX, but the package should work with other +longdesc formats as well. Loop and list macros in other packages are +longdesc discussed. A further package, domore, is also provided, which +longdesc enhances the functionality of dowith. +containersize 6600 +containerchecksum 7c9bc25d94364ea13326ebc010d15c92b27ffad08b68fa5c3b5034e6bbd6a96370d159727270adf76e6edca15d08de86c13ca7ede009a445b500ac22b151c05c +doccontainersize 1179736 +doccontainerchecksum 2fb2234cdf6b42bd3f9f991b3d2d76473c45c51ffb67e7c12e7976310e0fa562cb8d1f01b347e9b8140c854e1ede865cfed17f5748ded909dc8d983d4f246961 +docfiles size=302 + RELOC/doc/generic/dowith/Announce.txt + RELOC/doc/generic/dowith/README details="Readme" + RELOC/doc/generic/dowith/SrcFILEs.txt + RELOC/doc/generic/dowith/domore.pdf details="Domore documentation" + RELOC/doc/generic/dowith/dowith.pdf details="Dowith documentation" +srccontainersize 21140 +srccontainerchecksum 44d331b8f99533a6bb3b150748245787f686a807b22dcea3dd9bef311000881fcf0870d19d6718574d56adae79451ef05aca1bddf1904a76d50dd4e74529fd47 +srcfiles size=18 + RELOC/source/generic/dowith/domore.tex + RELOC/source/generic/dowith/dowith.tex + RELOC/source/generic/dowith/fdatechk.tex + RELOC/source/generic/dowith/srcfiles.tex +runfiles size=6 + RELOC/tex/generic/dowith/domore.sty + RELOC/tex/generic/dowith/dowith.RLS + RELOC/tex/generic/dowith/dowith.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/generic/dowith +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version r0.32 + +name download +category Package +revision 52257 +shortdesc Allow LaTeX to download files using an external process +relocated 1 +longdesc The package allows the user to download files (using cURL or +longdesc wget), from within a document. To run the external commands, +longdesc LaTeX (or whatever) needs to be run with the --shell-escape +longdesc flag; this creates a tension between your needs and the +longdesc security implications of the flag; users should exercise due +longdesc caution. +containersize 2004 +containerchecksum 051fdf31160c95e88c8ed1214311b0ec8eda80b7128752c27a203c7e7dc5cee6d275dc4ed93f06308b71d199d9216b18600a2b6b219f852fc256eb2486c2bfd2 +doccontainersize 261712 +doccontainerchecksum 388fbef93df8f76de34e7968b8a1925f294b87972e2e26cb1ae92145b252b5a88fc06254453a6bc15eab14a4532e1a18e3b719ea243142c09239e3521ff8f7d7 +docfiles size=65 + RELOC/doc/latex/download/README + RELOC/doc/latex/download/download.pdf details="Package documentation" +srccontainersize 5564 +srccontainerchecksum 6090434f8a33e1ac95363082c0536a9990ea6c4936adbe151c1f8e5ad20e7ad9635ee656c9c29af9360b5d8bd427f78d26c9527c4a84dfefec7dd73a007e9839 +srcfiles size=5 + RELOC/source/latex/download/download.tex +runfiles size=2 + RELOC/tex/latex/download/download.sty +catalogue-ctan /macros/latex/contrib/download +catalogue-license lppl1.3 +catalogue-topics ext-code +catalogue-version 1.2 + +name dox +category Package +revision 46011 +shortdesc Extend the doc package +relocated 1 +longdesc The doc package provides LaTeX developers with means to +longdesc describe the usage and the definition of new macros and +longdesc environments. However, there is no simple way to extend this +longdesc functionality to other items (options or counters, for +longdesc instance). The DoX package is designed to circumvent this +longdesc limitation. +containersize 2764 +containerchecksum dc37733e7253d457b2fe09b72b808c5198f222dcde12e0d36ae546a8ad0537419fe7f27945625bb3cd3efd2b5b63991e89dede1199e89c67fe7d6917370cab67 +doccontainersize 131676 +doccontainerchecksum 4474e38d3dd35dd14b281f7d2e5ad1d6104d95579901a50b3575e846532c279111c81f813b78c4d16ca6c78ac627a30e51515ee7b178602b7338c1c799c62609 +docfiles size=44 + RELOC/doc/latex/dox/NEWS + RELOC/doc/latex/dox/README.md details="Readme" + RELOC/doc/latex/dox/THANKS + RELOC/doc/latex/dox/dox.el + RELOC/doc/latex/dox/dox.pdf details="Package documentation" + RELOC/doc/latex/dox/header.inc +srccontainersize 8456 +srccontainerchecksum 08cbe72a2af77f3cd34a78d0743ede6f0017e7edc275e56c66defd51b1550990cf00d9327ee9cca5c44b7c73870ead063346754c4dc1f1aafc00614a5d5c0707 +srcfiles size=8 + RELOC/source/latex/dox/dox.dtx + RELOC/source/latex/dox/dox.ins +runfiles size=2 + RELOC/tex/latex/dox/dox.sty +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-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 2.4 + +name dozenal +category Package +revision 47680 +shortdesc Typeset documents using base twelve numbering (also called "dozenal") +relocated 1 +longdesc The package supports typesetting documents whose counters are +longdesc represented in base twelve, also called "dozenal". It includes +longdesc a macro by David Kastrup for converting positive whole numbers +longdesc to dozenal from decimal (base ten) representation. The package +longdesc also includes a few other macros and redefines all the standard +longdesc counters to produce dozenal output. Fonts, in Roman, italic, +longdesc slanted, and boldface versions, provide ten and eleven (the +longdesc Pitman characters preferred by the Dozenal Society of Great +longdesc Britain). The fonts were designed to blend well with the +longdesc Computer Modern fonts, and are available both as Metafont +longdesc source and in Adobe Type 1 format. +containersize 101908 +containerchecksum ca4171da87126231a791f432a6015cc069f0eb0d540f8b79b3b5028f3f3e30d9202622886b582f2e351049603d0323a458fbce3d6b2565af5391a4aa94b734c0 +doccontainersize 311064 +doccontainerchecksum e7c180bed185135cfba31acbf4488ff0991066be7456a7c54625df458a24819ef8b41bc19eec955967f22fc156ad6efc9e194489178e2cffb806bf066ea42520 +docfiles size=84 + RELOC/doc/fonts/dozenal/CHANGES + RELOC/doc/fonts/dozenal/README details="Readme" + RELOC/doc/fonts/dozenal/dozenal.pdf details="Package documentation" + RELOC/doc/fonts/dozenal/dozenalfilelist.txt + RELOC/doc/fonts/dozenal/lppl.txt +srccontainersize 11940 +srccontainerchecksum 4e8c3cc35fc2d429fa286fc68eb92d2d290bbbbeabcb714d849f9132ff71bf99edfc5b08a0ae596f98e900e1b49d658af2b2b9daf1fbacf57e2b3aeefa15f6ad +srcfiles size=12 + RELOC/source/fonts/dozenal/dozenal.dtx + RELOC/source/fonts/dozenal/dozenal.ins +runfiles size=170 + RELOC/fonts/afm/public/dozenal/dozchars10.afm + RELOC/fonts/afm/public/dozenal/dozchars12.afm + RELOC/fonts/afm/public/dozenal/dozchars17.afm + RELOC/fonts/afm/public/dozenal/dozchars6.afm + RELOC/fonts/afm/public/dozenal/dozchars7.afm + RELOC/fonts/afm/public/dozenal/dozchars8.afm + RELOC/fonts/afm/public/dozenal/dozchars9.afm + RELOC/fonts/afm/public/dozenal/dozchb10.afm + RELOC/fonts/afm/public/dozenal/dozchbx10.afm + RELOC/fonts/afm/public/dozenal/dozchbx12.afm + RELOC/fonts/afm/public/dozenal/dozchbx5.afm + RELOC/fonts/afm/public/dozenal/dozchbx6.afm + RELOC/fonts/afm/public/dozenal/dozchbx7.afm + RELOC/fonts/afm/public/dozenal/dozchbx8.afm + RELOC/fonts/afm/public/dozenal/dozchbx9.afm + RELOC/fonts/afm/public/dozenal/dozchbxi10.afm + RELOC/fonts/afm/public/dozenal/dozchbxsl10.afm + RELOC/fonts/afm/public/dozenal/dozchit10.afm + RELOC/fonts/afm/public/dozenal/dozchit12.afm + RELOC/fonts/afm/public/dozenal/dozchit7.afm + RELOC/fonts/afm/public/dozenal/dozchit8.afm + RELOC/fonts/afm/public/dozenal/dozchit9.afm + RELOC/fonts/afm/public/dozenal/dozchsl10.afm + RELOC/fonts/afm/public/dozenal/dozchsl12.afm + RELOC/fonts/afm/public/dozenal/dozchsl8.afm + RELOC/fonts/afm/public/dozenal/dozchsl9.afm + RELOC/fonts/map/dvips/dozenal/dozenal.map + RELOC/fonts/source/public/dozenal/dozchars10.mf + RELOC/fonts/source/public/dozenal/dozchars12.mf + RELOC/fonts/source/public/dozenal/dozchars17.mf + RELOC/fonts/source/public/dozenal/dozchars6.mf + RELOC/fonts/source/public/dozenal/dozchars7.mf + RELOC/fonts/source/public/dozenal/dozchars8.mf + RELOC/fonts/source/public/dozenal/dozchars9.mf + RELOC/fonts/source/public/dozenal/dozchb10.mf + RELOC/fonts/source/public/dozenal/dozchbx10.mf + RELOC/fonts/source/public/dozenal/dozchbx12.mf + RELOC/fonts/source/public/dozenal/dozchbx5.mf + RELOC/fonts/source/public/dozenal/dozchbx6.mf + RELOC/fonts/source/public/dozenal/dozchbx7.mf + RELOC/fonts/source/public/dozenal/dozchbx8.mf + RELOC/fonts/source/public/dozenal/dozchbx9.mf + RELOC/fonts/source/public/dozenal/dozchbxi10.mf + RELOC/fonts/source/public/dozenal/dozchbxsl10.mf + RELOC/fonts/source/public/dozenal/dozchit10.mf + RELOC/fonts/source/public/dozenal/dozchit12.mf + RELOC/fonts/source/public/dozenal/dozchit7.mf + RELOC/fonts/source/public/dozenal/dozchit8.mf + RELOC/fonts/source/public/dozenal/dozchit9.mf + RELOC/fonts/source/public/dozenal/dozchsl10.mf + RELOC/fonts/source/public/dozenal/dozchsl12.mf + RELOC/fonts/source/public/dozenal/dozchsl8.mf + RELOC/fonts/source/public/dozenal/dozchsl9.mf + RELOC/fonts/source/public/dozenal/dozenal.mf + RELOC/fonts/source/public/dozenal/dozenalb.mf + RELOC/fonts/source/public/dozenal/dozenali.mf + RELOC/fonts/source/public/dozenal/dozenalitalic.mf + RELOC/fonts/source/public/dozenal/dozenalroman.mf + RELOC/fonts/tfm/public/dozenal/dozchars10.tfm + RELOC/fonts/tfm/public/dozenal/dozchars12.tfm + RELOC/fonts/tfm/public/dozenal/dozchars17.tfm + RELOC/fonts/tfm/public/dozenal/dozchars6.tfm + RELOC/fonts/tfm/public/dozenal/dozchars7.tfm + RELOC/fonts/tfm/public/dozenal/dozchars8.tfm + RELOC/fonts/tfm/public/dozenal/dozchars9.tfm + RELOC/fonts/tfm/public/dozenal/dozchb10.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx10.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx12.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx5.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx6.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx7.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx8.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx9.tfm + RELOC/fonts/tfm/public/dozenal/dozchbxi10.tfm + RELOC/fonts/tfm/public/dozenal/dozchbxsl10.tfm + RELOC/fonts/tfm/public/dozenal/dozchit10.tfm + RELOC/fonts/tfm/public/dozenal/dozchit12.tfm + RELOC/fonts/tfm/public/dozenal/dozchit7.tfm + RELOC/fonts/tfm/public/dozenal/dozchit8.tfm + RELOC/fonts/tfm/public/dozenal/dozchit9.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl10.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl12.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl8.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl9.tfm + RELOC/fonts/tfm/public/dozenal/gray.tfm + RELOC/fonts/type1/public/dozenal/dozchars10.pfb + RELOC/fonts/type1/public/dozenal/dozchars12.pfb + RELOC/fonts/type1/public/dozenal/dozchars17.pfb + RELOC/fonts/type1/public/dozenal/dozchars6.pfb + RELOC/fonts/type1/public/dozenal/dozchars7.pfb + RELOC/fonts/type1/public/dozenal/dozchars8.pfb + RELOC/fonts/type1/public/dozenal/dozchars9.pfb + RELOC/fonts/type1/public/dozenal/dozchb10.pfb + RELOC/fonts/type1/public/dozenal/dozchbx10.pfb + RELOC/fonts/type1/public/dozenal/dozchbx12.pfb + RELOC/fonts/type1/public/dozenal/dozchbx5.pfb + RELOC/fonts/type1/public/dozenal/dozchbx6.pfb + RELOC/fonts/type1/public/dozenal/dozchbx7.pfb + RELOC/fonts/type1/public/dozenal/dozchbx8.pfb + RELOC/fonts/type1/public/dozenal/dozchbx9.pfb + RELOC/fonts/type1/public/dozenal/dozchbxi10.pfb + RELOC/fonts/type1/public/dozenal/dozchbxsl10.pfb + RELOC/fonts/type1/public/dozenal/dozchit10.pfb + RELOC/fonts/type1/public/dozenal/dozchit12.pfb + RELOC/fonts/type1/public/dozenal/dozchit7.pfb + RELOC/fonts/type1/public/dozenal/dozchit8.pfb + RELOC/fonts/type1/public/dozenal/dozchit9.pfb + RELOC/fonts/type1/public/dozenal/dozchsl10.pfb + RELOC/fonts/type1/public/dozenal/dozchsl12.pfb + RELOC/fonts/type1/public/dozenal/dozchsl8.pfb + RELOC/fonts/type1/public/dozenal/dozchsl9.pfb + RELOC/tex/latex/dozenal/dozenal.sty +catalogue-ctan /fonts/dozenal +catalogue-license lppl1.3 +catalogue-topics font font-specialist font-mf font-type1 numbers +catalogue-version 7.2 + +name dpcircling +category Package +revision 54994 +shortdesc Decorated text boxes using TikZ +relocated 1 +longdesc This simple package provides four types of text decorations +longdesc using TikZ. You can frame your text with circles, rectangles, +longdesc jagged rectangles, and fan-shapes. The baseline will be +longdesc adjusted properly according to the surroundings. You can use +longdesc these decorations both in text mode and in math mode. You can +longdesc specify line color, line width, width, and height using option +longdesc keys. Note: The "DP" in the package name stands for "Decorated +longdesc Packets". +containersize 2508 +containerchecksum d102312ce1c70eeb9cfb279b065197ebd3ec6d3f54a47de55a5cb9828e76b2e690823a2ea19a935151c972f791783fa41a55adde03aefa54eb2b3fe3da0ea677 +doccontainersize 30880 +doccontainerchecksum b1b01183f3490897b9681927676a7eafd01367eee6ea2fcb82fdfaae59294c67d96036ef67093fab13f0493adb9dce56f4e420b486bdc5f94e8a7801efcffc4a +docfiles size=11 + RELOC/doc/latex/dpcircling/DPcircling.pdf details="Package documentation" + RELOC/doc/latex/dpcircling/DPcircling.tex + RELOC/doc/latex/dpcircling/LICENSE + RELOC/doc/latex/dpcircling/README.md details="Readme" +runfiles size=3 + RELOC/tex/latex/dpcircling/DPcircling.sty +catalogue-contact-repository https://github.com/domperor/DPcircling +catalogue-ctan /graphics/pgf/contrib/dpcircling +catalogue-license mit +catalogue-topics decoration boxing pgf-tikz +catalogue-version 1.0 + +name dpfloat +category Package +revision 17196 +shortdesc Support for double-page floats +relocated 1 +longdesc Provides fullpage and leftfullpage environments, that may be +longdesc used inside a figure, table, or other float environment. If the +longdesc first of a 2-page spread uses a "leftfullpage" environment, the +longdesc float will only be typeset on an even-numbered page, and the +longdesc two floats will appear side-by-side in a two-sided document. +containersize 1888 +containerchecksum df136498f7ba41b1335ac109667d07dd9584e6682e1d75fc82a80839bf0f6d7a4de1f5750aa738eefb96d14d2adea20a3ec9fbc92130481d9bce0abb6c6f175e +doccontainersize 194820 +doccontainerchecksum 2cbdb8711556580d14a01b9daf03b1a1095387c077413b2815bfaef1af2781fc8bc56fa7a6a36abee60d6ce6928f920c9d9c3deecc2e071e8e99d51c1421508c +docfiles size=51 + RELOC/doc/latex/dpfloat/README details="Readme" + RELOC/doc/latex/dpfloat/dpfloat.pdf details="Package documentation" + RELOC/doc/latex/dpfloat/dpfloat.tex +runfiles size=1 + RELOC/tex/latex/dpfloat/dpfloat.sty +catalogue-ctan /macros/latex/contrib/dpfloat +catalogue-license lppl +catalogue-topics float + +name dprogress +category Package +revision 15878 +shortdesc LaTeX-relevant log information for debugging +relocated 1 +longdesc The package logs LaTeX's progress through the file, making the +longdesc LaTeX output more verbose. This helps to make LaTeX debugging +longdesc easier, as it is simpler to find where exactly LaTeX failed. +longdesc The package outputs the typesetting of section, subsection and +longdesc subsubsection headers and (if amsmath is loaded) details of the +longdesc align environment. +containersize 1568 +containerchecksum 4f56a2d6e345cb98eba3ffddfa977bd48661d90bd10712387141b3398c9a85e8b9d7b0f33e75635b7a98e91176f1e866ecf0b14ef0197fc488bf976dd4889673 +doccontainersize 63844 +doccontainerchecksum 455451396b22b3d38288a5c51f6c2413c56ffd07ac1331c3727c4f382eaa07f0a128373ba033ae58e53411e69a4ec0eca67609fc3c111c91f24f2adb2536a2e1 +docfiles size=20 + RELOC/doc/latex/dprogress/README details="Readme" + RELOC/doc/latex/dprogress/dprogress.pdf details="Package documentation" +srccontainersize 2744 +srccontainerchecksum de6166c9c79f62c0f3eb973b6383f2bb486a8f7673628862d54af8e00a5ddcdf78419ea819c95e750f47fa3e65cd58b598e3a3510d43ec3d4d3fa9538a846a79 +srcfiles size=3 + RELOC/source/latex/dprogress/dprogress.dtx + RELOC/source/latex/dprogress/dprogress.ins +runfiles size=2 + RELOC/tex/latex/dprogress/dprogress.sty +catalogue-ctan /macros/latex/contrib/dprogress +catalogue-license lppl +catalogue-topics doc-debug +catalogue-version 0.1 + +name drac +category Package +revision 15878 +shortdesc Declare active character substitution, robustly +relocated 1 +longdesc The package provides macros \DeclareRobustActChar and +longdesc \ReDeclareRobActChar. One uses \DeclareRobustActChar in the +longdesc same way one would use \DeclareRobustCommand; the macro +longdesc \protects the active character when it appears in a moving +longdesc argument. \ReDeclareRobActChar redefines an active character +longdesc previously defined with \DeclareRobustActChar, in the same way +longdesc that \renewcommand works for ordinary commands. +containersize 1368 +containerchecksum f45c94e222a6bcae0d87ab5aebf0f594f1674a49787391dfb9cce32f9b36a0aa6a81e84ea4ca345e0918ff2166e36738ae9969e4d9e4653bbb99ac6a7f0cc63f +doccontainersize 588784 +doccontainerchecksum 7e6debf9580d7c145d8f95329aeadd63012bcfe3ac04fb9c4a3e815391757051ce021e4e2659c96fd7ff5066e3e324ac947cfaca16e52bf5895fd5724f81f552 +docfiles size=183 + RELOC/doc/latex/drac/drac-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/drac/drac.pdf details="Package documentation (English)" language="en" +srccontainersize 10284 +srccontainerchecksum a56b3648bc75174179ac74eda67d84226985d18863270cdf6b6c1688ff1405389ad27f20abdc6a41f68520e1d95890fe021d1896d00a5c44a6a4ec2b9c380944 +srcfiles size=12 + RELOC/source/latex/drac/LISEZMOI + RELOC/source/latex/drac/Makefile + RELOC/source/latex/drac/README + RELOC/source/latex/drac/drac-en.dtx + RELOC/source/latex/drac/drac-fr.dtx + RELOC/source/latex/drac/drac.ins +runfiles size=1 + RELOC/tex/latex/drac/drac.sty +catalogue-ctan /macros/latex/contrib/drac +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1 + +name draftcopy +category Package +revision 15878 +shortdesc Identify draft copies +relocated 1 +longdesc Places the word DRAFT (or other words) in light grey diagonally +longdesc across the background (or at the bottom) of each (or selected) +longdesc pages of the document. The package uses PostScript \special +longdesc commands, and may not therefore be used with pdfLaTeX. For that +longdesc usage, consider the wallpaper or draftwatermark packages. +containersize 4252 +containerchecksum f1f2ac803e1858ffab880c7427ed2dfeaeb435255e83ed795e0d5b4262fce1fbf7593653035af2e45d4731107c8f886938015ee1a7fd0018001c0e39e9f1018d +doccontainersize 122724 +doccontainerchecksum f7a4941c26c92223a9dde51e288380efe3b701d847051c13345e97f5a082cb3cd9e5d5421dfb2b1f1cdc12214df1ce6970a8ca6fe7463faad73af1a12c3542e7 +docfiles size=64 + RELOC/doc/latex/draftcopy/README details="Readme" + RELOC/doc/latex/draftcopy/THIS-IS-VERSION-2.16 + RELOC/doc/latex/draftcopy/draftcopy-test-1.tex + RELOC/doc/latex/draftcopy/draftcopy-test-10.tex + RELOC/doc/latex/draftcopy/draftcopy-test-11.tex + RELOC/doc/latex/draftcopy/draftcopy-test-12.tex + RELOC/doc/latex/draftcopy/draftcopy-test-13.tex + RELOC/doc/latex/draftcopy/draftcopy-test-14.tex + RELOC/doc/latex/draftcopy/draftcopy-test-15.tex + RELOC/doc/latex/draftcopy/draftcopy-test-16.tex + RELOC/doc/latex/draftcopy/draftcopy-test-2.tex + RELOC/doc/latex/draftcopy/draftcopy-test-3.tex + RELOC/doc/latex/draftcopy/draftcopy-test-4.tex + RELOC/doc/latex/draftcopy/draftcopy-test-5.tex + RELOC/doc/latex/draftcopy/draftcopy-test-6.tex + RELOC/doc/latex/draftcopy/draftcopy-test-7.tex + RELOC/doc/latex/draftcopy/draftcopy-test-8.tex + RELOC/doc/latex/draftcopy/draftcopy-test-9.tex + RELOC/doc/latex/draftcopy/draftcopy.doc + RELOC/doc/latex/draftcopy/draftcopy.pdf details="Package documentation" +srccontainersize 3072 +srccontainerchecksum 9320e076a200fa5d7fa297c7d3228ce77ad9a9a56f57e4ef250a21320e9f2e429004ab716747499a264108ece97ae03388df084c24e2a370f57ee22b80628cba +srcfiles size=3 + RELOC/source/latex/draftcopy/Makefile + RELOC/source/latex/draftcopy/draftcopy.dtx + RELOC/source/latex/draftcopy/draftcopy.ins +runfiles size=5 + RELOC/tex/latex/draftcopy/draftcopy.cfg + RELOC/tex/latex/draftcopy/draftcopy.sty +catalogue-ctan /macros/latex/contrib/draftcopy +catalogue-license lppl +catalogue-topics editorial +catalogue-version 2.16 + +name draftfigure +category Package +revision 44854 +shortdesc Replace figures with a white box and additional features +relocated 1 +longdesc With this package you can control the outcome of a figure which +longdesc is set to draft and modify the display with various options. +containersize 1828 +containerchecksum e8ced947e69803243543657185e8fb28e67776dc9eee5e095126ec712fa368c32903f53243aaabb7308c895cf8e0c10a6d89c33e6b6c5d109f0300dab5213e60 +doccontainersize 163348 +doccontainerchecksum f0a9a59ee326746802fb33412c44148ed8c836a24653df6685ecb69bc76870cae63ac8955274705639e658491566da0d0633ee8d57cf57d58fe43a971252ee05 +docfiles size=48 + RELOC/doc/latex/draftfigure/README.md details="Readme" + RELOC/doc/latex/draftfigure/draftfigure.pdf details="Package documentation" + RELOC/doc/latex/draftfigure/draftfigure.tex +runfiles size=1 + RELOC/tex/latex/draftfigure/draftfigure.sty +catalogue-contact-announce https://github.com/LukasCBossert/draftfigure +catalogue-contact-bugs https://github.com/LukasCBossert/draftfigure/issues +catalogue-contact-development https://github.com/LukasCBossert/draftfigure +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-license lppl1.3 +catalogue-topics comp-supp editorial layout +catalogue-version 0.2 + +name draftwatermark +category Package +revision 57099 +shortdesc Put a grey textual watermark on document pages +relocated 1 +longdesc The package provides a means to add a watermark (typically a +longdesc light gray piece of text) on every page or on the first page of +longdesc a document. Typical usage may consist in writing words such as +longdesc DRAFT or CONFIDENTIAL across document pages. The package +longdesc performs a similar function to that of draftcopy, but its +longdesc implementation is output device independent. As of today, the +longdesc package relies on the new shipout hooks directly provided by +longdesc LaTeX. For users of older versions of LaTeX, the package also +longdesc provides a legacy version of itself (that is automatically +longdesc loaded, currently being at release 2.3) which relies on the +longdesc everypage package. Note that this legacy version will +longdesc progressively lag behind in terms of features. +containersize 2816 +containerchecksum c12311ce3723e6b93e8d21df2a50a3c1ab2326aa5cb6a1600fb848efd5309fa9a1c920e0ad27c785925387af5872570142aae61a2ffea0b3578d10209060e9dc +doccontainersize 298848 +doccontainerchecksum bf3c28f78f03ebe43c84d722d668c14e0a751fb9e0d53ccb6a81cebf40b78f95b53fc3871ffa4919a94c260de861e93048b3adb590dee2bb8b600be1bbeaef3e +docfiles size=79 + RELOC/doc/latex/draftwatermark/README.md details="Readme" + RELOC/doc/latex/draftwatermark/draftwatermark.pdf details="Package documentation" + RELOC/doc/latex/draftwatermark/test_draftwatermark-1.tex + RELOC/doc/latex/draftwatermark/test_draftwatermark-2.tex + RELOC/doc/latex/draftwatermark/test_draftwatermark-3.tex + RELOC/doc/latex/draftwatermark/test_draftwatermark-4.tex + RELOC/doc/latex/draftwatermark/test_draftwatermark-5.tex +srccontainersize 12480 +srccontainerchecksum 7f9eacb71dc803059f6d9951aa7958effb9e97bb2030884ed02f0fcd43ad554f860ccebc455ede5893d67c527915f8a7093a94b2f146e4884e23303fe882527e +srcfiles size=14 + RELOC/source/latex/draftwatermark/draftwatermark.dtx + RELOC/source/latex/draftwatermark/draftwatermark.ins +runfiles size=4 + RELOC/tex/latex/draftwatermark/draftwatermark-2x.sty + RELOC/tex/latex/draftwatermark/draftwatermark.sty +catalogue-also eso-pic +catalogue-contact-bugs https://github.com/callegar/LaTeX-draftwatermark/issues +catalogue-contact-home https://github.com/callegar/LaTeX-draftwatermark +catalogue-contact-repository https://github.com/callegar/LaTeX-draftwatermark +catalogue-ctan /macros/latex/contrib/draftwatermark +catalogue-license lppl1.3 +catalogue-topics editorial watermark +catalogue-version 3.0 + +name dramatist +category Package +revision 35866 +shortdesc Typeset dramas, both in verse and in prose +relocated 1 +longdesc This package is intended for typesetting drama of any length. +longdesc It provides two environments for typesetting dialogues in prose +longdesc or in verse; new document divisions corresponding to acts and +longdesc scenes; macros that control the appearance of characters and +longdesc stage directions; and automatic generation of a `dramatis +longdesc personae' list. +containersize 3968 +containerchecksum d61da72538a7d83ee902081aefc23f3addf2fd6e5fa7ebb207fdac16546d13602c50419682e842df8f36a899c2c0aba0aaf615bf64202135dd9f470f5391838d +doccontainersize 416040 +doccontainerchecksum fc28e1dc8614d836637350a20478a0e8a03121909cb42bfd1cf4caf8e7adc01a4ac3eba08e82c389c41a567cd00f191ecd8938ac40a0a226e2fbdac047ecb733 +docfiles size=103 + RELOC/doc/latex/dramatist/README details="Package Readme" + RELOC/doc/latex/dramatist/dramatist.pdf details="Package documentation" +srccontainersize 34464 +srccontainerchecksum a364353dbbb9540a9f43c26fbfe6be8f814452a23e9f25c5a4c4f45a65534e0696dee993bddea4eb20eed284b892d258f6947fb0f96af63a0516f9f0fae01651 +srcfiles size=32 + RELOC/source/latex/dramatist/dramatist.dtx + RELOC/source/latex/dramatist/dramatist.ins +runfiles size=4 + RELOC/tex/latex/dramatist/dramatist.sty +catalogue-also sides +catalogue-ctan /macros/latex/contrib/dramatist +catalogue-license gpl +catalogue-topics drama-script +catalogue-version 1.2e + +name dratex +category Package +revision 15878 +shortdesc General drawing macros +relocated 1 +longdesc A low level (DraTex.sty) and a high-level (AlDraTex.sty) +longdesc drawing package written entirely in TeX. +containersize 45280 +containerchecksum 1a18f8866d1cffb0ac3c277bf27e1585c7596eab60ed51756077abe3154b6d67ea95205f60b5a244e9acabb05e8dc95a792d48f0a2fc492f90d224f85895fdd8 +doccontainersize 12052 +doccontainerchecksum 0ff34bd23dd8718f4f8b0dc3e84068ca2b38a9758849d98230f1a8d4561705d6db7be3b0fcb34621054993f27df7a9215267b3ebbd7fb3d77b8cd9cfefa0ad60 +docfiles size=12 + RELOC/doc/generic/dratex/Examples.tex + RELOC/doc/generic/dratex/README +runfiles size=54 + RELOC/tex/generic/dratex/AlDraTex.sty + RELOC/tex/generic/dratex/DraTex.sty + RELOC/tex/generic/dratex/TeXProject.sty + RELOC/tex/generic/dratex/wotree.sty +catalogue-ctan /graphics/dratex +catalogue-license lppl +catalogue-topics graphics-in-tex + +name drawmatrix +category Package +revision 44471 +shortdesc Draw visual representations of matrices in LaTeX +relocated 1 +longdesc The package provides macros to visually represent matrices. +longdesc Various options allow to change the visualizations, e.g., +longdesc drawing rectangular, triangular, or banded matrices. +containersize 2456 +containerchecksum 6be4d4ee6970956dd2f3b31d31ca0cfbad268e2f98ae64fd87a49de9ab26765447531121aa0edc157779f3f9c0dd76ab2ec3f747912f4204aab9e2e7181368f6 +doccontainersize 313708 +doccontainerchecksum 07eec69024d4daff597f2a937178f66413e6dc4974a2044f983e809b046f09140db7eaf3cfd68833bd95be0d56b4a564dfc9ad4d771fa124f55ea3783eafca1b +docfiles size=78 + RELOC/doc/latex/drawmatrix/README.md details="Readme" + RELOC/doc/latex/drawmatrix/drawmatrix.pdf details="Package documentation" +srccontainersize 5136 +srccontainerchecksum 8125f7c3b0867df9d8f21e45d89a03e6ff0f946d946646c26b0ca825a30c62051264f45e5c2da5bbd45b35afbc2f7f7120e9ea3d2d289f6a228385860d25f523 +srcfiles size=6 + RELOC/source/latex/drawmatrix/drawmatrix.dtx + RELOC/source/latex/drawmatrix/drawmatrix.ins +runfiles size=3 + RELOC/tex/latex/drawmatrix/drawmatrix.sty +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-license mit +catalogue-topics matrix +catalogue-version 1.5.0 + +name drawstack +category Package +revision 28582 +shortdesc Draw execution stacks +relocated 1 +longdesc This simple LaTeX package provides support for drawing +longdesc execution stack (typically to illustrate assembly language +longdesc notions). The code is written on top of TikZ. +containersize 2256 +containerchecksum 383eab0b77675ae418a775a413c37720d6f74d51d1a31bdb2923b45ced53afa576f10304e372171298ddbd566a8418526d291f74a1871eaba36ea3793d7d0173 +doccontainersize 104944 +doccontainerchecksum d435447ec29bc26262886b3dc4c41cefae81d24e0704857a9ea61f1fc08ff8e4bfb4ead7686a9f49808dff30da47fc5638e2c0dbea4c6a551800a373f68df0e6 +docfiles size=31 + RELOC/doc/latex/drawstack/Makefile + RELOC/doc/latex/drawstack/README details="Readme" + RELOC/doc/latex/drawstack/stack-example.pdf details="Usage example" + RELOC/doc/latex/drawstack/stack-example.tex +runfiles size=2 + RELOC/tex/latex/drawstack/drawstack.sty +catalogue-ctan /macros/latex/contrib/drawstack +catalogue-license lppl1.3 +catalogue-topics comp-sci graphics-use + +name drm +category Package +revision 38157 +shortdesc A complete family of fonts written in Metafont +relocated 1 +longdesc The package provides access to the DRM (Don's Revised Modern) +longdesc family of fonts, which includes a variety of optical sizes in +longdesc Roman (in four weights), italic, and small caps, among other +longdesc shapes, along with a set of symbols and ornaments. It is +longdesc intended to be a full-body text font, but its larger sizes can +longdesc also be used for simple display purposes, and its significant +longdesc body of symbols can stand on its own. It comes complete with +longdesc textual ("old-style") and lining figures, and even has +longdesc small-caps figures. It also comes with extensible decorative +longdesc rules to be used with ornaments from itself or other fonts, +longdesc along with an extremely flexible ellipsis package. +containersize 13063116 +containerchecksum 662a2593713dc02debd4702b5184586736f12200aba4079154e6890b49d581810e1a7a94f0d3b6750ecd241dc03cd5a638a3ea5bd4792f13829e7812f5620b36 +doccontainersize 2979440 +doccontainerchecksum 7821503ea6548fa200221d2c2234389a252ddc61498d66389f0afd13b6c36536b744f060f42bf26c4e2be722a7cbca8841b1b76510391da4960dcfbfb9956177 +docfiles size=1005 + RELOC/doc/fonts/drm/CHANGES + RELOC/doc/fonts/drm/OFL.txt + RELOC/doc/fonts/drm/README details="Readme" + RELOC/doc/fonts/drm/allcomp.sh + RELOC/doc/fonts/drm/allfonts.sh + RELOC/doc/fonts/drm/chartscript.sh + RELOC/doc/fonts/drm/convert.sh + RELOC/doc/fonts/drm/drm.pdf details="Package documentation" + RELOC/doc/fonts/drm/drm_font_tables.pdf + RELOC/doc/fonts/drm/drmfilelist.txt + RELOC/doc/fonts/drm/fontconvert.sh + RELOC/doc/fonts/drm/gpl-3.0.txt + RELOC/doc/fonts/drm/lppl-1-3c.tex + RELOC/doc/fonts/drm/ofl_v1-1.tex + RELOC/doc/fonts/drm/small_specimen.pdf details="Font samples (1)" + RELOC/doc/fonts/drm/small_specimen.tex + RELOC/doc/fonts/drm/specimen.pdf details="Font samples (2)" + RELOC/doc/fonts/drm/specimen.tex +srccontainersize 37304 +srccontainerchecksum a505f89568d63bc36799a3802fdd4e5a4903a10226b565c58b1b6d0900f0efeb699838ef17f84d9720558c7e1959e33d97c387b371862366726c6b99e30e838c +srcfiles size=39 + RELOC/source/fonts/drm/drm.dtx + RELOC/source/fonts/drm/drm.ins +runfiles size=8144 + RELOC/fonts/afm/public/drm/drm10.afm + RELOC/fonts/afm/public/drm/drm11.afm + RELOC/fonts/afm/public/drm/drm12.afm + RELOC/fonts/afm/public/drm/drm14.afm + RELOC/fonts/afm/public/drm/drm17.afm + RELOC/fonts/afm/public/drm/drm24.afm + RELOC/fonts/afm/public/drm/drm6.afm + RELOC/fonts/afm/public/drm/drm7.afm + RELOC/fonts/afm/public/drm/drm8.afm + RELOC/fonts/afm/public/drm/drm9.afm + RELOC/fonts/afm/public/drm/drmb10.afm + RELOC/fonts/afm/public/drm/drmb11.afm + RELOC/fonts/afm/public/drm/drmb12.afm + RELOC/fonts/afm/public/drm/drmb14.afm + RELOC/fonts/afm/public/drm/drmb17.afm + RELOC/fonts/afm/public/drm/drmb24.afm + RELOC/fonts/afm/public/drm/drmb6.afm + RELOC/fonts/afm/public/drm/drmb7.afm + RELOC/fonts/afm/public/drm/drmb8.afm + RELOC/fonts/afm/public/drm/drmb9.afm + RELOC/fonts/afm/public/drm/drmbx10.afm + RELOC/fonts/afm/public/drm/drmbx11.afm + RELOC/fonts/afm/public/drm/drmbx12.afm + RELOC/fonts/afm/public/drm/drmbx14.afm + RELOC/fonts/afm/public/drm/drmbx17.afm + RELOC/fonts/afm/public/drm/drmbx24.afm + RELOC/fonts/afm/public/drm/drmbx6.afm + RELOC/fonts/afm/public/drm/drmbx7.afm + RELOC/fonts/afm/public/drm/drmbx8.afm + RELOC/fonts/afm/public/drm/drmbx9.afm + RELOC/fonts/afm/public/drm/drmdoz10.afm + RELOC/fonts/afm/public/drm/drmdoz11.afm + RELOC/fonts/afm/public/drm/drmdoz12.afm + RELOC/fonts/afm/public/drm/drmdoz14.afm + RELOC/fonts/afm/public/drm/drmdoz17.afm + RELOC/fonts/afm/public/drm/drmdoz24.afm + RELOC/fonts/afm/public/drm/drmdoz6.afm + RELOC/fonts/afm/public/drm/drmdoz7.afm + RELOC/fonts/afm/public/drm/drmdoz8.afm + RELOC/fonts/afm/public/drm/drmdoz9.afm + RELOC/fonts/afm/public/drm/drmdozb10.afm + RELOC/fonts/afm/public/drm/drmdozb11.afm + RELOC/fonts/afm/public/drm/drmdozb12.afm + RELOC/fonts/afm/public/drm/drmdozb14.afm + RELOC/fonts/afm/public/drm/drmdozb17.afm + RELOC/fonts/afm/public/drm/drmdozb24.afm + RELOC/fonts/afm/public/drm/drmdozb6.afm + RELOC/fonts/afm/public/drm/drmdozb7.afm + RELOC/fonts/afm/public/drm/drmdozb8.afm + RELOC/fonts/afm/public/drm/drmdozb9.afm + RELOC/fonts/afm/public/drm/drmdozbx10.afm + RELOC/fonts/afm/public/drm/drmdozbx11.afm + RELOC/fonts/afm/public/drm/drmdozbx12.afm + RELOC/fonts/afm/public/drm/drmdozbx14.afm + RELOC/fonts/afm/public/drm/drmdozbx17.afm + RELOC/fonts/afm/public/drm/drmdozbx24.afm + RELOC/fonts/afm/public/drm/drmdozbx6.afm + RELOC/fonts/afm/public/drm/drmdozbx7.afm + RELOC/fonts/afm/public/drm/drmdozbx8.afm + RELOC/fonts/afm/public/drm/drmdozbx9.afm + RELOC/fonts/afm/public/drm/drmdozit10.afm + RELOC/fonts/afm/public/drm/drmdozit11.afm + RELOC/fonts/afm/public/drm/drmdozit12.afm + RELOC/fonts/afm/public/drm/drmdozit14.afm + RELOC/fonts/afm/public/drm/drmdozit17.afm + RELOC/fonts/afm/public/drm/drmdozit24.afm + RELOC/fonts/afm/public/drm/drmdozit6.afm + RELOC/fonts/afm/public/drm/drmdozit7.afm + RELOC/fonts/afm/public/drm/drmdozit8.afm + RELOC/fonts/afm/public/drm/drmdozit9.afm + RELOC/fonts/afm/public/drm/drmdozitbx10.afm + RELOC/fonts/afm/public/drm/drmdozitbx11.afm + RELOC/fonts/afm/public/drm/drmdozitbx12.afm + RELOC/fonts/afm/public/drm/drmdozitbx14.afm + RELOC/fonts/afm/public/drm/drmdozitbx17.afm + RELOC/fonts/afm/public/drm/drmdozitbx24.afm + RELOC/fonts/afm/public/drm/drmdozitbx6.afm + RELOC/fonts/afm/public/drm/drmdozitbx7.afm + RELOC/fonts/afm/public/drm/drmdozitbx8.afm + RELOC/fonts/afm/public/drm/drmdozitbx9.afm + RELOC/fonts/afm/public/drm/drmdozitsc10.afm + RELOC/fonts/afm/public/drm/drmdozitsc11.afm + RELOC/fonts/afm/public/drm/drmdozitsc12.afm + RELOC/fonts/afm/public/drm/drmdozitsc14.afm + RELOC/fonts/afm/public/drm/drmdozitsc17.afm + RELOC/fonts/afm/public/drm/drmdozitsc24.afm + RELOC/fonts/afm/public/drm/drmdozitsc6.afm + RELOC/fonts/afm/public/drm/drmdozitsc7.afm + RELOC/fonts/afm/public/drm/drmdozitsc8.afm + RELOC/fonts/afm/public/drm/drmdozitsc9.afm + RELOC/fonts/afm/public/drm/drmdozittc10.afm + RELOC/fonts/afm/public/drm/drmdozittc11.afm + RELOC/fonts/afm/public/drm/drmdozittc12.afm + RELOC/fonts/afm/public/drm/drmdozittc14.afm + RELOC/fonts/afm/public/drm/drmdozittc17.afm + RELOC/fonts/afm/public/drm/drmdozittc24.afm + RELOC/fonts/afm/public/drm/drmdozittc6.afm + RELOC/fonts/afm/public/drm/drmdozittc7.afm + RELOC/fonts/afm/public/drm/drmdozittc8.afm + RELOC/fonts/afm/public/drm/drmdozittc9.afm + RELOC/fonts/afm/public/drm/drmdozl10.afm + RELOC/fonts/afm/public/drm/drmdozl11.afm + RELOC/fonts/afm/public/drm/drmdozl12.afm + RELOC/fonts/afm/public/drm/drmdozl14.afm + RELOC/fonts/afm/public/drm/drmdozl17.afm + RELOC/fonts/afm/public/drm/drmdozl24.afm + RELOC/fonts/afm/public/drm/drmdozl6.afm + RELOC/fonts/afm/public/drm/drmdozl7.afm + RELOC/fonts/afm/public/drm/drmdozl8.afm + RELOC/fonts/afm/public/drm/drmdozl9.afm + RELOC/fonts/afm/public/drm/drmdozsc10.afm + RELOC/fonts/afm/public/drm/drmdozsc11.afm + RELOC/fonts/afm/public/drm/drmdozsc12.afm + RELOC/fonts/afm/public/drm/drmdozsc14.afm + RELOC/fonts/afm/public/drm/drmdozsc17.afm + RELOC/fonts/afm/public/drm/drmdozsc24.afm + RELOC/fonts/afm/public/drm/drmdozsc6.afm + RELOC/fonts/afm/public/drm/drmdozsc7.afm + RELOC/fonts/afm/public/drm/drmdozsc8.afm + RELOC/fonts/afm/public/drm/drmdozsc9.afm + RELOC/fonts/afm/public/drm/drmdozscbx10.afm + RELOC/fonts/afm/public/drm/drmdozscbx11.afm + RELOC/fonts/afm/public/drm/drmdozscbx12.afm + RELOC/fonts/afm/public/drm/drmdozscbx14.afm + RELOC/fonts/afm/public/drm/drmdozscbx17.afm + RELOC/fonts/afm/public/drm/drmdozscbx24.afm + RELOC/fonts/afm/public/drm/drmdozscbx6.afm + RELOC/fonts/afm/public/drm/drmdozscbx7.afm + RELOC/fonts/afm/public/drm/drmdozscbx8.afm + RELOC/fonts/afm/public/drm/drmdozscbx9.afm + RELOC/fonts/afm/public/drm/drmdozsl10.afm + RELOC/fonts/afm/public/drm/drmdozsl11.afm + RELOC/fonts/afm/public/drm/drmdozsl12.afm + RELOC/fonts/afm/public/drm/drmdozsl14.afm + RELOC/fonts/afm/public/drm/drmdozsl17.afm + RELOC/fonts/afm/public/drm/drmdozsl24.afm + RELOC/fonts/afm/public/drm/drmdozsl6.afm + RELOC/fonts/afm/public/drm/drmdozsl7.afm + RELOC/fonts/afm/public/drm/drmdozsl8.afm + RELOC/fonts/afm/public/drm/drmdozsl9.afm + RELOC/fonts/afm/public/drm/drmdoztc10.afm + RELOC/fonts/afm/public/drm/drmdoztc11.afm + RELOC/fonts/afm/public/drm/drmdoztc12.afm + RELOC/fonts/afm/public/drm/drmdoztc14.afm + RELOC/fonts/afm/public/drm/drmdoztc17.afm + RELOC/fonts/afm/public/drm/drmdoztc24.afm + RELOC/fonts/afm/public/drm/drmdoztc6.afm + RELOC/fonts/afm/public/drm/drmdoztc7.afm + RELOC/fonts/afm/public/drm/drmdoztc8.afm + RELOC/fonts/afm/public/drm/drmdoztc9.afm + RELOC/fonts/afm/public/drm/drmdoztcbx10.afm + RELOC/fonts/afm/public/drm/drmdoztcbx11.afm + RELOC/fonts/afm/public/drm/drmdoztcbx12.afm + RELOC/fonts/afm/public/drm/drmdoztcbx14.afm + RELOC/fonts/afm/public/drm/drmdoztcbx17.afm + RELOC/fonts/afm/public/drm/drmdoztcbx24.afm + RELOC/fonts/afm/public/drm/drmdoztcbx6.afm + RELOC/fonts/afm/public/drm/drmdoztcbx7.afm + RELOC/fonts/afm/public/drm/drmdoztcbx8.afm + RELOC/fonts/afm/public/drm/drmdoztcbx9.afm + RELOC/fonts/afm/public/drm/drmdozui10.afm + RELOC/fonts/afm/public/drm/drmdozui11.afm + RELOC/fonts/afm/public/drm/drmdozui12.afm + RELOC/fonts/afm/public/drm/drmdozui14.afm + RELOC/fonts/afm/public/drm/drmdozui17.afm + RELOC/fonts/afm/public/drm/drmdozui24.afm + RELOC/fonts/afm/public/drm/drmdozui6.afm + RELOC/fonts/afm/public/drm/drmdozui7.afm + RELOC/fonts/afm/public/drm/drmdozui8.afm + RELOC/fonts/afm/public/drm/drmdozui9.afm + RELOC/fonts/afm/public/drm/drmdozuibx10.afm + RELOC/fonts/afm/public/drm/drmdozuibx11.afm + RELOC/fonts/afm/public/drm/drmdozuibx12.afm + RELOC/fonts/afm/public/drm/drmdozuibx14.afm + RELOC/fonts/afm/public/drm/drmdozuibx17.afm + RELOC/fonts/afm/public/drm/drmdozuibx24.afm + RELOC/fonts/afm/public/drm/drmdozuibx6.afm + RELOC/fonts/afm/public/drm/drmdozuibx7.afm + RELOC/fonts/afm/public/drm/drmdozuibx8.afm + RELOC/fonts/afm/public/drm/drmdozuibx9.afm + RELOC/fonts/afm/public/drm/drmfigs10.afm + RELOC/fonts/afm/public/drm/drmfigs11.afm + RELOC/fonts/afm/public/drm/drmfigs12.afm + RELOC/fonts/afm/public/drm/drmfigs14.afm + RELOC/fonts/afm/public/drm/drmfigs17.afm + RELOC/fonts/afm/public/drm/drmfigs24.afm + RELOC/fonts/afm/public/drm/drmfigs6.afm + RELOC/fonts/afm/public/drm/drmfigs7.afm + RELOC/fonts/afm/public/drm/drmfigs8.afm + RELOC/fonts/afm/public/drm/drmfigs9.afm + RELOC/fonts/afm/public/drm/drmgrk10.afm + RELOC/fonts/afm/public/drm/drminf10.afm + RELOC/fonts/afm/public/drm/drminf11.afm + RELOC/fonts/afm/public/drm/drminf12.afm + RELOC/fonts/afm/public/drm/drminf14.afm + RELOC/fonts/afm/public/drm/drminf17.afm + RELOC/fonts/afm/public/drm/drminf24.afm + RELOC/fonts/afm/public/drm/drminf6.afm + RELOC/fonts/afm/public/drm/drminf7.afm + RELOC/fonts/afm/public/drm/drminf8.afm + RELOC/fonts/afm/public/drm/drminf9.afm + RELOC/fonts/afm/public/drm/drmit10.afm + RELOC/fonts/afm/public/drm/drmit11.afm + RELOC/fonts/afm/public/drm/drmit12.afm + RELOC/fonts/afm/public/drm/drmit14.afm + RELOC/fonts/afm/public/drm/drmit17.afm + RELOC/fonts/afm/public/drm/drmit24.afm + RELOC/fonts/afm/public/drm/drmit6.afm + RELOC/fonts/afm/public/drm/drmit7.afm + RELOC/fonts/afm/public/drm/drmit8.afm + RELOC/fonts/afm/public/drm/drmit9.afm + RELOC/fonts/afm/public/drm/drmitbx10.afm + RELOC/fonts/afm/public/drm/drmitbx11.afm + RELOC/fonts/afm/public/drm/drmitbx12.afm + RELOC/fonts/afm/public/drm/drmitbx14.afm + RELOC/fonts/afm/public/drm/drmitbx17.afm + RELOC/fonts/afm/public/drm/drmitbx24.afm + RELOC/fonts/afm/public/drm/drmitbx6.afm + RELOC/fonts/afm/public/drm/drmitbx7.afm + RELOC/fonts/afm/public/drm/drmitbx8.afm + RELOC/fonts/afm/public/drm/drmitbx9.afm + RELOC/fonts/afm/public/drm/drmitsc10.afm + RELOC/fonts/afm/public/drm/drmitsc11.afm + RELOC/fonts/afm/public/drm/drmitsc12.afm + RELOC/fonts/afm/public/drm/drmitsc14.afm + RELOC/fonts/afm/public/drm/drmitsc17.afm + RELOC/fonts/afm/public/drm/drmitsc24.afm + RELOC/fonts/afm/public/drm/drmitsc6.afm + RELOC/fonts/afm/public/drm/drmitsc7.afm + RELOC/fonts/afm/public/drm/drmitsc8.afm + RELOC/fonts/afm/public/drm/drmitsc9.afm + RELOC/fonts/afm/public/drm/drmittc10.afm + RELOC/fonts/afm/public/drm/drmittc11.afm + RELOC/fonts/afm/public/drm/drmittc12.afm + RELOC/fonts/afm/public/drm/drmittc14.afm + RELOC/fonts/afm/public/drm/drmittc17.afm + RELOC/fonts/afm/public/drm/drmittc24.afm + RELOC/fonts/afm/public/drm/drmittc6.afm + RELOC/fonts/afm/public/drm/drmittc7.afm + RELOC/fonts/afm/public/drm/drmittc8.afm + RELOC/fonts/afm/public/drm/drmittc9.afm + RELOC/fonts/afm/public/drm/drml10.afm + RELOC/fonts/afm/public/drm/drml11.afm + RELOC/fonts/afm/public/drm/drml12.afm + RELOC/fonts/afm/public/drm/drml14.afm + RELOC/fonts/afm/public/drm/drml17.afm + RELOC/fonts/afm/public/drm/drml24.afm + RELOC/fonts/afm/public/drm/drml6.afm + RELOC/fonts/afm/public/drm/drml7.afm + RELOC/fonts/afm/public/drm/drml8.afm + RELOC/fonts/afm/public/drm/drml9.afm + RELOC/fonts/afm/public/drm/drmmi10.afm + RELOC/fonts/afm/public/drm/drmsc10.afm + RELOC/fonts/afm/public/drm/drmsc11.afm + RELOC/fonts/afm/public/drm/drmsc12.afm + RELOC/fonts/afm/public/drm/drmsc14.afm + RELOC/fonts/afm/public/drm/drmsc17.afm + RELOC/fonts/afm/public/drm/drmsc24.afm + RELOC/fonts/afm/public/drm/drmsc6.afm + RELOC/fonts/afm/public/drm/drmsc7.afm + RELOC/fonts/afm/public/drm/drmsc8.afm + RELOC/fonts/afm/public/drm/drmsc9.afm + RELOC/fonts/afm/public/drm/drmscbx10.afm + RELOC/fonts/afm/public/drm/drmscbx11.afm + RELOC/fonts/afm/public/drm/drmscbx12.afm + RELOC/fonts/afm/public/drm/drmscbx14.afm + RELOC/fonts/afm/public/drm/drmscbx17.afm + RELOC/fonts/afm/public/drm/drmscbx24.afm + RELOC/fonts/afm/public/drm/drmscbx6.afm + RELOC/fonts/afm/public/drm/drmscbx7.afm + RELOC/fonts/afm/public/drm/drmscbx8.afm + RELOC/fonts/afm/public/drm/drmscbx9.afm + RELOC/fonts/afm/public/drm/drmsl10.afm + RELOC/fonts/afm/public/drm/drmsl11.afm + RELOC/fonts/afm/public/drm/drmsl12.afm + RELOC/fonts/afm/public/drm/drmsl14.afm + RELOC/fonts/afm/public/drm/drmsl17.afm + RELOC/fonts/afm/public/drm/drmsl24.afm + RELOC/fonts/afm/public/drm/drmsl6.afm + RELOC/fonts/afm/public/drm/drmsl7.afm + RELOC/fonts/afm/public/drm/drmsl8.afm + RELOC/fonts/afm/public/drm/drmsl9.afm + RELOC/fonts/afm/public/drm/drmsy10.afm + RELOC/fonts/afm/public/drm/drmsym10.afm + RELOC/fonts/afm/public/drm/drmsym11.afm + RELOC/fonts/afm/public/drm/drmsym12.afm + RELOC/fonts/afm/public/drm/drmsym14.afm + RELOC/fonts/afm/public/drm/drmsym17.afm + RELOC/fonts/afm/public/drm/drmsym24.afm + RELOC/fonts/afm/public/drm/drmsym7.afm + RELOC/fonts/afm/public/drm/drmsym8.afm + RELOC/fonts/afm/public/drm/drmsym9.afm + RELOC/fonts/afm/public/drm/drmtc10.afm + RELOC/fonts/afm/public/drm/drmtc11.afm + RELOC/fonts/afm/public/drm/drmtc12.afm + RELOC/fonts/afm/public/drm/drmtc14.afm + RELOC/fonts/afm/public/drm/drmtc17.afm + RELOC/fonts/afm/public/drm/drmtc24.afm + RELOC/fonts/afm/public/drm/drmtc6.afm + RELOC/fonts/afm/public/drm/drmtc7.afm + RELOC/fonts/afm/public/drm/drmtc8.afm + RELOC/fonts/afm/public/drm/drmtc9.afm + RELOC/fonts/afm/public/drm/drmtcbx10.afm + RELOC/fonts/afm/public/drm/drmtcbx11.afm + RELOC/fonts/afm/public/drm/drmtcbx12.afm + RELOC/fonts/afm/public/drm/drmtcbx14.afm + RELOC/fonts/afm/public/drm/drmtcbx17.afm + RELOC/fonts/afm/public/drm/drmtcbx24.afm + RELOC/fonts/afm/public/drm/drmtcbx6.afm + RELOC/fonts/afm/public/drm/drmtcbx7.afm + RELOC/fonts/afm/public/drm/drmtcbx8.afm + RELOC/fonts/afm/public/drm/drmtcbx9.afm + RELOC/fonts/afm/public/drm/drmui10.afm + RELOC/fonts/afm/public/drm/drmui11.afm + RELOC/fonts/afm/public/drm/drmui12.afm + RELOC/fonts/afm/public/drm/drmui14.afm + RELOC/fonts/afm/public/drm/drmui17.afm + RELOC/fonts/afm/public/drm/drmui24.afm + RELOC/fonts/afm/public/drm/drmui6.afm + RELOC/fonts/afm/public/drm/drmui7.afm + RELOC/fonts/afm/public/drm/drmui8.afm + RELOC/fonts/afm/public/drm/drmui9.afm + RELOC/fonts/afm/public/drm/drmuibx10.afm + RELOC/fonts/afm/public/drm/drmuibx11.afm + RELOC/fonts/afm/public/drm/drmuibx12.afm + RELOC/fonts/afm/public/drm/drmuibx14.afm + RELOC/fonts/afm/public/drm/drmuibx17.afm + RELOC/fonts/afm/public/drm/drmuibx24.afm + RELOC/fonts/afm/public/drm/drmuibx6.afm + RELOC/fonts/afm/public/drm/drmuibx7.afm + RELOC/fonts/afm/public/drm/drmuibx8.afm + RELOC/fonts/afm/public/drm/drmuibx9.afm + RELOC/fonts/map/dvips/drm/drm.map + RELOC/fonts/opentype/public/drm/drm10.otf + RELOC/fonts/opentype/public/drm/drm11.otf + RELOC/fonts/opentype/public/drm/drm12.otf + RELOC/fonts/opentype/public/drm/drm14.otf + RELOC/fonts/opentype/public/drm/drm17.otf + RELOC/fonts/opentype/public/drm/drm24.otf + RELOC/fonts/opentype/public/drm/drm6.otf + RELOC/fonts/opentype/public/drm/drm7.otf + RELOC/fonts/opentype/public/drm/drm8.otf + RELOC/fonts/opentype/public/drm/drm9.otf + RELOC/fonts/opentype/public/drm/drmb10.otf + RELOC/fonts/opentype/public/drm/drmb11.otf + RELOC/fonts/opentype/public/drm/drmb12.otf + RELOC/fonts/opentype/public/drm/drmb14.otf + RELOC/fonts/opentype/public/drm/drmb17.otf + RELOC/fonts/opentype/public/drm/drmb24.otf + RELOC/fonts/opentype/public/drm/drmb6.otf + RELOC/fonts/opentype/public/drm/drmb7.otf + RELOC/fonts/opentype/public/drm/drmb8.otf + RELOC/fonts/opentype/public/drm/drmb9.otf + RELOC/fonts/opentype/public/drm/drmbx10.otf + RELOC/fonts/opentype/public/drm/drmbx11.otf + RELOC/fonts/opentype/public/drm/drmbx12.otf + RELOC/fonts/opentype/public/drm/drmbx14.otf + RELOC/fonts/opentype/public/drm/drmbx17.otf + RELOC/fonts/opentype/public/drm/drmbx24.otf + RELOC/fonts/opentype/public/drm/drmbx6.otf + RELOC/fonts/opentype/public/drm/drmbx7.otf + RELOC/fonts/opentype/public/drm/drmbx8.otf + RELOC/fonts/opentype/public/drm/drmbx9.otf + RELOC/fonts/opentype/public/drm/drmdoz10.otf + RELOC/fonts/opentype/public/drm/drmdoz11.otf + RELOC/fonts/opentype/public/drm/drmdoz12.otf + RELOC/fonts/opentype/public/drm/drmdoz14.otf + RELOC/fonts/opentype/public/drm/drmdoz17.otf + RELOC/fonts/opentype/public/drm/drmdoz24.otf + RELOC/fonts/opentype/public/drm/drmdoz6.otf + RELOC/fonts/opentype/public/drm/drmdoz7.otf + RELOC/fonts/opentype/public/drm/drmdoz8.otf + RELOC/fonts/opentype/public/drm/drmdoz9.otf + RELOC/fonts/opentype/public/drm/drmdozb10.otf + RELOC/fonts/opentype/public/drm/drmdozb11.otf + RELOC/fonts/opentype/public/drm/drmdozb12.otf + RELOC/fonts/opentype/public/drm/drmdozb14.otf + RELOC/fonts/opentype/public/drm/drmdozb17.otf + RELOC/fonts/opentype/public/drm/drmdozb24.otf + RELOC/fonts/opentype/public/drm/drmdozb6.otf + RELOC/fonts/opentype/public/drm/drmdozb7.otf + RELOC/fonts/opentype/public/drm/drmdozb8.otf + RELOC/fonts/opentype/public/drm/drmdozb9.otf + RELOC/fonts/opentype/public/drm/drmdozbx10.otf + RELOC/fonts/opentype/public/drm/drmdozbx11.otf + RELOC/fonts/opentype/public/drm/drmdozbx12.otf + RELOC/fonts/opentype/public/drm/drmdozbx14.otf + RELOC/fonts/opentype/public/drm/drmdozbx17.otf + RELOC/fonts/opentype/public/drm/drmdozbx24.otf + RELOC/fonts/opentype/public/drm/drmdozbx6.otf + RELOC/fonts/opentype/public/drm/drmdozbx7.otf + RELOC/fonts/opentype/public/drm/drmdozbx8.otf + RELOC/fonts/opentype/public/drm/drmdozbx9.otf + RELOC/fonts/opentype/public/drm/drmdozit10.otf + RELOC/fonts/opentype/public/drm/drmdozit11.otf + RELOC/fonts/opentype/public/drm/drmdozit12.otf + RELOC/fonts/opentype/public/drm/drmdozit14.otf + RELOC/fonts/opentype/public/drm/drmdozit17.otf + RELOC/fonts/opentype/public/drm/drmdozit24.otf + RELOC/fonts/opentype/public/drm/drmdozit6.otf + RELOC/fonts/opentype/public/drm/drmdozit7.otf + RELOC/fonts/opentype/public/drm/drmdozit8.otf + RELOC/fonts/opentype/public/drm/drmdozit9.otf + RELOC/fonts/opentype/public/drm/drmdozitbx10.otf + RELOC/fonts/opentype/public/drm/drmdozitbx11.otf + RELOC/fonts/opentype/public/drm/drmdozitbx12.otf + RELOC/fonts/opentype/public/drm/drmdozitbx14.otf + RELOC/fonts/opentype/public/drm/drmdozitbx17.otf + RELOC/fonts/opentype/public/drm/drmdozitbx24.otf + RELOC/fonts/opentype/public/drm/drmdozitbx6.otf + RELOC/fonts/opentype/public/drm/drmdozitbx7.otf + RELOC/fonts/opentype/public/drm/drmdozitbx8.otf + RELOC/fonts/opentype/public/drm/drmdozitbx9.otf + RELOC/fonts/opentype/public/drm/drmdozitsc10.otf + RELOC/fonts/opentype/public/drm/drmdozitsc11.otf + RELOC/fonts/opentype/public/drm/drmdozitsc12.otf + RELOC/fonts/opentype/public/drm/drmdozitsc14.otf + RELOC/fonts/opentype/public/drm/drmdozitsc17.otf + RELOC/fonts/opentype/public/drm/drmdozitsc24.otf + RELOC/fonts/opentype/public/drm/drmdozitsc6.otf + RELOC/fonts/opentype/public/drm/drmdozitsc7.otf + RELOC/fonts/opentype/public/drm/drmdozitsc8.otf + RELOC/fonts/opentype/public/drm/drmdozitsc9.otf + RELOC/fonts/opentype/public/drm/drmdozittc10.otf + RELOC/fonts/opentype/public/drm/drmdozittc11.otf + RELOC/fonts/opentype/public/drm/drmdozittc12.otf + RELOC/fonts/opentype/public/drm/drmdozittc14.otf + RELOC/fonts/opentype/public/drm/drmdozittc17.otf + RELOC/fonts/opentype/public/drm/drmdozittc24.otf + RELOC/fonts/opentype/public/drm/drmdozittc6.otf + RELOC/fonts/opentype/public/drm/drmdozittc7.otf + RELOC/fonts/opentype/public/drm/drmdozittc8.otf + RELOC/fonts/opentype/public/drm/drmdozittc9.otf + RELOC/fonts/opentype/public/drm/drmdozl10.otf + RELOC/fonts/opentype/public/drm/drmdozl11.otf + RELOC/fonts/opentype/public/drm/drmdozl12.otf + RELOC/fonts/opentype/public/drm/drmdozl14.otf + RELOC/fonts/opentype/public/drm/drmdozl17.otf + RELOC/fonts/opentype/public/drm/drmdozl24.otf + RELOC/fonts/opentype/public/drm/drmdozl6.otf + RELOC/fonts/opentype/public/drm/drmdozl7.otf + RELOC/fonts/opentype/public/drm/drmdozl8.otf + RELOC/fonts/opentype/public/drm/drmdozl9.otf + RELOC/fonts/opentype/public/drm/drmdozsc10.otf + RELOC/fonts/opentype/public/drm/drmdozsc11.otf + RELOC/fonts/opentype/public/drm/drmdozsc12.otf + RELOC/fonts/opentype/public/drm/drmdozsc14.otf + RELOC/fonts/opentype/public/drm/drmdozsc17.otf + RELOC/fonts/opentype/public/drm/drmdozsc24.otf + RELOC/fonts/opentype/public/drm/drmdozsc6.otf + RELOC/fonts/opentype/public/drm/drmdozsc7.otf + RELOC/fonts/opentype/public/drm/drmdozsc8.otf + RELOC/fonts/opentype/public/drm/drmdozsc9.otf + RELOC/fonts/opentype/public/drm/drmdozscbx10.otf + RELOC/fonts/opentype/public/drm/drmdozscbx11.otf + RELOC/fonts/opentype/public/drm/drmdozscbx12.otf + RELOC/fonts/opentype/public/drm/drmdozscbx14.otf + RELOC/fonts/opentype/public/drm/drmdozscbx17.otf + RELOC/fonts/opentype/public/drm/drmdozscbx24.otf + RELOC/fonts/opentype/public/drm/drmdozscbx6.otf + RELOC/fonts/opentype/public/drm/drmdozscbx7.otf + RELOC/fonts/opentype/public/drm/drmdozscbx8.otf + RELOC/fonts/opentype/public/drm/drmdozscbx9.otf + RELOC/fonts/opentype/public/drm/drmdozsl10.otf + RELOC/fonts/opentype/public/drm/drmdozsl11.otf + RELOC/fonts/opentype/public/drm/drmdozsl12.otf + RELOC/fonts/opentype/public/drm/drmdozsl14.otf + RELOC/fonts/opentype/public/drm/drmdozsl17.otf + RELOC/fonts/opentype/public/drm/drmdozsl24.otf + RELOC/fonts/opentype/public/drm/drmdozsl6.otf + RELOC/fonts/opentype/public/drm/drmdozsl7.otf + RELOC/fonts/opentype/public/drm/drmdozsl8.otf + RELOC/fonts/opentype/public/drm/drmdozsl9.otf + RELOC/fonts/opentype/public/drm/drmdoztc10.otf + RELOC/fonts/opentype/public/drm/drmdoztc11.otf + RELOC/fonts/opentype/public/drm/drmdoztc12.otf + RELOC/fonts/opentype/public/drm/drmdoztc14.otf + RELOC/fonts/opentype/public/drm/drmdoztc17.otf + RELOC/fonts/opentype/public/drm/drmdoztc24.otf + RELOC/fonts/opentype/public/drm/drmdoztc6.otf + RELOC/fonts/opentype/public/drm/drmdoztc7.otf + RELOC/fonts/opentype/public/drm/drmdoztc8.otf + RELOC/fonts/opentype/public/drm/drmdoztc9.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx10.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx11.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx12.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx14.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx17.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx24.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx6.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx7.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx8.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx9.otf + RELOC/fonts/opentype/public/drm/drmdozui10.otf + RELOC/fonts/opentype/public/drm/drmdozui11.otf + RELOC/fonts/opentype/public/drm/drmdozui12.otf + RELOC/fonts/opentype/public/drm/drmdozui14.otf + RELOC/fonts/opentype/public/drm/drmdozui17.otf + RELOC/fonts/opentype/public/drm/drmdozui24.otf + RELOC/fonts/opentype/public/drm/drmdozui6.otf + RELOC/fonts/opentype/public/drm/drmdozui7.otf + RELOC/fonts/opentype/public/drm/drmdozui8.otf + RELOC/fonts/opentype/public/drm/drmdozui9.otf + RELOC/fonts/opentype/public/drm/drmdozuibx10.otf + RELOC/fonts/opentype/public/drm/drmdozuibx11.otf + RELOC/fonts/opentype/public/drm/drmdozuibx12.otf + RELOC/fonts/opentype/public/drm/drmdozuibx14.otf + RELOC/fonts/opentype/public/drm/drmdozuibx17.otf + RELOC/fonts/opentype/public/drm/drmdozuibx24.otf + RELOC/fonts/opentype/public/drm/drmdozuibx6.otf + RELOC/fonts/opentype/public/drm/drmdozuibx7.otf + RELOC/fonts/opentype/public/drm/drmdozuibx8.otf + RELOC/fonts/opentype/public/drm/drmdozuibx9.otf + RELOC/fonts/opentype/public/drm/drmfigs10.otf + RELOC/fonts/opentype/public/drm/drmfigs11.otf + RELOC/fonts/opentype/public/drm/drmfigs12.otf + RELOC/fonts/opentype/public/drm/drmfigs14.otf + RELOC/fonts/opentype/public/drm/drmfigs17.otf + RELOC/fonts/opentype/public/drm/drmfigs24.otf + RELOC/fonts/opentype/public/drm/drmfigs6.otf + RELOC/fonts/opentype/public/drm/drmfigs7.otf + RELOC/fonts/opentype/public/drm/drmfigs8.otf + RELOC/fonts/opentype/public/drm/drmfigs9.otf + RELOC/fonts/opentype/public/drm/drmgrk10.otf + RELOC/fonts/opentype/public/drm/drminf10.otf + RELOC/fonts/opentype/public/drm/drminf11.otf + RELOC/fonts/opentype/public/drm/drminf12.otf + RELOC/fonts/opentype/public/drm/drminf14.otf + RELOC/fonts/opentype/public/drm/drminf17.otf + RELOC/fonts/opentype/public/drm/drminf24.otf + RELOC/fonts/opentype/public/drm/drminf6.otf + RELOC/fonts/opentype/public/drm/drminf7.otf + RELOC/fonts/opentype/public/drm/drminf8.otf + RELOC/fonts/opentype/public/drm/drminf9.otf + RELOC/fonts/opentype/public/drm/drmit10.otf + RELOC/fonts/opentype/public/drm/drmit11.otf + RELOC/fonts/opentype/public/drm/drmit12.otf + RELOC/fonts/opentype/public/drm/drmit14.otf + RELOC/fonts/opentype/public/drm/drmit17.otf + RELOC/fonts/opentype/public/drm/drmit24.otf + RELOC/fonts/opentype/public/drm/drmit6.otf + RELOC/fonts/opentype/public/drm/drmit7.otf + RELOC/fonts/opentype/public/drm/drmit8.otf + RELOC/fonts/opentype/public/drm/drmit9.otf + RELOC/fonts/opentype/public/drm/drmitbx10.otf + RELOC/fonts/opentype/public/drm/drmitbx11.otf + RELOC/fonts/opentype/public/drm/drmitbx12.otf + RELOC/fonts/opentype/public/drm/drmitbx14.otf + RELOC/fonts/opentype/public/drm/drmitbx17.otf + RELOC/fonts/opentype/public/drm/drmitbx24.otf + RELOC/fonts/opentype/public/drm/drmitbx6.otf + RELOC/fonts/opentype/public/drm/drmitbx7.otf + RELOC/fonts/opentype/public/drm/drmitbx8.otf + RELOC/fonts/opentype/public/drm/drmitbx9.otf + RELOC/fonts/opentype/public/drm/drmitsc10.otf + RELOC/fonts/opentype/public/drm/drmitsc11.otf + RELOC/fonts/opentype/public/drm/drmitsc12.otf + RELOC/fonts/opentype/public/drm/drmitsc14.otf + RELOC/fonts/opentype/public/drm/drmitsc17.otf + RELOC/fonts/opentype/public/drm/drmitsc24.otf + RELOC/fonts/opentype/public/drm/drmitsc6.otf + RELOC/fonts/opentype/public/drm/drmitsc7.otf + RELOC/fonts/opentype/public/drm/drmitsc8.otf + RELOC/fonts/opentype/public/drm/drmitsc9.otf + RELOC/fonts/opentype/public/drm/drmittc10.otf + RELOC/fonts/opentype/public/drm/drmittc11.otf + RELOC/fonts/opentype/public/drm/drmittc12.otf + RELOC/fonts/opentype/public/drm/drmittc14.otf + RELOC/fonts/opentype/public/drm/drmittc17.otf + RELOC/fonts/opentype/public/drm/drmittc24.otf + RELOC/fonts/opentype/public/drm/drmittc6.otf + RELOC/fonts/opentype/public/drm/drmittc7.otf + RELOC/fonts/opentype/public/drm/drmittc8.otf + RELOC/fonts/opentype/public/drm/drmittc9.otf + RELOC/fonts/opentype/public/drm/drml10.otf + RELOC/fonts/opentype/public/drm/drml11.otf + RELOC/fonts/opentype/public/drm/drml12.otf + RELOC/fonts/opentype/public/drm/drml14.otf + RELOC/fonts/opentype/public/drm/drml17.otf + RELOC/fonts/opentype/public/drm/drml24.otf + RELOC/fonts/opentype/public/drm/drml6.otf + RELOC/fonts/opentype/public/drm/drml7.otf + RELOC/fonts/opentype/public/drm/drml8.otf + RELOC/fonts/opentype/public/drm/drml9.otf + RELOC/fonts/opentype/public/drm/drmmi10.otf + RELOC/fonts/opentype/public/drm/drmsc10.otf + RELOC/fonts/opentype/public/drm/drmsc11.otf + RELOC/fonts/opentype/public/drm/drmsc12.otf + RELOC/fonts/opentype/public/drm/drmsc14.otf + RELOC/fonts/opentype/public/drm/drmsc17.otf + RELOC/fonts/opentype/public/drm/drmsc24.otf + RELOC/fonts/opentype/public/drm/drmsc6.otf + RELOC/fonts/opentype/public/drm/drmsc7.otf + RELOC/fonts/opentype/public/drm/drmsc8.otf + RELOC/fonts/opentype/public/drm/drmsc9.otf + RELOC/fonts/opentype/public/drm/drmscbx10.otf + RELOC/fonts/opentype/public/drm/drmscbx11.otf + RELOC/fonts/opentype/public/drm/drmscbx12.otf + RELOC/fonts/opentype/public/drm/drmscbx14.otf + RELOC/fonts/opentype/public/drm/drmscbx17.otf + RELOC/fonts/opentype/public/drm/drmscbx24.otf + RELOC/fonts/opentype/public/drm/drmscbx6.otf + RELOC/fonts/opentype/public/drm/drmscbx7.otf + RELOC/fonts/opentype/public/drm/drmscbx8.otf + RELOC/fonts/opentype/public/drm/drmscbx9.otf + RELOC/fonts/opentype/public/drm/drmsl10.otf + RELOC/fonts/opentype/public/drm/drmsl11.otf + RELOC/fonts/opentype/public/drm/drmsl12.otf + RELOC/fonts/opentype/public/drm/drmsl14.otf + RELOC/fonts/opentype/public/drm/drmsl17.otf + RELOC/fonts/opentype/public/drm/drmsl24.otf + RELOC/fonts/opentype/public/drm/drmsl6.otf + RELOC/fonts/opentype/public/drm/drmsl7.otf + RELOC/fonts/opentype/public/drm/drmsl8.otf + RELOC/fonts/opentype/public/drm/drmsl9.otf + RELOC/fonts/opentype/public/drm/drmsy10.otf + RELOC/fonts/opentype/public/drm/drmsym10.otf + RELOC/fonts/opentype/public/drm/drmsym11.otf + RELOC/fonts/opentype/public/drm/drmsym12.otf + RELOC/fonts/opentype/public/drm/drmsym14.otf + RELOC/fonts/opentype/public/drm/drmsym17.otf + RELOC/fonts/opentype/public/drm/drmsym24.otf + RELOC/fonts/opentype/public/drm/drmsym7.otf + RELOC/fonts/opentype/public/drm/drmsym8.otf + RELOC/fonts/opentype/public/drm/drmsym9.otf + RELOC/fonts/opentype/public/drm/drmtc10.otf + RELOC/fonts/opentype/public/drm/drmtc11.otf + RELOC/fonts/opentype/public/drm/drmtc12.otf + RELOC/fonts/opentype/public/drm/drmtc14.otf + RELOC/fonts/opentype/public/drm/drmtc17.otf + RELOC/fonts/opentype/public/drm/drmtc24.otf + RELOC/fonts/opentype/public/drm/drmtc6.otf + RELOC/fonts/opentype/public/drm/drmtc7.otf + RELOC/fonts/opentype/public/drm/drmtc8.otf + RELOC/fonts/opentype/public/drm/drmtc9.otf + RELOC/fonts/opentype/public/drm/drmtcbx10.otf + RELOC/fonts/opentype/public/drm/drmtcbx11.otf + RELOC/fonts/opentype/public/drm/drmtcbx12.otf + RELOC/fonts/opentype/public/drm/drmtcbx14.otf + RELOC/fonts/opentype/public/drm/drmtcbx17.otf + RELOC/fonts/opentype/public/drm/drmtcbx24.otf + RELOC/fonts/opentype/public/drm/drmtcbx6.otf + RELOC/fonts/opentype/public/drm/drmtcbx7.otf + RELOC/fonts/opentype/public/drm/drmtcbx8.otf + RELOC/fonts/opentype/public/drm/drmtcbx9.otf + RELOC/fonts/opentype/public/drm/drmui10.otf + RELOC/fonts/opentype/public/drm/drmui11.otf + RELOC/fonts/opentype/public/drm/drmui12.otf + RELOC/fonts/opentype/public/drm/drmui14.otf + RELOC/fonts/opentype/public/drm/drmui17.otf + RELOC/fonts/opentype/public/drm/drmui24.otf + RELOC/fonts/opentype/public/drm/drmui6.otf + RELOC/fonts/opentype/public/drm/drmui7.otf + RELOC/fonts/opentype/public/drm/drmui8.otf + RELOC/fonts/opentype/public/drm/drmui9.otf + RELOC/fonts/opentype/public/drm/drmuibx10.otf + RELOC/fonts/opentype/public/drm/drmuibx11.otf + RELOC/fonts/opentype/public/drm/drmuibx12.otf + RELOC/fonts/opentype/public/drm/drmuibx14.otf + RELOC/fonts/opentype/public/drm/drmuibx17.otf + RELOC/fonts/opentype/public/drm/drmuibx24.otf + RELOC/fonts/opentype/public/drm/drmuibx6.otf + RELOC/fonts/opentype/public/drm/drmuibx7.otf + RELOC/fonts/opentype/public/drm/drmuibx8.otf + RELOC/fonts/opentype/public/drm/drmuibx9.otf + RELOC/fonts/source/public/drm/backslanttest.mf + RELOC/fonts/source/public/drm/drm.mf + RELOC/fonts/source/public/drm/drm10.mf + RELOC/fonts/source/public/drm/drm11.mf + RELOC/fonts/source/public/drm/drm12.mf + RELOC/fonts/source/public/drm/drm14.mf + RELOC/fonts/source/public/drm/drm17.mf + RELOC/fonts/source/public/drm/drm24.mf + RELOC/fonts/source/public/drm/drm6.mf + RELOC/fonts/source/public/drm/drm7.mf + RELOC/fonts/source/public/drm/drm8.mf + RELOC/fonts/source/public/drm/drm9.mf + RELOC/fonts/source/public/drm/drmacc.mf + RELOC/fonts/source/public/drm/drmacclet.mf + RELOC/fonts/source/public/drm/drmb10.mf + RELOC/fonts/source/public/drm/drmb11.mf + RELOC/fonts/source/public/drm/drmb12.mf + RELOC/fonts/source/public/drm/drmb14.mf + RELOC/fonts/source/public/drm/drmb17.mf + RELOC/fonts/source/public/drm/drmb24.mf + RELOC/fonts/source/public/drm/drmb6.mf + RELOC/fonts/source/public/drm/drmb7.mf + RELOC/fonts/source/public/drm/drmb8.mf + RELOC/fonts/source/public/drm/drmb9.mf + RELOC/fonts/source/public/drm/drmbx10.mf + RELOC/fonts/source/public/drm/drmbx11.mf + RELOC/fonts/source/public/drm/drmbx12.mf + RELOC/fonts/source/public/drm/drmbx14.mf + RELOC/fonts/source/public/drm/drmbx17.mf + RELOC/fonts/source/public/drm/drmbx24.mf + RELOC/fonts/source/public/drm/drmbx6.mf + RELOC/fonts/source/public/drm/drmbx7.mf + RELOC/fonts/source/public/drm/drmbx8.mf + RELOC/fonts/source/public/drm/drmbx9.mf + RELOC/fonts/source/public/drm/drmcap.mf + RELOC/fonts/source/public/drm/drmdigs.mf + RELOC/fonts/source/public/drm/drmdoz10.mf + RELOC/fonts/source/public/drm/drmdoz11.mf + RELOC/fonts/source/public/drm/drmdoz12.mf + RELOC/fonts/source/public/drm/drmdoz14.mf + RELOC/fonts/source/public/drm/drmdoz17.mf + RELOC/fonts/source/public/drm/drmdoz24.mf + RELOC/fonts/source/public/drm/drmdoz6.mf + RELOC/fonts/source/public/drm/drmdoz7.mf + RELOC/fonts/source/public/drm/drmdoz8.mf + RELOC/fonts/source/public/drm/drmdoz9.mf + RELOC/fonts/source/public/drm/drmdozb10.mf + RELOC/fonts/source/public/drm/drmdozb11.mf + RELOC/fonts/source/public/drm/drmdozb12.mf + RELOC/fonts/source/public/drm/drmdozb14.mf + RELOC/fonts/source/public/drm/drmdozb17.mf + RELOC/fonts/source/public/drm/drmdozb24.mf + RELOC/fonts/source/public/drm/drmdozb6.mf + RELOC/fonts/source/public/drm/drmdozb7.mf + RELOC/fonts/source/public/drm/drmdozb8.mf + RELOC/fonts/source/public/drm/drmdozb9.mf + RELOC/fonts/source/public/drm/drmdozbx10.mf + RELOC/fonts/source/public/drm/drmdozbx11.mf + RELOC/fonts/source/public/drm/drmdozbx12.mf + RELOC/fonts/source/public/drm/drmdozbx14.mf + RELOC/fonts/source/public/drm/drmdozbx17.mf + RELOC/fonts/source/public/drm/drmdozbx24.mf + RELOC/fonts/source/public/drm/drmdozbx6.mf + RELOC/fonts/source/public/drm/drmdozbx7.mf + RELOC/fonts/source/public/drm/drmdozbx8.mf + RELOC/fonts/source/public/drm/drmdozbx9.mf + RELOC/fonts/source/public/drm/drmdozdigs.mf + RELOC/fonts/source/public/drm/drmdozit10.mf + RELOC/fonts/source/public/drm/drmdozit11.mf + RELOC/fonts/source/public/drm/drmdozit12.mf + RELOC/fonts/source/public/drm/drmdozit14.mf + RELOC/fonts/source/public/drm/drmdozit17.mf + RELOC/fonts/source/public/drm/drmdozit24.mf + RELOC/fonts/source/public/drm/drmdozit6.mf + RELOC/fonts/source/public/drm/drmdozit7.mf + RELOC/fonts/source/public/drm/drmdozit8.mf + RELOC/fonts/source/public/drm/drmdozit9.mf + RELOC/fonts/source/public/drm/drmdozitbx10.mf + RELOC/fonts/source/public/drm/drmdozitbx11.mf + RELOC/fonts/source/public/drm/drmdozitbx12.mf + RELOC/fonts/source/public/drm/drmdozitbx14.mf + RELOC/fonts/source/public/drm/drmdozitbx17.mf + RELOC/fonts/source/public/drm/drmdozitbx24.mf + RELOC/fonts/source/public/drm/drmdozitbx6.mf + RELOC/fonts/source/public/drm/drmdozitbx7.mf + RELOC/fonts/source/public/drm/drmdozitbx8.mf + RELOC/fonts/source/public/drm/drmdozitbx9.mf + RELOC/fonts/source/public/drm/drmdozitdigs.mf + RELOC/fonts/source/public/drm/drmdozitsc10.mf + RELOC/fonts/source/public/drm/drmdozitsc11.mf + RELOC/fonts/source/public/drm/drmdozitsc12.mf + RELOC/fonts/source/public/drm/drmdozitsc14.mf + RELOC/fonts/source/public/drm/drmdozitsc17.mf + RELOC/fonts/source/public/drm/drmdozitsc24.mf + RELOC/fonts/source/public/drm/drmdozitsc6.mf + RELOC/fonts/source/public/drm/drmdozitsc7.mf + RELOC/fonts/source/public/drm/drmdozitsc8.mf + RELOC/fonts/source/public/drm/drmdozitsc9.mf + RELOC/fonts/source/public/drm/drmdozittc10.mf + RELOC/fonts/source/public/drm/drmdozittc11.mf + RELOC/fonts/source/public/drm/drmdozittc12.mf + RELOC/fonts/source/public/drm/drmdozittc14.mf + RELOC/fonts/source/public/drm/drmdozittc17.mf + RELOC/fonts/source/public/drm/drmdozittc24.mf + RELOC/fonts/source/public/drm/drmdozittc6.mf + RELOC/fonts/source/public/drm/drmdozittc7.mf + RELOC/fonts/source/public/drm/drmdozittc8.mf + RELOC/fonts/source/public/drm/drmdozittc9.mf + RELOC/fonts/source/public/drm/drmdozl10.mf + RELOC/fonts/source/public/drm/drmdozl11.mf + RELOC/fonts/source/public/drm/drmdozl12.mf + RELOC/fonts/source/public/drm/drmdozl14.mf + RELOC/fonts/source/public/drm/drmdozl17.mf + RELOC/fonts/source/public/drm/drmdozl24.mf + RELOC/fonts/source/public/drm/drmdozl6.mf + RELOC/fonts/source/public/drm/drmdozl7.mf + RELOC/fonts/source/public/drm/drmdozl8.mf + RELOC/fonts/source/public/drm/drmdozl9.mf + RELOC/fonts/source/public/drm/drmdozsc10.mf + RELOC/fonts/source/public/drm/drmdozsc11.mf + RELOC/fonts/source/public/drm/drmdozsc12.mf + RELOC/fonts/source/public/drm/drmdozsc14.mf + RELOC/fonts/source/public/drm/drmdozsc17.mf + RELOC/fonts/source/public/drm/drmdozsc24.mf + RELOC/fonts/source/public/drm/drmdozsc6.mf + RELOC/fonts/source/public/drm/drmdozsc7.mf + RELOC/fonts/source/public/drm/drmdozsc8.mf + RELOC/fonts/source/public/drm/drmdozsc9.mf + RELOC/fonts/source/public/drm/drmdozscbx10.mf + RELOC/fonts/source/public/drm/drmdozscbx11.mf + RELOC/fonts/source/public/drm/drmdozscbx12.mf + RELOC/fonts/source/public/drm/drmdozscbx14.mf + RELOC/fonts/source/public/drm/drmdozscbx17.mf + RELOC/fonts/source/public/drm/drmdozscbx24.mf + RELOC/fonts/source/public/drm/drmdozscbx6.mf + RELOC/fonts/source/public/drm/drmdozscbx7.mf + RELOC/fonts/source/public/drm/drmdozscbx8.mf + RELOC/fonts/source/public/drm/drmdozscbx9.mf + RELOC/fonts/source/public/drm/drmdozscdigs.mf + RELOC/fonts/source/public/drm/drmdozsl10.mf + RELOC/fonts/source/public/drm/drmdozsl11.mf + RELOC/fonts/source/public/drm/drmdozsl12.mf + RELOC/fonts/source/public/drm/drmdozsl14.mf + RELOC/fonts/source/public/drm/drmdozsl17.mf + RELOC/fonts/source/public/drm/drmdozsl24.mf + RELOC/fonts/source/public/drm/drmdozsl6.mf + RELOC/fonts/source/public/drm/drmdozsl7.mf + RELOC/fonts/source/public/drm/drmdozsl8.mf + RELOC/fonts/source/public/drm/drmdozsl9.mf + RELOC/fonts/source/public/drm/drmdoztc10.mf + RELOC/fonts/source/public/drm/drmdoztc11.mf + RELOC/fonts/source/public/drm/drmdoztc12.mf + RELOC/fonts/source/public/drm/drmdoztc14.mf + RELOC/fonts/source/public/drm/drmdoztc17.mf + RELOC/fonts/source/public/drm/drmdoztc24.mf + RELOC/fonts/source/public/drm/drmdoztc6.mf + RELOC/fonts/source/public/drm/drmdoztc7.mf + RELOC/fonts/source/public/drm/drmdoztc8.mf + RELOC/fonts/source/public/drm/drmdoztc9.mf + RELOC/fonts/source/public/drm/drmdoztcbx10.mf + RELOC/fonts/source/public/drm/drmdoztcbx11.mf + RELOC/fonts/source/public/drm/drmdoztcbx12.mf + RELOC/fonts/source/public/drm/drmdoztcbx14.mf + RELOC/fonts/source/public/drm/drmdoztcbx17.mf + RELOC/fonts/source/public/drm/drmdoztcbx24.mf + RELOC/fonts/source/public/drm/drmdoztcbx6.mf + RELOC/fonts/source/public/drm/drmdoztcbx7.mf + RELOC/fonts/source/public/drm/drmdoztcbx8.mf + RELOC/fonts/source/public/drm/drmdoztcbx9.mf + RELOC/fonts/source/public/drm/drmdoztcdigs.mf + RELOC/fonts/source/public/drm/drmdozui10.mf + RELOC/fonts/source/public/drm/drmdozui11.mf + RELOC/fonts/source/public/drm/drmdozui12.mf + RELOC/fonts/source/public/drm/drmdozui14.mf + RELOC/fonts/source/public/drm/drmdozui17.mf + RELOC/fonts/source/public/drm/drmdozui24.mf + RELOC/fonts/source/public/drm/drmdozui6.mf + RELOC/fonts/source/public/drm/drmdozui7.mf + RELOC/fonts/source/public/drm/drmdozui8.mf + RELOC/fonts/source/public/drm/drmdozui9.mf + RELOC/fonts/source/public/drm/drmdozuibx10.mf + RELOC/fonts/source/public/drm/drmdozuibx11.mf + RELOC/fonts/source/public/drm/drmdozuibx12.mf + RELOC/fonts/source/public/drm/drmdozuibx14.mf + RELOC/fonts/source/public/drm/drmdozuibx17.mf + RELOC/fonts/source/public/drm/drmdozuibx24.mf + RELOC/fonts/source/public/drm/drmdozuibx6.mf + RELOC/fonts/source/public/drm/drmdozuibx7.mf + RELOC/fonts/source/public/drm/drmdozuibx8.mf + RELOC/fonts/source/public/drm/drmdozuibx9.mf + RELOC/fonts/source/public/drm/drmfigs10.mf + RELOC/fonts/source/public/drm/drmfigs11.mf + RELOC/fonts/source/public/drm/drmfigs12.mf + RELOC/fonts/source/public/drm/drmfigs14.mf + RELOC/fonts/source/public/drm/drmfigs17.mf + RELOC/fonts/source/public/drm/drmfigs24.mf + RELOC/fonts/source/public/drm/drmfigs6.mf + RELOC/fonts/source/public/drm/drmfigs7.mf + RELOC/fonts/source/public/drm/drmfigs8.mf + RELOC/fonts/source/public/drm/drmfigs9.mf + RELOC/fonts/source/public/drm/drmgrk10.mf + RELOC/fonts/source/public/drm/drmgrkacc.mf + RELOC/fonts/source/public/drm/drmgrkacclet.mf + RELOC/fonts/source/public/drm/drmgrkcap.mf + RELOC/fonts/source/public/drm/drmgrkligs.mf + RELOC/fonts/source/public/drm/drmgrklow.mf + RELOC/fonts/source/public/drm/drmgrkpunct.mf + RELOC/fonts/source/public/drm/drmgrkup.mf + RELOC/fonts/source/public/drm/drminf10.mf + RELOC/fonts/source/public/drm/drminf11.mf + RELOC/fonts/source/public/drm/drminf12.mf + RELOC/fonts/source/public/drm/drminf14.mf + RELOC/fonts/source/public/drm/drminf17.mf + RELOC/fonts/source/public/drm/drminf24.mf + RELOC/fonts/source/public/drm/drminf6.mf + RELOC/fonts/source/public/drm/drminf7.mf + RELOC/fonts/source/public/drm/drminf8.mf + RELOC/fonts/source/public/drm/drminf9.mf + RELOC/fonts/source/public/drm/drminffigs.mf + RELOC/fonts/source/public/drm/drmit10.mf + RELOC/fonts/source/public/drm/drmit11.mf + RELOC/fonts/source/public/drm/drmit12.mf + RELOC/fonts/source/public/drm/drmit14.mf + RELOC/fonts/source/public/drm/drmit17.mf + RELOC/fonts/source/public/drm/drmit24.mf + RELOC/fonts/source/public/drm/drmit6.mf + RELOC/fonts/source/public/drm/drmit7.mf + RELOC/fonts/source/public/drm/drmit8.mf + RELOC/fonts/source/public/drm/drmit9.mf + RELOC/fonts/source/public/drm/drmitacclet.mf + RELOC/fonts/source/public/drm/drmitbx10.mf + RELOC/fonts/source/public/drm/drmitbx11.mf + RELOC/fonts/source/public/drm/drmitbx12.mf + RELOC/fonts/source/public/drm/drmitbx14.mf + RELOC/fonts/source/public/drm/drmitbx17.mf + RELOC/fonts/source/public/drm/drmitbx24.mf + RELOC/fonts/source/public/drm/drmitbx6.mf + RELOC/fonts/source/public/drm/drmitbx7.mf + RELOC/fonts/source/public/drm/drmitbx8.mf + RELOC/fonts/source/public/drm/drmitbx9.mf + RELOC/fonts/source/public/drm/drmitcap.mf + RELOC/fonts/source/public/drm/drmitdigs.mf + RELOC/fonts/source/public/drm/drmitligs.mf + RELOC/fonts/source/public/drm/drmitlow.mf + RELOC/fonts/source/public/drm/drmitoldstydigs.mf + RELOC/fonts/source/public/drm/drmitpunct.mf + RELOC/fonts/source/public/drm/drmitsc10.mf + RELOC/fonts/source/public/drm/drmitsc11.mf + RELOC/fonts/source/public/drm/drmitsc12.mf + RELOC/fonts/source/public/drm/drmitsc14.mf + RELOC/fonts/source/public/drm/drmitsc17.mf + RELOC/fonts/source/public/drm/drmitsc24.mf + RELOC/fonts/source/public/drm/drmitsc6.mf + RELOC/fonts/source/public/drm/drmitsc7.mf + RELOC/fonts/source/public/drm/drmitsc8.mf + RELOC/fonts/source/public/drm/drmitsc9.mf + RELOC/fonts/source/public/drm/drmittc10.mf + RELOC/fonts/source/public/drm/drmittc11.mf + RELOC/fonts/source/public/drm/drmittc12.mf + RELOC/fonts/source/public/drm/drmittc14.mf + RELOC/fonts/source/public/drm/drmittc17.mf + RELOC/fonts/source/public/drm/drmittc24.mf + RELOC/fonts/source/public/drm/drmittc6.mf + RELOC/fonts/source/public/drm/drmittc7.mf + RELOC/fonts/source/public/drm/drmittc8.mf + RELOC/fonts/source/public/drm/drmittc9.mf + RELOC/fonts/source/public/drm/drml10.mf + RELOC/fonts/source/public/drm/drml11.mf + RELOC/fonts/source/public/drm/drml12.mf + RELOC/fonts/source/public/drm/drml14.mf + RELOC/fonts/source/public/drm/drml17.mf + RELOC/fonts/source/public/drm/drml24.mf + RELOC/fonts/source/public/drm/drml6.mf + RELOC/fonts/source/public/drm/drml7.mf + RELOC/fonts/source/public/drm/drml8.mf + RELOC/fonts/source/public/drm/drml9.mf + RELOC/fonts/source/public/drm/drmligs.mf + RELOC/fonts/source/public/drm/drmlow.mf + RELOC/fonts/source/public/drm/drmlowmac.mf + RELOC/fonts/source/public/drm/drmmatharrows.mf + RELOC/fonts/source/public/drm/drmmathcal.mf + RELOC/fonts/source/public/drm/drmmathcursell.mf + RELOC/fonts/source/public/drm/drmmathfrac.mf + RELOC/fonts/source/public/drm/drmmathgrklow.mf + RELOC/fonts/source/public/drm/drmmathgrkup.mf + RELOC/fonts/source/public/drm/drmmathheb.mf + RELOC/fonts/source/public/drm/drmmathoms.mf + RELOC/fonts/source/public/drm/drmmathomx.mf + RELOC/fonts/source/public/drm/drmmathsym.mf + RELOC/fonts/source/public/drm/drmmi10.mf + RELOC/fonts/source/public/drm/drmoe.mf + RELOC/fonts/source/public/drm/drmoldstyfracs.mf + RELOC/fonts/source/public/drm/drmoldstynums.mf + RELOC/fonts/source/public/drm/drmomx10.mf + RELOC/fonts/source/public/drm/drmornaments.mf + RELOC/fonts/source/public/drm/drmornbars.mf + RELOC/fonts/source/public/drm/drmornfont.mf + RELOC/fonts/source/public/drm/drmorns.mf + RELOC/fonts/source/public/drm/drmpunct.mf + RELOC/fonts/source/public/drm/drmromannums.mf + RELOC/fonts/source/public/drm/drmsc10.mf + RELOC/fonts/source/public/drm/drmsc11.mf + RELOC/fonts/source/public/drm/drmsc12.mf + RELOC/fonts/source/public/drm/drmsc14.mf + RELOC/fonts/source/public/drm/drmsc17.mf + RELOC/fonts/source/public/drm/drmsc24.mf + RELOC/fonts/source/public/drm/drmsc6.mf + RELOC/fonts/source/public/drm/drmsc7.mf + RELOC/fonts/source/public/drm/drmsc8.mf + RELOC/fonts/source/public/drm/drmsc9.mf + RELOC/fonts/source/public/drm/drmscacclet.mf + RELOC/fonts/source/public/drm/drmscap.mf + RELOC/fonts/source/public/drm/drmscbx10.mf + RELOC/fonts/source/public/drm/drmscbx11.mf + RELOC/fonts/source/public/drm/drmscbx12.mf + RELOC/fonts/source/public/drm/drmscbx14.mf + RELOC/fonts/source/public/drm/drmscbx17.mf + RELOC/fonts/source/public/drm/drmscbx24.mf + RELOC/fonts/source/public/drm/drmscbx6.mf + RELOC/fonts/source/public/drm/drmscbx7.mf + RELOC/fonts/source/public/drm/drmscbx8.mf + RELOC/fonts/source/public/drm/drmscbx9.mf + RELOC/fonts/source/public/drm/drmscdigs.mf + RELOC/fonts/source/public/drm/drmscdol.mf + RELOC/fonts/source/public/drm/drmscligs.mf + RELOC/fonts/source/public/drm/drmsl10.mf + RELOC/fonts/source/public/drm/drmsl11.mf + RELOC/fonts/source/public/drm/drmsl12.mf + RELOC/fonts/source/public/drm/drmsl14.mf + RELOC/fonts/source/public/drm/drmsl17.mf + RELOC/fonts/source/public/drm/drmsl24.mf + RELOC/fonts/source/public/drm/drmsl6.mf + RELOC/fonts/source/public/drm/drmsl7.mf + RELOC/fonts/source/public/drm/drmsl8.mf + RELOC/fonts/source/public/drm/drmsl9.mf + RELOC/fonts/source/public/drm/drmsupfigs.mf + RELOC/fonts/source/public/drm/drmsy10.mf + RELOC/fonts/source/public/drm/drmsym10.mf + RELOC/fonts/source/public/drm/drmsym11.mf + RELOC/fonts/source/public/drm/drmsym12.mf + RELOC/fonts/source/public/drm/drmsym14.mf + RELOC/fonts/source/public/drm/drmsym17.mf + RELOC/fonts/source/public/drm/drmsym24.mf + RELOC/fonts/source/public/drm/drmsym7.mf + RELOC/fonts/source/public/drm/drmsym8.mf + RELOC/fonts/source/public/drm/drmsym9.mf + RELOC/fonts/source/public/drm/drmsymbols.mf + RELOC/fonts/source/public/drm/drmtc10.mf + RELOC/fonts/source/public/drm/drmtc11.mf + RELOC/fonts/source/public/drm/drmtc12.mf + RELOC/fonts/source/public/drm/drmtc14.mf + RELOC/fonts/source/public/drm/drmtc17.mf + RELOC/fonts/source/public/drm/drmtc24.mf + RELOC/fonts/source/public/drm/drmtc6.mf + RELOC/fonts/source/public/drm/drmtc7.mf + RELOC/fonts/source/public/drm/drmtc8.mf + RELOC/fonts/source/public/drm/drmtc9.mf + RELOC/fonts/source/public/drm/drmtcacclet.mf + RELOC/fonts/source/public/drm/drmtcap.mf + RELOC/fonts/source/public/drm/drmtcbx10.mf + RELOC/fonts/source/public/drm/drmtcbx11.mf + RELOC/fonts/source/public/drm/drmtcbx12.mf + RELOC/fonts/source/public/drm/drmtcbx14.mf + RELOC/fonts/source/public/drm/drmtcbx17.mf + RELOC/fonts/source/public/drm/drmtcbx24.mf + RELOC/fonts/source/public/drm/drmtcbx6.mf + RELOC/fonts/source/public/drm/drmtcbx7.mf + RELOC/fonts/source/public/drm/drmtcbx8.mf + RELOC/fonts/source/public/drm/drmtcbx9.mf + RELOC/fonts/source/public/drm/drmtcdigs.mf + RELOC/fonts/source/public/drm/drmtcdol.mf + RELOC/fonts/source/public/drm/drmtcligs.mf + RELOC/fonts/source/public/drm/drmttcap.mf + RELOC/fonts/source/public/drm/drmui10.mf + RELOC/fonts/source/public/drm/drmui11.mf + RELOC/fonts/source/public/drm/drmui12.mf + RELOC/fonts/source/public/drm/drmui14.mf + RELOC/fonts/source/public/drm/drmui17.mf + RELOC/fonts/source/public/drm/drmui24.mf + RELOC/fonts/source/public/drm/drmui6.mf + RELOC/fonts/source/public/drm/drmui7.mf + RELOC/fonts/source/public/drm/drmui8.mf + RELOC/fonts/source/public/drm/drmui9.mf + RELOC/fonts/source/public/drm/drmuibx10.mf + RELOC/fonts/source/public/drm/drmuibx11.mf + RELOC/fonts/source/public/drm/drmuibx12.mf + RELOC/fonts/source/public/drm/drmuibx14.mf + RELOC/fonts/source/public/drm/drmuibx17.mf + RELOC/fonts/source/public/drm/drmuibx24.mf + RELOC/fonts/source/public/drm/drmuibx6.mf + RELOC/fonts/source/public/drm/drmuibx7.mf + RELOC/fonts/source/public/drm/drmuibx8.mf + RELOC/fonts/source/public/drm/drmuibx9.mf + RELOC/fonts/source/public/drm/drmuiligs.mf + RELOC/fonts/tfm/public/drm/drm10.tfm + RELOC/fonts/tfm/public/drm/drm100.tfm + RELOC/fonts/tfm/public/drm/drm11.tfm + RELOC/fonts/tfm/public/drm/drm12.tfm + RELOC/fonts/tfm/public/drm/drm14.tfm + RELOC/fonts/tfm/public/drm/drm17.tfm + RELOC/fonts/tfm/public/drm/drm24.tfm + RELOC/fonts/tfm/public/drm/drm6.tfm + RELOC/fonts/tfm/public/drm/drm7.tfm + RELOC/fonts/tfm/public/drm/drm8.tfm + RELOC/fonts/tfm/public/drm/drm9.tfm + RELOC/fonts/tfm/public/drm/drmb10.tfm + RELOC/fonts/tfm/public/drm/drmb11.tfm + RELOC/fonts/tfm/public/drm/drmb12.tfm + RELOC/fonts/tfm/public/drm/drmb14.tfm + RELOC/fonts/tfm/public/drm/drmb17.tfm + RELOC/fonts/tfm/public/drm/drmb24.tfm + RELOC/fonts/tfm/public/drm/drmb6.tfm + RELOC/fonts/tfm/public/drm/drmb7.tfm + RELOC/fonts/tfm/public/drm/drmb8.tfm + RELOC/fonts/tfm/public/drm/drmb9.tfm + RELOC/fonts/tfm/public/drm/drmbs10.tfm + RELOC/fonts/tfm/public/drm/drmbx10.tfm + RELOC/fonts/tfm/public/drm/drmbx11.tfm + RELOC/fonts/tfm/public/drm/drmbx12.tfm + RELOC/fonts/tfm/public/drm/drmbx14.tfm + RELOC/fonts/tfm/public/drm/drmbx17.tfm + RELOC/fonts/tfm/public/drm/drmbx24.tfm + RELOC/fonts/tfm/public/drm/drmbx6.tfm + RELOC/fonts/tfm/public/drm/drmbx7.tfm + RELOC/fonts/tfm/public/drm/drmbx8.tfm + RELOC/fonts/tfm/public/drm/drmbx9.tfm + RELOC/fonts/tfm/public/drm/drmdoz10.tfm + RELOC/fonts/tfm/public/drm/drmdoz11.tfm + RELOC/fonts/tfm/public/drm/drmdoz12.tfm + RELOC/fonts/tfm/public/drm/drmdoz14.tfm + RELOC/fonts/tfm/public/drm/drmdoz17.tfm + RELOC/fonts/tfm/public/drm/drmdoz24.tfm + RELOC/fonts/tfm/public/drm/drmdoz6.tfm + RELOC/fonts/tfm/public/drm/drmdoz7.tfm + RELOC/fonts/tfm/public/drm/drmdoz8.tfm + RELOC/fonts/tfm/public/drm/drmdoz9.tfm + RELOC/fonts/tfm/public/drm/drmdozb10.tfm + RELOC/fonts/tfm/public/drm/drmdozb11.tfm + RELOC/fonts/tfm/public/drm/drmdozb12.tfm + RELOC/fonts/tfm/public/drm/drmdozb14.tfm + RELOC/fonts/tfm/public/drm/drmdozb17.tfm + RELOC/fonts/tfm/public/drm/drmdozb24.tfm + RELOC/fonts/tfm/public/drm/drmdozb6.tfm + RELOC/fonts/tfm/public/drm/drmdozb7.tfm + RELOC/fonts/tfm/public/drm/drmdozb8.tfm + RELOC/fonts/tfm/public/drm/drmdozb9.tfm + RELOC/fonts/tfm/public/drm/drmdozbx10.tfm + RELOC/fonts/tfm/public/drm/drmdozbx11.tfm + RELOC/fonts/tfm/public/drm/drmdozbx12.tfm + RELOC/fonts/tfm/public/drm/drmdozbx14.tfm + RELOC/fonts/tfm/public/drm/drmdozbx17.tfm + RELOC/fonts/tfm/public/drm/drmdozbx24.tfm + RELOC/fonts/tfm/public/drm/drmdozbx6.tfm + RELOC/fonts/tfm/public/drm/drmdozbx7.tfm + RELOC/fonts/tfm/public/drm/drmdozbx8.tfm + RELOC/fonts/tfm/public/drm/drmdozbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozit10.tfm + RELOC/fonts/tfm/public/drm/drmdozit11.tfm + RELOC/fonts/tfm/public/drm/drmdozit12.tfm + RELOC/fonts/tfm/public/drm/drmdozit14.tfm + RELOC/fonts/tfm/public/drm/drmdozit17.tfm + RELOC/fonts/tfm/public/drm/drmdozit24.tfm + RELOC/fonts/tfm/public/drm/drmdozit6.tfm + RELOC/fonts/tfm/public/drm/drmdozit7.tfm + RELOC/fonts/tfm/public/drm/drmdozit8.tfm + RELOC/fonts/tfm/public/drm/drmdozit9.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx10.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx11.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx12.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx14.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx17.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx24.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx6.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx7.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx8.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc10.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc11.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc12.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc14.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc17.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc24.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc6.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc7.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc8.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc9.tfm + RELOC/fonts/tfm/public/drm/drmdozittc10.tfm + RELOC/fonts/tfm/public/drm/drmdozittc11.tfm + RELOC/fonts/tfm/public/drm/drmdozittc12.tfm + RELOC/fonts/tfm/public/drm/drmdozittc14.tfm + RELOC/fonts/tfm/public/drm/drmdozittc17.tfm + RELOC/fonts/tfm/public/drm/drmdozittc24.tfm + RELOC/fonts/tfm/public/drm/drmdozittc6.tfm + RELOC/fonts/tfm/public/drm/drmdozittc7.tfm + RELOC/fonts/tfm/public/drm/drmdozittc8.tfm + RELOC/fonts/tfm/public/drm/drmdozittc9.tfm + RELOC/fonts/tfm/public/drm/drmdozl10.tfm + RELOC/fonts/tfm/public/drm/drmdozl11.tfm + RELOC/fonts/tfm/public/drm/drmdozl12.tfm + RELOC/fonts/tfm/public/drm/drmdozl14.tfm + RELOC/fonts/tfm/public/drm/drmdozl17.tfm + RELOC/fonts/tfm/public/drm/drmdozl24.tfm + RELOC/fonts/tfm/public/drm/drmdozl6.tfm + RELOC/fonts/tfm/public/drm/drmdozl7.tfm + RELOC/fonts/tfm/public/drm/drmdozl8.tfm + RELOC/fonts/tfm/public/drm/drmdozl9.tfm + RELOC/fonts/tfm/public/drm/drmdozsc10.tfm + RELOC/fonts/tfm/public/drm/drmdozsc11.tfm + RELOC/fonts/tfm/public/drm/drmdozsc12.tfm + RELOC/fonts/tfm/public/drm/drmdozsc14.tfm + RELOC/fonts/tfm/public/drm/drmdozsc17.tfm + RELOC/fonts/tfm/public/drm/drmdozsc24.tfm + RELOC/fonts/tfm/public/drm/drmdozsc6.tfm + RELOC/fonts/tfm/public/drm/drmdozsc7.tfm + RELOC/fonts/tfm/public/drm/drmdozsc8.tfm + RELOC/fonts/tfm/public/drm/drmdozsc9.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx10.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx11.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx12.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx14.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx17.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx24.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx6.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx7.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx8.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozsl10.tfm + RELOC/fonts/tfm/public/drm/drmdozsl11.tfm + RELOC/fonts/tfm/public/drm/drmdozsl12.tfm + RELOC/fonts/tfm/public/drm/drmdozsl14.tfm + RELOC/fonts/tfm/public/drm/drmdozsl17.tfm + RELOC/fonts/tfm/public/drm/drmdozsl24.tfm + RELOC/fonts/tfm/public/drm/drmdozsl6.tfm + RELOC/fonts/tfm/public/drm/drmdozsl7.tfm + RELOC/fonts/tfm/public/drm/drmdozsl8.tfm + RELOC/fonts/tfm/public/drm/drmdozsl9.tfm + RELOC/fonts/tfm/public/drm/drmdoztc10.tfm + RELOC/fonts/tfm/public/drm/drmdoztc11.tfm + RELOC/fonts/tfm/public/drm/drmdoztc12.tfm + RELOC/fonts/tfm/public/drm/drmdoztc14.tfm + RELOC/fonts/tfm/public/drm/drmdoztc17.tfm + RELOC/fonts/tfm/public/drm/drmdoztc24.tfm + RELOC/fonts/tfm/public/drm/drmdoztc6.tfm + RELOC/fonts/tfm/public/drm/drmdoztc7.tfm + RELOC/fonts/tfm/public/drm/drmdoztc8.tfm + RELOC/fonts/tfm/public/drm/drmdoztc9.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx10.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx11.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx12.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx14.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx17.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx24.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx6.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx7.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx8.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozui10.tfm + RELOC/fonts/tfm/public/drm/drmdozui11.tfm + RELOC/fonts/tfm/public/drm/drmdozui12.tfm + RELOC/fonts/tfm/public/drm/drmdozui14.tfm + RELOC/fonts/tfm/public/drm/drmdozui17.tfm + RELOC/fonts/tfm/public/drm/drmdozui24.tfm + RELOC/fonts/tfm/public/drm/drmdozui6.tfm + RELOC/fonts/tfm/public/drm/drmdozui7.tfm + RELOC/fonts/tfm/public/drm/drmdozui8.tfm + RELOC/fonts/tfm/public/drm/drmdozui9.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx10.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx11.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx12.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx14.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx17.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx24.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx6.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx7.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx8.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx9.tfm + RELOC/fonts/tfm/public/drm/drmfigs10.tfm + RELOC/fonts/tfm/public/drm/drmfigs11.tfm + RELOC/fonts/tfm/public/drm/drmfigs12.tfm + RELOC/fonts/tfm/public/drm/drmfigs14.tfm + RELOC/fonts/tfm/public/drm/drmfigs17.tfm + RELOC/fonts/tfm/public/drm/drmfigs24.tfm + RELOC/fonts/tfm/public/drm/drmfigs6.tfm + RELOC/fonts/tfm/public/drm/drmfigs7.tfm + RELOC/fonts/tfm/public/drm/drmfigs8.tfm + RELOC/fonts/tfm/public/drm/drmfigs9.tfm + RELOC/fonts/tfm/public/drm/drmgrk10.tfm + RELOC/fonts/tfm/public/drm/drminf10.tfm + RELOC/fonts/tfm/public/drm/drminf11.tfm + RELOC/fonts/tfm/public/drm/drminf12.tfm + RELOC/fonts/tfm/public/drm/drminf14.tfm + RELOC/fonts/tfm/public/drm/drminf17.tfm + RELOC/fonts/tfm/public/drm/drminf24.tfm + RELOC/fonts/tfm/public/drm/drminf6.tfm + RELOC/fonts/tfm/public/drm/drminf7.tfm + RELOC/fonts/tfm/public/drm/drminf8.tfm + RELOC/fonts/tfm/public/drm/drminf9.tfm + RELOC/fonts/tfm/public/drm/drmit10.tfm + RELOC/fonts/tfm/public/drm/drmit11.tfm + RELOC/fonts/tfm/public/drm/drmit12.tfm + RELOC/fonts/tfm/public/drm/drmit14.tfm + RELOC/fonts/tfm/public/drm/drmit17.tfm + RELOC/fonts/tfm/public/drm/drmit24.tfm + RELOC/fonts/tfm/public/drm/drmit6.tfm + RELOC/fonts/tfm/public/drm/drmit7.tfm + RELOC/fonts/tfm/public/drm/drmit8.tfm + RELOC/fonts/tfm/public/drm/drmit9.tfm + RELOC/fonts/tfm/public/drm/drmitbx10.tfm + RELOC/fonts/tfm/public/drm/drmitbx11.tfm + RELOC/fonts/tfm/public/drm/drmitbx12.tfm + RELOC/fonts/tfm/public/drm/drmitbx14.tfm + RELOC/fonts/tfm/public/drm/drmitbx17.tfm + RELOC/fonts/tfm/public/drm/drmitbx24.tfm + RELOC/fonts/tfm/public/drm/drmitbx6.tfm + RELOC/fonts/tfm/public/drm/drmitbx7.tfm + RELOC/fonts/tfm/public/drm/drmitbx8.tfm + RELOC/fonts/tfm/public/drm/drmitbx9.tfm + RELOC/fonts/tfm/public/drm/drmitsc10.tfm + RELOC/fonts/tfm/public/drm/drmitsc11.tfm + RELOC/fonts/tfm/public/drm/drmitsc12.tfm + RELOC/fonts/tfm/public/drm/drmitsc14.tfm + RELOC/fonts/tfm/public/drm/drmitsc17.tfm + RELOC/fonts/tfm/public/drm/drmitsc24.tfm + RELOC/fonts/tfm/public/drm/drmitsc6.tfm + RELOC/fonts/tfm/public/drm/drmitsc7.tfm + RELOC/fonts/tfm/public/drm/drmitsc8.tfm + RELOC/fonts/tfm/public/drm/drmitsc9.tfm + RELOC/fonts/tfm/public/drm/drmittc10.tfm + RELOC/fonts/tfm/public/drm/drmittc11.tfm + RELOC/fonts/tfm/public/drm/drmittc12.tfm + RELOC/fonts/tfm/public/drm/drmittc14.tfm + RELOC/fonts/tfm/public/drm/drmittc17.tfm + RELOC/fonts/tfm/public/drm/drmittc24.tfm + RELOC/fonts/tfm/public/drm/drmittc6.tfm + RELOC/fonts/tfm/public/drm/drmittc7.tfm + RELOC/fonts/tfm/public/drm/drmittc8.tfm + RELOC/fonts/tfm/public/drm/drmittc9.tfm + RELOC/fonts/tfm/public/drm/drml10.tfm + RELOC/fonts/tfm/public/drm/drml11.tfm + RELOC/fonts/tfm/public/drm/drml12.tfm + RELOC/fonts/tfm/public/drm/drml14.tfm + RELOC/fonts/tfm/public/drm/drml17.tfm + RELOC/fonts/tfm/public/drm/drml24.tfm + RELOC/fonts/tfm/public/drm/drml6.tfm + RELOC/fonts/tfm/public/drm/drml7.tfm + RELOC/fonts/tfm/public/drm/drml8.tfm + RELOC/fonts/tfm/public/drm/drml9.tfm + RELOC/fonts/tfm/public/drm/drmmi10.tfm + RELOC/fonts/tfm/public/drm/drmomx10.tfm + RELOC/fonts/tfm/public/drm/drmorns.tfm + RELOC/fonts/tfm/public/drm/drmsc10.tfm + RELOC/fonts/tfm/public/drm/drmsc11.tfm + RELOC/fonts/tfm/public/drm/drmsc12.tfm + RELOC/fonts/tfm/public/drm/drmsc14.tfm + RELOC/fonts/tfm/public/drm/drmsc17.tfm + RELOC/fonts/tfm/public/drm/drmsc24.tfm + RELOC/fonts/tfm/public/drm/drmsc6.tfm + RELOC/fonts/tfm/public/drm/drmsc7.tfm + RELOC/fonts/tfm/public/drm/drmsc8.tfm + RELOC/fonts/tfm/public/drm/drmsc9.tfm + RELOC/fonts/tfm/public/drm/drmscbx10.tfm + RELOC/fonts/tfm/public/drm/drmscbx11.tfm + RELOC/fonts/tfm/public/drm/drmscbx12.tfm + RELOC/fonts/tfm/public/drm/drmscbx14.tfm + RELOC/fonts/tfm/public/drm/drmscbx17.tfm + RELOC/fonts/tfm/public/drm/drmscbx24.tfm + RELOC/fonts/tfm/public/drm/drmscbx6.tfm + RELOC/fonts/tfm/public/drm/drmscbx7.tfm + RELOC/fonts/tfm/public/drm/drmscbx8.tfm + RELOC/fonts/tfm/public/drm/drmscbx9.tfm + RELOC/fonts/tfm/public/drm/drmsl10.tfm + RELOC/fonts/tfm/public/drm/drmsl11.tfm + RELOC/fonts/tfm/public/drm/drmsl12.tfm + RELOC/fonts/tfm/public/drm/drmsl14.tfm + RELOC/fonts/tfm/public/drm/drmsl17.tfm + RELOC/fonts/tfm/public/drm/drmsl24.tfm + RELOC/fonts/tfm/public/drm/drmsl6.tfm + RELOC/fonts/tfm/public/drm/drmsl7.tfm + RELOC/fonts/tfm/public/drm/drmsl8.tfm + RELOC/fonts/tfm/public/drm/drmsl9.tfm + RELOC/fonts/tfm/public/drm/drmsy10.tfm + RELOC/fonts/tfm/public/drm/drmsym10.tfm + RELOC/fonts/tfm/public/drm/drmsym11.tfm + RELOC/fonts/tfm/public/drm/drmsym12.tfm + RELOC/fonts/tfm/public/drm/drmsym14.tfm + RELOC/fonts/tfm/public/drm/drmsym17.tfm + RELOC/fonts/tfm/public/drm/drmsym24.tfm + RELOC/fonts/tfm/public/drm/drmsym7.tfm + RELOC/fonts/tfm/public/drm/drmsym8.tfm + RELOC/fonts/tfm/public/drm/drmsym9.tfm + RELOC/fonts/tfm/public/drm/drmtc10.tfm + RELOC/fonts/tfm/public/drm/drmtc11.tfm + RELOC/fonts/tfm/public/drm/drmtc12.tfm + RELOC/fonts/tfm/public/drm/drmtc14.tfm + RELOC/fonts/tfm/public/drm/drmtc17.tfm + RELOC/fonts/tfm/public/drm/drmtc24.tfm + RELOC/fonts/tfm/public/drm/drmtc6.tfm + RELOC/fonts/tfm/public/drm/drmtc7.tfm + RELOC/fonts/tfm/public/drm/drmtc8.tfm + RELOC/fonts/tfm/public/drm/drmtc9.tfm + RELOC/fonts/tfm/public/drm/drmtcbx10.tfm + RELOC/fonts/tfm/public/drm/drmtcbx11.tfm + RELOC/fonts/tfm/public/drm/drmtcbx12.tfm + RELOC/fonts/tfm/public/drm/drmtcbx14.tfm + RELOC/fonts/tfm/public/drm/drmtcbx17.tfm + RELOC/fonts/tfm/public/drm/drmtcbx24.tfm + RELOC/fonts/tfm/public/drm/drmtcbx6.tfm + RELOC/fonts/tfm/public/drm/drmtcbx7.tfm + RELOC/fonts/tfm/public/drm/drmtcbx8.tfm + RELOC/fonts/tfm/public/drm/drmtcbx9.tfm + RELOC/fonts/tfm/public/drm/drmui10.tfm + RELOC/fonts/tfm/public/drm/drmui11.tfm + RELOC/fonts/tfm/public/drm/drmui12.tfm + RELOC/fonts/tfm/public/drm/drmui14.tfm + RELOC/fonts/tfm/public/drm/drmui17.tfm + RELOC/fonts/tfm/public/drm/drmui24.tfm + RELOC/fonts/tfm/public/drm/drmui6.tfm + RELOC/fonts/tfm/public/drm/drmui7.tfm + RELOC/fonts/tfm/public/drm/drmui8.tfm + RELOC/fonts/tfm/public/drm/drmui9.tfm + RELOC/fonts/tfm/public/drm/drmuibx10.tfm + RELOC/fonts/tfm/public/drm/drmuibx11.tfm + RELOC/fonts/tfm/public/drm/drmuibx12.tfm + RELOC/fonts/tfm/public/drm/drmuibx14.tfm + RELOC/fonts/tfm/public/drm/drmuibx17.tfm + RELOC/fonts/tfm/public/drm/drmuibx24.tfm + RELOC/fonts/tfm/public/drm/drmuibx6.tfm + RELOC/fonts/tfm/public/drm/drmuibx7.tfm + RELOC/fonts/tfm/public/drm/drmuibx8.tfm + RELOC/fonts/tfm/public/drm/drmuibx9.tfm + RELOC/fonts/type1/public/drm/drm10.pfb + RELOC/fonts/type1/public/drm/drm11.pfb + RELOC/fonts/type1/public/drm/drm12.pfb + RELOC/fonts/type1/public/drm/drm14.pfb + RELOC/fonts/type1/public/drm/drm17.pfb + RELOC/fonts/type1/public/drm/drm24.pfb + RELOC/fonts/type1/public/drm/drm6.pfb + RELOC/fonts/type1/public/drm/drm7.pfb + RELOC/fonts/type1/public/drm/drm8.pfb + RELOC/fonts/type1/public/drm/drm9.pfb + RELOC/fonts/type1/public/drm/drmb10.pfb + RELOC/fonts/type1/public/drm/drmb11.pfb + RELOC/fonts/type1/public/drm/drmb12.pfb + RELOC/fonts/type1/public/drm/drmb14.pfb + RELOC/fonts/type1/public/drm/drmb17.pfb + RELOC/fonts/type1/public/drm/drmb24.pfb + RELOC/fonts/type1/public/drm/drmb6.pfb + RELOC/fonts/type1/public/drm/drmb7.pfb + RELOC/fonts/type1/public/drm/drmb8.pfb + RELOC/fonts/type1/public/drm/drmb9.pfb + RELOC/fonts/type1/public/drm/drmbx10.pfb + RELOC/fonts/type1/public/drm/drmbx11.pfb + RELOC/fonts/type1/public/drm/drmbx12.pfb + RELOC/fonts/type1/public/drm/drmbx14.pfb + RELOC/fonts/type1/public/drm/drmbx17.pfb + RELOC/fonts/type1/public/drm/drmbx24.pfb + RELOC/fonts/type1/public/drm/drmbx6.pfb + RELOC/fonts/type1/public/drm/drmbx7.pfb + RELOC/fonts/type1/public/drm/drmbx8.pfb + RELOC/fonts/type1/public/drm/drmbx9.pfb + RELOC/fonts/type1/public/drm/drmdoz10.pfb + RELOC/fonts/type1/public/drm/drmdoz11.pfb + RELOC/fonts/type1/public/drm/drmdoz12.pfb + RELOC/fonts/type1/public/drm/drmdoz14.pfb + RELOC/fonts/type1/public/drm/drmdoz17.pfb + RELOC/fonts/type1/public/drm/drmdoz24.pfb + RELOC/fonts/type1/public/drm/drmdoz6.pfb + RELOC/fonts/type1/public/drm/drmdoz7.pfb + RELOC/fonts/type1/public/drm/drmdoz8.pfb + RELOC/fonts/type1/public/drm/drmdoz9.pfb + RELOC/fonts/type1/public/drm/drmdozb10.pfb + RELOC/fonts/type1/public/drm/drmdozb11.pfb + RELOC/fonts/type1/public/drm/drmdozb12.pfb + RELOC/fonts/type1/public/drm/drmdozb14.pfb + RELOC/fonts/type1/public/drm/drmdozb17.pfb + RELOC/fonts/type1/public/drm/drmdozb24.pfb + RELOC/fonts/type1/public/drm/drmdozb6.pfb + RELOC/fonts/type1/public/drm/drmdozb7.pfb + RELOC/fonts/type1/public/drm/drmdozb8.pfb + RELOC/fonts/type1/public/drm/drmdozb9.pfb + RELOC/fonts/type1/public/drm/drmdozbx10.pfb + RELOC/fonts/type1/public/drm/drmdozbx11.pfb + RELOC/fonts/type1/public/drm/drmdozbx12.pfb + RELOC/fonts/type1/public/drm/drmdozbx14.pfb + RELOC/fonts/type1/public/drm/drmdozbx17.pfb + RELOC/fonts/type1/public/drm/drmdozbx24.pfb + RELOC/fonts/type1/public/drm/drmdozbx6.pfb + RELOC/fonts/type1/public/drm/drmdozbx7.pfb + RELOC/fonts/type1/public/drm/drmdozbx8.pfb + RELOC/fonts/type1/public/drm/drmdozbx9.pfb + RELOC/fonts/type1/public/drm/drmdozit10.pfb + RELOC/fonts/type1/public/drm/drmdozit11.pfb + RELOC/fonts/type1/public/drm/drmdozit12.pfb + RELOC/fonts/type1/public/drm/drmdozit14.pfb + RELOC/fonts/type1/public/drm/drmdozit17.pfb + RELOC/fonts/type1/public/drm/drmdozit24.pfb + RELOC/fonts/type1/public/drm/drmdozit6.pfb + RELOC/fonts/type1/public/drm/drmdozit7.pfb + RELOC/fonts/type1/public/drm/drmdozit8.pfb + RELOC/fonts/type1/public/drm/drmdozit9.pfb + RELOC/fonts/type1/public/drm/drmdozitbx10.pfb + RELOC/fonts/type1/public/drm/drmdozitbx11.pfb + RELOC/fonts/type1/public/drm/drmdozitbx12.pfb + RELOC/fonts/type1/public/drm/drmdozitbx14.pfb + RELOC/fonts/type1/public/drm/drmdozitbx17.pfb + RELOC/fonts/type1/public/drm/drmdozitbx24.pfb + RELOC/fonts/type1/public/drm/drmdozitbx6.pfb + RELOC/fonts/type1/public/drm/drmdozitbx7.pfb + RELOC/fonts/type1/public/drm/drmdozitbx8.pfb + RELOC/fonts/type1/public/drm/drmdozitbx9.pfb + RELOC/fonts/type1/public/drm/drmdozitsc10.pfb + RELOC/fonts/type1/public/drm/drmdozitsc11.pfb + RELOC/fonts/type1/public/drm/drmdozitsc12.pfb + RELOC/fonts/type1/public/drm/drmdozitsc14.pfb + RELOC/fonts/type1/public/drm/drmdozitsc17.pfb + RELOC/fonts/type1/public/drm/drmdozitsc24.pfb + RELOC/fonts/type1/public/drm/drmdozitsc6.pfb + RELOC/fonts/type1/public/drm/drmdozitsc7.pfb + RELOC/fonts/type1/public/drm/drmdozitsc8.pfb + RELOC/fonts/type1/public/drm/drmdozitsc9.pfb + RELOC/fonts/type1/public/drm/drmdozittc10.pfb + RELOC/fonts/type1/public/drm/drmdozittc11.pfb + RELOC/fonts/type1/public/drm/drmdozittc12.pfb + RELOC/fonts/type1/public/drm/drmdozittc14.pfb + RELOC/fonts/type1/public/drm/drmdozittc17.pfb + RELOC/fonts/type1/public/drm/drmdozittc24.pfb + RELOC/fonts/type1/public/drm/drmdozittc6.pfb + RELOC/fonts/type1/public/drm/drmdozittc7.pfb + RELOC/fonts/type1/public/drm/drmdozittc8.pfb + RELOC/fonts/type1/public/drm/drmdozittc9.pfb + RELOC/fonts/type1/public/drm/drmdozl10.pfb + RELOC/fonts/type1/public/drm/drmdozl11.pfb + RELOC/fonts/type1/public/drm/drmdozl12.pfb + RELOC/fonts/type1/public/drm/drmdozl14.pfb + RELOC/fonts/type1/public/drm/drmdozl17.pfb + RELOC/fonts/type1/public/drm/drmdozl24.pfb + RELOC/fonts/type1/public/drm/drmdozl6.pfb + RELOC/fonts/type1/public/drm/drmdozl7.pfb + RELOC/fonts/type1/public/drm/drmdozl8.pfb + RELOC/fonts/type1/public/drm/drmdozl9.pfb + RELOC/fonts/type1/public/drm/drmdozsc10.pfb + RELOC/fonts/type1/public/drm/drmdozsc11.pfb + RELOC/fonts/type1/public/drm/drmdozsc12.pfb + RELOC/fonts/type1/public/drm/drmdozsc14.pfb + RELOC/fonts/type1/public/drm/drmdozsc17.pfb + RELOC/fonts/type1/public/drm/drmdozsc24.pfb + RELOC/fonts/type1/public/drm/drmdozsc6.pfb + RELOC/fonts/type1/public/drm/drmdozsc7.pfb + RELOC/fonts/type1/public/drm/drmdozsc8.pfb + RELOC/fonts/type1/public/drm/drmdozsc9.pfb + RELOC/fonts/type1/public/drm/drmdozscbx10.pfb + RELOC/fonts/type1/public/drm/drmdozscbx11.pfb + RELOC/fonts/type1/public/drm/drmdozscbx12.pfb + RELOC/fonts/type1/public/drm/drmdozscbx14.pfb + RELOC/fonts/type1/public/drm/drmdozscbx17.pfb + RELOC/fonts/type1/public/drm/drmdozscbx24.pfb + RELOC/fonts/type1/public/drm/drmdozscbx6.pfb + RELOC/fonts/type1/public/drm/drmdozscbx7.pfb + RELOC/fonts/type1/public/drm/drmdozscbx8.pfb + RELOC/fonts/type1/public/drm/drmdozscbx9.pfb + RELOC/fonts/type1/public/drm/drmdozsl10.pfb + RELOC/fonts/type1/public/drm/drmdozsl11.pfb + RELOC/fonts/type1/public/drm/drmdozsl12.pfb + RELOC/fonts/type1/public/drm/drmdozsl14.pfb + RELOC/fonts/type1/public/drm/drmdozsl17.pfb + RELOC/fonts/type1/public/drm/drmdozsl24.pfb + RELOC/fonts/type1/public/drm/drmdozsl6.pfb + RELOC/fonts/type1/public/drm/drmdozsl7.pfb + RELOC/fonts/type1/public/drm/drmdozsl8.pfb + RELOC/fonts/type1/public/drm/drmdozsl9.pfb + RELOC/fonts/type1/public/drm/drmdoztc10.pfb + RELOC/fonts/type1/public/drm/drmdoztc11.pfb + RELOC/fonts/type1/public/drm/drmdoztc12.pfb + RELOC/fonts/type1/public/drm/drmdoztc14.pfb + RELOC/fonts/type1/public/drm/drmdoztc17.pfb + RELOC/fonts/type1/public/drm/drmdoztc24.pfb + RELOC/fonts/type1/public/drm/drmdoztc6.pfb + RELOC/fonts/type1/public/drm/drmdoztc7.pfb + RELOC/fonts/type1/public/drm/drmdoztc8.pfb + RELOC/fonts/type1/public/drm/drmdoztc9.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx10.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx11.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx12.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx14.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx17.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx24.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx6.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx7.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx8.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx9.pfb + RELOC/fonts/type1/public/drm/drmdozui10.pfb + RELOC/fonts/type1/public/drm/drmdozui11.pfb + RELOC/fonts/type1/public/drm/drmdozui12.pfb + RELOC/fonts/type1/public/drm/drmdozui14.pfb + RELOC/fonts/type1/public/drm/drmdozui17.pfb + RELOC/fonts/type1/public/drm/drmdozui24.pfb + RELOC/fonts/type1/public/drm/drmdozui6.pfb + RELOC/fonts/type1/public/drm/drmdozui7.pfb + RELOC/fonts/type1/public/drm/drmdozui8.pfb + RELOC/fonts/type1/public/drm/drmdozui9.pfb + RELOC/fonts/type1/public/drm/drmdozuibx10.pfb + RELOC/fonts/type1/public/drm/drmdozuibx11.pfb + RELOC/fonts/type1/public/drm/drmdozuibx12.pfb + RELOC/fonts/type1/public/drm/drmdozuibx14.pfb + RELOC/fonts/type1/public/drm/drmdozuibx17.pfb + RELOC/fonts/type1/public/drm/drmdozuibx24.pfb + RELOC/fonts/type1/public/drm/drmdozuibx6.pfb + RELOC/fonts/type1/public/drm/drmdozuibx7.pfb + RELOC/fonts/type1/public/drm/drmdozuibx8.pfb + RELOC/fonts/type1/public/drm/drmdozuibx9.pfb + RELOC/fonts/type1/public/drm/drmfigs10.pfb + RELOC/fonts/type1/public/drm/drmfigs11.pfb + RELOC/fonts/type1/public/drm/drmfigs12.pfb + RELOC/fonts/type1/public/drm/drmfigs14.pfb + RELOC/fonts/type1/public/drm/drmfigs17.pfb + RELOC/fonts/type1/public/drm/drmfigs24.pfb + RELOC/fonts/type1/public/drm/drmfigs6.pfb + RELOC/fonts/type1/public/drm/drmfigs7.pfb + RELOC/fonts/type1/public/drm/drmfigs8.pfb + RELOC/fonts/type1/public/drm/drmfigs9.pfb + RELOC/fonts/type1/public/drm/drmgrk10.pfb + RELOC/fonts/type1/public/drm/drminf10.pfb + RELOC/fonts/type1/public/drm/drminf11.pfb + RELOC/fonts/type1/public/drm/drminf12.pfb + RELOC/fonts/type1/public/drm/drminf14.pfb + RELOC/fonts/type1/public/drm/drminf17.pfb + RELOC/fonts/type1/public/drm/drminf24.pfb + RELOC/fonts/type1/public/drm/drminf6.pfb + RELOC/fonts/type1/public/drm/drminf7.pfb + RELOC/fonts/type1/public/drm/drminf8.pfb + RELOC/fonts/type1/public/drm/drminf9.pfb + RELOC/fonts/type1/public/drm/drmit10.pfb + RELOC/fonts/type1/public/drm/drmit11.pfb + RELOC/fonts/type1/public/drm/drmit12.pfb + RELOC/fonts/type1/public/drm/drmit14.pfb + RELOC/fonts/type1/public/drm/drmit17.pfb + RELOC/fonts/type1/public/drm/drmit24.pfb + RELOC/fonts/type1/public/drm/drmit6.pfb + RELOC/fonts/type1/public/drm/drmit7.pfb + RELOC/fonts/type1/public/drm/drmit8.pfb + RELOC/fonts/type1/public/drm/drmit9.pfb + RELOC/fonts/type1/public/drm/drmitbx10.pfb + RELOC/fonts/type1/public/drm/drmitbx11.pfb + RELOC/fonts/type1/public/drm/drmitbx12.pfb + RELOC/fonts/type1/public/drm/drmitbx14.pfb + RELOC/fonts/type1/public/drm/drmitbx17.pfb + RELOC/fonts/type1/public/drm/drmitbx24.pfb + RELOC/fonts/type1/public/drm/drmitbx6.pfb + RELOC/fonts/type1/public/drm/drmitbx7.pfb + RELOC/fonts/type1/public/drm/drmitbx8.pfb + RELOC/fonts/type1/public/drm/drmitbx9.pfb + RELOC/fonts/type1/public/drm/drmitsc10.pfb + RELOC/fonts/type1/public/drm/drmitsc11.pfb + RELOC/fonts/type1/public/drm/drmitsc12.pfb + RELOC/fonts/type1/public/drm/drmitsc14.pfb + RELOC/fonts/type1/public/drm/drmitsc17.pfb + RELOC/fonts/type1/public/drm/drmitsc24.pfb + RELOC/fonts/type1/public/drm/drmitsc6.pfb + RELOC/fonts/type1/public/drm/drmitsc7.pfb + RELOC/fonts/type1/public/drm/drmitsc8.pfb + RELOC/fonts/type1/public/drm/drmitsc9.pfb + RELOC/fonts/type1/public/drm/drmittc10.pfb + RELOC/fonts/type1/public/drm/drmittc11.pfb + RELOC/fonts/type1/public/drm/drmittc12.pfb + RELOC/fonts/type1/public/drm/drmittc14.pfb + RELOC/fonts/type1/public/drm/drmittc17.pfb + RELOC/fonts/type1/public/drm/drmittc24.pfb + RELOC/fonts/type1/public/drm/drmittc6.pfb + RELOC/fonts/type1/public/drm/drmittc7.pfb + RELOC/fonts/type1/public/drm/drmittc8.pfb + RELOC/fonts/type1/public/drm/drmittc9.pfb + RELOC/fonts/type1/public/drm/drml10.pfb + RELOC/fonts/type1/public/drm/drml11.pfb + RELOC/fonts/type1/public/drm/drml12.pfb + RELOC/fonts/type1/public/drm/drml14.pfb + RELOC/fonts/type1/public/drm/drml17.pfb + RELOC/fonts/type1/public/drm/drml24.pfb + RELOC/fonts/type1/public/drm/drml6.pfb + RELOC/fonts/type1/public/drm/drml7.pfb + RELOC/fonts/type1/public/drm/drml8.pfb + RELOC/fonts/type1/public/drm/drml9.pfb + RELOC/fonts/type1/public/drm/drmmi10.pfb + RELOC/fonts/type1/public/drm/drmsc10.pfb + RELOC/fonts/type1/public/drm/drmsc11.pfb + RELOC/fonts/type1/public/drm/drmsc12.pfb + RELOC/fonts/type1/public/drm/drmsc14.pfb + RELOC/fonts/type1/public/drm/drmsc17.pfb + RELOC/fonts/type1/public/drm/drmsc24.pfb + RELOC/fonts/type1/public/drm/drmsc6.pfb + RELOC/fonts/type1/public/drm/drmsc7.pfb + RELOC/fonts/type1/public/drm/drmsc8.pfb + RELOC/fonts/type1/public/drm/drmsc9.pfb + RELOC/fonts/type1/public/drm/drmscbx10.pfb + RELOC/fonts/type1/public/drm/drmscbx11.pfb + RELOC/fonts/type1/public/drm/drmscbx12.pfb + RELOC/fonts/type1/public/drm/drmscbx14.pfb + RELOC/fonts/type1/public/drm/drmscbx17.pfb + RELOC/fonts/type1/public/drm/drmscbx24.pfb + RELOC/fonts/type1/public/drm/drmscbx6.pfb + RELOC/fonts/type1/public/drm/drmscbx7.pfb + RELOC/fonts/type1/public/drm/drmscbx8.pfb + RELOC/fonts/type1/public/drm/drmscbx9.pfb + RELOC/fonts/type1/public/drm/drmsl10.pfb + RELOC/fonts/type1/public/drm/drmsl11.pfb + RELOC/fonts/type1/public/drm/drmsl12.pfb + RELOC/fonts/type1/public/drm/drmsl14.pfb + RELOC/fonts/type1/public/drm/drmsl17.pfb + RELOC/fonts/type1/public/drm/drmsl24.pfb + RELOC/fonts/type1/public/drm/drmsl6.pfb + RELOC/fonts/type1/public/drm/drmsl7.pfb + RELOC/fonts/type1/public/drm/drmsl8.pfb + RELOC/fonts/type1/public/drm/drmsl9.pfb + RELOC/fonts/type1/public/drm/drmsy10.pfb + RELOC/fonts/type1/public/drm/drmsym10.pfb + RELOC/fonts/type1/public/drm/drmsym11.pfb + RELOC/fonts/type1/public/drm/drmsym12.pfb + RELOC/fonts/type1/public/drm/drmsym14.pfb + RELOC/fonts/type1/public/drm/drmsym17.pfb + RELOC/fonts/type1/public/drm/drmsym24.pfb + RELOC/fonts/type1/public/drm/drmsym7.pfb + RELOC/fonts/type1/public/drm/drmsym8.pfb + RELOC/fonts/type1/public/drm/drmsym9.pfb + RELOC/fonts/type1/public/drm/drmtc10.pfb + RELOC/fonts/type1/public/drm/drmtc11.pfb + RELOC/fonts/type1/public/drm/drmtc12.pfb + RELOC/fonts/type1/public/drm/drmtc14.pfb + RELOC/fonts/type1/public/drm/drmtc17.pfb + RELOC/fonts/type1/public/drm/drmtc24.pfb + RELOC/fonts/type1/public/drm/drmtc6.pfb + RELOC/fonts/type1/public/drm/drmtc7.pfb + RELOC/fonts/type1/public/drm/drmtc8.pfb + RELOC/fonts/type1/public/drm/drmtc9.pfb + RELOC/fonts/type1/public/drm/drmtcbx10.pfb + RELOC/fonts/type1/public/drm/drmtcbx11.pfb + RELOC/fonts/type1/public/drm/drmtcbx12.pfb + RELOC/fonts/type1/public/drm/drmtcbx14.pfb + RELOC/fonts/type1/public/drm/drmtcbx17.pfb + RELOC/fonts/type1/public/drm/drmtcbx24.pfb + RELOC/fonts/type1/public/drm/drmtcbx6.pfb + RELOC/fonts/type1/public/drm/drmtcbx7.pfb + RELOC/fonts/type1/public/drm/drmtcbx8.pfb + RELOC/fonts/type1/public/drm/drmtcbx9.pfb + RELOC/fonts/type1/public/drm/drmui10.pfb + RELOC/fonts/type1/public/drm/drmui11.pfb + RELOC/fonts/type1/public/drm/drmui12.pfb + RELOC/fonts/type1/public/drm/drmui14.pfb + RELOC/fonts/type1/public/drm/drmui17.pfb + RELOC/fonts/type1/public/drm/drmui24.pfb + RELOC/fonts/type1/public/drm/drmui6.pfb + RELOC/fonts/type1/public/drm/drmui7.pfb + RELOC/fonts/type1/public/drm/drmui8.pfb + RELOC/fonts/type1/public/drm/drmui9.pfb + RELOC/fonts/type1/public/drm/drmuibx10.pfb + RELOC/fonts/type1/public/drm/drmuibx11.pfb + RELOC/fonts/type1/public/drm/drmuibx12.pfb + RELOC/fonts/type1/public/drm/drmuibx14.pfb + RELOC/fonts/type1/public/drm/drmuibx17.pfb + RELOC/fonts/type1/public/drm/drmuibx24.pfb + RELOC/fonts/type1/public/drm/drmuibx6.pfb + RELOC/fonts/type1/public/drm/drmuibx7.pfb + RELOC/fonts/type1/public/drm/drmuibx8.pfb + RELOC/fonts/type1/public/drm/drmuibx9.pfb + RELOC/tex/latex/drm/drm.sty +catalogue-ctan /fonts/drm +catalogue-license lppl1.3 +catalogue-topics font font-otf font-type1 font-mf +catalogue-version 4.4 + +name droid +category Package +revision 54512 +shortdesc LaTeX support for the Droid font families +relocated 1 +longdesc The Droid typeface family was designed in the fall of 2006 by +longdesc Steve Matteson, as a commission from Google to create a set of +longdesc system fonts for its Android platform. The goal was to provide +longdesc optimal quality and comfort on a mobile handset when rendered +longdesc in application menus, web browsers and for other screen text. +longdesc The Droid family consists of Droid Serif, Droid Sans and Droid +longdesc Sans Mono fonts, licensed under the Apache License Version 2.0. +longdesc The bundle includes the fonts in both TrueType and Adobe Type 1 +longdesc formats. The package does not support the Droid Pro family of +longdesc fonts, available for purchase from the Ascender foundry. +execute addMap droidsans.map +execute addMap droidsansmono.map +execute addMap droidserif.map +containersize 3195452 +containerchecksum e57eba23d2b7a84ca36be4b0a2988870a89b69a5c2f423d8961c8fe38c074cead0760c0061a545518959145ead02a13e321c5719cfcd7d6a575b7050cd74ef2d +doccontainersize 691976 +doccontainerchecksum d1f86ef4fd82d955e5f6560b1eb56805bbea621358c3e708f5c07d6539d278a4e61fed680afba425a212eb7383bcdc1d663d492b4cd716ba2c1872f9006350c8 +docfiles size=211 + RELOC/doc/fonts/droid/CHANGES + RELOC/doc/fonts/droid/README details="Readme" + RELOC/doc/fonts/droid/droid-samples.pdf details="Font samples" + RELOC/doc/fonts/droid/droid.pdf details="Package documentation" +runfiles size=1500 + RELOC/fonts/enc/dvips/droid/a_55mctf.enc + RELOC/fonts/enc/dvips/droid/a_6t6vor.enc + RELOC/fonts/enc/dvips/droid/a_7xkq4l.enc + RELOC/fonts/enc/dvips/droid/a_atrmj4.enc + RELOC/fonts/enc/dvips/droid/a_auqje4.enc + RELOC/fonts/enc/dvips/droid/a_dhbph5.enc + RELOC/fonts/enc/dvips/droid/a_es3zal.enc + RELOC/fonts/enc/dvips/droid/a_gyeryq.enc + RELOC/fonts/enc/dvips/droid/a_hyyrer.enc + RELOC/fonts/enc/dvips/droid/a_i77vuw.enc + RELOC/fonts/enc/dvips/droid/a_joxy3n.enc + RELOC/fonts/enc/dvips/droid/a_k2ku5j.enc + RELOC/fonts/enc/dvips/droid/a_l5aj6z.enc + RELOC/fonts/enc/dvips/droid/a_lzb5hy.enc + RELOC/fonts/enc/dvips/droid/a_nm2gjd.enc + RELOC/fonts/enc/dvips/droid/a_nwf7uv.enc + RELOC/fonts/enc/dvips/droid/a_slcnpg.enc + RELOC/fonts/enc/dvips/droid/a_vtfkvv.enc + RELOC/fonts/enc/dvips/droid/a_w466e2.enc + RELOC/fonts/enc/dvips/droid/a_xgvdme.enc + RELOC/fonts/enc/dvips/droid/a_zpgv3j.enc + RELOC/fonts/map/dvips/droid/droidsans.map + RELOC/fonts/map/dvips/droid/droidsansmono.map + RELOC/fonts/map/dvips/droid/droidserif.map + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-LGR--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-LGR-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-LGR-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-LGR.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-OT1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-OT1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-OT1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-OT1.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T1.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2A--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2A-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2A-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2A.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2B--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2B-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2B-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2B.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2C--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2C-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2C-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-T2C.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-TS1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-TS1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-TS1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-TS1.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-X2--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-X2-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-X2-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-Bold-X2.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-LGR--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-LGR-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-LGR-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-LGR.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-OT1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-OT1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-OT1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-OT1.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T1.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2A--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2A-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2A-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2A.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2B--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2B-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2B-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2B.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2C--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2C-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2C-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-T2C.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-TS1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-TS1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-TS1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-TS1.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-X2--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-X2-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-X2-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsans/DroidSans-X2.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-LGR--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-LGR-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-LGR-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-LGR.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-OT1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-OT1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-OT1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-OT1.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T1.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2A--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2A-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2A-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2A.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2B--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2B-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2B-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2B.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2C--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2C-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2C-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-T2C.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-TS1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-TS1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-TS1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-TS1.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-X2--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-X2-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-X2-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidsansmono/DroidSansMono-X2.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-LGR-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-LGR.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-OT1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-OT1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-OT1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-OT1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2A--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2A-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2A-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2A.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2B--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2B-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2B-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2B.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2C--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2C-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2C-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-T2C.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-TS1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-TS1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-TS1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-TS1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-X2--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-X2-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-X2-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Bold-X2.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-LGR-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-LGR.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-OT1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-OT1-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-OT1-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-OT1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T1-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T1-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2A--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2A-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2A-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2A.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2B--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2B-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2B-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2B.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2C--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2C-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2C-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-T2C.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-TS1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-TS1-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-TS1-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-TS1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-X2--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-X2-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-X2-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-BoldItalic-X2.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-LGR-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-LGR.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-OT1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-OT1-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-OT1-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-OT1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T1-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T1-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2A--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2A-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2A-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2A.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2B--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2B-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2B-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2B.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2C--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2C-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2C-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-T2C.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-TS1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-TS1-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-TS1-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-TS1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-X2--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-X2-Upright--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-X2-Upright.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Italic-X2.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-LGR-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-LGR.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-OT1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-OT1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-OT1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-OT1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2A--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2A-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2A-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2A.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2B--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2B-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2B-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2B.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2C--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2C-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2C-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-T2C.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-TS1--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-TS1-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-TS1-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-TS1.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-X2--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-X2-Slanted--base.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-X2-Slanted.tfm + RELOC/fonts/tfm/ascender/droid/droidserif/DroidSerif-Regular-X2.tfm + RELOC/fonts/truetype/ascender/droid/droidsans/DroidSans-Bold.ttf + RELOC/fonts/truetype/ascender/droid/droidsans/DroidSans.ttf + RELOC/fonts/truetype/ascender/droid/droidsansmono/DroidSansMono.ttf + RELOC/fonts/truetype/ascender/droid/droidserif/DroidSerif-Bold.ttf + RELOC/fonts/truetype/ascender/droid/droidserif/DroidSerif-BoldItalic.ttf + RELOC/fonts/truetype/ascender/droid/droidserif/DroidSerif-Italic.ttf + RELOC/fonts/truetype/ascender/droid/droidserif/DroidSerif-Regular.ttf + RELOC/fonts/type1/ascender/droid/droidsans/DroidSans-Bold.pfb + RELOC/fonts/type1/ascender/droid/droidsans/DroidSans.pfb + RELOC/fonts/type1/ascender/droid/droidsansmono/DroidSansMono.pfb + RELOC/fonts/type1/ascender/droid/droidserif/DroidSerif-Bold.pfb + RELOC/fonts/type1/ascender/droid/droidserif/DroidSerif-BoldItalic.pfb + RELOC/fonts/type1/ascender/droid/droidserif/DroidSerif-Italic.pfb + RELOC/fonts/type1/ascender/droid/droidserif/DroidSerif-Regular.pfb + RELOC/fonts/type1/ascender/droid/droidserif/DroidSerif.pfb + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-LGR-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-LGR.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-OT1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-OT1.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T1.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T2A-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T2A.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T2B-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T2B.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T2C-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-T2C.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-TS1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-TS1.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-X2-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-Bold-X2.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-LGR-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-LGR.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-OT1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-OT1.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T1.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T2A-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T2A.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T2B-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T2B.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T2C-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-T2C.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-TS1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-TS1.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-X2-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsans/DroidSans-X2.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-LGR-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-LGR.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-OT1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-OT1.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T1.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T2A-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T2A.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T2B-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T2B.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T2C-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-T2C.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-TS1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-TS1.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-X2-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidsansmono/DroidSansMono-X2.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-OT1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-OT1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T2A-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T2A.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T2B-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T2B.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T2C-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-T2C.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-TS1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-TS1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-X2-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Bold-X2.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-OT1-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-OT1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T1-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T2A-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T2A.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T2B-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T2B.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T2C-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-T2C.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-TS1-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-TS1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-X2-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-BoldItalic-X2.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-OT1-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-OT1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T1-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T2A-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T2A.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T2B-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T2B.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T2C-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-T2C.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-TS1-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-TS1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-X2-Upright.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Italic-X2.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-OT1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-OT1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T2A-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T2A.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T2B-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T2B.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T2C-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-T2C.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-TS1-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-TS1.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-X2-Slanted.vf + RELOC/fonts/vf/ascender/droid/droidserif/DroidSerif-Regular-X2.vf + RELOC/tex/latex/droid/LGRdroidsans.fd + RELOC/tex/latex/droid/LGRdroidsansmono.fd + RELOC/tex/latex/droid/LGRdroidserif.fd + RELOC/tex/latex/droid/OT1droidsans.fd + RELOC/tex/latex/droid/OT1droidsansmono.fd + RELOC/tex/latex/droid/OT1droidserif.fd + RELOC/tex/latex/droid/T1droidsans.fd + RELOC/tex/latex/droid/T1droidsansmono.fd + RELOC/tex/latex/droid/T1droidserif.fd + RELOC/tex/latex/droid/T2Adroidsans.fd + RELOC/tex/latex/droid/T2Adroidsansmono.fd + RELOC/tex/latex/droid/T2Adroidserif.fd + RELOC/tex/latex/droid/T2Bdroidsans.fd + RELOC/tex/latex/droid/T2Bdroidsansmono.fd + RELOC/tex/latex/droid/T2Bdroidserif.fd + RELOC/tex/latex/droid/T2Cdroidsans.fd + RELOC/tex/latex/droid/T2Cdroidsansmono.fd + RELOC/tex/latex/droid/T2Cdroidserif.fd + RELOC/tex/latex/droid/TS1droidsans.fd + RELOC/tex/latex/droid/TS1droidsansmono.fd + RELOC/tex/latex/droid/TS1droidserif.fd + RELOC/tex/latex/droid/X2droidsans.fd + RELOC/tex/latex/droid/X2droidsansmono.fd + RELOC/tex/latex/droid/X2droidserif.fd + RELOC/tex/latex/droid/droid.sty + RELOC/tex/latex/droid/droidsans.sty + RELOC/tex/latex/droid/droidsansmono.sty + RELOC/tex/latex/droid/droidserif.sty +catalogue-ctan /fonts/droid +catalogue-license lppl1.3c apache2 +catalogue-topics font font-body font-serif font-sans font-proportional font-mono font-supp font-t1enc font-ttf font-type1 +catalogue-version 3.2 + +name droit-fr +category Package +revision 39802 +shortdesc Document class and bibliographic style for French law +relocated 1 +longdesc The bundle provides a toolkit intended for students writing a +longdesc thesis in French law. It features: a LaTeX document class; a +longdesc bibliographic style for BibLaTeX package; a practical example +longdesc of french thesis document; and documentation. The class assumes +longdesc use of biber and BibLaTeX. +containersize 9772 +containerchecksum 76c928be0648ae7bddc76f654b65a99ae6670cb17b0ae9a54596599ff655636d4520b31d4e802a15af65637c5bf956d41a2095762a3c4bb77052c9f74da5e7af +doccontainersize 279420 +doccontainerchecksum 6129658aad2fae20dd12252941ee774393e262d9322ec2163ebc964ec27c4ffb63f2ce0faf9b74a90717c137065e9af238d45c623cc58d52b1e4776da221e231 +docfiles size=103 + RELOC/doc/latex/droit-fr/droit-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/droit-fr/droit-fr.tex + RELOC/doc/latex/droit-fr/example/annexes.tex + RELOC/doc/latex/droit-fr/example/bibliographie.bib + RELOC/doc/latex/droit-fr/example/bibliographie.tex + RELOC/doc/latex/droit-fr/example/conclusion.tex + RELOC/doc/latex/droit-fr/example/glossaire.tex + RELOC/doc/latex/droit-fr/example/index.tex + RELOC/doc/latex/droit-fr/example/introduction.tex + RELOC/doc/latex/droit-fr/example/journaux.bib + RELOC/doc/latex/droit-fr/example/latexmkrc + RELOC/doc/latex/droit-fr/example/main.tex + RELOC/doc/latex/droit-fr/example/misc.tex + RELOC/doc/latex/droit-fr/example/partie1.tex + RELOC/doc/latex/droit-fr/example/partie2.tex + RELOC/doc/latex/droit-fr/example/resume.tex + RELOC/doc/latex/droit-fr/example/sommaire.tex + RELOC/doc/latex/droit-fr/example/titre.tex + RELOC/doc/latex/droit-fr/example/toc.tex + RELOC/doc/latex/droit-fr/latexmkrc +runfiles size=10 + RELOC/tex/latex/droit-fr/droit-fr.bbx + RELOC/tex/latex/droit-fr/droit-fr.cbx + RELOC/tex/latex/droit-fr/droit-fr.cls +catalogue-ctan /macros/latex/contrib/droit-fr +catalogue-license lppl1.3 +catalogue-topics dissertation legal biblatex french class +catalogue-version 1.2 + +name drs +category Package +revision 19232 +shortdesc Typeset Discourse Representation Structures (DRS) +relocated 1 +longdesc The package draws Discourse Representation Structures (DRSs). +longdesc It can draw embedded DRSs, if-then conditions and +longdesc quantificational "duplex conditions" (with a properly scaled +longdesc connecting diamond). Formatting parameters allow the user to +longdesc control the appearance and placement of DRSs, and of DRS +longdesc variables and conditions. The package is based on DRS macros in +longdesc the covington package. +containersize 4560 +containerchecksum 5054b389c79b6895e648d3d4fcd1a3f7b06b213963245702e5bc4c0e8b6e3a87c6a2d3f72509998216e25553148008e597c6dd3015ef0b94724e84f3fade5936 +doccontainersize 99960 +doccontainerchecksum c265c462094e50872fc2748167226319a5723aabe54ca057661b95c7cff897afd08f42ce6d520b7ab35f259b760800e79ac6deae0f1ca0c776c2c2aa7839cf80 +docfiles size=30 + RELOC/doc/latex/drs/README details="Readme" + RELOC/doc/latex/drs/drsdoc.pdf details="Package documentation" + RELOC/doc/latex/drs/drsdoc.tex +runfiles size=3 + RELOC/tex/latex/drs/drs.sty +catalogue-ctan /macros/latex/contrib/drs +catalogue-license lppl1.3 +catalogue-topics linguistic +catalogue-version 1.1b + +name drv +category Package +revision 29349 +shortdesc Derivation trees with MetaPost +relocated 1 +longdesc A set of MetaPost macros for typesetting derivation trees (such +longdesc as used in sequent calculus, type inference, programming +longdesc language semantics...). No MetaPost knowledge is needed to use +longdesc these macros. +containersize 16468 +containerchecksum b7f2b56f305d552bd857a5950fad2dadbf800857d4c8ee411fd2f5786697385404fce3956e59b5928ed5f0a688117dd740c0f56806674d08cd8cb1d52b79a9d8 +doccontainersize 202676 +doccontainerchecksum a79d9883615568bd6c0d5aac44cc2ce28e0bd08e96f802d500515428ffb5400beadea94347abab7752904ae01342049b8d6687f6047aa9d8b27f5fe3a647bd02 +docfiles size=160 + RELOC/doc/metapost/drv/README details="Readme" + RELOC/doc/metapost/drv/doc/drv-guide.mp + RELOC/doc/metapost/drv/doc/drv-guide.tex + RELOC/doc/metapost/drv/doc/drv.mp + RELOC/doc/metapost/drv/doc/makefile + RELOC/doc/metapost/drv/doc/readme.sh + RELOC/doc/metapost/drv/drv-guide.pdf details="User guide" + RELOC/doc/metapost/drv/sample/coq-sample.mp + RELOC/doc/metapost/drv/sample/coq-sample.tex + RELOC/doc/metapost/drv/sample/drv.mp + RELOC/doc/metapost/drv/sample/makefile + RELOC/doc/metapost/drv/sample/readme.sh + RELOC/doc/metapost/drv/template/drv.mp + RELOC/doc/metapost/drv/template/makefile + RELOC/doc/metapost/drv/template/readme.sh + RELOC/doc/metapost/drv/template/template.mp + RELOC/doc/metapost/drv/template/template.tex +runfiles size=21 + RELOC/metapost/drv/drv.mp +catalogue-ctan /graphics/metapost/contrib/macros/drv +catalogue-license lppl +catalogue-topics tree +catalogue-version 0.97 + +name dsptricks +category Package +revision 34724 +shortdesc Macros for Digital Signal Processing plots +relocated 1 +longdesc The package provides a set of LaTeX macros (based on PSTricks) +longdesc for plotting the kind of graphs and figures that are usually +longdesc employed in digital signal processing publications. DSPTricks +longdesc provides facilities for standard discrete-time "lollipop" +longdesc plots, continuous-time and frequency plots, and pole-zero +longdesc plots. The companion package DSPFunctions (dspfunctions.sty) +longdesc provides macros for computing frequency responses and DFTs, +longdesc while the package DSPBlocks (dspblocks.sty) supports DSP block +longdesc diagrams. +containersize 11588 +containerchecksum 282c1c1aa51c70a77b0b63190ee875668dab9fc2303e2a84ff0d79a7c9f78a2534e4752a32c093e72eda7e98aea220923f9d1703b5c94214f9590962187de194 +doccontainersize 170156 +doccontainerchecksum c45da3740ed14540cada0c75a98c19f5e3cd2b32811a4f1906e11c45a40e0e8d31bd706ff4afb18073690e4e285b7b44b858f53f33f050702526dbe0fc88f8b8 +docfiles size=63 + RELOC/doc/latex/dsptricks/README details="Readme" + RELOC/doc/latex/dsptricks/dspTricksManual.pdf details="Package documentation" + RELOC/doc/latex/dsptricks/dspTricksManual.tex +runfiles size=13 + RELOC/tex/latex/dsptricks/dspblocks.sty + RELOC/tex/latex/dsptricks/dspfunctions.sty + RELOC/tex/latex/dsptricks/dsptricks.sty +catalogue-ctan /graphics/pstricks/contrib/dsptricks +catalogue-license lppl +catalogue-topics pstricks +catalogue-version 1.0 + +name dsserif +category Package +revision 54512 +shortdesc A double-struck serifed font for mathematical use +relocated 1 +longdesc DSSerif is a mathematical font package with double struck +longdesc serifed digits, upper and lower case letters, in regular and +longdesc bold weights. The design was inspired by the STIX double struck +longdesc fonts, which are sans serif, but starting from a Courier-like +longdesc base. +execute addMap DSSerif.map +containersize 78396 +containerchecksum d1f173c1892acb75e319fe3e8702b5c8ba233ba3b236babd368c3a8bb47ba67de222e6d80ed65c17de9d152b98a930b59c74dc82fba619c2b24b4dc8143d5890 +doccontainersize 247184 +doccontainerchecksum a8a6c9224cb7a55d12d8825d108066038be9ceb3ebf50caf796dc17a84f4d9d615507778934046b8944d235acb3f829e7654527cf485c9bd2562998b376f26cc +docfiles size=72 + RELOC/doc/fonts/dsserif/OFL-FAQ.txt + RELOC/doc/fonts/dsserif/OFL.txt + RELOC/doc/fonts/dsserif/README details="Readme" + RELOC/doc/fonts/dsserif/dsserif-doc.pdf details="Package documentation" + RELOC/doc/fonts/dsserif/dsserif-doc.tex +srccontainersize 1716 +srccontainerchecksum 01fdb50fc1d1cfc294121882c3d05ed0878caf154f71f2b5dab6e21f3e96ddaccccf9da49d7aaf000a47c69f890a600d1914fce892d5efa485964140486ee950 +srcfiles size=5 + RELOC/source/dsserif/DSSerif-drv.tex + RELOC/source/dsserif/adjustments.mtx + RELOC/source/dsserif/mathalfij.etx + RELOC/source/dsserif/mathalfijB.etx + RELOC/source/dsserif/notes.txt +runfiles size=33 + RELOC/fonts/afm/public/dsserif/DSSerif-Bold.afm + RELOC/fonts/afm/public/dsserif/DSSerif.afm + RELOC/fonts/afm/public/dsserif/DSSerifUni-Bold.afm + RELOC/fonts/afm/public/dsserif/DSSerifUni.afm + RELOC/fonts/map/dvips/dsserif/DSSerif.map + RELOC/fonts/tfm/public/dsserif/DSSerif-Bold.tfm + RELOC/fonts/tfm/public/dsserif/DSSerif.tfm + RELOC/fonts/tfm/public/dsserif/DSSerifUni-Bold.tfm + RELOC/fonts/tfm/public/dsserif/DSSerifUni.tfm + RELOC/fonts/type1/public/dsserif/DSSerif-Bold.pfb + RELOC/fonts/type1/public/dsserif/DSSerif.pfb + RELOC/fonts/type1/public/dsserif/DSSerifUni-Bold.pfb + RELOC/fonts/type1/public/dsserif/DSSerifUni.pfb + RELOC/tex/latex/dsserif/dsserif.sty + RELOC/tex/latex/dsserif/udsserif.fd +catalogue-ctan /fonts/dsserif +catalogue-license ofl lppl lppl1.3 +catalogue-topics font font-serif font-maths font-bbd font-type1 +catalogue-version 1.01 + +name dtk +category Package +revision 56696 +shortdesc Document class for the journal of DANTE +relocated 1 +longdesc The bundle provides a class and style file for typesetting "Die +longdesc TeXnische Komodie" -- the communications of the German TeX +longdesc Users Group DANTE e.V. The arrangement means that the class may +longdesc be used by article writers to typeset a single article, as well +longdesc as to produce the complete journal. +containersize 17488 +containerchecksum 6553c4facf6e28210e22641d10babb0c4073c9514231e345f33aef419c95ea30b6fd744711233f91f90183624d5bd5c21ca7901c4ad46358b7b6335c09059241 +doccontainersize 79580 +doccontainerchecksum 9656de8b3319a84d5d32900a65c013e44ebfa5488761bb31a5d3f84faaf22f648367a842d274b25a19c70bb650e4043dcc18fa0fdeaafd6bc360534c118589d8 +docfiles size=28 + RELOC/doc/latex/dtk/README.md details="Readme" + RELOC/doc/latex/dtk/doc/beispiel.bib + RELOC/doc/latex/dtk/doc/beispiel.pdf details="Example of use" language="de" + RELOC/doc/latex/dtk/doc/beispiel.tex + RELOC/doc/latex/dtk/doc/dtk-extern-test.tex + RELOC/doc/latex/dtk/dtk-ruecken.tex + RELOC/doc/latex/dtk/dtk.nolig + RELOC/doc/latex/dtk/dtk.xdy + RELOC/doc/latex/dtk/dtk0.tex +runfiles size=23 + RELOC/tex/latex/dtk/dtk-author.clo + RELOC/tex/latex/dtk/dtk-extern.sty + RELOC/tex/latex/dtk/dtk-full.clo + RELOC/tex/latex/dtk/dtk-logos.sty + RELOC/tex/latex/dtk/dtk-new-engines.clo + RELOC/tex/latex/dtk/dtk-old-engines.clo + RELOC/tex/latex/dtk/dtk-url.sty + RELOC/tex/latex/dtk/dtk.bbx + RELOC/tex/latex/dtk/dtk.cbx + RELOC/tex/latex/dtk/dtk.cls +catalogue-contact-bugs https://github.com/rolfn/dtk/issues +catalogue-contact-repository https://github.com/rolfn/dtk +catalogue-ctan /usergrps/dante/dtk +catalogue-license lppl1.3c +catalogue-topics journalpub class +catalogue-version 2.08h + +name dtk-bibliography +category Package +revision 58212 +shortdesc Bibliography of "Die TeXnische Komodie" +relocated 1 +longdesc This package contains the bibliography for "Die TeXnische +longdesc Komodie", the journal of the German-speaking TeX User Group. It +longdesc is updated on a quarterly basis. +containersize 516 +containerchecksum 24d9c6fbec620031e612be1820a971dfcf763bb457ec440757ea3b40e953cca21b2eb5ea550fb7dbfb773663e04b3b37f99fdd83e592e2405c00cebbf558dc11 +doccontainersize 412068 +doccontainerchecksum 8b4256fd9dfebf80f5ee1a957b546746ae34801b552db1459a05a1a80be24bf8e64e968cc47c52226b6f4e0c8ee02876de4aa5fd41fb413389130d23be3f2c0d +docfiles size=220 + RELOC/doc/bibtex/dtk-bibliography/README.md details="Readme" + RELOC/doc/bibtex/dtk-bibliography/dtk-authoryear.bbx + RELOC/doc/bibtex/dtk-bibliography/dtk-authoryear.dbx + RELOC/doc/bibtex/dtk-bibliography/dtk-bibliography.bib + RELOC/doc/bibtex/dtk-bibliography/dtk-bibliography.pdf details="The document itself" + RELOC/doc/bibtex/dtk-bibliography/dtk-bibliography.tex +catalogue-contact-bugs https://github.com/dante-ev/dtk-bibliography/issues +catalogue-contact-repository https://github.com/dante-ev/dtk-bibliography +catalogue-contact-support https://github.com/dante-ev/dtk-bibliography/issues +catalogue-ctan /info/dtk-bibliography +catalogue-license lppl1.3c +catalogue-topics journ-digest review-document german-doc +catalogue-version 2021-01 + +name dtl +category TLCore +revision 52851 +shortdesc Tools to dis-assemble and re-assemble DVI files +longdesc DTL (DVI Text Language) is a means of expressing the content of +longdesc a DVI file, which is readily readable by humans. The DTL bundle +longdesc contains an assembler dt2dv (which produces DVI files from DTL +longdesc files) and a disassembler dv2dt (which produces DTL files from +longdesc DVI files). The DTL bundle was developed so as to avoid some +longdesc infelicities of dvitype (among other pressing reasons). +depend dtl.ARCH +containersize 580 +containerchecksum 866039bb0f76bc6b2f4dbb86133a48869d90ce7dae716df42e35f4d3ac2808fab52a79f77b047267d206ec416bba7dd6282468767b1b1f4fbb1146a1140eb78a +doccontainersize 52488 +doccontainerchecksum d624505c9bbcf7140fc264811631f55f8a26fb1e9c4d3b1fbb1be93460aca2d6dbd88192f057e1b17fe807af0b4ddbbef6e2a3ba919e6aed073a903045609d7f +docfiles size=21 + texmf-dist/doc/man/man1/dt2dv.1 + texmf-dist/doc/man/man1/dt2dv.man1.pdf + texmf-dist/doc/man/man1/dv2dt.1 + texmf-dist/doc/man/man1/dv2dt.man1.pdf +catalogue-ctan /dviware/dtl +catalogue-license pd +catalogue-topics dvi-struc +catalogue-version 0.6.1 + +name dtl.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dtl +containersize 20492 +containerchecksum fd3967c0222dec064ea3927691d20854f5826ff57db28d7c02357c48623ffbb9b754af35f2aa21eb28ef2fdfda5fa5a11208ebddf6cd7c493c70139312359d09 +binfiles arch=aarch64-linux size=20 + bin/aarch64-linux/dt2dv + bin/aarch64-linux/dv2dt + +name dtl.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dtl +containersize 21676 +containerchecksum c2c8c5b1dfd4a94fed58cdf93838dfc6c4e64e7bcfde6c6518bad94b184743c0de2fdc05a0b01df3cf4a98226144770112885c51ad1ae7a36997ff71d1626200 +binfiles arch=amd64-freebsd size=19 + bin/amd64-freebsd/dt2dv + bin/amd64-freebsd/dv2dt + +name dtl.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dtl +containersize 19228 +containerchecksum 4aa71c0fcbfddca69eff2617b4980d8b3c1bce99872fd58855ccc59bbda3626de02460c51c214cc1930ef65af1a5f0c15c1448235c1e162a988893f3f4ace40e +binfiles arch=amd64-netbsd size=19 + bin/amd64-netbsd/dt2dv + bin/amd64-netbsd/dv2dt + +name dtl.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dtl +containersize 15992 +containerchecksum d79324eb8504ae9a8efe2c1cffea3ba7e71cf479c7b4a7dfba8c341d5a2845e56ded7c31ddb45fde4854ec510a1cfcfd6fe9e7953986cc6c5dc9b0ebf4003781 +binfiles arch=armhf-linux size=14 + bin/armhf-linux/dt2dv + bin/armhf-linux/dv2dt + +name dtl.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dtl +containersize 16888 +containerchecksum f1a93bc4f5ffd24a299cac999813bae90cca0bc3211bcc9667035c9d4ad030102cd2acb0e49e32fc9899bdf29ff32b7a2867d4c17683cf68fa648ccff0f5e54f +binfiles arch=i386-cygwin size=16 + bin/i386-cygwin/dt2dv.exe + bin/i386-cygwin/dv2dt.exe + +name dtl.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dtl +containersize 19320 +containerchecksum 4472aa99a4cdf3dc660fabdaabfdabe9f6933dc9be8dc2f68e1946b420269692ee6dfa5673f9cae84109508ea03d3bfa2ba3d194d8adc591ed353f8c532e14a0 +binfiles arch=i386-freebsd size=16 + bin/i386-freebsd/dt2dv + bin/i386-freebsd/dv2dt + +name dtl.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dtl +containersize 21328 +containerchecksum 8cc3fd951bc6a77efdb4b206262a9f3cac2ceaae96f509408fcdaa5a122fe81fef956e7ee7f4c8b6293c39af740bd4a99981f230b7651a8527900d0a45826943 +binfiles arch=i386-linux size=18 + bin/i386-linux/dt2dv + bin/i386-linux/dv2dt + +name dtl.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dtl +containersize 18088 +containerchecksum f3a250850b4f45497eaca73e5a676714674bb70ebae23430d3bd729dfb9fe304e0182d13f148c489d1487fd5037c267f3c550f3f7a32c14cb52150994a69a03d +binfiles arch=i386-netbsd size=17 + bin/i386-netbsd/dt2dv + bin/i386-netbsd/dv2dt + +name dtl.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dtl +containersize 20508 +containerchecksum 752e4b1340abd97f977f8e6d478557f36779d5b5b0aa16924c12efb8de5f7ffb4f5e1812828dcc203199cb942b379c6fbd5ced2cddd3dc0a6dff2846c9fac3e3 +binfiles arch=i386-solaris size=16 + bin/i386-solaris/dt2dv + bin/i386-solaris/dv2dt + +name dtl.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dtl +containersize 45740 +containerchecksum 94a84ee07b799fd2dd84be6df66433354f658786913096550f1dc8c18e9bd4e43f81259bc9770495e95f1e4c5580ce9c5fdc750c13a6412d8c09f688febd8d06 +binfiles arch=universal-darwin size=80 + bin/universal-darwin/dt2dv + bin/universal-darwin/dv2dt + +name dtl.win32 +category TLCore +revision 58783 +shortdesc win32 files of dtl +containersize 16116 +containerchecksum a94514efbd2df0b1ac04bacf1d552b73c9be71ff78e632033193d9fe56ee2501c28753edaa5b1d8a5fa7b4eb3df6deeba50f645933fe82ab4cd96f38995df547 +binfiles arch=win32 size=12 + bin/win32/dt2dv.exe + bin/win32/dv2dt.exe + +name dtl.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dtl +containersize 17660 +containerchecksum 7dc5898378131c034fa41e75a85e8e6c7430a2f4bd50c8b55c79640e315674ea925515f4f6531f7aa020d8652e1dd47936fbc2dd7d72efa3a03d3f4f9152d987 +binfiles arch=x86_64-cygwin size=15 + bin/x86_64-cygwin/dt2dv.exe + bin/x86_64-cygwin/dv2dt.exe + +name dtl.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dtl +containersize 20424 +containerchecksum 47022d5df9e1cd3e845e473ffa8a539359974c366c57c2387b6debab548e632aa62aa7243a1c214c5e0a44356024e4d5d57b6184fae3901a25975bb1eed6253d +binfiles arch=x86_64-darwinlegacy size=19 + bin/x86_64-darwinlegacy/dt2dv + bin/x86_64-darwinlegacy/dv2dt + +name dtl.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dtl +containersize 20864 +containerchecksum 5231f9b4fbf91c5b0879172c646472b1a161759bfdffe0e62f2854ce6d0e3269c4bd1142f173fde973acfa4fc68c6944310acef211fb43a7d50e2f511d1b9d1c +binfiles arch=x86_64-linux size=17 + bin/x86_64-linux/dt2dv + bin/x86_64-linux/dv2dt + +name dtl.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dtl +containersize 22244 +containerchecksum afbebe5dd947561ba83427d57c82cb553f6eca08ba383223e46dbe1a84015622bc7ce361845023dc18b18d3498e901af850f4356a5b96cea39a8545154cd9c19 +binfiles arch=x86_64-linuxmusl size=20 + bin/x86_64-linuxmusl/dt2dv + bin/x86_64-linuxmusl/dv2dt + +name dtl.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dtl +containersize 23076 +containerchecksum db0d71dc5b200378586d974252b1dc7f0feb48e6c725597c659abfe7cfbb45b0414656f7505b7228ef8292e83489b8fa8aace1027e0b23a9570e3f5b88bae1a7 +binfiles arch=x86_64-solaris size=21 + bin/x86_64-solaris/dt2dv + bin/x86_64-solaris/dv2dt + +name dtxdescribe +category Package +revision 51652 +shortdesc Describe additional object types in dtx source files +relocated 1 +longdesc The doc package includes tools for describing macros and +longdesc environments in LaTeX source .dtx format. The dtxdescribe +longdesc package adds additional tools for describing booleans, lengths, +longdesc counters, keys, packages, classes, options, files, commands, +longdesc arguments, and other objects, and also works with the standard +longdesc document classes as well, for those who do not wish to use the +longdesc .dtx format. Each item is given a margin tag similar to +longdesc \DescribeEnv, and is listed in the index by itself and also by +longdesc category. Each item may be sorted further by an optional class. +longdesc All index entries except code lines are hyperlinked. The +longdesc dtxexample environment is provided for typesetting example code +longdesc and its results. Contents are displayed verbatim along with a +longdesc caption and cross-referencing. They are then input and +longdesc executed, and the result is shown. Environments are also +longdesc provided for displaying verbatim or formatted source code, +longdesc user-interface displays, and sidebars with titles. Macros are +longdesc provided for formatting the names of inline LaTeX objects such +longdesc as packages and booleans, as well as program and file names, +longdesc file types, internet objects, the names of certain programs, a +longdesc number of logos, and inline dashes and slashes. +containersize 5472 +containerchecksum 4f226da178f26f2e3310a86e2d884aee681f87528c0d43f942f23c68b6e335eb21bef830233524d44d2945a1d287ff9542bd69744c15c722a54ba38a5af73d96 +doccontainersize 328456 +doccontainerchecksum 45592bc0c6836d83f1db18f7852394a0288c2557aa708ccbd1407656b7939cefba07556e924fe495da36078411b81bd00702f7998332a5fd801aac0327655f47 +docfiles size=83 + RELOC/doc/latex/dtxdescribe/README.txt details="Readme" + RELOC/doc/latex/dtxdescribe/dtxdescribe.pdf details="Package documentation" +srccontainersize 18844 +srccontainerchecksum 9ad27a4f1fc13deb348a3bb73dfecb634ed3f0b69565f4ab06763cafdd652b4899fa4914d64c9596534cb561ac9724c86ea713939d7d6e6c7820c869acb0289d +srcfiles size=23 + RELOC/source/latex/dtxdescribe/dtxdescribe.dtx + RELOC/source/latex/dtxdescribe/dtxdescribe.ins +runfiles size=5 + RELOC/tex/latex/dtxdescribe/dtxdescribe.sty +catalogue-also doc +catalogue-contact-home http://bdtechconcepts.com +catalogue-ctan /macros/latex/contrib/dtxdescribe +catalogue-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 1.02 + +name dtxgallery +category Package +revision 49504 +shortdesc A small collection of minimal DTX examples +relocated 1 +longdesc A collection of files that demonstrate simple things that are +longdesc possible with the flexible and under-appreciated docstrip file +longdesc format. Each file of the collection is provided as a .dtx file +longdesc and as the corresponding .pdf. The set is intended as a +longdesc companion to Scott Pakin's excellent and influential dtxtut +longdesc example of producing LaTeX packages in this way. +containersize 580 +containerchecksum c4b164fc1fe9230aa92bd38689ffa67391aea511af59e74b93c9379f1d027f07091f98734af837a1af90b35b0e2e5245f78f0198f4a09465a8c59c18077a2457 +doccontainersize 352664 +doccontainerchecksum ea56d62e0fb8b168461f8d01a08a9829ed00db4e2d6a460791de3018be21b4b446ad8ebf4a1c4a69e99a0989b85b55cbaa8aed171a53479df0501ea36cf03bdc +docfiles size=100 + RELOC/doc/latex/dtxgallery/README details="Readme" + RELOC/doc/latex/dtxgallery/conditional-code.dtx + RELOC/doc/latex/dtxgallery/conditional-code.pdf + RELOC/doc/latex/dtxgallery/dtxgallery.dtx + RELOC/doc/latex/dtxgallery/dtxgallery.pdf + RELOC/doc/latex/dtxgallery/rearrange.dtx + RELOC/doc/latex/dtxgallery/rearrange.pdf + RELOC/doc/latex/dtxgallery/single-source.dtx + RELOC/doc/latex/dtxgallery/single-source.pdf +catalogue-ctan /info/dtxgallery +catalogue-license lppl +catalogue-topics demo-code +catalogue-version 1 + +name dtxgen +category Package +revision 51663 +shortdesc Creates a template for a self-extracting .dtx file +longdesc The bash script dtxgen creates a template for a self-extracting +longdesc .dtx file. It is useful for those who plan to create a new +longdesc Documented LaTeX Source (.dtx) file. +depend dtxgen.ARCH +containersize 5768 +containerchecksum b197684c1e941a64b606b472fb9e0f1ed4f5d0b0db2df59202712c0e3f3b3993106b8d493d707c4875e90dacd9dc7d12bba784ef7c8d04984a38708073b1b92d +doccontainersize 56416 +doccontainerchecksum f666a2b5d3cb32d43a23cc3edcd92bfb727d500a8c439b4b78bae89ac73c317adac9786e4702e78b5b4861b76489ff7af5cfd115a80b96cd6298c65412d56a50 +docfiles size=15 + texmf-dist/doc/support/dtxgen/README details="README" + texmf-dist/doc/support/dtxgen/dtxgen.pdf details="Package documentation" +runfiles size=4 + texmf-dist/scripts/dtxgen/dtxgen +catalogue-ctan /support/dtxgen +catalogue-license gpl +catalogue-topics file-mgmt +catalogue-version 1.08 + +name dtxgen.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dtxgen +containersize 340 +containerchecksum 0f7d1c2b0edaeb5d9aea64a3b6e7616614e6a28b7f53782d1672f7e07154f9d4cdb91fb96a016187b4c6d6d91ff0a3a1a8d693be4f99f4a2a16a3c80e495354b +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dtxgen + +name dtxgen.amd64-freebsd +category Package +revision 29031 +shortdesc amd64-freebsd files of dtxgen +containersize 340 +containerchecksum 548b80f6b4d7c8a3671f99786208e82bd0d531e0fa3fa94a7eccc91a0f090ebad700cca0f91f6ddf1837a2960992b5d718a96eab3611358a3cb43f8c1723fd4a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dtxgen + +name dtxgen.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of dtxgen +containersize 336 +containerchecksum 4c215bb55693532f71c1093ed091778d8aa6716a993880cb597bb9de01135ad59b89690a2497168381b443abc0b326cf732f5f45a087ad131f369bec7b818a32 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dtxgen + +name dtxgen.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of dtxgen +containersize 336 +containerchecksum f6cc5b4ab066adbaf225fecdbd798d32ed70721f494c1dd2e4a19e3849884f659efc7135d99a5ced168b37672717b9195f94b31f3a31a5bbabbfcbcc488e1445 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dtxgen + +name dtxgen.i386-cygwin +category Package +revision 29031 +shortdesc i386-cygwin files of dtxgen +containersize 336 +containerchecksum 675c37d3b33af94599222c252c50338956d41008aefe06eb6e69c44508b2e70df7ad77d4de62751a6c88e03d215619afabc579e97617de89b9ebd229a2ec1b29 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dtxgen + +name dtxgen.i386-freebsd +category Package +revision 29031 +shortdesc i386-freebsd files of dtxgen +containersize 340 +containerchecksum 570dcf9e3a189d0cd2ab1c6a0c82b1e4fc347143acd9e9bd72b5849369c5e0fd433827adfbd4eef4d71aab20c62b80b032b0becad724865b87adc0ecdec01b65 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dtxgen + +name dtxgen.i386-linux +category Package +revision 29031 +shortdesc i386-linux files of dtxgen +containersize 336 +containerchecksum 451d65fb8e8f258f5382489233f0b5f52a9eb4168b307ade4a9da77e5c1d74feef632699f4608ed1ac9eeab727dd63f565ea7db430b5e37ceb1fa25ef89108cd +binfiles arch=i386-linux size=1 + bin/i386-linux/dtxgen + +name dtxgen.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of dtxgen +containersize 336 +containerchecksum 61c5b40af5f221219a38cb91dd856db36341d39d2e94e14ebd4994e03482dd7774bc3c4d5e838aebd3f1c32ffc0b6f0de408b9869a2a53f52c28f3d7fd7aeb0f +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dtxgen + +name dtxgen.i386-solaris +category Package +revision 29031 +shortdesc i386-solaris files of dtxgen +containersize 336 +containerchecksum 75c88898651b2f85dd9af023f43c8bd875929b5c471867769587c4a5a375b6faa312b453e0d431c4ed1a36b48dce1e85a7672c86eaf30163a11ccf596bca6606 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dtxgen + +name dtxgen.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of dtxgen +containersize 336 +containerchecksum 8d0abce80bc7076f34cfa0177202670439b6828cfbc5482be27b2dd10ba7d6047ccf38cd9935df69b4c81f32c420bac108ac7103b93e4607e907034e4ac2702d +binfiles arch=universal-darwin size=1 + bin/universal-darwin/dtxgen + +name dtxgen.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of dtxgen +containersize 340 +containerchecksum 3e93c61ff4ac0d0b3fbedffb06024d0da3b90b38740c65b09cd429105c8d2170e61f88b2d689327f1b74720c809b6603389dd9f955bd9f11797abd8c8e060c67 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dtxgen + +name dtxgen.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of dtxgen +containersize 348 +containerchecksum 6a6d103af2b301daee6a683972f621f8a974f7b4afc5407a4de9e0d1b28671411be192b13ed7b389e31971f03928e0600a69682ecb96853a572c85f360474d81 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dtxgen + +name dtxgen.x86_64-linux +category Package +revision 29031 +shortdesc x86_64-linux files of dtxgen +containersize 336 +containerchecksum 7b36ae067898cdc73dc73241afd18f0eb121f9d9cb4e084d4ecf04e96d7b01585994159f7334b9cb40faf4010cf7a2646de7565117c5e2cf48a5063cc5d8edf0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dtxgen + +name dtxgen.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dtxgen +containersize 340 +containerchecksum 25a3da27d1e702b91faa3f8b6f9f77b0b0c77d6fddc87e22c08ce33820f275e7871ac3eea21c8cfb419d486a1fb27badd70068b1d5685fee2f22671e8b6ca4c9 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dtxgen + +name dtxgen.x86_64-solaris +category Package +revision 29031 +shortdesc x86_64-solaris files of dtxgen +containersize 340 +containerchecksum 5efbfc581b3f473ee4669d7af1e85740f85c655c94220e83fa5964e4c587cc72d430f377520d8ec1dc342eae2f91f298174134329094bf1b3fbee0faf692081a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dtxgen + +name dtxtut +category Package +revision 38375 +shortdesc Tutorial on writing .dtx and .ins files +relocated 1 +longdesc This tutorial is intended for advanced LaTeX2e users who want +longdesc to learn how to create .ins and .dtx files for distributing +longdesc their homebrewed classes and package files. +containersize 488 +containerchecksum cc28ede4898b583a89df3efbfed45318be9034b3c2a92bff083e79007326d4d680177f1884aa506dbc9574a924687eb463f2d69c297906fcbddaa584ef9e52bf +doccontainersize 313116 +doccontainerchecksum 2c8a2ec4fc38aefa720bee29f24149837f985a54cc1b9cc9325887f5b7738d89ef38d8b60acbb4b5adf0e6c13e1677003e58adaaaf50e8949c33377ca29679a7 +docfiles size=98 + RELOC/doc/latex/dtxtut/README details="Readme" + RELOC/doc/latex/dtxtut/cskeleton.dtx + RELOC/doc/latex/dtxtut/cskeleton.ins + RELOC/doc/latex/dtxtut/dtxtut.pdf details="Package documentation" + RELOC/doc/latex/dtxtut/dtxtut.tex + RELOC/doc/latex/dtxtut/skeleton.dtx + RELOC/doc/latex/dtxtut/skeleton.ins +catalogue-also makedtx sty2dtx +catalogue-ctan /info/dtxtut +catalogue-license lppl1.3 +catalogue-topics tut-latex-prg +catalogue-version 2.1 + +name ducksay +category Package +revision 56800 +shortdesc Draw ASCII art of animals saying a specified message +relocated 1 +longdesc The package draws ASCII art of animals saying a specified +longdesc message. The following macros are available: \ducksay +longdesc \duckthink \DefaultAnimal \AddAnimal \DucksayOptions Multi-line +longdesc messages are now fully supported. The package comes with two +longdesc versions, choosable with the version key. +containersize 9144 +containerchecksum e4538112c20c1afc2bbbea2d51d2f8a47721072e254c8578929e8acb0b0c6ca99c44eaae5ea3078ff33708ad7c573144e8d94055ac25d15032314db78c305627 +doccontainersize 485276 +doccontainerchecksum faa84c55147187055af777b7c770781441ce3a12d46386efb7e4a0348895f130f7b748977c5914914c8040831e11547abb1b648eeb0f4bbeef2e0f93248427b5 +docfiles size=120 + RELOC/doc/latex/ducksay/README.md details="Readme" + RELOC/doc/latex/ducksay/ducksay.pdf details="Package documentation" +srccontainersize 20352 +srccontainerchecksum f7fb26b1905a612044a2a05a1cc032855fc395d290b48524b042bc5d87ecd915484fdc463a1115cbb2f5ee2baecf096717bdcdd9e7da75768820dbe9d7ac959c +srcfiles size=23 + RELOC/source/latex/ducksay/ducksay.dtx +runfiles size=13 + RELOC/tex/latex/ducksay/ducksay.animals.tex + RELOC/tex/latex/ducksay/ducksay.code.v1.tex + RELOC/tex/latex/ducksay/ducksay.code.v2.tex + RELOC/tex/latex/ducksay/ducksay.sty +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-license lppl1.3c +catalogue-topics games amusements graphics +catalogue-version 2.5a + +name duckuments +category Package +revision 52271 +shortdesc Create duckified dummy content +relocated 1 +longdesc The package provides facilities to create duckified dummy +longdesc contents. It was inspired by the question "Getting ducks in +longdesc example images" on TeX-LaTeX Stack Exchange. The following +longdesc macros are available: \duckument[key=val] - print a short +longdesc duckument \blindduck[key=val] - print a paragraph +longdesc \ducklist(*){environment} - create a list of type environment +longdesc \ducklistlist(*){environment} - create nested lists +longdesc \duckitemize - ducklist{itemize} \duckenumerate - +longdesc ducklist{enumerate} \duckdescription - ducklist{description} +longdesc \duckumentsCreateExampleFile \duckumentsDrawRandomDucks The +longdesc package works with pdfTeX, LuaTeX, and XeTeX. +containersize 484476 +containerchecksum 77c975ea3e42faee4db5d99d692220884b24ccce2d69a30ce484d113cd261ddf5cf5a13ee04d9e8a95572e98c8c4bedfd901db34379af6a567777f9358e4bad5 +doccontainersize 495140 +doccontainerchecksum 0c9e24cc988b9350d188878dd8b463428133fe30c00218eed3d67917ace24412e55c396422890fc6c02030378b560b3d374970e879e3a331db7d8e34b3302421 +docfiles size=124 + RELOC/doc/latex/duckuments/README.md details="Readme" + RELOC/doc/latex/duckuments/duckuments.pdf details="Package documentation" + RELOC/doc/latex/duckuments/example-image-duck-portrait.tex + RELOC/doc/latex/duckuments/example-image-duck.tex +srccontainersize 9108 +srccontainerchecksum 528db05e9c1c0232fae271aff911f35cd55f85bfcdc931820f5a74d6f490fa3fada99c274b36fdddc6163cad6f779183b0056b1a6e003c4c2737282fed608497 +srcfiles size=10 + RELOC/source/latex/duckuments/duckuments.dtx +runfiles size=147 + RELOC/tex/latex/duckuments/duckuments.sty + RELOC/tex/latex/duckuments/example-image-duck-portrait.pdf + RELOC/tex/latex/duckuments/example-image-duck.pdf +catalogue-also lipsum tikzducks +catalogue-contact-repository https://github.com/Skillmon/ltx_duckuments +catalogue-ctan /macros/latex/contrib/duckuments +catalogue-license lppl1.3c +catalogue-topics macro-supp dummy-gen +catalogue-version 0.5 + +name duerer +category Package +revision 20741 +shortdesc Computer Duerer fonts +relocated 1 +longdesc These fonts are designed for titling use, and consist of +longdesc capital roman letters only. Together with the normal set of +longdesc base shapes, the family also offers an informal shape. The +longdesc distribution is as Metafont source. LaTeX support is available +longdesc in the duerer-latex bundle. +containersize 15040 +containerchecksum 15f39b70d6b595a1c4d6594a2908fc07e3597bf1bf88ba25b24ee545d473c709a15b52ad0bd367b0cb1a47ff9548a110c6dce6c2a2b2402f655c21f6dac5a393 +doccontainersize 940 +doccontainerchecksum babbe18510ab7acc910639e2993858b2cf27c4414772d2a03fd2d3576f7dd64f4c7b1aa05d9a7913b4eb8d4eddc942137b41b87816631b34cf35e0120dd3ea40 +docfiles size=1 + RELOC/doc/fonts/duerer/README details="Readme" +runfiles size=30 + RELOC/fonts/source/public/duerer/cdb10.mf + RELOC/fonts/source/public/duerer/cdi10.mf + RELOC/fonts/source/public/duerer/cdr10.mf + RELOC/fonts/source/public/duerer/cdsl10.mf + RELOC/fonts/source/public/duerer/cdss10.mf + RELOC/fonts/source/public/duerer/cdtt10.mf + RELOC/fonts/source/public/duerer/dromani.mf + RELOC/fonts/source/public/duerer/dromanu.mf + RELOC/fonts/source/public/duerer/dtitle.mf + RELOC/fonts/tfm/public/duerer/cdb10.tfm + RELOC/fonts/tfm/public/duerer/cdi10.tfm + RELOC/fonts/tfm/public/duerer/cdr10.tfm + RELOC/fonts/tfm/public/duerer/cdsl10.tfm + RELOC/fonts/tfm/public/duerer/cdss10.tfm + RELOC/fonts/tfm/public/duerer/cdtt10.tfm +catalogue-also duerer-latex +catalogue-ctan /fonts/duerer +catalogue-license pd +catalogue-topics font font-mf + +name duerer-latex +category Package +revision 15878 +shortdesc LaTeX support for the Duerer fonts +relocated 1 +longdesc LaTeX support for Hoenig's Computer Duerer fonts, using their +longdesc standard fontname names. +containersize 1136 +containerchecksum e474634e00b86878bc0c09ff247a930e102621d3606079d72e7c284a8ec61d2a2b36f1d09c171b7a4953981dea65df49da1962f01df272fa80354281a3209bc6 +doccontainersize 150404 +doccontainerchecksum d1ea1a023e9f2f1ea4e0fa045d8831f764dbef34d1ef2ec96090f7f7a49aa1f4ed2df63bb611ee354a1e816a204841fbd7f4059a14ed06d758a31ca9f460d50a +docfiles size=41 + RELOC/doc/latex/duerer-latex/README + RELOC/doc/latex/duerer-latex/duerer.pdf details="Package documentation" + RELOC/doc/latex/duerer-latex/duerer.tex +runfiles size=5 + RELOC/tex/latex/duerer-latex/duerer.sty + RELOC/tex/latex/duerer-latex/ot1cdin.fd + RELOC/tex/latex/duerer-latex/ot1cdr.fd + RELOC/tex/latex/duerer-latex/ot1cdss.fd + RELOC/tex/latex/duerer-latex/ot1cdtt.fd +catalogue-ctan /macros/latex/contrib/duerer-latex +catalogue-license gpl +catalogue-topics font-supp +catalogue-version 1.1 + +name duotenzor +category Package +revision 18728 +shortdesc Drawing package for circuit and duotensor diagrams +relocated 1 +longdesc This is a drawing package for circuit and duotensor diagrams +longdesc within LaTeX documents. It consists of about eighty commands, +longdesc calling on TikZ for support. +containersize 5304 +containerchecksum 33990302586baf5731976a27a8268986db6917137219248e559900fc2e64e5ef443bfd14a0472194a962f6fa59a8ed8bb1caadd46badf157fbe39f36815eacd7 +doccontainersize 155936 +doccontainerchecksum 83a811a37004975e4b3fca67bfed83d8fc85fe97a07a20f624d321c62efddf2ce188f1748a5cea47185675e8d5226433b48327d8d7daf87465471b89b652f2fe +docfiles size=45 + RELOC/doc/latex/duotenzor/README details="Readme" + RELOC/doc/latex/duotenzor/duotenzormanual.pdf details="Package documentation" + RELOC/doc/latex/duotenzor/duotenzormanual.tex +runfiles size=10 + RELOC/tex/latex/duotenzor/duotenzor.sty +catalogue-ctan /graphics/duotenzor +catalogue-license lppl1.3 +catalogue-topics diagram diagram-circ +catalogue-version 1.00 + +name dutchcal +category Package +revision 54080 +shortdesc A reworking of ESSTIX13, adding a bold version +relocated 1 +longdesc This package reworks the mathematical calligraphic font +longdesc ESSTIX13, adding a bold version. LaTeX support files are +longdesc included. The new fonts may also be accessed from the most +longdesc recent version of mathalpha. The fonts themselves are subject +longdesc to the SIL OPEN FONT LICENSE, version 1.1. +execute addMap dutchcal.map +containersize 36176 +containerchecksum 308253e2b148cab892ef0ea5004cce0c3e3fbea4c0555b67f49e554734b16bc5be9baa08119fd0a2186360cef20e165b5133ce85c793eceaa9955673ec4594ec +doccontainersize 1048 +doccontainerchecksum 1ac89d2c4ef090edc8c354a3f869485d3af9c374da012fb51edfd22f0644d63a5c380aad115b6dbe83e70846904b722b69fe4093f4a7ac8a4a3eb1c1c97f25b1 +docfiles size=1 + RELOC/doc/fonts/dutchcal/README details="Readme" +runfiles size=20 + RELOC/fonts/afm/public/dutchcal/DutchCalBold.afm + RELOC/fonts/afm/public/dutchcal/DutchCalReg.afm + RELOC/fonts/map/dvips/dutchcal/dutchcal.map + RELOC/fonts/tfm/public/dutchcal/dutchcal-b.tfm + RELOC/fonts/tfm/public/dutchcal/dutchcal-r.tfm + RELOC/fonts/tfm/public/dutchcal/rdutchcalb.tfm + RELOC/fonts/tfm/public/dutchcal/rdutchcalr.tfm + RELOC/fonts/type1/public/dutchcal/DutchCalBold.pfb + RELOC/fonts/type1/public/dutchcal/DutchCalReg.pfb + RELOC/fonts/vf/public/dutchcal/dutchcal-b.vf + RELOC/fonts/vf/public/dutchcal/dutchcal-r.vf + RELOC/tex/latex/dutchcal/dutchcal.sty + RELOC/tex/latex/dutchcal/udutchcal.fd +catalogue-ctan /fonts/dutchcal +catalogue-license lppl +catalogue-topics font font-calligraphic font-type1 +catalogue-version 1.0 + +name dvdcoll +category Package +revision 15878 +shortdesc A class for typesetting DVD archives +relocated 1 +longdesc Having lost the overview of my DVD archives, I simply could not +longdesc remember if I already recorded the documentary running on TV +longdesc that day. I chose to recreate the index using LaTeX: the design +longdesc aim was a hyperlinked and fully searchable PDF-document, +longdesc listing my DVDs with all titles, lengths and so on. Further +longdesc requirements were support for seasons of tv series and a list +longdesc with all faulty or missing programs for rerecording. The +longdesc dvdcoll class supports all these requirements. dvdcoll.cls +longdesc follows the structure <length>. As a result, the +longdesc class is not limited to DVDs--you can of course typeset +longdesc archives of CD-ROMs, Audio-CDs and so on. Supported languages +longdesc at the moment: English, French, German, Italian, Polish, +longdesc Portuguese, Spanish. Some help is needed for other languages! +containersize 15952 +containerchecksum e6b553b2e13e87e105ba1c64422e5269e2f285754f12db1d43f475e0f94dbd32253620c1e71ef08de106d5a050c531e058e529264478e7f4545ed83dfffdd233 +doccontainersize 199176 +doccontainerchecksum 59b152b1922bc79ec3a132902547e8ffebce8cc05e2933b3b54292b507d1ac1810cd0aa2c974045b9b996fd14445126e3eebe6ae3d6ec45e1fdccea9a6ca35e1 +docfiles size=138 + RELOC/doc/latex/dvdcoll/CHANGES + RELOC/doc/latex/dvdcoll/INSTALL details="Installation instructions" + RELOC/doc/latex/dvdcoll/README details="README file" + RELOC/doc/latex/dvdcoll/dcexample.pdf details="Example output" + RELOC/doc/latex/dvdcoll/dcexample.tex + RELOC/doc/latex/dvdcoll/dvdcoll.pdf details="Class documentation" language="en" + RELOC/doc/latex/dvdcoll/dvdcoll_de.pdf details="Class documentation" language="de" + RELOC/doc/latex/dvdcoll/manifest.txt +runfiles size=42 + RELOC/bibtex/bst/dvdcoll/dcbib.bst + RELOC/tex/latex/dvdcoll/dcl/UKenglish.dcl + RELOC/tex/latex/dvdcoll/dcl/USenglish.dcl + RELOC/tex/latex/dvdcoll/dcl/acadian.dcl + RELOC/tex/latex/dvdcoll/dcl/american.dcl + RELOC/tex/latex/dvdcoll/dcl/australian.dcl + RELOC/tex/latex/dvdcoll/dcl/austrian.dcl + RELOC/tex/latex/dvdcoll/dcl/brazil.dcl + RELOC/tex/latex/dvdcoll/dcl/brazilian.dcl + RELOC/tex/latex/dvdcoll/dcl/british.dcl + RELOC/tex/latex/dvdcoll/dcl/canadian.dcl + RELOC/tex/latex/dvdcoll/dcl/canadien.dcl + RELOC/tex/latex/dvdcoll/dcl/english.dcl + RELOC/tex/latex/dvdcoll/dcl/francais.dcl + RELOC/tex/latex/dvdcoll/dcl/french.dcl + RELOC/tex/latex/dvdcoll/dcl/frenchb.dcl + RELOC/tex/latex/dvdcoll/dcl/german.dcl + RELOC/tex/latex/dvdcoll/dcl/germanb.dcl + RELOC/tex/latex/dvdcoll/dcl/italian.dcl + RELOC/tex/latex/dvdcoll/dcl/naustrian.dcl + RELOC/tex/latex/dvdcoll/dcl/newzealand.dcl + RELOC/tex/latex/dvdcoll/dcl/ngerman.dcl + RELOC/tex/latex/dvdcoll/dcl/polish.dcl + RELOC/tex/latex/dvdcoll/dcl/portuges.dcl + RELOC/tex/latex/dvdcoll/dcl/portuguese.dcl + RELOC/tex/latex/dvdcoll/dcl/spanish.dcl + RELOC/tex/latex/dvdcoll/dcwrtbib.sty + RELOC/tex/latex/dvdcoll/dvdcoll.cls + RELOC/tex/latex/dvdcoll/pdfnotiz.sty +catalogue-ctan /macros/latex/contrib/dvdcoll +catalogue-license lppl +catalogue-topics catalogue class +catalogue-version 1.1a + +name dvgloss +category Package +revision 29103 +shortdesc Facilities for setting interlinear glossed text +relocated 1 +longdesc The package provides extensible macros for setting interlinear +longdesc glossed text -- useful, for instance, for typing linguistics +longdesc papers. The operative word here is "extensible": few features +longdesc are built in, but some flexible and powerful facilities are +longdesc included for adding your own. +containersize 2012 +containerchecksum 51227cd1323c6ef94f8e0c537289abd3812f39109ce178793347d6615a718109f120bf9e6a4dac1ea801effb6f2b9425c376fdcfd5db6a5409887a8b9b49dff8 +doccontainersize 205460 +doccontainerchecksum 4e59a568e0230e5e5dab7968eb27a8bda4680ed31b23d21fe3dfc15d0e3d8b3d6599535f91a092e2f9dea69402ba8ef07291d2cadc1e1cce28aea927fbb84341 +docfiles size=52 + RELOC/doc/latex/dvgloss/README details="Readme" + RELOC/doc/latex/dvgloss/dvgloss.pdf details="Package documentation" +srccontainersize 8748 +srccontainerchecksum a4df82b4ea3e57de02e61e28cf4b9e8fa91e385534d7676fe3e287c49148849dc736003b867f1b481d56466847f9f62f020bb2e826ec81dc31be3d2b6f6a47d4 +srcfiles size=8 + RELOC/source/latex/dvgloss/dvgloss.dtx + RELOC/source/latex/dvgloss/dvgloss.ins +runfiles size=1 + RELOC/tex/latex/dvgloss/dvgloss.sty +catalogue-also gb4e tree-dvips +catalogue-ctan /macros/latex/contrib/dvgloss +catalogue-license lppl +catalogue-topics linguistic +catalogue-version 0.1 + +name dvi2tty +category TLCore +revision 52851 +shortdesc Produce ASCII from DVI +longdesc A DVI driver to produce an ASCII representation of the +longdesc document. The original version was written in Pascal, and the +longdesc present author translated the program to C. +depend dvi2tty.ARCH +containersize 504 +containerchecksum 303289e5bef9fcc097c1e3ce3eff923c303f50f71c72f2c3929c55f006149171eeb4b69ff38f8a46b8a5d19ac79ebf6ca28ad1df5f9525a8f1dc6587bfa42d72 +doccontainersize 35876 +doccontainerchecksum fd8c456f223c78128b5a7c50bdd93068d00f92ffbb096ed2cecf23180b765eba0ba0dcea374f585754ecb28276e668788979e0be131465fbb56967b4ecdad900 +docfiles size=14 + texmf-dist/doc/man/man1/disdvi.1 + texmf-dist/doc/man/man1/disdvi.man1.pdf + texmf-dist/doc/man/man1/dvi2tty.1 + texmf-dist/doc/man/man1/dvi2tty.man1.pdf +catalogue-contact-repository https://github.com/t-tk/dvi2tty +catalogue-ctan /dviware/dvi2tty +catalogue-license gpl2 +catalogue-topics plain-text dvi-proc +catalogue-version 6.0.0 + +name dvi2tty.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dvi2tty +containersize 69228 +containerchecksum 96f000d08622bac1a27be91a2af2ff904aaf1cbbe185237147b1a30b444c494fa8e50c8fae06bd86e29700cef15282e29cea217cdad3b72df44f9b6ec932b90f +binfiles arch=aarch64-linux size=43 + bin/aarch64-linux/disdvi + bin/aarch64-linux/dvi2tty + +name dvi2tty.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dvi2tty +containersize 75184 +containerchecksum d3d0323ca9dcae29893b9068a608dcee6259a5da36d2a3e1a01f05eb350d450d6f7ff4213f4f345b0472d91e677782951f291257caa8b71dafc80b149b7cda30 +binfiles arch=amd64-freebsd size=47 + bin/amd64-freebsd/disdvi + bin/amd64-freebsd/dvi2tty + +name dvi2tty.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dvi2tty +containersize 63848 +containerchecksum 8abce0cf690c5e2b5ba78a9b7334332f3bc3fc6eb1e944a03e0f8c90d98de8a6b5f71891f7fc3a36fbe6619bfd4706c6b5a35c60605c4660080e03a83ad5e6ac +binfiles arch=amd64-netbsd size=47 + bin/amd64-netbsd/disdvi + bin/amd64-netbsd/dvi2tty + +name dvi2tty.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dvi2tty +containersize 59420 +containerchecksum 29586151f83e25de3154ea0414dd37393fa6bb07556841fe6d110c0ef7a3aa4f6fc6fe5fc3473d3ea545ef5b5376233a4346a1881e36ba1255562c28c84bfb7d +binfiles arch=armhf-linux size=37 + bin/armhf-linux/disdvi + bin/armhf-linux/dvi2tty + +name dvi2tty.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dvi2tty +containersize 23788 +containerchecksum 6d19c4abfe0cfb868103e275808eb018cd88c20d061dd6928384b7cf88fb6ac60ceda281065b47ba6180b00e63257d6cf42a617649834faee12828de16196941 +binfiles arch=i386-cygwin size=20 + bin/i386-cygwin/disdvi.exe + bin/i386-cygwin/dvi2tty.exe + +name dvi2tty.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dvi2tty +containersize 68552 +containerchecksum ad604184fc216c70d6c8bc337e66b1c32d670b0d9ad0e8b9c6ab2b383ce9f29731a066ca9aa973bb3586f8470d5b0a572caea3bd6bdda6859de3123efb1c80f4 +binfiles arch=i386-freebsd size=42 + bin/i386-freebsd/disdvi + bin/i386-freebsd/dvi2tty + +name dvi2tty.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dvi2tty +containersize 71680 +containerchecksum cb9546409a698dab711b036eb13faf049bc26a8343a6ad01cdc48a9e2e7b85a3f599772f843c96e35a7f576e507cc6c412efabfeb773b731ab70f925294d25c4 +binfiles arch=i386-linux size=44 + bin/i386-linux/disdvi + bin/i386-linux/dvi2tty + +name dvi2tty.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dvi2tty +containersize 59520 +containerchecksum 0f382dbb628da2b6c9fac0775adc5e735adb517e6147c070ff968514699ce37e690b540f087105e3738252535421f055d58270f9cfaf70d9f96233f576d1e62d +binfiles arch=i386-netbsd size=43 + bin/i386-netbsd/disdvi + bin/i386-netbsd/dvi2tty + +name dvi2tty.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dvi2tty +containersize 68128 +containerchecksum 35fe1cb9a452924f60d3c06a6c0ab3f43ace4ccb924aa2463dbe4d32f687450880aa9c0e04cd74c5a5e4bcb1f94ac5f869d7a72125a8b75c58569329f81bec0a +binfiles arch=i386-solaris size=40 + bin/i386-solaris/disdvi + bin/i386-solaris/dvi2tty + +name dvi2tty.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dvi2tty +containersize 125356 +containerchecksum 4e29bcf65b0347cdf8251b44b501f54d80b5bdfb281a0cf390886fdb1831f4f314b4f8ad05a1a1a451448ca21b10241e298ab96c15647265006ebc8789b6481d +binfiles arch=universal-darwin size=121 + bin/universal-darwin/disdvi + bin/universal-darwin/dvi2tty + +name dvi2tty.win32 +category TLCore +revision 58783 +shortdesc win32 files of dvi2tty +containersize 88180 +containerchecksum 2a197d88c5613909a4e8c5cd6609289dd53324eb9e1be98a7f6989398b0dc93a3c74b751f76867ce0a8cd901918c183b7fff5153448e6a8fa3b00832813ac354 +binfiles arch=win32 size=53 + bin/win32/disdvi.exe + bin/win32/dvi2tty.exe + +name dvi2tty.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dvi2tty +containersize 24952 +containerchecksum 4333dd71618a60a7d174503383a244427756eca84557e0e82f9c429a48ff414b10d9431a565d2da75e48af68a51269d719ec60522ffb71a8f9b6a20d24eff4a9 +binfiles arch=x86_64-cygwin size=20 + bin/x86_64-cygwin/disdvi.exe + bin/x86_64-cygwin/dvi2tty.exe + +name dvi2tty.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dvi2tty +containersize 68424 +containerchecksum 32818837f189b679e47f09b542e97661b9de306be47cbde6e5108b5e6e2e809c34a803538d6dec108db81f1c82303324cde9cb475afe952d6c503fbb16d6986b +binfiles arch=x86_64-darwinlegacy size=41 + bin/x86_64-darwinlegacy/disdvi + bin/x86_64-darwinlegacy/dvi2tty + +name dvi2tty.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dvi2tty +containersize 69604 +containerchecksum a4fa8baac7983cd8b8fbe48a09a00256a809c793741235135a7f473c467f7b46152f786de276539cbde3dcdc26abdbb4357d44a1a1e3046542b8e39588b54a98 +binfiles arch=x86_64-linux size=43 + bin/x86_64-linux/disdvi + bin/x86_64-linux/dvi2tty + +name dvi2tty.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dvi2tty +containersize 71884 +containerchecksum d21bb65b68775d438bce7a94fd0b261702d98122b6cb5457c82e9cd5c4f5ec8cc9703e88e5651fa8c53d70d3f388c51eaab69bacfcddbc278c649873b475e029 +binfiles arch=x86_64-linuxmusl size=43 + bin/x86_64-linuxmusl/disdvi + bin/x86_64-linuxmusl/dvi2tty + +name dvi2tty.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dvi2tty +containersize 73976 +containerchecksum f92c2524238c00d805e7ed102b5183c8d01087894733e504f123475f5503809b4e8a4cc7653dbdd2fdd766d6e751c162946adcb0a59618b46c5e7896c73daf68 +binfiles arch=x86_64-solaris size=47 + bin/x86_64-solaris/disdvi + bin/x86_64-solaris/dvi2tty + +name dviasm +category Package +revision 56373 +shortdesc A utility for editing DVI files +longdesc A Python script to support changing or creating DVI files via +longdesc disassembling into text, editing, and then reassembling into +longdesc binary format. It supports advanced features such as adding a +longdesc preprint number or watermarks. +depend dviasm.ARCH +containersize 10136 +containerchecksum 9f726816ddf7a52b797cfde03ffb863fa8a1b98068bc75da1ea86f57774bab248b4d4225f936b4cf3388dbb776e775527e4125ff5d49d76088e4f5be7125f4e6 +doccontainersize 24352 +doccontainerchecksum b2eecfcb0e665059843872426611e4a5c8092a2dfe51a82593803cb84b18147cd28fc18fe2d9575d24fac1b04501f1e90a2f9f3c4094d452bc51b3a4db603f9d +docfiles size=10 + texmf-dist/doc/latex/dviasm/README details="Readme" + texmf-dist/doc/man/man1/dviasm.1 + texmf-dist/doc/man/man1/dviasm.man1.pdf +runfiles size=11 + texmf-dist/scripts/dviasm/dviasm.py +catalogue-also dtl +catalogue-contact-bugs https://github.com/aminophen/dviasm/issues +catalogue-contact-repository https://github.com/aminophen/dviasm +catalogue-ctan /dviware/dviasm +catalogue-license gpl3+ +catalogue-topics dvi-struc + +name dviasm.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dviasm +containersize 340 +containerchecksum 1227a970401da87cc17bf43b733ea69429a13bb7e673c01059201c30a72ba899fdb4a5e51a2cfc259f3670c69a6cc2b22cfd1c7e67853083fa8682c2cf125660 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dviasm + +name dviasm.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of dviasm +containersize 340 +containerchecksum 70b623f81b22b23b854fa60fa7f6fdc81a4fb328b2e3f6b6401c9b630c97e794a5a699ffbde20eed5965d044c98b1c968992cd871b91b899f0a5aa667be48049 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dviasm + +name dviasm.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of dviasm +containersize 340 +containerchecksum 1731bd188c1bcea4bacc765569067a8cabb2caf56e424ac307eda57d21e91d99e4538a02826218d8b93fedab2b746b1678022fa0e894a38929e14489dfcf18e9 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dviasm + +name dviasm.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of dviasm +containersize 340 +containerchecksum b7e29a574ed550c45df2092338462f6d5be671bfd5dc9fb2e5a41693087070bd8f563e6a51d5933d185a4fa4ba050e75264b36468d66433708166fae78837e13 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dviasm + +name dviasm.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of dviasm +containersize 340 +containerchecksum df249d3e4471b3c65b0fbca2003b1a19b83a82b2495e4d1b5927d010c5cf393fc4e53e3112cfea4f4523e431f5158337b2d0d02e9a706a8c1f640a21685feba0 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dviasm + +name dviasm.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of dviasm +containersize 340 +containerchecksum bb98991d687972aa4520626e8b7895f47243ea9cace93c5ba3e0d508dc75c7d714c5f57853161f49b1ceec6c3b876fc3122c6ed913aa53a3ad360cf00d2ec3dd +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dviasm + +name dviasm.i386-linux +category Package +revision 8329 +shortdesc i386-linux files of dviasm +containersize 336 +containerchecksum 415d2fd995dda403926b44fc83ed0bf8bba9452ee61ca389b24c89fe1a293212d3611f91ec10e0d60930e99b887881ea3955ce3a6a380e961021c08e3316f374 +binfiles arch=i386-linux size=1 + bin/i386-linux/dviasm + +name dviasm.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of dviasm +containersize 340 +containerchecksum 83ff348191568f17b933b8ff90f44e2445898af2545e1b7ec57a29373f3f6db7b5b04d49ba9272e9fee3c70db8f99164a806e388bf69c91ffb518e4417ff898a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dviasm + +name dviasm.i386-solaris +category Package +revision 8563 +shortdesc i386-solaris files of dviasm +containersize 340 +containerchecksum f4e29019079df54cad4fb01cba127fec5a767f6e781290f48bfd2f54558943353a3851218012a2ccbcc01d40bfd94f846f632753f4fd12faaca25890a9d55313 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dviasm + +name dviasm.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of dviasm +containersize 340 +containerchecksum 37242da97b6d4845249a412a52f67e17b855b3746c343160126c57f57f7d2052bc1ebfd4a8b014e5f50f866c5998c41bf24f768fbe9e137521743ce84d8f2864 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/dviasm + +name dviasm.win32 +category Package +revision 15404 +shortdesc win32 files of dviasm +containersize 684 +containerchecksum 5b1931d996b64fe0b82f6085114ae39a09b48a724cae619b65e561e820737ae42863573361afc78eba878260538d240bdced3d42643eeafcad2bec8aa3347abf +binfiles arch=win32 size=1 + bin/win32/dviasm.exe + +name dviasm.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of dviasm +containersize 344 +containerchecksum 23dfc79561f9002461e700f21c90e07d0b7725a5eb002744edf32ec1dc3e27032320db2dea4817bc54841bac7cfa8162a4a1519cff2f35214365bd1d9340c2f0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dviasm + +name dviasm.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of dviasm +containersize 348 +containerchecksum c4e7c98c4e6d98acd77fb5788571f1c955e9690c6c510a91d61f033d5afc1af1fc3ce67f0370a678ff0dec5cd6318dc74aa005848ace4d919f39653f17defb88 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dviasm + +name dviasm.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of dviasm +containersize 340 +containerchecksum 0c26f92fa0196d39883e3f2dfc5a54cace8eb521403ace614a8049fd6c2969548c2b4c2baaa4b1dbd50cbce4e3d731ec5522cb324eac01ac88b4bae6b62c7c4c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dviasm + +name dviasm.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dviasm +containersize 344 +containerchecksum 5b0c12a4e4ad2806f6f2e63b11293d496d3e382b896e5b40d3b677ef9ec60e2e9bb7d4e85ff44fb030363295e6f73a05abc915b55f8cd2d7b2e5d33e7c73611c +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dviasm + +name dviasm.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of dviasm +containersize 340 +containerchecksum 59b6c8317ac8f20b72b6c1114710fb23e55a2c028579acfe1cf411f479ffd773cb1668c3d1811a3d921dff2f7013f88383439b3e3e2f3dda57b0e5e94baa3b5e +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dviasm + +name dvicopy +category TLCore +revision 57972 +shortdesc Copy DVI files, flattening VFs +longdesc DVICOPY is a utility program that allows one to take a DVI file +longdesc that references composite fonts (VF) and convert it into a DVI +longdesc file that does not contain such references. It also serves as a +longdesc basis for writing DVI drivers (much like DVItype). +depend dvicopy.ARCH +containersize 588 +containerchecksum f288fd83823c4cd7e01353dd1d7eb8d09cabfd3dce4c5db482e4063d187ea57ee1d2027cedd3f93ce373e03fa1d840075d6c05b27bd4ed084f0c354da22cc9cd +doccontainersize 18304 +doccontainerchecksum 0bafb5f769c7b59551028ebe29e30e3761a0f78ff0515a4414597b07b27b633ab537b9b0409437ec05e70889ff14692fc5fa53ea5aee9a0ab2ec7d0b34d2621b +docfiles size=7 + texmf-dist/doc/man/man1/dvicopy.1 + texmf-dist/doc/man/man1/dvicopy.man1.pdf +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /obsolete/dviware/dvicopy +catalogue-license gpl +catalogue-topics dvi-proc +catalogue-version 1.5 + +name dvicopy.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dvicopy +containersize 54144 +containerchecksum 4d679ca6e9ae54f192f6e8e7a14ff3898dd6d08bde11689ec377a7ed3e21fe4958b2c351a9c18e7fd31eb9279d2b37f88b1b42e97ca4ca4ddb7ee6496fdf30d2 +binfiles arch=aarch64-linux size=35 + bin/aarch64-linux/dvicopy + +name dvicopy.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dvicopy +containersize 60240 +containerchecksum 35cb757191685c33ab274784f4306f6c871d431027d637d9d0c93be3995506bb0df860ba77ea24dadb758a0aacb2bc662dfaa0cff4c73a9a08bf3b06aeaef58a +binfiles arch=amd64-freebsd size=35 + bin/amd64-freebsd/dvicopy + +name dvicopy.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dvicopy +containersize 51156 +containerchecksum adf23bfc702e7d46147fb2f4c8aa19d2c39411d81aa65e865af085d2d1909c3e7bdec01a855af34d9715a553e80b1f70da499e5158af0319c0359275ea09df29 +binfiles arch=amd64-netbsd size=39 + bin/amd64-netbsd/dvicopy + +name dvicopy.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dvicopy +containersize 43648 +containerchecksum ec5c3a681fffb59390256de171d2597c82ef4a6aea0215a03c40e3b1bc06ed3f7e40fb8aea3dfda9d90329bb50b84d5ffae83d59cb95df595320a9b804c5bca4 +binfiles arch=armhf-linux size=26 + bin/armhf-linux/dvicopy + +name dvicopy.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dvicopy +containersize 21780 +containerchecksum bc314cec4a5ace2ef09eb5d7993c692fb2c402f0cd2b80011ac0ddd713306fdaa00d5c5836d16f23d859cca214185837d09b8d6f5c64ffc796f54dd9f1964c18 +binfiles arch=i386-cygwin size=14 + bin/i386-cygwin/dvicopy.exe + +name dvicopy.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dvicopy +containersize 50468 +containerchecksum bf7f3ab0f36f783c59d1a759f26de6d5c060e9732bfce0db43f433df71dcd8f91f52eee2a6326ee1259642f086060e645e38323f30c96a15db49423b7a16be02 +binfiles arch=i386-freebsd size=31 + bin/i386-freebsd/dvicopy + +name dvicopy.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dvicopy +containersize 53992 +containerchecksum 9aa1041f91272e8e2f7803442d462df31081239ddfde06bbc5f52444db5b2ddd313c06de17ba8bc76a301196a69d5522e5c3a0b2a9e8bc998d4a3fa698b2cb4c +binfiles arch=i386-linux size=34 + bin/i386-linux/dvicopy + +name dvicopy.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dvicopy +containersize 43636 +containerchecksum db0ef71d81202fc0724a936432df6ffebb232baf44ef96331713d80995dc01926fc5841cb068d770acf493218d6006a86026389c714f777720a0a64bf7d2a6bf +binfiles arch=i386-netbsd size=37 + bin/i386-netbsd/dvicopy + +name dvicopy.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dvicopy +containersize 53412 +containerchecksum 0ac72a1caf51c7aac8c8a26e183b13fde0130ab8245417cf8dd79107195786112078446499cc955950465d9762ebb5d46f17fcd7747f052b9fc49d397462a6ff +binfiles arch=i386-solaris size=31 + bin/i386-solaris/dvicopy + +name dvicopy.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dvicopy +containersize 111180 +containerchecksum 0a9081d27472e9080f6e8ab7e52dfaa183696ce68044e50d3544d3f69667821127a9d1049fca874dfeb6b416e168de850f7c4f01af50bac017dc149951481585 +binfiles arch=universal-darwin size=88 + bin/universal-darwin/dvicopy + +name dvicopy.win32 +category TLCore +revision 58783 +shortdesc win32 files of dvicopy +containersize 24368 +containerchecksum 90e0809bf1dae5d519fa0d1394df6d551ed6011a612e4a922ebbc84fe2f554c7c6df980e4c09cdabf63aa031ee0c46237fcba2d77d03d7d2a037ad4a7b832c5f +binfiles arch=win32 size=18 + bin/win32/dvicopy.exe + +name dvicopy.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dvicopy +containersize 26052 +containerchecksum fb69e6e8ee1a1b85032e7f5bba798c76c831b2f5eaab97b798f56852360f68bbdc19279bff013d11ecc1374c9041e5b7e6d2d8d0d9c1ebd9b363b6c94c3b9ba6 +binfiles arch=x86_64-cygwin size=14 + bin/x86_64-cygwin/dvicopy.exe + +name dvicopy.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dvicopy +containersize 54932 +containerchecksum cb3c6aa4d9064bc0e8af68bf3f9e5b26058e90eb81b20e6c7e9cb3d662936f49dcfa4284041c6a8d87a29cd9342712e6958aba7b533653820b6eb61d57a2fef8 +binfiles arch=x86_64-darwinlegacy size=31 + bin/x86_64-darwinlegacy/dvicopy + +name dvicopy.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dvicopy +containersize 53652 +containerchecksum 5bbf1839d5a0bc60d95ed70917809d20dd399af9d199280a37109a54bdd01eade84808049561542ed2d8fa0c3a6f3702ce9426b102c1ff9e11e92d46214ad886 +binfiles arch=x86_64-linux size=30 + bin/x86_64-linux/dvicopy + +name dvicopy.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dvicopy +containersize 59156 +containerchecksum 03e1e0ec2944c7bc4f0ee0ae4fe63ae053a6500a6225cab250ff222058aef69ddb514c5068671cb59179285d79dedadd48598d9bf6262f741d8f34183cd81241 +binfiles arch=x86_64-linuxmusl size=34 + bin/x86_64-linuxmusl/dvicopy + +name dvicopy.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dvicopy +containersize 60104 +containerchecksum 2999b8ca957b3a52c4b077de1a8cf18292d6049697793503fe9823b7664d6b11fb3c7dc5f6f2e60f9cc64f2112435bda9ee757db5fd9138174db9a19076754fc +binfiles arch=x86_64-solaris size=36 + bin/x86_64-solaris/dvicopy + +name dvidvi +category TLCore +revision 52851 +shortdesc Convert one DVI file into another +longdesc The output DVI file's contents are specified by page selection +longdesc commands; series of pages and page number ranges may be +longdesc specified, as well as inclusions and exclusions. +depend dvidvi.ARCH +containersize 468 +containerchecksum d4589c7c034308547b4970104f6396ef24a15be22e034ac2f4f04a1004915c8d477e64e2c4b61927f43313b90b063602a4bcd45afb1bc33ee395e0b7caef202b +doccontainersize 19324 +doccontainerchecksum 865f4e96bc8ff13005350800014ede4c95671db1c45f35e37b153637c23834d34054e3aac1b6033c6a219f9f123563b1d0cc3093c901f67dba7e33e65ba81646 +docfiles size=7 + texmf-dist/doc/man/man1/dvidvi.1 + texmf-dist/doc/man/man1/dvidvi.man1.pdf +catalogue-ctan /dviware/dvidvi +catalogue-license other-free +catalogue-topics dvi-proc + +name dvidvi.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dvidvi +containersize 8588 +containerchecksum 20da026e2ef1016648a3cc389b7f3ba0ec63ae90e193c0f301266458513e827118a60b5961d1f761edc7aa25c4091146e16ec2f0f324d520be9b644318f29f9f +binfiles arch=aarch64-linux size=6 + bin/aarch64-linux/dvidvi + +name dvidvi.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dvidvi +containersize 9928 +containerchecksum 403f371bb4ad31aa41ddfd69cf97b5404b58dcb8fd283b76f23967ad430dde84a9d59e6ec6cdc8460ff7ffa7f9f65e564686fb93e01764445871ce712dd6ba84 +binfiles arch=amd64-freebsd size=6 + bin/amd64-freebsd/dvidvi + +name dvidvi.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dvidvi +containersize 8688 +containerchecksum 5df32bdc21de52a8644f7c03aff081a7faf4426141d36509874ce371ec1e4fb4cf5192e0ed7cad38b4734f59df7968e243e4b14d3cb719bea8857f37a45598e7 +binfiles arch=amd64-netbsd size=6 + bin/amd64-netbsd/dvidvi + +name dvidvi.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dvidvi +containersize 7588 +containerchecksum 14ad35b16a1636603ec86d13199d3fb8c29e5b3bea319ee3291f0bfa4a94ba941f9d48c84aa9485038f258876db9a19e7455e066952d5a7242c5adf2605ce1c8 +binfiles arch=armhf-linux size=5 + bin/armhf-linux/dvidvi + +name dvidvi.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dvidvi +containersize 9020 +containerchecksum 3fe5eae9b977d5b61a9ee4cfc34607e6e78086a6e6057f09b08a88b54c99236713b1f2d9754f57d08378381fa0001161926db9500f7e33bc4249ff9197d1a848 +binfiles arch=i386-cygwin size=6 + bin/i386-cygwin/dvidvi.exe + +name dvidvi.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dvidvi +containersize 8672 +containerchecksum 705da03074c8f289a4f2e192687bf7ec4335b9b629433c99f0a32c882fcc60fed34313ebf9b7e08e29497dd61469fcf202ba436d9c3b1433f51a2af3a1854fbe +binfiles arch=i386-freebsd size=6 + bin/i386-freebsd/dvidvi + +name dvidvi.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dvidvi +containersize 8036 +containerchecksum 1f34a0e2a6d3bf12d50717007443ac97523d9e2f420a1f799ca89fe5d96dadc47431fb640987cc7aad677c51261252938868a04614b6fb29e2a9017f199b5acc +binfiles arch=i386-linux size=5 + bin/i386-linux/dvidvi + +name dvidvi.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dvidvi +containersize 8032 +containerchecksum 15f0941949e7e8dbf5283167489e682e09d658a3e4e038a98a406c72a4fb73a7f3e5b9bc6e929a667e78a19869a80e72b292599596cba34e53cd9d93521b9a2b +binfiles arch=i386-netbsd size=5 + bin/i386-netbsd/dvidvi + +name dvidvi.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dvidvi +containersize 8900 +containerchecksum cb575684996932da90f053dbb012ea75ec818de7a5e6fea96de42508f209384ce96ddd329d3faa77f02c964a072674840246139a4fe98e4464eebc379a913d70 +binfiles arch=i386-solaris size=5 + bin/i386-solaris/dvidvi + +name dvidvi.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dvidvi +containersize 22292 +containerchecksum f1dbfd643685fa64630e8fe764b4a61b250616752a886ed6c4dbdbcc6537141448b16a8cb4a110c2862c9185a9fac6190cd34105f4df2df2e2a8fd49f84d348b +binfiles arch=universal-darwin size=38 + bin/universal-darwin/dvidvi + +name dvidvi.win32 +category TLCore +revision 58783 +shortdesc win32 files of dvidvi +containersize 10632 +containerchecksum 50f74051bb1c4186ee1c9f0995c108ee5524aac6a8ad97da4b742c86cd9f93c0260c2fb333631b2b9a1004dc2b69342ed252ab669e834aa778958161fd1fca1d +binfiles arch=win32 size=9 + bin/win32/a5bookle.bat + bin/win32/a5bookle.exe + bin/win32/doubside.bat + bin/win32/doubside.exe + bin/win32/dvidvi.exe + +name dvidvi.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dvidvi +containersize 9468 +containerchecksum 4bc9c5d078a7623446bd3db889dd9343c9ef255c9f1a23c2b6b27c52b981ad01152686e47a0a808b1a855e7a4552784edf4b8611083ea611b9011bb7f834069d +binfiles arch=x86_64-cygwin size=6 + bin/x86_64-cygwin/dvidvi.exe + +name dvidvi.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dvidvi +containersize 7968 +containerchecksum 99344628dcc6fe76101bf5cb61e6f8d104cc5e0a74865edcf588a038689e24b1ba31521d7021eb4c6b210dab955971bd70df99201fa1c9f458b0822dcaf2c7fa +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/dvidvi + +name dvidvi.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dvidvi +containersize 8328 +containerchecksum 1e339938968d6834c7634ff58f58de7dc8fdcad422bbd55ce3e1f0f721854d96979201998a69cda9d5914992663d9f259698b6d9efc242043ba2350015d260b5 +binfiles arch=x86_64-linux size=5 + bin/x86_64-linux/dvidvi + +name dvidvi.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dvidvi +containersize 8580 +containerchecksum 5ab746eeb82ad3670ab5cb49666d34b953d56f53306ab76314918b549fc5fdfebce3b444b50f53c49b56db2cbf7757b21033b424286db486c8d8a6da904031c3 +binfiles arch=x86_64-linuxmusl size=6 + bin/x86_64-linuxmusl/dvidvi + +name dvidvi.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dvidvi +containersize 9412 +containerchecksum 77f00f081cbc1525ca9ed41066b0f243cfd6523937c7f2b2cf48ddf7e00ed3e5cab31023e281cfd8dfaeba9fcefef0e065a39258c40a747cf4f05af8e7ff63e9 +binfiles arch=x86_64-solaris size=6 + bin/x86_64-solaris/dvidvi + +name dviincl +category Package +revision 29349 +shortdesc Include a DVI page into MetaPost output +relocated 1 +longdesc DVItoMP is one of the auxiliary programs available to any +longdesc MetaPost package; it converts a DVI file into a MetaPost file. +longdesc Using it, one can envisage including a DVI page into an EPS +longdesc files generated by MetaPost. Such files allow pages to include +longdesc other pages. +containersize 1084 +containerchecksum dc09380d453b2c83359fa1862f6d289162ed4ec12e7f1b2842789db26e780713981261369dee0d03561a6864bb8bb25e071ca73c3d85e6218667587fa78f55bd +doccontainersize 3636 +doccontainerchecksum 3418aa91ac8daf98f2ccbe67c2ca13bcf8fc5adb380f7c56e133f4487bc3ab701be1925d7a5878fc02ab7b8607e70991887a3d875d25b777b5489b7ae904aa7b +docfiles size=9 + RELOC/doc/metapost/dviincl/0czytaj.sla + RELOC/doc/metapost/dviincl/0dviincl.inf + RELOC/doc/metapost/dviincl/README details="Readme (English)" language="en" + RELOC/doc/metapost/dviincl/README.pl details="Readme (Polish)" language="pl" + RELOC/doc/metapost/dviincl/storyx.tex + RELOC/doc/metapost/dviincl/test-bop.mp + RELOC/doc/metapost/dviincl/test-bop.tex + RELOC/doc/metapost/dviincl/testit.bat + RELOC/doc/metapost/dviincl/testit.sh +runfiles size=2 + RELOC/metapost/dviincl/fix_brks.mp + RELOC/metapost/dviincl/fix_page.mp +catalogue-ctan /graphics/metapost/contrib/macros/dviincl +catalogue-license pd +catalogue-topics dvi-proc +catalogue-version 1.00 + +name dviinfox +category Package +revision 44515 +shortdesc Perl script to print DVI meta information +longdesc The package provides a perl script which prints information +longdesc about a DVI file. It also supports XeTeX XDV format. +depend dviinfox.ARCH +containersize 3540 +containerchecksum 33b37192832362c170575d1770b0e8da105ab0f9197ee52ff86a9dedfdac718fd7f3ca87d6f3f2075803fcffbc2f3739b806b1088bd7e2a21beca53292d918f0 +doccontainersize 2168 +doccontainerchecksum f5f84a2df36ee93ccc0a8acb687fa4fdc6441ee6b0c76fe4330cb28ff2e5106014df5f367d5f2821c10864ff16988837099114ce331afe8a303e0f9102d92193 +docfiles size=2 + texmf-dist/doc/latex/dviinfox/LICENSE + texmf-dist/doc/latex/dviinfox/README.md details="Readme" +runfiles size=3 + texmf-dist/scripts/dviinfox/dviinfox.pl +catalogue-contact-repository https://github.com/aminophen/tex-assort +catalogue-ctan /dviware/dviinfox +catalogue-license mit +catalogue-topics metadata dvi-struc +catalogue-version 1.04 + +name dviinfox.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dviinfox +containersize 340 +containerchecksum 93f54aed0370f4059be1f1d6fe9bd952d7b29995ece73054e5cd6b36c0014fdebdb17b486aedefbbef6167b5adf09e4ce98d25d0d93c1496bb9251bbc988f644 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dviinfox + +name dviinfox.amd64-freebsd +category Package +revision 44515 +shortdesc amd64-freebsd files of dviinfox +containersize 344 +containerchecksum d2f8123c00714cef525770af05ffa67586a2c6af2e01ecece3f875de677782a6c8d0613aaa13069825e4239343ada5bbcdcd010b2d34f648dd91ba29d7bd2401 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dviinfox + +name dviinfox.amd64-netbsd +category Package +revision 44515 +shortdesc amd64-netbsd files of dviinfox +containersize 340 +containerchecksum 5ce91e8b0a9aeab607713351d1f023a2350f22b03706977bdbfeab932f489880fbdd85ce73bddd17dc02e80fcdab1482af5737297feb7c93de310b343c5f6150 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dviinfox + +name dviinfox.armhf-linux +category Package +revision 44515 +shortdesc armhf-linux files of dviinfox +containersize 340 +containerchecksum 13182f96d2c7f45a1cb0d059f71764e948bf14a481cf31bfa1c3aac9704c3d807661db2f5b216ba652ab2636ca028e65dd7300679a90757340a70d30ad3af864 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dviinfox + +name dviinfox.i386-cygwin +category Package +revision 44515 +shortdesc i386-cygwin files of dviinfox +containersize 340 +containerchecksum 6e27de0136cd979c5b11b05a59c7383d709f86b808bd7ad343ffe300a3743d60ffdb6533ba39587335e26dd451f6db983102044fd0fade57e15fd817accd3528 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dviinfox + +name dviinfox.i386-freebsd +category Package +revision 44515 +shortdesc i386-freebsd files of dviinfox +containersize 340 +containerchecksum 8cb9451a83f9c5bc13c5ee1fb587ca269dcc9b8a0301f7364129c2e76e8c3b49d2831862271093d3d9a050b8e2d38e1ec4e7da076a790b802834409a56023e0a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dviinfox + +name dviinfox.i386-linux +category Package +revision 44515 +shortdesc i386-linux files of dviinfox +containersize 340 +containerchecksum 58ab6bf7acdf51ba3260d22b8d8975dd786f8d617973594e6b15c71656f229f298e233c8ccc9cec43c0976676782aae5df564404798e8d765061104eac841376 +binfiles arch=i386-linux size=1 + bin/i386-linux/dviinfox + +name dviinfox.i386-netbsd +category Package +revision 44515 +shortdesc i386-netbsd files of dviinfox +containersize 340 +containerchecksum 30d11221564ec84d389c264104cd352b1ba115460cdecbc25341c29ff96fa75840894c9c60a92a2e4034399879ebd92cbaf0089b607fc07721dee486c92e872d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dviinfox + +name dviinfox.i386-solaris +category Package +revision 44515 +shortdesc i386-solaris files of dviinfox +containersize 340 +containerchecksum b3f023c93fa302e575b82b771eddd5093c7f60d4afeb5e9b792330afd3fb8094e3ee8d310fc521ce95fc9d74819eb19d077e6b495ca9018ac226a2aaa98c0774 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dviinfox + +name dviinfox.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of dviinfox +containersize 340 +containerchecksum 367de99c4e70c216c040c6176ebc82180943d129639ce25c932cf176b00f470af163897f500b74602bb8711c33530372744a907d0f2613640509d8bafc481f66 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/dviinfox + +name dviinfox.win32 +category Package +revision 44515 +shortdesc win32 files of dviinfox +containersize 684 +containerchecksum a68fdc8f84608d8850cc57b1dfa68ad2013f90aed1a6f1f397745acb216f291cca5fe0643faf94f8e3b2ed40520cc2fe462069fb5d11008f534d7601fc528616 +binfiles arch=win32 size=1 + bin/win32/dviinfox.exe + +name dviinfox.x86_64-cygwin +category Package +revision 44515 +shortdesc x86_64-cygwin files of dviinfox +containersize 344 +containerchecksum bf3a2a9849414513dcfce586313e830aaa5c20fe78872290e41383d21619c73bb4dcc3b07de80ca2d423c8a73c7770fa846092ffe489b8fd37868dba04ecaa41 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dviinfox + +name dviinfox.x86_64-darwinlegacy +category Package +revision 44515 +shortdesc x86_64-darwinlegacy files of dviinfox +containersize 352 +containerchecksum 9bbc85be51f76c1f55886d994588be39c478fbf7fb8284aec02cb91b79cceff91ef07c5062321568a3093876a03ab8f349a5444fbaa89e047cbf4422d4485371 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dviinfox + +name dviinfox.x86_64-linux +category Package +revision 44515 +shortdesc x86_64-linux files of dviinfox +containersize 340 +containerchecksum 780ac5b93b4fa79f5154b24a38b044aa57f7a3f508796485cd60be2055bf111cd76caca9c1e6506ec85214ea919e812953531ee92f2765d8bb725707cc4f9833 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dviinfox + +name dviinfox.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dviinfox +containersize 348 +containerchecksum e4e94efa9bed3428414490dcf124a8587fb8e6a9cf8dae700d70634fb3651f14eadf70f7c6a551b58eca4b61025952c857e015f48a2f3796f56287d51efc7085 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dviinfox + +name dviinfox.x86_64-solaris +category Package +revision 44515 +shortdesc x86_64-solaris files of dviinfox +containersize 340 +containerchecksum de3145d145c02af5894b166e142287bd36cd920e24f9c99053d42b26984e234214cedda22c171145e0637d4b928e3df2221b6ac677c2d546979f8d99e574ed8a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dviinfox + +name dviljk +category TLCore +revision 52851 +shortdesc DVI to Laserjet output +longdesc A dvi driver for the LaserJet printers, using kpathsea +longdesc recursive file searching. Note: this program will not compile +longdesc simply with the sources in this distribution; it needs a full +longdesc (current) kpathsea distribution environment, such as is +longdesc available from the TeX Live source tree. +depend dviljk.ARCH +containersize 532 +containerchecksum 7f0fff6f850f22788981370dfe9759f8d1ac803f75e6355c582eca83ca3940f64e3c32c32881234e25d8bda59e47a4f236751c9464dc41f93c67c16cc55082ef +doccontainersize 74976 +doccontainerchecksum 82d28f1adfc368582a5b1d05e2e73ba99bd05d51f9daa972f5ca753905341ee1d61b9e15d402b3017bfdd78bd64c7c222794bbf76073517f96ea1b9d7a58cea6 +docfiles size=92 + texmf-dist/doc/man/man1/dvihp.1 + texmf-dist/doc/man/man1/dvihp.man1.pdf + texmf-dist/doc/man/man1/dvilj.1 + texmf-dist/doc/man/man1/dvilj.man1.pdf + texmf-dist/doc/man/man1/dvilj2p.1 + texmf-dist/doc/man/man1/dvilj2p.man1.pdf + texmf-dist/doc/man/man1/dvilj4.1 + texmf-dist/doc/man/man1/dvilj4.man1.pdf + texmf-dist/doc/man/man1/dvilj4l.1 + texmf-dist/doc/man/man1/dvilj4l.man1.pdf + texmf-dist/doc/man/man1/dvilj6.1 + texmf-dist/doc/man/man1/dvilj6.man1.pdf +catalogue-ctan /dviware/dviljk +catalogue-license gpl +catalogue-topics dvi-print + +name dviljk.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dviljk +containersize 78328 +containerchecksum 6ff18be989eeff6821db27ae2a862d251382f55e670a9e5d340e7fd8343e6b3cab478511f5fe484963758b2e2fcda12ae04780ac9288de715f15efcd3c6ecf2d +binfiles arch=aarch64-linux size=131 + bin/aarch64-linux/dvihp + bin/aarch64-linux/dvilj + bin/aarch64-linux/dvilj2p + bin/aarch64-linux/dvilj4 + bin/aarch64-linux/dvilj4l + bin/aarch64-linux/dvilj6 + +name dviljk.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dviljk +containersize 92576 +containerchecksum 673c7f43f0b64db3f9fc6f1613b457929b6a16c0a4a7ba1abf493ddbef85cd6de6b24cdd59fa0cfe6a5f642459adc90689bf7ff257b104fcd087db8d9a1ea5e5 +binfiles arch=amd64-freebsd size=138 + bin/amd64-freebsd/dvihp + bin/amd64-freebsd/dvilj + bin/amd64-freebsd/dvilj2p + bin/amd64-freebsd/dvilj4 + bin/amd64-freebsd/dvilj4l + bin/amd64-freebsd/dvilj6 + +name dviljk.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dviljk +containersize 78212 +containerchecksum 8a3e45fdc1776d4f6f57485f625ed76692d909d9a1cccb62ca1cbb836bf438e1154ebf40c34de5833bf5902ee1f665477d99432defc158eb9a8b443d2c17e63e +binfiles arch=amd64-netbsd size=151 + bin/amd64-netbsd/dvihp + bin/amd64-netbsd/dvilj + bin/amd64-netbsd/dvilj2p + bin/amd64-netbsd/dvilj4 + bin/amd64-netbsd/dvilj4l + bin/amd64-netbsd/dvilj6 + +name dviljk.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dviljk +containersize 64052 +containerchecksum 9fafc159e856058f9bd91ff15310a3b93c31eff494bae0e62156d92ae8d38bfb4337aeeee2150aac2981a1f35dee86a415ffb9a44a2cafbf22213033f6a11a28 +binfiles arch=armhf-linux size=107 + bin/armhf-linux/dvihp + bin/armhf-linux/dvilj + bin/armhf-linux/dvilj2p + bin/armhf-linux/dvilj4 + bin/armhf-linux/dvilj4l + bin/armhf-linux/dvilj6 + +name dviljk.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dviljk +containersize 39236 +containerchecksum a49ed991df4a88f1e6a45c8e773642422a5a4b65645096e2efc6202f69cebb76e0a7c18d86456f03502fad5d5d4cb868a019e508d5e48ee4d575e35cbd477a60 +binfiles arch=i386-cygwin size=59 + bin/i386-cygwin/dvihp + bin/i386-cygwin/dvilj.exe + bin/i386-cygwin/dvilj2p.exe + bin/i386-cygwin/dvilj4.exe + bin/i386-cygwin/dvilj4l.exe + bin/i386-cygwin/dvilj6 + +name dviljk.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dviljk +containersize 83616 +containerchecksum 624b578ce8d2778689733901cd1ed81766df1b1ec5629a35b5502e8c0ce82b12235fb4c262d98eebc7e00ef637977f417510669875dffc813cdc18d17ab6f2f5 +binfiles arch=i386-freebsd size=117 + bin/i386-freebsd/dvihp + bin/i386-freebsd/dvilj + bin/i386-freebsd/dvilj2p + bin/i386-freebsd/dvilj4 + bin/i386-freebsd/dvilj4l + bin/i386-freebsd/dvilj6 + +name dviljk.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dviljk +containersize 90008 +containerchecksum b9dd95755ab103b495e14cf1ad2b30819f66e79bad842d46dcec8e3cb197706da57922317ad4c3e55f280254f604be7edb993ffd61728812c910a3dc00b1c909 +binfiles arch=i386-linux size=139 + bin/i386-linux/dvihp + bin/i386-linux/dvilj + bin/i386-linux/dvilj2p + bin/i386-linux/dvilj4 + bin/i386-linux/dvilj4l + bin/i386-linux/dvilj6 + +name dviljk.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dviljk +containersize 69920 +containerchecksum b0646cd9518c341c2ddbf38af3af57daf0036c0197f45f2772716035af829cbbc1a3aa20e2f23a31b93a0954787b513916c06632499874853c42eecaf7846c6f +binfiles arch=i386-netbsd size=139 + bin/i386-netbsd/dvihp + bin/i386-netbsd/dvilj + bin/i386-netbsd/dvilj2p + bin/i386-netbsd/dvilj4 + bin/i386-netbsd/dvilj4l + bin/i386-netbsd/dvilj6 + +name dviljk.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dviljk +containersize 86800 +containerchecksum 6fe55ad6c378be99ecf6cbda04921c438da136dcd401c59ba03e0b0d433c71fb408d987053c86d8baec9ac8f02ec964a7530003f182e90d0dd7d70eb55b9ab53 +binfiles arch=i386-solaris size=119 + bin/i386-solaris/dvihp + bin/i386-solaris/dvilj + bin/i386-solaris/dvilj2p + bin/i386-solaris/dvilj4 + bin/i386-solaris/dvilj4l + bin/i386-solaris/dvilj6 + +name dviljk.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dviljk +containersize 174900 +containerchecksum 672d1e54629441cf99faa4c7b59213e60a4689e64e84a1f8718dbdb00185a1a7d40104277945070c3f00612f582c2e90adaa7ffcb6217a229075fb5c52965fe0 +binfiles arch=universal-darwin size=335 + bin/universal-darwin/dvihp + bin/universal-darwin/dvilj + bin/universal-darwin/dvilj2p + bin/universal-darwin/dvilj4 + bin/universal-darwin/dvilj4l + bin/universal-darwin/dvilj6 + +name dviljk.win32 +category TLCore +revision 58783 +shortdesc win32 files of dviljk +containersize 45424 +containerchecksum 8bcc3fbfa92e1322fe35dc76c6cbde1d59f1eaa6401bcccf5e05d040b2b7014bf643a32ab4edf42e710f8d528ea69829772e3b68f66ba07dbe80b33daf06a83f +binfiles arch=win32 size=54 + bin/win32/dvihp.exe + bin/win32/dvilj.exe + bin/win32/dvilj2p.exe + bin/win32/dvilj4.exe + bin/win32/dvilj4l.exe + bin/win32/dvilj6.exe + +name dviljk.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dviljk +containersize 42876 +containerchecksum 239d6a38d9711da0375a40bf74d28e9d66b64d0555613f92258b8ca771e7ed9e26481c90abd1d11bb1d862126c50a6da174f15d7d75d652dbe7577112e6b87f6 +binfiles arch=x86_64-cygwin size=57 + bin/x86_64-cygwin/dvihp + bin/x86_64-cygwin/dvilj.exe + bin/x86_64-cygwin/dvilj2p.exe + bin/x86_64-cygwin/dvilj4.exe + bin/x86_64-cygwin/dvilj4l.exe + bin/x86_64-cygwin/dvilj6 + +name dviljk.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dviljk +containersize 83184 +containerchecksum 95484064a5f00ff511c344ebbe462fb4d2d9e098a0da7a0687585b1dfe4a22f8077c3880b9723d5fca7f35e4655680b702b50f3cf4cb94bace7e31227ec67722 +binfiles arch=x86_64-darwinlegacy size=123 + bin/x86_64-darwinlegacy/dvihp + bin/x86_64-darwinlegacy/dvilj + bin/x86_64-darwinlegacy/dvilj2p + bin/x86_64-darwinlegacy/dvilj4 + bin/x86_64-darwinlegacy/dvilj4l + bin/x86_64-darwinlegacy/dvilj6 + +name dviljk.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dviljk +containersize 87856 +containerchecksum f5fa18876be88efda6d6576bec2ec7d08deaabd7e6528f68f79e5d691fa11f678cb657416eef4b37efae8c091b35ff41c3898b9db290f68f3c1e6739c41332f2 +binfiles arch=x86_64-linux size=127 + bin/x86_64-linux/dvihp + bin/x86_64-linux/dvilj + bin/x86_64-linux/dvilj2p + bin/x86_64-linux/dvilj4 + bin/x86_64-linux/dvilj4l + bin/x86_64-linux/dvilj6 + +name dviljk.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dviljk +containersize 85284 +containerchecksum c32235ab60fe38cab69d6d29989af063027ec074928c088c9fe063922e0f9f72d55961adbe2509d257730ebd3eade255e7100f18aad8fbf45bc8d3824b781471 +binfiles arch=x86_64-linuxmusl size=131 + bin/x86_64-linuxmusl/dvihp + bin/x86_64-linuxmusl/dvilj + bin/x86_64-linuxmusl/dvilj2p + bin/x86_64-linuxmusl/dvilj4 + bin/x86_64-linuxmusl/dvilj4l + bin/x86_64-linuxmusl/dvilj6 + +name dviljk.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dviljk +containersize 93948 +containerchecksum 6d3615799ce45a8ac4f00015dede79320862660f14e2e677eefbddf27e812f5930ec2f33d38a982bddefdfc0d04a994c45004ffb093774ed1c04f4ee68d17f3d +binfiles arch=x86_64-solaris size=139 + bin/x86_64-solaris/dvihp + bin/x86_64-solaris/dvilj + bin/x86_64-solaris/dvilj2p + bin/x86_64-solaris/dvilj4 + bin/x86_64-solaris/dvilj4l + bin/x86_64-solaris/dvilj6 + +name dviout-util +category Package +revision 52851 +depend dviout-util.ARCH +containersize 248 +containerchecksum a9445602ac5a3663920f8c7d428e833b0451c3e80203be57cc6fbdda5db5f7c89da75cf58e74d56c4ab9cd817fc9f080a056ebd045828a0d5b034108cda61bc5 +doccontainersize 38880 +doccontainerchecksum 61f86a23314334d7faa4f1ae0760aea6c5e5f77754a6a9b1d5952f09e3e15d3dead73a9f72ccfe9b9d7a022654f8d2e1e6e3051dc12bff574b6f053cdbc9b598 +docfiles size=14 + texmf-dist/doc/man/man1/chkdvifont.1 + texmf-dist/doc/man/man1/chkdvifont.man1.pdf + texmf-dist/doc/man/man1/dvispc.1 + texmf-dist/doc/man/man1/dvispc.man1.pdf + +name dviout-util.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of dviout-util +containersize 71092 +containerchecksum 61f65723a4811579fe43a9f97316e07231bc380a865a881b2318c71ae9b7b3daae8f92885daecb6994c4bd6e220140f59249f4860d0a05912855d96a22d85551 +binfiles arch=aarch64-linux size=43 + bin/aarch64-linux/chkdvifont + bin/aarch64-linux/dvispc + +name dviout-util.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of dviout-util +containersize 76980 +containerchecksum 8a95e786414c93accf8d527420f5dcfc1dad05b4f6aef3b62a0909b93c2e8eeb540d5debae8aa0f39fbcd9606e1b3ceb0000cc6e55b93bd64ff1ea365aacbf9a +binfiles arch=amd64-freebsd size=44 + bin/amd64-freebsd/chkdvifont + bin/amd64-freebsd/dvispc + +name dviout-util.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of dviout-util +containersize 66248 +containerchecksum c373b64327aca9675850f0cd5c076451dcd3afedab8f60488f01998cf66f0e0a6e562ffeed993021df88ade261e7cd128a478fe9012a02bf4c4139108b9c1f3e +binfiles arch=amd64-netbsd size=47 + bin/amd64-netbsd/chkdvifont + bin/amd64-netbsd/dvispc + +name dviout-util.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of dviout-util +containersize 61108 +containerchecksum c8b6654b8a7769b8605ddd6c42a4c837f180251237722ecadff83bb7093ec520002f22407ef08dc7f77b2d682a3d931396b9cf9a3dc82aa9a50bb8299f1ff58b +binfiles arch=armhf-linux size=35 + bin/armhf-linux/chkdvifont + bin/armhf-linux/dvispc + +name dviout-util.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of dviout-util +containersize 25888 +containerchecksum b0a3cab595038be68de431c87fda395cae2451106c8a2d3cde69cb599bdc25e87ed0813f7f6700883a503ce0fac2232a4a17648ee30730007ef627d7a07d9170 +binfiles arch=i386-cygwin size=18 + bin/i386-cygwin/chkdvifont.exe + bin/i386-cygwin/dvispc.exe + +name dviout-util.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of dviout-util +containersize 70980 +containerchecksum 845b9d11f2e00e75bb686a31e7d87b43577db84748f3f8f7aaae5b3cde04db786d114d0d34aa2e4070402507cd6f80f43bc36f06c6519a53df2726bf07297678 +binfiles arch=i386-freebsd size=39 + bin/i386-freebsd/chkdvifont + bin/i386-freebsd/dvispc + +name dviout-util.i386-linux +category Package +revision 57878 +shortdesc i386-linux files of dviout-util +containersize 75780 +containerchecksum 56eedc459b7fc3c9d72fb031599723c98b52c4dde618cfe81c4b5599b5d857e2dba1c5f3c0ef389a9edeb4a85f863230737709a1383b250b6b0bd741161a7d5d +binfiles arch=i386-linux size=44 + bin/i386-linux/chkdvifont + bin/i386-linux/dvispc + +name dviout-util.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of dviout-util +containersize 61480 +containerchecksum 2a656f2e91596915235ae532357375c9e55b8dcbe65a3ca5f4eef8a4c5f8a45fd5d33c6396a651decb06d4591181a4cdaafeaaf5294f1742e503aa7c84d0053b +binfiles arch=i386-netbsd size=44 + bin/i386-netbsd/chkdvifont + bin/i386-netbsd/dvispc + +name dviout-util.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of dviout-util +containersize 73472 +containerchecksum f19ad7ddab8157fd9b9151d02f009b9434072a254e870b7e8b71f853963ba1f7f9ba88c7ec701f7645d1e748e0f34c9ae27085c2792612d8211d8531de14c3e0 +binfiles arch=i386-solaris size=40 + bin/i386-solaris/chkdvifont + bin/i386-solaris/dvispc + +name dviout-util.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of dviout-util +containersize 131672 +containerchecksum ff4aa1ca607bbd79b66b59a42e58fb7f7088261fcc13410710bde0438c3036f64754e81fe6cdfc0438eaf4e137cf53d87a52aca1b55a31d7a2b93f34f21555ea +binfiles arch=universal-darwin size=126 + bin/universal-darwin/chkdvifont + bin/universal-darwin/dvispc + +name dviout-util.win32 +category Package +revision 58783 +shortdesc win32 files of dviout-util +containersize 90188 +containerchecksum 0e5981718389513fd41398632ffd6854bcd9b896f4adb00c533d79ae6431f4bf20fe177da87c7d6d57d2c46352a1712cdc184f975a69528bf3fd3efbec9b6ba6 +binfiles arch=win32 size=53 + bin/win32/chkdvifont.exe + bin/win32/dvispc.exe + +name dviout-util.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of dviout-util +containersize 27284 +containerchecksum 0b2db02f5122c58e45dce83523c492b850e0cec01bc66580d58260e2db5efdefa71b702f724a2c66cc782a11b901f1dc34f0fe4d6642f9261645bb0047bc3669 +binfiles arch=x86_64-cygwin size=18 + bin/x86_64-cygwin/chkdvifont.exe + bin/x86_64-cygwin/dvispc.exe + +name dviout-util.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of dviout-util +containersize 70968 +containerchecksum 5289cee8c4b7b95440fb11fae5882f5e950936de061ebd10881197aca6f937a9f5d395a28fcb6d6a7a53aa426997af6c8a796b0f57d99fcab9c658d6417c56dc +binfiles arch=x86_64-darwinlegacy size=41 + bin/x86_64-darwinlegacy/chkdvifont + bin/x86_64-darwinlegacy/dvispc + +name dviout-util.x86_64-linux +category Package +revision 57878 +shortdesc x86_64-linux files of dviout-util +containersize 73432 +containerchecksum 0ea8b337428fa49c120a3bf0c3c1e7c03d8e15d62ac63a9be5c327f029912cbb5379d61e6ea870edf77ce2e75145a07b78604cf8081826b024a91d1d2bd3b550 +binfiles arch=x86_64-linux size=40 + bin/x86_64-linux/chkdvifont + bin/x86_64-linux/dvispc + +name dviout-util.x86_64-linuxmusl +category Package +revision 57878 +shortdesc x86_64-linuxmusl files of dviout-util +containersize 75888 +containerchecksum 13a5460fb83ebe269a3f41268015ca8ca80ba9fcef94e0a02a57c438c0efdc32e668cf766896ba093dd128874b2905e06390d2e2723bdf30e50464a5aa6390a4 +binfiles arch=x86_64-linuxmusl size=43 + bin/x86_64-linuxmusl/chkdvifont + bin/x86_64-linuxmusl/dvispc + +name dviout-util.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of dviout-util +containersize 77396 +containerchecksum d0fec4ee0c206ab25c35124eaf7e7b5a873f93b1cc25ffd2a783f469109bd814ed98e204ca5a1bee398ea87d7979ff5a46e560164030e2f846cb0cd1f10be72d +binfiles arch=x86_64-solaris size=44 + bin/x86_64-solaris/chkdvifont + bin/x86_64-solaris/dvispc + +name dviout.win32 +category TLCore +revision 52616 +catalogue dviout +shortdesc TeX previewer and printer driver for MS-Windows +longdesc The program supports a variety of printing mechanisms +longdesc (including PDF output via dvipdfmx), and can use most extant +longdesc font formats (including the long-outdated TeX PXL format). The +longdesc program will use output from Omega as well as from TeX, and +longdesc understands a wide variety of \special commands. +postaction fileassoc extension=.dvi filetype=TL.DVIOUT.view +postaction filetype name=TL.DVIOUT.view cmd='"TEXDIR/bin/win32/dviout.exe" "%1"' +postaction shortcut type=menu name="DVIOUT DVI viewer" cmd=TEXDIR/bin/win32/dviout.exe +containersize 2235312 +containerchecksum 0eab55d73cdd6b9ea7f06286ecd9d815958e97b2510fdac40a1efadae3b5bdb91f88340173e2a69fa0761e0048b349e05d3416dd6e1118548211e942e24b1983 +binfiles arch=win32 size=1201 + bin/win32/dviout.exe + tlpkg/dviout/00readme.txt + tlpkg/dviout/CFG/newcfg.txt + tlpkg/dviout/CFG/prtcfg.zip + tlpkg/dviout/CFG/prtsrc.zip + tlpkg/dviout/CreateBB.exe + tlpkg/dviout/DOC/bpage.bmp + tlpkg/dviout/DOC/cmode.html + tlpkg/dviout/DOC/cmode1.png + tlpkg/dviout/DOC/cmode2.png + tlpkg/dviout/DOC/cmode3.png + tlpkg/dviout/DOC/cmode6.png + tlpkg/dviout/DOC/dvi.html + tlpkg/dviout/DOC/dvi2.bmp + tlpkg/dviout/DOC/dvioutQA.html + tlpkg/dviout/DOC/dviouttips.html + tlpkg/dviout/DOC/dviouttipse.html + tlpkg/dviout/DOC/fpage.bmp + tlpkg/dviout/DOC/hung.png + tlpkg/dviout/DOC/hyper.bmp + tlpkg/dviout/DOC/kappa.bmp + tlpkg/dviout/DOC/le.bmp + tlpkg/dviout/DOC/lminus.bmp + tlpkg/dviout/DOC/lplus.bmp + tlpkg/dviout/DOC/mspmin.png + tlpkg/dviout/DOC/newmin.png + tlpkg/dviout/DOC/niko.bmp + tlpkg/dviout/DOC/option.bmp + tlpkg/dviout/DOC/present.html + tlpkg/dviout/DOC/print.bmp + tlpkg/dviout/DOC/search.bmp + tlpkg/dviout/DOC/serd.bmp + tlpkg/dviout/DOC/seru.bmp + tlpkg/dviout/DOC/testtex.bat + tlpkg/dviout/DOC/tex_dvioutw.html + tlpkg/dviout/DOC/tex_instchk.html + tlpkg/dviout/FONT/ReadMe.txt + tlpkg/dviout/FONT/exjfonts.zip + tlpkg/dviout/FONT/winttf.zip + tlpkg/dviout/GRAPHIC/COLOR/color.tex + tlpkg/dviout/GRAPHIC/LATEX2E/color.cfg + tlpkg/dviout/GRAPHIC/LATEX2E/dviout.def + tlpkg/dviout/GRAPHIC/LATEX2E/dviout.dtx + tlpkg/dviout/GRAPHIC/LATEX2E/dviout.ins + tlpkg/dviout/GRAPHIC/LATEX2E/graphics.cfg + tlpkg/dviout/GRAPHIC/LATEX2E/readme + tlpkg/dviout/GRAPHIC/LATEX2E/readme.eng + tlpkg/dviout/GRAPHIC/PBM/pbmf.doc + tlpkg/dviout/GRAPHIC/PBM/pbmf.sty + tlpkg/dviout/GRAPHIC/PDL/file241b.p98 + tlpkg/dviout/GRAPHIC/PDL/lasersys.lp3 + tlpkg/dviout/GRAPHIC/PDL/lasersys.tex + tlpkg/dviout/GRAPHIC/PDL/lips3.gpd + tlpkg/dviout/GRAPHIC/PDL/pdldoc.tex + tlpkg/dviout/GRAPHIC/PDL/picbox.tex + tlpkg/dviout/GRAPHIC/PDL/spec.lp3 + tlpkg/dviout/GRAPHIC/PDL/spec.tex + tlpkg/dviout/GRAPHIC/PS/epsfdoc.tex + tlpkg/dviout/GRAPHIC/PS/gssub.exe + tlpkg/dviout/GRAPHIC/PS/pssample.tex + tlpkg/dviout/GRAPHIC/PS/sample0.ps + tlpkg/dviout/GRAPHIC/PS/sample1.ps + tlpkg/dviout/GRAPHIC/PS/sample2.ps + tlpkg/dviout/GRAPHIC/PS/sample3.ps + tlpkg/dviout/GRAPHIC/PS/starbrst.ps + tlpkg/dviout/GRAPHIC/TPIC/linetest.tex + tlpkg/dviout/GRAPHIC/TPIC/rtexampl.tex + tlpkg/dviout/GRAPHIC/TPIC/tpic_ext.doc + tlpkg/dviout/GRAPHIC/TPIC/tpicdoc.tex + tlpkg/dviout/GRAPHIC/bmc/bmc.txt + tlpkg/dviout/GRAPHIC/bmc/createbb.pdf + tlpkg/dviout/GRAPHIC/bmc/exbmc.xpi + tlpkg/dviout/GRAPHIC/bmc/ifbmc.spi + tlpkg/dviout/GRAPHIC/bmc/ifbmc.txt + tlpkg/dviout/HYPERTEX/hyper2.tex + tlpkg/dviout/HYPERTEX/hyperdvi.tex + tlpkg/dviout/HYPERTEX/input.tex + tlpkg/dviout/HYPERTEX/input7.tex + tlpkg/dviout/HYPERTEX/input8.tex + tlpkg/dviout/HYPERTEX/input9.tex + tlpkg/dviout/HYPERTEX/inputxy.tex + tlpkg/dviout/HYPERTEX/keyin.sty + tlpkg/dviout/HYPERTEX/myhyper.sty + tlpkg/dviout/PTEX/naochan!.tex + tlpkg/dviout/SAMPLE/sample.tex + tlpkg/dviout/SAMPLE/sample.txt + tlpkg/dviout/SAMPLE/slisamp2.tex + tlpkg/dviout/SAMPLE/slisamp3.tex + tlpkg/dviout/SAMPLE/slisamp4.tex + tlpkg/dviout/SAMPLE/slisampl.tex + tlpkg/dviout/SPECIAL/demo.tex + tlpkg/dviout/SPECIAL/dviout.sty + tlpkg/dviout/SPECIAL/ophook.sty + tlpkg/dviout/SPECIAL/presen.sty + tlpkg/dviout/SPECIAL/presen.txt + tlpkg/dviout/SPECIAL/src.mac + tlpkg/dviout/SPECIAL/srcspecial.mac + tlpkg/dviout/SPECIAL/srctex.cfg + tlpkg/dviout/UTILITY/dvi$pdf.bat + tlpkg/dviout/UTILITY/dviout0.par + tlpkg/dviout/UTILITY/dviout0.vfn + tlpkg/dviout/UTILITY/dviout1.vfn + tlpkg/dviout/UTILITY/dvioute.vfn + tlpkg/dviout/UTILITY/null.vfn + tlpkg/dviout/UTILITY/template + tlpkg/dviout/UTILITY/template.pk0 + tlpkg/dviout/UTILITY/template.pks + tlpkg/dviout/UTILITY/test_a4.tex + tlpkg/dviout/UTILITY/test_b5.tex + tlpkg/dviout/UTILITY/test_b5e.tex + tlpkg/dviout/UTILITY/test_org.tex + tlpkg/dviout/bmc.exe + tlpkg/dviout/chkfont.exe + tlpkg/dviout/chkfont.txt + tlpkg/dviout/convedit.exe + tlpkg/dviout/dviadd.exe + tlpkg/dviout/dviout.chm + tlpkg/dviout/dviout.cnt + tlpkg/dviout/dviout.exe + tlpkg/dviout/dvioute.chm + tlpkg/dviout/dvioute.cnt + tlpkg/dviout/dvispc.exe + tlpkg/dviout/dvispc.txt + tlpkg/dviout/dvispce.txt + tlpkg/dviout/etfdump.exe + tlpkg/dviout/files.txt + tlpkg/dviout/gen_pk + tlpkg/dviout/history.txt + tlpkg/dviout/install.par + tlpkg/dviout/install.txt + tlpkg/dviout/map/gtfonts.map + tlpkg/dviout/map/japanese.map + tlpkg/dviout/map/mojikyo.map + tlpkg/dviout/map/morisawa.map + tlpkg/dviout/map/pttfonts.map + tlpkg/dviout/map/ttfexp.map + tlpkg/dviout/map/ttfonts.map + tlpkg/dviout/optcfg.exe + tlpkg/dviout/par/DF-GyouSho.par + tlpkg/dviout/par/E-Embed.par + tlpkg/dviout/par/E-TT.par + tlpkg/dviout/par/E-noTT.par + tlpkg/dviout/par/EJ-Embed.par + tlpkg/dviout/par/HG-GyouSho.par + tlpkg/dviout/par/HG-KaiSho-PRO.par + tlpkg/dviout/par/Hidemaru.par + tlpkg/dviout/par/J-Embed.par + tlpkg/dviout/par/Macro0.par + tlpkg/dviout/par/PKfont.par + tlpkg/dviout/par/TTfont.par + tlpkg/dviout/par/WinJFont.par + tlpkg/dviout/par/WinShell.par + tlpkg/dviout/par/bakoma.par + tlpkg/dviout/par/default.par + tlpkg/dviout/par/dvicut.par + tlpkg/dviout/par/dvipdfm.par + tlpkg/dviout/par/dvipdfmr.par + tlpkg/dviout/par/dvipdfms.par + tlpkg/dviout/par/dvipdfmxv.par + tlpkg/dviout/par/dvipsk.par + tlpkg/dviout/par/dvipskdis.par + tlpkg/dviout/par/dvipskdl.par + tlpkg/dviout/par/dvipskeps.par + tlpkg/dviout/par/dvipskpdf.par + tlpkg/dviout/par/dvipskprn.par + tlpkg/dviout/par/dvispcal.par + tlpkg/dviout/par/dvispcap.par + tlpkg/dviout/par/dvispcat.par + tlpkg/dviout/par/dvispcs.par + tlpkg/dviout/par/fontpath.par + tlpkg/dviout/par/hiragino.par + tlpkg/dviout/par/jvar.par + tlpkg/dviout/par/p12wait.pgm + tlpkg/dviout/par/p24wait.pgm + tlpkg/dviout/par/p4n.pgm + tlpkg/dviout/par/p4n0.pgm + tlpkg/dviout/par/p4to1.pgm + tlpkg/dviout/par/p4to10.pgm + tlpkg/dviout/par/p4to1e.pgm + tlpkg/dviout/par/p4to1e0.pgm + tlpkg/dviout/par/p4to1o.pgm + tlpkg/dviout/par/p4to1o0.pgm + tlpkg/dviout/par/p4to1v.pgm + tlpkg/dviout/par/presen.par + tlpkg/dviout/par/quit.par + tlpkg/dviout/par/quitpresen.par + tlpkg/dviout/par/texhelp.par + tlpkg/dviout/par/wintex.par + tlpkg/dviout/propw.exe + tlpkg/dviout/propw0.txt + tlpkg/dviout/rawprt.exe + tlpkg/dviout/rawprt.txt + tlpkg/dviout/readme.txt + tlpkg/dviout/srctex.exe + tlpkg/dviout/ttindex.exe +catalogue-ctan /dviware/dviout +catalogue-license other-free +catalogue-topics dvi-prev dvi-print omega +catalogue-version 3.18.4 + +name dvipdfmx +category TLCore +revision 58645 +shortdesc An extended version of dvipdfm +longdesc Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm +longdesc created to support multi-byte character encodings and large +longdesc character sets for East Asian languages. Dvipdfmx, if "called" +longdesc with the name dvipdfm, operates in a "dvipdfm compatibility" +longdesc mode, so that users of the both packages need only keep one +longdesc executable. A secondary design goal is to support as many "PDF" +longdesc features as does pdfTeX. The current version of the package is +longdesc no longer maintained on CTAN as a separate entity; development +longdesc now takes place within the TeX Live framework, and it is no +longdesc longer available as a separate package. For download, support, +longdesc and other information, please see TeX Live. +depend dvipdfmx.ARCH +depend glyphlist +postaction script file=tlpkg/tlpostcode/dvipdfmx.pl +containersize 27124 +containerchecksum 4c5c0773389d13c77b007f9a82e75981ddb331b51c99836c73ff144e04a2289eefed77e7f5c5a7e60ed37aa93d8a0be055a76f1e1347550b5a1242be8cf24029 +doccontainersize 3127760 +doccontainerchecksum c0f571ebbd976d55fe752e9b4c61e8e44e6ccf4086592b16618958d936267777d8825dfc2c9271f6fddb3620f54bcaa045f895131a31112e066152f20748e549 +docfiles size=995 + texmf-dist/doc/dvipdfm/Makefile + texmf-dist/doc/dvipdfm/dvipdfm.pdf + texmf-dist/doc/dvipdfm/dvipdfm.tex + texmf-dist/doc/dvipdfm/mwicks.bb + texmf-dist/doc/dvipdfm/mwicks.jpeg + texmf-dist/doc/dvipdfm/sample.tex + texmf-dist/doc/dvipdfm/something.bb + texmf-dist/doc/dvipdfm/something.eps + texmf-dist/doc/dvipdfm/something.fig + texmf-dist/doc/dvipdfm/something.pdf + texmf-dist/doc/dvipdfm/transistor.bb + texmf-dist/doc/dvipdfm/transistor.eps + texmf-dist/doc/dvipdfm/transistor.fig + texmf-dist/doc/dvipdfm/transistor.pdf + texmf-dist/doc/dvipdfmx/README details="Readme" + texmf-dist/doc/dvipdfmx/dvipdfmx-special.pdf + texmf-dist/doc/dvipdfmx/dvipdfmx-special.tex + texmf-dist/doc/dvipdfmx/dvipdfmx.pdf details="Documentation" + texmf-dist/doc/dvipdfmx/dvipdfmx.tex + texmf-dist/doc/dvipdfmx/fdl-1.3.txt + texmf-dist/doc/dvipdfmx/tug2003-slides-src.zip + texmf-dist/doc/dvipdfmx/tug2003-slides.pdf + texmf-dist/doc/dvipdfmx/tug2005.pdf + texmf-dist/doc/man/man1/dvipdfm.1 + texmf-dist/doc/man/man1/dvipdfm.man1.pdf + texmf-dist/doc/man/man1/dvipdfmx.1 + texmf-dist/doc/man/man1/dvipdfmx.man1.pdf + texmf-dist/doc/man/man1/dvipdft.1 + texmf-dist/doc/man/man1/dvipdft.man1.pdf + texmf-dist/doc/man/man1/ebb.1 + texmf-dist/doc/man/man1/ebb.man1.pdf + texmf-dist/doc/man/man1/extractbb.1 + texmf-dist/doc/man/man1/extractbb.man1.pdf + texmf-dist/doc/man/man1/xdvipdfmx.1 + texmf-dist/doc/man/man1/xdvipdfmx.man1.pdf +runfiles size=41 + texmf-dist/dvipdfmx/dvipdfmx-unsafe.cfg + texmf-dist/dvipdfmx/dvipdfmx.cfg + texmf-dist/fonts/cmap/dvipdfmx/EUC-UCS2 + texmf-dist/fonts/cmap/dvipdfmx/README + texmf-dist/fonts/cmap/dvipdfmx/UTF8-UCS2 + texmf-dist/fonts/map/dvipdfmx/cid-x.map + texmf-dist/fonts/map/dvipdfmx/ckx.map + tlpkg/tlpostcode/dvipdfmx.pl +catalogue-alias xdvipdfmx +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-license gpl +catalogue-topics dvi-pdf + +name dvipdfmx.aarch64-linux +category TLCore +revision 58534 +shortdesc aarch64-linux files of dvipdfmx +containersize 405956 +containerchecksum fb01193cbebc7a41cd37cd37c61a446ee2cecc30526ba7f77a9c2ce6201e3fd92b026f70d9fdfa630fc83c33cfa07b6c7300a6dd719303e26d876036645eb71c +binfiles arch=aarch64-linux size=272 + bin/aarch64-linux/dvipdfm + bin/aarch64-linux/dvipdfmx + bin/aarch64-linux/dvipdft + bin/aarch64-linux/ebb + bin/aarch64-linux/extractbb + bin/aarch64-linux/xdvipdfmx + +name dvipdfmx.amd64-freebsd +category TLCore +revision 58501 +shortdesc amd64-freebsd files of dvipdfmx +containersize 447620 +containerchecksum 5de65efe8096386894a2a868c06870a3b2c53486b3ad2304d72be7af0e87928e8597bb6f3512c424620ee53bfb7dd0c70a8e50d4b92aa30561ff5a3b927f3766 +binfiles arch=amd64-freebsd size=276 + bin/amd64-freebsd/dvipdfm + bin/amd64-freebsd/dvipdfmx + bin/amd64-freebsd/dvipdft + bin/amd64-freebsd/ebb + bin/amd64-freebsd/extractbb + bin/amd64-freebsd/xdvipdfmx + +name dvipdfmx.amd64-netbsd +category TLCore +revision 58497 +shortdesc amd64-netbsd files of dvipdfmx +containersize 378928 +containerchecksum 4765a313a3adf0f566191d3dd84fd43d570ab871eaf9f3da6a746943e50d68e2421b398d54b6193683cc269d4cac8cd84c52f66f270bddefa456b01e2bda938a +binfiles arch=amd64-netbsd size=335 + bin/amd64-netbsd/dvipdfm + bin/amd64-netbsd/dvipdfmx + bin/amd64-netbsd/dvipdft + bin/amd64-netbsd/ebb + bin/amd64-netbsd/extractbb + bin/amd64-netbsd/xdvipdfmx + +name dvipdfmx.armhf-linux +category TLCore +revision 58556 +shortdesc armhf-linux files of dvipdfmx +containersize 346964 +containerchecksum 1d9545d0219ea8c6668fbdafde38304db6580093c9ff7c37540331014e20e30bcb8bc77288fc8db34e419f815926a8e60a782362e24f033c69301dd37b4ef8ef +binfiles arch=armhf-linux size=215 + bin/armhf-linux/dvipdfm + bin/armhf-linux/dvipdfmx + bin/armhf-linux/dvipdft + bin/armhf-linux/ebb + bin/armhf-linux/extractbb + bin/armhf-linux/xdvipdfmx + +name dvipdfmx.i386-cygwin +category TLCore +revision 58498 +shortdesc i386-cygwin files of dvipdfmx +containersize 396160 +containerchecksum 6d711f58c49977779bd69829147048a13f32c7d2982a809d264c414dbdf1a4ea5c2e6987122f16ef5244119c8a176ef0239ddcf4dd061ae5607b2bd93260d94c +binfiles arch=i386-cygwin size=251 + bin/i386-cygwin/dvipdfm + bin/i386-cygwin/dvipdfmx + bin/i386-cygwin/dvipdft + bin/i386-cygwin/ebb + bin/i386-cygwin/extractbb + bin/i386-cygwin/xdvipdfmx.exe + +name dvipdfmx.i386-freebsd +category TLCore +revision 58501 +shortdesc i386-freebsd files of dvipdfmx +containersize 403380 +containerchecksum e6fa11e7dc909f00acacd7b761c9239574ef5e8d7d9c016887a91fecaac62aa0237485fbb0afe09c7830e7a8560985ce1bf412b38e43b3cc3b3204131220e9a4 +binfiles arch=i386-freebsd size=249 + bin/i386-freebsd/dvipdfm + bin/i386-freebsd/dvipdfmx + bin/i386-freebsd/dvipdft + bin/i386-freebsd/ebb + bin/i386-freebsd/extractbb + bin/i386-freebsd/xdvipdfmx + +name dvipdfmx.i386-linux +category TLCore +revision 58535 +shortdesc i386-linux files of dvipdfmx +containersize 460764 +containerchecksum 313d3ae7ceec6efde15cae4719b0f1a3ef6153ed8574b8ad8210925b5b5afeeebf1531dc6363e4b8975afb19ca3815fb6f60680b04a665bc898fcc71b3eccaba +binfiles arch=i386-linux size=293 + bin/i386-linux/dvipdfm + bin/i386-linux/dvipdfmx + bin/i386-linux/dvipdft + bin/i386-linux/ebb + bin/i386-linux/extractbb + bin/i386-linux/xdvipdfmx + +name dvipdfmx.i386-netbsd +category TLCore +revision 58497 +shortdesc i386-netbsd files of dvipdfmx +containersize 359920 +containerchecksum 76fb314cfc2e02e27d83e22a6e4cf68be2c23e7d54f89d970b5237699d0ec2d774c46865ac39d722dea2c3ee8919c2d306a0df59d7559f34dc0bfffc67d08f52 +binfiles arch=i386-netbsd size=312 + bin/i386-netbsd/dvipdfm + bin/i386-netbsd/dvipdfmx + bin/i386-netbsd/dvipdft + bin/i386-netbsd/ebb + bin/i386-netbsd/extractbb + bin/i386-netbsd/xdvipdfmx + +name dvipdfmx.i386-solaris +category TLCore +revision 58500 +shortdesc i386-solaris files of dvipdfmx +containersize 413492 +containerchecksum 947183823f6ebb273d3a1b054d8fab9e58d445419c9dbd5c86146e6e3d19983e968899fd57637e3934d4bd4fc2457631724cd5b12287ff1b30ba03d64de8013e +binfiles arch=i386-solaris size=240 + bin/i386-solaris/dvipdfm + bin/i386-solaris/dvipdfmx + bin/i386-solaris/dvipdft + bin/i386-solaris/ebb + bin/i386-solaris/extractbb + bin/i386-solaris/xdvipdfmx + +name dvipdfmx.universal-darwin +category TLCore +revision 58528 +shortdesc universal-darwin files of dvipdfmx +containersize 791336 +containerchecksum f53064d484155f714169683b82301898aec20066d18e879b040f01700be4a817582a216e2f9a0c5896529ef0030c6f2ce2ab9c44b7aee7a90c320ed5f487b5e7 +binfiles arch=universal-darwin size=527 + bin/universal-darwin/dvipdfm + bin/universal-darwin/dvipdfmx + bin/universal-darwin/dvipdft + bin/universal-darwin/ebb + bin/universal-darwin/extractbb + bin/universal-darwin/xdvipdfmx + +name dvipdfmx.win32 +category TLCore +revision 59085 +shortdesc win32 files of dvipdfmx +containersize 332376 +containerchecksum 5c4c780cd2ad7593eeffd4c2b94466225220e75a76753e93963c4f2ec1ca27be82d4852a58ebe4cbe58f3dab1f11ee2ce398be57f212503c2d9cd15a69fdd462 +binfiles arch=win32 size=239 + bin/win32/dvipdfm.exe + bin/win32/dvipdfmx.dll + bin/win32/dvipdfmx.exe + bin/win32/ebb.exe + bin/win32/extractbb.exe + bin/win32/xdvipdfmx.exe + +name dvipdfmx.x86_64-cygwin +category TLCore +revision 58498 +shortdesc x86_64-cygwin files of dvipdfmx +containersize 403400 +containerchecksum 4ac305d945bb213fc95a7064365f033f048bd5474d6b7f821b575ba1f71d10ba5882020f715e23a797e5546058aae9100cbc8e447d2e9fd2c19a4c298d905316 +binfiles arch=x86_64-cygwin size=243 + bin/x86_64-cygwin/dvipdfm + bin/x86_64-cygwin/dvipdfmx + bin/x86_64-cygwin/dvipdft + bin/x86_64-cygwin/ebb + bin/x86_64-cygwin/extractbb + bin/x86_64-cygwin/xdvipdfmx.exe + +name dvipdfmx.x86_64-darwinlegacy +category TLCore +revision 58501 +shortdesc x86_64-darwinlegacy files of dvipdfmx +containersize 405060 +containerchecksum e16776e51cda758280960804c96382b3db08bb95336b565d976ff5225a4b0d12b777d5ec05a97154a3a0100efe115e8ddab22827a3fbda09e110900c88902f23 +binfiles arch=x86_64-darwinlegacy size=240 + bin/x86_64-darwinlegacy/dvipdfm + bin/x86_64-darwinlegacy/dvipdfmx + bin/x86_64-darwinlegacy/dvipdft + bin/x86_64-darwinlegacy/ebb + bin/x86_64-darwinlegacy/extractbb + bin/x86_64-darwinlegacy/xdvipdfmx + +name dvipdfmx.x86_64-linux +category TLCore +revision 58535 +shortdesc x86_64-linux files of dvipdfmx +containersize 426696 +containerchecksum 0aaae454e6d5e9b769735255fab74538b27d36f983b3ef0257e834c3cc7a531397f7aac85f9bc9315de7295451aceee9e9f9ab9fe6574f0f873709914fbcdbb0 +binfiles arch=x86_64-linux size=257 + bin/x86_64-linux/dvipdfm + bin/x86_64-linux/dvipdfmx + bin/x86_64-linux/dvipdft + bin/x86_64-linux/ebb + bin/x86_64-linux/extractbb + bin/x86_64-linux/xdvipdfmx + +name dvipdfmx.x86_64-linuxmusl +category TLCore +revision 58535 +shortdesc x86_64-linuxmusl files of dvipdfmx +containersize 451244 +containerchecksum 44a51da5218b997e76d2c5913e0af8a17a323dacaa09f4b7c26b4d4bbcd74800c6a59f763b44f62331593b0a77bc211850de60f511a72ae9453cf95da2b1ffbc +binfiles arch=x86_64-linuxmusl size=283 + bin/x86_64-linuxmusl/dvipdfm + bin/x86_64-linuxmusl/dvipdfmx + bin/x86_64-linuxmusl/dvipdft + bin/x86_64-linuxmusl/ebb + bin/x86_64-linuxmusl/extractbb + bin/x86_64-linuxmusl/xdvipdfmx + +name dvipdfmx.x86_64-solaris +category TLCore +revision 58500 +shortdesc x86_64-solaris files of dvipdfmx +containersize 445384 +containerchecksum cfaa7ddfcc5de243196a83604f5aacd4d6a7143ff6dbdeb03b3f54cbf93280a3b534936fb34aaea85b88f2b8c660563ede8ba23b3b01cfce7be32715f55cfa6a +binfiles arch=x86_64-solaris size=272 + bin/x86_64-solaris/dvipdfm + bin/x86_64-solaris/dvipdfmx + bin/x86_64-solaris/dvipdft + bin/x86_64-solaris/ebb + bin/x86_64-solaris/extractbb + bin/x86_64-solaris/xdvipdfmx + +name dvipng +category TLCore +revision 57972 +shortdesc A fast DVI to PNG/GIF converter +longdesc This program makes PNG and/or GIF graphics from DVI files as +longdesc obtained from TeX and its relatives. Its benefits include: +longdesc Speed. It offers very fast rendering of DVI as bitmap files, +longdesc which makes it suitable for generating large amounts of images +longdesc on-the-fly, as needed in preview-latex, WeBWorK and others; It +longdesc does not read the postamble, so it can be started before TeX +longdesc finishes. There is a --follow switch that makes dvipng wait at +longdesc end-of-file for further output, unless it finds the POST marker +longdesc that indicates the end of the DVI; Interactive query of +longdesc options. dvipng can read options interactively through stdin, +longdesc and all options are usable. It is even possible to change the +longdesc input file through this interface. Support for PK, VF, +longdesc PostScript Type1, and TrueType fonts, colour specials, and +longdesc inclusion of PostScript, PNG, JPEG or GIF images. +depend dvipng.ARCH +containersize 916 +containerchecksum a194b03e4ea1da129e54e2820979929e720fb526d184390885a2ac213aadda75f0fdf33b20a4ec20958798b3f622626e301ff308f9005d6c6ff400dc0bcd01e7 +doccontainersize 288772 +doccontainerchecksum 27c556eeb267521de9f523001268819b29791c9b34e7b0e734551e607eaabcd452789eb4b90a287b47024d90e01d28b1848d1c77be0e903172eb362c4f9e699e +docfiles size=119 + texmf-dist/doc/dvipng/dvipng.html + texmf-dist/doc/dvipng/dvipng.pdf details="Package documentation" + texmf-dist/doc/info/dvipng.info + texmf-dist/doc/man/man1/dvigif.1 + texmf-dist/doc/man/man1/dvigif.man1.pdf + texmf-dist/doc/man/man1/dvipng.1 + texmf-dist/doc/man/man1/dvipng.man1.pdf +catalogue-also dvi2bitmap +catalogue-contact-repository http://savannah.nongnu.org/projects/dvipng/ +catalogue-ctan /dviware/dvipng +catalogue-license lgpl3 +catalogue-topics dvi-bit +catalogue-version 1.17 + +name dvipng.aarch64-linux +category TLCore +revision 58534 +shortdesc aarch64-linux files of dvipng +containersize 454716 +containerchecksum 38f578dd8845e7d173222949f2d3c89996acc6031ccfb75529875b019a68cbad81d7c82c70e06947fe55e610dbfb1156e863c088711afb51c05a73815f8c15ad +binfiles arch=aarch64-linux size=267 + bin/aarch64-linux/dvigif + bin/aarch64-linux/dvipng + +name dvipng.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dvipng +containersize 509824 +containerchecksum f1a3180a7db07823f380f679884371bf33411e4c2e51d830fdc4d16b51775c399b78549ac5adaa30a11d7312f2cef4e1c47d98171bd2316e1a84b8a1d921b951 +binfiles arch=amd64-freebsd size=290 + bin/amd64-freebsd/dvigif + bin/amd64-freebsd/dvipng + +name dvipng.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dvipng +containersize 422292 +containerchecksum b3b7253d6e594f93d8f1a538fa0ba76ee02b6f5dc03ab87c89dae483ca0c8c2cbc12bf7bc94c35a510305363c959c204475bbbdc66f4a1f96c70b669c530f7e2 +binfiles arch=amd64-netbsd size=365 + bin/amd64-netbsd/dvigif + bin/amd64-netbsd/dvipng + +name dvipng.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dvipng +containersize 390480 +containerchecksum 6f72ec562dcb3ef56997ba84607acf667792f828d3066a8fbfc25ef70ac2c679095d25f89d97a5bcfbbac081c62da892f48c181483d64a97ba4d008c9d0a6d5f +binfiles arch=armhf-linux size=220 + bin/armhf-linux/dvigif + bin/armhf-linux/dvipng + +name dvipng.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dvipng +containersize 441740 +containerchecksum f6c592657488324be2387988709c3c9325c73cc2721e76c2021368ecf144c285db7974ff94f92713ad4e21af4033c9b734ebd3bcb9439c85b0131c374b0de46d +binfiles arch=i386-cygwin size=252 + bin/i386-cygwin/dvigif + bin/i386-cygwin/dvipng.exe + +name dvipng.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dvipng +containersize 459800 +containerchecksum 402e5529b029e58921152b2217ee0f14b9f7670850f086c157aacb423bfbe2c901bf929ce6f8d47d6ae5d645a2cb20e1881e737a0ab04b4ae6a05e69ddb5d2e0 +binfiles arch=i386-freebsd size=254 + bin/i386-freebsd/dvigif + bin/i386-freebsd/dvipng + +name dvipng.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dvipng +containersize 500460 +containerchecksum 10aa96338b24da9615adfe74784575d2c4b4d923f5dffa6954b00864d6cbac13494f43955a37c289c029c4f0a80a82fb7306406b2c3371068ef5c088b0be5e79 +binfiles arch=i386-linux size=287 + bin/i386-linux/dvigif + bin/i386-linux/dvipng + +name dvipng.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dvipng +containersize 387900 +containerchecksum 4a9ed06176a4498f744d6854d23b6288f340ed813c8f3c50e47435be93b6ea4b805bb5c31768fdbfd5cee1b67d285af11aa0c6fcc8a82282d60bf21862b0e17b +binfiles arch=i386-netbsd size=321 + bin/i386-netbsd/dvigif + bin/i386-netbsd/dvipng + +name dvipng.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dvipng +containersize 451896 +containerchecksum a7b2270b486eb02cdb20eba08c541d47ba480ef5d24090c236898c59b53ea947ef495998e971c80b86a0c599de79967fdefc149f0c412ff0dc44fe4480f3a341 +binfiles arch=i386-solaris size=235 + bin/i386-solaris/dvigif + bin/i386-solaris/dvipng + +name dvipng.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dvipng +containersize 882028 +containerchecksum 0efa856da48bf54b9fd73d4a89cc22f80397e6a65c96ae7f5d4967d53208eb2f113a600a3d69bb50c9a0e53e61421fa410fe8c570583c2d2d3670ede82df8755 +binfiles arch=universal-darwin size=545 + bin/universal-darwin/dvigif + bin/universal-darwin/dvipng + +name dvipng.win32 +category TLCore +revision 58783 +shortdesc win32 files of dvipng +containersize 395916 +containerchecksum 0f87b7a7bb22e0c7fabdba83ec1cad52e4b3e815d3c8f9da5044f365c1e65c7a035b9cb282f190bab0de176c70f182767d389f188d93781dad8a4f3e0f8c7f5b +binfiles arch=win32 size=212 + bin/win32/dvigif.exe + bin/win32/dvipng.exe + +name dvipng.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dvipng +containersize 445440 +containerchecksum 9827bc960dbef77a08fbcee9357349417777eb7b62aea3324b50343c076e459302ab3a02041bc78b80994a2bb6415f36f1362c6d18857cb0136c7ec7d295cf68 +binfiles arch=x86_64-cygwin size=245 + bin/x86_64-cygwin/dvigif + bin/x86_64-cygwin/dvipng.exe + +name dvipng.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dvipng +containersize 447096 +containerchecksum ac098b4d071f1f038c96dc0c194b53f19986d86afcc4c0e08018f1f4556343467763fe8b3b69ead3230e084e7830934bb1f342b04d11f2ea6f64be6707667fcb +binfiles arch=x86_64-darwinlegacy size=246 + bin/x86_64-darwinlegacy/dvigif + bin/x86_64-darwinlegacy/dvipng + +name dvipng.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dvipng +containersize 483392 +containerchecksum ce82eaa410c8b779753d3ccacc75a8fd496569981290d7f7be0ac8de1f73da264f4137e9a4d4caaa7618768758b69b738d8f9f6674f71c93136ff60328c93889 +binfiles arch=x86_64-linux size=269 + bin/x86_64-linux/dvigif + bin/x86_64-linux/dvipng + +name dvipng.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dvipng +containersize 497484 +containerchecksum 1c054b8e36c108c0f09cc2c0c1b9e9f5985b21ab865ec25e3bf8332ac3bd1168ad807a9598fb4b5379c1251964748e068ffd203cbd542c9585cacc35dce0f97a +binfiles arch=x86_64-linuxmusl size=285 + bin/x86_64-linuxmusl/dvigif + bin/x86_64-linuxmusl/dvipng + +name dvipng.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dvipng +containersize 492276 +containerchecksum bb3e45e50c212b939bb2ad1e26400f06c1c34bd3be59db5faf0ef0c23802010d2fbccb0cabbd2ff45bfc4fd95ec6c50a6cdca821e187129f221a3afcd5df28b0 +binfiles arch=x86_64-solaris size=273 + bin/x86_64-solaris/dvigif + bin/x86_64-solaris/dvipng + +name dvipos +category TLCore +revision 52851 +shortdesc support DVI pos: specials used by ConTeXt DVI output +depend dvipos.ARCH +containersize 296 +containerchecksum 152cc45942bb1d241008ea0924f1e96e2329d6fd4228be42dc6dcb9eb28081bcb3d80e407e9fdf0560e93d095fd07351cf073f14d4a4c25eb984613fd9189826 +doccontainersize 28512 +doccontainerchecksum 2bf3fd5bbd7b6e1fb8a263dd0e3deef358bead727df5de280342376225fd7366ff470b9c2fca8f763890d1047fe2c7a5b138ade1b5fcab383c8113e10f245199 +docfiles size=9 + texmf-dist/doc/man/man1/dvipos.1 + texmf-dist/doc/man/man1/dvipos.man1.pdf + +name dvipos.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dvipos +containersize 43716 +containerchecksum f3152db2f620584617efb202ea865795b2ca230764aa0c5264eb008d7f26521e86cd454bed22529851ee16755ee0aa61e79201ed8598c6579f299ad7ccc06279 +binfiles arch=aarch64-linux size=29 + bin/aarch64-linux/dvipos + +name dvipos.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dvipos +containersize 48900 +containerchecksum 52d4b0b96d7284cb629c4dd812410403186ecbc9bbd098ec1a1ca3907bdad260375e58e6a612aed554c3a451f910578fe5373f7a8b6344869123675f140979de +binfiles arch=amd64-freebsd size=30 + bin/amd64-freebsd/dvipos + +name dvipos.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dvipos +containersize 44668 +containerchecksum 9e58ab33dfb099fdc03351c345fd512c6d71629b924fede8f70235ee5ec0212e45b5d2b156fbf12894323d5ded916469020cf0590d339eae8761834b21a8a4a8 +binfiles arch=amd64-netbsd size=37 + bin/amd64-netbsd/dvipos + +name dvipos.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dvipos +containersize 37156 +containerchecksum 0edeb8e16128cc7bfe2014638c08b8d4ec03f6397708f98330dcd0820693c0bcd7a961e16f712731eac50bdc73ed90b97a3753c50ca1e822e534efaf78201c21 +binfiles arch=armhf-linux size=23 + bin/armhf-linux/dvipos + +name dvipos.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dvipos +containersize 16376 +containerchecksum ad5869ec7a4913cc0d30d5bc88067f1ede72e38ce34536aaa4978f3e990a9073f5045cc31f2bcf88b72bf101debdb918826f1ed1e99ba0d467bffe0134e40dc2 +binfiles arch=i386-cygwin size=12 + bin/i386-cygwin/dvipos.exe + +name dvipos.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dvipos +containersize 42472 +containerchecksum 2f174581ad71951ca529a1eaebe2effb2bd851ac097da30c937d719f5f8c6c5bfea01137ceefea1846c01f43fcace94617c0ba80287e21665ccbbd5a41f0b52a +binfiles arch=i386-freebsd size=26 + bin/i386-freebsd/dvipos + +name dvipos.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dvipos +containersize 48852 +containerchecksum 8f0ad03e0a0b3a83368f4506ffcfa8d0f8a0615a06bffb9a925b9e752bec7e5035ae65bee2d9f04c8bb5588ca86d231bde66ec266b8e4aa8e8eba580740d120b +binfiles arch=i386-linux size=31 + bin/i386-linux/dvipos + +name dvipos.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dvipos +containersize 40060 +containerchecksum 17d3176a4a0cfeceee6cb968508f97093b08ac7be6a0f849ccffc70c4b6d840ce253e025cb0dc0e6da6f9fc6fa97223008afb87b9d12225c010568195684e143 +binfiles arch=i386-netbsd size=33 + bin/i386-netbsd/dvipos + +name dvipos.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dvipos +containersize 45468 +containerchecksum 09dfea18b228a436fc6ff482cae3757a170d6df88d6e6c80fd733e1f2956353caf7bffa660ca40f552a1582a46fbe3c7cfd456606603f96d0288bdea71d571f6 +binfiles arch=i386-solaris size=26 + bin/i386-solaris/dvipos + +name dvipos.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dvipos +containersize 89848 +containerchecksum f9342a2b0ece9b7561fd7ca5d9e6af393ec5801b798cd1f01efa08b619b9f48729d48262f8804d9ccf949b213c7be24217c49c9726060e6c948d262d45f789fb +binfiles arch=universal-darwin size=75 + bin/universal-darwin/dvipos + +name dvipos.win32 +category TLCore +revision 58783 +shortdesc win32 files of dvipos +containersize 16884 +containerchecksum e4851dadf52ca7d04efa60ac40c0974709bf6dcfe89e4cea906c00bbf5df4028d2ec053b842e7732cbc144779b8ec19d809a598558506e592549226db119c43d +binfiles arch=win32 size=9 + bin/win32/dvipos.exe + +name dvipos.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dvipos +containersize 18408 +containerchecksum d69280b4e1382d88f78a1d9392872aa7fe864118a6047172247f80c6bfb82b4c17f95c6a725ee5df9316d619e8b0d4596e121f999d58156739f35168f5bf0efd +binfiles arch=x86_64-cygwin size=12 + bin/x86_64-cygwin/dvipos.exe + +name dvipos.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dvipos +containersize 46064 +containerchecksum 66895d3f45be9b875bebd147971ede5ff73aa2d5c53a0741f93990fc6a0420c36d1a0b2d10b8340d4569fa326543f51b3a4edbf464baf0b0cd1b86d9bf581957 +binfiles arch=x86_64-darwinlegacy size=28 + bin/x86_64-darwinlegacy/dvipos + +name dvipos.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dvipos +containersize 46888 +containerchecksum 4c9790d25b5ed5b1c95a1ca79dd330eeede9783d451500c80eb4d84c6909a6ec7b9e77e16861561539e09a03523e3a05a05e07bb9b7f119ab74af8f8d792a778 +binfiles arch=x86_64-linux size=28 + bin/x86_64-linux/dvipos + +name dvipos.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dvipos +containersize 50636 +containerchecksum eb0da6e737d9818e542a1dd2bebc636fd96e36902e361f01dc532f535ec0055fe30bfcc1bb24e8df505f8573c5acc7d7a6f028d3183a1f69f4b26b07b44345cf +binfiles arch=x86_64-linuxmusl size=30 + bin/x86_64-linuxmusl/dvipos + +name dvipos.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dvipos +containersize 50988 +containerchecksum 3e5e50fc6741be662574387e1222f9e25a6cd8add61bd41da59ab87d79e561a5c75aeb78db905fe6b1c203370885ee7363e64e471dd0588c6d8bf4abd246a3a3 +binfiles arch=x86_64-solaris size=31 + bin/x86_64-solaris/dvipos + +name dvips +category TLCore +revision 57972 +shortdesc A DVI to PostScript driver +longdesc This package has been withdrawn from CTAN, and bundled into the +longdesc distributions' package sets. Development now takes place within +longdesc the TeX Live framework, and it is no longer available as a +longdesc separate package. For download, support, and other information, +longdesc please see TeX Live. +depend dvips.ARCH +containersize 58080 +containerchecksum 31069dd768bfad8c3430abb001e5d73d1b5481c6a0216801c3e04c5571e9e841a77ef6176b6d42ca3ffd5b8860790f37ac6dded1a453120aea96ac7a2c207563 +doccontainersize 522148 +doccontainerchecksum a66136f6f457a6e4953f25e7489c98668d950da10c37668d8332ccf5b20eeec5f493b84ca014c944dd8b241cfe3b0621f6096ce4b3a6f732e3816026a7835245 +docfiles size=289 + texmf-dist/doc/dvips/NEWS + texmf-dist/doc/dvips/README details="Readme" + texmf-dist/doc/dvips/dvips.html + texmf-dist/doc/dvips/dvips.pdf details="Package documentation" + texmf-dist/doc/info/dvips.info + texmf-dist/doc/man/man1/afm2tfm.1 + texmf-dist/doc/man/man1/afm2tfm.man1.pdf + texmf-dist/doc/man/man1/dvips.1 + texmf-dist/doc/man/man1/dvips.man1.pdf +runfiles size=138 + texmf-dist/dvips/base/color.pro + texmf-dist/dvips/base/crop.pro + texmf-dist/dvips/base/finclude.pro + texmf-dist/dvips/base/hps.pro + texmf-dist/dvips/base/resolution400.ps + texmf-dist/dvips/base/special.pro + texmf-dist/dvips/base/tex.pro + texmf-dist/dvips/base/texc.pro + texmf-dist/dvips/base/texps.pro + texmf-dist/dvips/config/alt-rule.pro + texmf-dist/dvips/config/canonex.cfg + texmf-dist/dvips/config/config.bakoma + texmf-dist/dvips/config/config.canonex + texmf-dist/dvips/config/config.cx + texmf-dist/dvips/config/config.deskjet + texmf-dist/dvips/config/config.dvired + texmf-dist/dvips/config/config.epson + texmf-dist/dvips/config/config.ibmvga + texmf-dist/dvips/config/config.ljfour + texmf-dist/dvips/config/config.luc + texmf-dist/dvips/config/config.mbn + texmf-dist/dvips/config/config.mga + texmf-dist/dvips/config/config.mirrorprint + texmf-dist/dvips/config/config.ot2 + texmf-dist/dvips/config/config.ps + texmf-dist/dvips/config/config.qms + texmf-dist/dvips/config/config.toshiba + texmf-dist/dvips/config/config.unms + texmf-dist/dvips/config/config.xyp + texmf-dist/dvips/config/cx.cfg + texmf-dist/dvips/config/deskjet.cfg + texmf-dist/dvips/config/dfaxhigh.cfg + texmf-dist/dvips/config/dvired.cfg + texmf-dist/dvips/config/epson.cfg + texmf-dist/dvips/config/ibmvga.cfg + texmf-dist/dvips/config/ljfour.cfg + texmf-dist/dvips/config/qms.cfg + texmf-dist/dvips/config/toshiba.cfg + texmf-dist/fonts/enc/dvips/base/6w.enc + texmf-dist/fonts/enc/dvips/base/7t.enc + texmf-dist/fonts/enc/dvips/base/8a.enc + texmf-dist/fonts/enc/dvips/base/8r.enc + texmf-dist/fonts/enc/dvips/base/ad.enc + texmf-dist/fonts/enc/dvips/base/ansinew.enc + texmf-dist/fonts/enc/dvips/base/asex.enc + texmf-dist/fonts/enc/dvips/base/asexp.enc + texmf-dist/fonts/enc/dvips/base/dc.enc + texmf-dist/fonts/enc/dvips/base/dvips-all.enc + texmf-dist/fonts/enc/dvips/base/dvips.enc + texmf-dist/fonts/enc/dvips/base/ec.enc + texmf-dist/fonts/enc/dvips/base/extex.enc + texmf-dist/fonts/enc/dvips/base/funky.enc + texmf-dist/fonts/enc/dvips/base/odvips.enc + texmf-dist/fonts/enc/dvips/base/q-cs-uni.enc + texmf-dist/fonts/enc/dvips/base/q-ec-uni.enc + texmf-dist/fonts/enc/dvips/base/q-l7x-uni.enc + texmf-dist/fonts/enc/dvips/base/q-qx-uni.enc + texmf-dist/fonts/enc/dvips/base/q-rm-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t2a-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t2b-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t2c-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t5-uni.enc + texmf-dist/fonts/enc/dvips/base/q-texnansi-uni.enc + texmf-dist/fonts/enc/dvips/base/q-ts1-uni.enc + texmf-dist/fonts/enc/dvips/base/qx.enc + texmf-dist/fonts/enc/dvips/base/stormex.enc + texmf-dist/fonts/enc/dvips/base/tex256.enc + texmf-dist/fonts/enc/dvips/base/texmext.enc + texmf-dist/fonts/enc/dvips/base/texmital.enc + texmf-dist/fonts/enc/dvips/base/texmsym.enc + texmf-dist/fonts/enc/dvips/base/texnansx.enc + texmf-dist/tex/generic/dvips/blackdvi.sty + texmf-dist/tex/generic/dvips/blackdvi.tex + texmf-dist/tex/generic/dvips/colordvi.sty + texmf-dist/tex/generic/dvips/colordvi.tex + texmf-dist/tex/generic/dvips/rotate.sty + texmf-dist/tex/generic/dvips/rotate.tex +catalogue-contact-bugs https://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 https://lists.tug.org/tex-k +catalogue-license other-free +catalogue-topics dvi-print + +name dvips.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dvips +containersize 143648 +containerchecksum d44112d463a1a3191e812c141aed4935ff4cf0157d7dff4fce38899670292cafee0f6ad2bf9ec211cb8c2ea92bce961695c656b0a26dccee0d712a4386eed3d7 +binfiles arch=aarch64-linux size=105 + bin/aarch64-linux/afm2tfm + bin/aarch64-linux/dvips + +name dvips.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dvips +containersize 159652 +containerchecksum ac17e2ebb032bb4adb7a38c1073b919bb69825432bae6bfcf69077e452f2913aeb8bf1e93938ae7d753b74fb1b2cb1e145a0d109f9343c59c8e6d976d9b72cf3 +binfiles arch=amd64-freebsd size=107 + bin/amd64-freebsd/afm2tfm + bin/amd64-freebsd/dvips + +name dvips.amd64-netbsd +category TLCore +revision 58866 +shortdesc amd64-netbsd files of dvips +containersize 134516 +containerchecksum 8baea2a7d0c7f2d0be25c4e2b15a77a2746009a49d45773c9599cfb58d4deae000c5b5f03893b7b89da494a01d628e3cb2b2ce63cbad7e89ae617723a3aae506 +binfiles arch=amd64-netbsd size=113 + bin/amd64-netbsd/afm2tfm + bin/amd64-netbsd/dvips + +name dvips.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dvips +containersize 119880 +containerchecksum dd94cf964cc611bedf6d5d3cccb995be04075c6a033916c2339940cb034125f7b88f7b912427245a667c311e2a7ad8f05171e6f95a9844bcf2b58c357ee55028 +binfiles arch=armhf-linux size=81 + bin/armhf-linux/afm2tfm + bin/armhf-linux/dvips + +name dvips.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dvips +containersize 104048 +containerchecksum 91003f7ca938c66077c5cc704d1c8d1440d4ff95be61e243ed0ef708ff0d4b34835d6ad8f2dc49129bbac8a78fbb7d5dd658665db5b90ee77c4886cd785c0faa +binfiles arch=i386-cygwin size=63 + bin/i386-cygwin/afm2tfm.exe + bin/i386-cygwin/dvips.exe + +name dvips.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dvips +containersize 138328 +containerchecksum 9731cc4a737d7e623f1b5200cbb461d284e389894c0d87776d3050148e10c357437f76afbd064709fa3ad5610b05cb31a28258609019163b03866225b9323df2 +binfiles arch=i386-freebsd size=93 + bin/i386-freebsd/afm2tfm + bin/i386-freebsd/dvips + +name dvips.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dvips +containersize 147384 +containerchecksum 3b3fc8c75f7c2ba6ce312fb570cf38e7f0cea21b885e723c81de4a51ed1108831991d3ba8cb6aeca9e1172a9fb13b4d0bfd3ab7cf0dd97bbcc3421806b4dd3b6 +binfiles arch=i386-linux size=101 + bin/i386-linux/afm2tfm + bin/i386-linux/dvips + +name dvips.i386-netbsd +category TLCore +revision 58866 +shortdesc i386-netbsd files of dvips +containersize 119000 +containerchecksum fd8a37cd48438682b10f4bcbc16b91b1b48de32080a67281cd5ae0c60b1e481da49754e43285c20b5528a234c733debca1d12e34e2618b2bd13144bf7efe760a +binfiles arch=i386-netbsd size=103 + bin/i386-netbsd/afm2tfm + bin/i386-netbsd/dvips + +name dvips.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dvips +containersize 140624 +containerchecksum 882f6e9ef99d113267ee4a21ad4edf7c002e1c2621c33216f98475e4e0c3fe1e6d2f061db71de9bca0c3a86dd8db93b58fa33dc1bf5334e0e1cfa995dca2b431 +binfiles arch=i386-solaris size=89 + bin/i386-solaris/afm2tfm + bin/i386-solaris/dvips + +name dvips.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dvips +containersize 293556 +containerchecksum 4fe9c13bc81c154a731bfe3a09079bf8a415e66d45003e6aafabceb4a11c20e22d1fbf712cf6d1a248879936ebbc97808889bced1d6e3bf2136ba55b8885fdac +binfiles arch=universal-darwin size=240 + bin/universal-darwin/afm2tfm + bin/universal-darwin/dvips + +name dvips.win32 +category TLCore +revision 58843 +shortdesc win32 files of dvips +containersize 94144 +containerchecksum 5241414adc60f9fa5b8cdf5dd39e3664fe0b4f05fc65c84d1059ff6d3bdb6a3a205750151fa80edf1022b2c00f481b76870fe523a13bc0a948652782667b643b +binfiles arch=win32 size=53 + bin/win32/afm2tfm.exe + bin/win32/dvips.exe + +name dvips.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dvips +containersize 117036 +containerchecksum 0d306962c1b99c62b848ecb6285082790ed6d26ce7a7d11cbd33b1713f94002eff31ab1767b1593a43d380707c23ff571c0e9fe05e4148790791f94dfe300dfb +binfiles arch=x86_64-cygwin size=65 + bin/x86_64-cygwin/afm2tfm.exe + bin/x86_64-cygwin/dvips.exe + +name dvips.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dvips +containersize 142652 +containerchecksum f786bb4eb6ee55b03894c4abbcc63da0a506f4c2b0828dca8b0780607dd26c69ec86e85f48a08d0d12f03a7973ede08fb172c541dfe505f7073ff8d3b8e3e048 +binfiles arch=x86_64-darwinlegacy size=90 + bin/x86_64-darwinlegacy/afm2tfm + bin/x86_64-darwinlegacy/dvips + +name dvips.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dvips +containersize 148320 +containerchecksum 4374137bd921444145a5e386963618035e9151f07344ab0d5a6ebe020be2034e9a933c0127edd3ef2f861f5a0fb0e77dfa338339344eb22e4965e675baabc23e +binfiles arch=x86_64-linux size=94 + bin/x86_64-linux/afm2tfm + bin/x86_64-linux/dvips + +name dvips.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dvips +containersize 155124 +containerchecksum 161e99be39c3ccd6ed201a179c5501ec1353ddc3cd6ead4dc6a6b2ed002e505996af9413b6da677f94125b706056af28c1273eb2ee9f1c99db258da095b452de +binfiles arch=x86_64-linuxmusl size=102 + bin/x86_64-linuxmusl/afm2tfm + bin/x86_64-linuxmusl/dvips + +name dvips.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dvips +containersize 157384 +containerchecksum f97d7c9e31c8a7795af859890014989e61362c9db4581497b5f6c3b77c229a7dae96297c34f93a4b888bd7d53b730127b69ac0995a86e647c2a8f79e1688ba8c +binfiles arch=x86_64-solaris size=103 + bin/x86_64-solaris/afm2tfm + bin/x86_64-solaris/dvips + +name dvipsconfig +category Package +revision 13293 +shortdesc Collection of dvips PostScript headers +relocated 1 +longdesc This is a collection of dvips PostScript header and dvips +longdesc config files. They control certain features of the printer, +longdesc including: A4, A3, usletter, simplex, duplex / long edge, +longdesc duplex / short edge, screen frequencies of images, black/white +longdesc invers, select transparency / paper for tektronix 550/560, +longdesc manual feeder, envelope feeder, and tray 1, 2 and 3, and +longdesc printing a PostScript grid underneath the page material--very +longdesc useful for measuring and eliminating paper feed errors! +containersize 11640 +containerchecksum ff7ad395329dd1cc5d21d5459916d0f10a8c03399d733048bce0a8aaa4e3a955f3ad3dbb228319d4bfb96e0694069002507bc294ed81fda5a48ad93f8cd82589 +runfiles size=39 + RELOC/dvips/dvipsconfig/README + RELOC/dvips/dvipsconfig/addpsctrl + RELOC/dvips/dvipsconfig/config.a3 + RELOC/dvips/dvipsconfig/config.a4 + RELOC/dvips/dvipsconfig/config.a4grid + RELOC/dvips/dvipsconfig/config.duplong + RELOC/dvips/dvipsconfig/config.dupshort + RELOC/dvips/dvipsconfig/config.envelope + RELOC/dvips/dvipsconfig/config.inv + RELOC/dvips/dvipsconfig/config.manualfeed + RELOC/dvips/dvipsconfig/config.mmgrid + RELOC/dvips/dvipsconfig/config.psgrid + RELOC/dvips/dvipsconfig/config.screen100 + RELOC/dvips/dvipsconfig/config.screen100_0 + RELOC/dvips/dvipsconfig/config.screen110 + RELOC/dvips/dvipsconfig/config.screen120 + RELOC/dvips/dvipsconfig/config.screen130 + RELOC/dvips/dvipsconfig/config.screen140 + RELOC/dvips/dvipsconfig/config.screen150 + RELOC/dvips/dvipsconfig/config.screen35 + RELOC/dvips/dvipsconfig/config.screen50 + RELOC/dvips/dvipsconfig/config.screen70 + RELOC/dvips/dvipsconfig/config.screen80 + RELOC/dvips/dvipsconfig/config.screen85 + RELOC/dvips/dvipsconfig/config.screen90 + RELOC/dvips/dvipsconfig/config.simplex + RELOC/dvips/dvipsconfig/config.tek550paper + RELOC/dvips/dvipsconfig/config.tek550transparency + RELOC/dvips/dvipsconfig/config.tray1 + RELOC/dvips/dvipsconfig/config.tray2 + RELOC/dvips/dvipsconfig/config.tray3 + RELOC/dvips/dvipsconfig/config.usledger + RELOC/dvips/dvipsconfig/config.usletter +catalogue-ctan /dviware/dvipsconfig +catalogue-license gpl +catalogue-topics dvi-print +catalogue-version 1.6 + +name dvisvgm +category TLCore +revision 57972 +shortdesc Convert DVI, EPS, and PDF files to Scalable Vector Graphics format (SVG) +longdesc Dvisvgm is a command line utility that converts TeX DVI as well +longdesc as EPS and PDF files to the XML-based Scalable Vector Graphics +longdesc (SVG) format. It provides full font support including virtual +longdesc fonts, font maps, and sub-fonts. If necessary, dvisvgm +longdesc vectorizes Metafont's bitmap output in order to always create +longdesc lossless scalable output. The embedded SVG fonts can optionally +longdesc be replaced with graphics paths so that applications that do +longdesc not support SVG fonts are enabled to render the graphics +longdesc properly. Besides many other features, dvisvgm also supports +longdesc color, emTeX, tpic, papersize, PDF mapfile and PostScript +longdesc specials. Users will need a working TeX installation including +longdesc the kpathsea library. For more detailed information, see the +longdesc project page. +depend dvisvgm.ARCH +containersize 880 +containerchecksum bc91b0f9ec49020d3b7d9c0caa0456a844b7d9783dde5ce21b75407725139da86bc30bf0310fa5a99d12d5f5e812d674a872f0a10dc62576bc51bd3a6cdd2355 +doccontainersize 103700 +doccontainerchecksum 668040316023becd76605d16d9b7f4e16eb2246e51d2cdc05910ee9a78f85edd227ede70ca57d280f3473e2a7eea60b41f0ad76e26789963eafcf400e49a12ed +docfiles size=41 + texmf-dist/doc/man/man1/dvisvgm.1 + texmf-dist/doc/man/man1/dvisvgm.man1.pdf +catalogue-contact-announce https://dvisvgm.de/News +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-license gpl3+ +catalogue-topics dvi-proc +catalogue-version 2.11 + +name dvisvgm.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of dvisvgm +containersize 1699936 +containerchecksum e846f66be5bad746e2fd1a5afee9ebb6ccde1b91b6c2e5242af6f606d665e895ac8e3759910f56310897695fee9a658574533bae90fdcc96eebdbb86be420409 +binfiles arch=aarch64-linux size=1552 + bin/aarch64-linux/dvisvgm + +name dvisvgm.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of dvisvgm +containersize 1600524 +containerchecksum 718ccf65d0e72b76303c56bff7c6220fd3062a2dffe670d0ccd2dc1d054ec63af341c3676efac15e646d42bfcb252111ca467d8420f2a1609eb3a522c887347f +binfiles arch=amd64-freebsd size=1288 + bin/amd64-freebsd/dvisvgm + +name dvisvgm.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of dvisvgm +containersize 1799892 +containerchecksum 264e6b3e27f7d7dc1deb34f130c2519a29e8ce006165a89883c20bed6ca13526ca59478722f2fc72415f833b698ccf0021e4e96679699cc8fe6e16565369945d +binfiles arch=amd64-netbsd size=2658 + bin/amd64-netbsd/dvisvgm + +name dvisvgm.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of dvisvgm +containersize 1503980 +containerchecksum a22292961924b6c180e47b5d166188c543b353107a4b08c00a503b1a1a3752837df23ca8389bc8cacb14fa211efe1f3f205080a305d42a4effa4ecde9d25545e +binfiles arch=armhf-linux size=1253 + bin/armhf-linux/dvisvgm + +name dvisvgm.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of dvisvgm +containersize 1702140 +containerchecksum deae6badba080acbf20bb33d6cb6a210f1f627ce7d52db10aee2a4d71ef5d551fc656af3108f63371c6551386b6c869bb16a5f936a2ce13d3dc70b6e7ea30acc +binfiles arch=i386-cygwin size=1439 + bin/i386-cygwin/dvisvgm.exe + +name dvisvgm.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of dvisvgm +containersize 1564844 +containerchecksum 18fb00ce55a3cc760e9d0afebeb9cd68693f2461b79486a6cabf56656a45e9b3d18ed28fac0c8459310065b9504c6ac9b1a7ba7ad9d1ab0ffd7eaa294d9bab76 +binfiles arch=i386-freebsd size=1202 + bin/i386-freebsd/dvisvgm + +name dvisvgm.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of dvisvgm +containersize 1759244 +containerchecksum 4103e8ddae6be136a09654b43eeea073e38d5bb964b014c94a072e7e7d9cd9f98267ab9e209b19ed28cafa16a71963896b3e2af2c4f1b93673b25718298cfbc2 +binfiles arch=i386-linux size=1399 + bin/i386-linux/dvisvgm + +name dvisvgm.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of dvisvgm +containersize 1764220 +containerchecksum 9c9141ab9a0f134216da1246e1ff62fdaeb18c502c75e6332f9d4c5a8978e6240de8f80c1eb3c926f79666934a7aa1b57a0ecc91d68c657545f0fb46a3435287 +binfiles arch=i386-netbsd size=2492 + bin/i386-netbsd/dvisvgm + +name dvisvgm.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of dvisvgm +containersize 1930708 +containerchecksum 7d38e12705d0c2529265b17dab01434c5ade99722b71a4f7855f77884b5fc1e75fe850cd24e5766348544001cf5a4cd46d7ad8558ef3d850ac6c0675cb5d3deb +binfiles arch=i386-solaris size=1637 + bin/i386-solaris/dvisvgm + +name dvisvgm.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of dvisvgm +containersize 2614756 +containerchecksum 41b0aa1efdd88946faea14aeeb80ebd6d0051a369eb949258d7939241c65118adb8b27d4bb3e2209c0bdea567e067910548077536fbeb577cfc6b47400530c75 +binfiles arch=universal-darwin size=2527 + bin/universal-darwin/dvisvgm + +name dvisvgm.win32 +category TLCore +revision 58783 +shortdesc win32 files of dvisvgm +containersize 1470972 +containerchecksum 7fd208110d786b748ba5d73958bf74683d0d456b7760c09d9dccf36b5b03ee52b8a15dba4ba9c758c58c78c04111b4485d7dbe6065ae9a9b367bb73173b47ce3 +binfiles arch=win32 size=1735 + bin/win32/dvisvgm.exe + +name dvisvgm.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of dvisvgm +containersize 1718340 +containerchecksum 50413c234c5472b2712e1888eb3095ad3bd55f0648264fa1ec19eddd45fe92e91cb0adb619eede31ce43c43a43520fa0a517ab345b98aaacc861e21509e705c9 +binfiles arch=x86_64-cygwin size=1424 + bin/x86_64-cygwin/dvisvgm.exe + +name dvisvgm.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of dvisvgm +containersize 1488204 +containerchecksum 7acc71abd03c512ad95d22f6f117fe6a88f1c4dfc2e52f45a16b8d721bc0c990836fc9657831eeff7b5c041661520ae9ba61ff6758221ef786a5d0f797565372 +binfiles arch=x86_64-darwinlegacy size=1201 + bin/x86_64-darwinlegacy/dvisvgm + +name dvisvgm.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of dvisvgm +containersize 1728572 +containerchecksum 53ba09f6b53fc396033c039aa8752cc7e8356c9a09f60a10f6327f27b612130a58833e78f274479e8d8be10c55947cb1e24dca782507baa04875bdafcf5a8ce7 +binfiles arch=x86_64-linux size=1398 + bin/x86_64-linux/dvisvgm + +name dvisvgm.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of dvisvgm +containersize 1787968 +containerchecksum 2017b7c89d5d79e913f34826f86d3929c23b20a87c84062a425fd0e24b27abf5737f7d114fedeaf688ee7e99aaaac9408a5f8f672004d3ec3c07c7516e51a282 +binfiles arch=x86_64-linuxmusl size=1519 + bin/x86_64-linuxmusl/dvisvgm + +name dvisvgm.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of dvisvgm +containersize 1955020 +containerchecksum ff5a710c2fdc38b4ea7fdc2401de7ffeb34650cde80b2804b5c9edf10d368bc572c4327492eda0be87d368395819a49d2a0e5a61addb70f686e8ef4f6061d975 +binfiles arch=x86_64-solaris size=1752 + bin/x86_64-solaris/dvisvgm + +name dynamicnumber +category Package +revision 38726 +shortdesc Dynamically typeset numbers and values in LaTeX through "symbolic links" +relocated 1 +longdesc This package dynamically typesets values generated by different +longdesc kinds of scripts in LaTeX through the use of "symbolic links" +longdesc (which are not in any way related to the "symbolic links" used +longdesc in UNIX systems!). The aim is to reduce errors resulting from +longdesc out-of-date numbers by directly setting them in the number +longdesc generating file and importing a "symbolic link" into the LaTeX +longdesc source file. It can be used to import not only numerical +longdesc values, but strings and pieces of code are also possible. +longdesc Currently only MATLAB and Python are supported to produce +longdesc Dynamic Number list files. +containersize 1500 +containerchecksum 802df3848c8ace40e1eef5c1d30c07a6a5f30fc902a9bb18581b79ff322921e7235ab05981625eb289f093f4486f0aec2e9c83bf669a9afa993a86146317b619 +doccontainersize 159240 +doccontainerchecksum 3eeb8617b33d45c1f97756f58bb87fa1244cd3089e0ed64f363f2909480459ce17e30d54bfbf948642856984618081d0fd15c0721d0190c187b375fbdfcfcebd +docfiles size=40 + RELOC/doc/latex/dynamicnumber/LICENSE.txt + RELOC/doc/latex/dynamicnumber/dynamicnumber.pdf details="Package documentation" +srccontainersize 3268 +srccontainerchecksum 8a4ed9566201af2835190f574c3316f5eff4258ef0e9b25b62b146b483c14e9fcf66abc2e1c4b3512f12969bcee1a8102ba020ea78874e0c7f3e68c0a64232ea +srcfiles size=3 + RELOC/source/latex/dynamicnumber/dynamicnumber.dtx + RELOC/source/latex/dynamicnumber/dynamicnumber.ins +runfiles size=1 + RELOC/tex/latex/dynamicnumber/dynamicnumber.sty +catalogue-contact-repository https://github.com/opieters/DynamicNumber +catalogue-ctan /macros/latex/contrib/dynamicnumber +catalogue-license mit +catalogue-topics data-import +catalogue-version 0.1.3 + +name dynblocks +category Package +revision 35193 +shortdesc A simple way to create dynamic blocks for Beamer +relocated 1 +longdesc The package provides full customisation of the aspect and +longdesc dimensions of blocks inside a presentation. +containersize 2084 +containerchecksum bda4ad43754e7d4fa87cc4ac5bdb772cd24a4e613bcf7993e3d448a9c884aad5ad484c6dd7739f4c6edb983560181717319dc26376a6025f3847afb588fa47a1 +doccontainersize 377732 +doccontainerchecksum 4f4084cc4dd913bcff3e71286fa4e881c7d577afd8e0669396de2ab18ccbdbc8649117bb931e365fa5999c5c842a71cab18da5573e83c1d721c87256e614c321 +docfiles size=216 + RELOC/doc/latex/dynblocks/README details="Readme" + RELOC/doc/latex/dynblocks/dynblocks.pdf details="Package documentation" + RELOC/doc/latex/dynblocks/dynblocks.tex + RELOC/doc/latex/dynblocks/images/alert_1.pdf + RELOC/doc/latex/dynblocks/images/alert_2.pdf + RELOC/doc/latex/dynblocks/images/align.pdf + RELOC/doc/latex/dynblocks/images/basic_1.pdf + RELOC/doc/latex/dynblocks/images/basic_2.pdf + RELOC/doc/latex/dynblocks/images/cmbx_1.pdf + RELOC/doc/latex/dynblocks/images/cmbx_2.pdf + RELOC/doc/latex/dynblocks/images/cmby_1.pdf + RELOC/doc/latex/dynblocks/images/cmby_2.pdf + RELOC/doc/latex/dynblocks/images/custcol_1.pdf + RELOC/doc/latex/dynblocks/images/custcol_2.pdf + RELOC/doc/latex/dynblocks/images/custcol_3.pdf + RELOC/doc/latex/dynblocks/images/custcol_4.pdf + RELOC/doc/latex/dynblocks/images/estl.pdf + RELOC/doc/latex/dynblocks/images/shdrndc_1.pdf + RELOC/doc/latex/dynblocks/images/shdrndc_2.pdf + RELOC/doc/latex/dynblocks/images/szeg_1.pdf + RELOC/doc/latex/dynblocks/images/szeg_2.pdf +runfiles size=2 + RELOC/tex/latex/dynblocks/dynblocks.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/dynblocks +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 0.2b + +name dynkin-diagrams +category Package +revision 58758 +shortdesc Draw Dynkin, Coxeter, and Satake diagrams using TikZ +relocated 1 +longdesc Draws Dynkin, Coxeter, and Satake diagrams in LaTeX documents, +longdesc using the TikZ package. The package requires amsmath, amssymb, +longdesc etoolbox, expl3, mathtools, pgfkeys, pgfopts, TikZ, xparse, and +longdesc xstring. +containersize 20284 +containerchecksum d415f924c580e97ec653f4bb76f911acf4a800f48a078d95d070aa5583dca46b52c1008a882b255d4728dacee8ef59acebde6dd84c05d4c1d9443c4db835bb52 +doccontainersize 851528 +doccontainerchecksum b31e83f3901040e27bc61c82cf687e5b98fe8b7c5b245506485fe9df7b14d9a65633bfeec30ade8168faa7262fef69a54b8848f473c02aed02c81182d2efe5c0 +docfiles size=227 + RELOC/doc/latex/dynkin-diagrams/README details="Readme" + RELOC/doc/latex/dynkin-diagrams/dynkin-diagrams.bib + RELOC/doc/latex/dynkin-diagrams/dynkin-diagrams.pdf details="Package documentation" + RELOC/doc/latex/dynkin-diagrams/dynkin-diagrams.tex +runfiles size=38 + RELOC/tex/latex/dynkin-diagrams/dynkin-diagrams.sty +catalogue-ctan /graphics/pgf/contrib/dynkin-diagrams +catalogue-license lppl1.3c +catalogue-topics graphics diagram pgf-tikz expl3 +catalogue-version 3.1415926535897932 + +name dyntree +category Package +revision 15878 +shortdesc Construct Dynkin tree diagrams +relocated 1 +longdesc The package is intended for users needing to typeset a Dynkin +longdesc Tree Diagram--a group theoretical construct consisting of +longdesc cartan coefficients in boxes connected by a series of lines. +longdesc Such a diagram is a tool for working out the states and their +longdesc weights in terms of the fundamental weights and the simple +longdesc roots. The package makes use of the author's coollist package. +containersize 3120 +containerchecksum 8f8d568cc708e62ae1217188acf3deef05d7bbacf1da04f38c1f5b08d4b2bd0ee465021c923ed314ed284dd2234dce5079b7918c12d3bab72ad5f91749bdfe4c +doccontainersize 127664 +doccontainerchecksum fde82bf8b97840014737734fb57eec7c37b34ca0d5eeb1a66c27dab16d4a5f1c4a7f7c10fb9c8bb98f3ef56a15645da0ab66cdcb658f69ea32eb84625b25023a +docfiles size=38 + RELOC/doc/latex/dyntree/README details="Readme" + RELOC/doc/latex/dyntree/dyntree.pdf details="Package documentation" +srccontainersize 8784 +srccontainerchecksum 57d76ba3ff2e85a18fad69126a87b02fecf6f994de63af530831d63a0405abbcfad5ff7b33ff0f13c257b85bea73788e72a4347337c7355a25b85c5e762c25dd +srcfiles size=12 + RELOC/source/latex/dyntree/dyntree.dtx + RELOC/source/latex/dyntree/dyntree.ins +runfiles size=3 + RELOC/tex/latex/dyntree/dyntree.sty +catalogue-ctan /macros/latex/contrib/dyntree +catalogue-license lgpl +catalogue-topics tree maths +catalogue-version 1.0 + +name e-french +category Package +revision 52027 +shortdesc Comprehensive LaTeX support for French-language typesetting +relocated 1 +longdesc E-french is a distribution that keeps alive the work of Bernard +longdesc Gaulle (now deceased), under a free licence. It replaces the +longdesc old "full" frenchpro (the "professional" distribution) and the +longdesc light-weight frenchle packages. +containersize 50968 +containerchecksum ed14a41b05d47117fc354bb5a1782338ed91ebbd6071af96f4bb94fcefed31048ef3ed1301686dd720d7f1c9ee59c518adbf83c6c7de2c35e3d50cdd65c0b0bf +doccontainersize 2744844 +doccontainerchecksum d76ba6c016c8a48a06ed126d0d011e1336203cc8182f744de9d238e723019156f369574b7090cfcc943829ef058b77ec536ab6bb7c054e5e2587dc92998258d0 +docfiles size=1225 + RELOC/doc/generic/e-french/Probl_Msg.pdf + RELOC/doc/generic/e-french/Probl_Msg.txt + RELOC/doc/generic/e-french/README details="Readme" language="en" + RELOC/doc/generic/e-french/README-TDS + RELOC/doc/generic/e-french/bin/linux/makefrindex + RELOC/doc/generic/e-french/bin/windows/makefrindex.cmd + RELOC/doc/generic/e-french/changements.html + RELOC/doc/generic/e-french/histoire.html + RELOC/doc/generic/e-french/install/MiniDocEf_Lnx.pdf + RELOC/doc/generic/e-french/install/MiniDocEf_Win.pdf + RELOC/doc/generic/e-french/install/MiniDocMkfr.pdf + RELOC/doc/generic/e-french/install/MiniDoc_Unx.txt + RELOC/doc/generic/e-french/install/MiniDoc_Win.txt + RELOC/doc/generic/e-french/install/Probl_Msg.pdf + RELOC/doc/generic/e-french/install/Probl_Msg.txt + RELOC/doc/generic/e-french/licence.html + RELOC/doc/generic/e-french/lisez-moi.html + RELOC/doc/generic/e-french/manuels/FrenchLe.html + RELOC/doc/generic/e-french/manuels/FrenchPro.html + RELOC/doc/generic/e-french/manuels/efrench.pdf + RELOC/doc/generic/e-french/manuels/faq.pdf details="Foire aux Questions" language="fr" + RELOC/doc/generic/e-french/manuels/french_doc.pdf details="Package documentation (full version)" + RELOC/doc/generic/e-french/manuels/frenchle.pdf details="Package documentation (lightweight version)" + RELOC/doc/generic/e-french/src/MiniDocEf_Lnx.tex + RELOC/doc/generic/e-french/src/MiniDocEf_Win.tex + RELOC/doc/generic/e-french/src/Probl_Msg.tex + RELOC/doc/generic/e-french/src/efrench.tex + RELOC/doc/generic/e-french/src/faq.tex + RELOC/doc/generic/e-french/src/frabbrevlat9.tex + RELOC/doc/generic/e-french/src/frabbrevutf8.tex + RELOC/doc/generic/e-french/src/french_doc.tex + RELOC/doc/generic/e-french/src/french_doc.txt + RELOC/doc/generic/e-french/src/frenchle.tex + RELOC/doc/generic/e-french/src/myfroptn.sty + RELOC/doc/generic/e-french/src/mymaj.sty + RELOC/doc/generic/e-french/test/README details="Readme" language="en" + RELOC/doc/generic/e-french/test/XeLaTeX/frenT1xe.pdf + RELOC/doc/generic/e-french/test/XeLaTeX/frenT1xe.tex + RELOC/doc/generic/e-french/test/XeLaTeX/french.tst + RELOC/doc/generic/e-french/test/XeLaTeX/lisez-moi.txt + RELOC/doc/generic/e-french/test/french.tst + RELOC/doc/generic/e-french/test/frenchab.tex + RELOC/doc/generic/e-french/test/frenchla.tex + RELOC/doc/generic/e-french/test/frenchlb.tex + RELOC/doc/generic/e-french/test/frenchll.tex + RELOC/doc/generic/e-french/test/frenchln.tex + RELOC/doc/generic/e-french/test/frenchlr.tex + RELOC/doc/generic/e-french/test/frenchrf.pdf + RELOC/doc/generic/e-french/test/fxench.tst + RELOC/doc/generic/e-french/test/mya4.sty + RELOC/doc/generic/e-french/test/myfigure.eps + RELOC/doc/generic/e-french/test/mygglo.ist + RELOC/doc/generic/e-french/test/mylist.sty + RELOC/doc/generic/e-french/test/mysmall.sty + RELOC/doc/generic/e-french/test/tests-formats/EC.def + RELOC/doc/generic/e-french/test/tests-formats/README details="Readme" language="en" + RELOC/doc/generic/e-french/test/tests-formats/TSIv5n4.tex + RELOC/doc/generic/e-french/test/tests-formats/TSIv5n48.tex + RELOC/doc/generic/e-french/test/tests-formats/gencoup.tex + RELOC/doc/generic/e-french/test/tests-formats/lgencoup.tex + RELOC/doc/generic/e-french/test/tests-formats/ltesthyp + RELOC/doc/generic/e-french/test/tests-formats/ltstcoup.tex + RELOC/doc/generic/e-french/test/tests-formats/testhyp + RELOC/doc/generic/e-french/test/tests-formats/tstcoup.tex + RELOC/doc/generic/e-french/test/texxetlb.tex +runfiles size=103 + RELOC/makeindex/e-french/fridx1.ist + RELOC/makeindex/e-french/fridx2.ist + RELOC/makeindex/e-french/fridx3.ist + RELOC/makeindex/e-french/fridx4.ist + RELOC/tex/generic/e-french/deutschx.mlp + RELOC/tex/generic/e-french/efrench.sty + RELOC/tex/generic/e-french/efrenchu.tex + RELOC/tex/generic/e-french/epreuve.sty + RELOC/tex/generic/e-french/fenglish.sty + RELOC/tex/generic/e-french/frabbrev-u8.tex + RELOC/tex/generic/e-french/frabbrev.tex + RELOC/tex/generic/e-french/francais.mlp + RELOC/tex/generic/e-french/french-msg.tex + RELOC/tex/generic/e-french/french.all + RELOC/tex/generic/e-french/french.cfg + RELOC/tex/generic/e-french/french.chk + RELOC/tex/generic/e-french/french.cmd + RELOC/tex/generic/e-french/french.dmy + RELOC/tex/generic/e-french/french.sty + RELOC/tex/generic/e-french/french_french-msg.tex + RELOC/tex/generic/e-french/frenchle.cfg + RELOC/tex/generic/e-french/frenchle.sty + RELOC/tex/generic/e-french/frenchpro.sty + RELOC/tex/generic/e-french/frhyphex.tex + RELOC/tex/generic/e-french/fxabbrev.tex + RELOC/tex/generic/e-french/german_french-msg.tex + RELOC/tex/generic/e-french/internat.mlp + RELOC/tex/generic/e-french/mlp-01.sty + RELOC/tex/generic/e-french/mlp-33.sty + RELOC/tex/generic/e-french/mlp-49.sty + RELOC/tex/generic/e-french/mlp-49n.sty + RELOC/tex/generic/e-french/mlp-opts.sty + RELOC/tex/generic/e-french/mlp.sty + RELOC/tex/generic/e-french/ndeutsch.mlp + RELOC/tex/generic/e-french/noesterr.mlp + RELOC/tex/generic/e-french/oesterre.mlp + RELOC/tex/generic/e-french/pmfrench.sty +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-license lppl1.3 +catalogue-topics french +catalogue-version 6.11 + +name ean +category Package +revision 20851 +shortdesc Macros for making EAN barcodes +relocated 1 +longdesc Provides EAN-8 and EAN-13 forms. The package needs the ocr-b +longdesc fonts; note that the fonts are not available under a free +longdesc licence, as the macros are. +containersize 3148 +containerchecksum 8a44b134d612ad4908a3ec025b0934feb56a8a8d7c7dce91f7ff152fda91c99c0c557ecacf7b22d8e9abf8e99d28b09b21abc8658e598baf37bfbbaa885b86d4 +doccontainersize 948 +doccontainerchecksum 35c7d054236569b03082af07412f00dd08d760547433ec8da1876a83546c7432c4cdbffb617ff34b4e48b86873d699d41749bd838e12ffe32980b3d6e92865b0 +docfiles size=2 + RELOC/doc/generic/ean/README details="Readme" + RELOC/doc/generic/ean/eantest.tex +runfiles size=4 + RELOC/tex/generic/ean/ean13.tex + RELOC/tex/generic/ean/ean8.tex +catalogue-also barcodes code128 +catalogue-ctan /macros/generic/ean +catalogue-license gpl +catalogue-topics barcode + +name ean13isbn +category Package +revision 57514 +shortdesc Print EAN13 for ISBN +relocated 1 +longdesc The package provides the means to typeset ISBN codes with +longdesc EAN-13; it uses the (generic) package ean13.tex to typeset the +longdesc actual barcode. +containersize 1828 +containerchecksum 84f73871c0ddf2d6d2ae0d23f6d27c1cc985ac1c42345ad339d55762ac9e109f8d33dbf27105ae470ec2d2f127918c3fa0a3c49d9fbff8a7c67b3d20f36d2e8d +doccontainersize 321608 +doccontainerchecksum e7c474d1d488d95786d5f061412d051c9306cedeb86f6e31915d44e6fb71f09303b8f0e782be393e56dc6887730560825ef29d57af5a20f7bf02d96f77eb554b +docfiles size=85 + RELOC/doc/latex/ean13isbn/License.txt + RELOC/doc/latex/ean13isbn/README details="Readme" + RELOC/doc/latex/ean13isbn/ean13isbn.pdf details="Package documentation" + RELOC/doc/latex/ean13isbn/ean13isbn.tex +runfiles size=1 + RELOC/tex/latex/ean13isbn/ean13isbn.sty +catalogue-ctan /macros/latex/contrib/ean13isbn +catalogue-license lppl1.3 +catalogue-topics barcode std-conform + +name easy +category Package +revision 19440 +shortdesc A collection of easy-to-use macros +relocated 1 +longdesc The collection comprises: easybib, support for customising +longdesc bibliographies; easybmat, support for composing block matrices; +longdesc easyeqn, support for various aspects of equations; easymat, +longdesc support for composing matrices; easytable, support for writing +longdesc tables; easyvector, a C-like syntax for writing vectors. +containersize 12416 +containerchecksum fbc84351fe02c560ffa1c6b1713e762810123e7abee47bb31899d4baed353928350422e7d237abca758753ad306f927466919ce6b160a3820d1d5101c0b71ee9 +doccontainersize 4540 +doccontainerchecksum 27bfb9792f0c8261cd2de9bc95dc4023c69a37e12037855e31c606f0dc18d47e45f8299d385fa1dfcabaf6df298bb529e9da41f6d9d36f38f8d7fb5ef7930886 +docfiles size=11 + RELOC/doc/latex/easy/README details="Readme" + RELOC/doc/latex/easy/README.TEXLIVE + RELOC/doc/latex/easy/for-latex2html/easybib.perl + RELOC/doc/latex/easy/for-latex2html/easybmat.perl + RELOC/doc/latex/easy/for-latex2html/easyeqn.perl + RELOC/doc/latex/easy/for-latex2html/easymat.perl + RELOC/doc/latex/easy/for-latex2html/easytable.perl + RELOC/doc/latex/easy/for-latex2html/easyvector.perl + RELOC/doc/latex/easy/mydoc.sty +runfiles size=20 + RELOC/tex/latex/easy/easy.sty + RELOC/tex/latex/easy/easybib.sty + RELOC/tex/latex/easy/easybmat.sty + RELOC/tex/latex/easy/easyeqn.sty + RELOC/tex/latex/easy/easymat.sty + RELOC/tex/latex/easy/easytable.sty + RELOC/tex/latex/easy/easyvector.sty +catalogue-ctan /macros/latex/contrib/easy +catalogue-license lppl +catalogue-topics collection +catalogue-version 0.99 + +name easy-todo +category Package +revision 32677 +shortdesc To-do notes in a document +relocated 1 +longdesc The package provides to-do notes throughout a document, and +longdesc will provide an index of things to do. +containersize 1352 +containerchecksum 88b496c1f4f56d26ac2fcc6d82e28d71bf11418368d82d3dcb193f8299672bf41d6c15938f3f6af5ac28141f2a52d132844fd178ebb9694de7f7a22fe8f13eaa +doccontainersize 140064 +doccontainerchecksum b2c49273445084f94083ed11f43492ed8ca32582fd9ffe9d12ccb7afe316b06b1924a507c5a12ab5880cae40ef4ee196c6d3e5d05f916356fdc026acc0a9acf1 +docfiles size=38 + RELOC/doc/latex/easy-todo/LICENSE + RELOC/doc/latex/easy-todo/README details="Readme" + RELOC/doc/latex/easy-todo/easy-todo.pdf details="Package documentation" + RELOC/doc/latex/easy-todo/easy-todo.tex +runfiles size=1 + RELOC/tex/latex/easy-todo/easy-todo.sty +catalogue-ctan /macros/latex/contrib/easy-todo +catalogue-license apache2 +catalogue-topics notes editorial + +name easybook +category Package +revision 59076 +shortdesc Typeset Chinese books or notes +relocated 1 +longdesc Easybook is a minimalist style template based on the ctexbook +longdesc book document class. +containersize 12744 +containerchecksum 647118c8be359aea6456753aaef286482291b246a7fc0585c25e172f8da17a6257aec5e346e933348ac1b598bdf02725d1eaaf73cc92b65d65d957522a515634 +doccontainersize 478208 +doccontainerchecksum 61a972ce2d217bbb47879e466561c33691544ff3ca5db337a45491d1e61610e3975b0643c1a8532d0eaa1270025b51c823053b976be614bcadc620eda0dd9017 +docfiles size=118 + RELOC/doc/latex/easybook/README.md details="Readme" + RELOC/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh" +srccontainersize 27668 +srccontainerchecksum 9e358bfb1b00a4fd94f210ad30771b6af8d260e46cdae082816c834f41c16b878d88002ae1b35d88bb8cb354fa478314d3e9a3bd5dc0cc7047c6eabfac1e1a07 +srcfiles size=29 + RELOC/source/latex/easybook/easybook.dtx + RELOC/source/latex/easybook/easybook.ins +runfiles size=15 + RELOC/tex/latex/easybook/easybook.cls +catalogue-also ctex +catalogue-contact-repository https://gitee.com/texl3/easybook +catalogue-ctan /macros/latex/contrib/easybook +catalogue-license cc-by-4 +catalogue-topics book-pub class chinese expl3 +catalogue-version 1.25a + +name easyfig +category Package +revision 56291 +shortdesc Simplifying the use of common figures +relocated 1 +longdesc The package provides the command \Figure[<key=value>...]{<image +longdesc filename>} to simplify the business of including an image as +longdesc figure in the most common form (centred and with caption and +longdesc label). Caption and label are set using the caption and label +longdesc keys; the label fig:<image filename> is used if none is given. +longdesc If the here key is given, the figure is not 'floated', and the +longdesc user is responsible for placement. The package uses the +longdesc author's package adjustbox to centre an image and to simplify +longdesc further modifications. As adjustbox now provides keys to turn +longdesc images or other material into floats or non-floats, including +longdesc captions, easyfig has become quite redundant. +containersize 1936 +containerchecksum aebeb8d9baa7df84fb637351a13ac7f69697fc11c17b0eb5bfb9981195df584e74665a8bfa8062441c5eaf690c2fab446e1e0bad61175ebdf4dad58c531cfda2 +doccontainersize 175976 +doccontainerchecksum b1c91bb35bfa67edd2d2abaded6e6b8756d75c70d797c7bfb690ba802c3be6e23be71f7410a358cc262cd807f88b45d6395386d108ecf5f7ca4189a266296f34 +docfiles size=44 + RELOC/doc/latex/easyfig/README details="Readme" + RELOC/doc/latex/easyfig/easyfig.pdf details="Package documentation" +srccontainersize 5224 +srccontainerchecksum 4ca04322f0c10a33acc2f4ccd6a1127aaca1a27b4a4b5b1897a0d589cca73118c0e05d367e284e3a2922b2128a221be8ddbb8a24af1eaedac508ef6ace39a540 +srcfiles size=5 + RELOC/source/latex/easyfig/easyfig.dtx + RELOC/source/latex/easyfig/easyfig.ins +runfiles size=2 + RELOC/tex/latex/easyfig/easyfig.sty +catalogue-contact-bugs https://sourceforge.net/p/easyfig/tickets/ +catalogue-contact-home https://sourceforge.net/p/easyfig/ +catalogue-contact-repository https://sourceforge.net/p/easyfig/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/easyfig +catalogue-license lppl1.3 +catalogue-topics float graphics-use +catalogue-version 1.2a + +name easyfloats +category Package +revision 57204 +shortdesc An easier interface to insert figures, tables and other objects in LaTeX +relocated 1 +longdesc In standard LaTeX inserting objects like figures or tables +longdesc requires too much knowledge for beginners and too much typing +longdesc effort and hardcoding for people like me. This package aims to +longdesc make insertion of figures and tables easier for both beginners +longdesc and experts. Despite the term floats in it's name it also +longdesc allows to disable floating of such objects. +depend caption +depend environ +depend etoolbox +depend float +depend pgf +containersize 8860 +containerchecksum 2d02a55fc3d50e5fb79ebe8188300db47aaecb42089843033c569ee0508a38f81e9409d872535e1f7fe3b13a067bdabbf8249073b803c8d232d08aa1d5520d48 +doccontainersize 587724 +doccontainerchecksum d6e96d7af908e83b67b77f0432e6ffcdcc55b64bc63ac360e42291f16adec4ab6655a423f5fc8f31180071afc5645f47b7ecb2c1c80af719b6cb0cc6e77948da +docfiles size=196 + RELOC/doc/latex/easyfloats/DEPENDS.txt + RELOC/doc/latex/easyfloats/README.md + RELOC/doc/latex/easyfloats/content/bug-reports-and-contributions.tex + RELOC/doc/latex/easyfloats/content/documentation.tex + RELOC/doc/latex/easyfloats/content/examples.tex + RELOC/doc/latex/easyfloats/content/installation.tex + RELOC/doc/latex/easyfloats/content/license.tex + RELOC/doc/latex/easyfloats/content/motivation.tex + RELOC/doc/latex/easyfloats/content/names.tex + RELOC/doc/latex/easyfloats/content/other-packages.tex + RELOC/doc/latex/easyfloats/content/titlepage.tex + RELOC/doc/latex/easyfloats/content/used-packages.tex + RELOC/doc/latex/easyfloats/easyfloats-file-list.txt + RELOC/doc/latex/easyfloats/easyfloats.bib + RELOC/doc/latex/easyfloats/easyfloats.pdf details="Package documentation" + RELOC/doc/latex/easyfloats/easyfloats.tex + RELOC/doc/latex/easyfloats/lexer/latex_atletter.py + RELOC/doc/latex/easyfloats/links.tex + RELOC/doc/latex/easyfloats/preamble/bibliography.tex + RELOC/doc/latex/easyfloats/preamble/description-links.tex + RELOC/doc/latex/easyfloats/preamble/examplecode.tex + RELOC/doc/latex/easyfloats/preamble/keydoc.tex + RELOC/doc/latex/easyfloats/preamble/link.tex + RELOC/doc/latex/easyfloats/preamble/macros.tex + RELOC/doc/latex/easyfloats/preamble/markdown.tex + RELOC/doc/latex/easyfloats/preamble/pdfstring.tex + RELOC/doc/latex/easyfloats/undescribed-keywords.tex +srccontainersize 13924 +srccontainerchecksum b21681d30b8963127d603bf81b140851b5e8ea17b63d5979bc05bcfa68efd67460b9f0d0419a69c44606a4d569f5840b3c8d6f0ce7b0cf18d86c1fa104776b5a +srcfiles size=16 + RELOC/source/latex/easyfloats/easyfloats.dtx + RELOC/source/latex/easyfloats/easyfloats.ins +runfiles size=11 + RELOC/tex/latex/easyfloats/easyfloats.sty +catalogue-contact-bugs https://gitlab.com/erzo/latex-easyfloats/-/issues +catalogue-contact-repository https://gitlab.com/erzo/latex-easyfloats +catalogue-ctan /macros/latex/contrib/easyfloats +catalogue-license lppl1.3 +catalogue-topics float table +catalogue-version 1.0.0 + +name easyformat +category Package +revision 44543 +shortdesc Easily add boldface, italics and smallcaps +relocated 1 +longdesc This package allows the use of underscores and circumflexes to +longdesc begin resp. end italic, bold or SMALLCAPS formatting, as an +longdesc alternative to the standard LaTeX \textit{...}, \textbf{...} +longdesc and/or \textsc{...}. The meaning of underscore and circumflex +longdesc in mathmode remain the same. +containersize 2432 +containerchecksum f952227a7b0e579d2bf432b3a72e80a45e8adc22ddd9e7af380de54c12f04acf6c4a88dde5a8e7027d11fb820448fdbcc6a343500ae493fa20341634fc64aed5 +doccontainersize 49816 +doccontainerchecksum 99b5f56c6004b72bfc7289905d2808b5e3c743449896e2af88a7b5c23bae3c62aaf2da9bee43192c662be28372bd856dec1b78a56626d5b1eb91b5e21a759356 +docfiles size=16 + RELOC/doc/latex/easyformat/README details="Readme" + RELOC/doc/latex/easyformat/easyformat.pdf details="Package documentation" + RELOC/doc/latex/easyformat/easyformat.tex +runfiles size=2 + RELOC/tex/latex/easyformat/easyformat.sty +catalogue-contact-bugs https://github.com/ElecProg/easyformat/issues +catalogue-contact-repository https://github.com/ElecProg/easyformat +catalogue-ctan /macros/latex/contrib/easyformat +catalogue-license gpl3+ +catalogue-topics markup +catalogue-version 1.4.0 + +name easylist +category Package +revision 32661 +shortdesc Lists using a single active character +relocated 1 +longdesc This package allows you to create lists of numbered items (as +longdesc in Wittgenstein's 'Tractatus') with a single active character +longdesc as the only command. A variety of parameters are available to +longdesc configure the appearance of the list; lists may be nested +longdesc (effectively to unlimited depth). +containersize 5868 +containerchecksum b1ddb6242b9ad2e40785602f942d4381a5d72a7d35784bbc2a1732ead1fbd9d730b580226452e9f56fda873b174c56f9b433f1193e0e3424efba4821f7b714ad +doccontainersize 607196 +doccontainerchecksum 518258b7d24763477376657e128ef3504d2c8e0f71187edf9edd34825d567f9cdcdb09d61a37d99655959d7c76edfbe550bd08ebd7760735e46fff33bddfbf0a +docfiles size=163 + RELOC/doc/latex/easylist/README details="Bundle readme" + RELOC/doc/latex/easylist/easylist-doc.pdf details="Package documentation" + RELOC/doc/latex/easylist/easylist-doc.tex +runfiles size=8 + RELOC/tex/latex/easylist/easylist.sty +catalogue-contact-home http://paulisambert.free.fr/ +catalogue-ctan /macros/latex/contrib/easylist +catalogue-license lppl +catalogue-topics list +catalogue-version 1.3 + +name easyreview +category Package +revision 38352 +shortdesc Package to provide a way to review (or perform editorial process) in LaTeX +relocated 1 +longdesc The easyReview package provides a way to review (or perform +longdesc editorial process) in LaTeX. You can use the provided commands +longdesc to claim attention in different ways to part of the text, or +longdesc even to indicate that a text was added, needs to be removed, +longdesc needs to be replaced and add comments to the text. +containersize 1468 +containerchecksum 4efa69b2e6280333a89022f93a95c8af4d22cc9b82c4e8692291470af83696e7ed524c77cfe9d9c397c4136c0ebd8399a8ca4ab47d42b84da35bb79189ff1b6f +doccontainersize 330600 +doccontainerchecksum 4f71891df0b1dfbf32be06a427f34e5c45f73543b3acb9117487d2bffa46f5b61b74f795249cf3d806705beab710c5a7934a59a8e215c87678e778db517a0832 +docfiles size=86 + RELOC/doc/latex/easyreview/README.txt details="readme" + RELOC/doc/latex/easyreview/doc/easyReview.pdf details="Package documentation" + RELOC/doc/latex/easyreview/doc/easyReview.tex +srccontainersize 2472 +srccontainerchecksum 8e4375d0711a1fd8ffb3c43a53b62e5e9b84ea90217c21a7155e514a4a42b8b34c36a0f0a839766d7e9b4eee05a6cb36ffd1da98f1c9f756d67fc8ba0acd4807 +srcfiles size=3 + RELOC/source/latex/easyreview/easyReview.dtx + RELOC/source/latex/easyreview/easyReview.ins +runfiles size=1 + RELOC/tex/latex/easyreview/easyReview.sty +catalogue-contact-repository https://github.com/jmamatos/easyReview +catalogue-ctan /macros/latex/contrib/easyreview +catalogue-license lppl +catalogue-topics notes editorial +catalogue-version 1.0 + +name ebezier +category Package +revision 15878 +shortdesc Device independent picture environment enhancement +relocated 1 +longdesc Ebezier is a device independent extension for the standard +longdesc picture environment. Linear, quadratic, and cubic bezier curves +longdesc are supplied in connection with higher level circle drawing +longdesc commands. Additionally some macros for the calculation of curve +longdesc lenghts are part of this package. +containersize 4060 +containerchecksum ccd80579b8c7e7e3500ad644f8a418bbd48ad1f2e1cb2aaa82836477553332b43092bb760c01cd7412393ee5b8bf23c055361f111467c71bd7061459781557ac +doccontainersize 288216 +doccontainerchecksum b81d28abf5c8b4a3dbed9219e6519e23fa5b94428baa8aef0ff32dd4893b24524e49cbb8ae08327a7ee59eba93cb0fa2950883d22296451c1f7949225f42b1f1 +docfiles size=82 + RELOC/doc/latex/ebezier/ebezier.pdf details="Package documentation" +srccontainersize 18192 +srccontainerchecksum ee742d7061a7891ad2b9cebabe827a408750f00ce2012bee8ae787bfd7b6d7ce8e968614d3d3f9eee72072560d47d871fc0022bac8ca8231643f85adf31218db +srcfiles size=18 + RELOC/source/latex/ebezier/ebezier.dtx + RELOC/source/latex/ebezier/ebezier.ins +runfiles size=5 + RELOC/tex/latex/ebezier/ebezier.sty +catalogue-also pst-bezier +catalogue-ctan /macros/latex/contrib/ebezier +catalogue-license lppl +catalogue-topics graphics-curve graphics-in-tex +catalogue-version 4 + +name ebgaramond +category Package +revision 54721 +shortdesc LaTeX support for EBGaramond fonts +relocated 1 +longdesc EB Garamond is a revival by Georg Duffner of the 16th century +longdesc fonts designed by Claude Garamond. The LaTeX support package +longdesc works for (pdf)LaTeX, XeLaTeX and LuaLaTeX users; configuration +longdesc files for use with microtype are provided. +execute addMap EBGaramond.map +containersize 11484484 +containerchecksum aa8717933733ddfa456b9aa7dcc6648b6150b0facd4b296c44e9b718e958ab59de887bfc39a2aff9cab55190a999708ec3f4600bd3b900f57ee76a420cd2495e +doccontainersize 915056 +doccontainerchecksum 6cac4eb927c4f302040591ff00d6333334297debd8f609a7ae5408991d69038a0440f8fc660a9d739c3abdf61fa5ada2eb1013180940b31f4beec628c231c770 +docfiles size=241 + RELOC/doc/fonts/ebgaramond/AUTHORS.txt + RELOC/doc/fonts/ebgaramond/CONTRIBUTORS.txt + RELOC/doc/fonts/ebgaramond/EBGaramond-Initials-Glyphs.pdf + RELOC/doc/fonts/ebgaramond/EBGaramond-Regular-Glyphs.pdf + RELOC/doc/fonts/ebgaramond/OFL.txt + RELOC/doc/fonts/ebgaramond/README details="Readme" + RELOC/doc/fonts/ebgaramond/ebgaramond-samples.pdf details="Font samples" + RELOC/doc/fonts/ebgaramond/ebgaramond-samples.tex +runfiles size=5962 + RELOC/fonts/enc/dvips/ebgaramond/ebgm_2hp5cx.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_2ybfsp.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_34tkje.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_3veehr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_3zuots.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_4ljeza.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_4v7kvs.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_524p5k.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_535mcm.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_57ulwi.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_5cvcse.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_5xwr64.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_5ysuwq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_67ivnh.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_6qtp6p.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_7tc6ve.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_7zgzer.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_a23bap.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_a37mnv.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_a56nal.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ancics.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ao6kf7.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_bevor6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_bisgyq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_bj5npy.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_bszlvl.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_byuyni.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_c6t5bp.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_chpilv.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_cqx43s.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_d2h6lj.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_doset5.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_egoty6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_epwp2l.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_fbpsnn.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_fc2mbn.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_fc5dte.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_fhs5ay.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_fl2mea.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_g63n4u.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_gaaohp.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_gf4ecr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_gfppum.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_gspomo.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_h2c7fw.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_h5djnb.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_hfyizy.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_hrbra6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_i3ibnm.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ipm435.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_j2crie.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_j4bgam.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_k24cav.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_k5z2jz.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_k7jns3.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_kfeykp.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_lbrscz.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ld6df2.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ldtcgl.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_liamow.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ljow5q.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_lmhdpa.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_lybnup.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ndsebz.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_nhfy4v.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_oahxim.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_oge4ze.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_oskdwa.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_pdqo3a.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_puit2n.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_qhp2au.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_qip76a.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_qwnohr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_rdmgdp.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_rtavnu.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_s7tpqt.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_sqqqn7.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_t3ctnr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_t6g5sq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_tcdnmr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_tsrvmb.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_u7qtot.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_utfkrl.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_vqv3w3.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_w7jvgc.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_xgcnbw.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_xhqcff.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_xoskhe.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ybjcp2.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_yddfsn.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_yjkoc2.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_yqpahr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_z6ekgm.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_zbngqq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_zcffwk.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_zor4nh.enc + RELOC/fonts/map/dvips/ebgaramond/EBGaramond.map + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Bold.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-BoldItalic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-ExtraBold.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Initials.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Italic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Medium.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-MediumItalic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Regular.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-SemiBold.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-SemiBoldItalic.otf + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ts1.tfm + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Bold.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-BoldItalic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-ExtraBold.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Italic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Medium.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-MediumItalic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Regular.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-SemiBold.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-SemiBoldItalic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramondInitials.pfb + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-lgr.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-ts1.vf + RELOC/tex/latex/ebgaramond/LGREBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/ebgaramond.sty +catalogue-ctan /fonts/ebgaramond +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-t1enc font-serif font-otf font-type1 + +name ebgaramond-maths +category Package +revision 52168 +shortdesc LaTeX support for EBGaramond fonts in mathematics +relocated 1 +longdesc This package provides some LaTeX support for the use of +longdesc EBGaramond12 in mathematics. It is based on, and requires, +longdesc ebgaramond. The package was created in response to a question +longdesc at TeX-stackexchange. and tested in the form of an answer in +longdesc the same forum. +execute addMap EBGaramond-Maths.map +containersize 3456 +containerchecksum 5d65f676daee62f96875def0faf6d1fa217143046768985956372473b4cd3c6c00ca650cdedcdf677d6ae6a03c65743d30df6d32c36cc8366d8a1a9961bc11d3 +doccontainersize 372980 +doccontainerchecksum d2207e0f6535be6ed1a53fc15717a60fab0d473da4f307cfc70c7271fbd93e7f6cbd92d1c0f0738da6d1b607832cbed95e5c87edd53cc5423f35f287289b4573 +docfiles size=95 + RELOC/doc/fonts/ebgaramond-maths/README details="Readme" + RELOC/doc/fonts/ebgaramond-maths/ebgaramond-maths.pdf details="Package documentation" + RELOC/doc/fonts/ebgaramond-maths/ebgaramond-maths.tex + RELOC/doc/fonts/ebgaramond-maths/manifest.txt +runfiles size=5 + RELOC/fonts/enc/dvips/ebgaramond-maths/a_w5zv5t.enc + RELOC/fonts/map/dvips/ebgaramond-maths/EBGaramond-Maths.map + RELOC/fonts/tfm/public/ebgaramond-maths/EBGaramond-Italic--oml-ebgaramond.tfm + RELOC/tex/latex/ebgaramond-maths/OMLEBGaramond-Maths.fd + RELOC/tex/latex/ebgaramond-maths/ebgaramond-maths.sty +catalogue-also ebgaramond +catalogue-ctan /fonts/ebgaramond-maths +catalogue-license lppl1.3 +catalogue-topics font font-maths font-virtual +catalogue-version 1.2 + +name ebong +category Package +revision 55475 +shortdesc Utility for writing Bengali in Rapid Roman Format +longdesc A tool (preprocessor) for writing your pRaa-ne-r ka-thaa in the +longdesc bengali langauage. It allows one to write the text in Rapid +longdesc Roman Bangla and convert it to the bangtex format by a python +longdesc program. All LaTeX markups are preserved in the target file. +depend ebong.ARCH +containersize 2596 +containerchecksum 2553e46f91021de4fc9eda99ff45f8efe9b20b0663912b4339b22247d1bf7125f9be398661fe24fa2e3fae6a220025d47b05f4680601f7b4842d1111a6128d8c +doccontainersize 50100 +doccontainerchecksum 22d20c89883c6cbb95f3fbc3da3f4c5526c9c22b15ec35828bb03a1edf068573de0b35187a893c8356b50fd59c93ce4231f02ac4f15de4071e6ced73b9e44a57 +docfiles size=27 + texmf-dist/doc/latex/ebong/ANNOUNCE.txt + texmf-dist/doc/latex/ebong/README details="Readme" + texmf-dist/doc/latex/ebong/eb.b + texmf-dist/doc/latex/ebong/eb.pdf details="Package documentation" language="bn" + texmf-dist/doc/latex/ebong/eb_tex.tex +runfiles size=2 + texmf-dist/scripts/ebong/ebong.py +catalogue-ctan /language/ebong +catalogue-license pd +catalogue-topics indic bengali + +name ebong.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ebong +containersize 340 +containerchecksum 35b79331cc060a53d4ecbbb3a2b33ec9a54d2efad164e67d11446f2f67a217c301eb217ffca0486ba4f20581d21e4de873ea8a8d2b8f87080447833076ae3cc0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ebong + +name ebong.amd64-freebsd +category Package +revision 21000 +shortdesc amd64-freebsd files of ebong +containersize 340 +containerchecksum c8e06c04bced798df28efb9f42d67e4891b3df08f5d8b8326ded92dfd1ec5ac51de8c72e5bdfc629987d1e87de1eb1698405b025c64f9229a7dcdcf9f9d69ead +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ebong + +name ebong.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ebong +containersize 340 +containerchecksum 187f199d34ea3f2f9c98665c82442016e83984260b1b6ebf9339fecfe19161b60bf57140e105230c4090b98f34ebf9a432e0ea6da0b5163b9566392103558131 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ebong + +name ebong.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ebong +containersize 340 +containerchecksum 3bb3f08766987848f819d56cfde83ee963a97b611cf0ed9e1e1f930a99b4e7c03aa73840f098d67aa3a4ae352f9f52348fa4ced4674f92756bcea22d106c5203 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ebong + +name ebong.i386-cygwin +category Package +revision 21000 +shortdesc i386-cygwin files of ebong +containersize 336 +containerchecksum 8ee75310c5eaa478a62dde84fc841587a59b4aca81effd6aab529a9651303b93da56ddb4daad4af7440398fddc85ececbe5479e7dbf1b79fdf79a0cbed034414 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ebong + +name ebong.i386-freebsd +category Package +revision 21000 +shortdesc i386-freebsd files of ebong +containersize 340 +containerchecksum f5ce9ca6e59dff0f3cc015e8ba14c51111eb21ca627bd5cd1318dd83d5344d9c55b852b2650c1664b774109c59466338143eafa7db075209168809be0b4da247 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ebong + +name ebong.i386-linux +category Package +revision 21000 +shortdesc i386-linux files of ebong +containersize 340 +containerchecksum 49e804753ab762c7d23add6ab7198f9c97ed2f09a6c94c664e21c72694a2049244882bdf19f57e5db501d9b4f25522985064e18e16185ec0830fd6eecc6835ef +binfiles arch=i386-linux size=1 + bin/i386-linux/ebong + +name ebong.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ebong +containersize 340 +containerchecksum fd028bb3c0dc585839fb7714998791d581dbd70180ded68f4ef5aa52d3f85dfc10495e2a67560ac54d4c2ef6bae87f42d8a5c4c3c978d91f5a6f56d7d2a7bde6 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ebong + +name ebong.i386-solaris +category Package +revision 21000 +shortdesc i386-solaris files of ebong +containersize 340 +containerchecksum aea3513441c7c309c583cd3ab3de62eb7b2d84d32a23cd8eb55e47e7997feabff721b68dcaaf7ef42240a4246c5811ccd6d4aa98fad795a70bb349567f20209d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ebong + +name ebong.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ebong +containersize 340 +containerchecksum 28971d725d956036a126a4e5c32ef1382afb30d90aee5e0ebfd8b59a812447930a5868d175e29d2165991fafd0147b7415f7e409a6010c31d43d3761a7451b30 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ebong + +name ebong.win32 +category Package +revision 15404 +shortdesc win32 files of ebong +containersize 680 +containerchecksum 5765870dc13145465869f91f89664b728ad48f8c55c0cc8aad0c3c35423471550f51d381da344fd729688b3c85e986f97df06bcd5e5bd4506eeeb45dac23efee +binfiles arch=win32 size=1 + bin/win32/ebong.exe + +name ebong.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ebong +containersize 340 +containerchecksum ad685da0a7e202f2a944b2ef2fe58b1aff8c4eb1c6917066c8dc9e7e606442be274fb259ddbb97423bcefdd38c0d9ae0850abd7bf1b79c85f5fc6f7ab1538be6 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ebong + +name ebong.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ebong +containersize 348 +containerchecksum 1a7aec1f5a5743bb24bb1f161cba13dd9fbe877e4374b1befd992865193eb57217102f7baa4a7da3dc34ccafc4ed08f83b70a9b249d47775add1af6e6f3a9145 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ebong + +name ebong.x86_64-linux +category Package +revision 21000 +shortdesc x86_64-linux files of ebong +containersize 336 +containerchecksum 38767cc4936dd49fb22d7c8843938ab275eeb7c0c27e3a7d14a17f748bc7118f4bce5e1222ed355e09f3a2dc6cac6eb91e0371013e46c483d6ab6b98a776776c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ebong + +name ebong.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ebong +containersize 344 +containerchecksum 7ce0a443b98a8a69e3bb7506be606d3761ee187ec10803f41edd35bd1b0c36467eca9f17c365446f2493633d6ac35cca25dbe3ca40049981933539b5e329b266 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ebong + +name ebong.x86_64-solaris +category Package +revision 21000 +shortdesc x86_64-solaris files of ebong +containersize 340 +containerchecksum 0ef40dc395ede211112d15421aee4792d7230180c1f15c23496115ec2407ee25ea7481055221ed1c2c2477bc0074f37894cdbb2868bc079d4fbc0be0fec13dda +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ebong + +name ebook +category Package +revision 29466 +shortdesc Helps creating an ebook by providing an ebook class +relocated 1 +longdesc The package defines a command \ebook that defines page layout, +longdesc fonts, and font-sizes for documents to be rendered as +longdesc PDF-ebooks on small ebook-readers. The package has been tested +longdesc with Kindle e-ink and iPad mini. +containersize 1596 +containerchecksum 3345ec303d77965800fb78a1a6b0645c206534bdf84e5b5287d23fb273a720025ec770527d662a5a535e98fb6cb9a6d37d50569963ca24225af8d626ea7d4dfd +doccontainersize 824 +doccontainerchecksum 0aba8d5010ece8e6e3c155d05a87eea960d8ec1b4deb1cd7ba948b4106eb8e20d752d3032696bb98c1d23b1927317d3d53a79fdf0b62e9053245aa86ef6e79e5 +docfiles size=1 + RELOC/doc/latex/ebook/README details="Readme" +runfiles size=1 + RELOC/tex/latex/ebook/ebook.sty +catalogue-ctan /macros/latex/contrib/ebook +catalogue-license pd +catalogue-topics geometry font-use ebook + +name ebproof +category Package +revision 57544 +shortdesc Formal proofs in the style of sequent calculus +relocated 1 +longdesc This package provides commands to typeset proof trees in the +longdesc style of sequent calculus and related systems. The commands +longdesc allow for writing inferences with any number of premises and +longdesc alignment of successive formulas on an arbitrary point. Various +longdesc options allow complete control over spacing, styles of +longdesc inference rules, placement of labels, etc. The package requires +longdesc expl3 and xparse. +containersize 4220 +containerchecksum e2b130cbc7b98555ad010ab5bc5226c68f413581b3128245500ad3ba734e4291c91cc42c96ee4108a1f359fb7cb4c884dd717aedba9e594865466e6c29d13be1 +doccontainersize 496192 +doccontainerchecksum d5a1b900c73969c590921f3fea138e1ece49d9c9c4f1ccf7d3c1c877f501196a08d8099afde9913b83e653f4a8937e91878640975233f5482b6538d262a6139f +docfiles size=123 + RELOC/doc/latex/ebproof/README.md details="Readme" + RELOC/doc/latex/ebproof/ebproof.pdf details="Package documentation" +srccontainersize 13524 +srccontainerchecksum 16145b4ae4c6998533ed85df9a19abe7108ac13208f19fde0906280f68d96817df87db2db89ef77e1734e5c9ae6f2825939ce670856d6f35429cde10442907f0 +srcfiles size=15 + RELOC/source/latex/ebproof/ebproof.dtx + RELOC/source/latex/ebproof/ebproof.ins +runfiles size=5 + RELOC/tex/latex/ebproof/ebproof.sty +catalogue-also bussproofs +catalogue-contact-repository https://framagit.org/manu/ebproof +catalogue-ctan /macros/latex/contrib/ebproof +catalogue-license lppl1.3 +catalogue-topics maths proof expl3 +catalogue-version 2.1.1 + +name ebsthesis +category Package +revision 15878 +shortdesc Typesetting theses for economics +relocated 1 +longdesc The ebsthesis class and ebstools package facilitate the +longdesc production of camera-ready manuscripts in conformance with the +longdesc guidelines of Gabler Verlag and typographical rules established +longdesc by the European Business School. +containersize 6092 +containerchecksum 37df2bd7749bf91c2e2a6e27e92a9222ed9b9d499b3a9bdb63f7751008bf7a4bea20d62bd59e8672b7fbc7bf0caa1ca77ef797c42224fc4167e5212f21cafbd3 +doccontainersize 251260 +doccontainerchecksum 5c508fdf7304668a371966d1be0198d71cce4ec762aa1b5b480dc495f47dd13d88f678d8613ed266e1d8e1353811e3058c31aaa5ae9f181c34c6bcf40adf5ae9 +docfiles size=67 + RELOC/doc/latex/ebsthesis/README + RELOC/doc/latex/ebsthesis/ebsthesis.pdf details="Package documentation" +srccontainersize 7240 +srccontainerchecksum 0e35721d759fac3af82d3c627c5520ed60c36a83e50f10a717db990f2bcf5a3b22a0b28cce5f3926ec0a9859d5b08124efbe24ffe9a64f9ddd15f45f3246f596 +srcfiles size=8 + RELOC/source/latex/ebsthesis/ebsthesis.dtx + RELOC/source/latex/ebsthesis/ebsthesis.ins +runfiles size=6 + RELOC/tex/latex/ebsthesis/ebsthesis.cls +catalogue-ctan /macros/latex/contrib/ebsthesis +catalogue-license lppl +catalogue-topics dissertation class +catalogue-version 1.0 + +name ec +category Package +revision 25033 +shortdesc Computer modern fonts in T1 and TS1 encodings +relocated 1 +longdesc The EC fonts are European Computer Modern Fonts, supporting the +longdesc complete LaTeX T1 encoding defined at the 1990 TUG conference +longdesc hold at Cork/Ireland. These fonts are intended to be stable +longdesc with no changes being made to the tfm files. The set also +longdesc contains a Text Companion Symbol font, called tc, featuring +longdesc many useful characters needed in text typesetting, for example +longdesc oldstyle digits, currency symbols (including the newly created +longdesc Euro symbol), the permille sign, copyright, trade mark and +longdesc servicemark as well as a copyleft sign, and many others. Recent +longdesc releases of LaTeX2e support the EC fonts. The EC fonts +longdesc supersede the preliminary version released as the DC fonts. The +longdesc fonts are available in (traced) Adobe Type 1 format, as part of +longdesc the cm-super bundle. The other Computer Modern-style T1-encoded +longdesc Type 1 set, Latin Modern, is not actually a direct development +longdesc of the EC set, and differs from the EC in a number of +longdesc particulars. +containersize 263716 +containerchecksum a967804b42bcc11e766d5b74de28c54d167625d2b108a34bc5e49351533ddcfe3334e4a7a34966f8d159bbde6a80f84b4d216553ce03fbcfb7a4b6267574538f +doccontainersize 22856 +doccontainerchecksum bcf6617cf66af91312aea98f6c4a034f3af4ada14687414e7c3572e319fa4bd957dd25ebf557078297950d8ba8fd02229c5ad53464077feda462263b52536f29 +docfiles size=29 + RELOC/doc/fonts/ec/00bugs.txt + RELOC/doc/fonts/ec/00error.txt + RELOC/doc/fonts/ec/00files.txt + RELOC/doc/fonts/ec/00inst.txt + RELOC/doc/fonts/ec/00readme.txt details="Readme" + RELOC/doc/fonts/ec/copyrite.txt + RELOC/doc/fonts/ec/dc-chg.txt + RELOC/doc/fonts/ec/dcdoc.tex + RELOC/doc/fonts/ec/ec-chg.txt + RELOC/doc/fonts/ec/ecstdedt.tex + RELOC/doc/fonts/ec/tc-chg.txt + RELOC/doc/fonts/ec/tcstdedt.tex +runfiles size=1445 + RELOC/fonts/source/jknappen/ec/ecbi.mf + RELOC/fonts/source/jknappen/ec/ecbi0500.mf + RELOC/fonts/source/jknappen/ec/ecbi0600.mf + RELOC/fonts/source/jknappen/ec/ecbi0700.mf + RELOC/fonts/source/jknappen/ec/ecbi0800.mf + RELOC/fonts/source/jknappen/ec/ecbi0900.mf + RELOC/fonts/source/jknappen/ec/ecbi1000.mf + RELOC/fonts/source/jknappen/ec/ecbi1095.mf + RELOC/fonts/source/jknappen/ec/ecbi1200.mf + RELOC/fonts/source/jknappen/ec/ecbi1440.mf + RELOC/fonts/source/jknappen/ec/ecbi1728.mf + RELOC/fonts/source/jknappen/ec/ecbi2074.mf + RELOC/fonts/source/jknappen/ec/ecbi2488.mf + RELOC/fonts/source/jknappen/ec/ecbi2986.mf + RELOC/fonts/source/jknappen/ec/ecbi3583.mf + RELOC/fonts/source/jknappen/ec/ecbl.mf + RELOC/fonts/source/jknappen/ec/ecbl0500.mf + RELOC/fonts/source/jknappen/ec/ecbl0600.mf + RELOC/fonts/source/jknappen/ec/ecbl0700.mf + RELOC/fonts/source/jknappen/ec/ecbl0800.mf + RELOC/fonts/source/jknappen/ec/ecbl0900.mf + RELOC/fonts/source/jknappen/ec/ecbl1000.mf + RELOC/fonts/source/jknappen/ec/ecbl1095.mf + RELOC/fonts/source/jknappen/ec/ecbl1200.mf + RELOC/fonts/source/jknappen/ec/ecbl1440.mf + RELOC/fonts/source/jknappen/ec/ecbl1728.mf + RELOC/fonts/source/jknappen/ec/ecbl2074.mf + RELOC/fonts/source/jknappen/ec/ecbl2488.mf + RELOC/fonts/source/jknappen/ec/ecbl2986.mf + RELOC/fonts/source/jknappen/ec/ecbl3583.mf + RELOC/fonts/source/jknappen/ec/ecbm.mf + RELOC/fonts/source/jknappen/ec/ecbx.mf + RELOC/fonts/source/jknappen/ec/ecbx0500.mf + RELOC/fonts/source/jknappen/ec/ecbx0600.mf + RELOC/fonts/source/jknappen/ec/ecbx0700.mf + RELOC/fonts/source/jknappen/ec/ecbx0800.mf + RELOC/fonts/source/jknappen/ec/ecbx0900.mf + RELOC/fonts/source/jknappen/ec/ecbx1000.mf + RELOC/fonts/source/jknappen/ec/ecbx1095.mf + RELOC/fonts/source/jknappen/ec/ecbx1200.mf + RELOC/fonts/source/jknappen/ec/ecbx1440.mf + RELOC/fonts/source/jknappen/ec/ecbx1728.mf + RELOC/fonts/source/jknappen/ec/ecbx2074.mf + RELOC/fonts/source/jknappen/ec/ecbx2488.mf + RELOC/fonts/source/jknappen/ec/ecbx2986.mf + RELOC/fonts/source/jknappen/ec/ecbx3583.mf + RELOC/fonts/source/jknappen/ec/eccc.mf + RELOC/fonts/source/jknappen/ec/eccc0500.mf + RELOC/fonts/source/jknappen/ec/eccc0600.mf + RELOC/fonts/source/jknappen/ec/eccc0700.mf + RELOC/fonts/source/jknappen/ec/eccc0800.mf + RELOC/fonts/source/jknappen/ec/eccc0900.mf + RELOC/fonts/source/jknappen/ec/eccc1000.mf + RELOC/fonts/source/jknappen/ec/eccc1095.mf + RELOC/fonts/source/jknappen/ec/eccc1200.mf + RELOC/fonts/source/jknappen/ec/eccc1440.mf + RELOC/fonts/source/jknappen/ec/eccc1728.mf + RELOC/fonts/source/jknappen/ec/eccc2074.mf + RELOC/fonts/source/jknappen/ec/eccc2488.mf + RELOC/fonts/source/jknappen/ec/eccc2986.mf + RELOC/fonts/source/jknappen/ec/eccc3583.mf + RELOC/fonts/source/jknappen/ec/ecci.mf + RELOC/fonts/source/jknappen/ec/ecci0500.mf + RELOC/fonts/source/jknappen/ec/ecci0600.mf + RELOC/fonts/source/jknappen/ec/ecci0700.mf + RELOC/fonts/source/jknappen/ec/ecci0800.mf + RELOC/fonts/source/jknappen/ec/ecci0900.mf + RELOC/fonts/source/jknappen/ec/ecci1000.mf + RELOC/fonts/source/jknappen/ec/ecci1095.mf + RELOC/fonts/source/jknappen/ec/ecci1200.mf + RELOC/fonts/source/jknappen/ec/ecci1440.mf + RELOC/fonts/source/jknappen/ec/ecci1728.mf + RELOC/fonts/source/jknappen/ec/ecci2074.mf + RELOC/fonts/source/jknappen/ec/ecci2488.mf + RELOC/fonts/source/jknappen/ec/ecci2986.mf + RELOC/fonts/source/jknappen/ec/ecci3583.mf + RELOC/fonts/source/jknappen/ec/ecdh.mf + RELOC/fonts/source/jknappen/ec/ecdh0500.mf + RELOC/fonts/source/jknappen/ec/ecdh0600.mf + RELOC/fonts/source/jknappen/ec/ecdh0700.mf + RELOC/fonts/source/jknappen/ec/ecdh0800.mf + RELOC/fonts/source/jknappen/ec/ecdh0900.mf + RELOC/fonts/source/jknappen/ec/ecdh1000.mf + RELOC/fonts/source/jknappen/ec/ecdh1095.mf + RELOC/fonts/source/jknappen/ec/ecdh1200.mf + RELOC/fonts/source/jknappen/ec/ecdh1440.mf + RELOC/fonts/source/jknappen/ec/ecdh1728.mf + RELOC/fonts/source/jknappen/ec/ecdh2074.mf + RELOC/fonts/source/jknappen/ec/ecdh2488.mf + RELOC/fonts/source/jknappen/ec/ecdh2986.mf + RELOC/fonts/source/jknappen/ec/ecdh3583.mf + RELOC/fonts/source/jknappen/ec/ecfb.mf + RELOC/fonts/source/jknappen/ec/ecff.mf + RELOC/fonts/source/jknappen/ec/ecfi.mf + RELOC/fonts/source/jknappen/ec/ecfs.mf + RELOC/fonts/source/jknappen/ec/ecit.mf + RELOC/fonts/source/jknappen/ec/ecit0800.mf + RELOC/fonts/source/jknappen/ec/ecit0900.mf + RELOC/fonts/source/jknappen/ec/ecit1000.mf + RELOC/fonts/source/jknappen/ec/ecit1095.mf + RELOC/fonts/source/jknappen/ec/ecit1200.mf + RELOC/fonts/source/jknappen/ec/ecit1440.mf + RELOC/fonts/source/jknappen/ec/ecit1728.mf + RELOC/fonts/source/jknappen/ec/ecit2074.mf + RELOC/fonts/source/jknappen/ec/ecit2488.mf + RELOC/fonts/source/jknappen/ec/ecit2986.mf + RELOC/fonts/source/jknappen/ec/ecit3583.mf + RELOC/fonts/source/jknappen/ec/eclb8.mf + RELOC/fonts/source/jknappen/ec/ecli8.mf + RELOC/fonts/source/jknappen/ec/eclo8.mf + RELOC/fonts/source/jknappen/ec/eclq8.mf + RELOC/fonts/source/jknappen/ec/ecltt8.mf + RELOC/fonts/source/jknappen/ec/ecoc.mf + RELOC/fonts/source/jknappen/ec/ecoc0500.mf + RELOC/fonts/source/jknappen/ec/ecoc0600.mf + RELOC/fonts/source/jknappen/ec/ecoc0700.mf + RELOC/fonts/source/jknappen/ec/ecoc0800.mf + RELOC/fonts/source/jknappen/ec/ecoc0900.mf + RELOC/fonts/source/jknappen/ec/ecoc1000.mf + RELOC/fonts/source/jknappen/ec/ecoc1095.mf + RELOC/fonts/source/jknappen/ec/ecoc1200.mf + RELOC/fonts/source/jknappen/ec/ecoc1440.mf + RELOC/fonts/source/jknappen/ec/ecoc1728.mf + RELOC/fonts/source/jknappen/ec/ecoc2074.mf + RELOC/fonts/source/jknappen/ec/ecoc2488.mf + RELOC/fonts/source/jknappen/ec/ecoc2986.mf + RELOC/fonts/source/jknappen/ec/ecoc3583.mf + RELOC/fonts/source/jknappen/ec/ecqi8.mf + RELOC/fonts/source/jknappen/ec/ecrb.mf + RELOC/fonts/source/jknappen/ec/ecrb0500.mf + RELOC/fonts/source/jknappen/ec/ecrb0600.mf + RELOC/fonts/source/jknappen/ec/ecrb0700.mf + RELOC/fonts/source/jknappen/ec/ecrb0800.mf + RELOC/fonts/source/jknappen/ec/ecrb0900.mf + RELOC/fonts/source/jknappen/ec/ecrb1000.mf + RELOC/fonts/source/jknappen/ec/ecrb1095.mf + RELOC/fonts/source/jknappen/ec/ecrb1200.mf + RELOC/fonts/source/jknappen/ec/ecrb1440.mf + RELOC/fonts/source/jknappen/ec/ecrb1728.mf + RELOC/fonts/source/jknappen/ec/ecrb2074.mf + RELOC/fonts/source/jknappen/ec/ecrb2488.mf + RELOC/fonts/source/jknappen/ec/ecrb2986.mf + RELOC/fonts/source/jknappen/ec/ecrb3583.mf + RELOC/fonts/source/jknappen/ec/ecrm.mf + RELOC/fonts/source/jknappen/ec/ecrm0500.mf + RELOC/fonts/source/jknappen/ec/ecrm0600.mf + RELOC/fonts/source/jknappen/ec/ecrm0700.mf + RELOC/fonts/source/jknappen/ec/ecrm0800.mf + RELOC/fonts/source/jknappen/ec/ecrm0900.mf + RELOC/fonts/source/jknappen/ec/ecrm1000.mf + RELOC/fonts/source/jknappen/ec/ecrm1095.mf + RELOC/fonts/source/jknappen/ec/ecrm1200.mf + RELOC/fonts/source/jknappen/ec/ecrm1440.mf + RELOC/fonts/source/jknappen/ec/ecrm1728.mf + RELOC/fonts/source/jknappen/ec/ecrm2074.mf + RELOC/fonts/source/jknappen/ec/ecrm2488.mf + RELOC/fonts/source/jknappen/ec/ecrm2986.mf + RELOC/fonts/source/jknappen/ec/ecrm3583.mf + RELOC/fonts/source/jknappen/ec/ecsc.mf + RELOC/fonts/source/jknappen/ec/ecsc0500.mf + RELOC/fonts/source/jknappen/ec/ecsc0600.mf + RELOC/fonts/source/jknappen/ec/ecsc0700.mf + RELOC/fonts/source/jknappen/ec/ecsc0800.mf + RELOC/fonts/source/jknappen/ec/ecsc0900.mf + RELOC/fonts/source/jknappen/ec/ecsc1000.mf + RELOC/fonts/source/jknappen/ec/ecsc1095.mf + RELOC/fonts/source/jknappen/ec/ecsc1200.mf + RELOC/fonts/source/jknappen/ec/ecsc1440.mf + RELOC/fonts/source/jknappen/ec/ecsc1728.mf + RELOC/fonts/source/jknappen/ec/ecsc2074.mf + RELOC/fonts/source/jknappen/ec/ecsc2488.mf + RELOC/fonts/source/jknappen/ec/ecsc2986.mf + RELOC/fonts/source/jknappen/ec/ecsc3583.mf + RELOC/fonts/source/jknappen/ec/ecsi.mf + RELOC/fonts/source/jknappen/ec/ecsi0500.mf + RELOC/fonts/source/jknappen/ec/ecsi0600.mf + RELOC/fonts/source/jknappen/ec/ecsi0700.mf + RELOC/fonts/source/jknappen/ec/ecsi0800.mf + RELOC/fonts/source/jknappen/ec/ecsi0900.mf + RELOC/fonts/source/jknappen/ec/ecsi1000.mf + RELOC/fonts/source/jknappen/ec/ecsi1095.mf + RELOC/fonts/source/jknappen/ec/ecsi1200.mf + RELOC/fonts/source/jknappen/ec/ecsi1440.mf + RELOC/fonts/source/jknappen/ec/ecsi1728.mf + RELOC/fonts/source/jknappen/ec/ecsi2074.mf + RELOC/fonts/source/jknappen/ec/ecsi2488.mf + RELOC/fonts/source/jknappen/ec/ecsi2986.mf + RELOC/fonts/source/jknappen/ec/ecsi3583.mf + RELOC/fonts/source/jknappen/ec/ecsl.mf + RELOC/fonts/source/jknappen/ec/ecsl0500.mf + RELOC/fonts/source/jknappen/ec/ecsl0600.mf + RELOC/fonts/source/jknappen/ec/ecsl0700.mf + RELOC/fonts/source/jknappen/ec/ecsl0800.mf + RELOC/fonts/source/jknappen/ec/ecsl0900.mf + RELOC/fonts/source/jknappen/ec/ecsl1000.mf + RELOC/fonts/source/jknappen/ec/ecsl1095.mf + RELOC/fonts/source/jknappen/ec/ecsl1200.mf + RELOC/fonts/source/jknappen/ec/ecsl1440.mf + RELOC/fonts/source/jknappen/ec/ecsl1728.mf + RELOC/fonts/source/jknappen/ec/ecsl2074.mf + RELOC/fonts/source/jknappen/ec/ecsl2488.mf + RELOC/fonts/source/jknappen/ec/ecsl2986.mf + RELOC/fonts/source/jknappen/ec/ecsl3583.mf + RELOC/fonts/source/jknappen/ec/ecso.mf + RELOC/fonts/source/jknappen/ec/ecso0500.mf + RELOC/fonts/source/jknappen/ec/ecso0600.mf + RELOC/fonts/source/jknappen/ec/ecso0700.mf + RELOC/fonts/source/jknappen/ec/ecso0800.mf + RELOC/fonts/source/jknappen/ec/ecso0900.mf + RELOC/fonts/source/jknappen/ec/ecso1000.mf + RELOC/fonts/source/jknappen/ec/ecso1095.mf + RELOC/fonts/source/jknappen/ec/ecso1200.mf + RELOC/fonts/source/jknappen/ec/ecso1440.mf + RELOC/fonts/source/jknappen/ec/ecso1728.mf + RELOC/fonts/source/jknappen/ec/ecso2074.mf + RELOC/fonts/source/jknappen/ec/ecso2488.mf + RELOC/fonts/source/jknappen/ec/ecso2986.mf + RELOC/fonts/source/jknappen/ec/ecso3583.mf + RELOC/fonts/source/jknappen/ec/ecsq8.mf + RELOC/fonts/source/jknappen/ec/ecss.mf + RELOC/fonts/source/jknappen/ec/ecss0500.mf + RELOC/fonts/source/jknappen/ec/ecss0600.mf + RELOC/fonts/source/jknappen/ec/ecss0700.mf + RELOC/fonts/source/jknappen/ec/ecss0800.mf + RELOC/fonts/source/jknappen/ec/ecss0900.mf + RELOC/fonts/source/jknappen/ec/ecss1000.mf + RELOC/fonts/source/jknappen/ec/ecss1095.mf + RELOC/fonts/source/jknappen/ec/ecss1200.mf + RELOC/fonts/source/jknappen/ec/ecss1440.mf + RELOC/fonts/source/jknappen/ec/ecss1728.mf + RELOC/fonts/source/jknappen/ec/ecss2074.mf + RELOC/fonts/source/jknappen/ec/ecss2488.mf + RELOC/fonts/source/jknappen/ec/ecss2986.mf + RELOC/fonts/source/jknappen/ec/ecss3583.mf + RELOC/fonts/source/jknappen/ec/ecssdc10.mf + RELOC/fonts/source/jknappen/ec/ecst.mf + RELOC/fonts/source/jknappen/ec/ecst0800.mf + RELOC/fonts/source/jknappen/ec/ecst0900.mf + RELOC/fonts/source/jknappen/ec/ecst1000.mf + RELOC/fonts/source/jknappen/ec/ecst1095.mf + RELOC/fonts/source/jknappen/ec/ecst1200.mf + RELOC/fonts/source/jknappen/ec/ecst1440.mf + RELOC/fonts/source/jknappen/ec/ecst1728.mf + RELOC/fonts/source/jknappen/ec/ecst2074.mf + RELOC/fonts/source/jknappen/ec/ecst2488.mf + RELOC/fonts/source/jknappen/ec/ecst2986.mf + RELOC/fonts/source/jknappen/ec/ecst3583.mf + RELOC/fonts/source/jknappen/ec/ecsx.mf + RELOC/fonts/source/jknappen/ec/ecsx0500.mf + RELOC/fonts/source/jknappen/ec/ecsx0600.mf + RELOC/fonts/source/jknappen/ec/ecsx0700.mf + RELOC/fonts/source/jknappen/ec/ecsx0800.mf + RELOC/fonts/source/jknappen/ec/ecsx0900.mf + RELOC/fonts/source/jknappen/ec/ecsx1000.mf + RELOC/fonts/source/jknappen/ec/ecsx1095.mf + RELOC/fonts/source/jknappen/ec/ecsx1200.mf + RELOC/fonts/source/jknappen/ec/ecsx1440.mf + RELOC/fonts/source/jknappen/ec/ecsx1728.mf + RELOC/fonts/source/jknappen/ec/ecsx2074.mf + RELOC/fonts/source/jknappen/ec/ecsx2488.mf + RELOC/fonts/source/jknappen/ec/ecsx2986.mf + RELOC/fonts/source/jknappen/ec/ecsx3583.mf + RELOC/fonts/source/jknappen/ec/ectc.mf + RELOC/fonts/source/jknappen/ec/ectc0800.mf + RELOC/fonts/source/jknappen/ec/ectc0900.mf + RELOC/fonts/source/jknappen/ec/ectc1000.mf + RELOC/fonts/source/jknappen/ec/ectc1095.mf + RELOC/fonts/source/jknappen/ec/ectc1200.mf + RELOC/fonts/source/jknappen/ec/ectc1440.mf + RELOC/fonts/source/jknappen/ec/ectc1728.mf + RELOC/fonts/source/jknappen/ec/ectc2074.mf + RELOC/fonts/source/jknappen/ec/ectc2488.mf + RELOC/fonts/source/jknappen/ec/ectc2986.mf + RELOC/fonts/source/jknappen/ec/ectc3583.mf + RELOC/fonts/source/jknappen/ec/ecti.mf + RELOC/fonts/source/jknappen/ec/ecti0500.mf + RELOC/fonts/source/jknappen/ec/ecti0600.mf + RELOC/fonts/source/jknappen/ec/ecti0700.mf + RELOC/fonts/source/jknappen/ec/ecti0800.mf + RELOC/fonts/source/jknappen/ec/ecti0900.mf + RELOC/fonts/source/jknappen/ec/ecti1000.mf + RELOC/fonts/source/jknappen/ec/ecti1095.mf + RELOC/fonts/source/jknappen/ec/ecti1200.mf + RELOC/fonts/source/jknappen/ec/ecti1440.mf + RELOC/fonts/source/jknappen/ec/ecti1728.mf + RELOC/fonts/source/jknappen/ec/ecti2074.mf + RELOC/fonts/source/jknappen/ec/ecti2488.mf + RELOC/fonts/source/jknappen/ec/ecti2986.mf + RELOC/fonts/source/jknappen/ec/ecti3583.mf + RELOC/fonts/source/jknappen/ec/ectt.mf + RELOC/fonts/source/jknappen/ec/ectt0800.mf + RELOC/fonts/source/jknappen/ec/ectt0900.mf + RELOC/fonts/source/jknappen/ec/ectt1000.mf + RELOC/fonts/source/jknappen/ec/ectt1095.mf + RELOC/fonts/source/jknappen/ec/ectt1200.mf + RELOC/fonts/source/jknappen/ec/ectt1440.mf + RELOC/fonts/source/jknappen/ec/ectt1728.mf + RELOC/fonts/source/jknappen/ec/ectt2074.mf + RELOC/fonts/source/jknappen/ec/ectt2488.mf + RELOC/fonts/source/jknappen/ec/ectt2986.mf + RELOC/fonts/source/jknappen/ec/ectt3583.mf + RELOC/fonts/source/jknappen/ec/ecui.mf + RELOC/fonts/source/jknappen/ec/ecui0500.mf + RELOC/fonts/source/jknappen/ec/ecui0600.mf + RELOC/fonts/source/jknappen/ec/ecui0700.mf + RELOC/fonts/source/jknappen/ec/ecui0800.mf + RELOC/fonts/source/jknappen/ec/ecui0900.mf + RELOC/fonts/source/jknappen/ec/ecui1000.mf + RELOC/fonts/source/jknappen/ec/ecui1095.mf + RELOC/fonts/source/jknappen/ec/ecui1200.mf + RELOC/fonts/source/jknappen/ec/ecui1440.mf + RELOC/fonts/source/jknappen/ec/ecui1728.mf + RELOC/fonts/source/jknappen/ec/ecui2074.mf + RELOC/fonts/source/jknappen/ec/ecui2488.mf + RELOC/fonts/source/jknappen/ec/ecui2986.mf + RELOC/fonts/source/jknappen/ec/ecui3583.mf + RELOC/fonts/source/jknappen/ec/ecvi.mf + RELOC/fonts/source/jknappen/ec/ecvi0800.mf + RELOC/fonts/source/jknappen/ec/ecvi0900.mf + RELOC/fonts/source/jknappen/ec/ecvi1000.mf + RELOC/fonts/source/jknappen/ec/ecvi1095.mf + RELOC/fonts/source/jknappen/ec/ecvi1200.mf + RELOC/fonts/source/jknappen/ec/ecvi1440.mf + RELOC/fonts/source/jknappen/ec/ecvi1728.mf + RELOC/fonts/source/jknappen/ec/ecvi2074.mf + RELOC/fonts/source/jknappen/ec/ecvi2488.mf + RELOC/fonts/source/jknappen/ec/ecvi2986.mf + RELOC/fonts/source/jknappen/ec/ecvi3583.mf + RELOC/fonts/source/jknappen/ec/ecvt.mf + RELOC/fonts/source/jknappen/ec/ecvt0800.mf + RELOC/fonts/source/jknappen/ec/ecvt0900.mf + RELOC/fonts/source/jknappen/ec/ecvt1000.mf + RELOC/fonts/source/jknappen/ec/ecvt1095.mf + RELOC/fonts/source/jknappen/ec/ecvt1200.mf + RELOC/fonts/source/jknappen/ec/ecvt1440.mf + RELOC/fonts/source/jknappen/ec/ecvt1728.mf + RELOC/fonts/source/jknappen/ec/ecvt2074.mf + RELOC/fonts/source/jknappen/ec/ecvt2488.mf + RELOC/fonts/source/jknappen/ec/ecvt2986.mf + RELOC/fonts/source/jknappen/ec/ecvt3583.mf + RELOC/fonts/source/jknappen/ec/ecxc.mf + RELOC/fonts/source/jknappen/ec/ecxc0500.mf + RELOC/fonts/source/jknappen/ec/ecxc0600.mf + RELOC/fonts/source/jknappen/ec/ecxc0700.mf + RELOC/fonts/source/jknappen/ec/ecxc0800.mf + RELOC/fonts/source/jknappen/ec/ecxc0900.mf + RELOC/fonts/source/jknappen/ec/ecxc1000.mf + RELOC/fonts/source/jknappen/ec/ecxc1095.mf + RELOC/fonts/source/jknappen/ec/ecxc1200.mf + RELOC/fonts/source/jknappen/ec/ecxc1440.mf + RELOC/fonts/source/jknappen/ec/ecxc1728.mf + RELOC/fonts/source/jknappen/ec/ecxc2074.mf + RELOC/fonts/source/jknappen/ec/ecxc2488.mf + RELOC/fonts/source/jknappen/ec/ecxc2986.mf + RELOC/fonts/source/jknappen/ec/ecxc3583.mf + RELOC/fonts/source/jknappen/ec/exaccent.mf + RELOC/fonts/source/jknappen/ec/exaccess.mf + RELOC/fonts/source/jknappen/ec/exbase.mf + RELOC/fonts/source/jknappen/ec/exbraces.mf + RELOC/fonts/source/jknappen/ec/excligtb.mf + RELOC/fonts/source/jknappen/ec/excsc.mf + RELOC/fonts/source/jknappen/ec/excspl.mf + RELOC/fonts/source/jknappen/ec/exidigit.mf + RELOC/fonts/source/jknappen/ec/exileast.mf + RELOC/fonts/source/jknappen/ec/exilig.mf + RELOC/fonts/source/jknappen/ec/exiligtb.mf + RELOC/fonts/source/jknappen/ec/exillett.mf + RELOC/fonts/source/jknappen/ec/exilwest.mf + RELOC/fonts/source/jknappen/ec/exisixts.mf + RELOC/fonts/source/jknappen/ec/exitalp.mf + RELOC/fonts/source/jknappen/ec/exmligtb.mf + RELOC/fonts/source/jknappen/ec/expseudo.mf + RELOC/fonts/source/jknappen/ec/expunct.mf + RELOC/fonts/source/jknappen/ec/exrdigit.mf + RELOC/fonts/source/jknappen/ec/exrleast.mf + RELOC/fonts/source/jknappen/ec/exrlig.mf + RELOC/fonts/source/jknappen/ec/exrligtb.mf + RELOC/fonts/source/jknappen/ec/exrllett.mf + RELOC/fonts/source/jknappen/ec/exrlwest.mf + RELOC/fonts/source/jknappen/ec/exroman.mf + RELOC/fonts/source/jknappen/ec/exromp.mf + RELOC/fonts/source/jknappen/ec/exrueast.mf + RELOC/fonts/source/jknappen/ec/exrulett.mf + RELOC/fonts/source/jknappen/ec/exruwest.mf + RELOC/fonts/source/jknappen/ec/exsign.mf + RELOC/fonts/source/jknappen/ec/exsixtst.mf + RELOC/fonts/source/jknappen/ec/extextit.mf + RELOC/fonts/source/jknappen/ec/ieclb8.mf + RELOC/fonts/source/jknappen/ec/iecli8.mf + RELOC/fonts/source/jknappen/ec/ieclo8.mf + RELOC/fonts/source/jknappen/ec/ieclq8.mf + RELOC/fonts/source/jknappen/ec/iecltt8.mf + RELOC/fonts/source/jknappen/ec/tcbi.mf + RELOC/fonts/source/jknappen/ec/tcbi0500.mf + RELOC/fonts/source/jknappen/ec/tcbi0600.mf + RELOC/fonts/source/jknappen/ec/tcbi0700.mf + RELOC/fonts/source/jknappen/ec/tcbi0800.mf + RELOC/fonts/source/jknappen/ec/tcbi0900.mf + RELOC/fonts/source/jknappen/ec/tcbi1000.mf + RELOC/fonts/source/jknappen/ec/tcbi1095.mf + RELOC/fonts/source/jknappen/ec/tcbi1200.mf + RELOC/fonts/source/jknappen/ec/tcbi1440.mf + RELOC/fonts/source/jknappen/ec/tcbi1728.mf + RELOC/fonts/source/jknappen/ec/tcbi2074.mf + RELOC/fonts/source/jknappen/ec/tcbi2488.mf + RELOC/fonts/source/jknappen/ec/tcbi2986.mf + RELOC/fonts/source/jknappen/ec/tcbi3583.mf + RELOC/fonts/source/jknappen/ec/tcbl.mf + RELOC/fonts/source/jknappen/ec/tcbl0500.mf + RELOC/fonts/source/jknappen/ec/tcbl0600.mf + RELOC/fonts/source/jknappen/ec/tcbl0700.mf + RELOC/fonts/source/jknappen/ec/tcbl0800.mf + RELOC/fonts/source/jknappen/ec/tcbl0900.mf + RELOC/fonts/source/jknappen/ec/tcbl1000.mf + RELOC/fonts/source/jknappen/ec/tcbl1095.mf + RELOC/fonts/source/jknappen/ec/tcbl1200.mf + RELOC/fonts/source/jknappen/ec/tcbl1440.mf + RELOC/fonts/source/jknappen/ec/tcbl1728.mf + RELOC/fonts/source/jknappen/ec/tcbl2074.mf + RELOC/fonts/source/jknappen/ec/tcbl2488.mf + RELOC/fonts/source/jknappen/ec/tcbl2986.mf + RELOC/fonts/source/jknappen/ec/tcbl3583.mf + RELOC/fonts/source/jknappen/ec/tcbm.mf + RELOC/fonts/source/jknappen/ec/tcbx.mf + RELOC/fonts/source/jknappen/ec/tcbx0500.mf + RELOC/fonts/source/jknappen/ec/tcbx0600.mf + RELOC/fonts/source/jknappen/ec/tcbx0700.mf + RELOC/fonts/source/jknappen/ec/tcbx0800.mf + RELOC/fonts/source/jknappen/ec/tcbx0900.mf + RELOC/fonts/source/jknappen/ec/tcbx1000.mf + RELOC/fonts/source/jknappen/ec/tcbx1095.mf + RELOC/fonts/source/jknappen/ec/tcbx1200.mf + RELOC/fonts/source/jknappen/ec/tcbx1440.mf + RELOC/fonts/source/jknappen/ec/tcbx1728.mf + RELOC/fonts/source/jknappen/ec/tcbx2074.mf + RELOC/fonts/source/jknappen/ec/tcbx2488.mf + RELOC/fonts/source/jknappen/ec/tcbx2986.mf + RELOC/fonts/source/jknappen/ec/tcbx3583.mf + RELOC/fonts/source/jknappen/ec/tcci.mf + RELOC/fonts/source/jknappen/ec/tcci0500.mf + RELOC/fonts/source/jknappen/ec/tcci0600.mf + RELOC/fonts/source/jknappen/ec/tcci0700.mf + RELOC/fonts/source/jknappen/ec/tcci0800.mf + RELOC/fonts/source/jknappen/ec/tcci0900.mf + RELOC/fonts/source/jknappen/ec/tcci1000.mf + RELOC/fonts/source/jknappen/ec/tcci1095.mf + RELOC/fonts/source/jknappen/ec/tcci1200.mf + RELOC/fonts/source/jknappen/ec/tcci1440.mf + RELOC/fonts/source/jknappen/ec/tcci1728.mf + RELOC/fonts/source/jknappen/ec/tcci2074.mf + RELOC/fonts/source/jknappen/ec/tcci2488.mf + RELOC/fonts/source/jknappen/ec/tcci2986.mf + RELOC/fonts/source/jknappen/ec/tcci3583.mf + RELOC/fonts/source/jknappen/ec/tcdh.mf + RELOC/fonts/source/jknappen/ec/tcfb.mf + RELOC/fonts/source/jknappen/ec/tcff.mf + RELOC/fonts/source/jknappen/ec/tcfi.mf + RELOC/fonts/source/jknappen/ec/tcfs.mf + RELOC/fonts/source/jknappen/ec/tcit.mf + RELOC/fonts/source/jknappen/ec/tcit0800.mf + RELOC/fonts/source/jknappen/ec/tcit0900.mf + RELOC/fonts/source/jknappen/ec/tcit1000.mf + RELOC/fonts/source/jknappen/ec/tcit1095.mf + RELOC/fonts/source/jknappen/ec/tcit1200.mf + RELOC/fonts/source/jknappen/ec/tcit1440.mf + RELOC/fonts/source/jknappen/ec/tcit1728.mf + RELOC/fonts/source/jknappen/ec/tcit2074.mf + RELOC/fonts/source/jknappen/ec/tcit2488.mf + RELOC/fonts/source/jknappen/ec/tcit2986.mf + RELOC/fonts/source/jknappen/ec/tcit3583.mf + RELOC/fonts/source/jknappen/ec/tcrb.mf + RELOC/fonts/source/jknappen/ec/tcrb0500.mf + RELOC/fonts/source/jknappen/ec/tcrb0600.mf + RELOC/fonts/source/jknappen/ec/tcrb0700.mf + RELOC/fonts/source/jknappen/ec/tcrb0800.mf + RELOC/fonts/source/jknappen/ec/tcrb0900.mf + RELOC/fonts/source/jknappen/ec/tcrb1000.mf + RELOC/fonts/source/jknappen/ec/tcrb1095.mf + RELOC/fonts/source/jknappen/ec/tcrb1200.mf + RELOC/fonts/source/jknappen/ec/tcrb1440.mf + RELOC/fonts/source/jknappen/ec/tcrb1728.mf + RELOC/fonts/source/jknappen/ec/tcrb2074.mf + RELOC/fonts/source/jknappen/ec/tcrb2488.mf + RELOC/fonts/source/jknappen/ec/tcrb2986.mf + RELOC/fonts/source/jknappen/ec/tcrb3583.mf + RELOC/fonts/source/jknappen/ec/tcrm.mf + RELOC/fonts/source/jknappen/ec/tcrm0500.mf + RELOC/fonts/source/jknappen/ec/tcrm0600.mf + RELOC/fonts/source/jknappen/ec/tcrm0700.mf + RELOC/fonts/source/jknappen/ec/tcrm0800.mf + RELOC/fonts/source/jknappen/ec/tcrm0900.mf + RELOC/fonts/source/jknappen/ec/tcrm1000.mf + RELOC/fonts/source/jknappen/ec/tcrm1095.mf + RELOC/fonts/source/jknappen/ec/tcrm1200.mf + RELOC/fonts/source/jknappen/ec/tcrm1440.mf + RELOC/fonts/source/jknappen/ec/tcrm1728.mf + RELOC/fonts/source/jknappen/ec/tcrm2074.mf + RELOC/fonts/source/jknappen/ec/tcrm2488.mf + RELOC/fonts/source/jknappen/ec/tcrm2986.mf + RELOC/fonts/source/jknappen/ec/tcrm3583.mf + RELOC/fonts/source/jknappen/ec/tcsi.mf + RELOC/fonts/source/jknappen/ec/tcsi0500.mf + RELOC/fonts/source/jknappen/ec/tcsi0600.mf + RELOC/fonts/source/jknappen/ec/tcsi0700.mf + RELOC/fonts/source/jknappen/ec/tcsi0800.mf + RELOC/fonts/source/jknappen/ec/tcsi0900.mf + RELOC/fonts/source/jknappen/ec/tcsi1000.mf + RELOC/fonts/source/jknappen/ec/tcsi1095.mf + RELOC/fonts/source/jknappen/ec/tcsi1200.mf + RELOC/fonts/source/jknappen/ec/tcsi1440.mf + RELOC/fonts/source/jknappen/ec/tcsi1728.mf + RELOC/fonts/source/jknappen/ec/tcsi2074.mf + RELOC/fonts/source/jknappen/ec/tcsi2488.mf + RELOC/fonts/source/jknappen/ec/tcsi2986.mf + RELOC/fonts/source/jknappen/ec/tcsi3583.mf + RELOC/fonts/source/jknappen/ec/tcsl.mf + RELOC/fonts/source/jknappen/ec/tcsl0500.mf + RELOC/fonts/source/jknappen/ec/tcsl0600.mf + RELOC/fonts/source/jknappen/ec/tcsl0700.mf + RELOC/fonts/source/jknappen/ec/tcsl0800.mf + RELOC/fonts/source/jknappen/ec/tcsl0900.mf + RELOC/fonts/source/jknappen/ec/tcsl1000.mf + RELOC/fonts/source/jknappen/ec/tcsl1095.mf + RELOC/fonts/source/jknappen/ec/tcsl1200.mf + RELOC/fonts/source/jknappen/ec/tcsl1440.mf + RELOC/fonts/source/jknappen/ec/tcsl1728.mf + RELOC/fonts/source/jknappen/ec/tcsl2074.mf + RELOC/fonts/source/jknappen/ec/tcsl2488.mf + RELOC/fonts/source/jknappen/ec/tcsl2986.mf + RELOC/fonts/source/jknappen/ec/tcsl3583.mf + RELOC/fonts/source/jknappen/ec/tcso.mf + RELOC/fonts/source/jknappen/ec/tcso0500.mf + RELOC/fonts/source/jknappen/ec/tcso0600.mf + RELOC/fonts/source/jknappen/ec/tcso0700.mf + RELOC/fonts/source/jknappen/ec/tcso0800.mf + RELOC/fonts/source/jknappen/ec/tcso0900.mf + RELOC/fonts/source/jknappen/ec/tcso1000.mf + RELOC/fonts/source/jknappen/ec/tcso1095.mf + RELOC/fonts/source/jknappen/ec/tcso1200.mf + RELOC/fonts/source/jknappen/ec/tcso1440.mf + RELOC/fonts/source/jknappen/ec/tcso1728.mf + RELOC/fonts/source/jknappen/ec/tcso2074.mf + RELOC/fonts/source/jknappen/ec/tcso2488.mf + RELOC/fonts/source/jknappen/ec/tcso2986.mf + RELOC/fonts/source/jknappen/ec/tcso3583.mf + RELOC/fonts/source/jknappen/ec/tcss.mf + RELOC/fonts/source/jknappen/ec/tcss0500.mf + RELOC/fonts/source/jknappen/ec/tcss0600.mf + RELOC/fonts/source/jknappen/ec/tcss0700.mf + RELOC/fonts/source/jknappen/ec/tcss0800.mf + RELOC/fonts/source/jknappen/ec/tcss0900.mf + RELOC/fonts/source/jknappen/ec/tcss1000.mf + RELOC/fonts/source/jknappen/ec/tcss1095.mf + RELOC/fonts/source/jknappen/ec/tcss1200.mf + RELOC/fonts/source/jknappen/ec/tcss1440.mf + RELOC/fonts/source/jknappen/ec/tcss1728.mf + RELOC/fonts/source/jknappen/ec/tcss2074.mf + RELOC/fonts/source/jknappen/ec/tcss2488.mf + RELOC/fonts/source/jknappen/ec/tcss2986.mf + RELOC/fonts/source/jknappen/ec/tcss3583.mf + RELOC/fonts/source/jknappen/ec/tcst.mf + RELOC/fonts/source/jknappen/ec/tcst0800.mf + RELOC/fonts/source/jknappen/ec/tcst0900.mf + RELOC/fonts/source/jknappen/ec/tcst1000.mf + RELOC/fonts/source/jknappen/ec/tcst1095.mf + RELOC/fonts/source/jknappen/ec/tcst1200.mf + RELOC/fonts/source/jknappen/ec/tcst1440.mf + RELOC/fonts/source/jknappen/ec/tcst1728.mf + RELOC/fonts/source/jknappen/ec/tcst2074.mf + RELOC/fonts/source/jknappen/ec/tcst2488.mf + RELOC/fonts/source/jknappen/ec/tcst2986.mf + RELOC/fonts/source/jknappen/ec/tcst3583.mf + RELOC/fonts/source/jknappen/ec/tcsx.mf + RELOC/fonts/source/jknappen/ec/tcsx0500.mf + RELOC/fonts/source/jknappen/ec/tcsx0600.mf + RELOC/fonts/source/jknappen/ec/tcsx0700.mf + RELOC/fonts/source/jknappen/ec/tcsx0800.mf + RELOC/fonts/source/jknappen/ec/tcsx0900.mf + RELOC/fonts/source/jknappen/ec/tcsx1000.mf + RELOC/fonts/source/jknappen/ec/tcsx1095.mf + RELOC/fonts/source/jknappen/ec/tcsx1200.mf + RELOC/fonts/source/jknappen/ec/tcsx1440.mf + RELOC/fonts/source/jknappen/ec/tcsx1728.mf + RELOC/fonts/source/jknappen/ec/tcsx2074.mf + RELOC/fonts/source/jknappen/ec/tcsx2488.mf + RELOC/fonts/source/jknappen/ec/tcsx2986.mf + RELOC/fonts/source/jknappen/ec/tcsx3583.mf + RELOC/fonts/source/jknappen/ec/tcti.mf + RELOC/fonts/source/jknappen/ec/tcti0500.mf + RELOC/fonts/source/jknappen/ec/tcti0600.mf + RELOC/fonts/source/jknappen/ec/tcti0700.mf + RELOC/fonts/source/jknappen/ec/tcti0800.mf + RELOC/fonts/source/jknappen/ec/tcti0900.mf + RELOC/fonts/source/jknappen/ec/tcti1000.mf + RELOC/fonts/source/jknappen/ec/tcti1095.mf + RELOC/fonts/source/jknappen/ec/tcti1200.mf + RELOC/fonts/source/jknappen/ec/tcti1440.mf + RELOC/fonts/source/jknappen/ec/tcti1728.mf + RELOC/fonts/source/jknappen/ec/tcti2074.mf + RELOC/fonts/source/jknappen/ec/tcti2488.mf + RELOC/fonts/source/jknappen/ec/tcti2986.mf + RELOC/fonts/source/jknappen/ec/tcti3583.mf + RELOC/fonts/source/jknappen/ec/tctt.mf + RELOC/fonts/source/jknappen/ec/tctt0800.mf + RELOC/fonts/source/jknappen/ec/tctt0900.mf + RELOC/fonts/source/jknappen/ec/tctt1000.mf + RELOC/fonts/source/jknappen/ec/tctt1095.mf + RELOC/fonts/source/jknappen/ec/tctt1200.mf + RELOC/fonts/source/jknappen/ec/tctt1440.mf + RELOC/fonts/source/jknappen/ec/tctt1728.mf + RELOC/fonts/source/jknappen/ec/tctt2074.mf + RELOC/fonts/source/jknappen/ec/tctt2488.mf + RELOC/fonts/source/jknappen/ec/tctt2986.mf + RELOC/fonts/source/jknappen/ec/tctt3583.mf + RELOC/fonts/source/jknappen/ec/tcui.mf + RELOC/fonts/source/jknappen/ec/tcui0500.mf + RELOC/fonts/source/jknappen/ec/tcui0600.mf + RELOC/fonts/source/jknappen/ec/tcui0700.mf + RELOC/fonts/source/jknappen/ec/tcui0800.mf + RELOC/fonts/source/jknappen/ec/tcui0900.mf + RELOC/fonts/source/jknappen/ec/tcui1000.mf + RELOC/fonts/source/jknappen/ec/tcui1095.mf + RELOC/fonts/source/jknappen/ec/tcui1200.mf + RELOC/fonts/source/jknappen/ec/tcui1440.mf + RELOC/fonts/source/jknappen/ec/tcui1728.mf + RELOC/fonts/source/jknappen/ec/tcui2074.mf + RELOC/fonts/source/jknappen/ec/tcui2488.mf + RELOC/fonts/source/jknappen/ec/tcui2986.mf + RELOC/fonts/source/jknappen/ec/tcui3583.mf + RELOC/fonts/source/jknappen/ec/tcvi.mf + RELOC/fonts/source/jknappen/ec/tcvi0800.mf + RELOC/fonts/source/jknappen/ec/tcvi0900.mf + RELOC/fonts/source/jknappen/ec/tcvi1000.mf + RELOC/fonts/source/jknappen/ec/tcvi1095.mf + RELOC/fonts/source/jknappen/ec/tcvi1200.mf + RELOC/fonts/source/jknappen/ec/tcvi1440.mf + RELOC/fonts/source/jknappen/ec/tcvi1728.mf + RELOC/fonts/source/jknappen/ec/tcvi2074.mf + RELOC/fonts/source/jknappen/ec/tcvi2488.mf + RELOC/fonts/source/jknappen/ec/tcvi2986.mf + RELOC/fonts/source/jknappen/ec/tcvi3583.mf + RELOC/fonts/source/jknappen/ec/tcvt.mf + RELOC/fonts/source/jknappen/ec/tcvt0800.mf + RELOC/fonts/source/jknappen/ec/tcvt0900.mf + RELOC/fonts/source/jknappen/ec/tcvt1000.mf + RELOC/fonts/source/jknappen/ec/tcvt1095.mf + RELOC/fonts/source/jknappen/ec/tcvt1200.mf + RELOC/fonts/source/jknappen/ec/tcvt1440.mf + RELOC/fonts/source/jknappen/ec/tcvt1728.mf + RELOC/fonts/source/jknappen/ec/tcvt2074.mf + RELOC/fonts/source/jknappen/ec/tcvt2488.mf + RELOC/fonts/source/jknappen/ec/tcvt2986.mf + RELOC/fonts/source/jknappen/ec/tcvt3583.mf + RELOC/fonts/source/jknappen/ec/txaccent.mf + RELOC/fonts/source/jknappen/ec/txgen.mf + RELOC/fonts/source/jknappen/ec/txifract.mf + RELOC/fonts/source/jknappen/ec/txisuper.mf + RELOC/fonts/source/jknappen/ec/txitlod.mf + RELOC/fonts/source/jknappen/ec/txpseudo.mf + RELOC/fonts/source/jknappen/ec/txrfract.mf + RELOC/fonts/source/jknappen/ec/txromod.mf + RELOC/fonts/source/jknappen/ec/txrsuper.mf + RELOC/fonts/source/jknappen/ec/txsymb.mf + RELOC/fonts/source/jknappen/ec/txsymbol.mf + RELOC/fonts/tfm/jknappen/ec/ecbi0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx3583.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0500.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0600.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0700.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0800.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0900.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1000.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1095.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1200.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1440.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1728.tfm + RELOC/fonts/tfm/jknappen/ec/eccc2074.tfm + RELOC/fonts/tfm/jknappen/ec/eccc2488.tfm + RELOC/fonts/tfm/jknappen/ec/eccc2986.tfm + RELOC/fonts/tfm/jknappen/ec/eccc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecci2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecci2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecci2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecci3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecit0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecit0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecit2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecit2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecit2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecit3583.tfm + RELOC/fonts/tfm/jknappen/ec/eclb8.tfm + RELOC/fonts/tfm/jknappen/ec/ecli8.tfm + RELOC/fonts/tfm/jknappen/ec/eclo8.tfm + RELOC/fonts/tfm/jknappen/ec/eclq8.tfm + RELOC/fonts/tfm/jknappen/ec/ecltt8.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecso2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecso2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecso2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecso3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecss2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecss2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecss2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecss3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecst0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecst0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecst2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecst2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecst2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecst3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx3583.tfm + RELOC/fonts/tfm/jknappen/ec/ectc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ectc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ectc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ectc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ectc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ectc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecti2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecti2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecti2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecti3583.tfm + RELOC/fonts/tfm/jknappen/ec/ectt0800.tfm + RELOC/fonts/tfm/jknappen/ec/ectt0900.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1000.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1095.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1200.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1440.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1728.tfm + RELOC/fonts/tfm/jknappen/ec/ectt2074.tfm + RELOC/fonts/tfm/jknappen/ec/ectt2488.tfm + RELOC/fonts/tfm/jknappen/ec/ectt2986.tfm + RELOC/fonts/tfm/jknappen/ec/ectt3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecui2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecui2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecui2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecui3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ieclb8.tfm + RELOC/fonts/tfm/jknappen/ec/iecli8.tfm + RELOC/fonts/tfm/jknappen/ec/ieclo8.tfm + RELOC/fonts/tfm/jknappen/ec/ieclq8.tfm + RELOC/fonts/tfm/jknappen/ec/iecltt8.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcci2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcci2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcci2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcci3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcit0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcit0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcit2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcit2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcit2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcit3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcso2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcso2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcso2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcso3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcss2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcss2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcss2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcss3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcst0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcst0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcst2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcst2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcst2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcst3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcti2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcti2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcti2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcti3583.tfm + RELOC/fonts/tfm/jknappen/ec/tctt0800.tfm + RELOC/fonts/tfm/jknappen/ec/tctt0900.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1000.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1095.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1200.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1440.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1728.tfm + RELOC/fonts/tfm/jknappen/ec/tctt2074.tfm + RELOC/fonts/tfm/jknappen/ec/tctt2488.tfm + RELOC/fonts/tfm/jknappen/ec/tctt2986.tfm + RELOC/fonts/tfm/jknappen/ec/tctt3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcui2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcui2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcui2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcui3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt3583.tfm +catalogue-also eco +catalogue-ctan /fonts/ec +catalogue-license other-free +catalogue-topics font font-mf font-serif font-sans font-proportional font-mono font-cm +catalogue-version 1.0 + +name ecc +category Package +revision 15878 +shortdesc Sources for the European Concrete fonts +relocated 1 +longdesc The Metafont sources and TFM files of the European Concrete +longdesc Fonts. This is the T1-encoded extension of Knuth's Concrete +longdesc fonts, including also the corresponding text companion fonts. +longdesc Adobe Type 1 versions of the fonts are available as part of the +longdesc cm-super font bundle. +containersize 16928 +containerchecksum 0f91383595d8606d0a118f8111af0531e0c53fe383511b6424f7cbbf70ace9c4d94dd379813bfceafcea11f6be361bf7d8df2088fad98a42a5e5d31476581f11 +doccontainersize 2944 +doccontainerchecksum e3263aab5c8ac9985c579d4fba121085419d5c28e4813798402ad67213f96575dac0776d18918edaa18d42d458937a1e60ad666b2a01dea445675eea7e32b2c2 +docfiles size=3 + RELOC/doc/fonts/ecc/copyrite + RELOC/doc/fonts/ecc/liesmich + RELOC/doc/fonts/ecc/readme details="Readme" +runfiles size=71 + RELOC/fonts/source/public/ecc/conc10pt.mf + RELOC/fonts/source/public/ecc/conc5pt.mf + RELOC/fonts/source/public/ecc/conc6pt.mf + RELOC/fonts/source/public/ecc/conc7pt.mf + RELOC/fonts/source/public/ecc/conc8pt.mf + RELOC/fonts/source/public/ecc/conc9pt.mf + RELOC/fonts/source/public/ecc/coni10pt.mf + RELOC/fonts/source/public/ecc/eocc10.mf + RELOC/fonts/source/public/ecc/eorm10.mf + RELOC/fonts/source/public/ecc/eorm5.mf + RELOC/fonts/source/public/ecc/eorm6.mf + RELOC/fonts/source/public/ecc/eorm7.mf + RELOC/fonts/source/public/ecc/eorm8.mf + RELOC/fonts/source/public/ecc/eorm9.mf + RELOC/fonts/source/public/ecc/eosl10.mf + RELOC/fonts/source/public/ecc/eosl5.mf + RELOC/fonts/source/public/ecc/eosl6.mf + RELOC/fonts/source/public/ecc/eosl7.mf + RELOC/fonts/source/public/ecc/eosl8.mf + RELOC/fonts/source/public/ecc/eosl9.mf + RELOC/fonts/source/public/ecc/eoti10.mf + RELOC/fonts/source/public/ecc/tcssdc10.mf + RELOC/fonts/source/public/ecc/torm10.mf + RELOC/fonts/source/public/ecc/torm5.mf + RELOC/fonts/source/public/ecc/torm6.mf + RELOC/fonts/source/public/ecc/torm7.mf + RELOC/fonts/source/public/ecc/torm8.mf + RELOC/fonts/source/public/ecc/torm9.mf + RELOC/fonts/source/public/ecc/tosl10.mf + RELOC/fonts/source/public/ecc/tosl5.mf + RELOC/fonts/source/public/ecc/tosl6.mf + RELOC/fonts/source/public/ecc/tosl7.mf + RELOC/fonts/source/public/ecc/tosl8.mf + RELOC/fonts/source/public/ecc/tosl9.mf + RELOC/fonts/source/public/ecc/toti10.mf + RELOC/fonts/tfm/public/ecc/eocc10.tfm + RELOC/fonts/tfm/public/ecc/eorm10.tfm + RELOC/fonts/tfm/public/ecc/eorm5.tfm + RELOC/fonts/tfm/public/ecc/eorm6.tfm + RELOC/fonts/tfm/public/ecc/eorm7.tfm + RELOC/fonts/tfm/public/ecc/eorm8.tfm + RELOC/fonts/tfm/public/ecc/eorm9.tfm + RELOC/fonts/tfm/public/ecc/eosl10.tfm + RELOC/fonts/tfm/public/ecc/eosl5.tfm + RELOC/fonts/tfm/public/ecc/eosl6.tfm + RELOC/fonts/tfm/public/ecc/eosl7.tfm + RELOC/fonts/tfm/public/ecc/eosl8.tfm + RELOC/fonts/tfm/public/ecc/eosl9.tfm + RELOC/fonts/tfm/public/ecc/eoti10.tfm + RELOC/fonts/tfm/public/ecc/tcssdc10.tfm + RELOC/fonts/tfm/public/ecc/torm10.tfm + RELOC/fonts/tfm/public/ecc/torm5.tfm + RELOC/fonts/tfm/public/ecc/torm6.tfm + RELOC/fonts/tfm/public/ecc/torm7.tfm + RELOC/fonts/tfm/public/ecc/torm8.tfm + RELOC/fonts/tfm/public/ecc/torm9.tfm + RELOC/fonts/tfm/public/ecc/tosl10.tfm + RELOC/fonts/tfm/public/ecc/tosl5.tfm + RELOC/fonts/tfm/public/ecc/tosl6.tfm + RELOC/fonts/tfm/public/ecc/tosl7.tfm + RELOC/fonts/tfm/public/ecc/tosl8.tfm + RELOC/fonts/tfm/public/ecc/tosl9.tfm + RELOC/fonts/tfm/public/ecc/toti10.tfm +catalogue-also ccfonts +catalogue-ctan /fonts/ecc +catalogue-license lppl +catalogue-topics font font-mf font-t1enc + +name ecclesiastic +category Package +revision 38172 +shortdesc Typesetting Ecclesiastic Latin +relocated 1 +longdesc The package modifies the way the latin option to babel operates +longdesc when typesetting Latin. The style is somewhat 'frenchified' in +longdesc respect of punctuation spacings and footnote style; shortcuts +longdesc are available in order to set accents on all vowels, including +longdesc y and the diphthongs ae and oe. +containersize 2744 +containerchecksum f2518f8f25bf4b7c7fd34ee5fc271d08c3262ca2d90e271e02db96ef4826bdee53565f004fddd89e886258716874b101e7fb63b46a6124ed13b67facded6ddcc +doccontainersize 370392 +doccontainerchecksum 35902f78af7c9acc42e23ae1d5c39ead5d92f0cf73f9c27b3f15d025555ed08502709638dec3788305fa776bb2924eb43e691c6e69424b23c21110de3160b60d +docfiles size=93 + RELOC/doc/latex/ecclesiastic/README details="Readme" + RELOC/doc/latex/ecclesiastic/ecclesiastic.pdf details="Package documentation" + RELOC/doc/latex/ecclesiastic/manifest.txt +srccontainersize 8456 +srccontainerchecksum 9661b16b8d3af5e205e99a7b8da8ce1913ac1ef495f3e02202ce7cbe1fe786692c64b4a82913190db42f922f33d939069cf423b55af53792808900ebbe728b8a +srcfiles size=7 + RELOC/source/latex/ecclesiastic/ecclesiastic.dtx +runfiles size=2 + RELOC/tex/latex/ecclesiastic/ecclesiastic.sty +catalogue-ctan /macros/latex/contrib/ecclesiastic +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 0.3 + +name ecgdraw +category Package +revision 41617 +shortdesc Draws electrocardiograms (ECG) +relocated 1 +longdesc This package provides the \ECG{<code>} command which draws +longdesc electrocardiograms (ECG). The <code> represents a series of +longdesc abbreviations which allow to draw different types of wave. +containersize 3236 +containerchecksum 419650d8ad24b9e08523953596a79c318740b2dcb7fd18a7c7a17019fe17cc66439c0acf56a7a7f8176349df0d80b44640511269d498cfa19aba6fb1f353923f +doccontainersize 725824 +doccontainerchecksum 24968ada8568861eb973967b33827642e1201d002f73d40de5183a38d5f447a2fb93feb1db32807829c071d1a1147039e34ed4c287886260453b9c9737693986 +docfiles size=204 + RELOC/doc/latex/ecgdraw/README details="Readme" + RELOC/doc/latex/ecgdraw/archivio.tex + RELOC/doc/latex/ecgdraw/ecgdraw.pdf details="Package documentation" + RELOC/doc/latex/ecgdraw/ecgdraw_ita.pdf details="Package documentation" language="it" +srccontainersize 12636 +srccontainerchecksum 27ea4e0f4d184883eb0515cc95b7b797ea215626fb5c4003fc02bb490b6f3edf1d9422a7f764df28372d9ded429dbe47645bdaa8fa57c4517ef438096ac68801 +srcfiles size=13 + RELOC/source/latex/ecgdraw/ecgdraw.dtx +runfiles size=3 + RELOC/tex/latex/ecgdraw/ecgdraw.sty +catalogue-ctan /graphics/ecgdraw +catalogue-license lppl1.3 +catalogue-topics medical +catalogue-version 0.1 + +name ecltree +category Package +revision 15878 +shortdesc Trees using epic and eepic macros +relocated 1 +longdesc The package recursively draws trees: each subtree is defined in +longdesc a 'bundle' environment, with a set of leaves described by +longdesc \chunk macros. A chunk may have a bundle environment inside it. +containersize 2136 +containerchecksum 7461fe472dbd2ecb4e692cdbd58d5b801960d160bd7e18fa7d5ebe3e42defd11faba318d5d9134fd17275a4271f4c7761fa2d65fc1f202b4eb7b0fe3968a9fbc +doccontainersize 32504 +doccontainerchecksum 3dc607ff60f9e738476b1f5c801801e3dc10713d7f5dc4b790b92f454fec1e68e9abe8efa7e4b0464ed6ad854d7971e241987fd63d406ba9deec9c99f8bf229a +docfiles size=12 + RELOC/doc/latex/ecltree/ecltreesample.pdf details="Package examples" + RELOC/doc/latex/ecltree/ecltreesample.tex +runfiles size=2 + RELOC/tex/latex/ecltree/ecltree.sty +catalogue-also epic eepic +catalogue-ctan /macros/latex/contrib/eclbip +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.1a + +name eco +category Package +revision 29349 +shortdesc Oldstyle numerals using EC fonts +relocated 1 +longdesc A set of font metric files and virtual fonts for using the EC +longdesc fonts with oldstyle numerals. These files can only be used +longdesc together with the standard ec fonts. The style file eco.sty is +longdesc sufficient to use the eco fonts but if you intend to use other +longdesc font families as well, e.g., PostScript fonts, try altfont. +containersize 143540 +containerchecksum 7bed893bb3f379d61dc874280ccc26db037511ea69faf37076f3cfbf01cf3d747706d40086eb99c502f215f026b2e357e44e8940a859559c3a5d9876bfd70c00 +doccontainersize 8380 +doccontainerchecksum 3c2042779dd30c8ff0e8f09580b3173f3dd43659ff2ca94c52500f989a338a29799c22eb08c493dfa82496117d7fd7548f903f71fe488727acf4e517dc6c0377 +docfiles size=9 + RELOC/doc/fonts/eco/CHANGES + RELOC/doc/fonts/eco/COPYING + RELOC/doc/fonts/eco/INSTALL + RELOC/doc/fonts/eco/README details="Readme" + RELOC/doc/fonts/eco/VERSION +srccontainersize 6104 +srccontainerchecksum 355f1a47eddba5eedf9933d0a137045d9cb06e3918814754079e7dca0852d2fb10969f0c48a030ef9dad923e7131b6e77af8e1e8b2954b3d70409fad400ebe05 +srcfiles size=14 + RELOC/source/fonts/eco/TS1.etx + RELOC/source/fonts/eco/create.sh + RELOC/source/fonts/eco/dostretch.mtx + RELOC/source/fonts/eco/ecodh.tex + RELOC/source/fonts/eco/ecor.tex + RELOC/source/fonts/eco/ecori.tex + RELOC/source/fonts/eco/ecoss.tex + RELOC/source/fonts/eco/ecott.tex + RELOC/source/fonts/eco/ecovt.tex +runfiles size=916 + RELOC/fonts/tfm/public/eco/ecobi0500.tfm + RELOC/fonts/tfm/public/eco/ecobi0600.tfm + RELOC/fonts/tfm/public/eco/ecobi0700.tfm + RELOC/fonts/tfm/public/eco/ecobi0800.tfm + RELOC/fonts/tfm/public/eco/ecobi0900.tfm + RELOC/fonts/tfm/public/eco/ecobi1000.tfm + RELOC/fonts/tfm/public/eco/ecobi1095.tfm + RELOC/fonts/tfm/public/eco/ecobi1200.tfm + RELOC/fonts/tfm/public/eco/ecobi1440.tfm + RELOC/fonts/tfm/public/eco/ecobi1728.tfm + RELOC/fonts/tfm/public/eco/ecobi2074.tfm + RELOC/fonts/tfm/public/eco/ecobi2488.tfm + RELOC/fonts/tfm/public/eco/ecobi2986.tfm + RELOC/fonts/tfm/public/eco/ecobi3583.tfm + RELOC/fonts/tfm/public/eco/ecobl0500.tfm + RELOC/fonts/tfm/public/eco/ecobl0600.tfm + RELOC/fonts/tfm/public/eco/ecobl0700.tfm + RELOC/fonts/tfm/public/eco/ecobl0800.tfm + RELOC/fonts/tfm/public/eco/ecobl0900.tfm + RELOC/fonts/tfm/public/eco/ecobl1000.tfm + RELOC/fonts/tfm/public/eco/ecobl1095.tfm + RELOC/fonts/tfm/public/eco/ecobl1200.tfm + RELOC/fonts/tfm/public/eco/ecobl1440.tfm + RELOC/fonts/tfm/public/eco/ecobl1728.tfm + RELOC/fonts/tfm/public/eco/ecobl2074.tfm + RELOC/fonts/tfm/public/eco/ecobl2488.tfm + RELOC/fonts/tfm/public/eco/ecobl2986.tfm + RELOC/fonts/tfm/public/eco/ecobl3583.tfm + RELOC/fonts/tfm/public/eco/ecobx0500.tfm + RELOC/fonts/tfm/public/eco/ecobx0600.tfm + RELOC/fonts/tfm/public/eco/ecobx0700.tfm + RELOC/fonts/tfm/public/eco/ecobx0800.tfm + RELOC/fonts/tfm/public/eco/ecobx0900.tfm + RELOC/fonts/tfm/public/eco/ecobx1000.tfm + RELOC/fonts/tfm/public/eco/ecobx1095.tfm + RELOC/fonts/tfm/public/eco/ecobx1200.tfm + RELOC/fonts/tfm/public/eco/ecobx1440.tfm + RELOC/fonts/tfm/public/eco/ecobx1728.tfm + RELOC/fonts/tfm/public/eco/ecobx2074.tfm + RELOC/fonts/tfm/public/eco/ecobx2488.tfm + RELOC/fonts/tfm/public/eco/ecobx2986.tfm + RELOC/fonts/tfm/public/eco/ecobx3583.tfm + RELOC/fonts/tfm/public/eco/ecodh0500.tfm + RELOC/fonts/tfm/public/eco/ecodh0600.tfm + RELOC/fonts/tfm/public/eco/ecodh0700.tfm + RELOC/fonts/tfm/public/eco/ecodh0800.tfm + RELOC/fonts/tfm/public/eco/ecodh0900.tfm + RELOC/fonts/tfm/public/eco/ecodh1000.tfm + RELOC/fonts/tfm/public/eco/ecodh1095.tfm + RELOC/fonts/tfm/public/eco/ecodh1200.tfm + RELOC/fonts/tfm/public/eco/ecodh1440.tfm + RELOC/fonts/tfm/public/eco/ecodh1728.tfm + RELOC/fonts/tfm/public/eco/ecodh2074.tfm + RELOC/fonts/tfm/public/eco/ecodh2488.tfm + RELOC/fonts/tfm/public/eco/ecodh2986.tfm + RELOC/fonts/tfm/public/eco/ecodh3583.tfm + RELOC/fonts/tfm/public/eco/ecoit0600.tfm + RELOC/fonts/tfm/public/eco/ecoit0700.tfm + RELOC/fonts/tfm/public/eco/ecoit0800.tfm + RELOC/fonts/tfm/public/eco/ecoit0900.tfm + RELOC/fonts/tfm/public/eco/ecoit1000.tfm + RELOC/fonts/tfm/public/eco/ecoit1095.tfm + RELOC/fonts/tfm/public/eco/ecoit1200.tfm + RELOC/fonts/tfm/public/eco/ecoit1440.tfm + RELOC/fonts/tfm/public/eco/ecoit1728.tfm + RELOC/fonts/tfm/public/eco/ecoit2074.tfm + RELOC/fonts/tfm/public/eco/ecoit2488.tfm + RELOC/fonts/tfm/public/eco/ecoit2986.tfm + RELOC/fonts/tfm/public/eco/ecoit3583.tfm + RELOC/fonts/tfm/public/eco/ecorb0500.tfm + RELOC/fonts/tfm/public/eco/ecorb0600.tfm + RELOC/fonts/tfm/public/eco/ecorb0700.tfm + RELOC/fonts/tfm/public/eco/ecorb0800.tfm + RELOC/fonts/tfm/public/eco/ecorb0900.tfm + RELOC/fonts/tfm/public/eco/ecorb1000.tfm + RELOC/fonts/tfm/public/eco/ecorb1095.tfm + RELOC/fonts/tfm/public/eco/ecorb1200.tfm + RELOC/fonts/tfm/public/eco/ecorb1440.tfm + RELOC/fonts/tfm/public/eco/ecorb1728.tfm + RELOC/fonts/tfm/public/eco/ecorb2074.tfm + RELOC/fonts/tfm/public/eco/ecorb2488.tfm + RELOC/fonts/tfm/public/eco/ecorb2986.tfm + RELOC/fonts/tfm/public/eco/ecorb3583.tfm + RELOC/fonts/tfm/public/eco/ecorm0500.tfm + RELOC/fonts/tfm/public/eco/ecorm0600.tfm + RELOC/fonts/tfm/public/eco/ecorm0700.tfm + RELOC/fonts/tfm/public/eco/ecorm0800.tfm + RELOC/fonts/tfm/public/eco/ecorm0900.tfm + RELOC/fonts/tfm/public/eco/ecorm1000.tfm + RELOC/fonts/tfm/public/eco/ecorm1095.tfm + RELOC/fonts/tfm/public/eco/ecorm1200.tfm + RELOC/fonts/tfm/public/eco/ecorm1440.tfm + RELOC/fonts/tfm/public/eco/ecorm1728.tfm + RELOC/fonts/tfm/public/eco/ecorm2074.tfm + RELOC/fonts/tfm/public/eco/ecorm2488.tfm + RELOC/fonts/tfm/public/eco/ecorm2986.tfm + RELOC/fonts/tfm/public/eco/ecorm3583.tfm + RELOC/fonts/tfm/public/eco/ecosi0500.tfm + RELOC/fonts/tfm/public/eco/ecosi0600.tfm + RELOC/fonts/tfm/public/eco/ecosi0700.tfm + RELOC/fonts/tfm/public/eco/ecosi0800.tfm + RELOC/fonts/tfm/public/eco/ecosi0900.tfm + RELOC/fonts/tfm/public/eco/ecosi1000.tfm + RELOC/fonts/tfm/public/eco/ecosi1095.tfm + RELOC/fonts/tfm/public/eco/ecosi1200.tfm + RELOC/fonts/tfm/public/eco/ecosi1440.tfm + RELOC/fonts/tfm/public/eco/ecosi1728.tfm + RELOC/fonts/tfm/public/eco/ecosi2074.tfm + RELOC/fonts/tfm/public/eco/ecosi2488.tfm + RELOC/fonts/tfm/public/eco/ecosi2986.tfm + RELOC/fonts/tfm/public/eco/ecosi3583.tfm + RELOC/fonts/tfm/public/eco/ecosl0500.tfm + RELOC/fonts/tfm/public/eco/ecosl0600.tfm + RELOC/fonts/tfm/public/eco/ecosl0700.tfm + RELOC/fonts/tfm/public/eco/ecosl0800.tfm + RELOC/fonts/tfm/public/eco/ecosl0900.tfm + RELOC/fonts/tfm/public/eco/ecosl1000.tfm + RELOC/fonts/tfm/public/eco/ecosl1095.tfm + RELOC/fonts/tfm/public/eco/ecosl1200.tfm + RELOC/fonts/tfm/public/eco/ecosl1440.tfm + RELOC/fonts/tfm/public/eco/ecosl1728.tfm + RELOC/fonts/tfm/public/eco/ecosl2074.tfm + RELOC/fonts/tfm/public/eco/ecosl2488.tfm + RELOC/fonts/tfm/public/eco/ecosl2986.tfm + RELOC/fonts/tfm/public/eco/ecosl3583.tfm + RELOC/fonts/tfm/public/eco/ecoso0500.tfm + RELOC/fonts/tfm/public/eco/ecoso0600.tfm + RELOC/fonts/tfm/public/eco/ecoso0700.tfm + RELOC/fonts/tfm/public/eco/ecoso0800.tfm + RELOC/fonts/tfm/public/eco/ecoso0900.tfm + RELOC/fonts/tfm/public/eco/ecoso1000.tfm + RELOC/fonts/tfm/public/eco/ecoso1095.tfm + RELOC/fonts/tfm/public/eco/ecoso1200.tfm + RELOC/fonts/tfm/public/eco/ecoso1440.tfm + RELOC/fonts/tfm/public/eco/ecoso1728.tfm + RELOC/fonts/tfm/public/eco/ecoso2074.tfm + RELOC/fonts/tfm/public/eco/ecoso2488.tfm + RELOC/fonts/tfm/public/eco/ecoso2986.tfm + RELOC/fonts/tfm/public/eco/ecoso3583.tfm + RELOC/fonts/tfm/public/eco/ecoss0500.tfm + RELOC/fonts/tfm/public/eco/ecoss0600.tfm + RELOC/fonts/tfm/public/eco/ecoss0700.tfm + RELOC/fonts/tfm/public/eco/ecoss0800.tfm + RELOC/fonts/tfm/public/eco/ecoss0900.tfm + RELOC/fonts/tfm/public/eco/ecoss1000.tfm + RELOC/fonts/tfm/public/eco/ecoss1095.tfm + RELOC/fonts/tfm/public/eco/ecoss1200.tfm + RELOC/fonts/tfm/public/eco/ecoss1440.tfm + RELOC/fonts/tfm/public/eco/ecoss1728.tfm + RELOC/fonts/tfm/public/eco/ecoss2074.tfm + RELOC/fonts/tfm/public/eco/ecoss2488.tfm + RELOC/fonts/tfm/public/eco/ecoss2986.tfm + RELOC/fonts/tfm/public/eco/ecoss3583.tfm + RELOC/fonts/tfm/public/eco/ecost0600.tfm + RELOC/fonts/tfm/public/eco/ecost0700.tfm + RELOC/fonts/tfm/public/eco/ecost0800.tfm + RELOC/fonts/tfm/public/eco/ecost0900.tfm + RELOC/fonts/tfm/public/eco/ecost1000.tfm + RELOC/fonts/tfm/public/eco/ecost1095.tfm + RELOC/fonts/tfm/public/eco/ecost1200.tfm + RELOC/fonts/tfm/public/eco/ecost1440.tfm + RELOC/fonts/tfm/public/eco/ecost1728.tfm + RELOC/fonts/tfm/public/eco/ecost2074.tfm + RELOC/fonts/tfm/public/eco/ecost2488.tfm + RELOC/fonts/tfm/public/eco/ecost2986.tfm + RELOC/fonts/tfm/public/eco/ecost3583.tfm + RELOC/fonts/tfm/public/eco/ecosx0500.tfm + RELOC/fonts/tfm/public/eco/ecosx0600.tfm + RELOC/fonts/tfm/public/eco/ecosx0700.tfm + RELOC/fonts/tfm/public/eco/ecosx0800.tfm + RELOC/fonts/tfm/public/eco/ecosx0900.tfm + RELOC/fonts/tfm/public/eco/ecosx1000.tfm + RELOC/fonts/tfm/public/eco/ecosx1095.tfm + RELOC/fonts/tfm/public/eco/ecosx1200.tfm + RELOC/fonts/tfm/public/eco/ecosx1440.tfm + RELOC/fonts/tfm/public/eco/ecosx1728.tfm + RELOC/fonts/tfm/public/eco/ecosx2074.tfm + RELOC/fonts/tfm/public/eco/ecosx2488.tfm + RELOC/fonts/tfm/public/eco/ecosx2986.tfm + RELOC/fonts/tfm/public/eco/ecosx3583.tfm + RELOC/fonts/tfm/public/eco/ecoti0500.tfm + RELOC/fonts/tfm/public/eco/ecoti0600.tfm + RELOC/fonts/tfm/public/eco/ecoti0700.tfm + RELOC/fonts/tfm/public/eco/ecoti0800.tfm + RELOC/fonts/tfm/public/eco/ecoti0900.tfm + RELOC/fonts/tfm/public/eco/ecoti1000.tfm + RELOC/fonts/tfm/public/eco/ecoti1095.tfm + RELOC/fonts/tfm/public/eco/ecoti1200.tfm + RELOC/fonts/tfm/public/eco/ecoti1440.tfm + RELOC/fonts/tfm/public/eco/ecoti1728.tfm + RELOC/fonts/tfm/public/eco/ecoti2074.tfm + RELOC/fonts/tfm/public/eco/ecoti2488.tfm + RELOC/fonts/tfm/public/eco/ecoti2986.tfm + RELOC/fonts/tfm/public/eco/ecoti3583.tfm + RELOC/fonts/tfm/public/eco/ecott0600.tfm + RELOC/fonts/tfm/public/eco/ecott0700.tfm + RELOC/fonts/tfm/public/eco/ecott0800.tfm + RELOC/fonts/tfm/public/eco/ecott0900.tfm + RELOC/fonts/tfm/public/eco/ecott1000.tfm + RELOC/fonts/tfm/public/eco/ecott1095.tfm + RELOC/fonts/tfm/public/eco/ecott1200.tfm + RELOC/fonts/tfm/public/eco/ecott1440.tfm + RELOC/fonts/tfm/public/eco/ecott1728.tfm + RELOC/fonts/tfm/public/eco/ecott2074.tfm + RELOC/fonts/tfm/public/eco/ecott2488.tfm + RELOC/fonts/tfm/public/eco/ecott2986.tfm + RELOC/fonts/tfm/public/eco/ecott3583.tfm + RELOC/fonts/tfm/public/eco/ecoui0500.tfm + RELOC/fonts/tfm/public/eco/ecoui0600.tfm + RELOC/fonts/tfm/public/eco/ecoui0700.tfm + RELOC/fonts/tfm/public/eco/ecoui0800.tfm + RELOC/fonts/tfm/public/eco/ecoui0900.tfm + RELOC/fonts/tfm/public/eco/ecoui1000.tfm + RELOC/fonts/tfm/public/eco/ecoui1095.tfm + RELOC/fonts/tfm/public/eco/ecoui1200.tfm + RELOC/fonts/tfm/public/eco/ecoui1440.tfm + RELOC/fonts/tfm/public/eco/ecoui1728.tfm + RELOC/fonts/tfm/public/eco/ecoui2074.tfm + RELOC/fonts/tfm/public/eco/ecoui2488.tfm + RELOC/fonts/tfm/public/eco/ecoui2986.tfm + RELOC/fonts/tfm/public/eco/ecoui3583.tfm + RELOC/fonts/tfm/public/eco/ecovi0600.tfm + RELOC/fonts/tfm/public/eco/ecovi0700.tfm + RELOC/fonts/tfm/public/eco/ecovi0800.tfm + RELOC/fonts/tfm/public/eco/ecovi0900.tfm + RELOC/fonts/tfm/public/eco/ecovi1000.tfm + RELOC/fonts/tfm/public/eco/ecovi1095.tfm + RELOC/fonts/tfm/public/eco/ecovi1200.tfm + RELOC/fonts/tfm/public/eco/ecovi1440.tfm + RELOC/fonts/tfm/public/eco/ecovi1728.tfm + RELOC/fonts/tfm/public/eco/ecovi2074.tfm + RELOC/fonts/tfm/public/eco/ecovi2488.tfm + RELOC/fonts/tfm/public/eco/ecovi2986.tfm + RELOC/fonts/tfm/public/eco/ecovi3583.tfm + RELOC/fonts/tfm/public/eco/ecovt0600.tfm + RELOC/fonts/tfm/public/eco/ecovt0700.tfm + RELOC/fonts/tfm/public/eco/ecovt0800.tfm + RELOC/fonts/tfm/public/eco/ecovt0900.tfm + RELOC/fonts/tfm/public/eco/ecovt1000.tfm + RELOC/fonts/tfm/public/eco/ecovt1095.tfm + RELOC/fonts/tfm/public/eco/ecovt1200.tfm + RELOC/fonts/tfm/public/eco/ecovt1440.tfm + RELOC/fonts/tfm/public/eco/ecovt1728.tfm + RELOC/fonts/tfm/public/eco/ecovt2074.tfm + RELOC/fonts/tfm/public/eco/ecovt2488.tfm + RELOC/fonts/tfm/public/eco/ecovt2986.tfm + RELOC/fonts/tfm/public/eco/ecovt3583.tfm + RELOC/fonts/vf/public/eco/ecobi0500.vf + RELOC/fonts/vf/public/eco/ecobi0600.vf + RELOC/fonts/vf/public/eco/ecobi0700.vf + RELOC/fonts/vf/public/eco/ecobi0800.vf + RELOC/fonts/vf/public/eco/ecobi0900.vf + RELOC/fonts/vf/public/eco/ecobi1000.vf + RELOC/fonts/vf/public/eco/ecobi1095.vf + RELOC/fonts/vf/public/eco/ecobi1200.vf + RELOC/fonts/vf/public/eco/ecobi1440.vf + RELOC/fonts/vf/public/eco/ecobi1728.vf + RELOC/fonts/vf/public/eco/ecobi2074.vf + RELOC/fonts/vf/public/eco/ecobi2488.vf + RELOC/fonts/vf/public/eco/ecobi2986.vf + RELOC/fonts/vf/public/eco/ecobi3583.vf + RELOC/fonts/vf/public/eco/ecobl0500.vf + RELOC/fonts/vf/public/eco/ecobl0600.vf + RELOC/fonts/vf/public/eco/ecobl0700.vf + RELOC/fonts/vf/public/eco/ecobl0800.vf + RELOC/fonts/vf/public/eco/ecobl0900.vf + RELOC/fonts/vf/public/eco/ecobl1000.vf + RELOC/fonts/vf/public/eco/ecobl1095.vf + RELOC/fonts/vf/public/eco/ecobl1200.vf + RELOC/fonts/vf/public/eco/ecobl1440.vf + RELOC/fonts/vf/public/eco/ecobl1728.vf + RELOC/fonts/vf/public/eco/ecobl2074.vf + RELOC/fonts/vf/public/eco/ecobl2488.vf + RELOC/fonts/vf/public/eco/ecobl2986.vf + RELOC/fonts/vf/public/eco/ecobl3583.vf + RELOC/fonts/vf/public/eco/ecobx0500.vf + RELOC/fonts/vf/public/eco/ecobx0600.vf + RELOC/fonts/vf/public/eco/ecobx0700.vf + RELOC/fonts/vf/public/eco/ecobx0800.vf + RELOC/fonts/vf/public/eco/ecobx0900.vf + RELOC/fonts/vf/public/eco/ecobx1000.vf + RELOC/fonts/vf/public/eco/ecobx1095.vf + RELOC/fonts/vf/public/eco/ecobx1200.vf + RELOC/fonts/vf/public/eco/ecobx1440.vf + RELOC/fonts/vf/public/eco/ecobx1728.vf + RELOC/fonts/vf/public/eco/ecobx2074.vf + RELOC/fonts/vf/public/eco/ecobx2488.vf + RELOC/fonts/vf/public/eco/ecobx2986.vf + RELOC/fonts/vf/public/eco/ecobx3583.vf + RELOC/fonts/vf/public/eco/ecodh0500.vf + RELOC/fonts/vf/public/eco/ecodh0600.vf + RELOC/fonts/vf/public/eco/ecodh0700.vf + RELOC/fonts/vf/public/eco/ecodh0800.vf + RELOC/fonts/vf/public/eco/ecodh0900.vf + RELOC/fonts/vf/public/eco/ecodh1000.vf + RELOC/fonts/vf/public/eco/ecodh1095.vf + RELOC/fonts/vf/public/eco/ecodh1200.vf + RELOC/fonts/vf/public/eco/ecodh1440.vf + RELOC/fonts/vf/public/eco/ecodh1728.vf + RELOC/fonts/vf/public/eco/ecodh2074.vf + RELOC/fonts/vf/public/eco/ecodh2488.vf + RELOC/fonts/vf/public/eco/ecodh2986.vf + RELOC/fonts/vf/public/eco/ecodh3583.vf + RELOC/fonts/vf/public/eco/ecoit0600.vf + RELOC/fonts/vf/public/eco/ecoit0700.vf + RELOC/fonts/vf/public/eco/ecoit0800.vf + RELOC/fonts/vf/public/eco/ecoit0900.vf + RELOC/fonts/vf/public/eco/ecoit1000.vf + RELOC/fonts/vf/public/eco/ecoit1095.vf + RELOC/fonts/vf/public/eco/ecoit1200.vf + RELOC/fonts/vf/public/eco/ecoit1440.vf + RELOC/fonts/vf/public/eco/ecoit1728.vf + RELOC/fonts/vf/public/eco/ecoit2074.vf + RELOC/fonts/vf/public/eco/ecoit2488.vf + RELOC/fonts/vf/public/eco/ecoit2986.vf + RELOC/fonts/vf/public/eco/ecoit3583.vf + RELOC/fonts/vf/public/eco/ecorb0500.vf + RELOC/fonts/vf/public/eco/ecorb0600.vf + RELOC/fonts/vf/public/eco/ecorb0700.vf + RELOC/fonts/vf/public/eco/ecorb0800.vf + RELOC/fonts/vf/public/eco/ecorb0900.vf + RELOC/fonts/vf/public/eco/ecorb1000.vf + RELOC/fonts/vf/public/eco/ecorb1095.vf + RELOC/fonts/vf/public/eco/ecorb1200.vf + RELOC/fonts/vf/public/eco/ecorb1440.vf + RELOC/fonts/vf/public/eco/ecorb1728.vf + RELOC/fonts/vf/public/eco/ecorb2074.vf + RELOC/fonts/vf/public/eco/ecorb2488.vf + RELOC/fonts/vf/public/eco/ecorb2986.vf + RELOC/fonts/vf/public/eco/ecorb3583.vf + RELOC/fonts/vf/public/eco/ecorm0500.vf + RELOC/fonts/vf/public/eco/ecorm0600.vf + RELOC/fonts/vf/public/eco/ecorm0700.vf + RELOC/fonts/vf/public/eco/ecorm0800.vf + RELOC/fonts/vf/public/eco/ecorm0900.vf + RELOC/fonts/vf/public/eco/ecorm1000.vf + RELOC/fonts/vf/public/eco/ecorm1095.vf + RELOC/fonts/vf/public/eco/ecorm1200.vf + RELOC/fonts/vf/public/eco/ecorm1440.vf + RELOC/fonts/vf/public/eco/ecorm1728.vf + RELOC/fonts/vf/public/eco/ecorm2074.vf + RELOC/fonts/vf/public/eco/ecorm2488.vf + RELOC/fonts/vf/public/eco/ecorm2986.vf + RELOC/fonts/vf/public/eco/ecorm3583.vf + RELOC/fonts/vf/public/eco/ecosi0500.vf + RELOC/fonts/vf/public/eco/ecosi0600.vf + RELOC/fonts/vf/public/eco/ecosi0700.vf + RELOC/fonts/vf/public/eco/ecosi0800.vf + RELOC/fonts/vf/public/eco/ecosi0900.vf + RELOC/fonts/vf/public/eco/ecosi1000.vf + RELOC/fonts/vf/public/eco/ecosi1095.vf + RELOC/fonts/vf/public/eco/ecosi1200.vf + RELOC/fonts/vf/public/eco/ecosi1440.vf + RELOC/fonts/vf/public/eco/ecosi1728.vf + RELOC/fonts/vf/public/eco/ecosi2074.vf + RELOC/fonts/vf/public/eco/ecosi2488.vf + RELOC/fonts/vf/public/eco/ecosi2986.vf + RELOC/fonts/vf/public/eco/ecosi3583.vf + RELOC/fonts/vf/public/eco/ecosl0500.vf + RELOC/fonts/vf/public/eco/ecosl0600.vf + RELOC/fonts/vf/public/eco/ecosl0700.vf + RELOC/fonts/vf/public/eco/ecosl0800.vf + RELOC/fonts/vf/public/eco/ecosl0900.vf + RELOC/fonts/vf/public/eco/ecosl1000.vf + RELOC/fonts/vf/public/eco/ecosl1095.vf + RELOC/fonts/vf/public/eco/ecosl1200.vf + RELOC/fonts/vf/public/eco/ecosl1440.vf + RELOC/fonts/vf/public/eco/ecosl1728.vf + RELOC/fonts/vf/public/eco/ecosl2074.vf + RELOC/fonts/vf/public/eco/ecosl2488.vf + RELOC/fonts/vf/public/eco/ecosl2986.vf + RELOC/fonts/vf/public/eco/ecosl3583.vf + RELOC/fonts/vf/public/eco/ecoso0500.vf + RELOC/fonts/vf/public/eco/ecoso0600.vf + RELOC/fonts/vf/public/eco/ecoso0700.vf + RELOC/fonts/vf/public/eco/ecoso0800.vf + RELOC/fonts/vf/public/eco/ecoso0900.vf + RELOC/fonts/vf/public/eco/ecoso1000.vf + RELOC/fonts/vf/public/eco/ecoso1095.vf + RELOC/fonts/vf/public/eco/ecoso1200.vf + RELOC/fonts/vf/public/eco/ecoso1440.vf + RELOC/fonts/vf/public/eco/ecoso1728.vf + RELOC/fonts/vf/public/eco/ecoso2074.vf + RELOC/fonts/vf/public/eco/ecoso2488.vf + RELOC/fonts/vf/public/eco/ecoso2986.vf + RELOC/fonts/vf/public/eco/ecoso3583.vf + RELOC/fonts/vf/public/eco/ecoss0500.vf + RELOC/fonts/vf/public/eco/ecoss0600.vf + RELOC/fonts/vf/public/eco/ecoss0700.vf + RELOC/fonts/vf/public/eco/ecoss0800.vf + RELOC/fonts/vf/public/eco/ecoss0900.vf + RELOC/fonts/vf/public/eco/ecoss1000.vf + RELOC/fonts/vf/public/eco/ecoss1095.vf + RELOC/fonts/vf/public/eco/ecoss1200.vf + RELOC/fonts/vf/public/eco/ecoss1440.vf + RELOC/fonts/vf/public/eco/ecoss1728.vf + RELOC/fonts/vf/public/eco/ecoss2074.vf + RELOC/fonts/vf/public/eco/ecoss2488.vf + RELOC/fonts/vf/public/eco/ecoss2986.vf + RELOC/fonts/vf/public/eco/ecoss3583.vf + RELOC/fonts/vf/public/eco/ecost0600.vf + RELOC/fonts/vf/public/eco/ecost0700.vf + RELOC/fonts/vf/public/eco/ecost0800.vf + RELOC/fonts/vf/public/eco/ecost0900.vf + RELOC/fonts/vf/public/eco/ecost1000.vf + RELOC/fonts/vf/public/eco/ecost1095.vf + RELOC/fonts/vf/public/eco/ecost1200.vf + RELOC/fonts/vf/public/eco/ecost1440.vf + RELOC/fonts/vf/public/eco/ecost1728.vf + RELOC/fonts/vf/public/eco/ecost2074.vf + RELOC/fonts/vf/public/eco/ecost2488.vf + RELOC/fonts/vf/public/eco/ecost2986.vf + RELOC/fonts/vf/public/eco/ecost3583.vf + RELOC/fonts/vf/public/eco/ecosx0500.vf + RELOC/fonts/vf/public/eco/ecosx0600.vf + RELOC/fonts/vf/public/eco/ecosx0700.vf + RELOC/fonts/vf/public/eco/ecosx0800.vf + RELOC/fonts/vf/public/eco/ecosx0900.vf + RELOC/fonts/vf/public/eco/ecosx1000.vf + RELOC/fonts/vf/public/eco/ecosx1095.vf + RELOC/fonts/vf/public/eco/ecosx1200.vf + RELOC/fonts/vf/public/eco/ecosx1440.vf + RELOC/fonts/vf/public/eco/ecosx1728.vf + RELOC/fonts/vf/public/eco/ecosx2074.vf + RELOC/fonts/vf/public/eco/ecosx2488.vf + RELOC/fonts/vf/public/eco/ecosx2986.vf + RELOC/fonts/vf/public/eco/ecosx3583.vf + RELOC/fonts/vf/public/eco/ecoti0500.vf + RELOC/fonts/vf/public/eco/ecoti0600.vf + RELOC/fonts/vf/public/eco/ecoti0700.vf + RELOC/fonts/vf/public/eco/ecoti0800.vf + RELOC/fonts/vf/public/eco/ecoti0900.vf + RELOC/fonts/vf/public/eco/ecoti1000.vf + RELOC/fonts/vf/public/eco/ecoti1095.vf + RELOC/fonts/vf/public/eco/ecoti1200.vf + RELOC/fonts/vf/public/eco/ecoti1440.vf + RELOC/fonts/vf/public/eco/ecoti1728.vf + RELOC/fonts/vf/public/eco/ecoti2074.vf + RELOC/fonts/vf/public/eco/ecoti2488.vf + RELOC/fonts/vf/public/eco/ecoti2986.vf + RELOC/fonts/vf/public/eco/ecoti3583.vf + RELOC/fonts/vf/public/eco/ecott0600.vf + RELOC/fonts/vf/public/eco/ecott0700.vf + RELOC/fonts/vf/public/eco/ecott0800.vf + RELOC/fonts/vf/public/eco/ecott0900.vf + RELOC/fonts/vf/public/eco/ecott1000.vf + RELOC/fonts/vf/public/eco/ecott1095.vf + RELOC/fonts/vf/public/eco/ecott1200.vf + RELOC/fonts/vf/public/eco/ecott1440.vf + RELOC/fonts/vf/public/eco/ecott1728.vf + RELOC/fonts/vf/public/eco/ecott2074.vf + RELOC/fonts/vf/public/eco/ecott2488.vf + RELOC/fonts/vf/public/eco/ecott2986.vf + RELOC/fonts/vf/public/eco/ecott3583.vf + RELOC/fonts/vf/public/eco/ecoui0500.vf + RELOC/fonts/vf/public/eco/ecoui0600.vf + RELOC/fonts/vf/public/eco/ecoui0700.vf + RELOC/fonts/vf/public/eco/ecoui0800.vf + RELOC/fonts/vf/public/eco/ecoui0900.vf + RELOC/fonts/vf/public/eco/ecoui1000.vf + RELOC/fonts/vf/public/eco/ecoui1095.vf + RELOC/fonts/vf/public/eco/ecoui1200.vf + RELOC/fonts/vf/public/eco/ecoui1440.vf + RELOC/fonts/vf/public/eco/ecoui1728.vf + RELOC/fonts/vf/public/eco/ecoui2074.vf + RELOC/fonts/vf/public/eco/ecoui2488.vf + RELOC/fonts/vf/public/eco/ecoui2986.vf + RELOC/fonts/vf/public/eco/ecoui3583.vf + RELOC/fonts/vf/public/eco/ecovi0600.vf + RELOC/fonts/vf/public/eco/ecovi0700.vf + RELOC/fonts/vf/public/eco/ecovi0800.vf + RELOC/fonts/vf/public/eco/ecovi0900.vf + RELOC/fonts/vf/public/eco/ecovi1000.vf + RELOC/fonts/vf/public/eco/ecovi1095.vf + RELOC/fonts/vf/public/eco/ecovi1200.vf + RELOC/fonts/vf/public/eco/ecovi1440.vf + RELOC/fonts/vf/public/eco/ecovi1728.vf + RELOC/fonts/vf/public/eco/ecovi2074.vf + RELOC/fonts/vf/public/eco/ecovi2488.vf + RELOC/fonts/vf/public/eco/ecovi2986.vf + RELOC/fonts/vf/public/eco/ecovi3583.vf + RELOC/fonts/vf/public/eco/ecovt0600.vf + RELOC/fonts/vf/public/eco/ecovt0700.vf + RELOC/fonts/vf/public/eco/ecovt0800.vf + RELOC/fonts/vf/public/eco/ecovt0900.vf + RELOC/fonts/vf/public/eco/ecovt1000.vf + RELOC/fonts/vf/public/eco/ecovt1095.vf + RELOC/fonts/vf/public/eco/ecovt1200.vf + RELOC/fonts/vf/public/eco/ecovt1440.vf + RELOC/fonts/vf/public/eco/ecovt1728.vf + RELOC/fonts/vf/public/eco/ecovt2074.vf + RELOC/fonts/vf/public/eco/ecovt2488.vf + RELOC/fonts/vf/public/eco/ecovt2986.vf + RELOC/fonts/vf/public/eco/ecovt3583.vf + RELOC/tex/latex/eco/T1cmodh.fd + RELOC/tex/latex/eco/T1cmor.fd + RELOC/tex/latex/eco/T1cmoss.fd + RELOC/tex/latex/eco/T1cmott.fd + RELOC/tex/latex/eco/T1cmovt.fd + RELOC/tex/latex/eco/eco.sty +catalogue-ctan /fonts/eco +catalogue-license gpl +catalogue-topics font font-virtual +catalogue-version 1.3 + +name ecobiblatex +category Package +revision 39233 +shortdesc Global Ecology and Biogeography BibLaTeX styles for the Biber backend +relocated 1 +longdesc This bundle provides a set of styles for creating +longdesc bibliographies using BibLaTeX in the style of the Global +longdesc Ecology and Biogeography journal. It comprises styles based on +longdesc the conventions of John Wiley & Sons Ltd and Global Ecology and +longdesc Biogeography Conventions (c). +containersize 1676 +containerchecksum bfa49fbd340223db68ae6d0906b617c06605a41aa141ce7863d5ab85b4da44eaba554b93bf163f7e4b7cd2c5131e22ba30161082663588ce85240fe2147433a5 +doccontainersize 436624 +doccontainerchecksum e12bf5be5028e848baf10fed969a5ea94e2246153b481fc1b8ab55a6fbb5c356391ec4ccdb37ae7c71d76885000d9d74e46271402ed83ed08d1d67a94cf372d9 +docfiles size=115 + RELOC/doc/latex/ecobiblatex/README.txt details="Readme" + RELOC/doc/latex/ecobiblatex/ecobiblatex.bib + RELOC/doc/latex/ecobiblatex/ecobiblatex.pdf details="Package documentation" + RELOC/doc/latex/ecobiblatex/ecobiblatex.tex +runfiles size=2 + RELOC/tex/latex/ecobiblatex/ecobiblatex.bbx + RELOC/tex/latex/ecobiblatex/ecobiblatex.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/ecobiblatex +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.0 + +name econ-bst +category Package +revision 54191 +shortdesc BibTeX style for economics papers +relocated 1 +longdesc This is a BibTeX style file for papers in economics. It +longdesc provides the following features: author-year type citation +longdesc reference style used in economics papers highly customizable +longdesc use of "certified random order" as proposed by Ray Robson +longdesc (2018) +containersize 19448 +containerchecksum d3b6f06f66c1c6ad618a277c1db2021624d61f32271eebe899de9a6ffa10ff0dd2ecb22da64c1acc1122093a535a3af20b00fc7aa8831a1b0bc18e9032716e58 +doccontainersize 833168 +doccontainerchecksum 13887967396b2058f7120ff3e0144f275b6e642e0da4eb69f51ad064351e02fc0dd362308fe5131120ceba7e6cbe9b4079adda0407fe76179a52e3ce1660fcfe +docfiles size=383 + RELOC/doc/bibtex/econ-bst/CHANGES.md + RELOC/doc/bibtex/econ-bst/README.md details="Readme" + RELOC/doc/bibtex/econ-bst/customization/README.md details="Readme" + RELOC/doc/bibtex/econ-bst/customization/cited-part.tex + RELOC/doc/bibtex/econ-bst/customization/econ-a.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-a.tex + RELOC/doc/bibtex/econ-bst/customization/econ-abbr.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-abbr.tex + RELOC/doc/bibtex/econ-bst/customization/econ-aea.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-aea.tex + RELOC/doc/bibtex/econ-bst/customization/econ-b.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-b.tex + RELOC/doc/bibtex/econ-bst/customization/econ-default.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-default.tex + RELOC/doc/bibtex/econ-bst/customization/econ-econometrica.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-econometrica.tex + RELOC/doc/bibtex/econ-bst/customization/econ-jet.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-jet.tex + RELOC/doc/bibtex/econ-bst/customization/econ-jie.tex + RELOC/doc/bibtex/econ-bst/customization/econ-jpe.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-jpe.tex + RELOC/doc/bibtex/econ-bst/customization/econ-no-sort.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-no-sort.tex + RELOC/doc/bibtex/econ-bst/customization/econ-numbers.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-numbers.tex + RELOC/doc/bibtex/econ-bst/customization/econ-old.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-old.tex + RELOC/doc/bibtex/econ-bst/econ-example.bib + RELOC/doc/bibtex/econ-bst/econ-example.pdf details="Example of use" + RELOC/doc/bibtex/econ-bst/econ-example.tex +runfiles size=253 + RELOC/bibtex/bst/econ-bst/econ-a.bst + RELOC/bibtex/bst/econ-bst/econ-abbr.bst + RELOC/bibtex/bst/econ-bst/econ-aea.bst + RELOC/bibtex/bst/econ-bst/econ-b.bst + RELOC/bibtex/bst/econ-bst/econ-econometrica.bst + RELOC/bibtex/bst/econ-bst/econ-jet.bst + RELOC/bibtex/bst/econ-bst/econ-jie.bst + RELOC/bibtex/bst/econ-bst/econ-jpe.bst + RELOC/bibtex/bst/econ-bst/econ-no-sort.bst + RELOC/bibtex/bst/econ-bst/econ-old.bst + RELOC/bibtex/bst/econ-bst/econ.bst +catalogue-also economic +catalogue-contact-home https://github.com/ShiroTakeda/econ-bst +catalogue-ctan /biblio/bibtex/contrib/econ-bst +catalogue-license lppl1.3 +catalogue-topics bibtex-sty +catalogue-version 2.8 + +name econlipsum +category Package +revision 58390 +shortdesc Generate sentences from economic articles +relocated 1 +longdesc This package is a blind text generator that ouputs sentences +longdesc inferred from abstracts of economic articles. All the +longdesc paragraphs are taken with permission from +longdesc https://ipsum.mwt.me/. +containersize 80636 +containerchecksum e3b007e83980cc9d7ef7fbc1f7cf067d757ba29c886d20f6c53d028236cc688fad23d7ad24cbfde19b6adb77a159b10f2bad617de009b2fa769aaba042a8ff01 +doccontainersize 567024 +doccontainerchecksum a540e4cb09c88d1614ea0dd46bc35396d9f11a39089dfc9d83c31587a2f72c0537f5d7fe3c8ba1a25559d8b7fa4dd75a577820eeb02386d50fe418b50c6fb8b9 +docfiles size=141 + RELOC/doc/latex/econlipsum/README.md details="Readme" + RELOC/doc/latex/econlipsum/econlipsum.pdf details="Package documentation" +srccontainersize 84044 +srccontainerchecksum bcbd36e3ee0ed9e941e34dece41fb4e927f5f826fccfda3612f4757d72b7485cd34e9569d867435eaddaa763b28199db765f9caec107b2e6954a3b9da8e44a37 +srcfiles size=67 + RELOC/source/latex/econlipsum/econlipsum.dtx +runfiles size=64 + RELOC/tex/latex/econlipsum/econlipsum.sty +catalogue-also kantlipsum antanilipsum +catalogue-ctan /macros/latex/contrib/econlipsum +catalogue-license lppl1.3c +catalogue-topics dummy-gen +catalogue-version 0.8.2 + +name econometrics +category Package +revision 39396 +shortdesc Defines some commands that simplify mathematic notation in economic and econometric writing +relocated 1 +longdesc Econometrics is a package that defines some commands that +longdesc simplify mathematic notation in economic and econometrics +longdesc writing. The commands are related to the notation of vectors, +longdesc matrices, sets, calligraphic and roman letters statistical +longdesc distributions constants and symbols matrix operators and +longdesc statistical operators. The package is based on "Notation in +longdesc Econometrics: a proposal for a standard" by Karim Abadir and +longdesc Jan R. Magnus, The Econometrics Journal (2002), 5, 76-90. +containersize 2520 +containerchecksum 40c205421ca11111d2aeae9f84b4e418e6b4f260858805c03029753af03def61221b81eabc18dea5fd4cf5722e3dca1ff9f575264257db3a8431b061177530dd +doccontainersize 190740 +doccontainerchecksum b5992f38536f0e4ec1c570d78523530b53e428d922517d0ad380ec76dcd2ee21243b9979e876a7f809b1581f4c4b6907bcd3f581dff97c13a0fea2a0fca1d790 +docfiles size=53 + RELOC/doc/latex/econometrics/README.txt details="Readme" + RELOC/doc/latex/econometrics/econometrics.pdf details="Package documentation" + RELOC/doc/latex/econometrics/econometrics.tex +runfiles size=2 + RELOC/tex/latex/econometrics/econometrics.sty +catalogue-ctan /macros/latex/contrib/econometrics +catalogue-license lppl1.3 +catalogue-topics statistics +catalogue-version 1.0 + +name economic +category Package +revision 32639 +shortdesc BibTeX support for submitting to Economics journals +relocated 1 +longdesc The bundle offers macros and BibTeX styles for the American +longdesc Economic Review (AER), the American Journal of Agricultural +longdesc Economics (AJAE), the Canadian Journal of Economics (CJE), the +longdesc European Review of Agricultural Economics (ERAE), the +longdesc International Economic Review (IER) and Economica. The macro +longdesc sets are based on (and require) the harvard package, and all +longdesc provide variations of author-date styles of presentation. +containersize 31200 +containerchecksum d8bad4a76eefc8729ea06e93a63adadfeed57de5694775bc44f1dfe03217101609ada6d12b7a2382b9d80d068f0c51fb2ef45c2cf289fe294efe23fcf0bd028a +doccontainersize 815976 +doccontainerchecksum 39c319f14ee3d6fb10fa3c4f5d3a873322d332bc181a33a70020a9fa787383b72809b3b9aea5fcf4a3cff9930543e0d0269f74146c12f2b0d77a4f77c159eeb7 +docfiles size=268 + RELOC/doc/bibtex/economic/CHANGELOG + RELOC/doc/bibtex/economic/NEWS + RELOC/doc/bibtex/economic/README details="Readme" + RELOC/doc/bibtex/economic/aer-cje-ex.bib + RELOC/doc/bibtex/economic/aer-cje-ex.tex + RELOC/doc/bibtex/economic/aer-natbib-ex.tex + RELOC/doc/bibtex/economic/ajae-ex.bib + RELOC/doc/bibtex/economic/ajae-ex.pdf + RELOC/doc/bibtex/economic/ajae-ex.tex + RELOC/doc/bibtex/economic/apecon-ex.bib + RELOC/doc/bibtex/economic/apecon-ex.pdf + RELOC/doc/bibtex/economic/apecon-ex.tex + RELOC/doc/bibtex/economic/ecca-ex.bib + RELOC/doc/bibtex/economic/ecca-ex.pdf + RELOC/doc/bibtex/economic/ecca-ex.tex + RELOC/doc/bibtex/economic/erae-ex.bib + RELOC/doc/bibtex/economic/erae-ex.pdf + RELOC/doc/bibtex/economic/erae-ex.tex + RELOC/doc/bibtex/economic/ier-bib-test.pdf + RELOC/doc/bibtex/economic/ier-bib-test.tex + RELOC/doc/bibtex/economic/ier-ex.bib + RELOC/doc/bibtex/economic/itaxpf-ex-title.pdf + RELOC/doc/bibtex/economic/itaxpf-ex-title.tex + RELOC/doc/bibtex/economic/itaxpf-ex.bib + RELOC/doc/bibtex/economic/itaxpf-ex.pdf + RELOC/doc/bibtex/economic/itaxpf-ex.tex + RELOC/doc/bibtex/economic/oegatb-ex.bib + RELOC/doc/bibtex/economic/oegatb-ex.pdf + RELOC/doc/bibtex/economic/oegatb-ex.png + RELOC/doc/bibtex/economic/oegatb-ex.tex +runfiles size=171 + RELOC/bibtex/bst/economic/aer.bst + RELOC/bibtex/bst/economic/aertt.bst + RELOC/bibtex/bst/economic/agecon.bst + RELOC/bibtex/bst/economic/ajae.bst + RELOC/bibtex/bst/economic/apecon.bst + RELOC/bibtex/bst/economic/cje.bst + RELOC/bibtex/bst/economic/ecca.bst + RELOC/bibtex/bst/economic/ecta.bst + RELOC/bibtex/bst/economic/erae.bst + RELOC/bibtex/bst/economic/ier.bst + RELOC/bibtex/bst/economic/itaxpf.bst + RELOC/bibtex/bst/economic/jae.bst + RELOC/bibtex/bst/economic/jpe.bst + RELOC/bibtex/bst/economic/jss2.bst + RELOC/bibtex/bst/economic/oega.bst + RELOC/bibtex/bst/economic/regstud.bst + RELOC/bibtex/bst/economic/tandfx.bst + RELOC/bibtex/bst/economic/worlddev.bst + RELOC/tex/latex/economic/aer.sty + RELOC/tex/latex/economic/aertt.sty + RELOC/tex/latex/economic/agecon.cls + RELOC/tex/latex/economic/ajae.cls + RELOC/tex/latex/economic/apecon.cls + RELOC/tex/latex/economic/cje.sty + RELOC/tex/latex/economic/ecca.cls + RELOC/tex/latex/economic/erae.cls + RELOC/tex/latex/economic/itaxpf.cls + RELOC/tex/latex/economic/jrurstud.cls + RELOC/tex/latex/economic/njf.cls + RELOC/tex/latex/economic/oegatb.cls + RELOC/tex/latex/economic/pocoec.cls + RELOC/tex/latex/economic/regstud.cls + RELOC/tex/latex/economic/worlddev.cls +catalogue-contact-repository http://sourceforge.net/projects/economtex/ +catalogue-ctan /biblio/bibtex/contrib/economic +catalogue-license lppl +catalogue-topics bibtex-sty + +name ecothesis +category Package +revision 48007 +shortdesc LaTeX thesis template for the Universidade Federal de Vicosa (UFV), Brazil +relocated 1 +longdesc The package provides a LaTeX thesis template for the +longdesc Universidade Federal de Vicosa (UFV), Brazil. +containersize 484 +containerchecksum bed57bb0ea79c74517b26e51d88966f9a05943c4df6464200ffe36f486e9cabccaef2fced0a231b40b40410ef32c44a3ebaa984e6def30bde5d426dc68e42309 +doccontainersize 341312 +doccontainerchecksum 7e1e3716de1eb964142a85ab31e28fc807ca1433f964e44cc8a7103b9ed023457bcdb01af2797a5e22fcf75a2e851d9c534f17937fdc44e4ebb6b5a670c6c115 +docfiles size=104 + RELOC/doc/latex/ecothesis/README.txt details="Readme" + RELOC/doc/latex/ecothesis/capitulos/cap01/introduction.pdf + RELOC/doc/latex/ecothesis/capitulos/cap01/introduction.tex + RELOC/doc/latex/ecothesis/capitulos/cap01/referencias.bib + RELOC/doc/latex/ecothesis/capitulos/cap02/cap02.pdf + RELOC/doc/latex/ecothesis/capitulos/cap02/cap02.tex + RELOC/doc/latex/ecothesis/capitulos/cap02/referencias.bib + RELOC/doc/latex/ecothesis/capitulos/cap03/cap03.pdf + RELOC/doc/latex/ecothesis/capitulos/cap03/cap03.tex + RELOC/doc/latex/ecothesis/capitulos/cap03/referencias.bib + RELOC/doc/latex/ecothesis/dados.tex + RELOC/doc/latex/ecothesis/ecothesis.pdf details="Package documentation" language="pt-br" + RELOC/doc/latex/ecothesis/ecothesis.tex + RELOC/doc/latex/ecothesis/main.pdf + RELOC/doc/latex/ecothesis/main.tex + RELOC/doc/latex/ecothesis/preambulo/abstract.tex + RELOC/doc/latex/ecothesis/preambulo/agradecimentos.tex + RELOC/doc/latex/ecothesis/preambulo/aprovacao.tex + RELOC/doc/latex/ecothesis/preambulo/capa.tex + RELOC/doc/latex/ecothesis/preambulo/dedicatoria.tex + RELOC/doc/latex/ecothesis/preambulo/epigrafe.tex + RELOC/doc/latex/ecothesis/preambulo/resumo.tex + RELOC/doc/latex/ecothesis/res_abs.tex +catalogue-contact-repository https://github.com/ViniciusBRodrigues/TeseUFVLatex +catalogue-ctan /macros/latex/contrib/ecothesis +catalogue-license lppl1.3c +catalogue-topics dissertation +catalogue-version 1.2 + +name ecv +category Package +revision 24928 +shortdesc A fancy Curriculum Vitae class +relocated 1 +longdesc The class provides an environment for creating a fancily laid +longdesc out tabular curriculum vitae inspired by the european +longdesc curriculum vitae. The distribution comes with a German and an +longdesc English template. +containersize 3792 +containerchecksum 0ff0a352516aa90a19eb1a0a9bdc651601edc63f03c5cce9face4bd45b359734d954e2b7859a0244015e3933eaa2d3803d5579ab9260dde51a0ec89db8034910 +doccontainersize 252048 +doccontainerchecksum 1cb8871b552a3d91fb59c644ea98373742ba9bfea64a92911f67f2795afaf01babe82a691fb3344f236e42b92860b754d7e92132b266713948cd1a6af13c58d7 +docfiles size=104 + RELOC/doc/latex/ecv/COPYING + RELOC/doc/latex/ecv/README details="Readme" + RELOC/doc/latex/ecv/docstrip.cfg + RELOC/doc/latex/ecv/ecv.pdf details="Package documentation" + RELOC/doc/latex/ecv/template/CV-template_de.pdf details="Template (German)" language="de" + RELOC/doc/latex/ecv/template/CV-template_de.tex + RELOC/doc/latex/ecv/template/CV-template_en.pdf details="Template (English)" language="en" + RELOC/doc/latex/ecv/template/CV-template_en.tex + RELOC/doc/latex/ecv/template/Makefile + RELOC/doc/latex/ecv/template/portrait.eps +srccontainersize 10184 +srccontainerchecksum e17e9d577cb3a562a381c8ee8a09e7b3bbdd236812fd9e647b72fa18d6f7b11c9a44f70376d5dfdf2a3b81d1480b055d23e8889661b557e88c03f02eed033946 +srcfiles size=11 + RELOC/source/latex/ecv/ecv.dtx + RELOC/source/latex/ecv/ecv.ins +runfiles size=6 + RELOC/tex/latex/ecv/ecv.cls + RELOC/tex/latex/ecv/ecvEnglish.ldf + RELOC/tex/latex/ecv/ecvGerman.ldf + RELOC/tex/latex/ecv/ecvNLS.sty +catalogue-also curve europecv +catalogue-ctan /macros/latex/contrib/ecv +catalogue-license other-free +catalogue-topics cv class +catalogue-version 0.3 + +name eczar +category Package +revision 57716 +shortdesc A font family supporting Devanagari and Latin script +relocated 1 +longdesc rojhettaa sNsthecaa egjhaar haa yunikodd aadhaarit mukt ttNk +longdesc aahe. hyaa ttNkaat 45+3 bhaassaa leNttin v devnaagrii lipiit +longdesc purskRt kelyaa jaataat. vaibhv siNh hyaaNnii hyaa ttNkaacaa +longdesc abhiklp kelaa aahe v aajnyaavlii tsec nirmitii ddevhidd +longdesc brejhiinaa hyaaNnii kelii aahe. egzaar yh rozettaa dvaaraa +longdesc prkaashit yunikodd aadhaarit mukt ttNk hai / is ttNk dvaaraa +longdesc 45+3 bhaassaaeN laittin tthaa devnaagrii lipi meN purskRt kii +longdesc jaatii hai / vaibhv siNh ne is kaa abhiklp kiyaa hai aur +longdesc aajnyaavli tthaa nirmiti ddevidd breziinaa dvaaraa kii gyii hai +longdesc / Eczar is an open-source type family published by Rosetta. The +longdesc fonts support over 45+3 languages in Latin and Devanagari +longdesc scripts in 5 weights. These fonts were designed by Vaibhav +longdesc Singh, code and production are by David Brezina. +containersize 410460 +containerchecksum 47906067bd5e2bfe28e6451456e2187fc655986d4eacc89e9c3edf67bdffe7f54ef2c14029c9934db6c85acdacb006cd829255c2209d2d1dbcf57a98fde40e3c +doccontainersize 45580 +doccontainerchecksum 03fc47faa72ccbfbe696e68bc5f9c332eb7262cf1b3129c6b83fc5f5e2b5c3e0ba93b047dd9eb6d92c32e218d303896272d0c1d3d3dc7fd07b80757ced9f231f +docfiles size=16 + RELOC/doc/fonts/eczar/README.TEXLIVE + RELOC/doc/fonts/eczar/README.txt details="Readme" + RELOC/doc/fonts/eczar/eczar.pdf details="Font samples" + RELOC/doc/fonts/eczar/eczar.tex +runfiles size=252 + RELOC/fonts/opentype/public/eczar/Eczar-Bold.otf + RELOC/fonts/opentype/public/eczar/Eczar-ExtraBold.otf + RELOC/fonts/opentype/public/eczar/Eczar-Medium.otf + RELOC/fonts/opentype/public/eczar/Eczar-Regular.otf + RELOC/fonts/opentype/public/eczar/Eczar-SemiBold.otf +catalogue-contact-bugs https://github.com/rosettatype/eczar/issues +catalogue-contact-repository https://github.com/rosettatype/eczar +catalogue-ctan /fonts/eczar +catalogue-license ofl +catalogue-topics font font-indic font-multilingual font-otf font-ttf +catalogue-version 0.1 + +name ed +category Package +revision 25231 +shortdesc Editorial Notes for LaTeX documents +relocated 1 +longdesc This package defines a couple of editorial notes that simplify +longdesc collaboration on a LaTeX text. These allow authors to annotate +longdesc status information in the source. In draft mode, the +longdesc annotations are shown for communication, and in publication +longdesc mode these are suppressed. +containersize 2824 +containerchecksum a6999fbe2a9a44f961ef60d3da65ea306809d1ee5c39d2fc605982083d69c3c723a0e18f4042cbd441103421cb569008925279871ea8ceeb0af4c4a21b746943 +doccontainersize 292204 +doccontainerchecksum cd7bac245c14e969b5162b86cfc76e0673da357fb1492ba311930ea7e20a6db61e3a13be2069f4f589ab57cba9fdfb0fcc8779ec8607a624437d1b2bd746825b +docfiles size=75 + RELOC/doc/latex/ed/Makefile + RELOC/doc/latex/ed/README details="Readme" + RELOC/doc/latex/ed/ed.pdf details="Package documentation" + RELOC/doc/latex/ed/ed.sty.ltxml +srccontainersize 7676 +srccontainerchecksum 7736dd9bef8c265437675d87a6b70bf0bb67ad736b668210b7187ddfde899b145050e18a9d54629b966cabc8b46028dc982b107c0f869e581669b663d3267ba7 +srcfiles size=7 + RELOC/source/latex/ed/ed.dtx + RELOC/source/latex/ed/ed.ins +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-license lppl1 +catalogue-topics editorial +catalogue-version 1.8 + +name edfnotes +category Package +revision 21540 +shortdesc Critical annotations to footnotes with ednotes +relocated 1 +longdesc The package modifies the annotation commands and label-test +longdesc mechanism of the ednotes package so that critical notes appear +longdesc on the pages and in the order that one would expect. +containersize 14048 +containerchecksum 3ffca21a97b1e54045129a8894db25d677a54c791e3453f53285741bceff0eb4c7cc00e81706ef77ac475a0f54a7868f2e9b444df0c4e4ba6b161fdfa954dc07 +doccontainersize 281120 +doccontainerchecksum 144e2e22c4ceb6ea46235ed51b9a1ad4b20aa524af7b6eff617194aaec4f1606d857a8575e95816b4ef089e5c7d3fc1e2fc8e622486bafe9e5a9ace22bb44105 +docfiles size=95 + RELOC/doc/latex/edfnotes/PdUsample.pdf + RELOC/doc/latex/edfnotes/README details="Readme" + RELOC/doc/latex/edfnotes/README.pdf + RELOC/doc/latex/edfnotes/README.txt + RELOC/doc/latex/edfnotes/SRCFILEs.txt + RELOC/doc/latex/edfnotes/edfnotes.pdf details="Package documentation" +srccontainersize 2680 +srccontainerchecksum 9fb306c9b77f0988fcc2dde74336687e8678364e2d53167bff8053a5888de1cf51240778281a7c864a7b8a66738d2c894e7e4b7a88871f0f7ce0e40c61b706be +srcfiles size=4 + RELOC/source/latex/edfnotes/README.tex + RELOC/source/latex/edfnotes/edfnotes.tex + RELOC/source/latex/edfnotes/srcfiles.tex +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-license lppl1.3 +catalogue-topics crit-ed footnote +catalogue-version 0.6b + +name edichokey +category Package +revision 56223 +shortdesc Typeset dichotomous identification keys +relocated 1 +longdesc This is a LaTeX package for typesetting dichotomous +longdesc identification key in indented style. It can be considered as +longdesc an extended version of package dichokey, as edichokey is more +longdesc capable of dealing with complex keys. +containersize 1868 +containerchecksum c598495449919a67650e7afcc10924cf93f4c29e1dd32305f0581910aaea288d43e6c8c1b91ae9d849b354e343538350ef0d6e78513998a9d2fc6023cd3cf941 +doccontainersize 138132 +doccontainerchecksum 07a8689d20663340d5398a26cd548bbd53c5e6d5c7eac00e9e6478c780e397e765a8cca0e4b41a7b70f09130a1c7fac5326e5f2c46b95f40e11f0ba88b1b3039 +docfiles size=44 + RELOC/doc/latex/edichokey/README.md details="Readme" + RELOC/doc/latex/edichokey/edichokey-doc-en.pdf details="Package documentation" + RELOC/doc/latex/edichokey/edichokey-doc-en.tex + RELOC/doc/latex/edichokey/edichokey-ex.pdf details="Example of use" + RELOC/doc/latex/edichokey/edichokey-ex.tex +runfiles size=1 + RELOC/tex/latex/edichokey/edichokey.sty +catalogue-contact-bugs https://github.com/Mikumikunisiteageru/edichokey/issues +catalogue-contact-repository https://github.com/Mikumikunisiteageru/edichokey +catalogue-ctan /macros/latex/contrib/edichokey +catalogue-license lppl1.3c +catalogue-topics biology +catalogue-version 2.01y + +name edmac +category Package +revision 15878 +shortdesc Typeset critical editions +relocated 1 +longdesc This is the type example package for typesetting scholarly +longdesc critical editions. +containersize 13196 +containerchecksum a9f12f0745305ce261b142f96ed496341997098461df749715723fb09d978ebb037976c7fd7176eae2475d24c71df201a0123b1651749b2b96c9ed9429746f6e +doccontainersize 89884 +doccontainerchecksum a54f4b1171f8f6edd6e655f49adec69f21a8293af03a02228056ca700feb7b656cbf715047a20f45127695fa851af45fb5e4852ccbf7d28374a02d14f6e55acc +docfiles size=89 + RELOC/doc/latex/edmac/COPYRIGHT + RELOC/doc/latex/edmac/braonain.tex + RELOC/doc/latex/edmac/copying + RELOC/doc/latex/edmac/ed-nfss.txt + RELOC/doc/latex/edmac/edmac.doc + RELOC/doc/latex/edmac/edstanza.doc + RELOC/doc/latex/edmac/edszadoc.tex + RELOC/doc/latex/edmac/features.tex + RELOC/doc/latex/edmac/readme +srccontainersize 952 +srccontainerchecksum b32626fb4acd41e9d853131d1c32e43d2cf10ee021ada41b06b8cee5c88b1f8ec8511057f83865c9237d8a96a9648edf8696d9fb6166e4c9f072e8dfc10808a2 +srcfiles size=1 + RELOC/source/latex/edmac/edmac.drv +runfiles size=17 + RELOC/tex/generic/edmac/edmac.tex + RELOC/tex/generic/edmac/edmacfss.sty + RELOC/tex/generic/edmac/edstanza.tex + RELOC/tex/generic/edmac/tabmac.tex +catalogue-also ledmac ednotes manyfoot lineno poemscol +catalogue-contact-home http://tug.org/edmac +catalogue-ctan /macros/plain/contrib/edmac +catalogue-license gpl2 +catalogue-topics crit-ed +catalogue-version 3.17 + +name edmargin +category Package +revision 27599 +shortdesc Multiple series of endnotes for critical editions +relocated 1 +longdesc Edmargin provides a very simple scheme for endnote sections for +longdesc critical editions. Endnotes can either be marked in the text, +longdesc or with marginal references to the page in the note sections +longdesc where the note is to be found. Notes can be set in individual +longdesc paragraphs, or in block paragraph mode (where there are many +longdesc short notes). Note sections will have running headers of the +longdesc form "Textual notes to pp. xx--yy". New note sections can be +longdesc created on the fly. There are predefined endnote sections for +longdesc textual notes, emendations, and explanatory notes. +containersize 4676 +containerchecksum 242e7eff25ffb539353b73c18d31a268efaebe4fb51d9ba1cf376346e559ea2fb380743b29056aeb8e4db2065a660bf59e7c8dcf5469f91c39135be2b8c9527c +doccontainersize 300996 +doccontainerchecksum da77df03b3eb89daa0a544d61c88956a7105073110dd9e1f4d1a753805bdf722a63f5a9674897f4f09a92f689d6bbafc190c870cf5784e02df7efed781dbbcee +docfiles size=75 + RELOC/doc/latex/edmargin/README details="Readme" + RELOC/doc/latex/edmargin/edmargin.pdf details="Package documentation" +srccontainersize 14440 +srccontainerchecksum 6f3b848e12b92f773ed23f51bcfcd52fbb8209906b937486c87ee34cbe29d40739cb6c20799ce64bfbe7b0e3dfb96d604aaccd005ecc1dbb7126bf5302d3c814 +srcfiles size=16 + RELOC/source/latex/edmargin/edmargin.dtx + RELOC/source/latex/edmargin/edmargin.ins +runfiles size=6 + RELOC/tex/latex/edmargin/edmargin.sty +catalogue-ctan /macros/latex/contrib/edmargin +catalogue-license lppl +catalogue-topics crit-ed notes +catalogue-version 1.2 + +name ednotes +category Package +revision 35829 +shortdesc Typeset scholarly editions +relocated 1 +longdesc A macro package for typesetting scholarly critical editions. +longdesc Provides macros for critical edition typesetting with LaTeX, +longdesc including support for line numbers and layers of footnotes. +depend ncctools +containersize 31976 +containerchecksum be181a2665a8dbd44d98f75a0bc718b460d85c4fb66e412e18f12b542d65a870660597ece71588e9410214a61d6e2d9883089ab1439eeefd63a5cea95fca5d6b +doccontainersize 375072 +doccontainerchecksum 242ee2a951a61be7dc0133b0a156611bc574c4c54b879701960f312c58613221acad1c83132658d622962ac24b13b4cb5c91e46c77f774dc3865db57e126e0b7 +docfiles size=145 + RELOC/doc/latex/ednotes/CHANGES.txt + RELOC/doc/latex/ednotes/CHANGING.txt + RELOC/doc/latex/ednotes/README details="Readme" + RELOC/doc/latex/ednotes/README.TEXLIVE + RELOC/doc/latex/ednotes/README4U.txt + RELOC/doc/latex/ednotes/READMORE.txt + RELOC/doc/latex/ednotes/ednotes.pdf details="All plain text files, as pdf" language="en" + RELOC/doc/latex/ednotes/ednotes.tex + RELOC/doc/latex/ednotes/ednotugb.pdf details="TUGboat paper" language="en" + RELOC/doc/latex/ednotes/emathtst.tex + RELOC/doc/latex/ednotes/varnrule.tex + RELOC/doc/latex/ednotes/visible.txt +runfiles size=30 + RELOC/tex/latex/ednotes/edcntwd0.sty + RELOC/tex/latex/ednotes/ednotes.sty + RELOC/tex/latex/ednotes/lblchng1.sty + RELOC/tex/latex/ednotes/mfparptc.sty + RELOC/tex/latex/ednotes/mfparxsp.sty +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-license lppl +catalogue-topics crit-ed +catalogue-version 1.3a + +name eemeir +category Package +revision 15878 +shortdesc Adjust the gender of words in a document +relocated 1 +longdesc Defines macros for third-person singular pronouns (\E, \Em, +longdesc \Eir, \Eirs), which expand differently according to a +longdesc masculine/feminine switch. (If the switch is 'masculine', they +longdesc would expand to 'he', 'him', 'his' and 'his'; if 'feminine', +longdesc they would expand to 'she', 'her', 'her' and 'hers'. Apart from +longdesc the pronouns, one can define 'word pairs', such as +longdesc mother/father, daughter/son, and so on. Gender may be defined +longdesc once per document, as an environment, or may be flipped on the +longdesc fly. +containersize 1908 +containerchecksum 81679a08a320275221058cf0a73d71489621bfa4322a4b90759f67253df06e5c98c1325846966924c145092d9f63d9ba51544d0640c7f0827c7ebc42fddf9f3a +doccontainersize 135680 +doccontainerchecksum 4f7a67d76504c4fa8de1f7f4e5db19c1ed1509a3ee68d93811c84e3ca523b8ff040d61e14881ccf75d20edc7c6b52550b3b3fdfa58a9a73bf21ec7f8b0b719aa +docfiles size=41 + RELOC/doc/latex/eemeir/README + RELOC/doc/latex/eemeir/eemeir.pdf +srccontainersize 7028 +srccontainerchecksum a75e1bc385293e5e418af04a1c03ab606c5c77fa95bc6830a029e53e4298edd853c0bdb92ec0b97994fb8d2b7af293c3ef60f3d14974b87e079f15f904436d4b +srcfiles size=6 + RELOC/source/latex/eemeir/eemeir.dtx + RELOC/source/latex/eemeir/eemeir.ins +runfiles size=1 + RELOC/tex/latex/eemeir/eemeir.sty +catalogue-also he-she gender +catalogue-ctan /macros/latex/contrib/eemeir +catalogue-license lppl +catalogue-topics linguistic typesetting +catalogue-version 1.1b + +name eepic +category Package +revision 15878 +shortdesc Extensions to epic and the LaTeX drawing tools +relocated 1 +longdesc Extensions to epic and the LaTeX picture drawing environment, +longdesc include the drawing of lines at any slope, the drawing of +longdesc circles in any radii, and the drawing of dotted and dashed +longdesc lines much faster with much less TeX memory, and providing +longdesc several new commands for drawing ellipses, arcs, splines, and +longdesc filled circles and ellipses. The package uses tpic \special +longdesc commands. +containersize 11752 +containerchecksum 37930ecdebd43ac8ac1dcb42da4d4eb4b5ff371605b9bfe4675ea861f4edff7cb19703669c8356c3d69e7ccc09789bc536714114397c3bca74fcb4a22b6f4d9b +doccontainersize 96304 +doccontainerchecksum 02efd8775f6d0db35fa4682c6bc715fe619037a6531de60a2955fbd7fca01d97a8e6dee0109a8cd7cc8237bd694c64797392991e5c203baab49dd9857b0ccb4c +docfiles size=46 + RELOC/doc/latex/eepic/eepic.pdf details="Package documentation" + RELOC/doc/latex/eepic/eepic.tex + RELOC/doc/latex/eepic/epic-eg3.fig + RELOC/doc/latex/eepic/epic-eg3.tex + RELOC/doc/latex/eepic/epic-eg4.fig + RELOC/doc/latex/eepic/epic-eg4.tex + RELOC/doc/latex/eepic/fig2eepic/epic-eg3.fig + RELOC/doc/latex/eepic/fig2eepic/epic-eg4.fig + RELOC/doc/latex/eepic/fig2eepic/fig2epic.1 + RELOC/doc/latex/eepic/fig2eepic/makefile + RELOC/doc/latex/eepic/fig2eepic/readme + RELOC/doc/latex/eepic/grafig.shar + RELOC/doc/latex/eepic/readme +runfiles size=13 + RELOC/tex/latex/eepic/eepic.sty + RELOC/tex/latex/eepic/eepicemu.sty + RELOC/tex/latex/eepic/epic.sty +catalogue-ctan /macros/latex/contrib/eepic +catalogue-license pd +catalogue-topics graphics-in-tex +catalogue-version 1.1e + +name efbox +category Package +revision 33236 +shortdesc Extension of \fbox, with controllable frames and colours +relocated 1 +longdesc The package defines the \efbox command, which creates a box +longdesc just wide enough to hold the text created by its argument. The +longdesc command optionally puts a (possibly partial) frame around the +longdesc box, and allows setting the box background colour. +containersize 1824 +containerchecksum 5091324e7f5c05385296d570027a8546db4220a24da330ab85ef5d1185772f51b4f200f63eaad0cfa3eaeafd3d055509f4ffbdf798c1139a60c5e572ea46926e +doccontainersize 146144 +doccontainerchecksum 394387e09ecb0d497014a62fc1caedcb3e00148f6e0a9a16ae1b53efbb4d5cf749e154e4c905d197280e4ecd9bc88ea07ab7e0c004b8c30eadbe7f9f414c1345 +docfiles size=37 + RELOC/doc/latex/efbox/README details="Readme" + RELOC/doc/latex/efbox/efbox.pdf details="Package documentation" +srccontainersize 4220 +srccontainerchecksum 4739cf6bbe23b69605079bdd8c39eddd6b44e192c5c335001c9612598f2a005e98b853bc02ff67996b63a971b200996f35de2331f230d9c43ed73ad9a8a98a7a +srcfiles size=4 + RELOC/source/latex/efbox/efbox.dtx + RELOC/source/latex/efbox/efbox.ins +runfiles size=2 + RELOC/tex/latex/efbox/efbox.sty +catalogue-ctan /macros/latex/contrib/efbox +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 1.0 + +name egameps +category Package +revision 15878 +shortdesc LaTeX package for typesetting extensive games +relocated 1 +longdesc The style is intended to have enough features to draw any +longdesc extensive game with relative ease. The facilities of PSTricks +longdesc are used for graphics. (An older version of the package, which +longdesc uses the LaTeX picture environment rather than PSTricks and +longdesc consequently has many fewer features is available on the +longdesc package home page.) +containersize 6516 +containerchecksum b8d1c056783c4a71484a00f0d80de4eb9de3beaa54cc4dc71e5a7c171871b5dacba753ad03ab196661b1bd73cf9d2eaf202a813b73bea405f807319a143644cb +doccontainersize 137460 +doccontainerchecksum 0216a85d539ab19aef8c2c4f313f5095aa39e4955ae9610c14d0243081b7af98f50a74a2f7720b376493e660a5486f83e69b41f8cb8017ff66a8e706eb9ca71b +docfiles size=51 + RELOC/doc/latex/egameps/README + RELOC/doc/latex/egameps/egameps.pdf details="Package documentation" + RELOC/doc/latex/egameps/egameps.tex +runfiles size=11 + RELOC/tex/latex/egameps/egameps.sty +catalogue-ctan /macros/latex/contrib/egameps +catalogue-license lppl +catalogue-topics games graphics-in-tex +catalogue-version 1.1 + +name egplot +category Package +revision 20617 +shortdesc Encapsulate Gnuplot sources in LaTeX documents +relocated 1 +longdesc A package to encapsulate gnuplot commands in a LaTeX source +longdesc file, so that a document's figures are maintained in parallel +longdesc with the document source itself. +containersize 3560 +containerchecksum c96cc3185c09f66fc6a4c19958b88d178cf0b6ea9d889938df5a07d4fb7b19962a9c17ebe0a906ab19a8725808aa09ee41b39a0379fefbf8816a5e78abf9201f +doccontainersize 484812 +doccontainerchecksum e6e55708004cdf3dfd753071e2fc242428a6636944f3ea65510d2e9f8e2921b869ff4a22d100b43d70ba0708a5b19f002bbe21f57c858ec72b11ffe82e161e50 +docfiles size=120 + RELOC/doc/latex/egplot/egplot.README details="Readme" + RELOC/doc/latex/egplot/egplot.pdf details="Package documentation" + RELOC/doc/latex/egplot/manual.ps.gz +srccontainersize 10972 +srccontainerchecksum 45c810de39612dcd60d71b4acc8aa9a7c2c22c1eab8e1ca1628ced9873c86b0ff31035ec5f72d89decf91ba552c4e3473249138f557bd650b9863c5385502436 +srcfiles size=15 + RELOC/source/latex/egplot/egplot.drv + RELOC/source/latex/egplot/egplot.dtx + RELOC/source/latex/egplot/egplot.ins + RELOC/source/latex/egplot/egpman.drv +runfiles size=3 + RELOC/tex/latex/egplot/egplot.sty +catalogue-ctan /macros/latex/contrib/egplot +catalogue-license gpl +catalogue-topics graphics-inline +catalogue-version 1.02a + +name ehhline +category Package +revision 54676 +shortdesc Extend the \hhline command +relocated 1 +longdesc This package extends the \hhline command with a !{...} token, +longdesc which allows to create lines with arbitrary LaTeX commands. +containersize 1520 +containerchecksum 759e123a2418acd7239c4b897e64c146ffb84cc1646d331acc5ca498f707b916c1392f3fb9b97d2916d745e9afcf9c630a5a94e413ecd0c17fc2a8b13f773d3b +doccontainersize 31192 +doccontainerchecksum 79db947da1c51811e834999889c3d089e2c5077d2d21fe133f6879a87afae4e2c7fcf1f07981ef9335a6b7234f083e74e21364be3526448ebdeda6ba75815fac +docfiles size=10 + RELOC/doc/latex/ehhline/README details="Readme" + RELOC/doc/latex/ehhline/ehhline.pdf details="Package documentation" + RELOC/doc/latex/ehhline/ehhline.tex +runfiles size=1 + RELOC/tex/latex/ehhline/ehhline.sty +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-license mit +catalogue-topics table-rule +catalogue-version 1.1 + +name eiad +category Package +revision 15878 +shortdesc Traditional style Irish fonts +relocated 1 +longdesc In both lower and upper case 32 letters are defined (18 'plain' +longdesc ones, 5 long vowels and 9 aspirated consonants). The ligature +longdesc 'agus' is also made available. The remaining characters +longdesc (digits, punctuation and accents) are inherited from the +longdesc Computer Modern family of fonts. The font definitions use code +longdesc from the sauter fonts, so those fonts have to be installed +longdesc before using eiad. OT1*.fd files are provided for use with +longdesc LaTeX. +containersize 25636 +containerchecksum 3123d601a5f5c34c45bff20eb052a0934a2bba9d693e460fdb84908ed327eff8b3a022a5c617c8818bd48b1fe72b9b0c48443e0cb290f15e94334152f1f5e5cc +doccontainersize 117692 +doccontainerchecksum 546bbad79f9f13e420b05b318010f078ea8844a02cedf11faa506d41073e2e0668356291a4e12758e5a37586e4aa9c79c17c8135f244756c39b61076038fb8e6 +docfiles size=125 + RELOC/doc/fonts/eiad/Leigh_me.txt details="Readme" + RELOC/doc/fonts/eiad/amhrawn.pdf + RELOC/doc/fonts/eiad/amhrawn.tex + RELOC/doc/fonts/eiad/evening.pdf + RELOC/doc/fonts/eiad/evening.tex + RELOC/doc/fonts/eiad/micheal.ps + RELOC/doc/fonts/eiad/micheal.tex + RELOC/doc/fonts/eiad/recreat.pdf + RELOC/doc/fonts/eiad/recreat.tex +runfiles size=86 + RELOC/fonts/source/public/eiad/eiadb10.mf + RELOC/fonts/source/public/eiad/eiadbx10.mf + RELOC/fonts/source/public/eiad/eiadbxi10.mf + RELOC/fonts/source/public/eiad/eiadbxsl10.mf + RELOC/fonts/source/public/eiad/eiadccsc10.mf + RELOC/fonts/source/public/eiad/eiadci10.mf + RELOC/fonts/source/public/eiad/eiadcr10.mf + RELOC/fonts/source/public/eiad/eiadcsc10.mf + RELOC/fonts/source/public/eiad/eiadcsl10.mf + RELOC/fonts/source/public/eiad/eiadcslc9.mf + RELOC/fonts/source/public/eiad/eiaddunh10.mf + RELOC/fonts/source/public/eiad/eiadff10.mf + RELOC/fonts/source/public/eiad/eiadfi10.mf + RELOC/fonts/source/public/eiad/eiadfib8.mf + RELOC/fonts/source/public/eiad/eiadi10.mf + RELOC/fonts/source/public/eiad/eiaditt10.mf + RELOC/fonts/source/public/eiad/eiadr10.mf + RELOC/fonts/source/public/eiad/eiadr12.mf + RELOC/fonts/source/public/eiad/eiadr17.mf + RELOC/fonts/source/public/eiad/eiadsl10.mf + RELOC/fonts/source/public/eiad/eiadsltt10.mf + RELOC/fonts/source/public/eiad/eiadss10.mf + RELOC/fonts/source/public/eiad/eiadssbx10.mf + RELOC/fonts/source/public/eiad/eiadssdc10.mf + RELOC/fonts/source/public/eiad/eiadssi10.mf + RELOC/fonts/source/public/eiad/eiadssq8.mf + RELOC/fonts/source/public/eiad/eiadssqi8.mf + RELOC/fonts/source/public/eiad/eiadtcsc10.mf + RELOC/fonts/source/public/eiad/eiadtt10.mf + RELOC/fonts/source/public/eiad/eiadvtt10.mf + RELOC/fonts/source/public/eiad/eira.mf + RELOC/fonts/source/public/eiad/eirl.mf + RELOC/fonts/source/public/eiad/eiru.mf + RELOC/fonts/source/public/eiad/gaec7cb.mf + RELOC/fonts/source/public/eiad/gaelach.mf + RELOC/fonts/tfm/public/eiad/eiadb10.tfm + RELOC/fonts/tfm/public/eiad/eiadbx10.tfm + RELOC/fonts/tfm/public/eiad/eiadbxi10.tfm + RELOC/fonts/tfm/public/eiad/eiadbxsl10.tfm + RELOC/fonts/tfm/public/eiad/eiadccsc10.tfm + RELOC/fonts/tfm/public/eiad/eiadci10.tfm + RELOC/fonts/tfm/public/eiad/eiadcr10.tfm + RELOC/fonts/tfm/public/eiad/eiadcsc10.tfm + RELOC/fonts/tfm/public/eiad/eiadcsl10.tfm + RELOC/fonts/tfm/public/eiad/eiadcslc9.tfm + RELOC/fonts/tfm/public/eiad/eiaddunh10.tfm + RELOC/fonts/tfm/public/eiad/eiadff10.tfm + RELOC/fonts/tfm/public/eiad/eiadfi10.tfm + RELOC/fonts/tfm/public/eiad/eiadfib8.tfm + RELOC/fonts/tfm/public/eiad/eiadi10.tfm + RELOC/fonts/tfm/public/eiad/eiaditt10.tfm + RELOC/fonts/tfm/public/eiad/eiadr10.tfm + RELOC/fonts/tfm/public/eiad/eiadr12.tfm + RELOC/fonts/tfm/public/eiad/eiadr17.tfm + RELOC/fonts/tfm/public/eiad/eiadsl10.tfm + RELOC/fonts/tfm/public/eiad/eiadsltt10.tfm + RELOC/fonts/tfm/public/eiad/eiadss10.tfm + RELOC/fonts/tfm/public/eiad/eiadssbx10.tfm + RELOC/fonts/tfm/public/eiad/eiadssdc10.tfm + RELOC/fonts/tfm/public/eiad/eiadssi10.tfm + RELOC/fonts/tfm/public/eiad/eiadssq8.tfm + RELOC/fonts/tfm/public/eiad/eiadssqi8.tfm + RELOC/fonts/tfm/public/eiad/eiadtcsc10.tfm + RELOC/fonts/tfm/public/eiad/eiadtt10.tfm + RELOC/fonts/tfm/public/eiad/eiadvtt10.tfm + RELOC/tex/latex/eiad/OT1eiad.fd + RELOC/tex/latex/eiad/OT1eiadcc.fd + RELOC/tex/latex/eiad/OT1eiadss.fd + RELOC/tex/latex/eiad/OT1eiadtt.fd +catalogue-ctan /fonts/eiad +catalogue-license pd +catalogue-topics font font-mf irish-gaelic + +name eiad-ltx +category Package +revision 15878 +shortdesc LaTeX support for the eiad font +relocated 1 +longdesc The package provides macros to support use of the eiad fonts in +longdesc OT1 encoding. Also offered are a couple of Metafont files +longdesc described in the font package, but not provided there. +containersize 3672 +containerchecksum e052333d39e72562e8e84d0e7f6af7066c2068a782422f612a26bd2903d8143874cd4dcc556d7406f3601a6b3a28506a3c0edc92e4029d124f02fe91edf0163c +doccontainersize 1956 +doccontainerchecksum 907a20283eb78965dc4d8fdb46c542937c70c7a3f2849984034f9f37872d4d3042064fad0ee232132aadcb7daa4d4ec4b9745f8a6d0406dfa7b929ea68be0d96 +docfiles size=1 + RELOC/doc/latex/eiad-ltx/README details="Readme" +srccontainersize 4224 +srccontainerchecksum dcdb63542954048aa74a1a412cef02c16706bb7f66870e72ab4c772e2e41048c255bd02877fc60ffdef15b09e229ba721054cfbcbea5ce16fdaa181ca0bc8283 +srcfiles size=3 + RELOC/source/latex/eiad-ltx/eiad.dtx + RELOC/source/latex/eiad-ltx/eiad.ins +runfiles size=3 + RELOC/fonts/source/public/eiad-ltx/Fbf10.mf + RELOC/fonts/source/public/eiad-ltx/Fr10.mf + RELOC/tex/latex/eiad-ltx/eiad.sty +catalogue-ctan /macros/latex/contrib/eiad +catalogue-license lppl +catalogue-topics font-supp irish-gaelic +catalogue-version 1.0 + +name eijkhout +category Package +revision 15878 +shortdesc Victor Eijkhout's packages +relocated 1 +longdesc Three unrelated packages: DB_process, to parse and process +longdesc database output; CD_labeler, to typeset user text to fit on a +longdesc CD label; and repeat, a nestable, generic loop macro. +containersize 6960 +containerchecksum 448f3b51c984a1ec81428c1840ba01d072cef4d1110b85f8d4f4d786d02e8d08e702e0b33e757035aecef1f43b604746c7b6f492905fbb201fc1a34ca6fb859e +runfiles size=9 + RELOC/tex/generic/eijkhout/CD_labeler.tex + RELOC/tex/generic/eijkhout/CD_labeler_test.tex + RELOC/tex/generic/eijkhout/DB_process.tex + RELOC/tex/generic/eijkhout/repeat.tex +catalogue-ctan /macros/generic/eijkhout +catalogue-license collection +catalogue-topics collection + +name einfart +category Package +revision 58414 +shortdesc Write your articles in a simple and clear way +relocated 1 +longdesc This package provides a LaTeX class for typesetting articles +longdesc with a simple and clear design. Currently, it has native +longdesc support to English, French, and Chinese typesetting. It +longdesc compiles with either XeLaTeX or LuaLaTeX. This is part of the +longdesc minimalist class series and depends on minimalist.sty from the +longdesc minimalist package. The package name "einfart" is taken from +longdesc the German word "einfach" ("simple"), combined with the first +longdesc three letters of "Artikel" ("article"). +depend minimalist +containersize 3112 +containerchecksum 3e49ed89f9a3653db65cbd6a65f285d918691268d5cc61a20e74c7080cbfa8a5038a1fad197675075df1334bd14e9d52000e18bc3a574e731df002380e749349 +doccontainersize 262400 +doccontainerchecksum b50e6abddaff2e79e9d89fa9f8fca9fe80ac727849245c02eb8eb879769d48be3c91ce6007cea4716fed4f396fcb06d36e1a9fe24f090284f3eb1e0c72c83ec6 +docfiles size=76 + RELOC/doc/latex/einfart/LICENSE + RELOC/doc/latex/einfart/README.md details="Readme" + RELOC/doc/latex/einfart/einfart-doc-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/einfart/einfart-doc-cn.tex + RELOC/doc/latex/einfart/einfart-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/einfart/einfart-doc-en.tex +runfiles size=2 + RELOC/tex/latex/einfart/einfart.cls +catalogue-also minimalist +catalogue-contact-repository https://github.com/Jinwen-XU/minimalist +catalogue-ctan /macros/unicodetex/latex/einfart +catalogue-license lppl1.3c +catalogue-topics class article-like chinese + +name ejpecp +category Package +revision 56728 +shortdesc Class for EJP and ECP +relocated 1 +longdesc The class is designed for typesetting articles for the +longdesc mathematical research periodicals Electronic Journal of +longdesc Probability (EJP) and Electronic Communications in Probability +longdesc (ECP). It depends on amsmath, amsfonts, amsthm, bera, dsfont, +longdesc geometry, graphicx, hyperref, lastpage, latexsym, mathtools, +longdesc microtype, and afterpackage. +containersize 5228 +containerchecksum ba16daaacf8b7d2b6d9f1bdaf6680b474715ab423959bf1e8fef43c7e823becdba5d6a6e3a094f47cd71c23ee00917cf9bd3b72fcbf1f091d42425535bca6b39 +doccontainersize 362512 +doccontainerchecksum f44c075fc341b3ef334a8675fb0c2ea3ccdae25cc81fa9df7ba39ebc9ec6ababd3a6657734336539d64a6f8b9ff4380993dba312b58cdd83ef5f0f923196b310 +docfiles size=112 + RELOC/doc/latex/ejpecp/LPPL + RELOC/doc/latex/ejpecp/README.md details="Readme" + RELOC/doc/latex/ejpecp/ejpecp.pdf details="Package documentation" + RELOC/doc/latex/ejpecp/getmref.py + RELOC/doc/latex/ejpecp/sample.pdf details="Introduction, as a paper" + RELOC/doc/latex/ejpecp/sample.tex +srccontainersize 6904 +srccontainerchecksum 6325f999c4a435b7d2a4aff7b3bc1cf21d7eb0e806f9e7bfe2482e79689617bce54b274cc690f2435fe0c416bf32b2a76c911b793bc1ac0bfe408b9f773758ea +srcfiles size=6 + RELOC/source/latex/ejpecp/ejpecp.dtx + RELOC/source/latex/ejpecp/ejpecp.ins +runfiles size=4 + RELOC/tex/latex/ejpecp/ejpecp.cls +catalogue-ctan /macros/latex/contrib/ejpecp +catalogue-license lppl1.2 +catalogue-topics journalpub class +catalogue-version 1.9.0 + +name ekaia +category Package +revision 49594 +shortdesc Article format for publishing the Basque Country Science and Technology Journal "Ekaia" +relocated 1 +longdesc The package provides the article format for publishing the +longdesc Basque Country Science and Technology Journal "Ekaia" at the +longdesc University of the Basque Country. +containersize 2576 +containerchecksum 97479cb146f37e0fd80fbcf67db44a474d96da9897fb058073b75bbd9a109f16dfa36bdd97c5fed5397255cf0320028ca687955fb40e069bdfa262af50773c99 +doccontainersize 221680 +doccontainerchecksum f95512969ca475b87f09fa3b61e2be1ebf949161b7209721579f7ec1399e6873186535ec30dbee092fd69dc427a199daa4f94ee47cc08a0fc37fbac6213429de +docfiles size=62 + RELOC/doc/latex/ekaia/README details="Readme" + RELOC/doc/latex/ekaia/ekaia.pdf details="Package documentation" + RELOC/doc/latex/ekaia/ekaia_EUS.tex + RELOC/doc/latex/ekaia/ekaia_example.tex +srccontainersize 10676 +srccontainerchecksum f39b1a8a90bfe899fe914b6a4e99e08334ecf01ca54bbd6275ab9edfefc12f7f165eeca09b6195532ff92d72e4aeba63e94be7afe00d8215a86dca3695d523c7 +srcfiles size=10 + RELOC/source/latex/ekaia/ekaia.dtx + RELOC/source/latex/ekaia/ekaia.ins +runfiles size=2 + RELOC/tex/latex/ekaia/ekaia.sty +catalogue-ctan /macros/latex/contrib/ekaia +catalogue-license lppl1.2 +catalogue-topics journalpub +catalogue-version 1.06 + +name ekdosis +category Package +revision 58721 +shortdesc Typesetting TEI-xml compliant Critical Editions +relocated 1 +longdesc ekdosis is a LuaLaTeX package designed for multilingual +longdesc critical editions. It can be used to typeset texts and +longdesc different layers of critical notes in any direction accepted by +longdesc LuaTeX. Texts can be arranged in running paragraphs or on +longdesc facing pages, in any number of columns which in turn can be +longdesc synchronized or not. In addition to printed texts, ekdosis can +longdesc convert .tex source files so as to produce TEI-xml compliant +longdesc critical editions. Database-driven encoding under LaTeX then +longdesc allows extraction of texts entered segment by segment according +longdesc to various criteria: main edited text, variant readings, +longdesc translations or annotated borrowings between texts. +containersize 19132 +containerchecksum 58c2cfad3b9269b9a056cbea0465f0af4a4e4bb2647f23497ce2726e7e4f4969f218c89b03e31f99b58afd353eb349ede499445eca3043dd0f25cac6eb5a425f +doccontainersize 710012 +doccontainerchecksum b99409ec4d691b74b90b4d73c4f046ff62994743240befa008b0b4b0fb63bebff0f0f1d4c77db0034a8d1ae72e9eef474b5054579881d65c0fe730d75873063e +docfiles size=216 + RELOC/doc/lualatex/ekdosis/README.md details="Readme" + RELOC/doc/lualatex/ekdosis/ekdosis.el + RELOC/doc/lualatex/ekdosis/ekdosis.pdf details="Package documentation" + RELOC/doc/lualatex/ekdosis/samples/Caesar_BG-6-13-1-tei.xml + RELOC/doc/lualatex/ekdosis/samples/Caesar_BG-6-13-1.pdf + RELOC/doc/lualatex/ekdosis/samples/Caesar_BG-6-13-1.tex + RELOC/doc/lualatex/ekdosis/samples/Makefile +srccontainersize 87748 +srccontainerchecksum 94d9ee25866c1418137f786ebece9c14bba9467b3df1f88f0595990276522b0e1938948c51ef41f9c6a565b3a87fb34f5b1825db1181bf6740d920eda7ad6f06 +srcfiles size=101 + RELOC/source/lualatex/ekdosis/Makefile + RELOC/source/lualatex/ekdosis/ekdosis.dtx + RELOC/source/lualatex/ekdosis/ekdosis.ins +runfiles size=27 + RELOC/tex/lualatex/ekdosis/ekdosis.lua + RELOC/tex/lualatex/ekdosis/ekdosis.sty +catalogue-contact-bugs https://gitlab.com/ralessi/ekdosis/issues +catalogue-contact-home http://www.robertalessi.net/ekdosis +catalogue-contact-repository http://git.robertalessi.net/ekdosis +catalogue-contact-support http://www.robertalessi.net/mailman/listinfo/ekdosis +catalogue-ctan /macros/luatex/latex/ekdosis +catalogue-license gpl3+ fdl +catalogue-topics crit-ed parallel bidi luatex multilingual +catalogue-version 1.2 + +name ektype-tanka +category Package +revision 56070 +shortdesc Devanagari fonts by EkType +relocated 1 +longdesc ek-ttaaiip sNsthecyaa kaahii utkRsstt devnaagrii ttNkaaNcaa +longdesc sNgrh. ek-ttaaip sNsthaa ke kii utkRsstt devnaagrii ttNkoN kaa +longdesc sNgrh / . This package provides a collection of some excellent +longdesc Devanagari fonts by EkType: Mukta, Baloo, Modak, and Jaini. +containersize 1898108 +containerchecksum 0ee215be886bed429cbfd139a0c00fb2a2aa725a4a08fed0029daa3971b9eee2f1c2cf85712a687bfefe8d29a3cbc2a96ca792bdf1838145e6513f6988549be5 +doccontainersize 53172 +doccontainerchecksum ba3ae2e1775b8f21ec5dba35c0978d1eb03a448f8d381a9588d9cee8e4bd8281428f63b5866e830782f03eaa26527798d9ad153f64d9e7f3780e253fd935a9b5 +docfiles size=18 + RELOC/doc/fonts/ektype-tanka/EkType-tanka.pdf details="Package documentation in Marathi and Hindi" language="mr,hi" + RELOC/doc/fonts/ektype-tanka/EkType-tanka.tex + RELOC/doc/fonts/ektype-tanka/README.txt details="Readme" +runfiles size=2052 + RELOC/fonts/truetype/public/ektype-tanka/Baloo2-Bold.ttf + RELOC/fonts/truetype/public/ektype-tanka/Baloo2-ExtraBold.ttf + RELOC/fonts/truetype/public/ektype-tanka/Baloo2-Medium.ttf + RELOC/fonts/truetype/public/ektype-tanka/Baloo2-Regular.ttf + RELOC/fonts/truetype/public/ektype-tanka/Baloo2-SemiBold.ttf + RELOC/fonts/truetype/public/ektype-tanka/Gotu_Regular.ttf + RELOC/fonts/truetype/public/ektype-tanka/Jaini-Regular.ttf + RELOC/fonts/truetype/public/ektype-tanka/JainiPurva-Regular.ttf + RELOC/fonts/truetype/public/ektype-tanka/Modak.ttf + RELOC/fonts/truetype/public/ektype-tanka/Mukta-Bold.ttf + RELOC/fonts/truetype/public/ektype-tanka/Mukta-ExtraBold.ttf + RELOC/fonts/truetype/public/ektype-tanka/Mukta-ExtraLight.ttf + RELOC/fonts/truetype/public/ektype-tanka/Mukta-Light.ttf + RELOC/fonts/truetype/public/ektype-tanka/Mukta-Medium.ttf + RELOC/fonts/truetype/public/ektype-tanka/Mukta-Regular.ttf + RELOC/fonts/truetype/public/ektype-tanka/Mukta-SemiBold.ttf +catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/ektype-tanka/-/issues +catalogue-contact-repository https://gitlab.com/niranjanvikastambe/ektype-tanka +catalogue-ctan /fonts/ektype-tanka +catalogue-license lppl1.3c +catalogue-topics font-indic font-ttf +catalogue-version 0.2 + +name elbioimp +category Package +revision 21758 +shortdesc A LaTeX document class for the Journal of Electrical Bioimpedance +relocated 1 +longdesc A document class for writing articles to the Journal of +longdesc Electrical Bioimpedance. +containersize 2096 +containerchecksum 4db2b191fdb73854bfe605efed30c4835a77180fc865eaf201f8405fccaf880e02ac9ef7802c2d215df8ad77d01fff611114c391a6c43190f95dc2b40cabd596 +doccontainersize 288804 +doccontainerchecksum 5097310e0e400c269a30ef8ea26f400ac7768f4a790ca5b79222c0480553434343de7b0976b18bb6d67bc89dc2b2ad2251c24e94e4747450275fd52a8c9d3285 +docfiles size=79 + RELOC/doc/latex/elbioimp/Makefile + RELOC/doc/latex/elbioimp/README details="Readme" + RELOC/doc/latex/elbioimp/elbioimp-basis.tex + RELOC/doc/latex/elbioimp/elbioimp.pdf details="Package documentation" + RELOC/doc/latex/elbioimp/test-bib.bib + RELOC/doc/latex/elbioimp/test-ill.png + RELOC/doc/latex/elbioimp/test1.tex +srccontainersize 5716 +srccontainerchecksum 00fb96c43b0639f88b582bb26b6306d1ff112e9277c34f6a623d7643ac7a003b31a14b5a82b3b03680298e5c054c137f44a186804a90127ebba14442d5c71d6b +srcfiles size=5 + RELOC/source/latex/elbioimp/elbioimp.dtx + RELOC/source/latex/elbioimp/elbioimp.ins +runfiles size=2 + RELOC/tex/latex/elbioimp/elbioimp.cls +catalogue-ctan /macros/latex/contrib/elbioimp +catalogue-license lppl +catalogue-topics journalpub class +catalogue-version 1.2 + +name electrum +category Package +revision 19705 +catalogue electrumadf +shortdesc Electrum ADF fonts collection +relocated 1 +longdesc Electrum ADF is a slab-serif font featuring optical and italic +longdesc small-caps; additional ligatures and an alternate Q; lining, +longdesc hanging, inferior and superior digits; and four weights. The +longdesc fonts are provided in Adobe Type 1 format and the support +longdesc material enables use with LaTeX. Licence is mixed: LPPL for +longdesc LaTeX support; GPL with font exception for the fonts. +execute addMap yes.map +containersize 724376 +containerchecksum c12af3a1e6a76d4a94f0d02fa5802179fd1f47e31be29e2151e7be3f569f027137c9d0268c86696d822b8d7a4c88ae2ef264341345c6a7421a8ec1026c104213 +doccontainersize 279416 +doccontainerchecksum b840b153a134fd9cd923aa9f70576b7e586bca87d7f1b9cfbf7a1f25ac4972905989876545a914ce845096dd32579901ece93851012d057114c0c61b1eceffa4 +docfiles size=89 + RELOC/doc/fonts/electrum/COPYING + RELOC/doc/fonts/electrum/NOTICE.txt + RELOC/doc/fonts/electrum/README details="Readme" + RELOC/doc/fonts/electrum/electrumadf.pdf details="Documentation: installation and use" + RELOC/doc/fonts/electrum/electrumadf.tex + RELOC/doc/fonts/electrum/manifest.txt +srccontainersize 14992 +srccontainerchecksum caec0c43c2870a6640863bc060e02c764b235336123777181ae1fab42e32053af0e2c09c226dccbf8bc31b450c720b69ae67f01b66b36d0ba308282637afb414 +srcfiles size=98 + RELOC/source/fonts/electrum/build-ttsc.mtx + RELOC/source/fonts/electrum/dotsc2.etx + RELOC/source/fonts/electrum/dotscbuild.mtx + RELOC/source/fonts/electrum/dotscmisc.mtx + RELOC/source/fonts/electrum/newlatin-dotsc.mtx + RELOC/source/fonts/electrum/reglyph-yes.tex + RELOC/source/fonts/electrum/supp-yes.etx + RELOC/source/fonts/electrum/t1-dotinferior.etx + RELOC/source/fonts/electrum/t1-dotsuperior.etx + RELOC/source/fonts/electrum/t1-yes.etx + RELOC/source/fonts/electrum/t1-yesw-sc.etx + RELOC/source/fonts/electrum/t1-yesw.etx + RELOC/source/fonts/electrum/t1j-yes.etx + RELOC/source/fonts/electrum/t1j-yesw-sc.etx + RELOC/source/fonts/electrum/t1j-yesw.etx + RELOC/source/fonts/electrum/ts1-dotinferior.etx + RELOC/source/fonts/electrum/ts1-dotoldstyle-yes.etx + RELOC/source/fonts/electrum/ts1-dotsuperior.etx + RELOC/source/fonts/electrum/ts1-yes.etx + RELOC/source/fonts/electrum/yes-drv.tex + RELOC/source/fonts/electrum/yes-map.tex +runfiles size=846 + RELOC/fonts/afm/arkandis/electrum/yesb8a.afm + RELOC/fonts/afm/arkandis/electrum/yesbo8a.afm + RELOC/fonts/afm/arkandis/electrum/yesl8a.afm + RELOC/fonts/afm/arkandis/electrum/yeslo8a.afm + RELOC/fonts/afm/arkandis/electrum/yesr8a.afm + RELOC/fonts/afm/arkandis/electrum/yesro8a.afm + RELOC/fonts/afm/arkandis/electrum/yess8a.afm + RELOC/fonts/afm/arkandis/electrum/yesso8a.afm + RELOC/fonts/enc/dvips/electrum/supp-yes.enc + RELOC/fonts/map/dvips/electrum/yes.map + RELOC/fonts/tfm/arkandis/electrum/yesb08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yessj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessw8t.tfm + RELOC/fonts/type1/arkandis/electrum/yesb8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesb8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesbo8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesbo8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesl8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesl8a.pfm + RELOC/fonts/type1/arkandis/electrum/yeslo8a.pfb + RELOC/fonts/type1/arkandis/electrum/yeslo8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesr8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesr8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesro8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesro8a.pfm + RELOC/fonts/type1/arkandis/electrum/yess8a.pfb + RELOC/fonts/type1/arkandis/electrum/yess8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesso8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesso8a.pfm + RELOC/fonts/vf/arkandis/electrum/yesb08c.vf + RELOC/fonts/vf/arkandis/electrum/yesb08t.vf + RELOC/fonts/vf/arkandis/electrum/yesb0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesb0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesb18c.vf + RELOC/fonts/vf/arkandis/electrum/yesb18t.vf + RELOC/fonts/vf/arkandis/electrum/yesb1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesb1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesb8c.vf + RELOC/fonts/vf/arkandis/electrum/yesb8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbc8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbco8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbj8c.vf + RELOC/fonts/vf/arkandis/electrum/yesbj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbjo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesbjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesbo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesl08c.vf + RELOC/fonts/vf/arkandis/electrum/yesl08t.vf + RELOC/fonts/vf/arkandis/electrum/yesl0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesl0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesl18c.vf + RELOC/fonts/vf/arkandis/electrum/yesl18t.vf + RELOC/fonts/vf/arkandis/electrum/yesl1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesl1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesl8c.vf + RELOC/fonts/vf/arkandis/electrum/yesl8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslc8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcj8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslco8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcow8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcw8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslj8c.vf + RELOC/fonts/vf/arkandis/electrum/yeslj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesljo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesljo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesljow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesljw8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslo8c.vf + RELOC/fonts/vf/arkandis/electrum/yeslo8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslow8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesr08c.vf + RELOC/fonts/vf/arkandis/electrum/yesr08t.vf + RELOC/fonts/vf/arkandis/electrum/yesr0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesr0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesr18c.vf + RELOC/fonts/vf/arkandis/electrum/yesr18t.vf + RELOC/fonts/vf/arkandis/electrum/yesr1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesr1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesr8c.vf + RELOC/fonts/vf/arkandis/electrum/yesr8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrc8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrco8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrj8c.vf + RELOC/fonts/vf/arkandis/electrum/yesrj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrjo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesrjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesro8c.vf + RELOC/fonts/vf/arkandis/electrum/yesro8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrw8t.vf + RELOC/fonts/vf/arkandis/electrum/yess08c.vf + RELOC/fonts/vf/arkandis/electrum/yess08t.vf + RELOC/fonts/vf/arkandis/electrum/yess0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yess0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yess18c.vf + RELOC/fonts/vf/arkandis/electrum/yess18t.vf + RELOC/fonts/vf/arkandis/electrum/yess1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yess1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yess8c.vf + RELOC/fonts/vf/arkandis/electrum/yess8t.vf + RELOC/fonts/vf/arkandis/electrum/yessc8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yessco8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscw8t.vf + RELOC/fonts/vf/arkandis/electrum/yessj8c.vf + RELOC/fonts/vf/arkandis/electrum/yessj8t.vf + RELOC/fonts/vf/arkandis/electrum/yessjo8c.vf + RELOC/fonts/vf/arkandis/electrum/yessjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yessjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yessjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesso8c.vf + RELOC/fonts/vf/arkandis/electrum/yesso8t.vf + RELOC/fonts/vf/arkandis/electrum/yessow8t.vf + RELOC/fonts/vf/arkandis/electrum/yessw8t.vf + RELOC/tex/latex/electrum/electrum.sty + RELOC/tex/latex/electrum/t1yes.fd + RELOC/tex/latex/electrum/t1yes0.fd + RELOC/tex/latex/electrum/t1yes1.fd + RELOC/tex/latex/electrum/t1yesj.fd + RELOC/tex/latex/electrum/t1yesjw.fd + RELOC/tex/latex/electrum/t1yesw.fd + RELOC/tex/latex/electrum/ts1yes.fd + RELOC/tex/latex/electrum/ts1yes0.fd + RELOC/tex/latex/electrum/ts1yes1.fd + RELOC/tex/latex/electrum/ts1yesj.fd + RELOC/tex/latex/electrum/ts1yesjw.fd + RELOC/tex/latex/electrum/ts1yesw.fd +catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm +catalogue-ctan /fonts/electrumadf +catalogue-license other-free +catalogue-topics font font-type1 +catalogue-version 1.005-b + +name eledform +category Package +revision 38114 +shortdesc Define textual variants +relocated 1 +longdesc The package provides commands to formalize textual variants in +longdesc critical editions typeset using eledmac. +containersize 1480 +containerchecksum 4103aa370bc8314433b5cc9242390340467591bc38e2f5b820f9d35a1951bb9fe9e384b1d3c64a0434b3c3dc87c42463a0af5d9ff872180bc2b7a08d4b40c080 +doccontainersize 128020 +doccontainerchecksum c59cfa6957a21c5e74d9a15b7621536170137447111f9a88295e79aa7a29dcbb3d1f1f1367afd7243d2506b864a53df41b0e10419592a5e4e12af8e1e90216d4 +docfiles size=37 + RELOC/doc/latex/eledform/README.md details="Readme" + RELOC/doc/latex/eledform/eledform.pdf details="Package documentation" + RELOC/doc/latex/eledform/example.pdf + RELOC/doc/latex/eledform/example.tex + RELOC/doc/latex/eledform/include/stemma.tex + RELOC/doc/latex/eledform/makefile +srccontainersize 4788 +srccontainerchecksum 3bf4fe6df4cb16c8ab7a3fc366754321c5a1056cbdd51a787da33d212c39ffa0bc73d394944b7b2cfe52b4f41abe0e3df7156571d3acc1d1c3ccd4d467798430 +srcfiles size=5 + RELOC/source/latex/eledform/eledform.dtx + RELOC/source/latex/eledform/eledform.ins +runfiles size=1 + RELOC/tex/latex/eledform/eledform.sty +catalogue-contact-repository https://github.com/maieul/eledform +catalogue-ctan /macros/latex/contrib/eledform +catalogue-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 1.1a + +name eledmac +category Package +revision 45418 +shortdesc Typeset scholarly editions +relocated 1 +longdesc A package for typesetting scholarly critical editions, +longdesc replacing the established ledmac package. Ledmac itself was a +longdesc LaTeX port of the plain TeX EDMAC macros. The package supports +longdesc indexing by page and by line numbers, and simple tabular- and +longdesc array-style environments. The package is distributed with the +longdesc related eledpar package. The package is now superseded by +longdesc reledmac. +containersize 39444 +containerchecksum 644df002adf2f39acd9a6704a5c2e18e02f30d17c8e04173fb0f68e9daf5469bb6290c7e98ca181ebd45b40d54dbdf4a14fbbbe7dbe8f945b226ee086efc3972 +doccontainersize 1845796 +doccontainerchecksum 14c8b024b6cc817a025b6a4870d3edcf956ac9e358107c80d29fcab41f343efba5b5832dc22cd11fe2e92bc74b58fc5d67982ab26a60230a5b92af4223543e04 +docfiles size=532 + RELOC/doc/latex/eledmac/Makefile + RELOC/doc/latex/eledmac/README details="Readme" + RELOC/doc/latex/eledmac/eledmac.pdf details="Package documentation" + RELOC/doc/latex/eledmac/eledpar.pdf + RELOC/doc/latex/eledmac/examples/1-criticalnotes.pdf + RELOC/doc/latex/eledmac/examples/1-criticalnotes.tex + RELOC/doc/latex/eledmac/examples/1-sidenotes.pdf + RELOC/doc/latex/eledmac/examples/1-sidenotes.tex + RELOC/doc/latex/eledmac/examples/1-tabular.pdf + RELOC/doc/latex/eledmac/examples/1-tabular.tex + RELOC/doc/latex/eledmac/examples/1-verses.pdf + RELOC/doc/latex/eledmac/examples/1-verses.tex + RELOC/doc/latex/eledmac/examples/2-cross_referencing.pdf + RELOC/doc/latex/eledmac/examples/2-cross_referencing.tex + RELOC/doc/latex/eledmac/examples/2-footnote_spacing.pdf + RELOC/doc/latex/eledmac/examples/2-footnote_spacing.tex + RELOC/doc/latex/eledmac/examples/2-indexing.pdf + RELOC/doc/latex/eledmac/examples/2-indexing.tex + RELOC/doc/latex/eledmac/examples/2-lemma_disambigution.pdf + RELOC/doc/latex/eledmac/examples/2-lemma_disambigution.tex + RELOC/doc/latex/eledmac/examples/2-line_numbers_in_header.pdf + RELOC/doc/latex/eledmac/examples/2-line_numbers_in_header.tex + RELOC/doc/latex/eledmac/examples/2-one_series_per_pstart.pdf + RELOC/doc/latex/eledmac/examples/2-one_series_per_pstart.tex + RELOC/doc/latex/eledmac/examples/2-performances.pdf + RELOC/doc/latex/eledmac/examples/2-performances.tex + RELOC/doc/latex/eledmac/examples/2-titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/eledmac/examples/2-titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/eledmac/examples/2-titles_not_in_line_numbering.pdf + RELOC/doc/latex/eledmac/examples/2-titles_not_in_line_numbering.tex + RELOC/doc/latex/eledmac/examples/3-eledpar_columns_different_languages.pdf + RELOC/doc/latex/eledmac/examples/3-eledpar_columns_different_languages.tex + RELOC/doc/latex/eledmac/examples/3-eledpar_mwe.pdf + RELOC/doc/latex/eledmac/examples/3-eledpar_mwe.tex + RELOC/doc/latex/eledmac/examples/3-eledpar_pages_different_languages_lualatex.pdf + RELOC/doc/latex/eledmac/examples/3-eledpar_pages_different_languages_lualatex.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_column_mix_with_not_column.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_column_mix_with_not_column.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_alignment.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_alignment.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_one_series_per_pstart.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_one_series_per_pstart.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_page_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_page_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_long_notes.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_long_notes.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_notes_leftpage.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_notes_leftpage.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_paragraph_separator_between.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_paragraph_separator_between.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_titles_not_in_line_numbering.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_titles_not_in_line_numbering.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_verse_text_between.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_verse_text_between.tex + RELOC/doc/latex/eledmac/examples/eledmac.xdy + RELOC/doc/latex/eledmac/examples/makefile + RELOC/doc/latex/eledmac/latexmkrc +srccontainersize 164628 +srccontainerchecksum 8d3436d3e3cf377148a52ea77ac93491abc66bfb1271538aa85f6cebc559ca225221b4b7dfaaf33426505b792ca57697d6edf5903b5d0e306434a4c32e06e8bb +srcfiles size=216 + RELOC/source/latex/eledmac/eledmac.dtx + RELOC/source/latex/eledmac/eledmac.ins + RELOC/source/latex/eledmac/eledpar.dtx + RELOC/source/latex/eledmac/eledpar.ins +runfiles size=66 + RELOC/tex/latex/eledmac/eledmac.sty + RELOC/tex/latex/eledmac/eledpar.sty +catalogue-also ednotes poemscol ledmac +catalogue-contact-announce http://geekographie.maieul.net/146 +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-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 1.24.12 + +name elegantbook +category Package +revision 59053 +shortdesc An Elegant LaTeX Template for Books +relocated 1 +longdesc ElegantBook is designed for writing Books. This template is +longdesc based on the standard LaTeX book class. The goal of this +longdesc template is to make the writing process more elegant. Just +longdesc enjoy it! +containersize 9892 +containerchecksum 26c1a1d2cc17ea806daf1909eb79d0a568fdedf9184884295c58c2a4841361a0c9da9f1ff766c85ba8796bec9c9d9f800b8b8729b27bae80fdce4635899e04b4 +doccontainersize 1913340 +doccontainerchecksum c07f88027fc66b23cf1709e8096a5f1689904279a0599ee53239ec2f66b289a1196a36a2debfe1662219f82dff5e053fbdda5bacc4e4348945ce12ad23e0f26d +docfiles size=806 + RELOC/doc/latex/elegantbook/License + RELOC/doc/latex/elegantbook/README-CN.md + RELOC/doc/latex/elegantbook/README.md details="Readme" + RELOC/doc/latex/elegantbook/elegantbook-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/elegantbook/elegantbook-cn.tex + RELOC/doc/latex/elegantbook/elegantbook-en.pdf details="Package documentation (English)" + RELOC/doc/latex/elegantbook/elegantbook-en.tex + RELOC/doc/latex/elegantbook/figure/cover.jpg + RELOC/doc/latex/elegantbook/figure/logo-blue.png + RELOC/doc/latex/elegantbook/image/cert.pdf + RELOC/doc/latex/elegantbook/image/donate.jpg + RELOC/doc/latex/elegantbook/image/founder.png + RELOC/doc/latex/elegantbook/image/scatter.jpg + RELOC/doc/latex/elegantbook/reference.bib +runfiles size=10 + RELOC/tex/latex/elegantbook/elegantbook.cls +catalogue-contact-announce https://elegantlatex.org/ +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-license lppl1.3c +catalogue-topics class chinese book-pub +catalogue-version 4.1 + +name elegantnote +category Package +revision 54758 +shortdesc Elegant LaTeX Template for Notes +relocated 1 +longdesc ElegantNote is designed for writing working papers, especially +longdesc for economics students. This template is based on the standard +longdesc LaTeX article class. The goal of this template is to make the +longdesc writing process easier and more comfortable. +containersize 4652 +containerchecksum d19bd7b5a6862b2997296bf43123bbf88e48e0c5662bb385341cbfd0668de86fa5a9778a939ffc9d8eba64bd3fafb530a1ad551ac97558f0b8cc8b6e06422676 +doccontainersize 1210344 +doccontainerchecksum 9ce01c24ba84437023a45660c08049da8d81ab09f2e3f59a852177d48b78bd22cfe74c57ba502d7e8a2429c39f553c93445c2a6e5903808b18abe661a3a30b17 +docfiles size=409 + RELOC/doc/latex/elegantnote/License + RELOC/doc/latex/elegantnote/README.md details="Readme" + RELOC/doc/latex/elegantnote/elegantnote-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/elegantnote/elegantnote-cn.tex + RELOC/doc/latex/elegantnote/elegantnote-en.pdf details="Package documentation (English)" + RELOC/doc/latex/elegantnote/elegantnote-en.tex + RELOC/doc/latex/elegantnote/image/donate.jpg + RELOC/doc/latex/elegantnote/image/founder.png + RELOC/doc/latex/elegantnote/image/logo-blue.png + RELOC/doc/latex/elegantnote/image/logo.png + RELOC/doc/latex/elegantnote/image/scatter.pdf + RELOC/doc/latex/elegantnote/image/scatter.py + RELOC/doc/latex/elegantnote/image/star.png +runfiles size=4 + RELOC/tex/latex/elegantnote/elegantnote.cls +catalogue-contact-announce https://elegantlatex.org/ +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-license lppl1.3c +catalogue-topics class +catalogue-version 2.30 + +name elegantpaper +category Package +revision 54758 +shortdesc An Elegant LaTeX Template for Working Papers +relocated 1 +longdesc ElegantPaper is designed for writing working papers, especially +longdesc for economics students. This template is based on the standard +longdesc LaTeX article class. The goal of this template is to make the +longdesc writing process easier and more comfortable. +containersize 3948 +containerchecksum cddb7f3c8e7b613c59d88ffdb24d2ead1e56f56bbfd13a94070c4573b928c326029a3ffc35cd441bf69dec31a44becf6bd27e96236e23b4359645347ade9f135 +doccontainersize 876036 +doccontainerchecksum 5a1939b7f4408bc5af6b150ce9622f63e68c5fd8bfca3d219744aca09ef96d34874102c7194d4364c95a0d0f72198a3fb7ebd71d66aae5cf6f2dd0f4c09c553b +docfiles size=309 + RELOC/doc/latex/elegantpaper/License + RELOC/doc/latex/elegantpaper/README.md details="Readme" + RELOC/doc/latex/elegantpaper/elegantpaper-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/elegantpaper/elegantpaper-cn.tex + RELOC/doc/latex/elegantpaper/elegantpaper-en.pdf details="Package documentation (English)" + RELOC/doc/latex/elegantpaper/elegantpaper-en.tex + RELOC/doc/latex/elegantpaper/image/donate.jpg + RELOC/doc/latex/elegantpaper/image/founder.png + RELOC/doc/latex/elegantpaper/image/star.png + RELOC/doc/latex/elegantpaper/wpref.bib +runfiles size=3 + RELOC/tex/latex/elegantpaper/elegantpaper.cls +catalogue-contact-announce https://elegantlatex.org/ +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-license lppl1.3c +catalogue-topics class +catalogue-version 0.09 + +name elements +category Package +revision 52398 +shortdesc Provides properties of chemical elements +relocated 1 +longdesc The package provides means for retrieving properties of +longdesc chemical elements like atomic number, element symbol, element +longdesc name, electron distribution or isotope number. Properties are +longdesc defined for the elements up to the atomic number 112. This +longdesc package is a spin-off of the package bohr by the same author. +containersize 8824 +containerchecksum 777546b1aa3ab2c4a951d618f73b0a37f15de10afa72f710786ae5c9b29daed45ac61db978e07a010f72531203d6fb066853657c6cd728a6dd8850736756a063 +doccontainersize 412824 +doccontainerchecksum d72b74d189689b77134347ab0e76e7219fa2b4cafbf33cf7f9504a9293635487488b652a0cb293be2f28291481b2eb990baf92739146ac7a554d710b01b6df57 +docfiles size=104 + RELOC/doc/latex/elements/README details="Readme" + RELOC/doc/latex/elements/elements_en.pdf details="Package documentation" + RELOC/doc/latex/elements/elements_en.tex +runfiles size=19 + RELOC/tex/latex/elements/elements.sty + RELOC/tex/latex/elements/elements_names_brazil.def + RELOC/tex/latex/elements/elements_names_english.def + RELOC/tex/latex/elements/elements_names_french.def + RELOC/tex/latex/elements/elements_names_german.def + RELOC/tex/latex/elements/elements_names_portuges.def + RELOC/tex/latex/elements/elements_names_spanish.def +catalogue-contact-bugs https://github.com/cgnieder/elements/issues +catalogue-contact-repository https://github.com/cgnieder/elements/ +catalogue-ctan /macros/latex/contrib/elements +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 0.3 + +name ellipse +category Package +revision 39025 +shortdesc Draw ellipses and elliptical arcs using the standard LaTeX2e picture environment +relocated 1 +longdesc Draw ellipses and elliptical arcs using the standard LaTeX2e +longdesc picture environment. +containersize 2916 +containerchecksum edcbca8843239eae7bd927d9bc6b5095d1b9a4d8db213e22c77ab4a7c5bf7a09781aa225af26f1e4127f263d5322c8138cf38ad1a7b19688468ba2ba56f840f9 +doccontainersize 418676 +doccontainerchecksum 722d50daf9863145c81ad2b97d6acf6b6229d65f868985878651b506b00f52c4a556b888ed848ac1194c4a68e793bc498b2b6b09132c8070b61b103e6ca9137a +docfiles size=104 + RELOC/doc/latex/ellipse/README details="Readme" + RELOC/doc/latex/ellipse/ellipse.pdf details="Package documentation" +srccontainersize 13312 +srccontainerchecksum 29736aeb1a6d64d0e94124e6c67246650f517fefc9761f58e70e1438c8380a25ce48d2deb180683da02f77ebb508302b3e446b534b7e56ba257e61ac6f5fd62f +srcfiles size=13 + RELOC/source/latex/ellipse/ellipse.dtx + RELOC/source/latex/ellipse/ellipse.ins +runfiles size=3 + RELOC/tex/latex/ellipse/ellipse.sty +catalogue-ctan /graphics/ellipse +catalogue-license lppl1.3 +catalogue-topics graphics +catalogue-version 1.0 + +name ellipsis +category Package +revision 55418 +shortdesc Fix uneven spacing around ellipses in LaTeX text mode +relocated 1 +longdesc This is a simple package that fixes a problem in the way LaTeX +longdesc handles ellipses: it always puts a tiny bit more space after +longdesc \dots in text mode than before it, which results in the +longdesc ellipsis being off-center when used between two words. +containersize 1648 +containerchecksum 009bc55dac8eab88e27124317acbf9f3101959cefa4419b507ab74f49453f72f272db2b4826424f3d8c76efb50163c11d6eed63e1219cae2a2632bb629fba96a +doccontainersize 217792 +doccontainerchecksum 7d0b4c51008203729df1bd50d2c2a2568f2426b7284f0d58eae4720a032e4ab469a5db6cf5656e57ceb0cc9062a7bfe1f3cfe20c51a3d08c85d55c110ce7ddcb +docfiles size=54 + RELOC/doc/latex/ellipsis/README.md details="Readme" + RELOC/doc/latex/ellipsis/ellipsis.pdf details="Package documentation" +srccontainersize 7556 +srccontainerchecksum 65b536bdd6d5b429e2f1832b3d466bfe055be6074b43b60305b79ae9ea09172e3e7e82bf7cf3b4dfbf73507135ec4caa3d713c5cfe060fbc925ba7d2a8c09dea +srcfiles size=6 + RELOC/source/latex/ellipsis/ellipsis.dtx +runfiles size=1 + RELOC/tex/latex/ellipsis/ellipsis.sty +catalogue-also lips +catalogue-ctan /macros/latex/contrib/ellipsis +catalogue-license lppl1.3c +catalogue-topics typesetting +catalogue-version 1.8 + +name elmath +category Package +revision 15878 +shortdesc Mathematics in Greek texts +relocated 1 +longdesc This package has been designed to facilitate the use of Greek +longdesc letters in mathematical mode. The package allows one to +longdesc directly type in Greek letters (in ISO 8859-7 encoding) in math +longdesc mode. +containersize 2128 +containerchecksum 66e11b5d5166fc6399337183dea142ecd045050176384e71993c76aeacf57c693495b5153887a95051a902167a8444c24ba6fe2ab2fcfc699abfd41ffaa96b18 +doccontainersize 63336 +doccontainerchecksum 3454096f8ddd220820709a83f4b5b741e80213bada631f5fd78292ff77f3a1963a487b07bb6c227451568c594c5bcaec9c1fe9724345a35478a68191305d5a97 +docfiles size=24 + RELOC/doc/latex/elmath/elmath.pdf details="Package documentation" +srccontainersize 3080 +srccontainerchecksum 0ff2b6fd17db3dbae757d4e015007ac99628f0d1940e584643f9df2247279cbfe3ebb81e057884a38ab167aa18b60a8db5eb7b88e777653ec68675205ca0fcc6 +srcfiles size=4 + RELOC/source/latex/elmath/elmath.dtx + RELOC/source/latex/elmath/elmath.ins +runfiles size=3 + RELOC/tex/latex/elmath/elmath.sty +catalogue-ctan /macros/latex/contrib/elmath +catalogue-license lppl +catalogue-topics greek maths +catalogue-version 1.2 + +name elocalloc +category Package +revision 42712 +shortdesc Local allocation macros for LaTeX 2015 +relocated 1 +longdesc Local allocation macros, with names taken from etex.sty but +longdesc with implementation based on the LaTeX 2015 allocation macros. +containersize 1084 +containerchecksum 7bd72984c7bc1530e2659364b5e93b643db1accc8a034f6fe8333e26ecc12b8dca9cf40ada0b5986576e266e0eb7c801f9a3e4c2cb7dbe4d8c373ba0f0486ba9 +doccontainersize 154148 +doccontainerchecksum 6b2d6f65683912405cc97b81a7cef07b4eb21be4304a12b5e0e11087d809d32023ea8067a81c01d45851943af2efc4eb4018f3a0e7a39e08bdc821f87264d9cc +docfiles size=39 + RELOC/doc/latex/elocalloc/README.txt details="Readme" + RELOC/doc/latex/elocalloc/elocalloc.pdf details="Package documentation" +srccontainersize 2216 +srccontainerchecksum c1dfe4848af6e1cdb57496b8f42f5f1744494857648ca1db92a770f9983d0ec7a4c3398a3a7b7d473204da475ffd0e33ea10606201edcd86f9cda3bf5bdf24f4 +srcfiles size=3 + RELOC/source/latex/elocalloc/elocalloc.dtx + RELOC/source/latex/elocalloc/elocalloc.ins +runfiles size=1 + RELOC/tex/latex/elocalloc/elocalloc.sty +catalogue-also etex-pkg +catalogue-ctan /macros/latex/contrib/elocalloc +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.03 + +name elpres +category Package +revision 58015 +shortdesc A simple class for electronic presentations +relocated 1 +longdesc Elpres is a simple class for electronic presentations to be +longdesc shown on screen or a beamer. Elpres is derived from article.cls +longdesc and may be used with LaTeX, pdfLaTeX, or LuaLaTeX. The class +longdesc requires ifthen, fancyhdr, hyperref, graphicx, xcolor, and +longdesc geometry. For enhanced features the packages ragged2e, +longdesc overlays, wallpaper, eso-pic, tcolorbox, and footmisc are +longdesc useful. +containersize 3512 +containerchecksum eb8a18c29e137e4a11ef1a60e43533fbfdaad0872d0681e301a79cbc2fb7d11e7ecd0661b675aa299ce3439f8a238bf3d233fb60fe978eca9f05dc6f916596af +doccontainersize 469012 +doccontainerchecksum d3720f6be437348f1d556e62948a0326a066b3e865edd07a439e641eb75924ff646793171116fa174bf0d1b61ceb7d8b60639a31ed42150039053b8cedda4f0e +docfiles size=150 + RELOC/doc/latex/elpres/README.md details="Readme" + RELOC/doc/latex/elpres/ctan-lion.png + RELOC/doc/latex/elpres/elpres-example.pdf details="Example of use" + RELOC/doc/latex/elpres/elpres-example.tex + RELOC/doc/latex/elpres/elpres-manual.pdf details="Package documentation" + RELOC/doc/latex/elpres/elpres-manual.tex + RELOC/doc/latex/elpres/ep-ball-01.eps + RELOC/doc/latex/elpres/ep-ball-01.png + RELOC/doc/latex/elpres/ep-ball-02.eps + RELOC/doc/latex/elpres/ep-ball-02.png + RELOC/doc/latex/elpres/ep-ball-03.eps + RELOC/doc/latex/elpres/ep-ball-03.png + RELOC/doc/latex/elpres/ep-ball-04.eps + RELOC/doc/latex/elpres/ep-ball-04.png + RELOC/doc/latex/elpres/ep-ball-05.eps + RELOC/doc/latex/elpres/ep-ball-05.png +runfiles size=7 + RELOC/tex/latex/elpres/elpres.cls + RELOC/tex/latex/elpres/elpresbluelightgrayscheme.sty + RELOC/tex/latex/elpres/elpresgrayscheme.sty + RELOC/tex/latex/elpres/elpreswhitebluescheme.sty + RELOC/tex/latex/elpres/elpreswhiteredscheme.sty + RELOC/tex/latex/elpres/elpreswhitetealscheme.sty +catalogue-contact-home http://vkiefel.de/elpres.html +catalogue-ctan /macros/latex/contrib/elpres +catalogue-license lppl +catalogue-topics presentation class electronic +catalogue-version 0.8 + +name els-cas-templates +category Package +revision 54317 +shortdesc Elsevier updated LaTeX templates +relocated 1 +longdesc This bundle provides two class and corresponding template files +longdesc for typesetting journal articles supposed to go through +longdesc Elsevier's updated workflow. One of the sets is meant for +longdesc one-column, the other for two-column layout. These are now +longdesc accepted for submitting articles both in Elsevier's electronic +longdesc submission system and elsewhere. +containersize 20152 +containerchecksum 828b0e4a3a4e9df5d4373ad153a7c29e9da177f8c7b5ae796b7b94d1eb4cfdcf1f347f47895ad366524891f81ecf20fc86c3acc7f00d15835784f949f251ddc5 +doccontainersize 547260 +doccontainerchecksum 559c80546aa4ebea603a70b0dbc103869aa3aabc857b61ec1dd958d0da163cc408af643518aa4f9ea68a94dd2ca5242d8f4c46a30c627569a4211394baa99e0b +docfiles size=338 + RELOC/doc/latex/els-cas-templates/README details="Readme" + RELOC/doc/latex/els-cas-templates/cas-dc-template.pdf details="Example of use (double column)" + RELOC/doc/latex/els-cas-templates/cas-dc-template.tex + RELOC/doc/latex/els-cas-templates/cas-refs.bib + RELOC/doc/latex/els-cas-templates/cas-sc-template.pdf details="Example of use (single column)" + RELOC/doc/latex/els-cas-templates/cas-sc-template.tex + RELOC/doc/latex/els-cas-templates/doc/dc-sample.pdf + RELOC/doc/latex/els-cas-templates/doc/elsdoc-cas.pdf details="Package documentation" + RELOC/doc/latex/els-cas-templates/doc/elsdoc-cas.tex + RELOC/doc/latex/els-cas-templates/doc/makefile + RELOC/doc/latex/els-cas-templates/doc/pdfwidgets.sty + RELOC/doc/latex/els-cas-templates/doc/rvdtx.sty + RELOC/doc/latex/els-cas-templates/doc/sc-sample.pdf + RELOC/doc/latex/els-cas-templates/figs/Fig1.pdf + RELOC/doc/latex/els-cas-templates/figs/Fig2.pdf + RELOC/doc/latex/els-cas-templates/figs/Fig3.pdf + RELOC/doc/latex/els-cas-templates/figs/grabs.pdf + RELOC/doc/latex/els-cas-templates/figs/pic1.pdf + RELOC/doc/latex/els-cas-templates/manifest.txt + RELOC/doc/latex/els-cas-templates/thumbnails/cas-email.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-facebook.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-gplus.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-linkedin.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-twitter.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-url.jpeg +runfiles size=29 + RELOC/bibtex/bst/els-cas-templates/cas-model2-names.bst + RELOC/tex/latex/els-cas-templates/cas-common.sty + 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-license lppl1.2 +catalogue-topics class journalpub +catalogue-version 2.1 + +name elsarticle +category Package +revision 56999 +shortdesc Class for articles for submission to Elsevier journals +relocated 1 +longdesc This class for typesetting journal articles is accepted for +longdesc submitted articles both in Elsevier's electronic submission +longdesc system and elsewhere. Please note that this webpage is meant +longdesc for uploading updates to the elsarticle software itself, not +longdesc for submitting articles using it . +containersize 18868 +containerchecksum 5a0a7c98a8e255e55468f9b01a43c33d757a38faa1b3130b1c3613648dfcbd0fbedfc69db99727c4406ddc0601249b2d021c680f83edd34bc3d64dcd4a7af64a +doccontainersize 807964 +doccontainerchecksum 47fe52924e95cb8267d0f65ee6962fd56fdc4ce00ccdf49533ff7af0916a962bd8c045b31f2159d7c70d8a041f7c20aafc73b23a8982572d456223afbb85e718 +docfiles size=386 + RELOC/doc/latex/elsarticle/1pseperateaug.pdf + RELOC/doc/latex/elsarticle/1psingleauthorgroup.pdf + RELOC/doc/latex/elsarticle/README details="Readme" + RELOC/doc/latex/elsarticle/elsarticle-template-harv.tex + RELOC/doc/latex/elsarticle/elsarticle-template-num-names.tex + RELOC/doc/latex/elsarticle/elsarticle-template-num.tex + RELOC/doc/latex/elsarticle/elsdoc.pdf details="Package documentation" + RELOC/doc/latex/elsarticle/elsdoc.tex + RELOC/doc/latex/elsarticle/elstest-1p.pdf + RELOC/doc/latex/elsarticle/elstest-1pdoubleblind.pdf + RELOC/doc/latex/elsarticle/elstest-3p.pdf + RELOC/doc/latex/elsarticle/elstest-3pd.pdf + RELOC/doc/latex/elsarticle/elstest-5p.pdf + RELOC/doc/latex/elsarticle/jfigs.pdf + RELOC/doc/latex/elsarticle/makefile + RELOC/doc/latex/elsarticle/manifest.txt + RELOC/doc/latex/elsarticle/pdfwidgets.sty + RELOC/doc/latex/elsarticle/rvdtx.sty +srccontainersize 10880 +srccontainerchecksum 5887604f9a6ed0077bbbb2498f6ba7c1a3c8a74485688d40a6fb0e9e9765035d22e928b104876a19e42775fb766502ef71446e659f6d75a519e2b84ffdd2a01c +srcfiles size=13 + RELOC/source/latex/elsarticle/elsarticle.dtx + RELOC/source/latex/elsarticle/elsarticle.ins +runfiles size=35 + RELOC/bibtex/bst/elsarticle/elsarticle-harv.bst + RELOC/bibtex/bst/elsarticle/elsarticle-num-names.bst + RELOC/bibtex/bst/elsarticle/elsarticle-num.bst + RELOC/tex/latex/elsarticle/elsarticle.cls +catalogue-ctan /macros/latex/contrib/elsarticle +catalogue-license lppl1.2 +catalogue-topics journalpub class +catalogue-version 3.3 + +name elteikthesis +category Package +revision 55928 +shortdesc Thesis template for Eotvos Lorand University (Informatics) +relocated 1 +longdesc This package provides a Bachelor and Master thesis template for +longdesc the Eotvos Lorand University, Faculty of Informatics (Budapest, +longdesc Hungary). The template supports producing both Hungarian and +longdesc English theses. +containersize 5624 +containerchecksum d1aca54ddbcfcc7c6635768cf7012508ea00e775d5dc02ea86054542941d9438516ada2698897f7d97c3807eaf8fb23967db371c499e1919e4b4b9f290b13997 +doccontainersize 951476 +doccontainerchecksum 77481cded400c3dffd86be5090db28954823a92d4e8d4a676ec540d8cbe8a51331722b760a200c8ab84132ce668ed88da4c4e689f18d58528003b1c71f750337 +docfiles size=471 + RELOC/doc/latex/elteikthesis/LICENSE + RELOC/doc/latex/elteikthesis/README.md details="Readme" + RELOC/doc/latex/elteikthesis/README.pdf + RELOC/doc/latex/elteikthesis/README_hu.md + RELOC/doc/latex/elteikthesis/README_hu.pdf + RELOC/doc/latex/elteikthesis/appendices/sim.tex + RELOC/doc/latex/elteikthesis/chapters/impl.tex + RELOC/doc/latex/elteikthesis/chapters/intro.tex + RELOC/doc/latex/elteikthesis/chapters/sum.tex + RELOC/doc/latex/elteikthesis/chapters/user.tex + RELOC/doc/latex/elteikthesis/elteikthesis.bib + RELOC/doc/latex/elteikthesis/elteikthesis.pdf details="Example of use" language="hu" + RELOC/doc/latex/elteikthesis/elteikthesis.tex + RELOC/doc/latex/elteikthesis/images/elte_cimer_szines.eps + RELOC/doc/latex/elteikthesis/settings.tex +runfiles size=4 + RELOC/tex/latex/elteikthesis/elteikthesis.cls +catalogue-contact-repository https://github.com/mcserep/elteikthesis +catalogue-ctan /macros/latex/contrib/elteikthesis +catalogue-license mit +catalogue-topics dissertation hungarian class +catalogue-version 2.1 + +name eltex +category Package +revision 15878 +shortdesc Simple circuit diagrams in LaTeX picture mode +relocated 1 +longdesc The macros enable the user to draw simple circuit diagrams in +longdesc the picture environment, with no need of special resources. The +longdesc macros are appropriate for drawing for school materials. The +longdesc circuit symbols accord to the various parts of the standard IEC +longdesc 617. +containersize 12888 +containerchecksum 6de1507df2fe408081aad0f75b69d7c21807f238d37e3c6d9cd243b741ae1761aced90e948a0c570f28db5a39616954412fc77a87482c890183f039923915c05 +doccontainersize 176308 +doccontainerchecksum 1bdd0f64c524def46dd0a20482b9ad6925b0d06ea272b05d6163a23f61ad1727b099a893f5af7a7de4140bd264b1d3503794a4c9c11cf8137c5c6070d08fe0e3 +docfiles size=62 + RELOC/doc/latex/eltex/README details="Readme" + RELOC/doc/latex/eltex/man_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/eltex/man_en.tex + RELOC/doc/latex/eltex/pri_cz.pdf details="Package documentation (Czech)" language="cs" + RELOC/doc/latex/eltex/pri_cz.tex +runfiles size=26 + RELOC/tex/latex/eltex/eltex1.tex + RELOC/tex/latex/eltex/eltex2.tex + RELOC/tex/latex/eltex/eltex3.tex + RELOC/tex/latex/eltex/eltex4.tex + RELOC/tex/latex/eltex/eltex5.tex + RELOC/tex/latex/eltex/eltex6.tex + RELOC/tex/latex/eltex/eltex7.tex +catalogue-also circuit-macros circuitikz +catalogue-ctan /macros/latex/contrib/eltex +catalogue-license lppl +catalogue-topics diagram-circ +catalogue-version 2.0 + +name elvish +category Package +revision 15878 +shortdesc Fonts for typesetting Tolkien Elvish scripts +relocated 1 +longdesc The bundle provides fonts for Cirth (cirth.mf, etc.) and for +longdesc Tengwar (teng10.mf). The Tengwar fonts are supported by macros +longdesc in teng.tex, or by the (better documented) tengtex package. +containersize 10496 +containerchecksum ca1496b488a85a32364b264706c9b4e4edde5c92681493b150942a3a8a2a32158b314a163ff4be8afbea489a75feb5dbb1c96e8e70f730530cce6472f9e46912 +doccontainersize 2380 +doccontainerchecksum e296ece5bb11d273b33e801ecddb1b9bb93e5f8cfc4a7d62b1555ddca89661557149935b7c5a71880efb888364989715b4e39585b2de1bcd8ecc24203afef199 +docfiles size=2 + RELOC/doc/fonts/elvish/README + RELOC/doc/fonts/elvish/teng.tex +runfiles size=22 + RELOC/fonts/source/public/elvish/cirth.mf + RELOC/fonts/source/public/elvish/teng10.mf + RELOC/fonts/source/public/elvish/tengdev.mf + RELOC/fonts/source/public/elvish/tengmacs.mf + RELOC/fonts/source/public/elvish/tengmain.mf + RELOC/fonts/source/public/elvish/tengsecs.mf + RELOC/fonts/source/public/elvish/tengteht.mf + RELOC/fonts/tfm/public/elvish/cirth.tfm + RELOC/fonts/tfm/public/elvish/teng10.tfm +catalogue-also tengwar +catalogue-ctan /fonts/elvish +catalogue-license other-free +catalogue-topics font font-mf font-invented + +name elzcards +category Package +revision 51894 +shortdesc Typeset business cards, index cards and flash cards easily +relocated 1 +longdesc A LaTeX package for typesetting business cards, index cards, +longdesc and flash cards in an easy and flexible way, optionally also +longdesc the reverse side. You will have to furnish the paper size, the +longdesc desired size of your card, the printable area of your printer, +longdesc and the design of the card. Everything else is taken care of by +longdesc elzcards. +containersize 5288 +containerchecksum 436449b4e8d6368fee200dd810b05db570d27846a56a5159422e7af74348f08e6f2f4c45cdc1aaf21d31cf0ac6e8552cc7f0968c2178ad4e65163294d771e027 +doccontainersize 188816 +doccontainerchecksum c24119acc3aebfc676641b17a0db75edc30dab7eb3aa766e35291463ee6049c9570ebe05d456e0bc0fff3765bee514332cde7b80e7d1479ed440c621143b7457 +docfiles size=52 + RELOC/doc/latex/elzcards/README details="Readme" + RELOC/doc/latex/elzcards/elzcards-examples.pdf details="Samples" + RELOC/doc/latex/elzcards/elzcards-examples.tex + RELOC/doc/latex/elzcards/elzcards.pdf details="Package documentation" +srccontainersize 20788 +srccontainerchecksum 59f09337eeafa9b2ec6ff7bbfcd1d04535fe7d3defb942f858ef57a8007422358a68a72894ed120c3792da7c0f397d1a50dc093cc1dd2058d598649ab905d354 +srcfiles size=23 + RELOC/source/latex/elzcards/elzcards.dtx + RELOC/source/latex/elzcards/elzcards.ins +runfiles size=7 + RELOC/tex/latex/elzcards/elzcards.sty +catalogue-ctan /macros/latex/contrib/elzcards +catalogue-license lppl1.3 +catalogue-topics card-gen +catalogue-version 1.60 + +name emarks +category Package +revision 24504 +shortdesc Named mark registers with e-TeX +relocated 1 +longdesc E-TeX provides 32 768 mark registers; using this facility is +longdesc far more comfortable than LaTeX tricks with \markright, +longdesc \markboth, \leftmark and \rightmark. The package provides two +longdesc commands for marking: \marksthe and \marksthecs, which have * +longdesc forms which disable expansion; new mark registers are allocated +longdesc as needed. Syntax is closely modelled on the \marks primitive. +longdesc Four commands are provided for retrieving the marks registers' +longdesc content: \thefirstmarks, \thebotmarks, thetopmarks and +longdesc \getthemarks; and the command \ifmarksequal is available for +longdesc comparing the content of marks registers. The package requires +longdesc an e-TeX-enabled engine, and the etex package. +containersize 1896 +containerchecksum 8e5f2d559958083abbde5efe9e70b3cb3dc71cdddd3066ac305c310fd5a8b2652bc6b5ce66531963c5a5f9426ccfed7eee0700938ed6a515865ac8e1718de5aa +doccontainersize 1480964 +doccontainerchecksum 4deafa2295612c7428b82a4c8c2c19811f91c2d456b430b6ab59014b3cdb42a86a84e67319745dea469ae40f89b36d104d30db28228c825ba0d86436a37cc7df +docfiles size=590 + RELOC/doc/latex/emarks/Fingerprint.jpg + RELOC/doc/latex/emarks/README details="Readme" + RELOC/doc/latex/emarks/emarks-fingerprint.png + RELOC/doc/latex/emarks/emarks.pdf details="Package documentation" +srccontainersize 8512 +srccontainerchecksum d7ded6022917a50689905c953808e9f4a43d03811bda490721480f823c4ffd36d15948e5693d73cb061a97f775e6590cd376ec20e0093af3af5b792d7d67e2c5 +srcfiles size=9 + RELOC/source/latex/emarks/emarks.drv + RELOC/source/latex/emarks/emarks.dtx + RELOC/source/latex/emarks/emarks.ins +runfiles size=1 + RELOC/tex/latex/emarks/emarks.sty +catalogue-ctan /macros/latex/contrib/emarks +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.0 + +name embedall +category Package +revision 51177 +shortdesc Embed source files into the generated PDF +relocated 1 +longdesc The package provides a means of storing a project, without +longdesc losing anything. It uses the embedfile package to attach to the +longdesc generated PDF all files used in creating your project. In +longdesc particular, it can embed images, external TeX files, external +longdesc codes and +containersize 1780 +containerchecksum c531feeb7557cfca45127d9c37c93bf5835e35efa7c8aab65d58594c30d6864deaa22b64ba90cebcb1e9dcb139b00ad64ff96238835b8e059169278fb602ff2a +doccontainersize 235400 +doccontainerchecksum be228eb577bb2a59b93c7684bc1fd47e9a4a505f6c66eabf434ad29523f978c877608fe76cd6ee24c8942889710270b8f304170f445e2a1408303d7c5a8a52b7 +docfiles size=59 + RELOC/doc/latex/embedall/README + RELOC/doc/latex/embedall/embedall.pdf details="Package documentation" +srccontainersize 5416 +srccontainerchecksum f1d3527809502aafa0a0b9aafd02d25fdbb97ab795cf4306a4ac84dccb873111e580390eb0499dfe13ef3f0bd7ea1a61e90220688dc814de7ff21ab4ccdbb1c2 +srcfiles size=5 + RELOC/source/latex/embedall/embedall.dtx + RELOC/source/latex/embedall/embedall.ins +runfiles size=2 + RELOC/tex/latex/embedall/embedall.sty +catalogue-ctan /macros/latex/contrib/embedall +catalogue-license lppl1.2 +catalogue-topics pdf-feat archival +catalogue-version 2.0 + +name embedfile +category Package +revision 54865 +shortdesc Embed files into PDF +relocated 1 +longdesc This package embeds files in a PDF document, using the PDF +longdesc format's embedding operation (note the contrast with the attach +longdesc operation used by the attachfile and attachfile2 packages). +longdesc Currently only pdfTeX >=1.30, in PDF mode, is supported. +containersize 5124 +containerchecksum f42311a4f5488c00f33cd43af03da9fe6b1912c27b7ce9f40e488f5a4931a5c57fe637d475cfca750e191c1b605f532a32ac83476207a49543fd090e932cecd1 +doccontainersize 392868 +doccontainerchecksum 19925356dfac7c2fcd06d2886c8ffc7fda202f6639e98e993b8ddba3570223db0f4ad98f8ab51b096790e73e4c23946846ffaeaa2a847085d4d95abdaac06833 +docfiles size=100 + RELOC/doc/latex/embedfile/README.md details="Readme" + RELOC/doc/latex/embedfile/embedfile-example-collection.tex + RELOC/doc/latex/embedfile/embedfile-example-plain.tex + RELOC/doc/latex/embedfile/embedfile.pdf details="Package documentation" +srccontainersize 13236 +srccontainerchecksum e660fe1caebb232b3c7ab761ccbae1fb58535002e6f4825c00c33f3d19a2b9b2a7a8e5e4b5a63a929b2a03bbae161ffbb25113a7f6fa3c46477b0c0773c97b5b +srcfiles size=15 + RELOC/source/latex/embedfile/embedfile.dtx +runfiles size=7 + RELOC/tex/generic/embedfile/embedfile.sty + RELOC/tex/latex/embedfile/dtx-attach.sty +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-license lppl1.3c +catalogue-topics pdf-feat +catalogue-version 2.11 + +name embrac +category Package +revision 57814 +shortdesc Upright brackets in emphasised text +relocated 1 +longdesc The package redefines the commands \emph and \textit so that +longdesc parentheses and square brackets are typeset in an upright font +longdesc in their arguments. The package requires expl3 from the +longdesc l3kernel bundle, and xparse and l3keys2e from the l3packages +longdesc bundle. +containersize 3880 +containerchecksum 930b42ef834a50dab0889598e1cdc531a610c9a5a8cffa31f7bea5f3c55d947db59453f71e061c8d055da53fb50fe20c17341e47c2fe5bb35a604ceac71922d9 +doccontainersize 464436 +doccontainerchecksum f56db972f586aab767cf7300a3fa34a62564a67ede77ab8f8b6fa03ecf07680692eb0023cd3ed99656235c5afe80b672a4b3e50ec8f0ef95c9744a48ee99c399 +docfiles size=119 + RELOC/doc/latex/embrac/README details="Readme" + RELOC/doc/latex/embrac/embrac_en.pdf details="Package documentation" + RELOC/doc/latex/embrac/embrac_en.tex + RELOC/doc/latex/embrac/embrac_kerning_test.tex +runfiles size=5 + RELOC/tex/latex/embrac/embrac.sty +catalogue-contact-bugs https://github.com/cgnieder/embrac/issues +catalogue-contact-repository https://github.com/cgnieder/embrac/ +catalogue-ctan /macros/latex/contrib/embrac +catalogue-license lppl1.3 +catalogue-topics typesetting paren-mgmt expl3 +catalogue-version 0.9a + +name emf +category Package +revision 42023 +shortdesc Support for the EMF symbol +relocated 1 +longdesc This package provides LaTeX support for the symbol for the EMF +longdesc in electric circuits and electrodynamics. It provides support +longdesc for multiple symbols but does not provide any fonts. The fonts +longdesc themselves must be aquired otherwise. However the fonts are +longdesc part of a normal TeX Live installation. +containersize 1472 +containerchecksum bc1b601aa523b30a54493ac92e15bcdb918775e9f57514b62357b85b5919fb05cc945b3120cea474fab714585fe2a81603f43eae51bb266e8989af6105ebc65c +doccontainersize 325204 +doccontainerchecksum f2e37967476ed678dce7c01f195ec03f77327d59beb2b15cc6a64ef92cc377700a2b7b528ae6c42497cde0ac127cd10c51e3ecf5fda0cf7954d598a0dc92b5df +docfiles size=89 + RELOC/doc/latex/emf/README details="Readme" + RELOC/doc/latex/emf/emf.pdf details="Package documentation" + RELOC/doc/latex/emf/emf.tex + RELOC/doc/latex/emf/license +runfiles size=1 + RELOC/tex/latex/emf/emf.sty +catalogue-ctan /macros/latex/contrib/emf +catalogue-license gpl3 +catalogue-topics text-symbol electronic +catalogue-version 1 + +name emisa +category Package +revision 57013 +shortdesc A LaTeX package for preparing manuscripts for the journal EMISA +relocated 1 +longdesc The EMISA LaTeX package is provided for preparing manuscripts +longdesc for submission to EMISA (Enterprise Modelling and Information +longdesc Systems Architectures), and for preparing accepted submissions +longdesc for publication as well as for typesetting the final document +longdesc by the editorial office. Articles in EMISA are published online +longdesc at EMISA in the Portable Document Format (PDF). +containersize 15372 +containerchecksum dac517c5f1f5e475948d519ef46e3639a49ab3303a5d93821707b43b224ccddcdf6edfb8576fd89888cd00705b11abf17054c46008bb288450a0c679cc0ded2f +doccontainersize 513396 +doccontainerchecksum 7fb9b28f4675a5e14687b569e1e5394f06f25f536eaa6c36ed390d24c634d2a30fc43c558d3e1ca004bdf41436705cd7ce9b59beeb31a6dd757a5fa7421f84d7 +docfiles size=131 + RELOC/doc/latex/emisa/CHANGELOG.md + RELOC/doc/latex/emisa/README.TEXLIVE + RELOC/doc/latex/emisa/README.md details="Readme" + RELOC/doc/latex/emisa/emisa-author-template.tex + RELOC/doc/latex/emisa/emisa.pdf details="Package documentation" + RELOC/doc/latex/emisa/manifest.txt +srccontainersize 48368 +srccontainerchecksum 3cb1e47c50d4cccbfd1b428ec1193ffd0f489d0284dd095f2f969c8db76f735b854e4102f474ab5e72876bb7b6e6210dd617958e42a851cbc03f5844626030fd +srcfiles size=54 + RELOC/source/latex/emisa/emisa.dtx + RELOC/source/latex/emisa/emisa.ins +runfiles size=18 + RELOC/tex/latex/emisa/emisa.bbx + RELOC/tex/latex/emisa/emisa.cbx + RELOC/tex/latex/emisa/emisa.cls +catalogue-contact-repository https://github.com/emisa-journal/emisa-latex-package +catalogue-ctan /macros/latex/contrib/emisa +catalogue-license lppl1.3c +catalogue-topics publisher class +catalogue-version 2.3.0 + +name emoji +category Package +revision 55678 +shortdesc Emoji support in (Lua)LaTeX +relocated 1 +longdesc This package allows user to typeset emoji in a LaTeX document. +longdesc It requires LuaHBTeX, or LuaLaTeX-dev at present. +containersize 40740 +containerchecksum c26f69740efb5f18f196742ca927bda5fceb15a9acbc65e6671d569da40dda75cfec188fe198bce4e4d476bb41e6ca383fe0a19b84b15691f791cc4ff6001e98 +doccontainersize 1051376 +doccontainerchecksum caf60c65f653a2a57f3d33641526fc8f80903c718b62113c7425094e4ae35799f0c1ccacd19ceb3a0b39b571ea2d7b099effbc69aaa3f3704062e8e6f22d4e83 +docfiles size=270 + RELOC/doc/latex/emoji/README.md details="Readme" + RELOC/doc/latex/emoji/emoji-doc.pdf details="Package documentation" + RELOC/doc/latex/emoji/emoji-doc.tex +runfiles size=94 + RELOC/tex/latex/emoji/emoji-table.def + RELOC/tex/latex/emoji/emoji.sty +catalogue-contact-bugs https://github.com/stone-zeng/latex-emoji/issues +catalogue-contact-repository https://github.com/stone-zeng/latex-emoji +catalogue-ctan /macros/luatex/latex/emoji +catalogue-license lppl1.3c +catalogue-topics graphics graphics-use luatex +catalogue-version 0.2.1 + +name emojicite +category Package +revision 55131 +shortdesc Add emojis to citations +relocated 1 +longdesc This package adds emojis to citations. +containersize 1328 +containerchecksum 351fd8292800ce22d821351a6f69afadc87a24e4077dafd7a83b5f70b3f700c44764f2434255fde29532007faf952cb39d97f642a0b91c1cecc3b58d85753ab5 +doccontainersize 173436 +doccontainerchecksum 642c3656e3f6e89deab561df4253bcac0f98f1b65537ba3c78079ebc4d3a9336ce40fe8abb1955583e404b3945d76fcbca19845dbde7bd7c8f4db0a6209d80bf +docfiles size=53 + RELOC/doc/lualatex/emojicite/LICENSE.txt + RELOC/doc/lualatex/emojicite/README.md details="Readme" + RELOC/doc/lualatex/emojicite/emojicite-doc.pdf details="Package documentation" + RELOC/doc/lualatex/emojicite/emojicite-doc.tex + RELOC/doc/lualatex/emojicite/example.tex +runfiles size=1 + RELOC/tex/lualatex/emojicite/emojicite.sty +catalogue-also emoji +catalogue-contact-bugs https://github.com/berleon/emojicite/issues +catalogue-contact-repository https://github.com/berleon/emojicite +catalogue-ctan /macros/luatex/latex/emojicite +catalogue-license lppl1.3c +catalogue-topics luatex graphics-use cite-supp expl3 +catalogue-version 0.3 + +name emp +category Package +revision 23483 +shortdesc "Encapsulate" MetaPost figures in a document +relocated 1 +longdesc Emp is a package for encapsulating MetaPost figures in LaTeX: +longdesc the package provides environments where you can place MetaPost +longdesc commands, and means of using that code as fragments for +longdesc building up figures to include in your document. So, with emp, +longdesc the procedure is to run your document with LaTeX, run MetaPost, +longdesc and then complete running your document in the normal way. Emp +longdesc is therefore useful for keeping illustrations in synchrony with +longdesc the text. It also frees you from inventing descriptive names +longdesc for PostScript files that fit into the confines of file system +longdesc conventions. +containersize 3236 +containerchecksum 5028360a2b412232b06b0bc53352c7a0a379943c14781b49b45cb75aef044df5bda24449dbf13601d1a574e5349bd0f2d2f7b7969f10bf72b3aeebe9e81b6ecb +doccontainersize 212864 +doccontainerchecksum 480edb224fcb42457c6252d4b6fd8cf42796e9b2ac72aa8d4bb22b3840cb10a55a509a47b8c504efbdba3e28192acee367e99638dfdbf9cab4fc5628496cd5db +docfiles size=71 + RELOC/doc/latex/emp/COPYING + RELOC/doc/latex/emp/Makefile + RELOC/doc/latex/emp/README details="Package Readme" + RELOC/doc/latex/emp/emp.pdf details="Documented source" + RELOC/doc/latex/emp/empman.pdf details="Package manual" +srccontainersize 9284 +srccontainerchecksum e80aeb8566f31c3582423abc2794cd468b2a7b3505d4d01cbcf261201e4e8a95ca6ed87c6deffa03c9f868762fbe8b2078bf8327172ee9a172605fa0e6e72c40 +srcfiles size=12 + RELOC/source/latex/emp/emp.drv + RELOC/source/latex/emp/emp.dtx + RELOC/source/latex/emp/emp.ins + RELOC/source/latex/emp/empman.drv +runfiles size=2 + RELOC/tex/latex/emp/emp.sty +catalogue-also metatex +catalogue-ctan /macros/latex/contrib/emp +catalogue-license gpl +catalogue-topics graphics-inline + +name emptypage +category Package +revision 18064 +shortdesc Make empty pages really empty +relocated 1 +longdesc This package prevents page numbers and headings from appearing +longdesc on empty pages. +containersize 1048 +containerchecksum 6379cbd0983ca7b58d2c94ce02a76e054faab1afb2942227469dcf2c4d572d9946921b6d24e9c7d2b5a82cc45e7e380a8ffae671f165ad0e2a3a611b95841352 +doccontainersize 50156 +doccontainerchecksum 11681a155df95f913c3d25cceb32b54ace35bfa5aa7541916c15473b951b02a7417380dfa5c30f5dc3de1259d6cad99859c31bad4c2f2056ffb4608c614a2e14 +docfiles size=16 + RELOC/doc/latex/emptypage/README details="Readme" + RELOC/doc/latex/emptypage/emptypage.pdf details="Package documentation" +srccontainersize 1856 +srccontainerchecksum 1bdfdd32ed844651a109b54c65e7297222cb065a122269bd5c10cf77c6ae0e38b717fe182dad6bd0432b5eafb38b3d8631218599a46bb61a598eef4093a8ce1c +srcfiles size=2 + RELOC/source/latex/emptypage/emptypage.dtx + RELOC/source/latex/emptypage/emptypage.ins +runfiles size=1 + RELOC/tex/latex/emptypage/emptypage.sty +catalogue-ctan /macros/latex/contrib/emptypage +catalogue-license lppl1.2 +catalogue-topics layout +catalogue-version 1.2 + +name emulateapj +category Package +revision 28469 +shortdesc Produce output similar to that of APJ +relocated 1 +longdesc A LaTeX class (based on current RevTeX) to produce preprints +longdesc with the page layout similar to that of the Astrophysical +longdesc Journal. +containersize 17816 +containerchecksum 12b73ef4234af72358c1f120d860b7ba823bb4d65f91cba348a4a136b57f8edccf3849eb36e95c50cc40445a5fe3908652c221b938ee34a17aed6b4cb265744e +doccontainersize 147868 +doccontainerchecksum 2d226b60313de3387d87c373a23e490a66c2fe1a94e97ef2364e65fafb037a148db7f5162ab9d3f1d788a037fdebe02ddedaa772eb715dc1ec8fea941b0e6708 +docfiles size=48 + RELOC/doc/latex/emulateapj/README details="Readme" + RELOC/doc/latex/emulateapj/sample.pdf + RELOC/doc/latex/emulateapj/sample.tex +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-license lppl +catalogue-topics journalpub astronomy class + +name enctex +category Package +revision 34957 +shortdesc A TeX extension that translates input on its way into TeX +relocated 1 +longdesc EncTeX is (another) TeX extension, written at the change-file +longdesc level. It provides means of translating input on the way into +longdesc TeX. It allows, for example, translation of multibyte +longdesc sequences, such as utf-8 encoding. +containersize 23748 +containerchecksum e6dc0988bd10dcefd63db2a57999637b63187d8a234c46dcb148e9dfe8388800e61237d7b58d271b735d2658d40c1f81016b5018e239d556fb9615d35b4129a0 +doccontainersize 253856 +doccontainerchecksum 2bf47c879c6ed0fc539763c899d8db261135f1a0ef0052904d03a72663cff38d40d2fe7b0daacaf2d54771c7b9eb5e98b73ef71d2a733899d458803f8caee723 +docfiles size=108 + RELOC/doc/generic/enctex/COPYING + RELOC/doc/generic/enctex/COPYING.UCD + RELOC/doc/generic/enctex/INSTALL + RELOC/doc/generic/enctex/INSTALL.eng + RELOC/doc/generic/enctex/README details="Readme" + RELOC/doc/generic/enctex/changes.txt + RELOC/doc/generic/enctex/encdoc-e.pdf details="Reference manual (in English)" language="en" + RELOC/doc/generic/enctex/encdoc-e.tex + RELOC/doc/generic/enctex/encdoc.pdf details="Reference manual (in Czech)" language="cs" + RELOC/doc/generic/enctex/encdoc.tex + RELOC/doc/generic/enctex/math-example.tex + RELOC/doc/generic/enctex/unimap.diff + RELOC/doc/generic/enctex/unimap.py + RELOC/doc/generic/enctex/vlna.tex +runfiles size=62 + RELOC/tex/generic/enctex/1250-csf.tex + RELOC/tex/generic/enctex/1250-il2.tex + RELOC/tex/generic/enctex/1250-latex.tex + RELOC/tex/generic/enctex/1250-t1.tex + RELOC/tex/generic/enctex/852-csf.tex + RELOC/tex/generic/enctex/852-il2.tex + RELOC/tex/generic/enctex/852-latex.tex + RELOC/tex/generic/enctex/852-t1.tex + RELOC/tex/generic/enctex/csfmacro.tex + RELOC/tex/generic/enctex/enc-u.tex + RELOC/tex/generic/enctex/encmacro.tex + RELOC/tex/generic/enctex/il2-1250.tex + RELOC/tex/generic/enctex/il2-852.tex + RELOC/tex/generic/enctex/il2-csf.tex + RELOC/tex/generic/enctex/il2-kam.tex + RELOC/tex/generic/enctex/il2-t1.tex + RELOC/tex/generic/enctex/kam-csf.tex + RELOC/tex/generic/enctex/kam-il2.tex + RELOC/tex/generic/enctex/kam-latex.tex + RELOC/tex/generic/enctex/kam-t1.tex + RELOC/tex/generic/enctex/mixcodes.tex + RELOC/tex/generic/enctex/noprefnt.tex + RELOC/tex/generic/enctex/plain-1250-cs.tex + RELOC/tex/generic/enctex/plain-852-cs.tex + RELOC/tex/generic/enctex/plain-il2-cs.tex + RELOC/tex/generic/enctex/plain-kam-cs.tex + RELOC/tex/generic/enctex/plain-utf8-cs.tex + RELOC/tex/generic/enctex/plain-utf8-ec.tex + RELOC/tex/generic/enctex/polyset.tex + RELOC/tex/generic/enctex/t1macro.tex + RELOC/tex/generic/enctex/utf8-csf.tex + RELOC/tex/generic/enctex/utf8-t1.tex + RELOC/tex/generic/enctex/utf8cseq.tex + RELOC/tex/generic/enctex/utf8lat1.tex + RELOC/tex/generic/enctex/utf8lata.tex + RELOC/tex/generic/enctex/utf8math.tex + RELOC/tex/generic/enctex/utf8off.tex + RELOC/tex/generic/enctex/utf8raw.tex + RELOC/tex/generic/enctex/utf8unkn.tex + RELOC/tex/generic/enctex/utf8warn.tex +catalogue-ctan /systems/enctex +catalogue-license gpl +catalogue-topics engine + +name encxvlna +category Package +revision 34087 +shortdesc Insert nonbreakable spaces, using encTeX +relocated 1 +longdesc The package provides tools for inserting nonbreakable spaces +longdesc after nonsyllabic prepositions and single letter conjunctions +longdesc as required by Czech and Slovak typographical rules. It is +longdesc implemented using encTeX and provides files both for plain TeX +longdesc and LaTeX. The LaTeX solution tries to avoid conflicts with +longdesc other packages. +containersize 2572 +containerchecksum f6aa0a954affda9152f5b15958ea453e3c2979205f25a5d9f15e3fb189b2352a87256a345d382a3c7dc401eeb55360afa9cf942cc4779406b97cc8f8c47eba81 +doccontainersize 251156 +doccontainerchecksum 01f44c8205daf33006eaa73061d27c9e17ce5b456e73f427f797023cf94d7380e44180c347021cc5c17870550fc7e626bab8de6219d6b56000526aa54ba34efe +docfiles size=70 + RELOC/doc/generic/encxvlna/License.txt + RELOC/doc/generic/encxvlna/README details="Readme" + RELOC/doc/generic/encxvlna/encxvlna.pdf details="Package documentation" + RELOC/doc/generic/encxvlna/encxvlna.tex + RELOC/doc/generic/encxvlna/vlna-inc.tex +runfiles size=3 + RELOC/tex/latex/encxvlna/encxvlna.sty + RELOC/tex/plain/encxvlna/encxvlna.tex +catalogue-also luavlna xevlna +catalogue-ctan /macros/generic/encxvlna +catalogue-license lppl +catalogue-topics typesetting czech slovak +catalogue-version 1.1 + +name endfloat +category Package +revision 57090 +shortdesc Move floats to the end, leaving markers where they belong +relocated 1 +longdesc Place all floats on pages by themselves at the end of the +longdesc document, optionally leaving markers like "[Figure 3 about +longdesc here]" in the text near to where the figure (or table) would +longdesc normally have occurred. Float types figure and table are +longdesc recognised by the package, unmodified. Since several packages +longdesc define other types of float, it is possible to register these +longdesc float types with endfloat. +containersize 5080 +containerchecksum 9c3820ddd36934dcfd049ab766ed037119459d02e9c049401b910b1c14ae2aed93d94110db66f0cdd2149451e152b5bcac14866c7844ba4a47f8c0a27756f733 +doccontainersize 181292 +doccontainerchecksum 0004d60fe959415670b5173bbab6d37733ed82b537d714c7357dae85ff8f7204e316c48d2651b1b53cc9b6ad0206a47c9cde1acdeb6aae676a25e50f363238c2 +docfiles size=62 + RELOC/doc/latex/endfloat/COPYING + RELOC/doc/latex/endfloat/README details="Readme" + RELOC/doc/latex/endfloat/efxmpl.cfg + RELOC/doc/latex/endfloat/endfloat.pdf details="Package documentation" +srccontainersize 29220 +srccontainerchecksum bc5150716b23d3aa1e3a66e29fca3e8f9703199feb05b4bf76834e79654c39b0f6790ef1f0c193abeb0acfd0b2717076d4e2c89069221e1bc45716e0de314e85 +srcfiles size=30 + RELOC/source/latex/endfloat/endfloat.drv + RELOC/source/latex/endfloat/endfloat.dtx + RELOC/source/latex/endfloat/endfloat.ins +runfiles size=5 + RELOC/tex/latex/endfloat/endfloat.sty +catalogue-ctan /macros/latex/contrib/endfloat +catalogue-license gpl +catalogue-topics float +catalogue-version 2.7 + +name endheads +category Package +revision 43750 +shortdesc Running headers of the form "Notes to pp.xx-yy" +relocated 1 +longdesc Endheads provides running headers of the form "Notes to pp. +longdesc xx-yy" for endnotes sections. It also enables one to reset the +longdesc endnotes counter, and put a line marking the chapter change in +longdesc the endnotes, at the beginning of every chapter. Endheads +longdesc requires the fancyhdr, needspace, ifthen, and endnotes +longdesc packages. +containersize 2584 +containerchecksum 55f01774d62616b81fc846af275067445c8979d50cbb67c8f6cdc362a26999c83c9ce5428af28170ab9e4c6262fc4ed8bd0431c5aee8aafa89e38bf4cdc30989 +doccontainersize 229624 +doccontainerchecksum bbed9408161f827ebe39ae2161e89f1f15d8327f29f7eb18bf58f3cac7c58492529caf05ebe3111891520c406c547b2f1aa57d2927c5f857ea6e02ecfa9cf84b +docfiles size=57 + RELOC/doc/latex/endheads/README.md + RELOC/doc/latex/endheads/endheads.pdf details="Package documentation" +srccontainersize 7828 +srccontainerchecksum c58d68a17da865391ce4480dc02f3375ee6d311a2590f8505885c3ce7fed65b2e7d6c6dd5838f55f4fe3d7192b56217b7146646269938a3a10cdefd3c55bd0c2 +srcfiles size=8 + RELOC/source/latex/endheads/endheads.dtx + RELOC/source/latex/endheads/endheads.ins +runfiles size=2 + RELOC/tex/latex/endheads/endheads.sty +catalogue-ctan /macros/latex/contrib/endheads +catalogue-license lppl +catalogue-topics endnote page-hf +catalogue-version 1.6 + +name endiagram +category Package +revision 34486 +shortdesc Easy creation of potential energy curve diagrams +relocated 1 +longdesc The package provides the facility of drawing potential energy +longdesc curve diagrams with just a few simple commands. The package +longdesc cannot (yet) be considered stable. +containersize 8772 +containerchecksum 50cda29c5f045e45e0421efe11128b11be1206b4ea3b183d401562a9c8afe214031c993f885bfca67f81e8b4827e024a0aeb1d95e5a8a03426f72f414cfd17fe +doccontainersize 643640 +doccontainerchecksum 0807629080916e9ca7451fd1975da985ac786326914521c21155c337acbf48888620e3bac03b00fbbf45bbb47740faaa40d1db768a296e4a6b1cf6c6671357ca +docfiles size=167 + RELOC/doc/latex/endiagram/README details="Readme" + RELOC/doc/latex/endiagram/endiagram_en.pdf details="Package documentation" + RELOC/doc/latex/endiagram/endiagram_en.tex +runfiles size=17 + RELOC/tex/latex/endiagram/endiagram.sty +catalogue-ctan /macros/latex/contrib/endiagram +catalogue-license lppl1.3 +catalogue-topics chemistry expl3 +catalogue-version 0.1d + +name endnotes +category Package +revision 53319 +shortdesc Place footnotes at the end +relocated 1 +longdesc Accumulates notes (using the \endnote command, which can be +longdesc used as a replacement for \footnote), and places them at the +longdesc end of the section, chapter or document. +containersize 5500 +containerchecksum 3b4d5b55dd1ef844b96d30c7d40d5ea56ea3082a9e6740e3bffb837b864823a2c5545a13fa79eb49f79b47ee86aaa28e15c64f676bd27e4987aaaaca76bb2f31 +doccontainersize 280164 +doccontainerchecksum e4de81d6cf0d7bc686d84420dff1e390ad18747ebc9381c6df006f871f9d5e000aae5cd43a3648dfdab2806da83efc6b375ceb4a9110137ed6b373538a7a8b57 +docfiles size=72 + RELOC/doc/latex/endnotes/README.md details="Readme" + RELOC/doc/latex/endnotes/endnotes.pdf details="Package documentation" + RELOC/doc/latex/endnotes/endnotes.tex +runfiles size=4 + RELOC/tex/latex/endnotes/endnotes.sty +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-license lppl1.2 +catalogue-topics endnote + +name endnotes-hy +category Package +revision 54758 +shortdesc Patches the endnotes package to create hypertext links to the correct anchors +relocated 1 +longdesc The package supports the creation of hypertext links in support +longdesc of the endnotes package. The package modifies the syntax of the +longdesc \endnote command: \endnote*[<num>]{<text>}\label{<name>}. When +longdesc the *-option is used, no endnote mark is created, but the +longdesc endnote itself is written. The \label command appears at the +longdesc end of the \endnote and its arguments, rather than within the +longdesc argument of the <text> argument. +containersize 1484 +containerchecksum abd177ac968efce6749d8bb80c327bd8c3617e14045d124e036f2e503eed7bc33c72112d46acebe84d8a0a2f25cf3d99fd02a514d3673f38ada9e7fef879e3f5 +doccontainersize 303396 +doccontainerchecksum 46b7ea667c12de23f0491af714e5b86fb7fdbef0e3c03d7c31e242dc715745824be08028861c0e72244695aee8bcb0ce2191746c8d1f906523dcbe6b39958281 +docfiles size=86 + RELOC/doc/latex/endnotes-hy/README.md details="Readme" + RELOC/doc/latex/endnotes-hy/docs/endnotes-hy.pdf details="Package documentation" + RELOC/doc/latex/endnotes-hy/examples/exmpl-endnotes.pdf + RELOC/doc/latex/endnotes-hy/examples/exmpl-endnotes.tex +srccontainersize 4740 +srccontainerchecksum 6771356602da1fef77f350eb8390abcda0f1267c0761bf255f4aedeca79fadf1c0255bb267b456469c1d8dffb1ff052e567d0bb6b07035c1f5d676d5ae2d4cdc +srcfiles size=4 + RELOC/source/latex/endnotes-hy/endnotes-hy.dtx + RELOC/source/latex/endnotes-hy/endnotes-hy.ins +runfiles size=1 + RELOC/tex/latex/endnotes-hy/endnotes-hy.sty +catalogue-also endnotes +catalogue-ctan /macros/latex/contrib/endnotes-hy +catalogue-license lppl1.2 +catalogue-topics endnote + +name endnotesj +category Package +revision 47703 +shortdesc Japanese-style endnotes +relocated 1 +longdesc This package provides customized styles for endnotes to be used +longdesc with Japanese documents. It can be used on pLaTeX, upLaTeX, and +longdesc LuaLaTeX (LuaTeX-ja). +containersize 5292 +containerchecksum acc3ecb055add319d5cbfc4e542c1be490c00187153990dd42d5b9a23adfd19795bebe4648129bc1cd8aa8cc243111602b287183803db8b5962b23b6c60487e3 +doccontainersize 152524 +doccontainerchecksum 71e52552f4a432b8743e448142fdc8e49b9e1ff1d290b6d20731c083f62bb5be823db76720fcfa40cbb8bf75968b80875926aea8a7f67808555fdec160de1911 +docfiles size=42 + RELOC/doc/latex/endnotesj/LICENSE + RELOC/doc/latex/endnotesj/Makefile + RELOC/doc/latex/endnotesj/README.md details="Readme" + RELOC/doc/latex/endnotesj/endnotesj-ja.pdf details="Package documentation" language="ja" + RELOC/doc/latex/endnotesj/endnotesj-ja.tex +runfiles size=5 + RELOC/tex/latex/endnotesj/endnotesj.sty +catalogue-contact-repository https://github.com/aminophen/endnotesj +catalogue-ctan /language/japanese/endnotesj +catalogue-license bsd3 +catalogue-topics endnote japanese +catalogue-version 3.0 + +name endofproofwd +category Package +revision 55643 +shortdesc An "end of proof" sign +relocated 1 +longdesc This package provides an additional "end of proof" sign. The +longdesc command's name is \wasserdicht. +containersize 1996 +containerchecksum a4b62882d4111a916588298415546fd402abf15ad89177fc2f57b983ef4060b49c7f73677add54c683e0ac8d40b91280453f8a239bb9da5e262cca20d12562d7 +doccontainersize 680 +doccontainerchecksum 5953acfac90a34bb2c57cd813d220279fb96fa74415f0d7677ed7b7a8839b858f64b3c96d1dfd2dce5a8704e76ffc7eda1e5aa337585f6715ae229a759148ec3 +docfiles size=1 + RELOC/doc/latex/endofproofwd/README.txt details="Readme" +runfiles size=3 + RELOC/tex/latex/endofproofwd/common/endofproofwd.pdf_tex + RELOC/tex/latex/endofproofwd/endofproofwd.pdf + RELOC/tex/latex/endofproofwd/endofproofwd.sty +catalogue-ctan /graphics/endofproofwd +catalogue-license lppl1.3 +catalogue-topics graphics maths font-symbol-maths + +name engpron +category Package +revision 16558 +shortdesc Helps to type the pronunciation of English words +relocated 1 +longdesc This package provides macros beginning with the PS character, +longdesc made active, which enable us to write the British or American +longdesc English pronunciation as one can find it in the 'English +longdesc Pronouncing Dictionary' by Daniel Jones. There is an option to +longdesc typeset the pronunciation in the style of Harrap's dictionary. +containersize 3860 +containerchecksum e525f8d2ad25b93566c101edd29a70d49d9f65f591e15bf3457671aaf748da1afac5d483389eada870cefc9e144010e16c561d0561d97ecb3ae240e21b5c5b39 +doccontainersize 1928396 +doccontainerchecksum dfa3ba98bddd11db47f308c988735967d1ec92c688081bad0deba88c29bd01c976bd1180342b890489f3026c964520ec1fa399fdb52f484c24285e3540a12859 +docfiles size=608 + RELOC/doc/latex/engpron/LISEZMOI details="Lisez moi" language="fr" + RELOC/doc/latex/engpron/README details="Readme" language="en" + RELOC/doc/latex/engpron/engpron-en.ltx + RELOC/doc/latex/engpron/engpron-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/engpron/engpron-ex-en.pdf details="Usage example (English)" language="en" + RELOC/doc/latex/engpron/engpron-ex-en.tex + RELOC/doc/latex/engpron/engpron-ex-fr.pdf details="Usage example (French)" language="fr" + RELOC/doc/latex/engpron/engpron-ex-fr.tex + RELOC/doc/latex/engpron/engpron-fr.ltx + RELOC/doc/latex/engpron/engpron-fr.pdf + RELOC/doc/latex/engpron/engpron.pdf details="Package documentation (French)" language="fr" +srccontainersize 24988 +srccontainerchecksum b47f186eb08ee68b769d61954b705fb5e0575f9af90968569a1928a6b97bbe5bbbd8b65dbd2f946a40ebc7dc1fc676a03effd7cc51924356531ce18fcc3c8dee +srcfiles size=24 + RELOC/source/latex/engpron/Makefile + RELOC/source/latex/engpron/engpron.dtx + RELOC/source/latex/engpron/engpron.ins +runfiles size=4 + RELOC/tex/latex/engpron/engpron-tools.sty + RELOC/tex/latex/engpron/engpron.sty +catalogue-ctan /macros/latex/contrib/engpron +catalogue-license lppl +catalogue-topics phonetic linguistic +catalogue-version 2 + +name engrec +category Package +revision 15878 +shortdesc Enumerate with lower- or uppercase Greek letters +relocated 1 +longdesc This package provides two macros \engrec and \EnGrec to convert +longdesc number arguments to lower case or upper case greek letters. +longdesc They have the syntax of \alph, i.e. \engrec{a_counter}, +longdesc \EnGrec{a_counter}. Options are provided to work with the +longdesc upgreek and fourier packages. Requires amstext. +containersize 1832 +containerchecksum 3856199a11043eb42062122d99f11a64791113ebee137b588b69eab7ba79d721349c2268440a4b801b0e7bc293fc99011fb9a70a732a03a5656cc6302cbd0054 +doccontainersize 270476 +doccontainerchecksum f5402766dee90ec0cd2aad59db562a7314805072d4247e5930e59f5aebda9c1b87c4b6935028ec960bca4eb27a1bb1c7ff31b2a671ae0338e1058e24323d4cec +docfiles size=71 + RELOC/doc/latex/engrec/LISEZMOI + RELOC/doc/latex/engrec/README details="Package Readme" + RELOC/doc/latex/engrec/engrec.pdf details="Package documentation" +srccontainersize 7364 +srccontainerchecksum ff2e4447135db1164447ed8502f45e9dc647cc3b8c9329fe21d3a279b40c2da0923fa78be44ef52d4d9a4781945976714140bd2837268d0537cd6bd6c430501f +srcfiles size=7 + RELOC/source/latex/engrec/Makefile + RELOC/source/latex/engrec/engrec.dtx + RELOC/source/latex/engrec/engrec.ins +runfiles size=2 + RELOC/tex/latex/engrec/engrec.sty +catalogue-also greekctr +catalogue-ctan /macros/latex/contrib/engrec +catalogue-license lppl +catalogue-topics list list-enum greek +catalogue-version 1.1 + +name engtlc +category Package +revision 28571 +shortdesc Support for users in Telecommunications Engineering +relocated 1 +longdesc The package provides a wide range of abbreviations for terms +longdesc used in Telecommunications Engineering. +containersize 3740 +containerchecksum c1ad2ed5337168c70bcfddd35c72b83b19a1596bc7d9c71298eb82ad8637c984253c79216606060753d1cc5ad4f961095eed8be2381b786b12202f5b0bc748f1 +doccontainersize 599048 +doccontainerchecksum 4c6cbcf337eca115a856eda24924588208ed9e7491936640c8875d49d649d6012279e4eadfa7cdb6544e08fa283c341754d896c921402a2b1180764e8a8ff233 +docfiles size=210 + RELOC/doc/latex/engtlc/README details="Readme" + RELOC/doc/latex/engtlc/engtlc.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/engtlc/engtlc.tex + RELOC/doc/latex/engtlc/itengtlc.pdf details="Package documentation (Italian)" language="it" + RELOC/doc/latex/engtlc/itengtlc.tex +runfiles size=4 + RELOC/tex/latex/engtlc/engtlc.sty +catalogue-ctan /macros/latex/contrib/engtlc +catalogue-license lppl1.3 +catalogue-topics engineering +catalogue-version 3.2 + +name enigma +category Package +revision 29802 +shortdesc Encrypt documents with a three rotor Enigma +relocated 1 +longdesc The package provides historical encryption (Enigma cipher) for +longdesc LuaTeX-based formats. +containersize 18320 +containerchecksum 70cf80101d3fe9a75e750f5b3df4db79f30f5ef76ed65f4bfb40f36e5c8c5f0d22468396fe3a531508dd484ed5929cd14d4e22734a92814a4eae9ae2ec3e2b07 +doccontainersize 266504 +doccontainerchecksum b0509d252a2dd7b61339ed084dcb8dd4c3ec0e63aa6fcb7fd81302b82bbd3ddb0b68d0460e5970798a12b2b66e1f560b80c7bf36187553abf6531e0916ddb71a +docfiles size=75 + RELOC/doc/context/third/enigma/enigma/COPYING + RELOC/doc/context/third/enigma/enigma/README details="Readme" + RELOC/doc/context/third/enigma/enigma/enigma-doc.pdf details="Package documentation" + RELOC/doc/context/third/enigma/enigma/enigma_manual.tex + RELOC/doc/context/third/enigma/enigma/examples/enigma-example-context.tex + RELOC/doc/context/third/enigma/enigma/examples/enigma-example-latex.tex + RELOC/doc/context/third/enigma/enigma/examples/enigma-example-plain.tex +runfiles size=19 + RELOC/scripts/context/lua/third/enigma/mtx-t-enigma.lua/mtx-t-enigma.lua + RELOC/tex/context/third/enigma/t-enigma.mkv/t-enigma.mkvi + RELOC/tex/generic/enigma/enigma.lua + RELOC/tex/latex/enigma/enigma.sty + RELOC/tex/plain/enigma/enigma.tex +catalogue-ctan /macros/luatex/generic/enigma +catalogue-license bsd +catalogue-topics security luatex +catalogue-version 0.1 + +name enotez +category Package +revision 57130 +shortdesc Support for end-notes +relocated 1 +longdesc The package allows nested endnotes, supports hyperref and +longdesc provides means for easy customization of the list of notes. The +longdesc package requires the expl3 bundle and packages from the LaTeX 3 +longdesc 'package set'. +containersize 7356 +containerchecksum 1bd49ee7ece262d28d0b80f418e7aaf130044447ad341ae799c4f84c4c4e69300662951dab2733d996abf896280470857e8c35832759008881cd23f35fd52e30 +doccontainersize 458308 +doccontainerchecksum a04cad229111ae30cb51aad4c843488661a3e59287280c9335bd82d5a5172429ebcbd31e1d7f6e2c7ec5d9a3f068bf00c88e7dc67f3e39a794f32107bc705f3a +docfiles size=119 + RELOC/doc/latex/enotez/README details="Readme" + RELOC/doc/latex/enotez/enotez_en.pdf details="Package documentation" + RELOC/doc/latex/enotez/enotez_en.tex + RELOC/doc/latex/enotez/enotez_split_example.tex +runfiles size=10 + RELOC/tex/latex/enotez/enotez.sty +catalogue-also endnote endnotes +catalogue-contact-bugs https://github.com/cgnieder/enotez/issues +catalogue-contact-repository https://github.com/cgnieder/enotez/ +catalogue-ctan /macros/latex/contrib/enotez +catalogue-license lppl1.3c +catalogue-topics endnote expl3 +catalogue-version 0.10c + +name enumitem +category Package +revision 51423 +shortdesc Control layout of itemize, enumerate, description +relocated 1 +longdesc This package provides user control over the layout of the three +longdesc basic list environments: enumerate, itemize and description. It +longdesc supersedes both enumerate and mdwlist (providing +longdesc well-structured replacements for all their funtionality), and +longdesc in addition provides functions to compute the layout of labels, +longdesc and to 'clone' the standard environments, to create new +longdesc environments with counters of their own. +containersize 13756 +containerchecksum d49701368b0ce611f5cfb52ec06616edc27b2dedb99230983ffc59c4c1eadc265a8afd3c94f1e57920de875c4ec684fec007dceca59fd4f4008bb5572c13880c +doccontainersize 163332 +doccontainerchecksum b61f62bb0da61c7124f661739ebfaff6147d73899511d8b1a1d4b98b31bc596c3994acfd73c3c1922f5cc8a05c6a98572254067718be394c48976a10b2351503 +docfiles size=53 + RELOC/doc/latex/enumitem/README.md details="Readme" + RELOC/doc/latex/enumitem/enumitem.pdf details="Package documentation" + RELOC/doc/latex/enumitem/enumitem.tex +runfiles size=13 + RELOC/tex/latex/enumitem/enumitem.sty +catalogue-contact-home http://www.texnia.com/enumitem.html +catalogue-contact-repository https://github.com/jbezos/enumitem +catalogue-ctan /macros/latex/contrib/enumitem +catalogue-license mit +catalogue-topics list +catalogue-version 3.9 + +name enumitem-zref +category Package +revision 21472 +shortdesc Extended references to items for enumitem package +relocated 1 +longdesc The package is a companion for the enumitem package; it makes +longdesc it possible to reference any item in lists formatted by +longdesc enumitem lists, viz., enumerated, itemize and description +longdesc lists, and any list defined (or customised) with \newlist or +longdesc \setlist. References may be typeset differently with +longdesc options/properties and even arbitrary text. With hyperref, +longdesc anchors are added for each item to enable hyperlinks within the +longdesc document or even to external documents. Three schemes are +longdesc provided to make reference names (including the standard \label +longdesc command). +containersize 7148 +containerchecksum 5cd16cd19d63d4825dd1f726ad7617bc892a0d80e41f559234b3f82950f589f044a9816005a089f6837805ab08f07b507e47c5d2d389728adaa5350a76d1c1ea +doccontainersize 684148 +doccontainerchecksum af4404c0f76f6f693d1fc0a82e0673c461a1acd6a0d7e9cbac10719790e54199deed1b87fae59db4826c2d1874ce59c7c2a1e5ae33286369a4f7e495223fe2e3 +docfiles size=242 + RELOC/doc/latex/enumitem-zref/README details="Readme" + RELOC/doc/latex/enumitem-zref/enumitem-zexample.tex + RELOC/doc/latex/enumitem-zref/enumitem-zref.pdf details="Package documentation" +srccontainersize 24884 +srccontainerchecksum 7f5642d0d3f3779b0d66832f509265a17e66c6e3ab4a74e7fdeb0bf4af9c66257eb78a9bb3a1a7dc1747a07ace12607031f861a14664addcc9d707d3f8c5d5ce +srcfiles size=26 + RELOC/source/latex/enumitem-zref/enumitem-zref.drv + RELOC/source/latex/enumitem-zref/enumitem-zref.dtx + RELOC/source/latex/enumitem-zref/enumitem-zref.ins +runfiles size=7 + RELOC/tex/latex/enumitem-zref/enumitem-zref.sty +catalogue-ctan /macros/latex/contrib/enumitem-zref +catalogue-license lppl1.3 +catalogue-topics label-ref list +catalogue-version 1.8 + +name envbig +category Package +revision 15878 +shortdesc Printing addresses on envelopes +relocated 1 +longdesc A simple package, that prints both 'from' and 'to' addresses. +containersize 1368 +containerchecksum e39ce40decbb52360cfe465d8a5147f9eb5bfae8dd42b86a868a46f1d3c2544d14035d6c307e116c0d08e6ecb62ba5943de803ee9d40a0a8cdf94a88aec8f808 +doccontainersize 404 +doccontainerchecksum cd8c32d4694252449e78736be1697f9a8da01079a8aeafb774d92ded858de9ee7ae163b3758710df466dd0f75fb8b325e86e575457b66c8107f3c580fe0fc737 +docfiles size=1 + RELOC/doc/latex/envbig/README +runfiles size=1 + RELOC/tex/latex/envbig/envbig.sty +catalogue-ctan /macros/latex/contrib/envbig +catalogue-license lppl +catalogue-topics letter + +name environ +category Package +revision 56615 +shortdesc A new interface for environments in LaTeX +relocated 1 +longdesc The package provides the \collect@body command (as in amsmath), +longdesc as well as a \long version \Collect@Body, for collecting the +longdesc body text of an environment. These commands are used to define +longdesc a new author interface to creating new environments. For +longdesc example, \NewEnviron{test}, wraps the entire environment body +longdesc in square brackets, doing the right thing in ignoring leading +longdesc and trailing spaces. +depend trimspaces +containersize 1884 +containerchecksum c8dec70e56651a89ae8da15abc0ad81cc2edb4487837469238e2adc0e7c58cae4c5da82b637a3336839b50103e3d846c5cee8c73141488f644469a0f3e9d363f +doccontainersize 156300 +doccontainerchecksum 78d4d3f570470619c938687a6c9a6925aad901d781e3e893bd731a49bb8eca62bf1870e68d84f7125e10d91d7bec02a323ae42278ff59c04d7e33eefa2261496 +docfiles size=40 + RELOC/doc/latex/environ/README details="Readme" + RELOC/doc/latex/environ/environ.pdf details="Package documentation" +srccontainersize 6420 +srccontainerchecksum b30607d21bbf5ddf1c7d36bd9173a16d91bdfcfa004782be50e50f17bf54d94e943d5e524e2331b75f3ce65e81193ba98e69ab56c38959d632007f5b0a87bd6a +srcfiles size=6 + RELOC/source/latex/environ/environ.dtx + RELOC/source/latex/environ/environ.ins +runfiles size=2 + RELOC/tex/latex/environ/environ.sty +catalogue-ctan /macros/latex/contrib/environ +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.3 + +name envlab +category Package +revision 15878 +shortdesc Addresses on envelopes or mailing labels +relocated 1 +longdesc A LaTeX package for producing mailing envelopes and labels, +longdesc including barcodes and address formatting according to the US +longdesc Postal Service rules. Redefines the standard \makelabels +longdesc command of the LaTeX letter documentclass. +containersize 5524 +containerchecksum ba20028efa3c286132133d8c292fbc02d77881e64923ca98cece98fbe1e60acf4033b8308a3f9f31f144de071938698a75add803436e1205f7baa820a308a4f1 +doccontainersize 341332 +doccontainerchecksum 4dedc851e00f82ff3bb912e99bf112f4e464b129b89ed75ac41cab9e9ec8c54a32ace3901a3bdc11c90597cfc0481fc7cfc89b4b95bc9aa0c8850a1e8ec88cc9 +docfiles size=109 + RELOC/doc/latex/envlab/elguide.pdf details="User guide" + RELOC/doc/latex/envlab/elguide.tex + RELOC/doc/latex/envlab/envlab.pdf details="Documentation source" + RELOC/doc/latex/envlab/readme.v12 +srccontainersize 14628 +srccontainerchecksum 9181b7083e3b57329effd0c9ef462a626f8de6db5eb6dbf6800237348a010b74eaeaf11ffa2b491ddf324f0d9bb2c792b9fdda238b887df057b82dfa4fbf04cf +srcfiles size=19 + RELOC/source/latex/envlab/elold.ins + RELOC/source/latex/envlab/envlab.drv + RELOC/source/latex/envlab/envlab.dtx + RELOC/source/latex/envlab/envlab.ins +runfiles size=7 + RELOC/tex/latex/envlab/envlab.cfg + RELOC/tex/latex/envlab/envlab.sty +catalogue-also akletter dinbrief formlett +catalogue-contact-home http://users.lk.net/~borisv/latex.html +catalogue-ctan /macros/latex/contrib/envlab +catalogue-license lppl +catalogue-topics letter barcode class +catalogue-version 1.2 + +name epigrafica +category Package +revision 17210 +shortdesc A Greek and Latin font +relocated 1 +longdesc Epigrafica is forked from the development of the MgOpen font +longdesc Cosmetica, which is a similar design to Optima and includes +longdesc Greek. Development has been supported by the Laboratory of +longdesc Digital Typography and Mathematical Software, of the Department +longdesc of Mathematics of the University of the Aegean, Greece. +execute addMap epigrafica.map +containersize 343668 +containerchecksum 82e5dd9f781b6c3ad0bef743b117d9658ae9e0162fec524fbb59f35f13008d3ce9b37daef8d6b977a5ec4834a1ecdc06346627857445c5f19c89f4b202706beb +doccontainersize 266312 +doccontainerchecksum c90061813a408ea74da7c0a9a53c1dc0f4ef65a9ec1d96e92002127ef401abb5211b7f029630fa445725497018a6e5ed3415e31c40001674405b13a4b4ebf6de +docfiles size=72 + RELOC/doc/fonts/epigrafica/README + RELOC/doc/fonts/epigrafica/doc.zip + RELOC/doc/fonts/epigrafica/epigrafica.pdf details="Package documentation" + RELOC/doc/fonts/epigrafica/epigrafica.tex +runfiles size=161 + RELOC/fonts/afm/public/epigrafica/Epigrafica-Entona.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-EntonaReonta.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-Ortha.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-Pezokefalaia.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-Reonta.afm + RELOC/fonts/enc/dvips/epigrafica/epigraficahellenic.enc + RELOC/fonts/map/dvips/epigrafica/epigrafica.map + RELOC/fonts/tfm/public/epigrafica/epigraficab8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficab8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabi8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabi8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabo8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabo8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficac8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficac8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahb7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahb7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbi7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbi7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbo7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbo7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahc7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahc7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahi7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahi7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahn7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficaho7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficaho7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficai8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficai8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigrafican8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigrafican8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficao8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficao8r.tfm + RELOC/fonts/tfm/public/epigrafica/gepigraficahn7a.tfm + RELOC/fonts/type1/public/epigrafica/Epigrafica-Entona.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-EntonaReonta.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-Ortha.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-Pezokefalaia.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-Reonta.pfb + RELOC/fonts/vf/public/epigrafica/epigraficab8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficabi8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficabo8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficac8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahb7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahbi7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahbo7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahc7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahi7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahn7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficaho7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficai8r.vf + RELOC/fonts/vf/public/epigrafica/epigrafican8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficao8r.vf + RELOC/tex/latex/epigrafica/epigrafica.sty + RELOC/tex/latex/epigrafica/lgrepigrafica.fd + RELOC/tex/latex/epigrafica/ot1epigrafica.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/epigrafica +catalogue-license gpl +catalogue-topics font font-type1 font-greek font-sans +catalogue-version 1.01 + +name epigram +category Package +revision 20513 +shortdesc Display short quotations +relocated 1 +longdesc The package determines (on the basis of the width of the text +longdesc of the epigram, laid out on a single line) whether to produce a +longdesc line or a displayed paragraph. +containersize 852 +containerchecksum 8952dbb6f7c573028b1f9621cd9c947a264847e59e1ead9547d386d71c2c15ab5f9c26088568b023030645b02191c9b72d827a80706ca1570785876c6acac6f0 +runfiles size=1 + RELOC/tex/generic/epigram/epigram.tex +catalogue-ctan /macros/generic/misc/epigram.tex +catalogue-license pd +catalogue-topics epigram + +name epigraph +category Package +revision 54857 +shortdesc A package for typesetting epigraphs +relocated 1 +longdesc Epigraphs are the pithy quotations often found at the start (or +longdesc end) of a chapter. Both single epigraphs and lists of epigraphs +longdesc are catered for. Various aspects are easily configurable. +containersize 2000 +containerchecksum bfcc661316dadf02c8bc1c4378b04c588ef612f030c764af3119e5c9eb42df667f7da9ad71b90fc2b5dbe7adf4094b05d792ca2fb2292c96035384ce65578293 +doccontainersize 315068 +doccontainerchecksum d8d2ac763e6bdcbcc200fa21995ea5044b4adad11f147b3d7e9f212274c1678cbba7661cc93df8cd013470a5397ca257690d85b8fe55704800284805abac7c62 +docfiles size=78 + RELOC/doc/latex/epigraph/README.md details="Readme" + RELOC/doc/latex/epigraph/epigraph.pdf details="Package documentation" +srccontainersize 10580 +srccontainerchecksum 566c5d132b17c806ee51d60122c9c89f7e1d3e6b6df1444bac715c5e77e2522513a2971f86c495b7fc654c684b07dc53982436aefa0544955e0bae30479b42b0 +srcfiles size=9 + RELOC/source/latex/epigraph/epigraph.dtx + RELOC/source/latex/epigraph/epigraph.ins +runfiles size=2 + RELOC/tex/latex/epigraph/epigraph.sty +catalogue-also epigraph-keys +catalogue-contact-repository https://github.com/wspr/herries-press/ +catalogue-ctan /macros/latex/contrib/epigraph +catalogue-license lppl1.3c +catalogue-topics epigram +catalogue-version 1.5e + +name epigraph-keys +category Package +revision 54851 +shortdesc Epigraphs using key values +relocated 1 +longdesc This package lays out epigraphs: quotations across a page, +longdesc usually to open or close a chapter. It is intended as a simple +longdesc replacement for the more sophisticated epigraph package. The +longdesc package depends on pgfkeys, conditionals (which is distributed +longdesc as part of the songbook package), enumitem, and microtype. +containersize 1836 +containerchecksum 27b5cc031d2a90c9240f199f745b28c0eac189750062632708356b898701651eef34353b4e54e7065c85b41efe6371e42875607aa5b16c3cf2bb7edfcff473e5 +doccontainersize 311424 +doccontainerchecksum 34c9b77529870df1f4e4476a454ca8f08ff68e0d0c523d081d47224a43f07fa0c6db6d665524e5bbb1b68c975b833927321295fdaed38b2ea43445fac9752400 +docfiles size=79 + RELOC/doc/latex/epigraph-keys/README details="Readme" + RELOC/doc/latex/epigraph-keys/epigraph-keys.pdf details="Package documentation" + RELOC/doc/latex/epigraph-keys/epigraph-keys.tex +runfiles size=1 + RELOC/tex/latex/epigraph-keys/epigraph-keys.sty +catalogue-also epigraph +catalogue-contact-home http://euclid.ucc.ie/Mckay/ +catalogue-ctan /macros/latex/contrib/epigraph-keys +catalogue-license lppl1.3c +catalogue-topics epigram +catalogue-version 1.0 + +name epiolmec +category Package +revision 15878 +shortdesc Typesetting the Epi-Olmec Language +relocated 1 +longdesc The package contains all the necessary files to typeset +longdesc Epi-Olmec "documents", in a script used in Southern Middle +longdesc America until about 500 AD. +execute addMap epiolmec.map +containersize 108800 +containerchecksum 5cbe40240b14ed494500c3831a02659be437ad9710708929a69670d00b788ffc99d4d35e66fba04f170c9844faf2432c116d75e6b01988736ab483e7d0255a8c +doccontainersize 122428 +doccontainerchecksum d2c54da2821e850f17ea0a21d0bc67385e2d986948503fbc23ce6df5229708f0700cdd30a94d09cb310cbd911c183c40935e944341b6ee7ec56cdd9c2602011e +docfiles size=32 + RELOC/doc/latex/epiolmec/GlyphAccessCommands.pdf details="Package documentation" +srccontainersize 6548 +srccontainerchecksum a52ef99c57524444151175f8e345cc59ae99c962e31420363c01e3121e1b4ecfbaeed28a01c3185d9d57beae90aaa8fe55dec15fd0790088f72fc4ee8860ea12 +srcfiles size=8 + RELOC/source/latex/epiolmec/epiolmec.dtx + RELOC/source/latex/epiolmec/epiolmec.ins +runfiles size=34 + RELOC/fonts/map/dvips/epiolmec/epiolmec.map + RELOC/fonts/tfm/public/epiolmec/EpiOlmec.tfm + RELOC/fonts/type1/public/epiolmec/Epi-Olmec.pfb + RELOC/tex/latex/epiolmec/epiolmec.sty +catalogue-ctan /language/epiolmec +catalogue-license lppl +catalogue-topics font font-type1 font-archaic + +name eplain +category Package +revision 57186 +shortdesc Extended plain TeX macros +longdesc An extended version of the plain TeX format, adding support for +longdesc bibliographies, tables of contents, enumerated lists, verbatim +longdesc input of files, numbered equations, tables, two-column output, +longdesc footnotes, hyperlinks in PDF output and commutative diagrams. +longdesc Eplain can also load some of the more useful LaTeX packages, +longdesc notably graphics, graphicx (an extended version of graphics), +longdesc color, autopict (a package instance of the LaTeX picture code), +longdesc psfrag, and url. +depend atbegshi +depend atveryend +depend babel +depend cm +depend dehyph +depend eplain.ARCH +depend everyshi +depend firstaid +depend hyph-utf8 +depend hyphen-base +depend knuth-lib +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-fonts +depend pdftex +depend plain +depend tex-ini-files +depend unicode-data +execute AddFormat name=eplain engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *eplain.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,knuth-lib,plain +containersize 42280 +containerchecksum a5b93a081e9b2201a65bf7e7fb01381480f5c1f31aafaa78c5785981d895a384f1f8db1d474db845c06cd0850cf70ec4bec0e3935b67fe506b8b07512ee97479 +doccontainersize 982712 +doccontainerchecksum 44d804287cdd427043f766ea9f5f352d93d65f941b3e18727dfc9276fc381f51fccb3a025707f24dca5efd59cccd1a340e5de0d452d928ec0296b4faa46abf67 +docfiles size=528 + texmf-dist/doc/eplain/AUTHORS + texmf-dist/doc/eplain/COPYING + texmf-dist/doc/eplain/ChangeLog + texmf-dist/doc/eplain/INSTALL + texmf-dist/doc/eplain/NEWS + texmf-dist/doc/eplain/README details="Package Readme" + texmf-dist/doc/eplain/demo/Makefile + texmf-dist/doc/eplain/demo/lscommnt.tex + texmf-dist/doc/eplain/demo/xhyper.tex + texmf-dist/doc/eplain/eplain.html details="Package documentation (HTML)" + texmf-dist/doc/eplain/eplain.pdf details="Package documentation (PDF)" + texmf-dist/doc/eplain/lscommnt.jpg + texmf-dist/doc/eplain/util/idxuniq + texmf-dist/doc/eplain/util/trimsee + texmf-dist/doc/eplain/xhyper.jpg + texmf-dist/doc/info/eplain.info + texmf-dist/doc/man/man1/eplain.1 + texmf-dist/doc/man/man1/eplain.man1.pdf +srccontainersize 396580 +srccontainerchecksum 8edb47575e32de1d7947bc2b7e1e354eeafe287cce6b4c7bafa1266d9d7c1bd4c8df363ecb4c17da9eb35cfc1e3393e2297ae6d90f9f4aa8147b4467e2ae1c89 +srcfiles size=136 + texmf-dist/source/eplain/eplain-source-3.11.zip + texmf-dist/source/eplain/xeplain.tex +runfiles size=50 + texmf-dist/tex/eplain/arrow.tex + texmf-dist/tex/eplain/btxmac.tex + texmf-dist/tex/eplain/eplain.aux + texmf-dist/tex/eplain/eplain.ini + texmf-dist/tex/eplain/eplain.tex +catalogue-contact-home http://tug.org/eplain/ +catalogue-contact-repository https://tug.org/svn/eplain/ +catalogue-contact-support https://lists.tug.org/tex-eplain +catalogue-ctan /macros/eplain +catalogue-license gpl2+ +catalogue-topics plain-ext format +catalogue-version 3.11 + +name eplain.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of eplain +containersize 324 +containerchecksum 9b8480cf4a991827e61c0cd5c310b57a859e61a154bbcf5f6a8ee4548e30b3f0b902e7417e02c354b15e44dc7fd3f4b537578fdea2fea89353af5f86e3430084 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/eplain + +name eplain.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of eplain +containersize 324 +containerchecksum 7cc9497affcbd8dea82dba307cc01d0edf8bad090937885f1a8ac59c12155f2693cb7f4261d50eb737b102ff40f1bcc11fe0cc4a95a9a3c6be72ff8c4c66e4c3 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/eplain + +name eplain.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of eplain +containersize 320 +containerchecksum b0f84f4a41dd2839e2f5c70b9fb99790dae754ddb8736e4bb11713843015ced70d97dfef695efc98b3cdb7087ed355db2c6c80bc0339965351fb6a6aa09901d8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/eplain + +name eplain.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of eplain +containersize 320 +containerchecksum d659af83aac6d67aa446cb193ebac043fec1bf2a9942b9fb6f4f76e3181ab8c4c7ede1456e82e8ad4e3af2a95c355d80dbcd1edf0ec2e9ef856a847da90717a1 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/eplain + +name eplain.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of eplain +containersize 324 +containerchecksum 4b36cf765f211a9a68cb9f0b312575fa284638f3b618060dc6752cb2e1a90579731c9dbd88877e8c13fadfc344a14dbb9eee499b9ad07ae1120fa72c4c67d871 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/eplain + +name eplain.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of eplain +containersize 324 +containerchecksum 3365dc5e79f5e10cf9b30f9879d5fc6d4b8639a7cb0179b914cd738c7d1ef7e98d043e3f8ef340f11add15e719ec98a49e2d80dbb39af4e3472208c5b8376b8b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/eplain + +name eplain.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of eplain +containersize 320 +containerchecksum 6816a222ab763fff43660a55810dbfdde4493f72f2b5b00b8bf0a8f2f95cf99fcf4aa17e73b38b22cbb44ca5312a45393a0b6d041af6551a0106ca699b69708f +binfiles arch=i386-linux size=1 + bin/i386-linux/eplain + +name eplain.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of eplain +containersize 320 +containerchecksum feb9153a86eb09c5f365eb622799e51b0da3a3c5a682293c27b010286cb33c3e574a6caf76405509ad3855dbf34ae3a5c2962fe4a09ff257cf731d1aad964f61 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/eplain + +name eplain.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of eplain +containersize 320 +containerchecksum f5d1ce7504a468ca445def36b12fcfabaa55d8d40ca0d7c55ae92c1d9cf640a11e70e52a179e7eb49a69f269b6eb4cb4f77c3c9bd630a50eb1cc8dccca16f588 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/eplain + +name eplain.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of eplain +containersize 320 +containerchecksum 6bd819ce40be30a9bdc94b66b3ffcc2c7b653c1aa723910ccc1e175470442661bd8239c901269db28b3ccee4eba9c0415d5ffc5499511e8a0fc611d78e8e345f +binfiles arch=universal-darwin size=1 + bin/universal-darwin/eplain + +name eplain.win32 +category Package +revision 57883 +shortdesc win32 files of eplain +containersize 864 +containerchecksum 538d0f9135f74149a831d98433b565d072bff876214014ae0d2cad8a0bba9ab6cac81b95dcb062a0f8e191c58ee2dda26b272a7b120332aeca3f30f194d9f6dd +binfiles arch=win32 size=1 + bin/win32/eplain.exe + +name eplain.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of eplain +containersize 328 +containerchecksum 864c3fe09b2c31a6e354548e39511abe6c298bbaf79bd1665841e18e303c1a34a78e56c95811a793e20c15c6a99c2abd827709fa338e4a78777cbf2f3ef02c29 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/eplain + +name eplain.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of eplain +containersize 332 +containerchecksum db8760b37b129f4848f2542be147c0dd8fb8a8cd61cfe80f7f70e4da55f091185014a206a782216b74bc9224a66043c3fc7fa421096342f65cf799d9e5ec64f5 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/eplain + +name eplain.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of eplain +containersize 320 +containerchecksum e781326badf6f76486eb2b2a76b4439bcd6a716030d00b8af0d3b310572e9909534121b6b1f7527ba367013d16ba74d7a0326f5e2f371fd69191be305edd39dd +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/eplain + +name eplain.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of eplain +containersize 324 +containerchecksum 5a315e9fb3aad754b168bf0f3b4359915dced73d146b0233f40de5d7d31e0c8fb60b798aad1797401c280c834818211fc4638ffff9b5546843d329972d9c0c1b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/eplain + +name eplain.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of eplain +containersize 324 +containerchecksum 7a1d9987b15056aab92566dc7f64ab6e57bc03aafaf0aaa1b07b65f5a27b8d265768fb22af64b287d19a50fc9cc382df2c1df144d5ea352334a148bbf692484e +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/eplain + +name epsdice +category Package +revision 15878 +shortdesc A scalable dice "font" +relocated 1 +longdesc The epsdice package defines a single command \epsdice that +longdesc takes a numeric argument (in the range 1-6), and selects a face +longdesc image from a file that contains each of the 6 possible die +longdesc faces. The graphic file is provided in both Encapsulated +longdesc PostScript and PDF formats. +containersize 5360 +containerchecksum acc0ceb408f320570a93a52132d3e37d43d4be65a31a038187edd6de9899427f08d7859dbc383b7b27e9d9b5a635ae94ea97f0be4ab8386b5991089a1435c350 +doccontainersize 66176 +doccontainerchecksum 6d9db45832d3e26e79a518f06d00db992ddfb2999099d32b415891e8d05b51803dc4f03d097cdcb04e5ccd6073606d4c7a87a07b9dd20d8d257456f927ee7427 +docfiles size=22 + RELOC/doc/latex/epsdice/README details="Readme" + RELOC/doc/latex/epsdice/dice.eps + RELOC/doc/latex/epsdice/dice.pdf details="Sample dice" + RELOC/doc/latex/epsdice/epsdice.pdf details="Package Documentation" +srccontainersize 6704 +srccontainerchecksum 9bc8b64a815e9aa14b6ef09e9ea6328e338e9539ebefbe3df805d3fe05ba3aff61750fd98033be72ed7a7cb4c3d5aa6152b557c9a1dfb0272dec856968171d29 +srcfiles size=6 + RELOC/source/latex/epsdice/epsdice.dtx + RELOC/source/latex/epsdice/epsdice.ins +runfiles size=5 + RELOC/tex/latex/epsdice/dice.eps + RELOC/tex/latex/epsdice/dice.pdf + RELOC/tex/latex/epsdice/epsdice.cfg + RELOC/tex/latex/epsdice/epsdice.sty +catalogue-also dice +catalogue-ctan /macros/latex/contrib/epsdice +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 2.1 + +name epsf +category Package +revision 21461 +shortdesc Simple macros for EPS inclusion +relocated 1 +longdesc The original (and now obsolescent) graphics inclusion macros +longdesc for use with dvips, still widely used by Plain TeX users (in +longdesc particular). For LaTeX users, the package is nowadays (rather +longdesc strongly) deprecated in favour of the more sophisticated +longdesc standard LaTeX latex-graphics bundle of packages. (The +longdesc latex-graphics bundle is also available to Plain TeX users, via +longdesc its Plain TeX version.) +containersize 7544 +containerchecksum 4c3698edc9ef386b08a2ed7c360d926be6ca5a8284e3e53e0dcf5f222eeb27d4d33b4547b42dd2e5544ab381397aafcd58899376d26a4d9d47beee00ad1e9bda +doccontainersize 274016 +doccontainerchecksum 52be704eec6159e70d99ae2a4823c1da0790f41da9e6de130c84cc77e0d8d29aae145ccb9b416ddc5c9641100821f5099b5c597a350438652381be903e7681bb +docfiles size=98 + RELOC/doc/generic/epsf/LICENSE + RELOC/doc/generic/epsf/Makefile + RELOC/doc/generic/epsf/README details="Readme" + RELOC/doc/generic/epsf/bboxgrid.ps + RELOC/doc/generic/epsf/epsf-doc.pdf details="Package documentation" + RELOC/doc/generic/epsf/epsf-doc.tex + RELOC/doc/generic/epsf/fndbadps + RELOC/doc/generic/epsf/okay/teps.eps + RELOC/doc/generic/epsf/okay/tepsf.eps + RELOC/doc/generic/epsf/okay/tepsf1.dvi + RELOC/doc/generic/epsf/okay/tepsf2.dvi + RELOC/doc/generic/epsf/okay/tepsf3.dvi + RELOC/doc/generic/epsf/teps.eps + RELOC/doc/generic/epsf/tepsf.eps + RELOC/doc/generic/epsf/tepsf1.tex + RELOC/doc/generic/epsf/tepsf2.ltx + RELOC/doc/generic/epsf/tepsf3.tex +runfiles size=14 + RELOC/tex/generic/epsf/epsf.sty + RELOC/tex/generic/epsf/epsf.tex +catalogue-also epsfx +catalogue-ctan /macros/generic/epsf +catalogue-license pd +catalogue-topics graphics-incl +catalogue-version 2.7.4 + +name epsf-dvipdfmx +category Package +revision 35575 +shortdesc Plain TeX file for using epsf.tex with (x)dvipdfmx +relocated 1 +longdesc epsf-dvipdfmx.tex is a plain TeX file to be \input after +longdesc epsf.tex when using plain TeX with dvipdfmx. As in: \input epsf +longdesc \input epsf-dvipdfmx It is needed when an .eps file has +longdesc anything except the origin (0,0) for the lower-left of its +longdesc bounding box. +containersize 1036 +containerchecksum 0f210b940d55bc2e85b3c86318be82fde1bf2b6fa2e5d498101036a01cec3b09cd8081079476f128f21881b14a13c7fa248c758a7a33ab0770f261505260992d +doccontainersize 2052 +doccontainerchecksum e7b770f6880bfa8001851cfdcf2f2d03117fba3a2d38514bd7e23683aae08d57774bd1bfa4d0f75df443d9111a5472ba96bf8129e45b618b39f1798b27fb533c +docfiles size=3 + RELOC/doc/plain/epsf-dvipdfmx/README details="Readme" + RELOC/doc/plain/epsf-dvipdfmx/testepdpx.eps + RELOC/doc/plain/epsf-dvipdfmx/testepdpx.tex +runfiles size=1 + RELOC/tex/plain/epsf-dvipdfmx/epsf-dvipdfmx.tex +catalogue-ctan /macros/plain/contrib/epsf-dvipdfmx +catalogue-license pd +catalogue-topics graphics-epspdf +catalogue-version 2014 + +name epsincl +category Package +revision 29349 +shortdesc Include EPS in MetaPost figures +relocated 1 +longdesc The package facilitates including EPS files in MetaPost +longdesc figures; it makes use of (G)AWK. +containersize 1932 +containerchecksum f9251142a990038acde2f1e7b61b94eba39b2c4f5c43a1151af29a17d5f0efb0cddc0af1ac8d056d8617b5ab4eef29bba14a4731ef933480a9bdb95fcc15d023 +doccontainersize 4208 +doccontainerchecksum 2cac5738a39157563707879656b473e7ac7edac2f304c209c8164c7878b10f0d5dcba1d38232ed6ba8e20fe21b3a0cf78dfd51733b993ccd5fcb2c0a05ea31c6 +docfiles size=9 + RELOC/doc/metapost/epsincl/0info.txt + RELOC/doc/metapost/epsincl/README details="Readme" + RELOC/doc/metapost/epsincl/epsincl.awk + RELOC/doc/metapost/epsincl/epsincl.bat + RELOC/doc/metapost/epsincl/testinc0.eps + RELOC/doc/metapost/epsincl/testincl.bat + RELOC/doc/metapost/epsincl/testincl.mp + RELOC/doc/metapost/epsincl/testincl.sh +runfiles size=1 + RELOC/metapost/epsincl/epsincl.mp +catalogue-ctan /graphics/metapost/contrib/macros/epsincl +catalogue-license pd +catalogue-topics graphics-prep +catalogue-version 0.2 + +name epslatex-fr +category Package +revision 19440 +catalogue fepslatex +shortdesc French version of "graphics in LaTeX" +relocated 1 +longdesc This is the French translation of epslatex, and describes how +longdesc to use imported graphics in LaTeX(2e) documents. +containersize 432 +containerchecksum f3e90ecb487259301c20ab4c4c28702b9cadfa844a49361fee0881a26f827ae602f954e4a3e824e910d2e098097c387aa5311c5f32cb58df5a0a1e2fcd9d2364 +doccontainersize 1036360 +doccontainerchecksum 7965e6094535d22b04193619842bc0bd090c2b47139e65498dcdf428f4ce2ec54e7da5edbdf9015c9d8f2013642d11347373e625a3884c629d9d807af2a9880a +docfiles size=824 + RELOC/doc/latex/epslatex-fr/Ball.eps + RELOC/doc/latex/epslatex-fr/CHAP2.sty + RELOC/doc/latex/epslatex-fr/Construction.eps + RELOC/doc/latex/epslatex-fr/Franc-chap.sty + RELOC/doc/latex/epslatex-fr/README + RELOC/doc/latex/epslatex-fr/README.TEXLIVE + RELOC/doc/latex/epslatex-fr/Warning.eps + RELOC/doc/latex/epslatex-fr/alltex.sty + RELOC/doc/latex/epslatex-fr/auteurs.sty + RELOC/doc/latex/epslatex-fr/bases.sty + RELOC/doc/latex/epslatex-fr/block.sty + RELOC/doc/latex/epslatex-fr/box1.eps + RELOC/doc/latex/epslatex-fr/box2.eps + RELOC/doc/latex/epslatex-fr/boxes.sty + RELOC/doc/latex/epslatex-fr/btxdoc.bib + RELOC/doc/latex/epslatex-fr/cm.eps + RELOC/doc/latex/epslatex-fr/cm.ps + RELOC/doc/latex/epslatex-fr/danger.eps + RELOC/doc/latex/epslatex-fr/divers.sty + RELOC/doc/latex/epslatex-fr/ebnf.sty + RELOC/doc/latex/epslatex-fr/export.sty + RELOC/doc/latex/epslatex-fr/fepslatex.pdf details="The document itself" + RELOC/doc/latex/epslatex-fr/fepslatex.tex + RELOC/doc/latex/epslatex-fr/fill.sty + RELOC/doc/latex/epslatex-fr/fmparhack.sty + RELOC/doc/latex/epslatex-fr/foot.sty + RELOC/doc/latex/epslatex-fr/fr.sty + RELOC/doc/latex/epslatex-fr/franc.sty + RELOC/doc/latex/epslatex-fr/frnew.sty + RELOC/doc/latex/epslatex-fr/g_toc_entry.sty + RELOC/doc/latex/epslatex-fr/graphic.eps + RELOC/doc/latex/epslatex-fr/hands.sty + RELOC/doc/latex/epslatex-fr/header.tex + RELOC/doc/latex/epslatex-fr/indentondemand.sty + RELOC/doc/latex/epslatex-fr/makecmds.sty + RELOC/doc/latex/epslatex-fr/makerobust.sty + RELOC/doc/latex/epslatex-fr/mass.eps + RELOC/doc/latex/epslatex-fr/mypatches.sty + RELOC/doc/latex/epslatex-fr/myvarioref.sty + RELOC/doc/latex/epslatex-fr/nrfoot.sty + RELOC/doc/latex/epslatex-fr/origin.eps + RELOC/doc/latex/epslatex-fr/overlay.sty + RELOC/doc/latex/epslatex-fr/pale.eps + RELOC/doc/latex/epslatex-fr/pend.eps + RELOC/doc/latex/epslatex-fr/pretzel.eps + RELOC/doc/latex/epslatex-fr/pretzel.ps + RELOC/doc/latex/epslatex-fr/rdanger.eps + RELOC/doc/latex/epslatex-fr/rosette.eps + RELOC/doc/latex/epslatex-fr/rosette.ps + RELOC/doc/latex/epslatex-fr/sgte.sty + RELOC/doc/latex/epslatex-fr/smaller.sty + RELOC/doc/latex/epslatex-fr/square.eps + RELOC/doc/latex/epslatex-fr/topcapt.sty + RELOC/doc/latex/epslatex-fr/topfig.sty + RELOC/doc/latex/epslatex-fr/warn.sty + RELOC/doc/latex/epslatex-fr/wdesc.sty + RELOC/doc/latex/epslatex-fr/whitecdp.sty + RELOC/doc/latex/epslatex-fr/wide.eps + RELOC/doc/latex/epslatex-fr/widecenter.sty + RELOC/doc/latex/epslatex-fr/xb.sty +catalogue-ctan /info/epslatex/french +catalogue-license gpl +catalogue-topics graphics french-doc translation + +name epspdf +category Package +revision 53472 +shortdesc Converter for PostScript, EPS and PDF +longdesc Epspdftk.tcl is a GUI ps/eps/pdf converter. Epspdf.tlu, its +longdesc command-line backend, can be used by itself. Options include +longdesc grayscaling, cropping margins and single-page selection. Some +longdesc conversion options are made possible by converting in multiple +longdesc steps. +depend epspdf.ARCH +containersize 31912 +containerchecksum 8464aef2f11712c124b2fb29eb448706007f8b4825ba09a7579b4b8a6cf31fc3ea4b98359ecb588e6886fbed9b59d1da155a3d69946bcb99f90f39043aeb4eea +doccontainersize 241448 +doccontainerchecksum 6de1e86931bedc481f2cce725c58e83a9bcb8af10938ba8d5701f325ebc0e98824cc472b32e95c9f319dbac7c49ca849e368d431dd79c5d1d0fceca81da3cd35 +docfiles size=98 + texmf-dist/doc/info/epspdf.info + texmf-dist/doc/support/epspdf/COPYING + texmf-dist/doc/support/epspdf/Changelog + texmf-dist/doc/support/epspdf/README details="Readme" + texmf-dist/doc/support/epspdf/epspdf.pdf details="User Manual" + texmf-dist/doc/support/epspdf/epspdf.texi + texmf-dist/doc/support/epspdf/images/cnv_linux.png + texmf-dist/doc/support/epspdf/images/config_lnx.png + texmf-dist/doc/support/epspdf/images/epspdf.png + texmf-dist/doc/support/epspdf/images/logo.pdf + texmf-dist/doc/support/epspdf/images/logo.svg + texmf-dist/doc/support/epspdf/images/main_wx.png + texmf-dist/doc/support/epspdf/pstexi.tex +runfiles size=33 + texmf-dist/scripts/epspdf/epspdf.help + texmf-dist/scripts/epspdf/epspdf.tlu + texmf-dist/scripts/epspdf/epspdf4tk.cmd + texmf-dist/scripts/epspdf/epspdftk.tcl +catalogue-also epstopdf +catalogue-ctan /support/epspdf +catalogue-license gpl2 +catalogue-topics graphics-epspdf +catalogue-version 0.6.5 + +name epspdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of epspdf +containersize 364 +containerchecksum 5872972c76139e2d8af4e3121e62386ffa81633ec818d0afc72c54017312dae6fdb70cc8cc21f02fbd4e44839a91d4e2baf875362afba5ac067a231f141fa587 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/epspdf + bin/aarch64-linux/epspdftk + +name epspdf.amd64-freebsd +category Package +revision 29050 +shortdesc amd64-freebsd files of epspdf +containersize 364 +containerchecksum 4886f321efa458266c5b33e3342bbfe871054b942da278a74b526ea0e3de8084b469ed131a76e53932f1f4d4b8ce14fe33e076efb74b6d6f1fbf833935154f3e +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/epspdf + bin/amd64-freebsd/epspdftk + +name epspdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of epspdf +containersize 364 +containerchecksum d275ce369d46b663ea75a83eb4201100c0d7f012fdef3d81b3b9e8e4ebaf2a728b817aca2f3bee1ddcfc48f24476c02e8833ce3bdad48049c2f85d9e99f19d47 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/epspdf + bin/amd64-netbsd/epspdftk + +name epspdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of epspdf +containersize 364 +containerchecksum b7f28a50c51ecc38b131a31ea410b01201bc71113c553450e07673436a543c0f21e81bc47ef58a65a1b7744cb5dbbcd1ad393eef752e3153bb63743146b1360c +binfiles arch=armhf-linux size=2 + bin/armhf-linux/epspdf + bin/armhf-linux/epspdftk + +name epspdf.i386-cygwin +category Package +revision 29050 +shortdesc i386-cygwin files of epspdf +containersize 364 +containerchecksum bd512ef15508cbd318ab9d96ac1cad477a4868b59d770a7e25abce489bc2e52c34623cb990a8acbd111071dba7ccc28d0139364efbb00c6446cc2acafb1d8a24 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/epspdf + bin/i386-cygwin/epspdftk + +name epspdf.i386-freebsd +category Package +revision 29050 +shortdesc i386-freebsd files of epspdf +containersize 364 +containerchecksum 8683d7658b60ed8dd3fb90078959a99df2eb44b647b2c5d7bf6dc9524dbc4dd819d2fb42ed66ec7605b407e257b958cd723e2a5fbc74bd6e227b1f705c4edfb9 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/epspdf + bin/i386-freebsd/epspdftk + +name epspdf.i386-linux +category Package +revision 29050 +shortdesc i386-linux files of epspdf +containersize 364 +containerchecksum 84982e95c4b3810cf41f690314a43fad14b8910dc627dd9f1ab1fee55d9b9311382fe9f9092bd43cdf0d1b737d86baf19d963620627fc8dc6aeeb6b6052ee533 +binfiles arch=i386-linux size=2 + bin/i386-linux/epspdf + bin/i386-linux/epspdftk + +name epspdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of epspdf +containersize 364 +containerchecksum 95c1590981e8d080fa0db3a92222e94704a44634a3aabeb5d8bd2928b55ce0e602698ecf0abdcf84394684074c6e8e117a37e7bfcbd8a8621e00f67401afd7ad +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/epspdf + bin/i386-netbsd/epspdftk + +name epspdf.i386-solaris +category Package +revision 29050 +shortdesc i386-solaris files of epspdf +containersize 364 +containerchecksum eeedd9a33ceb1c519aaad33d9a30914fcc6fd125c92cec6396a4a33f874eadf2bb2523104e55696ad21507f9116aa771841bbf9bd0d667b5bd8123c48386ca8b +binfiles arch=i386-solaris size=2 + bin/i386-solaris/epspdf + bin/i386-solaris/epspdftk + +name epspdf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of epspdf +containersize 364 +containerchecksum 04c911a5b0686d076bc2fa301e25382075aca9f3b417e479b4a93ef417fef91b4850b92daeb9ecd3e5a5028340aa5af682d809aaafb389c522d3784ef12847ce +binfiles arch=universal-darwin size=2 + bin/universal-darwin/epspdf + bin/universal-darwin/epspdftk + +name epspdf.win32 +category Package +revision 53854 +shortdesc win32 files of epspdf +containersize 8348 +containerchecksum b940f8a6243a166380c43adf1b47988e811168e2c94bed42588fdaaa04edb7bacaf19fa7c7ba7c1a7cb38cb5718cb035984795c8ed246482f54df383a465e361 +binfiles arch=win32 size=5 + bin/win32/epspdf.exe + bin/win32/epspdftk.exe + +name epspdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of epspdf +containersize 364 +containerchecksum dfa5a70b71fdce314faf69401a1e3b143c51006018094f81bb563c980cb16eeda75c7d1d1cc12a2801e2e57d9c2a5794ca69709c0d2557ab55fafdcd51c168ad +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/epspdf + bin/x86_64-cygwin/epspdftk + +name epspdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of epspdf +containersize 372 +containerchecksum 465b11aebedc803d05d15be5d9c9fb9c882f8e85836e5e398c0ed1012e77484b3157d1bc899f9a755745aec3019cb5cc3b98106868a26120964925608c4300b7 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/epspdf + bin/x86_64-darwinlegacy/epspdftk + +name epspdf.x86_64-linux +category Package +revision 29050 +shortdesc x86_64-linux files of epspdf +containersize 364 +containerchecksum 560f1d59ac8ec0807e6f413a354b2ea7c282cda847e2f942538eabe04db2bc95de5479f09dee870d85193d55354322ed745ea7f341ac5dc6a04dace016055287 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/epspdf + bin/x86_64-linux/epspdftk + +name epspdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of epspdf +containersize 368 +containerchecksum 48eaa67cd98700a86bfafc4c4183df954f30957245736c329127b2515c16b9e8e04c6c450e10617a21b77166465ffd9fe51c89aaec5742f568b34b8cf6b37341 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/epspdf + bin/x86_64-linuxmusl/epspdftk + +name epspdf.x86_64-solaris +category Package +revision 29050 +shortdesc x86_64-solaris files of epspdf +containersize 364 +containerchecksum c045405821ada2e0ebc60f12e01be40f4836ef1889efd7837d5c5b1283b2ac72af7b39716087fb28d8d3cdeb1ee33a53e8019dd356abe31d7f844b040f162461 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/epspdf + bin/x86_64-solaris/epspdftk + +name epspdfconversion +category Package +revision 18703 +shortdesc On-the-fly conversion of EPS to PDF +relocated 1 +longdesc The package calls the epstopdf package to convert EPS graphics +longdesc to PDF, on the fly. It servs as a vehicle for passing +longdesc conversion options (such as grayscale, prepress or pdfversion) +longdesc to the epspdf converter. +containersize 3692 +containerchecksum a1f328125f82f33bcc881adacec981f4ce8aefd4cbbe160de66397ed3b1d4c2ed980f5e1c17c63b75973e3c253d76afc2f1227272ab7f0236e47e8e48f0f015c +doccontainersize 417580 +doccontainerchecksum dc09e2ef835a85bbfc7c399b7c7323d64c312b04143e8070fc403fbd484bd893be1e4b532580efea93baffe64625c33004405eb0ed9bf6295646cfc260d72c40 +docfiles size=119 + RELOC/doc/latex/epspdfconversion/README details="Readme" + RELOC/doc/latex/epspdfconversion/epspdfconversion.pdf details="Package documentation" + RELOC/doc/latex/epspdfconversion/example/epspdfconversion_docu.tex + RELOC/doc/latex/epspdfconversion/example/image.eps + RELOC/doc/latex/epspdfconversion/example/image2.eps + RELOC/doc/latex/epspdfconversion/example/optionstable.tex +runfiles size=3 + RELOC/tex/latex/epspdfconversion/epspdfconversion.sty +catalogue-ctan /macros/latex/contrib/epspdfconversion +catalogue-license lppl +catalogue-topics graphics-epspdf callback +catalogue-version 0.61 + +name epstopdf +category Package +revision 48684 +shortdesc Convert EPS to PDF using Ghostscript +longdesc Epstopdf is a Perl script that converts an EPS file to an +longdesc 'encapsulated' PDF file (a single page file whose media box is +longdesc the same as the original EPS's bounding box). The resulting +longdesc file suitable for inclusion by pdfTeX as an image. The script +longdesc is adapted to run both on Windows and on Unix-alike systems. +longdesc The script makes use of Ghostscript for the actual conversion +longdesc to PDF. It assumes Ghostscript version 6.51 or later, and (by +longdesc default) suppresses its automatic rotation of pages where most +longdesc of the text is not horizontal. LaTeX users may make use of the +longdesc epstopdf package, which will run the epstopdf script "on the +longdesc fly", thus giving the illusion that pdfLaTeX is accepting EPS +longdesc graphic files. +depend epstopdf.ARCH +containersize 12460 +containerchecksum 6412bb97554b271cf5412dbccd316f3d69d7bcf2f524a5d6d1a75f69cfa11a981fc4ab063b6ea8302c2a0236ff93c59f1ee2f8f2b7f33dc466324080fc5016f4 +doccontainersize 30444 +doccontainerchecksum 7fef59ad3bc72b2e3fc10021216b88b8d5465f42503d9938031c3d40d93fbaf637094fdfc87b19ccc1da4d9a28c9890beccee7c30b915a513a909edbac6e0a25 +docfiles size=20 + texmf-dist/doc/man/man1/epstopdf.1 + texmf-dist/doc/man/man1/epstopdf.man1.pdf details="Manual page" + texmf-dist/doc/man/man1/repstopdf.1 + texmf-dist/doc/man/man1/repstopdf.man1.pdf + texmf-dist/doc/support/epstopdf/README details="Readme" +runfiles size=9 + texmf-dist/scripts/epstopdf/epstopdf.pl +catalogue-also epstopdf-pkg +catalogue-contact-home http://tug.org/epstopdf/ +catalogue-ctan /support/epstopdf +catalogue-license other-free +catalogue-topics graphics-epspdf +catalogue-version 2.28 + +name epstopdf-pkg +category Package +revision 53546 +shortdesc Call epstopdf "on the fly" +relocated 1 +longdesc The package adds support for EPS files in the graphicx package +longdesc when running under pdfTeX. If an EPS graphic is detected, the +longdesc package spawns a process to convert the EPS to PDF, using the +longdesc script epstopdf. This of course requires that shell escape is +longdesc enabled for the pdfTeX run. +containersize 4180 +containerchecksum 3e2177a1c6cbf8850026f981ce3ec5e6a24c4fdf8c40716e3f18ba7233cc7a5115e5b74d60aa077575f41bafc58af966ab55c189de4d06863ab2a38551ff0dca +doccontainersize 354368 +doccontainerchecksum c098251d55112c0c630e007c85d1c7271e32bba9443ca3c2590b51987053e945e3c52030ef4bd1f6758894cc263e9316bc31683572bd07c24fd0855f01c68be4 +docfiles size=89 + RELOC/doc/latex/epstopdf-pkg/README.md details="README" + RELOC/doc/latex/epstopdf-pkg/epstopdf.pdf details="Package documentation" +srccontainersize 11992 +srccontainerchecksum 0816a754b15e42d6f43ef333c6f508988c861c04f7f6f53a370777ca85633a981948c10a13f3180797c1f5af1ed156b60a29c608d7387a53756f2e440f38bd99 +srcfiles size=14 + RELOC/source/latex/epstopdf-pkg/epstopdf.drv + RELOC/source/latex/epstopdf-pkg/epstopdf.dtx + RELOC/source/latex/epstopdf-pkg/epstopdf.ins +runfiles size=6 + RELOC/tex/latex/epstopdf-pkg/epstopdf-base.sty + RELOC/tex/latex/epstopdf-pkg/epstopdf.sty +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-license lppl1.3 +catalogue-topics graphics-epspdf callback +catalogue-version 2.11 + +name epstopdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of epstopdf +containersize 364 +containerchecksum 5d8e4cc9eaf28dbac98d5c3805e44caff7acc1769b7f3747f105c7772e9d56bbe63c3f83b98ab2dd8688c5b58e5b286ad51168e764b33d964d0fd948b4701161 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/epstopdf + bin/aarch64-linux/repstopdf + +name epstopdf.amd64-freebsd +category Package +revision 18389 +shortdesc amd64-freebsd files of epstopdf +containersize 364 +containerchecksum a8051ea1d957b9df710ffe4aac7cffa9eef9b97965ddf692971e928e086ec603554b86d160b9b0deb53b6d7d0ef2a97ea6d7e76da566bae83498a2e9e289b007 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/epstopdf + bin/amd64-freebsd/repstopdf + +name epstopdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of epstopdf +containersize 364 +containerchecksum 478609c29841551a30d0d21d01a175098ed498cf6667cd43aa0205b51f5862d60ce4eff59320139de1dbf1e24193543bba83637d63ffcac587a2f83b4124b2eb +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/epstopdf + bin/amd64-netbsd/repstopdf + +name epstopdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of epstopdf +containersize 364 +containerchecksum 11298cd6a5b2d944ac0b3d11982579fd89fe3bcec8ba4da0331a042abc8f03fd5065b7917732bcda5857a21a0c3905d3788a74a794237eb8b628d590bb7110f0 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/epstopdf + bin/armhf-linux/repstopdf + +name epstopdf.i386-cygwin +category Package +revision 18363 +shortdesc i386-cygwin files of epstopdf +containersize 360 +containerchecksum fa16a19230ce7b34f5daeb58b1a45e1055daa5d65be237370a9d5284c43c68f57d46efeb72ee3dea4d28a318a45ea2b7e976b6dbb2c8ed98d45939466c4998f7 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/epstopdf + bin/i386-cygwin/repstopdf + +name epstopdf.i386-freebsd +category Package +revision 18388 +shortdesc i386-freebsd files of epstopdf +containersize 364 +containerchecksum cfe821e7c7d46d33d91102d0a6e37399cbc545485b350155bec3addc4b06795b9d7baa1bb3861de1c482ccb8e67f6cc820d628545690385e171e00453c8bc1b8 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/epstopdf + bin/i386-freebsd/repstopdf + +name epstopdf.i386-linux +category Package +revision 18336 +shortdesc i386-linux files of epstopdf +containersize 364 +containerchecksum d2bc20a96252b66eabd9861cdfa05901c0b6c4db7b497f07cbaa59ca09fca4e89004108f049bbc1f2e1fb10d09ea68a28a0d26ac3c9f4a87e97678fe80c52ad3 +binfiles arch=i386-linux size=2 + bin/i386-linux/epstopdf + bin/i386-linux/repstopdf + +name epstopdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of epstopdf +containersize 364 +containerchecksum 386186d3614a04c27885bc507e363df8dac5017f6e61b5a1f67eab4802eceedaf6a1bce7f64fc0bba7d3fe38e7b52de549bfa89f8f4d0d4276a2f7aeba5c2fbb +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/epstopdf + bin/i386-netbsd/repstopdf + +name epstopdf.i386-solaris +category Package +revision 18421 +shortdesc i386-solaris files of epstopdf +containersize 364 +containerchecksum 192105f2e79a3a6755d26c63c6abb1c92b68487222165dabbcc7ec2daa831d06fc1852389af51a83a72072db6acbf34d9c8edc2d271f5b812fe0adea6bec32d3 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/epstopdf + bin/i386-solaris/repstopdf + +name epstopdf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of epstopdf +containersize 364 +containerchecksum 9c9a2e56d91c80e9f2938f16565017a7db0e828c987a9dd5b56aad28dc3c26d9057d7ea74011b215fcff5857981d75d7b7bdc0a3fecb83c7d3205261beda5c29 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/epstopdf + bin/universal-darwin/repstopdf + +name epstopdf.win32 +category Package +revision 18971 +shortdesc win32 files of epstopdf +containersize 708 +containerchecksum 8c3cdd1a109a4c91897720dfab026e2965f909c189e2282e0915f26cd0c95e9a0a9b9b8e3d2dd7e33b036b8ada84df268b62af9b6162a8fa0020bf27d3e918dc +binfiles arch=win32 size=2 + bin/win32/epstopdf.exe + bin/win32/repstopdf.exe + +name epstopdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of epstopdf +containersize 364 +containerchecksum f14c190635e1c75bb368a904eeb837845a512f5e55346c110ddaade3debf44bf3a5a52c7c2e1d83a906fc6eae36613b213d5620d9d75c03527442e2e6d3bb574 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/epstopdf + bin/x86_64-cygwin/repstopdf + +name epstopdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of epstopdf +containersize 372 +containerchecksum 3eacd223c2630d433333cee411a5377784e02b03b88fdf5a716d5b4181dccc53cd3369cc79af6096a8e4f458eec39fe45863f29dd72e5a1fbdc31aea1fac692c +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/epstopdf + bin/x86_64-darwinlegacy/repstopdf + +name epstopdf.x86_64-linux +category Package +revision 18365 +shortdesc x86_64-linux files of epstopdf +containersize 364 +containerchecksum a14c6953be481ae60c1b6ff8657a26cc13cb7c994ca2f003f3c3c4da98032cf77ba51298bb11391654b9d2547d6070d287384521956e5132a13142ff7bcbfeb9 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/epstopdf + bin/x86_64-linux/repstopdf + +name epstopdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of epstopdf +containersize 372 +containerchecksum 6eca1322956e153745ef29dd2c83dbf321fa4fd064b7d57aa4d62fc7458d6248ca06a3ded10d0b14ac3984576438b30bb89f43905797c98515381833675e35da +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/epstopdf + bin/x86_64-linuxmusl/repstopdf + +name epstopdf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of epstopdf +containersize 364 +containerchecksum 7da27656bfa7ff17dbe6aa54bffc8d5285ad522a317cd1243b68346fef70e2f722393c46f7d29832d38e83c8d4c9ed8164f2c3a1fe5631cfe748b728646a9c1e +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/epstopdf + bin/x86_64-solaris/repstopdf + +name eq-pin2corr +category Package +revision 57815 +shortdesc Add PIN security to the "Correct" button of a quiz created by exerquiz +relocated 1 +longdesc This package is an add-on to the quiz environment of the +longdesc exerquiz package (part of the acrotex bundle). It adds PIN +longdesc security to a quiz created by the quiz environment. To correct +longdesc a quiz, the document consumer must press the "Correct" button +longdesc of the quiz and successfully enter the correct PIN number. The +longdesc PIN security is designed for the instructor to mark and record +longdesc the student's effort on that quiz. The package works for the +longdesc usual workflows. +containersize 2144 +containerchecksum 878bbe22ea7a71b486a38942d11ab15a19c8fef10ac90e06b235a87a15f0e4478d00d7671751547cc0c8c440924c92cc7e07dbce4c816fdfd114468104fec040 +doccontainersize 639596 +doccontainerchecksum cc1dffd4989bdc5efc76e1ae44a8ee5f7cdea0c9617f98eda3ab0f079d242b408f91d80595a699212c5cf5910cf182c64d98517d6582af14fb1bec074f344eb9 +docfiles size=256 + RELOC/doc/latex/eq-pin2corr/README.md details="Readme" + RELOC/doc/latex/eq-pin2corr/doc/eq-pin2corr.pdf details="Package documentation" + RELOC/doc/latex/eq-pin2corr/doc/eqpin2corrman.pdf details="User manual" + RELOC/doc/latex/eq-pin2corr/doc/eqpin2corrman.tex + RELOC/doc/latex/eq-pin2corr/doc/install_jsfiles.pdf + RELOC/doc/latex/eq-pin2corr/doc/install_jsfiles.tex + RELOC/doc/latex/eq-pin2corr/examples/get-hash-string.pdf + RELOC/doc/latex/eq-pin2corr/examples/get-hash-string.tex + RELOC/doc/latex/eq-pin2corr/examples/qz-pin-to-correct.pdf + RELOC/doc/latex/eq-pin2corr/examples/qz-pin-to-correct.tex +srccontainersize 5152 +srccontainerchecksum eb0d10e680a935f9919b9dfcae1b137549dfaece3047b62e2ea06280cb3075d3882546df470f05cdae9716eb128f27faa981d86408acb50b85eced63bf104769 +srcfiles size=4 + RELOC/source/latex/eq-pin2corr/eq-pin2corr.dtx + RELOC/source/latex/eq-pin2corr/eq-pin2corr.ins +runfiles size=1 + RELOC/tex/latex/eq-pin2corr/eq-pin2corr.sty +catalogue-also exerquiz +catalogue-ctan /macros/latex/contrib/eq-pin2corr +catalogue-license lppl1.2 +catalogue-topics exercise exam security pdf-feat pdf-forms acrobat +catalogue-version 1.0 + +name eqell +category Package +revision 22931 +shortdesc Sympathetically spaced ellipsis after punctuation +relocated 1 +longdesc The package provides commands that give a well-spaced ellipsis +longdesc after !, ?, !? or ?!. +containersize 684 +containerchecksum b3544579e03c33b7a5a10f1fbcb22735d1bbcdb9fb5ac94330ec1eeb6f6ae646935a46f4c7c3bdb4305368b2e9aa9eba244c80f08f3127fad2080b610f1041a1 +doccontainersize 183216 +doccontainerchecksum 9210b85937d0bae3eab982f45b1f38f7020327c9b4cfc6604de5b171ecc84f54f5bfd088a3f06ba7123a7fc01a6fb09953015b1813db9ab2fbabf2a15bca955c +docfiles size=48 + RELOC/doc/latex/eqell/README details="Readme" + RELOC/doc/latex/eqell/eqell.pdf details="Package documentation" + RELOC/doc/latex/eqell/eqell.tex +runfiles size=1 + RELOC/tex/latex/eqell/eqell.sty +catalogue-ctan /macros/latex/contrib/eqell +catalogue-license gpl +catalogue-topics typesetting + +name eqexpl +category Package +revision 54080 +shortdesc Align explanations for formulas +relocated 1 +longdesc This package was developed in response to a question on +longdesc https://tex.stackexchange.com. Its purpose is to enable a +longdesc perfectly formatted explanation of components of a formula. The +longdesc package depends on calc, etoolbox, and xparse. +containersize 1268 +containerchecksum 962b3f4405feea8cae70618af5a61f4dca04ec5971c888d36fa4aa8cb6dd8b12c9922cc202c3ef6204cc1265df36bed66ab0579395f4d9d134c7382778572a21 +doccontainersize 88016 +doccontainerchecksum e7ba14eebd9ee77561fea3e5a7360f12ad10dd5975c99c203ca2e962d95a79805b9c9d4b2452965eb1180d7741788039f32c216352b7d63ec0edd167f98996d8 +docfiles size=30 + RELOC/doc/latex/eqexpl/README.md details="Readme" + RELOC/doc/latex/eqexpl/README.ru.md details="Readme (Russian)" language="ru" + RELOC/doc/latex/eqexpl/eqexpl.pdf details="Package documentation" + RELOC/doc/latex/eqexpl/eqexpl.tex +runfiles size=1 + RELOC/tex/latex/eqexpl/eqexpl.sty +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-license cc-by-sa-4 +catalogue-topics alignment maths +catalogue-version 1.1 + +name eqlist +category Package +revision 32257 +shortdesc Description lists with equal indentation +relocated 1 +longdesc This package provides a list environment which sets a +longdesc description-like list in which the indentation corresponds to +longdesc the longest item of the list. +containersize 1240 +containerchecksum 1af830f51ce25946ac8bc6a4cca323dffeff20389ec998b74afd49a8edab5ad7a453818d4799e55ca564153a87b85e2a6b03ed67e53cc5ae6fa74c45edf3aeae +doccontainersize 64524 +doccontainerchecksum a5b22b8e9300064d77d02ca6f5652659293c6fedb792be2f0664a2383b3167ed7bf8796af26edfabfdcab8d75ddf30f3815be36e8f38fda30f1609b56c16ac61 +docfiles size=22 + RELOC/doc/latex/eqlist/README details="Readme" + RELOC/doc/latex/eqlist/eqlist.pdf details="Package documentation" + RELOC/doc/latex/eqlist/eqlist.tex +srccontainersize 6648 +srccontainerchecksum 15817915c95c5f609c3def3bce324e6ca362408aa862e7b3548a67225bc1c33bf8a5c8f924dcbb1951958beaccbf86071b4e866f0e7a4d55a09456412fe70223 +srcfiles size=7 + RELOC/source/latex/eqlist/eqlist.dtx + RELOC/source/latex/eqlist/eqlist.ins +runfiles size=1 + RELOC/tex/latex/eqlist/eqlist.sty +catalogue-ctan /macros/latex/contrib/eqlist +catalogue-license lppl +catalogue-topics list list-descr +catalogue-version 2.1 + +name eqnalign +category Package +revision 43278 +shortdesc Make eqnarray behave like align +relocated 1 +longdesc The package makes eqnarray environment behave like align from +longdesc amsmath'. It is intended for quick-fixing documents that use +longdesc eqnarray. In cases where it fails, manual conversion to align +longdesc is required, but these cases should be seldom. +containersize 1724 +containerchecksum 6793d24d272ff5f95b4e37fa3f4206e7358e0f5b51c51bcf4c61908e3fa554d8c8a53d888c7d7b1adde09f5d308c19944e93abccdb7846c88544abc90bbe4924 +doccontainersize 288116 +doccontainerchecksum 65847f34d7d1c76dd4d87ebd7e46aa1bb9e9a34ecf04cac6e58c18f9f4949d3e82325dac982f6d704fe6013e2acf718f0372873e547434c15a4a07c07ace27c9 +docfiles size=71 + RELOC/doc/latex/eqnalign/README.md details="Readme" + RELOC/doc/latex/eqnalign/eqnalign.pdf details="Package documentation" +srccontainersize 4692 +srccontainerchecksum 124449d3ce1f3b120f152c1eee49447f640f97d01f1d5a6f79ef72d1465cdd31de896049a5a7163e4e366ca9454b0f78723c4a94a24b8d83e2c4540d613bfaa3 +srcfiles size=4 + RELOC/source/latex/eqnalign/eqnalign.dtx + RELOC/source/latex/eqnalign/eqnalign.ins +runfiles size=1 + RELOC/tex/latex/eqnalign/eqnalign.sty +catalogue-also eqnarray amsmath +catalogue-ctan /macros/latex/contrib/eqnalign +catalogue-license lppl1.3 +catalogue-topics maths maths-syseqn +catalogue-version 1.0a + +name eqname +category Package +revision 20678 +shortdesc Name tags for equations +relocated 1 +longdesc The \eqname command provides a name tag for the current +longdesc equation, in place of an equation number. The name tag will be +longdesc picked up by a subsequent \label command. +containersize 972 +containerchecksum 1717aa83439019ba2c07ced56ca5dc969a68b78c9a711d97d0a168d432c6e26b53f30b2a3f6f8d241acf465fe8817d7e4fc4238982a68bf2ae143c5fdc2ca72e +runfiles size=1 + RELOC/tex/latex/eqname/eqname.sty +catalogue-ctan /macros/latex/contrib/gene/eqname +catalogue-license other-free +catalogue-topics maths + +name eqnarray +category Package +revision 20641 +shortdesc More generalised equation arrays with numbering +relocated 1 +longdesc Defines an equationarray environment, that allows more than +longdesc three columns, but otherwise behaves like LaTeX's eqnarray +longdesc environment. This environment is similar, in some ways, to the +longdesc align environment of amsmath. The package requires the array +longdesc package. +containersize 2196 +containerchecksum f5abd20910152cf65d92c7e44930729c1052f72441f162de2f4ad869f0ff37b669066f43089a1369298e9ebdb536ed62d437b3f34be5b3e417d8b0bf34d9c870 +doccontainersize 101768 +doccontainerchecksum 7ea3d87f81eca28dd52f9e9cf4f7df1ce4f7b9cd82cc40d0a7fff234415b2a3e033fa1c8a11594b2c08e5edf87ae265e5f7a65eb92a79cd523568f37853de30a +docfiles size=30 + RELOC/doc/latex/eqnarray/README details="Readme" + RELOC/doc/latex/eqnarray/eqnarray.pdf details="Package documentation" +srccontainersize 5628 +srccontainerchecksum 9dd02c43fca4f6e8dba0bd44292c8f97aef4cbf39d521b9df10206a2309e82492f344fb65c35ac0509532e9efb2571aecb2a5894e639de5efa1444bba9916587 +srcfiles size=6 + RELOC/source/latex/eqnarray/eqnarray.drv + RELOC/source/latex/eqnarray/eqnarray.dtx + RELOC/source/latex/eqnarray/eqnarray.ins +runfiles size=2 + RELOC/tex/latex/eqnarray/eqnarray.sty +catalogue-ctan /macros/latex/contrib/eqnarray +catalogue-license gpl3 +catalogue-topics maths maths-syseqn +catalogue-version 1.3 + +name eqnnumwarn +category Package +revision 45511 +shortdesc Modifies the amsmath equation environments to warn for a displaced equation number +relocated 1 +longdesc Sometimes an equation is too long that an equation number will +longdesc be typeset below the equation itself, but yet not long enough +longdesc to yield an "overfull \hbox" warning. The eqnnumwarn package +longdesc modifies the standard amsmath numbered equation environments to +longdesc throw a warning whenever this occurs. +containersize 3232 +containerchecksum ddfee700caa63f65fb4f53fe2469d1e6ef6338843738dd2c06989f23b6f4b40dd1dfe4b5979a04b34a9430d7cdd4d0f3ef14e3ce39613c8961fb0266e4ce6af3 +doccontainersize 93352 +doccontainerchecksum e6dddee646be40e01c211854d3fa04855286e24a39b8217380e555eaacfad50fc66a57e89336d505c80a8df77ff7885922195423d11c2acefce583c9cb9fce81 +docfiles size=26 + RELOC/doc/latex/eqnnumwarn/README.md details="Readme" + RELOC/doc/latex/eqnnumwarn/eqnnumwarn.pdf details="Package documentation" + RELOC/doc/latex/eqnnumwarn/eqnnumwarn.tex +runfiles size=2 + RELOC/tex/latex/eqnnumwarn/eqnnumwarn.sty +catalogue-also latex-amsmath +catalogue-ctan /macros/latex/contrib/eqnnumwarn +catalogue-license lppl1.3 +catalogue-topics comp-supp +catalogue-version 1.0 + +name eqparbox +category Package +revision 45215 +shortdesc Create equal-widthed parboxes +relocated 1 +longdesc LaTeX users sometimes need to ensure that two or more blocks of +longdesc text occupy the same amount of horizontal space on the page. To +longdesc that end, the eqparbox package defines a new command, +longdesc \eqparbox, which works just like \parbox, except that instead +longdesc of specifying a width, one specifies a tag. All eqparboxes with +longdesc the same tag--regardless of where they are in the +longdesc document--will stretch to fit the widest eqparbox with that +longdesc tag. This simple, equal-width mechanism can be used for a +longdesc variety of alignment purposes, as is evidenced by the examples +longdesc in eqparbox's documentation. Various derivatives of \eqparbox +longdesc are also provided. +containersize 2792 +containerchecksum b6e64a4d30840933614a42b16ffec215d1e01138c42805ed20bfab6ec03e232f87fcc2c20decb2e7e75234b7bd5fc2ebe5477808756ec92e6e724acb3482afca +doccontainersize 214564 +doccontainerchecksum 1b0f7e6249e114bb6371d19f941cd2308f70ac4f1c831ce5a1c15551bbd65a4289b0b0e718580cc7df97bf4732ad3a76b3f22ea12f7caeaa2ea6362fabab2074 +docfiles size=56 + RELOC/doc/latex/eqparbox/README details="Readme" + RELOC/doc/latex/eqparbox/eqparbox.pdf details="Package documentation" +srccontainersize 16336 +srccontainerchecksum 2998b3fce2cce05512a41b4700905adb78d421302ed0275e7f263f891a0d8e9d5d8793ce2fb80cf1ca3e8f5f148e530a48c3c701f72729e6f4667382ad9247b1 +srcfiles size=17 + RELOC/source/latex/eqparbox/eqparbox.dtx + RELOC/source/latex/eqparbox/eqparbox.ins +runfiles size=3 + RELOC/tex/latex/eqparbox/eqparbox.sty +catalogue-ctan /macros/latex/contrib/eqparbox +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 4.1 + +name erdc +category Package +revision 15878 +shortdesc Style for Reports by US Army Corps of Engineers +relocated 1 +longdesc A class for typesetting Technical Information Reports of the +longdesc Engineer Research and Development Center, US Army Corps of +longdesc Engineers. The class was commissioned and paid for by US Army +longdesc Corps of Engineers, Engineer Research and Development Center, +longdesc 3909 Halls Ferry Road, Vicksburg, MS 39180-6199. +containersize 6056 +containerchecksum 56754f7ca1872837a362b1f5cc929fe5ed8bbd59a1a45eb2fe20b071f7c44362b0d98764c6d2870d275d0f0216a9543cc1e9f671f92de1b6b02136f9076f5f95 +doccontainersize 685596 +doccontainerchecksum 3e9d2dbfb3bd877c6bd105ca8cdff87cad9cf801797cea39e760ceaa1f27ed802795d728f9bd675c6553a88e22c03a035436abb19dacd38c774b94a0e2bd1567 +docfiles size=215 + RELOC/doc/latex/erdc/README + RELOC/doc/latex/erdc/erdc.bib + RELOC/doc/latex/erdc/erdc.pdf details="Package documentation" + RELOC/doc/latex/erdc/nola.eps + RELOC/doc/latex/erdc/nola.pdf + RELOC/doc/latex/erdc/red_corps_castle2.eps + RELOC/doc/latex/erdc/red_corps_castle2.pdf + RELOC/doc/latex/erdc/sample.pdf details="Sample of usage" + RELOC/doc/latex/erdc/sample.tex +srccontainersize 16276 +srccontainerchecksum afe35b5120001d40259065ba25a9c5720f78fb1a679ed984727b89076bc265113e93184bc8ffbf998f069f85636f332ec5c93a40ba39aef4d4b7a3884da42446 +srcfiles size=17 + RELOC/source/latex/erdc/Makefile + RELOC/source/latex/erdc/erdc.dtx + RELOC/source/latex/erdc/erdc.ins +runfiles size=5 + RELOC/tex/latex/erdc/erdc.cls +catalogue-ctan /macros/latex/contrib/erdc +catalogue-license lppl +catalogue-topics report-like class +catalogue-version 1.1 + +name erewhon +category Package +revision 58722 +shortdesc Font package derived from Heuristica and Utopia +relocated 1 +longdesc Erewhon is based on the Heuristica package, which is based in +longdesc turn on Utopia. Erewhon adds a number of new features -- small +longdesc caps in all styles rather than just regular, added figure +longdesc styles (proportional, inferior, numerator, denominator) and +longdesc superior letters. The size is 6% smaller than Heuristica, +longdesc matching that of UtopiaStd. +execute addMap erewhon.map +containersize 2520664 +containerchecksum ba9a24a32010d2f69a3bdfd1f146194d0962f3a2108c1a17416faa4ed331fba5315ce2a30710c1778f75fa6d3a709e52c6b6781f4fc2a4634a91706945fcc45f +doccontainersize 368752 +doccontainerchecksum 3f95f89b51be6b373448bd2fe728bb55d2a1249862147aff0434ac92d8b2628ac25ae2c9906aaca8d932a2cafb6e6d57b7ea674857934a98063cb717d619375e +docfiles size=254 + RELOC/doc/fonts/erewhon/FontLog.txt + RELOC/doc/fonts/erewhon/OFL-FAQ.txt + RELOC/doc/fonts/erewhon/OFL.txt + RELOC/doc/fonts/erewhon/README details="Readme" + RELOC/doc/fonts/erewhon/erewhon-doc.pdf details="Package documentation" + RELOC/doc/fonts/erewhon/erewhon-doc.tex +runfiles size=2816 + RELOC/fonts/afm/public/erewhon/Erewhon-Bold.afm + RELOC/fonts/afm/public/erewhon/Erewhon-BoldItalic.afm + RELOC/fonts/afm/public/erewhon/Erewhon-BoldSlanted.afm + RELOC/fonts/afm/public/erewhon/Erewhon-Italic.afm + RELOC/fonts/afm/public/erewhon/Erewhon-Regular.afm + RELOC/fonts/afm/public/erewhon/Erewhon-RegularSlanted.afm + RELOC/fonts/afm/public/erewhon/erewBMI.afm + RELOC/fonts/afm/public/erewhon/erewBRM.afm + RELOC/fonts/afm/public/erewhon/erewMI.afm + RELOC/fonts/afm/public/erewhon/erewMR.afm + RELOC/fonts/enc/dvips/erewhon/erewhontlf-ot2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_25oktk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2jsbza.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2lssnc.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2objs7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2qulls.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2sunpf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_36pkgq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_3cc3dt.enc + RELOC/fonts/enc/dvips/erewhon/zut1_3ss64c.enc + RELOC/fonts/enc/dvips/erewhon/zut1_3xl2sl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_4chmhh.enc + RELOC/fonts/enc/dvips/erewhon/zut1_4j4ux5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_4qs3ad.enc + RELOC/fonts/enc/dvips/erewhon/zut1_53w3xs.enc + RELOC/fonts/enc/dvips/erewhon/zut1_546xgo.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5drzr5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5eo37n.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5iiyxb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5kulil.enc + RELOC/fonts/enc/dvips/erewhon/zut1_6etwti.enc + RELOC/fonts/enc/dvips/erewhon/zut1_6kzn42.enc + RELOC/fonts/enc/dvips/erewhon/zut1_6n4vaj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_74cce3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_74ksak.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7ajsnx.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7lebnu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7xxsa3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7zfl2i.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7zlfno.enc + RELOC/fonts/enc/dvips/erewhon/zut1_a27mgr.enc + RELOC/fonts/enc/dvips/erewhon/zut1_a7a6j7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_acvwor.enc + RELOC/fonts/enc/dvips/erewhon/zut1_adckrx.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ahzhtu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_aluvmp.enc + RELOC/fonts/enc/dvips/erewhon/zut1_amccbu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_amjics.enc + RELOC/fonts/enc/dvips/erewhon/zut1_awhpzb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ax3b7f.enc + RELOC/fonts/enc/dvips/erewhon/zut1_azbcfh.enc + RELOC/fonts/enc/dvips/erewhon/zut1_azqpxw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_c73i2u.enc + RELOC/fonts/enc/dvips/erewhon/zut1_cj3gqs.enc + RELOC/fonts/enc/dvips/erewhon/zut1_cmujr7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_cqdyjt.enc + RELOC/fonts/enc/dvips/erewhon/zut1_cxj5nb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_cyj7pa.enc + RELOC/fonts/enc/dvips/erewhon/zut1_d6afaq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dkbnkq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dnhvn3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dpee64.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dq4c7f.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dru2ao.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dsvoru.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dwvmxx.enc + RELOC/fonts/enc/dvips/erewhon/zut1_e4qrg7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_eajfvl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_eazsup.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ecrwth.enc + RELOC/fonts/enc/dvips/erewhon/zut1_elnhz2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_erihhu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_etc5hm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fec52x.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fojqdn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fomwqp.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fp3vw2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fqlf3s.enc + RELOC/fonts/enc/dvips/erewhon/zut1_frcrrk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gagfjo.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gbmzbk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gm2ao2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gqji7z.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gxqdb2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gzlvot.enc + RELOC/fonts/enc/dvips/erewhon/zut1_hhrib2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_hl634h.enc + RELOC/fonts/enc/dvips/erewhon/zut1_i3xnrn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_i6k2d2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_igmc4g.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ijhs6t.enc + RELOC/fonts/enc/dvips/erewhon/zut1_io5o4g.enc + RELOC/fonts/enc/dvips/erewhon/zut1_irfza6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_isszvh.enc + RELOC/fonts/enc/dvips/erewhon/zut1_iszlz3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_iuc2sz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ivciyi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_izu75o.enc + RELOC/fonts/enc/dvips/erewhon/zut1_j6ua73.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jbzr5t.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jdnyy6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jmwubr.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jofyrj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jsdebf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jyfbou.enc + RELOC/fonts/enc/dvips/erewhon/zut1_k3uyvf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_kdakg5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_knq7bi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_kpjvx5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_kwgi2r.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lefook.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ljsdwq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lkesvg.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lql6bl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lxr6iw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_m62wbz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mcdrws.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mieo7u.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mkqhoa.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mmwqox.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mno2dl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mqoft7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mqrime.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mxehrm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ncwigg.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ncyh3k.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ndxvka.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nhu5qm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nlk3tk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nmevy6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nrup2h.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ntuunb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nwll5a.enc + RELOC/fonts/enc/dvips/erewhon/zut1_o4jtlp.enc + RELOC/fonts/enc/dvips/erewhon/zut1_odgoid.enc + RELOC/fonts/enc/dvips/erewhon/zut1_okacrk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_orscbj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_otavqs.enc + RELOC/fonts/enc/dvips/erewhon/zut1_papffl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_peef5q.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pj2kv6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ps4rne.enc + RELOC/fonts/enc/dvips/erewhon/zut1_psbgvs.enc + RELOC/fonts/enc/dvips/erewhon/zut1_psdthf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pux3en.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qltwwe.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qptrxz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qvbgtd.enc + RELOC/fonts/enc/dvips/erewhon/zut1_r3uc5w.enc + RELOC/fonts/enc/dvips/erewhon/zut1_r74hdq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_rp5jpf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_s5ndkw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_sim7pz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_t32gte.enc + RELOC/fonts/enc/dvips/erewhon/zut1_t5iu6g.enc + RELOC/fonts/enc/dvips/erewhon/zut1_tmatie.enc + RELOC/fonts/enc/dvips/erewhon/zut1_totpyl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_tzgz6e.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ufk2cy.enc + RELOC/fonts/enc/dvips/erewhon/zut1_uft3lp.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ugr2dt.enc + RELOC/fonts/enc/dvips/erewhon/zut1_uhamxn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ui2iqu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_uk5nxi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ul5nhk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_umzzxg.enc + RELOC/fonts/enc/dvips/erewhon/zut1_uuvzxd.enc + RELOC/fonts/enc/dvips/erewhon/zut1_v2pu2l.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vcw2hi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vj42om.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vlikpx.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vtfujz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_wg4pgf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_wrgbks.enc + RELOC/fonts/enc/dvips/erewhon/zut1_x3bhkk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_x3yqgk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xd5tcn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xhc3k4.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xkkeec.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xlud6l.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xsflzz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_yjdtdu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ytd5fv.enc + RELOC/fonts/enc/dvips/erewhon/zut1_yx3dqr.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zc3ibv.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zdrb2k.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zhgadb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zx32l7.enc + RELOC/fonts/map/dvips/erewhon/erewhon.map + RELOC/fonts/opentype/public/erewhon/Erewhon-Bold.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-BoldItalic.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-BoldSlanted.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-Italic.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-Regular.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-RegularSlanted.otf + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/erewBMI.tfm + RELOC/fonts/tfm/public/erewhon/erewBRM.tfm + RELOC/fonts/tfm/public/erewhon/erewMI.tfm + RELOC/fonts/tfm/public/erewhon/erewMR.tfm + RELOC/fonts/type1/public/erewhon/Erewhon-Bold.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-BoldItalic.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-BoldSlanted.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-Italic.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-Regular.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-RegularSlanted.pfb + RELOC/fonts/type1/public/erewhon/erewBMI.pfb + RELOC/fonts/type1/public/erewhon/erewBRM.pfb + RELOC/fonts/type1/public/erewhon/erewMI.pfb + RELOC/fonts/type1/public/erewhon/erewMR.pfb + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2c.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-ts1.vf + RELOC/tex/latex/erewhon/LY1erewhon-Dnom.fd + RELOC/tex/latex/erewhon/LY1erewhon-Inf.fd + RELOC/tex/latex/erewhon/LY1erewhon-LF.fd + RELOC/tex/latex/erewhon/LY1erewhon-Numr.fd + RELOC/tex/latex/erewhon/LY1erewhon-OsF.fd + RELOC/tex/latex/erewhon/LY1erewhon-Sup.fd + RELOC/tex/latex/erewhon/LY1erewhon-TLF.fd + RELOC/tex/latex/erewhon/LY1erewhon-TOsF.fd + RELOC/tex/latex/erewhon/OT2erewhon-TLF.fd + RELOC/tex/latex/erewhon/T1erewhon-Dnom.fd + RELOC/tex/latex/erewhon/T1erewhon-Inf.fd + RELOC/tex/latex/erewhon/T1erewhon-LF.fd + RELOC/tex/latex/erewhon/T1erewhon-Numr.fd + RELOC/tex/latex/erewhon/T1erewhon-OsF.fd + RELOC/tex/latex/erewhon/T1erewhon-Sup.fd + RELOC/tex/latex/erewhon/T1erewhon-TLF.fd + RELOC/tex/latex/erewhon/T1erewhon-TOsF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Dnom.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Inf.fd + RELOC/tex/latex/erewhon/T2Aerewhon-LF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Numr.fd + RELOC/tex/latex/erewhon/T2Aerewhon-OsF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Sup.fd + RELOC/tex/latex/erewhon/T2Aerewhon-TLF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-TOsF.fd + RELOC/tex/latex/erewhon/T2Berewhon-Dnom.fd + RELOC/tex/latex/erewhon/T2Berewhon-Inf.fd + RELOC/tex/latex/erewhon/T2Berewhon-LF.fd + RELOC/tex/latex/erewhon/T2Berewhon-Numr.fd + RELOC/tex/latex/erewhon/T2Berewhon-OsF.fd + RELOC/tex/latex/erewhon/T2Berewhon-Sup.fd + RELOC/tex/latex/erewhon/T2Berewhon-TLF.fd + RELOC/tex/latex/erewhon/T2Berewhon-TOsF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Dnom.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Inf.fd + RELOC/tex/latex/erewhon/T2Cerewhon-LF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Numr.fd + RELOC/tex/latex/erewhon/T2Cerewhon-OsF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Sup.fd + RELOC/tex/latex/erewhon/T2Cerewhon-TLF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-TOsF.fd + RELOC/tex/latex/erewhon/TS1erewhon-LF.fd + RELOC/tex/latex/erewhon/TS1erewhon-OsF.fd + RELOC/tex/latex/erewhon/TS1erewhon-TLF.fd + RELOC/tex/latex/erewhon/TS1erewhon-TOsF.fd + RELOC/tex/latex/erewhon/erewhon.fontspec + RELOC/tex/latex/erewhon/erewhon.sty +catalogue-ctan /fonts/erewhon +catalogue-license ofl lppl1.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.115 + +name erewhon-math +category Package +revision 58903 +shortdesc Utopia based OpenType Math font +relocated 1 +longdesc Erewhon Math is an OpenType math font meant to be used together +longdesc with Erewhon text fonts in LuaLaTeX or XeLaTeX documents. Like +longdesc Fourier-GUTenberg, it is Utopia based and has been designed as +longdesc a replacement of Fourier-GUTenberg for Unicode engines. +containersize 224324 +containerchecksum 3ba23274d2036657d24fff1bdb1de3f76269360ca58ac7e4439b574a43d7bbf5ca5bacb346d63024ad9cc8fb5eeaae96374147c99acb8983abe6b42708f977a6 +doccontainersize 1472044 +doccontainerchecksum 2191adc4137255c3105b3e0191eb8562bb8beb968b81d91cff50a400efdcf7787b3e41a139b8c3372568a2267b81789d60e4101474b2223579c18d24067ac15d +docfiles size=380 + RELOC/doc/fonts/erewhon-math/Erewhon-Math.ltx + RELOC/doc/fonts/erewhon-math/Erewhon-Math.pdf details="Package documentation" + RELOC/doc/fonts/erewhon-math/README.md details="Readme" + RELOC/doc/fonts/erewhon-math/unimath-erewhon.ltx + RELOC/doc/fonts/erewhon-math/unimath-erewhon.pdf details="List of glyphs" +runfiles size=92 + RELOC/fonts/opentype/public/erewhon-math/Erewhon-Math.otf + RELOC/tex/latex/erewhon-math/fourier-otf.sty +catalogue-ctan /fonts/erewhon-math +catalogue-license ofl lppl1.3 +catalogue-topics font font-proportional font-otf font-supp font-maths +catalogue-version 0.46 + +name errata +category Package +revision 42428 +shortdesc Error markup for LaTeX documents +relocated 1 +longdesc This package provides a simple infrastructure for recording +longdesc errata in LaTeX documents. This allows the user to maintain an +longdesc updated version of the document (with all errors corrected) and +longdesc to automatically generate an errata document highlighting the +longdesc difference to the published version. +containersize 1652 +containerchecksum ac3b99ef6e120a5b488cf79f3e942c10a47ee92e84a04d3667f99810ef365aac66598908c491897ef7a99df268a0bbc7185d49aed2313487712e300383356ec5 +doccontainersize 147644 +doccontainerchecksum 7fb625a66efc914e2eacc45696ac43112d7ca49b668ffbea179f47f04746509f981141a77d2948f30b8c56e4a2ff06f6af3047fe494e4f084237891fbbf6710f +docfiles size=44 + RELOC/doc/latex/errata/README details="Readme" + RELOC/doc/latex/errata/errata-errata.tex + RELOC/doc/latex/errata/errata.pdf details="Package documentation" +srccontainersize 6420 +srccontainerchecksum ecc57287f78000349f4999d1f85aeaba0206a898ff2d97a1fa9b4f94acffd76099cc0f92a88e5a38153f71570f62d9616e0332edeb987e468a6483de0dfab5ee +srcfiles size=6 + RELOC/source/latex/errata/errata.dtx + RELOC/source/latex/errata/errata.ins +runfiles size=1 + RELOC/tex/latex/errata/errata.sty +catalogue-ctan /macros/latex/contrib/errata +catalogue-license lppl1 +catalogue-topics editorial +catalogue-version 0.3 + +name erw-l3 +category Package +revision 55414 +shortdesc Utilities built around expl3 +relocated 1 +longdesc Features: compose: compose control sequences, whether +longdesc predefined or inline csutil: narrow purpose control sequences +longdesc (backend to other packages) numbrdcs: numbered control +longdesc sequences built from other control sequences or inline +containersize 3428 +containerchecksum 5f006723665945d55f7365f3cd5076fa7ca924c0ce08c797ec684230edefd71483f37b456f5627b7d6b3d8f10fbf97101caefa67365eb155fe3f93d115e1bcf4 +doccontainersize 674200 +doccontainerchecksum fcf42f6392ae01414868f2d36883d9204bcefc06d772e6ced603ffe01b2b4d0cc15b7dd161b1dd57f5e58816d6da4290b738a9727207de28b1738d233c82fb3e +docfiles size=168 + RELOC/doc/latex/erw-l3/1343c9c903.tex + RELOC/doc/latex/erw-l3/README.md details="Readme" + RELOC/doc/latex/erw-l3/erw-l3.pdf details="Package documentation" +srccontainersize 10792 +srccontainerchecksum 27f357e13027f67764d4818a1cbb786678260272264ba7af13e6867923fc395c49636a09a5f2e4a444ea37f9985d0c7edc5a52ebffa172843bff24764112cd47 +srcfiles size=14 + RELOC/source/latex/erw-l3/erw-l3.dtx +runfiles size=4 + RELOC/tex/latex/erw-l3/erw-l3.sty +catalogue-contact-home https://github.com/er-cpp/edu-latex3 +catalogue-contact-repository https://github.com/rogard/erw-l3 +catalogue-contact-support https://github.com/er-cpp/edu-latex3/issues +catalogue-ctan /macros/latex/contrib/erw-l3 +catalogue-license lppl1.3c +catalogue-topics latex3 expl3 +catalogue-version 3.1 + +name es-tex-faq +category Package +revision 15878 +catalogue faq-es +shortdesc CervanTeX (Spanish TeX Group) FAQ +relocated 1 +longdesc SGML source, converted LaTeX version, and readable copies of +longdesc the FAQ from the Spanish TeX users group. +containersize 444 +containerchecksum 33f66e4f928591188289f07e003cac10229735e69ee7390020748e119930ea7b74ad69e5eea991d8e34325ac4d548ce0b843a00b3ca50b9e6fae3e96526a4ad8 +doccontainersize 495668 +doccontainerchecksum 5b5d0ebda1bde2c1c67fd4853a41bb10956487fa5ad2686d6814dbdd51f68dde2a3d294797b7b1602d587a44ea6acbd8260ab9965efab81d91eb9d9fdb93da69 +docfiles size=306 + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.html details="The document itself (HTML)" language="es" + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.latin1 + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.pdf details="The document itself (PDF)" language="es" + 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-license lppl +catalogue-topics faq spanish-doc +catalogue-version 1.97 + +name esami +category Package +revision 47639 +shortdesc Typeset exams with scrambled questions and answers +relocated 1 +longdesc The package enables the user to typeset exams with multiple +longdesc choice, open questions and many other types of exercise. Both +longdesc questions and answers may be randomly distributed within the +longdesc exam, and the solutions are typeset automatically. Exercises +longdesc may contain a wide number of random parameters and it is +longdesc possible to do arithmetical operations on them. The package is +longdesc localised in Italian, English, French, German, Greek, Serbian, +longdesc and Spanish. +containersize 20980 +containerchecksum bbf24974b4feaba88b92b3179af6bdb45b86053ae8037fa41c99d0823cf3c79807283c01370365ea0264ba1eee3c4c289fadc5c2619900e85657366c14920a7d +doccontainersize 1432948 +doccontainerchecksum d9f57db15517f47d648e4ef91111a843fdd7f0d0706d1a863f5b4f7c65008c00507c552975c01b60c00cc724e63aea24f7a6b40930148bc981e200866cc30ac7 +docfiles size=441 + RELOC/doc/latex/esami/README details="Readme" + RELOC/doc/latex/esami/VERSION + RELOC/doc/latex/esami/doc/esami-doc-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/esami/doc/esami-doc-en.tex + RELOC/doc/latex/esami/doc/esami-doc-it.pdf details="Package documentation (Italian)" language="it" + RELOC/doc/latex/esami/doc/esami-doc-it.tex + RELOC/doc/latex/esami/doc/esami.bib + RELOC/doc/latex/esami/doc/examples/master-sol.tex + RELOC/doc/latex/esami/doc/examples/master.tex + RELOC/doc/latex/esami/doc/examples/problem1.tex + RELOC/doc/latex/esami/doc/examples/problem2-tabella.tex + RELOC/doc/latex/esami/doc/examples/problem2.tex + RELOC/doc/latex/esami/doc/examples/problem3-matching.tex + RELOC/doc/latex/esami/doc/examples/problem4-fillin.tex + RELOC/doc/latex/esami/doc/examples/test1.tex + RELOC/doc/latex/esami/doc/examples/test11.tex + RELOC/doc/latex/esami/doc/examples/test12.tex + RELOC/doc/latex/esami/doc/examples/test13.tex + RELOC/doc/latex/esami/doc/examples/test14.tex + RELOC/doc/latex/esami/doc/examples/test2.tex + RELOC/doc/latex/esami/doc/examples/test3.tex + RELOC/doc/latex/esami/doc/examples/test4.tex + RELOC/doc/latex/esami/doc/examples/test5-fillin.tex + RELOC/doc/latex/esami/doc/examples/test9.tex + RELOC/doc/latex/esami/doc/examples/testA-luatex-sol.pdf + RELOC/doc/latex/esami/doc/examples/testA-luatex.pdf + RELOC/doc/latex/esami/doc/examples/testA-sol.pdf + RELOC/doc/latex/esami/doc/examples/testA-sol.tex + RELOC/doc/latex/esami/doc/examples/testA-xetex-sol.pdf + RELOC/doc/latex/esami/doc/examples/testA-xetex.pdf + RELOC/doc/latex/esami/doc/examples/testA.pdf + RELOC/doc/latex/esami/doc/examples/testA.tex + RELOC/doc/latex/esami/doc/examples/totale-versioni.tex + RELOC/doc/latex/esami/esami-xyz.cfg +runfiles size=28 + RELOC/tex/latex/esami/es-UKenglish.lng + RELOC/tex/latex/esami/es-USenglish.lng + RELOC/tex/latex/esami/es-french.lng + RELOC/tex/latex/esami/es-german.lng + RELOC/tex/latex/esami/es-greek.lng + RELOC/tex/latex/esami/es-italian.lng + RELOC/tex/latex/esami/es-serbian.lng + RELOC/tex/latex/esami/es-spanish.lng + RELOC/tex/latex/esami/esami.sty +catalogue-ctan /macros/latex/contrib/esami +catalogue-license lppl +catalogue-topics exam +catalogue-version 2.5 + +name esdiff +category Package +revision 21385 +shortdesc Simplify typesetting of derivatives +relocated 1 +longdesc The package makes writing derivatives very easy. It offers +longdesc macros for derivatives, partial derivatives and multiple +longdesc derivatives, and allows specification of the point at which the +longdesc value is calculated. Some typographic alternatives may be +longdesc selected by package options +containersize 1632 +containerchecksum 84b2490e6ff743f0133deacc22c8e0368368e961d634239694ccf7b5cde7826996e080077baa0e0045230b6d2c3cad53ee055c05b17c89ca735dc2e40a01fb5a +doccontainersize 82640 +doccontainerchecksum 97dbb512437c868f2b15ebd1271f51a7f196e40c70043c224617378e6c9333f19e2c18666f64fe6ea323c7aa5a58438944d8c6f5b1a9c0d36a239caee972eb08 +docfiles size=25 + RELOC/doc/latex/esdiff/README details="Readme" + RELOC/doc/latex/esdiff/esdiff.pdf details="Package documentation" +srccontainersize 2972 +srccontainerchecksum 983f7f7cee22e442768ae56fac614d569eef18bff35c52c669d51079a61beca395c06e7fb9bcedde338bbaa1b3775094ce9b77fe7c043df2e1e25975410ab7d2 +srcfiles size=4 + RELOC/source/latex/esdiff/esdiff.dtx + RELOC/source/latex/esdiff/esdiff.ins +runfiles size=2 + RELOC/tex/latex/esdiff/esdiff.sty +catalogue-ctan /macros/latex/contrib/esdiff +catalogue-license lppl1 +catalogue-topics maths +catalogue-version 1.2 + +name esindex +category Package +revision 52342 +shortdesc Typset index entries in Spanish documents +relocated 1 +longdesc This package helps you to create indexes in Spanish. With +longdesc esindex you can write, say, \esindex{canon} and the entry will +longdesc be correctly alphabetized in the index. This release of esindex +longdesc works with accented characters in any encoding, and without +longdesc babel. +containersize 3820 +containerchecksum 4e3fe4402e025dbbf300b509954600e3a1eca221a448d32ff2399aaf552ff930e6921bed6f0e1aadb20d6453848e235e42e8b809c4f4280d39c29937615e90f5 +doccontainersize 68744 +doccontainerchecksum 6db4b39371280b0f3a3e0be9e18337a75611410ad25e7953742247e750ca439c92c614edeffa03c4a7f39d8aea447037a6e25cb8f6f0d22a190f359c9cc35f8c +docfiles size=21 + RELOC/doc/latex/esindex/README.md details="Readme" + RELOC/doc/latex/esindex/esindex.pdf details="Package documentation" + RELOC/doc/latex/esindex/esindex.tex +runfiles size=3 + RELOC/tex/latex/esindex/esindex.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos +catalogue-ctan /macros/latex/contrib/esindex +catalogue-license mit +catalogue-topics index spanish +catalogue-version 1.7 + +name esint +category Package +revision 52240 +shortdesc Extended set of integrals for Computer Modern +relocated 1 +longdesc The esint package permits access to alternate integral symbols +longdesc when you are using the Computer Modern fonts. In the original +longdesc set, several integral symbols are missing, such as \oiint. Many +longdesc of these symbols are available in other font sets (pxfonts, +longdesc txfonts, etc.), but there is no good solution if you want to +longdesc use Computer Modern. The package provides Metafont source and +longdesc LaTeX macro support. +containersize 5760 +containerchecksum d0eda90d6a890b7813648516f21e3a88213b1374df0c418895301354de402b9634492a1fd89193f34c6db6b9fcc0cdd0f8f46472e0e3a210234c7d8cab1bbed8 +doccontainersize 58132 +doccontainerchecksum aeeaafe3746b8fd75ba80fc36b1610a3e4f7c7f26044ca82c2c8091139e0294275a1dde9dd73fb3e5b013ff04e4d0f26422e8c2a44a88beab167353e7686b3fe +docfiles size=16 + RELOC/doc/latex/esint/README.txt details="Readme" + RELOC/doc/latex/esint/esint-doc.pdf details="Package documentation" +srccontainersize 6560 +srccontainerchecksum 242e864b822f5deac76740d7a00edab9b6ff77e260b3e1adb6676dda009a8c200b9352e87998b76ac3047f0eacb9bd5ef87ac554c7c20ae649e91f1fcad889b2 +srcfiles size=15 + RELOC/source/latex/esint/esint.dtx + RELOC/source/latex/esint/esint.ins +runfiles size=18 + RELOC/fonts/source/public/esint/bigint.mf + RELOC/fonts/source/public/esint/esint10.mf + RELOC/fonts/source/public/esint/mathint.mf + RELOC/fonts/tfm/public/esint/esint10.tfm + RELOC/tex/latex/esint/esint.sty + RELOC/tex/latex/esint/uesint.fd +catalogue-also esint-type1 +catalogue-ctan /macros/latex/contrib/esint +catalogue-license lppl +catalogue-topics font font-symbol-maths font-mf font-supp +catalogue-version 1.2d + +name esint-type1 +category Package +revision 15878 +shortdesc Font esint10 in Type 1 format +relocated 1 +longdesc This is Eddie Saudrais's font esint10 in Adobe Type 1 format. +longdesc The Adobe Type 1 implementation was generated from the original +longdesc Metafont using mftrace. This distribution does not contain the +longdesc TFM files that are necessary to use the fonts with TeX; the TFM +longdesc files can be generated from the Metafont sources obtained by +longdesc following the instructions in the normal way. +depend esint +execute addMixedMap esint.map +containersize 31568 +containerchecksum 5a663d01e9241adf1961c922c588888561f495e6378fdd7aaa90954c3e51c5f0f8e6dc1e1947c9f03ce3472e1aab3dde1b35e6b5f0814f5e2cda564a31a45a1f +doccontainersize 41264 +doccontainerchecksum 081a225225f503fac403d306fac3ee3b2747341ef5c4ee9420f49a56ca959c7757f154c24f90ed9506041b13464ea216e6edb52f29790d189ea7b33c7c797f8e +docfiles size=14 + RELOC/doc/fonts/esint-type1/README details="Readme" + RELOC/doc/fonts/esint-type1/README.plainTeX details="Using the fonts with Plain TeX" + RELOC/doc/fonts/esint-type1/table.pdf details="Table of integral signs" + RELOC/doc/fonts/esint-type1/table.tex +runfiles size=12 + RELOC/dvips/esint-type1/config.esint + RELOC/fonts/map/dvips/esint-type1/esint.map + RELOC/fonts/type1/public/esint-type1/esint10.pfb + RELOC/tex/plain/esint-type1/esint.tex +catalogue-ctan /fonts/ps-type1/esint +catalogue-license pd +catalogue-topics font font-symbol-maths font-type1 + +name esk +category Package +revision 18115 +shortdesc Package to encapsulate Sketch files in LaTeX sources +relocated 1 +longdesc The ESK package allows to encapsulate Sketch files in LaTeX +longdesc sources. This is very useful for keeping illustrations in sync +longdesc with the text. It also frees the user from inventing +longdesc descriptive names for new files that fit into the confines of +longdesc file system conventions. Sketch is a 3D scene description +longdesc language by Eugene K. Ressler and can generate TikZ and +longdesc PSTricks code. ESK behaves in a similar fashion to EMP (which +longdesc encapsulates MetaPost files), and was in fact developed from +longdesc it. +containersize 3928 +containerchecksum 584d9b9abf202d93826c690545206c3b7276d6b3a4b717ed3671f9cbd2a1c6c6503d3352471fe60232e75d63632e021fb0ed34ce49d5a1e72ae58b08fbdd7211 +doccontainersize 414448 +doccontainerchecksum acc40c8829e69c681d3bcfd5aa7223b3f5320c1ed5fa3f4a9a700f203b622f300b73912ef5df2c163d2cce1b40aecfdf1eb880dcba48e94783c14054981e0e11 +docfiles size=117 + RELOC/doc/latex/esk/COPYING + RELOC/doc/latex/esk/README details="Readme" + RELOC/doc/latex/esk/esk.pdf details="Package documentation" + RELOC/doc/latex/esk/eskman.pdf details="Package manual" +srccontainersize 15476 +srccontainerchecksum 8f7123816c718d86eb1b362369dc10a745a003e8e79c54b8edb90813382528466a7e0fe3eb6b579372754d03888065b6f5c48a0682c6288905e93cebfb1b4a4b +srcfiles size=18 + RELOC/source/latex/esk/Makefile + RELOC/source/latex/esk/esk.drv + RELOC/source/latex/esk/esk.dtx + RELOC/source/latex/esk/esk.ins + RELOC/source/latex/esk/eskman.drv +runfiles size=3 + RELOC/tex/latex/esk/esk.sty +catalogue-ctan /macros/latex/contrib/esk +catalogue-license gpl +catalogue-topics graphics-inline +catalogue-version 1.0 + +name eskd +category Package +revision 15878 +shortdesc Modern Russian typesetting +relocated 1 +longdesc The class offers modern Russian text formatting, in accordance +longdesc with accepted design standards. Fonts not (apparently) +longdesc available on CTAN are required for use of the class. +containersize 3760 +containerchecksum d0c1745172683bcacfb061f48bee10f78dbc849657295f5e7714cca949afd586c441f727e909c627b595ccdb50b81d813538e6837a00809ee884ffe1acd6b25e +doccontainersize 262316 +doccontainerchecksum 01a0be9d02e7fece62cfd1bc8ceb26b2036f3d2e374794f3c4aacbfe004cf4059346510009760fe48fc0141c4e9f3cf1e40088203d31b7bbb31ec375cf5f70ea +docfiles size=231 + RELOC/doc/latex/eskd/README details="Package README" + RELOC/doc/latex/eskd/eskd.pdf details="Package documentation" + RELOC/doc/latex/eskd/example.eps + RELOC/doc/latex/eskd/example.tex +srccontainersize 7596 +srccontainerchecksum 88b3edc0487b638142ba353ef108558b8fa6d420f2560a4fb1c189829af87d877a8900566c042556b15d654d11d2a0def58fa958fb9b234fca84419b2621cba4 +srcfiles size=9 + RELOC/source/latex/eskd/eskd.dtx + RELOC/source/latex/eskd/eskd.ins +runfiles size=5 + RELOC/tex/latex/eskd/eskd.cls +catalogue-also eskdx +catalogue-ctan /macros/latex/contrib/eskd +catalogue-license lppl +catalogue-topics class russian + +name eskdx +category Package +revision 29235 +shortdesc Modern Russian typesetting +relocated 1 +longdesc Eskdx is a collection of LaTeX classes and packages to typeset +longdesc textual and graphical documents in accordance with Russian (and +longdesc probably post USSR) standards for designers. +containersize 17252 +containerchecksum e5ef11cba6b0251844200093445f5183de60e0c0198da9c7000ef5c05a2a9a4303a15dc77ed03e9874e452ffdd283016cedb8901e78cd0312ea5bbcc529b74d5 +doccontainersize 451672 +doccontainerchecksum 748dec387a09546b28718e943e05772cd56c75a0066793332b343e7f604e607efd37a071c1f4f32fbd20d7427277bf2d598b355b8ea3a0a04943ccb90f4f249d +docfiles size=246 + RELOC/doc/latex/eskdx/ChangeLog + RELOC/doc/latex/eskdx/Makefile + RELOC/doc/latex/eskdx/Makefile.unpacked + RELOC/doc/latex/eskdx/NEWS + RELOC/doc/latex/eskdx/NEWS.in + RELOC/doc/latex/eskdx/README details="Package README" + RELOC/doc/latex/eskdx/README.in + RELOC/doc/latex/eskdx/include.m4 + RELOC/doc/latex/eskdx/include.mak + RELOC/doc/latex/eskdx/manifest.txt + RELOC/doc/latex/eskdx/manual/Makefile + RELOC/doc/latex/eskdx/manual/eskdx.pdf details="Package documentation" language="ru" + RELOC/doc/latex/eskdx/manual/eskdx.tex.in + RELOC/doc/latex/eskdx/manual/example.tex + RELOC/doc/latex/eskdx/manual/img-form1.svg + RELOC/doc/latex/eskdx/manual/img-form2.svg + RELOC/doc/latex/eskdx/manual/img-form2a.svg + RELOC/doc/latex/eskdx/manual/img-title.svg + RELOC/doc/latex/eskdx/manual/latex2html-init + RELOC/doc/latex/eskdx/source/Makefile + RELOC/doc/latex/eskdx/source/eskdafterpkg.sty.in + RELOC/doc/latex/eskdx/source/eskdappsheet.sty.in + RELOC/doc/latex/eskdx/source/eskdbiblist.sty.in + RELOC/doc/latex/eskdx/source/eskdcap.sty.in + RELOC/doc/latex/eskdx/source/eskdchngsheet.sty.in + RELOC/doc/latex/eskdx/source/eskddstu.sty.in + RELOC/doc/latex/eskdx/source/eskdexplan.sty.in + RELOC/doc/latex/eskdx/source/eskdfont.sty.in + RELOC/doc/latex/eskdx/source/eskdfootnote.sty.in + RELOC/doc/latex/eskdx/source/eskdfreesize.sty.in + RELOC/doc/latex/eskdx/source/eskdgraph.cls.in + RELOC/doc/latex/eskdx/source/eskdhash.sty.in + RELOC/doc/latex/eskdx/source/eskdindent.sty.in + RELOC/doc/latex/eskdx/source/eskdinfo.sty.in + RELOC/doc/latex/eskdx/source/eskdlang.sty.in + RELOC/doc/latex/eskdx/source/eskdlist.sty.in + RELOC/doc/latex/eskdx/source/eskdpara.sty.in + RELOC/doc/latex/eskdx/source/eskdplain.sty.in + RELOC/doc/latex/eskdx/source/eskdrussian.def.in + RELOC/doc/latex/eskdx/source/eskdsect.sty.in + RELOC/doc/latex/eskdx/source/eskdspec.sty.in + RELOC/doc/latex/eskdx/source/eskdspecii.sty.in + RELOC/doc/latex/eskdx/source/eskdstamp.sty.in + RELOC/doc/latex/eskdx/source/eskdtab.cls.in + RELOC/doc/latex/eskdx/source/eskdtext.cls.in + RELOC/doc/latex/eskdx/source/eskdtitle.sty.in + RELOC/doc/latex/eskdx/source/eskdtitlebase.sty.in + RELOC/doc/latex/eskdx/source/eskdtotal.sty.in + RELOC/doc/latex/eskdx/source/eskdukrainian.def.in + RELOC/doc/latex/eskdx/test/Makefile + RELOC/doc/latex/eskdx/test/appsheet.tex + RELOC/doc/latex/eskdx/test/drawing-a2.tex + RELOC/doc/latex/eskdx/test/drawing-a3-mp.tex + RELOC/doc/latex/eskdx/test/drawing-a3-p.tex + RELOC/doc/latex/eskdx/test/drawing-a3.tex + RELOC/doc/latex/eskdx/test/drawing-a4.tex + RELOC/doc/latex/eskdx/test/footnote.tex + RELOC/doc/latex/eskdx/test/freesizesheets.tex + RELOC/doc/latex/eskdx/test/general.tex + RELOC/doc/latex/eskdx/test/general2.tex + RELOC/doc/latex/eskdx/test/numbering.tex + RELOC/doc/latex/eskdx/test/pagestyle.tex + RELOC/doc/latex/eskdx/test/spec.tex + RELOC/doc/latex/eskdx/test/specii.tex + RELOC/doc/latex/eskdx/test/twoside.tex +runfiles size=46 + RELOC/tex/latex/eskdx/eskdafterpkg.sty + RELOC/tex/latex/eskdx/eskdappsheet.sty + RELOC/tex/latex/eskdx/eskdbiblist.sty + RELOC/tex/latex/eskdx/eskdcap.sty + RELOC/tex/latex/eskdx/eskdchngsheet.sty + RELOC/tex/latex/eskdx/eskddstu.sty + RELOC/tex/latex/eskdx/eskdexplan.sty + RELOC/tex/latex/eskdx/eskdfont.sty + RELOC/tex/latex/eskdx/eskdfootnote.sty + RELOC/tex/latex/eskdx/eskdfreesize.sty + RELOC/tex/latex/eskdx/eskdgraph.cls + RELOC/tex/latex/eskdx/eskdhash.sty + RELOC/tex/latex/eskdx/eskdindent.sty + RELOC/tex/latex/eskdx/eskdinfo.sty + RELOC/tex/latex/eskdx/eskdlang.sty + RELOC/tex/latex/eskdx/eskdlist.sty + RELOC/tex/latex/eskdx/eskdpara.sty + RELOC/tex/latex/eskdx/eskdplain.sty + RELOC/tex/latex/eskdx/eskdrussian.def + RELOC/tex/latex/eskdx/eskdsect.sty + RELOC/tex/latex/eskdx/eskdspec.sty + RELOC/tex/latex/eskdx/eskdspecii.sty + RELOC/tex/latex/eskdx/eskdstamp.sty + RELOC/tex/latex/eskdx/eskdtab.cls + RELOC/tex/latex/eskdx/eskdtext.cls + RELOC/tex/latex/eskdx/eskdtitle.sty + RELOC/tex/latex/eskdx/eskdtitlebase.sty + RELOC/tex/latex/eskdx/eskdtotal.sty + RELOC/tex/latex/eskdx/eskdukrainian.def +catalogue-ctan /macros/latex/contrib/eskdx +catalogue-license lppl1.3 +catalogue-topics class russian +catalogue-version 0.98 + +name eso-pic +category Package +revision 56658 +shortdesc Add picture commands (or backgrounds) to every page +relocated 1 +longdesc The package adds one or more user commands to LaTeX's shipout +longdesc routine, which may be used to place the output at fixed +longdesc positions. The grid option may be used to find the correct +longdesc places. +containersize 3816 +containerchecksum d4020b6d7f1ed44ecfc11938d604595e48dc32a24e2e67742016fbc2022f19ab63c759ec03030d7d3a996cc00f7a08ce8cb1354d0e9234f116080d732e4dc5e8 +doccontainersize 251608 +doccontainerchecksum 96fcdb612c8473fffe672a6c443c120b2cc8dafec5b43de132cd8f758d85bb504ea14285af121921afbaafea7c6df99e32f6c50101d1d76900b1aeba38c3010a +docfiles size=69 + RELOC/doc/latex/eso-pic/README.md details="Package documentation" + RELOC/doc/latex/eso-pic/eso-article-test.tex + RELOC/doc/latex/eso-pic/eso-ex1.tex + RELOC/doc/latex/eso-pic/eso-ex2.tex + RELOC/doc/latex/eso-pic/eso-ex4.tex + RELOC/doc/latex/eso-pic/eso-ex5.tex + RELOC/doc/latex/eso-pic/eso-memoir-test.tex + RELOC/doc/latex/eso-pic/eso-pic.pdf details="Package documentation" +srccontainersize 6636 +srccontainerchecksum 86655acc2d9d11084dea3791a171b01e18715cce77b2300220764eba88d4a049a2a6bef6ff7bc1b90fdf337379be065a2d998aa32e42a0dd04b21f0293d1c14b +srcfiles size=8 + RELOC/source/latex/eso-pic/eso-pic.dtx + RELOC/source/latex/eso-pic/eso-pic.ins +runfiles size=4 + RELOC/tex/latex/eso-pic/eso-pic.sty + RELOC/tex/latex/eso-pic/showframe.sty +catalogue-contact-bugs https://github.com/rolfn/eso-pic/issues +catalogue-contact-repository https://github.com/rolfn/eso-pic +catalogue-ctan /macros/latex/contrib/eso-pic +catalogue-license lppl1.2 +catalogue-topics defer-stuff +catalogue-version 3.0a + +name esrelation +category Package +revision 37236 +shortdesc Provides a symbol set for describing relations between ordered pairs +relocated 1 +longdesc Around 2008, researcher Byron Cook and several colleagues began +longdesc developing a new set of interrelated algorithms capable of +longdesc automatically reasoning about the behavior of computer programs +longdesc and other systems (such as biological systems, circuit designs, +longdesc etc). At the center of these algorithms were new ideas about +longdesc the relationships between structures expressable as +longdesc mathematical sets and relations. Using the language of +longdesc mathematics and logic, the researchers communicated these new +longdesc results to others in their community via published papers, +longdesc research talks, etc. Unfortunately, they found the symbols +longdesc already available for reasoning about relations lacking (in +longdesc contrast to sets, which have a long-ago developed and robust +longdesc symbol vocabulary). Early presentations were unnecessarily +longdesc cluttered. To more elegantly express these ideas around +longdesc relations, Cook recruited artist Tauba Auerbach to help develop +longdesc a set of symbols. This package provides an math symbol font for +longdesc describing relations between ordered pairs by using Metafont. +execute addMap esrelation.map +containersize 33064 +containerchecksum a6d8a0a9bde08e3582826affa52142fe5b5a0dba43c4ff15f5fdd19cb24b561bcdcdd761c2a84238c9b31d3fe0a023949d2d0c716e105852443e06ced9df13f1 +doccontainersize 158904 +doccontainerchecksum 6698e9f57df458d9652ae98abbea08ce1f14c6c31677c32ab8cdf9b8fa0866a57c50028ea36d2c7cde133588358dce0b2bb37b7085995e4bab9ce7d3de1a541c +docfiles size=41 + RELOC/doc/fonts/esrelation/README details="Readme" + RELOC/doc/fonts/esrelation/README.md + RELOC/doc/fonts/esrelation/esrelation.pdf details="Package documentation" +srccontainersize 6484 +srccontainerchecksum 17b0495b4b19ca5166835549c62c9c5e1dbcb59e2252e321860dc7254b9ebc9d073f317a344a2a8a4ec772ee1a931a5181d9d3b1af45f913b0ad04ebf189bd3a +srcfiles size=7 + RELOC/source/fonts/esrelation/esrelation.dtx + RELOC/source/fonts/esrelation/esrelation.ins +runfiles size=17 + RELOC/fonts/map/dvips/esrelation/esrelation.map + RELOC/fonts/source/public/esrelation/esrelation.mf + RELOC/fonts/source/public/esrelation/esrelation10.mf + RELOC/fonts/tfm/public/esrelation/esrelation10.tfm + RELOC/fonts/type1/public/esrelation/esrelation10.pfb + RELOC/tex/latex/esrelation/esrelation.sty + RELOC/tex/latex/esrelation/uesrelation.fd +catalogue-ctan /fonts/esrelation +catalogue-license lppl1.3 +catalogue-topics font font-mf font-type1 font-maths + +name esstix +category Package +revision 22426 +shortdesc PostScript versions of the ESSTIX, with macro support +relocated 1 +longdesc These fonts represent translation to PostScript Type 1 of the +longdesc ESSTIX fonts. ESSTIX seem to have been a precursor to the STIX +longdesc project, and were donated by Elsevier to that project. The +longdesc accompanying virtual fonts with customized metrics and LaTeX +longdesc support files allow their use as calligraphic, fraktur and +longdesc double-struck (blackboard bold) in maths mode. +execute addMap ESSTIX.map +containersize 202196 +containerchecksum e503f25cb713918329f297a4ed088b63967eb06828fb753653aaf60ef99c5fb7db6507d6f0f74080b9fad2050ca1917f7ab873be2fb0bd3fcd126f29a43eb775 +doccontainersize 286216 +doccontainerchecksum 1233a284b88e5c8bfb29350b3b534e7a4c81b5692a9ac7aff5d69f77210e026dede300b511bc45efd18d6a96f6df9be2add166c80f0ee5d17c93732c0c242bf0 +docfiles size=89 + RELOC/doc/fonts/esstix/ESSTIX10.tfm + RELOC/doc/fonts/esstix/ESSTIX11.tfm + RELOC/doc/fonts/esstix/ESSTIX12.tfm + RELOC/doc/fonts/esstix/ESSTIX13.tfm + RELOC/doc/fonts/esstix/ESSTIX14.tfm + RELOC/doc/fonts/esstix/ESSTIX15.tfm + RELOC/doc/fonts/esstix/ESSTIX16.tfm + RELOC/doc/fonts/esstix/ESSTIX17.tfm + RELOC/doc/fonts/esstix/ESSTIX1_.tfm + RELOC/doc/fonts/esstix/ESSTIX2_.tfm + RELOC/doc/fonts/esstix/ESSTIX3_.tfm + RELOC/doc/fonts/esstix/ESSTIX4_.tfm + RELOC/doc/fonts/esstix/ESSTIX5_.tfm + RELOC/doc/fonts/esstix/ESSTIX6_.tfm + RELOC/doc/fonts/esstix/ESSTIX7_.tfm + RELOC/doc/fonts/esstix/ESSTIX8_.tfm + RELOC/doc/fonts/esstix/ESSTIX9_.tfm + RELOC/doc/fonts/esstix/Esstix.pdf details="Package documentation" + RELOC/doc/fonts/esstix/Esstix.tex + RELOC/doc/fonts/esstix/README details="Readme" + RELOC/doc/fonts/esstix/esstixOther.map +runfiles size=117 + RELOC/fonts/afm/esstix/ESSTIX10.PFM + RELOC/fonts/afm/esstix/ESSTIX10.afm + RELOC/fonts/afm/esstix/ESSTIX11.PFM + RELOC/fonts/afm/esstix/ESSTIX11.afm + RELOC/fonts/afm/esstix/ESSTIX12.PFM + RELOC/fonts/afm/esstix/ESSTIX12.afm + RELOC/fonts/afm/esstix/ESSTIX13.PFM + RELOC/fonts/afm/esstix/ESSTIX13.afm + RELOC/fonts/afm/esstix/ESSTIX14.PFM + RELOC/fonts/afm/esstix/ESSTIX14.afm + RELOC/fonts/afm/esstix/ESSTIX15.PFM + RELOC/fonts/afm/esstix/ESSTIX15.afm + RELOC/fonts/afm/esstix/ESSTIX16.PFM + RELOC/fonts/afm/esstix/ESSTIX16.afm + RELOC/fonts/afm/esstix/ESSTIX17.PFM + RELOC/fonts/afm/esstix/ESSTIX17.afm + RELOC/fonts/afm/esstix/ESSTIX1_.PFM + RELOC/fonts/afm/esstix/ESSTIX1_.afm + RELOC/fonts/afm/esstix/ESSTIX2_.PFM + RELOC/fonts/afm/esstix/ESSTIX2_.afm + RELOC/fonts/afm/esstix/ESSTIX3_.PFM + RELOC/fonts/afm/esstix/ESSTIX3_.afm + RELOC/fonts/afm/esstix/ESSTIX4_.PFM + RELOC/fonts/afm/esstix/ESSTIX4_.afm + RELOC/fonts/afm/esstix/ESSTIX5_.PFM + RELOC/fonts/afm/esstix/ESSTIX5_.afm + RELOC/fonts/afm/esstix/ESSTIX6_.PFM + RELOC/fonts/afm/esstix/ESSTIX6_.afm + RELOC/fonts/afm/esstix/ESSTIX7_.PFM + RELOC/fonts/afm/esstix/ESSTIX7_.afm + RELOC/fonts/afm/esstix/ESSTIX8_.PFM + RELOC/fonts/afm/esstix/ESSTIX8_.afm + RELOC/fonts/afm/esstix/ESSTIX9_.PFM + RELOC/fonts/afm/esstix/ESSTIX9_.afm + RELOC/fonts/map/dvips/esstix/ESSTIX.map + RELOC/fonts/tfm/public/esstix/esstixbb.tfm + RELOC/fonts/tfm/public/esstix/esstixcal.tfm + RELOC/fonts/tfm/public/esstix/esstixfrak.tfm + RELOC/fonts/tfm/public/esstix/rESSTIX13.tfm + RELOC/fonts/tfm/public/esstix/rESSTIX14.tfm + RELOC/fonts/tfm/public/esstix/rESSTIX15.tfm + RELOC/fonts/type1/public/esstix/ESSTIX10.pfb + RELOC/fonts/type1/public/esstix/ESSTIX11.pfb + RELOC/fonts/type1/public/esstix/ESSTIX12.pfb + RELOC/fonts/type1/public/esstix/ESSTIX13.pfb + RELOC/fonts/type1/public/esstix/ESSTIX14.pfb + RELOC/fonts/type1/public/esstix/ESSTIX15.pfb + RELOC/fonts/type1/public/esstix/ESSTIX16.pfb + RELOC/fonts/type1/public/esstix/ESSTIX17.pfb + RELOC/fonts/type1/public/esstix/ESSTIX1_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX2_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX3_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX4_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX5_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX6_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX7_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX8_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX9_.pfb + RELOC/fonts/vf/public/esstix/esstixbb.vf + RELOC/fonts/vf/public/esstix/esstixcal.vf + RELOC/fonts/vf/public/esstix/esstixfrak.vf + RELOC/tex/latex/esstix/esstixbb.sty + RELOC/tex/latex/esstix/esstixcal.sty + RELOC/tex/latex/esstix/esstixfrak.sty + RELOC/tex/latex/esstix/uesstixbb.fd + RELOC/tex/latex/esstix/uesstixcal.fd + RELOC/tex/latex/esstix/uesstixfrak.fd +catalogue-ctan /fonts/esstix +catalogue-license ofl +catalogue-topics font font-maths font-bbd font-type1 +catalogue-version 1.0 + +name estcpmm +category Package +revision 17335 +shortdesc Style for Munitions Management Project Reports +relocated 1 +longdesc Provides a class which supports typesetting Cost and +longdesc Performance Reports and Final Reports for Munitions Management +longdesc Reports, US Environmental Security Technology Certification +longdesc Program. The class was commissioned and paid for by US Army +longdesc Corps of Engineers, Engineer Research and Development Center, +longdesc 3909 Halls Ferry Road, Vicksburg, MS 39180-6199. +containersize 3128 +containerchecksum 20213ddd795e862dc924ddd71df08752f6adda4be7a06237507cec84abf6a6ccd664fa9676cb9b275ca9de8647011da0bc731fef9344945404f885b56b75aea1 +doccontainersize 284904 +doccontainerchecksum c240305f2ad7a841c1d9309d1934001fc42d68819505b5c862ca8c97c5ecd7b6d2fd8a79a4273be79126d1503d968fa4649ad06e0c001f3b731e300341802dfd +docfiles size=227 + RELOC/doc/latex/estcpmm/README + RELOC/doc/latex/estcpmm/estcp.pdf + RELOC/doc/latex/estcpmm/estcpmm.bib + RELOC/doc/latex/estcpmm/estcpmm.pdf details="Package documentation" + RELOC/doc/latex/estcpmm/red_corps_castle2.pdf + RELOC/doc/latex/estcpmm/sample.pdf + RELOC/doc/latex/estcpmm/sample.tex +srccontainersize 8856 +srccontainerchecksum f867a24f4bde53c0de195874f1717fe49a3869755834ba1dd0a9004e3085f06076eefaca2e83c59cdf5cdf65fa740d0df898e0ee75f88a5cb516a3cfa404c164 +srcfiles size=9 + RELOC/source/latex/estcpmm/Makefile + RELOC/source/latex/estcpmm/estcpmm.dtx + RELOC/source/latex/estcpmm/estcpmm.ins +runfiles size=2 + RELOC/tex/latex/estcpmm/estcpmm.cls +catalogue-ctan /macros/latex/contrib/estcpmm +catalogue-license lppl +catalogue-topics report-like class +catalogue-version 0.4 + +name esvect +category Package +revision 32098 +shortdesc Vector arrows +relocated 1 +longdesc Write vectors using an arrow which differs from the Computer +longdesc Modern one. You have the choice between several kinds of +longdesc arrows. The package consists of the relevant Metafont code and +longdesc a package to use it. +execute addMap esvect.map +containersize 66880 +containerchecksum 1a6940862940d8ca29bcb19c69817b84a7f71f7a8762d3a63829fb0e0e88eccd940f3e2973d8d05dbe9323aa1f80dc9045b531e3509239eab399f02a55e7988c +doccontainersize 44300 +doccontainerchecksum 502d2cce629280d7c192ad11764c0c12e65f9f1318286d1acdc3e08c9d7d36b07fc3e5939c053aa57ad59ee91e73b4035c9bd1aafee3672ddeed4a64bf3cd7ad +docfiles size=13 + RELOC/doc/latex/esvect/README details="Readme" + RELOC/doc/latex/esvect/esvect.pdf details="Package documentation" +srccontainersize 6748 +srccontainerchecksum 658e98e4c97dfdfcb34b396ff644fda060a645d15760bd975ad1397ca73f4ed24331a77bfd914bfe6f8f218aec9ab3fcc0a2a48efc19a0c6adc1024943584a47 +srcfiles size=15 + RELOC/source/latex/esvect/esvect.dtx + RELOC/source/latex/esvect/esvect.ins +runfiles size=58 + RELOC/fonts/map/dvips/esvect/esvect.map + RELOC/fonts/source/public/esvect/mathvec.mf + RELOC/fonts/source/public/esvect/vecsym.mf + RELOC/fonts/source/public/esvect/vect10.mf + RELOC/fonts/source/public/esvect/vect5.mf + RELOC/fonts/source/public/esvect/vect6.mf + RELOC/fonts/source/public/esvect/vect7.mf + RELOC/fonts/source/public/esvect/vect8.mf + RELOC/fonts/source/public/esvect/vect9.mf + RELOC/fonts/source/public/esvect/vsymbol.mf + RELOC/fonts/tfm/public/esvect/vect10.tfm + RELOC/fonts/tfm/public/esvect/vect5.tfm + RELOC/fonts/tfm/public/esvect/vect6.tfm + RELOC/fonts/tfm/public/esvect/vect7.tfm + RELOC/fonts/tfm/public/esvect/vect8.tfm + RELOC/fonts/tfm/public/esvect/vect9.tfm + RELOC/fonts/type1/public/esvect/vect10.pfb + RELOC/fonts/type1/public/esvect/vect5.pfb + RELOC/fonts/type1/public/esvect/vect6.pfb + RELOC/fonts/type1/public/esvect/vect7.pfb + RELOC/fonts/type1/public/esvect/vect8.pfb + RELOC/fonts/type1/public/esvect/vect9.pfb + RELOC/tex/latex/esvect/esvect.sty + RELOC/tex/latex/esvect/uesvect.fd +catalogue-ctan /macros/latex/contrib/esvect +catalogue-license gpl +catalogue-topics font font-symbol font-mf +catalogue-version 1.3 + +name etaremune +category Package +revision 15878 +shortdesc Reverse-counting enumerate environment +relocated 1 +longdesc The package implements the etaremune environment which is an +longdesc enumerate environment in which the labels decrease instead of +longdesc increasing. The package is noticeably more efficient than the +longdesc revnum package, which uses painfully many counters. +containersize 1816 +containerchecksum 511f84d8cb951caaea65cbe839fe83c9c2dcd7dbe0e0c3db3611d914dea475b60de029d4dbe482616e9d219929c50b2a87f6c33451d0d880e3b368fbc9f7f612 +doccontainersize 72980 +doccontainerchecksum 4d7728be13e1454b2456e543ffb89a19fc5204e8025f949dcda7ce3b8a8b898dd9a6d96e44477cd158baad4d462afbcc17b6df6ddd9982232891e7b4ccb112b7 +docfiles size=22 + RELOC/doc/latex/etaremune/README details="Readme" + RELOC/doc/latex/etaremune/etaremune.pdf details="Package documentation" +srccontainersize 6716 +srccontainerchecksum 17c0b9d705cd5ea494428bbfacf73d12f0f40d5eb4be2a3b1a4e2aeb97af61d184ae6a471505d6dd604174cdf34976f9e64de5366be7877da26141720f542953 +srcfiles size=5 + RELOC/source/latex/etaremune/etaremune.dtx +runfiles size=1 + RELOC/tex/latex/etaremune/etaremune.sty +catalogue-also revnum +catalogue-ctan /macros/latex/contrib/etaremune +catalogue-license lppl +catalogue-topics list list-enum +catalogue-version 1.2 + +name etbb +category Package +revision 56390 +shortdesc An expansion of Edward Tufte's ET-Bembo family +relocated 1 +longdesc Based on Daniel Benjamin Miller's XETBook, which expanded +longdesc Tufte's ETBook, the family name for the Bembo-like font family +longdesc he commissioned for his books, ETbb expands its features to +longdesc include a full set of figure styles, small caps in all styles, +longdesc superior letters and figures, inferior figures, a new capital +longdesc Sharp S with small caps version, along with macros to activate +longdesc these features in LaTeX. Both otf and pfb are provided. +execute addMap ETbb.map +containersize 977996 +containerchecksum f21ea49a1404b8a495477d5b4ef440b6f2a363af50e6e93ff1f7ed4c36c88a133aa586ddb409b38a74a1ad7c181d785ce4491d259f5249000fd2cec2e5e73866 +doccontainersize 223292 +doccontainerchecksum 8527190d3f646d76833dd91b9610ca3051f499552f23b06ec88b4601c0b86ba5d9611520bfea49283451911a379b3b415ac5bfc6ac7703a4fa51b86356719f00 +docfiles size=62 + RELOC/doc/fonts/etbb/ETbb-doc.pdf details="Font samples" + RELOC/doc/fonts/etbb/ETbb-doc.tex + RELOC/doc/fonts/etbb/LICENSE + RELOC/doc/fonts/etbb/README details="Readme" +runfiles size=2416 + RELOC/fonts/afm/public/etbb/ETbb-Bold.afm + RELOC/fonts/afm/public/etbb/ETbb-BoldItalic.afm + RELOC/fonts/afm/public/etbb/ETbb-Italic.afm + RELOC/fonts/afm/public/etbb/ETbb-Regular.afm + RELOC/fonts/enc/dvips/etbb/etbb1_2wngtz.enc + RELOC/fonts/enc/dvips/etbb/etbb1_3ccbvp.enc + RELOC/fonts/enc/dvips/etbb/etbb1_5325we.enc + RELOC/fonts/enc/dvips/etbb/etbb1_77pqsh.enc + RELOC/fonts/enc/dvips/etbb/etbb1_eqc2ac.enc + RELOC/fonts/enc/dvips/etbb/etbb1_hah5or.enc + RELOC/fonts/enc/dvips/etbb/etbb1_hibu6u.enc + RELOC/fonts/enc/dvips/etbb/etbb1_mgm6re.enc + RELOC/fonts/enc/dvips/etbb/etbb1_pvrda3.enc + RELOC/fonts/enc/dvips/etbb/etbb1_rwec2l.enc + RELOC/fonts/enc/dvips/etbb/etbb1_sp7p3o.enc + RELOC/fonts/enc/dvips/etbb/etbb1_vtabip.enc + RELOC/fonts/enc/dvips/etbb/etbb1_w52zjg.enc + RELOC/fonts/enc/dvips/etbb/etbb1_x5rskw.enc + RELOC/fonts/enc/dvips/etbb/etbb1_xaqh3v.enc + RELOC/fonts/enc/dvips/etbb/etbb1_yziesh.enc + RELOC/fonts/enc/dvips/etbb/etbb1_zxy3n5.enc + RELOC/fonts/enc/dvips/etbb/etbb_22apno.enc + RELOC/fonts/enc/dvips/etbb/etbb_242knm.enc + RELOC/fonts/enc/dvips/etbb/etbb_2wngtz.enc + RELOC/fonts/enc/dvips/etbb/etbb_33mftd.enc + RELOC/fonts/enc/dvips/etbb/etbb_3ccbvp.enc + RELOC/fonts/enc/dvips/etbb/etbb_3jmjat.enc + RELOC/fonts/enc/dvips/etbb/etbb_3li7dq.enc + RELOC/fonts/enc/dvips/etbb/etbb_3pfdgz.enc + RELOC/fonts/enc/dvips/etbb/etbb_4hpi45.enc + RELOC/fonts/enc/dvips/etbb/etbb_4qfaj2.enc + RELOC/fonts/enc/dvips/etbb/etbb_4sxvu4.enc + RELOC/fonts/enc/dvips/etbb/etbb_4x2qhb.enc + RELOC/fonts/enc/dvips/etbb/etbb_5325we.enc + RELOC/fonts/enc/dvips/etbb/etbb_5cjnk5.enc + RELOC/fonts/enc/dvips/etbb/etbb_5iollt.enc + RELOC/fonts/enc/dvips/etbb/etbb_6tax72.enc + RELOC/fonts/enc/dvips/etbb/etbb_77pqsh.enc + RELOC/fonts/enc/dvips/etbb/etbb_7pzsmk.enc + RELOC/fonts/enc/dvips/etbb/etbb_7t4ywj.enc + RELOC/fonts/enc/dvips/etbb/etbb_atf2m5.enc + RELOC/fonts/enc/dvips/etbb/etbb_ay4ati.enc + RELOC/fonts/enc/dvips/etbb/etbb_behrx3.enc + RELOC/fonts/enc/dvips/etbb/etbb_bowihu.enc + RELOC/fonts/enc/dvips/etbb/etbb_c6gjhm.enc + RELOC/fonts/enc/dvips/etbb/etbb_chsevo.enc + RELOC/fonts/enc/dvips/etbb/etbb_cluc7m.enc + RELOC/fonts/enc/dvips/etbb/etbb_cpb6sd.enc + RELOC/fonts/enc/dvips/etbb/etbb_cpdyi3.enc + RELOC/fonts/enc/dvips/etbb/etbb_cpixk3.enc + RELOC/fonts/enc/dvips/etbb/etbb_cq6xx2.enc + RELOC/fonts/enc/dvips/etbb/etbb_cuqhrj.enc + RELOC/fonts/enc/dvips/etbb/etbb_cxbogn.enc + RELOC/fonts/enc/dvips/etbb/etbb_cyyszv.enc + RELOC/fonts/enc/dvips/etbb/etbb_dcps7k.enc + RELOC/fonts/enc/dvips/etbb/etbb_dep6cd.enc + RELOC/fonts/enc/dvips/etbb/etbb_dz2qg3.enc + RELOC/fonts/enc/dvips/etbb/etbb_e3m4fz.enc + RELOC/fonts/enc/dvips/etbb/etbb_ea2dgh.enc + RELOC/fonts/enc/dvips/etbb/etbb_elsw3h.enc + RELOC/fonts/enc/dvips/etbb/etbb_eqc2ac.enc + RELOC/fonts/enc/dvips/etbb/etbb_f55msl.enc + RELOC/fonts/enc/dvips/etbb/etbb_f7n52p.enc + RELOC/fonts/enc/dvips/etbb/etbb_f7rui7.enc + RELOC/fonts/enc/dvips/etbb/etbb_fpvlkw.enc + RELOC/fonts/enc/dvips/etbb/etbb_ftphfy.enc + RELOC/fonts/enc/dvips/etbb/etbb_fue2l2.enc + RELOC/fonts/enc/dvips/etbb/etbb_fwcdph.enc + RELOC/fonts/enc/dvips/etbb/etbb_gkmjhd.enc + RELOC/fonts/enc/dvips/etbb/etbb_gtayjy.enc + RELOC/fonts/enc/dvips/etbb/etbb_gtqfg2.enc + RELOC/fonts/enc/dvips/etbb/etbb_h4dyum.enc + RELOC/fonts/enc/dvips/etbb/etbb_hah5or.enc + RELOC/fonts/enc/dvips/etbb/etbb_hcre2c.enc + RELOC/fonts/enc/dvips/etbb/etbb_hibu6u.enc + RELOC/fonts/enc/dvips/etbb/etbb_i5ezvi.enc + RELOC/fonts/enc/dvips/etbb/etbb_ihmnlr.enc + RELOC/fonts/enc/dvips/etbb/etbb_imedjx.enc + RELOC/fonts/enc/dvips/etbb/etbb_j7myeh.enc + RELOC/fonts/enc/dvips/etbb/etbb_kkjcws.enc + RELOC/fonts/enc/dvips/etbb/etbb_ko4aue.enc + RELOC/fonts/enc/dvips/etbb/etbb_kuig7z.enc + RELOC/fonts/enc/dvips/etbb/etbb_kvzzr3.enc + RELOC/fonts/enc/dvips/etbb/etbb_lchj55.enc + RELOC/fonts/enc/dvips/etbb/etbb_lfrz6w.enc + RELOC/fonts/enc/dvips/etbb/etbb_lolxkk.enc + RELOC/fonts/enc/dvips/etbb/etbb_m5kdwt.enc + RELOC/fonts/enc/dvips/etbb/etbb_mgm6re.enc + RELOC/fonts/enc/dvips/etbb/etbb_mpvq56.enc + RELOC/fonts/enc/dvips/etbb/etbb_na6tk5.enc + RELOC/fonts/enc/dvips/etbb/etbb_nfh2ow.enc + RELOC/fonts/enc/dvips/etbb/etbb_nnawaw.enc + RELOC/fonts/enc/dvips/etbb/etbb_ohc25e.enc + RELOC/fonts/enc/dvips/etbb/etbb_ohvjcv.enc + RELOC/fonts/enc/dvips/etbb/etbb_oynaqb.enc + RELOC/fonts/enc/dvips/etbb/etbb_p4wmli.enc + RELOC/fonts/enc/dvips/etbb/etbb_pijcl4.enc + RELOC/fonts/enc/dvips/etbb/etbb_pvrda3.enc + RELOC/fonts/enc/dvips/etbb/etbb_qmwyqz.enc + RELOC/fonts/enc/dvips/etbb/etbb_qqjyre.enc + RELOC/fonts/enc/dvips/etbb/etbb_r34xpu.enc + RELOC/fonts/enc/dvips/etbb/etbb_riohwx.enc + RELOC/fonts/enc/dvips/etbb/etbb_rt4kro.enc + RELOC/fonts/enc/dvips/etbb/etbb_rwec2l.enc + RELOC/fonts/enc/dvips/etbb/etbb_rzlqzq.enc + RELOC/fonts/enc/dvips/etbb/etbb_s2dnn6.enc + RELOC/fonts/enc/dvips/etbb/etbb_sk3nrp.enc + RELOC/fonts/enc/dvips/etbb/etbb_skushq.enc + RELOC/fonts/enc/dvips/etbb/etbb_sp7p3o.enc + RELOC/fonts/enc/dvips/etbb/etbb_sz3fgd.enc + RELOC/fonts/enc/dvips/etbb/etbb_tbmtgo.enc + RELOC/fonts/enc/dvips/etbb/etbb_tif2yn.enc + RELOC/fonts/enc/dvips/etbb/etbb_ujmsnd.enc + RELOC/fonts/enc/dvips/etbb/etbb_un2f5f.enc + RELOC/fonts/enc/dvips/etbb/etbb_uoncjt.enc + RELOC/fonts/enc/dvips/etbb/etbb_v2eodf.enc + RELOC/fonts/enc/dvips/etbb/etbb_v6nho7.enc + RELOC/fonts/enc/dvips/etbb/etbb_vmkycp.enc + RELOC/fonts/enc/dvips/etbb/etbb_vtabip.enc + RELOC/fonts/enc/dvips/etbb/etbb_w52zjg.enc + RELOC/fonts/enc/dvips/etbb/etbb_whnzkz.enc + RELOC/fonts/enc/dvips/etbb/etbb_wplash.enc + RELOC/fonts/enc/dvips/etbb/etbb_x5rskw.enc + RELOC/fonts/enc/dvips/etbb/etbb_xaqh3v.enc + RELOC/fonts/enc/dvips/etbb/etbb_xdptht.enc + RELOC/fonts/enc/dvips/etbb/etbb_xe5wuh.enc + RELOC/fonts/enc/dvips/etbb/etbb_xmn5et.enc + RELOC/fonts/enc/dvips/etbb/etbb_ybjyd4.enc + RELOC/fonts/enc/dvips/etbb/etbb_ydcfbc.enc + RELOC/fonts/enc/dvips/etbb/etbb_yhvmm4.enc + RELOC/fonts/enc/dvips/etbb/etbb_yiqwpu.enc + RELOC/fonts/enc/dvips/etbb/etbb_yjlloh.enc + RELOC/fonts/enc/dvips/etbb/etbb_ytzykv.enc + RELOC/fonts/enc/dvips/etbb/etbb_yziesh.enc + RELOC/fonts/enc/dvips/etbb/etbb_yzoycr.enc + RELOC/fonts/enc/dvips/etbb/etbb_yzujze.enc + RELOC/fonts/enc/dvips/etbb/etbb_z6brcn.enc + RELOC/fonts/enc/dvips/etbb/etbb_zpkt7y.enc + RELOC/fonts/enc/dvips/etbb/etbb_zxy3n5.enc + RELOC/fonts/map/dvips/etbb/ETbb.map + RELOC/fonts/opentype/public/etbb/ETbb-Bold.otf + RELOC/fonts/opentype/public/etbb/ETbb-BoldItalic.otf + RELOC/fonts/opentype/public/etbb/ETbb-Italic.otf + RELOC/fonts/opentype/public/etbb/ETbb-Regular.otf + RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/etbb/Etbb1-Regular-tosf-t1.tfm + RELOC/fonts/type1/public/etbb/ETbb-Bold.pfb + RELOC/fonts/type1/public/etbb/ETbb-BoldItalic.pfb + RELOC/fonts/type1/public/etbb/ETbb-Italic.pfb + RELOC/fonts/type1/public/etbb/ETbb-Regular.pfb + RELOC/fonts/vf/public/etbb/ETbb-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-dnom-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-inf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-inf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-sup-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-sup-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-dnom-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-inf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-inf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-sup-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-sup-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-dnom-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-inf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-inf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-lf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-osf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-sup-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-sup-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-t1.vf + RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-dnom-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-lf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-osf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-tlf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Bold-tosf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-dnom-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-lf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-osf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-tlf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Italic-tosf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-dnom-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-lf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-osf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-tlf-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/etbb/Etbb1-Regular-tosf-t1.vf + RELOC/tex/latex/etbb/ETbb.fontspec + RELOC/tex/latex/etbb/ETbb.sty + RELOC/tex/latex/etbb/LY1ETbb-Dnom.fd + RELOC/tex/latex/etbb/LY1ETbb-Inf.fd + RELOC/tex/latex/etbb/LY1ETbb-LF.fd + RELOC/tex/latex/etbb/LY1ETbb-OsF.fd + RELOC/tex/latex/etbb/LY1ETbb-Sup.fd + RELOC/tex/latex/etbb/LY1ETbb-TLF.fd + RELOC/tex/latex/etbb/LY1ETbb-TOsF.fd + RELOC/tex/latex/etbb/OT1ETbb-Dnom.fd + RELOC/tex/latex/etbb/OT1ETbb-Inf.fd + RELOC/tex/latex/etbb/OT1ETbb-LF.fd + RELOC/tex/latex/etbb/OT1ETbb-OsF.fd + RELOC/tex/latex/etbb/OT1ETbb-Sup.fd + RELOC/tex/latex/etbb/OT1ETbb-TLF.fd + RELOC/tex/latex/etbb/OT1ETbb-TOsF.fd + RELOC/tex/latex/etbb/T1ETbb-Dnom.fd + RELOC/tex/latex/etbb/T1ETbb-Inf.fd + RELOC/tex/latex/etbb/T1ETbb-LF.fd + RELOC/tex/latex/etbb/T1ETbb-OsF.fd + RELOC/tex/latex/etbb/T1ETbb-Sup.fd + RELOC/tex/latex/etbb/T1ETbb-TLF.fd + RELOC/tex/latex/etbb/T1ETbb-TOsF.fd + RELOC/tex/latex/etbb/TS1ETbb-LF.fd + RELOC/tex/latex/etbb/TS1ETbb-OsF.fd + RELOC/tex/latex/etbb/TS1ETbb-TLF.fd + RELOC/tex/latex/etbb/TS1ETbb-TOsF.fd +catalogue-ctan /fonts/etbb +catalogue-license mit lppl1.3 +catalogue-topics font font-body font-proportional font-type1 font-otf font-serif font-supp font-t1enc +catalogue-version 1.051 + +name etdipa +category Package +revision 36354 +shortdesc Simple, lightweight template for scientific documents +relocated 1 +longdesc This package provides a complete working directory for the +longdesc scientific documentation of arbitrary projects. It was +longdesc originally developed to provide a template for Austrian +longdesc "Diplomarbeiten" or "Vorwissenschaftliche Arbeiten", which are +longdesc scientfic projects of students at a secondary school. +containersize 556 +containerchecksum 88502eeb78f2f5901cdfc192638501690aea861de2105445de226261c62f526d6602ab5c63f02974d067e229b12441ee6663b54769236a1e0e125896b869301d +doccontainersize 1019908 +doccontainerchecksum 6aa2ecdb393932a485857222e66471b9c52388e726edffd0b4357e340e8a5092af96ad1847486a58d6a8485a4ce0e80e25e80ad58f60991004136739d26aa996 +docfiles size=499 + RELOC/doc/latex/etdipa/Data/folder_description.txt + RELOC/doc/latex/etdipa/Help/etdipa_doc_DE.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/etdipa/Help/etdipa_doc_DE.tex + RELOC/doc/latex/etdipa/Help/etdipa_doc_EN.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/etdipa/Help/etdipa_doc_EN.tex + RELOC/doc/latex/etdipa/Help/files.txt + RELOC/doc/latex/etdipa/Images/ET_logo.jpg + RELOC/doc/latex/etdipa/Images/HTL-Allgemein.jpg + RELOC/doc/latex/etdipa/Images/HTL.png + RELOC/doc/latex/etdipa/Images/Ordnerstruktur.pdf + RELOC/doc/latex/etdipa/Images/bild.pdf + RELOC/doc/latex/etdipa/Images/diplomand_erklaerung.pdf + RELOC/doc/latex/etdipa/Images/subordner.pdf + RELOC/doc/latex/etdipa/Images/titlepic.pdf + RELOC/doc/latex/etdipa/README details="Readme" + RELOC/doc/latex/etdipa/Textparts/abkuerzungen.tex + RELOC/doc/latex/etdipa/Textparts/abstract.tex + RELOC/doc/latex/etdipa/Textparts/danksagungen.tex + RELOC/doc/latex/etdipa/Textparts/diplomanden.tex + RELOC/doc/latex/etdipa/Textparts/literatur.tex + RELOC/doc/latex/etdipa/Textparts/zusammenfassung.tex + RELOC/doc/latex/etdipa/diplomarbeit.tex + RELOC/doc/latex/etdipa/etdipa.sty +catalogue-ctan /macros/latex/contrib/etdipa +catalogue-license lppl1.3 +catalogue-topics scientific-docs +catalogue-version 2.6 + +name etex +category Package +revision 56291 +shortdesc An extended version of TeX, from the NTS project +relocated 1 +longdesc An extended version of TeX (which is capable of running as if +longdesc it were TeX unmodified). E-TeX has been specified by the LaTeX +longdesc team as the engine for the development of LaTeX2e, in the +longdesc immediate future; as a result, LaTeX programmers may (in all +longdesc current TeX distributions) assume e-TeX functionality. The +longdesc pdftex engine directly incorporates the e-TeX extensions. The +longdesc development source for e-TeX is the TeX Live source repository. +containersize 11504 +containerchecksum 662338c145e84577ee49bd7d1941ade688d07ab8382faec25d6f45891953554e85ab4d531164e58db97071a7950c31b36f9eec8700ad4b43dffef30217f0fd89 +doccontainersize 189808 +doccontainerchecksum d7c7cb6c0a8c2056be906761c7f0173c7ec28aa4e910d9546aa75aea79f8a2aedef06d708710135d3f557586990fefd73086b4f11b8b7642a1cbaedde91b1b8b +docfiles size=129 + RELOC/doc/etex/base/NTS-FAQ + RELOC/doc/etex/base/etex_gen.tex + RELOC/doc/etex/base/etex_man.pdf details="System documentation (v2.0)" + RELOC/doc/etex/base/etex_man.sty + RELOC/doc/etex/base/etex_man.tex + RELOC/doc/etex/base/etex_ref.html + RELOC/doc/etex/base/etex_src.html + RELOC/doc/etex/base/legal.html + RELOC/doc/etex/base/nts-group.html + RELOC/doc/etex/base/webmerge.tex + RELOC/doc/man/man1/etex.1 + RELOC/doc/man/man1/etex.man1.pdf +runfiles size=11 + RELOC/fonts/source/public/etex/xbmc10.mf + RELOC/fonts/tfm/public/etex/xbmc10.tfm + RELOC/tex/plain/etex/etex.src + RELOC/tex/plain/etex/etexdefs.lib +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/etexdir +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-license knuth +catalogue-topics engine + +name etex-pkg +category Package +revision 41784 +shortdesc E-TeX support package +relocated 1 +longdesc The package provides support for LaTeX documents to use many of +longdesc the extensions offered by e-TeX; in particular, it modifies +longdesc LaTeX's register allocation macros to make use of the extended +longdesc register range. The etextools package provides macros that make +longdesc more sophisticated use of e-TeX's facilities. +containersize 6052 +containerchecksum e2afebc530bdab4d5384170dd807d6e39c96d5a18af0defa534106103243b0e52d926e09f3ba62378452ef643bfa8f0e4d92a3c0256847c91e561707410052f4 +doccontainersize 608 +doccontainerchecksum 2ef9984629ffdafdc799041127e31360c8eee80726d8c410130d61f12de306e7b4c2cc892e8012029827e8ed470f9191eebcf758830cd34b8d01593ff78cef1d +docfiles size=1 + RELOC/doc/latex/etex-pkg/README details="Readme" +runfiles size=5 + RELOC/tex/latex/etex-pkg/etex.sty +catalogue-also elocalloc +catalogue-contact-repository https://github.com/davidcarlisle/dpctex/tree/master/etex-pkg +catalogue-ctan /macros/latex/contrib/etex-pkg +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 2.7 + +name etexcmds +category Package +revision 53171 +shortdesc Avoid name clashes with e-TeX commands +relocated 1 +longdesc New primitive commands are introduced in e-TeX; sometimes the +longdesc names collide with existing macros. This package solves the +longdesc name clashes by adding a prefix to e-TeX's commands. For +longdesc example, eTeX's \unexpanded is provided as \etex@unexpanded. +containersize 2448 +containerchecksum b0be75d3c8eb92407f21111e6c9d397ab5de39b96b99403a149a9554eff523e99cdacc9c1c37ef47cd190487511c6fc6b7c91b617e889eac1d6d8b6aa61c0c6b +doccontainersize 300584 +doccontainerchecksum 841ff47f9cefecefb241cb81602b825c07d4d0eaf143343eb9bf6c35ca66194c98f851e4aa27a369d60927fe96968bf7a1c1d8dfc7bb5be092e77330ad8ac6f2 +docfiles size=75 + RELOC/doc/latex/etexcmds/README.md + RELOC/doc/latex/etexcmds/etexcmds.pdf details="Package documentation" +srccontainersize 5440 +srccontainerchecksum 057bd48b4c4455f3641c961b6337127c6f84c72dd89615197c095b13846599f1fd8016ffb7fe22be820f16f7b012ee0991d8e959e59a3393694239c1abd610e7 +srcfiles size=5 + RELOC/source/latex/etexcmds/etexcmds.dtx +runfiles size=2 + RELOC/tex/generic/etexcmds/etexcmds.sty +catalogue-contact-bugs https://github.com/ho-tex/etexcmds/issues +catalogue-contact-repository https://github.com/ho-tex/etexcmds +catalogue-ctan /macros/latex/contrib/etexcmds +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.7 + +name etextools +category Package +revision 20694 +shortdesc e-TeX tools for LaTeX users and package writers +relocated 1 +longdesc The package provides many (purely expandable) tools for LaTeX: +longdesc Extensive list management (csv lists, lists of single +longdesc tokens/characters, etoolbox lists); purely expandable loops +longdesc (csvloop, forcsvloop, etc.); conversion (csvtolist, etc.)); +longdesc addition/deletion (csvadd, listdel, etc.); Expansion and group +longdesc control: \expandnext, \ExpandAfterCmds, \AfterGroup...; Tests +longdesc on tokens, characters and control sequences (\iffirstchar, +longdesc \ifiscs, \ifdefcount, \@ifchar...); Tests on strings +longdesc (\ifstrnum, \ifuppercase, \DeclareStringFilter...); Purely +longdesc expandable macros with options (\FE@testopt, \FE@ifstar) or +longdesc modifiers (\FE@modifiers); Some purely expandable numerics +longdesc (\interval, \locinterplin). The package is dependent on the +longdesc etex and the etoolbox packages. +containersize 11492 +containerchecksum ed7e514441de2fd296c372d9c56dd71ebd5318bd67eb4611c4bf784b16b045a08338ca4456899739dc023e5bc4695a6fd1784e592e542cac6a0564a68307a983 +doccontainersize 928644 +doccontainerchecksum 5a8d722f9e2e59d483c7421909b4a0f8719b0de81f2b8b95801f905d478624eb4df936f193eb3e4ad1e3f0c2d844c7672a5e2ab1c0ff0654ed88c66bee4802ef +docfiles size=308 + RELOC/doc/latex/etextools/README details="Readme" + RELOC/doc/latex/etextools/etextools-examples.pdf + RELOC/doc/latex/etextools/etextools-examples.tex + RELOC/doc/latex/etextools/etextools.pdf details="Package documentation" +srccontainersize 54816 +srccontainerchecksum a2535e9648828eee76f6fe48d7c85ab4211c2c107bc91f72a944f8a9eae384205ef371459fe2df743712039eb745e48dfbcfc42cd39b7d5391263711ba027862 +srcfiles size=63 + RELOC/source/latex/etextools/etextools.drv + RELOC/source/latex/etextools/etextools.dtx + RELOC/source/latex/etextools/etextools.ins +runfiles size=14 + RELOC/tex/latex/etextools/etextools.sty +catalogue-also etoolbox +catalogue-ctan /macros/latex/contrib/etextools +catalogue-license lppl +catalogue-topics macro-supp csv-support +catalogue-version 3.1415926 + +name ethiop +category Package +revision 15878 +shortdesc LaTeX macros and fonts for typesetting Amharic +relocated 1 +longdesc Ethiopian language support for the babel package, including a +longdesc collection of fonts and TeX macros for typesetting the +longdesc characters of the languages of Ethiopia, with Metafont fonts +longdesc based on EthTeX's. The macros use the Babel framework. +containersize 60600 +containerchecksum ad9da81e2a9af7f93c3a9677a72b80335562677d552511463c20b73df25adb0a6765463273306486e295b8c5994af03fa1df8f1e70cc48ed7df44698637f8459 +doccontainersize 445324 +doccontainerchecksum 13e9149433cee0c44d8eddbcc6f738cf113581e4890a8728aff08a6f3f26a62617e1770b4875668dcd75a3714925db9cf5c5d9fb58a9870292bc0d22005c844a +docfiles size=133 + RELOC/doc/latex/ethiop/MANIFEST + RELOC/doc/latex/ethiop/README details="Readme" + RELOC/doc/latex/ethiop/codeetha.tex + RELOC/doc/latex/ethiop/codeethb.tex + RELOC/doc/latex/ethiop/ethiodoc.pdf + RELOC/doc/latex/ethiop/ethiodoc.tex +srccontainersize 13084 +srccontainerchecksum 46bedb27b22953ee6aab0b372581fc58186f3208c985a88006846a1f7917d998b5b8abfe463c3f415100f27aae20ae1d1648044850e6e7d095afa480adbe5837 +srcfiles size=14 + RELOC/source/latex/ethiop/ethiop.dtx + RELOC/source/latex/ethiop/ethiop.ins +runfiles size=337 + RELOC/fonts/ofm/public/ethiop/etho10.ofm + RELOC/fonts/ofm/public/ethiop/ethob10.ofm + RELOC/fonts/ofm/public/ethiop/ethos10.ofm + RELOC/fonts/ofm/public/ethiop/ethosb10.ofm + RELOC/fonts/ovf/public/ethiop/etho10.ovf + RELOC/fonts/ovf/public/ethiop/ethob10.ovf + RELOC/fonts/ovf/public/ethiop/ethos10.ovf + RELOC/fonts/ovf/public/ethiop/ethosb10.ovf + RELOC/fonts/ovp/public/ethiop/etho10.ovp + RELOC/fonts/ovp/public/ethiop/ethob10.ovp + RELOC/fonts/ovp/public/ethiop/ethos10.ovp + RELOC/fonts/ovp/public/ethiop/ethosb10.ovp + RELOC/fonts/source/public/ethiop/eth__a.mf + RELOC/fonts/source/public/ethiop/eth__g.mf + RELOC/fonts/source/public/ethiop/eth_acce.mf + RELOC/fonts/source/public/ethiop/eth_b.mf + RELOC/fonts/source/public/ethiop/eth_c_c.mf + RELOC/fonts/source/public/ethiop/eth_cc.mf + RELOC/fonts/source/public/ethiop/eth_cc_c.mf + RELOC/fonts/source/public/ethiop/eth_ccc2.mf + RELOC/fonts/source/public/ethiop/eth_d.mf + RELOC/fonts/source/public/ethiop/eth_dd.mf + RELOC/fonts/source/public/ethiop/eth_f.mf + RELOC/fonts/source/public/ethiop/eth_fu.mf + RELOC/fonts/source/public/ethiop/eth_g.mf + RELOC/fonts/source/public/ethiop/eth_g_a.mf + RELOC/fonts/source/public/ethiop/eth_gg.mf + RELOC/fonts/source/public/ethiop/eth_ggu.mf + RELOC/fonts/source/public/ethiop/eth_gu.mf + RELOC/fonts/source/public/ethiop/eth_h.mf + RELOC/fonts/source/public/ethiop/eth_h_a.mf + RELOC/fonts/source/public/ethiop/eth_h_c.mf + RELOC/fonts/source/public/ethiop/eth_hh.mf + RELOC/fonts/source/public/ethiop/eth_hu_c.mf + RELOC/fonts/source/public/ethiop/eth_j.mf + RELOC/fonts/source/public/ethiop/eth_k.mf + RELOC/fonts/source/public/ethiop/eth_k_a.mf + RELOC/fonts/source/public/ethiop/eth_kk.mf + RELOC/fonts/source/public/ethiop/eth_kku.mf + RELOC/fonts/source/public/ethiop/eth_ku.mf + RELOC/fonts/source/public/ethiop/eth_l.mf + RELOC/fonts/source/public/ethiop/eth_m.mf + RELOC/fonts/source/public/ethiop/eth_mrf.mf + RELOC/fonts/source/public/ethiop/eth_mu.mf + RELOC/fonts/source/public/ethiop/eth_n.mf + RELOC/fonts/source/public/ethiop/eth_nn.mf + RELOC/fonts/source/public/ethiop/eth_num.mf + RELOC/fonts/source/public/ethiop/eth_p.mf + RELOC/fonts/source/public/ethiop/eth_pp.mf + RELOC/fonts/source/public/ethiop/eth_pu.mf + RELOC/fonts/source/public/ethiop/eth_punc.mf + RELOC/fonts/source/public/ethiop/eth_q.mf + RELOC/fonts/source/public/ethiop/eth_q_a.mf + RELOC/fonts/source/public/ethiop/eth_qq.mf + RELOC/fonts/source/public/ethiop/eth_qqu.mf + RELOC/fonts/source/public/ethiop/eth_qu.mf + RELOC/fonts/source/public/ethiop/eth_r.mf + RELOC/fonts/source/public/ethiop/eth_s.mf + RELOC/fonts/source/public/ethiop/eth_s_a.mf + RELOC/fonts/source/public/ethiop/eth_s_c.mf + RELOC/fonts/source/public/ethiop/eth_ss.mf + RELOC/fonts/source/public/ethiop/eth_t.mf + RELOC/fonts/source/public/ethiop/eth_tt.mf + RELOC/fonts/source/public/ethiop/eth_v.mf + RELOC/fonts/source/public/ethiop/eth_w.mf + RELOC/fonts/source/public/ethiop/eth_wu.mf + RELOC/fonts/source/public/ethiop/eth_y.mf + RELOC/fonts/source/public/ethiop/eth_z.mf + RELOC/fonts/source/public/ethiop/eth_z_c.mf + RELOC/fonts/source/public/ethiop/etha10.mf + RELOC/fonts/source/public/ethiop/etha6.mf + RELOC/fonts/source/public/ethiop/etha7.mf + RELOC/fonts/source/public/ethiop/etha8.mf + RELOC/fonts/source/public/ethiop/etha_cod.mf + RELOC/fonts/source/public/ethiop/etha_drv.mf + RELOC/fonts/source/public/ethiop/etha_lig.mf + RELOC/fonts/source/public/ethiop/ethab10.mf + RELOC/fonts/source/public/ethiop/ethab11.mf + RELOC/fonts/source/public/ethiop/ethab12.mf + RELOC/fonts/source/public/ethiop/ethab14.mf + RELOC/fonts/source/public/ethiop/ethab18.mf + RELOC/fonts/source/public/ethiop/ethab24.mf + RELOC/fonts/source/public/ethiop/ethab36.mf + RELOC/fonts/source/public/ethiop/ethab9.mf + RELOC/fonts/source/public/ethiop/ethas10.mf + RELOC/fonts/source/public/ethiop/ethasb10.mf + RELOC/fonts/source/public/ethiop/ethasb11.mf + RELOC/fonts/source/public/ethiop/ethasb12.mf + RELOC/fonts/source/public/ethiop/ethasb14.mf + RELOC/fonts/source/public/ethiop/ethasb18.mf + RELOC/fonts/source/public/ethiop/ethasb24.mf + RELOC/fonts/source/public/ethiop/ethasb36.mf + RELOC/fonts/source/public/ethiop/ethasb9.mf + RELOC/fonts/source/public/ethiop/ethatt10.mf + RELOC/fonts/source/public/ethiop/ethb10.mf + RELOC/fonts/source/public/ethiop/ethb6.mf + RELOC/fonts/source/public/ethiop/ethb7.mf + RELOC/fonts/source/public/ethiop/ethb8.mf + RELOC/fonts/source/public/ethiop/ethb_cod.mf + RELOC/fonts/source/public/ethiop/ethb_drv.mf + RELOC/fonts/source/public/ethiop/ethb_lig.mf + RELOC/fonts/source/public/ethiop/ethbb10.mf + RELOC/fonts/source/public/ethiop/ethbb11.mf + RELOC/fonts/source/public/ethiop/ethbb12.mf + RELOC/fonts/source/public/ethiop/ethbb14.mf + RELOC/fonts/source/public/ethiop/ethbb18.mf + RELOC/fonts/source/public/ethiop/ethbb24.mf + RELOC/fonts/source/public/ethiop/ethbb36.mf + RELOC/fonts/source/public/ethiop/ethbb9.mf + RELOC/fonts/source/public/ethiop/ethbs10.mf + RELOC/fonts/source/public/ethiop/ethbsb10.mf + RELOC/fonts/source/public/ethiop/ethbsb11.mf + RELOC/fonts/source/public/ethiop/ethbsb12.mf + RELOC/fonts/source/public/ethiop/ethbsb14.mf + RELOC/fonts/source/public/ethiop/ethbsb18.mf + RELOC/fonts/source/public/ethiop/ethbsb24.mf + RELOC/fonts/source/public/ethiop/ethbsb36.mf + RELOC/fonts/source/public/ethiop/ethbsb9.mf + RELOC/fonts/source/public/ethiop/ethbtt10.mf + RELOC/fonts/source/public/ethiop/ethiomac.mf + RELOC/fonts/tfm/public/ethiop/etha10.tfm + RELOC/fonts/tfm/public/ethiop/etha6.tfm + RELOC/fonts/tfm/public/ethiop/etha7.tfm + RELOC/fonts/tfm/public/ethiop/etha8.tfm + RELOC/fonts/tfm/public/ethiop/ethab10.tfm + RELOC/fonts/tfm/public/ethiop/ethab11.tfm + RELOC/fonts/tfm/public/ethiop/ethab12.tfm + RELOC/fonts/tfm/public/ethiop/ethab14.tfm + RELOC/fonts/tfm/public/ethiop/ethab18.tfm + RELOC/fonts/tfm/public/ethiop/ethab24.tfm + RELOC/fonts/tfm/public/ethiop/ethab36.tfm + RELOC/fonts/tfm/public/ethiop/ethab9.tfm + RELOC/fonts/tfm/public/ethiop/ethas10.tfm + RELOC/fonts/tfm/public/ethiop/ethasb10.tfm + RELOC/fonts/tfm/public/ethiop/ethasb11.tfm + RELOC/fonts/tfm/public/ethiop/ethasb12.tfm + RELOC/fonts/tfm/public/ethiop/ethasb14.tfm + RELOC/fonts/tfm/public/ethiop/ethasb18.tfm + RELOC/fonts/tfm/public/ethiop/ethasb24.tfm + RELOC/fonts/tfm/public/ethiop/ethasb36.tfm + RELOC/fonts/tfm/public/ethiop/ethasb9.tfm + RELOC/fonts/tfm/public/ethiop/ethatt10.tfm + RELOC/fonts/tfm/public/ethiop/ethb10.tfm + RELOC/fonts/tfm/public/ethiop/ethb6.tfm + RELOC/fonts/tfm/public/ethiop/ethb7.tfm + RELOC/fonts/tfm/public/ethiop/ethb8.tfm + RELOC/fonts/tfm/public/ethiop/ethbb10.tfm + RELOC/fonts/tfm/public/ethiop/ethbb11.tfm + RELOC/fonts/tfm/public/ethiop/ethbb12.tfm + RELOC/fonts/tfm/public/ethiop/ethbb14.tfm + RELOC/fonts/tfm/public/ethiop/ethbb18.tfm + RELOC/fonts/tfm/public/ethiop/ethbb24.tfm + RELOC/fonts/tfm/public/ethiop/ethbb36.tfm + RELOC/fonts/tfm/public/ethiop/ethbb9.tfm + RELOC/fonts/tfm/public/ethiop/ethbs10.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb10.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb11.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb12.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb14.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb18.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb24.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb36.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb9.tfm + RELOC/fonts/tfm/public/ethiop/ethbtt10.tfm + RELOC/omega/ocp/ethiop/ethospc.ocp + RELOC/omega/otp/ethiop/ethospc.otp + RELOC/tex/latex/ethiop/etharab.sty + RELOC/tex/latex/ethiop/ethiop.ldf + RELOC/tex/latex/ethiop/ethiop.sty + RELOC/tex/latex/ethiop/uetha.fd + RELOC/tex/latex/ethiop/uethb.fd + RELOC/tex/latex/ethiop/uetho.fd +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-license gpl +catalogue-topics amharic +catalogue-version 0.7 + +name ethiop-t1 +category Package +revision 15878 +shortdesc Type 1 versions of Amharic fonts +relocated 1 +longdesc These fonts are drop-in Adobe type 1 replacements for the fonts +longdesc of the ethiop package. +execute addMixedMap ethiop.map +containersize 5184412 +containerchecksum 84f97fb5320ada95562aade797fdb62577e533feee9d7ece5cc51e17303012b198c0b1e6b4f720dc1539c4cb917ac71e3da6f48776d6fcfe84d4527ffd7b78dd +doccontainersize 7516 +doccontainerchecksum 81f2ed72d5cef9119c94c4b0025e31be6739153e36b7b31a2c59b0cbe5a683a67746da8346345d561472fdbb760c07831d1936222ce1388ee12d70c9053ca8ac +docfiles size=6 + RELOC/doc/latex/ethiop-t1/COPYING + RELOC/doc/latex/ethiop-t1/README details="Readme" +runfiles size=1348 + RELOC/fonts/map/dvips/ethiop-t1/ethiop.map + RELOC/fonts/type1/public/ethiop-t1/etha10.pfb + RELOC/fonts/type1/public/ethiop-t1/etha6.pfb + RELOC/fonts/type1/public/ethiop-t1/etha7.pfb + RELOC/fonts/type1/public/ethiop-t1/etha8.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethas10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethatt10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb6.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb7.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb8.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbs10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbtt10.pfb +catalogue-ctan /fonts/ps-type1/ethiop +catalogue-license gpl +catalogue-topics font font-nonroman font-type1 amharic + +name etoc +category Package +revision 55156 +shortdesc Completely customisable TOCs +relocated 1 +longdesc The package gives the user complete control of how the entries +longdesc of the table of contents should be constituted from the name, +longdesc number, and page number of each sectioning unit. The layout is +longdesc controlled by the definition of 'line styles' for each +longdesc sectioning level used in the document. The package provides its +longdesc own custom line styles (which may be used as examples), and +longdesc continues to support the standard formatting inherited from the +longdesc LaTeX document classes, but the package can also allow the user +longdesc to delegate the details to packages dealing with list making +longdesc environments (such as enumitem). The package's default global +longdesc style typesets tables of contents in a multi-column format, +longdesc with either a standard heading, or a ruled title (optionally +longdesc with a frame around the table). The \tableofcontents command +longdesc may be used arbitrarily many times in the same document, while +longdesc \localtableofcontents provides a 'local' table of contents. +containersize 10548 +containerchecksum 4000c9627c76648046d647843dbcf93f56111433d0294f8fe448549191886dd4cbea8815910b305f9e27a18b42a85ac8fe8a5999584da60d66a67f4a376d227b +doccontainersize 1119500 +doccontainerchecksum 377963e8ec9af3fd7fe1f164bc2dad566f18d7ff8bb62689d0119641f5aa61fa0ca091f1feed7d968f86db3bfe1035f915de120724a2d2cf912f1787f3eb3be3 +docfiles size=324 + RELOC/doc/latex/etoc/README.md details="Readme" + RELOC/doc/latex/etoc/etoc-DE.pdf details="Package documentation" language="de" + RELOC/doc/latex/etoc/etoc-DE.tex + RELOC/doc/latex/etoc/etoc.pdf details="Package documentation" + RELOC/doc/latex/etoc/etoc.tex + RELOC/doc/latex/etoc/etocsnippet-10.tex + RELOC/doc/latex/etoc/etocsnippet-20-A.tex + RELOC/doc/latex/etoc/etocsnippet-20-B.tex + RELOC/doc/latex/etoc/etocsnippet-21-A.tex + RELOC/doc/latex/etoc/etocsnippet-21-B.tex + RELOC/doc/latex/etoc/etocsnippet-22-A.tex + RELOC/doc/latex/etoc/etocsnippet-23.tex + RELOC/doc/latex/etoc/etocsnippet-24.tex + RELOC/doc/latex/etoc/etocsnippet-25.tex + RELOC/doc/latex/etoc/etocsnippet-26.tex + RELOC/doc/latex/etoc/etocsnippet-27.tex + RELOC/doc/latex/etoc/etocsnippet-28.tex + RELOC/doc/latex/etoc/etocsnippet-29.tex + RELOC/doc/latex/etoc/etocsnippet-30-A.tex + RELOC/doc/latex/etoc/etocsnippet-30-B.tex + RELOC/doc/latex/etoc/etocsnippet-31.tex + RELOC/doc/latex/etoc/etocsnippet-32.tex + RELOC/doc/latex/etoc/etocsnippet-40.tex + RELOC/doc/latex/etoc/etocsnippet-46.tex + RELOC/doc/latex/etoc/etocsnippet-48.tex + RELOC/doc/latex/etoc/etocsnippet-5.tex + RELOC/doc/latex/etoc/etocsnippet-52-A.tex + RELOC/doc/latex/etoc/etocsnippet-52-B.tex + RELOC/doc/latex/etoc/etocsnippet-53.tex + RELOC/doc/latex/etoc/etocsnippet-54.tex + RELOC/doc/latex/etoc/etocsnippet-6.tex + RELOC/doc/latex/etoc/etocsnippet-7.tex +srccontainersize 121032 +srccontainerchecksum d870677e592cdc503c8fdd3b03e568017c7d8f4cbfb9ebafe3510bcadc75f85f613991999dc67ae601db8ead068d06af76c1e0e1636c930313f6f04e080cbd6d +srcfiles size=138 + RELOC/source/latex/etoc/etoc.dtx +runfiles size=14 + RELOC/tex/latex/etoc/etoc.sty +catalogue-also titletoc tocbasic +catalogue-ctan /macros/latex/contrib/etoc +catalogue-license lppl1.3c +catalogue-topics toc-etc etex +catalogue-version 1.09c + +name etoolbox +category Package +revision 56554 +shortdesc e-TeX tools for LaTeX +relocated 1 +longdesc The package is a toolbox of programming facilities geared +longdesc primarily towards LaTeX class and package authors. It provides +longdesc LaTeX frontends to some of the new primitives provided by e-TeX +longdesc as well as some generic tools which are not strictly related to +longdesc e-TeX but match the profile of this package. Note that the +longdesc initial versions of this package were released under the name +longdesc elatex. The package provides functions that seem to offer +longdesc alternative ways of implementing some LaTeX kernel commands; +longdesc nevertheless, the package will not modify any part of the LaTeX +longdesc kernel. +containersize 8752 +containerchecksum b4c2ba570b1636b7ccd741c8960335f4863fb7242253be6c071100b64ce0d6ffc1bcc9da5e9bc65830ae5e34cb4cf887220585c0006d7afce0af3ca95f96b36e +doccontainersize 237928 +doccontainerchecksum 15f5f37471b991c1363e7d34c419c4defe1920522d6f666c383ce31b25b412d40a1dd6ca1c0fdb0e56ef3c7e529215964957c5a2dc55522bec60e79bdd972947 +docfiles size=76 + RELOC/doc/latex/etoolbox/README.md details="Readme" + RELOC/doc/latex/etoolbox/etoolbox.pdf details="Package documentation" + RELOC/doc/latex/etoolbox/etoolbox.tex +runfiles size=13 + RELOC/tex/latex/etoolbox/etoolbox.def + RELOC/tex/latex/etoolbox/etoolbox.sty +catalogue-contact-bugs https://github.com/josephwright/etoolbox/issues +catalogue-contact-repository https://github.com/josephwright/etoolbox/ +catalogue-ctan /macros/latex/contrib/etoolbox +catalogue-license lppl1.3c +catalogue-topics macro-supp etex +catalogue-version 2.5k + +name etoolbox-de +category Package +revision 21906 +shortdesc German translation of documentation of etoolbox +relocated 1 +longdesc The version translated is 2.1 or 2011-01-03. +containersize 404 +containerchecksum cbddbd599e10b6409db5c9f9d27f35b5922bba82da39b19aac010ef77e76a29465d91c10a40c578e834acf5d9ade2d52baec5cca06eddc802eabbe599fb3dd28 +doccontainersize 234632 +doccontainerchecksum 4c966dc094430caf72e462c1a854995fb78b54dca84322233a16508e41f33f0dd71db2b997b26beb7fd4722f0df1695a118ef782d7954983e9df3ba2132b828b +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-license lppl +catalogue-topics german-doc translation macro-supp +catalogue-version 1 + +name etsvthor +category Package +revision 48186 +shortdesc Some useful abbreviations for members of e.t.s.v. Thor +relocated 1 +longdesc "e.t.s.v. Thor" stands for "Elektrotechnische Studievereniging +longdesc Thor", a study association of Electrical Engeering at the +longdesc Eindhoven University of Technology. The author of the package +longdesc tells us: "Most of our committees use LaTeX to create meeting +longdesc notes or other formal documents within the association. When +longdesc you create a lot of these documents (which I do a lot, since I +longdesc am currently the candidate Secretary of the new board), some +longdesc abbreviations are extremely useful. I discovered that more +longdesc people from our association are interested in using these, so I +longdesc decided to put them in a package, so they can use it very +longdesc easily too." +containersize 1416 +containerchecksum c70654c50e186f73bd6dbbb65cc40cbfd809a86de223f96b4bbd1af94fc5fa928f2400eca58d6a97e5578186c58cd038a99264a412d9bb7fe15a01d7f3aff8b9 +doccontainersize 680 +doccontainerchecksum 47c9d66a720a8225b34bd0571c0f0da18fc72fb5f37e4204e7d4842facade9a0b72550351c0743dbb9296ca8bd2ad61036361f0cb7447b06e0994fcdb7c657b1 +docfiles size=1 + RELOC/doc/latex/etsvthor/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/etsvthor/etsvthor.sty +catalogue-ctan /macros/latex/contrib/etsvthor +catalogue-license lppl1.3c +catalogue-topics shortcut dutch +catalogue-version 1.0 + +name euclideangeometry +category Package +revision 54897 +shortdesc Draw geometrical constructions +relocated 1 +longdesc This package provides tools to draw most of the geometrical +longdesc constructions that a high school instructor or bachelor degree +longdesc professor might need to teach geometry. The connection to +longdesc Euclide depends on the fact that in his times calculations were +longdesc made with ruler, compass and also with ellipsograph. This +longdesc package extends the functionalities of the curve2e package. +containersize 5316 +containerchecksum 62900fe71550594672cbcb6cc22d067aae1e6315e54c76888fbe3db2b79558c25182e05c028e2e0504fa1f19168276d95684d0dcf76c2aceb600720cf090ae1c +doccontainersize 1020216 +doccontainerchecksum c12dfd05e72c4a081068af962fc223f6391793436ece1e706bacaf205c69ba01ae9a7263e1069b5e10ff4dc8a7ad151558ba188ee6c539d8e297d57dd6e1c45e +docfiles size=276 + RELOC/doc/latex/euclideangeometry/README.txt details="Readme" + RELOC/doc/latex/euclideangeometry/euclideangeometry-man.pdf details="User manual" + RELOC/doc/latex/euclideangeometry/euclideangeometry-man.tex + RELOC/doc/latex/euclideangeometry/euclideangeometry.pdf details="Documented code" +srccontainersize 21020 +srccontainerchecksum 35805bde4c06f9589467808497de577b58e8eef5f788671c0a9ccf2603d21873d71d980b07f1acc411d7eaeb9bb7868a6bfe562055be030d802fa88fbc16c183 +srcfiles size=18 + RELOC/source/latex/euclideangeometry/euclideangeometry.dtx +runfiles size=4 + RELOC/tex/latex/euclideangeometry/euclideangeometry.sty +catalogue-ctan /macros/latex/contrib/euclideangeometry +catalogue-license lppl1.3c +catalogue-topics graphics maths +catalogue-version 0.1.8 + +name euenc +category Package +revision 19795 +shortdesc Unicode font encoding definitions for XeTeX +relocated 1 +longdesc Font encoding definitions for unicode fonts loaded by LaTeX in +longdesc XeTeX or LuaTeX. The package provides two encodings: EU1, +longdesc designed for use with XeTeX, which the fontspec uses for +longdesc unicode fonts which require no macro-level processing for +longdesc accents, and EU2, which provides the same facilities for use +longdesc with LuaTeX. Neither encoding places any restriction on the +longdesc glyphs provided by a font; use of EU2 causes the package +longdesc euxunicode to be loaded (the package is part of this +longdesc distribution). The package includes font definition files for +longdesc use with the Latin Modern OpenType fonts. +containersize 3272 +containerchecksum f5968e42b36d9c3ab7ae17d156283f8fc09f0c725dd1037cae3b232f94af11a8ee84507efd87cab901bdc8a34f0f72d831a078de205e9beec81c574bb65f79fb +doccontainersize 145784 +doccontainerchecksum ac8d4e83ab23bf692d609a617bf8aacd8b33949e0bff1070301b8cad4e91f2a651555ffb44ad70be99791e64020984fe07afbb25976b73963abc79660eab96dd +docfiles size=38 + RELOC/doc/latex/euenc/README details="Readme" + RELOC/doc/latex/euenc/euenc.pdf details="Package documentation" + RELOC/doc/latex/euenc/test-euxlm.ltx +srccontainersize 6872 +srccontainerchecksum 4037c8f9961be1f4cd6a41d0cced28f4bcb54e5b7c4f9681b702f1d90e425ab0c772561b662fded93a0c469cfa1c43967fdfb3eb8c9e0e8c86d8340930565910 +srcfiles size=6 + RELOC/source/latex/euenc/Makefile + RELOC/source/latex/euenc/euenc.dtx +runfiles size=14 + RELOC/tex/latex/euenc/eu1enc.def + RELOC/tex/latex/euenc/eu1lmdh.fd + RELOC/tex/latex/euenc/eu1lmr.fd + RELOC/tex/latex/euenc/eu1lmss.fd + RELOC/tex/latex/euenc/eu1lmssq.fd + RELOC/tex/latex/euenc/eu1lmtt.fd + RELOC/tex/latex/euenc/eu1lmvtt.fd + RELOC/tex/latex/euenc/eu2enc.def + RELOC/tex/latex/euenc/eu2lmdh.fd + RELOC/tex/latex/euenc/eu2lmr.fd + RELOC/tex/latex/euenc/eu2lmss.fd + RELOC/tex/latex/euenc/eu2lmssq.fd + RELOC/tex/latex/euenc/eu2lmtt.fd + RELOC/tex/latex/euenc/eu2lmvtt.fd +catalogue-also xunicode +catalogue-ctan /macros/latex/contrib/euenc +catalogue-license lppl1.3 +catalogue-topics font-supp unicode +catalogue-version 0.1h + +name euflag +category Package +revision 55265 +shortdesc A command to reproduce the flag of the European Union +relocated 1 +longdesc This LaTeX package implements a command to reproduce the +longdesc official flag of the European Union (EU). The flag is +longdesc reproduced at 1em high based on the current font size, so it +longdesc can be scaled arbitrarily by changing the font size. +containersize 1652 +containerchecksum 6d6b156148fd6aee2f82ca489263de2fc37103e00aed4a287eb10acef95c60902d3c0c329eb904d2b808e5844f9d6ce92fd8afa4e9abf187d4f8bc7b8f4b75ad +doccontainersize 105628 +doccontainerchecksum 68eda595381f5f22bcd819ea4d2a4ee430ec555c92594ceb581a9e566de648a74ca3fd53ecd4566d17d3b54dc05b7909bdc3dd805e8c70fb68520b299da355c8 +docfiles size=30 + RELOC/doc/latex/euflag/MANIFEST + RELOC/doc/latex/euflag/README.md details="Readme" + RELOC/doc/latex/euflag/VERSION + RELOC/doc/latex/euflag/euflag.pdf details="Package documentation" +srccontainersize 18856 +srccontainerchecksum ad66378d43f833c0713593db5875cb0431a251e6443a939389551a4a4e5fe8c76865d1109ee0aac1b9213ccf6f375b1e4ac5a2dbdf347a88aafd86a0af721e90 +srcfiles size=16 + RELOC/source/latex/euflag/euflag.dtx + RELOC/source/latex/euflag/euflag.ins +runfiles size=1 + RELOC/tex/latex/euflag/euflag.sty +catalogue-ctan /graphics/euflag +catalogue-license lppl1.3c +catalogue-topics graphics +catalogue-version 0.8 + +name eukdate +category Package +revision 15878 +shortdesc UK format dates, with weekday +relocated 1 +longdesc The package is used to change the format of \today's date, +longdesc including the weekday, e.g., "Saturday, 26 June 2008", the 'UK +longdesc format', which is preferred in many parts of the world, as +longdesc distinct from that which is used in \maketitle of the article +longdesc class, "June 26, 2008", the 'US format'. +containersize 1528 +containerchecksum 4f64df42384897fca09574330d919704bfac2115f330f8ef085c9be60b51c64a9f1f46c10b863e989b9eda6559a3e2cb2388a59a997afad73632d83b02177b3e +doccontainersize 110240 +doccontainerchecksum 7c79bb48296d491816b5e5cbcec389fb7a2a200a9b8e544394a8363b5b99c7ad36b332c05968b98c1bfa1caf04fb554318494cafd0781e25ecbed532c752c65b +docfiles size=32 + RELOC/doc/latex/eukdate/README details="Readme" + RELOC/doc/latex/eukdate/eukdate.pdf details="Package documentation" +srccontainersize 4048 +srccontainerchecksum 114d472984fb42b7043762f7f76e1ac384ca4efd338b7ea1815d25178256dafdc2c83323cdc3e4c1835fa8d3cb019bf0d73dd3fe82acae16b41db4e0c76e81d9 +srcfiles size=4 + RELOC/source/latex/eukdate/eukdate.dtx + RELOC/source/latex/eukdate/eukdate.ins +runfiles size=1 + RELOC/tex/latex/eukdate/eukdate.sty +catalogue-also dayofweek weekday +catalogue-ctan /macros/latex/contrib/eukdate +catalogue-license lppl +catalogue-topics date-time +catalogue-version 1.04 + +name euler +category Package +revision 42428 +shortdesc Use AMS Euler fonts for math +relocated 1 +longdesc Provides a setup for using the AMS Euler family of fonts for +longdesc mathematics in LaTeX documents. "The underlying philosophy of +longdesc Zapf's Euler design was to capture the flavour of mathematics +longdesc as it might be written by a mathematician with excellent +longdesc handwriting." The euler package is based on Knuth's macros for +longdesc the book 'Concrete Mathematics'. The text fonts for the +longdesc Concrete book are supported by the beton package. +containersize 3372 +containerchecksum 3b3d383a2f715f14dba0ab926d3df9d10ab63c06d203c59e551732a7f6af4ff8965750404a37863c91d3fc3db7d44d1a279d03839162fde9d8d9fd849f0047c3 +doccontainersize 236756 +doccontainerchecksum 789c0b35257ad74dcddea589eed36f0a3b86eae3b201fc708c13cb11dbedc5b489d1495c218f9e10558b8977658b72c345a5622c10b8b1d7ceb3065a6c8fb9a0 +docfiles size=63 + RELOC/doc/latex/euler/euler.pdf details="Package documentation" + RELOC/doc/latex/euler/legal.txt +srccontainersize 9832 +srccontainerchecksum 59e262e4ebd3eee88828fb2cbc91b55ffe962e2bfe662df5c052075cf4fe4b9b8580ce217e38e4709789a0e77c810f9681ed3cef95f10709c54da5f1dbebd73b +srcfiles size=10 + RELOC/source/latex/euler/euler.dtx + RELOC/source/latex/euler/euler.ins +runfiles size=3 + RELOC/tex/latex/euler/euler.sty +catalogue-also beton eulervm +catalogue-ctan /macros/latex/contrib/euler +catalogue-license lppl +catalogue-topics font-supp-maths +catalogue-version 2.5 + +name eulerpx +category Package +revision 43735 +shortdesc A modern interface for the Euler math fonts +relocated 1 +longdesc This package provides the "eulerpx" font, which started as a +longdesc hybrid of multiple other font packages, notably eulervm and +longdesc newpxmath. Its purpose is twofold: To use the eulervm symbols +longdesc for greek and latin, but the newpxmath font for braces and +longdesc brackets, and the text font for digits and operators; and to +longdesc make it easy to change between a sans and a serif font for the +longdesc digits and operators so that the font can be used seamlessly in +longdesc documents using both. This package was put together with the +longdesc intent to use it with the Palatino and Optima fonts, but it may +longdesc work with other combinations, too. +containersize 2220 +containerchecksum 1dd4c01260b9f2cf7053d7867530b1383a1b1218719a5a58895bb56e61416f9a93199218670e88cb59f0d87e65efdd7f10a218b45a165894c13b99330797296b +doccontainersize 1960 +doccontainerchecksum d755e9694d0631e80ccf81f78a2832ae22269ded788fd30f0acd83a4044ddb4ee4308c26ae5f79c0510a2986f146d28847eabe200015bb197805d57d149ba20e +docfiles size=1 + RELOC/doc/fonts/eulerpx/README details="Readme" +runfiles size=2 + RELOC/tex/latex/eulerpx/eulerpx.sty +catalogue-ctan /fonts/eulerpx +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 0.2.1 + +name eulervm +category Package +revision 15878 +shortdesc Euler virtual math fonts +relocated 1 +longdesc The well-known Euler fonts are suitable for typsetting +longdesc mathematics in conjunction with a variety of text fonts which +longdesc do not provide mathematical character sets of their own. +longdesc Euler-VM is a set of virtual mathematics fonts based on Euler +longdesc and CM. This approach has several advantages over immediately +longdesc using the real Euler fonts: Most noticeably, less TeX resources +longdesc are consumed, the quality of various math symbols is improved +longdesc and a usable \hslash symbol can be provided. The virtual fonts +longdesc are accompanied by a LaTeX package which makes them easy to +longdesc use, particularly in conjunction with Type1 PostScript text +longdesc fonts. They are compatible with amsmath. A package option +longdesc allows the fonts to be loaded at 95% of their nominal size, +longdesc thus blending better with certain text fonts, e.g., Minion. +containersize 13600 +containerchecksum f497e30a188bd0d6cb66795253b35f6a108ef11a2924da94110e5a2c913af64826a21789265bf7f2b15a31a914b74ec171fe3c3d299b1164801898c0d7b0e7b0 +doccontainersize 88072 +doccontainerchecksum dce6b483aa0d8ed6d6e607a0a518060fb290b25f04306ea4ba50f863034aa3184118a7a13f42e89fb2706daa173abb7eb5c2bd433eb038aafd1f3a8eb9c17995 +docfiles size=32 + RELOC/doc/latex/eulervm/README.eulervm details="Package Readme" + RELOC/doc/latex/eulervm/eulervm.pdf details="Package documentation" + RELOC/doc/latex/eulervm/manifest.txt +srccontainersize 17112 +srccontainerchecksum 33ad15486b813b4c4cb7758cb22acd59a9578df070857483e6cf7997997437df954619a197c4bd762c38417bf9841c06db446ee74939b8eeeb6a0d3bf893f5e4 +srcfiles size=34 + RELOC/source/latex/eulervm/eulervm.dtx + RELOC/source/latex/eulervm/eulervm.ins + RELOC/source/latex/eulervm/fontinst/Makefile + RELOC/source/latex/eulervm/fontinst/amsrel10.mtx + RELOC/source/latex/eulervm/fontinst/amsrel5.mtx + RELOC/source/latex/eulervm/fontinst/amsrel7.mtx + RELOC/source/latex/eulervm/fontinst/axis10.mtx + RELOC/source/latex/eulervm/fontinst/axis5.mtx + RELOC/source/latex/eulervm/fontinst/axis7.mtx + RELOC/source/latex/eulervm/fontinst/eubar10.mtx + RELOC/source/latex/eulervm/fontinst/eubar5.mtx + RELOC/source/latex/eulervm/fontinst/eubar7.mtx + RELOC/source/latex/eulervm/fontinst/euml.etx + RELOC/source/latex/eulervm/fontinst/eums.etx + RELOC/source/latex/eulervm/fontinst/eumx.etx + RELOC/source/latex/eulervm/fontinst/fontevm.tex + RELOC/source/latex/eulervm/fontinst/unsetams.mtx + RELOC/source/latex/eulervm/fontinst/unseteus.mtx + RELOC/source/latex/eulervm/fontinst/unsetex.mtx +runfiles size=32 + RELOC/fonts/tfm/public/eulervm/zeuex10.tfm + RELOC/fonts/tfm/public/eulervm/zeurb10.tfm + RELOC/fonts/tfm/public/eulervm/zeurb5.tfm + RELOC/fonts/tfm/public/eulervm/zeurb7.tfm + RELOC/fonts/tfm/public/eulervm/zeurm10.tfm + RELOC/fonts/tfm/public/eulervm/zeurm5.tfm + RELOC/fonts/tfm/public/eulervm/zeurm7.tfm + RELOC/fonts/tfm/public/eulervm/zeusb10.tfm + RELOC/fonts/tfm/public/eulervm/zeusb5.tfm + RELOC/fonts/tfm/public/eulervm/zeusb7.tfm + RELOC/fonts/tfm/public/eulervm/zeusm10.tfm + RELOC/fonts/tfm/public/eulervm/zeusm5.tfm + RELOC/fonts/tfm/public/eulervm/zeusm7.tfm + RELOC/fonts/vf/public/eulervm/zeuex10.vf + RELOC/fonts/vf/public/eulervm/zeurb10.vf + RELOC/fonts/vf/public/eulervm/zeurb5.vf + RELOC/fonts/vf/public/eulervm/zeurb7.vf + RELOC/fonts/vf/public/eulervm/zeurm10.vf + RELOC/fonts/vf/public/eulervm/zeurm5.vf + RELOC/fonts/vf/public/eulervm/zeurm7.vf + RELOC/fonts/vf/public/eulervm/zeusb10.vf + RELOC/fonts/vf/public/eulervm/zeusb5.vf + RELOC/fonts/vf/public/eulervm/zeusb7.vf + RELOC/fonts/vf/public/eulervm/zeusm10.vf + RELOC/fonts/vf/public/eulervm/zeusm5.vf + RELOC/fonts/vf/public/eulervm/zeusm7.vf + RELOC/tex/latex/eulervm/eulervm.sty + RELOC/tex/latex/eulervm/uzeuex.fd + RELOC/tex/latex/eulervm/uzeur.fd + RELOC/tex/latex/eulervm/uzeus.fd +catalogue-ctan /fonts/eulervm +catalogue-license lppl +catalogue-topics font font-virtual font-maths +catalogue-version 4.0 + +name euro +category Package +revision 22191 +shortdesc Provide Euro values for national currency amounts +relocated 1 +longdesc Converts arbitrary national currency amounts using the Euro as +longdesc base unit, and typesets monetary amounts in almost any desired +longdesc way. Write, e.g., \ATS{17.6} to get something like '17,60 oS +longdesc (1,28 Euro)' automatically. Conversion rates for the initial +longdesc Euro-zone countries are already built-in. Further rates can be +longdesc added easily. The package uses the fp package to do its sums. +containersize 2564 +containerchecksum 35a1c763998bdbc3b3b54ade3e4887859aa9d166699ccfc73db432aab3439be075d858e88d3542c25f8a0065301f0b1fea9bc368f85ed767e9deafa090f35beb +doccontainersize 200188 +doccontainerchecksum 896a040cf80bec968e4fed5b2bd774e433997d336855775c1e6e5215cd6d9bb094550da324a2433d4da94ead4af3cfa6b192382efa73bb7c6bc951c22bb02fb3 +docfiles size=61 + RELOC/doc/latex/euro/Makefile + RELOC/doc/latex/euro/euro.pdf details="Package documentation" + RELOC/doc/latex/euro/euro.txt +srccontainersize 14508 +srccontainerchecksum cf587911ccf53bd78d100221518aa62595279fd5880152d715950ece34b23eb5ef39b0ec190d2c5b5060a4f68861a8b9ac2ef93a3a6f3dbe3b85223dc386bef4 +srcfiles size=13 + RELOC/source/latex/euro/euro.dtx + RELOC/source/latex/euro/euro.ins +runfiles size=2 + RELOC/tex/latex/euro/euro.sty +catalogue-ctan /macros/latex/contrib/euro +catalogue-license lppl +catalogue-topics calculation +catalogue-version 1.1 + +name euro-ce +category Package +revision 25714 +shortdesc Euro and CE sign font +relocated 1 +longdesc Metafont source for the symbols in several variants, designed +longdesc to fit with the Computer Modern-set text. +containersize 5936 +containerchecksum c1a864ebf022c8949b62195be6ce857ba108b7f930cf6e0152d70b7e3283e09c2f93fc670732cac79e3f48b860431186ea903324a02597b2a92fa43a0819b57b +doccontainersize 5584 +doccontainerchecksum 3a44189546231f3bfde594142e6901a69f6e351e1d04203d1d646c476ca330431c0560faa79fec79485a4092b667864dcfb522ddf9a56bfc2b2ab76764b3852e +docfiles size=6 + RELOC/doc/fonts/euro-ce/euro-ce.doc + RELOC/doc/fonts/euro-ce/euro-ce.dvi + RELOC/doc/fonts/euro-ce/euro-ce.tex +runfiles size=26 + RELOC/fonts/source/public/euro-ce/ceit.mf + RELOC/fonts/source/public/euro-ce/cemac.mf + RELOC/fonts/source/public/euro-ce/cerm.mf + RELOC/fonts/source/public/euro-ce/cesl.mf + RELOC/fonts/source/public/euro-ce/eurobf.mf + RELOC/fonts/source/public/euro-ce/eurobfit.mf + RELOC/fonts/source/public/euro-ce/eurobfsl.mf + RELOC/fonts/source/public/euro-ce/euroit.mf + RELOC/fonts/source/public/euro-ce/euromac.mf + RELOC/fonts/source/public/euro-ce/euroof.mf + RELOC/fonts/source/public/euro-ce/eurorm.mf + RELOC/fonts/source/public/euro-ce/eurosl.mf + RELOC/fonts/source/public/euro-ce/eurosp.mf + RELOC/fonts/tfm/public/euro-ce/ceit.tfm + RELOC/fonts/tfm/public/euro-ce/cerm.tfm + RELOC/fonts/tfm/public/euro-ce/cesl.tfm + RELOC/fonts/tfm/public/euro-ce/eurobf.tfm + RELOC/fonts/tfm/public/euro-ce/eurobfit.tfm + RELOC/fonts/tfm/public/euro-ce/eurobfsl.tfm + RELOC/fonts/tfm/public/euro-ce/euroit.tfm + RELOC/fonts/tfm/public/euro-ce/euroof.tfm + RELOC/fonts/tfm/public/euro-ce/eurorm.tfm + RELOC/fonts/tfm/public/euro-ce/eurosl.tfm + RELOC/fonts/tfm/public/euro-ce/eurosp.tfm +catalogue-ctan /fonts/euro-ce +catalogue-license bsd +catalogue-topics font font-specialist font-mf +catalogue-version 3.0b + +name europasscv +category Package +revision 56829 +shortdesc Unofficial class for the new version of the Europass curriculum vitae +relocated 1 +longdesc This class is an unofficial LaTeX implementation of the +longdesc Europass CV, the standard model for curriculum vitae as +longdesc recommended by the European Commission. It includes the major +longdesc style updates that came out in 2013, featuring a neater, more +longdesc compact and somewhat fancier layout. +containersize 30320 +containerchecksum 35aa159fd84082e1cfb65bd05ea83462400e12edf5a40a89740373954d72b42cc33516452691814359d3bbfae1e96f4605e0d19592c54f4e2e5328542cac42a6 +doccontainersize 452684 +doccontainerchecksum 834c4266e343a8b615a45a2c4b064170bf6c9516a8631342ff02d4de7154229458818192670f3f73aac5600407c830c1be384226bb3b0923af964905a39d99b3 +docfiles size=128 + RELOC/doc/latex/europasscv/CHANGELOG.md + RELOC/doc/latex/europasscv/README.md details="Readme" + RELOC/doc/latex/europasscv/europasscv.pdf details="Package documentation" + RELOC/doc/latex/europasscv/europasscv.tex + RELOC/doc/latex/europasscv/example/europasscv_bib_en.pdf + RELOC/doc/latex/europasscv/example/europasscv_bib_en.tex + RELOC/doc/latex/europasscv/example/europasscv_en.pdf + RELOC/doc/latex/europasscv/example/europasscv_en.tex + RELOC/doc/latex/europasscv/example/europasscv_example.bib +runfiles size=43 + RELOC/tex/latex/europasscv/def/europasscv_ca.def + RELOC/tex/latex/europasscv/def/europasscv_cs.def + RELOC/tex/latex/europasscv/def/europasscv_da.def + RELOC/tex/latex/europasscv/def/europasscv_de.def + RELOC/tex/latex/europasscv/def/europasscv_el.def + RELOC/tex/latex/europasscv/def/europasscv_en.def + RELOC/tex/latex/europasscv/def/europasscv_es.def + RELOC/tex/latex/europasscv/def/europasscv_fr.def + RELOC/tex/latex/europasscv/def/europasscv_hu.def + RELOC/tex/latex/europasscv/def/europasscv_it.def + RELOC/tex/latex/europasscv/def/europasscv_nb.def + RELOC/tex/latex/europasscv/def/europasscv_pl.def + RELOC/tex/latex/europasscv/def/europasscv_pt.def + RELOC/tex/latex/europasscv/def/europasscv_ro.def + RELOC/tex/latex/europasscv/def/europasscv_sk.def + RELOC/tex/latex/europasscv/def/europasscv_sl.def + RELOC/tex/latex/europasscv/def/europasscv_sv.def + RELOC/tex/latex/europasscv/def/europasscv_tr.def + RELOC/tex/latex/europasscv/europasscv-bibliography.sty + RELOC/tex/latex/europasscv/europasscv.cls + RELOC/tex/latex/europasscv/europasslogo2013.pdf + RELOC/tex/latex/europasscv/icons/address_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/git_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/github_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/gitlab_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/im_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/linkedin_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/mail_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/mobile_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/orcid_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/telephone_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/website_europass_icon.pdf + RELOC/tex/latex/europasscv/icons/work_europass_icon.pdf +catalogue-also europecv curve currvita cv esieecv vita +catalogue-contact-announce https://github.com/gmazzamuto/europasscv/releases +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-license lppl1.3 +catalogue-topics cv class + +name europecv +category Package +revision 57641 +shortdesc Unofficial class for European curricula vitae +relocated 1 +longdesc The europecv class is an unofficial LaTeX implementation of the +longdesc standard model for curricula vitae (the "Europass CV") as +longdesc recommended by the European Commission. Although primarily +longdesc intended for users in the European Union, the class is flexible +longdesc enough to be used for any kind of curriculum vitae. The class +longdesc has localisations for all the official languages of the EU +longdesc (plus Catalan), as well as options permitting input in UTF-8 +longdesc and koi8-r. +containersize 38444 +containerchecksum 9010e3d116f2a9fbc00f9da15b98ef6b5dd894ae94e3ddd82842f088f4d867c9b4fc186597e3885f7acc59d0ae51d9dd75b0a7c8955c2c22bd0295e2298cca89 +doccontainersize 985760 +doccontainerchecksum ed502dcf747360c2fc2688e2d1d3e90f145f05488925a5cc2afc5354389b41a8916713a31de7fa8f69fd42f6ce104d7404e3bc55b786ea045a430a6119880768 +docfiles size=332 + RELOC/doc/latex/europecv/CHANGELOG.rst + RELOC/doc/latex/europecv/CONTRIBUTING.md + RELOC/doc/latex/europecv/LICENSE + RELOC/doc/latex/europecv/README.md details="Readme" + RELOC/doc/latex/europecv/europecv.pdf details="Class documentation" + RELOC/doc/latex/europecv/europecv.tex + RELOC/doc/latex/europecv/examples/EuropeFlagCMYK-eps-converted-to.pdf + RELOC/doc/latex/europecv/examples/EuropeFlagCMYK.eps + RELOC/doc/latex/europecv/examples/Pythagoras.jpg + RELOC/doc/latex/europecv/examples/at.pdf + RELOC/doc/latex/europecv/examples/bulgarian-koi8-r.tex + RELOC/doc/latex/europecv/examples/bulgarian-utf8.tex + RELOC/doc/latex/europecv/examples/europass-cv.pdf + RELOC/doc/latex/europecv/examples/europass-cv.tex + RELOC/doc/latex/europecv/examples/europasslogo-eps-converted-to.pdf + RELOC/doc/latex/europecv/examples/europasslogo.eps + RELOC/doc/latex/europecv/examples/greek-utf8.pdf + RELOC/doc/latex/europecv/examples/greek-utf8.tex + RELOC/doc/latex/europecv/examples/maltese-maltese.tex + RELOC/doc/latex/europecv/examples/maltese-utf8.tex + RELOC/doc/latex/europecv/examples/minimal.pdf + RELOC/doc/latex/europecv/examples/minimal.tex + RELOC/doc/latex/europecv/templates/cv_template_academic_en.pdf details="Academic example of use" + RELOC/doc/latex/europecv/templates/cv_template_academic_en.tex + RELOC/doc/latex/europecv/templates/cv_template_en.pdf details="Simple example of use" + RELOC/doc/latex/europecv/templates/cv_template_en.tex +runfiles size=64 + RELOC/tex/latex/europecv/EuropeFlagBW.eps + RELOC/tex/latex/europecv/EuropeFlagBW.pdf + RELOC/tex/latex/europecv/EuropeFlagBlueCMYK.eps + RELOC/tex/latex/europecv/EuropeFlagBlueCMYK.pdf + RELOC/tex/latex/europecv/EuropeFlagCMYK.eps + RELOC/tex/latex/europecv/EuropeFlagCMYK.pdf + RELOC/tex/latex/europecv/EuropeFlagWB.eps + RELOC/tex/latex/europecv/EuropeFlagWB.pdf + RELOC/tex/latex/europecv/ecvbg.def + RELOC/tex/latex/europecv/ecvca.def + RELOC/tex/latex/europecv/ecvcs.def + RELOC/tex/latex/europecv/ecvda.def + RELOC/tex/latex/europecv/ecvde.def + RELOC/tex/latex/europecv/ecven.def + RELOC/tex/latex/europecv/ecves.def + RELOC/tex/latex/europecv/ecvet.def + RELOC/tex/latex/europecv/ecvfi.def + RELOC/tex/latex/europecv/ecvfr.def + RELOC/tex/latex/europecv/ecvgl.def + RELOC/tex/latex/europecv/ecvgr.def + RELOC/tex/latex/europecv/ecvhu.def + RELOC/tex/latex/europecv/ecvis.def + RELOC/tex/latex/europecv/ecvit.def + RELOC/tex/latex/europecv/ecvlt.def + RELOC/tex/latex/europecv/ecvlv.def + RELOC/tex/latex/europecv/ecvmt.def + RELOC/tex/latex/europecv/ecvnl.def + RELOC/tex/latex/europecv/ecvno.def + RELOC/tex/latex/europecv/ecvpl.def + RELOC/tex/latex/europecv/ecvpt.def + RELOC/tex/latex/europecv/ecvro.def + RELOC/tex/latex/europecv/ecvsk.def + RELOC/tex/latex/europecv/ecvsl.def + RELOC/tex/latex/europecv/ecvsr.def + RELOC/tex/latex/europecv/ecvsv.def + RELOC/tex/latex/europecv/europasslogo.eps + RELOC/tex/latex/europecv/europasslogo.pdf + RELOC/tex/latex/europecv/europecv.cls +catalogue-also europasscv curve currvita cv esieecv vita +catalogue-contact-repository https://github.com/gsilano/EuropeCV +catalogue-ctan /macros/latex/contrib/europecv +catalogue-license lppl +catalogue-topics cv class + +name eurosym +category Package +revision 17265 +shortdesc Metafont and macros for Euro sign +relocated 1 +longdesc The European currency symbol for the Euro implemented in +longdesc Metafont, using the official European Commission dimensions, +longdesc and providing several shapes (normal, slanted, bold, outline). +longdesc The package also includes a LaTeX package which defines the +longdesc macro, pre-compiled tfm files, and documentation. +execute addMixedMap eurosym.map +containersize 139880 +containerchecksum 9624b0a91a8491d4178051e8e8264e506725ace0eb1b4e4ee9f3cf38cf7868d392f0f4fae92947c74182a6cdf7d4cfb46319a269e4e3aac686ecf4a4cd2f7b3d +doccontainersize 277732 +doccontainerchecksum db226757ec82087da3e67fe69b5e9c2429e3cc2addb126bc528dda8bc421a4e9da2a367e64f119eb109e8898409a4e50177b81f9035ed1e0672bb902836bb61f +docfiles size=85 + RELOC/doc/fonts/eurosym/COPYING + RELOC/doc/fonts/eurosym/Changes + RELOC/doc/fonts/eurosym/Makefile + RELOC/doc/fonts/eurosym/README details="Readme" + RELOC/doc/fonts/eurosym/README.type1 + RELOC/doc/fonts/eurosym/c/Makefile + RELOC/doc/fonts/eurosym/eurosym.cpp + RELOC/doc/fonts/eurosym/makemfs + RELOC/doc/fonts/eurosym/rundvips + RELOC/doc/fonts/eurosym/runlatex + RELOC/doc/fonts/eurosym/src/Makefile + RELOC/doc/fonts/eurosym/testeuro.pdf + RELOC/doc/fonts/eurosym/testeuro.tex +runfiles size=72 + RELOC/fonts/map/dvips/eurosym/eurosym.map + RELOC/fonts/source/public/eurosym/fey.mf + RELOC/fonts/source/public/eurosym/feybl10.mf + RELOC/fonts/source/public/eurosym/feybo10.mf + RELOC/fonts/source/public/eurosym/feybr10.mf + RELOC/fonts/source/public/eurosym/feyml10.mf + RELOC/fonts/source/public/eurosym/feymo10.mf + RELOC/fonts/source/public/eurosym/feymr10.mf + RELOC/fonts/tfm/public/eurosym/feybl10.tfm + RELOC/fonts/tfm/public/eurosym/feybo10.tfm + RELOC/fonts/tfm/public/eurosym/feybr10.tfm + RELOC/fonts/tfm/public/eurosym/feyml10.tfm + RELOC/fonts/tfm/public/eurosym/feymo10.tfm + RELOC/fonts/tfm/public/eurosym/feymr10.tfm + RELOC/fonts/type1/public/eurosym/feybl10.pfb + RELOC/fonts/type1/public/eurosym/feybo10.pfb + RELOC/fonts/type1/public/eurosym/feybr10.pfb + RELOC/fonts/type1/public/eurosym/feyml10.pfb + RELOC/fonts/type1/public/eurosym/feymo10.pfb + RELOC/fonts/type1/public/eurosym/feymr10.pfb + RELOC/fonts/type1/public/eurosym/geybl10.pfb + RELOC/fonts/type1/public/eurosym/geybo10.pfb + RELOC/fonts/type1/public/eurosym/geybr10.pfb + RELOC/fonts/type1/public/eurosym/geyml10.pfb + RELOC/fonts/type1/public/eurosym/geymo10.pfb + RELOC/fonts/type1/public/eurosym/geymr10.pfb + RELOC/tex/latex/eurosym/eurosym.sty +catalogue-also europs marvosym +catalogue-contact-home http://www.theiling.de/eurosym.html +catalogue-ctan /fonts/eurosym +catalogue-license other-free +catalogue-topics font font-specialist font-mf +catalogue-version 1.4-subrfix + +name euxm +category Package +revision 54074 +shortdesc extended Euler by DEK +relocated 1 +longdesc Includes two additional characters needed for Concrete Math +longdesc (ca. 1991). +containersize 25788 +containerchecksum 2f786231f801ba9a9c5f5176bfbd01f8e952c33c722c7508988628afa66d1ddd55c4de02c0ed9cfbaa35a8764833e822046f7125330145995433b517f7051bd8 +runfiles size=40 + RELOC/fonts/source/public/euxm/eubase.mf + RELOC/fonts/source/public/euxm/eusmch.mf + RELOC/fonts/source/public/euxm/euxm10.mf + RELOC/fonts/source/public/euxm/euxm5.mf + RELOC/fonts/source/public/euxm/euxm7.mf + RELOC/fonts/source/public/euxm/euxmch.mf + RELOC/fonts/tfm/public/euxm/euxm10.tfm + RELOC/fonts/tfm/public/euxm/euxm5.tfm + RELOC/fonts/tfm/public/euxm/euxm7.tfm + +name everyhook +category Package +revision 35675 +shortdesc Hooks for standard TeX token lists +relocated 1 +longdesc The package takes control of the six TeX token registers +longdesc \everypar, \everymath, \everydisplay, \everyhbox, \everyvbox +longdesc and \everycr. Real hooks for each of the registers may be +longdesc installed using a stack like interface. For backwards +longdesc compatibility, each of the \everyX token lists can be set +longdesc without interfering with the hooks. +containersize 2080 +containerchecksum 56547973d184de21ff5d6d3eaf1baf9b8cdbcf93307c31fbbcf658350ef0d441509ce359266ea6f962ef9b40b1680b47e4c14a822aa043ab8174ab0610df1665 +doccontainersize 116288 +doccontainerchecksum 331def0138dac385605b3ea1d88af6d5d1ae29bac696b76f41cdcfd070d50915eb3371a14a894b1e59bf35d55eb7dabecfe18e89f0bfbe6f028ce5fedfe1bbc2 +docfiles size=30 + RELOC/doc/latex/everyhook/README details="Readme" + RELOC/doc/latex/everyhook/everyhook.pdf details="Package documentation" +srccontainersize 7344 +srccontainerchecksum ba0d5e3f2661c4b5ba765b7509675f301dffa3fb3d9f158b3c3255d84b3a5620ec4d883a9c2f116319e6c70784eb5efa4a1cac270d1a299b23bd6fdcbaf60b2b +srcfiles size=6 + RELOC/source/latex/everyhook/everyhook.dtx +runfiles size=2 + RELOC/tex/latex/everyhook/everyhook.sty +catalogue-ctan /macros/latex/contrib/everyhook +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.2 + +name everypage +category Package +revision 56694 +shortdesc Provide hooks to be run on every page of a document +relocated 1 +longdesc The package provides hooks to perform actions on every page, or +longdesc on the current page. Specifically, actions are performed after +longdesc the page is composed, but before it is shipped, so they can be +longdesc used to prepare the output page in tasks like putting +longdesc watermarks in the background, or in setting the next page +longdesc layout, etc. +containersize 1772 +containerchecksum 032713896e2704667582aa03e8d542062a5eb26188d41b08968955fbd8535aacc8288559112aa264c542e3523f452dd9b2acdd1dc3f66450cdc5c5c902e38b80 +doccontainersize 161516 +doccontainerchecksum 4c19f905b5a16674980da2569b2994382a2eb108fd20bfdd29a6ef4220e00aa390c197dd86ecd093a9acb83b9a2d64521f732083e3c2828478a8c8c45463d180 +docfiles size=41 + RELOC/doc/latex/everypage/README.md details="Readme" + RELOC/doc/latex/everypage/everypage.pdf +srccontainersize 7912 +srccontainerchecksum f01679f5ac00d3c75a0595496b489a008c664d7197af6d267226498b821ca83d34ae842c212756ccef81aae40f4447ddae2146b5651084dc55081f75c1ec04f8 +srcfiles size=7 + RELOC/source/latex/everypage/everypage.dtx + RELOC/source/latex/everypage/everypage.ins +runfiles size=2 + RELOC/tex/latex/everypage/everypage-1x.sty + RELOC/tex/latex/everypage/everypage.sty +catalogue-also everyshi bophook +catalogue-contact-bugs https://github.com/callegar/LaTeX-everypage/issues +catalogue-contact-repository https://github.com/callegar/LaTeX-everypage +catalogue-ctan /macros/latex/contrib/everypage +catalogue-license lppl1.3c +catalogue-topics defer-stuff +catalogue-version 2.0b + +name everysel +category Package +revision 57489 +shortdesc Provides hooks into \selectfont +relocated 1 +longdesc The package provided hooks whose arguments are executed just +longdesc after LaTeX has loaded a new font by means of \selectfont. It +longdesc has become obsolete with LaTeX versions 2021/01/05 or newer, +longdesc since LaTeX now provides its own hooks to fulfill this task. +longdesc For newer versions of LaTeX everysel only provides macros using +longdesc LaTeX's hook management due to compatibility reasons. See +longdesc lthooks-doc.pdf for instructions how to use lthooks instead of +longdesc everysel. +containersize 2380 +containerchecksum 79b83d48e3e6eedcf1673a30c28fc06eb2ed8e3bd292d6cf914faf5ce2929795e6dd11baae3a207c796abb67ced2a2442af11c2618fd7d565696f8bfd121a0a2 +doccontainersize 442272 +doccontainerchecksum 5efdce418de6d29481a8a8a9bb89fa561e865f5628dd67ce88fd648f54a40c6a90c625700d053d741b650c568eb6b63da81b68bebf89bb618a398a223a5b08a1 +docfiles size=109 + RELOC/doc/latex/everysel/README.md details="Readme" + RELOC/doc/latex/everysel/everysel.pdf details="Package documentation" +srccontainersize 5580 +srccontainerchecksum c288dd88a266e87bad6880e36a681e29f5f52f02b5f7b86133daae2972932572f0e529945acc6a0f00b844909da8f77cf3a524bece531667437a5ffa0dc2a684 +srcfiles size=5 + RELOC/source/latex/everysel/everysel.dtx + RELOC/source/latex/everysel/everysel.ins +runfiles size=3 + RELOC/tex/latex/everysel/everysel-2011-10-28.sty + RELOC/tex/latex/everysel/everysel.sty +catalogue-ctan /macros/latex/contrib/everysel +catalogue-license lppl1.3c +catalogue-topics defer-stuff obsolete +catalogue-version 2.1 + +name everyshi +category Package +revision 57001 +shortdesc Take action at every \shipout +relocated 1 +longdesc This package provides hooks into \sshipout called \EveryShipout +longdesc and \AtNextShipout analogous to \AtBeginDocument. With the +longdesc introduction of the LaTeX hook management this package became +longdesc obsolete in 2020 and is only provided for backwards +longdesc compatibility. For current versions of LaTeX it is only mapping +longdesc the hooks to the original everyshi macros. In case you use an +longdesc older LaTeX format, everyshi will automatically fall back to +longdesc its old implementation by loading everyshi-2001-05-15. +containersize 2000 +containerchecksum b6219fdc669847a30ad2359d6b0888eec0980114d5385c018e9ddfd0876dc52390e1e8ffae5d2850cfa140833365c30024456bfacde6615bdbe5101e7059d52f +doccontainersize 132236 +doccontainerchecksum 2a05f4b42c1a85b4af8fb3881d1e32d0cb8fad7070bd8eb83632b50e387083a5c8fd264b61b70416451f56a97e1c0702507bd50c534ab7baf975372d854a97a5 +docfiles size=35 + RELOC/doc/latex/everyshi/README.md details="Readme" + RELOC/doc/latex/everyshi/everyshi.pdf details="Package documentation" +srccontainersize 4772 +srccontainerchecksum 4ae653fe3cf9dcfa51f461ca72954eeef666a6324321cb5e6416d7e2baa5320115818a26f1970bf7654acec9454e5174262578fc4d28f251d3476d27d6d4d9d5 +srcfiles size=5 + RELOC/source/latex/everyshi/everyshi.dtx + RELOC/source/latex/everyshi/everyshi.ins +runfiles size=2 + RELOC/tex/latex/everyshi/everyshi-2001-05-15.sty + RELOC/tex/latex/everyshi/everyshi.sty +catalogue-also bophook atbegshi +catalogue-ctan /macros/latex/contrib/everyshi +catalogue-license lppl1.3c +catalogue-topics defer-stuff obsolete +catalogue-version 4.00 + +name exam +category Package +revision 58023 +shortdesc Package for typesetting exam scripts +relocated 1 +longdesc Provides a class exam.cls, which eases production of exams, +longdesc even by a LaTeX novice. Simple commands are provided to: create +longdesc questions, parts of questions, subparts of parts, and +longdesc subsubparts of subparts, all with optional point values; create +longdesc a grading table, indexed either by question number (listing +longdesc each question and the total possible points for that question) +longdesc or by page number (listing each page with points and the total +longdesc possible points for that page); create headers and footers that +longdesc are each specified in three parts: one part to be left +longdesc justified, one part to be centered, and one part to be right +longdesc justified, in the manner of fancyhdr. Headers and/or footers +longdesc can be different on the first page of the exam, can be +longdesc different on the last page of the exam, and can vary depending +longdesc on whether the page number is odd or even, or on whether the +longdesc current page continues a question from a previous page, or on +longdesc whether the last question on the current page continues onto +longdesc the following page. Multiple line headers and/or footers are +longdesc allowed, and it's easy to increase the part of the page devoted +longdesc to headers and/or footers to allow for this. Note that the +longdesc bundle exams also provides a file exam.cls; the two bundles +longdesc therefore clash, and should not be installed on the same +longdesc system. +containersize 49904 +containerchecksum 0a18063d56042bbd93d43e7e0dd7da59e352c6ee31eb9d925124f5057e6ec62a87277271bdb7f1bfd81e22537af6b648efafaef22e25956ef2e48868b381e9ea +doccontainersize 515428 +doccontainerchecksum 8d0c427c56764b605e5e79a4b71df5afc6619569f34115084ce30adc5da8905743b8859ad984284a38e74ee56d057383ece36fbe73489cadeb87704e0614bee5 +docfiles size=194 + RELOC/doc/latex/exam/README details="Package Readme" + RELOC/doc/latex/exam/exam.md5 + RELOC/doc/latex/exam/examdoc.pdf details="Package documentation" + RELOC/doc/latex/exam/examdoc.tex +runfiles size=70 + RELOC/tex/latex/exam/exam.cls +catalogue-contact-home http://www-math.mit.edu/~psh/ +catalogue-ctan /macros/latex/contrib/exam +catalogue-license lppl1.3 +catalogue-topics exam class +catalogue-version 2.7 + +name exam-n +category Package +revision 42755 +shortdesc Exam class, focused on collaborative authoring +relocated 1 +longdesc The class design offers: Direct support for collaborative +longdesc development of an exam, using a model in which a departmental +longdesc 'exams convener' or 'exam chair' coordinates multiple authors +longdesc writing individual questions (the class file and associated +longdesc process is in regular use within a physics and astronomy +longdesc department). All of the 'traditional' exam paper features such +longdesc as sectioning, per-part running marks, 'Question n continued' +longdesc catchwords, and so on. Readily configured local adaptation. +containersize 11804 +containerchecksum 6cb28928125f1164fcf2a78980345373a094fc1a2f2f22756c8f9b27da05b88b6011f000508354b4d73aafa09a2a877bd0e6913a274518b471380074762be392 +doccontainersize 820032 +doccontainerchecksum 502d6fd1073f4ce68477e6be652dd131bb0a74818df2b1fc6b0a97aafeb946de1d0fe3fe90ed5843bd63305c528031acde37697cfd756c9839b083f9926a363c +docfiles size=271 + RELOC/doc/latex/exam-n/A1.clo + RELOC/doc/latex/exam-n/README details="Readme" + RELOC/doc/latex/exam-n/README.ctan + RELOC/doc/latex/exam-n/exam-n-example.tex + RELOC/doc/latex/exam-n/exam-n.html + RELOC/doc/latex/exam-n/exam-n.pdf details="Package documentation" + RELOC/doc/latex/exam-n/lppl.txt + RELOC/doc/latex/exam-n/notes-for-authors.pdf + RELOC/doc/latex/exam-n/notes-for-authors.tex + RELOC/doc/latex/exam-n/release-notes.html + RELOC/doc/latex/exam-n/sample/Makefile + RELOC/doc/latex/exam-n/sample/cosmo1.tex + RELOC/doc/latex/exam-n/sample/cosmo2.tex + RELOC/doc/latex/exam-n/sample/cosmo3.tex + RELOC/doc/latex/exam-n/sample/dynamical1.tex + RELOC/doc/latex/exam-n/sample/dynamical2.tex + RELOC/doc/latex/exam-n/sample/dynamical3.tex + RELOC/doc/latex/exam-n/sample/excos1.tex + RELOC/doc/latex/exam-n/sample/fig/spiral.eps + RELOC/doc/latex/exam-n/sample/fig/spiral.pdf + RELOC/doc/latex/exam-n/sample/numerical1-solution.tex + RELOC/doc/latex/exam-n/sample/numerical1.tex + RELOC/doc/latex/exam-n/sample/numerical2.tex + RELOC/doc/latex/exam-n/sample/numerical3.tex + RELOC/doc/latex/exam-n/sample/sample_exam.tex + RELOC/doc/latex/exam-n/sample/sample_exam_solution.tex + RELOC/doc/latex/exam-n/sample/sample_mcq.tex + RELOC/doc/latex/exam-n/sample_exam.pdf details="Sample exam" + RELOC/doc/latex/exam-n/sample_exam_solution.pdf + RELOC/doc/latex/exam-n/style.css +srccontainersize 34424 +srccontainerchecksum 7241ce6d5e83e75142d8f3df652af4eaed554a7a2c93ee3b2868bb8c5918cfd950c7fa1413464604607b120eefed14fece4f801b08a6f0fbbded59f29e8ba620 +srcfiles size=32 + RELOC/source/latex/exam-n/exam-n.drv + RELOC/source/latex/exam-n/exam-n.dtx + RELOC/source/latex/exam-n/exam-n.ins +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-license lppl1.3 +catalogue-topics exam +catalogue-version 1.1.4 + +name exam-randomizechoices +category Package +revision 49662 +shortdesc Randomize mc choices using the exam class +relocated 1 +longdesc This package is an extension to the exam document class. It +longdesc provides the user with four new multiple choice typesetting +longdesc environments which place their content in a random order. It +longdesc can (only) be used in combination with the exam class. It can +longdesc only randomize the placement of choices in multiple choice +longdesc questions. The questions themselves cannot be randomized with +longdesc this package. Furthermore, the package provides a simple answer +longdesc key table typesetter and has a command for writing the answer +longdesc keys to an external file. +containersize 5352 +containerchecksum 0cb93637dda7a7813f8f89dba62db03cb1c1c6da5ce5dae596a14321fab8c46a5c6d67432c31855b66b37b0eb9086d23b5bf2881bf8fa41e410ed7a4724d84bc +doccontainersize 278136 +doccontainerchecksum 74daa43aa020898bf2a969e5f6fa09aea190209dd71eab222dde2b30cf2f6e12936b454a62b328aee59f6c3ae13bf5f7005ec3aba66766ade77672f74bb3ee8b +docfiles size=82 + RELOC/doc/latex/exam-randomizechoices/README.md details="Package Readme" + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices-doc.pdf details="Package documentation" + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices-doc.tex + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices.pdf + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices.tex +runfiles size=6 + RELOC/tex/latex/exam-randomizechoices/exam-randomizechoices.sty +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-license lppl1.3 +catalogue-topics exam +catalogue-version 0.1 + +name examdesign +category Package +revision 15878 +shortdesc LaTeX class for typesetting exams +relocated 1 +longdesc This bundle provides a class examdesign. The class provides +longdesc several features useful for designing tests or question sets: +longdesc it allows for explicit markup of questions and answers; the +longdesc class will, at the user's request, automatically generate +longdesc answer keys; multiple versions of the same test can be +longdesc generated automatically, with the ordering of questions within +longdesc each section randomly permuted so as to minimize cheating; the +longdesc generated answer keys can be constructed either with or without +longdesc the questions included; environments are provided to assist in +longdesc constructing the most common types of test question: matching, +longdesc true/false, multiple-choice, fill-in-the-blank, and short +longdesc answer/essay questions. +containersize 10780 +containerchecksum bf052063b16056faed35007a5e1b6e2bf4f116388b2698c24c7c00ff257fde4f0225f138af6c011f99d051085169b51357c8661647f28be07a7f6dfd330ac10c +doccontainersize 377000 +doccontainerchecksum 1870e3732933e0d69f52eff2c403011b09814938083b91bb428c776ef50140e1b43713837e018b09e8340dd5e47811aa1050bb9f90b350aa341216edb00c2a9b +docfiles size=121 + RELOC/doc/latex/examdesign/Bugs + RELOC/doc/latex/examdesign/Changes + RELOC/doc/latex/examdesign/INSTALL + RELOC/doc/latex/examdesign/README details="Package README" + RELOC/doc/latex/examdesign/examdesign.pdf details="Package documentation" + RELOC/doc/latex/examdesign/examplea.pdf + RELOC/doc/latex/examdesign/examplea.tex + RELOC/doc/latex/examdesign/exampleb.pdf + RELOC/doc/latex/examdesign/exampleb.tex + RELOC/doc/latex/examdesign/examplec.pdf + RELOC/doc/latex/examdesign/examplec.tex + RELOC/doc/latex/examdesign/foobar.tex +srccontainersize 29924 +srccontainerchecksum 8f755df76be154c4a2a1aa6d2814774a0b9398d0b64f7a59cd865e92e805dc3bfc84026a18dc449a2ebd6cb6215097e351037430de19960e957f314ae724e244 +srcfiles size=35 + RELOC/source/latex/examdesign/examdesign.dtx + RELOC/source/latex/examdesign/examdesign.ins +runfiles size=12 + RELOC/tex/latex/examdesign/examdesign.cls +catalogue-also exams exam +catalogue-ctan /macros/latex/contrib/examdesign +catalogue-license gpl +catalogue-topics exam class +catalogue-version 1.101 + +name example +category Package +revision 33398 +shortdesc Typeset examples for TeX courses +relocated 1 +longdesc The package makes it easier to produce examples for TeX course. +longdesc It provides an example environment, which typesets its contents +longdesc on the left of the page, and prints it verbatim on the right. +containersize 5516 +containerchecksum 2f790c1bb8934e1127ba64c61ccf0d9ed503c01cb8975c114257a2179db7d88b4c969475b0e357d17785fcf7e42487e991e176df3dd7a1be5db4cdf87abb9cad +runfiles size=4 + RELOC/tex/latex/example/example.sty +catalogue-also examplep +catalogue-ctan /macros/latex209/contrib/misc/example.sty +catalogue-license gpl +catalogue-topics listing + +name examplep +category Package +revision 55265 +shortdesc Verbatim phrases and listings in LaTeX +relocated 1 +longdesc Examplep provides sophisticated features for typesetting +longdesc verbatim source code listings, including the display of the +longdesc source code and its compiled LaTeX or MetaPost output +longdesc side-by-side, with automatic width detection and enabled page +longdesc breaks (in the source), without the need for specifying the +longdesc source twice. Special care is taken that section, page and +longdesc footnote numbers do not interfere with the main document. For +longdesc typesetting short verbatim phrases, a replacement for the \verb +longdesc command is also provided in the package, which can be used +longdesc inside tables and moving arguments such as footnotes and +longdesc section titles. The listings package is used for syntax +longdesc highlighting. The accompanying codep package and the wrfiles.pl +longdesc Perl script provide a convenient interface to the examplep +longdesc package for authors of manuals. With codep it is possible to +longdesc generate the source code, the LaTeX or MetaPost output and the +longdesc compilable example file from a single source embedded into the +longdesc appropriate place of the .tex document file. +containersize 33788 +containerchecksum 689c71afd2f5733b669b12c27014edc260ffca597b197ec0a91b5cc476bc6458699510bc5053863f9fa8ca47b9e2cda18939e734d3c23c7507f0646e0cbd9afa +doccontainersize 379128 +doccontainerchecksum 09fab96fddb1f42c6c5484e1716d1f2dda3f51c6c6f666343a79070aae079ad2bb67f210e51875621c4b4f8a30f9908d4bd53caa74c57ea8ec4ba330dbd721ea +docfiles size=142 + RELOC/doc/latex/examplep/README details="Readme" + RELOC/doc/latex/examplep/eurotex_2005_examplep.pdf details="Article from EuroTeX 2005 talk" + RELOC/doc/latex/examplep/eurotex_2005_examplep.tex + RELOC/doc/latex/examplep/houses.eps + RELOC/doc/latex/examplep/houses.pdf + RELOC/doc/latex/examplep/pexaminipage.eps + RELOC/doc/latex/examplep/pexaminipage.pdf + RELOC/doc/latex/examplep/shorthyp_t1xtts.eps + RELOC/doc/latex/examplep/shorthyp_t1xtts.pdf + RELOC/doc/latex/examplep/wrfiles.pl +runfiles size=34 + RELOC/tex/latex/examplep/codep.sty + RELOC/tex/latex/examplep/examplep.sty + RELOC/tex/latex/examplep/verbfwr.sty +catalogue-ctan /macros/latex/contrib/examplep +catalogue-license gpl +catalogue-topics listing macro-demo +catalogue-version 0.04 + +name exceltex +category Package +revision 26313 +shortdesc Get data from Excel files into LaTeX +longdesc Exceltex is a LaTeX package combined with a helper program +longdesc written in Perl. It provides an easy to use yet powerfull and +longdesc flexible way to get data from Spreadsheets into LaTeX. In +longdesc contrast to other solutions, exceltex does not seek to make the +longdesc creation of tables in LaTeX easier, but to get data from +longdesc Spreadsheets into LaTeX as easily as possible. The Excel (TM) +longdesc file format only acts as an interface between the spreadsheet +longdesc application and exceltex beacause it is easily accessible (via +longdesc the Spreadsheet::ParseExcel Perl module) and because most +longdesc spreadsheet applications are able to read and write Excel +longdesc files. +depend exceltex.ARCH +containersize 6572 +containerchecksum ef8495b4ef6937af022951044652ea1fb1dcd3f65961408e84a52f9053db8f4fde6703f18833ee9cd002bc058f01813ddf765f575200211563d6e16a956d3613 +doccontainersize 3016 +doccontainerchecksum a6c4ae60f2922af773f67494c30407b5b6ead39def9253b4710940774e619496a3c242f7e9bcc8733fc733234679bb2b01c6f4571e30dca16c8eb15ad8d6d01c +docfiles size=5 + texmf-dist/doc/latex/exceltex/CHANGES + texmf-dist/doc/latex/exceltex/INSTALL + texmf-dist/doc/latex/exceltex/README details="Readme" + texmf-dist/doc/latex/exceltex/README.TEXLIVE +runfiles size=6 + texmf-dist/scripts/exceltex/exceltex + texmf-dist/tex/latex/exceltex/exceltex.sty +catalogue-ctan /macros/latex/contrib/exceltex +catalogue-license gpl +catalogue-topics foreign-import +catalogue-version 0.5.1 + +name exceltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of exceltex +containersize 340 +containerchecksum 97cdc4f0a828e19dbdcaedaa2929625259a14a7a519b57bd1b88a352b21d9664f9683fac7f16c6ab7146ae7171d647e12e3ef8a39ba50b28a1a93d927f4e318b +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/exceltex + +name exceltex.amd64-freebsd +category Package +revision 25860 +shortdesc amd64-freebsd files of exceltex +containersize 340 +containerchecksum 5f72bea37e7bcf74917ae816c8e3b50e32fa8f6181632d853d10d5f279b20366af6abbb1b315996e06d0ef6d25c9fb218cb4e60019d2d6b9dbab98f4d59834c0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/exceltex + +name exceltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of exceltex +containersize 340 +containerchecksum 40f3fb4eea86c9f1e8d1ac30cdff7cecb23488ba1bd89145aa072dea26c9d9af80a29b70f878f374ea76bca702dee9baae10f55ae70ae7a0fad1e1a3f661c2e0 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/exceltex + +name exceltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of exceltex +containersize 340 +containerchecksum c93837661d91c71dcf03f1535168feef2ebba47e3ee7f4401d42bf1694006c024bdbb2982d245d81c21a0536a06642e4cfc7395bc76ca22e25c90f61c96fe251 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/exceltex + +name exceltex.i386-cygwin +category Package +revision 25860 +shortdesc i386-cygwin files of exceltex +containersize 336 +containerchecksum 9c64c4eed8fd3dfe41933929ccf15ec33eea1791f7bf83711a6fc66d7cbeb07d1462e70207b2133c1abbb774d2411ead8cce89e9539d8e306be3c1e19344f7c3 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/exceltex + +name exceltex.i386-freebsd +category Package +revision 25860 +shortdesc i386-freebsd files of exceltex +containersize 340 +containerchecksum 5d65b0475c670928c2255e9baf9fd81b344dbebd9fe77973bb0f2cc8f3c76837d6502be096ee5bb7f32ebb39155fd409e8eecea081b29ede5811a26d6871acd2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/exceltex + +name exceltex.i386-linux +category Package +revision 25860 +shortdesc i386-linux files of exceltex +containersize 340 +containerchecksum 3a9734631df1e62299f3430175f5dc7141df3043ed6746b834219b2bf8526dc50903dc3b19e246b9480e903fd67ce5ee871441c8f390197dbd27985d98102cb2 +binfiles arch=i386-linux size=1 + bin/i386-linux/exceltex + +name exceltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of exceltex +containersize 340 +containerchecksum b921018ccb00c9f98d5fd2ddb3d88969a45360d354c39838c633c33aad41beadbe3c09b1e8c27df8f18fd8ef9694265b7713baca9469d69b9ef4061a65cb4ff1 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/exceltex + +name exceltex.i386-solaris +category Package +revision 25860 +shortdesc i386-solaris files of exceltex +containersize 340 +containerchecksum 25286b1b10a3cb46579613ead15d6aabad5fec2b22bbdcc50499dda5041caacba6b9d980be807357017fc14d3bff90ea1a3acb86425e2db7ca8aeedbfecc455a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/exceltex + +name exceltex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of exceltex +containersize 336 +containerchecksum 973e0bb743e626ffac75869f19aa3b3fbbe3f3b49e30bed3385b854d675245d8a86a8a277712f479fceeef92a75aa2012d0f82d899c89f90808ab773f0da2850 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/exceltex + +name exceltex.win32 +category Package +revision 25860 +shortdesc win32 files of exceltex +containersize 684 +containerchecksum 46296faec291c923aa61bb93fd1328c221325eb1fb1568b217347418a48995e3c23729a7466d0972a2a294b9b17e8a927fa77ac8b77403989cdff13fadebd4c9 +binfiles arch=win32 size=1 + bin/win32/exceltex.exe + +name exceltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of exceltex +containersize 340 +containerchecksum 7a2451020d2e21f8343988308c53bd8ce08a810d66d32584b0bab8cd5fa65e669d9ac4992ae55d7cc3ddae3c28cc94e0a89461955d954950158cb8b2e4ea906a +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/exceltex + +name exceltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of exceltex +containersize 348 +containerchecksum 0d0ee5e8acb5668a194f705cd6257bd1e723a22cafc9eee762b1aac57bb24e4f17be0c2f709a411942a8b2667242ff45dcecd21facb6264c8cb5aa17ca53a068 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/exceltex + +name exceltex.x86_64-linux +category Package +revision 25860 +shortdesc x86_64-linux files of exceltex +containersize 340 +containerchecksum 0171a2f498f3f76b7c75865dad7438027523f3860d64306fdf40307694589df5871a8198afadf796a99fba0e117dcd189577f6d75aba0355d53c3f11f61b0b93 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/exceltex + +name exceltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of exceltex +containersize 344 +containerchecksum 2b0f91950f3bd54ce229d2b9504b9217f21671822ab364a9d7990a3bb87fa388292b9d76cd8aea4ee10193f80da661cee86a5fb1c2090f778bf5daf93f54becc +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/exceltex + +name exceltex.x86_64-solaris +category Package +revision 25860 +shortdesc x86_64-solaris files of exceltex +containersize 340 +containerchecksum f6d90ec70f9cc3d74a6e509628d6f52fcc3d46d11b899c6f9a077cc52ea7c45356d71504915bc252d42925f368c369a3307df49ee600639fe5e270b96d14de65 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/exceltex + +name excludeonly +category Package +revision 17262 +shortdesc Prevent files being \include-ed +relocated 1 +longdesc The package defines an \excludeonly command, which is (in +longdesc effect) the opposite of \includeonly. If both \includeonly and +longdesc \excludeonly exist in a document, only files "allowed" by both +longdesc will be included. The package redefines the internal \@include +longdesc command, so it conflicts with packages that do the same. +longdesc Examples are the classes paper.cls and thesis.cls. +containersize 1664 +containerchecksum b83426d7ff334e64f8a5566fa905f1c03478ff68da5b74b85dfd6c872db7a63454f627db4e6bea48f8048da0d84bd80b269cf5cd3a5b487484dcd8f2e21c5058 +doccontainersize 218824 +doccontainerchecksum 11f1a4e7b0bfeb5728ab632756fb612b784e7a8b46e68c2e5cb3681928811d394ac0b7f508e7c655945209b1e75837d4ec1a69bcaa6b0ac8d45d66302b4bcb13 +docfiles size=56 + RELOC/doc/latex/excludeonly/excludeonly.pdf details="Package documentation" + RELOC/doc/latex/excludeonly/excludeonly.tex +runfiles size=1 + RELOC/tex/latex/excludeonly/excludeonly.sty +catalogue-ctan /macros/latex/contrib/excludeonly +catalogue-license pd +catalogue-topics compilation +catalogue-version 1.0 + +name exercise +category Package +revision 35417 +shortdesc Typeset exercises, problems, etc. and their answers +relocated 1 +longdesc The package helps to typeset exercises or list of exercises +longdesc within any document. Exercises, questions and sub-questions are +longdesc automatically numbered. It is possible to put answers in the +longdesc same document, and display them immediatly, later in the +longdesc document or not to print answers at all. The layout of +longdesc exercises is fully customisable. It is possible to typeset long +longdesc problems, short exercises, questionnaires, etc. Usage of the +longdesc babel package is detected, but not fully supported yet (only +longdesc English and French are implemented). +containersize 7228 +containerchecksum 8de2044404690716d781a3b081181d9a14596487213762bb1ef426a0951dc18b1097a4cd8255bc7094d9d5e7f874e68181849c173a4932e7d07c46e14d1609b1 +doccontainersize 318960 +doccontainerchecksum 3059c297ecb8a990bac32e1e52bcd6fe39e6958c96c145ad70b937ba89284a6f447a84e2f144d31aefa1c446331c7ce80ccba926e288d7ade917c7aa68095076 +docfiles size=80 + RELOC/doc/latex/exercise/README details="Readme" + RELOC/doc/latex/exercise/exercise.pdf details="Package documentation" +srccontainersize 15012 +srccontainerchecksum fa76e8b16def4f53a968c897e12e37707c054c3a964f14ee9654bae4e7285a3d300d62f0a79ba7fd80b2fa15e9a334bf38f3a744f0c0f6c32659853bc9b57855 +srcfiles size=17 + RELOC/source/latex/exercise/exercise.dtx + RELOC/source/latex/exercise/exercise.ins +runfiles size=9 + RELOC/tex/latex/exercise/exercise.sty +catalogue-ctan /macros/latex/contrib/exercise +catalogue-license gpl2 +catalogue-topics exercise +catalogue-version 1.6 + +name exercisebank +category Package +revision 50448 +shortdesc Creating and managing exercises, and reusing them as composed sets +relocated 1 +longdesc This package makes it easier to maintain and edit your exercise +longdesc sets. Exercises are saved as separate files containing part +longdesc problems. These files can be used to make sets, and you can +longdesc cherry-pick or exclude certain part problems as you see fit. +containersize 8984 +containerchecksum 6398abee37218c1c4b0e21f7dcdc82b49985888c8e5cc4702fbe20942471cfcdb8bb37c66edf2c6764d9a38dcc932b8584f65bec8dcf75ba11c738705a71048e +doccontainersize 312648 +doccontainerchecksum d7b262b7a9ae3a45b69112e2924be8ec7cb2c13a8b973056e849cc5a0f4c82f85d4b5887a3286360b38c3459bc99ea9d917cd1084d6abf1ffc343d7ab522fed8 +docfiles size=88 + RELOC/doc/latex/exercisebank/README.txt details="Readme" + RELOC/doc/latex/exercisebank/example.zip details="Package example" + RELOC/doc/latex/exercisebank/exercisebank-doc.pdf details="Package documentation" + RELOC/doc/latex/exercisebank/exercisebank-doc.tex +runfiles size=9 + RELOC/tex/latex/exercisebank/exercisebank.sty +catalogue-contact-bugs https://github.com/Strauman/exercisebank/issues +catalogue-contact-repository https://github.com/Strauman/exercisebank +catalogue-ctan /macros/latex/contrib/exercisebank +catalogue-license lppl1.3c +catalogue-topics exercise exam doc-templ +catalogue-version 0.3.0 + +name exercisepoints +category Package +revision 49590 +shortdesc A LaTeX package to count exercises and points +relocated 1 +longdesc The package can be used to facilitate exercise counting and +longdesc exercise point counting in a LaTeX-document. It counts the +longdesc number of exercises and it sums all the points of the exercises +longdesc in a document. Especially for exams it is also common to have +longdesc an overview of all exercises and their maximal points. This is +longdesc also supported by this package by providing a macro to retrieve +longdesc the points of each exercise. +containersize 3088 +containerchecksum cc706842f62ffd982dfde7f503f226c7f7050099b581dbef6e5e7f85269e3110a738232f1a99752b353a54a91ae5ef145697ff36ad9df1fb69ce1051bf92858c +doccontainersize 228132 +doccontainerchecksum 81493e680086ce4d833e8e9107a056daa4e74e321964f914d8824e25b4dbd6c181b1e10d41ceecf27d18baa53958babf77b0edf4c0234e0b80a8a3f5ae49c348 +docfiles size=61 + RELOC/doc/latex/exercisepoints/README.md details="Readme" + RELOC/doc/latex/exercisepoints/exercisepoints.pdf details="Package documentation" + RELOC/doc/latex/exercisepoints/exercisepoints.tex +runfiles size=3 + RELOC/tex/latex/exercisepoints/exercisepoints.sty +catalogue-contact-bugs https://github.com/henningkerstan/exercisepoints/issues +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-license lppl1.3 +catalogue-topics exercise +catalogue-version 1.2.3 + +name exercises +category Package +revision 55188 +shortdesc Typeset exercises and solutions with automatic addition of points +relocated 1 +longdesc This package defines the environments exercise and solution. +longdesc The layout of these environments can be customized. The -- +longdesc optional -- points in the exercises can be added automatically. +longdesc The package also permits to hide the solutions. +containersize 2216 +containerchecksum 90ca30f7417076a9933970d6c8559317861015480ae5da813e19e0114a6838084317fad6a0b1aa295b7a8a8c49038007a36ebcf4ee83f54fc0e454a317943923 +doccontainersize 356220 +doccontainerchecksum ba5b8125bf2a59646f401c5d4968f1e00b5d9a35293bcfd7c67c54d275b8e4b1586a5f07ddd097065259935a541551a8b990f5dc737e1be8e78343382b7be72a +docfiles size=104 + RELOC/doc/latex/exercises/README.md details="Readme" + RELOC/doc/latex/exercises/exercises.pdf details="Package documentation (partly in German)" +srccontainersize 7728 +srccontainerchecksum 32728c5bd1bc6465bb82ab95f9c2a4fa4a403431a8369373d75861ef0d6af8850c108c223b6e202f03b53f87d52bbf45f07a81e75175c0896951cda89cf20ee1 +srcfiles size=10 + RELOC/source/latex/exercises/exercises.dtx + RELOC/source/latex/exercises/exercises.ins +runfiles size=3 + RELOC/tex/latex/exercises/exercises.sty +catalogue-ctan /macros/latex/contrib/exercises +catalogue-license lppl1.2 +catalogue-topics exercise +catalogue-version 1.1 + +name exesheet +category Package +revision 55916 +shortdesc Typesetting exercise or exam sheets +relocated 1 +longdesc This package is used for typesetting exercise or exam sheets. +longdesc In addition, the exesheet class loads the schooldocs package. +longdesc The package provides: macros to mark out exercises and +longdesc subparts, specific settings for enumeration lists, environments +longdesc for questions and answers, with conditional display, macros for +longdesc marking scheme with detailed comments. +containersize 3636 +containerchecksum 004142161c03b7ab411fb86661d955ed0d401f19e718e353c2df45671042340024695910afd489850617aa28ee63593ddd2e0b5a708d68ee5285a3a4f30516c2 +doccontainersize 178760 +doccontainerchecksum 54e8d5f23dd2cf26440e3b3078b0ecac1f1dbb18d19cc1a0e0b46344aa4dc6e48b7f07f62374a4f58563e3ad924fbd7189295a7747bf54bdaaf2d74a59f7301b +docfiles size=59 + RELOC/doc/latex/exesheet/README.md details="Readme" + RELOC/doc/latex/exesheet/exesheet.pdf details="Package documentation" +srccontainersize 16224 +srccontainerchecksum 04a35ecae44e9cd022fb23f7c7950288975fe91ca0b5bfceb640e198bef17e6d8cbb70df493b40cfe97ea3ce9bd6b0bab1f1c5c997217426f6bd6de8c25a8633 +srcfiles size=16 + RELOC/source/latex/exesheet/exesheet.dtx + RELOC/source/latex/exesheet/exesheet.ins +runfiles size=5 + RELOC/tex/latex/exesheet/exesheet.cls + RELOC/tex/latex/exesheet/exesheet.sty +catalogue-also schooldocs +catalogue-ctan /macros/latex/contrib/exesheet +catalogue-license lppl1.3 +catalogue-topics exam exercise +catalogue-version 1.0 + +name exframe +category Package +revision 53911 +shortdesc Framework for exercise problems +relocated 1 +longdesc This LaTeX2e package provides a general purpose framework to +longdesc describe and typeset exercises and exam questions along with +longdesc their solutions. The package features mechanisms to hide or +longdesc postpone solutions, to assign and handle points, to collect +longdesc problems on exercise sheets, to store and use metadata, and to +longdesc implement a consistent numbering. It also provides a very +longdesc flexible interface for configuring and customising the +longdesc formatting, layout, and representation of the exercise content. +containersize 10848 +containerchecksum 426128ad41db65598a47e0baf0e019b6592c996b10442edddd624d86524116df4e0fd01411c3ac2f4153ab1af6f3a960680a085a556f07a90ff2b326bfbc26b2 +doccontainersize 401556 +doccontainerchecksum c8f9913899a52815ddf7d96f033db62e248a92ddfbafea2091a93b55fd1bdcb01734177c7e234ac2de51383eea7e21afaf77164ce496c7858f95d63800461007 +docfiles size=115 + RELOC/doc/latex/exframe/README.txt details="Readme" + RELOC/doc/latex/exframe/exframe.pdf details="Package documentation" + RELOC/doc/latex/exframe/exfsamp.tex + RELOC/doc/latex/exframe/exfser01.tex + RELOC/doc/latex/exframe/exfser02.tex + RELOC/doc/latex/exframe/exfser03.tex + RELOC/doc/latex/exframe/exfseraa.tex + RELOC/doc/latex/exframe/exfserm.tex + RELOC/doc/latex/exframe/exfsermk.mak + RELOC/doc/latex/exframe/exfsermk.sh + RELOC/doc/latex/exframe/exfserpe.tex + RELOC/doc/latex/exframe/exfserpf.tex +srccontainersize 43532 +srccontainerchecksum 1a42fbe43846bf5e3a87b43b4e855a0f7b198aad0f0aa311a4e7c3632b4d45ef338f107484190461fa15dbfa8a52dc7fbbcf95ac00cde18281b2d58e931df060 +srcfiles size=57 + RELOC/source/latex/exframe/exframe.dtx + RELOC/source/latex/exframe/exframe.ins +runfiles size=16 + RELOC/tex/latex/exframe/exframe.sty +catalogue-ctan /macros/latex/contrib/exframe +catalogue-license lppl1.3 +catalogue-topics exam exercise +catalogue-version 3.4 + +name exp-testopt +category Package +revision 15878 +shortdesc Expandable \@testopt (and related) macros +relocated 1 +longdesc The package provides an expandable variant of the LaTeX kernel +longdesc command \@testopt, named \@expandable@testopt, and a more +longdesc general \@expandable@ifopt, both intended for package writers. +longdesc Also we have a variant of \newcommand which uses these macros +longdesc to check for optional arguments. +containersize 1764 +containerchecksum 26b5af9bdd06a3bbd231b1b55c4ae8929efa06655656747b804425e802fa7d07355e510ac673590cef235cceaf88fc03e1493f4bee9c99ce2a32c32b9a3f9aca +doccontainersize 85660 +doccontainerchecksum f4f7cda5cc8b3f8900cb12989834e5b1702f751248f58fe65a8d65ab69eb2a4118002212eefb609e251d4437579e635173366beb471e32d07d45c5c645ca506c +docfiles size=38 + RELOC/doc/latex/exp-testopt/README details="Readme (English)" language="en" + RELOC/doc/latex/exp-testopt/exp-testopt.pdf details="Package documentation (Esperanto)" language="eo" + RELOC/doc/latex/exp-testopt/exp-testopt.test +srccontainersize 6200 +srccontainerchecksum a41951719a9a4bc391216d3c5ed796b0f285a1a7049fa3617bae689127cffd32590ebd3212bf24b221bd7214128aaf564fa62e0a511f98f03961c16a39bc6fb9 +srcfiles size=5 + RELOC/source/latex/exp-testopt/exp-testopt.dtx + RELOC/source/latex/exp-testopt/exp-testopt.ins +runfiles size=1 + RELOC/tex/latex/exp-testopt/exp-testopt.sty +catalogue-ctan /macros/latex/contrib/exp-testopt +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.3 + +name expdlist +category Package +revision 15878 +shortdesc Expanded description environments +relocated 1 +longdesc The package provides additional features for the LaTeX +longdesc description environment, including adjustable left margin. The +longdesc package also allows the user to 'break' a list (for example, to +longdesc interpose a comment) without affecting the structure of the +longdesc list (this works for itemize and eumerate lists and numbered +longdesc lists remain in sequence). +containersize 2264 +containerchecksum fc0f0473faea3d8ffe917e654909374bef6b6d7e41d14c32acb3ee822748c6f37d1f5ab562b4bbfe35dde983f12cd9e1469bd2061aff32e3f79de66e6b3a6c32 +doccontainersize 140404 +doccontainerchecksum 624bbc4ce685589e7e6393cd991b6305d8a20419b4538f2e1728f9ffc004ef4d724831515b77a607093bf45b8cefefe3e6a352403ddcb543b690b314fb469ce4 +docfiles size=46 + RELOC/doc/latex/expdlist/expdlisg.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/expdlist/expdlist.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/expdlist/readme.txt +srccontainersize 9988 +srccontainerchecksum 6713de4d316d2be62338ac94d465393a9e20e16eb2a088ca9086f2e9ad0052f799e47d89768e38fb04a38ed07800cfe9cc505b578b517c2f4cadbe520ee1bda3 +srcfiles size=14 + RELOC/source/latex/expdlist/expdlisg.drv + RELOC/source/latex/expdlist/expdlist.drv + RELOC/source/latex/expdlist/expdlist.dtx + RELOC/source/latex/expdlist/expdlist.ins +runfiles size=2 + RELOC/tex/latex/expdlist/expdlist.sty +catalogue-ctan /macros/latex/contrib/expdlist +catalogue-license lppl +catalogue-topics list-descr +catalogue-version 2.4 + +name expex +category Package +revision 44499 +shortdesc Linguistic examples and glosses, with reference capabilities +relocated 1 +longdesc The package provides macros for typesetting linguistic examples +longdesc and glosses, with a refined mechanism for referencing examples +longdesc and parts of examples. The package can be used with LaTeX using +longdesc the .sty wrapper or with PlainTex. +containersize 19332 +containerchecksum b447a885d65a000f0b79b4c9b050bc89bb32b71426a29261d282fad72428fcf64dc6c660d9142114094bba32040c8e723190e553260c3899a1c1923ebb9f765e +doccontainersize 473776 +doccontainerchecksum b0dce6401ccdef7fbfebbcdef9d68f073058f935eabc95fa45619f4d4d85e6b53e15091d845593255c000c3e672dabadb1cef024b2b0c79765f4f6a231de86e6 +docfiles size=129 + RELOC/doc/generic/expex/README details="Readme" + RELOC/doc/generic/expex/doc-source.zip + RELOC/doc/generic/expex/expex-doc.pdf details="Package documentation" +runfiles size=24 + RELOC/tex/generic/expex/epltxchapno.sty + RELOC/tex/generic/expex/epltxfn.sty + RELOC/tex/generic/expex/eptexfn.tex + RELOC/tex/generic/expex/expex-demo.tex + RELOC/tex/generic/expex/expex.sty + RELOC/tex/generic/expex/expex.tex +catalogue-ctan /macros/generic/expex +catalogue-license lppl +catalogue-topics linguistic +catalogue-version 5.1b + +name expkv +category Package +revision 58853 +shortdesc An expandable key=val implementation +relocated 1 +longdesc expkv is a minimalistic but fast and expandable <key>=<val> +longdesc implementation. It provides two parsing macros: +longdesc \ekvset{<set>}{<key=val list>} which is comparable to keyval's +longdesc \setkeys. \ekvparse<cs1><cs2>{<key=val list>} which can be used +longdesc inside \expanded and expands to <cs1>{key} and <cs2>{key}{val} +longdesc for the entries in the <key=val list>. expkv has predictable +longdesc brace-stripping behaviour and handles commas and equal signs +longdesc with category codes 12 and 13 correctly. A key-defining +longdesc interface that is not as rudimentary as the macros provided in +longdesc this package is contained in expkv-def. +containersize 4328 +containerchecksum a5016cf99d20d912378e607b595bbf6f395ce6719212a61c97be5f33abe42ffa6de8469f5d2558303e11c8314dc6b2ca76bdb1eadecf674880947ecceb962f1b +doccontainersize 436532 +doccontainerchecksum 66996742be11a60607b34a33f134b18bc640474c039e713adb0d884970d83bad13424bad587a1f67d86c77ea3eabd15adeff3e2df82150df0811a6d87c29bd24 +docfiles size=110 + RELOC/doc/latex/expkv/README.md details="Readme" + RELOC/doc/latex/expkv/expkv.pdf details="Package documentation" +srccontainersize 23780 +srccontainerchecksum 34bdf0efbadd4ec92eaa185ad6528d76f57c6a2a5038acf5fe6cd791cf6aae4a60cdc3a80e52eabe155594362685461495c8cf05033f6e9b57ed69b44da3ccb5 +srcfiles size=24 + RELOC/source/latex/expkv/expkv.dtx +runfiles size=7 + RELOC/tex/generic/expkv/expkv.tex + RELOC/tex/latex/expkv/expkv.sty +catalogue-also expkv-def +catalogue-contact-repository https://github.com/Skillmon/tex_expkv +catalogue-ctan /macros/generic/expkv +catalogue-license lppl1.3c +catalogue-topics keyval +catalogue-version 1.7a + +name expkv-cs +category Package +revision 58852 +shortdesc Define expandable key=val macros using expkv +relocated 1 +longdesc This package is a frontend to define expandable macros with +longdesc key=val arguments. It provides four syntaxes, each of which +longdesc will define <cs> to take a single key=val argument: +longdesc ekvcSplit<cs>{<key>=<initial>, ...}{<definition>} +longdesc ekvcSplitAndForward<cs><cs2>{<key>=<initial>, ...} +longdesc ekvcHash<cs>{<key>=<initial>, ...}{<definition>} +longdesc ekvcHashAndForward<cs><cs2>{<key>=<initial>, ...} Additional +longdesc keys for each <cs> might be defined using +longdesc ekvcSecondaryKeys<cs>{<prefix> <key>=<definition>, ...} +longdesc expkv-cs is generic code and only requires expkv for its +longdesc parsing. A LaTeX package expkv-cs.sty is included to play +longdesc nicely on LaTeX's package loading system, but that package is +longdesc not needed and does not provide more functionality than the +longdesc generic code in expkv-cs.tex. Note: In this context, "cs" +longdesc stands for "control sequence" (i.e.: macro). +containersize 4496 +containerchecksum 1977dc2059d91d2448ef7c1fa9030b09509e7646d8c41a3ebac57fd01f76a3bcdf7d92f7abae56449367c568c6b56cc83c954308aff7d033442c8e0d52fa8c44 +doccontainersize 339600 +doccontainerchecksum 0341215d3600f6a6bde223fb3de26020a561036048f87b3a59b4bcb62eb3c57152edd926a60d3faeba91c3be8a4b9c34fd42a5e57db613d8b8f60d857c7c1abb +docfiles size=86 + RELOC/doc/latex/expkv-cs/README.md details="Readme" + RELOC/doc/latex/expkv-cs/expkv-cs.pdf details="Package documentation" +srccontainersize 17988 +srccontainerchecksum 05ae588d280da39c5fa093dd8c8565b66a23f3f7035a9288d79b14eba76cb8b04898cc5866751f1534a9300c0567de0dea28cc57092e1451f1c8e3942877584d +srcfiles size=20 + RELOC/source/latex/expkv-cs/expkv-cs.dtx +runfiles size=8 + RELOC/tex/generic/expkv-cs/expkv-cs.tex + RELOC/tex/latex/expkv-cs/expkv-cs.sty +catalogue-also expkv expkv-def +catalogue-contact-repository https://github.com/Skillmon/tex_expkv-cs +catalogue-ctan /macros/generic/expkv-cs +catalogue-license lppl1.3c +catalogue-topics keyval macro-supp macro-gen +catalogue-version 0.8 + +name expkv-def +category Package +revision 58814 +shortdesc A key-defining frontend for expkv +relocated 1 +longdesc This package provides a key=val interface to define keys for +longdesc expkv. This is done to provide a simple frontend to define +longdesc different common key types, similar to how keys are defined in +longdesc other well established key=value packages like pgfkeys or +longdesc l3keys. expkv-def is generic code and only requires expkv for +longdesc its parsing. There is a LaTeX package expkv-def.sty included to +longdesc play nicely on LaTeX's package loading system, but that package +longdesc is not needed and does not provide more functionality than the +longdesc generic code in expkv-def.tex. +containersize 5044 +containerchecksum 216cd38b12e51ef0376bbad0de7fb932933b5f67be778dce04e87210f5c591f9c2174d11966de123f0e8a6c4f128ad42cfb8a87947b08e45616109384a4a1025 +doccontainersize 382556 +doccontainerchecksum e3fdc674d1080efd2ffbe8edf59e12a2948b88d4ce240f7f915497b99792d040b5229e531702dfb224fca66e2957a4bb74cda74c3cf4cbcf55289c4c7d842400 +docfiles size=97 + RELOC/doc/latex/expkv-def/README.md details="Readme" + RELOC/doc/latex/expkv-def/expkv-def.pdf details="Package documentation" +srccontainersize 16680 +srccontainerchecksum 7da0f6a1c09019b0bce2d40144e2046f6a2dd1c9496efdf00c3fa14876a10f63cb38702ccc0c0317530ada9b4bbbf3d855d7541acea9b74059ad78b52d319c80 +srcfiles size=19 + RELOC/source/latex/expkv-def/expkv-def.dtx +runfiles size=8 + RELOC/tex/generic/expkv-def/expkv-def.tex + RELOC/tex/latex/expkv-def/expkv-def.sty +catalogue-also expkv +catalogue-contact-repository https://github.com/Skillmon/tex_expkv-def +catalogue-ctan /macros/generic/expkv-def +catalogue-license lppl1.3c +catalogue-topics keyval +catalogue-version 0.8 + +name expkv-opt +category Package +revision 58772 +shortdesc Parse class and package options with expkv +relocated 1 +longdesc This package provides option parsing for classes and packages +longdesc in LaTeX2e based on expkv. Global and local options are parsed +longdesc individually by different commands. The package supports +longdesc key=value options and keys without a value. expkv is the only +longdesc required package. +containersize 2908 +containerchecksum 8b6203aaeb7a2c86c355a67ad02857d5ddacf5e85f04143b0f0225c2fb4a00c1f6e88b6b1c5a872c1c092680ffbfb19148c8a97e8537babe97b969355b63fce0 +doccontainersize 264172 +doccontainerchecksum 12312e21d7d15e9ba60800243cebe4b7ab2ea52a31c37f25446b6fe0ef413e9d33d4066d139b3fca1375dc9cfe357a65ec58e7ef1d3b28472da368dedac3213c +docfiles size=67 + RELOC/doc/generic/expkv-opt/README.md details="Readme" + RELOC/doc/generic/expkv-opt/expkv-opt.pdf details="Package documentation" +srccontainersize 9288 +srccontainerchecksum 4fe886ef42bd181f521015225b92ae15a16d9b2d34001119f49bc417cddead7fccd437b0f4263c1f24525060a7f94f423db38fc8f677212fb330f690eaf9a676 +srcfiles size=17 + RELOC/source/generic/expkv-opt/expkv-opt-2020-10-10.dtx + RELOC/source/generic/expkv-opt/expkv-opt.dtx +runfiles size=6 + RELOC/tex/generic/expkv-opt/expkv-opt-2020-10-10.sty + RELOC/tex/generic/expkv-opt/expkv-opt.sty +catalogue-also expkv +catalogue-contact-repository https://github.com/Skillmon/tex_expkv-opt +catalogue-ctan /macros/generic/expkv-opt +catalogue-license lppl1.3c +catalogue-topics keyval +catalogue-version 0.2 + +name export +category Package +revision 27206 +shortdesc Import and export values of LaTeX registers +relocated 1 +longdesc The package allows the user to export/import the values of +longdesc LaTeX registers (counters, rigid and rubber lengths only). It +longdesc is not for faint-hearted users. The package may be used, for +longdesc example, to communicate between documents for the purposes of +longdesc dvipaste. +containersize 6396 +containerchecksum 04b5eac3e263fd692a1f4796ddccf7c5f41398075c9b15e65a0712cc83dcd85a65ae4506a882249e09c9ceea37f973be3398a0c31d2590e0c3e57549f07e9116 +doccontainersize 280332 +doccontainerchecksum 169236b497ce09d685c71bd21eb6c35ac260d5978c03f074371386062ce8219bac1e501878ba13b60677c423904ed11b37d8e018adae573d135a1e1cbfdb84a4 +docfiles size=70 + RELOC/doc/latex/export/00readme details="Readme" + RELOC/doc/latex/export/export.pdf details="Package documentation" +srccontainersize 9056 +srccontainerchecksum 844f1bb688d389fba93a7350b884b4cd5298ed6974d48218cd1cd2c863b9193e6d4d177f3ca1e905dfaa028f626fff4af4b9912ab9bf3eabd2bd9f4ce5d5da7d +srcfiles size=9 + RELOC/source/latex/export/export.dtx + RELOC/source/latex/export/export.ins + RELOC/source/latex/export/export.l +runfiles size=6 + RELOC/tex/latex/export/dvipaste.sty + RELOC/tex/latex/export/export.sty +catalogue-ctan /macros/latex/contrib/export +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.8 + +name expose-expl3-dunkerque-2019 +category Package +revision 54451 +shortdesc Using expl3 to implement some numerical algorithms +relocated 1 +longdesc An article, in French, based on a presentation made in +longdesc Dunkerque for the "stage LaTeX" on 12 June 2019. The articles +longdesc gives three examples of code in expl3 with (lots of) comments: +longdesc Knuth's algorithm to create a list of primes, the sieve of +longdesc Eratosthenes, Kaprekar sequences. The package contains the code +longdesc itself, the documentation as a PDF file, and all the files +longdesc needed to produce it. +containersize 612 +containerchecksum 9a642f593f0440159d802bfd78a472645dc1c320a43e8bfe91fd7eba3c0b67bc3ad9477c17b36f6ac08b39ddbaff11687e78694bc81134c33e1af085a9384a24 +doccontainersize 331036 +doccontainerchecksum d3b09af828ace720aa3f7b0fe979893f9fca3d358a69abd818bca7a81d45928cd02e0557bd607bcd91f223ad9f4808b0aeb61ba7269728d467eab46999ea5f92 +docfiles size=107 + RELOC/doc/latex/expose-expl3-dunkerque-2019/LISEZMOI.md + RELOC/doc/latex/expose-expl3-dunkerque-2019/Makefile + RELOC/doc/latex/expose-expl3-dunkerque-2019/README.md details="Readme" + RELOC/doc/latex/expose-expl3-dunkerque-2019/bibliographie/dun19expl3.bib + RELOC/doc/latex/expose-expl3-dunkerque-2019/codes/erato-def.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/codes/henel-def.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/codes/kaprekar-def.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/codes/knuth-def.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/dk19ecrireprem.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/dk19eratosthene.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/dk19intro.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/dk19kaprekar.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/dun19expl3.pdf details="The document itself" language="fr" + RELOC/doc/latex/expose-expl3-dunkerque-2019/dun19expl3.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/extensions/dun19codepres.sty + RELOC/doc/latex/expose-expl3-dunkerque-2019/glosaires/erato-supp-glo.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/glosaires/kaprekar-sup-glo.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/glosaires/les-macros.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/glosaires/termes-techniques.tex + RELOC/doc/latex/expose-expl3-dunkerque-2019/latexmkrc +catalogue-ctan /info/expose-expl3-dunkerque-2019 +catalogue-license lppl1.3 +catalogue-topics french-doc expl3 +catalogue-version 1.2 + +name expressg +category Package +revision 29349 +shortdesc Diagrams consisting of boxes, lines, and annotations +relocated 1 +longdesc A MetaPost package providing facilities to assist in drawing +longdesc diagrams that consist of boxes, lines, and annotations. +longdesc Particular support is provided for creating EXPRESS-G diagrams, +longdesc for example IDEF1X, OMT, Shlaer-Mellor, and NIAM diagrams. The +longdesc package may also be used to create UML and most other +longdesc Box-Line-Annotation charts, but not Gantt charts directly. +containersize 18616 +containerchecksum d380b7ca2efad2cdafc3ea6f2265452a85035765a221dd5cfeb33a03859dfca0e4cd01219995870c8943657d2525e25d32bf7e5b9fe8aa9afa8d17c1ac4703df +doccontainersize 467740 +doccontainerchecksum 9287376ba5aa36088b4a99455b727c0f60648d50421ebf2fd125542f208f490c5b57af256bf2b704f01a3e00e85e6023c69cb6dad529fb7521ee8cde74ae9559 +docfiles size=137 + RELOC/doc/metapost/expressg/README details="Package Readme" + RELOC/doc/metapost/expressg/aamfigs.pdf details="Examples of use" + RELOC/doc/metapost/expressg/aamfigs.tex + RELOC/doc/metapost/expressg/expeg.pdf + RELOC/doc/metapost/expressg/expeg.tex + RELOC/doc/metapost/expressg/expressg.pdf details="Package documentation" + RELOC/doc/metapost/expressg/n2mps.sh + RELOC/doc/metapost/expressg/n2mpsprl.prl +srccontainersize 45000 +srccontainerchecksum 4fc193835f6b283ebeb0906d847d54e99e5026ae53929b8855d78208212bc4ce6133359191830803298c1dfd07bcf7eb1e163fa12f8bf799a9eba381e11f7f82 +srcfiles size=53 + RELOC/source/metapost/expressg/expressg.dtx + RELOC/source/metapost/expressg/expressg.ins +runfiles size=23 + RELOC/metapost/expressg/aam.mp + RELOC/metapost/expressg/expeg.mp + RELOC/metapost/expressg/expressg.mp +catalogue-also metauml +catalogue-ctan /graphics/metapost/contrib/macros/expressg +catalogue-license lppl +catalogue-topics diagram graphics-in-tex +catalogue-version 1.5 + +name exsheets +category Package +revision 52227 +shortdesc Create exercise sheets and exams +relocated 1 +longdesc The package provides the means to create exercises or questions +longdesc and their corresponding solutions. The questions may be divided +longdesc into classes and/or topics and may be printed selectively. +longdesc Meta-data to questions can be added and recovered. The +longdesc solutions may be printed where they are, or collected and +longdesc printed at a later point in the document all together, +longdesc section-wise or selectively by ID. The package provides the +longdesc means to selectively include questions from an external file, +longdesc and to control the style of headings of both questions and +longdesc solutions. As of May 2017, this package has been superseded by +longdesc its official successor xsim. exsheets itself is now considered +longdesc obsolete, but will stay alive, and will continue to receive +longdesc bugfix releases. However, new features will not be added any +longdesc more. +containersize 24116 +containerchecksum c1263842d06916762306b0ead03cfec31535f40d41a0abe504366d0a762850f683b10563d47d149e89ddd75c18c3da7687a19b0a5bbe2b628acac1ed891a8285 +doccontainersize 694564 +doccontainerchecksum fbb9dc0826789f6c19734b0b50925d035f3b55a5402dce6ced4cf6881c032d784d5f219b222170961a5e1563b2dd8a5c64e7bcdd434ca61dec94a857451250a8 +docfiles size=196 + RELOC/doc/latex/exsheets/README details="Readme" + RELOC/doc/latex/exsheets/exsheets_en.pdf details="Package documentation" + RELOC/doc/latex/exsheets/exsheets_en.tex + RELOC/doc/latex/exsheets/grading-table.pdf + RELOC/doc/latex/exsheets/grading-table.tex +runfiles size=42 + RELOC/tex/latex/exsheets/exsheets-listings.sty + RELOC/tex/latex/exsheets/exsheets.sty + RELOC/tex/latex/exsheets/exsheets_configurations.cfg + RELOC/tex/latex/exsheets/exsheets_headings.cfg + RELOC/tex/latex/exsheets/exsheets_headings.def +catalogue-also xsim +catalogue-contact-repository https://bitbucket.org/cgnieder/exsheets/ +catalogue-ctan /macros/latex/contrib/exsheets +catalogue-license lppl1.3 +catalogue-topics exercise exam expl3 +catalogue-version 0.21k + +name exsol +category Package +revision 48977 +shortdesc Exercises and solutions from the same source, into a book +relocated 1 +longdesc This package provides macros to allow for embedding exercises +longdesc and solutions in the LaTeX source of an instructional text +longdesc (e.g., a book or a course text) while generating the following +longdesc separate documents: your original text that only contains the +longdesc exercises, and a solution book that contains only the solutions +longdesc to the exercises (optionally, the exercises themselves can also +longdesc be copied to the solution book). The exercise data are +longdesc generated when running LaTeX on your document; the first run +longdesc also writes the solutions to a secondary file that may be +longdesc included in a simple document harness, may be processed by +longdesc LaTeX, to generate a nice solution book. The code of the +longdesc package was derived (in large part) from fancyvrb. +containersize 3472 +containerchecksum ef7e031334a27a522f54c5ba5adee0fbfdb4cfefca6e8c1d4f67c8bc542c82bab6ee89d35f8ba8e65ed0b17107fd164c00ed416c64160991b59693f5b567b502 +doccontainersize 600428 +doccontainerchecksum b6c5dd47fba5d14560a2d2341f1d17b17eda0ce16a6198ec589f47143ab46fa71808aa6a40a43613cf906542ed9df7d164fb2c7fe5785bf414076934932c63b5 +docfiles size=169 + RELOC/doc/latex/exsol/LICENSE + RELOC/doc/latex/exsol/README details="Readme" + RELOC/doc/latex/exsol/example-formulacollection.pdf + RELOC/doc/latex/exsol/example-local.pdf + RELOC/doc/latex/exsol/example-solutionbook.pdf + RELOC/doc/latex/exsol/example.pdf + RELOC/doc/latex/exsol/exsol.pdf details="Package documentation" +srccontainersize 12552 +srccontainerchecksum 1fa45d6d526e94e0574d15396a6d191d6b00bba30ef996aa999bf2b77a5426263f1e0a94303c07ff139bf44b0a07f419c19ac1c854c32b02e4c43c397c8a85a3 +srcfiles size=13 + RELOC/source/latex/exsol/exsol.dtx + RELOC/source/latex/exsol/exsol.ins +runfiles size=4 + RELOC/tex/latex/exsol/exsol.sty +catalogue-ctan /macros/latex/contrib/exsol +catalogue-license lppl1.3 +catalogue-topics exercise +catalogue-version 1.4 + +name extarrows +category Package +revision 54400 +shortdesc Extra Arrows beyond those provided in amsmath +relocated 1 +longdesc Arrows are provided to supplement \xleftarrow and \xrightarrow +longdesc of the amsath package: \xlongequal, \xLongleftarrow, +longdesc \xLongrightarrow, \xLongleftrightarrow, \xLeftrightarrow. +longdesc \xlongleftrightarrow, \xleftrightarrow, \xlongleftarrow and +longdesc \xlongrightarrow. +containersize 896 +containerchecksum ebaceefc82c42bd0b0e341d6d2cc589f9369fceec0a71dd7da40f0228b0ef1fbdcc9ba95ee0990b47b4a202d15c87630e46867afd8e9d69fe02fa721bfd590c5 +doccontainersize 66404 +doccontainerchecksum c51c13205ebb78eabf181b4a927bf92ccfe6756d732162407d1e98961c6b50fc20143de05c992feab2b6622a80ad7556eb173d87264e4c0059cddd10eaf8506d +docfiles size=18 + RELOC/doc/latex/extarrows/README.md details="Readme" + RELOC/doc/latex/extarrows/extarrows-test.pdf details="Example of use" + RELOC/doc/latex/extarrows/extarrows-test.tex +runfiles size=1 + RELOC/tex/latex/extarrows/extarrows.sty +catalogue-contact-bugs https://github.com/viettug/extarrows/issues +catalogue-contact-repository https://github.com/viettug/extarrows +catalogue-ctan /macros/latex/contrib/extarrows +catalogue-license lgpl +catalogue-topics maths +catalogue-version 1.2.0 + +name exteps +category Package +revision 19859 +shortdesc Include EPS figures in MetaPost +relocated 1 +longdesc Exteps is a module for including external EPS figures into +longdesc MetaPost figures. It is written entirely in MetaPost, and does +longdesc not therefore require any post processing of the MetaPost +longdesc output. +containersize 2988 +containerchecksum 1991bc0b471276ca3db68a8ba7611becc4557de4335a321b5c3e92c1fefbe34dc0488ab44850835b5ceb1684ce429e7756fb86d885e2da2177e0d9081797aa0c +doccontainersize 108708 +doccontainerchecksum aac2e20a993818576f9e1efb153e9285b17b48827a1547a0c1033f22fa1a52f84ede214b4322ce4c6ddff69b8736f214f27370b3f1c006ea6e5fe2ab9fd64304 +docfiles size=55 + RELOC/doc/metapost/exteps/LICENSE + RELOC/doc/metapost/exteps/README + RELOC/doc/metapost/exteps/delfin + RELOC/doc/metapost/exteps/exteps.pdf details="Package documentation" + RELOC/doc/metapost/exteps/exteps.tex +runfiles size=3 + RELOC/metapost/exteps/exteps.mp +catalogue-ctan /graphics/metapost/contrib/macros/exteps +catalogue-license gpl +catalogue-topics graphics-prep +catalogue-version 0.41 + +name extpfeil +category Package +revision 16243 +shortdesc Extensible arrows in mathematics +relocated 1 +longdesc The package provides some more extensible arrows (usable in the +longdesc same way as \xleftarrow from amsmath), and a simple command to +longdesc create new ones. +containersize 1672 +containerchecksum 5cfe0172ad420c3ca53c57be33fc56b205ba05a11876e4d14c6d86387788c73370bc0708bee46e43a02f10ce9db4b3611b4ee337ace44fe8fbcb2ca82f88b2f7 +doccontainersize 110584 +doccontainerchecksum 8c2983b2e777e21e95d6ce1b9b4732491ad8a931205adb071877bf966fbbdc4306b88b35db87db4c3fa0bc52cfd333f721de2e1e7d233ba3c91d192a3574171a +docfiles size=35 + RELOC/doc/latex/extpfeil/README details="Readme" + RELOC/doc/latex/extpfeil/extpfeil.pdf details="Benutzerdoku" language="de" +srccontainersize 6536 +srccontainerchecksum 6dfefa85e111b39bd46b2f39ae52e94a053569fbb0b263bdf02996bcb122913cbb999ed6c060e00a12a88e0ea9b187fe2e33a990bd75fd1f6f78082d8859071a +srcfiles size=6 + RELOC/source/latex/extpfeil/extpfeil.dtx + RELOC/source/latex/extpfeil/extpfeil.ins +runfiles size=1 + RELOC/tex/latex/extpfeil/extpfeil.sty +catalogue-ctan /macros/latex/contrib/extpfeil +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.4 + +name extract +category Package +revision 52117 +shortdesc Extract parts of a document and write to another document +relocated 1 +longdesc The package provides the means to extract specific content from +longdesc a source document and write that to a target document. One +longdesc could, for instance, use this to extract all exercises from +longdesc lecture notes and generate an exercises book on the fly. The +longdesc package also provides an environment which writes its body +longdesc entirely to the target file. Another environment will write to +longdesc the target file, but will also execute the body. This allows to +longdesc share code (for instance, a preamble) between the source +longdesc document and the target file. Finally, the package provides an +longdesc interface to conditionally extract content. With a single +longdesc package option, one can specify exactly which commands (counted +longdesc from the start of the document) should be extracted and which +longdesc not. This might be useful for extracting specific slides from a +longdesc presentation and use them in a new file. +containersize 4356 +containerchecksum 32889da48868c2335866bb5c229728f9a37dcfe552830ca03ad3b704d1f7a471ee120de2ffed07bcf50797f7e34dd6fce53c77f1b63d15071888171d44cc938e +doccontainersize 165740 +doccontainerchecksum 64fd270a61f5e5f39442a56bb7a20606854b45a995b9a455604139df8006a1b198ae332669de09c1baa5dee5ccdf59e5989d21c17376a764a096f535ceff3f48 +docfiles size=69 + RELOC/doc/latex/extract/README details="Package README" + RELOC/doc/latex/extract/extract.bib + RELOC/doc/latex/extract/extract.pdf details="Package documentation" + RELOC/doc/latex/extract/xtrex1.tex + RELOC/doc/latex/extract/xtrex2.tex + RELOC/doc/latex/extract/xtrex3.tex + RELOC/doc/latex/extract/xtrex4.tex + RELOC/doc/latex/extract/xtrex5.tex + RELOC/doc/latex/extract/xtrex6.tex + RELOC/doc/latex/extract/xtrex7.tex + RELOC/doc/latex/extract/xtrpream.ble +srccontainersize 17656 +srccontainerchecksum c94663034b4069bb47f611b761f08df36e2e69705d491ad0405d826d81d07f0862dd2a7963cc1bfb0f071ca4ac56aedc96debdfbbb35b097a6a49f863ac3de2a +srcfiles size=19 + RELOC/source/latex/extract/extract.dtx +runfiles size=5 + RELOC/tex/latex/extract/extract.sty +catalogue-ctan /macros/latex/contrib/extract +catalogue-license lppl1.3 +catalogue-topics editorial +catalogue-version 1.9a + +name extsizes +category Package +revision 17263 +shortdesc Extend the standard classes' size options +relocated 1 +longdesc Provides classes extarticle, extreport, extletter, extbook and +longdesc extproc which provide for documents with a base font size from +longdesc 8-20pt. There is also a LaTeX package, extsizes.sty, which can +longdesc be used with nonstandard document classes. But it cannot be +longdesc guaranteed to work with any given class. +containersize 11704 +containerchecksum 5b000d25ff594af2895408f0d83eeb0e7d6dd5604c53d5acd835898197e44fb88ed2469039489b75b45678f28182dc88a0af56ed1b1730be2ce41e6e81f13b7c +doccontainersize 195100 +doccontainerchecksum 9bfa898f7eab416beaee2938902fc0f3a5ddcf1ce972f30d18a683756fb53bc8f66ef1220bd3bbe6ca6a473959a67c55c18a7996eb095ef301da8b594f42d3ae +docfiles size=54 + RELOC/doc/latex/extsizes/README details="Readme" + RELOC/doc/latex/extsizes/extsizes.pdf details="Package documentation" + RELOC/doc/latex/extsizes/extsizes.tex + RELOC/doc/latex/extsizes/readme.extsizes +runfiles size=35 + RELOC/tex/latex/extsizes/autopagewidth.sty + RELOC/tex/latex/extsizes/extarticle.cls + RELOC/tex/latex/extsizes/extbook.cls + RELOC/tex/latex/extsizes/extletter.cls + RELOC/tex/latex/extsizes/extproc.cls + RELOC/tex/latex/extsizes/extreport.cls + RELOC/tex/latex/extsizes/extsizes.sty + RELOC/tex/latex/extsizes/size14.clo + RELOC/tex/latex/extsizes/size17.clo + RELOC/tex/latex/extsizes/size20.clo + RELOC/tex/latex/extsizes/size8.clo + RELOC/tex/latex/extsizes/size9.clo +catalogue-ctan /macros/latex/contrib/extsizes +catalogue-license lppl +catalogue-topics book-pub class +catalogue-version 1.4a + +name facsimile +category Package +revision 21328 +shortdesc Document class for preparing faxes +relocated 1 +longdesc The facsimile class provides a simple interface for creating a +longdesc document for sending as a fax, with LaTeX. The class covers two +longdesc areas: First, a title page is created with a detailed fax +longdesc header; second, every page gets headers and footers so that the +longdesc recipient can be sure that every page has been received and all +longdesc pages are complete, and in the correct order. The class evolved +longdesc from the fax package, and provides much better language +longdesc support. +containersize 4456 +containerchecksum 3a179a3abcc33bd0f48bf267338c8a7dc0186f7eed097af74cfd8a936956952fb50876dea447839738842fad34c724c057f577d427a82fd82f85c7e8ab80c8ab +doccontainersize 28932 +doccontainerchecksum 36da402d7b15601ad768aa1e07f356812ddf0a09b30d19c13bfecaeac847537caa3be31036cb80441370b6c046dee24b13aa3e04f339476e9ecd18cf09c8c9cf +docfiles size=12 + RELOC/doc/latex/facsimile/README details="Readme" + RELOC/doc/latex/facsimile/example.tex + RELOC/doc/latex/facsimile/facsimile.pdf details="Package documentation" +srccontainersize 10960 +srccontainerchecksum ad8f90796cdeefe11e6c12e254c4571f2be57f5cbeca8b68e301d857a0ef8e52fbb1e32eb2d39e6d6b8c7ea19af58f6087c67c9bcee58e84a32038f18bde223b +srcfiles size=11 + RELOC/source/latex/facsimile/facsimile.dtx + RELOC/source/latex/facsimile/facsimile.ins +runfiles size=5 + RELOC/tex/latex/facsimile/fac-de.cfg + RELOC/tex/latex/facsimile/fac-en.cfg + RELOC/tex/latex/facsimile/facsimile.cls +catalogue-ctan /macros/latex/contrib/facsimile +catalogue-license lppl +catalogue-topics letter class +catalogue-version 1.0 + +name factura +category Package +revision 56948 +shortdesc Typeset and calculate invoices according to Venezuelan law +relocated 1 +longdesc 'factura' is the Spanish word for 'invoice', so this is a LaTeX +longdesc class for typesetting and calculating invoices, taking into +longdesc account requirements of SENIAT legislation (tax collector +longdesc entity on the Bolivarian Republic of Venezuela). However, its +longdesc use is not restricted to Venezuela because all variables and +longdesc the displayed text can be redefined by invoking commands or +longdesc editing. +containersize 27112 +containerchecksum a4c20cd7b7b2dbc58cd7d1e2c7cdde59710c9363a7e4878825d5aaeffa992bbf471169bdfa01c83aaf3e82aa96ab5fc634676656e2e4e6bff55cf5c4e5407f53 +doccontainersize 784052 +doccontainerchecksum 7822a8f8cef63485f2c707e180c14b67148cbde8f8f1b6d1ec6bd0d9f6e124cf4b63bafc7d01c6ec72c8b5f1edc36f68f9f48b9bac523ceaa093a861a5790f2c +docfiles size=300 + RELOC/doc/latex/factura/README details="Readme" + RELOC/doc/latex/factura/factura-beispiel-rechnung.tex + RELOC/doc/latex/factura/factura-ejemplo-aux.tex + RELOC/doc/latex/factura/factura-ejemplo-cotizacion.tex + RELOC/doc/latex/factura/factura-ejemplo-factura01.tex + RELOC/doc/latex/factura/factura-ejemplo-factura02.tex + RELOC/doc/latex/factura/factura-ejemplo-factura03.tex + RELOC/doc/latex/factura/factura-ejemplo-factura04.tex + RELOC/doc/latex/factura/factura-ejemplo-factura05.tex + RELOC/doc/latex/factura/factura-ejemplo-factura06.tex + RELOC/doc/latex/factura/factura-ejemplo-factura07.tex + RELOC/doc/latex/factura/factura-ejemplo-factura08.tex + RELOC/doc/latex/factura/factura-ejemplo-factura09.tex + RELOC/doc/latex/factura/factura-ejemplo-factura10.tex + RELOC/doc/latex/factura/factura-ejemplo-firma.tex + RELOC/doc/latex/factura/factura-ejemplo-fondo.tex + RELOC/doc/latex/factura/factura-ejemplo-membrete.tex + RELOC/doc/latex/factura/factura-ejemplo-notadecredito.tex + RELOC/doc/latex/factura/factura-ejemplo-notadedebito.tex + RELOC/doc/latex/factura/factura-ejemplo-prefactura.pdf details="Compiled sample" + RELOC/doc/latex/factura/factura-ejemplo-prefactura.tex + RELOC/doc/latex/factura/factura-ejemplo-reporte1.tex + RELOC/doc/latex/factura/factura-ejemplo-reporte2.tex + RELOC/doc/latex/factura/factura-ejemplo-reporte3.tex + RELOC/doc/latex/factura/factura.pdf details="Package documentation" language="es-ve" +srccontainersize 73520 +srccontainerchecksum 14b3c407a61583fb5cf3813d7ef379fe34415f10b985d7e71dba622dda7b118dbb197e7c8b1cb2cbb45378e38eb333f539c4e95daeb57253983699e3015e4395 +srcfiles size=84 + RELOC/source/latex/factura/factura.dtx +runfiles size=34 + RELOC/tex/latex/factura/factura.cls + RELOC/tex/latex/factura/factura.def +catalogue-ctan /macros/latex/contrib/factura +catalogue-license lppl1.3c +catalogue-topics invoice spanish class +catalogue-version 4.00 + +name facture +category Package +revision 43865 +shortdesc Generate an invoice +relocated 1 +longdesc Une classe simple permettant de produire une facture, avec ou +longdesc sans TVA, avec gestion d'une adresse differente pour la +longdesc livraison et pour la facturation. A simple class that allows +longdesc production of an invoice, with or without VAT; different +longdesc addresses for delivery and for billing are permitted. +containersize 3284 +containerchecksum 6657931eb2c0a134c53cd9271109552d4b8848247198fee9aa8d9010ff2faa4909416484dec8809d7ddc58b4202f9e2a97c5b97279e5432a1e928f91d7cde71a +doccontainersize 156268 +doccontainerchecksum a96e30b15f1fa827fa4dafd3594e8b98ee8c17c23056926d82243955971225d5a4bdf41a1a2a5b19049619c2eabc1b8529db70adce17bc126c0e1e3be7ecb2df +docfiles size=46 + RELOC/doc/xelatex/facture/README details="Readme (in French)" language="fr" + RELOC/doc/xelatex/facture/exemple.pdf + RELOC/doc/xelatex/facture/exemple.tex + RELOC/doc/xelatex/facture/exemplesansTVA.pdf + RELOC/doc/xelatex/facture/exemplesansTVA.tex + RELOC/doc/xelatex/facture/exemplesansremise.pdf + RELOC/doc/xelatex/facture/exemplesansremise.tex + RELOC/doc/xelatex/facture/facture.pdf details="Package documentation" language="fr" + RELOC/doc/xelatex/facture/makefile +srccontainersize 7356 +srccontainerchecksum 2612d792d95e3e22727e3e7ac4c4932e1f25c3788ebf6b4eb1be76727c52694a65c378f13ce917f9cec3975468f79f7a6d62adf4f125c57e6b644076d22e7bce +srcfiles size=7 + RELOC/source/xelatex/facture/facture.dtx + RELOC/source/xelatex/facture/facture.ins +runfiles size=3 + RELOC/tex/xelatex/facture/facture.cls +catalogue-also invoice factura +catalogue-contact-repository https://github.com/maieul/facture +catalogue-ctan /macros/xetex/latex/facture +catalogue-license cc-by-sa-2 +catalogue-topics invoice class xetex +catalogue-version 1.2.2 + +name facture-belge-simple-sans-tva +category Package +revision 49004 +shortdesc Simple Belgian invoice without VAT +relocated 1 +longdesc This package can be used to generate invoices for Belgian +longdesc individuals who do not have a VAT number and who wish to do +longdesc occasional work, or to carry out paid additional activities +longdesc during their free time up to 6,000 euros per calendar year +longdesc (amount indexed annually) without having to pay tax or social +longdesc security contributions (see the website Activites +longdesc complementaires). The package can also generate expense +longdesc reports. All totals are calculated automatically, in the +longdesc invoice and in the expense report. The package depends on +longdesc calctab, ifthen, hyperref, fancyhdr, multirow, eurosym, color, +longdesc and colortbl. +containersize 1092 +containerchecksum 90d1ed96793b0463f14fffcef020ae58673df10bf511756387eb38bb2659ae3e362f52d898996410447bb5304f3950325fdaa25841ac4351b4584da951da2b4e +doccontainersize 275728 +doccontainerchecksum f111fd7a81812aa0d65c4143751bf0bc331f8de248876f81c5517301d8a9743cf2e091de6180e3ec1d74a646ec539b65f0f1d8068ad1eb5e6638cbb783b4f420 +docfiles size=103 + RELOC/doc/xelatex/facture-belge-simple-sans-tva/LICENSE + RELOC/doc/xelatex/facture-belge-simple-sans-tva/README.md details="Readme" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-facture.pdf details="Example of use (invoice)" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-facture.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-note-de-frais.pdf details="Example of use (expense report)" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-note-de-frais.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/communs-facture-note-about.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/communs-facture-note.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/facture-belge-simple-sans-tva-doc.pdf details="Package documentation" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/facture-belge-simple-sans-tva-doc.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/facture-sans-tva.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/line_bas.png + RELOC/doc/xelatex/facture-belge-simple-sans-tva/line_haut.png + RELOC/doc/xelatex/facture-belge-simple-sans-tva/note-de-frais.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/signature.png +runfiles size=1 + RELOC/tex/xelatex/facture-belge-simple-sans-tva/facture-belge-simple-sans-tva.sty +catalogue-contact-announce https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/wikis/Annonces +catalogue-contact-bugs https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/issues +catalogue-contact-development http://myblog.robert.sebille.name/spip.php?page=contact +catalogue-contact-home https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/wikis/home +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-license lppl1.3c +catalogue-topics invoice xetex +catalogue-version 2.1 + +name faktor +category Package +revision 15878 +shortdesc Typeset quotient structures with LaTeX +relocated 1 +longdesc The package provides the means to typeset factor structures, as +longdesc are used in many areas of algebraic notation. The structure is +longdesc similar to the 'A/B' that is provided by the nicefrac package +longdesc (part of the units distribution), and by the xfrac package; the +longdesc most obvious difference is that the numerator and denominator's +longdesc sizes do not change in the \faktor command. +containersize 1420 +containerchecksum 5c598fbb40d7b37ee5b66bc1bfa8b0b2a0b45f7e22c992e6d0c85ed952a79a120803d41f9b4a13bcbbd6424c555c8b9ba6adb4eb79d1056fbf759008f9b741af +doccontainersize 80952 +doccontainerchecksum 57934606287afaf1471f1207af5d0e97533a504aa83324069154e88e70f10779d2eb19ed2a9e177c5a4b2cce4203b576272fd2513d989d4ee276330305597034 +docfiles size=26 + RELOC/doc/latex/faktor/README details="Readme and basic instructions" + RELOC/doc/latex/faktor/faktor.pdf details="Benutzerdoku" language="de" +srccontainersize 4296 +srccontainerchecksum 01f22e60260621a41e4efd6681b6fa226f7461f47348a79dbd75f214d606c6af2fa54d904792e653d1accc22298385d4cd658c204e653e4320e2932d742da28e +srcfiles size=3 + RELOC/source/latex/faktor/faktor.dtx + RELOC/source/latex/faktor/faktor.ins +runfiles size=1 + RELOC/tex/latex/faktor/faktor.sty +catalogue-ctan /macros/latex/contrib/faktor +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.1b + +name fancybox +category Package +revision 18304 +shortdesc Variants of \fbox and other games with boxes +relocated 1 +longdesc Provides variants of \fbox: \shadowbox, \doublebox, \ovalbox, +longdesc \Ovalbox, with helpful tools for using box macros and flexible +longdesc verbatim macros. You can box mathematics, floats, center, +longdesc flushleft, and flushright, lists, and pages. +containersize 7704 +containerchecksum 752e26abee96dd2bbf77b30a6d98d48a1673632d5601d28bba5799e845a015357b96302f3f1d8977f0458003d3456df4694884a05ccb6124b76ca8f7fc84fcbf +doccontainersize 277920 +doccontainerchecksum 2c3e0466198d392af57b2bda16f80589a9aa9db992272980a2e7ab9d7d1842d7e8f2980003b3b09648cfe0b9a1977562534ca54fae120bd7e4d950d25a83c0c2 +docfiles size=84 + RELOC/doc/latex/fancybox/Changes + RELOC/doc/latex/fancybox/Makefile + RELOC/doc/latex/fancybox/README details="Readme" + RELOC/doc/latex/fancybox/fancybox-doc.pdf details="Documentation -- Box tips and tricks:" + RELOC/doc/latex/fancybox/fancybox-doc.tex +runfiles size=7 + RELOC/tex/latex/fancybox/fancybox.sty +catalogue-ctan /macros/latex/contrib/fancybox +catalogue-license lppl1.2 +catalogue-topics boxing +catalogue-version 1.4 + +name fancyhandout +category Package +revision 46411 +shortdesc A LaTeX class for producing nice-looking handouts +relocated 1 +longdesc This package breaks with some of LaTeX's principles and +longdesc redefines basic LaTeX commands with the aim of producing +longdesc well-designed and clearly structured handouts: A sans-serif +longdesc font is used by default; sections are not numbered, but +longdesc highlighted by underlining; head- and footline display document +longdesc information; and in order to avoid too much whitespace around +longdesc the text the margin sizes are adjusted to smaller values. All +longdesc in all, fancyhandout provides a means of typesetting documents +longdesc not exclusively consisting of running text in a beautiful way. +longdesc fancyhandout depends on the following other LaTeX packages: +longdesc csquotes, enumitem, etoolbox, fancyhdr, geometry, and xcolor. +containersize 3364 +containerchecksum 0091703483cab573f9c9202603d31e310baafe932f929ad852c23d2ca97f21681637bb3ae34fd3d916f3e50f553b42ab1682b437f5a63b67c6dc4b7b7f202c80 +doccontainersize 71460 +doccontainerchecksum be4c7b2caf2e85ec192f3aded87309ee2361fbb7e8fd1225f8f98f96446251aacd69e04e306473d06e14c8a8b686dd7a1c54cb0311bc4138fc9c34fa2d528ddf +docfiles size=21 + RELOC/doc/latex/fancyhandout/README.md details="Readme" + RELOC/doc/latex/fancyhandout/fancyhandout-doc.pdf details="Package documentation" + RELOC/doc/latex/fancyhandout/fancyhandout-doc.tex +runfiles size=3 + RELOC/tex/latex/fancyhandout/fancyhandout.cls +catalogue-contact-bugs https://github.com/sfr682k/fancyhandout/issues +catalogue-contact-repository https://github.com/sfr682k/fancyhandout +catalogue-ctan /macros/latex/contrib/fancyhandout +catalogue-license lppl1.3c +catalogue-topics class presentation + +name fancyhdr +category Package +revision 57672 +shortdesc Extensive control of page headers and footers in LaTeX2e +relocated 1 +longdesc The package provides extensive facilities, both for +longdesc constructing headers and footers, and for controlling their use +longdesc (for example, at times when LaTeX would automatically change +longdesc the heading style in use). +containersize 5112 +containerchecksum 57a60833cb1e75b2c6f3c95484dd36da6a21704732f0309d2d1252824b458dbdf34092411299ccd27a4cd5202b4bdb710b920d96b970c9b58bfdca4889aba820 +doccontainersize 784500 +doccontainerchecksum 6b054701df4a35a4422f0248f6fed134f3321e8fc194b7095f5b0824f6a1d325db23cbe34e973dee061c5a571b76b61618d482f3fa2219911c34c981ac51a1ea +docfiles size=194 + RELOC/doc/latex/fancyhdr/README details="Readme" + RELOC/doc/latex/fancyhdr/fancyhdr.pdf details="Users' manual (English)" +srccontainersize 46044 +srccontainerchecksum fa39b94e25a2730164f5218ddf77dabcf1edffa5448533b39a22f50ce45481405bde47f61e1967c8634636f1ad111069b9d68450127f5ff7b1bad66470248efb +srcfiles size=48 + RELOC/source/latex/fancyhdr/fancyhdr.dtx + RELOC/source/latex/fancyhdr/fancyhdr.ins +runfiles size=7 + RELOC/tex/latex/fancyhdr/extramarks.sty + RELOC/tex/latex/fancyhdr/fancyhdr.sty + RELOC/tex/latex/fancyhdr/fancyheadings.sty +catalogue-also titleps +catalogue-contact-bugs https://github.com/pietvo/fancyhdr/issues +catalogue-contact-repository https://github.com/pietvo/fancyhdr +catalogue-ctan /macros/latex/contrib/fancyhdr +catalogue-license lppl1.3 +catalogue-topics page-hf +catalogue-version 4.0.1 + +name fancyhdr-it +category Package +revision 21912 +shortdesc Italian translation of fancyhdr documentation +relocated 1 +longdesc The translation is of documentation provided with the fancyhdr +longdesc package. +containersize 396 +containerchecksum 6899f3c11ed4a8f7476fe954166ea7576446b670d0b22737766927fcd29eb24e6143ff3031b974856562a7ff55e68f208164729618a4d28d28b856919f2a666b +doccontainersize 260656 +doccontainerchecksum cda5ff0581545e4eca9787b27dddcdad226b5dc9a630773b13073e9248b7b30b985fa5f5fc1bc5380e5a0d96f06c666d4e7e73168afbc2fa4ed0dd202967dafa +docfiles size=114 + RELOC/doc/latex/fancyhdr-it/Makefile + RELOC/doc/latex/fancyhdr-it/README details="Readme" + 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-license lppl +catalogue-topics italian-doc + +name fancylabel +category Package +revision 46736 +shortdesc Complex labelling with LaTeX +relocated 1 +longdesc The package provides a complex labelling scheme. It is designed +longdesc to support the needs of the author's chemschemex package +containersize 5288 +containerchecksum 950455301b0bf3ea3be0817a45c4e7453ba95c8afd397c1cf9ebf559f160e2828f414f0dca4647a80481f6e8daa0902e24692469023c21ba844afe1edda60b2f +doccontainersize 230456 +doccontainerchecksum 3a05f2b388eb2a22a0b48b4761b3964c7b0c616eaf0c8adcbd4f375a3dd059b3d3b0831e754842bc084123fff7a12f59c87c5c5b362739c062f36a215dca2ca3 +docfiles size=58 + RELOC/doc/latex/fancylabel/README + RELOC/doc/latex/fancylabel/fancylabel.pdf details="Package documentation" +srccontainersize 10452 +srccontainerchecksum 5d0ae7fd455b679221c1877a5a8fe58da76d3db96de7bb6eaba24c50ef9a0bbc3252858276e4f0c6b81161f65e985911ab1608bca21418335e23189a2ddac425 +srcfiles size=17 + RELOC/source/latex/fancylabel/fancylabel.dtx + RELOC/source/latex/fancylabel/fancylabel.ins +runfiles size=9 + RELOC/tex/latex/fancylabel/fancylabel.sty +catalogue-ctan /macros/latex/contrib/fancylabel +catalogue-license lppl1.2 +catalogue-topics label-ref chemistry +catalogue-version 1.1 + +name fancynum +category Package +revision 15878 +shortdesc Typeset numbers +relocated 1 +longdesc A LaTeX package for typesetting numbers, in particular floating +longdesc point numbers, such as you find in program output. +containersize 1456 +containerchecksum 93e1b88ca722b4169a572285443fad53b66ac59a3c0b6465aad54bd8d416046bfd79897db3d8f318f9d6e004c958b94bbcab16b1183d66197e1078840934689c +doccontainersize 56512 +doccontainerchecksum 4be390bfd7562e0c94dc19fad3e0f34e52db393878290773517d6d7951e428cd3d0dccf5f47f6f03e5f0b380ebb386c8d89373e8c8e4cbd16463a9cdd2f2417f +docfiles size=27 + RELOC/doc/latex/fancynum/CHANGES + RELOC/doc/latex/fancynum/README details="Package README" + RELOC/doc/latex/fancynum/aue.txt + RELOC/doc/latex/fancynum/ctt.txt + RELOC/doc/latex/fancynum/dbltable.tex + RELOC/doc/latex/fancynum/examples.tex + RELOC/doc/latex/fancynum/fancynum.pdf details="Package documentation" +srccontainersize 5392 +srccontainerchecksum 8f2f569fbb2a6ddaf371814e26b251286f8046e8a1e923f18e67b165c26c69cd09b46e39dae5fe00a427dbe4f95172680973b3eda7be16c60cbdfe6daf37710c +srcfiles size=6 + RELOC/source/latex/fancynum/Makefile + RELOC/source/latex/fancynum/fancynum.dtx + RELOC/source/latex/fancynum/fancynum.ins + RELOC/source/latex/fancynum/tables.c +runfiles size=1 + RELOC/tex/latex/fancynum/fancynum.sty +catalogue-ctan /macros/latex/contrib/fancynum +catalogue-license other-free +catalogue-topics numbers +catalogue-version 0.92 + +name fancypar +category Package +revision 58895 +shortdesc Decoration of individual paragraphs +relocated 1 +longdesc Decorates individual paragraphs of a document, offering five +longdesc pre-defined styles. The command offers an optional 'key-value' +longdesc argument with the user may define parameters of the selected +longdesc style. Predefined styles offer a spiral-notebook, a zebra-like, +longdesc a dashed, a marked design, and an underlined style. Users may +longdesc also define their own styles. Decorated paragraphs may not +longdesc include displayed mathematics. +containersize 2932 +containerchecksum 2f4e242eabb151834c6014a15d0ae012949e5e35f87bc32374e12f032bbb0fa21d6562b207ba855afaa28c36497cda3ca51eaefa579956f51283c84be8cefbba +doccontainersize 117660 +doccontainerchecksum 1d972212b86e56eb692cbcca5d7d47b9454a6c0900803818c286b6cc071df93c5444d36eb29a8035e53c65fc9c30582686a6b9203af8e142e1cf1c31a6e4d58d +docfiles size=30 + RELOC/doc/latex/fancypar/README details="Readme" + RELOC/doc/latex/fancypar/fancypar.pdf details="Package documentation" +srccontainersize 9668 +srccontainerchecksum 3f88c040637b50d49981474b38d50cb5c3ba7baa5b6390b53f98e3315d1f17f0b0c48780f4c719583f3e452041ddaeb36fdfa367a616ce07a2758b11db152d39 +srcfiles size=10 + RELOC/source/latex/fancypar/fancypar.dtx + RELOC/source/latex/fancypar/fancypar.ins +runfiles size=2 + RELOC/tex/latex/fancypar/fancypar.sty +catalogue-also boites framed +catalogue-ctan /macros/latex/contrib/fancypar +catalogue-license lppl1.3 +catalogue-topics decoration +catalogue-version 1.3 + +name fancyref +category Package +revision 15878 +shortdesc A LaTeX package for fancy cross-referencing +relocated 1 +longdesc Provides fancy cross-referencing support, based on the +longdesc package's reference commands (\fref and \Fref) that recognise +longdesc what sort of object is being referenced. So, for example, the +longdesc label for a \section would be expected to be of the form +longdesc 'sec:foo': the package would recognise the 'sec:' part. +containersize 3384 +containerchecksum 8f4ea5f16bfdbd06bdbaad76da724a1aad82263f4db2c24cf5f2e9f2db9f2afd9d4004d629098f936e0c2d4dcfa5fba8bd278746b90542f87b547e20abb0bcba +doccontainersize 104292 +doccontainerchecksum 2231f5fd45d45cb7b538852c95b90db35fde9b66629d17ec9288de6ecf5339359c17fdc8931019fd4acce61ec2927a0cd494cc7462cab0df13d7660106b6a142 +docfiles size=37 + RELOC/doc/latex/fancyref/COPYING + RELOC/doc/latex/fancyref/README details="Package Readme" + RELOC/doc/latex/fancyref/fancyref.pdf details="Package documentation" + RELOC/doc/latex/fancyref/freftest.tex +srccontainersize 18944 +srccontainerchecksum 65de000487a8d317f0d05ff6d35574cf0bca521e4ab029637fd459b34f8640c53fed78bb9a54c21e4f5cc7c03dab221995810057350c46690c948a9e436c74f3 +srcfiles size=21 + RELOC/source/latex/fancyref/fancyref.dtx + RELOC/source/latex/fancyref/fancyref.ins +runfiles size=4 + RELOC/tex/latex/fancyref/fancyref.sty +catalogue-ctan /macros/latex/contrib/fancyref +catalogue-license gpl +catalogue-topics label-ref +catalogue-version 0.9c + +name fancyslides +category Package +revision 36263 +shortdesc Custom presentation class built upon LaTeX Beamer +relocated 1 +longdesc This class is prepared for short presentations with a modern +longdesc look & feel. It offers the following features: custom +longdesc background for each slide, predefined types of slides, +longdesc simplified commands (e.g. for starting and ending slide). The +longdesc class is built upon LaTeX beamer, so all beamer commands should +longdesc work. +containersize 1976 +containerchecksum a0b9ef4ce804b78a60b4c3a25d5d70bb7ec17324d295cfaccb64d166bb1a704bbd2baa5cf6edfed7adff03f48bd3f3e7854e2fbfbbfdc7eb953d567a257a6e46 +doccontainersize 2000604 +doccontainerchecksum 77e1839377ba440d4009f30ae6e58d843ec4b7a1bf7f0d3414700e32c9a01062cd6506cb589039299e7a4fd945f9ee5cd951a62fe9795f822089152ca19f3441 +docfiles size=994 + RELOC/doc/latex/fancyslides/README details="Readme" + RELOC/doc/latex/fancyslides/doc/1.jpg + RELOC/doc/latex/fancyslides/doc/2.jpg + RELOC/doc/latex/fancyslides/doc/blank.jpg + RELOC/doc/latex/fancyslides/doc/blue.png + RELOC/doc/latex/fancyslides/doc/example.pdf + RELOC/doc/latex/fancyslides/doc/example.tex + RELOC/doc/latex/fancyslides/doc/fancyslides.pdf details="Package documentation" + RELOC/doc/latex/fancyslides/doc/fancyslides.tex + RELOC/doc/latex/fancyslides/doc/frame.png + RELOC/doc/latex/fancyslides/doc/fs.pdf + RELOC/doc/latex/fancyslides/doc/green.png + RELOC/doc/latex/fancyslides/doc/item.png + RELOC/doc/latex/fancyslides/doc/orange.png + RELOC/doc/latex/fancyslides/doc/point.png +runfiles size=1 + RELOC/tex/latex/fancyslides/fancyslides.cls +catalogue-ctan /macros/latex/contrib/fancyslides +catalogue-license lppl1.3 +catalogue-topics presentation class +catalogue-version 1.0 + +name fancytabs +category Package +revision 41549 +shortdesc Fancy page border tabs +relocated 1 +longdesc The package can typeset tabs on the side of a page. It requires +longdesc TikZ from the pgf bundle. +containersize 1600 +containerchecksum 0cd45edda0062f4a0fbc26a0516d7f5b35cb4f8dfd4072830da880369d71d8a4aea6a7d5dd95a0b479ec3128170108f114aa00ef4b0c8324c60ddd214568f5cf +doccontainersize 184668 +doccontainerchecksum 0113da627d27fe88c4faa87e1564851344dac2efb75c78facc4da49a8937e2bda8e1f22997a2018b368001c24e721cbf623fc199d03673701a55c7ca45404770 +docfiles size=46 + RELOC/doc/latex/fancytabs/README + RELOC/doc/latex/fancytabs/fancytabs.pdf details="Package documentation" +srccontainersize 3964 +srccontainerchecksum 4a7c92f30414a595cc8c928b181565e3d50614fb4e5a128197bb4a8f90a50cbd9c75ca447bf37c41e9fe3c05d4422d6e3618da63edc51f240dc3e8d55c8d61dd +srcfiles size=4 + RELOC/source/latex/fancytabs/fancytabs.dtx + RELOC/source/latex/fancytabs/fancytabs.ins +runfiles size=1 + RELOC/tex/latex/fancytabs/fancytabs.sty +catalogue-ctan /macros/latex/contrib/fancytabs +catalogue-license lppl1.3 +catalogue-topics decoration +catalogue-version 1.9 + +name fancytooltips +category Package +revision 56291 +shortdesc Include a wide range of material in PDF tooltips +relocated 1 +longdesc The package was inspired by the cooltooltips package. In +longdesc contrast to cooltooltips, fancytooltips allows inclusion of +longdesc tooltips which contain arbitrary TeX material or a series of +longdesc TeX materials (animated graphics) from an external PDF file. To +longdesc see the tooltips, you have to open the files in Adobe Reader. +longdesc The links and JavaScripts are inserted using eforms package +longdesc from the AcroTeX bundle. +containersize 7968 +containerchecksum 79ac95184f6890ed405919d064fee444a3b00dffa8f76724c302133cc8b4f4c40648e0bee607702cc9faea6aec3e2f8c34d1e2011abe6e6c6444b9076e5f42f3 +doccontainersize 1112404 +doccontainerchecksum c5a73dc14138cf5f13494a3844e9bda29368dc129e6445bd3f1a7b1cfb60498c44d7527a673d51dea1d81b4a2db438078a406f76ed1597b6836015c588c79270 +docfiles size=513 + RELOC/doc/latex/fancytooltips/cite.png + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo.pdf + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo.sin.table + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo.tex + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo2.pdf + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo2.tex + RELOC/doc/latex/fancytooltips/examples/fancytooltips-example.pdf + RELOC/doc/latex/fancytooltips/examples/fancytooltips-example.tex + RELOC/doc/latex/fancytooltips/examples/pics/tecna2.pdf + RELOC/doc/latex/fancytooltips/examples/pics/tooltipy.pdf + RELOC/doc/latex/fancytooltips/examples/pics/tooltipy.tex + RELOC/doc/latex/fancytooltips/examples/pics/tooltipy.tips + RELOC/doc/latex/fancytooltips/examples/readme + RELOC/doc/latex/fancytooltips/fancy-preview + RELOC/doc/latex/fancytooltips/fancytipmark1.pdf + RELOC/doc/latex/fancytooltips/fancytipmark2.pdf + RELOC/doc/latex/fancytooltips/fancytipmark3.pdf + RELOC/doc/latex/fancytooltips/fancytipmark4.pdf + RELOC/doc/latex/fancytooltips/fancytooltips.pdf details="Package documentation" + RELOC/doc/latex/fancytooltips/readme + RELOC/doc/latex/fancytooltips/tip.pdf + RELOC/doc/latex/fancytooltips/tip.tex +srccontainersize 16732 +srccontainerchecksum 6bccdd73454b8a2ede4c1895e5b7019d136af0e79b72417a223d24d004807d02c51fdc3187ddfd8555233882e3a15862db9e3ec7753a349241b25227f8e223aa +srcfiles size=16 + RELOC/source/latex/fancytooltips/fancytooltips.dtx + RELOC/source/latex/fancytooltips/fancytooltips.ins +runfiles size=10 + RELOC/tex/latex/fancytooltips/fancytipmark.eps + RELOC/tex/latex/fancytooltips/fancytipmark.pdf + RELOC/tex/latex/fancytooltips/fancytipmark.svg + RELOC/tex/latex/fancytooltips/fancytooltips.sty +catalogue-ctan /macros/latex/contrib/fancytooltips +catalogue-license lppl1.2 +catalogue-topics pdf-feat +catalogue-version 1.8 + +name fancyvrb +category Package +revision 57488 +shortdesc Sophisticated verbatim text +relocated 1 +longdesc Flexible handling of verbatim text including: verbatim commands +longdesc in footnotes; a variety of verbatim environments with many +longdesc parameters; ability to define new customized verbatim +longdesc environments; save and restore verbatim text and environments; +longdesc write and read files in verbatim mode; build "example" +longdesc environments (showing both result and verbatim source). +containersize 11720 +containerchecksum cbbdd7c868e6d238b4e82e59f7e8b1917d64ceef2b75d7da7f95b823544b1fa0d05141a248ff449df52f784100d79ac8f609cf4025b9d3db5b24920dec3f0863 +doccontainersize 132784 +doccontainerchecksum 1de32c07f17b316e0ad8704f3c800d75ecab9a6e3cf80ce8c725c126e77353ed9685a1d8e9dcd61295f80b975814ea8c67c11b62fe5bfae71cc2ebeffb440d3e +docfiles size=43 + RELOC/doc/latex/fancyvrb/Changes + RELOC/doc/latex/fancyvrb/README details="Readme" + RELOC/doc/latex/fancyvrb/fancyvrb-doc.pdf details="Package documentation" + RELOC/doc/latex/fancyvrb/fancyvrb-doc.tex +runfiles size=17 + RELOC/tex/latex/fancyvrb/fancyvrb-ex.sty + RELOC/tex/latex/fancyvrb/fancyvrb.sty + RELOC/tex/latex/fancyvrb/hbaw.sty + RELOC/tex/latex/fancyvrb/hcolor.sty +catalogue-ctan /macros/latex/contrib/fancyvrb +catalogue-license lppl1.3 +catalogue-topics verbatim macro-demo +catalogue-version 3.7 + +name fandol +category Package +revision 37889 +shortdesc Four basic fonts for Chinese typesetting +relocated 1 +longdesc Fandol fonts designed for Chinese typesetting. The current +longdesc version contains four styles: Song, Hei, Kai, Fang. All fonts +longdesc are in OpenType format. +containersize 21582588 +containerchecksum 309b19d6bff9d3e009610d698a73ba191da70cabd57157f274dfca7583a9e9b31fc30ea52b2b2ab3386be7290a680f8eb47dc92381c3da8251b01d8c6a65c3ff +doccontainersize 12168 +doccontainerchecksum d74e78a1c863d3865ec4b21a4c762bf6e2c30a8656fe0ec830d1e56b9fcb48861f316ccf8d8641e7c674e25f1ac2292d10ff2127315275347096ad325828d7e5 +docfiles size=10 + RELOC/doc/fonts/fandol/COPYING + RELOC/doc/fonts/fandol/README details="Readme" +runfiles size=8526 + RELOC/fonts/opentype/public/fandol/FandolBraille-Display.otf + RELOC/fonts/opentype/public/fandol/FandolBraille-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolFang-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolHei-Bold.otf + RELOC/fonts/opentype/public/fandol/FandolHei-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolKai-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolSong-Bold.otf + RELOC/fonts/opentype/public/fandol/FandolSong-Regular.otf +catalogue-ctan /fonts/fandol +catalogue-license gpl +catalogue-topics font chinese font-cjk font-otf +catalogue-version 0.3 + +name fascicules +category Package +revision 54080 +shortdesc Create mathematical manuals for schools +relocated 1 +longdesc This package enables LaTeX users to create math books for +longdesc middle and high schools. It provides commands to create the +longdesc front page of the manual and the chapters. Each chapter can +longdesc consist of three sections: the lesson, the exercises and the +longdesc activities. +containersize 5664 +containerchecksum 0d6318bea8660796a5ddeab06c416017ec2075633a391a536c7c3355de7b7e7f711e74f0e43e8b4fd39debfec797164f1961eb27776ca3b53eee729d0e27a479 +doccontainersize 2042296 +doccontainerchecksum ee9a54c4b2d746577e94abb6d458c473f88bff18e4f0f57bed5923a1ef08c6ca533183ad9e9eb1d1bcfae6aa5082d88a9c08fe7cf96c3ab9d71ab099ec64c1c0 +docfiles size=760 + RELOC/doc/latex/fascicules/README.md details="Readme" + RELOC/doc/latex/fascicules/fascicules.pdf details="Package documentation" + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/chapitre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/act.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/activite_TP_geogebra_paraboles.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/cours_second_degre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/crs.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/exos.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/exos_algebre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/exos_second_degre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/img/chapitre.jpg + RELOC/doc/latex/fascicules/guide/content/act.tex + RELOC/doc/latex/fascicules/guide/content/act_back.tex + RELOC/doc/latex/fascicules/guide/content/ch1_introduction.tex + RELOC/doc/latex/fascicules/guide/content/ch2_organisation.tex + RELOC/doc/latex/fascicules/guide/content/ch3_graphiques.tex + RELOC/doc/latex/fascicules/guide/content/ch4_nouveau_chapitre.tex + RELOC/doc/latex/fascicules/guide/content/exos.tex + RELOC/doc/latex/fascicules/guide/content/img/ch1.png + RELOC/doc/latex/fascicules/guide/content/img/ch2.jpg + RELOC/doc/latex/fascicules/guide/content/img/ch3.jpg + RELOC/doc/latex/fascicules/guide/content/img/vieuxlivres.jpg + RELOC/doc/latex/fascicules/guide/guide.pdf details="Package documentation" language="fr" + RELOC/doc/latex/fascicules/guide/guide.tex + RELOC/doc/latex/fascicules/guide/preamble.tex + RELOC/doc/latex/fascicules/guide/solutions/ch2.tex +srccontainersize 9288 +srccontainerchecksum c5fec67754d84dc42dd6c62267c8a906a5717f53d9c063efc51b6cc45f3f616d270fa3af2658deac438739cb231bcf9b2c9497477c910f576ca943b80e03f3c9 +srcfiles size=9 + RELOC/source/latex/fascicules/fascicules.dtx + RELOC/source/latex/fascicules/fascicules.ins +runfiles size=5 + RELOC/tex/latex/fascicules/fascicules.sty +catalogue-also schule +catalogue-ctan /macros/latex/contrib/fascicules +catalogue-license lppl +catalogue-topics teaching +catalogue-version 1 + +name fast-diagram +category Package +revision 29264 +shortdesc Easy generation of FAST diagrams +relocated 1 +longdesc The package provides simple means of producing FAST diagrams, +longdesc using TikZ/pgf tools. FAST diagrams are useful for functional +longdesc analysis techniques in design methods. +containersize 4188 +containerchecksum cedc8305ba0a7b1d22274d869629a1872a80a4001b443c8baa93e44198a5dd88e39c16c28bb5edf9fedf4f8f2f68c6964f009cbf6feb21c7c14974c4b598acbb +doccontainersize 1394284 +doccontainerchecksum cd8e3edf882fc16b5757f59d16ed1a479e437eba36c783cd86cdfb9cb81f8b30e8b95a522ef6fe4b6e22b4b0bf6637e72bff734f7771034cfaf85df935e4a003 +docfiles size=405 + RELOC/doc/latex/fast-diagram/README details="Readme" language="fr" + RELOC/doc/latex/fast-diagram/help.pdf details="Package documentation" language="fr" + RELOC/doc/latex/fast-diagram/help.tex + RELOC/doc/latex/fast-diagram/sources_help/commandes.tex + RELOC/doc/latex/fast-diagram/sources_help/exemple.tex + RELOC/doc/latex/fast-diagram/sources_help/images/antenne.png + RELOC/doc/latex/fast-diagram/sources_help/images/batterie.png + RELOC/doc/latex/fast-diagram/sources_help/images/biellettes.png + RELOC/doc/latex/fast-diagram/sources_help/images/bouton.png + RELOC/doc/latex/fast-diagram/sources_help/images/moteur.png + RELOC/doc/latex/fast-diagram/sources_help/images/pedalier.png + RELOC/doc/latex/fast-diagram/sources_help/images/pignons.png + RELOC/doc/latex/fast-diagram/sources_help/images/recepteur.png + RELOC/doc/latex/fast-diagram/sources_help/images/roue.png + RELOC/doc/latex/fast-diagram/sources_help/images/servomoteur.png + RELOC/doc/latex/fast-diagram/sources_help/installation.tex + RELOC/doc/latex/fast-diagram/sources_help/intro.tex + RELOC/doc/latex/fast-diagram/sources_help/miseEnForme.tex + RELOC/doc/latex/fast-diagram/sources_help/reglages.tex + RELOC/doc/latex/fast-diagram/sources_help/tikz.tex +runfiles size=5 + RELOC/tex/latex/fast-diagram/fast-diagram.sty +catalogue-ctan /graphics/pgf/contrib/fast-diagram +catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 1.1 + +name fbb +category Package +revision 55728 +shortdesc A free Bembo-like font +relocated 1 +longdesc The package provides a Bembo-like font package based on Cardo +longdesc but with many modifications, adding Bold Italic, small caps in +longdesc all styles, six figure choices in all styles, updated kerning +longdesc tables, added figure tables and corrected f-ligatures. Both +longdesc OpenType and Adobe Type 1 versions are provided; all necessary +longdesc support files are provided. The font works well with +longdesc newtxmath's libertine option. +execute addMap fbb.map +containersize 1120660 +containerchecksum d63e140b60941f114b7aa7c82888c224715d6d173b88ca85aacdb3f7635aa928846e804e807830674d3bec0fc801435eb9e07406270c156d40e8c1994f50aa3c +doccontainersize 470700 +doccontainerchecksum c63214ea5a91ea6bab66a866a65c2ee43c64f49afbc3235e2f55cc0de89fb3a269bea45fb7d67ccbcda4bac3249b2f2ab14f780fde7cbd112231b16e58eac67c +docfiles size=121 + RELOC/doc/fonts/fbb/OFL.txt + RELOC/doc/fonts/fbb/README details="Readme" + RELOC/doc/fonts/fbb/fbb-doc.pdf details="Introduction and sampler" + RELOC/doc/fonts/fbb/fbb-doc.tex +runfiles size=1804 + RELOC/fonts/enc/dvips/fbb/fbbP_24put5.enc + RELOC/fonts/enc/dvips/fbb/fbbP_2igduj.enc + RELOC/fonts/enc/dvips/fbb/fbbP_2jnzza.enc + RELOC/fonts/enc/dvips/fbb/fbbP_3duhfc.enc + RELOC/fonts/enc/dvips/fbb/fbbP_3zscfd.enc + RELOC/fonts/enc/dvips/fbb/fbbP_4mw2rr.enc + RELOC/fonts/enc/dvips/fbb/fbbP_4wcgh5.enc + RELOC/fonts/enc/dvips/fbb/fbbP_4zjlsx.enc + RELOC/fonts/enc/dvips/fbb/fbbP_62speq.enc + RELOC/fonts/enc/dvips/fbb/fbbP_6kt7zw.enc + RELOC/fonts/enc/dvips/fbb/fbbP_6poto5.enc + RELOC/fonts/enc/dvips/fbb/fbbP_6vkgd4.enc + RELOC/fonts/enc/dvips/fbb/fbbP_6x3k7a.enc + RELOC/fonts/enc/dvips/fbb/fbbP_73u7o6.enc + RELOC/fonts/enc/dvips/fbb/fbbP_7uozom.enc + RELOC/fonts/enc/dvips/fbb/fbbP_7zfhk4.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ba3tof.enc + RELOC/fonts/enc/dvips/fbb/fbbP_bjh4if.enc + RELOC/fonts/enc/dvips/fbb/fbbP_enzkw5.enc + RELOC/fonts/enc/dvips/fbb/fbbP_f32ejw.enc + RELOC/fonts/enc/dvips/fbb/fbbP_f7memx.enc + RELOC/fonts/enc/dvips/fbb/fbbP_fmbb57.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ivhnor.enc + RELOC/fonts/enc/dvips/fbb/fbbP_k3h4c5.enc + RELOC/fonts/enc/dvips/fbb/fbbP_kc7qho.enc + RELOC/fonts/enc/dvips/fbb/fbbP_lpkr6b.enc + RELOC/fonts/enc/dvips/fbb/fbbP_mbwkti.enc + RELOC/fonts/enc/dvips/fbb/fbbP_naynxa.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ned4xv.enc + RELOC/fonts/enc/dvips/fbb/fbbP_nrlzkf.enc + RELOC/fonts/enc/dvips/fbb/fbbP_oiqgfb.enc + RELOC/fonts/enc/dvips/fbb/fbbP_orcs6b.enc + RELOC/fonts/enc/dvips/fbb/fbbP_qfprdo.enc + RELOC/fonts/enc/dvips/fbb/fbbP_qznuv4.enc + RELOC/fonts/enc/dvips/fbb/fbbP_rkdrjp.enc + RELOC/fonts/enc/dvips/fbb/fbbP_tu2qnw.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ub5jdu.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ulsnvv.enc + RELOC/fonts/enc/dvips/fbb/fbbP_uscd66.enc + RELOC/fonts/enc/dvips/fbb/fbbP_v6tazz.enc + RELOC/fonts/enc/dvips/fbb/fbbP_vo3hij.enc + RELOC/fonts/enc/dvips/fbb/fbbP_wblpum.enc + RELOC/fonts/enc/dvips/fbb/fbbP_x5klbo.enc + RELOC/fonts/enc/dvips/fbb/fbbP_xctm5z.enc + RELOC/fonts/enc/dvips/fbb/fbbP_xp6hp3.enc + RELOC/fonts/enc/dvips/fbb/fbbP_xyrmbw.enc + RELOC/fonts/enc/dvips/fbb/fbbP_y2ahej.enc + RELOC/fonts/enc/dvips/fbb/fbbP_yragzx.enc + RELOC/fonts/enc/dvips/fbb/fbb_24fmi7.enc + RELOC/fonts/enc/dvips/fbb/fbb_24put5.enc + RELOC/fonts/enc/dvips/fbb/fbb_2b4mld.enc + RELOC/fonts/enc/dvips/fbb/fbb_2igduj.enc + RELOC/fonts/enc/dvips/fbb/fbb_2jnzza.enc + RELOC/fonts/enc/dvips/fbb/fbb_2op7s3.enc + RELOC/fonts/enc/dvips/fbb/fbb_2xprkz.enc + RELOC/fonts/enc/dvips/fbb/fbb_3cnzgn.enc + RELOC/fonts/enc/dvips/fbb/fbb_3duhfc.enc + RELOC/fonts/enc/dvips/fbb/fbb_3gn25k.enc + RELOC/fonts/enc/dvips/fbb/fbb_3xwxat.enc + RELOC/fonts/enc/dvips/fbb/fbb_3zscfd.enc + RELOC/fonts/enc/dvips/fbb/fbb_4ejvjt.enc + RELOC/fonts/enc/dvips/fbb/fbb_4mw2rr.enc + RELOC/fonts/enc/dvips/fbb/fbb_4qmemg.enc + RELOC/fonts/enc/dvips/fbb/fbb_4qxxhr.enc + RELOC/fonts/enc/dvips/fbb/fbb_4wcgh5.enc + RELOC/fonts/enc/dvips/fbb/fbb_4zjlsx.enc + RELOC/fonts/enc/dvips/fbb/fbb_54lzpc.enc + RELOC/fonts/enc/dvips/fbb/fbb_62speq.enc + RELOC/fonts/enc/dvips/fbb/fbb_6kt7zw.enc + RELOC/fonts/enc/dvips/fbb/fbb_6poto5.enc + RELOC/fonts/enc/dvips/fbb/fbb_6vkgd4.enc + RELOC/fonts/enc/dvips/fbb/fbb_6x3k7a.enc + RELOC/fonts/enc/dvips/fbb/fbb_6xtdz5.enc + RELOC/fonts/enc/dvips/fbb/fbb_73u7o6.enc + RELOC/fonts/enc/dvips/fbb/fbb_7uozom.enc + RELOC/fonts/enc/dvips/fbb/fbb_7zfhk4.enc + RELOC/fonts/enc/dvips/fbb/fbb_aeezmr.enc + RELOC/fonts/enc/dvips/fbb/fbb_alifw3.enc + RELOC/fonts/enc/dvips/fbb/fbb_anjsak.enc + RELOC/fonts/enc/dvips/fbb/fbb_b4m333.enc + RELOC/fonts/enc/dvips/fbb/fbb_ba3tof.enc + RELOC/fonts/enc/dvips/fbb/fbb_bjh4if.enc + RELOC/fonts/enc/dvips/fbb/fbb_bus4he.enc + RELOC/fonts/enc/dvips/fbb/fbb_cocscg.enc + RELOC/fonts/enc/dvips/fbb/fbb_dejuay.enc + RELOC/fonts/enc/dvips/fbb/fbb_dvpyqt.enc + RELOC/fonts/enc/dvips/fbb/fbb_dz2n6o.enc + RELOC/fonts/enc/dvips/fbb/fbb_enzkw5.enc + RELOC/fonts/enc/dvips/fbb/fbb_f32ejw.enc + RELOC/fonts/enc/dvips/fbb/fbb_f7memx.enc + RELOC/fonts/enc/dvips/fbb/fbb_fmbb57.enc + RELOC/fonts/enc/dvips/fbb/fbb_fq2tsq.enc + RELOC/fonts/enc/dvips/fbb/fbb_g53n3i.enc + RELOC/fonts/enc/dvips/fbb/fbb_gebqxj.enc + RELOC/fonts/enc/dvips/fbb/fbb_go7ogc.enc + RELOC/fonts/enc/dvips/fbb/fbb_gspevp.enc + RELOC/fonts/enc/dvips/fbb/fbb_hcrfa2.enc + RELOC/fonts/enc/dvips/fbb/fbb_i5idwu.enc + RELOC/fonts/enc/dvips/fbb/fbb_ihegxb.enc + RELOC/fonts/enc/dvips/fbb/fbb_ivhnor.enc + RELOC/fonts/enc/dvips/fbb/fbb_iygvdi.enc + RELOC/fonts/enc/dvips/fbb/fbb_j5xf4u.enc + RELOC/fonts/enc/dvips/fbb/fbb_jc4ywh.enc + RELOC/fonts/enc/dvips/fbb/fbb_jssv6r.enc + RELOC/fonts/enc/dvips/fbb/fbb_k3h4c5.enc + RELOC/fonts/enc/dvips/fbb/fbb_kc7qho.enc + RELOC/fonts/enc/dvips/fbb/fbb_l27jix.enc + RELOC/fonts/enc/dvips/fbb/fbb_lbjzwe.enc + RELOC/fonts/enc/dvips/fbb/fbb_lpkr6b.enc + RELOC/fonts/enc/dvips/fbb/fbb_lulz6h.enc + RELOC/fonts/enc/dvips/fbb/fbb_m5ynvh.enc + RELOC/fonts/enc/dvips/fbb/fbb_m7ioki.enc + RELOC/fonts/enc/dvips/fbb/fbb_mbwkti.enc + RELOC/fonts/enc/dvips/fbb/fbb_mlvt4q.enc + RELOC/fonts/enc/dvips/fbb/fbb_mpf4qq.enc + RELOC/fonts/enc/dvips/fbb/fbb_naynxa.enc + RELOC/fonts/enc/dvips/fbb/fbb_nc4uw4.enc + RELOC/fonts/enc/dvips/fbb/fbb_nc5i6g.enc + RELOC/fonts/enc/dvips/fbb/fbb_ned4xv.enc + RELOC/fonts/enc/dvips/fbb/fbb_nrlzkf.enc + RELOC/fonts/enc/dvips/fbb/fbb_o52cyd.enc + RELOC/fonts/enc/dvips/fbb/fbb_oiqgfb.enc + RELOC/fonts/enc/dvips/fbb/fbb_orcs6b.enc + RELOC/fonts/enc/dvips/fbb/fbb_p5akwa.enc + RELOC/fonts/enc/dvips/fbb/fbb_pwpiae.enc + RELOC/fonts/enc/dvips/fbb/fbb_qfprdo.enc + RELOC/fonts/enc/dvips/fbb/fbb_qznuv4.enc + RELOC/fonts/enc/dvips/fbb/fbb_rdlb6f.enc + RELOC/fonts/enc/dvips/fbb/fbb_rkdrjp.enc + RELOC/fonts/enc/dvips/fbb/fbb_s5g7rn.enc + RELOC/fonts/enc/dvips/fbb/fbb_tonehg.enc + RELOC/fonts/enc/dvips/fbb/fbb_tu2qnw.enc + RELOC/fonts/enc/dvips/fbb/fbb_ub5jdu.enc + RELOC/fonts/enc/dvips/fbb/fbb_ulsnvv.enc + RELOC/fonts/enc/dvips/fbb/fbb_uscd66.enc + RELOC/fonts/enc/dvips/fbb/fbb_v6tazz.enc + RELOC/fonts/enc/dvips/fbb/fbb_vk4up5.enc + RELOC/fonts/enc/dvips/fbb/fbb_vo3hij.enc + RELOC/fonts/enc/dvips/fbb/fbb_wblpum.enc + RELOC/fonts/enc/dvips/fbb/fbb_wdb4p7.enc + RELOC/fonts/enc/dvips/fbb/fbb_x5klbo.enc + RELOC/fonts/enc/dvips/fbb/fbb_xctm5z.enc + RELOC/fonts/enc/dvips/fbb/fbb_xp6hp3.enc + RELOC/fonts/enc/dvips/fbb/fbb_xyrmbw.enc + RELOC/fonts/enc/dvips/fbb/fbb_y2ahej.enc + RELOC/fonts/enc/dvips/fbb/fbb_yragzx.enc + RELOC/fonts/enc/dvips/fbb/fbb_ywg272.enc + RELOC/fonts/enc/dvips/fbb/fbb_ywphh4.enc + RELOC/fonts/enc/dvips/fbb/fbb_zbnzwf.enc + RELOC/fonts/enc/dvips/fbb/fbb_zjfw7l.enc + RELOC/fonts/map/dvips/fbb/fbb.map + RELOC/fonts/opentype/public/fbb/fbb-Bold.otf + RELOC/fonts/opentype/public/fbb/fbb-BoldItalic.otf + RELOC/fonts/opentype/public/fbb/fbb-Italic.otf + RELOC/fonts/opentype/public/fbb/fbb-Regular.otf + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-t1.tfm + RELOC/fonts/type1/public/fbb/fbb-Bold.pfb + RELOC/fonts/type1/public/fbb/fbb-BoldItalic.pfb + RELOC/fonts/type1/public/fbb/fbb-Italic.pfb + RELOC/fonts/type1/public/fbb/fbb-Regular.pfb + RELOC/fonts/vf/public/fbb/fbb-Bold-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-inf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-inf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-inf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-swash-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-swash-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-t1.vf + RELOC/tex/latex/fbb/LY1fbb-Inf.fd + RELOC/tex/latex/fbb/LY1fbb-LF.fd + RELOC/tex/latex/fbb/LY1fbb-OsF.fd + RELOC/tex/latex/fbb/LY1fbb-Sup.fd + RELOC/tex/latex/fbb/LY1fbb-TLF.fd + RELOC/tex/latex/fbb/LY1fbb-TOsF.fd + RELOC/tex/latex/fbb/OT1fbb-Inf.fd + RELOC/tex/latex/fbb/OT1fbb-LF.fd + RELOC/tex/latex/fbb/OT1fbb-OsF.fd + RELOC/tex/latex/fbb/OT1fbb-Sup.fd + RELOC/tex/latex/fbb/OT1fbb-TLF.fd + RELOC/tex/latex/fbb/OT1fbb-TOsF.fd + RELOC/tex/latex/fbb/T1fbb-Inf.fd + RELOC/tex/latex/fbb/T1fbb-LF.fd + RELOC/tex/latex/fbb/T1fbb-OsF.fd + RELOC/tex/latex/fbb/T1fbb-Sup.fd + RELOC/tex/latex/fbb/T1fbb-TLF.fd + RELOC/tex/latex/fbb/T1fbb-TOsF.fd + RELOC/tex/latex/fbb/TS1fbb-LF.fd + RELOC/tex/latex/fbb/TS1fbb-OsF.fd + RELOC/tex/latex/fbb/TS1fbb-TLF.fd + RELOC/tex/latex/fbb/TS1fbb-TOsF.fd + RELOC/tex/latex/fbb/fbb.fontspec + RELOC/tex/latex/fbb/fbb.sty +catalogue-ctan /fonts/fbb +catalogue-license ofl lppl1.3 +catalogue-topics font font-body font-serif font-proportional font-type1 font-otf font-supp font-t1enc +catalogue-version 1.16 + +name fbithesis +category Package +revision 21340 +shortdesc Computer Science thesis class for University of Dortmund +relocated 1 +longdesc At the department of computer science at the University of +longdesc Dortmund there are cardboard cover pages for research or +longdesc internal reports like master/phd-theses. The main function of +longdesc this LaTeX2e document-class is a replacement for the \maketitle +longdesc command to typeset a title page that is adjusted to these cover +longdesc pages. +containersize 6152 +containerchecksum 3e593e312ac8efbbdd294e6a00ec020678dcb12259ae778ddaed4d43a800aa19ba16f8eb15b5122ab22f44c5e23c77e4fe733c7772929ef55589d387985db694 +doccontainersize 790224 +doccontainerchecksum 92d0ae3382aa71260f6ed204f6bce1bcbac26985f41789e00c5d3186dcd448bd169b7641fa40d34cf87c556ca10573b0d8cd4235aaea8a0d1533dc40c71b3779 +docfiles size=201 + RELOC/doc/latex/fbithesis/README details="Readme" + RELOC/doc/latex/fbithesis/distribution.key + RELOC/doc/latex/fbithesis/example.pdf + RELOC/doc/latex/fbithesis/example.tex + RELOC/doc/latex/fbithesis/exampleaux.tex + RELOC/doc/latex/fbithesis/fbithesis.dtx.asc + RELOC/doc/latex/fbithesis/fbithesis.pdf details="Package documentation" +srccontainersize 41564 +srccontainerchecksum a931b41de1feb5b0a78bc40c20bafebeb529a8a8b351344020032641ecf9673168328dc271228130ff22ea17190cf021b1dbe01635d7cf77984f69861c84c02d +srcfiles size=53 + RELOC/source/latex/fbithesis/fbithesis.drv + RELOC/source/latex/fbithesis/fbithesis.dtx + RELOC/source/latex/fbithesis/fbithesis.ins +runfiles size=7 + RELOC/tex/latex/fbithesis/fbithesis.cfg + RELOC/tex/latex/fbithesis/fbithesis.cls +catalogue-ctan /macros/latex/contrib/fbithesis +catalogue-license other-free +catalogue-topics dissertation +catalogue-version 1.2m + +name fbox +category Package +revision 55627 +shortdesc Extended \fbox macro from standard LaTeX +relocated 1 +longdesc This package redefines \fbox to allow an optional argument for +longdesc different frames. It can be any combination of l)eft, r)ight, +longdesc t)op, and b)ottom, for example: \fbox[lt]{foo}. Using uppercase +longdesc letters or a combination of lowercase and uppercase is also +longdesc possible. +containersize 1776 +containerchecksum 6274daeacfe6901b63e1ea839990a00334ce218cd76d145ddd37e4a414e1fd395d8937bd019455e45bb52b557dd6b2b49cf90d84ca12cff797cdb8162414ea50 +doccontainersize 46048 +doccontainerchecksum 13f85034f1814c814d7c6885650a35d97c483d47fe4e7279ae3872cf155d240084132732f71b38f6a0440d38fc1a2ed33cfa4ecc6d7a4c11b89f4c7d6b482204 +docfiles size=15 + RELOC/doc/latex/fbox/CHANGELOG + RELOC/doc/latex/fbox/README.md details="Readme" + RELOC/doc/latex/fbox/fbox.pdf details="Package documentation" + RELOC/doc/latex/fbox/fbox.tex +runfiles size=1 + RELOC/tex/latex/fbox/fbox.sty +catalogue-ctan /macros/latex/contrib/fbox +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 0.05 + +name fbs +category Package +revision 15878 +shortdesc BibTeX style for Frontiers in Bioscience +relocated 1 +longdesc A BibTeX style file made with custom-bib to fit Frontiers in +longdesc Bioscience requirements: all authors, no et al, full author +longdesc names, initials abbreviated; only abbreviated journal name +longdesc italicised, no abbreviation dots; only year, no month, at end +longdesc of reference; and DOI excluded, ISSN excluded. +containersize 5424 +containerchecksum 2d5bce7890fd8e087e035e60064bf134d8ac7ca2646f7b846df8fca7c594843c2778d0ad1752ffefed40283153194b5da97156e866bb4b8bd10b14c8ee3f2c4d +runfiles size=7 + RELOC/bibtex/bst/fbs/fbs.bst +catalogue-ctan /biblio/bibtex/contrib/misc/fbs.bst +catalogue-license lppl +catalogue-topics journalpub biology bibtex-sty + +name fc +category Package +revision 32796 +shortdesc Fonts for African languages +relocated 1 +longdesc The fonts are provided as Metafont source, in the familiar +longdesc arrangement of lots of (autogenerated) preamble files and a +longdesc modest set of glyph specifications. (A similar arrangement +longdesc appears in the ec and lh font bundles.) +containersize 128300 +containerchecksum 12bb408f7ba4774d943aa954bd3d2558a329d383a65cd4780f6c5bdc39f51b943f01d87ad203aea3b02768dc0b9ab42f681175c18a1e1dd901255aae05156558 +doccontainersize 27644 +doccontainerchecksum a7495a0d6bd394811ff22438a42afe3c5109633da7c606a732f4c5746cc4162fa1c86ac3774aa7754e9b07c499f3519423d4b6fb212ecae156b0b8e8f848d914 +docfiles size=27 + RELOC/doc/fonts/fc/fc.bug + RELOC/doc/fonts/fc/fc.rme details="Readme" + RELOC/doc/fonts/fc/fclfont.sty_old + RELOC/doc/fonts/fc/fctugbot.tex + RELOC/doc/fonts/fc/fontdef.fc_old + RELOC/doc/fonts/fc/licence.gnu +runfiles size=591 + RELOC/fonts/source/jknappen/fc/b-fcbx.mf + RELOC/fonts/source/jknappen/fc/b-fcbxi.mf + RELOC/fonts/source/jknappen/fc/b-fcbxsl.mf + RELOC/fonts/source/jknappen/fc/b-fcbxu.mf + RELOC/fonts/source/jknappen/fc/b-fccsc.mf + RELOC/fonts/source/jknappen/fc/b-fci.mf + RELOC/fonts/source/jknappen/fc/b-fcitt.mf + RELOC/fonts/source/jknappen/fc/b-fcr.mf + RELOC/fonts/source/jknappen/fc/b-fcsibx.mf + RELOC/fonts/source/jknappen/fc/b-fcsitt.mf + RELOC/fonts/source/jknappen/fc/b-fcsl.mf + RELOC/fonts/source/jknappen/fc/b-fcss.mf + RELOC/fonts/source/jknappen/fc/b-fcssbx.mf + RELOC/fonts/source/jknappen/fc/b-fcssi.mf + RELOC/fonts/source/jknappen/fc/b-fcsstt.mf + RELOC/fonts/source/jknappen/fc/b-fctt.mf + RELOC/fonts/source/jknappen/fc/b-fcu.mf + RELOC/fonts/source/jknappen/fc/c-fcsstt.mf + RELOC/fonts/source/jknappen/fc/fcaccent.mf + RELOC/fonts/source/jknappen/fc/fcbx10.mf + RELOC/fonts/source/jknappen/fc/fcbx11.mf + RELOC/fonts/source/jknappen/fc/fcbx12.mf + RELOC/fonts/source/jknappen/fc/fcbx14.mf + RELOC/fonts/source/jknappen/fc/fcbx17.mf + RELOC/fonts/source/jknappen/fc/fcbx20.mf + RELOC/fonts/source/jknappen/fc/fcbx25.mf + RELOC/fonts/source/jknappen/fc/fcbx5.mf + RELOC/fonts/source/jknappen/fc/fcbx6.mf + RELOC/fonts/source/jknappen/fc/fcbx7.mf + RELOC/fonts/source/jknappen/fc/fcbx8.mf + RELOC/fonts/source/jknappen/fc/fcbx9.mf + RELOC/fonts/source/jknappen/fc/fcbxi10.mf + RELOC/fonts/source/jknappen/fc/fcbxi11.mf + RELOC/fonts/source/jknappen/fc/fcbxi12.mf + RELOC/fonts/source/jknappen/fc/fcbxi14.mf + RELOC/fonts/source/jknappen/fc/fcbxi17.mf + RELOC/fonts/source/jknappen/fc/fcbxi20.mf + RELOC/fonts/source/jknappen/fc/fcbxi25.mf + RELOC/fonts/source/jknappen/fc/fcbxi5.mf + RELOC/fonts/source/jknappen/fc/fcbxi6.mf + RELOC/fonts/source/jknappen/fc/fcbxi7.mf + RELOC/fonts/source/jknappen/fc/fcbxi8.mf + RELOC/fonts/source/jknappen/fc/fcbxi9.mf + RELOC/fonts/source/jknappen/fc/fcbxsl10.mf + RELOC/fonts/source/jknappen/fc/fcbxsl11.mf + RELOC/fonts/source/jknappen/fc/fcbxsl12.mf + RELOC/fonts/source/jknappen/fc/fcbxsl14.mf + RELOC/fonts/source/jknappen/fc/fcbxsl17.mf + RELOC/fonts/source/jknappen/fc/fcbxsl20.mf + RELOC/fonts/source/jknappen/fc/fcbxsl25.mf + RELOC/fonts/source/jknappen/fc/fcbxsl5.mf + RELOC/fonts/source/jknappen/fc/fcbxsl6.mf + RELOC/fonts/source/jknappen/fc/fcbxsl7.mf + RELOC/fonts/source/jknappen/fc/fcbxsl8.mf + RELOC/fonts/source/jknappen/fc/fcbxsl9.mf + RELOC/fonts/source/jknappen/fc/fcbxu10.mf + RELOC/fonts/source/jknappen/fc/fcbxu11.mf + RELOC/fonts/source/jknappen/fc/fcbxu12.mf + RELOC/fonts/source/jknappen/fc/fcbxu14.mf + RELOC/fonts/source/jknappen/fc/fcbxu17.mf + RELOC/fonts/source/jknappen/fc/fcbxu20.mf + RELOC/fonts/source/jknappen/fc/fcbxu25.mf + RELOC/fonts/source/jknappen/fc/fcbxu5.mf + RELOC/fonts/source/jknappen/fc/fcbxu6.mf + RELOC/fonts/source/jknappen/fc/fcbxu7.mf + RELOC/fonts/source/jknappen/fc/fcbxu8.mf + RELOC/fonts/source/jknappen/fc/fcbxu9.mf + RELOC/fonts/source/jknappen/fc/fccoding.mf + RELOC/fonts/source/jknappen/fc/fccsc10.mf + RELOC/fonts/source/jknappen/fc/fccsc11.mf + RELOC/fonts/source/jknappen/fc/fccsc12.mf + RELOC/fonts/source/jknappen/fc/fccsc14.mf + RELOC/fonts/source/jknappen/fc/fccsc17.mf + RELOC/fonts/source/jknappen/fc/fccsc20.mf + RELOC/fonts/source/jknappen/fc/fccsc25.mf + RELOC/fonts/source/jknappen/fc/fccsc5.mf + RELOC/fonts/source/jknappen/fc/fccsc6.mf + RELOC/fonts/source/jknappen/fc/fccsc7.mf + RELOC/fonts/source/jknappen/fc/fccsc8.mf + RELOC/fonts/source/jknappen/fc/fccsc9.mf + RELOC/fonts/source/jknappen/fc/fccscspu.mf + RELOC/fonts/source/jknappen/fc/fci10.mf + RELOC/fonts/source/jknappen/fc/fci11.mf + RELOC/fonts/source/jknappen/fc/fci12.mf + RELOC/fonts/source/jknappen/fc/fci14.mf + RELOC/fonts/source/jknappen/fc/fci17.mf + RELOC/fonts/source/jknappen/fc/fci20.mf + RELOC/fonts/source/jknappen/fc/fci25.mf + RELOC/fonts/source/jknappen/fc/fci5.mf + RELOC/fonts/source/jknappen/fc/fci6.mf + RELOC/fonts/source/jknappen/fc/fci7.mf + RELOC/fonts/source/jknappen/fc/fci8.mf + RELOC/fonts/source/jknappen/fc/fci9.mf + RELOC/fonts/source/jknappen/fc/fcilig.mf + RELOC/fonts/source/jknappen/fc/fcitalic.mf + RELOC/fonts/source/jknappen/fc/fcitligt.mf + RELOC/fonts/source/jknappen/fc/fcitlpct.mf + RELOC/fonts/source/jknappen/fc/fcitt10.mf + RELOC/fonts/source/jknappen/fc/fcitt11.mf + RELOC/fonts/source/jknappen/fc/fcitt12.mf + RELOC/fonts/source/jknappen/fc/fcitt14.mf + RELOC/fonts/source/jknappen/fc/fcitt17.mf + RELOC/fonts/source/jknappen/fc/fcitt20.mf + RELOC/fonts/source/jknappen/fc/fcitt25.mf + RELOC/fonts/source/jknappen/fc/fcitt5.mf + RELOC/fonts/source/jknappen/fc/fcitt6.mf + RELOC/fonts/source/jknappen/fc/fcitt7.mf + RELOC/fonts/source/jknappen/fc/fcitt8.mf + RELOC/fonts/source/jknappen/fc/fcitt9.mf + RELOC/fonts/source/jknappen/fc/fcmacros.mf + RELOC/fonts/source/jknappen/fc/fcpunct.mf + RELOC/fonts/source/jknappen/fc/fcr10.mf + RELOC/fonts/source/jknappen/fc/fcr11.mf + RELOC/fonts/source/jknappen/fc/fcr12.mf + RELOC/fonts/source/jknappen/fc/fcr14.mf + RELOC/fonts/source/jknappen/fc/fcr17.mf + RELOC/fonts/source/jknappen/fc/fcr20.mf + RELOC/fonts/source/jknappen/fc/fcr25.mf + RELOC/fonts/source/jknappen/fc/fcr5.mf + RELOC/fonts/source/jknappen/fc/fcr6.mf + RELOC/fonts/source/jknappen/fc/fcr7.mf + RELOC/fonts/source/jknappen/fc/fcr8.mf + RELOC/fonts/source/jknappen/fc/fcr9.mf + RELOC/fonts/source/jknappen/fc/fcrlig.mf + RELOC/fonts/source/jknappen/fc/fcroligt.mf + RELOC/fonts/source/jknappen/fc/fcroman.mf + RELOC/fonts/source/jknappen/fc/fcrompct.mf + RELOC/fonts/source/jknappen/fc/fcscligt.mf + RELOC/fonts/source/jknappen/fc/fcsfligt.mf + RELOC/fonts/source/jknappen/fc/fcsibx10.mf + RELOC/fonts/source/jknappen/fc/fcsibx11.mf + RELOC/fonts/source/jknappen/fc/fcsibx12.mf + RELOC/fonts/source/jknappen/fc/fcsibx14.mf + RELOC/fonts/source/jknappen/fc/fcsibx17.mf + RELOC/fonts/source/jknappen/fc/fcsibx20.mf + RELOC/fonts/source/jknappen/fc/fcsibx25.mf + RELOC/fonts/source/jknappen/fc/fcsibx5.mf + RELOC/fonts/source/jknappen/fc/fcsibx6.mf + RELOC/fonts/source/jknappen/fc/fcsibx7.mf + RELOC/fonts/source/jknappen/fc/fcsibx8.mf + RELOC/fonts/source/jknappen/fc/fcsibx9.mf + RELOC/fonts/source/jknappen/fc/fcsitt10.mf + RELOC/fonts/source/jknappen/fc/fcsitt11.mf + RELOC/fonts/source/jknappen/fc/fcsitt12.mf + RELOC/fonts/source/jknappen/fc/fcsitt14.mf + RELOC/fonts/source/jknappen/fc/fcsitt17.mf + RELOC/fonts/source/jknappen/fc/fcsitt20.mf + RELOC/fonts/source/jknappen/fc/fcsitt25.mf + RELOC/fonts/source/jknappen/fc/fcsitt5.mf + RELOC/fonts/source/jknappen/fc/fcsitt6.mf + RELOC/fonts/source/jknappen/fc/fcsitt7.mf + RELOC/fonts/source/jknappen/fc/fcsitt8.mf + RELOC/fonts/source/jknappen/fc/fcsitt9.mf + RELOC/fonts/source/jknappen/fc/fcsl10.mf + RELOC/fonts/source/jknappen/fc/fcsl11.mf + RELOC/fonts/source/jknappen/fc/fcsl12.mf + RELOC/fonts/source/jknappen/fc/fcsl14.mf + RELOC/fonts/source/jknappen/fc/fcsl17.mf + RELOC/fonts/source/jknappen/fc/fcsl20.mf + RELOC/fonts/source/jknappen/fc/fcsl25.mf + RELOC/fonts/source/jknappen/fc/fcsl5.mf + RELOC/fonts/source/jknappen/fc/fcsl6.mf + RELOC/fonts/source/jknappen/fc/fcsl7.mf + RELOC/fonts/source/jknappen/fc/fcsl8.mf + RELOC/fonts/source/jknappen/fc/fcsl9.mf + RELOC/fonts/source/jknappen/fc/fcss10.mf + RELOC/fonts/source/jknappen/fc/fcss11.mf + RELOC/fonts/source/jknappen/fc/fcss12.mf + RELOC/fonts/source/jknappen/fc/fcss14.mf + RELOC/fonts/source/jknappen/fc/fcss17.mf + RELOC/fonts/source/jknappen/fc/fcss20.mf + RELOC/fonts/source/jknappen/fc/fcss25.mf + RELOC/fonts/source/jknappen/fc/fcss5.mf + RELOC/fonts/source/jknappen/fc/fcss6.mf + RELOC/fonts/source/jknappen/fc/fcss7.mf + RELOC/fonts/source/jknappen/fc/fcss8.mf + RELOC/fonts/source/jknappen/fc/fcss9.mf + RELOC/fonts/source/jknappen/fc/fcssbx10.mf + RELOC/fonts/source/jknappen/fc/fcssbx11.mf + RELOC/fonts/source/jknappen/fc/fcssbx12.mf + RELOC/fonts/source/jknappen/fc/fcssbx14.mf + RELOC/fonts/source/jknappen/fc/fcssbx17.mf + RELOC/fonts/source/jknappen/fc/fcssbx20.mf + RELOC/fonts/source/jknappen/fc/fcssbx25.mf + RELOC/fonts/source/jknappen/fc/fcssbx5.mf + RELOC/fonts/source/jknappen/fc/fcssbx6.mf + RELOC/fonts/source/jknappen/fc/fcssbx7.mf + RELOC/fonts/source/jknappen/fc/fcssbx8.mf + RELOC/fonts/source/jknappen/fc/fcssbx9.mf + RELOC/fonts/source/jknappen/fc/fcssi10.mf + RELOC/fonts/source/jknappen/fc/fcssi11.mf + RELOC/fonts/source/jknappen/fc/fcssi12.mf + RELOC/fonts/source/jknappen/fc/fcssi14.mf + RELOC/fonts/source/jknappen/fc/fcssi17.mf + RELOC/fonts/source/jknappen/fc/fcssi20.mf + RELOC/fonts/source/jknappen/fc/fcssi25.mf + RELOC/fonts/source/jknappen/fc/fcssi5.mf + RELOC/fonts/source/jknappen/fc/fcssi6.mf + RELOC/fonts/source/jknappen/fc/fcssi7.mf + RELOC/fonts/source/jknappen/fc/fcssi8.mf + RELOC/fonts/source/jknappen/fc/fcssi9.mf + RELOC/fonts/source/jknappen/fc/fcsstt10.mf + RELOC/fonts/source/jknappen/fc/fcsstt11.mf + RELOC/fonts/source/jknappen/fc/fcsstt12.mf + RELOC/fonts/source/jknappen/fc/fcsstt14.mf + RELOC/fonts/source/jknappen/fc/fcsstt17.mf + RELOC/fonts/source/jknappen/fc/fcsstt20.mf + RELOC/fonts/source/jknappen/fc/fcsstt25.mf + RELOC/fonts/source/jknappen/fc/fcsstt5.mf + RELOC/fonts/source/jknappen/fc/fcsstt6.mf + RELOC/fonts/source/jknappen/fc/fcsstt7.mf + RELOC/fonts/source/jknappen/fc/fcsstt8.mf + RELOC/fonts/source/jknappen/fc/fcsstt9.mf + RELOC/fonts/source/jknappen/fc/fctt10.mf + RELOC/fonts/source/jknappen/fc/fctt11.mf + RELOC/fonts/source/jknappen/fc/fctt12.mf + RELOC/fonts/source/jknappen/fc/fctt14.mf + RELOC/fonts/source/jknappen/fc/fctt17.mf + RELOC/fonts/source/jknappen/fc/fctt20.mf + RELOC/fonts/source/jknappen/fc/fctt25.mf + RELOC/fonts/source/jknappen/fc/fctt5.mf + RELOC/fonts/source/jknappen/fc/fctt6.mf + RELOC/fonts/source/jknappen/fc/fctt7.mf + RELOC/fonts/source/jknappen/fc/fctt8.mf + RELOC/fonts/source/jknappen/fc/fctt9.mf + RELOC/fonts/source/jknappen/fc/fcttligt.mf + RELOC/fonts/source/jknappen/fc/fcu10.mf + RELOC/fonts/source/jknappen/fc/fcu11.mf + RELOC/fonts/source/jknappen/fc/fcu12.mf + RELOC/fonts/source/jknappen/fc/fcu14.mf + RELOC/fonts/source/jknappen/fc/fcu17.mf + RELOC/fonts/source/jknappen/fc/fcu20.mf + RELOC/fonts/source/jknappen/fc/fcu25.mf + RELOC/fonts/source/jknappen/fc/fcu5.mf + RELOC/fonts/source/jknappen/fc/fcu6.mf + RELOC/fonts/source/jknappen/fc/fcu7.mf + RELOC/fonts/source/jknappen/fc/fcu8.mf + RELOC/fonts/source/jknappen/fc/fcu9.mf + RELOC/fonts/source/jknappen/fc/itala.mf + RELOC/fonts/source/jknappen/fc/italbcd.mf + RELOC/fonts/source/jknappen/fc/itale.mf + RELOC/fonts/source/jknappen/fc/italfgh.mf + RELOC/fonts/source/jknappen/fc/italij.mf + RELOC/fonts/source/jknappen/fc/italklm.mf + RELOC/fonts/source/jknappen/fc/italn.mf + RELOC/fonts/source/jknappen/fc/italo.mf + RELOC/fonts/source/jknappen/fc/italpqr.mf + RELOC/fonts/source/jknappen/fc/italst.mf + RELOC/fonts/source/jknappen/fc/italuvw.mf + RELOC/fonts/source/jknappen/fc/italxyz.mf + RELOC/fonts/source/jknappen/fc/lowera.mf + RELOC/fonts/source/jknappen/fc/lowerbcd.mf + RELOC/fonts/source/jknappen/fc/lowere.mf + RELOC/fonts/source/jknappen/fc/lowerfgh.mf + RELOC/fonts/source/jknappen/fc/lowerij.mf + RELOC/fonts/source/jknappen/fc/lowerklm.mf + RELOC/fonts/source/jknappen/fc/lowern.mf + RELOC/fonts/source/jknappen/fc/lowero.mf + RELOC/fonts/source/jknappen/fc/lowerpqr.mf + RELOC/fonts/source/jknappen/fc/lowerst.mf + RELOC/fonts/source/jknappen/fc/loweruvw.mf + RELOC/fonts/source/jknappen/fc/lowerxyz.mf + RELOC/fonts/source/jknappen/fc/uppera.mf + RELOC/fonts/source/jknappen/fc/upperbcd.mf + RELOC/fonts/source/jknappen/fc/uppere.mf + RELOC/fonts/source/jknappen/fc/upperfgh.mf + RELOC/fonts/source/jknappen/fc/upperij.mf + RELOC/fonts/source/jknappen/fc/upperklm.mf + RELOC/fonts/source/jknappen/fc/uppern.mf + RELOC/fonts/source/jknappen/fc/uppero.mf + RELOC/fonts/source/jknappen/fc/upperpqr.mf + RELOC/fonts/source/jknappen/fc/upperst.mf + RELOC/fonts/source/jknappen/fc/upperuvw.mf + RELOC/fonts/source/jknappen/fc/upperxyz.mf + RELOC/fonts/tfm/jknappen/fc/fcbx10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx9.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi9.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl9.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu9.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc10.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc11.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc12.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc14.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc17.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc20.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc25.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc5.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc6.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc7.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc8.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc9.tfm + RELOC/fonts/tfm/jknappen/fc/fci10.tfm + RELOC/fonts/tfm/jknappen/fc/fci11.tfm + RELOC/fonts/tfm/jknappen/fc/fci12.tfm + RELOC/fonts/tfm/jknappen/fc/fci14.tfm + RELOC/fonts/tfm/jknappen/fc/fci17.tfm + RELOC/fonts/tfm/jknappen/fc/fci20.tfm + RELOC/fonts/tfm/jknappen/fc/fci25.tfm + RELOC/fonts/tfm/jknappen/fc/fci5.tfm + RELOC/fonts/tfm/jknappen/fc/fci6.tfm + RELOC/fonts/tfm/jknappen/fc/fci7.tfm + RELOC/fonts/tfm/jknappen/fc/fci8.tfm + RELOC/fonts/tfm/jknappen/fc/fci9.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt10.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt11.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt12.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt14.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt17.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt20.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt25.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt5.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt6.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt7.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt8.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt9.tfm + RELOC/fonts/tfm/jknappen/fc/fcr10.tfm + RELOC/fonts/tfm/jknappen/fc/fcr11.tfm + RELOC/fonts/tfm/jknappen/fc/fcr12.tfm + RELOC/fonts/tfm/jknappen/fc/fcr14.tfm + RELOC/fonts/tfm/jknappen/fc/fcr17.tfm + RELOC/fonts/tfm/jknappen/fc/fcr20.tfm + RELOC/fonts/tfm/jknappen/fc/fcr25.tfm + RELOC/fonts/tfm/jknappen/fc/fcr5.tfm + RELOC/fonts/tfm/jknappen/fc/fcr6.tfm + RELOC/fonts/tfm/jknappen/fc/fcr7.tfm + RELOC/fonts/tfm/jknappen/fc/fcr8.tfm + RELOC/fonts/tfm/jknappen/fc/fcr9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl9.tfm + RELOC/fonts/tfm/jknappen/fc/fcss10.tfm + RELOC/fonts/tfm/jknappen/fc/fcss11.tfm + RELOC/fonts/tfm/jknappen/fc/fcss12.tfm + RELOC/fonts/tfm/jknappen/fc/fcss14.tfm + RELOC/fonts/tfm/jknappen/fc/fcss17.tfm + RELOC/fonts/tfm/jknappen/fc/fcss20.tfm + RELOC/fonts/tfm/jknappen/fc/fcss25.tfm + RELOC/fonts/tfm/jknappen/fc/fcss5.tfm + RELOC/fonts/tfm/jknappen/fc/fcss6.tfm + RELOC/fonts/tfm/jknappen/fc/fcss7.tfm + RELOC/fonts/tfm/jknappen/fc/fcss8.tfm + RELOC/fonts/tfm/jknappen/fc/fcss9.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx10.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx11.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx12.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx14.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx17.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx20.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx25.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx5.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx6.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx7.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx8.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx9.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi10.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi11.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi12.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi14.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi17.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi20.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi25.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi5.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi6.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi7.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi8.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt9.tfm + RELOC/fonts/tfm/jknappen/fc/fctt10.tfm + RELOC/fonts/tfm/jknappen/fc/fctt11.tfm + RELOC/fonts/tfm/jknappen/fc/fctt12.tfm + RELOC/fonts/tfm/jknappen/fc/fctt14.tfm + RELOC/fonts/tfm/jknappen/fc/fctt17.tfm + RELOC/fonts/tfm/jknappen/fc/fctt20.tfm + RELOC/fonts/tfm/jknappen/fc/fctt25.tfm + RELOC/fonts/tfm/jknappen/fc/fctt5.tfm + RELOC/fonts/tfm/jknappen/fc/fctt6.tfm + RELOC/fonts/tfm/jknappen/fc/fctt7.tfm + RELOC/fonts/tfm/jknappen/fc/fctt8.tfm + RELOC/fonts/tfm/jknappen/fc/fctt9.tfm + RELOC/fonts/tfm/jknappen/fc/fcu10.tfm + RELOC/fonts/tfm/jknappen/fc/fcu11.tfm + RELOC/fonts/tfm/jknappen/fc/fcu12.tfm + RELOC/fonts/tfm/jknappen/fc/fcu14.tfm + RELOC/fonts/tfm/jknappen/fc/fcu17.tfm + RELOC/fonts/tfm/jknappen/fc/fcu20.tfm + RELOC/fonts/tfm/jknappen/fc/fcu25.tfm + RELOC/fonts/tfm/jknappen/fc/fcu5.tfm + RELOC/fonts/tfm/jknappen/fc/fcu6.tfm + RELOC/fonts/tfm/jknappen/fc/fcu7.tfm + RELOC/fonts/tfm/jknappen/fc/fcu8.tfm + RELOC/fonts/tfm/jknappen/fc/fcu9.tfm + RELOC/tex/latex/fc/fclfont.sty + RELOC/tex/latex/fc/fcuse.sty + RELOC/tex/latex/fc/t4cmr.fd + RELOC/tex/latex/fc/t4cmss.fd + RELOC/tex/latex/fc/t4cmtt.fd + RELOC/tex/latex/fc/t4enc.def + RELOC/tex/latex/fc/t4fcr.fd + RELOC/tex/latex/fc/t4phonet.sty +catalogue-ctan /fonts/jknappen/fc +catalogue-license gpl2 +catalogue-topics font font-mf multilingual +catalogue-version 1.4 + +name fcavtex +category Package +revision 38074 +shortdesc A thesis class for the FCAV/UNESP (Brazil) +relocated 1 +longdesc This package provides a class and a bibliography style for the +longdesc FCAV-UNESP (Faculdade de Ciencias Agrarias e Veterinarias de +longdesc Jaboticabal UNESP) brazilian university, written based on the +longdesc institution rules for thesis publications. +containersize 16180 +containerchecksum db440d7310805a7f3d918996e577a07c5d8dff72e6d667f00c1ffe5d88e3bcb689e794837609d9a0760530e923f9a28d3e5c052cad4c38e23ae03454e0ec26c4 +doccontainersize 332084 +doccontainerchecksum 2060c70b6a926aae23c145f11c7c6e255f684f925bf5447ee98fdd6f6290d64fc5a92ccf8cbf85e0c6f0d6fee869a2d947e3df8726fffa4a5d2c87c217beef59 +docfiles size=89 + RELOC/doc/latex/fcavtex/README details="Readme (in Brazilian Portuguese)" language="pt" + RELOC/doc/latex/fcavtex/examples/basico-cap1.tex + RELOC/doc/latex/fcavtex/examples/basico-principal.pdf + RELOC/doc/latex/fcavtex/examples/basico-principal.tex + RELOC/doc/latex/fcavtex/examples/basico-resumo.tex + RELOC/doc/latex/fcavtex/manual/fcavtex.pdf details="Package documentation (Brazilian Portuguese)" language="pt" + RELOC/doc/latex/fcavtex/manual/fcavtex.tex +runfiles size=20 + RELOC/bibtex/bst/fcavtex/fcavtex.bst + RELOC/tex/latex/fcavtex/fcavtex.cls +catalogue-contact-repository https://github.com/waltermaldonado/fcavTeX +catalogue-ctan /macros/latex/contrib/fcavtex +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.1 + +name fcltxdoc +category Package +revision 24500 +shortdesc Macros for use in the author's documentation +relocated 1 +longdesc The package is not advertised for public use, but is necessary +longdesc for the support of others of the author's packages (which are +longdesc compiled under the ltxdoc class). +containersize 10404 +containerchecksum c14db194a73247122e589024824a53125ff10e15f8bec2475530aa41e78d74993f73474ff9b3899bc499c0cd8dd3e1ea034ea821d233c2a512f8c4d4d06d095c +doccontainersize 635448 +doccontainerchecksum 4aa6aed9c5b4ddaa63eb2aa7e529da03dcfc57723a6cb40cbbfc729636e459f4df1e292bdcd20093595cc3ea154787fda41abb4f6f46db2a7331626f181f47d0 +docfiles size=177 + RELOC/doc/latex/fcltxdoc/fcltxdoc.pdf details="Package documentation" +srccontainersize 21560 +srccontainerchecksum 6b16053cf7941063e4f08a249d1b4dcb61127eb0f22938353b17b959e7a9cb78d7953b81346f25a6e49f4a7c8bc602b3f820c3b9acd3b84215796b3ef1a63550 +srcfiles size=22 + RELOC/source/latex/fcltxdoc/fcltxdoc.drv + RELOC/source/latex/fcltxdoc/fcltxdoc.dtx + RELOC/source/latex/fcltxdoc/fcltxdoc.ins +runfiles size=9 + RELOC/tex/latex/fcltxdoc/fcltxdoc.sty +catalogue-ctan /macros/latex/contrib/fcltxdoc +catalogue-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 1.0 + +name fcolumn +category Package +revision 57428 +shortdesc Typesetting financial tables +relocated 1 +longdesc In financial reports, text and currency amounts are regularly +longdesc put in one table, e.g., a year balance or a profit-and-loss +longdesc overview. This package provides the settings for automatically +longdesc typesetting such columns, including the sum line (preceded by a +longdesc rule of the correct width) using the specifier "f". +containersize 4376 +containerchecksum 9bd1bff80e03a080f2d3778c89c19478691cc119361229cd66b776e24260ddadc30ba37fadd5a82c631c14b369a2045960123f5b1f169ec699d9ad627ded3256 +doccontainersize 319588 +doccontainerchecksum fac7e6eae8c6c3d1c6b05eefcca881f08334ef32a10946227f0244c74460f3a66926e6735342dfbf4da80228a0271b10aed8b42fcf66eb72ae41ff74c9f72af4 +docfiles size=80 + RELOC/doc/latex/fcolumn/README details="Readme" + RELOC/doc/latex/fcolumn/fcolumn.pdf details="Package documentation" + RELOC/doc/latex/fcolumn/makefile +srccontainersize 21252 +srccontainerchecksum a343431efc38bb19ec033e0791c7b5712324c2dc92837b9d620b6a35d8a6fcec24faf04cb71edfaaf34d8355ad2f40c7ab51b21f4b3ebe1e4e84cef0c2af6487 +srcfiles size=18 + RELOC/source/latex/fcolumn/fcolumn.dtx + RELOC/source/latex/fcolumn/fcolumn.ins +runfiles size=4 + RELOC/tex/latex/fcolumn/fcolumn.sty +catalogue-ctan /macros/latex/contrib/fcolumn +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 1.3 + +name fdsymbol +category Package +revision 26722 +shortdesc A maths symbol font +relocated 1 +longdesc FdSymbol is a maths symbol font, designed as a companion to the +longdesc Fedra family by Typotheque, but it might also fit other +longdesc contemporary typefaces. +execute addMap fdsymbol.map +containersize 920220 +containerchecksum 37f716e9d540d7742f53cd38155141d763d3f8509d1aa1f3cff53ff33c45537c44dc68c9608558021868de3072302d7ac84909db05e8b25813c23ea01c87edcb +doccontainersize 461572 +doccontainerchecksum 7d1f3fd153bc17e65a99ce6a38c8992b2172c1d0b85254fcc7e926b9539928ad403809b8af4355abb1e93196b4e4d5461b587c8ad94d04cca7785c8a334b4ac1 +docfiles size=116 + RELOC/doc/fonts/fdsymbol/FONTLOG.txt + RELOC/doc/fonts/fdsymbol/OFL.txt + RELOC/doc/latex/fdsymbol/fdsymbol.pdf details="Package documentation" +srccontainersize 17720 +srccontainerchecksum d30403e01b2a33372ce49477ed81fcfcc505b50b1c0eb511dc360d86ec3793ff2ac0c8964448bf2525bec1bc5bb3792ea9729679e2ddd8215948c65bfd44afd7 +srcfiles size=38 + RELOC/source/latex/fdsymbol/fdsymbol.dtx + RELOC/source/latex/fdsymbol/fdsymbol.ins +runfiles size=471 + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-a.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-b.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-c.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-d.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-e.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-f.enc + RELOC/fonts/map/dvips/fdsymbol/fdsymbol.map + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Bold.otf + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Book.otf + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Medium.otf + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Regular.otf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF.mf + RELOC/fonts/source/public/fdsymbol/fdaccents.mf + RELOC/fonts/source/public/fdsymbol/fdarrows.mf + RELOC/fonts/source/public/fdsymbol/fdbase.mf + RELOC/fonts/source/public/fdsymbol/fddelims.mf + RELOC/fonts/source/public/fdsymbol/fdgeometric.mf + RELOC/fonts/source/public/fdsymbol/fdoperators.mf + RELOC/fonts/source/public/fdsymbol/fdrelations.mf + RELOC/fonts/source/public/fdsymbol/fdturnstile.mf + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Regular.tfm + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Regular.pfb + RELOC/tex/latex/fdsymbol/fdsymbol.sty +catalogue-contact-repository http://github.com/ummels/fdsymbol +catalogue-ctan /fonts/fdsymbol +catalogue-license ofl +catalogue-topics font font-symbol font-symbol-maths font-type1 font-otf font-mf +catalogue-version 0.8 + +name fduthesis +category Package +revision 56216 +shortdesc LaTeX thesis template for Fudan University +relocated 1 +longdesc This package is a LaTeX thesis template package for Fudan +longdesc University. It can make it easy to write theses both in Chinese +longdesc and English. +containersize 108324 +containerchecksum c91ca063c73e97947fc36c5d5c33cee2e9e963f9a4c993d209d3c2b0c950ba9a34f928a9e6fb5e3922b2757938651ea8f5eb6014f3878b0ae3f7f9cf4bab91c1 +doccontainersize 1361508 +doccontainerchecksum 1be56ed247773a6a28a17aa0a29446f1e2f63333efbfaa4533fc288a3ef7b2d635c10f36e51d8e1a414cf067155ad9dc109fdd93f5ed83900bc2a5eb5d94e4b4 +docfiles size=381 + RELOC/doc/latex/fduthesis/README.md details="Readme" + RELOC/doc/latex/fduthesis/fdulogo-example.tex + RELOC/doc/latex/fduthesis/fduthesis-code.pdf details="Code Implementation (Chinese)" language="zh" + RELOC/doc/latex/fduthesis/fduthesis-cover.tex + RELOC/doc/latex/fduthesis/fduthesis-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/fduthesis/fduthesis-en.tex + RELOC/doc/latex/fduthesis/fduthesis-template.tex + RELOC/doc/latex/fduthesis/fduthesis.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 116284 +srccontainerchecksum 73b13aa52c6cc5884b6785a995767e7de161071cb98fa6f695947efce7faafc6a61f1cca5c8cd73edca0216555b96c5f7a72b901bda9aac35df34f5d0b4fbe7a +srcfiles size=136 + RELOC/source/latex/fduthesis/fduthesis-doc.dtx + RELOC/source/latex/fduthesis/fduthesis-logo.dtx + RELOC/source/latex/fduthesis/fduthesis.dtx + RELOC/source/latex/fduthesis/fduthesis.ins +runfiles size=114 + RELOC/tex/latex/fduthesis/fdudoc.cls + RELOC/tex/latex/fduthesis/fdulogo.sty + RELOC/tex/latex/fduthesis/fduthesis-en.cls + RELOC/tex/latex/fduthesis/fduthesis.cls + RELOC/tex/latex/fduthesis/fduthesis.def + RELOC/tex/latex/fduthesis/fudan-emblem-new.pdf + RELOC/tex/latex/fduthesis/fudan-emblem.pdf + RELOC/tex/latex/fduthesis/fudan-name.pdf +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-license lppl1.3c +catalogue-topics dissertation class chinese latex3 +catalogue-version 0.7e + +name featpost +category Package +revision 35346 +shortdesc MetaPost macros for 3D +relocated 1 +longdesc These macros allow the production of three-dimensional schemes +longdesc containing: angles, circles, cylinders, cones and spheres, +longdesc among other things. +containersize 31996 +containerchecksum 9d7c35499df5c8c8efe8ea51d88c4cd9ddc6bd5238ec527d842aaa9ce42c30bb1d73c667f5aca22f385d3725c7443f043a2b63cd337a7f6d5b5d5810ea34bf64 +doccontainersize 17968016 +doccontainerchecksum e4eefb43d63c6522c3080a76b4df3a369932bc9e2f868ed0143d62fd2365bb74e6891705b287d19b4ca4b2560b0573d6ff9a0e5cf2a3da2e4b21482cd6cdd0b9 +docfiles size=5985 + RELOC/doc/metapost/featpost/MPexamples.html + RELOC/doc/metapost/featpost/README + RELOC/doc/metapost/featpost/bash/COMPILE.sh + RELOC/doc/metapost/featpost/bash/dvipngproof.sh + RELOC/doc/metapost/featpost/bash/laproof.sh + RELOC/doc/metapost/featpost/bash/makehtmlindex.sh + RELOC/doc/metapost/featpost/bash/pdflatexproof.sh + RELOC/doc/metapost/featpost/bash/pngmaker.sh + RELOC/doc/metapost/featpost/doc/Exemplifier.pdf + RELOC/doc/metapost/featpost/doc/alldefs.txt + RELOC/doc/metapost/featpost/doc/featpostbeamer.pdf + RELOC/doc/metapost/featpost/doc/featpostbeamer.tex + RELOC/doc/metapost/featpost/doc/featpostdocsource.tex + RELOC/doc/metapost/featpost/doc/featpostmanual.pdf details="Manual" + RELOC/doc/metapost/featpost/doc/featpostmanual.tex + RELOC/doc/metapost/featpost/doc/lastfiguretest.pdf + RELOC/doc/metapost/featpost/doc/lastfiguretest.tex + RELOC/doc/metapost/featpost/doc/letterfor3Dand4D.pdf + RELOC/doc/metapost/featpost/doc/letterfor3Dand4D.tex + RELOC/doc/metapost/featpost/doc/metapostpropaganda.pdf details="Promotional stuff" + RELOC/doc/metapost/featpost/doc/metapostpropaganda.tex + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.eps + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.jpeg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.pgm + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/CompanionsCollection.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/Diagram1.dia + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/Diagram1.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/KnuthCollection.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/dia.png + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/fekslatexmp.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/fekslatexmp.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/intersection2D.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/intersection2D.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/metapostpropaganda.png + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal-1.mps + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal-1.pdf + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.jpeg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.png + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpaf.jpeg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafphoto.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.0 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.10 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.11 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.12 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.13 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.14 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.15 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.2 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.3 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.4 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.5 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.6 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.7 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.8 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.9 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.2 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.3 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/sriyantrafinal-1.svg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/sriyantrafinal.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/todo.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.2 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/xfig.png + RELOC/doc/metapost/featpost/doc/otherinfo/BezierApprox.pdf + RELOC/doc/metapost/featpost/doc/otherinfo/CHANGESv1.803.txt + RELOC/doc/metapost/featpost/doc/otherinfo/Zpravodaj2009-4.pdf + RELOC/doc/metapost/featpost/doc/otherinfo/jdbug.png + RELOC/doc/metapost/featpost/doc/otherinfo/tb88henderson.pdf + RELOC/doc/metapost/featpost/example/38.mp + RELOC/doc/metapost/featpost/example/A131.mp + RELOC/doc/metapost/featpost/example/CAT.mp + RELOC/doc/metapost/featpost/example/DebianSwirlsmallEdited.mp + RELOC/doc/metapost/featpost/example/EBcrossed.mp + RELOC/doc/metapost/featpost/example/LED.mp + RELOC/doc/metapost/featpost/example/SlowDownNowBitmapScanned.mp + RELOC/doc/metapost/featpost/example/acmaglev.mp + RELOC/doc/metapost/featpost/example/acoplanv.mp + RELOC/doc/metapost/featpost/example/ahoraesglobal.mp + RELOC/doc/metapost/featpost/example/aledlogo.mp + RELOC/doc/metapost/featpost/example/allgreatideas.mp + RELOC/doc/metapost/featpost/example/anglinerigorouscircle.mp + RELOC/doc/metapost/featpost/example/antimattermeteor.mp + RELOC/doc/metapost/featpost/example/avalzero.mp + RELOC/doc/metapost/featpost/example/badshreeyantra.mp + RELOC/doc/metapost/featpost/example/balllauncher.mp + RELOC/doc/metapost/featpost/example/bananadimmer.mp + RELOC/doc/metapost/featpost/example/beautiful00.mp + RELOC/doc/metapost/featpost/example/bichaepolicia.mp + RELOC/doc/metapost/featpost/example/brownellips.mp + RELOC/doc/metapost/featpost/example/bstr.mp + RELOC/doc/metapost/featpost/example/bughunt.mp + RELOC/doc/metapost/featpost/example/buildcyclebug.mp + RELOC/doc/metapost/featpost/example/canschemes.mp + RELOC/doc/metapost/featpost/example/cap29res.mp + RELOC/doc/metapost/featpost/example/caratk3edit.mp + RELOC/doc/metapost/featpost/example/cartaxes.mp + RELOC/doc/metapost/featpost/example/casadopessoal.mp + RELOC/doc/metapost/featpost/example/cellevolve.mp + RELOC/doc/metapost/featpost/example/cinemwork.mp + RELOC/doc/metapost/featpost/example/circlespeedprofile.mp + RELOC/doc/metapost/featpost/example/closingbox.mp + RELOC/doc/metapost/featpost/example/cmykropes.mp + RELOC/doc/metapost/featpost/example/cone.mp + RELOC/doc/metapost/featpost/example/conegetready.mp + RELOC/doc/metapost/featpost/example/conicurv.mp + RELOC/doc/metapost/featpost/example/conoscopy.mp + RELOC/doc/metapost/featpost/example/convergingspirals.mp + RELOC/doc/metapost/featpost/example/crossingline.mp + RELOC/doc/metapost/featpost/example/cruztuga.mp + RELOC/doc/metapost/featpost/example/cubicfacecentered.mp + RELOC/doc/metapost/featpost/example/cubicfigures.mp + RELOC/doc/metapost/featpost/example/cubicstructurefcc.mp + RELOC/doc/metapost/featpost/example/cubicstructures.mp + RELOC/doc/metapost/featpost/example/cylimple.mp + RELOC/doc/metapost/featpost/example/cylinderborders.mp + RELOC/doc/metapost/featpost/example/daliasensor.mp + RELOC/doc/metapost/featpost/example/decorstatement.mp + RELOC/doc/metapost/featpost/example/defaultcmr.mp + RELOC/doc/metapost/featpost/example/deperspective.mp + RELOC/doc/metapost/featpost/example/derivondatriang.mp + RELOC/doc/metapost/featpost/example/diameters.mp + RELOC/doc/metapost/featpost/example/directfonts.mp + RELOC/doc/metapost/featpost/example/doitnow.mp + RELOC/doc/metapost/featpost/example/downloadicon.mp + RELOC/doc/metapost/featpost/example/dreamhouse.mp + RELOC/doc/metapost/featpost/example/durgayantra.mp + RELOC/doc/metapost/featpost/example/eemcsblabla.mp + RELOC/doc/metapost/featpost/example/electricpotential.mp + RELOC/doc/metapost/featpost/example/electrospiral.mp + RELOC/doc/metapost/featpost/example/ellipticextrusionpress.mp + RELOC/doc/metapost/featpost/example/ellipticprism.mp + RELOC/doc/metapost/featpost/example/ellipticproperties.mp + RELOC/doc/metapost/featpost/example/elliptictable.mp + RELOC/doc/metapost/featpost/example/ellipticthing.mp + RELOC/doc/metapost/featpost/example/embroncordada.mp + RELOC/doc/metapost/featpost/example/emptylines.mp + RELOC/doc/metapost/featpost/example/equilatrianglelines.mp + RELOC/doc/metapost/featpost/example/equilibriodetorques.mp + RELOC/doc/metapost/featpost/example/esteveslogo.mp + RELOC/doc/metapost/featpost/example/experimental.mp + RELOC/doc/metapost/featpost/example/experimental2Dsetup.mp + RELOC/doc/metapost/featpost/example/f1aula03.mp + RELOC/doc/metapost/featpost/example/f1aula05.mp + RELOC/doc/metapost/featpost/example/fakehole.mp + RELOC/doc/metapost/featpost/example/fallinthewind.mp + RELOC/doc/metapost/featpost/example/featpostlogo.mp + RELOC/doc/metapost/featpost/example/ffcbob.mp + RELOC/doc/metapost/featpost/example/fieldlines.mp + RELOC/doc/metapost/featpost/example/fieldlinesnorma.mp + RELOC/doc/metapost/featpost/example/fieldlinesnormapaper.mp + RELOC/doc/metapost/featpost/example/fieldlinesnormapaperwork.mp + RELOC/doc/metapost/featpost/example/fis1prex.mp + RELOC/doc/metapost/featpost/example/fis3prex.mp + RELOC/doc/metapost/featpost/example/fis3prex7.mp + RELOC/doc/metapost/featpost/example/fis3prey.mp + RELOC/doc/metapost/featpost/example/frustum.mp + RELOC/doc/metapost/featpost/example/galvanometro-inducao.mp + RELOC/doc/metapost/featpost/example/gausslawframe.mp + RELOC/doc/metapost/featpost/example/geombasic.mp + RELOC/doc/metapost/featpost/example/geomcasq.mp + RELOC/doc/metapost/featpost/example/geometricaverage.mp + RELOC/doc/metapost/featpost/example/geomfiguei.mp + RELOC/doc/metapost/featpost/example/geomfreder.mp + RELOC/doc/metapost/featpost/example/geommine.mp + RELOC/doc/metapost/featpost/example/geomsrinath.mp + RELOC/doc/metapost/featpost/example/gnupost.mp + RELOC/doc/metapost/featpost/example/gnupost3Dlogo.mp + RELOC/doc/metapost/featpost/example/goldenellipse.mp + RELOC/doc/metapost/featpost/example/graphene.mp + RELOC/doc/metapost/featpost/example/graphexample.mp + RELOC/doc/metapost/featpost/example/graphs.mp + RELOC/doc/metapost/featpost/example/halfcirclesfear.mp + RELOC/doc/metapost/featpost/example/hap.mp + RELOC/doc/metapost/featpost/example/heatfromroom.mp + RELOC/doc/metapost/featpost/example/helix.mp + RELOC/doc/metapost/featpost/example/hermitespliknot.mp + RELOC/doc/metapost/featpost/example/hexacylon.mp + RELOC/doc/metapost/featpost/example/hexagonalgrid.mp + RELOC/doc/metapost/featpost/example/hexagonaltrimesh.mp + RELOC/doc/metapost/featpost/example/hiddenlinegraph.mp + RELOC/doc/metapost/featpost/example/hiddensurface.mp + RELOC/doc/metapost/featpost/example/hiddensurfaces.mp + RELOC/doc/metapost/featpost/example/iamsorrykarl.mp + RELOC/doc/metapost/featpost/example/inductionbob.mp + RELOC/doc/metapost/featpost/example/integerbars.mp + RELOC/doc/metapost/featpost/example/integratorfigures.mp + RELOC/doc/metapost/featpost/example/interdigitrodes.mp + RELOC/doc/metapost/featpost/example/intersectorus.mp + RELOC/doc/metapost/featpost/example/intersectprolatespheroid.mp + RELOC/doc/metapost/featpost/example/iplaca.mp + RELOC/doc/metapost/featpost/example/jd44.mp + RELOC/doc/metapost/featpost/example/jdbug.mp + RELOC/doc/metapost/featpost/example/joinedemptylines.mp + RELOC/doc/metapost/featpost/example/keplernewtonfeynman.mp + RELOC/doc/metapost/featpost/example/kindofcube.mp + RELOC/doc/metapost/featpost/example/kindofcuber.mp + RELOC/doc/metapost/featpost/example/kopptrammel.mp + RELOC/doc/metapost/featpost/example/labelconstruct.mp + RELOC/doc/metapost/featpost/example/labelinspace.mp + RELOC/doc/metapost/featpost/example/lamarquejaune.mp + RELOC/doc/metapost/featpost/example/lasermachine.mp + RELOC/doc/metapost/featpost/example/latexboxes.mp + RELOC/doc/metapost/featpost/example/lawofcosines.mp + RELOC/doc/metapost/featpost/example/lcurvature.mp + RELOC/doc/metapost/featpost/example/ledlogo.mp + RELOC/doc/metapost/featpost/example/lgc2refractionEdited.mp + RELOC/doc/metapost/featpost/example/loglogpaper.mp + RELOC/doc/metapost/featpost/example/logofontest.mp + RELOC/doc/metapost/featpost/example/lowcostgreenhouse.mp + RELOC/doc/metapost/featpost/example/magneticflux.mp + RELOC/doc/metapost/featpost/example/mainmemtest.mp + RELOC/doc/metapost/featpost/example/manjusha.mp + RELOC/doc/metapost/featpost/example/matricskoc.mp + RELOC/doc/metapost/featpost/example/mce-lng.mp + RELOC/doc/metapost/featpost/example/metalcharge.mp + RELOC/doc/metapost/featpost/example/micostufas.mp + RELOC/doc/metapost/featpost/example/micromu.mp + RELOC/doc/metapost/featpost/example/milimetricpaper.mp + RELOC/doc/metapost/featpost/example/mpfields.mp + RELOC/doc/metapost/featpost/example/mptoolcone.mp + RELOC/doc/metapost/featpost/example/muslimpattern.mp + RELOC/doc/metapost/featpost/example/mypatent.mp + RELOC/doc/metapost/featpost/example/mypatentpieces.mp + RELOC/doc/metapost/featpost/example/mysquaresectionbar.mp + RELOC/doc/metapost/featpost/example/naoestacionar.mp + RELOC/doc/metapost/featpost/example/naotocanacalote.mp + RELOC/doc/metapost/featpost/example/nembends.mp + RELOC/doc/metapost/featpost/example/nembiaxi.mp + RELOC/doc/metapost/featpost/example/nemdirector.mp + RELOC/doc/metapost/featpost/example/nemquira.mp + RELOC/doc/metapost/featpost/example/nemquirapitch.mp + RELOC/doc/metapost/featpost/example/nemsaddl.mp + RELOC/doc/metapost/featpost/example/nemuniax.mp + RELOC/doc/metapost/featpost/example/newcommunism.mp + RELOC/doc/metapost/featpost/example/newexperimental.mp + RELOC/doc/metapost/featpost/example/nosimples.mp + RELOC/doc/metapost/featpost/example/nosuspension.mp + RELOC/doc/metapost/featpost/example/nsmetica.mp + RELOC/doc/metapost/featpost/example/nulldefectanglexample.mp + RELOC/doc/metapost/featpost/example/nurbstobeziern.mp + RELOC/doc/metapost/featpost/example/onebigword.mp + RELOC/doc/metapost/featpost/example/optest.mp + RELOC/doc/metapost/featpost/example/optica.mp + RELOC/doc/metapost/featpost/example/par3Dplotexamples.mp + RELOC/doc/metapost/featpost/example/parabolaonthestage.mp + RELOC/doc/metapost/featpost/example/parafuso.mp + RELOC/doc/metapost/featpost/example/parafusoprojxy.mp + RELOC/doc/metapost/featpost/example/pathernon.mp + RELOC/doc/metapost/featpost/example/pathofstraightline.mp + RELOC/doc/metapost/featpost/example/perspec.mp + RELOC/doc/metapost/featpost/example/photorefer.mp + RELOC/doc/metapost/featpost/example/photoreverse.mp + RELOC/doc/metapost/featpost/example/pifpaf.mp + RELOC/doc/metapost/featpost/example/pixelgrid.mp + RELOC/doc/metapost/featpost/example/plaintangency.mp + RELOC/doc/metapost/featpost/example/planintersection.mp + RELOC/doc/metapost/featpost/example/planpht.mp + RELOC/doc/metapost/featpost/example/polyhedr.mp + RELOC/doc/metapost/featpost/example/positivecharge.mp + RELOC/doc/metapost/featpost/example/potenciadecicloeliptico.mp + RELOC/doc/metapost/featpost/example/probtodooterr.mp + RELOC/doc/metapost/featpost/example/profaux.mp + RELOC/doc/metapost/featpost/example/project.mp + RELOC/doc/metapost/featpost/example/qap.mp + RELOC/doc/metapost/featpost/example/quartertorus.mp + RELOC/doc/metapost/featpost/example/radiativeforcing.mp + RELOC/doc/metapost/featpost/example/raiodoscirculos.mp + RELOC/doc/metapost/featpost/example/redplanet.mp + RELOC/doc/metapost/featpost/example/reeditedgoodquestionmark.mp + RELOC/doc/metapost/featpost/example/resistcircuit.mp + RELOC/doc/metapost/featpost/example/reuleaux.mp + RELOC/doc/metapost/featpost/example/revolipsoid.mp + RELOC/doc/metapost/featpost/example/revolutionparaboloid.mp + RELOC/doc/metapost/featpost/example/revolvers.mp + RELOC/doc/metapost/featpost/example/rigorcubo.mp + RELOC/doc/metapost/featpost/example/rigorouscircle.mp + RELOC/doc/metapost/featpost/example/rigorouscone.mp + RELOC/doc/metapost/featpost/example/rigorousdiscSD.mp + RELOC/doc/metapost/featpost/example/rigorousdiscoptions.mp + RELOC/doc/metapost/featpost/example/rigorousfearpath.mp + RELOC/doc/metapost/featpost/example/rmnbob.mp + RELOC/doc/metapost/featpost/example/roadincline.mp + RELOC/doc/metapost/featpost/example/rodarolaremplaninc.mp + RELOC/doc/metapost/featpost/example/ropepatterns.mp + RELOC/doc/metapost/featpost/example/rosadosventos.mp + RELOC/doc/metapost/featpost/example/rotatnlc.mp + RELOC/doc/metapost/featpost/example/rothexagrid.mp + RELOC/doc/metapost/featpost/example/rungekuttasecond.mp + RELOC/doc/metapost/featpost/example/sal.mp + RELOC/doc/metapost/featpost/example/sap.mp + RELOC/doc/metapost/featpost/example/saturn.mp + RELOC/doc/metapost/featpost/example/sfearschem.mp + RELOC/doc/metapost/featpost/example/sharpraytrace.mp + RELOC/doc/metapost/featpost/example/signalvertexSD.mp + RELOC/doc/metapost/featpost/example/simplecar.mp + RELOC/doc/metapost/featpost/example/simplecarparam.mp + RELOC/doc/metapost/featpost/example/simplecenterofmass.mp + RELOC/doc/metapost/featpost/example/simplelens.mp + RELOC/doc/metapost/featpost/example/simplependulum.mp + RELOC/doc/metapost/featpost/example/simplexperiment.mp + RELOC/doc/metapost/featpost/example/sincityredesigned.mp + RELOC/doc/metapost/featpost/example/slingshot.mp + RELOC/doc/metapost/featpost/example/smC.mp + RELOC/doc/metapost/featpost/example/sniperlogo.mp + RELOC/doc/metapost/featpost/example/solarconcentrator.mp + RELOC/doc/metapost/featpost/example/solardish.mp + RELOC/doc/metapost/featpost/example/some2Dvecs.mp + RELOC/doc/metapost/featpost/example/spaceinvader.mp + RELOC/doc/metapost/featpost/example/spatialhalfsfear.mp + RELOC/doc/metapost/featpost/example/spherample.mp + RELOC/doc/metapost/featpost/example/splineperspective.mp + RELOC/doc/metapost/featpost/example/splineperspectives.mp + RELOC/doc/metapost/featpost/example/spltwiben.mp + RELOC/doc/metapost/featpost/example/squareanglines.mp + RELOC/doc/metapost/featpost/example/srinathpolineni.mp + RELOC/doc/metapost/featpost/example/stageforthree.mp + RELOC/doc/metapost/featpost/example/statement.mp + RELOC/doc/metapost/featpost/example/statethreelines.mp + RELOC/doc/metapost/featpost/example/steamcamera.mp + RELOC/doc/metapost/featpost/example/strength1defect.mp + RELOC/doc/metapost/featpost/example/symbol.mp + RELOC/doc/metapost/featpost/example/tangency2D.mp + RELOC/doc/metapost/featpost/example/tangencypoint.mp + RELOC/doc/metapost/featpost/example/tdarrow.mp + RELOC/doc/metapost/featpost/example/tdcircarrow.mp + RELOC/doc/metapost/featpost/example/telemira.mp + RELOC/doc/metapost/featpost/example/telheiro.mp + RELOC/doc/metapost/featpost/example/tete.mp + RELOC/doc/metapost/featpost/example/tetrapodes.mp + RELOC/doc/metapost/featpost/example/theHURD.mp + RELOC/doc/metapost/featpost/example/thearchicon.mp + RELOC/doc/metapost/featpost/example/thethreekindsofperspec.mp + RELOC/doc/metapost/featpost/example/thunderproblem.mp + RELOC/doc/metapost/featpost/example/tiposdetrans.mp + RELOC/doc/metapost/featpost/example/tiposdetransb.mp + RELOC/doc/metapost/featpost/example/tiposdetranst.mp + RELOC/doc/metapost/featpost/example/toro4transit.mp + RELOC/doc/metapost/featpost/example/torus.mp + RELOC/doc/metapost/featpost/example/torusexperiment.mp + RELOC/doc/metapost/featpost/example/trajectoryline.mp + RELOC/doc/metapost/featpost/example/trebuchet.mp + RELOC/doc/metapost/featpost/example/treecarbonedited.mp + RELOC/doc/metapost/featpost/example/trianglecenterofmass.mp + RELOC/doc/metapost/featpost/example/triangulartrimesh.mp + RELOC/doc/metapost/featpost/example/trig.mp + RELOC/doc/metapost/featpost/example/trigonometry.mp + RELOC/doc/metapost/featpost/example/troncoconedef.mp + RELOC/doc/metapost/featpost/example/tropicalglobe.mp + RELOC/doc/metapost/featpost/example/troysfear.mp + RELOC/doc/metapost/featpost/example/tshirtfig.mp + RELOC/doc/metapost/featpost/example/tuftescatter.mp + RELOC/doc/metapost/featpost/example/twistflat.mp + RELOC/doc/metapost/featpost/example/twistnlc.mp + RELOC/doc/metapost/featpost/example/twistroundbiax.mp + RELOC/doc/metapost/featpost/example/twoDcolision.mp + RELOC/doc/metapost/featpost/example/twocyclestogether.mp + RELOC/doc/metapost/featpost/example/twoholes.mp + RELOC/doc/metapost/featpost/example/twoplustwo.mp + RELOC/doc/metapost/featpost/example/twosolarpanels.mp + RELOC/doc/metapost/featpost/example/twoupcones.mp + RELOC/doc/metapost/featpost/example/ubhtransients.mp + RELOC/doc/metapost/featpost/example/ultraeye.mp + RELOC/doc/metapost/featpost/example/ultraimprovertex.mp + RELOC/doc/metapost/featpost/example/unperfection.mp + RELOC/doc/metapost/featpost/example/unperfectionremoved.mp + RELOC/doc/metapost/featpost/example/vanallenbelt.mp + RELOC/doc/metapost/featpost/example/verygoodcone.mp + RELOC/doc/metapost/featpost/example/wwfpmp.mp + RELOC/doc/metapost/featpost/example/xcmplaca2buraquads.mp + RELOC/doc/metapost/featpost/example/xraycamera.mp + RELOC/doc/metapost/featpost/png/38.1.png + RELOC/doc/metapost/featpost/png/A131.1.png + RELOC/doc/metapost/featpost/png/CAT.1.png + RELOC/doc/metapost/featpost/png/DebianSwirlsmallEdited.1.png + RELOC/doc/metapost/featpost/png/EBcrossed.1.png + RELOC/doc/metapost/featpost/png/LED.1.png + RELOC/doc/metapost/featpost/png/SlowDownNowBitmapScanned.1.png + RELOC/doc/metapost/featpost/png/acmaglev.1.png + RELOC/doc/metapost/featpost/png/acoplanv.1.png + RELOC/doc/metapost/featpost/png/ahoraesglobal.1.png + RELOC/doc/metapost/featpost/png/aledlogo.1.png + RELOC/doc/metapost/featpost/png/aledlogo.2.png + RELOC/doc/metapost/featpost/png/allgreatideas.1.png + RELOC/doc/metapost/featpost/png/anglinerigorouscircle.1.png + RELOC/doc/metapost/featpost/png/antimattermeteor.1.png + RELOC/doc/metapost/featpost/png/avalzero.1.png + RELOC/doc/metapost/featpost/png/avalzero.2.png + RELOC/doc/metapost/featpost/png/avalzero.3.png + RELOC/doc/metapost/featpost/png/avalzero.4.png + RELOC/doc/metapost/featpost/png/badshreeyantra.1.png + RELOC/doc/metapost/featpost/png/balllauncher.0.png + RELOC/doc/metapost/featpost/png/balllauncher.9.png + RELOC/doc/metapost/featpost/png/bananadimmer.1.png + RELOC/doc/metapost/featpost/png/beautiful00.1.png + RELOC/doc/metapost/featpost/png/bichaepolicia.0.png + RELOC/doc/metapost/featpost/png/brownellips.0.png + RELOC/doc/metapost/featpost/png/bstr.1.png + RELOC/doc/metapost/featpost/png/bughunt.1.png + RELOC/doc/metapost/featpost/png/bughunt.2.png + RELOC/doc/metapost/featpost/png/buildcyclebug.1.png + RELOC/doc/metapost/featpost/png/buildcyclebug.2.png + RELOC/doc/metapost/featpost/png/canschemes.1.png + RELOC/doc/metapost/featpost/png/canschemes.2.png + RELOC/doc/metapost/featpost/png/canschemes.3.png + RELOC/doc/metapost/featpost/png/cap29res.1.png + RELOC/doc/metapost/featpost/png/cap29res.2.png + RELOC/doc/metapost/featpost/png/cap29res.3.png + RELOC/doc/metapost/featpost/png/cap29res.4.png + RELOC/doc/metapost/featpost/png/cap29res.5.png + RELOC/doc/metapost/featpost/png/cap29res.6.png + RELOC/doc/metapost/featpost/png/cap29res.7.png + RELOC/doc/metapost/featpost/png/cap29res.8.png + RELOC/doc/metapost/featpost/png/cap29res.9.png + RELOC/doc/metapost/featpost/png/caratk3edit.1.png + RELOC/doc/metapost/featpost/png/cartaxes.1.png + RELOC/doc/metapost/featpost/png/cartaxes.2.png + RELOC/doc/metapost/featpost/png/casadopessoal.1.png + RELOC/doc/metapost/featpost/png/casadopessoal.2.png + RELOC/doc/metapost/featpost/png/casadopessoal.3.png + RELOC/doc/metapost/featpost/png/casadopessoal.4.png + RELOC/doc/metapost/featpost/png/cellevolve.0.png + RELOC/doc/metapost/featpost/png/cinemwork.1.png + RELOC/doc/metapost/featpost/png/cinemwork.2.png + RELOC/doc/metapost/featpost/png/circlespeedprofile.1.png + RELOC/doc/metapost/featpost/png/closingbox.1.png + RELOC/doc/metapost/featpost/png/cmykropes.1.png + RELOC/doc/metapost/featpost/png/cone.1.png + RELOC/doc/metapost/featpost/png/conegetready.1.png + RELOC/doc/metapost/featpost/png/conicurv.1.png + RELOC/doc/metapost/featpost/png/conoscopy.1.png + RELOC/doc/metapost/featpost/png/conoscopy.2.png + RELOC/doc/metapost/featpost/png/conoscopy.3.png + RELOC/doc/metapost/featpost/png/conoscopy.4.png + RELOC/doc/metapost/featpost/png/conoscopy.5.png + RELOC/doc/metapost/featpost/png/convergingspirals.1.png + RELOC/doc/metapost/featpost/png/convergingspirals.2.png + RELOC/doc/metapost/featpost/png/convergingspirals.3.png + RELOC/doc/metapost/featpost/png/convergingspirals.4.png + RELOC/doc/metapost/featpost/png/convergingspirals.5.png + RELOC/doc/metapost/featpost/png/crossingline.1.png + RELOC/doc/metapost/featpost/png/crossingline.2.png + RELOC/doc/metapost/featpost/png/crossingline.3.png + RELOC/doc/metapost/featpost/png/cruztuga.1.png + RELOC/doc/metapost/featpost/png/cubicfacecentered.1.png + RELOC/doc/metapost/featpost/png/cubicfigures.1.png + RELOC/doc/metapost/featpost/png/cubicfigures.2.png + RELOC/doc/metapost/featpost/png/cubicfigures.3.png + RELOC/doc/metapost/featpost/png/cubicstructurefcc.1.png + RELOC/doc/metapost/featpost/png/cubicstructures.1.png + RELOC/doc/metapost/featpost/png/cubicstructures.2.png + RELOC/doc/metapost/featpost/png/cubicstructures.3.png + RELOC/doc/metapost/featpost/png/cubicstructures.4.png + RELOC/doc/metapost/featpost/png/cubicstructures.5.png + RELOC/doc/metapost/featpost/png/cubicstructures.6.png + RELOC/doc/metapost/featpost/png/cylimple.1.png + RELOC/doc/metapost/featpost/png/cylinderborders.1.png + RELOC/doc/metapost/featpost/png/daliasensor.1.png + RELOC/doc/metapost/featpost/png/decorstatement.0.png + RELOC/doc/metapost/featpost/png/defaultcmr.0.png + RELOC/doc/metapost/featpost/png/deperspective.1.png + RELOC/doc/metapost/featpost/png/deperspective.2.png + RELOC/doc/metapost/featpost/png/deperspective.3.png + RELOC/doc/metapost/featpost/png/deperspective.4.png + RELOC/doc/metapost/featpost/png/derivondatriang.1.png + RELOC/doc/metapost/featpost/png/diameters.1.png + RELOC/doc/metapost/featpost/png/directfonts.0.png + RELOC/doc/metapost/featpost/png/doitnow.1.png + RELOC/doc/metapost/featpost/png/downloadicon.1.png + RELOC/doc/metapost/featpost/png/dreamhouse.1.png + RELOC/doc/metapost/featpost/png/dreamhouse.2.png + RELOC/doc/metapost/featpost/png/durgayantra.1.png + RELOC/doc/metapost/featpost/png/durgayantra.2.png + RELOC/doc/metapost/featpost/png/eemcsblabla.1.png + RELOC/doc/metapost/featpost/png/electricpotential.0.png + RELOC/doc/metapost/featpost/png/electricpotential.1.png + RELOC/doc/metapost/featpost/png/electricpotential.2.png + RELOC/doc/metapost/featpost/png/electricpotential.3.png + RELOC/doc/metapost/featpost/png/electrospiral.1.png + RELOC/doc/metapost/featpost/png/ellipticextrusionpress.1.png + RELOC/doc/metapost/featpost/png/ellipticprism.1.png + RELOC/doc/metapost/featpost/png/ellipticproperties.1.png + RELOC/doc/metapost/featpost/png/elliptictable.1.png + RELOC/doc/metapost/featpost/png/ellipticthing.1.png + RELOC/doc/metapost/featpost/png/embroncordada.1.png + RELOC/doc/metapost/featpost/png/emptylines.1.png + RELOC/doc/metapost/featpost/png/equilatrianglelines.1.png + RELOC/doc/metapost/featpost/png/equilibriodetorques.1.png + RELOC/doc/metapost/featpost/png/esteveslogo.1.png + RELOC/doc/metapost/featpost/png/experimental.1.png + RELOC/doc/metapost/featpost/png/experimental2Dsetup.1.png + RELOC/doc/metapost/featpost/png/f1aula03.1.png + RELOC/doc/metapost/featpost/png/f1aula03.2.png + RELOC/doc/metapost/featpost/png/f1aula03.3.png + RELOC/doc/metapost/featpost/png/f1aula03.4.png + RELOC/doc/metapost/featpost/png/f1aula05.1.png + RELOC/doc/metapost/featpost/png/f1aula05.2.png + RELOC/doc/metapost/featpost/png/fakehole.1.png + RELOC/doc/metapost/featpost/png/fakehole.2.png + RELOC/doc/metapost/featpost/png/fallinthewind.1.png + RELOC/doc/metapost/featpost/png/featpostlogo.1.png + RELOC/doc/metapost/featpost/png/ffcbob.1.png + RELOC/doc/metapost/featpost/png/fieldlines.1.png + RELOC/doc/metapost/featpost/png/fieldlinesnorma.1.png + RELOC/doc/metapost/featpost/png/fieldlinesnorma.2.png + RELOC/doc/metapost/featpost/png/fieldlinesnormapaper.1.png + RELOC/doc/metapost/featpost/png/fieldlinesnormapaper.2.png + RELOC/doc/metapost/featpost/png/fieldlinesnormapaperwork.1.png + RELOC/doc/metapost/featpost/png/fis1prex.1.png + RELOC/doc/metapost/featpost/png/fis1prex.2.png + RELOC/doc/metapost/featpost/png/fis1prex.3.png + RELOC/doc/metapost/featpost/png/fis3prex.1.png + RELOC/doc/metapost/featpost/png/fis3prex.2.png + RELOC/doc/metapost/featpost/png/fis3prex.3.png + RELOC/doc/metapost/featpost/png/fis3prex.4.png + RELOC/doc/metapost/featpost/png/fis3prex.5.png + RELOC/doc/metapost/featpost/png/fis3prex.6.png + RELOC/doc/metapost/featpost/png/fis3prex.7.png + RELOC/doc/metapost/featpost/png/fis3prex.8.png + RELOC/doc/metapost/featpost/png/fis3prex.9.png + RELOC/doc/metapost/featpost/png/fis3prex7.1.png + RELOC/doc/metapost/featpost/png/fis3prex7.2.png + RELOC/doc/metapost/featpost/png/fis3prex7.3.png + RELOC/doc/metapost/featpost/png/fis3prex7.4.png + RELOC/doc/metapost/featpost/png/fis3prex7.5.png + RELOC/doc/metapost/featpost/png/fis3prex7.6.png + RELOC/doc/metapost/featpost/png/fis3prex7.7.png + RELOC/doc/metapost/featpost/png/fis3prex7.8.png + RELOC/doc/metapost/featpost/png/fis3prey.1.png + RELOC/doc/metapost/featpost/png/fis3prey.2.png + RELOC/doc/metapost/featpost/png/fis3prey.3.png + RELOC/doc/metapost/featpost/png/frustum.1.png + RELOC/doc/metapost/featpost/png/galvanometro-inducao.1.png + RELOC/doc/metapost/featpost/png/gausslawframe.1.png + RELOC/doc/metapost/featpost/png/geombasic.1.png + RELOC/doc/metapost/featpost/png/geomcasq.1.png + RELOC/doc/metapost/featpost/png/geometricaverage.1.png + RELOC/doc/metapost/featpost/png/geomfiguei.1.png + RELOC/doc/metapost/featpost/png/geomfreder.1.png + RELOC/doc/metapost/featpost/png/geommine.1.png + RELOC/doc/metapost/featpost/png/geomsrinath.1.png + RELOC/doc/metapost/featpost/png/gnupost.1.png + RELOC/doc/metapost/featpost/png/gnupost3Dlogo.1.png + RELOC/doc/metapost/featpost/png/goldenellipse.1.png + RELOC/doc/metapost/featpost/png/graphene.1.png + RELOC/doc/metapost/featpost/png/graphexample.1.png + RELOC/doc/metapost/featpost/png/graphs.1.png + RELOC/doc/metapost/featpost/png/graphs.2.png + RELOC/doc/metapost/featpost/png/halfcirclesfear.1.png + RELOC/doc/metapost/featpost/png/hap.1.png + RELOC/doc/metapost/featpost/png/heatfromroom.1.png + RELOC/doc/metapost/featpost/png/helix.1.png + RELOC/doc/metapost/featpost/png/hermitespliknot.1.png + RELOC/doc/metapost/featpost/png/hexacylon.1.png + RELOC/doc/metapost/featpost/png/hexagonalgrid.1.png + RELOC/doc/metapost/featpost/png/hexagonalgrid.2.png + RELOC/doc/metapost/featpost/png/hexagonalgrid.3.png + RELOC/doc/metapost/featpost/png/hexagonaltrimesh.1.png + RELOC/doc/metapost/featpost/png/hiddenlinegraph.1.png + RELOC/doc/metapost/featpost/png/hiddensurface.1.png + RELOC/doc/metapost/featpost/png/hiddensurfaces.1.png + RELOC/doc/metapost/featpost/png/iamsorrykarl.1.png + RELOC/doc/metapost/featpost/png/inductionbob.1.png + RELOC/doc/metapost/featpost/png/integerbars.1.png + RELOC/doc/metapost/featpost/png/integratorfigures.1.png + RELOC/doc/metapost/featpost/png/integratorfigures.2.png + RELOC/doc/metapost/featpost/png/interdigitrodes.1.png + RELOC/doc/metapost/featpost/png/intersectorus.1.png + RELOC/doc/metapost/featpost/png/intersectprolatespheroid.1.png + RELOC/doc/metapost/featpost/png/iplaca.1.png + RELOC/doc/metapost/featpost/png/jd44.1.png + RELOC/doc/metapost/featpost/png/jd44.2.png + RELOC/doc/metapost/featpost/png/jd44.3.png + RELOC/doc/metapost/featpost/png/jd44.4.png + RELOC/doc/metapost/featpost/png/jdbug.1.png + RELOC/doc/metapost/featpost/png/jdbug.2.png + RELOC/doc/metapost/featpost/png/joinedemptylines.1.png + RELOC/doc/metapost/featpost/png/keplernewtonfeynman.1.png + RELOC/doc/metapost/featpost/png/kindofcube.1.png + RELOC/doc/metapost/featpost/png/kindofcube.2.png + RELOC/doc/metapost/featpost/png/kindofcuber.1.png + RELOC/doc/metapost/featpost/png/kopptrammel.1.png + RELOC/doc/metapost/featpost/png/labelconstruct.1.png + RELOC/doc/metapost/featpost/png/labelinspace.1.png + RELOC/doc/metapost/featpost/png/lamarquejaune.1.png + RELOC/doc/metapost/featpost/png/lasermachine.1.png + RELOC/doc/metapost/featpost/png/latexboxes.0.png + RELOC/doc/metapost/featpost/png/latexboxes.1.png + RELOC/doc/metapost/featpost/png/lawofcosines.1.png + RELOC/doc/metapost/featpost/png/lawofcosines.2.png + RELOC/doc/metapost/featpost/png/lcurvature.1.png + RELOC/doc/metapost/featpost/png/lcurvature.2.png + RELOC/doc/metapost/featpost/png/ledlogo.1.png + RELOC/doc/metapost/featpost/png/ledlogo.2.png + RELOC/doc/metapost/featpost/png/ledlogo.3.png + RELOC/doc/metapost/featpost/png/ledlogo.4.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.1.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.2.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.3.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.4.png + RELOC/doc/metapost/featpost/png/loglogpaper.1.png + RELOC/doc/metapost/featpost/png/logofontest.0.png + RELOC/doc/metapost/featpost/png/lowcostgreenhouse.1.png + RELOC/doc/metapost/featpost/png/magneticflux.1.png + RELOC/doc/metapost/featpost/png/magneticflux.2.png + RELOC/doc/metapost/featpost/png/mainmemtest.1.png + RELOC/doc/metapost/featpost/png/manjusha.1.png + RELOC/doc/metapost/featpost/png/manjusha.4.png + RELOC/doc/metapost/featpost/png/manjusha.6.png + RELOC/doc/metapost/featpost/png/matricskoc.1.png + RELOC/doc/metapost/featpost/png/mce-lng.1.png + RELOC/doc/metapost/featpost/png/metalcharge.1.png + RELOC/doc/metapost/featpost/png/micostufas.1.png + RELOC/doc/metapost/featpost/png/micromu.1.png + RELOC/doc/metapost/featpost/png/milimetricpaper.1.png + RELOC/doc/metapost/featpost/png/milimetricpaper.2.png + RELOC/doc/metapost/featpost/png/mpfields.0.png + RELOC/doc/metapost/featpost/png/mpfields.1.png + RELOC/doc/metapost/featpost/png/mpfields.2.png + RELOC/doc/metapost/featpost/png/mpfields.3.png + RELOC/doc/metapost/featpost/png/mpfields.4.png + RELOC/doc/metapost/featpost/png/mpfields.5.png + RELOC/doc/metapost/featpost/png/mpfields.6.png + RELOC/doc/metapost/featpost/png/mpfields.7.png + RELOC/doc/metapost/featpost/png/mptoolcone.0.png + RELOC/doc/metapost/featpost/png/muslimpattern.1.png + RELOC/doc/metapost/featpost/png/muslimpattern.2.png + RELOC/doc/metapost/featpost/png/mypatent.1.png + RELOC/doc/metapost/featpost/png/mypatent.2.png + RELOC/doc/metapost/featpost/png/mypatent.3.png + RELOC/doc/metapost/featpost/png/mypatent.4.png + RELOC/doc/metapost/featpost/png/mypatentpieces.1.png + RELOC/doc/metapost/featpost/png/mysquaresectionbar.1.png + RELOC/doc/metapost/featpost/png/naoestacionar.1.png + RELOC/doc/metapost/featpost/png/naotocanacalote.1.png + RELOC/doc/metapost/featpost/png/nembends.1.png + RELOC/doc/metapost/featpost/png/nembiaxi.1.png + RELOC/doc/metapost/featpost/png/nemdirector.1.png + RELOC/doc/metapost/featpost/png/nemquira.1.png + RELOC/doc/metapost/featpost/png/nemquirapitch.1.png + RELOC/doc/metapost/featpost/png/nemsaddl.1.png + RELOC/doc/metapost/featpost/png/nemuniax.1.png + RELOC/doc/metapost/featpost/png/newcommunism.1.png + RELOC/doc/metapost/featpost/png/newcommunism.2.png + RELOC/doc/metapost/featpost/png/newexperimental.1.png + RELOC/doc/metapost/featpost/png/nosimples.1.png + RELOC/doc/metapost/featpost/png/nosuspension.0.png + RELOC/doc/metapost/featpost/png/nsmetica.1.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.1.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.2.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.3.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.4.png + RELOC/doc/metapost/featpost/png/nurbstobeziern.0.png + RELOC/doc/metapost/featpost/png/onebigword.1.png + RELOC/doc/metapost/featpost/png/optest.1.png + RELOC/doc/metapost/featpost/png/optest.2.png + RELOC/doc/metapost/featpost/png/optica.1.png + RELOC/doc/metapost/featpost/png/par3Dplotexamples.1.png + RELOC/doc/metapost/featpost/png/par3Dplotexamples.2.png + RELOC/doc/metapost/featpost/png/parafuso.1.png + RELOC/doc/metapost/featpost/png/parafuso.2.png + RELOC/doc/metapost/featpost/png/parafuso.3.png + RELOC/doc/metapost/featpost/png/parafuso.4.png + RELOC/doc/metapost/featpost/png/parafusoprojxy.1.png + RELOC/doc/metapost/featpost/png/pathernon.0.png + RELOC/doc/metapost/featpost/png/pathofstraightline.1.png + RELOC/doc/metapost/featpost/png/perspec.1.png + RELOC/doc/metapost/featpost/png/photorefer.1.png + RELOC/doc/metapost/featpost/png/photorefer.2.png + RELOC/doc/metapost/featpost/png/photoreverse.1.png + RELOC/doc/metapost/featpost/png/pifpaf.1.png + RELOC/doc/metapost/featpost/png/pixelgrid.1.png + RELOC/doc/metapost/featpost/png/plaintangency.0.png + RELOC/doc/metapost/featpost/png/plaintangency.1.png + RELOC/doc/metapost/featpost/png/planintersection.1.png + RELOC/doc/metapost/featpost/png/planpht.1.png + RELOC/doc/metapost/featpost/png/planpht.2.png + RELOC/doc/metapost/featpost/png/planpht.3.png + RELOC/doc/metapost/featpost/png/planpht.4.png + RELOC/doc/metapost/featpost/png/planpht.5.png + RELOC/doc/metapost/featpost/png/planpht.6.png + RELOC/doc/metapost/featpost/png/planpht.7.png + RELOC/doc/metapost/featpost/png/polyhedr.1.png + RELOC/doc/metapost/featpost/png/polyhedr.2.png + RELOC/doc/metapost/featpost/png/polyhedr.3.png + RELOC/doc/metapost/featpost/png/positivecharge.1.png + RELOC/doc/metapost/featpost/png/potenciadecicloeliptico.1.png + RELOC/doc/metapost/featpost/png/probtodooterr.1.png + RELOC/doc/metapost/featpost/png/profaux.1.png + RELOC/doc/metapost/featpost/png/project.1.png + RELOC/doc/metapost/featpost/png/qap.1.png + RELOC/doc/metapost/featpost/png/quartertorus.1.png + RELOC/doc/metapost/featpost/png/quartertorus.2.png + RELOC/doc/metapost/featpost/png/radiativeforcing.0.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.1.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.2.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.3.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.4.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.5.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.6.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.7.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.8.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.9.png + RELOC/doc/metapost/featpost/png/redplanet.1.png + RELOC/doc/metapost/featpost/png/reeditedgoodquestionmark.1.png + RELOC/doc/metapost/featpost/png/resistcircuit.1.png + RELOC/doc/metapost/featpost/png/reuleaux.1.png + RELOC/doc/metapost/featpost/png/reuleaux.2.png + RELOC/doc/metapost/featpost/png/revolipsoid.1.png + RELOC/doc/metapost/featpost/png/revolipsoid.2.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.1.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.2.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.3.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.4.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.5.png + RELOC/doc/metapost/featpost/png/revolvers.1.png + RELOC/doc/metapost/featpost/png/revolvers.2.png + RELOC/doc/metapost/featpost/png/revolvers.3.png + RELOC/doc/metapost/featpost/png/revolvers.4.png + RELOC/doc/metapost/featpost/png/revolvers.5.png + RELOC/doc/metapost/featpost/png/revolvers.6.png + RELOC/doc/metapost/featpost/png/revolvers.7.png + RELOC/doc/metapost/featpost/png/rigorcubo.0.png + RELOC/doc/metapost/featpost/png/rigorouscircle.1.png + RELOC/doc/metapost/featpost/png/rigorouscone.1.png + RELOC/doc/metapost/featpost/png/rigorousdiscSD.1.png + RELOC/doc/metapost/featpost/png/rigorousdiscoptions.1.png + RELOC/doc/metapost/featpost/png/rigorousfearpath.1.png + RELOC/doc/metapost/featpost/png/rmnbob.1.png + RELOC/doc/metapost/featpost/png/roadincline.1.png + RELOC/doc/metapost/featpost/png/rodarolaremplaninc.1.png + RELOC/doc/metapost/featpost/png/ropepatterns.1.png + RELOC/doc/metapost/featpost/png/rosadosventos.1.png + RELOC/doc/metapost/featpost/png/rotatnlc.1.png + RELOC/doc/metapost/featpost/png/rothexagrid.1.png + RELOC/doc/metapost/featpost/png/rungekuttasecond.1.png + RELOC/doc/metapost/featpost/png/rungekuttasecond.2.png + RELOC/doc/metapost/featpost/png/sal.1.png + RELOC/doc/metapost/featpost/png/sal.2.png + RELOC/doc/metapost/featpost/png/sap.1.png + RELOC/doc/metapost/featpost/png/saturn.1.png + RELOC/doc/metapost/featpost/png/sfearschem.1.png + RELOC/doc/metapost/featpost/png/sharpraytrace.1.png + RELOC/doc/metapost/featpost/png/sharpraytrace.2.png + RELOC/doc/metapost/featpost/png/sharpraytrace.3.png + RELOC/doc/metapost/featpost/png/sharpraytrace.4.png + RELOC/doc/metapost/featpost/png/signalvertexSD.1.png + RELOC/doc/metapost/featpost/png/simplecar.1.png + RELOC/doc/metapost/featpost/png/simplecarparam.1.png + RELOC/doc/metapost/featpost/png/simplecenterofmass.0.png + RELOC/doc/metapost/featpost/png/simplecenterofmass.1.png + RELOC/doc/metapost/featpost/png/simplelens.1.png + RELOC/doc/metapost/featpost/png/simplependulum.1.png + RELOC/doc/metapost/featpost/png/simplexperiment.1.png + RELOC/doc/metapost/featpost/png/sincityredesigned.1.png + RELOC/doc/metapost/featpost/png/sincityredesigned.2.png + RELOC/doc/metapost/featpost/png/slingshot.1.png + RELOC/doc/metapost/featpost/png/smC.1.png + RELOC/doc/metapost/featpost/png/sniperlogo.1.png + RELOC/doc/metapost/featpost/png/solarconcentrator.1.png + RELOC/doc/metapost/featpost/png/solardish.1.png + RELOC/doc/metapost/featpost/png/solardish.2.png + RELOC/doc/metapost/featpost/png/solardish.3.png + RELOC/doc/metapost/featpost/png/solardish.4.png + RELOC/doc/metapost/featpost/png/some2Dvecs.1.png + RELOC/doc/metapost/featpost/png/spaceinvader.1.png + RELOC/doc/metapost/featpost/png/spaceinvader.2.png + RELOC/doc/metapost/featpost/png/spatialhalfsfear.1.png + RELOC/doc/metapost/featpost/png/spherample.1.png + RELOC/doc/metapost/featpost/png/splineperspective.0.png + RELOC/doc/metapost/featpost/png/splineperspective.1.png + RELOC/doc/metapost/featpost/png/splineperspective.2.png + RELOC/doc/metapost/featpost/png/splineperspective.3.png + RELOC/doc/metapost/featpost/png/splineperspective.4.png + RELOC/doc/metapost/featpost/png/splineperspective.5.png + RELOC/doc/metapost/featpost/png/splineperspectives.1.png + RELOC/doc/metapost/featpost/png/splineperspectives.2.png + RELOC/doc/metapost/featpost/png/splineperspectives.3.png + RELOC/doc/metapost/featpost/png/spltwiben.1.png + RELOC/doc/metapost/featpost/png/squareanglines.1.png + RELOC/doc/metapost/featpost/png/srinathpolineni.1.png + RELOC/doc/metapost/featpost/png/srinathpolineni.2.png + RELOC/doc/metapost/featpost/png/srinathpolineni.3.png + RELOC/doc/metapost/featpost/png/srinathpolineni.5.png + RELOC/doc/metapost/featpost/png/srinathpolineni.6.png + RELOC/doc/metapost/featpost/png/srinathpolineni.7.png + RELOC/doc/metapost/featpost/png/srinathpolineni.8.png + RELOC/doc/metapost/featpost/png/srinathpolineni.9.png + RELOC/doc/metapost/featpost/png/stageforthree.1.png + RELOC/doc/metapost/featpost/png/stageforthree.2.png + RELOC/doc/metapost/featpost/png/stageforthree.3.png + RELOC/doc/metapost/featpost/png/statement.1.png + RELOC/doc/metapost/featpost/png/statement.2.png + RELOC/doc/metapost/featpost/png/statethreelines.0.png + RELOC/doc/metapost/featpost/png/steamcamera.0.png + RELOC/doc/metapost/featpost/png/strength1defect.1.png + RELOC/doc/metapost/featpost/png/symbol.1.png + RELOC/doc/metapost/featpost/png/tangency2D.1.png + RELOC/doc/metapost/featpost/png/tangencypoint.1.png + RELOC/doc/metapost/featpost/png/tdarrow.1.png + RELOC/doc/metapost/featpost/png/tdcircarrow.1.png + RELOC/doc/metapost/featpost/png/telemira.1.png + RELOC/doc/metapost/featpost/png/telheiro.1.png + RELOC/doc/metapost/featpost/png/telheiro.2.png + RELOC/doc/metapost/featpost/png/tete.1.png + RELOC/doc/metapost/featpost/png/tetrapodes.1.png + RELOC/doc/metapost/featpost/png/tetrapodes.2.png + RELOC/doc/metapost/featpost/png/tetrapodes.3.png + RELOC/doc/metapost/featpost/png/theHURD.1.png + RELOC/doc/metapost/featpost/png/thearchicon.1.png + RELOC/doc/metapost/featpost/png/thethreekindsofperspec.1.png + RELOC/doc/metapost/featpost/png/thethreekindsofperspec.2.png + RELOC/doc/metapost/featpost/png/thethreekindsofperspec.3.png + RELOC/doc/metapost/featpost/png/thunderproblem.1.png + RELOC/doc/metapost/featpost/png/tiposdetrans.1.png + RELOC/doc/metapost/featpost/png/tiposdetransb.1.png + RELOC/doc/metapost/featpost/png/tiposdetranst.1.png + RELOC/doc/metapost/featpost/png/toro4transit.1.png + RELOC/doc/metapost/featpost/png/torus.1.png + RELOC/doc/metapost/featpost/png/torus.2.png + RELOC/doc/metapost/featpost/png/torus.3.png + RELOC/doc/metapost/featpost/png/torus.4.png + RELOC/doc/metapost/featpost/png/torus.5.png + RELOC/doc/metapost/featpost/png/torus.6.png + RELOC/doc/metapost/featpost/png/torus.7.png + RELOC/doc/metapost/featpost/png/torusexperiment.1.png + RELOC/doc/metapost/featpost/png/torusexperiment.2.png + RELOC/doc/metapost/featpost/png/trajectoryline.1.png + RELOC/doc/metapost/featpost/png/trajectoryline.2.png + RELOC/doc/metapost/featpost/png/trebuchet.1.png + RELOC/doc/metapost/featpost/png/treecarbonedited.0.png + RELOC/doc/metapost/featpost/png/trianglecenterofmass.1.png + RELOC/doc/metapost/featpost/png/triangulartrimesh.1.png + RELOC/doc/metapost/featpost/png/trig.1.png + RELOC/doc/metapost/featpost/png/trigonometry.1.png + RELOC/doc/metapost/featpost/png/troncoconedef.0.png + RELOC/doc/metapost/featpost/png/tropicalglobe.1.png + RELOC/doc/metapost/featpost/png/tropicalglobe.2.png + RELOC/doc/metapost/featpost/png/tropicalglobe.3.png + RELOC/doc/metapost/featpost/png/troysfear.1.png + RELOC/doc/metapost/featpost/png/tshirtfig.1.png + RELOC/doc/metapost/featpost/png/tuftescatter.1.png + RELOC/doc/metapost/featpost/png/twistflat.1.png + RELOC/doc/metapost/featpost/png/twistnlc.1.png + RELOC/doc/metapost/featpost/png/twistroundbiax.1.png + RELOC/doc/metapost/featpost/png/twoDcolision.1.png + RELOC/doc/metapost/featpost/png/twocyclestogether.1.png + RELOC/doc/metapost/featpost/png/twoholes.1.png + RELOC/doc/metapost/featpost/png/twoplustwo.1.png + RELOC/doc/metapost/featpost/png/twosolarpanels.1.png + RELOC/doc/metapost/featpost/png/twoupcones.1.png + RELOC/doc/metapost/featpost/png/ubhtransients.0.png + RELOC/doc/metapost/featpost/png/ultraeye.1.png + RELOC/doc/metapost/featpost/png/ultraimprovertex.1.png + RELOC/doc/metapost/featpost/png/ultraimprovertex.2.png + RELOC/doc/metapost/featpost/png/ultraimprovertex.3.png + RELOC/doc/metapost/featpost/png/unperfection.1.png + RELOC/doc/metapost/featpost/png/unperfectionremoved.1.png + RELOC/doc/metapost/featpost/png/vanallenbelt.1.png + RELOC/doc/metapost/featpost/png/vanallenbelt.2.png + RELOC/doc/metapost/featpost/png/verygoodcone.1.png + RELOC/doc/metapost/featpost/png/wwfpmp.1.png + RELOC/doc/metapost/featpost/png/xcmplaca2buraquads.1.png + RELOC/doc/metapost/featpost/png/xraycamera.1.png +runfiles size=36 + RELOC/metapost/featpost/featpost.mp + RELOC/metapost/featpost/featpost3Dplus2D.mp +catalogue-ctan /graphics/metapost/contrib/macros/featpost +catalogue-license gpl +catalogue-topics graphics-3d +catalogue-version 0.8.8 + +name fei +category Package +revision 55960 +shortdesc Class for academic works at FEI University Center -- Brazil +relocated 1 +longdesc fei is a class created by graduate students and LaTeX +longdesc enthusiasts that allows students from FEI University Center to +longdesc create their academic works, be it a monograph, masters +longdesc dissertation or phd thesis, under the typographic rules of the +longdesc institution. The class makes it possible to create a full +longdesc academic work, supporting functionalities such as cover, title +longdesc page, catalog entry, dedication, summary, lists of figures, +longdesc tables, algorithms, acronyms and symbols, multiple authors, +longdesc index, references, appendices and attachments. fei is loosely +longdesc based in the Brazilian National Standards Organization +longdesc (Associacao Brasileira de Normas Tecnicas, ABNT) standards for +longdesc the creation of academic works, such as ABNT NBR 10520:2002 +longdesc (Citations) and ABNT NBR 6023:2002 (Bibliographic References). +containersize 6580 +containerchecksum 6f99d70485a3ecae3cef9af7e545cc15f5a45ae0f84266fe6d2d84f7ae58bc3b7e3138e28f42a577362176a996df05a2c12375aa4f58f14297619ab2f32a3cf7 +doccontainersize 289892 +doccontainerchecksum 822502abad87da654f0cad81ec87bd6e1be92abeba74066a7f96da0455a80697855b783a75e30e3c1b0d740db9fd2880d25ae1668da9802843677c84dd3da424 +docfiles size=125 + RELOC/doc/latex/fei/README details="Readme" + RELOC/doc/latex/fei/README.txt + RELOC/doc/latex/fei/fei-template-sublist.tex + RELOC/doc/latex/fei/fei-template.tex + RELOC/doc/latex/fei/fei.pdf details="Package documentation" language="pt-br" + RELOC/doc/latex/fei/referencias.bib +srccontainersize 29796 +srccontainerchecksum d72b86ba677a71bf5dca8c2b39ae8bd202544a3320e93f776477e6977aeb3fe3d47f8362467b95ee6667fd46dff3801164380808693b16fa9065a31d694df7ac +srcfiles size=28 + RELOC/source/latex/fei/fei.dtx +runfiles size=6 + RELOC/tex/latex/fei/fei.cls +catalogue-contact-bugs http://github.com/douglasrizzo/Classe-Latex-FEI/issues +catalogue-contact-home http://douglasrizzo.com.br/Classe-Latex-FEI/ +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-license lppl1.3c +catalogue-topics dissertation class portuguese-br +catalogue-version 4.10.1 + +name fenixpar +category Package +revision 24730 +shortdesc One-shot changes to token registers such as \everypar +relocated 1 +longdesc The bundle provides two packages, fenxitok and fenixpar. The +longdesc fenixtok package provides user macros to add material to a +longdesc token register; the material will be (automatically) removed +longdesc from the token register when the register is executed. Material +longdesc may be added either to the left or to the right, and care is +longdesc taken not to override any redefinition that may be included in +longdesc the token register itself. The fenixpar package uses the macros +longdesc of fenixtok to provide a user interface to manipulation of the +longdesc \everypar token register. The packages require the e-TeX +longdesc extensions; with them, they work either with Plain TeX or with +longdesc LaTeX. +containersize 3840 +containerchecksum 1b09294b430bb9ab6a4eae11549500b224514e55bb99329a4ee3d9d72ab906128063537302f672a772c02ff4372d46649656a88c4a303a9301976fc7a804387e +doccontainersize 532 +doccontainerchecksum 6ee02d615438e99df82f939a8104097e43802b00af2a0e7be56f329061722cfc7df0edf84c82ac73754d63a703533bd6d5b88b6e648bedbc47be712ff86ec5c8 +docfiles size=1 + RELOC/doc/generic/fenixpar/README details="Readme" +runfiles size=4 + RELOC/tex/generic/fenixpar/fenixpar.sty + RELOC/tex/generic/fenixpar/fenixtok.sty +catalogue-ctan /macros/generic/fenixpar +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.92 + +name fetamont +category Package +revision 43812 +shortdesc Extended version of Knuth's logo typeface +relocated 1 +longdesc The fetamont typeface was designed in Metafont and extends the +longdesc Logo fonts to complete the T1 encoding. The designs of the +longdesc glyphs A, E, F, M, N, O, P, S and T are based on the Metafont +longdesc constructions by D. E. Knuth. The glyphs Y and 1 imitate the +longdesc shapes of the corresponding glyphs in the METATYPE1 logo. +execute addMap fetamont.map +containersize 3542084 +containerchecksum 20c5c83119d70a94e66aeec0bbb9a0494525deaf9addb9b91d8d5595397ab5a1195eb9d72056a5fd1c3ca490aef66b43558f5c5b86688e7d164360a697c331a2 +doccontainersize 237312 +doccontainerchecksum 16cfb520cf8b3030d546e1c7f7cd41772fc9d16ea55db6920a50945a7aa3034050d873d3d5da05c108ee303dc1c77217c8a1f014c2e9beaf36d932e33aefeb93 +docfiles size=99 + RELOC/doc/fonts/fetamont/README details="Readme" + RELOC/doc/fonts/fetamont/fetamont-typeface.pdf details="Package design and construction" + RELOC/doc/fonts/fetamont/fetamont-typeface.tex + RELOC/doc/fonts/fetamont/fetamont.pdf details="Package documentation" +srccontainersize 5512 +srccontainerchecksum de4a25f0a86f29d10fd1cf799ac6c8efc58633a7ba0c48bb33716c46e6b0e1c9d5be6ee4e8e4955739ddb324270e44d6fa658c360d03123c18cc275ba6abff06 +srcfiles size=6 + RELOC/source/fonts/fetamont/fetamont.dtx + RELOC/source/fonts/fetamont/fetamont.ins +runfiles size=3026 + RELOC/fonts/afm/public/fetamont/ffmb10.afm + RELOC/fonts/afm/public/fetamont/ffmb8.afm + RELOC/fonts/afm/public/fetamont/ffmb9.afm + RELOC/fonts/afm/public/fetamont/ffmbc40.afm + RELOC/fonts/afm/public/fetamont/ffmbco40.afm + RELOC/fonts/afm/public/fetamont/ffmbo10.afm + RELOC/fonts/afm/public/fetamont/ffmbo8.afm + RELOC/fonts/afm/public/fetamont/ffmbo9.afm + RELOC/fonts/afm/public/fetamont/ffmbw10.afm + RELOC/fonts/afm/public/fetamont/ffmbwo10.afm + RELOC/fonts/afm/public/fetamont/ffmc10.afm + RELOC/fonts/afm/public/fetamont/ffmco10.afm + RELOC/fonts/afm/public/fetamont/ffmh10.afm + RELOC/fonts/afm/public/fetamont/ffmh8.afm + RELOC/fonts/afm/public/fetamont/ffmh9.afm + RELOC/fonts/afm/public/fetamont/ffmho10.afm + RELOC/fonts/afm/public/fetamont/ffmho8.afm + RELOC/fonts/afm/public/fetamont/ffmho9.afm + RELOC/fonts/afm/public/fetamont/ffmhw10.afm + RELOC/fonts/afm/public/fetamont/ffmhwo10.afm + RELOC/fonts/afm/public/fetamont/ffml10.afm + RELOC/fonts/afm/public/fetamont/ffmlc10.afm + RELOC/fonts/afm/public/fetamont/ffmlco10.afm + RELOC/fonts/afm/public/fetamont/ffmlo10.afm + RELOC/fonts/afm/public/fetamont/ffmlq10.afm + RELOC/fonts/afm/public/fetamont/ffmlqo10.afm + RELOC/fonts/afm/public/fetamont/ffmlw10.afm + RELOC/fonts/afm/public/fetamont/ffmlwo10.afm + RELOC/fonts/afm/public/fetamont/ffmo10.afm + RELOC/fonts/afm/public/fetamont/ffmo8.afm + RELOC/fonts/afm/public/fetamont/ffmo9.afm + RELOC/fonts/afm/public/fetamont/ffmr10.afm + RELOC/fonts/afm/public/fetamont/ffmr8.afm + RELOC/fonts/afm/public/fetamont/ffmr9.afm + RELOC/fonts/afm/public/fetamont/ffmw10.afm + RELOC/fonts/afm/public/fetamont/ffmwo10.afm + RELOC/fonts/map/dvips/fetamont/fetamont.map + RELOC/fonts/opentype/public/fetamont/ffmb10.otf + RELOC/fonts/opentype/public/fetamont/ffmb8.otf + RELOC/fonts/opentype/public/fetamont/ffmb9.otf + RELOC/fonts/opentype/public/fetamont/ffmbc40.otf + RELOC/fonts/opentype/public/fetamont/ffmbco40.otf + RELOC/fonts/opentype/public/fetamont/ffmbo10.otf + RELOC/fonts/opentype/public/fetamont/ffmbo8.otf + RELOC/fonts/opentype/public/fetamont/ffmbo9.otf + RELOC/fonts/opentype/public/fetamont/ffmbw10.otf + RELOC/fonts/opentype/public/fetamont/ffmbwo10.otf + RELOC/fonts/opentype/public/fetamont/ffmc10.otf + RELOC/fonts/opentype/public/fetamont/ffmco10.otf + RELOC/fonts/opentype/public/fetamont/ffmh10.otf + RELOC/fonts/opentype/public/fetamont/ffmh8.otf + RELOC/fonts/opentype/public/fetamont/ffmh9.otf + RELOC/fonts/opentype/public/fetamont/ffmho10.otf + RELOC/fonts/opentype/public/fetamont/ffmho8.otf + RELOC/fonts/opentype/public/fetamont/ffmho9.otf + RELOC/fonts/opentype/public/fetamont/ffmhw10.otf + RELOC/fonts/opentype/public/fetamont/ffmhwo10.otf + RELOC/fonts/opentype/public/fetamont/ffml10.otf + RELOC/fonts/opentype/public/fetamont/ffmlc10.otf + RELOC/fonts/opentype/public/fetamont/ffmlco10.otf + RELOC/fonts/opentype/public/fetamont/ffmlo10.otf + RELOC/fonts/opentype/public/fetamont/ffmlq10.otf + RELOC/fonts/opentype/public/fetamont/ffmlqo10.otf + RELOC/fonts/opentype/public/fetamont/ffmlw10.otf + RELOC/fonts/opentype/public/fetamont/ffmlwo10.otf + RELOC/fonts/opentype/public/fetamont/ffmo10.otf + RELOC/fonts/opentype/public/fetamont/ffmo8.otf + RELOC/fonts/opentype/public/fetamont/ffmo9.otf + RELOC/fonts/opentype/public/fetamont/ffmr10.otf + RELOC/fonts/opentype/public/fetamont/ffmr8.otf + RELOC/fonts/opentype/public/fetamont/ffmr9.otf + RELOC/fonts/opentype/public/fetamont/ffmw10.otf + RELOC/fonts/opentype/public/fetamont/ffmwo10.otf + RELOC/fonts/source/public/fetamont/ffmb10.mf + RELOC/fonts/source/public/fetamont/ffmb8.mf + RELOC/fonts/source/public/fetamont/ffmb9.mf + RELOC/fonts/source/public/fetamont/ffmbase.mf + RELOC/fonts/source/public/fetamont/ffmbc40.mf + RELOC/fonts/source/public/fetamont/ffmbco40.mf + RELOC/fonts/source/public/fetamont/ffmbo10.mf + RELOC/fonts/source/public/fetamont/ffmbo8.mf + RELOC/fonts/source/public/fetamont/ffmbo9.mf + RELOC/fonts/source/public/fetamont/ffmbw10.mf + RELOC/fonts/source/public/fetamont/ffmbwo10.mf + RELOC/fonts/source/public/fetamont/ffmc10.mf + RELOC/fonts/source/public/fetamont/ffmchars_uni.mf + RELOC/fonts/source/public/fetamont/ffmco10.mf + RELOC/fonts/source/public/fetamont/ffmh10.mf + RELOC/fonts/source/public/fetamont/ffmh8.mf + RELOC/fonts/source/public/fetamont/ffmh9.mf + RELOC/fonts/source/public/fetamont/ffmho10.mf + RELOC/fonts/source/public/fetamont/ffmho8.mf + RELOC/fonts/source/public/fetamont/ffmho9.mf + RELOC/fonts/source/public/fetamont/ffmhw10.mf + RELOC/fonts/source/public/fetamont/ffmhwo10.mf + RELOC/fonts/source/public/fetamont/ffml10.mf + RELOC/fonts/source/public/fetamont/ffmlc10.mf + RELOC/fonts/source/public/fetamont/ffmlco10.mf + RELOC/fonts/source/public/fetamont/ffmlo10.mf + RELOC/fonts/source/public/fetamont/ffmlq10.mf + RELOC/fonts/source/public/fetamont/ffmlqo10.mf + RELOC/fonts/source/public/fetamont/ffmlw10.mf + RELOC/fonts/source/public/fetamont/ffmlwo10.mf + RELOC/fonts/source/public/fetamont/ffmo10.mf + RELOC/fonts/source/public/fetamont/ffmo8.mf + RELOC/fonts/source/public/fetamont/ffmo9.mf + RELOC/fonts/source/public/fetamont/ffmr10.mf + RELOC/fonts/source/public/fetamont/ffmr8.mf + RELOC/fonts/source/public/fetamont/ffmr9.mf + RELOC/fonts/source/public/fetamont/ffmw10.mf + RELOC/fonts/source/public/fetamont/ffmwo10.mf + RELOC/fonts/tfm/public/fetamont/ffmb10.tfm + RELOC/fonts/tfm/public/fetamont/ffmb8.tfm + RELOC/fonts/tfm/public/fetamont/ffmb9.tfm + RELOC/fonts/tfm/public/fetamont/ffmbc40.tfm + RELOC/fonts/tfm/public/fetamont/ffmbco40.tfm + RELOC/fonts/tfm/public/fetamont/ffmbo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmbo8.tfm + RELOC/fonts/tfm/public/fetamont/ffmbo9.tfm + RELOC/fonts/tfm/public/fetamont/ffmbw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmbwo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmc10.tfm + RELOC/fonts/tfm/public/fetamont/ffmco10.tfm + RELOC/fonts/tfm/public/fetamont/ffmh10.tfm + RELOC/fonts/tfm/public/fetamont/ffmh8.tfm + RELOC/fonts/tfm/public/fetamont/ffmh9.tfm + RELOC/fonts/tfm/public/fetamont/ffmho10.tfm + RELOC/fonts/tfm/public/fetamont/ffmho8.tfm + RELOC/fonts/tfm/public/fetamont/ffmho9.tfm + RELOC/fonts/tfm/public/fetamont/ffmhw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmhwo10.tfm + RELOC/fonts/tfm/public/fetamont/ffml10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlc10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlco10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlq10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlqo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlwo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmo8.tfm + RELOC/fonts/tfm/public/fetamont/ffmo9.tfm + RELOC/fonts/tfm/public/fetamont/ffmr10.tfm + RELOC/fonts/tfm/public/fetamont/ffmr8.tfm + RELOC/fonts/tfm/public/fetamont/ffmr9.tfm + RELOC/fonts/tfm/public/fetamont/ffmw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmwo10.tfm + RELOC/fonts/type1/public/fetamont/ffmb10.pfb + RELOC/fonts/type1/public/fetamont/ffmb8.pfb + RELOC/fonts/type1/public/fetamont/ffmb9.pfb + RELOC/fonts/type1/public/fetamont/ffmbc40.pfb + RELOC/fonts/type1/public/fetamont/ffmbco40.pfb + RELOC/fonts/type1/public/fetamont/ffmbo10.pfb + RELOC/fonts/type1/public/fetamont/ffmbo8.pfb + RELOC/fonts/type1/public/fetamont/ffmbo9.pfb + RELOC/fonts/type1/public/fetamont/ffmbw10.pfb + RELOC/fonts/type1/public/fetamont/ffmbwo10.pfb + RELOC/fonts/type1/public/fetamont/ffmc10.pfb + RELOC/fonts/type1/public/fetamont/ffmco10.pfb + RELOC/fonts/type1/public/fetamont/ffmh10.pfb + RELOC/fonts/type1/public/fetamont/ffmh8.pfb + RELOC/fonts/type1/public/fetamont/ffmh9.pfb + RELOC/fonts/type1/public/fetamont/ffmho10.pfb + RELOC/fonts/type1/public/fetamont/ffmho8.pfb + RELOC/fonts/type1/public/fetamont/ffmho9.pfb + RELOC/fonts/type1/public/fetamont/ffmhw10.pfb + RELOC/fonts/type1/public/fetamont/ffmhwo10.pfb + RELOC/fonts/type1/public/fetamont/ffml10.pfb + RELOC/fonts/type1/public/fetamont/ffmlc10.pfb + RELOC/fonts/type1/public/fetamont/ffmlco10.pfb + RELOC/fonts/type1/public/fetamont/ffmlo10.pfb + RELOC/fonts/type1/public/fetamont/ffmlq10.pfb + RELOC/fonts/type1/public/fetamont/ffmlqo10.pfb + RELOC/fonts/type1/public/fetamont/ffmlw10.pfb + RELOC/fonts/type1/public/fetamont/ffmlwo10.pfb + RELOC/fonts/type1/public/fetamont/ffmo10.pfb + RELOC/fonts/type1/public/fetamont/ffmo8.pfb + RELOC/fonts/type1/public/fetamont/ffmo9.pfb + RELOC/fonts/type1/public/fetamont/ffmr10.pfb + RELOC/fonts/type1/public/fetamont/ffmr8.pfb + RELOC/fonts/type1/public/fetamont/ffmr9.pfb + RELOC/fonts/type1/public/fetamont/ffmw10.pfb + RELOC/fonts/type1/public/fetamont/ffmwo10.pfb + RELOC/metapost/fetamont/ffmconstructions.mp + RELOC/tex/latex/fetamont/T1ffm.fd + RELOC/tex/latex/fetamont/T1ffmw.fd + RELOC/tex/latex/fetamont/fetamont.sty +catalogue-also metalogo mflogo +catalogue-ctan /fonts/fetamont +catalogue-license lppl1.3 +catalogue-topics font font-mf font-type1 font-otf + +name fetchcls +category Package +revision 45245 +shortdesc Fetch the current class name +relocated 1 +longdesc With standard LaTeX you are able to check for the class in use +longdesc invoking the kernel command \@ifclassloaded. However, doing so +longdesc you cannot get the explicit class name, unless you want to loop +longdesc over every possible class name until \@ifclassloaded returns +longdesc true -- don't do that! With the help of the present package you +longdesc can obtain the name of the current class with significantly +longdesc less effort. Just load the package as usual: +longdesc \usepackage{fetchcls}; then, the control sequence \classname +longdesc will hold the name you were looking for. +containersize 1320 +containerchecksum 6cd8e2016f7ff344aa06587fbfeb4e498d1b2e76d9a6ff64f167dad71c4ce6ae867d791660f50e80b6f2e59a9f2fff4c4c9b7c1cdf84cdbbec5113081b24a25a +doccontainersize 125088 +doccontainerchecksum ebf9aa0150b06a0b4674e7be076fa5ae4b2ba4542aa28e1b9d4320ea0152a5cc9cbbf926d713f877e74ea948d6132fc36898647e4790c67aab651502c4e5d57f +docfiles size=32 + RELOC/doc/latex/fetchcls/README.md details="Readme" + RELOC/doc/latex/fetchcls/fetchcls.pdf details="Package documentation" +srccontainersize 2852 +srccontainerchecksum 067385746ed2cdba4501038cbc4565bef431f2e35e9069fe883c0de8669cbf6f59d8233ff2f561e8590fe8b32a7613a195104f89774bdae4ddd63d65deb3123a +srcfiles size=3 + RELOC/source/latex/fetchcls/fetchcls.dtx + RELOC/source/latex/fetchcls/fetchcls.ins +runfiles size=1 + RELOC/tex/latex/fetchcls/fetchcls.sty +catalogue-contact-repository https://github.com/giannotr/fetchcls +catalogue-ctan /macros/latex/contrib/fetchcls +catalogue-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 1.0 + +name feupphdteses +category Package +revision 30962 +shortdesc Typeset Engineering PhD theses at the University of Porto +relocated 1 +longdesc A complete template for thesis/works of Faculdade de Engenharia +longdesc da Universidade do Porto (FEUP) Faculty of Engineering +longdesc University of Porto. +containersize 6312 +containerchecksum b4d4285b33f314720cd07eea903bb2fc6092f96033f75d4b06cf315fd24d1a34722aa73db4cb6410a847e1d23a131ae329f8ebe75fca15dcaffb99097768f55e +doccontainersize 187324 +doccontainerchecksum d87c0a7722f62a599bcc63f7ecfea190c64d82a4a4a1ba21d18c69866f80ec77a527a82cb94b0d081002073f5faab95119c6902e8f8f2c10d815ca2d206b1d4c +docfiles size=116 + RELOC/doc/latex/feupphdteses/Abbs.tex + RELOC/doc/latex/feupphdteses/Abstract.tex + RELOC/doc/latex/feupphdteses/Acknow.tex + RELOC/doc/latex/feupphdteses/Appendix.tex + RELOC/doc/latex/feupphdteses/Chapter2.tex + RELOC/doc/latex/feupphdteses/Chapter3.tex + RELOC/doc/latex/feupphdteses/Conclusions.tex + RELOC/doc/latex/feupphdteses/Dedicatory.tex + RELOC/doc/latex/feupphdteses/Figures/uporto-feup.pdf + RELOC/doc/latex/feupphdteses/IEEEtranN.bst + RELOC/doc/latex/feupphdteses/IEEEtranSN.bst + RELOC/doc/latex/feupphdteses/Intro.tex + RELOC/doc/latex/feupphdteses/Publications.tex + RELOC/doc/latex/feupphdteses/Quote.tex + RELOC/doc/latex/feupphdteses/README details="Readme" + RELOC/doc/latex/feupphdteses/References.bib + RELOC/doc/latex/feupphdteses/Resumo.tex + RELOC/doc/latex/feupphdteses/Template_EN.pdf details="Template showing construction and appearance" + RELOC/doc/latex/feupphdteses/Template_EN.tcp + RELOC/doc/latex/feupphdteses/Template_EN.tex + RELOC/doc/latex/feupphdteses/Template_EN.tps + RELOC/doc/latex/feupphdteses/mymacros.tex +runfiles size=5 + RELOC/tex/latex/feupphdteses/feupphdteses.sty +catalogue-ctan /macros/latex/contrib/feupphdteses +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 4.0 + +name fewerfloatpages +category Package +revision 58058 +shortdesc Reduce the number of unnecessary float pages +relocated 1 +longdesc This package implements a float algorithm extension for +longdesc handling float pages. It attempts to reduce the number of +longdesc unnecessary (fairly empty) float pages while making sure that +longdesc floats nevertheless stay close to their call-outs. Several +longdesc aspects of the algorithm behavior are adjustable. +containersize 2660 +containerchecksum 4f5637bf431b54590e8c2a8ec27e3da3d801205b8cba053c8c1294ba0882bf8aef17a0e291c149799cfc3530a415202014570460a6e2e8986ef71bd2cc05567c +doccontainersize 893672 +doccontainerchecksum a18d15933e6efbbe3428f366bcc5ba5ec0b254dcf77f7ac2e72c19bba00e78b44c98df34f57468902101f547fe9e88b2033430a02098805c6f0072e68ac82513 +docfiles size=273 + RELOC/doc/latex/fewerfloatpages/MANIFEST.md + RELOC/doc/latex/fewerfloatpages/README.md details="Readme" + RELOC/doc/latex/fewerfloatpages/changes.txt + RELOC/doc/latex/fewerfloatpages/fewerfloatpages-code.pdf details="Documented package code " + RELOC/doc/latex/fewerfloatpages/fewerfloatpages-code.tex + RELOC/doc/latex/fewerfloatpages/fewerfloatpages-doc.pdf details="Package documentation" + RELOC/doc/latex/fewerfloatpages/fewerfloatpages-doc.tex + RELOC/doc/latex/fewerfloatpages/l3doc-TUB.cls +srccontainersize 16108 +srccontainerchecksum e98684d4cb79477c66e4a831c8571729b3da021bf9945bdecfe8a9ff57fb1e2948c42c3481adea0fb702ce4d56ac533b14f76e78c182500431af7f3671491d7c +srcfiles size=15 + RELOC/source/latex/fewerfloatpages/fewerfloatpages.dtx + RELOC/source/latex/fewerfloatpages/fewerfloatpages.ins +runfiles size=2 + RELOC/tex/latex/fewerfloatpages/fewerfloatpages.sty +catalogue-contact-repository https://github.com/FrankMittelbach/fmitex-fewerfloatpages +catalogue-ctan /macros/latex/contrib/fewerfloatpages +catalogue-license lppl1.3c +catalogue-topics float +catalogue-version 1.0b + +name feyn +category Package +revision 55777 +shortdesc A font for in-text Feynman diagrams +relocated 1 +longdesc Feyn may be used to produce relatively simple Feynman diagrams +longdesc within equations in a LaTeX document. While the feynmf package +longdesc is good at drawing large diagrams for figures, the present +longdesc package and its fonts allow diagrams within equations or text, +longdesc at a matching size. The fonts are distributed as Metafont +longdesc source, and macros for their use are also provided. +containersize 13492 +containerchecksum 445d071bf76adb0c8ed89d294eff3129a1903624a1ca4dbfd5d83016edaccd5e2f8758273d8ef382696e8d3c9270526eb77ad2021b51f6df7e91c5c7a138d2c9 +doccontainersize 516512 +doccontainerchecksum e3202a822e034c179f399856ee57836950fb0e0cc0f664cf7155b6d5110762fbe26da596ea0e9fafe4bacce330ee57bfea1bec1ba2d16d4aad01dc868b00c2c9 +docfiles size=150 + RELOC/doc/fonts/feyn/LICENCE + RELOC/doc/fonts/feyn/README details="Package Readme" + RELOC/doc/fonts/feyn/VERSION + RELOC/doc/fonts/feyn/exercise-font.pdf details="Font details" + RELOC/doc/fonts/feyn/exercise-font.tex + RELOC/doc/fonts/feyn/feyn.html + RELOC/doc/fonts/feyn/feyn.pdf details="Package documentation" + RELOC/doc/fonts/feyn/overheads.pdf details="Brief sample" + RELOC/doc/fonts/feyn/overheads.tex + RELOC/doc/fonts/feyn/release-notes.html + RELOC/doc/fonts/feyn/sample-massive.png + RELOC/doc/fonts/feyn/sample-phi4.png + RELOC/doc/fonts/feyn/sample-two-loop-annotated.png + RELOC/doc/fonts/feyn/sample-two-loop.png + RELOC/doc/fonts/feyn/sample-vertex.png + RELOC/doc/fonts/feyn/style.css +srccontainersize 16212 +srccontainerchecksum 64fbe2a9ce848bc5d862d5c74a59d007300c3e83b97b26f8ce8bbbda53931e563f6a1f8d406a43b6473564e5ebf4afcbf2c753fb763dd1be59ddafb8329e6e75 +srcfiles size=16 + RELOC/source/fonts/feyn/feyn.drv + RELOC/source/fonts/feyn/feyn.dtx + RELOC/source/fonts/feyn/feyn.ins +runfiles size=42 + RELOC/fonts/source/public/feyn/feyn.mf + RELOC/fonts/source/public/feyn/feyn10.mf + RELOC/fonts/source/public/feyn/feyn11.mf + RELOC/fonts/source/public/feyn/feyn12.mf + RELOC/fonts/source/public/feyn/feyn18.mf + RELOC/fonts/source/public/feyn/feyn24.mf + RELOC/fonts/source/public/feyn/feynmac.mf + RELOC/fonts/source/public/feyn/feyntext10.mf + RELOC/fonts/source/public/feyn/feyntext11.mf + RELOC/fonts/source/public/feyn/feyntext12.mf + RELOC/fonts/source/public/feyn/feyntext18.mf + RELOC/fonts/source/public/feyn/feyntext24.mf + RELOC/fonts/source/public/feyn/feynx10.mf + RELOC/fonts/source/public/feyn/feynx11.mf + RELOC/fonts/source/public/feyn/feynx12.mf + RELOC/fonts/source/public/feyn/feynx18.mf + RELOC/fonts/source/public/feyn/feynx24.mf + RELOC/fonts/tfm/public/feyn/feyn10.tfm + RELOC/fonts/tfm/public/feyn/feyn11.tfm + RELOC/fonts/tfm/public/feyn/feyn12.tfm + RELOC/fonts/tfm/public/feyn/feyn18.tfm + RELOC/fonts/tfm/public/feyn/feyn24.tfm + RELOC/fonts/tfm/public/feyn/feyntext10.tfm + RELOC/fonts/tfm/public/feyn/feyntext11.tfm + RELOC/fonts/tfm/public/feyn/feyntext12.tfm + RELOC/fonts/tfm/public/feyn/feyntext18.tfm + RELOC/fonts/tfm/public/feyn/feyntext24.tfm + RELOC/fonts/tfm/public/feyn/feynx10.tfm + RELOC/fonts/tfm/public/feyn/feynx11.tfm + RELOC/fonts/tfm/public/feyn/feynx12.tfm + RELOC/fonts/tfm/public/feyn/feynx18.tfm + RELOC/fonts/tfm/public/feyn/feynx24.tfm + RELOC/tex/latex/feyn/feyn.sty +catalogue-contact-home http://purl.org/nxg/dist/feyn +catalogue-ctan /fonts/feyn +catalogue-license bsd +catalogue-topics graphics-use physics font font-mf +catalogue-version 0.4.1 + +name feynmf +category Package +revision 17259 +shortdesc Macros and fonts for creating Feynman (and other) diagrams +relocated 1 +longdesc The feynmf package provides an interface to Metafont (inspired +longdesc by the facilities of mfpic) to use simple structure +longdesc specifications to produce relatively complex diagrams. (The +longdesc feynmp package, also part of this bundle, uses MetaPost in the +longdesc same way.) While the package was designed for Feynman diagrams, +longdesc it could in principle be used for diagrams in graph and similar +longdesc theories, where the structure is semi-algorithmically +longdesc determined. +containersize 19484 +containerchecksum d4eb87e3f086f2d39c87eba057fc490ce5d39e9c5ae39aa1c04ee8c3be9c4a188ef123f860fe74d31e0e9e9182909c39df3434ddcc618632723f00627f66397f +doccontainersize 466364 +doccontainerchecksum 933edaceff112f7442f7c662fda43f343b0e7e41f65aae4f1a45bfd2de18c1e4bda505a235eebc4daf2451846dab376449242217ec803f2932a4a1584038f4ee +docfiles size=146 + RELOC/doc/latex/feynmf/Announce + RELOC/doc/latex/feynmf/COPYING + RELOC/doc/latex/feynmf/Feynman.Diagrams + RELOC/doc/latex/feynmf/README details="Package Readme" + RELOC/doc/latex/feynmf/Tutorial + RELOC/doc/latex/feynmf/fmfman.pdf details="Package documentation" + RELOC/doc/latex/feynmf/manpics.1 + RELOC/doc/latex/feynmf/manpics.2 + RELOC/doc/latex/feynmf/manpics.3 + RELOC/doc/latex/feynmf/template.tex +srccontainersize 64056 +srccontainerchecksum bdc4dbbc449c911c0d516b10da18c1d541645ec57fd95c163d571a039c70ad46e6111717ffc86c802123c272509c85ce1d71d90f49578b2e228a9229f4d40f02 +srcfiles size=81 + RELOC/source/latex/feynmf/Makefile + RELOC/source/latex/feynmf/feynmf.drv + RELOC/source/latex/feynmf/feynmf.dtx + RELOC/source/latex/feynmf/feynmf.ins + RELOC/source/latex/feynmf/feynmf.pl + RELOC/source/latex/feynmf/feynmf209.ins + RELOC/source/latex/feynmf/feynmp.drv + RELOC/source/latex/feynmf/fmfman.drv + RELOC/source/latex/feynmf/fmfmanps.drv +runfiles size=40 + RELOC/metafont/feynmf/feynmf.mf + RELOC/metapost/feynmf/feynmp.mp + RELOC/metapost/feynmf/manpics.mp + RELOC/tex/latex/feynmf/feynmf.sty + RELOC/tex/latex/feynmf/feynmp.sty +catalogue-ctan /macros/latex/contrib/feynmf +catalogue-license gpl +catalogue-topics graphics-use mp-use physics +catalogue-version 1.08 + +name feynmp-auto +category Package +revision 30223 +shortdesc Automatic processing of feynmp graphics +relocated 1 +longdesc The package takes care of running Metapost on the output files +longdesc produced by the feynmp package, so that the compiled pictures +longdesc will be available in the next run of LaTeX. The package honours +longdesc options that apply to feynmp. +containersize 1912 +containerchecksum 64ca275292b12847d823322ced9dbad615a34089c8cbe43262e676b34db205ed56509f641e18e949523bd252ed1ea73eeb5f019e2cd052274c02b1df67860a25 +doccontainersize 375268 +doccontainerchecksum 3dd88f5af739013ace4fd8eea70ce247b997e887c0f7067040ff9bf4e0300126aff53845ecefafa7bb52dfc4d05d181a1e96847e6a534c718c5a7447231539ba +docfiles size=93 + RELOC/doc/latex/feynmp-auto/README details="Readme" + RELOC/doc/latex/feynmp-auto/feynmp-auto.pdf details="Package documentation" +srccontainersize 4768 +srccontainerchecksum ea29f32f9f1c628d63b81c958f7c8064e884ba1764953dd62fbe5d90506547846f52fe378f813a09090ef6991c9b7d2905095b04fdc0e26aea4c8cbcb5e2b2b1 +srcfiles size=4 + RELOC/source/latex/feynmp-auto/feynmp-auto.dtx + RELOC/source/latex/feynmp-auto/feynmp-auto.ins +runfiles size=1 + RELOC/tex/latex/feynmp-auto/feynmp-auto.sty +catalogue-ctan /macros/latex/contrib/feynmp-auto +catalogue-license lppl1.3 +catalogue-topics graphics-inline +catalogue-version 1.1 + +name ffslides +category Package +revision 38895 +shortdesc Freeform slides based on the article class +relocated 1 +longdesc The ffslides ("freeform slides") class is intended to make it +longdesc easier to place various types of content freely on the page, +longdesc and therefore easier to design documents with a strong visual +longdesc component: presentations, posters, research or lecture notes, +longdesc and so on. The goal of the class is to be less rigid and less +longdesc complex than some of the popular presentation-making options. +longdesc It is essentially a small set of macros added to the article +longdesc class. A well-organized template file is included, and the +longdesc documentation is itself an extensive example of the class's +longdesc capabilities. +containersize 4952 +containerchecksum 393903c180f2fd554178c909bf9a4c060707d8f2fac44022b4811526c7b505a0354afed77f8ae0fa3fbcebed3918a6b46f9e81206be78d7ed6b1c959cd3473a2 +doccontainersize 381912 +doccontainerchecksum 4a8e176b7bce3d54464a30497e41d5a899905a0029199710aedca7234612092f0b2e265a465084536434c9b8c7f45eec3f2ac3df5eef66cecfdae5cdae36c798 +docfiles size=729 + RELOC/doc/latex/ffslides/README.txt details="Readme" + RELOC/doc/latex/ffslides/bground-example.txt + RELOC/doc/latex/ffslides/ffslides-doc.pdf details="Package documentation" + RELOC/doc/latex/ffslides/ffslides-doc.tex + RELOC/doc/latex/ffslides/ffslides-template.tex + RELOC/doc/latex/ffslides/figure.pdf + RELOC/doc/latex/ffslides/footer-example.txt + RELOC/doc/latex/ffslides/header-example.txt + RELOC/doc/latex/ffslides/tiny_example_1.pdf + RELOC/doc/latex/ffslides/tiny_example_2.pdf +runfiles size=4 + RELOC/tex/latex/ffslides/ffslides.cls +catalogue-ctan /macros/latex/contrib/ffslides +catalogue-license lppl1.3 +catalogue-topics presentation + +name fge +category Package +revision 37628 +shortdesc A font for Frege's Grundgesetze der Arithmetik +relocated 1 +longdesc The fonts are provided as Metafont source and Adobe Type 1 +longdesc (pfb) files. A small LaTeX package (fge) is included. +execute addMap fge.map +containersize 38360 +containerchecksum 0336a91c06bf658c1bf139d716952ac2ad420e307fb8b525e53cd4a488e0cff536c89ff06ceb8788d1e54b96a9fe4b24d94beb6913c1be8683e359a4d00dc4f6 +doccontainersize 137820 +doccontainerchecksum 4f18f7bc1c8000664753e6f0615f7dd1d0f71bf51aeee6860fc2181536f6f1fc37b21e83b0c5b6c151e1012a02ec97d3d5ff6d132a5f6986e94bd173f40f994c +docfiles size=35 + RELOC/doc/fonts/fge/README details="Readme" + RELOC/doc/fonts/fge/fge-doc.pdf details="Package documentation" +srccontainersize 3660 +srccontainerchecksum 4eebdfffd7fbfeb7539543719df1e50564df6ba815f37a503fc98420cfca5c6c2a0a0a0f732656bc288009e9bd0fd1ad7fb0a4625748496575179c3a7015e7bd +srcfiles size=4 + RELOC/source/fonts/fge/fge.dtx + RELOC/source/fonts/fge/fge.ins +runfiles size=30 + RELOC/fonts/map/dvips/fge/fge.map + RELOC/fonts/source/public/fge/fgebase.mf + RELOC/fonts/source/public/fge/fgeit.mf + RELOC/fonts/source/public/fge/fgeit10.mf + RELOC/fonts/source/public/fge/fgerm.mf + RELOC/fonts/source/public/fge/fgerm10.mf + RELOC/fonts/tfm/public/fge/fgeit10.tfm + RELOC/fonts/tfm/public/fge/fgerm10.tfm + RELOC/fonts/type1/public/fge/fgeit10.pfb + RELOC/fonts/type1/public/fge/fgerm10.pfb + RELOC/tex/latex/fge/Ufgeit.fd + RELOC/tex/latex/fge/Ufgerm.fd + RELOC/tex/latex/fge/fge.cfg + 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-license lppl +catalogue-topics font font-mf font-type1 maths +catalogue-version 1.25 + +name fgruler +category Package +revision 56854 +shortdesc Draw rulers on the foreground or in the text +relocated 1 +longdesc The fgruler is an abbreviation for the foreground ruler. This +longdesc package draws a horizontal and a vertical ruler on the +longdesc foreground of every (or a given) page at absolute position. In +longdesc this way, you can check the page layout dimensions. Besides, +longdesc you can draw various rulers in the text, too. The fgruler +longdesc package requires the services of the following packages: +longdesc kvoptions, etoolbox, xcolor, graphicx, eso-pic. +containersize 5256 +containerchecksum 7567024373e5043986da5e5ab1953e207ab801284f7cbac38bdd200ed607da239a37480132d3b54ae52ff4cb409414b8dfb3e998a5a70bd49161ac99f6cc99e9 +doccontainersize 418096 +doccontainerchecksum dae1aa1a479d95ae31efcadfd3c48b28b57b10e844968550b4772ba863b6889f8d4e7c4cfe928ffdb903db611f1ecd0b4319b0be6429895f671a695fe9362fb0 +docfiles size=104 + RELOC/doc/latex/fgruler/README details="Readme" + RELOC/doc/latex/fgruler/fgruler.pdf details="Package documentation" +srccontainersize 10652 +srccontainerchecksum bdca41dc44cd030d9548091521d7d92986e693280977edf7a2a6f804857602e6904c85f4639e9a18eb993c89a95b1217ee35cde50e6d30b238de3f46d332c6ae +srcfiles size=22 + RELOC/source/latex/fgruler/fgruler.dtx + RELOC/source/latex/fgruler/fgruler.ins +runfiles size=13 + RELOC/tex/latex/fgruler/fgruler.sty +catalogue-also ruler +catalogue-ctan /macros/latex/contrib/fgruler +catalogue-license lppl1.3 +catalogue-topics misc-support +catalogue-version 1.3 + +name fibeamer +category Package +revision 53146 +shortdesc Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic) +relocated 1 +longdesc A beamer theme for the typesetting of thesis defense +longdesc presentations at the Masaryk University (Brno, Czech Republic). +longdesc The theme has been designed for easy extensibility by color +longdesc themes of other academic institutions. +containersize 411844 +containerchecksum 7f10c002cd04dc2624f84bd2da11a9331639a33a5a9642a7ebac96f28a4af3fa177c2088557bd966c4250d561a8b8813b042e7fe9c456e5b41629094dffd5c64 +doccontainersize 2361592 +doccontainerchecksum 1121bc8f0f7c226bee621cd0bb5f75a12cdb8dfb64540debc6b25a24a34b939d4dbac04cea3cdd97372be5b355fe028a0354bdf2393160b577f10fc31c2ae9fa +docfiles size=1074 + RELOC/doc/latex/fibeamer/fibeamer.pdf details="Package documentation" + RELOC/doc/latex/fibeamer/guide/mu/econ.pdf + RELOC/doc/latex/fibeamer/guide/mu/fi.pdf + RELOC/doc/latex/fibeamer/guide/mu/fsps.pdf + RELOC/doc/latex/fibeamer/guide/mu/fss.pdf + RELOC/doc/latex/fibeamer/guide/mu/law.pdf + RELOC/doc/latex/fibeamer/guide/mu/med.pdf + RELOC/doc/latex/fibeamer/guide/mu/ped.pdf + RELOC/doc/latex/fibeamer/guide/mu/phil.pdf + RELOC/doc/latex/fibeamer/guide/mu/sci.pdf +srccontainersize 12796 +srccontainerchecksum 50993fb045581fc04281266856a7bba7c2b0c9f4052a01543139a2ee4a0b376490aa5ecf0f4a3ad7a66b48e0bb4817e297dfa6002a27b57d6b5d2f819cc8b093 +srcfiles size=40 + RELOC/source/latex/fibeamer/LICENSE.tex + RELOC/source/latex/fibeamer/fibeamer.dtx + RELOC/source/latex/fibeamer/fibeamer.ins + RELOC/source/latex/fibeamer/theme/mu/base.dtx + RELOC/source/latex/fibeamer/theme/mu/base.ins + RELOC/source/latex/fibeamer/theme/mu/econ.dtx + RELOC/source/latex/fibeamer/theme/mu/econ.ins + RELOC/source/latex/fibeamer/theme/mu/fi.dtx + RELOC/source/latex/fibeamer/theme/mu/fi.ins + RELOC/source/latex/fibeamer/theme/mu/fsps.dtx + RELOC/source/latex/fibeamer/theme/mu/fsps.ins + RELOC/source/latex/fibeamer/theme/mu/fss.dtx + RELOC/source/latex/fibeamer/theme/mu/fss.ins + RELOC/source/latex/fibeamer/theme/mu/law.dtx + RELOC/source/latex/fibeamer/theme/mu/law.ins + RELOC/source/latex/fibeamer/theme/mu/med.dtx + RELOC/source/latex/fibeamer/theme/mu/med.ins + RELOC/source/latex/fibeamer/theme/mu/ped.dtx + RELOC/source/latex/fibeamer/theme/mu/ped.ins + RELOC/source/latex/fibeamer/theme/mu/phil.dtx + RELOC/source/latex/fibeamer/theme/mu/phil.ins + RELOC/source/latex/fibeamer/theme/mu/sci.dtx + RELOC/source/latex/fibeamer/theme/mu/sci.ins +runfiles size=338 + RELOC/tex/latex/fibeamer/beamerthemefibeamer.sty + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-english.pdf + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-econ.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fi.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fsps.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fss.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-law.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-med.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-ped.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-phil.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-sci.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu.sty + RELOC/tex/latex/fibeamer/theme/mu/beamerfontthemefibeamer-mu.sty + RELOC/tex/latex/fibeamer/theme/mu/beamerinnerthemefibeamer-mu.sty + RELOC/tex/latex/fibeamer/theme/mu/beamerouterthemefibeamer-mu.sty +catalogue-contact-announce https://github.com/Witiko/fibeamer/releases +catalogue-contact-bugs https://github.com/Witiko/fibeamer/issues +catalogue-contact-development https://github.com/Witiko/fibeamer/pulls +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-license lppl1.3 +catalogue-topics dissertation presentation +catalogue-version 1.1.8 + +name fifinddo-info +category Package +revision 29349 +shortdesc German HTML beamer presentation on nicetext and morehype +relocated 1 +longdesc The bundle: exhibits the process of making an "HTML beamer +longdesc presentation" with the blogdot package from the morehype +longdesc bundle, and HTML generation based on the fifinddo package. +containersize 532 +containerchecksum 86767390bc9946b8f8d47dae0334d7cfc21ac2b064b00ab70732f7ca3f50d875a35dbb0e477ef1c014452fc14c177a1c5c6b96ee334c99bbc2bb49eee9ffe6b9 +doccontainersize 257192 +doccontainerchecksum e6635f5cc989bfa0da9b2b0cbd5c3719aa793552f4c1adbc1ee218a78b6b116d2c2046b04254e3294834e63901ece9489b8c86421afd3c58aeb8615b5859ee92 +docfiles size=417 + RELOC/doc/latex/fifinddo-info/LIESMICH.txt details="Readme" language="de" + RELOC/doc/latex/fifinddo-info/README details="Readme" language="en" + RELOC/doc/latex/fifinddo-info/SrcFILEs.txt + RELOC/doc/latex/fifinddo-info/dante-mv45-lueck.pdf + RELOC/doc/latex/fifinddo-info/dantev45.htm details="The presentation document" language="de" + RELOC/doc/latex/fifinddo-info/mdoccorr.pdf + RELOC/doc/latex/fifinddo-info/variants/dantev45-1180-clean.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-1180-com.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-com.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-exact-frame.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-exact-show.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-filltype-show.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-992-com.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-992-exact-frame.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-992-exact.html +srccontainersize 23136 +srccontainerchecksum f01f2453c206cc7fefaafd1269c77b43bf1f24a8fef034ebdc40ac2be5c4ef553d2096f4168e7933e63aa816b1397c74fe21d725f0a6bc3d8187c751145a44a7 +srcfiles size=29 + RELOC/source/latex/fifinddo-info/SrcFILEs.txt + RELOC/source/latex/fifinddo-info/makeelse/expose.tex + RELOC/source/latex/fifinddo-info/makeelse/mdoccorr.tex + RELOC/source/latex/fifinddo-info/makeelse/srcfiles.tex + RELOC/source/latex/fifinddo-info/makeelse/updsfl.sh + RELOC/source/latex/fifinddo-info/makeone/dantev45.fdf + RELOC/source/latex/fifinddo-info/makeone/dantev45.tex + RELOC/source/latex/fifinddo-info/makeone/makedot.tex + RELOC/source/latex/fifinddo-info/makevars/bashvars.sh + RELOC/source/latex/fifinddo-info/makevars/dantev45.cfg + RELOC/source/latex/fifinddo-info/makevars/longdan.sh + RELOC/source/latex/fifinddo-info/makevars/makedots.tex + 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-license lppl1.3 +catalogue-topics documentation cvt-html +catalogue-version 1.1b + +name fifo-stack +category Package +revision 33288 +shortdesc FIFO and stack implementation for package writers +relocated 1 +longdesc A LaTeX implementation of a combined FIFO Stack modified from +longdesc the existing stack package by Benjamin Bayart. The package +longdesc renames the original's \Push and \Pop commands \FSPush and +longdesc \FSPop, and which work on the top/end of the FIFO/Stack), and +longdesc adds the ability to \FSUnshift and \FSShift from the bottom +longdesc (front) of the FIFO/Stack. +containersize 2072 +containerchecksum 4121e3cefed7ffe80bfaa8b054ba0825ab0fc2b4073a845386de4db3650b4d68c48a4f7378ffcfc4a221b21ad30ac6e199920e7d8c44f503b35c14cf4c001462 +doccontainersize 249308 +doccontainerchecksum 220d9b2796c20251ae568d1dc5a7eee1fad5cf6aff26a2b94c1a2c9dd6d853dfc9c25377ec8c3d6edfc43f5b4cf645c459754c5d6a642506fa7779cf79f1a901 +docfiles size=66 + RELOC/doc/latex/fifo-stack/README details="Readme" + RELOC/doc/latex/fifo-stack/fifo-stack-test.tex + RELOC/doc/latex/fifo-stack/fifo-stack.cwl + RELOC/doc/latex/fifo-stack/fifo-stack.pdf details="Package documentation" +srccontainersize 6860 +srccontainerchecksum 3ab0e67acb7895c527be3cee1ab0fe7ba03397410f9970dc7c286418ae6e785d8051b82add959ff7d0596d6983ae6514f70c631672fce5c66bdb6542a3b7d777 +srcfiles size=9 + RELOC/source/latex/fifo-stack/fifo-stack.dtx + RELOC/source/latex/fifo-stack/fifo-stack.ins +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-license lppl +catalogue-topics macro-supp +catalogue-version 1.0 + +name fig4latex +category Package +revision 26313 +shortdesc Management of figures for large LaTeX documents +longdesc Fig4LaTeX simplifies management of the figures in a large LaTeX +longdesc document. Fig4LaTeX is appropriate for projects that include +longdesc figures with graphics created by XFig -- in particular, +longdesc graphics which use the combined PS/LaTeX (or PDF/LaTeX) export +longdesc method. An example document (with its output) is provided. +depend fig4latex.ARCH +containersize 2528 +containerchecksum 3f01676ea85d64e09376da4481794e1537b9e19c0ff0bac77c022b10b5d49c39d789de6e4f0356b4ea4b23326f9ef320f4b08035bc04a827951cbf44ed7c6228 +doccontainersize 60872 +doccontainerchecksum c05d3c08b916785b765694e68b8f7cd96c3c359325e8f84166102beb4caeada7490ed24ad0b4f52a66cb822000f8b4d75d1013b93055898e88e82d7f23d5095a +docfiles size=28 + texmf-dist/doc/support/fig4latex/CHANGES + texmf-dist/doc/support/fig4latex/COPYING + texmf-dist/doc/support/fig4latex/README details="Readme" + texmf-dist/doc/support/fig4latex/example.pdf + texmf-dist/doc/support/fig4latex/example.tex + texmf-dist/doc/support/fig4latex/figs/div_alg_flowchart.fig + texmf-dist/doc/support/fig4latex/figs/if-then_flowchart.fig +runfiles size=2 + texmf-dist/scripts/fig4latex/fig4latex +catalogue-ctan /graphics/fig4latex +catalogue-license gpl3 +catalogue-topics graphics-incl +catalogue-version 0.2 + +name fig4latex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of fig4latex +containersize 336 +containerchecksum 33d44503662a9190afb99cf8e840caba414330019f404869811a09263021ca3a868e93a5562938d69b86d9411583b06d317c347693666e2e6e5928a62d1dac0a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/fig4latex + +name fig4latex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of fig4latex +containersize 340 +containerchecksum 955e495ed660bc92414a579030dab98909b3ffdc38e3ad4fce89bdbe747620d83c657ea97784d3fa8defcc97b99a83dd6d45723d0e5b7ee87e2f0821af3ed105 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/fig4latex + +name fig4latex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of fig4latex +containersize 340 +containerchecksum 470c4dcf9e84437424cb1c2fb3f919520966b8282d0428a63588df15abbc8e5b4346318a928b6a0780c08b55d8c730308c40bd9414cd2ddd6cabb0be2e84c8f6 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/fig4latex + +name fig4latex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of fig4latex +containersize 336 +containerchecksum dd7d625dfde454734a94014fa06edb7deb876dd1861bfa077828ac24c62a1a4e1eaba99bbc273eaf639ffe5a704452db8c0112949281287ffa927c5e31352c3f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/fig4latex + +name fig4latex.i386-cygwin +category Package +revision 14752 +shortdesc i386-cygwin files of fig4latex +containersize 340 +containerchecksum d48c579b21b3ab54b1f37655881ea5c3b260f3c30afb2fceab0a9fecd4ceeebe0c5e872e29b4e0f6ff9468f0be20ae76a3494922a7b2411a3ecb9d4a54178ab7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/fig4latex + +name fig4latex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of fig4latex +containersize 340 +containerchecksum c57940241545778f8fb8d9f66defb448411ba1a7be79e50aa8e0ff852f1d85d4f933da42aa4299baadcdca0a16cf14610eb9628844ff4372128b9005d3281b8f +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/fig4latex + +name fig4latex.i386-linux +category Package +revision 14752 +shortdesc i386-linux files of fig4latex +containersize 340 +containerchecksum 93a32ec142a059e1ef2335ce7a846767eccc0d8a1c8f96195775d5a28aa21e2fe19fc5e73e1ec9dff1ff4cf92c5658eaf35213616da996d2da576894561f6c40 +binfiles arch=i386-linux size=1 + bin/i386-linux/fig4latex + +name fig4latex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of fig4latex +containersize 340 +containerchecksum b877b809e185478645d7fa95391ff4f193d5dd43799c4e096423490815f17ccc760cfe2cc339e135e5cdebc3cc46f57489f8bb8ddcfcaeb894c9973d7314e7a1 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/fig4latex + +name fig4latex.i386-solaris +category Package +revision 14752 +shortdesc i386-solaris files of fig4latex +containersize 340 +containerchecksum 744ab1c3cd6471ba98a38fa9ec2e8c69e431d00ce7a06707fe436a99aef84c1c428b0154ff653b4aa12c482b884858e1c4f49d79c29443a37c16bd76f2fe968c +binfiles arch=i386-solaris size=1 + bin/i386-solaris/fig4latex + +name fig4latex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of fig4latex +containersize 340 +containerchecksum 1bda9f9fda7df2412b72f2fee04cef705e7a95d56912b6be5f681cbc84548b7d0ac6011387ded6825a9e25716a9b0fc78108b36f5815433568b87ebd4fd10b55 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/fig4latex + +name fig4latex.win32 +category Package +revision 15469 +shortdesc win32 files of fig4latex +containersize 684 +containerchecksum e315ab83991ef5b086c32e1593ad0cd190bbb78eb12ef228da13e6d2f0af49859c3b2892ef33fbcf3b58fc57beadb30e231667d07898db867fd3525c2bcfb9ca +binfiles arch=win32 size=1 + bin/win32/fig4latex.exe + +name fig4latex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of fig4latex +containersize 340 +containerchecksum 2459d7b709d4574d08b02c1e8d8f5e9796a139ca74fb16de4d6926d5048a06e89607c199d1d19b93d514206a05fd9bb4c991cecbcd55d6443fcd361080ec7c05 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/fig4latex + +name fig4latex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of fig4latex +containersize 344 +containerchecksum 447807d1da2ae8b21f81d8cfff21c6e3a83f552029c81df081f81b5275b9abeb9c3d1ed81db569935825d9d74c9611277a285b04f97930cd7ff1497b44d411c1 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/fig4latex + +name fig4latex.x86_64-linux +category Package +revision 14752 +shortdesc x86_64-linux files of fig4latex +containersize 340 +containerchecksum f970fd30db8865547396060069b5059d50ae53f4ac2c9b035c84bcbc33084559898042276de8390a502012d8b465b816f610d3f21d1d035e132d159b068f4240 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/fig4latex + +name fig4latex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of fig4latex +containersize 344 +containerchecksum a0411a1ab2a65ea2d1326e2e39d7cac170eaa36bb8fa95022baddfbbc6cecf6947cdc3b791f8121aa43720a82d1fcd76933b5933e629fe863349676b8bdbe3e2 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/fig4latex + +name fig4latex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of fig4latex +containersize 340 +containerchecksum 709cb487e940348003d094b9b01e44d58a8bc320bfe1dada836d536be2423284543e9bc26d0aae09fec0ed6c2372b1e9a6372caa656a6d6e7fb321c0c8723703 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/fig4latex + +name figbas +category Package +revision 28943 +shortdesc Mini-fonts for figured-bass notation in music +relocated 1 +longdesc This package consists of three mini-fonts (and associated +longdesc metrics) of conventional ligatures for the figured-bass +longdesc notations 2+, 4+, 5+, 6+ and 9+ in music manuscripts. The fonts +longdesc are usable with Computer Modern Roman and Sans, and +longdesc Palatino/Palladio, respectively. +containersize 18600 +containerchecksum 2fdc1114b03123c35eccd6b617310c714f37015620551538458a1a49b1e9a583aa55b3cb661f204bb9168cee0a7325b066d64315a15a94daa01e43d05bbb2561 +doccontainersize 77248 +doccontainerchecksum 7dc8140b3b545d2683c471e2e2907a58e2c995f23acea26d763da8989c3288940dcc154ffc0f81ea99169ce574bf90543e94f86bf8217996b7c83474a300806e +docfiles size=24 + RELOC/doc/fonts/figbas/README details="Readme" + RELOC/doc/fonts/figbas/example.pdf details="Short example of use" + RELOC/doc/fonts/figbas/example.tex + RELOC/doc/fonts/figbas/figbas.pdf + RELOC/doc/fonts/figbas/figbas.tex +runfiles size=14 + RELOC/fonts/afm/public/figbas/cmrj.afm + RELOC/fonts/afm/public/figbas/cmssj.afm + RELOC/fonts/afm/public/figbas/plrj.afm + RELOC/fonts/map/dvips/figbas/figbas.map + RELOC/fonts/tfm/public/figbas/cmrj.tfm + RELOC/fonts/tfm/public/figbas/cmssj.tfm + RELOC/fonts/tfm/public/figbas/plrj.tfm + RELOC/fonts/type1/public/figbas/cmrj.pfb + RELOC/fonts/type1/public/figbas/cmssj.pfb + RELOC/fonts/type1/public/figbas/plrj.pfb +catalogue-ctan /fonts/figbas +catalogue-license lppl +catalogue-topics music +catalogue-version 1.0.3 + +name figbib +category Package +revision 19388 +shortdesc Organize figure databases with BibTeX +relocated 1 +longdesc FigBib lets you organize your figures in BibTeX databases. Some +longdesc FigBib features are: Store and manage figures in a BibTeX +longdesc database; Include figures in your LaTeX document with one short +longdesc command; Generate a List of Figures containing more/other +longdesc information than the figure captions; Control with one switch +longdesc where to output the figures, either as usual float objects or +longdesc in a separate part at the end of your document. +containersize 3288 +containerchecksum 1632b372b06d8ef3cc363d6b05e70b8a493f357fb947ca1b8fbb7752d7ffc4ec09904e747a3e9b91b61e5d094c96eee954d533d1b286b372aa57244ec2abc63d +doccontainersize 133148 +doccontainerchecksum ba42f6cc811fc9e00c41bb6fb410a57a2efe759a0fd0621cd83801963d0ed138dc66a1a245a4b7256cb056f3fe71e883a8fa84d19dda785ba24825e85edfa044 +docfiles size=49 + RELOC/doc/latex/figbib/README details="Readme" + RELOC/doc/latex/figbib/figbib_doc.pdf + RELOC/doc/latex/figbib/figbib_doc.tex + RELOC/doc/latex/figbib/figbib_sample.bib + RELOC/doc/latex/figbib/figbib_sample.pdf + RELOC/doc/latex/figbib/figbib_sample.tex + RELOC/doc/latex/figbib/smiley.eps +runfiles size=5 + RELOC/bibtex/bst/figbib/figbib.bst + RELOC/bibtex/bst/figbib/figbib1.bst + RELOC/tex/latex/figbib/figbib.sty +catalogue-ctan /macros/latex/contrib/figbib +catalogue-license lppl +catalogue-topics bibtex-util + +name figchild +category Package +revision 58964 +shortdesc Pictures for creating children's activities +relocated 1 +longdesc This package was created with the aim of facilitating the work +longdesc of Elementary School teachers who need to create colorful and +longdesc attractive activities for their students. It is a product of +longdesc the Computational Mathematics discipline offered at the Federal +longdesc University of Vicosa -- Campus UFV -- Florestal by professor +longdesc Fernando de Souza Bastos. It makes use of the TikZ and xcolor +longdesc packages. +containersize 49072 +containerchecksum 53fc2af05bc5f68d1fd14ac999c0ce957feb7e545596089ee06acc64ffc43102bf374957a805664a5443ffee420a9afaee2f912fdf5f6b52442b36ebc1f70879 +doccontainersize 625944 +doccontainerchecksum 87c6e78b3989d5bd9d0b527c79f9c69783319b4dc02754ede8e027e187f8a3c59d3194b23d6a5d8510fe6c3e129c0df1bad272b6d667d292b7510f3c1baa904e +docfiles size=168 + RELOC/doc/latex/figchild/README.md details="Readme" + RELOC/doc/latex/figchild/capa.tex + RELOC/doc/latex/figchild/figchild.pdf details="Package documentation" + RELOC/doc/latex/figchild/figchild.tex + RELOC/doc/latex/figchild/latexmkrc +runfiles size=90 + RELOC/tex/latex/figchild/figchild.sty +catalogue-contact-repository https://github.com/fsbmat-ufv/figchild +catalogue-ctan /graphics/pgf/contrib/figchild +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz teaching amusements +catalogue-version 1.1.1 + +name figflow +category Package +revision 21462 +shortdesc Flow text around a figure +relocated 1 +longdesc Provides a Plain TeX macro \figflow that allows one to insert a +longdesc figure into an area inset into a paragraph. Command arguments +longdesc are width and height of the figure, and the figure (and its +longdesc caption) itself. Usage details are to be found in the TeX file +longdesc itself. The package does not work with LaTeX; packages such as +longdesc wrapfig, floatflt and picins support the needs of LaTeX users +longdesc in this area. +containersize 2072 +containerchecksum f75517b5c43119d33edf46fbe124523cacf0d7d837cdf66af702ba563392a96323b266bece1ec9e7f87df34d684a87ab38f9ddafab6c3d069dca8ee22c3bf25a +doccontainersize 684 +doccontainerchecksum c972bfb356731aa119e8cdf1292a3bcbfc08a74453feb7e509a5cc519f62ae6c7e6b0c087973549b9d860b97ff1a3bae9cfd1166c4ac6a74553ca6c0f463694d +docfiles size=1 + RELOC/doc/plain/figflow/README.figflow +runfiles size=1 + RELOC/tex/plain/figflow/figflow.tex +catalogue-ctan /macros/plain/contrib/figflow +catalogue-license other-free +catalogue-topics text-flow + +name figsize +category Package +revision 18784 +shortdesc Auto-size graphics +relocated 1 +longdesc The FigSize package enables automatic sizing of graphics, +longdesc especially when including graphics with the graphicx package. +longdesc The user only has to specify the number of graphics that should +longdesc fit to a page or fraction there of and the package will +longdesc dynamically calculate the correct graphics sizes relative to +longdesc the page size. Thus, graphics can be auto-sized to fill a whole +longdesc page or fraction and manual changes of graphic sizes are never +longdesc needed when changing document layouts. Finally, the package's +longdesc dynamic lengths can be used to allow other document element +longdesc sizes to be dynamic. +containersize 1536 +containerchecksum 3c7523b05d04363c57c1ba75a39d9698b1648ab6a858be15112b6f47c052742033e3ed16752a9b9ef3854ab93f547f0841c32f1cc68fb9d4538fc02a7bb19ad6 +doccontainersize 88472 +doccontainerchecksum 598f631423a97e189c21e117a7da23c95bbf4dc3b616e62fc6738674848fc46be4d7dd43832ff58ef834c0fdbe35d8923ba9729d5c48f90b0431a22bf86f79d5 +docfiles size=39 + RELOC/doc/latex/figsize/README details="Package Readme" + RELOC/doc/latex/figsize/epsfig.eps + RELOC/doc/latex/figsize/figsize.pdf details="Package documentation" + RELOC/doc/latex/figsize/figsize.tex +runfiles size=1 + RELOC/tex/latex/figsize/figsize.sty +catalogue-ctan /macros/latex/contrib/figsize +catalogue-license lppl +catalogue-topics graphics +catalogue-version 0.1 + +name filecontents +category Package +revision 52142 +shortdesc Create an external file from within a LaTeX document +relocated 1 +longdesc LaTeX2e's filecontents and filecontents* environments enable a +longdesc LaTeX source file to generate external files as it runs through +longdesc LaTeX. However, there are two limitations of these +longdesc environments: they refuse to overwrite existing files, and they +longdesc can only be used in the preamble of a document. The +longdesc filecontents package removes these limitations, letting you +longdesc overwrite existing files and letting you use +longdesc filecontents/filecontents* anywhere. As of September 2019 the +longdesc author tells us: "This package is no longer necessary due to +longdesc its functionality having moved into recent LaTeX kernels. It's +longdesc probably better not to move the package to obsolete because +longdesc users may need it to rebuild old documents. Version 1.5 +longdesc provides full functionality when run with an older kernel but +longdesc issues a warning message and disables itself when run with a +longdesc newer kernel." +containersize 2056 +containerchecksum b40bf2e4eea194783dded4f00dc24f1cea26a854e96b57995b69354a70c1e7ba9ef0e64542c2b524ad59d9b12fb1accf93ee28b4c7e735279c0bbeb915b6c991 +doccontainersize 122336 +doccontainerchecksum 0ebf1990c005dbf92b7ef73ccae0cf1ad47ca896f0805a5a8291a15c6764e2259ae03fe14d9c713484ea258764b706881051b4001589715bc36ee17ce5bdee23 +docfiles size=33 + RELOC/doc/latex/filecontents/README details="Package Readme" + RELOC/doc/latex/filecontents/filecontents.pdf details="Package documentation" +srccontainersize 6192 +srccontainerchecksum e0238c49fcdda4a6d5ced2e52a7f5113996fed3bf7d8d2143d499870b06a1d8381a2b0796c2708570e554c1ffbd7f12c6c69b52980b1e2b7b91b2e8d2112e42a +srcfiles size=5 + RELOC/source/latex/filecontents/filecontents.dtx + RELOC/source/latex/filecontents/filecontents.ins +runfiles size=1 + RELOC/tex/latex/filecontents/filecontents.sty +catalogue-ctan /macros/latex/contrib/filecontents +catalogue-license lppl1.3c +catalogue-topics file-mgmt +catalogue-version 1.5 + +name filecontentsdef +category Package +revision 52208 +shortdesc filecontents + macro + verbatim +relocated 1 +longdesc The package provides two environments called filecontentsdef +longdesc and filecontentshere. They are derived from the LaTeX +longdesc filecontents environment as provided by Scott Pakin's +longdesc filecontents package. In addition to the file creation they +longdesc either store the (verbatim) contents in a macro +longdesc (filecontentsdef) or typeset them (verbatim) on the spot +longdesc (filecontentshere). The author developed the package to display +longdesc TeX code verbatim in documentation and the same time produce +longdesc the corresponding files during the LaTeX run in order to embed +longdesc them in the PDF as file attachment annotations (by using Scott +longdesc Pakin's package attachfile). +containersize 2600 +containerchecksum 63b399a5e21d2d4946c195f380a0d5f269f8c978c0b504cda80c0796604dfcb66df38ca79d31078efa03c7475967bc0ebfb856e933bce6b21d12836368780e2a +doccontainersize 129568 +doccontainerchecksum 26e7ca9971a0683325b62e2feeeb0db6ecdd3a732f07ae93515f2300ed58e97a44ff8a7504d194119c1e27d1d9bc4f367f29c17458c0e7f0b6a0a61fe18ea0ca +docfiles size=41 + RELOC/doc/latex/filecontentsdef/INSTALL + RELOC/doc/latex/filecontentsdef/INSTALL.md + RELOC/doc/latex/filecontentsdef/README.md details="Readme" + RELOC/doc/latex/filecontentsdef/filecontentsdef-ex1.tex + RELOC/doc/latex/filecontentsdef/filecontentsdef-ex2.tex + RELOC/doc/latex/filecontentsdef/filecontentsdef-ex3.tex + RELOC/doc/latex/filecontentsdef/filecontentsdef-tab.test + RELOC/doc/latex/filecontentsdef/filecontentsdef.pdf details="Package documentation" + RELOC/doc/latex/filecontentsdef/filecontentsdef.test + RELOC/doc/latex/filecontentsdef/filecontentsdef.tex +srccontainersize 17028 +srccontainerchecksum f6e822a28e074fece05b911f0bf9d262e2b925c2a73559764e1eb5131d9081b48ace0ead5f46bb250bf648eac204eb1d5d7b362be508f58b40a50f70577de534 +srcfiles size=14 + RELOC/source/latex/filecontentsdef/filecontentsdef.dtx +runfiles size=2 + RELOC/tex/latex/filecontentsdef/filecontentsdef.sty +catalogue-also filecontents +catalogue-ctan /macros/latex/contrib/filecontentsdef +catalogue-license lppl1.3 +catalogue-topics file-mgmt +catalogue-version 1.5 + +name filedate +category Package +revision 29529 +shortdesc Access and compare info and modification dates +relocated 1 +longdesc The package provides basic access to the date of a LaTeX source +longdesc file according to its \Provides... entry (the "info date") as +longdesc well as to its modification date according to \pdffilemoddate +longdesc if the latter is available. +containersize 6848 +containerchecksum 5e2789c065459e82f073599c4d5f04c626fedae7e02c8dc58d6595d81ec8281c9c362592eee9547369b7a8e9cd2aed1ec526d69a8ae22f35771d5494e3109032 +doccontainersize 561320 +doccontainerchecksum cfc2eb596e6b6d17015ab2ca061da39e673376d6f4c526dc045c8d2514fa8372f1a853a97425b4bcb9eb0bdc522c6b482a9bc3da9f56f8a4e0c22e4970a40575 +docfiles size=152 + RELOC/doc/latex/filedate/Announce.txt + RELOC/doc/latex/filedate/README details="Readme" + RELOC/doc/latex/filedate/SrcFILEs.txt + RELOC/doc/latex/filedate/filedate.pdf details="Package documentation" +srccontainersize 3812 +srccontainerchecksum cc2a12c8f3b9e7391d6b57eec6c0f486137524022d89d3d3e7c037ab468a4858b253e8baa1cc8eeb731510c5e221b7cbe9a9f22a972023b3d1fe2f975e4751dc +srcfiles size=4 + RELOC/source/latex/filedate/fdatechk.tex + RELOC/source/latex/filedate/filedate.tex + RELOC/source/latex/filedate/srcfiles.tex +runfiles size=6 + RELOC/tex/latex/filedate/filedate.RLS + 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-license lppl +catalogue-topics file-mgmt date-time + +name filehook +category Package +revision 56479 +shortdesc Hooks for input files +relocated 1 +longdesc The package provides several file hooks (AtBegin, AtEnd, ...) +longdesc for files read by \input, \include and \InputIfFileExists. +longdesc General hooks for all such files (e.g. all \included ones) and +longdesc file specific hooks only used for named files are provided; two +longdesc hooks are provided for the end of \included files -- one +longdesc before, and one after the final \clearpage. +containersize 4964 +containerchecksum 4591384d78ddb17648bc3bbbbad2b0e7f693a250e36b8cfb110233d909151352c337ff15ac0f53803a01ca2b59b85c7fcf4405cb67e04df1a0bd3bbcf18a6f07 +doccontainersize 298772 +doccontainerchecksum 98e77091e4b46fe53276621f17dd015d88254e94340a33d7591c97ed031865fd85cab22cbd1e2ad6cf388362899b88cd529f8b8cfba13dcafd5a1790e815340e +docfiles size=76 + RELOC/doc/latex/filehook/README details="Readme" + RELOC/doc/latex/filehook/filehook.pdf details="Package documentation" +srccontainersize 14300 +srccontainerchecksum ffb2ecd14c42307450179b1cf83244754f42b805afd37ac4003fb758bb5c975b0166b81540ec1fa3a34df42795af152b7325cd29208e8db3dc287fde1b70774f +srcfiles size=22 + RELOC/source/latex/filehook/filehook.dtx + RELOC/source/latex/filehook/filehook.ins +runfiles size=14 + RELOC/tex/latex/filehook/filehook-2019.sty + RELOC/tex/latex/filehook/filehook-2020.sty + RELOC/tex/latex/filehook/filehook-fink.sty + RELOC/tex/latex/filehook/filehook-listings.sty + RELOC/tex/latex/filehook/filehook-memoir.sty + RELOC/tex/latex/filehook/filehook-scrlfile.sty + RELOC/tex/latex/filehook/filehook.sty + RELOC/tex/latex/filehook/pgf-filehook.sty +catalogue-contact-bugs https://sourceforge.net/p/filehook/tickets/ +catalogue-contact-home https://sourceforge.net/p/filehook/ +catalogue-contact-repository https://sourceforge.net/p/filehook/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/filehook +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.8a + +name fileinfo +category Package +revision 28421 +shortdesc Enhanced display of LaTeX File Information +relocated 1 +longdesc The bundle provides two packages, readprov and myfilist. The +longdesc readprov package provides a means of reading file information +longdesc without loading the body of the file. The myfilist package uses +longdesc readprov and controls what \listfiles will report. +containersize 6896 +containerchecksum 2e5914e32af48db731aa83c3e51e6d9128dc969891bce21e1e2f859cab79130c9f5caa0f591765fa8a9b48c38eed8d19305f4be598430ab1e2cb3276b6faf191 +doccontainersize 913660 +doccontainerchecksum 03b4ecbd21ec39d98949f2e8ece7e48bd539a75051350d1a9ea19e3d32ecd620c0f1a5dc454e626237534114d0430e2ad7c175e9c1b27ba15c78a35aeca3e3b9 +docfiles size=264 + RELOC/doc/latex/fileinfo/README + RELOC/doc/latex/fileinfo/README.pdf details="Readme" + RELOC/doc/latex/fileinfo/RELEASEs.txt + RELOC/doc/latex/fileinfo/SrcFILEs.txt + RELOC/doc/latex/fileinfo/myfilist.pdf + RELOC/doc/latex/fileinfo/readprov.pdf +srccontainersize 4496 +srccontainerchecksum 6875ecef667da4476def344901db38f38e988d2345c2afff42fb812c01c356df8bf1dd3c8c9a563a883fcb9e22e85b8813bbf50905d711004a439767ac0f7227 +srcfiles size=7 + RELOC/source/latex/fileinfo/README.tex + RELOC/source/latex/fileinfo/fdatechk.tex + RELOC/source/latex/fileinfo/gather.tex + RELOC/source/latex/fileinfo/myfilist.tex + RELOC/source/latex/fileinfo/readprov.tex +runfiles size=7 + RELOC/tex/latex/fileinfo/fileinfo.RLS + RELOC/tex/latex/fileinfo/myfilist.sty + 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-license lppl1.3 +catalogue-topics doc-mgmt +catalogue-version 0.81a + +name filemod +category Package +revision 56291 +shortdesc Provide file modification times, and compare them +relocated 1 +longdesc The package provides macros to read and compare the +longdesc modification dates of files. The files may be .tex files, +longdesc images or other files (as long as they can be found by LaTeX). +longdesc It uses the \pdffilemoddate primitive of pdfLaTeX to find the +longdesc file modification date as PDF date string, parses the string +longdesc and returns the value to the user. The package will also work +longdesc for DVI output with recent versions of the LaTeX compiler which +longdesc uses pdfLaTeX in DVI mode. The functionality is provided by +longdesc purely expandable macros or by faster but non-expandable ones. +containersize 3572 +containerchecksum c927f700796e4cdb9d7d274fcb390b4e1c0c04ac95df8a8586eea3c8c6aee3daddeb9f6a53b3df103887a7635288f7ae316d09dc34603fe3a37f74bf45f85ef8 +doccontainersize 277228 +doccontainerchecksum 96587219fdb00fcaea6d838b58b5a04169b17cdec1c937378255f7dfb48e687a205f08a20dc6654ab5565a68649ef67b796653479f95a4c022596626ddc5b16d +docfiles size=70 + RELOC/doc/latex/filemod/README details="Readme" + RELOC/doc/latex/filemod/filemod.pdf details="Package documentation" +runfiles size=8 + RELOC/tex/generic/filemod/filemod-expmin.tex + RELOC/tex/generic/filemod/filemod.tex + RELOC/tex/latex/filemod/filemod-expmin.sty + RELOC/tex/latex/filemod/filemod.sty +catalogue-also stampinclude +catalogue-contact-bugs https://sourceforge.net/p/filemod/tickets/ +catalogue-contact-home https://sourceforge.net/p/filemod/ +catalogue-contact-repository https://sourceforge.net/p/filemod/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/filemod +catalogue-license lppl1.3 +catalogue-topics doc-tool +catalogue-version 1.2 + +name finbib +category Package +revision 15878 +catalogue finplain +shortdesc A Finnish version of plain.bst +relocated 1 +containersize 5372 +containerchecksum 14f08cdc92a2d6d511c112c480efb0112d45c199023e89c9314740c2b9b83598bc9f8917ce616bb2493671f408f946ada3de4535136eff48b7bbf72e7436f912 +runfiles size=7 + RELOC/bibtex/bst/finbib/finplain.bst +catalogue-ctan /biblio/bibtex/contrib/misc/finplain.bst +catalogue-license other-free +catalogue-topics bibtex-sty finnish + +name findhyph +category Package +revision 47444 +shortdesc Find hyphenated words in a document +longdesc Findhyph is a Perl script that will analyse the log file from +longdesc running your document with \tracingparagraphs=1 set. The output +longdesc contains enough context to enable you to find the hyphenated +longdesc word that's being referenced. +depend findhyph.ARCH +containersize 3904 +containerchecksum aea6305dc0d9b31367638078a7958933468e761ef4cf47a1c44d9fd5ab2e25f7af22273c4631946a90edc9b51947c2e56b3d4b74c8c59f0a79250c2edf5bc137 +doccontainersize 35040 +doccontainerchecksum 97f3fa22fe490d21bc9e5ce5ea0b23ff25ab9afd9c5dbf6e8d78b24fd306ddc132c5ba7ca7ea7e3d7aaeb48993c7968b0c02ae0b765416a939d84b53171f4179 +docfiles size=17 + texmf-dist/doc/man/man1/findhyph.1 + texmf-dist/doc/man/man1/findhyph.man1.pdf + texmf-dist/doc/support/findhyph/Makefile.doc + texmf-dist/doc/support/findhyph/README details="Readme" + texmf-dist/doc/support/findhyph/findhyph.bat + texmf-dist/doc/support/findhyph/findhyph.txt +runfiles size=3 + texmf-dist/scripts/findhyph/findhyph +catalogue-ctan /support/findhyph +catalogue-license gpl2 +catalogue-topics hyph-gen +catalogue-version 3.4 + +name findhyph.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of findhyph +containersize 340 +containerchecksum 725e6519dbfdcbfd5c8f12e711b27a697fbb9d5b1febce7d0b24f3cb2960c382c9e19abbd273fb434a4d2c5ce492427851551fa9e968c4af598e6e9735b85622 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/findhyph + +name findhyph.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of findhyph +containersize 340 +containerchecksum 8e60b89824a270412578a8fed23e3a50e5cc0ed13038eccc8cedac14e8834036ccf127e84cb048f9156166a7c28619bbca005d12edcc3d63068fb1f73c798ca9 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/findhyph + +name findhyph.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of findhyph +containersize 340 +containerchecksum b155d3de5b6332b97321b71782cd5d63a490ea07f6bc10c95ff638d8cf8c012f4aa0c33a1e96273b4abecbb084e6670960231cbf7370931ad1b566e34d8ba5f4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/findhyph + +name findhyph.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of findhyph +containersize 340 +containerchecksum a396ef376bf92f19fce3c762412d996e1e700db96efafb7bd08f1024fce0504ea83c29aba240aa5989400e631a55e412a678853b491056193ad322dccaa549dd +binfiles arch=armhf-linux size=1 + bin/armhf-linux/findhyph + +name findhyph.i386-cygwin +category Package +revision 14758 +shortdesc i386-cygwin files of findhyph +containersize 336 +containerchecksum 84580e2190b70519e13296832ee77107d21fc0590c5b1de05bb0269c72383de942e495204e9165ac7d08edea94ff7fe9f2a33db9817ec7ab08fda441c721810d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/findhyph + +name findhyph.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of findhyph +containersize 340 +containerchecksum c976ff3ea01001629c8d305abae17a00a034cfd1c94952f394a62bd5ebab19dd5c1a8b1f37f1d123c69ec1e5c9370d8f90c5f7cb947faef6cd93488758dc769b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/findhyph + +name findhyph.i386-linux +category Package +revision 14758 +shortdesc i386-linux files of findhyph +containersize 340 +containerchecksum 6b5545411370f751ae043a3ae670425c97f625a4902f43e5ca6d88eaafc48c01e70f3c7a27879a0d062f8513a6865f73bdc730d8084befeaa3404e544b6c13d9 +binfiles arch=i386-linux size=1 + bin/i386-linux/findhyph + +name findhyph.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of findhyph +containersize 340 +containerchecksum 8566fe7a3fae1a2e3982a9bf13c7c3836071021cf03105ffd9d9a01bf443663b798dd9b2392d63107f0c9d680bae1a551a9f3e30914216c51d9deded574dbeaf +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/findhyph + +name findhyph.i386-solaris +category Package +revision 14758 +shortdesc i386-solaris files of findhyph +containersize 340 +containerchecksum 3d199939c0063f6542836b01cac47db9b5b08431ff55f4e8e4867728103dffc9277d03a3b8cc34c1260480db503a758e523706be300c4b69e7ba387084e8f817 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/findhyph + +name findhyph.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of findhyph +containersize 336 +containerchecksum 3862c1d6a3563211ba6194baa9d9f646c65a147bca1fe26d78deffa8661864270c669adb7db005251ffd031df1b65dc41d8c334cf31e5b5f8a96ecfad6eaaf72 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/findhyph + +name findhyph.win32 +category Package +revision 15469 +shortdesc win32 files of findhyph +containersize 680 +containerchecksum b0af01afa3cb5fb84b3a7577bd8b83b6c26c6c702cd343087db8c25c3a8a63ec57782d4073131b8da6b37562e43a1ae4459db0173dd31acdc634a4c8953cca78 +binfiles arch=win32 size=1 + bin/win32/findhyph.exe + +name findhyph.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of findhyph +containersize 340 +containerchecksum 14277e457248779836ab9aba3d22c3763cc2d2bdc75247084f8423a514f7d0254f0984c687b8506c52243aff2c0f6492b3ffe4cf52a73574a92aab16b0451b36 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/findhyph + +name findhyph.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of findhyph +containersize 348 +containerchecksum 935b53fe3c11e701c72e0ae7cbcd6ac5e3a818567292012c5ce3524989fcc7cf1ca29c62063d26bc27a15a422ab98792471dba02f6afdac14d66710f03825e51 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/findhyph + +name findhyph.x86_64-linux +category Package +revision 14758 +shortdesc x86_64-linux files of findhyph +containersize 336 +containerchecksum 0a406d29690576c2b407f0be03eb7c82c0ed56f08c764c0ceced8983795f57572fd2d978bb582ee624ab81dbe4a46709323c7a9a2190f3845e521d5901564ddb +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/findhyph + +name findhyph.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of findhyph +containersize 344 +containerchecksum 0ad1f752b25ca6faf23776edcf53b823702fab66543e2f1383266499da9f0b62c0c70ee812e0515adb45798b7ee5fa3295a760b77de9f5c9c80849ca3319a121 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/findhyph + +name findhyph.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of findhyph +containersize 340 +containerchecksum 9f30c595bb292eb179bca77308b42e28a6ec02f5e3e8ba175ea2843c2062279423e8018e72d53ae66ad4b5ad3345ec55f483f584a5d35d1373fd78b125f3831a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/findhyph + +name fink +category Package +revision 24329 +shortdesc The LaTeX2e File Name Keeper +relocated 1 +longdesc This package "looks over your shoulder" and keeps track of +longdesc files \input'ed (the LaTeX way) or \include'ed in your +longdesc document. You then have permanent access to the name of the +longdesc file currently being processed through the macro \finkfile. +longdesc FiNK also comes with support for AUC-TeX. As of version 2.2.1, +longdesc FiNK has been deprecated and is not maintained anymore. People +longdesc interested in FiNK's functionality are invited to use a package +longdesc named currfile instead. +containersize 2280 +containerchecksum 837a470970c8376e1d699b28954cf2ac6ed849c2f96a4c17ced56ebf142297c36d3f856f9cbf4db920ae33f491738f7891433c5c6627565a48fb5391b663634f +doccontainersize 83412 +doccontainerchecksum 7b1d9d1c62766082030d7632bd91c65328d1bf3e8bb6abe4ed64ec5188d9f38d3b2a99695f32c2bf04e2fcd634819926ba923eeea915186eb9fe96bcb43954ca +docfiles size=30 + RELOC/doc/latex/fink/NEWS + RELOC/doc/latex/fink/README details="Readme" + RELOC/doc/latex/fink/THANKS + RELOC/doc/latex/fink/fink.el + RELOC/doc/latex/fink/fink.pdf + RELOC/doc/latex/fink/header.inc +srccontainersize 5796 +srccontainerchecksum e37a35a9c292ad3f213c560505ca6c446eda397771c18bb1fa2b64df70cd667b58ca03b6f821aa0a9d6bedb3910b66c411349f70dfe3eb5ca2f1fbdb9f925a35 +srcfiles size=5 + RELOC/source/latex/fink/fink.dtx + RELOC/source/latex/fink/fink.ins +runfiles size=2 + RELOC/tex/latex/fink/fink.sty +catalogue-also currfile +catalogue-ctan /macros/latex/contrib/fink +catalogue-license lppl +catalogue-topics doc-tool +catalogue-version 2.2.1 + +name finstrut +category Package +revision 21719 +shortdesc Adjust behaviour of the ends of footnotes +relocated 1 +longdesc The LaTeX internal command \@finalstrut is used automatically +longdesc used at the end of footnote texts to insert a strut to avoid +longdesc mis-spacing of multiple footnotes. Unfortunately the command +longdesc can cause a blank line at the end of a footnote. The package +longdesc provides a solution to this problem. +containersize 3352 +containerchecksum 8b360a3426056b61e58e577cc68ba9e2f55b63a3b4a0a2eb76ebee53e9ff327da9235e9da5cbb85e3cf369cd48354c00a79cd46110ba4adb4b64192b7ff7b603 +doccontainersize 174356 +doccontainerchecksum 8cc27d82f7125b5ee82585f97385924737406e45d9739ec9cd57b76736e902a588c7258628bdcc4841e3e23f359a4d8ad22a31ed6f821f1d1c59798f4e8f3d56 +docfiles size=54 + RELOC/doc/latex/finstrut/README details="Readme" + RELOC/doc/latex/finstrut/SRCFILEs.txt + RELOC/doc/latex/finstrut/finstrut.pdf details="Package documentation" + RELOC/doc/latex/finstrut/fstrutst.pdf +srccontainersize 2704 +srccontainerchecksum c06f1b10815444ed51b13d83258e1f3d246da65a581a0946e7a05a9c8432e78ae395efe18ff6c0a84db8fdf6016ab8dbcc6f3242e72936f46e522d1074ff1b87 +srcfiles size=3 + RELOC/source/latex/finstrut/finstrut.tex + RELOC/source/latex/finstrut/fstrutst.tex + RELOC/source/latex/finstrut/srcfiles.tex +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-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.5 + +name fira +category Package +revision 55437 +shortdesc Fira fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Fira Sans family of fonts designed by Erik +longdesc Spiekermann and Ralph du Carrois of Carrois Type Design. Fira +longdesc Sans is available in eleven weights with corresponding italics: +longdesc light, regular, medium, bold, ... +execute addMap fira.map +containersize 15529816 +containerchecksum 4e5ea926b9431b460b82130eb73a59c2cfb97146b30544f656f07f2cfcec0c5178dd4905829baac35ae05f49830d73074ae49d8f594bca03360f0ee6079a6876 +doccontainersize 1303884 +doccontainerchecksum 933810948368f3847cb7a3ad9f72724a82a995418caca97ebaf49569351d192a37357b502adf0aa0c7ff624994505c677ff8b5ed3b8739fd6bd2949dbafc85d5 +docfiles size=331 + RELOC/doc/fonts/fira/Fira_4_3_Change_Log.pdf + RELOC/doc/fonts/fira/LICENSE + RELOC/doc/fonts/fira/README details="Readme" + RELOC/doc/fonts/fira/TechnicalReportFiraSans.pdf + RELOC/doc/fonts/fira/TechnicalReportFiraSansItalic.pdf + RELOC/doc/fonts/fira/fira-samples.pdf details="Font samples" + RELOC/doc/fonts/fira/fira-samples.tex +runfiles size=14277 + RELOC/fonts/enc/dvips/fira/fir_277p54.enc + RELOC/fonts/enc/dvips/fira/fir_2mfh3o.enc + RELOC/fonts/enc/dvips/fira/fir_337jzs.enc + RELOC/fonts/enc/dvips/fira/fir_35cirm.enc + RELOC/fonts/enc/dvips/fira/fir_3rjtzj.enc + RELOC/fonts/enc/dvips/fira/fir_4amwxz.enc + RELOC/fonts/enc/dvips/fira/fir_64bwtp.enc + RELOC/fonts/enc/dvips/fira/fir_6a7jni.enc + RELOC/fonts/enc/dvips/fira/fir_6pmvcj.enc + RELOC/fonts/enc/dvips/fira/fir_752xwd.enc + RELOC/fonts/enc/dvips/fira/fir_77v2wz.enc + RELOC/fonts/enc/dvips/fira/fir_a7qib3.enc + RELOC/fonts/enc/dvips/fira/fir_ato6be.enc + RELOC/fonts/enc/dvips/fira/fir_bdsk4z.enc + RELOC/fonts/enc/dvips/fira/fir_bweh26.enc + RELOC/fonts/enc/dvips/fira/fir_ctfgmy.enc + RELOC/fonts/enc/dvips/fira/fir_d4q673.enc + RELOC/fonts/enc/dvips/fira/fir_d67aat.enc + RELOC/fonts/enc/dvips/fira/fir_drwkde.enc + RELOC/fonts/enc/dvips/fira/fir_embvrf.enc + RELOC/fonts/enc/dvips/fira/fir_fdi65k.enc + RELOC/fonts/enc/dvips/fira/fir_fkitua.enc + RELOC/fonts/enc/dvips/fira/fir_fmuqgy.enc + RELOC/fonts/enc/dvips/fira/fir_fp7bit.enc + RELOC/fonts/enc/dvips/fira/fir_fugcbc.enc + RELOC/fonts/enc/dvips/fira/fir_i3ioen.enc + RELOC/fonts/enc/dvips/fira/fir_ikmdpu.enc + RELOC/fonts/enc/dvips/fira/fir_iln36p.enc + RELOC/fonts/enc/dvips/fira/fir_ipx2pi.enc + RELOC/fonts/enc/dvips/fira/fir_iuj4v6.enc + RELOC/fonts/enc/dvips/fira/fir_l5plul.enc + RELOC/fonts/enc/dvips/fira/fir_lyxrxe.enc + RELOC/fonts/enc/dvips/fira/fir_mg765t.enc + RELOC/fonts/enc/dvips/fira/fir_mp24xm.enc + RELOC/fonts/enc/dvips/fira/fir_muxyzp.enc + RELOC/fonts/enc/dvips/fira/fir_nlwzva.enc + RELOC/fonts/enc/dvips/fira/fir_nqd3t2.enc + RELOC/fonts/enc/dvips/fira/fir_ogsljj.enc + RELOC/fonts/enc/dvips/fira/fir_pn4j44.enc + RELOC/fonts/enc/dvips/fira/fir_pqsnfd.enc + RELOC/fonts/enc/dvips/fira/fir_q4uag2.enc + RELOC/fonts/enc/dvips/fira/fir_q72bhc.enc + RELOC/fonts/enc/dvips/fira/fir_qz5ryr.enc + RELOC/fonts/enc/dvips/fira/fir_rqul6i.enc + RELOC/fonts/enc/dvips/fira/fir_tz2nek.enc + RELOC/fonts/enc/dvips/fira/fir_ugbesn.enc + RELOC/fonts/enc/dvips/fira/fir_uhzub2.enc + RELOC/fonts/enc/dvips/fira/fir_utelx5.enc + RELOC/fonts/enc/dvips/fira/fir_wpkht5.enc + RELOC/fonts/enc/dvips/fira/fir_yz65wh.enc + RELOC/fonts/enc/dvips/fira/fir_znzycj.enc + RELOC/fonts/map/dvips/fira/fira.map + RELOC/fonts/opentype/public/fira/FiraMono-Bold.otf + RELOC/fonts/opentype/public/fira/FiraMono-BoldOblique.otf + RELOC/fonts/opentype/public/fira/FiraMono-Medium.otf + RELOC/fonts/opentype/public/fira/FiraMono-MediumOblique.otf + RELOC/fonts/opentype/public/fira/FiraMono-Oblique.otf + RELOC/fonts/opentype/public/fira/FiraMono-Regular.otf + RELOC/fonts/opentype/public/fira/FiraSans-Bold.otf + RELOC/fonts/opentype/public/fira/FiraSans-BoldItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Book.otf + RELOC/fonts/opentype/public/fira/FiraSans-BookItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraBold.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraLight.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraLightItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Heavy.otf + RELOC/fonts/opentype/public/fira/FiraSans-HeavyItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Italic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Light.otf + RELOC/fonts/opentype/public/fira/FiraSans-LightItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Medium.otf + RELOC/fonts/opentype/public/fira/FiraSans-MediumItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Regular.otf + RELOC/fonts/opentype/public/fira/FiraSans-SemiBold.otf + RELOC/fonts/opentype/public/fira/FiraSans-SemiBoldItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Thin.otf + RELOC/fonts/opentype/public/fira/FiraSans-ThinItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-UltraLight.otf + RELOC/fonts/opentype/public/fira/FiraSans-UltraLightItalic.otf + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-BoldOblique-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-MediumOblique-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Oblique-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/fira/FiraMono-Bold.pfb + RELOC/fonts/type1/public/fira/FiraMono-BoldOblique.pfb + RELOC/fonts/type1/public/fira/FiraMono-Medium.pfb + RELOC/fonts/type1/public/fira/FiraMono-MediumOblique.pfb + RELOC/fonts/type1/public/fira/FiraMono-Oblique.pfb + RELOC/fonts/type1/public/fira/FiraMono-Regular.pfb + RELOC/fonts/type1/public/fira/FiraSans-Bold.pfb + RELOC/fonts/type1/public/fira/FiraSans-BoldItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Book.pfb + RELOC/fonts/type1/public/fira/FiraSans-BookItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraBold.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraLight.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraLightItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Heavy.pfb + RELOC/fonts/type1/public/fira/FiraSans-HeavyItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Italic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Light.pfb + RELOC/fonts/type1/public/fira/FiraSans-LightItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Medium.pfb + RELOC/fonts/type1/public/fira/FiraSans-MediumItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Regular.pfb + RELOC/fonts/type1/public/fira/FiraSans-SemiBold.pfb + RELOC/fonts/type1/public/fira/FiraSans-SemiBoldItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Thin.pfb + RELOC/fonts/type1/public/fira/FiraSans-ThinItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-UltraLight.pfb + RELOC/fonts/type1/public/fira/FiraSans-UltraLightItalic.pfb + RELOC/fonts/vf/public/fira/FiraMono-Bold-sup-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-sup-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-sup-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-sup-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tlf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tlf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tosf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tosf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-BoldOblique-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-sup-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-sup-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-sup-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-sup-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tlf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tlf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tosf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tosf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-MediumOblique-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-sup-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-sup-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tlf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tlf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tosf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tosf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Oblique-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-sup-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-sup-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-lgr.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-ts1.vf + RELOC/tex/latex/fira/FiraMono.sty + RELOC/tex/latex/fira/FiraSans.sty + RELOC/tex/latex/fira/LGRFiraMono-Sup.fd + RELOC/tex/latex/fira/LGRFiraMono-TLF.fd + RELOC/tex/latex/fira/LGRFiraMono-TOsF.fd + RELOC/tex/latex/fira/LGRFiraSans-LF.fd + RELOC/tex/latex/fira/LGRFiraSans-OsF.fd + RELOC/tex/latex/fira/LGRFiraSans-Sup.fd + RELOC/tex/latex/fira/LGRFiraSans-TLF.fd + RELOC/tex/latex/fira/LGRFiraSans-TOsF.fd + RELOC/tex/latex/fira/LY1FiraMono-Sup.fd + RELOC/tex/latex/fira/LY1FiraMono-TLF.fd + RELOC/tex/latex/fira/LY1FiraMono-TOsF.fd + RELOC/tex/latex/fira/LY1FiraSans-LF.fd + RELOC/tex/latex/fira/LY1FiraSans-OsF.fd + RELOC/tex/latex/fira/LY1FiraSans-Sup.fd + RELOC/tex/latex/fira/LY1FiraSans-TLF.fd + RELOC/tex/latex/fira/LY1FiraSans-TOsF.fd + RELOC/tex/latex/fira/OT1FiraMono-Sup.fd + RELOC/tex/latex/fira/OT1FiraMono-TLF.fd + RELOC/tex/latex/fira/OT1FiraMono-TOsF.fd + RELOC/tex/latex/fira/OT1FiraSans-LF.fd + RELOC/tex/latex/fira/OT1FiraSans-OsF.fd + RELOC/tex/latex/fira/OT1FiraSans-Sup.fd + RELOC/tex/latex/fira/OT1FiraSans-TLF.fd + RELOC/tex/latex/fira/OT1FiraSans-TOsF.fd + RELOC/tex/latex/fira/T1FiraMono-Sup.fd + RELOC/tex/latex/fira/T1FiraMono-TLF.fd + RELOC/tex/latex/fira/T1FiraMono-TOsF.fd + RELOC/tex/latex/fira/T1FiraSans-LF.fd + RELOC/tex/latex/fira/T1FiraSans-OsF.fd + RELOC/tex/latex/fira/T1FiraSans-Sup.fd + RELOC/tex/latex/fira/T1FiraSans-TLF.fd + RELOC/tex/latex/fira/T1FiraSans-TOsF.fd + RELOC/tex/latex/fira/TS1FiraMono-TLF.fd + RELOC/tex/latex/fira/TS1FiraMono-TOsF.fd + RELOC/tex/latex/fira/TS1FiraSans-LF.fd + RELOC/tex/latex/fira/TS1FiraSans-OsF.fd + RELOC/tex/latex/fira/TS1FiraSans-TLF.fd + 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-license ofl lppl +catalogue-topics font font-body font-sans font-mono font-otf font-type1 font-proportional font-supp font-t1enc +catalogue-version 4.3 + +name firamath +category Package +revision 56672 +shortdesc Fira sans serif font with Unicode math support +relocated 1 +longdesc Fira Math is a sans-serif font with Unicode math support. The +longdesc design of this font is based on Fira Sans and FiraGO. Fira Math +longdesc is distributed in OpenType format and can be used with the +longdesc unicode-math package under XeLaTeX or LuaLaTeX. More support is +longdesc offered by the firamath-otf package. +containersize 99352 +containerchecksum c18ab8b2e12b947144528b196c9b1de7f1930f3a38338bd114bb61205d7f910fbf1e3b20ce48ad8228fc24b14d734ae68c3c8542218a058120a62783b007461c +doccontainersize 542428 +doccontainerchecksum 4e434c757b4ad4c82397224ab275db9a0783994dd9e3acffaecf19f73b3bfb86dc6f70c2833b2f203ec354aa275384d1e97f48deea9a765b3d972eede02a35f1 +docfiles size=156 + RELOC/doc/fonts/firamath/README.md details="Readme" + RELOC/doc/fonts/firamath/firamath-demo.pdf details="Example of use" + RELOC/doc/fonts/firamath/firamath-demo.tex + RELOC/doc/fonts/firamath/firamath-glyph-list.tex + RELOC/doc/fonts/firamath/firamath-specimen.pdf details="Package documentation" + RELOC/doc/fonts/firamath/firamath-specimen.tex +runfiles size=44 + RELOC/fonts/opentype/public/firamath/FiraMath-Regular.otf +catalogue-also fira firamath-otf gfsneohellenicmath +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-license ofl +catalogue-topics font font-otf font-sans font-maths +catalogue-version 0.3.4 + +name firamath-otf +category Package +revision 50732 +shortdesc Use OpenType math font Fira Math +relocated 1 +longdesc The package offers XeTeX/LuaTeX support for the Sans Serif +longdesc OpenType Fira Math Font. +containersize 1336 +containerchecksum dbbb13d184e2a407bcbc2681bc9c5ff0e83017141792e956013254dcc50815f5b913bb2e40d6c09421883db774e9ce5e5ed17f6602ee902f485069fbd570936e +doccontainersize 124236 +doccontainerchecksum 699e10d44b1e36505e872070c2799e1191e995ca6ae26058e7d069c96500a9c0914614750f6af076abd3a30b281409613a846c314a64bef047b3e313b0a4cc97 +docfiles size=42 + RELOC/doc/fonts/firamath-otf/Changes + RELOC/doc/fonts/firamath-otf/README.md details="Readme" + RELOC/doc/fonts/firamath-otf/firamath-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/firamath-otf/firamath-otf-doc.tex +runfiles size=1 + RELOC/tex/latex/firamath-otf/firamath-otf.sty +catalogue-also firamath +catalogue-ctan /fonts/firamath-otf +catalogue-license lppl1.3 +catalogue-topics font-use font-otf font-sans font-maths +catalogue-version 0.02a + +name first-latex-doc +category Package +revision 15878 +shortdesc A document for absolute LaTeX beginners +relocated 1 +longdesc The document leads a reader, who knows nothing about LaTeX, +longdesc through the production of a two page document. The user who has +longdesc completed that first document, and wants to carry on, will find +longdesc recommendations for tutorials. +containersize 496 +containerchecksum 39641224689a1d45d59b5643e5037599d03df3ecbe95090d565778758d334bddf832e867a25c1688adbee1f99eea23b3ed21fd6729fb3d4e50f1503537c9a400 +doccontainersize 503812 +doccontainerchecksum 497080fdad8195bdc43bef476f9e678b49d83829f10a6653c9443d327cb0da8505623e941cd3038349b6307ee37a65ce1a3d3eb48e4c6262f9d636d10d96e17b +docfiles size=157 + RELOC/doc/latex/first-latex-doc/README details="Readme" + RELOC/doc/latex/first-latex-doc/first-latex-doc.pdf details="The document itself" + RELOC/doc/latex/first-latex-doc/first-latex-doc.tex + RELOC/doc/latex/first-latex-doc/latex-first.png + RELOC/doc/latex/first-latex-doc/latex-first.tex + RELOC/doc/latex/first-latex-doc/latex-second-a.png + RELOC/doc/latex/first-latex-doc/latex-second-a.tex + RELOC/doc/latex/first-latex-doc/latex-second-b.png + RELOC/doc/latex/first-latex-doc/latex-second-b.tex + RELOC/doc/latex/first-latex-doc/latex-second-c.png + RELOC/doc/latex/first-latex-doc/latex-second-c.tex + 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-license pd +catalogue-topics tut-latex + +name firstaid +category Package +revision 58440 +catalogue latex-firstaid +shortdesc First aid for external LaTeX files and packages that need updating +relocated 1 +longdesc This package contains some first aid for LaTeX packages or +longdesc classes that require updates because of internal changes to the +longdesc LaTeX kernel that are not yet reflected in the package's or +longdesc class's code. The file latex2e-first-aid-for-external-files.ltx +longdesc provided by this package is meant to be loaded during format +longdesc generation and not by the user. +containersize 2160 +containerchecksum 31e74a644d0b2a9b0f659207195cc39b7b0cdfd44c878caf541869a114ca90990637c04b3da74f9f49e2dbcb30863030fe901a67b200d1aa4a9892ff41defe15 +doccontainersize 205324 +doccontainerchecksum 368484714a5b45d47fe6b86c8025175d034842cc6e64665f574040bdd89cb42b02a739edca6806d3585a484cf55ff083616c0a210a9ca65916477ddbd4678b5f +docfiles size=53 + RELOC/doc/latex/firstaid/README.md details="Readme" + RELOC/doc/latex/firstaid/changes.txt + RELOC/doc/latex/firstaid/latex2e-first-aid-for-external-files.pdf details="Package documentation" +srccontainersize 5884 +srccontainerchecksum 9c1c4ad607d2c9896504637c8efd0f7dcbb1916e7f671ead11552fbb6bcf0f8af216dc40a0ac771d3e804a02f65e12067082d001f96506d8d5435d93ff513ba9 +srcfiles size=5 + RELOC/source/latex/firstaid/firstaid.ins + RELOC/source/latex/firstaid/latex2e-first-aid-for-external-files.dtx +runfiles size=2 + RELOC/tex/latex/firstaid/filehook-ltx.sty + RELOC/tex/latex/firstaid/latex2e-first-aid-for-external-files.ltx +catalogue-contact-home https://www.latex-project.org +catalogue-ctan /macros/latex/required/firstaid +catalogue-license lppl1.3c +catalogue-topics format bugfix +catalogue-version 1.0j + +name fitbox +category Package +revision 50088 +shortdesc Fit graphics on a page +relocated 1 +longdesc The package allows a box (usually an \includegraphics box) to +longdesc fit on the page. It scales the box to the maximal allowed size +longdesc within the user-set limits. If there is not enough space on the +longdesc page, the box is moved to the next one. +containersize 2228 +containerchecksum 5244567062493fcb5300048be6786f1ac48c72c363220b894a2695e78646f461584e189f227d04f55e9127a66ab966dc04cbd762fd08277774fe1c0fcc7d3c96 +doccontainersize 496576 +doccontainerchecksum 71d77dd1879a2b9b20f9c4934af8bd696de567b5c0187e7a5bccc9e225fec5793bff6bc670ce0bbe1065cb67de73f518942ae48aa0a27e46c2aa47dcad6856e8 +docfiles size=144 + RELOC/doc/latex/fitbox/README details="Readme" + RELOC/doc/latex/fitbox/fitbox.bib + RELOC/doc/latex/fitbox/fitbox.pdf details="Package documentation" + RELOC/doc/latex/fitbox/napoleon.png + RELOC/doc/latex/fitbox/sample-subfigure.pdf + RELOC/doc/latex/fitbox/sample-subfigure.tex + RELOC/doc/latex/fitbox/sample.pdf + RELOC/doc/latex/fitbox/sample.tex + RELOC/doc/latex/fitbox/vitruvian.jpg +srccontainersize 5812 +srccontainerchecksum 406ae04d838114e9cb7205c9e704b95e8ea8c4747827bb82fbc53891ca552042e5742f7e524361f2a797a77d8b7286dca3512ce7099ec8fa23101668d4bad5b2 +srcfiles size=7 + RELOC/source/latex/fitbox/Makefile + RELOC/source/latex/fitbox/fitbox.dtx + RELOC/source/latex/fitbox/fitbox.ins +runfiles size=2 + RELOC/tex/latex/fitbox/fitbox.sty +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-license lppl1.3 +catalogue-topics boxing +catalogue-version 1.02 + +name fithesis +category Package +revision 54483 +shortdesc Thesis class and template for Masaryk University (Brno, Czech Republic) +relocated 1 +longdesc A document class for the typesetting of theses at the Masaryk +longdesc University (Brno, Czech Republic). The class has been designed +longdesc for easy extensibility by style and locale files of other +longdesc academic institutions. +containersize 617716 +containerchecksum fda3b077f21307d883b6808fe69b7dafc7d9f44c60ce48bcf10ef14e22c03b4c91b73b9fb626a2c1a8171aa3b66defcc926705c70ab5a264c8c64b847c66ab06 +doccontainersize 2530820 +doccontainerchecksum 7445bd2d5065db20e62a4454fa4f7bd39bbf7df0681ca5e73af06e21b9121b72c32ce8903f453f5c24e7c82f987726f8c9d3a54f40b44f9e6c5c6e419be9cdbc +docfiles size=1306 + RELOC/doc/latex/fithesis/README.md details="Readme" + RELOC/doc/latex/fithesis/fithesis.pdf details="Package documentation" + RELOC/doc/latex/fithesis/guide/mu/econ.pdf + RELOC/doc/latex/fithesis/guide/mu/fi.pdf + RELOC/doc/latex/fithesis/guide/mu/fsps.pdf + RELOC/doc/latex/fithesis/guide/mu/fss.pdf + RELOC/doc/latex/fithesis/guide/mu/law.pdf + RELOC/doc/latex/fithesis/guide/mu/med.pdf + RELOC/doc/latex/fithesis/guide/mu/ped.pdf + RELOC/doc/latex/fithesis/guide/mu/phil.pdf + RELOC/doc/latex/fithesis/guide/mu/sci.pdf +srccontainersize 44104 +srccontainerchecksum 087fd64585722b8fac089f7e7a07bd500f712a6fd8044164f1b26293cf18ee58c4f32f48072d08fab3c93af7d85aa5ac40ef7c86ab5c5081a862247675f7a02b +srcfiles size=89 + RELOC/source/latex/fithesis/LICENSE.tex + RELOC/source/latex/fithesis/VERSION.tex + RELOC/source/latex/fithesis/fithesis.dtx + RELOC/source/latex/fithesis/fithesis.ins + RELOC/source/latex/fithesis/locale/czech.dtx + RELOC/source/latex/fithesis/locale/czech.ins + RELOC/source/latex/fithesis/locale/english.dtx + RELOC/source/latex/fithesis/locale/english.ins + RELOC/source/latex/fithesis/locale/slovak.dtx + RELOC/source/latex/fithesis/locale/slovak.ins + RELOC/source/latex/fithesis/style/base.dtx + RELOC/source/latex/fithesis/style/base.ins + RELOC/source/latex/fithesis/style/mu/base.dtx + RELOC/source/latex/fithesis/style/mu/base.ins + RELOC/source/latex/fithesis/style/mu/econ.dtx + RELOC/source/latex/fithesis/style/mu/econ.ins + RELOC/source/latex/fithesis/style/mu/fi.dtx + RELOC/source/latex/fithesis/style/mu/fi.ins + RELOC/source/latex/fithesis/style/mu/fsps.dtx + RELOC/source/latex/fithesis/style/mu/fsps.ins + RELOC/source/latex/fithesis/style/mu/fss.dtx + RELOC/source/latex/fithesis/style/mu/fss.ins + RELOC/source/latex/fithesis/style/mu/law.dtx + RELOC/source/latex/fithesis/style/mu/law.ins + RELOC/source/latex/fithesis/style/mu/med.dtx + RELOC/source/latex/fithesis/style/mu/med.ins + RELOC/source/latex/fithesis/style/mu/ped.dtx + RELOC/source/latex/fithesis/style/mu/ped.ins + RELOC/source/latex/fithesis/style/mu/phil.dtx + RELOC/source/latex/fithesis/style/mu/phil.ins + RELOC/source/latex/fithesis/style/mu/sci.dtx + RELOC/source/latex/fithesis/style/mu/sci.ins +runfiles size=597 + RELOC/tex/latex/fithesis/fithesis.cls + RELOC/tex/latex/fithesis/fithesis2.cls + RELOC/tex/latex/fithesis/fithesis3.cls + RELOC/tex/latex/fithesis/locale/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/fithesis-english.def + RELOC/tex/latex/fithesis/locale/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/econ/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/econ/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/econ/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fi/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fi/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fi/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fsps/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fsps/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fsps/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fss/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fss/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fss/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/law/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/law/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/law/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/med/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/med/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/med/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/ped/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/ped/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/ped/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/phil/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/phil/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/phil/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/sci/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/sci/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/sci/fithesis-slovak.def + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-base.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color_.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color__.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci.pdf + RELOC/tex/latex/fithesis/style/fithesis-base.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-10.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-11.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-12.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-base.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-econ.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-fi.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-fsps.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-fss.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-law.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-med.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-ped.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-phil.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-sci.sty +catalogue-contact-announce https://github.com/Witiko/fithesis3/releases +catalogue-contact-bugs https://github.com/Witiko/fithesis3/issues +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-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 0.3.51 + +name fix2col +category Package +revision 38770 +shortdesc Fix miscellaneous two column mode features +relocated 1 +longdesc OBSOLETE: do not use in new documents. This package will do +longdesc nothing in LaTeX formats after 2015/01/01 as the fixes that it +longdesc implements were incorporated into the fixltx2e package, which +longdesc is itself obsolete as since the 2015/01/01 release these fixes +longdesc are in the LaTeX format itself. Fix mark handling so that +longdesc \firstmark is taken from the first column if that column has +longdesc any marks at all; keep two column floats like figure* in +longdesc sequence with single column floats like figure. +containersize 2684 +containerchecksum b3f096a64fcea6c6b2864d4e8a86733afb852f3decae4704e6c275c41e1295622f1eb1c8db0e0d33a29e369a9b757495477c9ebcf82ae0003c4316967c03f0dc +doccontainersize 212644 +doccontainerchecksum 302ffac957bc37305fc5b6f458c4b7dcb06b65408131bcf64c0132638a110813eb6c748270ead340f3d864b927aa7bbfe0a16c3722cbd8334b1d8ba8ca72e7d3 +docfiles size=53 + RELOC/doc/latex/fix2col/README details="Readme" + RELOC/doc/latex/fix2col/fix2col.pdf details="Package documentation" +srccontainersize 6376 +srccontainerchecksum af17350815d50b2f880cfdc9cdefe457e541041e311e886a87fe45e53e7e48ed12ad83c27b6cddb0b3f719469d6c0e379a68860d13892879cb89678f51607e97 +srcfiles size=6 + RELOC/source/latex/fix2col/fix2col.dtx + RELOC/source/latex/fix2col/fix2col.ins +runfiles size=2 + RELOC/tex/latex/fix2col/fix2col.sty +catalogue-ctan /macros/latex/contrib/fix2col +catalogue-license lppl +catalogue-topics typesetting macro-supp +catalogue-version 0.04 + +name fixcmex +category Package +revision 51825 +shortdesc Fully scalable version of Computer Modern Math Extension font +relocated 1 +longdesc This package provides a fully scalable version of the Computer +longdesc Modern Math Extension font for curing sizing problems mainly +longdesc with lmodern. It can be used when the main font of the document +longdesc is Computer Modern (or European Modern, if T1 encoding is +longdesc selected), or Latin Modern. It redefines the math extension +longdesc font so that it becomes arbitrarily scalable, using the optical +longdesc size fonts provided by the AMS together with the original +longdesc cmex10 font. +containersize 1400 +containerchecksum fc3a1ba6c5516378182373b89b71ddaf22e713c0be959e8d5afa1cd57c50f363e68669049750f286142499961c56f6bacd60c63b0211d5e6ba01d7f25d58f759 +doccontainersize 202740 +doccontainerchecksum e6f65b38a4baddf6c1840b0bb18464b6c94f97163672b67a87c693af19030bc3ab2db7607646d73f8f684e08258906da2380e7b1637ba85f80c49cf7d5045bc5 +docfiles size=51 + RELOC/doc/latex/fixcmex/README details="Readme" + RELOC/doc/latex/fixcmex/fixcmex.pdf details="Package documentation" +srccontainersize 2868 +srccontainerchecksum 2967a93b0d041ff868b4f894a2b9e1d59d445e601af982d576a8ddcaacb00d4688eccdfd56d51beffd19c90903fb15fbcfdb0cba08983e78636757daba176cc5 +srcfiles size=3 + RELOC/source/latex/fixcmex/fixcmex.dtx + RELOC/source/latex/fixcmex/fixcmex.ins +runfiles size=1 + RELOC/tex/latex/fixcmex/fixcmex.sty +catalogue-ctan /macros/latex/contrib/fixcmex +catalogue-license lppl1.3c +catalogue-topics font-supp-maths +catalogue-version 1.1 + +name fixfoot +category Package +revision 17131 +shortdesc Multiple use of the same footnote text +relocated 1 +longdesc Provides a \DeclareFixedFootnote command to provide a single +longdesc command for a frequently-used footnote. The package ensures +longdesc that only one instance of the footnote text appears on each +longdesc page (LaTeX needs to be run several times to achieve this). +containersize 3280 +containerchecksum 52c25b4d5bb9e34fe3f8d2b122e68352ad572ff9ecf1011f3e9fbd67319d0781a48ca08ab03ad3201f1d1d2bd6d4e35fa3818e695a741a8ab440ce81f7724039 +doccontainersize 50024 +doccontainerchecksum bfe0e39165be8f9a56e2cbd4b91c0b7b7448d0b9d8a4a0b62d6c0d45e542a9964af3d34233ec777b69f0666a0945513a8475629f0b084f72a0b349682e8ad6f4 +docfiles size=17 + RELOC/doc/latex/fixfoot/README details="Readme" + RELOC/doc/latex/fixfoot/fixfoot.pdf details="Package documentation" + RELOC/doc/latex/fixfoot/fixfoot.tex + RELOC/doc/latex/fixfoot/testfix.tex +runfiles size=2 + RELOC/tex/latex/fixfoot/fixfoot.sty +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-license lppl +catalogue-topics footnote +catalogue-version 0.3a + +name fixjfm +category Package +revision 47113 +shortdesc Fix JFM (for *pTeX) +relocated 1 +longdesc This package fixes several bugs in the JFM format. Both LaTeX +longdesc and plain TeX are supported. +containersize 2400 +containerchecksum 5ed8db53c1757c4ab6f14e763f9e58a76e5f8c594c30c1d1fd4d7c9a49d65da90d72650c88375806997d0f268b1a75215bf6969f45e45ef3a2127c422415bf16 +doccontainersize 286260 +doccontainerchecksum 5de4126f1f5215fc8132e0449048bd66dc73d8a5cff460d7873205f3cb55c2f8069870d9ffc794d5c173a52acccb5bdbe45b34189fbdd40509bfcdeed804153c +docfiles size=74 + RELOC/doc/generic/fixjfm/README details="Readme" + RELOC/doc/generic/fixjfm/fixjfm-doc.pdf details="Package documentation" + RELOC/doc/generic/fixjfm/fixjfm-doc.tex +runfiles size=3 + RELOC/tex/generic/fixjfm/fixjfm.sty +catalogue-also bxjaprnind +catalogue-contact-repository https://github.com/Man-Ting-Fang/fixjfm +catalogue-ctan /macros/generic/fixjfm +catalogue-license knuth +catalogue-topics macro-supp chinese japanese +catalogue-version 0.8 + +name fixlatvian +category Package +revision 21631 +shortdesc Improve Latvian language support in XeLaTeX +relocated 1 +longdesc The package offers improvement of the Latvian language support +longdesc in polyglossia, in particular in the area of the standard +longdesc classes. +containersize 2952 +containerchecksum 48d39745498c187d23c62191d7da6341ecc13d6c43ac97deebf453046e78a26d221b5c7b7ed22aa8909476a754e877de26c20391bccb5cddb2db1fa7b238d643 +doccontainersize 113476 +doccontainerchecksum 07dc4fa87b8564c3ff3144936ae4374e0bc7cf37a5a3e4b5d0724681859a41d30d714e96742253bb9a269116dd32d2ab0c1e5e1965242e88ea12fdcd224ace31 +docfiles size=43 + RELOC/doc/xelatex/fixlatvian/Makefile + RELOC/doc/xelatex/fixlatvian/README details="Readme" + RELOC/doc/xelatex/fixlatvian/fixlatvian.pdf details="Package documentation (Latvian)" language="lv" +srccontainersize 9240 +srccontainerchecksum 04903bf5ba774034c0b3dbec7c7d37ca5a802b3d104670d259667f8a965da26e7e954ce9272e14b6bab058a7e6a4b8ad42b710e22f85f2d0320a7827b2c7e173 +srcfiles size=8 + RELOC/source/xelatex/fixlatvian/fixlatvian.dtx + RELOC/source/xelatex/fixlatvian/fixlatvian.ins +runfiles size=3 + RELOC/makeindex/fixlatvian/lv.ist + RELOC/tex/xelatex/fixlatvian/fixlatvian.sty +catalogue-ctan /macros/xetex/latex/fixlatvian +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 1a + +name fixltxhyph +category Package +revision 25832 +shortdesc Allow hyphenation of partially-emphasised substrings +relocated 1 +longdesc The package fixes the problem of TeX failing to hyphenate +longdesc letter strings that seem (to TeX) to be words, but which are +longdesc followed by an apostrophe and then an emphasis command. The +longdesc cause of the problem is not the apostrophe, but the font change +longdesc in the middle of the string. The problem arises in Catalan, +longdesc French, Italian and Romansh. +containersize 1468 +containerchecksum df41497da718b157073b6ad2a4b9cea3f9ee0a0824698f47d4441b76261efb21271f1605f69b1c0de8a99e3e636587a25b4efdb4d578683ef0c89d7f849d2c8e +doccontainersize 398240 +doccontainerchecksum 37d6b9903a56d33577c8aaabd40de592bd78dc6b2f5a2c82457f6d5b499d1d6f9a9bdaff29bb9f9511365d32e160f92c85c6c0d93ed065fdd1688aaeae9ab246 +docfiles size=98 + RELOC/doc/latex/fixltxhyph/README details="Readme" + RELOC/doc/latex/fixltxhyph/fixltxhyph.pdf details="Package documentation" +srccontainersize 6744 +srccontainerchecksum 321e52dbc69bceea16f03d5d280ae10f497278876cdf3b7f64cbfb6f31993c18afc5bf4c38f424c9a84ffa55b235b73b4daf7d68dfd115c31dc3a237a6b64eac +srcfiles size=5 + RELOC/source/latex/fixltxhyph/fixltxhyph.dtx +runfiles size=1 + RELOC/tex/latex/fixltxhyph/fixltxhyph.sty +catalogue-ctan /macros/latex/contrib/fixltxhyph +catalogue-license lppl1.3 +catalogue-topics catalan french italian +catalogue-version 0.4 + +name fixme +category Package +revision 49591 +shortdesc Collaborative annotation tool for LaTeX +relocated 1 +longdesc FiXme is a collaborative annotation tool for LaTeX documents. +longdesc Annotating a document here refers to inserting meta-notes, that +longdesc is, notes that do not belong to the document itself, but rather +longdesc to its development or reviewing process. Such notes may involve +longdesc things of different importance levels, ranging from simple "fix +longdesc the spelling" flags to critical "this paragraph is a lie" +longdesc mentions. Annotations like this should be visible during the +longdesc development or reviewing phase, but should normally disappear +longdesc in the final version of the document. FiXme is designed to ease +longdesc and automate the process of managing collaborative annotations, +longdesc by offering a set of predefined note levels and layouts, the +longdesc possibility to register multiple authors, to reference +longdesc annotations by listing and indexing etc. FiXme is extensible, +longdesc giving you the possibility to create new layouts or even +longdesc complete "themes", and also comes with support for AUCTeX. +containersize 8676 +containerchecksum fbfc3a79dbaed48f79dfd59efba58eb3d6c4e3c3f6716b0910cc0ee7e6b0913f345f4a05bcbc5d9943437d072cf3008615ab573725c4e7b4d7d716bd90dd8d07 +doccontainersize 351972 +doccontainerchecksum 78f64f31246acc6c153c0f0ec618a3a1c473ea3a5cce47af57ee65603d2064b64a3a506cd18332f1686b41768dcfdb10a9f9cc000dbe5cb476c8c4c61283dae9 +docfiles size=108 + RELOC/doc/latex/fixme/NEWS + RELOC/doc/latex/fixme/README.md details="Package Readme" + RELOC/doc/latex/fixme/THANKS + RELOC/doc/latex/fixme/fixme.el + RELOC/doc/latex/fixme/fixme.pdf details="Package documentation" + RELOC/doc/latex/fixme/header.inc +srccontainersize 35036 +srccontainerchecksum f5c1f64772f76f43fc64e1395804f155587d677356bdebb6bc2e3bf6961b38004463e8e83b2c3b5406e32f329c2fc84083e0f0db90875fa55319f85cfe4223c5 +srcfiles size=44 + RELOC/source/latex/fixme/fixme.dtx + RELOC/source/latex/fixme/fixme.ins +runfiles size=24 + RELOC/tex/latex/fixme/fixme.sty + RELOC/tex/latex/fixme/layouts/env/fxenvlayoutcolor.sty + RELOC/tex/latex/fixme/layouts/env/fxenvlayoutcolorsig.sty + RELOC/tex/latex/fixme/layouts/fxlayoutmarginnote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcnote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcsigmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcsignote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfnote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfsigmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfsignote.sty + RELOC/tex/latex/fixme/layouts/target/fxtargetlayoutchangebar.sty + RELOC/tex/latex/fixme/layouts/target/fxtargetlayoutcolor.sty + RELOC/tex/latex/fixme/layouts/target/fxtargetlayoutcolorcb.sty + RELOC/tex/latex/fixme/themes/fxthemecolor.sty + RELOC/tex/latex/fixme/themes/fxthemecolorsig.sty + RELOC/tex/latex/fixme/themes/fxthemesignature.sty +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-license lppl1.3 +catalogue-topics editorial +catalogue-version 4.5 + +name fixmetodonotes +category Package +revision 30168 +shortdesc Add notes on document development +relocated 1 +longdesc The package provides tools to highlight FIXME and TODO +longdesc annotations. The command \listofnotes prints a list of +longdesc outstanding notes, with links to the pages on which they +longdesc appear. +containersize 1580 +containerchecksum d327d19ac0e9041da98458e9147b3d1a9c9182bfe5c893c03ab9ef42b9c8044314f4024503327594bef337c1af6aad0b4f2046ea2d6a433947c6c45ebdf8838b +doccontainersize 4096 +doccontainerchecksum 7d7f8b049feb8e70c5d1ab0c71147f1f398b098f9c961267c3e90dc5e9ea9a8317361a0dacd8fe581e17cd85669bd39e83a1391641d353b01265a6195af33714 +docfiles size=3 + RELOC/doc/latex/fixmetodonotes/LICENSE + RELOC/doc/latex/fixmetodonotes/README details="Readme" +srccontainersize 1408 +srccontainerchecksum 1a4028aca8ae5fd53dd8068d17a5331ad9011d72d668f9ca8242862599edf7709e84a8848bad35fafd790ec756c972488ac8db53a240426dc5dc95dfe18385fb +srcfiles size=2 + RELOC/source/latex/fixmetodonotes/fixmetodonotes.dtx + RELOC/source/latex/fixmetodonotes/fixmetodonotes.ins +runfiles size=1 + RELOC/tex/latex/fixmetodonotes/fixmetodonotes.sty +catalogue-also fixme todonotes +catalogue-ctan /macros/latex/contrib/fixmetodonotes +catalogue-license pd +catalogue-topics notes editorial +catalogue-version 0.2.2 + +name fixpdfmag +category Package +revision 15878 +shortdesc Fix magnification in pdfTeX +relocated 1 +longdesc A recent change to pdfTeX has caused magnification to apply to +longdesc page dimensions. This small package changes the values set in +longdesc the page dimension variables from pt to truept, thus evading +longdesc the effects of \mag. +containersize 1160 +containerchecksum 733995ec82df92bea5a674fc25a3a6af2102739c3c73eeed7c9f40cd54bc4c5d65cafb35366b70641ff0661dc83700071054f7af274487474c3893ce5a44c9ad +runfiles size=1 + RELOC/tex/plain/fixpdfmag/fixpdfmag.tex +catalogue-ctan /macros/plain/contrib/misc/fixpdfmag.tex +catalogue-license pd +catalogue-topics geometry + +name fiziko +category Package +revision 54512 +shortdesc A MetaPost library for physics textbook illustrations +relocated 1 +longdesc This MetaPost library was initially written to automate some +longdesc elements of black and white illustrations for a physics +longdesc textbook. It provides functions to draw things like lines of +longdesc variable width, shaded spheres, and tubes of different kinds, +longdesc which can be used to produce images of a variety of objects. +longdesc The library also contains functions to draw some objects +longdesc constructed from these primitives. +containersize 20888 +containerchecksum d76d828bbb7d54596c7e3127d2d2c92f9da7572892d5b0a5b139536e9d765875555bb831aeafc67e56e4f2234462aed14aaabfff2685b30bb53bce89cadf0e90 +doccontainersize 4136056 +doccontainerchecksum c04516bcdaa607d01a558f1f30729792365c9aeb4bbd116f4523f398c261a6fbc01eaeb64b5fa6ba008c38a8f1f2e4c9fae8de40bb4255e35bc80059cd50d23a +docfiles size=1123 + RELOC/doc/metapost/fiziko/README details="Readme" + RELOC/doc/metapost/fiziko/fiziko.pdf details="Package documentation" + RELOC/doc/metapost/fiziko/fiziko.tex +runfiles size=23 + RELOC/metapost/fiziko/fiziko.mp +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-license gpl3+ cc-by-sa-4 +catalogue-topics physics graphics graphics-mpost +catalogue-version 0.1.3 + +name fjodor +category Package +revision 53207 +shortdesc A selection of layout styles +relocated 1 +longdesc The package provides several page layouts, selectable by +longdesc package options. +containersize 1276 +containerchecksum adf4d23888c6c778ada6d7cf930d4aba68b1cc20c64c571c17017b11c115452e5a4eb766d03ca03f27f9de46a5027590cd806b17fe94dbc4c5026948d3ec74d5 +doccontainersize 458384 +doccontainerchecksum a0a0e01d4d40f1b847f40401d20604bafd2723097e72c208df2a5acb30f57042b35df4cabfc93108d4278f5725dd4b50539f7e17b7c51adf875898071a368fbd +docfiles size=126 + RELOC/doc/latex/fjodor/Changes.txt + RELOC/doc/latex/fjodor/README.txt details="Readme" + RELOC/doc/latex/fjodor/dostojevski.pdf + RELOC/doc/latex/fjodor/dostojevski.tex + RELOC/doc/latex/fjodor/fjodor.pdf details="Package documentation" + RELOC/doc/latex/fjodor/fjodor.tex + RELOC/doc/latex/fjodor/srbook-mem.sty +runfiles size=2 + RELOC/tex/latex/fjodor/fjodor.sty +catalogue-ctan /macros/latex/contrib/fjodor +catalogue-license gpl +catalogue-topics geometry + +name flabels +category Package +revision 17272 +shortdesc Labels for files and folders +relocated 1 +longdesc Macros for typesetting pretty labels (optionally colored) for +longdesc the back of files or binders (currently only the special A4 +longdesc "Leitz-Ordner" ring binder is supported). +containersize 2328 +containerchecksum b05d66f1181eb9d7eb80636b69ea3af7a29ae7011f6888438cf80a7fa6fde44666f9fa7ee71620055f6882e73b6f5e211a2a65ca003d903cb26cc4f9571257d9 +doccontainersize 340004 +doccontainerchecksum cf9b774ef4e1336a123d48b3797d8122c5b9128324a9f6c0c1497194e8d3a3d9ee46a5a58470074c0dbc02f8c0aaeb1da3b4d5683ba9faf6e479a6790bc599cf +docfiles size=93 + RELOC/doc/latex/flabels/README details="Readme" + RELOC/doc/latex/flabels/flabels.pdf details="Package documentation" + RELOC/doc/latex/flabels/makedoc + RELOC/doc/latex/flabels/makedoc-patched + RELOC/doc/latex/flabels/makedoc.bat +srccontainersize 11680 +srccontainerchecksum 26b2a3e7fbdfe3523cad96880dc6b168cf633a115f6b8d794709514013a79eb2ab6d1545769b74236248b73c3b08d5b52e02fdac9cdb420e3a4f1ac5cad55d32 +srcfiles size=11 + RELOC/source/latex/flabels/flabels.dtx + RELOC/source/latex/flabels/flabels.ins +runfiles size=2 + RELOC/tex/latex/flabels/flabels.sty +catalogue-ctan /macros/latex/contrib/flabels +catalogue-license lppl +catalogue-topics labels +catalogue-version 1.0 + +name flacards +category Package +revision 19440 +shortdesc Generate flashcards for printing +relocated 1 +longdesc The flacards class provides an easy interface to produce +longdesc flashcards. It will print several cards per page, on both sides +longdesc of the paper. +containersize 2196 +containerchecksum 45cf4fc3f4678a5242873f80ff1ab328e7675107d14052be90308d94d44a931ba8b2cf3eec67e7456a21168aba168fe848979a8d45ef07bfc62613ad9174488d +doccontainersize 27864 +doccontainerchecksum 087d2c5500b5ab51280bf3f57362f00723856b041f520d41849d21043859bebc106ff9af33dcbf044aabd838f68d1165f74645360247de2c3feb9a8493ecc441 +docfiles size=17 + RELOC/doc/latex/flacards/COPYING + RELOC/doc/latex/flacards/README details="Readme" + RELOC/doc/latex/flacards/README.TEXLIVE + RELOC/doc/latex/flacards/changelog.txt + RELOC/doc/latex/flacards/flacards_ex.pdf + RELOC/doc/latex/flacards/flacards_ex.tex + RELOC/doc/latex/flacards/flacards_ex1.tex + RELOC/doc/latex/flacards/flacards_ex2.tex +runfiles size=2 + RELOC/tex/latex/flacards/flacards.cls +catalogue-also flashcard flashcards +catalogue-ctan /macros/latex/contrib/flacards +catalogue-license gpl +catalogue-topics card-flash class +catalogue-version 0.1.1b + +name flagderiv +category Package +revision 15878 +shortdesc Flag style derivation package +relocated 1 +longdesc The flagderiv package is used to create mathematical +longdesc derivations using the flag/flagpole notation. The package +longdesc features an intuitive command syntax, opening and closing +longdesc multiple flagpoles, different comment styles, customizable +longdesc symbols and label namespaces. +containersize 2080 +containerchecksum a7618ffc60c548fb98a581324901af09defd9226a655163d967e251b090b6ea74d91ec10bbe1e5d685a83d147818ecbf8b66d84c972cacaf3e270baf39293200 +doccontainersize 183708 +doccontainerchecksum 8c9731aec45eb594b95e1c89a1967f169bf8394664977059af0fd77aa40ebf3769200925382694e221a32ced470161f505420539b5e3f7f00be4688e308ff54a +docfiles size=53 + RELOC/doc/latex/flagderiv/README + RELOC/doc/latex/flagderiv/flagderiv.pdf details="Package documentation" +srccontainersize 12256 +srccontainerchecksum c81038f892b37dc2759251cc14d8bfe11d0aff056b95204cfe1a4434ef1bdc6fb3c035edca0e01282ca019193871dd6044a8b9b64f3b6051c24f041700f2b71e +srcfiles size=14 + RELOC/source/latex/flagderiv/flagderiv.dtx + RELOC/source/latex/flagderiv/flagderiv.ins +runfiles size=2 + RELOC/tex/latex/flagderiv/flagderiv.sty +catalogue-ctan /macros/latex/contrib/flagderiv +catalogue-license gpl +catalogue-topics maths +catalogue-version 0.10 + +name flashcards +category Package +revision 19667 +shortdesc A class for typesetting flashcards +relocated 1 +longdesc The FlashCards class provides for the typesetting of flash +longdesc cards. By flash card, we mean a two sided card which has a +longdesc prompt or a question on one side and the response or the answer +longdesc on the flip (back) side. Flash cards come in many sizes +longdesc depending on the nature of the information they contain. +containersize 3512 +containerchecksum ea1d530296c2b3e11645bbf09b4776394cf1725db5f30f23297818fa68b5a8d1d860d5873755d1be010c8d7a3d01567d878f3a12490fced35f6f825034f1c9f6 +doccontainersize 132668 +doccontainerchecksum f42cef1b5a093861818d03f2df9cc5029546a1bb9b01a4349b815fa26d7320bbb9d596adceadd0583dfee7bf7bf8a011c8296ec06058717a61ddce10baf19e53 +docfiles size=43 + RELOC/doc/latex/flashcards/COPYING + RELOC/doc/latex/flashcards/README details="Package Readme" + RELOC/doc/latex/flashcards/flashcards.pdf details="Package documentation" + RELOC/doc/latex/flashcards/samplecards.tex +srccontainersize 7560 +srccontainerchecksum c9d90cbb0c0fa854a6d187ffafb20cefad24549083c166a5088dfa05c3240869996bd16097ddf74adcdd658ab953d39021c896eda94dd7ad426e5bd972d78c73 +srcfiles size=8 + RELOC/source/latex/flashcards/flashcards.dtx + RELOC/source/latex/flashcards/flashcards.ins +runfiles size=6 + RELOC/tex/latex/flashcards/avery5371.cfg + RELOC/tex/latex/flashcards/avery5388.cfg + RELOC/tex/latex/flashcards/flashcards.cls +catalogue-also flashcard ecards +catalogue-ctan /macros/latex/contrib/flashcards +catalogue-license gpl +catalogue-topics card-flash +catalogue-version 1.0.1 + +name flashmovie +category Package +revision 25768 +shortdesc Directly embed flash movies into PDF files +relocated 1 +longdesc The package allows direct embedding of flash movies into PDF +longdesc files. It is designed for use with pdfLaTeX. The package takes +longdesc advantage of the embedded Adobe Flash player in Adobe Reader 9; +longdesc the reader is invoked with the 'rich media annotation' feature, +longdesc described in "Adobe Supplement to the ISO 32000 BaseVersion: +longdesc 1.7 ExtensionLevel: 3". This method of embedding movies is +longdesc attractive since it removes all platform dependencies; however, +longdesc the user is required to use Acrobat 9. +containersize 19612 +containerchecksum 99ae914e1fa627f462be84f7bed923c638bf493ca183f010bdeb5d607ab00abaff7a1fe3d0f8613e6fb9df7cd5047b99e99a5da18470df25e7507259a441e188 +doccontainersize 1323548 +doccontainerchecksum 016331e7328732f5549487f8b2edbeabc9548eb81201584d3d3f7e0ff41a9a962761a8af867dbee8951bf4e99ea4eeecec7e9230868c23abc95260f288ca7958 +docfiles size=345 + RELOC/doc/latex/flashmovie/README details="Readme" + RELOC/doc/latex/flashmovie/flv-player-license/MPL-1.1 + RELOC/doc/latex/flashmovie/flv-player-license/license.txt + RELOC/doc/latex/flashmovie/test-beamer-0.pdf + RELOC/doc/latex/flashmovie/test-beamer-0.tex + RELOC/doc/latex/flashmovie/test-beamer-1.tex + RELOC/doc/latex/flashmovie/test-flv.pdf + RELOC/doc/latex/flashmovie/test-flv.tex + RELOC/doc/latex/flashmovie/test.tex +runfiles size=12 + RELOC/tex/latex/flashmovie/flashmovie.sty + RELOC/tex/latex/flashmovie/player_flv_maxi.swf +catalogue-also movie15 +catalogue-ctan /macros/latex/contrib/flashmovie +catalogue-license lppl1.3 +catalogue-topics graphics-motion +catalogue-version 0.4 + +name flipbook +category Package +revision 25584 +shortdesc Typeset flipbook animations, in the corners of documents +relocated 1 +longdesc The package provides techniques for adding flip book animations +longdesc in the corner of your LaTeX documents (using images or ASCII +longdesc art). Animations are defined as a set of numbered files (e.g., +longdesc "im1.pdf", "im2.pdf", "im3.pdf", ...). The package relies on +longdesc fancyhdr to control the corners. +containersize 1792 +containerchecksum 8e3140fb417115ada958bf6dab1a22b39779926b47938bb49cf86499d64ae16d321e6e6bbc8482ee7e6a2d79d8341a227785ecf04c66a15f7e5c0ccaea016d21 +doccontainersize 348720 +doccontainerchecksum a5f6aa188e7a0aff29d4e693f0f8e52512838278e12d13c29706c7bd5c1c1c2a8d70beb619195d8572ca5a3920205380d586d02580bc747acb8e3259c79c3fb0 +docfiles size=365 + RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im02.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im02.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im02.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im03.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im03.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im03.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im04.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im04.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im04.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im05.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im05.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im05.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im06.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im06.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im06.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/an2.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/an2.xcf + RELOC/doc/latex/flipbook/Images/Anims/an2/im0.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im0.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im00.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im01.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im01.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im02.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im02.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im03.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im03.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im04.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im04.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im05.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im05.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im06.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im06.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im07.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im07.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im08.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im08.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im09.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im09.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im1.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im1.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im13.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im13.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im13.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im14.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im14.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im14.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im15.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im15.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im15.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im16.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im16.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im16.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im2.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im2.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im3.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im3.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im4.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im4.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im5.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im5.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im6.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im6.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im7.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im7.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im8.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im8.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im9.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im9.pdf + RELOC/doc/latex/flipbook/Images/Anims/an3/an3.png + RELOC/doc/latex/flipbook/Images/Anims/an3/an3.pnm + RELOC/doc/latex/flipbook/Images/Anims/an3/an3.xcf + RELOC/doc/latex/flipbook/Images/Anims/an3/im1.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im10.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im11.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im12.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im13.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im14.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im15.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im16.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im17.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im18.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im19.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im2.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im20.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im21.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im22.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im23.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im24.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im25.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im26.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im27.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im28.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im29.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im3.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im30.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im31.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im32.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im33.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im34.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im35.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im36.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im37.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im38.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im39.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im4.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im40.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im41.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im42.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im43.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im44.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im45.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im46.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im5.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im6.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im7.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im8.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im9.png + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an0.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an1.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an2.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an3.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an4.tex + RELOC/doc/latex/flipbook/Makefile + RELOC/doc/latex/flipbook/README details="Readme" + RELOC/doc/latex/flipbook/flipbook-doc.pdf details="Package documentation" + RELOC/doc/latex/flipbook/flipbook-doc.tex + RELOC/doc/latex/flipbook/flipbook-ex.pdf + RELOC/doc/latex/flipbook/flipbook-ex.tex +runfiles size=2 + RELOC/tex/latex/flipbook/flipbook.sty +catalogue-ctan /macros/latex/contrib/flipbook +catalogue-license lppl +catalogue-topics graphics-motion graphics-use +catalogue-version 0.2 + +name flippdf +category Package +revision 56782 +shortdesc Horizontal flipping of pages with pdfLaTeX +relocated 1 +longdesc The package allows the production of a document with pages +longdesc "mirrored". This is sometimes required by publishers who want +longdesc camera-ready documents to be printed on transparent film (to be +longdesc viewed from the "wrong" side). The package only works with +longdesc pdfLaTeX or LuaLaTeX in PDF output mode. Package everypage is +longdesc required on LaTeX releases before Fall 2020. +containersize 1612 +containerchecksum 17773b1ba5f40d694cddb3d2e2742650bde889d53302e6fa6ef0686ea4cd3fe393ca2e5b31842e93e5588631ee53ebb668cb035b2843fc5bd57911167074edaf +doccontainersize 149840 +doccontainerchecksum d5191d079641c9a06336498c396cbcc7585c983924a646bcd3b26889ca51a08eb166ced560f45f834281fae9abaa47d02fdd4ddadd3348cef704dd9b818e7675 +docfiles size=40 + RELOC/doc/latex/flippdf/README.md details="Readme" + RELOC/doc/latex/flippdf/flippdf.pdf details="Package documentation" + RELOC/doc/latex/flippdf/test-flippdf-1.tex + RELOC/doc/latex/flippdf/test-flippdf-2.tex +srccontainersize 4788 +srccontainerchecksum 95e86fe1e8ce5cbba8745123dbf6c352545d0a75f3ce679e2cf132e46184efa28123f9f9ecf805939c10f59af5bbde84bd2a75eba8f0aae3628b41226059bdfd +srcfiles size=5 + RELOC/source/latex/flippdf/flippdf.dtx + RELOC/source/latex/flippdf/flippdf.ins +runfiles size=2 + RELOC/tex/latex/flippdf/flippdf-1x.sty + RELOC/tex/latex/flippdf/flippdf.sty +catalogue-contact-bugs https://github.com/callegar/LaTeX-flippdf/issues +catalogue-contact-repository https://github.com/callegar/LaTeX-flippdf +catalogue-ctan /macros/latex/contrib/flippdf +catalogue-license lppl1.3c +catalogue-topics book-pub +catalogue-version 2.0b + +name float +category Package +revision 15878 +shortdesc Improved interface for floating objects +relocated 1 +longdesc Improves the interface for defining floating objects such as +longdesc figures and tables. Introduces the boxed float, the ruled float +longdesc and the plaintop float. You can define your own floats and +longdesc improve the behaviour of the old ones. The package also +longdesc provides the H float modifier option of the obsolete here +longdesc package. You can select this as automatic default with +longdesc \floatplacement{figure}{H}. +containersize 2712 +containerchecksum 4a5270ca2945915464ba25b7996dfbd4771ca5f477e4bf248183bc340b7051c042d9566908acac881782af74a59154f4163bc7879a21e042e1c31d67237fc6a8 +doccontainersize 112620 +doccontainerchecksum 6f713c71361c1536bb086e7638b770ffe58e97aa01bd59bbab779f71cb485b9c06322d7d89e7d87cc8f77a0c7f18f4174fd4ec47b62556faa32d82fead0b7377 +docfiles size=35 + RELOC/doc/latex/float/README details="Package Readme" + RELOC/doc/latex/float/float.pdf details="Package documentation" +srccontainersize 12572 +srccontainerchecksum 9e577ba84dcac612e4105e597ca2385da3dafb39327189caf30e5728b85a380b5a90363b8bf9070a0464aca2130bcf9419d030bd6c39d51f9a17b0a7dd578d5f +srcfiles size=11 + RELOC/source/latex/float/float.dtx + RELOC/source/latex/float/float.ins +runfiles size=2 + RELOC/tex/latex/float/float.sty +catalogue-also rotfloat +catalogue-ctan /macros/latex/contrib/float +catalogue-license lppl +catalogue-topics float +catalogue-version 1.3d + +name floatflt +category Package +revision 25540 +shortdesc Wrap text around floats +relocated 1 +longdesc The package can float text around figures and tables which do +longdesc not span the full width of a page; it improves upon floatfig, +longdesc and allows tables/figures to be set left/right or alternating +longdesc on even/odd pages. +containersize 2828 +containerchecksum 1f7de96ac5e82cc4bbfab3fdb665a18d20413cceea097e1407dee2073109ee1b82d7d3ea82c80630d9aaf445f14a8497aee7e3824458dea8b40b270135052ef5 +doccontainersize 304824 +doccontainerchecksum 7ca1c6ed832bb3d697685cad5575e02b531c0469095468fd40eb3131d89b68dfa0fcb9c882965aa7a9cc9c60292f64bdbf6264d3d990bd697dc27b23a46fae47 +docfiles size=81 + RELOC/doc/latex/floatflt/README + RELOC/doc/latex/floatflt/floatexm.tex + RELOC/doc/latex/floatflt/floatfge.tex + RELOC/doc/latex/floatflt/floatfig.txt + RELOC/doc/latex/floatflt/floatflt.pdf details="Package documentation" +srccontainersize 18016 +srccontainerchecksum 6d243fd8c9a2fb7bbc242ececd19d94916de97fd3583095e8342d8e7c56decdcaceac8038eee9a774950d9261979150035e8c9175175ad7346b0eb1fbea6c5bb +srcfiles size=15 + RELOC/source/latex/floatflt/floatflt.dtx + RELOC/source/latex/floatflt/floatflt.ins +runfiles size=3 + RELOC/tex/latex/floatflt/floatflt.sty +catalogue-also wrapfig +catalogue-ctan /macros/latex/contrib/floatflt +catalogue-license lppl1.3 +catalogue-topics text-flow +catalogue-version 1.31 + +name floatrow +category Package +revision 15878 +shortdesc Modifying the layout of floats +relocated 1 +longdesc The floatrow package provides many ways to customize layouts of +longdesc floating environments and has code to cooperate with the +longdesc caption 3.x package. The package offers mechanisms to put +longdesc floats side by side, and to put the caption beside its float. +longdesc The floatrow settings could be expanded to the floats created +longdesc by packages rotating, wrapfig, subfig (in the case of rows of +longdesc subfloats), and longtable. +containersize 16088 +containerchecksum c650b5c856bd625ad192901f3c056171f790c549748d5de5675f14cedca5cf32931ece537ce2280c0e4895895a8eff0cf140c3408dffc2b081ebc8c62d2ae1e3 +doccontainersize 1216512 +doccontainerchecksum b721ebbf59ca3744f1834c130da1a859cd4a98e9f5f977f5d35eef77b420deee303c109439fa70f89757cb9f57114bc74c5d527cafacc1daf2125b975621b525 +docfiles size=590 + RELOC/doc/latex/floatrow/README details="Readme" + RELOC/doc/latex/floatrow/floatrow-rus.pdf details="Package documentation (Russian)" language="ru" + RELOC/doc/latex/floatrow/floatrow-rus.tex + RELOC/doc/latex/floatrow/floatrow.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/floatrow/fr-sample.tex + RELOC/doc/latex/floatrow/frsample01.tex + RELOC/doc/latex/floatrow/frsample02.tex + RELOC/doc/latex/floatrow/frsample03.tex + RELOC/doc/latex/floatrow/frsample04.tex + RELOC/doc/latex/floatrow/frsample05.tex + RELOC/doc/latex/floatrow/frsample06.tex + RELOC/doc/latex/floatrow/frsample07.tex + RELOC/doc/latex/floatrow/frsample10.tex + RELOC/doc/latex/floatrow/frsample11.tex + RELOC/doc/latex/floatrow/frsample12.tex + RELOC/doc/latex/floatrow/pictures.tex + RELOC/doc/latex/floatrow/sample-longtable-rus.tex + RELOC/doc/latex/floatrow/sample-longtable.tex +srccontainersize 92488 +srccontainerchecksum 033c5c65c9676054e209c64dd065f86631c9765b1582e4042e72bfd247a49602dd97ba4dcd5afa1fe2f7e3d252e4b6ef2ff1a2b00eec3156937fc214d7cf0c3f +srcfiles size=117 + RELOC/source/latex/floatrow/floatrow.dtx + RELOC/source/latex/floatrow/floatrow.ins +runfiles size=22 + RELOC/tex/latex/floatrow/floatpagestyle.sty + RELOC/tex/latex/floatrow/floatrow.sty + RELOC/tex/latex/floatrow/fr-fancy.sty + RELOC/tex/latex/floatrow/fr-longtable.sty + RELOC/tex/latex/floatrow/fr-subfig.sty + RELOC/tex/latex/floatrow/listpen.sty +catalogue-ctan /macros/latex/contrib/floatrow +catalogue-license lppl +catalogue-topics float +catalogue-version 0.3b + +name flowchart +category Package +revision 36572 +shortdesc Shapes for drawing flowcharts, using TikZ +relocated 1 +longdesc The package provides a set of 'traditional' flowchart element +longdesc shapes; the documentation shows how to build a flowchart from +longdesc these elements, using pgf/TikZ. The package also requires the +longdesc makeshape package. +containersize 2084 +containerchecksum 9adc1f823378fcfaed58e99727b68389b97bc489ba38995e5e7451608cb712dd7fe02b2686f692328b73d1bc8011131017b8edcebcda5e886f3bb4a0f6aed65a +doccontainersize 412796 +doccontainerchecksum 0bbc3f1f56f5adbabca07096804412b33e93669e20af345e57bc9ad42133ab629b9546887599b472dacc8ee43b9c395f8c2e58a288c487e78920be1db5a110aa +docfiles size=108 + RELOC/doc/latex/flowchart/README details="Readme" + RELOC/doc/latex/flowchart/flowchart.pdf details="Package documentation" +srccontainersize 9592 +srccontainerchecksum 5ea69b98cca431225564482ed0597be71fe45e9ed933f4417059f4cf16401ba82987f90617e57a5428a42d03c0877969579a2b976a2c48d439d0dab7af0a6179 +srcfiles size=13 + RELOC/source/latex/flowchart/flowchart.dtx + RELOC/source/latex/flowchart/flowchart.ins +runfiles size=3 + RELOC/tex/latex/flowchart/flowchart.sty +catalogue-also nassflow struktex +catalogue-ctan /graphics/pgf/contrib/flowchart +catalogue-license lppl1.3 +catalogue-topics diagram-flow pgf-tikz +catalogue-version 3.3 + +name flowfram +category Package +revision 35291 +shortdesc Create text frames for posters, brochures or magazines +relocated 1 +longdesc The flowfram package enables you to create frames in a document +longdesc such that the contents of the document environment flow from +longdesc one frame to the next in the order in which they were defined. +longdesc This is useful for creating posters or magazines, indeed any +longdesc form of document that does not conform to the standard one or +longdesc two column layout. +containersize 24376 +containerchecksum 880869c22914392c4ade9dddeaffb20d6c6edb6da78d30705d9f6aa1b1352ba2734565fa8c2a6851e81f1107573753748d3f4d208bbbc4c0dc443c066e912719 +doccontainersize 1763756 +doccontainerchecksum 25924c121d2feedc7d815e4510b89f05000eef87efae8039c6566136b7fa92d6d4d9f25f2938363dcce8222d5c824d42894e4863b95e422b7949207a1e1daccf +docfiles size=551 + RELOC/doc/latex/flowfram/CHANGES + RELOC/doc/latex/flowfram/README details="Readme" + RELOC/doc/latex/flowfram/ffuserguide.pdf details="User guide" + RELOC/doc/latex/flowfram/ffuserguide.tex + RELOC/doc/latex/flowfram/ffuserguideidx.ist + RELOC/doc/latex/flowfram/flowfram.pdf details="Package documentation" + RELOC/doc/latex/flowfram/samples/egg.eps + RELOC/doc/latex/flowfram/samples/egg.png + RELOC/doc/latex/flowfram/samples/sample-article.pdf + RELOC/doc/latex/flowfram/samples/sample-article.tex + RELOC/doc/latex/flowfram/samples/sample-blanks.tex + RELOC/doc/latex/flowfram/samples/sample-brochure.pdf + RELOC/doc/latex/flowfram/samples/sample-brochure.tex + RELOC/doc/latex/flowfram/samples/sample-news.pdf + RELOC/doc/latex/flowfram/samples/sample-news.tex + RELOC/doc/latex/flowfram/samples/sample-news2.pdf + RELOC/doc/latex/flowfram/samples/sample-news2.tex + RELOC/doc/latex/flowfram/samples/sample-pages.pdf + RELOC/doc/latex/flowfram/samples/sample-pages.tex + RELOC/doc/latex/flowfram/samples/sample-poster.pdf + RELOC/doc/latex/flowfram/samples/sample-poster.tex + RELOC/doc/latex/flowfram/samples/sample-rot.pdf + RELOC/doc/latex/flowfram/samples/sample-rot.tex + RELOC/doc/latex/flowfram/samples/sample.pdf + RELOC/doc/latex/flowfram/samples/sample.tex + RELOC/doc/latex/flowfram/samples/sample1.pdf + RELOC/doc/latex/flowfram/samples/sample1.tex + RELOC/doc/latex/flowfram/samples/sample2.pdf + RELOC/doc/latex/flowfram/samples/sample2.tex + RELOC/doc/latex/flowfram/samples/sample3.pdf + RELOC/doc/latex/flowfram/samples/sample3.tex + RELOC/doc/latex/flowfram/samples/sampleRL.pdf + RELOC/doc/latex/flowfram/samples/sampleRL.tex + RELOC/doc/latex/flowfram/samples/sheep.eps + RELOC/doc/latex/flowfram/samples/sheep.png +srccontainersize 55788 +srccontainerchecksum 993d60da76f1144524f9ece2c5c9ba0eb38526111a7cbaf6bb5c669eea790c1ab9519f4e7dc2bc955c611fadf5771f2d9b6582d753b4cf3b79038b2bdd29837a +srcfiles size=118 + RELOC/source/latex/flowfram/flowfram.dtx + RELOC/source/latex/flowfram/flowfram.ins +runfiles size=58 + RELOC/scripts/flowfram/flowfram.perl + RELOC/tex/latex/flowfram/flowfram.sty +catalogue-ctan /macros/latex/contrib/flowfram +catalogue-license lppl1.3 +catalogue-topics layout poster magazine +catalogue-version 1.17 + +name fltpoint +category Package +revision 56594 +shortdesc Simple floating point arithmetic +relocated 1 +longdesc The package provides simple floating point operations +longdesc (addition, subtraction, multiplication, division and rounding). +longdesc Used, for example, by rccol. +containersize 3748 +containerchecksum 906155f3bb5fa81cd4e97a375c37774db1ad4db388f334867cb5ba30735ec4ded5461eabcc833951b5d8a6e2403eec02e0f464d35f109304b9d6152638949b00 +doccontainersize 177668 +doccontainerchecksum 3c023dcb86eddffb28e0937f9d31dada6c82852e44a430c892feff9572c81d9830e4524f742afd958a79f0af63e72311ece43c9eb0e2d8434d871fe144b7fab5 +docfiles size=52 + RELOC/doc/generic/fltpoint/README details="Readme" + RELOC/doc/generic/fltpoint/fltpoint.pdf details="Package documentation" +srccontainersize 15152 +srccontainerchecksum cf5031d06ada079028382b5e845df5b69330fe23412aeb2226af725333dd9d5f4b0915f5de2c46bcfaf6809c9f85479f6257c6e7825c076f896c5f411e3ba9ef +srcfiles size=16 + RELOC/source/generic/fltpoint/fltpoint.dtx + RELOC/source/generic/fltpoint/fltpoint.ins +runfiles size=7 + RELOC/tex/generic/fltpoint/deccomma.sty + RELOC/tex/generic/fltpoint/fltpoint.sty + RELOC/tex/generic/fltpoint/fltpoint.tex +catalogue-also fp +catalogue-ctan /macros/generic/fltpoint +catalogue-license other-free +catalogue-topics arithmetic calculation macro-gen +catalogue-version 1.1b + +name fmp +category Package +revision 15878 +shortdesc Include Functional MetaPost in LaTeX +relocated 1 +containersize 1752 +containerchecksum b87a361454199c16e1fbf97bd2b82f8b5569bbd71b7beaa780a6d88357e9262f77c9c3ce17d2ab0ad9b043ed7a1dd721e533c516e1b927f0439e13ced6598a30 +doccontainersize 130300 +doccontainerchecksum 461ee793dc8156b0ecd6931b9d4c56f368ce4938838b042abae5d6475ca3739c4fe47517168dba742f03c98229376f59f8654a89f1d65ab394c0dd907ac48ba1 +docfiles size=38 + RELOC/doc/latex/fmp/README details="Readme" + RELOC/doc/latex/fmp/fmp.pdf details="Package documentation" +srccontainersize 8216 +srccontainerchecksum 912cfb9e0d4669c5d128ace088190ab4c5f90e371b45f1e399346816d606ef3f96901775a51b5f89a8670abd1b08e159587c9eab4ee6383c12e260d26e070034 +srcfiles size=8 + RELOC/source/latex/fmp/fmp-doc.hs + RELOC/source/latex/fmp/fmp.dtx + RELOC/source/latex/fmp/fmp.ins +runfiles size=2 + RELOC/tex/latex/fmp/fmp.sty +catalogue-ctan /macros/latex/contrib/fmp +catalogue-license lppl +catalogue-topics graphics-inline + +name fmtcount +category Package +revision 53912 +shortdesc Display the value of a LaTeX counter in a variety of formats +relocated 1 +longdesc The package provides commands that display the value of a LaTeX +longdesc counter in a variety of formats (ordinal, text, hexadecimal, +longdesc decimal, octal, binary etc). The package offers some +longdesc multilingual support; configurations for use in English (both +longdesc British and American usage), French (including Belgian and +longdesc Swiss variants), German, Italian, Portuguese and Spanish +longdesc documents are provided. This package was originally provided as +longdesc part of the author's datetime package, but is now distributed +longdesc separately. +containersize 26612 +containerchecksum ec5e10be2b93adbfa0e1ac710c7df37457e8d14dc5c7fe1cd13e062f136c63bd20a3e42d57c237fb4ae5c1be936e1d821d0a6568ca0c22b41948660f0848da43 +doccontainersize 400372 +doccontainerchecksum fa0955c7d08dca99d3323b9cf364edd8b4b305723a3fd3ae38687c6473ea2af3593c47384a61feff0071199b909e1424d422eed3864866b28c7d27b1f42c3994 +docfiles size=143 + RELOC/doc/latex/fmtcount/CHANGES + RELOC/doc/latex/fmtcount/README details="Package README" + RELOC/doc/latex/fmtcount/fc-lang.tex + RELOC/doc/latex/fmtcount/fmtcount.pdf details="Package documentation" +srccontainersize 48732 +srccontainerchecksum 1325ecfee60e7b602e5ca2fffa2b95a4ad11d04b5e986413af57da19cb75e2a268356f33ad64355511d526ed144e14e2abab4b84e5ec5e4faae122eff9914104 +srcfiles size=80 + RELOC/source/latex/fmtcount/fmtcount.dtx + RELOC/source/latex/fmtcount/fmtcount.ins +runfiles size=71 + RELOC/scripts/fmtcount/fmtcount.perl + RELOC/tex/latex/fmtcount/fc-UKenglish.def + RELOC/tex/latex/fmtcount/fc-USenglish.def + RELOC/tex/latex/fmtcount/fc-american.def + RELOC/tex/latex/fmtcount/fc-brazilian.def + RELOC/tex/latex/fmtcount/fc-british.def + RELOC/tex/latex/fmtcount/fc-english.def + RELOC/tex/latex/fmtcount/fc-francais.def + RELOC/tex/latex/fmtcount/fc-french.def + RELOC/tex/latex/fmtcount/fc-frenchb.def + RELOC/tex/latex/fmtcount/fc-german.def + RELOC/tex/latex/fmtcount/fc-germanb.def + RELOC/tex/latex/fmtcount/fc-italian.def + RELOC/tex/latex/fmtcount/fc-ngerman.def + RELOC/tex/latex/fmtcount/fc-ngermanb.def + RELOC/tex/latex/fmtcount/fc-portuges.def + RELOC/tex/latex/fmtcount/fc-portuguese.def + RELOC/tex/latex/fmtcount/fc-spanish.def + RELOC/tex/latex/fmtcount/fcnumparser.sty + RELOC/tex/latex/fmtcount/fcprefix.sty + RELOC/tex/latex/fmtcount/fmtcount.sty +catalogue-contact-bugs https://github.com/nlct/fmtcount/issues +catalogue-contact-repository https://github.com/nlct/fmtcount +catalogue-ctan /macros/latex/contrib/fmtcount +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 3.07 + +name fn2end +category Package +revision 15878 +shortdesc Convert footnotes to endnotes +relocated 1 +longdesc Defines macros \makeendnotes, which converts \footnote to +longdesc produce endnotes; and \theendnotes which prints them out. +containersize 1484 +containerchecksum 6be5c07123cf2470ca88b7c28c068c6dd308824138fd2f645a1a7c04c69fe84953468733ca2994faa42389b5889990941c8e09dc543b66a1589f3cf22df1e017 +doccontainersize 23016 +doccontainerchecksum 17f0a1d12afd607a26687b675ccc65a150e4ae67785389fe9582a3b05ee383f078bde35f296941ea069323757e1fccd1ae0e76e5e24f3446b4154738c1a45385 +docfiles size=8 + RELOC/doc/latex/fn2end/fn2end.pdf details="Package documentation" + RELOC/doc/latex/fn2end/fn2end.tex +runfiles size=1 + RELOC/tex/latex/fn2end/fn2end.sty +catalogue-also endnotes +catalogue-ctan /macros/latex/contrib/fn2end +catalogue-license pd +catalogue-topics footnote endnote +catalogue-version 1.1 + +name fnbreak +category Package +revision 25003 +shortdesc Warn for split footnotes +relocated 1 +longdesc This package detects footnotes that are split over several +longdesc pages, and writes a warning to the log file. +containersize 1848 +containerchecksum 794e427d66efeb15920062e86b4a405e36604703f350c4e20f2c237b358eaf08aa22cc923c7995a7db22c117b48555fb92b136edbc94100af8e2046d49eb1fc4 +doccontainersize 206752 +doccontainerchecksum 0e8778265258304ec1cae1f2d21902ffd6f99af18527b86af064209da7f4c84e8ca6bdcb359000e3f0e9aa75819db1b375f8ae9f0a825291ee03398b6bf345bb +docfiles size=61 + RELOC/doc/latex/fnbreak/ChangeLog + RELOC/doc/latex/fnbreak/Makefile + RELOC/doc/latex/fnbreak/README details="Readme" + RELOC/doc/latex/fnbreak/fnbreak-v.tex + RELOC/doc/latex/fnbreak/fnbreak.pdf details="Package documentation" + RELOC/doc/latex/fnbreak/fnbreak.xml + RELOC/doc/latex/fnbreak/fnbreaktest.tex +srccontainersize 4432 +srccontainerchecksum 05b2586aacca96367889e328115780eaf25ae6af3179c71701c35fad2d98aab79730d23a67e165248793c58a9988442bb54bb653697fb81f1832bce847ec8b3c +srcfiles size=5 + RELOC/source/latex/fnbreak/fnbreak.dtx + RELOC/source/latex/fnbreak/fnbreak.ins +runfiles size=2 + RELOC/tex/latex/fnbreak/fnbreak.sty +catalogue-ctan /macros/latex/contrib/fnbreak +catalogue-license lppl +catalogue-topics footnote +catalogue-version 1.30 + +name fncychap +category Package +revision 20710 +shortdesc Seven predefined chapter heading styles +relocated 1 +longdesc Each style can be modified using a set of simple commands. +longdesc Optionally one can modify the formatting routines in order to +longdesc create additional chapter headings. This package was previously +longdesc known as FancyChapter. +containersize 5104 +containerchecksum 83d74f4bcd8fa90cdf5d0b6e03e9e8e36ab09884998f9955647928ed0a33924735d236a82cc730412edbf54485ec8c357ba3954a264965f67752e397908ba295 +doccontainersize 278568 +doccontainerchecksum 6a8c6910f0790457c71cd55c8d30d07df81c97f80a8b6b7930c067966c76c47848142cdcb7454c4b63a154c5c653933bf71acbd792c06eafdc496c92e4bc5806 +docfiles size=291 + RELOC/doc/latex/fncychap/Bjarne.eps + RELOC/doc/latex/fncychap/Bjarnes.eps + RELOC/doc/latex/fncychap/Bjornstrup.eps + RELOC/doc/latex/fncychap/BjornstrupS.eps + RELOC/doc/latex/fncychap/Conny.eps + RELOC/doc/latex/fncychap/Connys.eps + RELOC/doc/latex/fncychap/Glenn.eps + RELOC/doc/latex/fncychap/Glenns.eps + RELOC/doc/latex/fncychap/Lenny.eps + RELOC/doc/latex/fncychap/Lennys.eps + RELOC/doc/latex/fncychap/README details="Readme" + RELOC/doc/latex/fncychap/Rejne.eps + RELOC/doc/latex/fncychap/Rejnes.eps + RELOC/doc/latex/fncychap/Sonny.eps + RELOC/doc/latex/fncychap/Sonnys.eps + RELOC/doc/latex/fncychap/fncychap.pdf details="Package documentation, with examples" + RELOC/doc/latex/fncychap/fncychap.tex + RELOC/doc/latex/fncychap/manifest.txt +runfiles size=5 + RELOC/tex/latex/fncychap/fncychap.sty +catalogue-also memoirchapterstyles +catalogue-ctan /macros/latex/contrib/fncychap +catalogue-license lppl1.3 +catalogue-topics headings +catalogue-version 1.34 + +name fncylab +category Package +revision 52090 +shortdesc Alter the format of \label references +relocated 1 +longdesc LaTeX provides a mechanism for altering the appearance of +longdesc references to labels, but it's somewhat flawed, and requires +longdesc that the user manipulate internal commands. The package solves +longdesc the problem, by providing a \labelformat command for changing +longdesc the format of references to labels. The package also provides a +longdesc \Ref command to make reference to such redefined labels at the +longdesc start of a sentence. +containersize 1812 +containerchecksum 47aafab923d6455da7e63eb24e0fefa8b869efa5a04bb301000cb2eb658893927dd9f9aeb8e6919ea29e0caeca235b1883106228f6acddc667117a3ba1136974 +doccontainersize 206652 +doccontainerchecksum a987a6efd0964bd5ab5328658e011b5c8da56b404d233c55d96541ec2f37cc72faacd934908c7346041ec8bab3866dd1f171e1c5de5eb528b0f0e80969c0bba6 +docfiles size=53 + RELOC/doc/latex/fncylab/README.md + RELOC/doc/latex/fncylab/fncylab-example.tex + RELOC/doc/latex/fncylab/fncylab.pdf details="Package documentation" + RELOC/doc/latex/fncylab/fncylab.tex +runfiles size=1 + RELOC/tex/latex/fncylab/fncylab.sty +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-license lppl +catalogue-topics label-ref +catalogue-version 1.1 + +name fnpara +category Package +revision 25607 +shortdesc Footnotes in paragraphs +relocated 1 +longdesc Typeset footnotes in run-on paragraphs, instead of one above +longdesc another; this is a re-seating, for the LaTeX environment, of an +longdesc example in the TeXbook. The same basic code, improved for use +longdesc in e-TeX-based LaTeX, appears in the comprehensive footnote +longdesc package footmisc, and superior versions are also available in +longdesc the manyfoot and bigfoot packages. +containersize 3076 +containerchecksum 620aafcef4ec7fdaf5cd732551fddbfce53222cb7540dd370f2cda425e1782c907e59868953f50acfff993a8fd8a84d108da7992f1c1565cbfa889a5ca0ef5d0 +doccontainersize 175136 +doccontainerchecksum 798c7fb03a8fb20695ed63ba1333686d21832a936a74a93ca77c7614346316234b2255b8e0340dd87fd57bc1480f23df24381107fc81c68cd4c0cd594ddf5329 +docfiles size=45 + RELOC/doc/latex/fnpara/fnpara-doc.pdf details="Package documentation" + RELOC/doc/latex/fnpara/fnpara-doc.tex +runfiles size=2 + RELOC/tex/latex/fnpara/fnpara.sty +catalogue-ctan /macros/latex/contrib/fnpara +catalogue-license lppl1.3 +catalogue-topics footnote + +name fnpct +category Package +revision 57508 +shortdesc Manage footnote marks' interaction with punctuation +relocated 1 +longdesc The package moves footnote marks after following punctuation +longdesc (comma or full stop), and adjusts kerning as appropriate. As a +longdesc side effect, a change to the handling of multiple footnotes is +longdesc provided. +containersize 9400 +containerchecksum cb423c17f6d4a58f400c0d59920aabeb33abffd70338d158e63fd4cff90e1e6ba43c1480320470851cccebeb66ae523cdd2c7362b33a0570aa20759605ef0be8 +doccontainersize 481820 +doccontainerchecksum 99c51fd746c61028079a6fe9fa8a29cc2cc141a9d3b81f9e2fd33e35af02cdfcf7f7833e8125d0e03a2d39ea6518ba5c0eb589548f5ed35a9fee7ee4b4e3e5a9 +docfiles size=127 + RELOC/doc/latex/fnpct/README details="Readme" + RELOC/doc/latex/fnpct/fnpct-manual.cls + RELOC/doc/latex/fnpct/fnpct-manual.pdf details="Package documentation" + RELOC/doc/latex/fnpct/fnpct-manual.tex +runfiles size=12 + RELOC/tex/latex/fnpct/fnpct.sty +catalogue-contact-bugs https://github.com/cgnieder/fnpct/issues +catalogue-contact-repository https://github.com/cgnieder/fnpct/ +catalogue-ctan /macros/latex/contrib/fnpct +catalogue-license lppl1.3c +catalogue-topics footnote expl3 +catalogue-version 1.0 + +name fnspe +category Package +revision 45360 +shortdesc Macros for supporting mainly students of FNSPE CTU in Prague +relocated 1 +longdesc This package is primary intended for students of FNSPE CTU in +longdesc Prague but many other students or scientists can found this +longdesc package as useful. This package implements different standards +longdesc of tensor notation, interval notation and complex notation. +longdesc Further many macros and shortcuts are added, e.q. for spaces, +longdesc operators, physics unit, etc. +containersize 2492 +containerchecksum 5e9af6b3b3136f49e49524c7fc85074fd75fff30826fcbb8dad358102e3eee6fa44037b7dde99b6556a063dbe4e819b27ef5a522999eb304f70c2785642478b3 +doccontainersize 170056 +doccontainerchecksum 733a099cac2d96ddf6593b9e0195b85c8d5e86f6a1b283f011a55acc4a1bb7391bfd4356c6aaa40d9b2c70a7c180886d64162eaa396a5a457fbea491af1b47c1 +docfiles size=54 + RELOC/doc/latex/fnspe/README details="Readme" + RELOC/doc/latex/fnspe/fnspe.pdf details="Package documentation" + RELOC/doc/latex/fnspe/fnspe.tex +runfiles size=2 + RELOC/tex/latex/fnspe/fnspe.sty +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-license lppl +catalogue-topics dissertation +catalogue-version 1.2a + +name fntproof +category Package +revision 20638 +shortdesc A programmable font test pattern generator +relocated 1 +longdesc The package implements all the font testing commands of Knuth's +longdesc testfont.tex, but arranges that information necessary for each +longdesc command is supplied as arguments to that command, rather than +longdesc prompted for. This makes it possible to type all the tests in +longdesc one command line, and easy to input the package in a file and +longdesc to use the commands there. A few additional commands supporting +longdesc this last purpose are also made available. +containersize 6592 +containerchecksum c1cdc018808a2b9fb5b91c54b55eddf3d517b8dc6062db1ffda3db154efe6f3abb91e61ce90a68743ce411ec614785974b4362f20f03ae398488ac1f816b3ba6 +doccontainersize 209564 +doccontainerchecksum cf9e8909ed030b27a57573cc257682da84b7f14c3c3775e17fdc8a2203fe99dda8797ae7b2599dc92e9684140102f6d1ca2147bbb437edcf8eb41ffd28b9a576 +docfiles size=57 + RELOC/doc/generic/fntproof/README details="Readme" + RELOC/doc/generic/fntproof/fntproof-doc.pdf details="Package documentation" + RELOC/doc/generic/fntproof/fntproof-doc.tex +runfiles size=4 + RELOC/tex/generic/fntproof/fntproof.tex +catalogue-ctan /macros/generic/fntproof +catalogue-license pd +catalogue-topics font-devel + +name fnumprint +category Package +revision 29173 +shortdesc Print a number in 'appropriate' format +relocated 1 +longdesc The package defines two macros which decide to typeset a number +longdesc either as an Arabic number or as a word (or words) for the +longdesc number. If the number is between zero and twelve (including +longdesc zero and twelve) then words will be used; if the number is +longdesc outside that range, it will be typeset using the package +longdesc numprint Words for English representation of numbers are +longdesc generated within the package, while those for German are +longdesc generated using the package zahl2string. +containersize 1384 +containerchecksum 7f43363ff861fd4f887df68dd6daae6c97940d4cdd60b19563a966dc7c08cb88356a150eab0cb5b91bd4c3d5d47e324dbbfd43cf45872a5738c5f9b70766e047 +doccontainersize 254544 +doccontainerchecksum 44d6fdf74bf6c231a57b3fad63efa7eb1bdf5b4342cdb38e0d504c4c09190130d37534769e17c3f60bbad668d50aab064bc5c0a1ad99808a6d084dd1921769a9 +docfiles size=64 + RELOC/doc/latex/fnumprint/README details="Readme" + RELOC/doc/latex/fnumprint/fnumprint.pdf details="Package documentation" +srccontainersize 4004 +srccontainerchecksum 3f6465877aa1dbf5ab021e8397725ec83217bd774ee0623e71cf15d746d7d0edeb2f78ce76dfd607568be75b67f4cfa8d3e1ddd29c0ada6d376f7b4fdfad86a9 +srcfiles size=4 + RELOC/source/latex/fnumprint/fnumprint.dtx + RELOC/source/latex/fnumprint/fnumprint.ins +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-license lppl1.3 +catalogue-topics numbers +catalogue-version 1.1a + +name foekfont +category Package +revision 15878 +shortdesc The title font of the Mads Fok magazine +relocated 1 +longdesc The bundle provides an Adobe Type 1 font, and LaTeX support for +longdesc its use. The magazine web site shows the font in use in a few +longdesc places. +execute addMap foekfont.map +containersize 8752 +containerchecksum 45342633aec41f2a5fe7213dc418960d76ff196a08b906965e3b68f2c5ed264b3192ea45756133f12662e451fcad11d08232995c0de2493495c40b9b59cef7ea +doccontainersize 95112 +doccontainerchecksum 7e1aa7a240d825c014be6af7be5cd7c1bbcbc6e52bd55be36f987b4a25223179bcc4c4d342906c10f9df624536252fe4dc5a45cd3b5ddb63f91e9f4c7401a239 +docfiles size=31 + RELOC/doc/latex/foekfont/FoekFont.sfd + RELOC/doc/latex/foekfont/README details="Package README" + RELOC/doc/latex/foekfont/foekfont.pdf details="Package documentation" + RELOC/doc/latex/foekfont/foekfont.tex +runfiles size=8 + RELOC/fonts/map/dvips/foekfont/foekfont.map + RELOC/fonts/tfm/public/foekfont/foekfont.tfm + RELOC/fonts/type1/public/foekfont/FoekFont.pfb + RELOC/tex/latex/foekfont/foekfont.sty + RELOC/tex/latex/foekfont/ot1foekfont.fd + RELOC/tex/latex/foekfont/t1foekfont.fd +catalogue-ctan /fonts/foekfont +catalogue-license gpl +catalogue-topics font font-novelty font-type1 + +name foilhtml +category Package +revision 21855 +shortdesc Interface between foiltex and LaTeX2HTML +relocated 1 +longdesc Provides integration between FoilTeX and LaTeX2HTML, adding +longdesc sectioning commands and elements of logical formatting to +longdesc FoilTeX and providing support for FoilTeX commands in +longdesc LaTeX2HTML. +containersize 3628 +containerchecksum 80b177c1eb224dbbd086d3b8a0b10b3f0b3434e977c8d71b34a58f76a5a73757148b4e7438a275f1be186df51e36342de132940ebdde9608e7c741664ea200d7 +doccontainersize 5048 +doccontainerchecksum a24c9f048f7e1cf187d40f6eb3370cf68f6de80e24f2f72b077d782be5dcd369cf3a7ce9bc7d0a269c285d04cbb543481cf439710037a26a7597164492b277fb +docfiles size=7 + RELOC/doc/latex/foilhtml/foilhtml-96.perl + RELOC/doc/latex/foilhtml/foils-97.perl + RELOC/doc/latex/foilhtml/foils.perl + RELOC/doc/latex/foilhtml/readme.v12 +srccontainersize 15700 +srccontainerchecksum a6fc97ea007ddddaef17cfb4bf86d75ee34a5525ee48b58b111188cf6a2e6269052c4f90d87ff3aa6157d1523fcca3f8f99471fef108cc8c1e69dffa7c6656ca +srcfiles size=18 + RELOC/source/latex/foilhtml/foilhtml.drv + RELOC/source/latex/foilhtml/foilhtml.dtx + RELOC/source/latex/foilhtml/foilhtml.ins +runfiles size=4 + RELOC/tex/latex/foilhtml/foilhtml.cfg + RELOC/tex/latex/foilhtml/foilhtml.sty +catalogue-contact-home http://users.lk.net/~borisv/latex.html +catalogue-ctan /macros/latex/contrib/foilhtml +catalogue-license lppl +catalogue-topics presentation +catalogue-version 1.2 + +name foliono +category Package +revision 58877 +shortdesc Use folio numbers to replace page numbers +relocated 1 +longdesc This package adds functionality to create several styles of +longdesc folio numbers. Folio numbering preceded the modern page +longdesc numbering convention and was in common use until the 18th +longdesc century. In folio numbering the numbers are placed only on odd +longdesc (right-side) pages and the numbers typically comprise of two +longdesc parts: quire and folio numbers. The intended use for this +longdesc package is to help creating old-style books. +containersize 4544 +containerchecksum e5082c626e22acbaebbc7abadee75a71e3902af989767bcfba5d851fc89e771cf8a331ea540c05e6455b894351fdb6af6c598b5440e55c553662efdcb73cc093 +doccontainersize 229428 +doccontainerchecksum f03abc88291b2591b509a575735f6fe3e29ffeff52e0d2cbea287efe5426b7668462e6133394374f01aa3b968fec035e6a40a8bee01b12cbacf90fd0bca80b2e +docfiles size=94 + RELOC/doc/latex/foliono/MANIFEST-Foliono.txt + RELOC/doc/latex/foliono/README details="Readme" + RELOC/doc/latex/foliono/foliono.pdf details="Package documentation" + RELOC/doc/latex/foliono/foliono.tex + RELOC/doc/latex/foliono/lppl.txt + RELOC/doc/latex/foliono/pics/only-folio.png + RELOC/doc/latex/foliono/pics/only-quire.png + RELOC/doc/latex/foliono/pics/skip-first.png + RELOC/doc/latex/foliono/pics/standard.png +runfiles size=4 + RELOC/tex/latex/foliono/foliono.sty +catalogue-ctan /macros/latex/contrib/foliono +catalogue-license lppl1.3c +catalogue-topics numbers page-nos +catalogue-version 1.000 + +name fonetika +category Package +revision 21326 +shortdesc Support for the Danish "Dania" phonetic system +relocated 1 +longdesc Fonetika Dania is a font bundle with a serif font and a sans +longdesc serif font for the danish phonetic system Dania. Both fonts +longdesc exist in regular and bold weights. LaTeX support is provided. +longdesc The fonts are based on URW Palladio and Iwona Condensed, and +longdesc were created using FontForge. +execute addMap fonetika.map +containersize 65336 +containerchecksum 4db9e50fde60ac69373f5abd151f3e17275f5c492b6855a7f5dd8895650a79cda1feda43398fffebbecdd6f7e032f8935972ef573f79ae1cccc5844dc148352b +doccontainersize 124928 +doccontainerchecksum ac3f0de2a9a5b5052d4ae626b4368f8b1fef419503cab9a88d4bf89db348c1a756555a6cef7aa70bcf733fa032840fe9ae7cfe347fb40bae32b54506e60ccf37 +docfiles size=36 + RELOC/doc/fonts/fonetika/README details="Package Readme" + RELOC/doc/fonts/fonetika/fonetika.pdf + RELOC/doc/fonts/fonetika/fonetika.tex +runfiles size=37 + RELOC/fonts/afm/public/fonetika/FonetikaDaniaIwonaeBold.afm + RELOC/fonts/afm/public/fonetika/FonetikaDaniaIwonaeRegular.afm + RELOC/fonts/afm/public/fonetika/FonetikaDaniaPallaeBold.afm + RELOC/fonts/afm/public/fonetika/FonetikaDaniaPallaeRegular.afm + RELOC/fonts/map/dvips/fonetika/fonetika.map + RELOC/fonts/tfm/public/fonetika/fonetika.tfm + RELOC/fonts/tfm/public/fonetika/fonetikabold.tfm + RELOC/fonts/tfm/public/fonetika/fonetikasans.tfm + RELOC/fonts/tfm/public/fonetika/fonetikasansbold.tfm + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaIwonaeBold.ttf + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaIwonaeRegular.ttf + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaPallaeBold.ttf + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaPallaeRegular.ttf + RELOC/fonts/type1/public/fonetika/FonetikaDaniaIwonaeBold.pfb + RELOC/fonts/type1/public/fonetika/FonetikaDaniaIwonaeRegular.pfb + RELOC/fonts/type1/public/fonetika/FonetikaDaniaPallaeBold.pfb + RELOC/fonts/type1/public/fonetika/FonetikaDaniaPallaeRegular.pfb + RELOC/tex/latex/fonetika/fonetika.sty + RELOC/tex/latex/fonetika/t1fonetika.fd +catalogue-ctan /fonts/fonetika +catalogue-license other-free +catalogue-topics font font-specialist font-sans phonetic + +name font-change +category Package +revision 40403 +shortdesc Macros to change text and mathematics fonts in plain TeX +relocated 1 +longdesc Macros to Change Text and Mathematics fonts in TeX: 45 +longdesc Beautiful Variants The macros are written for plain TeX and may +longdesc be used with other packages like AmSTeX, eplain, etc. They also +longdesc work with XeTeX. The macros allow users to change the fonts +longdesc (for both text and mathematics) in their TeX document with only +longdesc one statement. The fonts may be used readily at various +longdesc predefined sizes. All the fonts called by these macro files are +longdesc free and are included in current MiKTeX and TeX Live +longdesc distributions. +containersize 19304 +containerchecksum 8ec91864d719d20ff66195ec1bab456d772417ff2d4d9ae75ecccafe0da616d1dfdf5b965be489a65eb28130b3672a5b55c33f3254f59c00cf204dcae6fd4eb7 +doccontainersize 1766316 +doccontainerchecksum 75f7e45fb5313d0bc1c333253aba2bcd1d650fb6c0baffce6e5c558b0e7aeaf2e697ea9412860b4049d2685cdee26d19f12d9a28184084ab9df66101b78b0361 +docfiles size=561 + RELOC/doc/plain/font-change/README.txt details="Readme" + RELOC/doc/plain/font-change/font-change.pdf details="Package documentation" + RELOC/doc/plain/font-change/font-change.tex + RELOC/doc/plain/font-change/font-change_FRENCH.pdf + RELOC/doc/plain/font-change/font-change_FRENCH.tex +runfiles size=135 + RELOC/tex/plain/font-change/default-amssymbols.tex + RELOC/tex/plain/font-change/font_antp_euler.tex + RELOC/tex/plain/font-change/font_antt-condensed-light.tex + RELOC/tex/plain/font-change/font_antt-condensed-medium.tex + RELOC/tex/plain/font-change/font_antt-condensed.tex + RELOC/tex/plain/font-change/font_antt-light.tex + RELOC/tex/plain/font-change/font_antt-medium.tex + RELOC/tex/plain/font-change/font_antt.tex + RELOC/tex/plain/font-change/font_arev.tex + RELOC/tex/plain/font-change/font_artemisia_euler.tex + RELOC/tex/plain/font-change/font_bera_concrete.tex + RELOC/tex/plain/font-change/font_bera_euler.tex + RELOC/tex/plain/font-change/font_bera_fnc.tex + RELOC/tex/plain/font-change/font_bookman.tex + RELOC/tex/plain/font-change/font_century.tex + RELOC/tex/plain/font-change/font_charter.tex + RELOC/tex/plain/font-change/font_cm.tex + RELOC/tex/plain/font-change/font_cmbright.tex + RELOC/tex/plain/font-change/font_concrete.tex + RELOC/tex/plain/font-change/font_epigrafica_euler.tex + RELOC/tex/plain/font-change/font_epigrafica_palatino.tex + RELOC/tex/plain/font-change/font_iwona-bold.tex + RELOC/tex/plain/font-change/font_iwona-condensed-bold.tex + RELOC/tex/plain/font-change/font_iwona-condensed-light.tex + RELOC/tex/plain/font-change/font_iwona-condensed-medium.tex + RELOC/tex/plain/font-change/font_iwona-condensed.tex + RELOC/tex/plain/font-change/font_iwona-light.tex + RELOC/tex/plain/font-change/font_iwona-medium.tex + RELOC/tex/plain/font-change/font_iwona.tex + RELOC/tex/plain/font-change/font_kp-light.tex + RELOC/tex/plain/font-change/font_kp.tex + RELOC/tex/plain/font-change/font_kurier-bold.tex + RELOC/tex/plain/font-change/font_kurier-condensed-bold.tex + RELOC/tex/plain/font-change/font_kurier-condensed-light.tex + RELOC/tex/plain/font-change/font_kurier-condensed-medium.tex + RELOC/tex/plain/font-change/font_kurier-condensed.tex + RELOC/tex/plain/font-change/font_kurier-light.tex + RELOC/tex/plain/font-change/font_kurier-medium.tex + RELOC/tex/plain/font-change/font_kurier.tex + RELOC/tex/plain/font-change/font_libertine_kp.tex + RELOC/tex/plain/font-change/font_libertine_palatino.tex + RELOC/tex/plain/font-change/font_libertine_times.tex + RELOC/tex/plain/font-change/font_mdutopia.tex + RELOC/tex/plain/font-change/font_pagella.tex + RELOC/tex/plain/font-change/font_palatino.tex + RELOC/tex/plain/font-change/font_times.tex + RELOC/tex/plain/font-change/font_utopia.tex +catalogue-ctan /macros/plain/contrib/font-change +catalogue-license other-free +catalogue-topics font-supp plain-ext +catalogue-version 2015.2 + +name font-change-xetex +category Package +revision 40404 +shortdesc Macros to change text and mathematics fonts in plain XeTeX +relocated 1 +longdesc This package consists of macros that can be used to typeset +longdesc "plain" XeTeX documents using any OpenType or TrueType font +longdesc installed on the computer system. The macros allow the user to +longdesc change the text mode fonts and some math mode fonts. For any +longdesc declared font family, various font style, weight, and size +longdesc variants like bold, italics, small caps, etc., are available +longdesc through standard and custom TeX control statements. Using the +longdesc optional argument of the macros, the available XeTeX font +longdesc features and OpenType tags can be accessed. Other features of +longdesc the package include activating and deactivating hanging +longdesc punctuation, and support for special Unicode characters. +containersize 6072 +containerchecksum 17de7c596a774c5c2e115704c2c57385f3fa90bf2dd49362547873453c27700537ab7f1e8a143c2ed49c90efe6aec234d3cf61643228bcba5b51c5ddcbb8bba9 +doccontainersize 558812 +doccontainerchecksum 138375750a4d493774cbd558c6aa910d04bf3f32337f773438d6bb31e16df3d96af3a6ea12d4940c785c04f98130977750058f7c0ef2425e0d8147b4ab882a64 +docfiles size=158 + RELOC/doc/xetex/font-change-xetex/README.txt details="Readme" + RELOC/doc/xetex/font-change-xetex/font-change-xetex.pdf details="Package documentation" + RELOC/doc/xetex/font-change-xetex/font-change-xetex.tex +runfiles size=13 + RELOC/tex/xetex/font-change-xetex/font-change-xetex.tex +catalogue-ctan /macros/xetex/plain/font-change-xetex +catalogue-license other-free +catalogue-topics font-supp plain-ext xetex +catalogue-version 2016.1 + +name fontawesome +category Package +revision 48145 +shortdesc Font containing web-related icons +relocated 1 +longdesc The package offers access to the large number of web-related +longdesc icons provided by the included font. The package requires the +longdesc package, fontspec, if run with XeTeX or LuaTeX. +execute addMap fontawesome.map +containersize 276180 +containerchecksum e08643104006c9e14c40bb965b4401a8fe296f43e5f39b285cd19d5aa0ed33602cc0eb6ffcc996e1d6e5aaa57dd906903324626ee40facdcb3cedc5216a3deb6 +doccontainersize 232920 +doccontainerchecksum bbd18a60db734922ea006ebd00b0c9f90c34907a7b519a08bf007daf01cceaaf6db3b31c3dd8c76e1dac199d4f7c312116f6935b764afb62248b7dcfd92ac78c +docfiles size=68 + RELOC/doc/fonts/fontawesome/README.md details="Readme" + RELOC/doc/fonts/fontawesome/fontawesome.pdf details="Package documentation" + RELOC/doc/fonts/fontawesome/fontawesome.tex +runfiles size=120 + RELOC/fonts/enc/dvips/fontawesome/fontawesomeone.enc + RELOC/fonts/enc/dvips/fontawesome/fontawesomethree.enc + RELOC/fonts/enc/dvips/fontawesome/fontawesometwo.enc + RELOC/fonts/map/dvips/fontawesome/fontawesome.map + RELOC/fonts/opentype/public/fontawesome/FontAwesome.otf + RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesomeone.tfm + RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesomethree.tfm + RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesometwo.tfm + RELOC/fonts/type1/public/fontawesome/FontAwesome.pfb + RELOC/tex/latex/fontawesome/fontawesome.sty + RELOC/tex/latex/fontawesome/fontawesomesymbols-generic.tex + RELOC/tex/latex/fontawesome/fontawesomesymbols-pdftex.tex + RELOC/tex/latex/fontawesome/fontawesomesymbols-xeluatex.tex + RELOC/tex/latex/fontawesome/ufontawesomeone.fd + RELOC/tex/latex/fontawesome/ufontawesomethree.fd + RELOC/tex/latex/fontawesome/ufontawesometwo.fd +catalogue-contact-repository https://github.com/xdanaux/fontawesome-latex +catalogue-ctan /fonts/fontawesome +catalogue-license lppl1.3 +catalogue-topics font font-supp-symbol font-symbol font-otf font-type1 +catalogue-version 4.6.3.2 + +name fontawesome5 +category Package +revision 54517 +shortdesc Font Awesome 5 with LaTeX support +relocated 1 +longdesc This package provides LaTeX support for the included "Font +longdesc Awesome 5 Free" icon set. These icons were designed by Fort +longdesc Awesome and released under the SIL OFL 1.1 license. The +longdesc commercial "Pro" version is also supported, if it is installed +longdesc and XeLaTeX or LuaLaTeX is used. +execute addMap fontawesome5.map +containersize 848692 +containerchecksum 2d33d6faae95c3d275fad5e0a962e7e8943ece8e311555915adf6f9cec9864e00a4309d42e7e171220f16c7ce8f7253499513f0d118685f0a7373de98c9fc886 +doccontainersize 719272 +doccontainerchecksum 24c198c2abfc82930b43d04b1b855715c48b7b1d2517d955745b6eaea8b4d81496af627907a3e7d9bb232df442c965a1ea84c427bc1a8c964cc83dc123392051 +docfiles size=180 + RELOC/doc/fonts/fontawesome5/README.md details="Readme" + RELOC/doc/fonts/fontawesome5/fontawesome5.pdf details="Package documentation" + RELOC/doc/fonts/fontawesome5/fontawesome5.tex + RELOC/doc/fonts/fontawesome5/fulllist.tex +runfiles size=325 + RELOC/fonts/enc/dvips/fontawesome5/fa5brands0.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5brands1.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free0.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free1.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free2.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free3.enc + RELOC/fonts/map/dvips/fontawesome5/fontawesome5.map + RELOC/fonts/opentype/public/fontawesome5/FontAwesome5Brands-Regular-400.otf + RELOC/fonts/opentype/public/fontawesome5/FontAwesome5Free-Regular-400.otf + RELOC/fonts/opentype/public/fontawesome5/FontAwesome5Free-Solid-900.otf + RELOC/fonts/tfm/public/fontawesome5/fa5brands0.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5brands1.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free0regular.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free0solid.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free1regular.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free1solid.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free2regular.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free2solid.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free3regular.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free3solid.tfm + RELOC/fonts/type1/public/fontawesome5/FontAwesome5Brands-Regular.pfb + RELOC/fonts/type1/public/fontawesome5/FontAwesome5Free-Regular.pfb + RELOC/fonts/type1/public/fontawesome5/FontAwesome5Free-Solid.pfb + RELOC/tex/latex/fontawesome5/fontawesome5-generic-helper.sty + RELOC/tex/latex/fontawesome5/fontawesome5-mapping.def + RELOC/tex/latex/fontawesome5/fontawesome5-utex-helper.sty + RELOC/tex/latex/fontawesome5/fontawesome5.lua + RELOC/tex/latex/fontawesome5/fontawesome5.sty + RELOC/tex/latex/fontawesome5/tufontawesomebrands.fd + RELOC/tex/latex/fontawesome5/tufontawesomefree.fd + RELOC/tex/latex/fontawesome5/tufontawesomepro.fd + RELOC/tex/latex/fontawesome5/ufontawesomebrands0.fd + RELOC/tex/latex/fontawesome5/ufontawesomebrands1.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree0.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree1.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree2.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree3.fd +catalogue-also fontawesome +catalogue-ctan /fonts/fontawesome5 +catalogue-license ofl lppl1.3c +catalogue-topics font font-supp-symbol font-symbol font-otf font-type1 +catalogue-version 5.13.0 + +name fontaxes +category Package +revision 55920 +shortdesc Additional font axes for LaTeX +relocated 1 +longdesc The package adds several new font axes on top of LaTeX's New +longdesc Font Selection Scheme. In particular, it splits the shape axis +longdesc into a primary and a secondary shape axis, and it adds three +longdesc new axes to deal with the different figure versions offered by +longdesc many professional fonts. +containersize 3344 +containerchecksum 49a2a2a3cc34370fc8db7c08446b2d12cb7b8a9ce6913568d7588c051683e24b859af23c440df1c815ab1b65f5b5de32242df344dad8102eba7ec1383b02c112 +doccontainersize 128948 +doccontainerchecksum c37621f082498bfc4c2ed0717fbe18b56032a7d5faef1ca7a73c4fd22adcfb8f7e517ced768511636d4c8488932d3b33a96137837f34c79416b9c5d8d852456c +docfiles size=35 + RELOC/doc/latex/fontaxes/README details="Readme" + RELOC/doc/latex/fontaxes/fontaxes.pdf details="Package documentation" + RELOC/doc/latex/fontaxes/test-fontaxes.tex +srccontainersize 10160 +srccontainerchecksum f0bb1bdb666c9afc19ea333ec3919716565be9454970e7a9e3930f503ea7e31ebc4273a16dff6fb2ae44701ccab1ffa2e9c285ac145ed32294b47b68fff91267 +srcfiles size=12 + RELOC/source/latex/fontaxes/fontaxes.dtx + RELOC/source/latex/fontaxes/fontaxes.ins +runfiles size=4 + RELOC/tex/latex/fontaxes/fontaxes.sty +catalogue-ctan /macros/latex/contrib/fontaxes +catalogue-license lppl1.3 +catalogue-topics font-use +catalogue-version 1.0e + +name fontbook +category Package +revision 23608 +shortdesc Generate a font book +relocated 1 +longdesc The package provides a means of producing a 'book' of font +longdesc samples (for evaluation, etc.). +containersize 1452 +containerchecksum 55ee9dc22aefcf91c7fe30f516bfbaea5d0b8c5423cec204bfb208ebfb4b2331ebdd65032eb6f2a9f8958f15fd47433a9c7884f49ff1f3900f1538f9f25d4fe4 +doccontainersize 1245344 +doccontainerchecksum 65eb7d3f6426d3dcb13ac9a0d5b396eb4c03586d9d2b3d842af9ae4ad98119e8721034de499eae485c5803873946f04af992ddd860d09a7131021027c14b5d4b +docfiles size=371 + RELOC/doc/xelatex/fontbook/README details="Readme" + RELOC/doc/xelatex/fontbook/fontbook-freefonts.pdf details="Sample usage (free fonts book)" + RELOC/doc/xelatex/fontbook/fontbook-freefonts.tex + RELOC/doc/xelatex/fontbook/fontbook.pdf details="Package documentation" +srccontainersize 3272 +srccontainerchecksum 8ecb0b7b4e5f00806a377acfa0198ef217faf0573930be1272d13d743d1e84db76f067afa7e7a665c4540536c1d888bdb702ea9c203a2a405389079aa49f71f7 +srcfiles size=3 + RELOC/source/xelatex/fontbook/fontbook.dtx + RELOC/source/xelatex/fontbook/fontbook.ins +runfiles size=1 + RELOC/tex/xelatex/fontbook/fontbook.sty +catalogue-ctan /macros/xetex/latex/fontbook +catalogue-license lppl1.3 +catalogue-topics font-devel +catalogue-version 0.2 + +name fontch +category Package +revision 17859 +shortdesc Changing fonts, sizes and encodings in Plain TeX +relocated 1 +longdesc The fontch macros allow the user to change font size and family +longdesc anywhere in a plain TeX document. Sizes of 8, 10, 12, 14, 20 +longdesc and 24 points are available. A sans serif family (\sf) is +longdesc defined in addition to the families already defined in plain +longdesc TeX. Optional support for Latin Modern T1 and TS1 fonts is +longdesc given. There are macros for non-latin1 letters and for most TS1 +longdesc symbols. Math mode always uses CM fonts. A command for +longdesc producing doubled-spaced documents is also provided. The +longdesc present version of the package is designed to deal with the +longdesc latest release of the Latin Modern fonts version 1.106. +longdesc Unfortunately, it can no longer support earlier versions of the +longdesc fonts, so an obsolete version of the package is retained for +longdesc users who don't yet have access to the latest version of the +longdesc fonts. +containersize 15420 +containerchecksum c8354fbcb6a13f2f874dd3df71f23ee1fcefdaaa1eab5166f35001811b9788ea2b53e5d5653437071d02978dc94b0a658bca5e2cfe825a0315d3389446b6c138 +doccontainersize 80572 +doccontainerchecksum a7c5f6622414d943a20745f7b02c3859d43d4f4ec0f9ffd3b2baec34e142c01474d8827c7b0fe5d1bebfa25d33224b26cd876e3457b7179097fd9539cb9d9444 +docfiles size=26 + RELOC/doc/plain/fontch/README details="Readme and usage details" + RELOC/doc/plain/fontch/fontch.pdf details="Package documentation" +runfiles size=21 + RELOC/tex/plain/fontch/DSmac.tex + RELOC/tex/plain/fontch/TS1mac.tex + RELOC/tex/plain/fontch/bsymbols.tex + RELOC/tex/plain/fontch/fontch.tex + RELOC/tex/plain/fontch/fontch_doc.tex +catalogue-also font-selection ofs plnfss +catalogue-ctan /macros/plain/contrib/fontch +catalogue-license lppl +catalogue-topics font-sel plain-ext +catalogue-version 2.2 + +name fontinst +category Package +revision 53562 +shortdesc Help with installing fonts for TeX and LaTeX +longdesc TeX macros for converting Adobe Font Metric files to TeX metric +longdesc and virtual font format. Fontinst helps mainly with the number +longdesc crunching and shovelling parts of font installation. This means +longdesc in practice that it creates a number of files which give the +longdesc TeX metrics (and related information) for a font family that +longdesc (La)TeX needs to do any typesetting in these fonts. Fontinst +longdesc furthermore makes it easy to create fonts containing glyphs +longdesc from more than one base font, taking advantage of (e.g.) +longdesc "expert" font sets. Fontinst cannot examine files to see if +longdesc they contain any useful information, nor automatically search +longdesc for files or work with binary file formats; those tasks must +longdesc normally be done manually or with the help of some other tool, +longdesc such as the pltotf and vptovf programs. +depend fontinst.ARCH +containersize 85736 +containerchecksum 1703570199fbc41d589817f83b5782bef5552030ab54646d464423f0788b1f2f3a5017a92846de55ee696b4ccbe1d46b2220382f7446ac7cafc9970c58d1b5ba +doccontainersize 1019508 +doccontainerchecksum dc7aca7d63e13fb908df02363542abebb1760b66669bf360c2ab33e790ae6d3ac0ac1808849efab2784c39499ee1eb5e2fe43091d41b0270a4c402c2394f6fec +docfiles size=463 + texmf-dist/doc/fonts/fontinst/README details="Readme" + texmf-dist/doc/fonts/fontinst/encspecs/encspecs.tex + texmf-dist/doc/fonts/fontinst/encspecs/omxdraft.etx + texmf-dist/doc/fonts/fontinst/encspecs/ot1draft.etx + texmf-dist/doc/fonts/fontinst/encspecs/t1draft.etx + texmf-dist/doc/fonts/fontinst/examples/basic/basicex.tex + texmf-dist/doc/fonts/fontinst/examples/basic/basicex2.tex + texmf-dist/doc/fonts/fontinst/examples/eurofont/Makefile + texmf-dist/doc/fonts/fontinst/examples/eurofont/eurofont.map + texmf-dist/doc/fonts/fontinst/examples/eurofont/eurofont.tex + texmf-dist/doc/fonts/fontinst/examples/mathptm/Makefile + texmf-dist/doc/fonts/fontinst/examples/mathptm/fontptcm.tex + texmf-dist/doc/fonts/fontinst/examples/mathptm/mathtest.tex + texmf-dist/doc/fonts/fontinst/examples/mathptm/resetsy.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/unsetmu.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrmhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrmkern.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrvhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zryhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/Makefile + texmf-dist/doc/fonts/fontinst/examples/mathptmx/fontptcmx.tex + texmf-dist/doc/fonts/fontinst/examples/mathptmx/mathptmx.sty + texmf-dist/doc/fonts/fontinst/examples/mathptmx/mathtestx.tex + texmf-dist/doc/fonts/fontinst/examples/mathptmx/resetsy.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/unsetmu.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrmhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrmkernx.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrvhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zryhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrykernx.mtx + texmf-dist/doc/fonts/fontinst/manual/fontinst.pdf details="Package documentation" + texmf-dist/doc/fonts/fontinst/manual/fontinst.tex + texmf-dist/doc/fonts/fontinst/manual/intro98.pdf details="Package introductioon" + texmf-dist/doc/fonts/fontinst/manual/intro98.tex + texmf-dist/doc/fonts/fontinst/manual/roadmap.eps + texmf-dist/doc/fonts/fontinst/talks/et99-font-tables.pdf + texmf-dist/doc/fonts/fontinst/talks/et99-font-tutorial.pdf + texmf-dist/doc/fonts/fontinst/test/cc-pl.enc + texmf-dist/doc/fonts/fontinst/test/comparemetrics.sty + texmf-dist/doc/fonts/fontinst/test/comparepls.tex + texmf-dist/doc/fonts/fontinst/test/fadrr.mtx + texmf-dist/doc/fonts/fontinst/test/multislot-test.tex + texmf-dist/doc/fonts/fontinst/test/multislot.etx + texmf-dist/doc/fonts/fontinst/test/omsdraft.etx + texmf-dist/doc/fonts/fontinst/test/testsc.tex + texmf-dist/doc/fonts/fontinst/test/v1901test.mtx + texmf-dist/doc/fonts/fontinst/test/v1901test.tex + texmf-dist/doc/fonts/fontinst/test/v1902test.tex + texmf-dist/doc/fonts/fontinst/test/v1905test.tex + texmf-dist/doc/fonts/fontinst/test/v1906test.etx + texmf-dist/doc/fonts/fontinst/test/v1906test.mtx + texmf-dist/doc/fonts/fontinst/test/v1906test.tex + texmf-dist/doc/fonts/fontinst/test/v1913test.tex + texmf-dist/doc/fonts/fontinst/test/v1914test.tex + texmf-dist/doc/fonts/fontinst/test/v1914testmap.tex + texmf-dist/doc/fonts/fontinst/test/v1914testshow.tex + texmf-dist/doc/fonts/fontinst/test/v1915test.tex + texmf-dist/doc/fonts/fontinst/test/v1915testmap.tex + texmf-dist/doc/fonts/fontinst/test/v1916test.mtx + texmf-dist/doc/fonts/fontinst/test/v1916test.tex + texmf-dist/doc/fonts/fontinst/test/v1916test2.tex + texmf-dist/doc/fonts/fontinst/test/v1923test.tex + texmf-dist/doc/fonts/fontinst/test/v1927test.tex + texmf-dist/doc/fonts/fontinst/test/v1928test.tex + texmf-dist/doc/fonts/fontinst/test/v1928test2.tex + texmf-dist/doc/fonts/fontinst/test/v1930test.tex + texmf-dist/doc/fonts/fontinst/test/v1931test0.tex + texmf-dist/doc/fonts/fontinst/test/v1931test1.tex + texmf-dist/doc/fonts/fontinst/test/v1931test2.tex + texmf-dist/doc/man/man1/fontinst.1 + texmf-dist/doc/man/man1/fontinst.man1.pdf +srccontainersize 410340 +srccontainerchecksum f0e4fd7818432ccf95a91f6e5d307aefe8d6d0bc3bcef464fa5b94cde24304c693466695e3a57fcc7d3bd388fc16a2ebb23fb80ecd3e5887ce845151983ed493 +srcfiles size=469 + texmf-dist/source/fontinst/base/CHANGES + texmf-dist/source/fontinst/base/fibasics.dtx + texmf-dist/source/fontinst/base/ficommon.dtx + texmf-dist/source/fontinst/base/ficonv.dtx + texmf-dist/source/fontinst/base/filtfam.dtx + texmf-dist/source/fontinst/base/fimain.dtx + texmf-dist/source/fontinst/base/fimapgen.dtx + texmf-dist/source/fontinst/base/fisource.dvi + texmf-dist/source/fontinst/base/fisource.ist + texmf-dist/source/fontinst/base/fisource.sty + texmf-dist/source/fontinst/base/fisource.tex + texmf-dist/source/fontinst/base/fitrig.dtx + texmf-dist/source/fontinst/base/fontinst.ins +runfiles size=255 + texmf-dist/scripts/texlive-extra/fontinst.sh + texmf-dist/tex/fontinst/base/bbox.sty + texmf-dist/tex/fontinst/base/cfntinst.sty + texmf-dist/tex/fontinst/base/finstmsc.sty + texmf-dist/tex/fontinst/base/fontinst.ini + texmf-dist/tex/fontinst/base/fontinst.sty + texmf-dist/tex/fontinst/base/multislot.sty + texmf-dist/tex/fontinst/base/xfntinst.sty + texmf-dist/tex/fontinst/latinetx/8r.etx + texmf-dist/tex/fontinst/latinetx/8y.etx + texmf-dist/tex/fontinst/latinetx/ot1.etx + texmf-dist/tex/fontinst/latinetx/ot1c.etx + texmf-dist/tex/fontinst/latinetx/ot1cj.etx + texmf-dist/tex/fontinst/latinetx/ot1ctt.etx + texmf-dist/tex/fontinst/latinetx/ot1i.etx + texmf-dist/tex/fontinst/latinetx/ot1ij.etx + texmf-dist/tex/fontinst/latinetx/ot1itt.etx + texmf-dist/tex/fontinst/latinetx/ot1j.etx + texmf-dist/tex/fontinst/latinetx/ot1tt.etx + texmf-dist/tex/fontinst/latinetx/t1.etx + texmf-dist/tex/fontinst/latinetx/t1c.etx + texmf-dist/tex/fontinst/latinetx/t1cj.etx + texmf-dist/tex/fontinst/latinetx/t1i.etx + texmf-dist/tex/fontinst/latinetx/t1ij.etx + texmf-dist/tex/fontinst/latinetx/t1j.etx + texmf-dist/tex/fontinst/latinetx/txtfdmns.etx + texmf-dist/tex/fontinst/latinmtx/8r.mtx + texmf-dist/tex/fontinst/latinmtx/8y.mtx + texmf-dist/tex/fontinst/latinmtx/latin.mtx + texmf-dist/tex/fontinst/latinmtx/latinsc.mtx + texmf-dist/tex/fontinst/latinmtx/llbuild.mtx + texmf-dist/tex/fontinst/latinmtx/lsbuild.mtx + texmf-dist/tex/fontinst/latinmtx/lsfake.mtx + texmf-dist/tex/fontinst/latinmtx/lsmisc.mtx + texmf-dist/tex/fontinst/latinmtx/ltcmds.mtx + texmf-dist/tex/fontinst/latinmtx/ltpunct.mtx + texmf-dist/tex/fontinst/latinmtx/lubuild.mtx + texmf-dist/tex/fontinst/latinmtx/newlatin.mtx + texmf-dist/tex/fontinst/latinmtx/resetsc.mtx + texmf-dist/tex/fontinst/latinmtx/unsetalf.mtx + texmf-dist/tex/fontinst/mathetx/euex.etx + texmf-dist/tex/fontinst/mathetx/eufrak.etx + texmf-dist/tex/fontinst/mathetx/eurm.etx + texmf-dist/tex/fontinst/mathetx/euscr.etx + texmf-dist/tex/fontinst/mathetx/msam.etx + texmf-dist/tex/fontinst/mathetx/msbm.etx + texmf-dist/tex/fontinst/mathetx/oml.etx + texmf-dist/tex/fontinst/mathetx/oms.etx + texmf-dist/tex/fontinst/mathetx/omx.etx + texmf-dist/tex/fontinst/mathetx/rsfs.etx + texmf-dist/tex/fontinst/mathmtx/mathex.mtx + texmf-dist/tex/fontinst/mathmtx/mathit.mtx + texmf-dist/tex/fontinst/mathmtx/mathsy.mtx + texmf-dist/tex/fontinst/misc/csc2x.tex + texmf-dist/tex/fontinst/misc/csckrn2x.tex + texmf-dist/tex/fontinst/misc/glyphbox.mtx + texmf-dist/tex/fontinst/misc/glyphoff.mtx + texmf-dist/tex/fontinst/misc/glyphon.mtx + texmf-dist/tex/fontinst/misc/kernoff.mtx + texmf-dist/tex/fontinst/misc/kernon.mtx + texmf-dist/tex/fontinst/misc/osf2x.tex + texmf-dist/tex/fontinst/smbletx/digit2.etx + texmf-dist/tex/fontinst/smbletx/ts1.etx + texmf-dist/tex/fontinst/smbletx/ts1i.etx + texmf-dist/tex/fontinst/smbletx/ts1ij.etx + texmf-dist/tex/fontinst/smbletx/ts1j.etx + texmf-dist/tex/fontinst/smblmtx/resetosf.mtx + texmf-dist/tex/fontinst/smblmtx/textcomp.mtx + texmf-dist/tex/fontinst/smblmtx/unsetnum.mtx + texmf-dist/tex/latex/fontinst/fontdoc.sty +catalogue-ctan /fonts/utilities/fontinst +catalogue-license lppl +catalogue-topics font-cvt +catalogue-version 1.933 + +name fontinst.aarch64-linux +category Package +revision 53554 +shortdesc aarch64-linux files of fontinst +containersize 348 +containerchecksum 73f484de99fb7f2f2161dd7b7570419f81277b95ac1efa214d9222f1000d9cb817b00f9bd5c0b33a904bb03ea6008d8b51a388d823fedcdb2cd77ea042cc020c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/fontinst + +name fontinst.amd64-freebsd +category Package +revision 53554 +shortdesc amd64-freebsd files of fontinst +containersize 348 +containerchecksum c3b693548509988eaec7812aa13e51c3649975527b09936c402417f075ed64898752b9e0380b7d011bd0c9b8257953bf293580e9bd99ec942028ed0a03ed9337 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/fontinst + +name fontinst.amd64-netbsd +category Package +revision 53554 +shortdesc amd64-netbsd files of fontinst +containersize 348 +containerchecksum 32e4eacf70c70f085cf34ed59d87ba84b5a20a402451446f280ea7d16255ef641d7b3eea5dbe09e26d7d66fa69a58cde244d78b29c89488870b24c6f3358289d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/fontinst + +name fontinst.armhf-linux +category Package +revision 53554 +shortdesc armhf-linux files of fontinst +containersize 348 +containerchecksum 097185ac42be371bfb02f58292962d143c8185a4dfd711cb171c34d00c5bc965867a31b2475b0594a40bef19c76cae321c3f8d7f2a7b534b16ff862777661666 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/fontinst + +name fontinst.i386-cygwin +category Package +revision 53554 +shortdesc i386-cygwin files of fontinst +containersize 344 +containerchecksum 61602e4703163c99d37f74d046b7d2bce1b032f1118c70d897cb7fca91463d95597667cde1ca8eddaf1cf76d69f89303e20d56febc0ad1333f39b8fec5b42101 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/fontinst + +name fontinst.i386-freebsd +category Package +revision 53554 +shortdesc i386-freebsd files of fontinst +containersize 348 +containerchecksum cb1376256521c9ba0ea0449a994b5cedf41dc09d5d106ff57cfcd61ad3b08d0836c0233322002b25c3a60fbb2e55a19cf4b51b5f5ac9708448382c53ef973ea9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/fontinst + +name fontinst.i386-linux +category Package +revision 53554 +shortdesc i386-linux files of fontinst +containersize 348 +containerchecksum 9181610bdeb7225ee586cf5e19a2f9cca63e2e9cbbf07400228df855d51e4e2553da3d5f3ccf8bd2d3dd95a24d976d1dc6f184ba3ab2c52f3932d6e15170eb8d +binfiles arch=i386-linux size=1 + bin/i386-linux/fontinst + +name fontinst.i386-netbsd +category Package +revision 53554 +shortdesc i386-netbsd files of fontinst +containersize 348 +containerchecksum 149203e53dab1929fd3a0fea0513c5e89fd261cc9e1fbabd139b899a3b119cc27576e40e0133a21c351a386cbe02e1e6403a99d2814c4e58e09ce96b8f3ab7cb +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/fontinst + +name fontinst.i386-solaris +category Package +revision 53554 +shortdesc i386-solaris files of fontinst +containersize 344 +containerchecksum 57213db38252eaba98d7c5f79f54b62d332774686bcdcbf640b413e52f6f34383355ec23aa56098e7c413bb7c83f507a2d66f4050ad091a403f9792f9d0c0f00 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/fontinst + +name fontinst.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of fontinst +containersize 352 +containerchecksum 380989805d340aaf424218648ad0ae2b69885beee8820ede54af5321087b36d17c123637e74e4dbab9d60b86122f0f2774b177b0a7d1fcabeabcaf79fabf7a68 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/fontinst + +name fontinst.x86_64-cygwin +category Package +revision 53554 +shortdesc x86_64-cygwin files of fontinst +containersize 348 +containerchecksum cddee80fd395aeb28a06075d7b5df5fdcc7cf43e9f2e8a422e60f81d26e19ddf168eeac35963469f1bf6be72bc4d0b3978c457a37301bab446cae05aa559e8df +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/fontinst + +name fontinst.x86_64-darwinlegacy +category Package +revision 53554 +shortdesc x86_64-darwinlegacy files of fontinst +containersize 356 +containerchecksum 689ed60ad6582f254e6c4172dc619a3b35be1a00d30058e3c8cd222b49398e21738d1dba1c4a9b698771df48d7a63064c01eb704f2e55cad691b23a4695a76c7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/fontinst + +name fontinst.x86_64-linux +category Package +revision 53554 +shortdesc x86_64-linux files of fontinst +containersize 348 +containerchecksum 3ba40e14e26bd712042b60d8b7096a8938228d3877bc4d17a6b4c37e058f9a00c8a107ac7bc3676b4b034385bf246a28b51b0a1f16de33fc09577b7d5f5abb6e +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/fontinst + +name fontinst.x86_64-linuxmusl +category Package +revision 53554 +shortdesc x86_64-linuxmusl files of fontinst +containersize 352 +containerchecksum 12b338da89a4b733a1a992c101566f272a166bd97acde5e5393731995ce9fada8143bff881fe8dac925251c1015d1a0fa6c5a79857eade3a4e5a6e60b03b3404 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/fontinst + +name fontinst.x86_64-solaris +category Package +revision 53554 +shortdesc x86_64-solaris files of fontinst +containersize 348 +containerchecksum 6b31219414460c7943e88b13d2446dc29bec74508fbf3484a8c16334cb7497bc63d5590d283ece98c7e562d98aaf6139cbe9b2cf0f36ffb8d3815a7ddf314550 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/fontinst + +name fontmfizz +category Package +revision 43546 +shortdesc Font Mfizz icons for use in LaTeX +relocated 1 +longdesc The MFizz font provides scalable vector icons representing +longdesc programming languages, operating systems, software engineering, +longdesc and technology. It can be seen as an extension to FontAwesome. +longdesc This package requires the fontspec package and either the +longdesc Xe(La)TeX or Lua(La)TeX engine to load the included ttf font. +containersize 39608 +containerchecksum 43febb41a8bd7b0a89a2b60b52f9b83e0d0fa8303c0a7986658a95c93307ba6642fe07f8ac935ccb50b3047bc74100cc7268fde438d3ff80c944ac59afa6e3df +doccontainersize 55148 +doccontainerchecksum 6dc0f6c10d44a17d42d8ed4148f39bf89c84dd5a3a672755340456b0ab983b1b52cbd3bb62cd6f5ef4c3f6dfed8a39568d5ca35598c4b016483fcf7d3cdeb360 +docfiles size=17 + RELOC/doc/fonts/fontmfizz/LICENSE + RELOC/doc/fonts/fontmfizz/README details="Readme" + RELOC/doc/fonts/fontmfizz/fontmfizz.pdf details="List of symbols" + RELOC/doc/fonts/fontmfizz/fontmfizz.tex +runfiles size=21 + RELOC/fonts/truetype/public/fontmfizz/font-mfizz.ttf + RELOC/tex/latex/fontmfizz/fontmfizz.sty +catalogue-also fontawesome +catalogue-contact-repository https://github.com/kdungs/latex-fontmfizz/ +catalogue-ctan /fonts/fontmfizz +catalogue-license mit +catalogue-topics font font-supp-symbol font-symbol font-ttf + +name fontname +category Package +revision 53228 +shortdesc Scheme for naming fonts in TeX +relocated 1 +longdesc The scheme for assigning names is described (in the +longdesc documentation part of the package), and map files giving the +longdesc relation between foundry name and 'TeX-name' are also provided. +containersize 108532 +containerchecksum 97b85e6a11136049f54f611e8b4eda75fe097addb2b70edff263e5e4c124e0e05976407572468b7590a3c7fb41e53c0c5fe495ab922a3553c0c6d3fd5067ffdf +doccontainersize 679580 +doccontainerchecksum 4c981cbaff6dd6a700b5b4c323396676539aab8bacf44781de560ef226557182f3be5e573a7a2be98a1ccd7ca4f47fb7ad4b847184b8a18e3aeeca62077223f1 +docfiles size=781 + RELOC/doc/fonts/fontname/8a.html + RELOC/doc/fonts/fontname/8r.html + RELOC/doc/fonts/fontname/Adobe-fonts.html + RELOC/doc/fonts/fontname/Apple-fonts.html + RELOC/doc/fonts/fontname/Bitstream-fonts.html + RELOC/doc/fonts/fontname/ChangeLog + RELOC/doc/fonts/fontname/DTC-fonts.html + RELOC/doc/fonts/fontname/Encodings.html + RELOC/doc/fonts/fontname/Filenames-for-fonts.html + RELOC/doc/fonts/fontname/Font-legalities.html + RELOC/doc/fonts/fontname/Font-name-lists.html + RELOC/doc/fonts/fontname/History.html + RELOC/doc/fonts/fontname/ITC-fonts.html + RELOC/doc/fonts/fontname/Introduction.html + RELOC/doc/fonts/fontname/Linotype-fonts.html + RELOC/doc/fonts/fontname/Long-names.html + RELOC/doc/fonts/fontname/Long-naming-scheme.html + RELOC/doc/fonts/fontname/Makefile + RELOC/doc/fonts/fontname/Monotype-fonts.html + RELOC/doc/fonts/fontname/Name-mapping-file.html + RELOC/doc/fonts/fontname/References.html + RELOC/doc/fonts/fontname/Standard-PostScript-fonts.html + RELOC/doc/fonts/fontname/Suppliers.html + RELOC/doc/fonts/fontname/Typefaces.html + RELOC/doc/fonts/fontname/URW-fonts.html + RELOC/doc/fonts/fontname/Variants.html + RELOC/doc/fonts/fontname/Weights.html + RELOC/doc/fonts/fontname/Widths.html + RELOC/doc/fonts/fontname/bitstrea.aka + RELOC/doc/fonts/fontname/cork.html + RELOC/doc/fonts/fontname/dvips.html + RELOC/doc/fonts/fontname/fontname.aux + RELOC/doc/fonts/fontname/fontname.cp + RELOC/doc/fonts/fontname/fontname.html details="Outline of the mapping scheme (HTML)" + RELOC/doc/fonts/fontname/fontname.pdf details="Outline of the mapping scheme (PDF)" + RELOC/doc/fonts/fontname/fontname.texi + RELOC/doc/fonts/fontname/fontname.toc + RELOC/doc/fonts/fontname/index.html + RELOC/doc/fonts/fontname/texmext.html + RELOC/doc/fonts/fontname/texmital.html + RELOC/doc/fonts/fontname/texmsym.html + RELOC/doc/fonts/fontname/texnansi.html + RELOC/doc/fonts/fontname/texnansx.html + RELOC/doc/fonts/fontname/xl2.html + RELOC/doc/fonts/fontname/xt2.html + RELOC/doc/info/fontname.info +runfiles size=377 + RELOC/fonts/map/fontname/adobe.map + RELOC/fonts/map/fontname/apple.map + RELOC/fonts/map/fontname/bitstrea.map + RELOC/fonts/map/fontname/dtc.map + RELOC/fonts/map/fontname/itc.map + RELOC/fonts/map/fontname/linot-cd.map + RELOC/fonts/map/fontname/linotype-cd.map + RELOC/fonts/map/fontname/linotype.map + RELOC/fonts/map/fontname/monotype.map + RELOC/fonts/map/fontname/skey1250.map + RELOC/fonts/map/fontname/skey1555.map + RELOC/fonts/map/fontname/softkey-1250.map + RELOC/fonts/map/fontname/softkey-1555.map + RELOC/fonts/map/fontname/softkey.map + RELOC/fonts/map/fontname/special.map + RELOC/fonts/map/fontname/supplier.map + RELOC/fonts/map/fontname/texfonts.map + RELOC/fonts/map/fontname/typeface.map + RELOC/fonts/map/fontname/urw.map + RELOC/fonts/map/fontname/variant.map + RELOC/fonts/map/fontname/weight.map + RELOC/fonts/map/fontname/width.map + RELOC/fonts/map/fontname/yandy.map +catalogue-ctan /info/fontname +catalogue-license gpl +catalogue-topics font-doc + +name fontools +category Package +revision 58747 +shortdesc Tools to simplify using fonts (especially TT/OTF ones) +longdesc This package provides tools to simplify using OpenType fonts +longdesc with LaTeX. By far the most important program in this bundle is +longdesc autoinst: autoinst - a wrapper script around Eddie Kohler's +longdesc LCDF TypeTools. Autoinst aims to automate the installation of +longdesc OpenType fonts in LaTeX by calling the LCDF TypeTools (with the +longdesc correct options) for all fonts you wish to install, and +longdesc generating the necessary .fd and .sty files. In addition, this +longdesc bundle contains a few other, less important utilities: afm2afm +longdesc - re-encode .afm files, ot2kpx - extract kerning pairs from +longdesc OpenType fonts, splitttc - split an OpenType Collection file +longdesc (ttc or otc) into individual fonts. +depend fontools.ARCH +containersize 50108 +containerchecksum fed81ca7b52a51cd69be9ea8333ab7eb0210fab3517eb501d08ce933c7d926303a68b095654852de336b0fafa28a11b97517750418793dc61049c85ffb10ede0 +doccontainersize 129732 +doccontainerchecksum 7ee681471cfddf5dfd919057df7016ad097876c92890e68c4e5a01751210997a747192ccb38682a0565070bd90c471c27a6710bf5a09c7a205475ec01ecd0dc9 +docfiles size=56 + texmf-dist/doc/man/man1/afm2afm.1 + texmf-dist/doc/man/man1/afm2afm.man1.pdf + texmf-dist/doc/man/man1/autoinst.1 + texmf-dist/doc/man/man1/autoinst.man1.pdf + texmf-dist/doc/man/man1/ot2kpx.1 + texmf-dist/doc/man/man1/ot2kpx.man1.pdf + texmf-dist/doc/support/fontools/GPLv2.txt + texmf-dist/doc/support/fontools/README details="Bundle readme" + texmf-dist/doc/support/fontools/splitttc +runfiles size=62 + texmf-dist/fonts/enc/dvips/fontools/fontools_lgr.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_ly1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_oml.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_ot1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t2a.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t2b.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t2c.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t3.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_ts1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_ts3.enc + texmf-dist/scripts/fontools/afm2afm + texmf-dist/scripts/fontools/autoinst + texmf-dist/scripts/fontools/ot2kpx +catalogue-alias autoinst +catalogue-ctan /fonts/utilities/fontools +catalogue-license gpl2 +catalogue-topics font-devel + +name fontools.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of fontools +containersize 384 +containerchecksum c1e0b600c7406943b6b51286f639d1a4de7d79d90bedb1bbde4d54e2c1642dd0e5742c0865806de0f46ba478bc0d11b4ad8e1b9b786d4b9def032c10ce0948e2 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/afm2afm + bin/aarch64-linux/autoinst + bin/aarch64-linux/ot2kpx + +name fontools.amd64-freebsd +category Package +revision 25997 +shortdesc amd64-freebsd files of fontools +containersize 388 +containerchecksum f9bfdeb9d331b87f32aa3e3e727214907d35a8f82aecc41b791d2464c764d7bc853891b467c8388867fac55d3770675be10637a6749eefe5dfde511d0595a530 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/afm2afm + bin/amd64-freebsd/autoinst + bin/amd64-freebsd/ot2kpx + +name fontools.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of fontools +containersize 388 +containerchecksum 13944f6e952d7548d8d6ca10f7807ee550edabc939a5dab261cf88a3f36f60e924396d41afa1e9cca83ea5d464d667ce4bbf762652b09dbdb0842dd8a5dba615 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/afm2afm + bin/amd64-netbsd/autoinst + bin/amd64-netbsd/ot2kpx + +name fontools.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of fontools +containersize 384 +containerchecksum 520bb5a616d12fff21e29bce6c152b54afed7e81a4b46620593a454b3c4539512e803a42ffcb93913d59a34d151656e4362ae3a823094266198f4a347521b0ce +binfiles arch=armhf-linux size=3 + bin/armhf-linux/afm2afm + bin/armhf-linux/autoinst + bin/armhf-linux/ot2kpx + +name fontools.i386-cygwin +category Package +revision 25997 +shortdesc i386-cygwin files of fontools +containersize 384 +containerchecksum 131290555951e101833b46b4197a7cd5e52118b85d45e1e3691dd56b8415b050482ab70f05a59dea3a0252eb61a5b6aa8c708333707135075a2efb0cbb583f74 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/afm2afm + bin/i386-cygwin/autoinst + bin/i386-cygwin/ot2kpx + +name fontools.i386-freebsd +category Package +revision 25997 +shortdesc i386-freebsd files of fontools +containersize 388 +containerchecksum ee4dc5406db6f55105c2ae567177228dc2c22f949ba4624f7b8c1b8240a5858dca41aeb82a0647d1f29c9af357b88e4827d3f976c32d1a884f6f3d5d7ad6846b +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/afm2afm + bin/i386-freebsd/autoinst + bin/i386-freebsd/ot2kpx + +name fontools.i386-linux +category Package +revision 25997 +shortdesc i386-linux files of fontools +containersize 384 +containerchecksum 88af549e8f656d518ceb1f3e13f2a769b318adc102b9fda859706918bd30c4659a84a4126fa9fab7c681bac28fbc6bf042ed1fd0284f230068d091725bdca93b +binfiles arch=i386-linux size=3 + bin/i386-linux/afm2afm + bin/i386-linux/autoinst + bin/i386-linux/ot2kpx + +name fontools.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of fontools +containersize 384 +containerchecksum 5da5c588a27f74726d8ab047893faa5550b89b6fc4837be36df617315b3513dbda706d6b7ba09cedfe37fb627a60442dc6299dd9ac631b0c332ce0bae31dbe09 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/afm2afm + bin/i386-netbsd/autoinst + bin/i386-netbsd/ot2kpx + +name fontools.i386-solaris +category Package +revision 25997 +shortdesc i386-solaris files of fontools +containersize 384 +containerchecksum 28fa6afba85a4426e49091ba003b0ced8753a63f0ccbdf005766e5757deb1dff7fe2f19ce62024e80cea43cb1cce455e8cb2b3d6ef32225aa64218355bd7f6fa +binfiles arch=i386-solaris size=3 + bin/i386-solaris/afm2afm + bin/i386-solaris/autoinst + bin/i386-solaris/ot2kpx + +name fontools.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of fontools +containersize 388 +containerchecksum 100c464eb8e6d4ca3ce1353b316d46c2e9431cebe5830b8f5d9a9d8614be1d0ff9d673e25c147b38a7a8431fe7965bdd7b4ff9d58d82599260b0041534999ec0 +binfiles arch=universal-darwin size=3 + bin/universal-darwin/afm2afm + bin/universal-darwin/autoinst + bin/universal-darwin/ot2kpx + +name fontools.win32 +category Package +revision 25997 +shortdesc win32 files of fontools +containersize 728 +containerchecksum 44513712dca776dc08c7e7d150b118a95770f059839d185474509306d547646c626eb20abaac6e04b935a6c6e5912e74ffbbaef9180ac41ede7e111a74f69341 +binfiles arch=win32 size=3 + bin/win32/afm2afm.exe + bin/win32/autoinst.exe + bin/win32/ot2kpx.exe + +name fontools.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of fontools +containersize 388 +containerchecksum efdb5a8b98d2c992bbfbcd0ae8018bb8e8b18863f089da11b99af3ef28c698eba636f1c6e0acae15aacdab786b615fe7c712eee5b293c08b5b8d6b097d37cdc3 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/afm2afm + bin/x86_64-cygwin/autoinst + bin/x86_64-cygwin/ot2kpx + +name fontools.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of fontools +containersize 396 +containerchecksum 0f8a2c1eefe45f20137fa3b44387b2a80d76f95d02d4b20d3ded63a34970f0fe3b0e3623e62d382cb6ba9e3832e5f6a910fd494f22c28f862dfd894c226e71ad +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/afm2afm + bin/x86_64-darwinlegacy/autoinst + bin/x86_64-darwinlegacy/ot2kpx + +name fontools.x86_64-linux +category Package +revision 25997 +shortdesc x86_64-linux files of fontools +containersize 384 +containerchecksum acbb15b69e6a81e5d28aca9b6f36d639e0114f63d2aee04eb0575eacf5e26a17c488063a5fe1fbd7fb579fd9e4b59a11d97399b7dca84ab4d9f2121f49254ba1 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/afm2afm + bin/x86_64-linux/autoinst + bin/x86_64-linux/ot2kpx + +name fontools.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of fontools +containersize 392 +containerchecksum 14dee3c84566f3047efe631271e65b10e1c10ae12df844b1f1a07e97f65658b3ccb027733cf4a0c78838776db937ac293b69ab6252dd031f4c35636aa21dc8c3 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/afm2afm + bin/x86_64-linuxmusl/autoinst + bin/x86_64-linuxmusl/ot2kpx + +name fontools.x86_64-solaris +category Package +revision 25997 +shortdesc x86_64-solaris files of fontools +containersize 384 +containerchecksum 92ec0d59540e3ef21bda1679c1f1d59295aab6645ebc13f703d2c99c1dd6353d52f2309426d7f4ee5ddbb75feae85b6c3d081735737f0ad51d9e9c29b2cd0ac5 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/afm2afm + bin/x86_64-solaris/autoinst + bin/x86_64-solaris/ot2kpx + +name fonts-churchslavonic +category Package +revision 56350 +shortdesc Fonts for typesetting in Church Slavonic language +relocated 1 +longdesc The package provides Unicode-encoded OpenType fonts for Church +longdesc Slavonic which are intended for Unicode TeX engines only. +containersize 1610164 +containerchecksum 308101704643f3a028b4d58cbfb021ec05640370542e83faa6c0070fcf60c168f789a3a7f5ea50e6d2568faa2660f224488f188ea6fa30f649e8e013ce7a4025 +doccontainersize 293728 +doccontainerchecksum 856d1112c5929b361f5c3543455ac0f2ac1b8887bae8b7ce6e94540b1673ed815cb73aa08ab50617213c20bbc6fce86e84bf0a3bcb6521940c077e7c7a6a8469 +docfiles size=94 + RELOC/doc/fonts/fonts-churchslavonic/GPL.txt + RELOC/doc/fonts/fonts-churchslavonic/OFL.txt + RELOC/doc/fonts/fonts-churchslavonic/README details="Readme" + RELOC/doc/fonts/fonts-churchslavonic/deprecated.png + RELOC/doc/fonts/fonts-churchslavonic/fonts-churchslavonic.pdf details="Package documentation" + RELOC/doc/fonts/fonts-churchslavonic/fonts-churchslavonic.tex + RELOC/doc/fonts/fonts-churchslavonic/opentype.png +runfiles size=1094 + RELOC/fonts/opentype/public/fonts-churchslavonic/Acathist-Regular.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/CathismaUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/FedorovskUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/IndictionUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/MenaionUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/MezenetsUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/MonomakhUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/OglavieUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/PochaevskUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/PomorskyUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/PonomarUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/Shafarik-Regular.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/TriodionUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/VertogradUnicode.otf +catalogue-also churchslavonic +catalogue-contact-repository https://github.com/typiconman/fonts-cu +catalogue-ctan /fonts/fonts-churchslavonic +catalogue-license ofl +catalogue-topics font font-otf churchslavonic +catalogue-version 2.2 + +name fonts-tlwg +category Package +revision 54994 +shortdesc Thai fonts for LaTeX from TLWG +relocated 1 +longdesc A collection of free Thai fonts, supplied as FontForge sources, +longdesc and with LaTeX .fd files. +execute addMap nectec.map +execute addMap nf.map +execute addMap sipa.map +execute addMap tlwg.map +containersize 5024912 +containerchecksum 7239ecb9ffb0dea42d339b1f758c3c4c11f18b6850b5265296c04027922d5ec882d7ee2b6eaf4abb0d2e702ff349833adedc36dd18eac492e191f43da267fdc9 +doccontainersize 4600 +doccontainerchecksum a122c38181cb85964e6344c6652e20444e09943cab0d5a25580aaf4cb691cda33808972dbe3a7cfc7cb7970a7233741111fe52d93d51e3fe06615710be4089de +docfiles size=17 + RELOC/doc/fonts/fonts-tlwg/README.latex + RELOC/doc/fonts/fonts-tlwg/examples/testsans.tex + RELOC/doc/fonts/fonts-tlwg/examples/testscaled-120.tex + RELOC/doc/fonts/fonts-tlwg/examples/testscaled-65.tex + RELOC/doc/fonts/fonts-tlwg/examples/teststd.tex +srccontainersize 7630632 +srccontainerchecksum 901b278e652010001b05d485b8a1e1d339c5f69b957965b3bb54791b2ea91d4db5e3ad93d168ae909dde39fe3569b82ba998b372021c66fbd4292bc468f43ddf +srcfiles size=14630 + RELOC/source/fonts/fonts-tlwg/AUTHORS + RELOC/source/fonts/fonts-tlwg/COPYING + RELOC/source/fonts/fonts-tlwg/ChangeLog + RELOC/source/fonts/fonts-tlwg/ChangeLog.thai-ttf + RELOC/source/fonts/fonts-tlwg/GPL + RELOC/source/fonts/fonts-tlwg/INSTALL + RELOC/source/fonts/fonts-tlwg/Makefile.am + RELOC/source/fonts/fonts-tlwg/Makefile.in + RELOC/source/fonts/fonts-tlwg/NEWS + RELOC/source/fonts/fonts-tlwg/README + RELOC/source/fonts/fonts-tlwg/VERSION + RELOC/source/fonts/fonts-tlwg/aclocal.m4 + RELOC/source/fonts/fonts-tlwg/build-aux/git-version-gen + RELOC/source/fonts/fonts-tlwg/configure + RELOC/source/fonts/fonts-tlwg/configure.ac + RELOC/source/fonts/fonts-tlwg/fontconfig/64-01-tlwg-kinnari.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-02-tlwg-norasi.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-10-tlwg-loma.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-11-tlwg-waree.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-13-tlwg-garuda.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-14-tlwg-umpush.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-15-laksaman.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-21-tlwg-typo.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-22-tlwg-typist.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-23-tlwg-mono.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-garuda-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-kinnari-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-laksaman-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-umpush-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/Makefile.am + RELOC/source/fonts/fonts-tlwg/fontconfig/Makefile.in + RELOC/source/fonts/fonts-tlwg/install-sh + RELOC/source/fonts/fonts-tlwg/latex/Makefile.am + RELOC/source/fonts/fonts-tlwg/latex/Makefile.in + RELOC/source/fonts/fonts-tlwg/latex/README.latex + RELOC/source/fonts/fonts-tlwg/latex/examples/Makefile.am + RELOC/source/fonts/fonts-tlwg/latex/examples/Makefile.in + RELOC/source/fonts/fonts-tlwg/latex/examples/testsans.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/testscaled-120.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/testscaled-65.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/teststd.tex + RELOC/source/fonts/fonts-tlwg/latex/fonts-tlwg.sty + RELOC/source/fonts/fonts-tlwg/latex/lthgaruda.fd + RELOC/source/fonts/fonts-tlwg/latex/lthkinnari.fd + RELOC/source/fonts/fonts-tlwg/latex/lthlaksaman.fd + RELOC/source/fonts/fonts-tlwg/latex/lthloma.fd + RELOC/source/fonts/fonts-tlwg/latex/lthnorasi.fd + RELOC/source/fonts/fonts-tlwg/latex/lthpurisa.fd + RELOC/source/fonts/fonts-tlwg/latex/lthsawasdee.fd + RELOC/source/fonts/fonts-tlwg/latex/lthtlwg.enc + RELOC/source/fonts/fonts-tlwg/latex/lthttype.fd + RELOC/source/fonts/fonts-tlwg/latex/lthttypist.fd + RELOC/source/fonts/fonts-tlwg/latex/lthumpush.fd + RELOC/source/fonts/fonts-tlwg/latex/lthwaree.fd + RELOC/source/fonts/fonts-tlwg/latex/texfont.mk.am + RELOC/source/fonts/fonts-tlwg/latex/thai-dummy.afm + RELOC/source/fonts/fonts-tlwg/latex/thailigs.enc + RELOC/source/fonts/fonts-tlwg/missing + RELOC/source/fonts/fonts-tlwg/nectec/Loma-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Loma-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Loma-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Loma.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Makefile.am + RELOC/source/fonts/fonts-tlwg/nectec/Makefile.in + RELOC/source/fonts/fonts-tlwg/nf/Garuda-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nf/Garuda-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Garuda-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Garuda.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-BoldItalic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Italic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari.sfd + RELOC/source/fonts/fonts-tlwg/nf/Makefile.am + RELOC/source/fonts/fonts-tlwg/nf/Makefile.in + RELOC/source/fonts/fonts-tlwg/nf/Norasi-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-BoldItalic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-Italic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi.sfd + RELOC/source/fonts/fonts-tlwg/nf/README.1ST + RELOC/source/fonts/fonts-tlwg/scripts/Makefile.am + RELOC/source/fonts/fonts-tlwg/scripts/Makefile.in + RELOC/source/fonts/fonts-tlwg/scripts/engkernpairs.txt + RELOC/source/fonts/fonts-tlwg/scripts/gen-otf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-pfa.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-pfb.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-otf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-pfa.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-pfb.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-ttf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-ttf.py + RELOC/source/fonts/fonts-tlwg/scripts/gen-ttf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-ttf.py + RELOC/source/fonts/fonts-tlwg/scripts/gen-woff.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen.mk.am + RELOC/source/fonts/fonts-tlwg/scripts/thaikernpairs.txt + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-Bold.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-BoldItalic.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-Italic.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Makefile.am + RELOC/source/fonts/fonts-tlwg/sipa/Makefile.in + RELOC/source/fonts/fonts-tlwg/test-driver + RELOC/source/fonts/fonts-tlwg/tests/Makefile.am + RELOC/source/fonts/fonts-tlwg/tests/Makefile.in + RELOC/source/fonts/fonts-tlwg/tests/gen-pdfsample.sh + RELOC/source/fonts/fonts-tlwg/tests/test-otf.sh + RELOC/source/fonts/fonts-tlwg/tests/test-pfa.sh + RELOC/source/fonts/fonts-tlwg/tests/test-pfb.sh + RELOC/source/fonts/fonts-tlwg/tests/test-ttf.sh + RELOC/source/fonts/fonts-tlwg/tlwg/AUTHORS + RELOC/source/fonts/fonts-tlwg/tlwg/CREDITS + RELOC/source/fonts/fonts-tlwg/tlwg/Makefile.am + RELOC/source/fonts/fonts-tlwg/tlwg/Makefile.in + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/README.tlwgmono + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Light.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-LightOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree.sfd +runfiles size=2270 + RELOC/fonts/afm/public/fonts-tlwg/garuda.afm + RELOC/fonts/afm/public/fonts-tlwg/garuda_b.afm + RELOC/fonts/afm/public/fonts-tlwg/garuda_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/garuda_o.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_b.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_bi.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_i.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_o.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman_b.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman_bi.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman_i.afm + RELOC/fonts/afm/public/fonts-tlwg/loma.afm + RELOC/fonts/afm/public/fonts-tlwg/loma_b.afm + RELOC/fonts/afm/public/fonts-tlwg/loma_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/loma_o.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_b.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_bi.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_i.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_o.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa_b.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa_o.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee_b.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee_o.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype_b.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype_o.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist_b.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist_o.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_b.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_l.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_lo.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_o.afm + RELOC/fonts/afm/public/fonts-tlwg/waree.afm + RELOC/fonts/afm/public/fonts-tlwg/waree_b.afm + RELOC/fonts/afm/public/fonts-tlwg/waree_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/waree_o.afm + RELOC/fonts/enc/dvips/fonts-tlwg/lthtlwg.enc + RELOC/fonts/map/dvips/fonts-tlwg/nectec.map + RELOC/fonts/map/dvips/fonts-tlwg/nf.map + RELOC/fonts/map/dvips/fonts-tlwg/sipa.map + RELOC/fonts/map/dvips/fonts-tlwg/tlwg.map + RELOC/fonts/opentype/public/fonts-tlwg/Garuda-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Garuda-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Garuda-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Garuda.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-BoldItalic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-Italic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman-BoldItalic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman-Italic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-BoldItalic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-Italic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-Light.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-LightOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree.otf + RELOC/fonts/tfm/public/fonts-tlwg/garuda.tfm + RELOC/fonts/tfm/public/fonts-tlwg/garuda_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/garuda_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/garuda_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_l.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_lo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_l.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_lo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree_o.tfm + RELOC/fonts/type1/public/fonts-tlwg/garuda.pfb + RELOC/fonts/type1/public/fonts-tlwg/garuda_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/garuda_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/garuda_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_bi.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_i.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman_bi.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman_i.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_bi.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_i.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_l.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_lo.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree_o.pfb + RELOC/fonts/vf/public/fonts-tlwg/garuda.vf + RELOC/fonts/vf/public/fonts-tlwg/garuda_b.vf + RELOC/fonts/vf/public/fonts-tlwg/garuda_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/garuda_o.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_b.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_bi.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_i.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_o.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman_b.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman_bi.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman_i.vf + RELOC/fonts/vf/public/fonts-tlwg/loma.vf + RELOC/fonts/vf/public/fonts-tlwg/loma_b.vf + RELOC/fonts/vf/public/fonts-tlwg/loma_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/loma_o.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_b.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bi.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_i.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_o.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa_b.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa_o.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee_b.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee_o.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype_b.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype_o.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist_b.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist_o.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_b.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_l.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_lo.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_o.vf + RELOC/fonts/vf/public/fonts-tlwg/waree.vf + RELOC/fonts/vf/public/fonts-tlwg/waree_b.vf + RELOC/fonts/vf/public/fonts-tlwg/waree_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/waree_o.vf + RELOC/tex/latex/fonts-tlwg/fonts-tlwg.sty + RELOC/tex/latex/fonts-tlwg/lthgaruda.fd + RELOC/tex/latex/fonts-tlwg/lthkinnari.fd + RELOC/tex/latex/fonts-tlwg/lthlaksaman.fd + RELOC/tex/latex/fonts-tlwg/lthloma.fd + RELOC/tex/latex/fonts-tlwg/lthnorasi.fd + RELOC/tex/latex/fonts-tlwg/lthpurisa.fd + RELOC/tex/latex/fonts-tlwg/lthsawasdee.fd + RELOC/tex/latex/fonts-tlwg/lthttype.fd + RELOC/tex/latex/fonts-tlwg/lthttypist.fd + RELOC/tex/latex/fonts-tlwg/lthumpush.fd + RELOC/tex/latex/fonts-tlwg/lthwaree.fd +catalogue-contact-bugs https://github.com/tlwg/fonts-tlwg/issues +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-license gpl2+ lppl1.3 other-free +catalogue-topics font font-thai thai +catalogue-version 0.7.2 + +name fontsetup +category Package +revision 59079 +shortdesc A front-end to fontspec, for selected fonts with math support +relocated 1 +longdesc This package facilitates the use of fontspec for users who do +longdesc not wish to bother with details, with a special focus on +longdesc quality fonts supporting Mathematics. +containersize 6008 +containerchecksum a60aea22cd6ecaee2eb15c7441ccaf1175f088c1d99f73a58f0739fc31660b822edb1353d34cca40ec8c2be8852b0fe70ffc902c10200c77a856035f561272eb +doccontainersize 456368 +doccontainerchecksum e5559375e5378a5a71650f8d3d5ab36d7caf5aa8bd1a9b5311acfb9d903d3560330df8b74e2dd2509dd01d3798bc7d96fa1b76a9d815b6e8cf40558a94d32fbc +docfiles size=214 + RELOC/doc/latex/fontsetup/README details="Readme" + RELOC/doc/latex/fontsetup/fontsetup-doc.pdf details="Package documentation" + RELOC/doc/latex/fontsetup/fontsetup-doc.tex + RELOC/doc/latex/fontsetup/fspsample-cmr.pdf + RELOC/doc/latex/fontsetup/fspsample-ebgaramond.pdf + RELOC/doc/latex/fontsetup/fspsample-fira.pdf + RELOC/doc/latex/fontsetup/fspsample-gfsartemisia.pdf + RELOC/doc/latex/fontsetup/fspsample-gfsdidot.pdf + RELOC/doc/latex/fontsetup/fspsample-gfsdidotclassic.pdf + RELOC/doc/latex/fontsetup/fspsample-gfsneohellenic.pdf + RELOC/doc/latex/fontsetup/fspsample-kerkis.pdf + RELOC/doc/latex/fontsetup/fspsample-libertinus.pdf + RELOC/doc/latex/fontsetup/fspsample-neoeuler.pdf + RELOC/doc/latex/fontsetup/fspsample-newdefault.pdf + RELOC/doc/latex/fontsetup/fspsample-stixtwo.pdf + RELOC/doc/latex/fontsetup/fspsample-times.pdf + RELOC/doc/latex/fontsetup/fspsample.tex +runfiles size=17 + RELOC/tex/latex/fontsetup/fontsetup.sty + RELOC/tex/latex/fontsetup/fspdefault.sty + RELOC/tex/latex/fontsetup/fspebgaramondot.sty + RELOC/tex/latex/fontsetup/fspfiraot.sty + RELOC/tex/latex/fontsetup/fspgfsartemisiaot.sty + RELOC/tex/latex/fontsetup/fspgfsdidotclassicot.sty + RELOC/tex/latex/fontsetup/fspgfsdidotot.sty + RELOC/tex/latex/fontsetup/fspgfsneohellenicot.sty + RELOC/tex/latex/fontsetup/fspkerkisot.sty + RELOC/tex/latex/fontsetup/fspneoeulerot.sty + RELOC/tex/latex/fontsetup/fspolddefault.sty + RELOC/tex/latex/fontsetup/fspstixtwoot.sty + RELOC/tex/latex/fontsetup/fsptimesot.sty +catalogue-also fontsetup-nonfree +catalogue-ctan /macros/unicodetex/latex/fontsetup +catalogue-license gpl3 +catalogue-topics font-sel font-supp xetex luatex maths +catalogue-version 1.02 + +name fontsize +category Package +revision 58906 +shortdesc A small package to set arbitrary sizes for the main font of the document +relocated 1 +longdesc The package allows you to set arbitrary sizes for the main font +longdesc of the document, through the fontsize=<size> option. +containersize 4976 +containerchecksum 1f5f7af5b0ea951753d982a6f2ebf3b159b8a5a8ee993fdef4241e9608ba2ca6956691ff6c811a82303a5d69384008de1885ca525eb702ff7b8d23b49967ad7e +doccontainersize 398936 +doccontainerchecksum e0fc34a2aa013ba211fd47caf98829dececd830f11ae867498e445c66424a048312132f37a1ac7a9c3154003e852c000371d6f7e8db6117f167816d74306e8be +docfiles size=102 + RELOC/doc/latex/fontsize/README details="Readme" + RELOC/doc/latex/fontsize/fontsize.bib + RELOC/doc/latex/fontsize/fontsize.pdf details="Package documentation" +srccontainersize 14868 +srccontainerchecksum 184993572d347c963cdcdfcf56598863a0905bba6639092d6eca0b79f1e26a2630bbb1dafd6749f33709d4439ee6fcc2f6926b6d33ff2415012fd1010075bdf7 +srcfiles size=19 + RELOC/source/latex/fontsize/fontsize.dtx +runfiles size=10 + RELOC/tex/latex/fontsize/fontsize.sty +catalogue-ctan /macros/latex/contrib/fontsize +catalogue-license lppl1.3 +catalogue-topics font-supp-misc +catalogue-version 0.8.3 + +name fontspec +category Package +revision 56594 +shortdesc Advanced font selection in XeLaTeX and LuaLaTeX +relocated 1 +longdesc Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an +longdesc automatic and unified interface to feature-rich AAT and +longdesc OpenType fonts through the NFSS in LaTeX running on XeTeX or +longdesc LuaTeX engines. The package requires the l3kernel and xparse +longdesc bundles from the LaTeX3 development team. +depend euenc +depend iftex +depend l3kernel +depend l3packages +depend lm +depend xunicode +containersize 26788 +containerchecksum 5c2013702cb65edbbd8d6e2c94eb8e181c7400f55593771d48e790cd32d8651e2ccb8fb41d89dffe7fb7ddd3219745102ec1934ad0dc5a24701f2c6a29107078 +doccontainersize 1189088 +doccontainerchecksum bef134b11346e3d06e33fd9ff0c80fa6d904c8cd481d2c55702766cac2d9553298f05dee9e0b4b57238d1c9e140176fa26d29dcdaee990712fd4a3f0148b26fe +docfiles size=314 + RELOC/doc/latex/fontspec/CHANGES.md + RELOC/doc/latex/fontspec/LICENSE + RELOC/doc/latex/fontspec/README.md details="Package README" + RELOC/doc/latex/fontspec/fontspec-code.pdf + RELOC/doc/latex/fontspec/fontspec-example.tex + RELOC/doc/latex/fontspec/fontspec.pdf details="Package documentation" +srccontainersize 83048 +srccontainerchecksum b64ffed6c06042ffab0faeba22b0df184b2fd0d27f8b312c65b33967021b860915d0c73f1ac9e3a9ac3125c5c7238038790b5d73127d02cb2ed51c64fdfaffab +srcfiles size=118 + RELOC/source/latex/fontspec/fontspec-code-api.dtx + RELOC/source/latex/fontspec/fontspec-code-closing.dtx + RELOC/source/latex/fontspec/fontspec-code-enc.dtx + RELOC/source/latex/fontspec/fontspec-code-feat-aat.dtx + RELOC/source/latex/fontspec/fontspec-code-feat-opentype.dtx + RELOC/source/latex/fontspec/fontspec-code-fontload.dtx + RELOC/source/latex/fontspec/fontspec-code-graphite.dtx + RELOC/source/latex/fontspec/fontspec-code-interfaces.dtx + RELOC/source/latex/fontspec/fontspec-code-internal.dtx + RELOC/source/latex/fontspec/fontspec-code-keyval.dtx + RELOC/source/latex/fontspec/fontspec-code-lang.dtx + RELOC/source/latex/fontspec/fontspec-code-load.dtx + RELOC/source/latex/fontspec/fontspec-code-math.dtx + RELOC/source/latex/fontspec/fontspec-code-msg.dtx + RELOC/source/latex/fontspec/fontspec-code-opening.dtx + RELOC/source/latex/fontspec/fontspec-code-opentype.dtx + RELOC/source/latex/fontspec/fontspec-code-scripts.dtx + RELOC/source/latex/fontspec/fontspec-code-user.dtx + RELOC/source/latex/fontspec/fontspec-code-vars.dtx + RELOC/source/latex/fontspec/fontspec-code-xfss.dtx + RELOC/source/latex/fontspec/fontspec-code.ltx + RELOC/source/latex/fontspec/fontspec-doc-api.tex + RELOC/source/latex/fontspec/fontspec-doc-enc.tex + RELOC/source/latex/fontspec/fontspec-doc-featset.tex + RELOC/source/latex/fontspec/fontspec-doc-fontsel.tex + RELOC/source/latex/fontspec/fontspec-doc-intro.tex + RELOC/source/latex/fontspec/fontspec-doc-luatex.tex + RELOC/source/latex/fontspec/fontspec-doc-opentype.tex + RELOC/source/latex/fontspec/fontspec-doc-style.sty + RELOC/source/latex/fontspec/fontspec-doc-xetex.tex + RELOC/source/latex/fontspec/fontspec-example.tex + RELOC/source/latex/fontspec/fontspec-lua.dtx + RELOC/source/latex/fontspec/fontspec.dtx + RELOC/source/latex/fontspec/fontspec.ins + RELOC/source/latex/fontspec/fontspec.ltx +runfiles size=81 + RELOC/tex/latex/fontspec/fontspec-luatex.sty + RELOC/tex/latex/fontspec/fontspec-xetex.sty + RELOC/tex/latex/fontspec/fontspec.cfg + RELOC/tex/latex/fontspec/fontspec.lua + RELOC/tex/latex/fontspec/fontspec.sty +catalogue-contact-bugs https://github.com/wspr/fontspec/issues +catalogue-contact-repository https://github.com/wspr/fontspec/ +catalogue-ctan /macros/unicodetex/latex/fontspec +catalogue-license lppl1.3c +catalogue-topics font-sel luatex xetex +catalogue-version 2.7i + +name fonttable +category Package +revision 44799 +shortdesc Print font tables from a LaTeX document +relocated 1 +longdesc This is a package version of nfssfont.tex (part of the LaTeX +longdesc distribution); it enables you to print a table of the +longdesc characters of a font and/or some text (for demonstration or +longdesc testing purposes), from within a document. (Packages such as +longdesc testfont and nfssfont.tex provide these facilities, but they +longdesc run as interactive programs: the user is expected to type +longdesc details of what is needed.) Note that the package mftinc also +longdesc has a \fonttable function; the documentation explains how avoid +longdesc a clash with that package. +containersize 5752 +containerchecksum f8db43eedd7f9e43b0cfb8c37e2687321fe236daa4bee898141c305dd2e59fb40bf3e8b3cabde561c75fb65dd053de33e45b90a8ab9518b0b30aedf35f6af1f2 +doccontainersize 310452 +doccontainerchecksum 1d2b27ac253df62568087abb8f9e0f0054e3bb98cb62e65784192b281722e69e8565fa569eef4d061684e8965e0b05a0cd6dcbf7e632af7f68f97e8d4747426e +docfiles size=77 + RELOC/doc/latex/fonttable/README details="Readme" + RELOC/doc/latex/fonttable/fonttable.pdf details="Package documentation" +srccontainersize 14348 +srccontainerchecksum 56210bc42e0716196bed05a35ef9ff7ffb40a17a8cfe8cef4d31e2c8ea28bfb75ee035bb887ca62387460cb7f99eb4f2b408cea767ce824124116caa6ae7d15e +srcfiles size=13 + RELOC/source/latex/fonttable/fonttable.dtx + RELOC/source/latex/fonttable/fonttable.ins +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-license lppl1.3c +catalogue-topics font-devel +catalogue-version 1.6c + +name fontware +category TLCore +revision 57972 +catalogue vfware +shortdesc Tools for virtual font metrics +longdesc Virtual font metrics are usually created in a textual form, the +longdesc Virtual Property List, but programs that use them need to use +longdesc binary files (the Virtual Font and the TeX Font Metric). The +longdesc present two programs translate between the two forms: - vptovf +longdesc takes a VPL file and generates a VF file and a TFM file; - +longdesc vftovp takes a VF file and a TFM file and generates a VPL file. +longdesc The programs are to be found in every distribution of TeX. +depend fontware.ARCH +containersize 656 +containerchecksum 3e0dbb5ec5b2c1a616afdb209c9733c65786d59c621e43095a21ca5c1478815937361314fcbb9a161eaec8abd5acc5a05b1107cdf5919d152d01f318789a41cb +doccontainersize 68900 +doccontainerchecksum c76d1c81a72743c59ea37ef7bbd71ac7e49793cebf38eccd36c5dfeaf591ff7073beb4de8692fa5bd2ea453588582d50316a34818137e70673a701a7e4b4796d +docfiles size=27 + texmf-dist/doc/man/man1/pltotf.1 + texmf-dist/doc/man/man1/pltotf.man1.pdf + texmf-dist/doc/man/man1/tftopl.1 + texmf-dist/doc/man/man1/tftopl.man1.pdf + texmf-dist/doc/man/man1/vftovp.1 + texmf-dist/doc/man/man1/vftovp.man1.pdf + texmf-dist/doc/man/man1/vptovf.1 + texmf-dist/doc/man/man1/vptovf.man1.pdf +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/etc +catalogue-license knuth +catalogue-topics font-supp + +name fontware.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of fontware +containersize 99140 +containerchecksum cdfb5d72a61c9eb9610663f2d062feb360cafe594a0a255118de9ca1ffbc7bc1772cad82b6c657ff761c146067083dee93d7e5759467c23df02f82681824656b +binfiles arch=aarch64-linux size=98 + bin/aarch64-linux/pltotf + bin/aarch64-linux/tftopl + bin/aarch64-linux/vftovp + bin/aarch64-linux/vptovf + +name fontware.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of fontware +containersize 116376 +containerchecksum 2ef44ea49db87d5d34d918875d376906d1a67eeeffaa4fc5f40f7b71ddb9324ae9fa3b90a5530568c21ccee35541515083ecf7bee4834ba960da36a48ab4fd5e +binfiles arch=amd64-freebsd size=105 + bin/amd64-freebsd/pltotf + bin/amd64-freebsd/tftopl + bin/amd64-freebsd/vftovp + bin/amd64-freebsd/vptovf + +name fontware.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of fontware +containersize 99436 +containerchecksum dacc248144d517f29bd2b84c498c6fd4f3cfbb1a9ca3e58d0ab423e19fd74fd1a1e9c6e94f0231da197b6dcfd4f2011e3130b1c3846c7966b8d54caf4ab9d9dc +binfiles arch=amd64-netbsd size=114 + bin/amd64-netbsd/pltotf + bin/amd64-netbsd/tftopl + bin/amd64-netbsd/vftovp + bin/amd64-netbsd/vptovf + +name fontware.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of fontware +containersize 79944 +containerchecksum a562ef4caeda366855c2f391238aa536681430a19092197fa1e8a2ba9e7c6671115ca57b424ca2c4f1b27fb68e0a8236b06d4135a1908d688b23ba484c729450 +binfiles arch=armhf-linux size=78 + bin/armhf-linux/pltotf + bin/armhf-linux/tftopl + bin/armhf-linux/vftovp + bin/armhf-linux/vptovf + +name fontware.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of fontware +containersize 55900 +containerchecksum ddb02e0043dcf3bbb368a7161321d8fede990fa1df1b9a5d080809b9c7c1dc196d553d854f4bc717b399714f6e4e78545619b9dd49bbb17bcd7b5d9fda91f4a1 +binfiles arch=i386-cygwin size=54 + bin/i386-cygwin/pltotf.exe + bin/i386-cygwin/tftopl.exe + bin/i386-cygwin/vftovp.exe + bin/i386-cygwin/vptovf.exe + +name fontware.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of fontware +containersize 97612 +containerchecksum f7bb3e3ec3853b965fa07b947f555f22926ab6692605dda8c117e6663764df80f7718ec9553e76dcd16c727f2eef572537d920392ec7f712fb12c4dc53ccec7a +binfiles arch=i386-freebsd size=92 + bin/i386-freebsd/pltotf + bin/i386-freebsd/tftopl + bin/i386-freebsd/vftovp + bin/i386-freebsd/vptovf + +name fontware.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of fontware +containersize 97304 +containerchecksum 6741780ed1e191f44a63ea629e434949c4930914d4a788477cb16d74f59fff1d31c36ccfac9b79c690f7e7d67cab88da17bbf185460ba06e7a2f6efd9c6469ec +binfiles arch=i386-linux size=96 + bin/i386-linux/pltotf + bin/i386-linux/tftopl + bin/i386-linux/vftovp + bin/i386-linux/vptovf + +name fontware.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of fontware +containersize 83848 +containerchecksum c5817716eb2b7ced68788648d9195293c6f2e69f9cb230a9c1ebb0200d8705a40f8b14526d58fb2c36b245391848d9c2801c8827d790c5563866ce044b592bb3 +binfiles arch=i386-netbsd size=107 + bin/i386-netbsd/pltotf + bin/i386-netbsd/tftopl + bin/i386-netbsd/vftovp + bin/i386-netbsd/vptovf + +name fontware.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of fontware +containersize 103632 +containerchecksum 9b05fc6e2374b67342cc741abd3508697136ef7e09ed8a70328958dd1393801b0cffee241ce764c5c6fb59d82c6c87c8cca515ecc7d8fa4bb8b131dff5b137aa +binfiles arch=i386-solaris size=95 + bin/i386-solaris/pltotf + bin/i386-solaris/tftopl + bin/i386-solaris/vftovp + bin/i386-solaris/vptovf + +name fontware.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of fontware +containersize 209092 +containerchecksum c1f4ee0014c268f4f7dd71467da0217a3717960ff61801ffd061a8f6be567f6e96f74f36b72a83a2da8c17f042ed81cb41041dd97f2db16fdc709f5dc39e0a37 +binfiles arch=universal-darwin size=292 + bin/universal-darwin/pltotf + bin/universal-darwin/tftopl + bin/universal-darwin/vftovp + bin/universal-darwin/vptovf + +name fontware.win32 +category TLCore +revision 58783 +shortdesc win32 files of fontware +containersize 58216 +containerchecksum e35428ca8bbc7ad141f10d73066963cd6d4a62b132101f90f8ab120f8de898d5460a7bc3e66daf05996fdefbfed1c071374073ed09e294c6a50d073ad693cc6f +binfiles arch=win32 size=49 + bin/win32/pltotf.exe + bin/win32/tftopl.exe + bin/win32/vftovp.exe + bin/win32/vptovf.exe + +name fontware.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of fontware +containersize 64356 +containerchecksum b10acbf6aa4e7e47dc5312031f28a032bdcaf6f2bba9e67565ef707344126dc89e5a03377051b7e382f09e2338b22eff9807c4953ff1e8fe95f7a7fb078380e6 +binfiles arch=x86_64-cygwin size=52 + bin/x86_64-cygwin/pltotf.exe + bin/x86_64-cygwin/tftopl.exe + bin/x86_64-cygwin/vftovp.exe + bin/x86_64-cygwin/vptovf.exe + +name fontware.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of fontware +containersize 100428 +containerchecksum 1c28946564e846aaec8ee16e040152f1b26487112c8c37d380cc557794c2170454e75dc0ea445e783b1bab05ee94a8691e37475696a0ab7aec8004be20bafc5d +binfiles arch=x86_64-darwinlegacy size=92 + bin/x86_64-darwinlegacy/pltotf + bin/x86_64-darwinlegacy/tftopl + bin/x86_64-darwinlegacy/vftovp + bin/x86_64-darwinlegacy/vptovf + +name fontware.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of fontware +containersize 101780 +containerchecksum 08ff796748e27014c6172ba13e2980f176afd74c230e35f33f44f02acb300049af5044cd057139bd87d2db31f7544a754cf4e5854efd094820bcd5d486a2323e +binfiles arch=x86_64-linux size=86 + bin/x86_64-linux/pltotf + bin/x86_64-linux/tftopl + bin/x86_64-linux/vftovp + bin/x86_64-linux/vptovf + +name fontware.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of fontware +containersize 106092 +containerchecksum e4369202c5eeb178f76d5121e72ee7149e7d645805c15ac679015c8d7baf57e65133d55e634294e186d6244628034eb0e39707ab69fda20aefd3b036c130008c +binfiles arch=x86_64-linuxmusl size=96 + bin/x86_64-linuxmusl/pltotf + bin/x86_64-linuxmusl/tftopl + bin/x86_64-linuxmusl/vftovp + bin/x86_64-linuxmusl/vptovf + +name fontware.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of fontware +containersize 115280 +containerchecksum 8767637c5f0eb57a58b05ae1a0b26ab99ba361b39f36bbae525669c47ba3dafa2ba6657cd39991f2af9ef1d796d45c6c69c1d17aed246f90fae8bf27a0f3ebb4 +binfiles arch=x86_64-solaris size=102 + bin/x86_64-solaris/pltotf + bin/x86_64-solaris/tftopl + bin/x86_64-solaris/vftovp + bin/x86_64-solaris/vptovf + +name fontwrap +category Package +revision 15878 +shortdesc Bind fonts to specific unicode blocks +relocated 1 +longdesc The package (which runs under XeLaTeX) lets you bind fonts to +longdesc specific unicode blocks, for automatic font tagging of +longdesc multilingual text. The package uses Perl (via perltex) to +longdesc construct its tables. +containersize 12740 +containerchecksum 5bad0487f5cfa4119d7baafccc6178925baea12f1cbed5912211c52f2c4ea01eb00f9dacd300c24b93f48e5f13197a86ba1e37c35ed69fb1031281fdeb08edf2 +doccontainersize 270912 +doccontainerchecksum 857be54c81d9bfb14277c17638ec24c643c278d660b56e18a4701aea0ad28e496df0aec191b12d93bb29b7ab326b39ad9cc7ddc3615871d1b70fdf6e44ccdc6e +docfiles size=77 + RELOC/doc/xelatex/fontwrap/README details="Readme" + RELOC/doc/xelatex/fontwrap/fontwrap.pdf details="Package documentation" + RELOC/doc/xelatex/fontwrap/fontwrap.tex + RELOC/doc/xelatex/fontwrap/fontwrap_example.pdf details="Examples of use" + RELOC/doc/xelatex/fontwrap/fontwrap_example.tex +runfiles size=18 + RELOC/tex/xelatex/fontwrap/fontwrap.sty +catalogue-ctan /macros/xetex/latex/fontwrap +catalogue-license gpl +catalogue-topics font-sel font-supp unicode + +name footbib +category Package +revision 17115 +shortdesc Bibliographic references as footnotes +relocated 1 +longdesc The package makes bibliographic references appear as footnotes. +longdesc It defines a command \footcite which is similar to the LaTeX +longdesc \cite command but the references cited in this way appear at +longdesc the bottom of the pages. This 'foot bibliography' does not +longdesc conflict with the standard one and both may exist +longdesc simultaneously in a document. The command \cite may still be +longdesc used to produce the standard bibliography. The foot +longdesc bibliography uses its own style and bibliographic database +longdesc which may be specified independently of the standard one. Any +longdesc standard bibliography style may be used. +containersize 6692 +containerchecksum 0cadef58331d5d51aeba1f69d0c9ceae99104f7c31ea79e0f5dee33c8612bc52cd0c8551abc6da1799705c879cc88535b46e4ef15232d3c4a0f7136e0fe46e05 +doccontainersize 196308 +doccontainerchecksum 27d1f0e6bf0ef526f2b3c4852c53b78fc60fc10ec526796447940565ad75fab023406bd28548170f7382e822c3b0f43d96181233bc772ea58f8ac195f71cf495 +docfiles size=57 + RELOC/doc/latex/footbib/README details="Readme" + RELOC/doc/latex/footbib/footbib.pdf details="Package documentation" +srccontainersize 22456 +srccontainerchecksum 120d5c14a1b12b15a39792d2cae0bfee5b1695af1c014708c65d61eba6f2fd52f17e2b61b576e192a2d2a9abfb3aa2e059fcd9ca17e48e8a3ee6e9cc2150f119 +srcfiles size=24 + RELOC/source/latex/footbib/footbib.dtx + RELOC/source/latex/footbib/footbib.ins +runfiles size=7 + RELOC/tex/latex/footbib/footbib.sty +catalogue-also jurabib +catalogue-ctan /macros/latex/contrib/footbib +catalogue-license lppl +catalogue-topics cite-foot +catalogue-version 2.0.7 + +name footmisc +category Package +revision 23330 +shortdesc A range of footnote options +relocated 1 +longdesc A collection of ways to change the typesetting of footnotes. +longdesc The package provides means of changing the layout of the +longdesc footnotes themselves (including setting them in 'paragraphs' -- +longdesc the para option), a way to number footnotes per page (the +longdesc perpage option), to make footnotes disappear in a 'moving' +longdesc argument (stable option) and to deal with multiple references +longdesc to footnotes from the same place (multiple option). The package +longdesc also has a range of techniques for labelling footnotes with +longdesc symbols rather than numbers. Some of the functions of the +longdesc package are overlap with the functionality of other packages. +longdesc The para option is also provided by the manyfoot and bigfoot +longdesc packages, though those are both also portmanteau packages. +longdesc (Don't be seduced by fnpara, whose implementation is improved +longdesc by the present package.) The perpage option is also offered by +longdesc footnpag and by the rather more general-purpose perpage +containersize 5904 +containerchecksum 50d0d02b243936d2455ad2353c0da1b77aab9f8f822033a98062d979b686163b94798784dc6b8496dda3ef38eadbd04a21e153f0fa9a76b499c50159c169fb85 +doccontainersize 325412 +doccontainerchecksum 3a732fe8a1ca364275a7b0849be097e307ba322ff611a650a4625cc47792410b974055c75165b62ec8d5d2a128b0d6a194d798248bcd6bae266c7638ffe67e01 +docfiles size=81 + RELOC/doc/latex/footmisc/README details="Readme" + RELOC/doc/latex/footmisc/footmisc.pdf details="Package documentation" language="en" +srccontainersize 19772 +srccontainerchecksum 3489b4c09a145ba19d25120a48368470d65c2407a8c5697946ae669fdd63f0dc7176ea171ccd2a815055a6fc16f02523f7b2ca084c60159c1768a8a3b2eccf11 +srcfiles size=20 + RELOC/source/latex/footmisc/footmisc.dtx + RELOC/source/latex/footmisc/footmisc.ins +runfiles size=7 + RELOC/tex/latex/footmisc/footmisc.sty +catalogue-also endnotes ftnright footmisx +catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues +catalogue-ctan /macros/latex/contrib/footmisc +catalogue-license lppl1.3 +catalogue-topics footnote +catalogue-version 5.5b + +name footmisx +category Package +revision 42621 +shortdesc A range of footnote options +relocated 1 +longdesc This a fork of footmisc package allowing to use hyperref. Here +longdesc is a copy of the description of package footmisc: A collection +longdesc of ways to change the typesetting of footnotes. The package +longdesc provides means of changing the layout of the footnotes +longdesc themselves (including setting them in 'paragraphs' -- the para +longdesc option), a way to number footnotes per page (the perpage +longdesc option), to make footnotes disappear in a 'moving' argument +longdesc (stable option) and to deal with multiple references to +longdesc footnotes from the same place (multiple option). The package +longdesc also has a range of techniques for labelling footnotes with +longdesc symbols rather than numbers. Some of the functions of the +longdesc package are overlap with the functionality of other packages. +longdesc The para option is also provided by the manyfoot and bigfoot +longdesc packages, though those are both also portmanteau packages. +longdesc (Don't be seduced by fnpara, whose implementation is improved +longdesc by the present package.) The perpage option is also offered by +longdesc footnpag and by the rather more general-purpose perpage +containersize 6048 +containerchecksum 591f181c8103ebd7a86440b27992df9eaea91d5998caa0f52dbfa48b7afc4791ef8c1f5a95d85b7cafd56113726beb74268b7498ec489d7b3142dcdf7f07adba +doccontainersize 396 +doccontainerchecksum 8c36c6eb169a804769ece280c2210949db96bbe57d6dacc1a0952fc1338d619334d3d8b46cbaa3dcac09e05a0c015f37146d8bed315238b5e918c373b2b42155 +docfiles size=1 + RELOC/doc/latex/footmisx/README details="Readme" +srccontainersize 19832 +srccontainerchecksum 5b069985c3a55240d762ee67a1da66895c304b5ac82bc0ce80c9e5fe9e77906cc0810dcb11c39b3ab63ce39f5d52964b7fb3319d49c0b18c85bc1410bad84ae2 +srcfiles size=20 + RELOC/source/latex/footmisx/footmisx.dtx + RELOC/source/latex/footmisx/footmisx.ins +runfiles size=7 + RELOC/tex/latex/footmisx/footmisx.sty +catalogue-also endnotes ftnright +catalogue-ctan /macros/latex/contrib/footmisx +catalogue-license lppl1.3 +catalogue-topics footnote +catalogue-version 20161201 + +name footnotebackref +category Package +revision 27034 +shortdesc Back-references from footnotes +relocated 1 +longdesc The package provides the means of creating hyperlinks, from a +longdesc footnote at the bottom of the page, back to the occurence of +longdesc the footnote in the main text. +containersize 1572 +containerchecksum 8c18d95a4c74a7fe2ea4cc98df6bdb6813d9cf8323e44474330f03694758ee53da46d0d691164f6d90b2148a7cf9dc253dbc93548a3b33df3b0344096e4a90c9 +doccontainersize 112100 +doccontainerchecksum 685484323b721c5277aeaa041b1d40b0d4675bc901a371f36dbff6246063252bca69261748a096919c7345a4a6e6284a6093068555bb43eb92fbf7cfea41facc +docfiles size=32 + RELOC/doc/latex/footnotebackref/README details="Readme" + RELOC/doc/latex/footnotebackref/footnotebackref.pdf details="Package documentation" + RELOC/doc/latex/footnotebackref/footnotebackref.tex +runfiles size=1 + RELOC/tex/latex/footnotebackref/footnotebackref.sty +catalogue-ctan /macros/latex/contrib/footnotebackref +catalogue-license lppl1.3 +catalogue-topics footnote hyper +catalogue-version 1.0 + +name footnotehyper +category Package +revision 57618 +shortdesc hyperref aware footnote.sty +relocated 1 +longdesc The footnote package by Mark Wooding dates back to 1997 and has +longdesc not been made hyperref compatible. The aim of the present +longdesc package is to do that. +containersize 3372 +containerchecksum bac7b7ce8ec3f74d85e0182f1d65fd0c365c16426fcc725407e1d8146ebc15422fe2e10f20570e68802ae2ac405aecf55ec3dff45e7e6c1bca7b57059e0dd6d2 +doccontainersize 78640 +doccontainerchecksum 6fb3d09ca9c5dfaddedfa2c332634a0b846ffd95f67c1d00346f2d2dab60354a8678315f8987bfd13427909f0d489653f465e03252e84eac13048dbbbde9e6b7 +docfiles size=22 + RELOC/doc/latex/footnotehyper/README.md details="Readme" + RELOC/doc/latex/footnotehyper/footnotehyper.pdf details="Package documentation" + RELOC/doc/latex/footnotehyper/footnotehyper.tex +srccontainersize 15120 +srccontainerchecksum f881ccb20f056ce3bec35061105f93e520a32565c26a5a8a89623ed5c644d6a6510683e4fb099a32492530f2751f043f65ca29c768b0eb0fae959872ac74b820 +srcfiles size=13 + RELOC/source/latex/footnotehyper/footnotehyper.dtx +runfiles size=3 + RELOC/tex/latex/footnotehyper/footnotehyper.sty +catalogue-also footnote +catalogue-ctan /macros/latex/contrib/footnotehyper +catalogue-license lppl1.3c +catalogue-topics footnote macro-supp +catalogue-version 1.1d + +name footnoterange +category Package +revision 52910 +shortdesc References to ranges of footnotes +relocated 1 +longdesc The package provides the environments footnoterange and +longdesc footnoterange*. Multiple footnotes inside these environments +longdesc are not referenced as (e.g.) "1 2 3" but as "1-3", i.e., the +longdesc range (from first to last referred footnote at that place) is +longdesc given. If the hyperref package is loaded with enabled +longdesc hyperfootnotes-option, then the references are hyperlinked. +longdesc (References to footnotes in footnoterange* environments are +longdesc never hyperlinked.) +containersize 2624 +containerchecksum 6d1a5ae7982aa9f928d09dbe0dc8cb3fcae5894bd8d0eace4590a7627d476dd32c9c91dd2d68aa9a9428b7258b305b13911421f0834b694fe828654aafcc4eb7 +doccontainersize 402812 +doccontainerchecksum eb31ded0bf2112afd6c278456701690a0a7d846af6bd1f28721bb6db4e67b8a83e2ec67b6876fb05315430d9d1d400ae4b5dd7e04f5bfeecde322ec6aa84e30d +docfiles size=102 + RELOC/doc/latex/footnoterange/README details="Readme" + RELOC/doc/latex/footnoterange/footnoterange-example.pdf + RELOC/doc/latex/footnoterange/footnoterange.pdf details="Package documentation" +srccontainersize 10844 +srccontainerchecksum 1cd3a85585772bfe701cbd25f45ed5a94e476d48c9c2efe5868b4d7d2a41c3add423a51238ee793c0cf8d4f65767e9c2b9e0c0c19603259f61e221aa40935b35 +srcfiles size=13 + RELOC/source/latex/footnoterange/footnoterange.drv + RELOC/source/latex/footnoterange/footnoterange.dtx + RELOC/source/latex/footnoterange/footnoterange.ins +runfiles size=2 + RELOC/tex/latex/footnoterange/footnoterange.sty +catalogue-also footmisc +catalogue-ctan /macros/latex/contrib/footnoterange +catalogue-license lppl1.3c +catalogue-topics footnote label-ref +catalogue-version 1.0c + +name footnpag +category Package +revision 15878 +shortdesc Per-page numbering of footnotes +relocated 1 +longdesc Allows footnotes on individual pages to be numbered from 1, +longdesc rather than being numbered sequentially through the document. +containersize 7732 +containerchecksum a1ce9661f0f6a69d1709ea053fd548aed428a9cc8ef0445b9c4b897eeef349bb9767c219f5d860ab4d7d264982c1f4404d33619c80dec8411350bb965b19d709 +doccontainersize 53212 +doccontainerchecksum f83c9cc0701c63dbd5d3b7dd6038e1bb2c427e6edaca05b814778592587b066af3c4f7f12646f7b2ff7cc1c2ab8d2ffd99480dbfe72e50c9bce907e8e2d4c509 +docfiles size=40 + RELOC/doc/latex/footnpag/CATALOG + RELOC/doc/latex/footnpag/History + RELOC/doc/latex/footnpag/INSTALL + RELOC/doc/latex/footnpag/Imakefile + RELOC/doc/latex/footnpag/License + RELOC/doc/latex/footnpag/MANIFEST + RELOC/doc/latex/footnpag/README details="Readme" + RELOC/doc/latex/footnpag/TODO + RELOC/doc/latex/footnpag/footnpag-doc.sty + RELOC/doc/latex/footnpag/footnpag-user.pdf details="Package documentation" + RELOC/doc/latex/footnpag/footnpag-user.tex + RELOC/doc/latex/footnpag/footnpag.doc + RELOC/doc/latex/footnpag/test/Imakefile + RELOC/doc/latex/footnpag/test/eqnarray-fnmark.tex + RELOC/doc/latex/footnpag/test/late.tex + RELOC/doc/latex/footnpag/test/many.tex + RELOC/doc/latex/footnpag/test/minipage.tex + RELOC/doc/latex/footnpag/test/report.tex + RELOC/doc/latex/footnpag/test/title-2col.tex +srccontainersize 924 +srccontainerchecksum a44b0ba4ef7b6328d6d307eca25c34d494000a238c69fec3686a55057ff56ae1ada7cacc763ff1cd26aaa83962257442060fbd795c76d61f92761bd66be81378 +srcfiles size=1 + RELOC/source/latex/footnpag/Makefile +runfiles size=5 + RELOC/tex/latex/footnpag/footnpag.sty +catalogue-also footmisc +catalogue-ctan /macros/latex/contrib/footnpag +catalogue-license gpl +catalogue-topics footnote + +name forarray +category Package +revision 15878 +shortdesc Using array structures in LaTeX +relocated 1 +longdesc The package provides functionality for processing lists and +longdesc array structures in LaTeX. Arrays can contain characters as +longdesc well as TeX and LaTeX commands, nesting of arrays is possible, +longdesc and arrays are processed within the same brace level as their +longdesc surrounding environment. Array levels can be delimited by +longdesc characters or control sequences defined by the user. Practical +longdesc uses of this package include data management, construction of +longdesc lists and tables, and calculations based on the contents of +longdesc lists and arrays. +containersize 5064 +containerchecksum f818d0899fcba2d61ad119698d3633a28d5300098a4bd56a82b7b1c9cfc12c47a9457efed7cbdf8aee3ba9ba4143eefbdd54bc995c84c9bbe99dd5717030bef5 +doccontainersize 246748 +doccontainerchecksum e292418f60b290bf0567ea70169d66557a8408b2933221e0658d6d8e807b6495258a6ea33d65d14e13129ff8e58dc9cb50115459b014ec00e0b084f3d3fd55fd +docfiles size=97 + RELOC/doc/latex/forarray/README.txt details="Readme" + RELOC/doc/latex/forarray/forarray + RELOC/doc/latex/forarray/forarray-test.pdf + RELOC/doc/latex/forarray/forarray-test.tex + RELOC/doc/latex/forarray/forarray.dtm + RELOC/doc/latex/forarray/forarray.dts + RELOC/doc/latex/forarray/forarray.pdf details="Package documentation" +srccontainersize 14416 +srccontainerchecksum 4a9574868753faa19d0e80bd08c524445a015bcafe241a85d59832fb308981d12dd133fa64e65804ac5c3d86617046f06a17a4667e8cb382676dfbadd6f012a0 +srcfiles size=19 + RELOC/source/latex/forarray/forarray.dtx +runfiles size=5 + RELOC/tex/latex/forarray/forarray.sty +catalogue-ctan /macros/latex/contrib/forarray +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.01 + +name foreign +category Package +revision 27819 +shortdesc Systematic treatment of 'foreign' words in documents +relocated 1 +longdesc The package supports authors' use of consistent typesetting of +longdesc foreign words in documents. +containersize 1740 +containerchecksum e886be0cbbb64b11b6c54d6b62d6b38db1bb7e65b7a3a9cc951ad71d4cc1a93c323d8a1e17ba863daa6535c747c9801b06bc4d3c664bfb8da38518a9c93d45b0 +doccontainersize 81432 +doccontainerchecksum d3804dd1b83ba173e4098696656c814629ff099699f332c3b81136c4519bd577aaabd4d2601893f88a58009f00e8c8ba44fcf2c4a3b72ce90af4d4febb510ec6 +docfiles size=26 + RELOC/doc/latex/foreign/README details="Readme" + RELOC/doc/latex/foreign/foreign.pdf details="Package documentation" +srccontainersize 6180 +srccontainerchecksum d91bd89508318df931629678cdd0415da8baed9efcb55f965d71e26a61db705acc6abe14c6f7c17b61f54e32ae123ecd48cd018920b1f43626559e2b0b4a3c16 +srcfiles size=6 + RELOC/source/latex/foreign/foreign.dtx + RELOC/source/latex/foreign/foreign.ins +runfiles size=2 + RELOC/tex/latex/foreign/foreign.sty +catalogue-ctan /macros/latex/contrib/foreign +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 2.7 + +name forest +category Package +revision 57398 +shortdesc Drawing (linguistic) trees +relocated 1 +longdesc The package provides a PGF/TikZ-based mechanism for drawing +longdesc linguistic (and other kinds of) trees. Its main features are: a +longdesc packing algorithm which can produce very compact trees; a +longdesc user-friendly interface consisting of the familiar bracket +longdesc encoding of trees plus the key-value interface to +longdesc option-setting; many tree-formatting options, with control over +longdesc option values of individual nodes and mechanisms for their +longdesc manipulation; the possibility to decorate the tree using the +longdesc full power of PGF/TikZ; and an externalization mechanism +longdesc sensitive to code-changes. +depend elocalloc +depend environ +depend etoolbox +depend inlinedef +depend l3packages +depend pgf +depend pgfopts +containersize 56176 +containerchecksum edc3341b84e7e89fba3bb76004562c0bc889f944ed33474ba9cf5ed5e63a690202e851a30f44158caa8351b874b8e91659bd91c50d59ec43de9460869e4213f1 +doccontainersize 1798192 +doccontainerchecksum fdaec77023176fc2f7510a9e3b4dcc587898e1f96886340222f932c0d93b1002ad35fba8a38a036f713e41814f3dc6b3f75a5657ae485b15ffea43089895bcae +docfiles size=532 + RELOC/doc/latex/forest/LICENCE + RELOC/doc/latex/forest/README details="Readme" + RELOC/doc/latex/forest/forest-doc.pdf details="Package documentation" + RELOC/doc/latex/forest/forest-doc.tex + RELOC/doc/latex/forest/forest.pdf + RELOC/doc/latex/forest/tex.bib +srccontainersize 76248 +srccontainerchecksum 45f912d17d29568e6ee267814d63bc14c20bb0d91c62b39c21301dd611c50db3b5f7de5f16b519da0f2b4d15609727144c34b16a620abb85114a42344cdaf24f +srcfiles size=118 + RELOC/source/latex/forest/forest-doc.ins + RELOC/source/latex/forest/forest-index.dtx + RELOC/source/latex/forest/forest-libs.dtx + RELOC/source/latex/forest/forest.dtx + RELOC/source/latex/forest/forest.ins +runfiles size=100 + RELOC/makeindex/forest/forest-doc.ist + RELOC/tex/latex/forest/forest-compat.sty + RELOC/tex/latex/forest/forest-doc.sty + RELOC/tex/latex/forest/forest-index.sty + RELOC/tex/latex/forest/forest-lib-edges.sty + RELOC/tex/latex/forest/forest-lib-linguistics.sty + RELOC/tex/latex/forest/forest.sty +catalogue-also forest-quickstart +catalogue-contact-repository https://github.com/sasozivanovic/forest +catalogue-ctan /graphics/pgf/contrib/forest +catalogue-license lppl1.3 +catalogue-topics tree pgf-tikz linguistic +catalogue-version 2.1.5 + +name forest-quickstart +category Package +revision 55688 +shortdesc Quickstart Guide for Linguists package "forest" +relocated 1 +longdesc forest is a PGF/TikZ-based package for drawing linguistic (and +longdesc other kinds of) trees. This manual provides a quickstart guide +longdesc for linguists with just the essential things that you need to +longdesc get started. +containersize 472 +containerchecksum 52e77fa1a6aca02eb15838d7c04e37744cb4f37f0bb078fa571c1309244fc329d92b553f3e7c62f574561929b5e4964b71cd2cca3d17d4f9d13f9bdb9b0ab8b5 +doccontainersize 106464 +doccontainerchecksum 974a0d0e5a5e7e640e4e18cc5eb59b5a10efa7c5ab4f81e2915e9bbea30bcd68323cf95c62891ce1711d822336e5ee054735761a474d186e3c9f11fd4dcf6f9a +docfiles size=32 + RELOC/doc/latex/forest-quickstart/README.md details="Readme" + RELOC/doc/latex/forest-quickstart/forest-quickstart.pdf details="Package documentation" + RELOC/doc/latex/forest-quickstart/forest-quickstart.tex +catalogue-also forest +catalogue-ctan /info/forest-quickstart +catalogue-license fdl +catalogue-topics linguistic docu-pkg + +name forloop +category Package +revision 15878 +shortdesc Iteration in LaTeX +relocated 1 +longdesc The package provides a command \forloop for doing iteration in +longdesc LaTeX macro programming. +containersize 1268 +containerchecksum a9cfda31fc63d24737a5b422e9fc7072bd1f75c0926cb45d26ea3cdb7cfb50b3f74d7602964a08f13d216f3fb3798acd21f04bdcfe85a3e3652052b9f2cbc9cb +doccontainersize 70472 +doccontainerchecksum 49bb7031207902366fbd0924a025c692ba015af134ca38c90c43e8efe7a9522ee4db4cb9b071dd00681251ad07b4587cd49eb9e09bc77f1ad5632838fac686d6 +docfiles size=22 + RELOC/doc/latex/forloop/README details="Package README" + RELOC/doc/latex/forloop/forloop.pdf details="Package documentation" +srccontainersize 2576 +srccontainerchecksum f41a62a677f37a57c96a398d48cee84d213ccc23fbffe7f2da6c09e8f58d8b9524d3b53717b9657004e7de0083f43960c0ebd54de3696994d8e946d8044399e4 +srcfiles size=3 + RELOC/source/latex/forloop/forloop.dtx + RELOC/source/latex/forloop/forloop.ins +runfiles size=1 + RELOC/tex/latex/forloop/forloop.sty +catalogue-ctan /macros/latex/contrib/forloop +catalogue-license lgpl +catalogue-topics macro-iterate macro-supp +catalogue-version 3.0 + +name formation-latex-ul +category Package +revision 56714 +shortdesc Introductory LaTeX course in French +relocated 1 +longdesc This package contains the supporting documentation, slides, +longdesc exercise files, and templates for an introductory LaTeX course +longdesc (in French) prepared for Universite Laval, Quebec, Canada. +containersize 532 +containerchecksum 30e38c93cf692aea977479159780ffa797535c938fbb0551c86979f61f459d571cf78526a5ddd435b22e850e45fd6fb33ccd6a8308a170bff034ab3d29c63318 +doccontainersize 2929500 +doccontainerchecksum 3f8744fb5c3554a256a3585cfc8f0339bbe91ff94b959fc02f2afd25466333ca54003b1183ba7e770f49e296807367ba33f809424921fd437f9773cc5aaeaf6c +docfiles size=789 + RELOC/doc/latex/formation-latex-ul/CONTRIBUTING.md + RELOC/doc/latex/formation-latex-ul/LICENSE + RELOC/doc/latex/formation-latex-ul/NEWS + RELOC/doc/latex/formation-latex-ul/README.md details="Readme" + RELOC/doc/latex/formation-latex-ul/b-a-ba-math.tex + RELOC/doc/latex/formation-latex-ul/console-screenshot.pdf + RELOC/doc/latex/formation-latex-ul/emacs.tex + RELOC/doc/latex/formation-latex-ul/exercice_classe+paquetages.tex + RELOC/doc/latex/formation-latex-ul/exercice_commandes.tex + RELOC/doc/latex/formation-latex-ul/exercice_complet.tex + RELOC/doc/latex/formation-latex-ul/exercice_demo.tex + RELOC/doc/latex/formation-latex-ul/exercice_gabarit.tex + RELOC/doc/latex/formation-latex-ul/exercice_include.tex + RELOC/doc/latex/formation-latex-ul/exercice_mathematiques.tex + RELOC/doc/latex/formation-latex-ul/exercice_minimal.tex + RELOC/doc/latex/formation-latex-ul/exercice_parties.tex + RELOC/doc/latex/formation-latex-ul/exercice_renvois.tex + RELOC/doc/latex/formation-latex-ul/exercice_subcaption.tex + RELOC/doc/latex/formation-latex-ul/exercice_trucs.tex + RELOC/doc/latex/formation-latex-ul/exercice_ulthese.tex + RELOC/doc/latex/formation-latex-ul/formation-latex-ul-diapos.pdf details="The course itself (Slides)" language="fr" + RELOC/doc/latex/formation-latex-ul/formation-latex-ul.pdf details="The course itself (Manual)" language="fr" + RELOC/doc/latex/formation-latex-ul/pagetitre.tex +srccontainersize 2353768 +srccontainerchecksum 52d36951555b74a8091efe64f5bb6790917fc3346a79d660f1f7c45793512efc86c935d13bcc88f0dae714223ea5af3a02b32b062880f117009bb99727fd8dbf +srcfiles size=729 + RELOC/source/latex/formation-latex-ul/apparence-diapos.tex + RELOC/source/latex/formation-latex-ul/apparence.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-article.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-article.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-book.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-book.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-report.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-report.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-autoref.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-autoref.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-hyperref.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-hyperref.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-titre.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-titre.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exercice_commandes-solution.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exercice_commandes-solution.tex + RELOC/source/latex/formation-latex-ul/bases-diapos.tex + RELOC/source/latex/formation-latex-ul/bases.tex + RELOC/source/latex/formation-latex-ul/bibliographie.tex + RELOC/source/latex/formation-latex-ul/boites.tex + RELOC/source/latex/formation-latex-ul/colophon-diapos.tex + RELOC/source/latex/formation-latex-ul/colophon.tex + RELOC/source/latex/formation-latex-ul/commandes.tex + RELOC/source/latex/formation-latex-ul/couverture-arriere-diapos.tex + RELOC/source/latex/formation-latex-ul/couverture-arriere.tex + RELOC/source/latex/formation-latex-ul/couverture-avant-diapos.tex + RELOC/source/latex/formation-latex-ul/couverture-avant.tex + RELOC/source/latex/formation-latex-ul/formation-latex-ul-diapos.tex + RELOC/source/latex/formation-latex-ul/formation-latex-ul.bib + RELOC/source/latex/formation-latex-ul/formation-latex-ul.tex + RELOC/source/latex/formation-latex-ul/francais.bst + RELOC/source/latex/formation-latex-ul/images/Suricates_Namibia-2-diapos.jpeg + RELOC/source/latex/formation-latex-ul/images/Suricates_Namibia-2.jpeg + RELOC/source/latex/formation-latex-ul/images/bibtex-texmaker.png + RELOC/source/latex/formation-latex-ul/images/bibtex-texshop.png + RELOC/source/latex/formation-latex-ul/images/by-sa.pdf + RELOC/source/latex/formation-latex-ul/images/by.pdf + RELOC/source/latex/formation-latex-ul/images/exemple-bibliographie-cropped-1.pdf + RELOC/source/latex/formation-latex-ul/images/exemple-bibliographie-cropped-2.pdf + RELOC/source/latex/formation-latex-ul/images/exemple-bibliographie-cropped-3.pdf + RELOC/source/latex/formation-latex-ul/images/exercice_commandes-solution.pdf + RELOC/source/latex/formation-latex-ul/images/formation-latex-ul.png + RELOC/source/latex/formation-latex-ul/images/knuth.jpg + RELOC/source/latex/formation-latex-ul/images/ponctuation.pdf + RELOC/source/latex/formation-latex-ul/images/sa.pdf + RELOC/source/latex/formation-latex-ul/images/section-non-num.pdf + RELOC/source/latex/formation-latex-ul/images/section-num.pdf + RELOC/source/latex/formation-latex-ul/images/tdm-dans-pdf.pdf + RELOC/source/latex/formation-latex-ul/images/ul_p.pdf + RELOC/source/latex/formation-latex-ul/images/xyz-emph.pdf + RELOC/source/latex/formation-latex-ul/images/xyz-math.pdf + RELOC/source/latex/formation-latex-ul/introduction.tex + RELOC/source/latex/formation-latex-ul/listings/exemple-bibliographie.bib + RELOC/source/latex/formation-latex-ul/listings/exemple-bibliographie.tex + RELOC/source/latex/formation-latex-ul/mathematiques-diapos.tex + RELOC/source/latex/formation-latex-ul/mathematiques.tex + RELOC/source/latex/formation-latex-ul/notices-diapos.tex + RELOC/source/latex/formation-latex-ul/notices.tex + RELOC/source/latex/formation-latex-ul/organisation-diapos.tex + RELOC/source/latex/formation-latex-ul/organisation.tex + RELOC/source/latex/formation-latex-ul/prerequis-diapos.tex + RELOC/source/latex/formation-latex-ul/presentation-diapos.tex + RELOC/source/latex/formation-latex-ul/presentation.tex + RELOC/source/latex/formation-latex-ul/solutions.tex + RELOC/source/latex/formation-latex-ul/suite-diapos.tex + RELOC/source/latex/formation-latex-ul/tableaux+figures.tex + RELOC/source/latex/formation-latex-ul/tableaux-diapos.tex + RELOC/source/latex/formation-latex-ul/trucs+astuces.tex + RELOC/source/latex/formation-latex-ul/ulthese.tex +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-license cc-by-4 +catalogue-topics course-material tut-latex french-doc +catalogue-version 2020.10 + +name formlett +category Package +revision 21480 +shortdesc Letters to multiple recipients +relocated 1 +longdesc A package for multiple letters from the same basic source; the +longdesc package offers parametrisation of the letters actually sent. +containersize 15972 +containerchecksum 9d984435565a9354d03f7ef1307d543e3a0bd3a8d398f6dec426f7ae16fe3c6b20e60cfb5daeca7be092427606b5a5886a31dc05d023d0f26d61aa1c07be4b8a +doccontainersize 352480 +doccontainerchecksum 8eee17c77620f48319e862f2e7d8ae4b979c84250dd17f33cae9db52b1f219f2f86c690969a783648ee3979f24ef58e410cee47afcb12bcd26e4278af4625c6c +docfiles size=115 + RELOC/doc/generic/formlett/prog_manual.pdf details="Programmers manual" + RELOC/doc/generic/formlett/prog_manual.tex + RELOC/doc/generic/formlett/user_manual.pdf details="User manual" + RELOC/doc/generic/formlett/user_manual.tex +runfiles size=17 + RELOC/tex/generic/formlett/formlett.sty +catalogue-also akletter dinbrief envlab +catalogue-ctan /macros/generic/formlett +catalogue-license gpl +catalogue-topics letter +catalogue-version 2.3 + +name forms16be +category Package +revision 51305 +shortdesc Initialize form properties using big-endian encoding +relocated 1 +longdesc This package provides support for UTF-16BE Unicode character +longdesc encoding (called a big-endian character string) for the text +longdesc string type (PDF Reference, version 1.7, beginning on page +longdesc 158). Text strings are used in "text annotations, bookmark +longdesc names, article threads, document information, and so forth" (to +longdesc partially quote page 158). The particular application is to set +longdesc property values of form fields, at least those properties that +longdesc take the text strings as its value. The package contains +longdesc support for Basic Latin plus the ability to enter any unicode +longdesc character using the notation \uXXXX, where XXXX are four hex +longdesc digits. The Package works for dvips/Distiller, pdfLaTeX, +longdesc LuaLaTeX, and XeLaTeX. +containersize 2176 +containerchecksum 9d8b0c7aa2314c81afe09cdd9ba3455e3ff7e3000fa9de0e99da935b282c3d32bc60aa7f97a27450ce999ff101b606fadae3dbb4965cbfc1d4a8ca5c29eb719e +doccontainersize 1448984 +doccontainerchecksum 52bedc12e5ad33ac78c906f9d60284ed079b0f6d66e578f826c946c28de3996c70da0b11284e774ad56196875b3bd166962eeead9282f3d71f6c6a0d4a8cba68 +docfiles size=381 + RELOC/doc/latex/forms16be/README.md details="Readme" + RELOC/doc/latex/forms16be/doc/forms16be-man.pdf details="Package documentation" + RELOC/doc/latex/forms16be/doc/forms16be-man.tex + RELOC/doc/latex/forms16be/examples/forms16be-ap.tex + RELOC/doc/latex/forms16be/examples/forms16be-ef.pdf + RELOC/doc/latex/forms16be/examples/forms16be-ef.tex + RELOC/doc/latex/forms16be/examples/forms16be-hy.tex +srccontainersize 4984 +srccontainerchecksum 19e3efc0f73c919c7e74eaabc4b7f9b70be4dc2776b22719eec4f373e180f3ff736ac3ddc26209acfc9f9f9de9c594467cb6f67899f21f563386a44ff58c9135 +srcfiles size=5 + RELOC/source/latex/forms16be/forms16be.dtx + RELOC/source/latex/forms16be/forms16be.ins +runfiles size=2 + RELOC/tex/latex/forms16be/forms16be.sty + RELOC/tex/latex/forms16be/uni4basic-latin.def +catalogue-ctan /macros/latex/contrib/forms16be +catalogue-license lppl1.2 +catalogue-topics form-fillin pdf-feat adobe-distiller +catalogue-version 1.3 + +name formular +category Package +revision 15878 +shortdesc Create forms containing field for manual entry +relocated 1 +longdesc When typesetting forms there often arises the need for defining +longdesc fields which consist of one or more lines where the customer +longdesc can write something down manually. This package offers some +longdesc commands for defining such fields in a distinctive way. +containersize 3240 +containerchecksum 0be09e33fc3cf97552dc9e960979447de61c53bea46205a52b37094f7ce39f10309f559dc99c0037392d4924bb688e27bc8d26e5f6fc69dfbc3d3c41736223ab +doccontainersize 129364 +doccontainerchecksum 09550cdf735f340a13c9104b86b37dfca67e39c277ec9f98bab08754f393368bea8379019c402662b7e7df351636e44814bb45c0970cb24db10bf3efdd9dd7c7 +docfiles size=39 + RELOC/doc/latex/formular/README details="Readme" + RELOC/doc/latex/formular/formular.pdf details="Package documentation" +srccontainersize 8208 +srccontainerchecksum 12a7c774c2b6638d610c3277246ced4c8946f0393527ecd0da101481b1b85d1418537019962f86aa8b7657a0159f7c210acb3eea1386e8a528a09428619f0b6f +srcfiles size=9 + RELOC/source/latex/formular/formular.dtx + RELOC/source/latex/formular/formular.ins +runfiles size=3 + RELOC/tex/latex/formular/formular.sty +catalogue-ctan /macros/latex/contrib/formular +catalogue-license lppl +catalogue-topics form-fillin +catalogue-version 1.0a + +name forum +category Package +revision 56025 +shortdesc Forum fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Forum font, designed by Denis Masharov. Forum +longdesc has antique, classic "Roman" proportions. It can be used to set +longdesc body texts and works well in titles and headlines too. It is +longdesc truly multilingual, with glyphs for Central and Eastern Europe, +longdesc Baltics, Cyrillic and Asian Cyrillic communities. There is +longdesc currently just a regular weight and an artificially emboldened +longdesc bold. +execute addMap forum.map +containersize 675572 +containerchecksum fafb6f261a58546c717cd37dd0d5bc3f22b4342d28a62f6cb5dff8132993dc0a4081681e1ad2acdd96421b8d758b7079028b50507586e66dbd80fa6adb0cb180 +doccontainersize 27440 +doccontainerchecksum b4b86a30087dfb1d8a3fb2edc9535926717e07ce619ab7ecfd709b93abb1ed4535893bbc6a0b40c9dc93f16f5c556639f8875bc1ae8183e38715aa383efd6a29 +docfiles size=10 + RELOC/doc/fonts/forum/OFL.txt + RELOC/doc/fonts/forum/README details="Readme" + RELOC/doc/fonts/forum/forum-samples.pdf details="Font samples" + RELOC/doc/fonts/forum/forum-samples.tex +runfiles size=364 + RELOC/fonts/enc/dvips/forum/frm_acf3pt.enc + RELOC/fonts/enc/dvips/forum/frm_b5i5mx.enc + RELOC/fonts/enc/dvips/forum/frm_brq6mf.enc + RELOC/fonts/enc/dvips/forum/frm_e2otk2.enc + RELOC/fonts/enc/dvips/forum/frm_fx2ufv.enc + RELOC/fonts/enc/dvips/forum/frm_jsuphk.enc + RELOC/fonts/enc/dvips/forum/frm_smvvub.enc + RELOC/fonts/enc/dvips/forum/frm_ylkcu6.enc + RELOC/fonts/map/dvips/forum/forum.map + RELOC/fonts/opentype/public/forum/Forum-Regular.otf + RELOC/fonts/opentype/public/forum/Frm-Bold.otf + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2a--base.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2b--base.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2b.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2c--base.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-t2c.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ly1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ly1.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ot1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ot1.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t1.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2a--base.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2a--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2a.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2b--base.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2b--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2b.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2c--base.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2c--lcdfj.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-t2c.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ts1--base.tfm + RELOC/fonts/tfm/public/forum/Frm-lf-ts1.tfm + RELOC/fonts/type1/public/forum/Frm-Bold.pfb + RELOC/fonts/type1/public/forum/Frm-BoldLCDFJ.pfb + RELOC/fonts/type1/public/forum/Frm.pfb + RELOC/fonts/type1/public/forum/FrmLCDFJ.pfb + RELOC/fonts/vf/public/forum/Frm-Bold-lf-ly1.vf + RELOC/fonts/vf/public/forum/Frm-Bold-lf-ot1.vf + RELOC/fonts/vf/public/forum/Frm-Bold-lf-t1.vf + RELOC/fonts/vf/public/forum/Frm-Bold-lf-t2a.vf + RELOC/fonts/vf/public/forum/Frm-Bold-lf-t2b.vf + RELOC/fonts/vf/public/forum/Frm-Bold-lf-t2c.vf + RELOC/fonts/vf/public/forum/Frm-Bold-lf-ts1.vf + RELOC/fonts/vf/public/forum/Frm-lf-ly1.vf + RELOC/fonts/vf/public/forum/Frm-lf-ot1.vf + RELOC/fonts/vf/public/forum/Frm-lf-t1.vf + RELOC/fonts/vf/public/forum/Frm-lf-t2a.vf + RELOC/fonts/vf/public/forum/Frm-lf-t2b.vf + RELOC/fonts/vf/public/forum/Frm-lf-t2c.vf + RELOC/fonts/vf/public/forum/Frm-lf-ts1.vf + RELOC/tex/latex/forum/LY1Frm-LF.fd + RELOC/tex/latex/forum/OT1Frm-LF.fd + RELOC/tex/latex/forum/T1Frm-LF.fd + RELOC/tex/latex/forum/T2AFrm-LF.fd + RELOC/tex/latex/forum/T2BFrm-LF.fd + RELOC/tex/latex/forum/T2CFrm-LF.fd + RELOC/tex/latex/forum/TS1Frm-LF.fd + RELOC/tex/latex/forum/forum.sty +catalogue-contact-home https://fonts.google.com/specimen/Forum +catalogue-ctan /fonts/forum +catalogue-license ofl lppl +catalogue-topics font font-body font-serif font-proportional font-cyrillic font-multilingual font-otf font-type1 font-supp font-t1enc + +name fouridx +category Package +revision 32214 +shortdesc Left sub- and superscripts in maths mode +relocated 1 +longdesc The package enables left subscripts and superscripts in maths +longdesc mode. The sub- and superscripts are raised for optimum fitting +longdesc to the symbol indexed, in such a way that left and right sub- +longdesc and superscripts are set on the same level, as appropriate. The +longdesc package provides an alternative to the use of the \sideset +longdesc command in the amsmath package. +containersize 1184 +containerchecksum 01a2cc941482972cb8ca3f5402bef75f53d5e7db2b42f8bdf614c34faab3805c3548d3786c3e7cd9d8d8f7691cd5e8e71e056ad8afc24d52444c6969c11eaa14 +doccontainersize 211220 +doccontainerchecksum 8bc55b8e191b83ea42e228b47621780f4aaeec65248f5b3e9aad94443eeba08b1bf1bf44b7cf252f66466e5b0170260ad202c13abf2d76d4576833224212ae44 +docfiles size=53 + RELOC/doc/latex/fouridx/README details="Readme" + RELOC/doc/latex/fouridx/fouridx.pdf details="Package documentation" +srccontainersize 3260 +srccontainerchecksum c29e1c93e31da33a3ba3914ea2992a53b52bc18a4da0d20cdfec712037f98058be5113dc65d731253aff8c4e1b0fcac4afe3da36b972f1fb23ce45a795c546a3 +srcfiles size=4 + RELOC/source/latex/fouridx/fouridx.dtx + RELOC/source/latex/fouridx/fouridx.ins +runfiles size=1 + RELOC/tex/latex/fouridx/fouridx.sty +catalogue-ctan /macros/latex/contrib/fouridx +catalogue-license lppl +catalogue-topics subsup-pos maths +catalogue-version 2.00 + +name fourier +category Package +revision 54090 +shortdesc Using Utopia fonts in LaTeX documents +relocated 1 +longdesc Fourier-GUTenberg is a LaTeX typesetting system which uses +longdesc Adobe Utopia as its standard base font. Fourier-GUTenberg +longdesc provides all complementary typefaces needed to allow Utopia +longdesc based TeX typesetting, including an extensive mathematics set +longdesc and several other symbols. The system is absolutely +longdesc stand-alone: apart from Utopia and Fourier, no other typefaces +longdesc are required. The fourier fonts will also work with Adobe +longdesc Utopia Expert fonts, which are only available for purchase. +longdesc Utopia is a registered trademark of Adobe Systems Incorporated +execute addMap fourier-utopia-expert.map +execute addMap fourier.map +containersize 265236 +containerchecksum 4e4e5bad7ce25c67ec925145531e1a27344735e32e2c7053fa73ddd1559ad3d2f5fce00c92c5dc09731a90666fb5c80aa9702adc7bc4469239ca5ae62c23644c +doccontainersize 304616 +doccontainerchecksum 59d1d7ebe7e44c1b5409a9b49e83845aeadcbcbecbf30176b3bc4156f7f611878fd3ee17405df48d3b4e41dd8c95d6dcc24080f15801959c1b2ae83a7a2311ae +docfiles size=82 + RELOC/doc/fonts/fourier/README details="Readme" + RELOC/doc/fonts/fourier/fourier-doc-en.pdf details="Package documentation" + RELOC/doc/fonts/fourier/fourier-doc-en.tex + RELOC/doc/fonts/fourier/fourier-orns-doc.pdf details="The Fourier ornaments" + RELOC/doc/fonts/fourier/fourier-orns-doc.tex +runfiles size=487 + RELOC/fonts/afm/public/fourier/fourier-alt-black.afm + RELOC/fonts/afm/public/fourier/fourier-alt-bold.afm + RELOC/fonts/afm/public/fourier/fourier-alt-boldita.afm + RELOC/fonts/afm/public/fourier/fourier-alt-ita.afm + RELOC/fonts/afm/public/fourier/fourier-alt-semi.afm + RELOC/fonts/afm/public/fourier/fourier-alt-semiita.afm + RELOC/fonts/afm/public/fourier/fourier-alt.afm + RELOC/fonts/afm/public/fourier/fourier-bb.afm + RELOC/fonts/afm/public/fourier/fourier-mcl.afm + RELOC/fonts/afm/public/fourier/fourier-mex.afm + RELOC/fonts/afm/public/fourier/fourier-ml.afm + RELOC/fonts/afm/public/fourier/fourier-mlb.afm + RELOC/fonts/afm/public/fourier/fourier-mlit.afm + RELOC/fonts/afm/public/fourier/fourier-mlitb.afm + RELOC/fonts/afm/public/fourier/fourier-ms.afm + RELOC/fonts/afm/public/fourier/fourier-orns.afm + RELOC/fonts/map/dvips/fourier/fourier-utopia-expert.map + RELOC/fonts/map/dvips/fourier/fourier.map + RELOC/fonts/opentype/public/fourier/FourierOrns-Bold.otf + RELOC/fonts/opentype/public/fourier/FourierOrns-BoldItalic.otf + RELOC/fonts/opentype/public/fourier/FourierOrns-Italic.otf + RELOC/fonts/opentype/public/fourier/FourierOrns-Regular.otf + RELOC/fonts/tfm/public/fourier/fourier-alt-black.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-bold-sl.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-bold.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-boldita.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-ita.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-semi-sl.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-semi.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-semiita.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-sl.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt.tfm + RELOC/fonts/tfm/public/fourier/fourier-bb.tfm + RELOC/fonts/tfm/public/fourier/fourier-ligs-it.tfm + RELOC/fonts/tfm/public/fourier/fourier-ligs.tfm + RELOC/fonts/tfm/public/fourier/fourier-mcl.tfm + RELOC/fonts/tfm/public/fourier/fourier-mex.tfm + RELOC/fonts/tfm/public/fourier/fourier-ml.tfm + RELOC/fonts/tfm/public/fourier/fourier-mlb.tfm + RELOC/fonts/tfm/public/fourier/fourier-mlit.tfm + RELOC/fonts/tfm/public/fourier/fourier-mlitb.tfm + RELOC/fonts/tfm/public/fourier/fourier-ms.tfm + RELOC/fonts/tfm/public/fourier/fourier-orns.tfm + RELOC/fonts/tfm/public/fourier/fut-oldlatin-it.tfm + RELOC/fonts/tfm/public/fourier/fut-oldlatin.tfm + RELOC/fonts/tfm/public/fourier/futb-sup.tfm + RELOC/fonts/tfm/public/fourier/futb8c.tfm + RELOC/fonts/tfm/public/fourier/futb8r.tfm + RELOC/fonts/tfm/public/fourier/futb8t.tfm + RELOC/fonts/tfm/public/fourier/futb8x.tfm + RELOC/fonts/tfm/public/fourier/futb9c.tfm + RELOC/fonts/tfm/public/fourier/futb9d.tfm + RELOC/fonts/tfm/public/fourier/futb9e.tfm + RELOC/fonts/tfm/public/fourier/futbc8t.tfm + RELOC/fonts/tfm/public/fourier/futbi-sup.tfm + RELOC/fonts/tfm/public/fourier/futbi8c.tfm + RELOC/fonts/tfm/public/fourier/futbi8r.tfm + RELOC/fonts/tfm/public/fourier/futbi8t.tfm + RELOC/fonts/tfm/public/fourier/futbi8x.tfm + RELOC/fonts/tfm/public/fourier/futbi9c.tfm + RELOC/fonts/tfm/public/fourier/futbi9d.tfm + RELOC/fonts/tfm/public/fourier/futbi9e.tfm + RELOC/fonts/tfm/public/fourier/futbo8c.tfm + RELOC/fonts/tfm/public/fourier/futbo8r.tfm + RELOC/fonts/tfm/public/fourier/futbo8t.tfm + RELOC/fonts/tfm/public/fourier/futbo8x.tfm + RELOC/fonts/tfm/public/fourier/futbo9c.tfm + RELOC/fonts/tfm/public/fourier/futbo9d.tfm + RELOC/fonts/tfm/public/fourier/futbo9e.tfm + RELOC/fonts/tfm/public/fourier/futboorn.tfm + RELOC/fonts/tfm/public/fourier/futborn.tfm + RELOC/fonts/tfm/public/fourier/futc-sup.tfm + RELOC/fonts/tfm/public/fourier/futc8r.tfm + RELOC/fonts/tfm/public/fourier/futc8x.tfm + RELOC/fonts/tfm/public/fourier/futc9c.tfm + RELOC/fonts/tfm/public/fourier/futc9d.tfm + RELOC/fonts/tfm/public/fourier/futc9e.tfm + RELOC/fonts/tfm/public/fourier/futcorn.tfm + RELOC/fonts/tfm/public/fourier/futmi.tfm + RELOC/fonts/tfm/public/fourier/futmib.tfm + RELOC/fonts/tfm/public/fourier/futmii.tfm + RELOC/fonts/tfm/public/fourier/futmiib.tfm + RELOC/fonts/tfm/public/fourier/futr-sup.tfm + RELOC/fonts/tfm/public/fourier/futr8c.tfm + RELOC/fonts/tfm/public/fourier/futr8r.tfm + RELOC/fonts/tfm/public/fourier/futr8t.tfm + RELOC/fonts/tfm/public/fourier/futr8x.tfm + RELOC/fonts/tfm/public/fourier/futr9c.tfm + RELOC/fonts/tfm/public/fourier/futr9d.tfm + RELOC/fonts/tfm/public/fourier/futr9e.tfm + RELOC/fonts/tfm/public/fourier/futrc8r.tfm + RELOC/fonts/tfm/public/fourier/futrc8t.tfm + RELOC/fonts/tfm/public/fourier/futrc9d.tfm + RELOC/fonts/tfm/public/fourier/futrc9e.tfm + RELOC/fonts/tfm/public/fourier/futrci9d.tfm + RELOC/fonts/tfm/public/fourier/futrci9e.tfm + RELOC/fonts/tfm/public/fourier/futrco8r.tfm + RELOC/fonts/tfm/public/fourier/futrco9d.tfm + RELOC/fonts/tfm/public/fourier/futrd8r.tfm + RELOC/fonts/tfm/public/fourier/futrd8t.tfm + RELOC/fonts/tfm/public/fourier/futri-sup.tfm + RELOC/fonts/tfm/public/fourier/futri8c.tfm + RELOC/fonts/tfm/public/fourier/futri8r.tfm + RELOC/fonts/tfm/public/fourier/futri8t.tfm + RELOC/fonts/tfm/public/fourier/futri8x.tfm + RELOC/fonts/tfm/public/fourier/futri9c.tfm + RELOC/fonts/tfm/public/fourier/futri9d.tfm + RELOC/fonts/tfm/public/fourier/futri9e.tfm + RELOC/fonts/tfm/public/fourier/futro8c.tfm + RELOC/fonts/tfm/public/fourier/futro8r.tfm + RELOC/fonts/tfm/public/fourier/futro8t.tfm + RELOC/fonts/tfm/public/fourier/futro8x.tfm + RELOC/fonts/tfm/public/fourier/futro9c.tfm + RELOC/fonts/tfm/public/fourier/futro9d.tfm + RELOC/fonts/tfm/public/fourier/futro9e.tfm + RELOC/fonts/tfm/public/fourier/futroorn.tfm + RELOC/fonts/tfm/public/fourier/futrorn.tfm + RELOC/fonts/tfm/public/fourier/futs-sup.tfm + RELOC/fonts/tfm/public/fourier/futs8r.tfm + RELOC/fonts/tfm/public/fourier/futs8x.tfm + RELOC/fonts/tfm/public/fourier/futs9c.tfm + RELOC/fonts/tfm/public/fourier/futs9d.tfm + RELOC/fonts/tfm/public/fourier/futs9e.tfm + RELOC/fonts/tfm/public/fourier/futsc8r.tfm + RELOC/fonts/tfm/public/fourier/futsc9d.tfm + RELOC/fonts/tfm/public/fourier/futsc9e.tfm + RELOC/fonts/tfm/public/fourier/futsci9d.tfm + RELOC/fonts/tfm/public/fourier/futsci9e.tfm + RELOC/fonts/tfm/public/fourier/futsco8r.tfm + RELOC/fonts/tfm/public/fourier/futsi-sup.tfm + RELOC/fonts/tfm/public/fourier/futsi8r.tfm + RELOC/fonts/tfm/public/fourier/futsi8x.tfm + RELOC/fonts/tfm/public/fourier/futsi9c.tfm + RELOC/fonts/tfm/public/fourier/futsi9d.tfm + RELOC/fonts/tfm/public/fourier/futsi9e.tfm + RELOC/fonts/tfm/public/fourier/futso8r.tfm + RELOC/fonts/tfm/public/fourier/futso8x.tfm + RELOC/fonts/tfm/public/fourier/futso9c.tfm + RELOC/fonts/tfm/public/fourier/futso9d.tfm + RELOC/fonts/tfm/public/fourier/futso9e.tfm + RELOC/fonts/tfm/public/fourier/futsoorn.tfm + RELOC/fonts/tfm/public/fourier/futsorn.tfm + RELOC/fonts/tfm/public/fourier/futsy.tfm + RELOC/fonts/tfm/public/fourier/putb8a.tfm + RELOC/fonts/tfm/public/fourier/putb8x.tfm + RELOC/fonts/tfm/public/fourier/putbi8a.tfm + RELOC/fonts/tfm/public/fourier/putbi8x.tfm + RELOC/fonts/tfm/public/fourier/putbo8x.tfm + RELOC/fonts/tfm/public/fourier/putc8a.tfm + RELOC/fonts/tfm/public/fourier/putc8x.tfm + RELOC/fonts/tfm/public/fourier/putr8a.tfm + RELOC/fonts/tfm/public/fourier/putr8x.tfm + RELOC/fonts/tfm/public/fourier/putrc8a.tfm + RELOC/fonts/tfm/public/fourier/putrd8a.tfm + RELOC/fonts/tfm/public/fourier/putri8a.tfm + RELOC/fonts/tfm/public/fourier/putri8x.tfm + RELOC/fonts/tfm/public/fourier/putro8x.tfm + RELOC/fonts/tfm/public/fourier/puts8a.tfm + RELOC/fonts/tfm/public/fourier/puts8x.tfm + RELOC/fonts/tfm/public/fourier/putsc8a.tfm + RELOC/fonts/tfm/public/fourier/putsi8a.tfm + RELOC/fonts/tfm/public/fourier/putsi8x.tfm + RELOC/fonts/tfm/public/fourier/putso8x.tfm + RELOC/fonts/type1/public/fourier/fourier-alt-black.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-bold.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-boldita.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-ita.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-semi.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-semiita.pfb + RELOC/fonts/type1/public/fourier/fourier-alt.pfb + RELOC/fonts/type1/public/fourier/fourier-bb.pfb + RELOC/fonts/type1/public/fourier/fourier-mcl.pfb + RELOC/fonts/type1/public/fourier/fourier-mex.pfb + RELOC/fonts/type1/public/fourier/fourier-ml.pfb + RELOC/fonts/type1/public/fourier/fourier-mlb.pfb + RELOC/fonts/type1/public/fourier/fourier-mlit.pfb + RELOC/fonts/type1/public/fourier/fourier-mlitb.pfb + RELOC/fonts/type1/public/fourier/fourier-ms.pfb + RELOC/fonts/type1/public/fourier/fourier-orns.pfb + RELOC/fonts/vf/public/fourier/futb-sup.vf + RELOC/fonts/vf/public/fourier/futb8c.vf + RELOC/fonts/vf/public/fourier/futb8t.vf + RELOC/fonts/vf/public/fourier/futb9c.vf + RELOC/fonts/vf/public/fourier/futb9d.vf + RELOC/fonts/vf/public/fourier/futb9e.vf + RELOC/fonts/vf/public/fourier/futbc8t.vf + RELOC/fonts/vf/public/fourier/futbi-sup.vf + RELOC/fonts/vf/public/fourier/futbi8c.vf + RELOC/fonts/vf/public/fourier/futbi8t.vf + RELOC/fonts/vf/public/fourier/futbi9c.vf + RELOC/fonts/vf/public/fourier/futbi9d.vf + RELOC/fonts/vf/public/fourier/futbi9e.vf + RELOC/fonts/vf/public/fourier/futbo8c.vf + RELOC/fonts/vf/public/fourier/futbo8t.vf + RELOC/fonts/vf/public/fourier/futbo9c.vf + RELOC/fonts/vf/public/fourier/futbo9d.vf + RELOC/fonts/vf/public/fourier/futbo9e.vf + RELOC/fonts/vf/public/fourier/futboorn.vf + RELOC/fonts/vf/public/fourier/futborn.vf + RELOC/fonts/vf/public/fourier/futc-sup.vf + RELOC/fonts/vf/public/fourier/futc9c.vf + RELOC/fonts/vf/public/fourier/futc9d.vf + RELOC/fonts/vf/public/fourier/futc9e.vf + RELOC/fonts/vf/public/fourier/futcorn.vf + RELOC/fonts/vf/public/fourier/futmi.vf + RELOC/fonts/vf/public/fourier/futmib.vf + RELOC/fonts/vf/public/fourier/futmii.vf + RELOC/fonts/vf/public/fourier/futmiib.vf + RELOC/fonts/vf/public/fourier/futr-sup.vf + RELOC/fonts/vf/public/fourier/futr8c.vf + RELOC/fonts/vf/public/fourier/futr8t.vf + RELOC/fonts/vf/public/fourier/futr9c.vf + RELOC/fonts/vf/public/fourier/futr9d.vf + RELOC/fonts/vf/public/fourier/futr9e.vf + RELOC/fonts/vf/public/fourier/futrc8t.vf + RELOC/fonts/vf/public/fourier/futrc9d.vf + RELOC/fonts/vf/public/fourier/futrc9e.vf + RELOC/fonts/vf/public/fourier/futrci9d.vf + RELOC/fonts/vf/public/fourier/futrci9e.vf + RELOC/fonts/vf/public/fourier/futrco9d.vf + RELOC/fonts/vf/public/fourier/futrd8t.vf + RELOC/fonts/vf/public/fourier/futri-sup.vf + RELOC/fonts/vf/public/fourier/futri8c.vf + RELOC/fonts/vf/public/fourier/futri8t.vf + RELOC/fonts/vf/public/fourier/futri9c.vf + RELOC/fonts/vf/public/fourier/futri9d.vf + RELOC/fonts/vf/public/fourier/futri9e.vf + RELOC/fonts/vf/public/fourier/futro8c.vf + RELOC/fonts/vf/public/fourier/futro8t.vf + RELOC/fonts/vf/public/fourier/futro9c.vf + RELOC/fonts/vf/public/fourier/futro9d.vf + RELOC/fonts/vf/public/fourier/futro9e.vf + RELOC/fonts/vf/public/fourier/futroorn.vf + RELOC/fonts/vf/public/fourier/futrorn.vf + RELOC/fonts/vf/public/fourier/futs-sup.vf + RELOC/fonts/vf/public/fourier/futs9c.vf + RELOC/fonts/vf/public/fourier/futs9d.vf + RELOC/fonts/vf/public/fourier/futs9e.vf + RELOC/fonts/vf/public/fourier/futsc9d.vf + RELOC/fonts/vf/public/fourier/futsc9e.vf + RELOC/fonts/vf/public/fourier/futsci9d.vf + RELOC/fonts/vf/public/fourier/futsci9e.vf + RELOC/fonts/vf/public/fourier/futsco9d.vf + RELOC/fonts/vf/public/fourier/futsi-sup.vf + RELOC/fonts/vf/public/fourier/futsi9c.vf + RELOC/fonts/vf/public/fourier/futsi9d.vf + RELOC/fonts/vf/public/fourier/futsi9e.vf + RELOC/fonts/vf/public/fourier/futso9c.vf + RELOC/fonts/vf/public/fourier/futso9d.vf + RELOC/fonts/vf/public/fourier/futso9e.vf + RELOC/fonts/vf/public/fourier/futsoorn.vf + RELOC/fonts/vf/public/fourier/futsorn.vf + RELOC/fonts/vf/public/fourier/futsy.vf + RELOC/tex/latex/fourier/fmlfutm.fd + RELOC/tex/latex/fourier/fmlfutmi.fd + RELOC/tex/latex/fourier/fmsfutm.fd + RELOC/tex/latex/fourier/fmxfutm.fd + RELOC/tex/latex/fourier/fourier-orns.sty + RELOC/tex/latex/fourier/fourier.sty + RELOC/tex/latex/fourier/t1fut-sup.fd + RELOC/tex/latex/fourier/t1futj.fd + RELOC/tex/latex/fourier/t1futs.fd + RELOC/tex/latex/fourier/t1futx.fd + RELOC/tex/latex/fourier/ts1futj.fd + RELOC/tex/latex/fourier/ts1futs.fd + RELOC/tex/latex/fourier/ts1futx.fd + RELOC/tex/latex/fourier/ufuts.fd +catalogue-also utopia +catalogue-ctan /fonts/fourier-GUT +catalogue-license lppl +catalogue-topics font font-maths font-type1 +catalogue-version 2.2 + +name fouriernc +category Package +revision 29646 +shortdesc Use New Century Schoolbook text with Fourier maths fonts +relocated 1 +longdesc This package provides a LaTeX mathematics font setup for use +longdesc with New Century Schoolbook text. In order to use it you need +longdesc to have the Fourier-GUTenberg fonts installed. +containersize 12492 +containerchecksum 904b464fb9066100512cfd8a8998bb089113b443e2df1fb77100f9b5a26d48a5b3512931c00292d19764eb4f068f207eb38dab78798f217f2533a65229411df9 +doccontainersize 37464 +doccontainerchecksum 039ce79d06bd1fb55b257f1c65c53412b15c26d4eafb9d3abe9bb7a7fa836c8b545718f70d935f1449fa235f33d07c81ad8f228608de20ffdfa99b9f532e059d +docfiles size=39 + RELOC/doc/fonts/fouriernc/README details="Readme" + RELOC/doc/fonts/fouriernc/build-fouriernc.tex + RELOC/doc/fonts/fouriernc/mathit.mtx + RELOC/doc/fonts/fouriernc/mathsy.mtx + RELOC/doc/fonts/fouriernc/omlgutop.etx + RELOC/doc/fonts/fouriernc/omsgutop.etx + RELOC/doc/fonts/fouriernc/setxheight.mtx + RELOC/doc/fonts/fouriernc/specialkernings.mtx + RELOC/doc/fonts/fouriernc/specialkerningsital.mtx + RELOC/doc/fonts/fouriernc/substitutes.zip + RELOC/doc/fonts/fouriernc/test_fouriernc.pdf details="FourierNC test example:" + RELOC/doc/fonts/fouriernc/unset0.mtx + RELOC/doc/fonts/fouriernc/unset0A.mtx + RELOC/doc/fonts/fouriernc/unsetAlph.mtx + RELOC/doc/fonts/fouriernc/unsetUCgreek.mtx + RELOC/doc/fonts/fouriernc/unsetfontparams.mtx + RELOC/doc/fonts/fouriernc/unsetmu.mtx + RELOC/doc/fonts/fouriernc/unsetpar.mtx + RELOC/doc/fonts/fouriernc/zrmhax.mtx + RELOC/doc/fonts/fouriernc/zrykernx.mtx +runfiles size=23 + RELOC/fonts/afm/public/fouriernc/fourier-mcl.afm + RELOC/fonts/afm/public/fouriernc/fourier-ml.afm + RELOC/fonts/afm/public/fouriernc/fourier-mlb.afm + RELOC/fonts/afm/public/fouriernc/fourier-mlit.afm + RELOC/fonts/afm/public/fouriernc/fourier-mlitb.afm + RELOC/fonts/afm/public/fouriernc/fourier-ms.afm + RELOC/fonts/tfm/public/fouriernc/fncmi.tfm + RELOC/fonts/tfm/public/fouriernc/fncmib.tfm + RELOC/fonts/tfm/public/fouriernc/fncmii.tfm + RELOC/fonts/tfm/public/fouriernc/fncmiib.tfm + RELOC/fonts/tfm/public/fouriernc/fncsy.tfm + RELOC/fonts/vf/public/fouriernc/fncmi.vf + RELOC/fonts/vf/public/fouriernc/fncmib.vf + RELOC/fonts/vf/public/fouriernc/fncmii.vf + RELOC/fonts/vf/public/fouriernc/fncmiib.vf + RELOC/fonts/vf/public/fouriernc/fncsy.vf + RELOC/tex/latex/fouriernc/fmlfncm.fd + RELOC/tex/latex/fouriernc/fmlfncmi.fd + RELOC/tex/latex/fouriernc/fmsfncm.fd + RELOC/tex/latex/fouriernc/fouriernc.sty + RELOC/tex/latex/fouriernc/t1fnc.fd + RELOC/tex/latex/fouriernc/ts1fnc.fd +catalogue-ctan /fonts/fouriernc +catalogue-license lppl +catalogue-topics font font-maths font-virtual + +name fp +category Package +revision 49719 +shortdesc Fixed point arithmetic +relocated 1 +longdesc An extensive collection of arithmetic operations for fixed +longdesc point real numbers of high precision. +containersize 19252 +containerchecksum 27e60a78da80caf0e50d1fc83d227d19982e30950650845df710949f4d88db67dad96212331182561c43d37cdeabd3b68f9af55763f30175ab27a6b5f089870e +doccontainersize 218964 +doccontainerchecksum 79b62424943f725ffc6c1698cadb9ba2fa6d9f0694741a951bbed23c43f870b930d966f110bbe722c17249c7211f08a3a95a5ce7e9da69b7487aec37e99e5152 +docfiles size=59 + RELOC/doc/latex/fp/README details="Readme" + RELOC/doc/latex/fp/documentation.pdf details="Documentation" + RELOC/doc/latex/fp/fp.tex +runfiles size=37 + RELOC/tex/latex/fp/defpattern.sty + RELOC/tex/latex/fp/fp-addons.sty + RELOC/tex/latex/fp/fp-basic.sty + RELOC/tex/latex/fp/fp-eqn.sty + RELOC/tex/latex/fp/fp-eval.sty + RELOC/tex/latex/fp/fp-exp.sty + RELOC/tex/latex/fp/fp-pas.sty + RELOC/tex/latex/fp/fp-random.sty + RELOC/tex/latex/fp/fp-snap.sty + RELOC/tex/latex/fp/fp-trigo.sty + RELOC/tex/latex/fp/fp-upn.sty + RELOC/tex/latex/fp/fp.sty + RELOC/tex/latex/fp/lfp.sty + RELOC/tex/plain/fp/fp.tex +catalogue-also fltpoint +catalogue-ctan /macros/latex/contrib/fp +catalogue-license lppl +catalogue-topics arithmetic calculation +catalogue-version 2.1d + +name fpl +category Package +revision 54512 +shortdesc SC and OsF fonts for URW Palladio L +relocated 1 +longdesc The FPL Fonts provide a set of SC/OsF fonts for URW Palladio L +longdesc which are compatible with respect to metrics with the Palatino +longdesc SC/OsF fonts from Adobe. Note that it is not my aim to exactly +longdesc reproduce the outlines of the original Adobe fonts. The SC and +longdesc OsF in the FPL Fonts were designed with the glyphs from URW +longdesc Palladio L as starting point. For some glyphs (e.g. 'o') I got +longdesc the best result by scaling and boldening. For others (e.g. 'h') +longdesc shifting selected portions of the character gave more +longdesc satisfying results. All this was done using the free font +longdesc editor FontForge. The kerning data in these fonts comes from +longdesc Walter Schmidt's improved Palatino metrics. LaTeX use is +longdesc enabled by the mathpazo package, which is part of the psnfss +longdesc distribution. +containersize 288416 +containerchecksum 9c8ca7ebe7124afec8ba3f4ba4fc27c0a54ab460e53afeab599dcc619f81e5f8ad744a3cd68df33cb6ce456d0db0fafe7ee04d585dbc3fc123e5758a1242cef7 +doccontainersize 7968 +doccontainerchecksum 7b951310a10295bb453eed81ae668f042262094971dcd48c83ab721220094b3a62b79b5090002cc8a7a1fa12b4e75157fd8ead7c4deed8fa1d3629cc6746e8d8 +docfiles size=6 + RELOC/doc/fonts/fpl/COPYING + RELOC/doc/fonts/fpl/README details="Readme" +srccontainersize 30652 +srccontainerchecksum 64da822f5b40bb6abfa33d19bec50d8e002452a710d0d6ba3c5e66097e9a33f6718524471fdc716ecb951fcb2ad82659288a08ef85b72229ba40297fc33f7727 +srcfiles size=63 + RELOC/source/fonts/fpl/AddException + RELOC/source/fonts/fpl/AddGPL + RELOC/source/fonts/fpl/Makefile + RELOC/source/fonts/fpl/Palladio-BoldItalicOsF.sfd + RELOC/source/fonts/fpl/Palladio-BoldOsF.sfd + RELOC/source/fonts/fpl/Palladio-ItalicOsF.sfd + RELOC/source/fonts/fpl/Palladio-SC.sfd + RELOC/source/fonts/fpl/README + RELOC/source/fonts/fpl/TeXPalladioL-BoldItalicOsF.pe + RELOC/source/fonts/fpl/TeXPalladioL-BoldOsF.pe + RELOC/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe + RELOC/source/fonts/fpl/TeXPalladioL-SC.pe + RELOC/source/fonts/fpl/URW-OtherSubrs.ps +runfiles size=168 + RELOC/fonts/afm/public/fpl/fplbij8a.afm + RELOC/fonts/afm/public/fpl/fplbj8a.afm + RELOC/fonts/afm/public/fpl/fplrc8a.afm + RELOC/fonts/afm/public/fpl/fplrij8a.afm + RELOC/fonts/afm/public/fpl/pplb9d-kern.afm + RELOC/fonts/afm/public/fpl/pplbi9d-kern.afm + RELOC/fonts/afm/public/fpl/pplrc9d-kern.afm + RELOC/fonts/afm/public/fpl/pplri9d-kern.afm + RELOC/fonts/type1/public/fpl/fplbij8a.pfb + RELOC/fonts/type1/public/fpl/fplbij8a.pfm + RELOC/fonts/type1/public/fpl/fplbj8a.pfb + RELOC/fonts/type1/public/fpl/fplbj8a.pfm + RELOC/fonts/type1/public/fpl/fplrc8a.pfb + RELOC/fonts/type1/public/fpl/fplrc8a.pfm + RELOC/fonts/type1/public/fpl/fplrij8a.pfb + RELOC/fonts/type1/public/fpl/fplrij8a.pfm +catalogue-contact-bugs https://github.com/rstub/fpl/issues +catalogue-contact-repository https://github.com/rstub/fpl +catalogue-ctan /fonts/fpl +catalogue-license gpl2 lppl +catalogue-topics font font-type1 font-sfd font-serif font-body font-proportional +catalogue-version 1.003 + +name fragmaster +category Package +revision 26313 +shortdesc Using psfrag with pdfLaTeX +longdesc Fragmaster enables you to use psfrag with pdfLaTeX. It takes +longdesc EPS files and psfrag substitution definition files, and +longdesc produces PDF and EPS files with the substitutions included. +depend fragmaster.ARCH +containersize 6872 +containerchecksum dc5d80aa4bab7a0a66258face6cf8222d03b12ea492f7cf568ef815a6d5950a8a2b36c7403ab466141f49cb8faedfbb33146820b88da17d8b8fa18a2b16235e4 +doccontainersize 80316 +doccontainerchecksum 61f0bd7dab46bfb91b634006217f01648007cbce3c9187b0811a5cc1755ec19654da94b47866ad9873fd57629f1561d1cc46bf3a4d62db618502aa0e67500637 +docfiles size=75 + texmf-dist/doc/support/fragmaster/AUTHORS + texmf-dist/doc/support/fragmaster/COPYING + texmf-dist/doc/support/fragmaster/CREDITS + texmf-dist/doc/support/fragmaster/Changes + texmf-dist/doc/support/fragmaster/README details="Readme (English)" language="en" + texmf-dist/doc/support/fragmaster/README.de details="Readme (German)" language="de" + texmf-dist/doc/support/fragmaster/example/document.pdf + texmf-dist/doc/support/fragmaster/example/document.ps + texmf-dist/doc/support/fragmaster/example/document.tex + texmf-dist/doc/support/fragmaster/example/parabel.eps + texmf-dist/doc/support/fragmaster/example/parabel.pdf + texmf-dist/doc/support/fragmaster/example/parabel_fm + texmf-dist/doc/support/fragmaster/example/parabel_fm.eps + texmf-dist/doc/support/fragmaster/example/parabel_fm.gp + texmf-dist/doc/support/fragmaster/example/parabel_fm.pdf + texmf-dist/doc/support/fragmaster/fragmaster.pdf +runfiles size=5 + texmf-dist/scripts/fragmaster/fragmaster.pl +catalogue-ctan /support/fragmaster +catalogue-license gpl +catalogue-topics graphics-prep +catalogue-version 1.6 + +name fragmaster.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of fragmaster +containersize 344 +containerchecksum a87e385afe6763c5e67d03639caeb5182a6620308ecb805b1ed35543294185784bf1d07f08bab2197258eca3b315c04281ff287dbdd3bbe19ef968dba9373b81 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/fragmaster + +name fragmaster.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of fragmaster +containersize 344 +containerchecksum 38227b24e51f08a232dd71cef17a41ace8c0a5e7031a630bd91ea6e72260a3b07e4d1f9b5d127a7c19283b6d69abc6dfb92ff904ceac731145e6037926ec52e7 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/fragmaster + +name fragmaster.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of fragmaster +containersize 344 +containerchecksum 2fbbe74b9b765b029d32709525f8333d7eca73842394cfcc3c6d84350e9ad68c1b9e9a6281511d662b70defa53b18aec91261f690b1cbce06020416d9778532d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/fragmaster + +name fragmaster.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of fragmaster +containersize 344 +containerchecksum b350841c558dc1c47f82216a59c36d60f6c1a91181be33d0577e838bf537e7dbb735b53a643c4e46e0d70612926476510c3c0a05a0371c588af946ccc98eb120 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/fragmaster + +name fragmaster.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of fragmaster +containersize 340 +containerchecksum 0bd693bc4e9ca3a2e7f43af328132c41ac80424bca84155bfd03dc187cc4bccde308d4c46520f5d15f774856b5893a79ade1a76c41abf0c6b2a84e40b7fb0aa4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/fragmaster + +name fragmaster.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of fragmaster +containersize 340 +containerchecksum 58dba6f8518b8e4607e8f40e0864e43cd31e3c8a8021bd41c030c36f499236e75805f6aa78e8de8f8fe1f3c2bef8e4adc7b24fdd865ab8fadcc3415ecabd6c8c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/fragmaster + +name fragmaster.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of fragmaster +containersize 344 +containerchecksum 3004b99bcc4ba81b7df2056a217d2b7f26ff82be579816bb31d62637d6fa0f71e1b1706de38e8d996ecee67b70d7f15bb9e81a95d0fa464ae55b0348851ca548 +binfiles arch=i386-linux size=1 + bin/i386-linux/fragmaster + +name fragmaster.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of fragmaster +containersize 344 +containerchecksum 142a9131279756c6170ed2e70a1253f4c203bff2002c4d59966b93aa536636eb3a35c026b3dcbc7011ed4861b36dfc48262a7ba1687b52d9dc7e5f47beffc2dd +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/fragmaster + +name fragmaster.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of fragmaster +containersize 344 +containerchecksum e94d4d2b04dc423c1597789ce7cce7e3232830604765cf6159e02a2214fe4855bfd9aeeb2094ed0517212aaf21562499bfe877faabf4b8fca84477960b50c076 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/fragmaster + +name fragmaster.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of fragmaster +containersize 344 +containerchecksum b285a0c33aa511f7af78fb6b8ffc62599042c7b84f205739802ab9bed5e0abedcac2ec7585d8bf1c9d9f7c282ccccf6d22c389b69178c81eb32f278c07f3fbed +binfiles arch=universal-darwin size=1 + bin/universal-darwin/fragmaster + +name fragmaster.win32 +category Package +revision 15404 +shortdesc win32 files of fragmaster +containersize 688 +containerchecksum d76dee25ac8d60a69c7280cd45026070de0fd98a7e0f330c5a25caa88d73fa99100270f8d1730ae3673ab3beab3473ecaaab9ce466719511a1ad0d78becd9f62 +binfiles arch=win32 size=1 + bin/win32/fragmaster.exe + +name fragmaster.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of fragmaster +containersize 344 +containerchecksum ff2776c75a95d44a721f6654e047a6f07406a53950a0f16e4ff2ba867acf735e1aacd59b83e95296201e20353d620d871c4bf9e410eabf5b2e97075e7ccd5580 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/fragmaster + +name fragmaster.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of fragmaster +containersize 352 +containerchecksum 9da5b21fd5419953a52dd391f743a29396aa5e7f5b6adc466f21b109e57b351031330aded45afdb943302e38a15ea45970f3ff27b3664e2997b4b5bd598dc299 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/fragmaster + +name fragmaster.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of fragmaster +containersize 340 +containerchecksum 709f4314101389f90508df1be21b64d94d103ac373b16d90a9ddaa8fc74a6cd7a0f50db5add7edfcb8f18404d78c561885e8c736c16fd2b14488cc53bf60727d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/fragmaster + +name fragmaster.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of fragmaster +containersize 348 +containerchecksum d6d912bfdb5de0dffbefdf9d5621d0fb20097940616dfdfbd83b0122c6a9243fc6872e99efea19b937a053ee7fa9b48a90f58d8ef040af7cfe887d7a700be5c3 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/fragmaster + +name fragmaster.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of fragmaster +containersize 344 +containerchecksum 59921cc34b2e12615e0cfb573a01bcbdc55a469bf86e1afe436e41cc257174b587c1b744ba418b3cacc59a3f45465376c7e9c9c9127f63741e6d2554371390a4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/fragmaster + +name fragments +category Package +revision 15878 +shortdesc Fragments of LaTeX code +relocated 1 +longdesc A collection of fragments of LaTeX code, suitable for inclusion +longdesc in packages, or (possibly) in users' documents. Included are: +longdesc checklab, for modifying the label checking code at +longdesc \end{document}; overrightarrow, defining a doubled over-arrow +longdesc macro; removefr, for removing 'reset' relations between +longdesc counters; and subscript, defining a \textsubscript command. +containersize 2236 +containerchecksum adab94e7cc71c6ed2d881d13254793df16eaa08d1e37e4d3f0344e7a56cf08a4ffdca784871e8939f5db8e868b7166846843492ced0071c9dfbf56e39d20ec0e +doccontainersize 484 +doccontainerchecksum dcf795392d989fdea695512c8f7011f783ea9091bfcc238ad296b0cdf1775bcf631c3097ede09a138117e39c7fa71da7eb355878c8389bdab2deb76a319102e1 +docfiles size=1 + RELOC/doc/latex/fragments/README details="Readme" +runfiles size=4 + RELOC/tex/latex/fragments/checklab.tex + RELOC/tex/latex/fragments/overrightarrow.sty + RELOC/tex/latex/fragments/removefr.tex + RELOC/tex/latex/fragments/subscript.sty +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-license collection +catalogue-topics collection + +name frame +category Package +revision 18312 +shortdesc Framed boxes for Plain TeX +relocated 1 +longdesc A jiffy file (taken from fancybox) for placing a frame around a +longdesc box of text. The macros also provide for typesetting an empty +longdesc box of given dimensions. +containersize 1312 +containerchecksum b66df0a91a8605aaeef2452236b5169cd363689a40f4a35ab9006ac18c21d4ae2a070407f84beff7de0be246f2f1e55c8b06f234921c4d7153fea9a7f2df1679 +doccontainersize 30688 +doccontainerchecksum b61a3dfbc23031a39bbe01788f0f1d51750a3aa9132671917ed8d14c57453d588c75f8cd54beac9ac120f26b09fead55b871d53e918a735ee172f1603e4cd1ea +docfiles size=13 + RELOC/doc/generic/frame/Changes + RELOC/doc/generic/frame/Makefile + RELOC/doc/generic/frame/README details="Readme" + RELOC/doc/generic/frame/frame-doc.pdf details="Package documentation" + RELOC/doc/generic/frame/frame-doc.tex +runfiles size=2 + RELOC/tex/generic/frame/frame.sty + RELOC/tex/generic/frame/frame.tex +catalogue-also boxit +catalogue-ctan /macros/generic/frame +catalogue-license lppl +catalogue-topics boxing decoration +catalogue-version 1.0 + +name framed +category Package +revision 26789 +shortdesc Framed or shaded regions that can break across pages +relocated 1 +longdesc The package creates three environments: framed, which puts an +longdesc ordinary frame box around the region, shaded, which shades the +longdesc region, and leftbar, which places a line at the left side. The +longdesc environments allow a break at their start (the \FrameCommand +longdesc enables creation of a title that is "attached" to the +longdesc environment); breaks are also allowed in the course of the +longdesc framed/shaded matter. There is also a command \MakeFramed to +longdesc make your own framed-style environments. +containersize 7916 +containerchecksum 06f0da36c24ba42959b2176066d3e95f23dfed41753f4e4b07c1f92c4789e68d1b246c61cbdeacbb9c00b6eb990ea2b3ec75dff8ac57845102a867dfdf2c72c7 +doccontainersize 239020 +doccontainerchecksum 1f48ac19f74f5003df88700ff85c072c8a655d4623b82bc3b7c6570a548c0a7b7e97fe292f8557a72188c0047fc28e280bc3ab65f58559804fa78e89317fd67e +docfiles size=60 + RELOC/doc/latex/framed/framed.pdf details="Package documentation" + RELOC/doc/latex/framed/framed.tex +runfiles size=6 + RELOC/tex/latex/framed/framed.sty +catalogue-also mdframed +catalogue-ctan /macros/latex/contrib/framed +catalogue-license other-free +catalogue-topics boxing box-breaking decoration +catalogue-version 0.96 + +name francais-bst +category Package +revision 38922 +shortdesc Bibliographies conforming to French typographic standards +relocated 1 +longdesc The package provides bibliographies (in French) conforming to +longdesc the rules in "Guide de la communication ecrite" (Malo, M., +longdesc Quebec Amerique, 1996. ISBN 978-2-8903-7875-9) The BibTeX +longdesc styles were generated using custom-bib and they are compatible +longdesc with natbib +containersize 8296 +containerchecksum b271711badae8883426ffa2783a2f942c9d37303fb4cfa8b4a2ec2f8999dd150060dae6689bef17d2120cc7489896ffa497ccb1f7f693d5db9a8ca5ef6747f21 +doccontainersize 1880 +doccontainerchecksum b3a53111f7fcfe972c0722e8600b3115b6e1a93631568d9bdb1f824b8185d4c78fbb135c4593856e3766404fc8e4c005daaf017e5c1552dc452c57e943832e14 +docfiles size=1 + RELOC/doc/bibtex/francais-bst/README details="Readme (mostly in French)" language="fr" +runfiles size=19 + RELOC/bibtex/bst/francais-bst/francais.bst + RELOC/bibtex/bst/francais-bst/francaissc.bst + RELOC/tex/latex/francais-bst/francaisbst.tex +catalogue-ctan /biblio/bibtex/contrib/francais-bst +catalogue-license lppl1.3 +catalogue-topics bibtex-sty french +catalogue-version 1.1 + +name frankenstein +category Package +revision 15878 +shortdesc A collection of LaTeX packages +relocated 1 +longdesc Frankenstein is a bundle of LaTeX packages serving various +longdesc purposes and a BibTeX bibliography style. Descriptions are +longdesc given under the individual packages: abbrevs, achicago package, +longdesc achicago bibstyle, attrib, blkcntrl, compsci, dialogue, lips, +longdesc moredefs, newclude, slemph, titles. +containersize 137188 +containerchecksum 1d94962185391dc1fa9edcadd67a60d9a4b59592442ffdd45badea6279db8dea101b418ab3e03284e6e88c247fd213887f06e72fb6c4a002a66acaee82d8d4bf +doccontainersize 1830040 +doccontainerchecksum 8d8a404aa0a61fb76104bc57e1c2b837ddf68516c4d4fdc1af0a84425943f4e23a4f660b28b02e088db8849090e3734915ef7e0216f578a5199cf12115c498cd +docfiles size=658 + RELOC/doc/latex/frankenstein/ChangeLog + RELOC/doc/latex/frankenstein/Frankenfile + RELOC/doc/latex/frankenstein/INSTALL + RELOC/doc/latex/frankenstein/README details="Bundle README" + RELOC/doc/latex/frankenstein/abbrevs.pdf + RELOC/doc/latex/frankenstein/abbrevs.tex + RELOC/doc/latex/frankenstein/achicago-bst.pdf + RELOC/doc/latex/frankenstein/achicago-bst.tex + RELOC/doc/latex/frankenstein/achicago-bst.ver + RELOC/doc/latex/frankenstein/achicago.bsq + RELOC/doc/latex/frankenstein/achicago.pdf + RELOC/doc/latex/frankenstein/achicago.tex + RELOC/doc/latex/frankenstein/attrib.pdf + RELOC/doc/latex/frankenstein/attrib.tex + RELOC/doc/latex/frankenstein/blkcntrl.pdf + RELOC/doc/latex/frankenstein/blkcntrl.tex + RELOC/doc/latex/frankenstein/compsci.pdf + RELOC/doc/latex/frankenstein/compsci.tex + RELOC/doc/latex/frankenstein/dialogue.pdf + RELOC/doc/latex/frankenstein/dialogue.tex + RELOC/doc/latex/frankenstein/lips.pdf + RELOC/doc/latex/frankenstein/lips.tex + RELOC/doc/latex/frankenstein/moredefs.pdf + RELOC/doc/latex/frankenstein/moredefs.tex + RELOC/doc/latex/frankenstein/newclude.pdf + RELOC/doc/latex/frankenstein/newclude.tex + RELOC/doc/latex/frankenstein/slemph.pdf + RELOC/doc/latex/frankenstein/slemph.tex + RELOC/doc/latex/frankenstein/titles.pdf + RELOC/doc/latex/frankenstein/titles.tex + RELOC/doc/latex/frankenstein/unsupported/README-unsupported + RELOC/doc/latex/frankenstein/unsupported/bits.cfg + RELOC/doc/latex/frankenstein/unsupported/bits.ins + RELOC/doc/latex/frankenstein/unsupported/bits.pdf + RELOC/doc/latex/frankenstein/unsupported/bits.sty + RELOC/doc/latex/frankenstein/unsupported/bits.tex + RELOC/doc/latex/frankenstein/unsupported/drama.ins + RELOC/doc/latex/frankenstein/unsupported/drama.pdf + RELOC/doc/latex/frankenstein/unsupported/drama.sty + RELOC/doc/latex/frankenstein/unsupported/drama.tex + RELOC/doc/latex/frankenstein/unsupported/includex-test.tex + RELOC/doc/latex/frankenstein/unsupported/includex.ins + RELOC/doc/latex/frankenstein/unsupported/includex.pdf + RELOC/doc/latex/frankenstein/unsupported/includex.sty + RELOC/doc/latex/frankenstein/unsupported/includex.tex +srccontainersize 5588 +srccontainerchecksum 8481205c937e58fc0b46eb25e4f7c8b28becc7ebf2529ab784f0bbb7292dc21faa9ebd1ef3be2a98950f1d2570b23eb13f7d6e134b8c8c5eea25e81c0e6c6eb5 +srcfiles size=15 + RELOC/source/latex/frankenstein/Makefile + RELOC/source/latex/frankenstein/abbrevs.ins + RELOC/source/latex/frankenstein/achicago-bst.ins + RELOC/source/latex/frankenstein/achicago.ins + RELOC/source/latex/frankenstein/attrib.ins + RELOC/source/latex/frankenstein/blkcntrl.ins + RELOC/source/latex/frankenstein/compsci.ins + RELOC/source/latex/frankenstein/dialogue.ins + RELOC/source/latex/frankenstein/lips.ins + RELOC/source/latex/frankenstein/moredefs.ins + RELOC/source/latex/frankenstein/newclude.ins + RELOC/source/latex/frankenstein/slemph.ins + RELOC/source/latex/frankenstein/titles.ins +runfiles size=191 + RELOC/bibtex/bib/frankenstein/frankenstein.bib + RELOC/bibtex/bst/frankenstein/achicago.bst + RELOC/tex/latex/frankenstein/abbrevs.cfg + RELOC/tex/latex/frankenstein/abbrevs.stq + RELOC/tex/latex/frankenstein/abbrevs.sty + RELOC/tex/latex/frankenstein/achicago.stq + RELOC/tex/latex/frankenstein/achicago.sty + RELOC/tex/latex/frankenstein/allocate.sto + RELOC/tex/latex/frankenstein/attrib.stq + RELOC/tex/latex/frankenstein/attrib.sty + RELOC/tex/latex/frankenstein/blkcntrl.stq + RELOC/tex/latex/frankenstein/blkcntrl.sty + RELOC/tex/latex/frankenstein/compsci.cfg + RELOC/tex/latex/frankenstein/compsci.stq + RELOC/tex/latex/frankenstein/compsci.sty + RELOC/tex/latex/frankenstein/dialogue.stq + RELOC/tex/latex/frankenstein/dialogue.sty + RELOC/tex/latex/frankenstein/lips.stq + RELOC/tex/latex/frankenstein/lips.sty + RELOC/tex/latex/frankenstein/moredefs.stq + RELOC/tex/latex/frankenstein/moredefs.sty + RELOC/tex/latex/frankenstein/newclude.stq + RELOC/tex/latex/frankenstein/newclude.sty + RELOC/tex/latex/frankenstein/simple.sto + RELOC/tex/latex/frankenstein/slemph.cfg + RELOC/tex/latex/frankenstein/slemph.stq + RELOC/tex/latex/frankenstein/slemph.sty + RELOC/tex/latex/frankenstein/tag.sto + RELOC/tex/latex/frankenstein/titles.cfg + RELOC/tex/latex/frankenstein/titles.stq + RELOC/tex/latex/frankenstein/titles.sty +catalogue-also frankenstein-unsupported +catalogue-ctan /macros/latex/contrib/frankenstein +catalogue-license collection +catalogue-topics collection + +name frcursive +category Package +revision 24559 +shortdesc French cursive hand fonts +relocated 1 +longdesc A hand-writing font in the style of the French academic +longdesc running-hand. The font was written in Metafont and has been +longdesc converted to Adobe Type 1 format. LaTeX support (NFFS fd files, +longdesc and a package) and font maps are provided. +execute addMap frcursive.map +containersize 1787800 +containerchecksum 5ac038493648ad14626e2a015c7dbf96a41257ab1d1086f9e79b0128df2c85af1a279e021e52c722636f8647364791bcf7580cccc1d80d60084f5a9a55a23317 +doccontainersize 322488 +doccontainerchecksum eb0559574af52a711f61ab84cbda996c7cf4b2314b4d5faaa18824ae3396f041b7a5948151b2b5cffae6675bbe09c2e4358b81e9ad7792e5ece8a2912d7ff030 +docfiles size=83 + RELOC/doc/fonts/frcursive/COPYING + RELOC/doc/fonts/frcursive/README details="Readme" + RELOC/doc/fonts/frcursive/frcursive.pdf details="Package documentation" +runfiles size=548 + RELOC/fonts/map/dvips/frcursive/frcursive.map + RELOC/fonts/source/public/frcursive/frcbx10.mf + RELOC/fonts/source/public/frcursive/frcbx14.mf + RELOC/fonts/source/public/frcursive/frcbx6.mf + RELOC/fonts/source/public/frcursive/frcc10.mf + RELOC/fonts/source/public/frcursive/frcc14.mf + RELOC/fonts/source/public/frcursive/frcc6.mf + RELOC/fonts/source/public/frcursive/frcf10.mf + RELOC/fonts/source/public/frcursive/frcf14.mf + RELOC/fonts/source/public/frcursive/frcf6.mf + RELOC/fonts/source/public/frcursive/frcr10.mf + RELOC/fonts/source/public/frcursive/frcr14.mf + RELOC/fonts/source/public/frcursive/frcr6.mf + RELOC/fonts/source/public/frcursive/frcsl10.mf + RELOC/fonts/source/public/frcursive/frcsl14.mf + RELOC/fonts/source/public/frcursive/frcsl6.mf + RELOC/fonts/source/public/frcursive/frcslbx10.mf + RELOC/fonts/source/public/frcursive/frcslbx14.mf + RELOC/fonts/source/public/frcursive/frcslbx6.mf + RELOC/fonts/source/public/frcursive/frcslc10.mf + RELOC/fonts/source/public/frcursive/frcslc14.mf + RELOC/fonts/source/public/frcursive/frcslc6.mf + RELOC/fonts/source/public/frcursive/frcursive.mf + RELOC/fonts/tfm/public/frcursive/frca10.tfm + RELOC/fonts/tfm/public/frcursive/frcbx10.tfm + RELOC/fonts/tfm/public/frcursive/frcbx14.tfm + RELOC/fonts/tfm/public/frcursive/frcbx6.tfm + RELOC/fonts/tfm/public/frcursive/frcc10.tfm + RELOC/fonts/tfm/public/frcursive/frcc14.tfm + RELOC/fonts/tfm/public/frcursive/frcc6.tfm + RELOC/fonts/tfm/public/frcursive/frcf10.tfm + RELOC/fonts/tfm/public/frcursive/frcf14.tfm + RELOC/fonts/tfm/public/frcursive/frcf6.tfm + RELOC/fonts/tfm/public/frcursive/frcr10.tfm + RELOC/fonts/tfm/public/frcursive/frcr14.tfm + RELOC/fonts/tfm/public/frcursive/frcr6.tfm + RELOC/fonts/tfm/public/frcursive/frcsl10.tfm + RELOC/fonts/tfm/public/frcursive/frcsl14.tfm + RELOC/fonts/tfm/public/frcursive/frcsl6.tfm + RELOC/fonts/tfm/public/frcursive/frcslbx10.tfm + RELOC/fonts/tfm/public/frcursive/frcslbx14.tfm + RELOC/fonts/tfm/public/frcursive/frcslbx6.tfm + RELOC/fonts/tfm/public/frcursive/frcslc10.tfm + RELOC/fonts/tfm/public/frcursive/frcslc14.tfm + RELOC/fonts/tfm/public/frcursive/frcslc6.tfm + RELOC/fonts/tfm/public/frcursive/frcw10.tfm + RELOC/fonts/type1/public/frcursive/frca10.pfb + RELOC/fonts/type1/public/frcursive/frcbx10.pfb + RELOC/fonts/type1/public/frcursive/frcbx14.pfb + RELOC/fonts/type1/public/frcursive/frcbx6.pfb + RELOC/fonts/type1/public/frcursive/frcc10.pfb + RELOC/fonts/type1/public/frcursive/frcc14.pfb + RELOC/fonts/type1/public/frcursive/frcc6.pfb + RELOC/fonts/type1/public/frcursive/frcf10.pfb + RELOC/fonts/type1/public/frcursive/frcf14.pfb + RELOC/fonts/type1/public/frcursive/frcf6.pfb + RELOC/fonts/type1/public/frcursive/frcr10.pfb + RELOC/fonts/type1/public/frcursive/frcr14.pfb + RELOC/fonts/type1/public/frcursive/frcr6.pfb + RELOC/fonts/type1/public/frcursive/frcsl10.pfb + RELOC/fonts/type1/public/frcursive/frcsl14.pfb + RELOC/fonts/type1/public/frcursive/frcsl6.pfb + RELOC/fonts/type1/public/frcursive/frcslbx10.pfb + RELOC/fonts/type1/public/frcursive/frcslbx14.pfb + RELOC/fonts/type1/public/frcursive/frcslbx6.pfb + RELOC/fonts/type1/public/frcursive/frcslc10.pfb + RELOC/fonts/type1/public/frcursive/frcslc14.pfb + RELOC/fonts/type1/public/frcursive/frcslc6.pfb + RELOC/fonts/type1/public/frcursive/frcw10.pfb + RELOC/tex/latex/frcursive/frcursive.sty + RELOC/tex/latex/frcursive/ot1frc.fd + RELOC/tex/latex/frcursive/t1frc.fd +catalogue-contact-repository https://framagit.org/manu/french-cursive +catalogue-ctan /fonts/frcursive +catalogue-license lppl1.2 +catalogue-topics font font-calligraphic font-mf font-type1 + +name frederika2016 +category Package +revision 42157 +shortdesc An OpenType Greek calligraphy font +relocated 1 +longdesc Frederika2016 is an attempt to digitize Hermann Zapf's +longdesc Frederika font. The font is the Greek companion of Virtuosa by +longdesc the same designer. This font is a calligraphy font and this is +longdesc an initial release. +containersize 41296 +containerchecksum b7b271af72364e0d2d00ac499bc1e419534d479d27fb424b7046373323354c47da29b888f0d765e3ff4725333ab3d407cd21a064bc4d063adf890de75aa49e3a +doccontainersize 336060 +doccontainerchecksum e205744d689113870fce9cf791f089ccb59cb6fa326c811f34db7183588df3de9b946cddba2a02128a9b88490e9326bea6563fa0fd9a3cdc76467555b7b8d198 +docfiles size=89 + RELOC/doc/fonts/frederika2016/FontInfo.pdf details="Package documentation" + RELOC/doc/fonts/frederika2016/README details="Readme" + RELOC/doc/fonts/frederika2016/testpol.pdf + RELOC/doc/fonts/frederika2016/testpol.tex +runfiles size=22 + RELOC/fonts/opentype/public/frederika2016/Frederika2016.otf +catalogue-ctan /fonts/frederika2016 +catalogue-license ofl +catalogue-topics font font-otf +catalogue-version 1.000 2016 initial release + +name frege +category Package +revision 27417 +shortdesc Typeset fregean Begriffsschrift +relocated 1 +longdesc The package defines a number of new commands for typesetting +longdesc fregean Begriffsschrift in LaTeX. It is loosely based on the +longdesc package begriff, and offers a number of improvements including +longdesc better relative lengths of the content stroke with respect to +longdesc other strokes, content strokes that point at the middle of +longdesc lines rather than the bottom, a greater width for the assertion +longdesc stroke as compared to the content stroke, a more intuitive +longdesc structure for the conditional, greater care taken to allow for +longdesc the linewidth in the spacing of formulas. +containersize 4528 +containerchecksum 39d359f01256f2399cd9226744aa9735543d5c9eb26104855bb52efaf51b8c720cb85e5be08241d72d3b2e1c2deb9cc7a10dd90ffca789ae91b6ea6b7cffb879 +doccontainersize 142332 +doccontainerchecksum 28c5cb420f25ed57a03f3914ce2286732ab8e06cbb0b8446ab3112ccb79b34814762becb7ac7457593e1b5b1579613a76a8b21fe2c43ac9f08175495ea87bd1c +docfiles size=48 + RELOC/doc/latex/frege/GNU.txt + RELOC/doc/latex/frege/INSTALL + RELOC/doc/latex/frege/README details="Readme" + RELOC/doc/latex/frege/frege.pdf details="Package documentation" + RELOC/doc/latex/frege/frege.tex +runfiles size=17 + RELOC/tex/latex/frege/frege.sty +catalogue-also bguq begriff grundgesetze +catalogue-ctan /macros/latex/contrib/frege +catalogue-license gpl +catalogue-topics maths logic +catalogue-version 1.3 + +name frenchmath +category Package +revision 56847 +shortdesc Typesetting mathematics according to French rules +relocated 1 +longdesc The package provides: capital letters in upright shape for +longdesc mathematical mode according to French rule (package option), +longdesc correct spacing after commas and before a semicolon in math +longdesc mode, some useful macros and aliases for symbols used in +longdesc France: \infeg, \supeg, \paral, ... several macros for writing +longdesc french operator names like pgcd, ppcm, Card, rg, Vect, ... +containersize 1872 +containerchecksum 9f05e3391576e8f37d00852a4d5c9c961369f0fa838d6942594e8b729391d41080d1bca55b258c24ed784788f5b52bb5f1ad4e0d33303676a2811c3804740d09 +doccontainersize 478856 +doccontainerchecksum d1e39e879de7f2cc5307970b7bf2c5535aeafc67e4d79b01d217e33f32d75c482716b07539c7f58981cb581fda61d5310f9f4d23ce9c96e7f1d151cd91a6dc7e +docfiles size=118 + RELOC/doc/latex/frenchmath/README.md details="Readme" + RELOC/doc/latex/frenchmath/frenchmath.pdf details="Package documentation" language="fr" +srccontainersize 8276 +srccontainerchecksum d2af7f5fd3f45964d851c038b533b99e6c2a813fa382a9b34333246b044c9b18db6252ebc8c997527211ddc8ce20ec3a816d11b49e1a3e185d7356dd141967fd +srcfiles size=7 + RELOC/source/latex/frenchmath/frenchmath.dtx + RELOC/source/latex/frenchmath/frenchmath.ins +runfiles size=2 + RELOC/tex/latex/frenchmath/frenchmath.sty +catalogue-ctan /macros/latex/contrib/frenchmath +catalogue-license lppl1.3 +catalogue-topics maths french +catalogue-version 1.5 + +name frimurer +category Package +revision 56704 +shortdesc Access to the 'frimurer' cipher for use with LaTeX +relocated 1 +longdesc This package provides access to the 'frimurer' cipher for use +longdesc with LaTeX. +containersize 15456 +containerchecksum 81057096f64d8ed53fb8afb9bd72eac6538f5babdcc054f422c7d6d0fa73b88459d250ed56b1666ec8d6c936b52102a9a1988d04ccc2efe76761e945d9027145 +doccontainersize 191432 +doccontainerchecksum d2c8dd345fed5935fe2e329ebfe7c2e9a5c836f3af5d52605e35ce32ebf51cee529c182505db8eaec7772476f758bc5905a8b57cad5ebd162732801c2cf6d352 +docfiles size=55 + RELOC/doc/fonts/frimurer/LICENSE + RELOC/doc/fonts/frimurer/README details="Readme" + RELOC/doc/fonts/frimurer/frimurer.pdf details="Package documentation" + RELOC/doc/fonts/frimurer/frimurer.tex +srccontainersize 4184 +srccontainerchecksum a0fc0076cb4beaf081f21ca474ee287cfcfac07c889907d690093ff7b188214875766746bfade8f7de9182e5c32c7bdf912b71336f078bee120b042615056e46 +srcfiles size=12 + RELOC/source/fonts/frimurer/frimurer.sfd +runfiles size=11 + RELOC/fonts/afm/public/frimurer/frimurer.afm + RELOC/fonts/enc/dvips/frimurer/frimurer.enc + RELOC/fonts/tfm/public/frimurer/frimurer.tfm + RELOC/fonts/type1/public/frimurer/frimurer.pfb + RELOC/tex/latex/frimurer/frimurer.sty +catalogue-ctan /fonts/frimurer +catalogue-license gpl3 +catalogue-topics font font-mf font-type1 +catalogue-version 1 + +name frletter +category Package +revision 15878 +shortdesc Typeset letters in the French style +relocated 1 +longdesc A small class for typesetting letters in France. No assumption +longdesc is made about the language in use. The class represents a small +longdesc modification of the beletter class, which is itself a +longdesc modification of the standard LaTeX letter class. +containersize 1792 +containerchecksum 5f6c61585ab0626931cf7f19d18138ec70572f3531f36cf94eecd82d93855a2ec8ed2ed0146971e035f8b5119df7c602c6279a9976e024ac85869953448d51de +doccontainersize 596 +doccontainerchecksum 36fbbc422eed8e577e054067e7b442cc84b640fcbd0706e3d8cb503884a5208e0a5bbe0c40b67cb5b495bcdd0ba7a78855338588757e5a9d26dce21f9bedcf3e +docfiles size=1 + RELOC/doc/latex/frletter/README details="Readme" +runfiles size=1 + RELOC/tex/latex/frletter/frletter.cls +catalogue-ctan /macros/latex/contrib/frletter +catalogue-license pd +catalogue-topics letter class + +name frontespizio +category Package +revision 24054 +shortdesc Create a frontispiece for Italian theses +relocated 1 +longdesc Typesetting a frontispiece independently of the layout of the +longdesc main document is difficult. This package provides a solution by +longdesc producing an auxiliary TeX file to be typeset on its own and +longdesc the result is automatically included at the next run. The +longdesc markup necessary for the frontispiece is written in the main +longdesc document in a frontespizio environment. Documentation is mainly +longdesc in Italian, as the style is probably apt only to theses in +longdesc Italy. +containersize 5464 +containerchecksum 6045214cc6a8325d8c828c2591fb43995f098803b031adf50bf8b4dddfa0047ce110dd25e5db71b068376893b7ee83a70806713a83b90a26c4d1c8553e4f00f2 +doccontainersize 885988 +doccontainerchecksum beb8cec7ff51ff9b85e2a650bd7931070c126ea3b126051eb63194e8a071f6dd92d0014953afd85b0e73095208fdcefbf202d9c0ac22003f71d7f7a72f4a4034 +docfiles size=253 + RELOC/doc/latex/frontespizio/README details="Readme" + RELOC/doc/latex/frontespizio/examplea.pdf + RELOC/doc/latex/frontespizio/examplea.tex + RELOC/doc/latex/frontespizio/exampleasuf.pdf + RELOC/doc/latex/frontespizio/exampleasuf.tex + RELOC/doc/latex/frontespizio/exampleb.pdf + RELOC/doc/latex/frontespizio/exampleb.tex + RELOC/doc/latex/frontespizio/examplec.pdf + RELOC/doc/latex/frontespizio/examplec.tex + RELOC/doc/latex/frontespizio/exampled.pdf + RELOC/doc/latex/frontespizio/exampled.tex + RELOC/doc/latex/frontespizio/examplee.pdf + RELOC/doc/latex/frontespizio/examplee.tex + RELOC/doc/latex/frontespizio/fakelogo.mp + RELOC/doc/latex/frontespizio/fakelogo.pdf + RELOC/doc/latex/frontespizio/frontespizio.pdf details="Package documentation" language="it" +srccontainersize 22604 +srccontainerchecksum 690c42ad3b6db68c8d4305fd9c402126013a26a28049f5cdbaccc455effacf9bbf86ba77d91c518d88b72e48930939389ec33620e8adf06eb20762606ad53daf +srcfiles size=21 + RELOC/source/latex/frontespizio/frontespizio.dtx + RELOC/source/latex/frontespizio/frontespizio.ins +runfiles size=5 + RELOC/tex/latex/frontespizio/frontespizio.sty +catalogue-also toptesi +catalogue-ctan /macros/latex/contrib/frontespizio +catalogue-license lppl +catalogue-topics dissertation typesetting +catalogue-version 1.4a + +name froufrou +category Package +revision 58968 +shortdesc Fancy section separators +relocated 1 +longdesc This package provides fancy separators, which are visual cues +longdesc that indicate a change of subject or context without actually +longdesc starting a new chapter or section. +containersize 4036 +containerchecksum 8f6aec27e2d8cfeb0705cdafedcb741de6fd7ec656f422034bc771573951c8bc8b778e509de57c516b7adad6509fd52b87ee5ec01f77efb318ee1e374c5d2cb4 +doccontainersize 41820 +doccontainerchecksum 701b5021ff3b21ae1f65d59d01ce534c3efca07c09bab2ae22df5c37e1510a0c80c2abccd2d738acd0195cb218169293f36827078552a3b94c82c46d6be000da +docfiles size=13 + RELOC/doc/latex/froufrou/LICENSE + RELOC/doc/latex/froufrou/README.md details="Readme" + RELOC/doc/latex/froufrou/froufrou.pdf details="Package documentation" +srccontainersize 6256 +srccontainerchecksum d6cde8286592041c04157f222045082329023b6784677a8d587f63fc52f0af4e673b45a66a5756a29b4aae147f3a80c2e1b93faafc1268655431315a7808247e +srcfiles size=5 + RELOC/source/latex/froufrou/froufrou.dtx + RELOC/source/latex/froufrou/froufrou.ins +runfiles size=3 + RELOC/tex/latex/froufrou/froufrou.sty +catalogue-contact-bugs https://gitlab.com/lago/froufrou/issues +catalogue-contact-repository https://gitlab.com/lago/froufrou +catalogue-ctan /macros/latex/contrib/froufrou +catalogue-license lppl1.3 +catalogue-topics decoration +catalogue-version 1.3.0 + +name frpseudocode +category Package +revision 56088 +shortdesc French translation for the algorithmicx package +relocated 1 +longdesc This package is intended for use alongside Szasz Janos' +longdesc algorithmicx package. Its aim is to provide a French +longdesc translation of terms and words used in algorithms to make it +longdesc integrate seamlessly in a French written document. +containersize 1216 +containerchecksum f8807f696b69f5ad8b08ee24c210c084e11652d8f00b996e48f5e08c894e991b0f2cb288ac72e6b45208add3185a3e14fcfb432d8b2d2844359f54811859cb07 +doccontainersize 68644 +doccontainerchecksum 6c22157462f55d2c19a8da146558556eef0e28ed7f79c5231b282ad218b041d1d850ffd24c8f06c914ae5d9efd04d442061598f6f427ffe9393cb2ff1a4324ed +docfiles size=19 + RELOC/doc/latex/frpseudocode/README.md details="Readme" + RELOC/doc/latex/frpseudocode/frpseudocode-example.pdf details="Example of use" + RELOC/doc/latex/frpseudocode/frpseudocode-example.tex +runfiles size=1 + RELOC/tex/latex/frpseudocode/frpseudocode.sty +catalogue-contact-bugs https://github.com/olirwin/frpseudocode/issues +catalogue-contact-repository https://github.com/olirwin/frpseudocode/ +catalogue-ctan /macros/latex/contrib/frpseudocode +catalogue-license lppl1.3c +catalogue-topics pseudocode french +catalogue-version 0.3.0 + +name ftc-notebook +category Package +revision 50043 +shortdesc Typeset FIRST Tech Challenge (FTC) notebooks +relocated 1 +longdesc This LaTeX package will greatly simplify filling entries for +longdesc your FIRST Tech Challenge (FTC) engineering or outreach +longdesc notebook. We developed this package to support most frequently +longdesc used constructs encountered in an FTC notebook: meetings, +longdesc tasks, decisions with pros and cons, tables, figures with +longdesc explanations, team stories and bios, and more. We developed +longdesc this package during the 2018-2019 season and are using it for +longdesc our engineering notebook. Team Robocracy is sharing this style +longdesc in the spirit of coopertition. +containersize 7084 +containerchecksum 9dca1b2e09293df3a12df85f843e1701e1ac428f4caccbc196f43cfd02517cbc98908fe95fcd3e26685cd95dc8565aa5e29ad79f7d42ec5cdeca0346db6a759a +doccontainersize 3622556 +doccontainerchecksum 36022ae2df65e45e2fdd2a01e2c95502c3acee0e8fb0b738ef06b313f47cf8798df30a41a6f5e7b4021a556ebdfd17f84b4a79d54d2b6e88c8044f0a67a87f8e +docfiles size=1704 + RELOC/doc/latex/ftc-notebook/README.md details="Readme" + RELOC/doc/latex/ftc-notebook/example-notebook.pdf details="Example of use" + RELOC/doc/latex/ftc-notebook/example-notebook.tex + RELOC/doc/latex/ftc-notebook/ftc-notebook.pdf details="Package documentation" + RELOC/doc/latex/ftc-notebook/ftc-notebook.tex + RELOC/doc/latex/ftc-notebook/newmeeting.sh + RELOC/doc/latex/ftc-notebook/src/aug19.tex + RELOC/doc/latex/ftc-notebook/src/aug19/build-pict.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/chassi-cad.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/encoder-cad.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/first-build.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/first-cad.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/second-cad.jpg + RELOC/doc/latex/ftc-notebook/src/bio.tex + RELOC/doc/latex/ftc-notebook/src/bio/mitsiki.jpg + RELOC/doc/latex/ftc-notebook/src/images/aug18.jpg + RELOC/doc/latex/ftc-notebook/src/images/logo.jpg + RELOC/doc/latex/ftc-notebook/src/images/robocracy2018.jpg + RELOC/doc/latex/ftc-notebook/src/story.tex +runfiles size=7 + RELOC/tex/latex/ftc-notebook/ftc-notebook.sty +catalogue-ctan /macros/latex/contrib/ftc-notebook +catalogue-license lppl1.3 +catalogue-topics memorandum +catalogue-version 1.1 + +name ftcap +category Package +revision 17275 +shortdesc Allows \caption at the beginning of a table-environment +relocated 1 +longdesc For several reasons a \caption may be desirable at the top of a +longdesc table environment. This package changes the table environment +longdesc such that \abovecaptionskip and \belowcaptionskip are swapped. +longdesc The package should also work with a non-standard table +longdesc environment. +containersize 2044 +containerchecksum 1287e0bd63fc92ef3e3c77ae3a6113cfcca38dd63f4a90948baadd2a365c07b38631d916230baeaf550b1aeff07f9cac3a26a07301838716d8d70fcf0843953e +doccontainersize 210700 +doccontainerchecksum afa317f10c600c88bb96fccb0383b291e1fb7c11abba5f6bd1efb05e7d2ce117c4ece7bdf9a9ea16c71c116143aa65ba26cf7c2e1dba68f225b655d122169001 +docfiles size=55 + RELOC/doc/latex/ftcap/ftcap.pdf details="Package documentation" + RELOC/doc/latex/ftcap/ftcap.tex +runfiles size=1 + RELOC/tex/latex/ftcap/ftcap.sty +catalogue-ctan /macros/latex/contrib/ftcap +catalogue-license gpl +catalogue-topics caption table +catalogue-version 1.4 + +name ftnxtra +category Package +revision 29652 +shortdesc Extend the applicability of the \footnote command +relocated 1 +longdesc The package treats footnotes in \caption, the tabular +longdesc environment, and \chapter and other \section-like commands. +containersize 1900 +containerchecksum df8395b996f96ed72505ef1ef7f0e8e6101d4b26059831b227344023514d377eb189961a240e83ba42ac4ef7e8086b8ffcda347290014fbb1cf1531371c20eff +doccontainersize 23512 +doccontainerchecksum fc16ff992e3339480a4154169665be49f51e56f361d0b1f97842c555be59485fd7edf3cf815e32642826224e188c5377fdb2ab36746cdaef7f552399a4b7119c +docfiles size=8 + RELOC/doc/latex/ftnxtra/README details="Readme" + RELOC/doc/latex/ftnxtra/ftnxtra.pdf details="Package documentation" + RELOC/doc/latex/ftnxtra/ftnxtra.tex +srccontainersize 2804 +srccontainerchecksum 87e580467312c6198fd7106b6fdfdac994c5f9fae3d131b793da60ebc9d852141ed6630aa0d4273e50e7311b6e10499a3e4e2cf141ff197d5ed72822f0c15be6 +srcfiles size=3 + RELOC/source/latex/ftnxtra/ftnxtra.dtx + RELOC/source/latex/ftnxtra/ftnxtra.ins +runfiles size=2 + RELOC/tex/latex/ftnxtra/ftnxtra.sty +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-license lppl +catalogue-topics footnote +catalogue-version 0.1 + +name fullblck +category Package +revision 25434 +shortdesc Left-blocking for letter class +relocated 1 +longdesc Used with the letter documentclass to set the letter in a +longdesc fullblock style (everything at the left margin). +containersize 1124 +containerchecksum b298f55ca3afe8819e44704329c06be2867b00c1a2a399b5db8de8477751f9945bce1041450c7e91559eeee65c9bae5e76b57469c956239c9752341b820047c7 +doccontainersize 38848 +doccontainerchecksum 9da7587195a077f8218abc6a7df98bd15369650e00ab3893b6cd70a268bf34431b8c2c49b3415269bf6b8d1ddf51a8e23e76ae87667309f8466ad69da87f05a0 +docfiles size=14 + RELOC/doc/latex/fullblck/README details="Readme" + RELOC/doc/latex/fullblck/fullblck.pdf details="Package documentation" +srccontainersize 2808 +srccontainerchecksum 2ccd2da9f1924a1547f4a6b870ce150e6140abc9c1984f1a951a59146944d50c6f8e115ccfe79232f941dbec756e26d460037d92af191eee644bb2dcbe986c6e +srcfiles size=4 + RELOC/source/latex/fullblck/fullblck.dtx + RELOC/source/latex/fullblck/fullblck.dtx.asc + RELOC/source/latex/fullblck/fullblck.ins +runfiles size=1 + RELOC/tex/latex/fullblck/fullblck.sty +catalogue-ctan /macros/latex/contrib/fullblck +catalogue-license lppl +catalogue-topics letter +catalogue-version 1.03 + +name fullminipage +category Package +revision 34545 +shortdesc Minipage spanning a complete page +relocated 1 +longdesc This package provides the environment fullminipage, which +longdesc generates a minipage spanning a new, complete page with page +longdesc style empty. The environment provides options to set margins +longdesc around the minipage and configure the background. +containersize 1792 +containerchecksum 7ca92205caae688761ddeadfc0a37173b37e285adf3c1f54c4b2994a0c82c90713a255d5068784e3f3866a7f1af603906513a561632b2d09c68477e497330d2e +doccontainersize 254076 +doccontainerchecksum 111145d2f1c81f74692df8ef397d36c4c0d7b6c89efe0250571c0153b22b9d562df0dcefa90e3be96f8eb518af75ee8a23d42ad898e23668265dcf39d3c678ff +docfiles size=72 + RELOC/doc/latex/fullminipage/COPYING + RELOC/doc/latex/fullminipage/Makefile + RELOC/doc/latex/fullminipage/README details="Readme" + RELOC/doc/latex/fullminipage/fullminipage.pdf details="Package documentation" + RELOC/doc/latex/fullminipage/fullminipage_test.pdf + RELOC/doc/latex/fullminipage/fullminipage_test.tex +srccontainersize 4348 +srccontainerchecksum d95dabc4565fd48b8a6e8b35777fd456934a3cba8bac34629ee6ff4847cd1578f70a06e6b87a9b76d26e341a502d1c284e4e155aaea9c92a12dbf6d0043d8249 +srcfiles size=4 + RELOC/source/latex/fullminipage/fullminipage.dtx + RELOC/source/latex/fullminipage/fullminipage.ins +runfiles size=1 + RELOC/tex/latex/fullminipage/fullminipage.sty +catalogue-ctan /macros/latex/contrib/fullminipage +catalogue-license gpl3 +catalogue-topics layout +catalogue-version 0.1.1 + +name fullwidth +category Package +revision 24684 +shortdesc Adjust margins of text block +relocated 1 +longdesc The package provides the environment fullwidth, which sets the +longdesc left and right margins in a simple way. There is no constraint +longdesc about page breaks; if you are using the twoside mode, you can +longdesc set the inner and outer margins to avoid the effects of the +longdesc different margins. +containersize 3760 +containerchecksum c9b9c37991365346804b51aae7b4645e5b63eb6a3c5c60a953cbe0583de0960e8a9d6cc99dc7526944415764869308d778fb85e7cde821792bec940f6c19072b +doccontainersize 284820 +doccontainerchecksum 55892645ce01b31dd0285749091b8fbcab0061a7190f7a426379f6d3ea8bece8a5c054cad8b53efe1bb69a68fd3e49c3e8c8afb94954ff4ba8838142ab4576b8 +docfiles size=74 + RELOC/doc/latex/fullwidth/README details="Readme" + RELOC/doc/latex/fullwidth/fullwidth-test.pdf + RELOC/doc/latex/fullwidth/fullwidth-test.tex + RELOC/doc/latex/fullwidth/fullwidth.pdf details="Package documentation" + RELOC/doc/latex/fullwidth/fullwidth.tex +runfiles size=4 + RELOC/tex/latex/fullwidth/fullwidth.sty +catalogue-ctan /macros/latex/contrib/fullwidth +catalogue-license lppl +catalogue-topics geometry +catalogue-version 0.1 + +name functan +category Package +revision 15878 +shortdesc Macros for functional analysis and PDE theory +relocated 1 +longdesc This package provides a convenient and coherent way to deal +longdesc with name of functional spaces (mainly Sobolev spaces) in +longdesc functional analysis and PDE theory. It also provides a set of +longdesc macros for dealing with norms, scalar products and convergence +longdesc with some object oriented flavor (it gives the possibility to +longdesc override the standard behavior of norms, ...). +containersize 2552 +containerchecksum 0899d9a3c30e701d5ba6a0275521a40a3cf2df680e9d4a95624730184fb370ae2537bec1becc3b185647a988af5fa8e4bda5198f42cbe68cbc848d8915f1c9da +doccontainersize 147704 +doccontainerchecksum c824825fd424316701e25fc573a431aa5967af0d520b631489b20608459dcd0f7abfac277c5b1e7b60e0a2888e0b37d787755acd6f671e48d4911969e3058692 +docfiles size=44 + RELOC/doc/latex/functan/README details="Readme" + RELOC/doc/latex/functan/functan.pdf details="Package documentation" +srccontainersize 9636 +srccontainerchecksum f83465845900ae5bc872fceead5a83fa972c9fa8b858606007237251ee2dd77cbd095376194aca0356e5c8be53fe653a88f5a10c1f73effa8201b3adf55c5a17 +srcfiles size=12 + RELOC/source/latex/functan/functan.drv + RELOC/source/latex/functan/functan.dtx + RELOC/source/latex/functan/functan.ins +runfiles size=3 + RELOC/tex/latex/functan/functan.sty +catalogue-ctan /macros/latex/contrib/functan +catalogue-license lppl +catalogue-topics maths + +name fundus-calligra +category Package +revision 26018 +shortdesc Support for the calligra font in LaTeX documents +relocated 1 +longdesc The package offers support for the calligra handwriting font, +longdesc in LaTeX documents. The package is part of the fundus bundle. +containersize 1540 +containerchecksum a999f372ef266e66a199935a0783d99293141aa08586a38d65a3748c1a239eca7b0faa74d537085852e79520343ca937943b30ce38820fdc925d75b1a334aabd +doccontainersize 185644 +doccontainerchecksum 93aa54f12ade2eab798bd84596ec3b366db0a15eb05b5279261af8bc13bc1ce782077de36465e8e29d11ea1b89456ab207c33ab907e5c31af95e63d5d897da88 +docfiles size=49 + RELOC/doc/latex/fundus-calligra/calligra.pdf details="Package documentation" +srccontainersize 3480 +srccontainerchecksum bc5cfc694592c7a0fb469f752a6ec854d11d9f69588fa6e42390080e88cca3da2fbe888b826ae7a3c07505bc418129237faa791dbf4f3dd9a31cb8e06ad1a9af +srcfiles size=3 + RELOC/source/latex/fundus-calligra/calligra.dtx + RELOC/source/latex/fundus-calligra/calligra.ins +runfiles size=1 + RELOC/tex/latex/fundus-calligra/calligra.sty +catalogue-ctan /macros/latex/contrib/fundus/calligra +catalogue-license other-free +catalogue-topics font-supp +catalogue-version 1.2 + +name fundus-cyr +category Package +revision 26019 +shortdesc Support for Washington University Cyrillic fonts +relocated 1 +longdesc The package supports the use of the Washington Cyrillic fonts +longdesc with LaTeX (Note that standard LaTeX has support, too, as +longdesc encoding OT2). The package is distributed as part of the fundus +longdesc bundle. +containersize 1404 +containerchecksum de84ebbe6e70f61bf9765b9368df95fa5ae607a8d6e1c5535240e8665bb097c6958956d1b19ccf12a2a510672675c7ffa08ab98bd80b6ae2973fbe65d0e8d343 +runfiles size=1 + RELOC/tex/latex/fundus-cyr/cyr.sty +catalogue-ctan /macros/latex/contrib/fundus/cyr/cyr.sty +catalogue-license lppl1.3 +catalogue-topics font-supp + +name fundus-sueterlin +category Package +revision 26030 +shortdesc Sutterlin +relocated 1 +longdesc The package supports use, in LaTeX, of the Metafont emulation +longdesc of the Sueterlin handwriting fonts The package is distributed +longdesc as part of the fundus bundle.. +containersize 1556 +containerchecksum b15a1fa2ee3272f25a616234a335d0bd5c8ac810724ecf453e172d2b68293b55f01f3e57acf81c17721cd3f489b35cde077d5456b78afacc589853224f1bce94 +doccontainersize 180884 +doccontainerchecksum 7162188682c9129e1788104fe94aae2a70607e276eeec4367ae60ff9e50d26aa88a73998028b99ee42627aa27e8868ed2fe72063db2e033798b09ff0b7a13477 +docfiles size=49 + RELOC/doc/latex/fundus-sueterlin/suetterl.pdf details="Package documentation" +srccontainersize 3576 +srccontainerchecksum 59f5e1e7f338445d3e8430c5c7cf69de9499a659ad5f32566c26166bc2997eab82964919c50aa15311d19c80a14a1a7bc4380e985f382d4ee89c387faef38b37 +srcfiles size=3 + RELOC/source/latex/fundus-sueterlin/suetterl.dtx + RELOC/source/latex/fundus-sueterlin/suetterl.ins +runfiles size=1 + RELOC/tex/latex/fundus-sueterlin/suetterl.sty +catalogue-ctan /macros/latex/contrib/fundus/suetterl +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 1.2 + +name fvextra +category Package +revision 49947 +shortdesc Extensions and patches for fancyvrb +relocated 1 +longdesc fvextra provides several extensions to fancyvrb, including +longdesc automatic line breaking and improved math mode. It also patches +longdesc some fancyvrb internals. Parts of fvextra were originally +longdesc developed as part of pythontex and minted. +containersize 11168 +containerchecksum 9b5daea58dbbd82c3c2d5e637b3c46531aaac1600b39a945eecefc725591c885b0fd706fd38a11c3149fbee3b6029ed518147617a9f0c95b57fe5d66d19541f7 +doccontainersize 817944 +doccontainerchecksum 8e21f94366f7642cf92b8874050c961386fa019450a5e1ae9f6221ab3bf473b41e768bcb2fd1063a4421e721daef6ada5b964a1b6b9fc0054a1b9d7c4040b54c +docfiles size=203 + RELOC/doc/latex/fvextra/README details="Readme" + RELOC/doc/latex/fvextra/fvextra.pdf details="Package documentation" +srccontainersize 50964 +srccontainerchecksum 85330a89067d35c88c86ffaffb0445178b899a9f7727148ccb6cece070317f0d559e72e216c7ecd5a39bf830f5ca93f9f5f711a931fe8cc9d942e4572263f74d +srcfiles size=67 + RELOC/source/latex/fvextra/fvextra.dtx + RELOC/source/latex/fvextra/fvextra.ins +runfiles size=20 + RELOC/tex/latex/fvextra/fvextra.sty +catalogue-contact-home https://github.com/gpoore/fvextra +catalogue-ctan /macros/latex/contrib/fvextra +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 1.4 + +name fwlw +category Package +revision 29803 +shortdesc Get first and last words of a page +relocated 1 +longdesc The package extracts the first and last words of a page, +longdesc together with the first word of the next page, just before the +longdesc page is formed into the object to print. The package defines a +longdesc couple of page styles that use the words that have been +longdesc extracted. +containersize 3064 +containerchecksum ac2c981bcc4da92a7f91c3ac17d66c4e0e7c94ff1bdb3bf3c7f6a4eef19fad1ecbbc6048a5c74627126c7e1190ee18c2c9373e80d52130a2d272c58ef70de6fc +doccontainersize 36676 +doccontainerchecksum bb55ca044aafb5b11b89b3c817066c4fb20facba8812667398ecf945bd8ed4b11bec2dfd21455db9cfa5e81e5f865655a3e6f4d3724bf40e47ad1db708896902 +docfiles size=12 + RELOC/doc/latex/fwlw/README + RELOC/doc/latex/fwlw/fwlw.pdf details="Package documentation" + RELOC/doc/latex/fwlw/fwlw.tex +runfiles size=2 + RELOC/tex/latex/fwlw/fwlw.sty +catalogue-ctan /macros/latex/contrib/fwlw +catalogue-license other-free +catalogue-topics page-hf + +name g-brief +category Package +revision 50415 +shortdesc Letter document class +relocated 1 +longdesc Designed for formatting formless letters in German; can also be +longdesc used for English (by those who can read the documentation). +longdesc There are LaTeX 2.09 documentstyle and LaTeX 2e class files for +longdesc both an 'old' and a 'new' version of g-brief. +containersize 5060 +containerchecksum 6c0a8e653cab5f67a85d25e18b98371323b3dd09365f6a3d1b47eee409b233db4290f6e6de70128f5b45facfc7771475671990bb2c79a1718c74972bfba78070 +doccontainersize 258180 +doccontainerchecksum 147d30be05a9224e141d9dc23a81750d0c43bf590d6e1dcb3e92fda6c668031522ef410904e5c7621c9b98879d6809fe604cf47de7f24891bc7e15c7be5ad05c +docfiles size=73 + RELOC/doc/latex/g-brief/README details="Readme" + RELOC/doc/latex/g-brief/beispiel.pdf details="Example, old version" language="de" + RELOC/doc/latex/g-brief/beispiel.tex + RELOC/doc/latex/g-brief/beispiel2.pdf details="Example, new version" language="de" + RELOC/doc/latex/g-brief/beispiel2.tex + RELOC/doc/latex/g-brief/g-brief.pdf details="Package documentation" language="de" +srccontainersize 12476 +srccontainerchecksum 447a25d983f71d109bc747ee8ab9e120a0b7c698a9238ea5363d4d826383af5587f78f21c442d4e1d999eaf4cbfee813063f7547e786df962866e57c55673c8c +srcfiles size=17 + RELOC/source/latex/g-brief/g-brief.drv + RELOC/source/latex/g-brief/g-brief.dtx + RELOC/source/latex/g-brief/g-brief.ins +runfiles size=11 + RELOC/tex/latex/g-brief/g-brief.cls + RELOC/tex/latex/g-brief/g-brief.sty + RELOC/tex/latex/g-brief/g-brief2.cls + RELOC/tex/latex/g-brief/g-brief2.sty +catalogue-also akletter dinbrief scrlttr2 scrletter envlab +catalogue-ctan /macros/latex/contrib/g-brief +catalogue-license lppl1 +catalogue-topics class letter german +catalogue-version 4.0.3 + +name gaceta +category Package +revision 15878 +shortdesc A class to typeset La Gaceta de la RSME +relocated 1 +longdesc The class will typeset papers for <<La Gaceta de la Real +longdesc Sociedad Matematica Espanola>>. +containersize 17880 +containerchecksum 54c42cde3613f1fc28ba0a675281e64d2596e8f3c7831e1b1611c34fed1a82c01da2d6eb98058d5776ffc625d04e62359f63819307d04c6296705de74bfcef66 +doccontainersize 124196 +doccontainerchecksum 594fb3b44492018c6777e014ccc4784813784d3e282cffec0f6b6410a59f088ee30c8113a714fa41369eb795b35a1c615f3069a43697d0bed887123a44c02bf7 +docfiles size=60 + RELOC/doc/latex/gaceta/README details="Readme" + RELOC/doc/latex/gaceta/plantilla-articulo-de-seccion.pdf details="Example 2: how to write an article" language="es" + RELOC/doc/latex/gaceta/plantilla-articulo-de-seccion.tex + RELOC/doc/latex/gaceta/plantilla-articulo-suelto.pdf details="Example 1: how to write an article" language="es" + RELOC/doc/latex/gaceta/plantilla-articulo-suelto.tex +runfiles size=16 + RELOC/tex/latex/gaceta/gaceta.cls +catalogue-ctan /macros/latex/contrib/gaceta +catalogue-license lppl +catalogue-topics journalpub class +catalogue-version 1.06 + +name galois +category Package +revision 15878 +shortdesc Typeset Galois connections +relocated 1 +longdesc The package deals with connections in two-dimensional style, +longdesc optionally in colour. +containersize 2328 +containerchecksum 0c864940c2a47ad82f031868c1933679f9ee0e5ab01e98386433311a4230a77c7a5d41016619fbf7bb1957fecc259bd092d7a0894eedef91143a0d85e68a6978 +doccontainersize 87220 +doccontainerchecksum 7c71fe703efe235b3d1cf3298c99f2ba7dfbdc8d7c20861e8738070ef03b9671b1a4f6df40b2238d4b7cf9e765a1cfdc6210ea63ad06dfc60e0ac7a101735315 +docfiles size=28 + RELOC/doc/latex/galois/README + RELOC/doc/latex/galois/galois.pdf details="Package description" +srccontainersize 6452 +srccontainerchecksum f1f62a005edc9b6b5c1b294aedbfe00cff61c48f22d2fd0b90d76b1c6144fd9c8b885890e4a6c6e64e054ceb67b851c6fe3d9f2f1baf2801f070f0bd269d4925 +srcfiles size=8 + RELOC/source/latex/galois/Makefile + RELOC/source/latex/galois/galois.dtx + RELOC/source/latex/galois/galois.ins +runfiles size=2 + RELOC/tex/latex/galois/galois.sty +catalogue-ctan /macros/latex/contrib/galois +catalogue-license lppl +catalogue-topics maths +catalogue-version 1.5 + +name gamebook +category Package +revision 24714 +shortdesc Typeset gamebooks and other interactive novels +relocated 1 +longdesc This package provides the means in order to lay-out gamebooks +longdesc with LaTeX. A simple gamebook example is included with the +longdesc package, and acts as a tutorial. +containersize 1696 +containerchecksum 4af22bc285bac3f368778dae5c91cf6a1999748a6dfa5fba96e166ed320e124c33f2b6d6bee16ad8d00d0f8067b24bb3567a1aba849b74a6b02fed3bb85dbc0a +doccontainersize 219896 +doccontainerchecksum 58493c9b39343846913263f53b3bfe0fd89e4adb4154580d1bb0ff5d32b5b91ddc75511a0241fa3b98faef8b2d9d7c1846aca486e0c7262f8b3ea7a6bfddc619 +docfiles size=72 + RELOC/doc/latex/gamebook/README details="Readme" + RELOC/doc/latex/gamebook/gamebook-example.pdf details="Simple gamebook example" + RELOC/doc/latex/gamebook/gamebook-example.tex + RELOC/doc/latex/gamebook/gamebook.pdf details="Package documentation" + RELOC/doc/latex/gamebook/lppl.txt +srccontainersize 4640 +srccontainerchecksum 793f5cb23ef53b3d24d10ac5d52cf1e8bf90438571e23b5171c778ac720fb2c52a03a90e1f83f353df0b5410e94b5551d0855284df72c34a0f212842a3f96c41 +srcfiles size=4 + RELOC/source/latex/gamebook/gamebook.dtx + RELOC/source/latex/gamebook/gamebook.ins +runfiles size=1 + RELOC/tex/latex/gamebook/gamebook.sty +catalogue-ctan /macros/latex/contrib/gamebook +catalogue-license lppl1.3 +catalogue-topics games +catalogue-version 1.0 + +name gammas +category Package +revision 56403 +shortdesc Template for the GAMM Archive for Students +relocated 1 +longdesc This is the official document class for typesetting journal +longdesc articles for GAMM Archive for Students (GAMMAS), the +longdesc open-access online yournal run by the GAMM Juniors (GAMM = +longdesc Gesellschaft fur angewandte Mathematik und Mechanik). +containersize 9876 +containerchecksum 8ecc1d5209ee6492e032b30e217dbbd0ae4c1ad9ab5a42e7e042eee63809aa257c8cc5d720f54be5553c8999f78334b8057bdac1134d4788144a3cafade7154e +doccontainersize 3276 +doccontainerchecksum 62ec08047df846d2e32be9396356fdbdb9eb9c1867079a891bececc1d56275666127d997ddd4ed2c2f73423dc4a2e051586a1b06b516fb77372b04c60a4ca342 +docfiles size=5 + RELOC/doc/latex/gammas/README details="Readme" + RELOC/doc/latex/gammas/example_bibliography.bib + RELOC/doc/latex/gammas/gammas_template.tex +runfiles size=13 + RELOC/bibtex/bst/gammas/gammas.bst + RELOC/tex/latex/gammas/gammas.cls +catalogue-ctan /macros/latex/contrib/gammas +catalogue-license lppl1.3c +catalogue-topics journalpub class +catalogue-version 1.1 + +name garamond-libre +category Package +revision 55166 +shortdesc The Garamond Libre font face +relocated 1 +longdesc Garamond Libre is a free and open-source old-style font family. +longdesc It is a "true Garamond," i.e., it is based off the designs of +longdesc 16th-century French engraver Claude Garamond (also spelled +longdesc Garamont). The Roman design is Garamond's; the italics are from +longdesc a design by Robert Granjon. The upright Greek font is after a +longdesc design by Firmin Didot; the "italic" Greek font is after a +longdesc design by Alexander Wilson. The font family includes support +longdesc for Latin, Greek (monotonic and polytonic) and Cyrillic +longdesc scripts, as well as small capitals, old-style figures, superior +longdesc and inferior figures, historical ligatures, Byzantine musical +longdesc symbols, the IPA and swash capitals. The fonts are provided in +longdesc OpenType format, and are intended to be used with LuaLaTeX or +longdesc XeLaTeX via fontspec. +execute addMap GaramondLibre.map +containersize 7141728 +containerchecksum 501f42272f35f6b454f9cdecec28b67ed7689a0a9d3b3a019b418ffbb9a116c1bba71bf1da971d6f39744ecbeebeec29e6a9546e11d672176a715570b3667aea +doccontainersize 86000 +doccontainerchecksum 2a88d41b8c52af7f8b1e143f31a87fd392b057846e390f77a3b5c471c287d57dd35e0fe544d00e6e5513decd7a68b2b2c1a6049b02f04fe25ea2d2825bf13a1a +docfiles size=24 + RELOC/doc/fonts/garamond-libre/COPYING + RELOC/doc/fonts/garamond-libre/README details="Readme" + RELOC/doc/fonts/garamond-libre/garamond-libre.pdf details="Package documentation" + RELOC/doc/fonts/garamond-libre/garamond-libre.tex +runfiles size=3040 + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_26qpf7.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_2ituzd.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_3mt3an.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_3w7ozp.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_4b5hhp.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_6l5pxo.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_af3fmk.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_c7o3pq.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_crzyr4.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_cwdpfu.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_d5jenc.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_ddg2jn.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_ddnxa5.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_fb533q.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_ft27f3.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_fukic5.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_h5igdn.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_hbrvqa.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_hejid2.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_huatgi.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_ikpupx.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_iqbnqe.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_jwpqsx.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_kk2l3t.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_kyvbob.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_l5k5jt.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_ljc3nf.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_m5zyzk.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_madlva.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_nhixbh.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_nnzq7g.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_o3pzn3.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_oo4va4.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_p5a7xq.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_pcz4ad.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_pmempd.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_qgzksw.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_ql6cag.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_qnkmaf.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_qyly2w.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_rxhqtw.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_sbgl2v.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_srtteg.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_syncrn.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_tx4wra.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_u674gk.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_u7zlyy.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_ujl4dj.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_vzduxe.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_wgjy5a.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_wkdlc7.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_wt2iav.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_xqilo4.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_y75trc.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_yeyti3.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_yonrxo.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_zoesgh.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_zslxeq.enc + RELOC/fonts/enc/dvips/garamond-libre/grmlbr_zy2up7.enc + RELOC/fonts/map/dvips/garamond-libre/GaramondLibre.map + RELOC/fonts/opentype/public/garamond-libre/GaramondLibre-Bold.otf + RELOC/fonts/opentype/public/garamond-libre/GaramondLibre-BoldItalic.otf + RELOC/fonts/opentype/public/garamond-libre/GaramondLibre-Italic.otf + RELOC/fonts/opentype/public/garamond-libre/GaramondLibre-Regular.otf + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-inf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-orn-u.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-orn-u.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-inf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-orn-u.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-inf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-orn-u.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-lgr--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2a--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2b--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2c--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-t2c.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/garamond-libre/GaramondLibre-Regular-sup-t2c.tfm + RELOC/fonts/type1/public/garamond-libre/GaramondLibre-Bold.pfb + RELOC/fonts/type1/public/garamond-libre/GaramondLibre-BoldItalic.pfb + RELOC/fonts/type1/public/garamond-libre/GaramondLibre-Italic.pfb + RELOC/fonts/type1/public/garamond-libre/GaramondLibre-Regular.pfb + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-inf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-lf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-osf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Bold-sup-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-inf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-lf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-osf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Italic-sup-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-inf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-lf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-swash-lgr.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-swash-ot1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2a.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2b.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-swash-t2c.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-t1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-osf-ts1.vf + RELOC/fonts/vf/public/garamond-libre/GaramondLibre-Regular-sup-t1.vf + RELOC/tex/latex/garamond-libre/LGRGaramondLibre-Inf.fd + RELOC/tex/latex/garamond-libre/LGRGaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/LGRGaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/LGRGaramondLibre-Sup.fd + RELOC/tex/latex/garamond-libre/LY1GaramondLibre-Inf.fd + RELOC/tex/latex/garamond-libre/LY1GaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/LY1GaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/LY1GaramondLibre-Sup.fd + RELOC/tex/latex/garamond-libre/OT1GaramondLibre-Inf.fd + RELOC/tex/latex/garamond-libre/OT1GaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/OT1GaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/OT1GaramondLibre-Sup.fd + RELOC/tex/latex/garamond-libre/T1GaramondLibre-Inf.fd + RELOC/tex/latex/garamond-libre/T1GaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/T1GaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/T1GaramondLibre-Sup.fd + RELOC/tex/latex/garamond-libre/T2AGaramondLibre-Inf.fd + RELOC/tex/latex/garamond-libre/T2AGaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/T2AGaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/T2AGaramondLibre-Sup.fd + RELOC/tex/latex/garamond-libre/T2BGaramondLibre-Inf.fd + RELOC/tex/latex/garamond-libre/T2BGaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/T2BGaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/T2BGaramondLibre-Sup.fd + RELOC/tex/latex/garamond-libre/T2CGaramondLibre-Inf.fd + RELOC/tex/latex/garamond-libre/T2CGaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/T2CGaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/T2CGaramondLibre-Sup.fd + RELOC/tex/latex/garamond-libre/TS1GaramondLibre-LF.fd + RELOC/tex/latex/garamond-libre/TS1GaramondLibre-OsF.fd + RELOC/tex/latex/garamond-libre/UGaramondLibre-Orn.fd + RELOC/tex/latex/garamond-libre/garamondlibre.sty +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-license mit +catalogue-topics font font-body font-otf font-type1 font-serif font-greek font-cyrillic font-multilingual font-proportional font-supp font-t1enc +catalogue-version 1.4 + +name garamond-math +category Package +revision 52820 +shortdesc An OTF math font matching EB Garamond +relocated 1 +longdesc Garamond-Math is an open type math font matching EB Garamond +longdesc (Octavio Pardo) and EB Garamond (Georg Mayr-Duffner). Many +longdesc mathematical symbols are derived from other fonts, others are +longdesc made from scratch. The metric is generated with a Python +longdesc script. The font is best used with XeTeX and the unicode-math +longdesc package. Other engines (e.g. LuaTeX; also: MS Word) are likely +longdesc to produce unsatifactory spacings. This font is still under +longdesc development, so do not expect it to be free of bugs. Any +longdesc component might be updated at any time. Issues, bug reports, +longdesc forks, and other contributions are welcome. +containersize 399076 +containerchecksum 5a6520612a6cfc8633149f4ea795049c017cb1a483104dc7258cd0c0afa0388d4348ebc0fd7d5b7229031adda5ba835c122b69d5310091106c972c5b8aa32891 +doccontainersize 244012 +doccontainerchecksum 3afc74609589c22ad0e540f2915c8cc27a2712a2409f0085098cd00df74007e2cecdecaa40cfe79e99ac6538e496d59bed9ca44cfb18dd2b7fce2620805623b3 +docfiles size=65 + RELOC/doc/fonts/garamond-math/Garamond-Math.pdf details="Package documentation" + RELOC/doc/fonts/garamond-math/Garamond-Math.tex + RELOC/doc/fonts/garamond-math/README.md details="Readme" +runfiles size=197 + RELOC/fonts/opentype/public/garamond-math/Garamond-Math.otf +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-license ofl +catalogue-topics font font-otf font-maths font-serif font-sans font-bbd + +name garrigues +category Package +revision 15878 +shortdesc MetaPost macros for the reproduction of Garrigues' Easter nomogram +relocated 1 +longdesc MetaPost macros for the reproduction of Garrigues' Easter +longdesc nomogram. These macros are described in Denis Roegel: An +longdesc introduction to nomography: Garrigues' nomogram for the +longdesc computation of Easter, TUGboat (volume 30, number 1, 2009, +longdesc pages 88-104) +containersize 8268 +containerchecksum e1440fcf8eb0ccd3b140649c590c902882a8a5a02d4cc14589ed44193f3a70bf13839e9de9663c500bb6874d6fce34f5a21c07e38a7456738548b6ebf449b258 +doccontainersize 532 +doccontainerchecksum 0c91f7e1c8fe4910fa7052440edd9afd81c8932e99368219c8a5037bddfa4c8c11037576e9c94721062df9cf7fd5d467389ddcf3aed3e1853be38846c049100f +docfiles size=2 + RELOC/doc/metapost/garrigues/README details="Readme" + RELOC/doc/metapost/garrigues/article.txt +runfiles size=9 + RELOC/metapost/garrigues/garrigues.mp +catalogue-ctan /graphics/metapost/contrib/macros/garrigues +catalogue-license lppl +catalogue-topics calculation + +name garuda-c90 +category Package +revision 37677 +shortdesc TeX support (from CJK) for the garuda font +relocated 1 +depend fonts-tlwg +execute addMap garuda-c90.map +containersize 3416 +containerchecksum 304e330de80c822862725f05da0c800ff8043d73398a48a4d88b9156d5575593aa1797e65f88093d3058594969fe3a288010efd2a13e12de52beb405ebfdbeec +srccontainersize 1368 +srccontainerchecksum 2e2b368b01952c710fa01b68b8b094e2c64905ba9e6375c3d6a5d82a4b63dea5f6343db3898472416ba9e7faa46d660f34bb2f6d3530aca753feb5aa5c1ffa2a +srcfiles size=1 + RELOC/source/fonts/garuda-c90/garuda-c90.fontinst +runfiles size=6 + RELOC/dvips/garuda-c90/config.garuda-c90 + RELOC/fonts/map/dvips/garuda-c90/garuda-c90.map + RELOC/fonts/tfm/public/garuda-c90/fgdb8z.tfm + RELOC/fonts/tfm/public/garuda-c90/fgdbo8z.tfm + RELOC/fonts/tfm/public/garuda-c90/fgdo8z.tfm + RELOC/fonts/tfm/public/garuda-c90/fgdr8z.tfm + +name gastex +category Package +revision 58505 +shortdesc Graphs and Automata Simplified in TeX +relocated 1 +longdesc GasTeX is a set of LaTeX macros which enable the user to draw +longdesc graphs, automata, nets, diagrams, etc., very easily, in the +longdesc LaTeX picture environment. +containersize 18624 +containerchecksum 7f75503d009584119967528fabbd72a8f0b0430cbe67fcdf4ec0e0bd5dbf63279e10ef32c897eab9408d518a1c1d1d01d3a428e9b7f72cc4d7387e3b692a6caa +doccontainersize 126804 +doccontainerchecksum 86f3ee5200e41def7d13df25d175c955c2df562652c4783c8083249eb924c01556cd402bf2f4cf44d02f94cc280e1643c2ad2261bbd191678e3c9039430d1c58 +docfiles size=35 + RELOC/doc/latex/gastex/README details="Package Readme" + RELOC/doc/latex/gastex/gastex-doc.pdf details="Package documentation" + RELOC/doc/latex/gastex/gastex-doc.tex +runfiles size=25 + RELOC/dvips/gastex/gastex.pro + RELOC/tex/latex/gastex/gastex.sty +catalogue-also pstricks-base +catalogue-contact-home http://www.lsv.fr/~gastin/gastex/index.html +catalogue-ctan /graphics/gastex +catalogue-license lppl +catalogue-topics graphics-in-tex +catalogue-version 3.0 + +name gatech-thesis +category Package +revision 19886 +shortdesc Georgia Institute of Technology thesis class +relocated 1 +longdesc The output generated by using this class has been approved by +longdesc the Georgia Tech Office of Graduate Studies. It satisfies their +longdesc undocumented moving-target requirements in additional to the +longdesc actual documented requirements of the June 2002 Georgia Tech +longdesc Thesis Style Manual, as amended up to 2010. +containersize 32756 +containerchecksum c5928d0d383da4057a0ba00d2848d324624228f1a98f0f254b09fea35ba21e3ce655f1fbe02ecc6291921e43e9dbd2ae954d6199dc22c1390bf04670ca41038f +doccontainersize 130012 +doccontainerchecksum 9fe1e4342becab8b57d892256bfd0723afea3a3f4ad3edab2b3c374bdf410d14b3105f165aed56479e848939a5cf6c807112788ff3a82099641fa71f4e78b5ec +docfiles size=62 + RELOC/doc/latex/gatech-thesis/CHANGES + RELOC/doc/latex/gatech-thesis/COMPLIANCE + RELOC/doc/latex/gatech-thesis/COPYING + RELOC/doc/latex/gatech-thesis/ChangeLog + RELOC/doc/latex/gatech-thesis/INSTALL + RELOC/doc/latex/gatech-thesis/MANIFEST + RELOC/doc/latex/gatech-thesis/NEWS + RELOC/doc/latex/gatech-thesis/NOTES + RELOC/doc/latex/gatech-thesis/README details="Readme" + RELOC/doc/latex/gatech-thesis/TODO + RELOC/doc/latex/gatech-thesis/example-thesis.bib + RELOC/doc/latex/gatech-thesis/example-thesis.pdf + RELOC/doc/latex/gatech-thesis/example-thesis.tex +runfiles size=40 + RELOC/bibtex/bst/gatech-thesis/gatech-thesis-losa.bst + RELOC/bibtex/bst/gatech-thesis/gatech-thesis.bst + RELOC/makeindex/gatech-thesis/gatech-thesis-index.ist + RELOC/tex/latex/gatech-thesis/gatech-thesis-gloss.sty + RELOC/tex/latex/gatech-thesis/gatech-thesis-index.sty + RELOC/tex/latex/gatech-thesis/gatech-thesis-losa.sty + 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-license gpl +catalogue-topics class dissertation +catalogue-version 1.8 + +name gates +category Package +revision 29803 +shortdesc Support for writing modular and customisable code +relocated 1 +longdesc The package provides the means of writing code in a modular +longdesc fashion: big macros or functions are divided into small chunks +longdesc (called gates) with names, which can be externally controlled +longdesc (e.g. they can be disabled, subjected to conditionals, +longdesc loops...) and/or augmented with new chunks. Thus complex code +longdesc may easily be customised without having to rewrite it, or even +longdesc understand its implementation: the behavior of existing gates +longdesc can be modified, and new ones can be added, without endangering +longdesc the whole design. This allows code to be hacked in ways the +longdesc original authors might have never envisioned. The gates package +longdesc is implemented independently for both TeX and Lua. The TeX +longdesc implementation, running in any current environment, requires +longdesc the texapi package, whereas the Lua version can be run with any +longdesc Lua interpreter, not just LuaTeX. +containersize 10980 +containerchecksum 704126d5e113b9718654e5d611d169df17b45ec09f187d86d1c108a331e80939d0266c4473233277e1b465a70775da1ea9576744171209ab45203b4059b96b83 +doccontainersize 201680 +doccontainerchecksum a9cd7d2c616021d429b299027503fed60e8474774b6d57095371f1afaba68709770857ba09f74e8e5223dcbdd1d9f1f70a0ec81c3801b1a77c3a494336fa86bd +docfiles size=68 + RELOC/doc/generic/gates/README details="Readme" + RELOC/doc/generic/gates/gates-doc.pdf details="Package documentation" + RELOC/doc/generic/gates/gates-doc.tex + RELOC/doc/generic/gates/gates-doc.txt +runfiles size=15 + RELOC/tex/generic/gates/gates.lua + RELOC/tex/generic/gates/gates.sty + RELOC/tex/generic/gates/gates.tex + RELOC/tex/generic/gates/t-gates.tex +catalogue-ctan /macros/generic/gates +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.2 + +name gatherenum +category Package +revision 52209 +shortdesc A crossover of align* and enumerate +relocated 1 +longdesc This package (ab)uses the inline enumeration capabilities of +longdesc enumitem to add a "displayed" enumeration mode, triggered by +longdesc adding 'gathered' to the key-value option list of the enumerate +longdesc environment. The end result is similar to a regular enumerate +longdesc environment wrapped in a multicols environment, with the +longdesc following advantages: Gathered enumerate can pack items +longdesc depending on their actual width rather than a fixed, constant +longdesc number per line. Gathered enumeration fills items in a +longdesc line-major order (instead of column-major order), which my +longdesc students found less confusing. YMMV. The package depends on +longdesc enumitem, expl3, and xparse, +containersize 1724 +containerchecksum f0a0897ca3b306341a8af5121d09b31d9169a90e073f3d2babc2b4a32b72d33b4f7ded73f2455e5b6e7454188112440cdff97c4332f3396c948ace8b2944598d +doccontainersize 406000 +doccontainerchecksum 9e6e1c322aa19a1c3ccaa622cf8657dd314dccc0fedeb7056e182bfc648fa21b06b67e8d1bf2d529fbf84652a0d6eec9d5a4ffeea1003dcfd2cd195ba628c6f5 +docfiles size=107 + RELOC/doc/latex/gatherenum/LICENSE + RELOC/doc/latex/gatherenum/README.md details="Readme" + RELOC/doc/latex/gatherenum/gatherenum.pdf details="Package documentation" +srccontainersize 4180 +srccontainerchecksum 5696c57b7a05132487fa04c16a577531886e8e443aef06e2b3b6418f74d2d971160cb1d95df43ae29c81ebde9459f8611bdea151895f8390e03d5ff2193fb318 +srcfiles size=4 + RELOC/source/latex/gatherenum/gatherenum.dtx + RELOC/source/latex/gatherenum/gatherenum.ins +runfiles size=1 + RELOC/tex/latex/gatherenum/gatherenum.sty +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-license gpl3+ +catalogue-topics list expl3 +catalogue-version 1.8 + +name gauss +category Package +revision 32934 +shortdesc A package for Gaussian operations +relocated 1 +longdesc The gauss package provides configurable tools for producing row +longdesc and column operations on matrices (a.k.a. Gaussian operations). +containersize 16628 +containerchecksum 9dd3f7685a8b7bbdfbee1fbe5dcc5d2819091c7c20df7979b1b0fb7971e613e45b6321a18674e88bb0d6222f050f0ab3959b087be70b90b5bfefaeffacc733f9 +doccontainersize 113732 +doccontainerchecksum 50de7e9af2360367de7f7136def2536a82348752656b1c40022d7e13271cfde64e67bcd482c2d208f47b88a30560f8179b7b8706288809b41d023c037147f0c2 +docfiles size=41 + RELOC/doc/latex/gauss/README details="Readme" + RELOC/doc/latex/gauss/gauss-doc.pdf details="Package documentation" + RELOC/doc/latex/gauss/gauss-ex.pdf details="Example of use (Gaussian elimination)" + RELOC/doc/latex/gauss/gauss-ex.tex +runfiles size=16 + RELOC/tex/latex/gauss/gauss.sty +catalogue-contact-home http://www.kauers.de +catalogue-ctan /macros/latex/contrib/gauss +catalogue-license lppl +catalogue-topics maths + +name gb4e +category Package +revision 19216 +shortdesc Linguistic tools +relocated 1 +longdesc Provides an environment for linguistic examples, tools for +longdesc glosses, and various other goodies. The code was developed from +longdesc the midnight and covington packages. +containersize 6944 +containerchecksum 1ec519ad5f22e6d61d16a0233a73065b45e8628549bfecd109f968b8749c362cd04f358d67e96b1311577f94f6152e7de7a9e3264ffcff5c5769662b52df7e29 +doccontainersize 150476 +doccontainerchecksum 9b8c8e2590a1a515aa84e11a4028aadeff9e4acb7d3ce99b0d21009e17443db3d2feee85d888a333595e144244efbf978239e6dbf48c68a43bd5709d9489c203 +docfiles size=47 + RELOC/doc/latex/gb4e/README + RELOC/doc/latex/gb4e/gb4e-doc.pdf details="Package description" + RELOC/doc/latex/gb4e/gb4e-doc.tex +runfiles size=6 + RELOC/tex/latex/gb4e/cgloss4e.sty + RELOC/tex/latex/gb4e/gb4e.sty +catalogue-ctan /macros/latex/contrib/gb4e +catalogue-license lppl1.2 +catalogue-topics linguistic + +name gbt7714 +category Package +revision 57157 +shortdesc BibTeX implementation of China's bibliography style standard GB/T 7714-2015 +relocated 1 +longdesc The package provides a BibTeX implementation for the Chinese +longdesc national bibliography style standard GB/T 7714-2015. It +longdesc consists of two bst files for numerical and author-year styles +longdesc as well as a LaTeX package which provides the citation style +longdesc defined in the standard. The package is compatible with natbib +longdesc and supports language detection (Chinese and English) for each +longdesc biblilography entry. +containersize 10608 +containerchecksum 72021c4eb7e1ee1b9b293801988df67c0e62fb5f46c7036c4dc75357a95a80d040782c4a71e98690858854d572351445fe6c06269ad8f926d62fd668095815a2 +doccontainersize 357032 +doccontainerchecksum c41fbed87dcb702241f8f8c3004854d725083f9e0dd2b3f1bb92a70210539617b728be086c2a7e823a8be0fc9b906cf965b9202fc5c12f4f05e87d73504444fb +docfiles size=95 + RELOC/doc/bibtex/gbt7714/CHANGELOG.md + RELOC/doc/bibtex/gbt7714/LICENSE + RELOC/doc/bibtex/gbt7714/README.md details="Readme" language="zh" + RELOC/doc/bibtex/gbt7714/gbt7714.pdf details="Package documentation" language="zh" +srccontainersize 26628 +srccontainerchecksum 7e7e48208197fe92b939f569cbd0aaa96ba1b6b35821dece635c36572f3309f2af00d86ee70a6db35aa7ed261a4ca446dd857fdc1026bf18bf4c6adeb110ea68 +srcfiles size=30 + RELOC/source/bibtex/gbt7714/gbt7714.dtx + RELOC/source/bibtex/gbt7714/gbt7714.ins +runfiles size=26 + RELOC/bibtex/bst/gbt7714/gbt7714-author-year.bst + RELOC/bibtex/bst/gbt7714/gbt7714-numerical.bst + RELOC/tex/latex/gbt7714/gbt7714.sty +catalogue-contact-announce https://github.com/CTeX-org/gbt7714-bibtex-style/releases +catalogue-contact-bugs https://github.com/CTeX-org/gbt7714-bibtex-style/issues +catalogue-contact-repository https://github.com/CTeX-org/gbt7714-bibtex-style +catalogue-ctan /biblio/bibtex/contrib/gbt7714 +catalogue-license lppl1.3c +catalogue-topics bibtex-supp biblatex chinese std-conform +catalogue-version 2.1 + +name gcard +category Package +revision 15878 +shortdesc Arrange text on a sheet to fold into a greeting card +relocated 1 +longdesc The package provides a simple means of producing greeting +longdesc cards. It arranges four panels onto a single sheet so that when +longdesc the sheet is folded twice the four panels are arranged as front +longdesc cover, inside left and right pages, and back cover. It uses the +longdesc textpos package for placement on the sheet and the graphicx +longdesc package for the necessary rotation. The four panels are set in +longdesc minipages for formatting by the user. +containersize 1676 +containerchecksum de462bff229779faa33c546d525e3624f1ed372c09c1b90fa9270928caf0a2604f2bb9d3ef0768de7dd0646202d7a59995b7252c0b83b19eaf777438bd1acc47 +doccontainersize 128064 +doccontainerchecksum f7fd3c07e053962c88d0a0b8e5899272a3bd9af4cf1731f88a7014773d8f0ecc91fb45e1e59b1a372d8c8977e1dce91c5162558d0245d77a187ac7787a3710ea +docfiles size=38 + RELOC/doc/latex/gcard/README details="Readme" + RELOC/doc/latex/gcard/gcard.pdf details="Package documentation" + RELOC/doc/latex/gcard/gcardex.tex + RELOC/doc/latex/gcard/gcardminexample.tex +runfiles size=1 + RELOC/tex/latex/gcard/gcard.sty +catalogue-ctan /macros/latex/contrib/gcard +catalogue-license lppl +catalogue-topics letter graphics-use + +name gchords +category Package +revision 29803 +shortdesc Typeset guitar chords +relocated 1 +longdesc A LaTeX package for typesetting of guitar chord diagrams, +longdesc including options for chord names, finger numbers and +longdesc typesetting above lyrics. The bundle also includes a TCL script +longdesc (chordbox.tcl) that provides a graphical application which +longdesc creates LaTeX files that use gchords.sty. +containersize 3360 +containerchecksum 7fd655af5446982b450e3eec2b8966f2fc17c11686bb75f516ce0043af651b90e4f88c9cfac133929fbb686fe3f7be6de64d89bda6822f218b691791c9207950 +doccontainersize 50180 +doccontainerchecksum 26818218c9e3142f4bba491e996556b28266953c6b84f1c3de58d60b1bf100d15513fd2898507cf43226eec127942dede647784060668d86bcb22e3fdaee96cd +docfiles size=22 + RELOC/doc/latex/gchords/README details="Package Readme" + RELOC/doc/latex/gchords/chordbox.tcl + RELOC/doc/latex/gchords/gchords_doc.pdf details="Package documentation" + RELOC/doc/latex/gchords/gchords_doc.tex + RELOC/doc/latex/gchords/get2knowu.tex +runfiles size=3 + RELOC/tex/latex/gchords/gchords.sty +catalogue-contact-home http://kasper.phi-sci.com/gchords/ +catalogue-ctan /graphics/gchords +catalogue-license gpl +catalogue-topics music +catalogue-version 1.20 + +name gcite +category Package +revision 15878 +shortdesc Citations in a reader-friendly style +relocated 1 +longdesc The package allows citations in the German style, which is +longdesc considered by many to be particularly reader-friendly. The +longdesc citation provides a small amount of bibliographic information +longdesc in a footnote on the page where each citation is made. It +longdesc combines a desire to eliminate unnecessary page-turning with +longdesc the look-up efficiency afforded by numeric citations. The +longdesc package makes use of BibLaTeX, and is considered experimental; +longdesc comment is invited. +containersize 1884 +containerchecksum 169d9e96121d80bcbe7580e7ff447e8df252b19dca5b304514a792764344df679e9275b1a552d67070d3f5b0fc41c70a6cf1ce9c90358dd9ab58878643be6015 +doccontainersize 164560 +doccontainerchecksum d9b50778855efc00ba4d6d6f48891865853b8de8e55c3432140b0ba69767c6c13ab934c2be43b2556a862bbb5413ddccce158ec4130576617a75708919f1ab0c +docfiles size=53 + RELOC/doc/latex/gcite/CHANGES + RELOC/doc/latex/gcite/README details="Readme" + RELOC/doc/latex/gcite/gcite.bib + RELOC/doc/latex/gcite/gcite.pdf details="Package documentation" +srccontainersize 7576 +srccontainerchecksum 44e8fdfff2e015a9bb034496454016f8f03e08e2f5b8ca907670447694877a383ca99a5673db107397dba07142e99cf01d9ee59a4a360d6146a389de7d103cb1 +srcfiles size=6 + RELOC/source/latex/gcite/gcite.dtx + RELOC/source/latex/gcite/gcite.ins +runfiles size=1 + RELOC/tex/latex/gcite/gcite.sty +catalogue-ctan /macros/latex/exptl/gcite +catalogue-license lppl1.3 +catalogue-topics biblatex german +catalogue-version 1.0.1 + +name gckanbun +category Package +revision 58754 +shortdesc Kanbun typesetting for (u)pLaTeX and LuaLaTeX +relocated 1 +longdesc This package provides a Kanbun (Han Wen , "Chinese writing") +longdesc typesetting for (u)pLaTeX and LuaLaTeX. +containersize 1996 +containerchecksum e3847d0d2d7273f0abf73d3d07524eb07358a7a61f42e9d72516bc20c4521916f1d68d1cf22cd266f7eb9e20b6687e8ff3cb12ef6524b02e713d1b1e653887cb +doccontainersize 76744 +doccontainerchecksum 201dcf0ecf62b39ca8249f6fc9dcdaf1716c32102d0115924a37c4e0fb588af3d86130409c8f928a762a3a423273711136e9c2fe3fe33ad708a11d37a292b64f +docfiles size=24 + RELOC/doc/latex/gckanbun/LICENSE + RELOC/doc/latex/gckanbun/README.md details="Readme" + RELOC/doc/latex/gckanbun/gckanbun.pdf details="Package documentation" + RELOC/doc/latex/gckanbun/gckanbun.tex + RELOC/doc/latex/gckanbun/test-gckanbun.tex +runfiles size=2 + RELOC/tex/latex/gckanbun/gckanbun.sty +catalogue-contact-repository https://github.com/munepi/gckanbun +catalogue-ctan /language/japanese/gckanbun +catalogue-license mit +catalogue-topics japanese chinese +catalogue-version 1.2 + +name gender +category Package +revision 36464 +shortdesc Gender neutrality for languages with grammatical gender +relocated 1 +longdesc Many languages -- like German or French -- use masculine and +longdesc feminine grammatical genders. There are many ideas how to +longdesc promote gender neutrality in those languages. The gender +longdesc package uses alternately masculine and feminine forms. It is +longdesc also possible to use just one form out of a template. +containersize 1824 +containerchecksum 261d57b05993954b80f82844f590f952fedaa4ade8f89704f2e2b4e2d18441ab5c8adef2ba3dfd81b61bed53150b737ef72964e1faa44ca48e923cfeb5a1bc14 +doccontainersize 311580 +doccontainerchecksum 7c8bf143cb7ae1d22416df88aecf7e004eb02bf199f74f8003aeb9ae3923a3db42f1735650fac8aa908bf220f16ca48b3e4f9dbc312668d87df65149ea674be4 +docfiles size=77 + RELOC/doc/latex/gender/README details="Readme" + RELOC/doc/latex/gender/gender.pdf details="Package documentation" +srccontainersize 4348 +srccontainerchecksum ac76060cc1b8c3bd876ccece1d82127575b956fa1bd3bed63d9d8a927845c8477c903b47be3a6e2d85de06899957d273d981f250cc7d02a12830a8cbfa6f6183 +srcfiles size=4 + RELOC/source/latex/gender/gender.dtx + RELOC/source/latex/gender/gender.ins +runfiles size=2 + RELOC/tex/latex/gender/gender.sty +catalogue-also he-she eemeir +catalogue-ctan /macros/latex/contrib/gender +catalogue-license lppl1.3 +catalogue-topics linguistic typesetting +catalogue-version 1.0 + +name gene-logic +category Package +revision 15878 +shortdesc Typeset logic formulae, etc +relocated 1 +longdesc The package provides a facility to typeset certain logic +longdesc formulae. It provides an environment like eqnarray, a +longdesc newtheorem-like environment (NewTheorem), and several macros. +containersize 2004 +containerchecksum b7cdc0d653aa8e25d763ca4115fa6fc857ddae35ed835aee6b6a204ba83d01ab91928b00248c40677ba132ef113276912a6b85dfd456d937114a3263a1ef4c7f +doccontainersize 66856 +doccontainerchecksum db358777af18e7d2e93dc23084bec0f47270b4cb6c6078382a1eb9ce288aed06a6f55fc30ce728b1312d06f871458fc6b5b697b1073316e8f727b5ee80f99468 +docfiles size=27 + RELOC/doc/latex/gene-logic/gn-logic14.pdf details="Package documentation" + RELOC/doc/latex/gene-logic/gn-logic14.tex +runfiles size=2 + RELOC/tex/latex/gene-logic/gn-logic14.sty +catalogue-ctan /macros/latex/contrib/gene/logic +catalogue-license other-free +catalogue-topics maths +catalogue-version 1.4 + +name genealogy +category Package +revision 25112 +shortdesc A compilation genealogy font +relocated 1 +longdesc A simple compilation of the genealogical symbols found in the +longdesc wasy and gen fonts, adding the male and female symbols to +longdesc Knuth's 'gen' font, and so avoiding loading two fonts when you +longdesc need only genealogical symbols. The font is distributed as +longdesc Metafont source. +containersize 2560 +containerchecksum 907394cb0ca9b3d339d78595e613236038ea2acce27c4468b7d028d0db7ddf36f7037c4f0bc63d5970e904d0675bcaf057c769239a79f064fa6aa9dae4f2014e +doccontainersize 1128 +doccontainerchecksum 34c9d737d31626331a18051a5b04584fd896d7cb8ea1814ff2fbf30486ec3578b2bef16155b9c8f2ca645d42f797f3101c799d3422c05f824026e268fa4f94e8 +docfiles size=3 + RELOC/doc/fonts/genealogy/README details="Readme" + RELOC/doc/fonts/genealogy/licence.txt + RELOC/doc/fonts/genealogy/testgen.tex +runfiles size=4 + RELOC/fonts/source/public/genealogy/drgen.mf + RELOC/fonts/source/public/genealogy/drgen10.mf + RELOC/fonts/tfm/public/genealogy/drgen10.tfm +catalogue-ctan /fonts/genealogy +catalogue-license lppl +catalogue-topics genealogy font font-symbol font-specialist font-mf + +name genealogytree +category Package +revision 55978 +shortdesc Pedigree and genealogical tree diagrams +relocated 1 +longdesc Pedigree and genealogical tree diagrams are proven tools to +longdesc visualize genetic and relational connections between +longdesc individuals. The naming ("tree") derives from historical family +longdesc diagrams. However, even the smallest family entity consisting +longdesc of two parents and several children is hardly a 'mathematical' +longdesc tree -- it is a more general graph. The package provides a set +longdesc of tools to typeset genealogical trees (i.e., to typeset a set +longdesc of special graphs for the description of family-like +longdesc structures). The package uses an autolayout algorithm which can +longdesc be customized, e.g., to prioritize certain paths. +containersize 34104 +containerchecksum 80ff65cb67a5d431e316b6cb52d001ba63b346f117251a06c560c506f8adfc81644cc36d113b0a612acbc9b78c8627ead8c75a449486982ec786accaa79d2af5 +doccontainersize 4430236 +doccontainerchecksum 708639b248db280a26291d24594c70fdbefb8a4f6cb581ab5e95e1d2e1f122f29a5412ce876604afed42c881d02c4baaaae73aade99b246160895087394b7906 +docfiles size=2176 + RELOC/doc/latex/genealogytree/README details="Readme" + RELOC/doc/latex/genealogytree/genealogytree-example-1.pdf details="Example 1" + RELOC/doc/latex/genealogytree/genealogytree-example-2.pdf details="Example 2" + RELOC/doc/latex/genealogytree/genealogytree-example-3.pdf details="Example 3" + RELOC/doc/latex/genealogytree/genealogytree-example-4.pdf details="Example 4" + RELOC/doc/latex/genealogytree/genealogytree-languages.pdf + RELOC/doc/latex/genealogytree/genealogytree.doc.sources.zip + RELOC/doc/latex/genealogytree/genealogytree.pdf details="Package documentation" +runfiles size=69 + RELOC/tex/latex/genealogytree/genealogytree.sty + RELOC/tex/latex/genealogytree/gtrcore.contour.code.tex + RELOC/tex/latex/genealogytree/gtrcore.drawing.code.tex + RELOC/tex/latex/genealogytree/gtrcore.node.code.tex + RELOC/tex/latex/genealogytree/gtrcore.options.code.tex + RELOC/tex/latex/genealogytree/gtrcore.parser.code.tex + RELOC/tex/latex/genealogytree/gtrcore.processing.code.tex + RELOC/tex/latex/genealogytree/gtrcore.symbols.code.tex + RELOC/tex/latex/genealogytree/gtrlang.danish.code.tex + RELOC/tex/latex/genealogytree/gtrlang.dutch.code.tex + RELOC/tex/latex/genealogytree/gtrlang.english.code.tex + RELOC/tex/latex/genealogytree/gtrlang.french.code.tex + RELOC/tex/latex/genealogytree/gtrlang.german.code.tex + RELOC/tex/latex/genealogytree/gtrlang.italian.code.tex + RELOC/tex/latex/genealogytree/gtrlang.spanish.code.tex + RELOC/tex/latex/genealogytree/gtrlang.swedish.code.tex + RELOC/tex/latex/genealogytree/gtrlib.debug.code.tex + RELOC/tex/latex/genealogytree/gtrlib.fanchart.code.tex + RELOC/tex/latex/genealogytree/gtrlib.templates.code.tex +catalogue-also pst-pdgr +catalogue-ctan /macros/latex/contrib/genealogytree +catalogue-license lppl1.3 +catalogue-topics genealogy pgf-tikz humanities +catalogue-version 2.01 + +name genmpage +category Package +revision 15878 +shortdesc Generalization of LaTeX's minipages +relocated 1 +longdesc The GenMPage package generalizes LaTeX's minipages. Keyval +longdesc options and styles can be used to determine their appearance in +longdesc an easy and consistent way. Includes options for paragraph +longdesc indentation and vertical alignment with respect to the visual +longdesc top and bottom margins. +containersize 2048 +containerchecksum b2618005fc0f00a636e3a307ba1038f8dd39798e2ee2afa4d9169eb45ed4b38a67a57bfb516e9dd8d93ea0210a7fcde21b26c0564b974442e18021d83f905265 +doccontainersize 74052 +doccontainerchecksum c428886adead6fed52f0d249db34a950b4f22b03770ce1bff0831fca29477ab92b5d83a9719b73aa45aeb5f2067f31afc810b6cdfdd69e709ec5e61a08f45472 +docfiles size=23 + RELOC/doc/latex/genmpage/README + RELOC/doc/latex/genmpage/genmpage.pdf details="Package documentation" +srccontainersize 4584 +srccontainerchecksum 563042ab68aaab51d357c957111419012a0edfd27332bf30be0985e8625abce945ca6a6a081e62f6d0ee29b6885a55270553b622bbcda5f369ad61b53d4ea723 +srcfiles size=4 + RELOC/source/latex/genmpage/genmpage.dtx + RELOC/source/latex/genmpage/genmpage.ins +runfiles size=2 + RELOC/tex/latex/genmpage/genmpage.sty +catalogue-ctan /macros/latex/contrib/genmpage +catalogue-license lppl +catalogue-topics layout boxing +catalogue-version 0.3.1 + +name gentium-tug +category Package +revision 54512 +shortdesc Gentium fonts (in two formats) and support files +relocated 1 +longdesc Gentium is a typeface family designed to enable the diverse +longdesc ethnic groups around the world who use the Latin, Cyrillic and +longdesc Greek scripts to produce readable, high-quality publications. +longdesc It supports a wide range of Latin- and Cyrillic-based +longdesc alphabets. The package consists of: The original (unaltered) +longdesc GentiumPlus, GentiumBook, and other Gentium-family fonts in +longdesc TrueType format, as developed by SIL and released under the OFL +longdesc (see OFL.txt and OFL-FAQ.txt); Converted fonts in PostScript +longdesc Type 1 format, released under the same terms. These incorporate +longdesc the name "Gentium" by permission of SIL given to the TeX Users +longdesc Group; ConTeXt, LaTeX and other supporting files; TeX-related +longdesc documentation, and the SIL documentation and other files. +execute addMap gentium-type1.map +containersize 3812200 +containerchecksum 4cc398baae4fd17854f92b2c995b77316111018d3e7c86c89cbc966febd26b329024227d295be440019fab6d4f6008dd2110a3005d1a86d88113e104b9f2c9e8 +doccontainersize 1247120 +doccontainerchecksum 2bb2267aa54d027fc83f492125943529497c3c611e187eb12d099d46f96fe5d48a56837332eec1c7ffde97007f6f311057aadf4e1ddc1862a490912b7a1c434b +docfiles size=393 + RELOC/doc/fonts/gentium-tug/ChangeLog + RELOC/doc/fonts/gentium-tug/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/Gentium/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/Gentium/GENTIUM-FAQ.txt + RELOC/doc/fonts/gentium-tug/Gentium/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/Gentium/OFL.txt + RELOC/doc/fonts/gentium-tug/Gentium/QUOTES.txt + RELOC/doc/fonts/gentium-tug/Gentium/README.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/GENTIUM-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/GENTIUM-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/README.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/DOCUMENTATION.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.odt + RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/README.txt + RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/feat_set_tuned.xml + RELOC/doc/fonts/gentium-tug/Makefile + RELOC/doc/fonts/gentium-tug/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/OFL.txt + RELOC/doc/fonts/gentium-tug/README details="Readme" + RELOC/doc/fonts/gentium-tug/gentium.pdf details="Package documentation" + RELOC/doc/fonts/gentium-tug/gentium.tex +srccontainersize 15660 +srccontainerchecksum ff084fc9f2644ac49e9267c1f3a87c09445399db4e3e8633e25bee5b54b15a091053a0754ecabb2f67a0e85a07060ab81cdf8353adc24dc7f0087ed104bd8d92 +srcfiles size=30 + RELOC/source/fonts/gentium-tug/ChangeLog + RELOC/source/fonts/gentium-tug/Makefile + RELOC/source/fonts/gentium-tug/generate-support-files.rb + RELOC/source/fonts/gentium-tug/gentium.rb + RELOC/source/fonts/gentium-tug/lig/README + RELOC/source/fonts/gentium-tug/lig/gentium-agr.lig + RELOC/source/fonts/gentium-tug/lig/gentium-lgr.lig + RELOC/source/fonts/gentium-tug/lig/gentium-t2a.lig + RELOC/source/fonts/gentium-tug/lig/gentium-t2b.lig + RELOC/source/fonts/gentium-tug/lig/gentium-t2c.lig + RELOC/source/fonts/gentium-tug/lig/gentium-x2.lig + RELOC/source/fonts/gentium-tug/make-zip-4CTAN.sh + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-I-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-R-Czech.kern + RELOC/source/fonts/gentium-tug/type1/Makefile + RELOC/source/fonts/gentium-tug/type1/afmcreator.py + RELOC/source/fonts/gentium-tug/type1/ff-gentium.pe + RELOC/source/fonts/gentium-tug/type1/generate-extra-kerns.sh + RELOC/source/fonts/gentium-tug/type1/greekcorrection.py + RELOC/source/fonts/gentium-tug/type1/kerncorrection.py +runfiles size=3440 + RELOC/fonts/afm/public/gentium-tug/GenBasB.afm + RELOC/fonts/afm/public/gentium-tug/GenBasBI.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-I.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-R.afm + RELOC/fonts/enc/dvips/gentium-tug/gentium-agr.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec-ttf-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec-ttf.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-l7x-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-l7x.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-lgr.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ot1-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ot1.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-qx-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-qx.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2a-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2a.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2b-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2b.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2c-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2c.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t5-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t5-ttf.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t5.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-texnansi-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-texnansi.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ts1.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-x2-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-x2.enc + RELOC/fonts/map/dvips/gentium-tug/gentium-type1.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-agr.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-ec.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-l7x.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-lgr.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-ot1.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-qx.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t2a.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t2b.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t2c.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t5.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-texnansi.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-truetype.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-ts1.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-x2.map + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular.tfm + RELOC/fonts/truetype/public/gentium-tug/GenBasB.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBasBI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBasI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBasR.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasB.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasBI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasR.ttf + RELOC/fonts/truetype/public/gentium-tug/Gentium-I.ttf + RELOC/fonts/truetype/public/gentium-tug/Gentium-R.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumAlt-I.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumAlt-R.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-I.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-R.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlusCompact-I.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlusCompact-R.ttf + RELOC/fonts/type1/public/gentium-tug/GenBasB.pfb + RELOC/fonts/type1/public/gentium-tug/GenBasBI.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-I.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-R.pfb + RELOC/tex/context/third/gentium-tug/type-gentium.mkii + RELOC/tex/context/third/gentium-tug/type-gentium.mkiv + RELOC/tex/latex/gentium-tug/gentium.sty + RELOC/tex/latex/gentium-tug/l7xgentium.fd + RELOC/tex/latex/gentium-tug/lgrgentium.fd + RELOC/tex/latex/gentium-tug/ly1gentium.fd + RELOC/tex/latex/gentium-tug/ot1gentium.fd + RELOC/tex/latex/gentium-tug/qxgentium.fd + RELOC/tex/latex/gentium-tug/t1gentium.fd + RELOC/tex/latex/gentium-tug/t2agentium.fd + RELOC/tex/latex/gentium-tug/t2bgentium.fd + RELOC/tex/latex/gentium-tug/t2cgentium.fd + RELOC/tex/latex/gentium-tug/t5gentium.fd + RELOC/tex/latex/gentium-tug/ts1gentium.fd + RELOC/tex/latex/gentium-tug/x2gentium.fd +catalogue-contact-home http://tug.org/gentium +catalogue-ctan /fonts/gentium-tug +catalogue-license ofl other-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 + +name gentle +category Package +revision 15878 +shortdesc A Gentle Introduction to TeX +relocated 1 +longdesc The "Gentle Introduction" is the longest-established +longdesc comprehensive free tutorial on the use of plain TeX. +containersize 428 +containerchecksum b244b249329d1ee622686d2a44d1469ceeed7e2adec5d82a2482e8659266a8224490531e0ed971b56f945b63fd1081f29aded9c43cea78fa8a9aec836301b26b +doccontainersize 394788 +doccontainerchecksum fe296c5bc38a1e6d13d2b46dc8081a6658764f7017d0831cfd46dd86082371d6ae095ec3b52b3aaaacc0a57cbcee066b94644a5746391fae4129eebaa246e146 +docfiles size=145 + RELOC/doc/plain/gentle/gentle.pdf details="The document itself" + RELOC/doc/plain/gentle/gentle.tex +catalogue-also gentl-gr +catalogue-ctan /info/gentle +catalogue-license other-free +catalogue-topics tut-plaintex + +name gentombow +category Package +revision 56665 +shortdesc Generate Japanese-style crop marks +relocated 1 +longdesc This bundle provides a LaTeX package for generating +longdesc Japanese-style crop marks (called 'tombow' in Japanese) for +longdesc practical use in self-publishing. The bundle contains the +longdesc following packages: gentombow.sty: Generate crop marks (called +longdesc 'tombow' in Japanese) for practical use in self-publishing. It +longdesc provides the core 'tombow' feature if not available. +longdesc pxgentombow.sty: Superseded by gentombow.sty; kept for +longdesc compatibility only. bounddvi.sty: Set papersize special to DVI +longdesc file. Can be used on LaTeX/pLaTeX/upLaTeX (with DVI output +longdesc mode) with dvips or dvipdfmx drivers. +containersize 10892 +containerchecksum e97b138d5359c3fa0635bf56001ecc7c6a5afb2ab2a01fd8817cbd956adce97bee67632f4e3ae40d56e5d2ce06bc07ab33b52bbe3978f14bf4957d2647781813 +doccontainersize 504052 +doccontainerchecksum 89912adef5b6572945a81835b1dfd0648699c03e81c6f4e06309dbb8230f536f5c93bcd46a3acb508ca92398df07cdf71e8f5fa7a2f889220a03b27ad78ac110 +docfiles size=141 + RELOC/doc/latex/gentombow/LICENSE + RELOC/doc/latex/gentombow/README.md details="Readme" + RELOC/doc/latex/gentombow/bounddvi-en.pdf details="Documentation of the bounddvi package (English)" + RELOC/doc/latex/gentombow/bounddvi-en.tex + RELOC/doc/latex/gentombow/bounddvi.pdf details="Documentation of the bounddvi package (Japanese)" language="ja" + RELOC/doc/latex/gentombow/bounddvi.tex + RELOC/doc/latex/gentombow/gentombow-ja.pdf details="Documentation of the gentombow package (Japanese)" language="ja" + RELOC/doc/latex/gentombow/gentombow-ja.tex + RELOC/doc/latex/gentombow/gentombow.pdf details="Documentation of the gentombow package (English)" + RELOC/doc/latex/gentombow/gentombow.tex + RELOC/doc/latex/gentombow/pxgentombow.pdf + RELOC/doc/latex/gentombow/pxgentombow.tex +runfiles size=13 + RELOC/tex/latex/gentombow/bounddvi.sty + RELOC/tex/latex/gentombow/gentombow.sty + RELOC/tex/latex/gentombow/pxesopic.sty + RELOC/tex/latex/gentombow/pxgentombow.sty + RELOC/tex/latex/gentombow/pxpdfpages.sty + RELOC/tex/latex/gentombow/pxtextpos.sty +catalogue-contact-repository https://github.com/aminophen/gentombow +catalogue-ctan /macros/latex/contrib/gentombow +catalogue-license bsd3 +catalogue-topics japanese layout-page page-control + +name geometry +category Package +revision 54080 +shortdesc Flexible and complete interface to document dimensions +relocated 1 +longdesc The package provides an easy and flexible user interface to +longdesc customize page layout, implementing auto-centering and +longdesc auto-balancing mechanisms so that the users have only to give +longdesc the least description for the page layout. For example, if you +longdesc want to set each margin 2cm without header space, what you need +longdesc is just \usepackage[margin=2cm,nohead]{geometry}. The package +longdesc knows about all the standard paper sizes, so that the user need +longdesc not know what the nominal 'real' dimensions of the paper are, +longdesc just its standard name (such as a4, letter, etc.). An important +longdesc feature is the package's ability to communicate the paper size +longdesc it's set up to the output (whether via DVI \specials or via +longdesc direct interaction with pdf(La)TeX). +depend graphics +depend iftex +containersize 8700 +containerchecksum ca5393e23639894401094084c3c2e30acf12491dcbd3968a4af79037b6dfb6b86f07acfec6886d89a261991cbdebdc846d9804f125aecd4cd77c3e71968bcfe4 +doccontainersize 864536 +doccontainerchecksum 4bd5ec66f725516ef4d5d3e83e3b75a9b4408fe947161e3d885b929b34c4b60437c3fcd32472486aec12c9665b5c0d71a22896055a613c641bda4c4aa987f76f +docfiles size=230 + RELOC/doc/latex/geometry/README.md details="Package Readme" + RELOC/doc/latex/geometry/changes.txt + RELOC/doc/latex/geometry/geometry-de.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/geometry/geometry-samples-de.tex + RELOC/doc/latex/geometry/geometry-samples.tex + RELOC/doc/latex/geometry/geometry.cfg + RELOC/doc/latex/geometry/geometry.pdf details="Package documentation (English)" language="en" +srccontainersize 47940 +srccontainerchecksum 03c27863d6bded295176550743bbe7cbe6aea2b8f1365f7d0cadabd6d29b699efab98b98d2ea5f8baeaf19963a681b9852b2bd01769b326942c781fd0644644e +srcfiles size=81 + RELOC/source/latex/geometry/geometry-de.drv + RELOC/source/latex/geometry/geometry-de.dtx + RELOC/source/latex/geometry/geometry-de.ins + RELOC/source/latex/geometry/geometry.drv + RELOC/source/latex/geometry/geometry.dtx + RELOC/source/latex/geometry/geometry.ins +runfiles size=11 + RELOC/tex/latex/geometry/geometry.sty +catalogue-also vmargin typearea geometry-de +catalogue-contact-bugs https://github.com/davidcarlisle/geometry/issues +catalogue-contact-repository https://github.com/davidcarlisle/geometry +catalogue-ctan /macros/latex/contrib/geometry +catalogue-license lppl1.3c +catalogue-topics geometry +catalogue-version 5.9 + +name german +category Package +revision 42428 +shortdesc Support for German typography +relocated 1 +longdesc Supports the old German orthography (alte deutsche +longdesc Rechtschreibung). +containersize 6760 +containerchecksum 6cc469012ca6cb76baf2bbea00d198b97c2694d9388e90d2ded6b27da30f8d56aa2e6742ecabbdd335b7299c0c7476cc5479b59fa94468c9354f35ce18b59732 +doccontainersize 193600 +doccontainerchecksum b9795ae418790119ca923079221114b9bf608ce2460b810cb39575910c0b173ff445c428a2ce6260bf90a993fb354d2b5c300ba58344d907965b65bb6f2d4ee3 +docfiles size=72 + RELOC/doc/generic/german/00readme.1st details="Readme" language="de" + RELOC/doc/generic/german/betatest/00readme.1st details="Readme" language="de" + RELOC/doc/generic/german/gerdoc.pdf details="Package documentation" language="de" + RELOC/doc/generic/german/gerdoc.tex + RELOC/doc/generic/german/german.MISSING + RELOC/doc/generic/german/hyphxmpl.cfg +srccontainersize 27208 +srccontainerchecksum 9064ca69c304f86eaaf2530bafe353902de078530f57f39cfcc0a9dc0d5a04ba5329ac9d0e7e10e3ddbbbd380c14b4efd8a5b7a6b0099f2c504563af74469c42 +srcfiles size=25 + RELOC/source/generic/german/german.dtx + RELOC/source/generic/german/german.ins +runfiles size=14 + RELOC/tex/generic/german/german.sty + RELOC/tex/generic/german/ngerman.sty +catalogue-ctan /language/german +catalogue-license lppl +catalogue-topics german +catalogue-version 2.5e + +name germbib +category Package +revision 15878 +shortdesc German variants of standard BibTeX styles +relocated 1 +longdesc A development of the (old) german.sty, this bundle provides +longdesc German packages, BibTeX styles and documentary examples, for +longdesc writing documents with bibliographies. The author has since +longdesc developed the babelbib bundle, which (he asserts) supersedes +longdesc germbib. +containersize 12204 +containerchecksum a7854f834c868ad80bcf986380f19139687eb80309e3aeb9a001d2030c5bca51de617394f920801834df460d05b52878301c6b45a52666984b3ba2d0910c416f +doccontainersize 35556 +doccontainerchecksum 53dd4fff2fbb7044436f37e8a2baf48877699db4f99b92a701d10c0230439b00b48ee09051839efe4392abdb4335c3998d92d6239802c765bde4aa2df3d34ab6 +docfiles size=42 + RELOC/doc/bibtex/germbib/README.bibgerm details="Readme" + RELOC/doc/bibtex/germbib/apalike.doc + RELOC/doc/bibtex/germbib/apalike.germbib_sty + RELOC/doc/bibtex/germbib/apalike.tex + RELOC/doc/bibtex/germbib/btxdoc.tex + RELOC/doc/bibtex/germbib/btxhak.tex + RELOC/doc/bibtex/germbib/gerbibtx.bib + RELOC/doc/bibtex/germbib/gerbibtx.tex + RELOC/doc/bibtex/germbib/gerxampl.bib + RELOC/doc/bibtex/germbib/schaum.bib + RELOC/doc/bibtex/germbib/testbibgerm.tex + RELOC/doc/bibtex/germbib/testgerb.tex + RELOC/doc/bibtex/germbib/xampl.bib +runfiles size=37 + RELOC/bibtex/bst/germbib/gerabbrv.bst + RELOC/bibtex/bst/germbib/geralpha.bst + RELOC/bibtex/bst/germbib/gerapali.bst + RELOC/bibtex/bst/germbib/gerplain.bst + RELOC/bibtex/bst/germbib/gerunsrt.bst + RELOC/tex/latex/germbib/bibgerm.sty + RELOC/tex/latex/germbib/mynormal.sty +catalogue-ctan /biblio/bibtex/contrib/germbib +catalogue-license other-free +catalogue-topics bibtex-sty german + +name germkorr +category Package +revision 15878 +shortdesc Change kerning for German quotation marks +relocated 1 +longdesc The package germcorr has to be loaded after the package german. +longdesc It brings some letters like T nearer to german single and +longdesc double quotes even when that letter wears a standard accent +longdesc like "`\.T"'. +containersize 2348 +containerchecksum 6819a79268da2704a3fa6baab74be48ccd591ba998a0b012d323cb0149273deba6298a92629f0d19c19725ef0b41db9dd28adf9bb898c1c637038f9c22ad4b16 +doccontainersize 172296 +doccontainerchecksum ab5362e069674c2c53709bc776be9fcbcfd3e56226a8fa7b9230c2f4ccb6fb74bba20485362f48130c153d81df838281620a628671c202cd60a52bf8ab5b89cd +docfiles size=50 + RELOC/doc/latex/germkorr/COPYING + RELOC/doc/latex/germkorr/README details="Readme" + RELOC/doc/latex/germkorr/germkorr.pdf details="Package documentation" + RELOC/doc/latex/germkorr/germkorr.tex +runfiles size=2 + RELOC/tex/latex/germkorr/germkorr.sty +catalogue-also german +catalogue-ctan /macros/latex/contrib/germkorr +catalogue-license gpl +catalogue-topics quote-marks german +catalogue-version 1.0 + +name geschichtsfrkl +category Package +revision 42121 +shortdesc BibLaTeX style for historians +relocated 1 +longdesc The package provides a BibLaTeX style, (mostly) meeting the +longdesc requirements of the History Faculty of the University of +longdesc Freiburg (Germany). +containersize 5320 +containerchecksum 24cad33dfcbdb8ab91a80509771bd130ea6682a14fea5510ea202af73155653471deab91abb43a302b9717c252475db58135ad465f28509adae5d8583bf98e0b +doccontainersize 642508 +doccontainerchecksum 6d1097dd0047c029100358bd3161f2ca515a09cf9a62b2633d4797059688bd5c30e4eab11c31081faeefacf892415c5d9a4985d20245ea9cf79b4197925ed2e7 +docfiles size=161 + RELOC/doc/latex/geschichtsfrkl/README details="Readme" + RELOC/doc/latex/geschichtsfrkl/geschichtsfrkl.pdf details="Package documentation (German)" language="de" +srccontainersize 24896 +srccontainerchecksum 28c6a7181bb91d32ddcdbed7dd9824c8a63a351acc39f4c2e60ca507630fc23b0afe62380a64618d882fe742388d5537a435dc0b6738ba8d5288c5f2894a4064 +srcfiles size=26 + RELOC/source/latex/geschichtsfrkl/geschichtsfrkl.dtx + RELOC/source/latex/geschichtsfrkl/geschichtsfrkl.ins +runfiles size=9 + RELOC/tex/latex/geschichtsfrkl/geschichtsfrkl.bbx + RELOC/tex/latex/geschichtsfrkl/geschichtsfrkl.cbx + RELOC/tex/latex/geschichtsfrkl/geschichtsfrkldoc.sty +catalogue-ctan /macros/latex/contrib/biblatex-contrib/geschichtsfrkl +catalogue-license lppl +catalogue-topics humanities biblatex +catalogue-version 1.4 + +name getfiledate +category Package +revision 16189 +shortdesc Find the date of last modification of a file +relocated 1 +longdesc The package fetches from the system the date of last +longdesc modification or opening of an existing file, using the function +longdesc \pdffilemoddate (present in recent versions of pdfTeX); the +longdesc user may specify how the date is to be presented. +containersize 2224 +containerchecksum 017b3ad95801da2788f2c5040225c6a8a2ac6d005c1d68d9eba0be061dfc9fa6f088a0279a75d25bea8ba380e4a92cfbd9b6a6b812d08cd2f86de097f7974fb7 +doccontainersize 104636 +doccontainerchecksum 490daffa0b0b28c9c02d745d8de50f22395f6ae773e07f6e826a8ddaff0d38f9ee48e822953e9642e46be26084ec2919bcac76c388cb3f42965f1b662e4e43a0 +docfiles size=34 + RELOC/doc/latex/getfiledate/README details="Readme" + RELOC/doc/latex/getfiledate/getfiledate-guide.pdf details="Package documentation" + RELOC/doc/latex/getfiledate/getfiledate-guide.tex +runfiles size=2 + RELOC/tex/latex/getfiledate/getfiledate.sty +catalogue-ctan /macros/latex/contrib/getfiledate +catalogue-license lppl +catalogue-topics file-mgmt +catalogue-version 1.2 + +name getitems +category Package +revision 39365 +shortdesc Gathering items from a list-like environment +relocated 1 +longdesc This package provides a \gatheritems command to parse a list of +longdesc data separated by \item tokens. This makes it easier to define +longdesc custom environments which structure their data in the same way +longdesc that itemize or enumerate do. +containersize 1668 +containerchecksum 8797c7e70f1c81330b68b6c386116b0caf2c350a2b75724d796f0ab7380a2ea4cb2ae293ac3e6b941887b30faa2b73775c2bfce7c674ee98c4256a23231443b0 +doccontainersize 201756 +doccontainerchecksum 95302dae67f3193dc3d52b4e5724584ee066eee1dbba30b1233faa0c65fc568f932805b18b8054165760a2b655b486e7f3115d3b37be780f8f5a7220f2f924fc +docfiles size=54 + RELOC/doc/latex/getitems/README.md details="Readme" + RELOC/doc/latex/getitems/getitems.pdf details="Package documentation" +srccontainersize 5440 +srccontainerchecksum 1bc8b4c2b75c5cf43e18a510e5e479a7109ac440266e0dc7d748d6ef391280d81f72a07f6bfc518c6c0c313b7c8e1e11cfe9ccaae33540e1b48988414bef5ad1 +srcfiles size=5 + RELOC/source/latex/getitems/getitems.dtx + RELOC/source/latex/getitems/getitems.ins +runfiles size=1 + RELOC/tex/latex/getitems/getitems.sty +catalogue-ctan /macros/latex/contrib/getitems +catalogue-license lppl1.3 +catalogue-topics text-manip macro-supp +catalogue-version 1.0 + +name getmap +category Package +revision 50589 +shortdesc Download OpenStreetMap maps for use in documents +longdesc The package provides a simple interface to OpenStreetMap, and +longdesc to Google Maps "map images". In the simplest case, it is +longdesc sufficient to specify the address you need (if you don't, the +longdesc package will use its own default). The package loads the map +longdesc image using an external lua script (invoked via \write 18: +longdesc LaTeX must be running with \write 18 enabled). The ("external") +longdesc lua script may be used from the command line; a bash version is +longdesc provided. +depend getmap.ARCH +containersize 7592 +containerchecksum e5287152442820e20087b45c50a750af621e71e2175cd6790231d81e1f338e50aa75f29d9fbc31c2e5802229c8f15c4e0c7769d0513f1d1b0bafc96a8a3b120f +doccontainersize 1988232 +doccontainerchecksum bb55c60ec958182aaaa6dfc292a06fbad8a0ebdcb56a6799f1358ad2009bcb72b06611672219c5e9bd6d7cb4db76c4fa030be5e06f9bb38d04fa6744f8bca330 +docfiles size=508 + texmf-dist/doc/latex/getmap/README.md details="Readme" + texmf-dist/doc/latex/getmap/getmap-example.tex + texmf-dist/doc/latex/getmap/getmap.dtx + texmf-dist/doc/latex/getmap/getmap.pdf details="Package documentation" + texmf-dist/doc/latex/getmap/makefile + texmf-dist/doc/latex/getmap/manifest.txt +runfiles size=10 + texmf-dist/scripts/getmap/getmapdl.lua + texmf-dist/tex/latex/getmap/getmap.cfg + texmf-dist/tex/latex/getmap/getmap.sty +catalogue-contact-home http://getmap.jklatex.de/ +catalogue-ctan /macros/latex/contrib/getmap +catalogue-license lppl +catalogue-topics cartography +catalogue-version 1.11 + +name getmap.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of getmap +containersize 344 +containerchecksum 46852d2d139c84c404aac8b02f49b6299cae825ac07c6ac51279e6787bfdc9a293ceb3579b6640a27ae8008e111e317ca18429b59941646203c75b6ca85be2b5 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/getmapdl + +name getmap.amd64-freebsd +category Package +revision 34971 +shortdesc amd64-freebsd files of getmap +containersize 344 +containerchecksum d4c48d9e0989f951b53cd4ff3fd3ceb04e3c83af1b196242b65965d2e5b2e9bbb5c89dd160e5d9666693b40bbc914825d633aa87d07f33280a1db8f480b42952 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/getmapdl + +name getmap.amd64-netbsd +category Package +revision 34971 +shortdesc amd64-netbsd files of getmap +containersize 344 +containerchecksum e179ab2156c461ac0034b45cecb5bb8c69bbeeb442fb1eb67b488622d28fd41c1c7f140cca628d0d3dfc292163e30cd7ee5daa539b00f29a93cb02b5afffdb50 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/getmapdl + +name getmap.armhf-linux +category Package +revision 34971 +shortdesc armhf-linux files of getmap +containersize 344 +containerchecksum a01ea5f4c6ac4f41f329aca6e51b44e35bdf6d5c384e508135218f6fd1e140256e5bb0a5b61e155696edcfa628432385c088d7a188aa129b7995c67d295de3fa +binfiles arch=armhf-linux size=1 + bin/armhf-linux/getmapdl + +name getmap.i386-cygwin +category Package +revision 34971 +shortdesc i386-cygwin files of getmap +containersize 340 +containerchecksum be4789c00a055d47e26562ae16df6ae834900d2a892ac11f3690cb793e99777a6d64304bb13b8d1b4a343d50c61cde9f6dc8065bf2d1619fbc5f796e795fd0a0 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/getmapdl + +name getmap.i386-freebsd +category Package +revision 34971 +shortdesc i386-freebsd files of getmap +containersize 344 +containerchecksum 7923a1db5fee7bfcd1c14a91c7b785f2997ced7a8e183ffe58dc43caf35f0b2f3b2355381a27d76a667e91676968b9e53117a5c2c447fd4ff26c8c28667841e3 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/getmapdl + +name getmap.i386-linux +category Package +revision 34971 +shortdesc i386-linux files of getmap +containersize 340 +containerchecksum c3f9c28e8e843c39a536735f6cc02baf9e74b62f9c8813426b008e0d033acfe4b0360386aebb38c56e4d92b561d300896d41553aa6dde7101bb40737767b7b67 +binfiles arch=i386-linux size=1 + bin/i386-linux/getmapdl + +name getmap.i386-netbsd +category Package +revision 34971 +shortdesc i386-netbsd files of getmap +containersize 344 +containerchecksum 441ed280f0bf2f30e7123022960ea4d12b6654d4ad79bb016a22357014d9624332e6c1f2f0cf935effb2bda4b862442ef09f6e94ebdf55f6b3741ab342777bb4 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/getmapdl + +name getmap.i386-solaris +category Package +revision 34971 +shortdesc i386-solaris files of getmap +containersize 340 +containerchecksum 565b46bb7fbf5757d64955598283cd8673a677549be62d6ffda86e90f47d0227189e28ff39035edcaf7bf96d4b98edc1fdef2f761d23c3c024bef33e729d3f1f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/getmapdl + +name getmap.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of getmap +containersize 344 +containerchecksum 4d64bc0341396eaa915e8fd78ba3f9f6703f2a458e76153aea09f7eb0e714774e03e014097c0d135cdf7279a22886e14bae8dcea079f26447962e20e06aa90e4 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/getmapdl + +name getmap.win32 +category Package +revision 34634 +shortdesc win32 files of getmap +containersize 680 +containerchecksum 03c2788a14c4b9f85a70cf27af997daeefe0c69cfbe34c064c42befc60c88cfa29321c31adcc6d40cceba848181a8104728e26a0193d482640be7856416c05d7 +binfiles arch=win32 size=1 + bin/win32/getmapdl.exe + +name getmap.x86_64-cygwin +category Package +revision 34971 +shortdesc x86_64-cygwin files of getmap +containersize 344 +containerchecksum 4cefb59afdb6339b071a2f7cbdad1f929a33e5f4af71d52ab77990c4ca3fc0f79966629bdea305d6091881141d3c22d22897a3ad51ac07f3dad036fa367c74b3 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/getmapdl + +name getmap.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of getmap +containersize 352 +containerchecksum 8d9fd668022ebbe3f58245f80eab10fe30695ed548db23252218a121a9324f9675b267d32423b68d43a6a7357dcaaef9690072163fdfbda5a51cce3607a458eb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/getmapdl + +name getmap.x86_64-linux +category Package +revision 34971 +shortdesc x86_64-linux files of getmap +containersize 344 +containerchecksum fa908890dc366cc03f1ef0a3b7ac23fef70b49bd48ce1d6729643f235d63b0e09f74a91080c0936e96e90affabceee72967e85bb14ed93e33eb8d839b7bfd55e +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/getmapdl + +name getmap.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of getmap +containersize 348 +containerchecksum ae141b47b996708c554fbc8cb5be8665256f79d99410b89d8dc54183d374b8a3ea04578fd3adf0274b157f679d6cf6d3ba317750a8b0773f454ab36fff242309 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/getmapdl + +name getmap.x86_64-solaris +category Package +revision 34971 +shortdesc x86_64-solaris files of getmap +containersize 344 +containerchecksum 300d07279fe9e6779ae4ceed1498f8cc05e6b2c1e501532e2561c7b9c491c2e7df735f3c860970dbccdbcc44ec28f43ab37d3a8eb57f593761824014776279e4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/getmapdl + +name getoptk +category Package +revision 23567 +shortdesc Define macros with sophisticated options +relocated 1 +longdesc The package provides a means of defining macros whose options +longdesc are taken from a dictionary, which includes options which +longdesc themselves have arguments. The package was designed for use +longdesc with Plain TeX; its syntax derives from that of the \hbox, +longdesc \hrule, etc., TeX primitives. +containersize 4180 +containerchecksum 6a2e543d0997c52155807d0d2641af9714cb09531286a58bcb2d5fec0e70c694edb7d603a250281a641610d1c39495d5f93417da5cfea7a86da1fd53a98ef77f +doccontainersize 278344 +doccontainerchecksum fba54e8acd4f494c4e859c8705cb97923e477ed909720adb8c4735c527c3b13799ad74ac1700099bfa282144f2b38358b890bc52d4ae4a9e16699c2d0e10619c +docfiles size=82 + RELOC/doc/plain/getoptk/COPYING + RELOC/doc/plain/getoptk/COPYING-FR + RELOC/doc/plain/getoptk/README details="Readme" + RELOC/doc/plain/getoptk/guide.pdf details="Package documentation" +runfiles size=4 + RELOC/tex/plain/getoptk/getoptk.tex + RELOC/tex/plain/getoptk/guide.tex +catalogue-ctan /macros/plain/contrib/getoptk +catalogue-license other-free +catalogue-topics macro-def +catalogue-version 1.0 + +name gettitlestring +category Package +revision 53170 +shortdesc Clean up title references +relocated 1 +longdesc Cleans up the title string (removing \label commands) for +longdesc packages (such as nameref) that typeset such strings. +containersize 2780 +containerchecksum 101ad92c2fba5c43321d8e12754190e09b0442508799dbb6bac23d5cbe96c470425a4cc10a28441408ac5a1c406e18aab7567f2464e48c2692fa38af1e23a16f +doccontainersize 317824 +doccontainerchecksum f9e33fbe89df368c4c5dfd855f2fc0fa8c4d1eec5c0ab925b0a28b9f021fd2d88521895233d12783a023e40d70b05a0e849d4551f79fd4b8d0af72fb60a1af32 +docfiles size=79 + RELOC/doc/latex/gettitlestring/README.md + RELOC/doc/latex/gettitlestring/gettitlestring.pdf details="Package documentation" +srccontainersize 6424 +srccontainerchecksum 9bddc79e0f839a21ebb76e21e20ba5a26971f4192ebc2209468a780a15e5e5f61a328df5f033c115452751a31d1e6dc2e6e238097d2cbdbffa33f56ca420b602 +srcfiles size=6 + RELOC/source/latex/gettitlestring/gettitlestring.dtx +runfiles size=3 + RELOC/tex/generic/gettitlestring/gettitlestring.sty +catalogue-contact-bugs https://github.com/ho-tex/gettitlestring/issues +catalogue-contact-repository https://github.com/ho-tex/gettitlestring +catalogue-ctan /macros/latex/contrib/gettitlestring +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.6 + +name gfnotation +category Package +revision 37156 +shortdesc Typeset Gottlob Frege's notation in plain TeX +relocated 1 +longdesc The package implements macros for plain TeX to typeset the +longdesc notation invented by Gottlob Frege in 1879 for his books +longdesc "Begriffsschrift" and "Grundgesetze der Arithmetik" (two +longdesc volumes). The output styles of both books are supported. +containersize 14368 +containerchecksum 4f99442eacf28ea13cd98ee4bbe981b95ae9d849e6bf2682cac2305fd793f6e9f5e4211362385890956fdb24ef03748e9cb0184c7ba9ed89e7985b2caa3e2da2 +doccontainersize 167284 +doccontainerchecksum b65d173c11400a7681510cd837ac6e8ebf65a458327bfdee140013d49a0c6fcc339f6c45d4b4ee918585acaf785c12e66b3df5f73f01a1f2d8c5b8db58b9c47e +docfiles size=63 + RELOC/doc/plain/gfnotation/COPYING + RELOC/doc/plain/gfnotation/GFnotation-doc.pdf details="Package documentation" + RELOC/doc/plain/gfnotation/GFnotation-doc.tex + RELOC/doc/plain/gfnotation/README details="Readme" +runfiles size=22 + RELOC/tex/plain/gfnotation/GFnotation.tex +catalogue-ctan /macros/plain/contrib/gfnotation +catalogue-license gpl3 +catalogue-topics logic maths +catalogue-version 2.9 + +name gfsartemisia +category Package +revision 19469 +shortdesc A modern Greek font design +relocated 1 +longdesc GFS Artemisia is a relatively modern font, designed as a +longdesc 'general purpose' font in the same sense as Times is nowadays +longdesc treated. The present version has been provided by the Greek +longdesc Font Society. The font supports the Greek and Latin alphabets. +longdesc LaTeX support is provided, using the OT1, T1 and LGR encodings. +execute addMap gfsartemisia.map +containersize 981732 +containerchecksum 28cb811a30c06bd6390b9268dd2a7a4dadcb2fa9d426d9461af1ba5593b2c419ed1c7886c3aef9bdbb0f1fea3d6bf127ff6088a6b2c2048dcccfb21c2a06a5ee +doccontainersize 117180 +doccontainerchecksum 9f2efd76c243177240f237f7232fc87eb33d7ea1177a7bfdf7d506077e19c40d3fd923a960595c46f50fa19979598bd06a1865cae8794d45f91da1d6a9a60a7b +docfiles size=46 + RELOC/doc/fonts/gfsartemisia/OFL-FAQ.txt + RELOC/doc/fonts/gfsartemisia/OFL.txt + RELOC/doc/fonts/gfsartemisia/README details="Readme" + RELOC/doc/fonts/gfsartemisia/README.TEXLIVE + RELOC/doc/fonts/gfsartemisia/gfsartemisia.pdf details="Package documentation" + RELOC/doc/fonts/gfsartemisia/gfsartemisia.tex +runfiles size=459 + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-Bold.afm + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-BoldItalic.afm + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-Italic.afm + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-Regular.afm + RELOC/fonts/enc/dvips/gfsartemisia/artemisia.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiadenomnums.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiaec.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiaecsc.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiael.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiaelsc.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiamath.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisianumnums.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiasc.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiatabnums.enc + RELOC/fonts/map/dvips/gfsartemisia/gfsartemisia.map + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisia.otf + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisiaBold.otf + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisiaBoldIt.otf + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisiaIt.otf + RELOC/fonts/tfm/public/gfsartemisia/artemisiab8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiab8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiab9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiab9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiadenomnums8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiadenomnums8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiamath8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiamath8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisianumnums8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisianumnums8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiatabnums8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiatabnums8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiab6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiab6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabi6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabi6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabo6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabo6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiai6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiai6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiao6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiao6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiarg6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiarg6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasc6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasc6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasco6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasco6r.tfm + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-Bold.pfb + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-BoldItalic.pfb + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-Italic.pfb + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-Regular.pfb + RELOC/fonts/vf/public/gfsartemisia/artemisiab8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiab9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabi8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabi9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabo8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabo9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiadenomnums8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiai8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiai9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiamath8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisianumnums8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiao8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiao9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiarg8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiarg9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasc8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasc9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasco8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasco9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiatabnums8a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiab6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiabi6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiabo6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiai6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiao6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiarg6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiasc6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiasco6a.vf + RELOC/tex/latex/gfsartemisia/gfsartemisia-euler.sty + RELOC/tex/latex/gfsartemisia/gfsartemisia.sty + RELOC/tex/latex/gfsartemisia/lgrartemisia.fd + RELOC/tex/latex/gfsartemisia/lgrartemisiaeuler.fd + RELOC/tex/latex/gfsartemisia/ot1artemisia.fd + RELOC/tex/latex/gfsartemisia/ot1artemisiaeuler.fd + RELOC/tex/latex/gfsartemisia/t1artemisia.fd + RELOC/tex/latex/gfsartemisia/t1artemisiaeuler.fd + RELOC/tex/latex/gfsartemisia/uartemisiaeulernums.fd + RELOC/tex/latex/gfsartemisia/uartemisianums.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfsartemisia +catalogue-license other-free +catalogue-topics font font-type1 font-otf font-greek +catalogue-version 1.0 + +name gfsbaskerville +category Package +revision 19440 +shortdesc A Greek font, from one such by Baskerville +relocated 1 +longdesc The font is a digital implementation of Baskerville's classic +longdesc Greek font, provided by the Greek Font Society. The font covers +longdesc Greek only, and LaTeX support provides for the use of LGR +longdesc encoding. +execute addMap gfsbaskerville.map +containersize 116604 +containerchecksum b545ec586b3bdfe3da2cabaa959ceeeb4ff513b48024575b1b5e3c57bb2d10a0b4e2cd7507726275eed0826dabf03d05c20eb9d5ec341aaedc0313264214ef78 +doccontainersize 45796 +doccontainerchecksum a45ed2b35774755a6558431f784faad4bbd63aa81ad5d80c3cfe3f7726604aea3e4de2baa72bb27a4e2271e9bfe180c8963d06b880a0efd2dc5f7789dcabb51b +docfiles size=22 + RELOC/doc/fonts/gfsbaskerville/OFL-FAQ.txt + RELOC/doc/fonts/gfsbaskerville/OFL.txt + RELOC/doc/fonts/gfsbaskerville/README details="Readme" + RELOC/doc/fonts/gfsbaskerville/README.TEXLIVE + RELOC/doc/fonts/gfsbaskerville/gfsbaskerville.pdf details="Package documentation" + RELOC/doc/fonts/gfsbaskerville/gfsbaskerville.tex +runfiles size=53 + RELOC/fonts/afm/public/gfsbaskerville/GFSBaskerville-Regular.afm + RELOC/fonts/enc/dvips/gfsbaskerville/gpgfsbaskerville.enc + RELOC/fonts/map/dvips/gfsbaskerville/gfsbaskerville.map + RELOC/fonts/opentype/public/gfsbaskerville/GFSBaskerville.otf + RELOC/fonts/tfm/public/gfsbaskerville/ggfsbaskervillerg6a.tfm + RELOC/fonts/tfm/public/gfsbaskerville/ggfsbaskervillerg6r.tfm + RELOC/fonts/type1/public/gfsbaskerville/GFSBaskerville-Regular.pfb + RELOC/fonts/vf/public/gfsbaskerville/ggfsbaskervillerg6a.vf + RELOC/tex/latex/gfsbaskerville/gfsbaskerville.sty + RELOC/tex/latex/gfsbaskerville/lgrgfsbaskerville.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfsbaskerville +catalogue-license other-free +catalogue-topics font font-type1 font-otf font-greek +catalogue-version 1.0 + +name gfsbodoni +category Package +revision 28484 +shortdesc A Greek and Latin font based on Bodoni +relocated 1 +longdesc Bodoni's Greek fonts in the 18th century broke, for the first +longdesc time, with the Byzantine cursive tradition of Greek fonts. GFS +longdesc Bodoni resurrects his work for general use. The font family +longdesc supports both Greek and Latin letters. LaTeX support of the +longdesc fonts is provided, offering OT1, T1 and LGR encodings. The +longdesc fonts themselves are provided in Adobe Type 1 and OpenType +longdesc formats. +execute addMap gfsbodoni.map +containersize 906264 +containerchecksum e01cca38176330bdc0a4b523bd2bd4f73a497d90a34682d29920e145d11ea099f163fa08470c79e10a27a137a5901d7da9db54e461667af61c687adca1960249 +doccontainersize 93680 +doccontainerchecksum c70b1a32e945d82e50b8a37319ee2bf63d4800b381f317168fd945311485cf6c41c7a3112e89457f4ee40bd29736accf681bd61494120e3d41f0c8fb28ad466a +docfiles size=36 + RELOC/doc/fonts/gfsbodoni/OFL-FAQ.txt + RELOC/doc/fonts/gfsbodoni/OFL.txt + RELOC/doc/fonts/gfsbodoni/README details="Readme" + RELOC/doc/fonts/gfsbodoni/README.TEXLIVE + RELOC/doc/fonts/gfsbodoni/gfsbodoni.pdf details="Package documentation" +runfiles size=443 + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-Bold.afm + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-BoldItalic.afm + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-Italic.afm + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-Regular.afm + RELOC/fonts/enc/dvips/gfsbodoni/bodoni.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonidenomnums.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoniec.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoniecsc.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoniel.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonielsc.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoninumnums.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonisc.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonitabnums.enc + RELOC/fonts/map/dvips/gfsbodoni/gfsbodoni.map + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoni.otf + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoniBold.otf + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoniBoldIt.otf + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoniIt.otf + RELOC/fonts/tfm/public/gfsbodoni/bodonib8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonib8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonib9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonib9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonidenomnums8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonidenomnums8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodoninumnums8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodoninumnums8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonitabnums8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonitabnums8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonib6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonib6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibi6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibi6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibo6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibo6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonii6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonii6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonio6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonio6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonio9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonirg6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonirg6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisc6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisc6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisco6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisco6r.tfm + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-Bold.pfb + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-BoldItalic.pfb + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-Italic.pfb + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-Regular.pfb + RELOC/fonts/vf/public/gfsbodoni/bodonib8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonib9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibi8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibi9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibo8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibo9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonidenomnums8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonii8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonii9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodoninumnums8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonio8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonio9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonirg8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonirg9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisc8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisc9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisco8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisco9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonitabnums8a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonib6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonibi6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonibo6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonii6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonio6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonio9a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonirg6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonisc6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonisco6a.vf + RELOC/tex/latex/gfsbodoni/gfsbodoni.sty + RELOC/tex/latex/gfsbodoni/lgrbodoni.fd + RELOC/tex/latex/gfsbodoni/ot1bodoni.fd + RELOC/tex/latex/gfsbodoni/t1bodoni.fd + RELOC/tex/latex/gfsbodoni/ubodoninums.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfsbodoni +catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek +catalogue-version 1.01 + +name gfscomplutum +category Package +revision 19469 +shortdesc A Greek font with a long history +relocated 1 +longdesc GFS Complutum derives, via a long development, from a +longdesc minuscule-only font cut in the 16th century. An unsatisfactory +longdesc set of majuscules were added in the early 20th century, but its +longdesc author died before he could complete the revival of the font. +longdesc The Greek Font Society has released this version, which has a +longdesc new set of majuscules. +execute addMap gfscomplutum.map +containersize 123244 +containerchecksum 4013ef92910c3c1145708afa5a9ff13cfb0aae05e6b225c56c98090ea7cd223799e73212982312a14cf504a355dddce08e3364df8c046dfe462d07429cfa617d +doccontainersize 58076 +doccontainerchecksum 5854b000522120f6a1b065300943fd8aebcd75f57da15d667616a3706d35ffa35cac0422712d0b008dc2abf2b9deceb0248fc044be68f893f6ad0eefcd50b316 +docfiles size=26 + RELOC/doc/fonts/gfscomplutum/OFL-FAQ.txt + RELOC/doc/fonts/gfscomplutum/OFL.txt + RELOC/doc/fonts/gfscomplutum/README details="Readme" + RELOC/doc/fonts/gfscomplutum/README.TEXLIVE + RELOC/doc/fonts/gfscomplutum/gfscomplutum.pdf details="Package documentation" + RELOC/doc/fonts/gfscomplutum/gfscomplutum.tex +runfiles size=58 + RELOC/fonts/afm/public/gfscomplutum/GFSComplutum-Regular.afm + RELOC/fonts/enc/dvips/gfscomplutum/gpcomplutum.enc + RELOC/fonts/map/dvips/gfscomplutum/gfscomplutum.map + RELOC/fonts/opentype/public/gfscomplutum/GFSPolyglot.otf + RELOC/fonts/tfm/public/gfscomplutum/gcomplutum8a.tfm + RELOC/fonts/tfm/public/gfscomplutum/gcomplutum8r.tfm + RELOC/fonts/tfm/public/gfscomplutum/gcomplutumo8a.tfm + RELOC/fonts/tfm/public/gfscomplutum/gcomplutumo8r.tfm + RELOC/fonts/type1/public/gfscomplutum/GFSComplutum-Regular.pfb + RELOC/fonts/vf/public/gfscomplutum/gcomplutum8a.vf + RELOC/fonts/vf/public/gfscomplutum/gcomplutumo8a.vf + RELOC/tex/latex/gfscomplutum/gfscomplutum.sty + RELOC/tex/latex/gfscomplutum/lgrcomplutum.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfscomplutum +catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek +catalogue-version 1.0 + +name gfsdidot +category Package +revision 54080 +shortdesc A Greek font based on Didot's work +relocated 1 +longdesc The design of Didot's 1805 Greek typeface was influenced by the +longdesc neoclassical ideals of the late 18th century. The font was +longdesc brought to Greece at the time of the 1821 Greek Revolution, by +longdesc Didot's son, and was very widely used. The present version is +longdesc provided by the Greek Font Society. The font supports the Greek +longdesc alphabet, and is accompanied by a matching Latin alphabet based +longdesc on Zapf's Palatino. LaTeX support is provided, using the OT1, +longdesc T1, TS1, and LGR encodings. +execute addMap gfsdidot.map +containersize 1305288 +containerchecksum 1f85b632dd3ff67144a83f9804d4408a4a39647303ede905d5ebd5386ac519ed73ed65cab6cd07242c72fdbea94650eaf25b6b4e7a09aef1c71be62f399c4248 +doccontainersize 42692 +doccontainerchecksum 7ba7a00cf878c99c8daf855c0124d4027d7404739515079b2c0b2d7e38abb508a1b7e05beb2ee5036bf25d2b2a5c2377e4f397042b6bdf22376ab4a9a5e115c5 +docfiles size=187 + RELOC/doc/fonts/gfsdidot/OFL-FAQ.txt + RELOC/doc/fonts/gfsdidot/OFL.txt + RELOC/doc/fonts/gfsdidot/README details="Readme" + RELOC/doc/fonts/gfsdidot/README.TEXLIVE + RELOC/doc/fonts/gfsdidot/Readme.txt + RELOC/doc/fonts/gfsdidot/didotb7a.vpl + RELOC/doc/fonts/gfsdidot/didotbi7a.vpl + RELOC/doc/fonts/gfsdidot/didotbo7a.vpl + RELOC/doc/fonts/gfsdidot/didoti7a.vpl + RELOC/doc/fonts/gfsdidot/didoto7a.vpl + RELOC/doc/fonts/gfsdidot/didotrg7a.vpl + RELOC/doc/fonts/gfsdidot/didotsc7a.vpl + RELOC/doc/fonts/gfsdidot/didotscb7a.vpl + RELOC/doc/fonts/gfsdidot/didotscbo7a.vpl + RELOC/doc/fonts/gfsdidot/didotsco7a.vpl + RELOC/doc/fonts/gfsdidot/didotui7a.vpl + RELOC/doc/fonts/gfsdidot/gdidotb6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotbi6a.vpl + RELOC/doc/fonts/gfsdidot/gdidoti6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotrg6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotsc6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotsco6a.vpl + RELOC/doc/fonts/gfsdidot/gfsudidotmath8a.vpl + RELOC/doc/fonts/gfsdidot/golgai6a.vpl + RELOC/doc/fonts/gfsdidot/golgaui6a.vpl + RELOC/doc/fonts/gfsdidot/installDidot.pl + RELOC/doc/fonts/gfsdidot/showDidotFontsLaTeX.tex + RELOC/doc/fonts/gfsdidot/ts1-gfsdidot_model.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidot_model_1.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotb.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotbi.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotbo.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidoto.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotr.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotui.vpl +runfiles size=660 + RELOC/fonts/afm/public/gfsdidot/GFSDidot-Bold.afm + RELOC/fonts/afm/public/gfsdidot/GFSDidot-BoldItalic.afm + RELOC/fonts/afm/public/gfsdidot/GFSDidot-Italic.afm + RELOC/fonts/afm/public/gfsdidot/GFSDidot.afm + RELOC/fonts/afm/public/gfsdidot/GFSOlga.afm + RELOC/fonts/enc/dvips/gfsdidot/didot.enc + RELOC/fonts/enc/dvips/gfsdidot/didotOT1.enc + RELOC/fonts/enc/dvips/gfsdidot/didotOT1it.enc + RELOC/fonts/enc/dvips/gfsdidot/didotOT1sc.enc + RELOC/fonts/enc/dvips/gfsdidot/didotTS1.enc + RELOC/fonts/enc/dvips/gfsdidot/didotdenomnums.enc + RELOC/fonts/enc/dvips/gfsdidot/didotec.enc + RELOC/fonts/enc/dvips/gfsdidot/didotnumnums.enc + RELOC/fonts/enc/dvips/gfsdidot/didottabnums.enc + RELOC/fonts/enc/dvips/gfsdidot/didotuecsc.enc + RELOC/fonts/enc/dvips/gfsdidot/didotusc.enc + RELOC/fonts/enc/dvips/gfsdidot/gfsudidotmath.enc + RELOC/fonts/enc/dvips/gfsdidot/gpdidot.enc + RELOC/fonts/enc/dvips/gfsdidot/gpdidoti.enc + RELOC/fonts/enc/dvips/gfsdidot/gpdidotusc.enc + RELOC/fonts/enc/dvips/gfsdidot/gpolga.enc + RELOC/fonts/map/dvips/gfsdidot/gfsdidot.map + RELOC/fonts/opentype/public/gfsdidot/GFSDidot.otf + RELOC/fonts/opentype/public/gfsdidot/GFSDidotBold.otf + RELOC/fonts/opentype/public/gfsdidot/GFSDidotBoldItalic.otf + RELOC/fonts/opentype/public/gfsdidot/GFSDidotItalic.otf + RELOC/fonts/opentype/public/gfsdidot/GFSOlga.otf + RELOC/fonts/tfm/public/gfsdidot/didotb7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotb7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotb8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotb8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotb9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotb9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotdenomnums8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotdenomnums8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotnumnums8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotnumnums8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscb7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscb7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscbo7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscbo7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didottabnums8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didottabnums8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui9r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotb6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotb6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotbi6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotbi6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidoti6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidoti6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotrg6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotrg6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsc6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsc6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsco6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsco6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gfsudidotmath8a.tfm + RELOC/fonts/tfm/public/gfsdidot/gfsudidotmath8r.tfm + RELOC/fonts/tfm/public/gfsdidot/golgai6a.tfm + RELOC/fonts/tfm/public/gfsdidot/golgai6r.tfm + RELOC/fonts/tfm/public/gfsdidot/golgaui6a.tfm + RELOC/fonts/tfm/public/gfsdidot/golgaui6r.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotb-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotb.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbi-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbi.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbo-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbo.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidoto-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidoto.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotr-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotr.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotri-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotri.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotui-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotui.tfm + RELOC/fonts/type1/public/gfsdidot/GFSDidot-Bold.pfb + RELOC/fonts/type1/public/gfsdidot/GFSDidot-BoldItalic.pfb + RELOC/fonts/type1/public/gfsdidot/GFSDidot-Italic.pfb + RELOC/fonts/type1/public/gfsdidot/GFSDidot.pfb + RELOC/fonts/type1/public/gfsdidot/GFSOlga.pfb + RELOC/fonts/vf/public/gfsdidot/didotb7a.vf + RELOC/fonts/vf/public/gfsdidot/didotb8a.vf + RELOC/fonts/vf/public/gfsdidot/didotb9a.vf + RELOC/fonts/vf/public/gfsdidot/didotbi7a.vf + RELOC/fonts/vf/public/gfsdidot/didotbi8a.vf + RELOC/fonts/vf/public/gfsdidot/didotbi9a.vf + RELOC/fonts/vf/public/gfsdidot/didotbo7a.vf + RELOC/fonts/vf/public/gfsdidot/didotbo8a.vf + RELOC/fonts/vf/public/gfsdidot/didotbo9a.vf + RELOC/fonts/vf/public/gfsdidot/didotdenomnums8a.vf + RELOC/fonts/vf/public/gfsdidot/didoti7a.vf + RELOC/fonts/vf/public/gfsdidot/didoti8a.vf + RELOC/fonts/vf/public/gfsdidot/didoti9a.vf + RELOC/fonts/vf/public/gfsdidot/didotnumnums8a.vf + RELOC/fonts/vf/public/gfsdidot/didoto7a.vf + RELOC/fonts/vf/public/gfsdidot/didoto8a.vf + RELOC/fonts/vf/public/gfsdidot/didoto9a.vf + RELOC/fonts/vf/public/gfsdidot/didotrg7a.vf + RELOC/fonts/vf/public/gfsdidot/didotrg8a.vf + RELOC/fonts/vf/public/gfsdidot/didotrg9a.vf + RELOC/fonts/vf/public/gfsdidot/didotsc7a.vf + RELOC/fonts/vf/public/gfsdidot/didotsc8a.vf + RELOC/fonts/vf/public/gfsdidot/didotsc9a.vf + RELOC/fonts/vf/public/gfsdidot/didotscb7a.vf + RELOC/fonts/vf/public/gfsdidot/didotscbo7a.vf + RELOC/fonts/vf/public/gfsdidot/didotsco7a.vf + RELOC/fonts/vf/public/gfsdidot/didotsco8a.vf + RELOC/fonts/vf/public/gfsdidot/didotsco9a.vf + RELOC/fonts/vf/public/gfsdidot/didottabnums8a.vf + RELOC/fonts/vf/public/gfsdidot/didotui7a.vf + RELOC/fonts/vf/public/gfsdidot/didotui8a.vf + RELOC/fonts/vf/public/gfsdidot/didotui9a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotb6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotbi6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidoti6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotrg6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotsc6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotsco6a.vf + RELOC/fonts/vf/public/gfsdidot/gfsudidotmath8a.vf + RELOC/fonts/vf/public/gfsdidot/golgai6a.vf + RELOC/fonts/vf/public/gfsdidot/golgaui6a.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotb.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotbi.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotbo.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidoto.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotr.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotri.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotui.vf + RELOC/tex/latex/gfsdidot/gfsdidot.sty + RELOC/tex/latex/gfsdidot/lgrudidot.fd + RELOC/tex/latex/gfsdidot/omludidot.fd + RELOC/tex/latex/gfsdidot/ot1udidot.fd + RELOC/tex/latex/gfsdidot/t1udidot.fd + RELOC/tex/latex/gfsdidot/testDidot.sty + RELOC/tex/latex/gfsdidot/ts1udidot.fd + RELOC/tex/latex/gfsdidot/uudidotnums.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfsdidot +catalogue-license other-free +catalogue-topics font font-body font-serif font-greek font-multilingual font-type1 font-otf font-t1enc + +name gfsdidotclassic +category Package +revision 52778 +shortdesc The classic version of GFSDidot +relocated 1 +longdesc The classic version of GFSDidot provided for Unicode TeX +longdesc engines. +containersize 30192 +containerchecksum 7b07a974f5447917d0a10a964011f2ed57db2dc9155384117310eadbe1dd05067dea6d617a598545713fb9250bda4241b0b2d5bdd84be4fb8c994d8d8c4e5ac4 +doccontainersize 800 +doccontainerchecksum 3256c1af2f7b0d15625eb3a7250e15b9645991b3a7408d11afc77aa65bb067cfc3682fac334a61d67f894468b3a14c21e694e4b7445a01ce88203af06a269031 +docfiles size=2 + RELOC/doc/fonts/gfsdidotclassic/README details="Readme" + RELOC/doc/fonts/gfsdidotclassic/README.TEXLIVE +runfiles size=16 + RELOC/fonts/opentype/public/gfsdidotclassic/GFSDidot_Classic.otf +catalogue-ctan /fonts/greek/gfs/gfsdidotclassic +catalogue-license ofl +catalogue-topics font font-body font-otf font-greek +catalogue-version 001.001 + +name gfsneohellenic +category Package +revision 54080 +shortdesc A font in the Neo-Hellenic style +relocated 1 +longdesc The NeoHellenic style evolved in academic circles in the 19th +longdesc and 20th century; the present font follows a cut commissioned +longdesc from Monotype in 1927. The present version was provided by the +longdesc Greek Font Society. The font supports both Greek and Latin +longdesc characters, and has been adjusted to work well with the +longdesc cmbright fonts for mathematics support. LaTeX support of the +longdesc fonts is provided, offering OT1, T1 and LGR encodings. +execute addMap gfsneohellenic.map +containersize 977640 +containerchecksum bd8fbea65fafc3c09fd1a53ffd7de48e93f160a49bba902efe155913bbda5fd2bf38e0d4d2242ec8152dc869959128cfdad49ded95d196aed1c39fbaad62c527 +doccontainersize 10276 +doccontainerchecksum d10d56caab42b2bd25f246726616e359ee10f934469e59a818753d1e7c4d876018cfdb86f466c49f58122fe9d7e67ca6b811b25b5e2d94b120f296ce87a2a48c +docfiles size=11 + RELOC/doc/fonts/gfsneohellenic/OFL-FAQ.txt + RELOC/doc/fonts/gfsneohellenic/OFL.txt + RELOC/doc/fonts/gfsneohellenic/README details="Readme" + RELOC/doc/fonts/gfsneohellenic/README.TEXLIVE + RELOC/doc/fonts/gfsneohellenic/VERSION +runfiles size=445 + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Bold.afm + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-BoldItalic.afm + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Italic.afm + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Regular.afm + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenic.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicdenomnums.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicec.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicecsc.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicel.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicelsc.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicmath.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicnumnums.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicsc.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenictabnums.enc + RELOC/fonts/map/dvips/gfsneohellenic/gfsneohellenic.map + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenic.otf + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenicBold.otf + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenicBoldIt.otf + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenicIt.otf + RELOC/fonts/tfm/public/gfsneohellenic/gfsneohellenicmath8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gfsneohellenicmath8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicb6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicb6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbi6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbi6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbo6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbo6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenici6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenici6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenico6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenico6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicrg6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicrg6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsc6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsc6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsco6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsco6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicdenomnums8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicdenomnums8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicnumnums8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicnumnums8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenictabnums8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenictabnums8r.tfm + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-Bold.pfb + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-BoldItalic.pfb + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-Italic.pfb + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-Regular.pfb + RELOC/fonts/vf/public/gfsneohellenic/gfsneohellenicmath8a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicb6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicbi6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicbo6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenici6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenico6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicrg6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicsc6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicsco6a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicb8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicb9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbi8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbi9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbo8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbo9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicdenomnums8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenici8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenici9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicnumnums8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenico8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenico9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicrg8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicrg9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsc8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsc9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsco8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsco9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenictabnums8a.vf + RELOC/tex/latex/gfsneohellenic/gfsneohellenic.sty + RELOC/tex/latex/gfsneohellenic/lgrneohellenic.fd + RELOC/tex/latex/gfsneohellenic/omlneohellenic.fd + RELOC/tex/latex/gfsneohellenic/ot1neohellenic.fd + RELOC/tex/latex/gfsneohellenic/t1neohellenic.fd + RELOC/tex/latex/gfsneohellenic/uneohellenicnums.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfsneohellenic +catalogue-license other-free +catalogue-topics font font-otf font-greek + +name gfsneohellenicmath +category Package +revision 52570 +shortdesc A Greek math font in the Neo-Hellenic style +relocated 1 +longdesc The GFSNeohellenic font, a historic font first designed by +longdesc Victor Scholderer, and digitized by George Matthiopoulos of the +longdesc Greek Font Society (GFS), now has native support for +longdesc Mathematics. The project was commissioned to GFS by the +longdesc Department of Mathematics of the University of the Aegean, +longdesc Samos, Greece. The Math Table was constructed by the +longdesc Mathematics Professor A. Tsolomitis. A useful application is in +longdesc beamer documents since this is a Sans Math font. The +longdesc GFSNeohellenic fontfamily supports many languages (including +longdesc Greek), and it is distributed (both text and math) under the +longdesc OFL license. +containersize 308036 +containerchecksum 1dbce2d775c204b758b34c66adfa7af5315ba5d40f577a2e5f8bc37aedd4fd5814dccf31e6830804f8b8ededcfe88eed9f0ea020fb411e439777bc19d88698b8 +doccontainersize 114840 +doccontainerchecksum 5f511a3433bbfe68bd2240791126de6254f5dc552a24bd344aa33e2c8c93a08ed924b5d900d8bba1cd2fb03a2349ccd0c7233ae9b54db5f888b68bf97bad7f05 +docfiles size=30 + RELOC/doc/fonts/gfsneohellenicmath/MathematicsCheatSheet.pdf details="Package documentation" + RELOC/doc/fonts/gfsneohellenicmath/README details="Readme" +runfiles size=166 + RELOC/fonts/opentype/public/gfsneohellenicmath/GFSNeohellenicMath.otf + RELOC/tex/latex/gfsneohellenicmath/gfsneohellenicot.sty +catalogue-ctan /fonts/gfsneohellenicmath +catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek maths font-maths +catalogue-version 1.0.1 + +name gfsporson +category Package +revision 18651 +shortdesc A Greek font, originally from Porson +relocated 1 +longdesc Porson is an elegant Greek font, originally cut at the turn of +longdesc the 19th Century in England. The present version has been +longdesc provided by the Greek Font Society. The font supports the Greek +longdesc alphabet only. LaTeX support is provided, using the LGR +longdesc encoding. +execute addMap gfsporson.map +containersize 125520 +containerchecksum f52d6cd8d0b674771dd56a5d2974fd3edd8b4685bb201489e578c62d1e31b5dcb6f2cb2e9b05702ec439ec7f0b35740e291d3a92de53b75870fd791858f8a474 +doccontainersize 33264 +doccontainerchecksum 3dbcafd00a88537db9e27aece276df08da805b59076d5e65395a4752d8ce57a794f23508238e96ec26b8d7e6d25e11992c2a567e44ca2f930bc44b9dc980202c +docfiles size=17 + RELOC/doc/fonts/gfsporson/OFL-FAQ.txt + RELOC/doc/fonts/gfsporson/OFL.txt + RELOC/doc/fonts/gfsporson/README details="Readme" + RELOC/doc/fonts/gfsporson/gfsporson.pdf details="Package documentation" + RELOC/doc/fonts/gfsporson/gfsporson.tex +runfiles size=47 + RELOC/fonts/afm/public/gfsporson/GFSPorson-Regular.afm + RELOC/fonts/enc/dvips/gfsporson/porsonel.enc + RELOC/fonts/map/dvips/gfsporson/gfsporson.map + RELOC/fonts/opentype/public/gfsporson/GFSPorson.otf + RELOC/fonts/tfm/public/gfsporson/gporsonrg6a.tfm + RELOC/fonts/tfm/public/gfsporson/gporsonrg6r.tfm + RELOC/fonts/type1/public/gfsporson/GFSPorson-Regular.pfb + RELOC/fonts/vf/public/gfsporson/gporsonrg6a.vf + RELOC/tex/latex/gfsporson/gfsporson.sty + RELOC/tex/latex/gfsporson/lgrporson.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfsporson +catalogue-license other-free +catalogue-topics font font-type1 font-otf font-greek +catalogue-version 1.01 + +name gfssolomos +category Package +revision 18651 +shortdesc A Greek-alphabet font +relocated 1 +longdesc Solomos is a font which traces its descent from a +longdesc calligraphically-inspired font of the mid-19th century. LaTeX +longdesc support, for use with the LGR encoding only, is provided. +execute addMap gfssolomos.map +containersize 102812 +containerchecksum 6e6ac03cf7ee20accfb67855b3dce136e3caa2466fce760adef0a2c1633e0a170543cf861a6a07a0c80344ab026dc2f74a35c5543ea92a53f7ce8a1042f778b7 +doccontainersize 52744 +doccontainerchecksum 67640d1a95ad7ec43d7df407916cde264c5460cf400011cf0cdb3dc4caffabba370f2fc15ae945e20b6a9bb6623645f6ffe80034a781cdeb11c400bd23985e3b +docfiles size=24 + RELOC/doc/fonts/gfssolomos/OFL-FAQ.txt + RELOC/doc/fonts/gfssolomos/OFL.txt + RELOC/doc/fonts/gfssolomos/README details="Readme" + RELOC/doc/fonts/gfssolomos/gfssolomos.pdf details="Package documentation" + RELOC/doc/fonts/gfssolomos/gfssolomos.tex +runfiles size=44 + RELOC/fonts/afm/public/gfssolomos/GFSSolomos-Regular.afm + RELOC/fonts/enc/dvips/gfssolomos/gpsolomos.enc + RELOC/fonts/map/dvips/gfssolomos/gfssolomos.map + RELOC/fonts/opentype/public/gfssolomos/GFSSolomos.otf + RELOC/fonts/tfm/public/gfssolomos/gsolomos8a.tfm + RELOC/fonts/tfm/public/gfssolomos/gsolomos8r.tfm + RELOC/fonts/type1/public/gfssolomos/GFSSolomos-Regular.pfb + RELOC/fonts/vf/public/gfssolomos/gsolomos8a.vf + RELOC/tex/latex/gfssolomos/gfssolomos.sty + RELOC/tex/latex/gfssolomos/lgrsolomos.fd +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /fonts/greek/gfs/gfssolomos +catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek +catalogue-version 1.0 + +name ghab +category Package +revision 29803 +shortdesc Typeset ghab boxes in LaTeX +relocated 1 +longdesc The package defines a command \darghab that will typeset its +longdesc argument in a box with a decorated frame. The width of the box +longdesc may be set using an optional argument. +containersize 2184 +containerchecksum 7e919cbb0c84fe337dd05c749a3288990e750ff0aeaf119736108463a1684a18a66be94811a31156f951c871b2f073627914629756b06e747f3220d2ce08950f +doccontainersize 27156 +doccontainerchecksum 2cb7dbf5b43130b122618c50c18e513dc0ee0ce267cdfa6e710451d1fa7fce8965617d74d48748241321948ae8c5eb9cfa4945df146ed8e5d476d0fc5caaf204 +docfiles size=9 + RELOC/doc/latex/ghab/README details="Readme" + RELOC/doc/latex/ghab/ghab-doc.pdf details="Package documentation" + RELOC/doc/latex/ghab/ghab-doc.tex +runfiles size=2 + RELOC/fonts/source/public/ghab/ghab.mf + RELOC/tex/latex/ghab/ghab.sty +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-license lppl +catalogue-topics boxing decoration +catalogue-version 0.5 + +name ghsystem +category Package +revision 53822 +shortdesc Globally harmonised system of chemical (etc) naming +relocated 1 +longdesc The package provides the means to typeset all the hazard and +longdesc precautionary statements and pictograms in a straightforward +longdesc way. The statements are taken from EU regulation 1272/2008. +containersize 1833412 +containerchecksum 42f94adda3268ce20f664113211d3c32e7ee005db053f3daecf72d381dd4c4cc2e78610b821cd4b43c4543610bc66170513c4fd9357445977a8a2ffc6bf140f2 +doccontainersize 721592 +doccontainerchecksum d2f1f42177ea820d209e9574def8efc0dcf9fac0c73ce1c9eeaace7bc0b25fc470ff7265ca8a4f42f6482dba61d7d764b2171268c168aa7eb154bb6f9672f52a +docfiles size=200 + RELOC/doc/latex/ghsystem/README details="Readme" + RELOC/doc/latex/ghsystem/ghsystem-manual.cls + RELOC/doc/latex/ghsystem/ghsystem-manual.pdf details="Package documentation" + RELOC/doc/latex/ghsystem/ghsystem-manual.tex +runfiles size=1491 + RELOC/tex/latex/ghsystem/ghsystem.sty + RELOC/tex/latex/ghsystem/language/ghsystem_english.def + RELOC/tex/latex/ghsystem/language/ghsystem_french.def + RELOC/tex/latex/ghsystem/language/ghsystem_german.def + RELOC/tex/latex/ghsystem/language/ghsystem_italian.def + RELOC/tex/latex/ghsystem/language/ghsystem_langtemplate.def + RELOC/tex/latex/ghsystem/language/ghsystem_spanish.def + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_health.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_health.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_health.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_health.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_health.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.tex + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.eps + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.jpg + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.pdf + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.png + RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.tex +catalogue-contact-repository https://github.com/cgnieder/ghsystem/ +catalogue-ctan /macros/latex/contrib/ghsystem +catalogue-license lppl1.3 +catalogue-topics chemistry expl3 +catalogue-version 4.8c + +name gillcm +category Package +revision 19878 +shortdesc Alternative unslanted italic Computer Modern fonts +relocated 1 +longdesc This is a demonstration of the use of virtual fonts for unusual +longdesc effects: the package implements an old idea of Eric Gill. The +longdesc package was written for the author's talk at TUG 2010. +containersize 13792 +containerchecksum 37c8141eac6b1636292479299f7df6b3dc128addf8f7ba680cef2c75d2f7ab04686134b243a86168c54052d4dcbc33f13c13a6629d7c98d3908e4cce5fb53f06 +doccontainersize 196160 +doccontainerchecksum 55e02d36c12bd12932c2d220f892852dd1c8c947cdea09d058ad38e5e513dfb684e75a8ecf07f5711200f942ea7732519c739866458c330ee271bf45af32ed45 +docfiles size=68 + RELOC/doc/latex/gillcm/README details="Readme" + RELOC/doc/latex/gillcm/gillcm.bib + RELOC/doc/latex/gillcm/gillcm.dtx + RELOC/doc/latex/gillcm/gillcm.ins + RELOC/doc/latex/gillcm/gillcm.pdf details="Package documentation" + RELOC/doc/latex/gillcm/sample.pdf details="Sample of the fonts" + RELOC/doc/latex/gillcm/sample.tex +runfiles size=39 + RELOC/fonts/map/dvips/gillcm/cmg.map + RELOC/fonts/tfm/public/gillcm/cmgb8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi8t.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu8t.tfm + RELOC/fonts/tfm/public/gillcm/cmgm8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi8t.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu8t.tfm + RELOC/fonts/vf/public/gillcm/cmgbi7t.vf + RELOC/fonts/vf/public/gillcm/cmgbi8c.vf + RELOC/fonts/vf/public/gillcm/cmgbi8t.vf + RELOC/fonts/vf/public/gillcm/cmgbiu7t.vf + RELOC/fonts/vf/public/gillcm/cmgbiu8c.vf + RELOC/fonts/vf/public/gillcm/cmgbiu8t.vf + RELOC/fonts/vf/public/gillcm/cmgmi7t.vf + RELOC/fonts/vf/public/gillcm/cmgmi8c.vf + RELOC/fonts/vf/public/gillcm/cmgmi8t.vf + RELOC/fonts/vf/public/gillcm/cmgmiu7t.vf + RELOC/fonts/vf/public/gillcm/cmgmiu8c.vf + RELOC/fonts/vf/public/gillcm/cmgmiu8t.vf + RELOC/tex/latex/gillcm/gillcm.sty + RELOC/tex/latex/gillcm/ot1cmg.fd + RELOC/tex/latex/gillcm/t1cmg.fd + RELOC/tex/latex/gillcm/ts1cmg.fd +catalogue-ctan /fonts/gillcm +catalogue-license bsd +catalogue-topics font-virtual +catalogue-version 1.1 + +name gillius +category Package +revision 32068 +shortdesc Gillius fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Gillius and Gillius No. 2 families of sans +longdesc serif fonts and condensed versions of them, designed by Hirwen +longdesc Harendal. According to the designer, the fonts were inspired by +longdesc Gill Sans. +execute addMap gillius.map +containersize 941896 +containerchecksum 9620e63fa3a9a981bdb20cbd6d8002179c722e844df0a18566593acef864f134a894a7e1920fbc4494467b1301af0bbf9ee80fb10bcc192762e5b2505fa8becd +doccontainersize 216008 +doccontainerchecksum df8fdeb2055b4d3383eb6ebab3dc4fb92774a96d7b31e7bdd7a238e215619710a8c0ec3fe9593213535933fd76c38947ed295df1a628aee7a7d7b21078f5ffb4 +docfiles size=66 + RELOC/doc/fonts/gillius/COPYING + RELOC/doc/fonts/gillius/Gillius-cat.pdf + RELOC/doc/fonts/gillius/README details="Readme" + RELOC/doc/fonts/gillius/gillius-samples.pdf details="Gillius font samples" + RELOC/doc/fonts/gillius/gillius-samples.tex + RELOC/doc/fonts/gillius/gillius2-samples.pdf details="Gillius font samples" + RELOC/doc/fonts/gillius/gillius2-samples.tex +runfiles size=628 + RELOC/fonts/enc/dvips/gillius/gls_4bsedw.enc + RELOC/fonts/enc/dvips/gillius/gls_a6mi7n.enc + RELOC/fonts/enc/dvips/gillius/gls_az7pev.enc + RELOC/fonts/enc/dvips/gillius/gls_bg5e7z.enc + RELOC/fonts/enc/dvips/gillius/gls_efuo7w.enc + RELOC/fonts/enc/dvips/gillius/gls_lf6eoq.enc + RELOC/fonts/enc/dvips/gillius/gls_pqq4vh.enc + RELOC/fonts/enc/dvips/gillius/gls_shb4ap.enc + RELOC/fonts/map/dvips/gillius/gillius.map + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-Regular.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-Regular.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-Regular.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Regular.otf + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1.tfm + RELOC/fonts/type1/arkandis/gillius/GilliusADF-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-RegularLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-RegularLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-RegularLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-RegularLCDFJ.pfb + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1.vf + RELOC/tex/latex/gillius/LY1GilliusADF-LF.fd + RELOC/tex/latex/gillius/LY1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/LY1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/LY1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADF-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/T1GilliusADF-LF.fd + RELOC/tex/latex/gillius/T1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/T1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/T1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADF-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/gillius.sty + RELOC/tex/latex/gillius/gillius2.sty +catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html +catalogue-ctan /fonts/gillius +catalogue-license gpl2 +catalogue-topics font font-sans font-type1 font-otf + +name gincltex +category Package +revision 56291 +shortdesc Include TeX files as graphics (.tex support for \includegraphics) +relocated 1 +longdesc The package builds on the standard LaTeX packages graphics +longdesc and/or graphicx and allows external LaTeX source files to be +longdesc included, in the same way as graphic files, by +longdesc \includegraphics. In effect, then package adds support for the +longdesc .tex extension. Some of the lower level operations like +longdesc clipping and trimming are implemented using the adjustbox +longdesc package which includes native pdfLaTeX support and uses the pgf +longdesc package for other output formats. +containersize 1908 +containerchecksum 465fa04e22924d68b3e92dbb0c8dc5f8f159ae88881127055d94e21a46ad8b8e65b08ee4cc872919188db8255c8ea095c32c5539997007873fcff16503029c16 +doccontainersize 168440 +doccontainerchecksum e44368814c57ae40fff7976c70cb160e43e608051ab2d5c46363cd82ea08c3c12a33fb6b2ddcf7f74816c5ca60284c6880c9d7340aa8a8afea77ef4d9cee689e +docfiles size=43 + RELOC/doc/latex/gincltex/README details="Readme" + RELOC/doc/latex/gincltex/gincltex.pdf details="Package documentation" +srccontainersize 5132 +srccontainerchecksum 9c9eda687dfd61585ddfa1a8680353cd863a1138c3fe0f1cd86f99fb34fc3c5b2ecb8a3e3278e6799ab0a5447e1d59a925d31bea5fa34913c1abd04af18823c8 +srcfiles size=5 + RELOC/source/latex/gincltex/gincltex.dtx + RELOC/source/latex/gincltex/gincltex.ins +runfiles size=1 + RELOC/tex/latex/gincltex/gincltex.sty +catalogue-contact-bugs https://sourceforge.net/p/gincltex/tickets/ +catalogue-contact-home https://sourceforge.net/p/gincltex/ +catalogue-contact-repository https://sourceforge.net/p/gincltex/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/gincltex +catalogue-license lppl1.3 +catalogue-topics graphics listing +catalogue-version 0.3 + +name gindex +category Package +revision 52311 +shortdesc Formatting indexes +relocated 1 +longdesc This package provides a way to generate the format of index +longdesc entries from within LaTeX. +containersize 2188 +containerchecksum b65317c570c923c7b6b84c2923122d844f895657267b694b46fed2d505348833a57700e4da93cde3d5a81e7589a456eea179a455dacb7c9324e0f65d9c718c9b +doccontainersize 33788 +doccontainerchecksum 2a3ed388473c669874b0474b9b1f45c60e2efd69e8c589a9f9086cecaeb5f1e3192fbb949c3d0b485422c7f6b49075d3db4cb8ba03bbdde0f5f77089331f770c +docfiles size=11 + RELOC/doc/latex/gindex/README.md details="Readme" + RELOC/doc/latex/gindex/gindex.pdf details="Package documentation" + RELOC/doc/latex/gindex/gindex.tex +runfiles size=3 + RELOC/makeindex/gindex/gindex.ist + RELOC/makeindex/gindex/gindexh.ist + RELOC/tex/latex/gindex/gindex.sty +catalogue-contact-home http://www.texnia.com +catalogue-contact-repository https://github.com/jbezos/gindex +catalogue-ctan /macros/latex/contrib/gindex +catalogue-license mit +catalogue-topics index index-proc +catalogue-version 0.2 + +name ginpenc +category Package +revision 24980 +shortdesc Modification of inputenc for German +relocated 1 +longdesc If the inputenc is used and German umlauts are input directly, +longdesc they are converted to the LICR representation \"a (etc.). This +longdesc breaks the sort algorithm of makeindex, for instance. Ginpenc +longdesc converts umlauts and the sharp-s to the short forms defined by +longdesc babel, e.g., "a instead, if the text is typeset in German. +containersize 2212 +containerchecksum 20ea4e42fa07c21d8f2ae5d4419e6382141e6babca0b89b508744ea22d6310052f2c46e6ba0ad32b06f5623daee07a16eeaaa98378c9ad04dacb78634b9a583d +doccontainersize 200176 +doccontainerchecksum 4e343ab469e2445f6a2fd5297ae38d1cb42d4db1a3c438885815a2e4c5d367bfae3226a628e11152826fc5e4fd28a9c4bc5c393acea550c5ab33cd854d4f3e8e +docfiles size=54 + RELOC/doc/latex/ginpenc/ChangeLog + RELOC/doc/latex/ginpenc/Makefile + RELOC/doc/latex/ginpenc/README details="Readme" + RELOC/doc/latex/ginpenc/ginpenc.pdf details="Package documentation" + RELOC/doc/latex/ginpenc/news-message.txt + RELOC/doc/latex/ginpenc/testginpenc.tex +srccontainersize 3844 +srccontainerchecksum b28077cb4b369567952e77198cb77f4edad02f0949d4f46836ae59d75a2f113f64446fba83a88e6155e9356797577fea72c79244808d575359eb7ca10d029940 +srcfiles size=6 + RELOC/source/latex/ginpenc/ginpenc.dtx + RELOC/source/latex/ginpenc/ginpenc.ins +runfiles size=18 + RELOC/tex/latex/ginpenc/ansinew.gie + RELOC/tex/latex/ginpenc/applemac.gie + RELOC/tex/latex/ginpenc/ascii.gie + RELOC/tex/latex/ginpenc/cp1250.gie + RELOC/tex/latex/ginpenc/cp1252.gie + RELOC/tex/latex/ginpenc/cp437.gie + RELOC/tex/latex/ginpenc/cp437de.gie + RELOC/tex/latex/ginpenc/cp850.gie + RELOC/tex/latex/ginpenc/cp852.gie + RELOC/tex/latex/ginpenc/cp865.gie + RELOC/tex/latex/ginpenc/decmulti.gie + RELOC/tex/latex/ginpenc/ginpenc.sty + RELOC/tex/latex/ginpenc/latin1.gie + RELOC/tex/latex/ginpenc/latin2.gie + RELOC/tex/latex/ginpenc/latin3.gie + RELOC/tex/latex/ginpenc/latin5.gie + RELOC/tex/latex/ginpenc/latin9.gie + RELOC/tex/latex/ginpenc/next.gie +catalogue-ctan /macros/latex/contrib/ginpenc +catalogue-license lppl +catalogue-topics inputenc +catalogue-version 1.0 + +name git-latexdiff +category Package +revision 54732 +shortdesc Call latexdiff on two Git revisions of a file +longdesc git-latexdiff is a tool to graphically visualize differences +longdesc between different versions of a LaTeX file. Technically, it is +longdesc a wrapper around git and latexdiff. +depend git-latexdiff.ARCH +containersize 8100 +containerchecksum 74077b3dd1a91a734af6d668b309f804dc58a282393d88d8d5d74a5e6fc73c197e49b462369f829cc7151e20aaf8085c0587428ed61ce7957a1ef173d92c5481 +doccontainersize 18012 +doccontainerchecksum bfda354f808c1f94dfac207d1526409a160b89292e44541930dac34383e3ffec9ce63d04db041ea5ac529e1e01fdc80c4c64cd43e8cdc14aac974094732d6fe8 +docfiles size=9 + texmf-dist/doc/man/man1/git-latexdiff.1 + texmf-dist/doc/man/man1/git-latexdiff.man1.pdf + texmf-dist/doc/support/git-latexdiff/README.md details="Readme" +runfiles size=7 + texmf-dist/scripts/git-latexdiff/git-latexdiff +catalogue-contact-home https://gitlab.com/git-latexdiff/git-latexdiff +catalogue-ctan /support/git-latexdiff +catalogue-license bsd2 +catalogue-topics version-control doc-mgmt +catalogue-version 1.6.0 + +name git-latexdiff.aarch64-linux +category Package +revision 54732 +shortdesc aarch64-linux files of git-latexdiff +containersize 340 +containerchecksum 4604868fffecb88c62f8c267bf71f2d9725cfce5a6ac40d41abbce970bfa8bc85c21fd4a8a76304ac0de229b28a07cb48c0d07417051982d664b65a131287d0e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/git-latexdiff + +name git-latexdiff.amd64-freebsd +category Package +revision 54732 +shortdesc amd64-freebsd files of git-latexdiff +containersize 340 +containerchecksum 0a7668a23afecaa083899547fa0dc1359961b758e3b509768c1f5ad94f7e5ef472883c703079b8ad27894a9bc7888847af93cd97696bea7174da06cbd40fec10 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/git-latexdiff + +name git-latexdiff.amd64-netbsd +category Package +revision 54732 +shortdesc amd64-netbsd files of git-latexdiff +containersize 340 +containerchecksum 0e0f055b4c73966af5a63e1d6d8f49cfe1fd62aac462270c9658f2a612b28ef7c92950bae6910764af1aa4eb08b9febb22df1e26367106ca1e6c9a083faee128 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/git-latexdiff + +name git-latexdiff.armhf-linux +category Package +revision 54732 +shortdesc armhf-linux files of git-latexdiff +containersize 340 +containerchecksum 9373010c324a38474d5a6fb329f66a18f2a128f13a39925dd2bd24a787eb390d6c4ea4ae973d32c6e71ba0821431c757fa8eee3510163a543ca78c1b8dc2e244 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/git-latexdiff + +name git-latexdiff.i386-cygwin +category Package +revision 54732 +shortdesc i386-cygwin files of git-latexdiff +containersize 340 +containerchecksum 5404f28698b227a6df2cb2e506f84b6d4aef522ff31cc41f8ef24f59395c430dbe8c015c277b991bce4a5f8caa5d4a5bc7cb117d20391c13d791fa3fc98f7c88 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/git-latexdiff + +name git-latexdiff.i386-freebsd +category Package +revision 54732 +shortdesc i386-freebsd files of git-latexdiff +containersize 340 +containerchecksum a0ffbcf9592989a12f77bfd21b7d39c9fa32738f1bc9afc464aa1397cb06a6626b927805dd96ab242ba473092769ad8ccc2d85828ea6d7cd6413b1fd770eee1e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/git-latexdiff + +name git-latexdiff.i386-linux +category Package +revision 54732 +shortdesc i386-linux files of git-latexdiff +containersize 340 +containerchecksum f185e88d0c3cd70c949a97b0c859e1a05592d6a0a7637b86462228fd72859498af545ea534cfca479ce6c564a7376a7eedf8a4417438d59348f981ffffdf4b9a +binfiles arch=i386-linux size=1 + bin/i386-linux/git-latexdiff + +name git-latexdiff.i386-netbsd +category Package +revision 54732 +shortdesc i386-netbsd files of git-latexdiff +containersize 340 +containerchecksum c92f6c8f08cd1d5b376d3c83921897a3c893160e4e0e613ef563647a5c54d75aba79277c7ef32e7b4c56784776868c3a07b8af0343245801b599fb2490de3294 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/git-latexdiff + +name git-latexdiff.i386-solaris +category Package +revision 54732 +shortdesc i386-solaris files of git-latexdiff +containersize 340 +containerchecksum 048d65597e8c3e715f86afe17538b39653364502015a4ac50b0cba34f3602ae163f637baf7a1eee77aa3fc4f425761fb20b016e02dcb01ff292776e95b90b0be +binfiles arch=i386-solaris size=1 + bin/i386-solaris/git-latexdiff + +name git-latexdiff.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of git-latexdiff +containersize 344 +containerchecksum 74eac9d22e440e3c2f2ea2e3f9e3437c1e672049b821c9449b5cdd8e64734befbcf777adfd84b726f8ce05452e12030d8dcb8d8b0665f79a025673c64643dc09 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/git-latexdiff + +name git-latexdiff.x86_64-cygwin +category Package +revision 54732 +shortdesc x86_64-cygwin files of git-latexdiff +containersize 344 +containerchecksum a6817605f3055dbaed52884ef28d43245f56cf0500556daa59344625044273ebe937744a4495a85d021da58c84f7cbd06c9e096ff517a28e44e4c7be2104f38a +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/git-latexdiff + +name git-latexdiff.x86_64-darwinlegacy +category Package +revision 54732 +shortdesc x86_64-darwinlegacy files of git-latexdiff +containersize 348 +containerchecksum 05a1844cab08b6d8ac80ea56181d421b8d4804a482171ccb0c76b174d27ae02db4cfc578b9ef56476715213280750d4293941ff77aa40ffaaf7e05aa4ade4855 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/git-latexdiff + +name git-latexdiff.x86_64-linux +category Package +revision 54732 +shortdesc x86_64-linux files of git-latexdiff +containersize 340 +containerchecksum b861898d67b0f0da63f3e4ab13cf84f83d39ef74d108968a1f99faf2882ad11fe7a116b3c7a2a35085b3f6ad9affaf19b603ad03a490140495a2dfaf09a14d97 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/git-latexdiff + +name git-latexdiff.x86_64-linuxmusl +category Package +revision 54732 +shortdesc x86_64-linuxmusl files of git-latexdiff +containersize 344 +containerchecksum 189922c4c874f37fb7630a59cd3886ebc4d886c9286f238edf5c1bbe297847a543f42efca3f13374be86c925cfe97d4b87aa9a81165653f15e8de99cacbb92d8 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/git-latexdiff + +name git-latexdiff.x86_64-solaris +category Package +revision 54732 +shortdesc x86_64-solaris files of git-latexdiff +containersize 340 +containerchecksum 37e5289666bc6a03dd1aa3e67b7db6e17ff17757e0ee12fb0bd058f837c6cae072150d72a5ec07527b9859c7cea6914c38466cf30c26ff7b56c1388eb683ef2d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/git-latexdiff + +name gitfile-info +category Package +revision 51928 +shortdesc Get git metadata for a specific file +relocated 1 +longdesc If you are using git to control versions of LaTeX-files, you +longdesc may want to show yourself or other users or devs the current +longdesc version of the file, information about the author and last +longdesc edited date. All packages for git known make that kind of +longdesc information available for the whole repository. But sometimes +longdesc you have a lot of files within the same repository in different +longdesc versions, from different authors etc. Perhaps you also split up +longdesc a big project in small files and want to show within the +longdesc document who had edited what. This package gives you the +longdesc opportunity to do so. +containersize 2684 +containerchecksum 7d3577b55f0154dd9c0a1aff3d46741631fc561b4c730a4f55a84dff361e6c27f327979638946d89ceb35370bb4051b1471481e6bd761fbed66757bc613abb2c +doccontainersize 569544 +doccontainerchecksum ac2083dea1ae4373ee2482f41f9c66ab93a2b66699fa01449c712c219ec0c53635230b062ba58b4107eaf7fb54fb7eed76c5b9346ffc60f6f35b18a72ed0a08e +docfiles size=145 + RELOC/doc/support/gitfile-info/README details="Readme" + RELOC/doc/support/gitfile-info/gfi-run.py + RELOC/doc/support/gitfile-info/gitfile-info.gfi + RELOC/doc/support/gitfile-info/gitfile-info.pdf details="Package documentation" + RELOC/doc/support/gitfile-info/post-commit.py + RELOC/doc/support/gitfile-info/post-merge.py +srccontainersize 11336 +srccontainerchecksum 7b15a31e0ad37c75fc1e64079edb4ffe93d9e9a71fba7db13bb9ca7b68fa8dda0244fc0da473ecff8456459bb3f6f52e3edec2ac8513433d03ab107715ba5258 +srcfiles size=11 + RELOC/source/support/gitfile-info/gitfile-info.dtx + RELOC/source/support/gitfile-info/gitfile-info.ins +runfiles size=2 + RELOC/tex/latex/gitfile-info/gitfile-info.sty +catalogue-also gitinfo2 +catalogue-ctan /support/gitfile-info +catalogue-license lppl1.3 +catalogue-topics version-control +catalogue-version 0.5 + +name gitinfo +category Package +revision 34049 +shortdesc Access metadata from the git distributed version control system +relocated 1 +longdesc The package makes it possible to incorporate git version +longdesc control metadata into documents. For memoir users, the package +longdesc provides the means to tailor page headers and footers to use +longdesc the metadata. Note this version is now deprecated, but is kept +longdesc on the archive, pro tem, for continuity for existing users. All +longdesc new repositories should use gitinfo2. +containersize 1952 +containerchecksum 099bcb4970827cd3309f88278d8ed993856d5ebdabb22c3a3f558787bc6cae46378f7a92b88c5cbaeef496f40a8adf1e0740e685d667ba2376b5852a12af9e5b +doccontainersize 83948 +doccontainerchecksum c5a9c948ad8cf8f2bc3cc134d60165ca4fc79117a6597a5981b39e26e25f4334f479f2bc1a0e22c52fc48794224115c0c170612c8088a414544d9f51b18421f9 +docfiles size=27 + RELOC/doc/latex/gitinfo/README details="Readme" + RELOC/doc/latex/gitinfo/gitHeadInfo.gin + RELOC/doc/latex/gitinfo/gitinfo.pdf details="Package documentation" + RELOC/doc/latex/gitinfo/gitinfo.tex + RELOC/doc/latex/gitinfo/post-xxx-sample.txt +runfiles size=2 + RELOC/tex/latex/gitinfo/gitinfo.sty + RELOC/tex/latex/gitinfo/gitsetinfo.sty +catalogue-ctan /macros/latex/contrib/gitinfo +catalogue-license lppl1.3 +catalogue-topics version-control doc-mgmt +catalogue-version 1.0 + +name gitinfo2 +category Package +revision 38913 +shortdesc Access metadata from the git distributed version control system +relocated 1 +longdesc The package makes it possible to incorporate git version +longdesc control metadata into documents. For memoir users, the package +longdesc provides the means to tailor page headers and footers to use +longdesc the metadata. gitinfo2 is a new release of gitinfo. The changes +longdesc to version 2 are not backward-compatible, and the package name +longdesc has been changed to avoid impact on existing users' +longdesc repositories. All new repositories should use this version of +longdesc the package. +containersize 3592 +containerchecksum 7dd68c7b1d5ea49dcaae8ba1a1582676617bcfc6f5c6ba34eb1c62e60ea5b8ac3a50841a93394b640e8a79c3cfe447858fdd1630e4095683958f8d36439a84ca +doccontainersize 137796 +doccontainerchecksum 872b7fa8e0c97e4f6e0e1989b7c45507773b4f96cd56f7aa7064376b520d8f2beb4acfe71a21e295a8a457b86fcf7521809fa59ad02875466cf426fa09bd8aa9 +docfiles size=45 + RELOC/doc/latex/gitinfo2/README details="Readme" + RELOC/doc/latex/gitinfo2/gitHeadLocal.gin + RELOC/doc/latex/gitinfo2/gitinfo2.pdf details="Package documentation" + RELOC/doc/latex/gitinfo2/gitinfo2.tex + RELOC/doc/latex/gitinfo2/gitinfotest.tex + RELOC/doc/latex/gitinfo2/post-xxx-sample.txt +runfiles size=4 + RELOC/tex/latex/gitinfo2/gitexinfo.sty + RELOC/tex/latex/gitinfo2/gitinfo2.sty +catalogue-ctan /macros/latex/contrib/gitinfo2 +catalogue-license lppl1.3 +catalogue-topics version-control doc-mgmt +catalogue-version 2.0.7 + +name gitlog +category Package +revision 38932 +shortdesc Typesetting git changelogs +relocated 1 +longdesc This package allows git change log history to be incorporated +longdesc into LaTeX documents; the log data is obtained from the git +longdesc distributed version control system. The current release +longdesc (0.0.beta) is a proof-of-concept release to allow users an +longdesc early evaluation and to attract ideas and support. Requests and +longdesc suggestions, as well as code contributions are welcome. +containersize 2372 +containerchecksum 2fc9830dd1c43cf0c32fd743c9fa001287f5753dea38d8491af43803a1d98a0e09cd05641484fd2f7c47e68c8c6919c2eb9fc298ebd761166eb5b77c54d7f00d +doccontainersize 99728 +doccontainerchecksum c1bc22cdf9b23baec98ddba49784a09c97e9e5f8c1a471dc39b3d58d67bb3ad2559f25766debeaf613b3c4e8d8bb4b22244de07d09e957ff09a94c0254fd3e64 +docfiles size=31 + RELOC/doc/latex/gitlog/README.md details="Readme" + RELOC/doc/latex/gitlog/gitHeadLocal.gin + RELOC/doc/latex/gitlog/gitlog.pdf details="Package documentation" + RELOC/doc/latex/gitlog/gitlog.sample.bib + RELOC/doc/latex/gitlog/gitlog.tex +runfiles size=3 + RELOC/tex/latex/gitlog/gitlog.bbx + RELOC/tex/latex/gitlog/gitlog.dbx + RELOC/tex/latex/gitlog/gitlog.sty +catalogue-contact-repository https://github.com/Hightor/gitlog/tree/develop +catalogue-ctan /macros/latex/contrib/gitlog +catalogue-license lppl1.3 +catalogue-topics version-control doc-mgmt +catalogue-version 0.0.beta + +name gitver +category Package +revision 56810 +shortdesc Get the current git hash of a project and typeset it in the document +relocated 1 +longdesc This package will get a description of the current git version +longdesc of the document and store it in a command \gitVer. If memoir or +longdesc fancyhdr are in use, it will also add this to the document +longdesc footers unless the option "noheader" is passed. The package +longdesc also defines a command \versionBox which outputs a box +longdesc containing the version and date of compilation. The package +longdesc requires hyperref, catchfile, pdftexcmds, and datetime. +containersize 2272 +containerchecksum de9440bf5a42e65d9bcea03a0ae02a77499540ed5a3f35f48f55cbf8973685c08413e8770e5aef430dedeb24ac881e15bcf72f06c689909a3988b6c3a2ce6054 +doccontainersize 126392 +doccontainerchecksum 0661e3b6e92fc80e638966e7df452693cf3a3062f9b75016d636eed986dfa265cc8b240ec8d004a604c08e2fd8fe0d75eeada9c4ce554f1dc443e5ad4a0de296 +docfiles size=40 + RELOC/doc/latex/gitver/COPYING + RELOC/doc/latex/gitver/ChangeLog + RELOC/doc/latex/gitver/README.md details="Readme" + RELOC/doc/latex/gitver/gitver.pdf details="Package documentation" + RELOC/doc/latex/gitver/gitver.tex +runfiles size=2 + RELOC/tex/latex/gitver/gitver.sty +catalogue-contact-bugs https://github.com/charlesbaynham/gitver/issues +catalogue-contact-repository https://github.com/charlesbaynham/gitver +catalogue-ctan /macros/latex/contrib/gitver +catalogue-license lppl1.3c +catalogue-topics version-control doc-mgmt +catalogue-version 1.3 + +name globalvals +category Package +revision 49962 +shortdesc Declare global variables +relocated 1 +longdesc This package allows the user to declare a variable which can +longdesc then be used anywhere else in a document, including before it +longdesc was declared. +containersize 1384 +containerchecksum 815a1aff9e889313854962e44c1c09a41713f4efae915a1d1a65a3f0777a4c36e9987c588c0d6f2f1ea91cfed6c28ffbe045a842ad71fd6babc91ae1bb16aa5f +doccontainersize 156772 +doccontainerchecksum 36a8b35ad90d9fb797a03b48f8cf818c9514ffe6e7c24be157e04455559d3004ac6011e2dbd16a4c478105b39ec0d2597f74e484a1913bcb180a7209b9191fb3 +docfiles size=47 + RELOC/doc/latex/globalvals/COPYING + RELOC/doc/latex/globalvals/ChangeLog + RELOC/doc/latex/globalvals/README.md details="Readme" + RELOC/doc/latex/globalvals/globalvals.pdf details="Package documentation" + RELOC/doc/latex/globalvals/globalvals.tex +runfiles size=1 + RELOC/tex/latex/globalvals/globalvals.sty +catalogue-contact-bugs https://github.com/charlesbaynham/globalvals/issues +catalogue-contact-home https://github.com/charlesbaynham/globalvals +catalogue-ctan /macros/latex/contrib/globalvals +catalogue-license lppl1.3c +catalogue-topics misc-support +catalogue-version 1.1 + +name glosmathtools +category Package +revision 55920 +shortdesc Mathematical nomenclature tools based on the glossaries package +relocated 1 +longdesc This package can be used to generate a mathematical +longdesc nomenclature (also called "list of symbols" or "notation"). It +longdesc is based on the glossaries package. Its main features are: +longdesc symbol categories (e.g.: latin, greek) automatic but +longdesc customizable symbol sorting easy subscript management easy +longdesc accentuation management abbreviation support (with first use +longdesc definition) bilingual nomenclatures (for bilingual documents) +longdesc bilingual abbreviations The documentation is based on the +longdesc ulthese class. The package itself depends on glossaries, +longdesc amsmath, amsfonts, and etoolbox. +containersize 3792 +containerchecksum 38d5eb1cc7337e81a1d824fcd3d6820928e06b421e1bd1141bc4cd859a32aaa1a10062e6a7a2512687245996c8848b42720085271c1cf6a24957bbe96ff824e9 +doccontainersize 531732 +doccontainerchecksum 511c901bf123984727ccf8bc4e2449738a66fe866418f23b923391d30f6ad46ac260b5684b73b89616c07cff9bec0475e3553a70ba608c58873751d9a6dcbed2 +docfiles size=180 + RELOC/doc/latex/glosmathtools/README.md details="Readme" + RELOC/doc/latex/glosmathtools/sample_glosmathtools_en.pdf details="Package documentation and sample (English)" + RELOC/doc/latex/glosmathtools/sample_glosmathtools_en.tex + RELOC/doc/latex/glosmathtools/sample_glosmathtools_fr.pdf details="Package documentation and sample (French)" language="fr" + RELOC/doc/latex/glosmathtools/sample_glosmathtools_fr.tex + RELOC/doc/latex/glosmathtools/sample_glosmathtools_glos.tex +runfiles size=5 + RELOC/tex/latex/glosmathtools/glosmathtools.sty +catalogue-contact-repository https://github.com/franckgaga/glosmathtools +catalogue-ctan /macros/latex/contrib/glosmathtools +catalogue-license lppl1.3c +catalogue-topics glossary maths etex +catalogue-version 1.0.0 + +name gloss +category Package +revision 15878 +shortdesc Create glossaries using BibTeX +relocated 1 +longdesc A glossary package using BibTeX with \cite replaced by \gloss. +containersize 5588 +containerchecksum 399bc1b809c01fd60934e28834dd7d6f263aded75bbede67507a5dc7bdbcdef725248b9a10d4ebf3cfaa981be33fd35a4ade78eb20b2b23cbf851376ad5e58f8 +doccontainersize 102720 +doccontainerchecksum 871760a86ffb9d50cd480e2cd234a9873de48ce620f57a6538b36b0c1fd5e7f11342fa435e147ee1fb47ed08b8e855eba8168c8b755ed67ed7fffcb8f0e0ac86 +docfiles size=38 + RELOC/doc/latex/gloss/README details="Package Readme" + RELOC/doc/latex/gloss/gloss.pdf details="Package documentation" + RELOC/doc/latex/gloss/gloss.tex + RELOC/doc/latex/gloss/sample.tex +runfiles size=9 + RELOC/bibtex/bib/gloss/glsbase.bib + RELOC/bibtex/bib/gloss/sample.bib + RELOC/bibtex/bst/gloss/glsplain.bst + RELOC/bibtex/bst/gloss/glsshort.bst + RELOC/tex/latex/gloss/gloss.sty +catalogue-also glossary glosstex nomencl +catalogue-ctan /macros/latex/contrib/gloss +catalogue-license lppl +catalogue-topics glossary +catalogue-version 1.5.2 + +name gloss-occitan +category Package +revision 52593 +shortdesc Polyglossia support for Occitan +relocated 1 +longdesc Occitan language description file for polyglossia +containersize 408 +containerchecksum ee68a2f0c41dac79d00a4103804ad735b5bdc78bad660d5933e61e88290a2dea17a695ea45129a672cdb301e1c89e4fc319173df1fbfd87f944abbe46f7f1dd0 +doccontainersize 69740 +doccontainerchecksum 1325b4c8c0ff8c1e53d27b5696da419f99852bd6c272176bab4e03f91bb6a715de51d24317b9cec1af50ee0ae2b34c03c51afe9cedb8903a1e8f74bbee3cc06f +docfiles size=19 + RELOC/doc/latex/gloss-occitan/README details="Readme" + RELOC/doc/latex/gloss-occitan/gloss-occitan.pdf details="Package documentation" +srccontainersize 6340 +srccontainerchecksum 043c132580baf8e66ac76a01312706996902c448cbd81f596db732cbb90d66be64d8a1f673275edaf11031d1f878587270663bba7db32da37360ed024e210280 +srcfiles size=5 + RELOC/source/latex/gloss-occitan/gloss-occitan.dtx +catalogue-ctan /macros/latex/contrib/gloss-occitan +catalogue-license lppl1.3 +catalogue-topics multilingual-addon occitan +catalogue-version 0.1 + +name glossaries +category Package +revision 54402 +shortdesc Create glossaries and lists of acronyms +longdesc The glossaries package supports acronyms and multiple +longdesc glossaries, and has provision for operation in several +longdesc languages (using the facilities of either babel or +longdesc polyglossia). New entries are defined to have a name and +longdesc description (and optionally an associated symbol). Support for +longdesc multiple languages is offered, and plural forms of terms may be +longdesc specified. An additional package, glossaries-accsupp, can make +longdesc use of the accsupp package mechanisms for accessibility support +longdesc for PDF files containing glossaries. The user may define new +longdesc glossary styles, and preambles and postambles can be specified. +longdesc There is provision for loading a database of terms, but only +longdesc terms used in the text will be added to the relevant glossary. +longdesc The package uses an indexing program to provide the actual +longdesc glossary; either makeindex or xindy may serve this purpose, and +longdesc a Perl script is provided to serve as interface. This package +longdesc requires the mfirstuc package. The package supersedes the +longdesc author's glossary package (which is now obsolete). +depend glossaries.ARCH +containersize 77968 +containerchecksum e900f8bc7b9f04088a3b2cbd3ff409603babaf232f09d6c75e85e3050ab0bd98b90c6e04e01aebb183e9fcbc4865c34568a7392d8b46ab318b506d10f1972d99 +doccontainersize 5992740 +doccontainerchecksum 7c364a8a843d32af396b76a14e3abb97a82638a41538653aac8046273b9d669bc1ada0744435f918eb0c169852fa01025e4f4257783b0101a60231de708fe82b +docfiles size=2528 + texmf-dist/doc/latex/glossaries/CHANGES + texmf-dist/doc/latex/glossaries/INSTALL + texmf-dist/doc/latex/glossaries/README.md details="Readme" + texmf-dist/doc/latex/glossaries/glossaries-code.pdf details="Package code and documentation (PDF)" + texmf-dist/doc/latex/glossaries/glossaries-user.html details="User manual (HTML)" + texmf-dist/doc/latex/glossaries/glossaries-user.pdf details="User manual (PDF)" + texmf-dist/doc/latex/glossaries/glossaries-user.tex + texmf-dist/doc/latex/glossaries/glossariesbegin.html + texmf-dist/doc/latex/glossaries/glossariesbegin.pdf details="Beginners' guide (PDF)" + texmf-dist/doc/latex/glossaries/glossariesbegin.tex + texmf-dist/doc/latex/glossaries/glossary2glossaries.html details="How to upgrade from glossary.sty (HTML)" + texmf-dist/doc/latex/glossaries/glossary2glossaries.pdf details="How to upgrade from glossary.sty (PDF)" + texmf-dist/doc/latex/glossaries/glossary2glossaries.tex + texmf-dist/doc/latex/glossaries/samples/README-samples + texmf-dist/doc/latex/glossaries/samples/database1.tex + texmf-dist/doc/latex/glossaries/samples/database2.tex + texmf-dist/doc/latex/glossaries/samples/glossary-lipsum-examples.pdf + texmf-dist/doc/latex/glossaries/samples/glossary-lipsum-examples.tex + texmf-dist/doc/latex/glossaries/samples/minimalgls.pdf + texmf-dist/doc/latex/glossaries/samples/minimalgls.tex + texmf-dist/doc/latex/glossaries/samples/mwe-acr-desc.pdf + texmf-dist/doc/latex/glossaries/samples/mwe-acr-desc.tex + texmf-dist/doc/latex/glossaries/samples/mwe-acr.pdf + texmf-dist/doc/latex/glossaries/samples/mwe-acr.tex + texmf-dist/doc/latex/glossaries/samples/mwe-gls.pdf + texmf-dist/doc/latex/glossaries/samples/mwe-gls.tex + texmf-dist/doc/latex/glossaries/samples/sample-FnDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sample-FnDesc.tex + texmf-dist/doc/latex/glossaries/samples/sample-chap-hyperfirst.pdf + texmf-dist/doc/latex/glossaries/samples/sample-chap-hyperfirst.tex + texmf-dist/doc/latex/glossaries/samples/sample-crossref.pdf + texmf-dist/doc/latex/glossaries/samples/sample-crossref.tex + texmf-dist/doc/latex/glossaries/samples/sample-custom-acronym.pdf + texmf-dist/doc/latex/glossaries/samples/sample-custom-acronym.tex + texmf-dist/doc/latex/glossaries/samples/sample-dot-abbr.pdf + texmf-dist/doc/latex/glossaries/samples/sample-dot-abbr.tex + texmf-dist/doc/latex/glossaries/samples/sample-dual.pdf + texmf-dist/doc/latex/glossaries/samples/sample-dual.tex + texmf-dist/doc/latex/glossaries/samples/sample-entrycount.pdf + texmf-dist/doc/latex/glossaries/samples/sample-entrycount.tex + texmf-dist/doc/latex/glossaries/samples/sample-entryfmt.pdf + texmf-dist/doc/latex/glossaries/samples/sample-entryfmt.tex + texmf-dist/doc/latex/glossaries/samples/sample-font-abbr.pdf + texmf-dist/doc/latex/glossaries/samples/sample-font-abbr.tex + texmf-dist/doc/latex/glossaries/samples/sample-ignored.pdf + texmf-dist/doc/latex/glossaries/samples/sample-ignored.tex + texmf-dist/doc/latex/glossaries/samples/sample-index.pdf + texmf-dist/doc/latex/glossaries/samples/sample-index.tex + texmf-dist/doc/latex/glossaries/samples/sample-inline.pdf + texmf-dist/doc/latex/glossaries/samples/sample-inline.tex + texmf-dist/doc/latex/glossaries/samples/sample-langdict.pdf + texmf-dist/doc/latex/glossaries/samples/sample-langdict.tex + texmf-dist/doc/latex/glossaries/samples/sample-newkeys.pdf + texmf-dist/doc/latex/glossaries/samples/sample-newkeys.tex + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp-utf8.pdf + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp-utf8.tex + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp.pdf + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp.tex + texmf-dist/doc/latex/glossaries/samples/sample-nomathhyper.pdf + texmf-dist/doc/latex/glossaries/samples/sample-nomathhyper.tex + texmf-dist/doc/latex/glossaries/samples/sample-numberlist.pdf + texmf-dist/doc/latex/glossaries/samples/sample-numberlist.tex + texmf-dist/doc/latex/glossaries/samples/sample-prefix.pdf + texmf-dist/doc/latex/glossaries/samples/sample-prefix.tex + texmf-dist/doc/latex/glossaries/samples/sample-si.pdf + texmf-dist/doc/latex/glossaries/samples/sample-si.tex + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr-desc.pdf + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr-desc.tex + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr.pdf + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr.tex + texmf-dist/doc/latex/glossaries/samples/sample.pdf + texmf-dist/doc/latex/glossaries/samples/sample.tex + texmf-dist/doc/latex/glossaries/samples/sample4col.pdf + texmf-dist/doc/latex/glossaries/samples/sample4col.tex + texmf-dist/doc/latex/glossaries/samples/sampleAcr.pdf + texmf-dist/doc/latex/glossaries/samples/sampleAcr.tex + texmf-dist/doc/latex/glossaries/samples/sampleAcrDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sampleAcrDesc.tex + texmf-dist/doc/latex/glossaries/samples/sampleCustomAcr.pdf + texmf-dist/doc/latex/glossaries/samples/sampleCustomAcr.tex + texmf-dist/doc/latex/glossaries/samples/sampleDB.pdf + texmf-dist/doc/latex/glossaries/samples/sampleDB.tex + texmf-dist/doc/latex/glossaries/samples/sampleDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sampleDesc.tex + texmf-dist/doc/latex/glossaries/samples/sampleEq.pdf + texmf-dist/doc/latex/glossaries/samples/sampleEq.tex + texmf-dist/doc/latex/glossaries/samples/sampleEqPg.pdf + texmf-dist/doc/latex/glossaries/samples/sampleEqPg.tex + texmf-dist/doc/latex/glossaries/samples/sampleFnAcrDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sampleFnAcrDesc.tex + texmf-dist/doc/latex/glossaries/samples/sampleNtn.pdf + texmf-dist/doc/latex/glossaries/samples/sampleNtn.tex + texmf-dist/doc/latex/glossaries/samples/samplePeople.pdf + texmf-dist/doc/latex/glossaries/samples/samplePeople.tex + texmf-dist/doc/latex/glossaries/samples/sampleSec.pdf + texmf-dist/doc/latex/glossaries/samples/sampleSec.tex + texmf-dist/doc/latex/glossaries/samples/sampleSort.pdf + texmf-dist/doc/latex/glossaries/samples/sampleSort.tex + texmf-dist/doc/latex/glossaries/samples/sampleaccsupp.pdf + texmf-dist/doc/latex/glossaries/samples/sampleaccsupp.tex + texmf-dist/doc/latex/glossaries/samples/sampleacronyms.pdf + texmf-dist/doc/latex/glossaries/samples/sampleacronyms.tex + texmf-dist/doc/latex/glossaries/samples/sampletree.pdf + texmf-dist/doc/latex/glossaries/samples/sampletree.tex + texmf-dist/doc/latex/glossaries/samples/sampleutf8.pdf + texmf-dist/doc/latex/glossaries/samples/sampleutf8.tex + texmf-dist/doc/latex/glossaries/samples/samplexdy-mc.xdy + texmf-dist/doc/latex/glossaries/samples/samplexdy-mc207.xdy + texmf-dist/doc/latex/glossaries/samples/samplexdy.pdf + texmf-dist/doc/latex/glossaries/samples/samplexdy.tex + texmf-dist/doc/latex/glossaries/samples/samplexdy2.pdf + texmf-dist/doc/latex/glossaries/samples/samplexdy2.tex + texmf-dist/doc/latex/glossaries/samples/samplexdy3.pdf + texmf-dist/doc/latex/glossaries/samples/samplexdy3.tex + texmf-dist/doc/man/man1/makeglossaries-lite.1 + texmf-dist/doc/man/man1/makeglossaries-lite.man1.pdf + texmf-dist/doc/man/man1/makeglossaries.1 + texmf-dist/doc/man/man1/makeglossaries.man1.pdf +srccontainersize 125884 +srccontainerchecksum 3bc7eebf8a0861b6236cca948f053d90d550292a7ec9b1694325ffee594a166dca180b4153ba86c711ebf5ed5e81be8e52432b3a1229a3b4d477b6722c1e3e56 +srcfiles size=260 + texmf-dist/source/latex/glossaries/glossaries.dtx + texmf-dist/source/latex/glossaries/glossaries.ins + texmf-dist/source/latex/glossaries/makeglossaries-lite.pod +runfiles size=170 + texmf-dist/scripts/glossaries/glossaries.perl + texmf-dist/scripts/glossaries/makeglossaries + texmf-dist/scripts/glossaries/makeglossaries-lite.lua + texmf-dist/tex/latex/glossaries/base/glossaries-babel.sty + texmf-dist/tex/latex/glossaries/base/glossaries-compatible-207.sty + texmf-dist/tex/latex/glossaries/base/glossaries-compatible-307.sty + texmf-dist/tex/latex/glossaries/base/glossaries-polyglossia.sty + texmf-dist/tex/latex/glossaries/base/glossaries-prefix.sty + texmf-dist/tex/latex/glossaries/base/glossaries.sty + texmf-dist/tex/latex/glossaries/expl/glossaries-accsupp.sty + texmf-dist/tex/latex/glossaries/styles/glossary-hypernav.sty + texmf-dist/tex/latex/glossaries/styles/glossary-inline.sty + texmf-dist/tex/latex/glossaries/styles/glossary-list.sty + texmf-dist/tex/latex/glossaries/styles/glossary-long.sty + texmf-dist/tex/latex/glossaries/styles/glossary-longbooktabs.sty + texmf-dist/tex/latex/glossaries/styles/glossary-longragged.sty + texmf-dist/tex/latex/glossaries/styles/glossary-mcols.sty + texmf-dist/tex/latex/glossaries/styles/glossary-super.sty + texmf-dist/tex/latex/glossaries/styles/glossary-superragged.sty + texmf-dist/tex/latex/glossaries/styles/glossary-tree.sty + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronym-desc.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronym.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronyms-lang.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-brief.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-childnoname.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-cite.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-images.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-long.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-multipar.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-parent.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-symbolnames.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-symbols.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-url.tex +catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=glossaries +catalogue-ctan /macros/latex/contrib/glossaries +catalogue-license lppl1.3 +catalogue-topics glossary acronym +catalogue-version 4.46 + +name glossaries-danish +category Package +revision 35665 +shortdesc Danish language module for glossaries package +relocated 1 +longdesc Danish language module for glossaries package. +containersize 1668 +containerchecksum d9551aaa01e6f6720406a58f869048fbeac30fd629edd7fcdef657525dd1f7fb3faa2127cd81fb777d339ae65a1015e9cea7e5fe26a7de10db3a387152aaf0b3 +doccontainersize 123944 +doccontainerchecksum 8e6097ced6686f3f5f0162c7deb11de9acfd55ca152c8ba3d4eafe155f645f33ec32dc495e3b4f4832e33300cd63d2d4ba56d018177f96426ee72e14cc60e230 +docfiles size=32 + RELOC/doc/latex/glossaries-danish/README details="Readme" + RELOC/doc/latex/glossaries-danish/glossaries-danish.pdf details="Package documentation" + RELOC/doc/latex/glossaries-danish/glossaries-dictionary-Danish.dict +srccontainersize 2232 +srccontainerchecksum f8a52fad43c5a95989ed8da27ad5a15da56e5cb2b08797bd70879327a512d9bad44fd217270940ca1ac541a880bb939b9e360fe5a686b0b25d779baa1bd01de6 +srcfiles size=3 + RELOC/source/latex/glossaries-danish/glossaries-danish.dtx + RELOC/source/latex/glossaries-danish/glossaries-danish.ins +runfiles size=1 + RELOC/tex/latex/glossaries-danish/glossaries-danish.ldf +catalogue-ctan /macros/latex/contrib/glossaries-danish +catalogue-license lppl1.3 +catalogue-topics glossary danish +catalogue-version 1.0 + +name glossaries-dutch +category Package +revision 35685 +shortdesc Dutch language module for glossaries package +relocated 1 +longdesc Dutch language module for glossariesr package. +containersize 1656 +containerchecksum 0e3d2607caa6032c8c768c1bd7c84808f6b836d6c167b1e0c720b57c3033c175269663f6e21edc248676bb2b73142c20c85cb6c3011586cf17d876e540a435dc +doccontainersize 155320 +doccontainerchecksum c2d6ce929bb9e7482413886967beb598b6cfb4a2f84d5a2e5edd7039b94e397ba9ad2e63954178d6fae91c5e3aeb080a68ed466b609ba0adddf98003f570cfd1 +docfiles size=40 + RELOC/doc/latex/glossaries-dutch/README details="Readme" + RELOC/doc/latex/glossaries-dutch/glossaries-dictionary-Dutch.dict + RELOC/doc/latex/glossaries-dutch/glossaries-dutch.pdf details="Package documentation" +srccontainersize 2364 +srccontainerchecksum 5088bafba48d95e4392a5891ba3566d37a708cc7ed002243995d67ad6f6cd1eed19f6a572e5e3234c8e4ce58e815b4cc79e97d2644bc5341911388f7b80030aa +srcfiles size=3 + RELOC/source/latex/glossaries-dutch/glossaries-dutch.dtx + RELOC/source/latex/glossaries-dutch/glossaries-dutch.ins +runfiles size=1 + RELOC/tex/latex/glossaries-dutch/glossaries-dutch.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-dutch +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.1 + +name glossaries-english +category Package +revision 35665 +shortdesc English language module for glossaries package +relocated 1 +longdesc English language module for glossariesr package. +containersize 1656 +containerchecksum f62c43c9cb5a10fe5e364e6aa4ca500aae8b89e71f6bc80831a8c8211ca640f3631f011735ee5c82278b188bf896360b69502da2128e1db1287d24e44805ef97 +doccontainersize 123584 +doccontainerchecksum 40c30888541114f5594403ddf251f0c209daa57c6b6f2d3d75b4a51416bf3011bea70cdc5f461e80a1e148181d6ecc2b2d7c891a7c75b1c577a72e5ee8ddc8e9 +docfiles size=32 + RELOC/doc/latex/glossaries-english/README details="Readme" + RELOC/doc/latex/glossaries-english/glossaries-dictionary-English.dict + RELOC/doc/latex/glossaries-english/glossaries-english.pdf details="Package documentation" +srccontainersize 2216 +srccontainerchecksum 4a1d9cbf515c52d8f8a787970bf5537f25d6de7a66c3a1819cc5dec05df0f004aaac3734dba6ef813473db0cd5b08db4ddebca8dbc8674c2582abc7e9e85524a +srcfiles size=3 + RELOC/source/latex/glossaries-english/glossaries-english.dtx + RELOC/source/latex/glossaries-english/glossaries-english.ins +runfiles size=1 + RELOC/tex/latex/glossaries-english/glossaries-english.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-english +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-estonian +category Package +revision 49928 +shortdesc Estonian language module for glossaries package +relocated 1 +longdesc This package provides the Estonian language module for the +longdesc glossaries package. +containersize 1960 +containerchecksum 48eac96868bbeb636bc8d4352cbc1959829daab75716b3dea2ef98d98e388a2668a2ea1e35cc46f53e9ee030aa07dcef3e528f056f59d49883f0a00380785bcc +doccontainersize 22288 +doccontainerchecksum 5f957f53acaf6b56e338b606843cfa2ddd16dccef6bd2c74844e514c157ddbc3c5c24168cbe28c67894afab8d115460fd497de91f0142bbec3d1987d5889925f +docfiles size=8 + RELOC/doc/latex/glossaries-estonian/README details="Readme" + RELOC/doc/latex/glossaries-estonian/glossaries-dictionary-Estonian.dict + RELOC/doc/latex/glossaries-estonian/glossaries-estonian.pdf details="Package documentation" +srccontainersize 2440 +srccontainerchecksum f2d2ddecc5a338f844a9b98d50e636d69d31866e723e3aa261ddc5ac2d8349d01e76afdf9cc6b7a4b4d96dadee78ea6933c0d1c69d1196f11770c92cef356fb2 +srcfiles size=3 + RELOC/source/latex/glossaries-estonian/glossaries-estonian.dtx + RELOC/source/latex/glossaries-estonian/glossaries-estonian.ins +runfiles size=3 + RELOC/tex/latex/glossaries-estonian/glossaries-estonian-ascii.ldf + RELOC/tex/latex/glossaries-estonian/glossaries-estonian-utf8.ldf + RELOC/tex/latex/glossaries-estonian/glossaries-estonian.ldf +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-license lppl1.3 +catalogue-topics glossary estonian +catalogue-version 1.0 + +name glossaries-extra +category Package +revision 54688 +shortdesc An extension to the glossaries package +relocated 1 +longdesc This package provides improvements and extra features to the +longdesc glossaries package. Some of the default glossaries.sty +longdesc behaviour is changed by glossaries-extra.sty. See the user +longdesc manual glossaries-extra-manual.pdf for further details. +longdesc glossaries-extra.sty requires the glossaries package and, +longdesc naturally, all packages required by glossaries.sty. +containersize 63304 +containerchecksum 6604e11d960693f3a4437a5eae8f4e508057c22bec61be620971f3fa88563fd8630d0b3cedd9cb259e0e024b0813db694bfe23d6fdbbfeed9e6543919f73b20b +doccontainersize 5295972 +doccontainerchecksum e8fb201968efd7701260f9b5fefab56930441b4240aed8bd90128c4dcef85cdd8d62372b579797a9450b56ceb37e7ee2793049f8098229f68b3d4915cca2ff3a +docfiles size=1949 + RELOC/doc/latex/glossaries-extra/CHANGES + RELOC/doc/latex/glossaries-extra/README details="Readme" + RELOC/doc/latex/glossaries-extra/glossaries-extra-code.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.html + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.pdf details="Package documentation" + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.tex + RELOC/doc/latex/glossaries-extra/sample-abbr-styles.pdf + RELOC/doc/latex/glossaries-extra/sample-abbr-styles.tex + RELOC/doc/latex/glossaries-extra/sample-abbrv.pdf + RELOC/doc/latex/glossaries-extra/sample-abbrv.tex + RELOC/doc/latex/glossaries-extra/sample-accsupp.pdf + RELOC/doc/latex/glossaries-extra/sample-accsupp.tex + RELOC/doc/latex/glossaries-extra/sample-acronym-desc.pdf + RELOC/doc/latex/glossaries-extra/sample-acronym-desc.tex + RELOC/doc/latex/glossaries-extra/sample-acronym.pdf + RELOC/doc/latex/glossaries-extra/sample-acronym.tex + RELOC/doc/latex/glossaries-extra/sample-alias.pdf + RELOC/doc/latex/glossaries-extra/sample-alias.tex + RELOC/doc/latex/glossaries-extra/sample-altmodifier.pdf + RELOC/doc/latex/glossaries-extra/sample-altmodifier.tex + RELOC/doc/latex/glossaries-extra/sample-alttree-marginpar.pdf + RELOC/doc/latex/glossaries-extra/sample-alttree-marginpar.tex + RELOC/doc/latex/glossaries-extra/sample-alttree-sym.pdf + RELOC/doc/latex/glossaries-extra/sample-alttree-sym.tex + RELOC/doc/latex/glossaries-extra/sample-alttree.pdf + RELOC/doc/latex/glossaries-extra/sample-alttree.tex + RELOC/doc/latex/glossaries-extra/sample-autoindex-hyp.pdf + RELOC/doc/latex/glossaries-extra/sample-autoindex-hyp.tex + RELOC/doc/latex/glossaries-extra/sample-autoindex.pdf + RELOC/doc/latex/glossaries-extra/sample-autoindex.tex + RELOC/doc/latex/glossaries-extra/sample-crossref.pdf + RELOC/doc/latex/glossaries-extra/sample-crossref.tex + RELOC/doc/latex/glossaries-extra/sample-crossref2.pdf + RELOC/doc/latex/glossaries-extra/sample-crossref2.tex + RELOC/doc/latex/glossaries-extra/sample-docdef.pdf + RELOC/doc/latex/glossaries-extra/sample-docdef.tex + RELOC/doc/latex/glossaries-extra/sample-entrycount.pdf + RELOC/doc/latex/glossaries-extra/sample-entrycount.tex + RELOC/doc/latex/glossaries-extra/sample-external.pdf + RELOC/doc/latex/glossaries-extra/sample-external.tex + RELOC/doc/latex/glossaries-extra/sample-fmt.pdf + RELOC/doc/latex/glossaries-extra/sample-fmt.tex + RELOC/doc/latex/glossaries-extra/sample-footnote.pdf + RELOC/doc/latex/glossaries-extra/sample-footnote.tex + RELOC/doc/latex/glossaries-extra/sample-header.pdf + RELOC/doc/latex/glossaries-extra/sample-header.tex + RELOC/doc/latex/glossaries-extra/sample-indexhook.pdf + RELOC/doc/latex/glossaries-extra/sample-indexhook.tex + RELOC/doc/latex/glossaries-extra/sample-initialisms.pdf + RELOC/doc/latex/glossaries-extra/sample-initialisms.tex + RELOC/doc/latex/glossaries-extra/sample-linkcount.pdf + RELOC/doc/latex/glossaries-extra/sample-linkcount.tex + RELOC/doc/latex/glossaries-extra/sample-mixed-abbrv-styles.pdf + RELOC/doc/latex/glossaries-extra/sample-mixed-abbrv-styles.tex + RELOC/doc/latex/glossaries-extra/sample-mixedsort.pdf + RELOC/doc/latex/glossaries-extra/sample-mixedsort.tex + RELOC/doc/latex/glossaries-extra/sample-mixture.pdf + RELOC/doc/latex/glossaries-extra/sample-mixture.tex + RELOC/doc/latex/glossaries-extra/sample-name-font.pdf + RELOC/doc/latex/glossaries-extra/sample-name-font.tex + RELOC/doc/latex/glossaries-extra/sample-nested.pdf + RELOC/doc/latex/glossaries-extra/sample-nested.tex + RELOC/doc/latex/glossaries-extra/sample-noidx-restricteddocdefs.pdf + RELOC/doc/latex/glossaries-extra/sample-noidx-restricteddocdefs.tex + RELOC/doc/latex/glossaries-extra/sample-onelink.pdf + RELOC/doc/latex/glossaries-extra/sample-onelink.tex + RELOC/doc/latex/glossaries-extra/sample-onthefly-utf8.pdf + RELOC/doc/latex/glossaries-extra/sample-onthefly-utf8.tex + RELOC/doc/latex/glossaries-extra/sample-onthefly-xetex.pdf + RELOC/doc/latex/glossaries-extra/sample-onthefly-xetex.tex + RELOC/doc/latex/glossaries-extra/sample-onthefly.pdf + RELOC/doc/latex/glossaries-extra/sample-onthefly.tex + RELOC/doc/latex/glossaries-extra/sample-pages.pdf + RELOC/doc/latex/glossaries-extra/sample-pages.tex + RELOC/doc/latex/glossaries-extra/sample-postdot.pdf + RELOC/doc/latex/glossaries-extra/sample-postdot.tex + RELOC/doc/latex/glossaries-extra/sample-postlink.pdf + RELOC/doc/latex/glossaries-extra/sample-postlink.tex + RELOC/doc/latex/glossaries-extra/sample-prefix.pdf + RELOC/doc/latex/glossaries-extra/sample-prefix.tex + RELOC/doc/latex/glossaries-extra/sample-record-nameref.glstex + RELOC/doc/latex/glossaries-extra/sample-record-nameref.pdf + RELOC/doc/latex/glossaries-extra/sample-record-nameref.tex + RELOC/doc/latex/glossaries-extra/sample-record.glstex + RELOC/doc/latex/glossaries-extra/sample-record.pdf + RELOC/doc/latex/glossaries-extra/sample-record.tex + RELOC/doc/latex/glossaries-extra/sample-restricteddocdefs.pdf + RELOC/doc/latex/glossaries-extra/sample-restricteddocdefs.tex + RELOC/doc/latex/glossaries-extra/sample-suppl-hyp.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl-hyp.tex + RELOC/doc/latex/glossaries-extra/sample-suppl-main-hyp.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl-main-hyp.tex + RELOC/doc/latex/glossaries-extra/sample-suppl-main.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl-main.tex + RELOC/doc/latex/glossaries-extra/sample-suppl.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl.tex + RELOC/doc/latex/glossaries-extra/sample-trans.pdf + RELOC/doc/latex/glossaries-extra/sample-trans.tex + RELOC/doc/latex/glossaries-extra/sample-undef.pdf + RELOC/doc/latex/glossaries-extra/sample-undef.tex + RELOC/doc/latex/glossaries-extra/sample-unitentrycount.pdf + RELOC/doc/latex/glossaries-extra/sample-unitentrycount.tex + RELOC/doc/latex/glossaries-extra/sample.pdf + RELOC/doc/latex/glossaries-extra/sample.tex +srccontainersize 116088 +srccontainerchecksum 9810a3934dfdd96bb0ab857ad3e27b9b36b488240f7fb86cdff303f26288a8e3c008aa5eca3af2402660040d6543f33023a47ed8a541290eb553a8adc5305e11 +srcfiles size=268 + RELOC/source/latex/glossaries-extra/glossaries-extra.dtx + RELOC/source/latex/glossaries-extra/glossaries-extra.ins +runfiles size=163 + RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronym-desc.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronym.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronyms-lang.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-brief.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-childnoname.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-cite.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-images.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-long.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-multipar.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-parent.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-symbolnames.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-symbols.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-url.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-xr.bib + RELOC/tex/latex/glossaries-extra/example-glossaries-xr.tex + RELOC/tex/latex/glossaries-extra/glossaries-extra-bib2gls.sty + RELOC/tex/latex/glossaries-extra/glossaries-extra-stylemods.sty + RELOC/tex/latex/glossaries-extra/glossaries-extra.sty + RELOC/tex/latex/glossaries-extra/glossary-bookindex.sty + RELOC/tex/latex/glossaries-extra/glossary-longextra.sty + RELOC/tex/latex/glossaries-extra/glossary-topic.sty +catalogue-also glossaries +catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=glossaries-extra +catalogue-ctan /macros/latex/contrib/glossaries-extra +catalogue-license lppl1.3 +catalogue-topics glossary acronym +catalogue-version 1.45 + +name glossaries-finnish +category Package +revision 54080 +shortdesc Finnish language module for glossaries package +relocated 1 +longdesc Finnish language module for glossaries package. +containersize 1836 +containerchecksum ad6109c67ecfc88da631b3f42aa91b95720619599721a6c6d87b4d8a668cdcfd5bdedd333a43bfff663f5f26df64f4fd8268054dc2dca089ad34177e6e5b9078 +doccontainersize 139712 +doccontainerchecksum ddc0047503a68316c3d2e18d22c7ebb861aacbf649366a60ee186ff31ba79846b461d3fde029bb5b0a3ce8f07ef25b89bc46898047176160815570f68b022b10 +docfiles size=36 + RELOC/doc/latex/glossaries-finnish/README details="Readme" + RELOC/doc/latex/glossaries-finnish/glossaries-dictionary-Finnish.dict + RELOC/doc/latex/glossaries-finnish/glossaries-finnish.pdf details="Package documentation" +srccontainersize 2376 +srccontainerchecksum 0be0af63020fe9bcde5ef0f3b832d5fe90325de0412f32b3c0f34b6b00126bd2b139f0b3be376d54a41794447dd38564fd248ce30fc08f68a607fc65daa5d503 +srcfiles size=3 + RELOC/source/latex/glossaries-finnish/glossaries-finnish.dtx + RELOC/source/latex/glossaries-finnish/glossaries-finnish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-finnish/glossaries-finnish-ascii.ldf + RELOC/tex/latex/glossaries-finnish/glossaries-finnish-utf8.ldf + RELOC/tex/latex/glossaries-finnish/glossaries-finnish.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-finnish +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-french +category Package +revision 42873 +shortdesc French language module for glossaries package +relocated 1 +longdesc French language module for glossaries package. +containersize 1644 +containerchecksum 8516e94f69248238b0e94099b67c9807f02587e934e6fd2c9ef23befcfac783297cc4df71b8e41be77fdab85abcb4103435c3fd24584b46a3b473fc4489d5d82 +doccontainersize 194372 +doccontainerchecksum c26b40d499199c15c875cdca901a3168ab72e4009a04e92f3b1ae9010d7912484b1185453d117154eb5b9e63358b36cd58aeff3d0c4727945a343be4c3c2ede0 +docfiles size=51 + RELOC/doc/latex/glossaries-french/README details="Readme" + RELOC/doc/latex/glossaries-french/glossaries-dictionary-French.dict + RELOC/doc/latex/glossaries-french/glossaries-french.pdf details="Package documentation" +srccontainersize 2692 +srccontainerchecksum 9c6b0b1d851c88c757e87c8b29b2cfaa3886efb00433a9c3744e175fd4dfd4433de3b80b9d70df89f879536b1058ddb1baeae41c5cdfc6c47377256df8e63882 +srcfiles size=3 + RELOC/source/latex/glossaries-french/glossaries-french.dtx + RELOC/source/latex/glossaries-french/glossaries-french.ins +runfiles size=1 + RELOC/tex/latex/glossaries-french/glossaries-french.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-french +catalogue-license lppl1.3 +catalogue-topics glossary french +catalogue-version 1.1 + +name glossaries-german +category Package +revision 35665 +shortdesc German language module for glossaries package +relocated 1 +longdesc German language module for the glossaries package. +containersize 1668 +containerchecksum e0b8e18dbe4d4e503c144be2406b99b56ef0a48847b4044665ac178dffc59d2b8ea95873ee5f2e64fcfb8379a44ee8761ee84ae44fddf996d1029372d5185d58 +doccontainersize 124428 +doccontainerchecksum 0ad0d7d8f41e52613d049fe3ec6e48d5ceb77e768c7b9ee6b3b0978eeebe6abfc803df44bbb7f90b4e487de074a2cc174224ab0e89d5fe7bc896adff495abfc6 +docfiles size=32 + RELOC/doc/latex/glossaries-german/README details="Readme" + RELOC/doc/latex/glossaries-german/glossaries-dictionary-German.dict + RELOC/doc/latex/glossaries-german/glossaries-german.pdf details="Package documentation" +srccontainersize 2228 +srccontainerchecksum 7d34e603e6c667fad268f4d16edd7b066d3f6fb34739ae5e7620cfb2024fb6c7882862845055205d3a3c14f2c60bb3b304cbb1871958c17427107cc245e10bcd +srcfiles size=3 + RELOC/source/latex/glossaries-german/glossaries-german.dtx + RELOC/source/latex/glossaries-german/glossaries-german.ins +runfiles size=1 + RELOC/tex/latex/glossaries-german/glossaries-german.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-german +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-irish +category Package +revision 35665 +shortdesc Irish language module for glossaries package +relocated 1 +longdesc Irish language module for glossariesr package. +containersize 1880 +containerchecksum b59add658270f734a8fcb70bae29ac210c84472f0f7ded62baa647bdbdbcba2e63dab71aca6f8c524eae9e3d80bfa7bf96bef45bef7039c3eeff738055a93acf +doccontainersize 128536 +doccontainerchecksum 9ce14ee4ca3ac1eed10f8c356fd6561f7ac43abcde46009a6d43245395985f045e9ecb83a38a190ea3a5cabf462a233967993bcaa40211cd7e64791dc2a583a5 +docfiles size=34 + RELOC/doc/latex/glossaries-irish/README details="Readme" + RELOC/doc/latex/glossaries-irish/glossaries-dictionary-Irish.dict + RELOC/doc/latex/glossaries-irish/glossaries-irish.pdf details="Package documentation" +srccontainersize 2612 +srccontainerchecksum cdc7332678be3abc86804b9b674aab88f087791c8418e6273cc07f2c2b4bc8316ad21a3421af9ca2f87f76a3ce42a6fc5e7343e006120dcbe1c7cb14901d7ff9 +srcfiles size=3 + RELOC/source/latex/glossaries-irish/glossaries-irish.dtx + RELOC/source/latex/glossaries-irish/glossaries-irish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-irish/glossaries-irish-noenc.ldf + RELOC/tex/latex/glossaries-irish/glossaries-irish-utf8.ldf + RELOC/tex/latex/glossaries-irish/glossaries-irish.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-irish +catalogue-license lppl1.3 +catalogue-topics glossary irish-gaelic +catalogue-version 1.0 + +name glossaries-italian +category Package +revision 35665 +shortdesc Italian language module for glossaries package +relocated 1 +longdesc Italian language module for glossaries package. +containersize 1680 +containerchecksum aeeeb9fcd98e55ed64c918276e0bf0b25489538da80f96030a85225635e7e0ca3d1c93c65aba8b97b486f086a50504c257ba478bdba28de92058053dcafe323b +doccontainersize 123924 +doccontainerchecksum f1ee5a84c9a67b88087f657c259a3700fcd1fa4ad8c765cfae11cde2d54c4a71e69dc57bf626ead0d2cf1057750e284a31443c72e994e37a62715548fa9dbadd +docfiles size=32 + RELOC/doc/latex/glossaries-italian/README details="Readme" + RELOC/doc/latex/glossaries-italian/glossaries-dictionary-Italian.dict + RELOC/doc/latex/glossaries-italian/glossaries-italian.pdf details="Package documentation" +srccontainersize 2248 +srccontainerchecksum 9a014922abb8be849e97660f2aabff49413a56c06a93f5a3fb0cb89f972b54fc371bff8dfd6a758196d941efbc9281c5cab3fcf047901ab08e296d55e529206a +srcfiles size=3 + RELOC/source/latex/glossaries-italian/glossaries-italian.dtx + RELOC/source/latex/glossaries-italian/glossaries-italian.ins +runfiles size=1 + RELOC/tex/latex/glossaries-italian/glossaries-italian.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-italian +catalogue-license lppl1.3 +catalogue-topics glossary italian +catalogue-version 1.0 + +name glossaries-magyar +category Package +revision 35665 +shortdesc Magyar language module for glossaries package +relocated 1 +longdesc Magyar language module for glossariesr package. +containersize 1940 +containerchecksum 66847635e1f00af9191cef210c19ed154dc1e5405ef0d2ad38485a913626ab9cd93b7c35395feedefcc04bfd1b46112e6410154c2ff26be51553619326d1e55e +doccontainersize 130892 +doccontainerchecksum a6bc19bf794943b1b15c8cbece363f644671f912bb71d8b2f0a9e75d05886ae4af4846c78cd060099bb78872e4d7991a9a3274fd1343a07bf73c3ba1d475241a +docfiles size=34 + RELOC/doc/latex/glossaries-magyar/README details="Readme" + RELOC/doc/latex/glossaries-magyar/glossaries-dictionary-Magyar.dict + RELOC/doc/latex/glossaries-magyar/glossaries-magyar.pdf details="Package documentation" +srccontainersize 2560 +srccontainerchecksum e0e90ed2fb01df98b20a7807a0dc1155b108c35788ea952f753ee9033d2c7e516086c6380b8617411392198c5469b57b96aa35f8903e44ce44d30f5758acb75f +srcfiles size=3 + RELOC/source/latex/glossaries-magyar/glossaries-magyar.dtx + RELOC/source/latex/glossaries-magyar/glossaries-magyar.ins +runfiles size=3 + RELOC/tex/latex/glossaries-magyar/glossaries-magyar-noenc.ldf + RELOC/tex/latex/glossaries-magyar/glossaries-magyar-utf8.ldf + RELOC/tex/latex/glossaries-magyar/glossaries-magyar.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-magyar +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-nynorsk +category Package +revision 55189 +shortdesc Nynorsk language module for the glossaries package +relocated 1 +longdesc Norwegian Nynorsk language module for the glossaries package. +containersize 1696 +containerchecksum 8f94d41ee925f91b8646a9e01caa008a56757a46da5a642cc0142d0bee5fbc192eaed4ef914c93a40840606f569c5f20dab5c3d6a5fae26f64e981d12f868832 +doccontainersize 124664 +doccontainerchecksum aae437c721582343ee9395881479cf3d0c0b7d26ad6642311a63f0ed1e0aaf03a48e456f3e21d530dfef012a9f68f346827fe1ac5e7a509e1370bb60abc39e41 +docfiles size=33 + RELOC/doc/latex/glossaries-nynorsk/README details="Readme" + RELOC/doc/latex/glossaries-nynorsk/glossaries-dictionary-Nynorsk.dict + RELOC/doc/latex/glossaries-nynorsk/glossaries-nynorsk.pdf details="Package documentation" +srccontainersize 2272 +srccontainerchecksum 29a038a405cecd5232b3e015ee9e431e206f61691404309a9f7b47333f5d892ba629c9545a99e1a20a360ca0b3a72acca85ecd1f333e8615b856baf680d206c2 +srcfiles size=3 + RELOC/source/latex/glossaries-nynorsk/glossaries-nynorsk.dtx + RELOC/source/latex/glossaries-nynorsk/glossaries-nynorsk.ins +runfiles size=1 + RELOC/tex/latex/glossaries-nynorsk/glossaries-nynorsk.ldf +catalogue-contact-home https://github.com/switchcraft/glossaries-nynorsk +catalogue-ctan /macros/latex/contrib/glossaries-nynorsk +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-polish +category Package +revision 35665 +shortdesc Polish language module for glossaries package +relocated 1 +longdesc Polish language module for the glossaries package. +containersize 1868 +containerchecksum 7ad5a924f24acb052c16436f1d1eb198bf10c65ed3f77fb8911cc8b390cf286581a6d7ed409211993545d597a4dee4318e1d9b820dca6f831ca215986ec4a1cc +doccontainersize 128100 +doccontainerchecksum cad7bbadda3e690ce56c75d2dfc92b02576226cb31d848b0c96d6115d18d222a50e514a6c6b5db9907d6a0e542824e229b063a0cec49dd726246f3dc5d4b41ed +docfiles size=33 + RELOC/doc/latex/glossaries-polish/README details="Readme" + RELOC/doc/latex/glossaries-polish/glossaries-dictionary-Polish.dict + RELOC/doc/latex/glossaries-polish/glossaries-polish.pdf details="Package documentation" +srccontainersize 2484 +srccontainerchecksum 5f7ba658feb54089405ed6a2fbab3a279143205438a9dbf6ba0a49d38245799cfac6369c48f9ea1e5eac2125cf475e26a3b31dd3745f283a21f3ed07aa8e64be +srcfiles size=3 + RELOC/source/latex/glossaries-polish/glossaries-polish.dtx + RELOC/source/latex/glossaries-polish/glossaries-polish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-polish/glossaries-polish-noenc.ldf + RELOC/tex/latex/glossaries-polish/glossaries-polish-utf8.ldf + RELOC/tex/latex/glossaries-polish/glossaries-polish.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-polish +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-portuges +category Package +revision 36064 +shortdesc Portuges language module for glossaries package +relocated 1 +longdesc Portuges language module for glossaries package. +containersize 2044 +containerchecksum 64582081553f90a5000992f9db3f79aae7ddfedc6f128ddc09ec7878576b0e17a580f7c58515c2696e2c46ce1ba49c2cd756687c144d0134d91cb6c5e0506ec0 +doccontainersize 164932 +doccontainerchecksum 5f1692f14e2e4a596555cc426a556d069fcf710775d9a039f0143eddbafd0502e4f4a10e677a43589b1f91cddedba6dc9358b6015801e68f1b3d1e908e57dc09 +docfiles size=42 + RELOC/doc/latex/glossaries-portuges/README details="Readme" + RELOC/doc/latex/glossaries-portuges/glossaries-dictionary-Brazilian.dict + RELOC/doc/latex/glossaries-portuges/glossaries-portuges.pdf details="Package documentation" +srccontainersize 2848 +srccontainerchecksum a7cb8046b8ce5d122f691170804acbcd39b5ae367cf66057d12fb24d58f142e2a4cf52a1039de9cd73a0f8c0bf851f07367c180eedb12923ab3398189de29652 +srcfiles size=4 + RELOC/source/latex/glossaries-portuges/glossaries-portuges.dtx + RELOC/source/latex/glossaries-portuges/glossaries-portuges.ins +runfiles size=4 + RELOC/tex/latex/glossaries-portuges/glossaries-portuges-noenc.ldf + RELOC/tex/latex/glossaries-portuges/glossaries-portuges-utf8.ldf + 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-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.1 + +name glossaries-serbian +category Package +revision 35665 +shortdesc Serbian language module for glossaries package +relocated 1 +longdesc Serbian language module for glossaries package. +containersize 1868 +containerchecksum 7360d33c1d3912802be171ecf8c218fad45719ee6dfa0596904484ebf9dcebcc0d926112e40fca76a196ec6081fafc4524c81b366008fd20207f8150dd82be29 +doccontainersize 128784 +doccontainerchecksum 1ce493838bdc59521728b6856d2cc2df26f44f3bcfcfc04d32fc20d3e416639b1420e1451acad8b8bb0597336a77b553ac599ec0c541527ab4d8e56765f07f3f +docfiles size=34 + RELOC/doc/latex/glossaries-serbian/README details="Readme" + RELOC/doc/latex/glossaries-serbian/glossaries-dictionary-Serbian.dict + RELOC/doc/latex/glossaries-serbian/glossaries-serbian.pdf details="Package documentation" +srccontainersize 2512 +srccontainerchecksum 9097fda313f9cd3e0db095c27fa534269e2460c6b5efa3e6681471590591b0931c52f28374ee33404ae0491297d1047dac8b7ce7a525a46b01873210b6242515 +srcfiles size=3 + RELOC/source/latex/glossaries-serbian/glossaries-serbian.dtx + RELOC/source/latex/glossaries-serbian/glossaries-serbian.ins +runfiles size=3 + RELOC/tex/latex/glossaries-serbian/glossaries-serbian-noenc.ldf + 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-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-slovene +category Package +revision 51211 +shortdesc Slovene language module for glossaries package +relocated 1 +longdesc Slovene language module for glossaries package. +containersize 1668 +containerchecksum d569d73cbaad175549fe5d4000ac73b0fb65d00598dcab0f3a7c7b384682568d21016fb50d7dc6d2f6a1b250ef34c44c784eb99a1ff042bc3a52bf1c987e0b55 +doccontainersize 124256 +doccontainerchecksum 63d212e4c04dd7c7e663de230274b9111b8025839c8136313677d13e967a23870927a49220aa1efa0702422e8ad4cf683d1e5e09fcf291873d78bcb055e24003 +docfiles size=32 + RELOC/doc/latex/glossaries-slovene/README details="Readme" + RELOC/doc/latex/glossaries-slovene/glossaries-dictionary-slovene.dict + RELOC/doc/latex/glossaries-slovene/glossaries-slovene.pdf details="Package documentation" +srccontainersize 2240 +srccontainerchecksum 0e779292973bed40b3e077058aa99ceaa851ef516af7be57a21bd378492f77b87e65ca95f9f8fdbebc8818dc820108e598ce93efb8c6129560e0ed40f3633b48 +srcfiles size=3 + RELOC/source/latex/glossaries-slovene/glossaries-slovene.dtx + RELOC/source/latex/glossaries-slovene/glossaries-slovene.ins +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-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-spanish +category Package +revision 35665 +shortdesc Spanish language module for glossaries package +relocated 1 +longdesc Spanish language module for glossaries package. +containersize 1896 +containerchecksum 6c92de5e24135a9c47d200f8f0c0ce7dff8a01f8c13bfb49d4090d1c195052559f75763c0ed68d633b40cf18bc89bc51e7b6c2aacdec05376a3c2e1d1b7a31b2 +doccontainersize 128220 +doccontainerchecksum 5fc58f64a7f54b50dcfd632e700805bab2f46a92b727853b147d9f7156b2fddd50a8fac08d0ac59bf5f89e0ecf1d5ddf7c22482e661f8a5e7b5568832168bd5c +docfiles size=33 + RELOC/doc/latex/glossaries-spanish/README details="Readme" + RELOC/doc/latex/glossaries-spanish/glossaries-dictionary-Spanish.dict + RELOC/doc/latex/glossaries-spanish/glossaries-spanish.pdf details="Package documentation" +srccontainersize 2520 +srccontainerchecksum 8bccb84eec75980107ed08b9f7e1ef0a595f7eb0c270ccbff77f4ea176fb5e17292b7d34d081ffdaa7d7be82fe40f71bbc30a65904892400536c51ea777475df +srcfiles size=3 + RELOC/source/latex/glossaries-spanish/glossaries-spanish.dtx + RELOC/source/latex/glossaries-spanish/glossaries-spanish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-spanish/glossaries-spanish-noenc.ldf + 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-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of glossaries +containersize 372 +containerchecksum 5d101f780893ef6e7bc388cd38cce41238071e1a5dbc5dfc885597554d4ca7cb9c517b46a74f4a3c65772a25ab69fbaf4521e8e7dc5d847ff649187251351969 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/makeglossaries + bin/aarch64-linux/makeglossaries-lite + +name glossaries.amd64-freebsd +category Package +revision 37813 +shortdesc amd64-freebsd files of glossaries +containersize 372 +containerchecksum 660227636f580a7e25a4e39ffc44ef8c36ae42d1c347f6087b14fbd02375d6b648d917b3a03dceb9af1847390a890bfcc21a7d9d4ed75202e72bddffe2907b98 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/makeglossaries + bin/amd64-freebsd/makeglossaries-lite + +name glossaries.amd64-netbsd +category Package +revision 37813 +shortdesc amd64-netbsd files of glossaries +containersize 372 +containerchecksum 889b39f1fa87c9aae10c0b4101e05fa0e71508c563e08b5aa49946af2690b52c239543883454b301ad06917d9df115ff05b801abce616fd69f84955d7e884f23 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/makeglossaries + bin/amd64-netbsd/makeglossaries-lite + +name glossaries.armhf-linux +category Package +revision 37813 +shortdesc armhf-linux files of glossaries +containersize 372 +containerchecksum 01985b4614c6a70897ad9992d910645d8013cfda8269bee838f3caa5598fb9280d809ec1ece81d89843b6d915dc315502889a9afa506da85ad2be5d0e18c9411 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/makeglossaries + bin/armhf-linux/makeglossaries-lite + +name glossaries.i386-cygwin +category Package +revision 37813 +shortdesc i386-cygwin files of glossaries +containersize 368 +containerchecksum 6b005fa80bb08f2ef387615cd58549888810598fff226c0f78e0a6e2fa43ef3242989e38e8ae9aa719ad5c2c7e93b8e8689a3b5a491b7b71bab419a8dd5bab7b +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/makeglossaries + bin/i386-cygwin/makeglossaries-lite + +name glossaries.i386-freebsd +category Package +revision 37813 +shortdesc i386-freebsd files of glossaries +containersize 372 +containerchecksum fc827873493aa33f98ef7da3fc21830ebdf022b2d556eb66e4b3c2fdd055ec84efbb8b132ffd8e0bb048a381a6dda0d0bdd5e31fa11f188fde2eafef2b195cb0 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/makeglossaries + bin/i386-freebsd/makeglossaries-lite + +name glossaries.i386-linux +category Package +revision 37813 +shortdesc i386-linux files of glossaries +containersize 372 +containerchecksum 1171559510e7e05b60e36d6d24495dd2492f17b3b3692e32b6a5200dbab6f38167f5ab9e7b201a2b218662d47d5abafff29a825624b05ed291b9b3bbd5c4e535 +binfiles arch=i386-linux size=2 + bin/i386-linux/makeglossaries + bin/i386-linux/makeglossaries-lite + +name glossaries.i386-netbsd +category Package +revision 37813 +shortdesc i386-netbsd files of glossaries +containersize 368 +containerchecksum ec9dd02da48a38d5f30b6600ec2a55a53c3d3b1900b6cde60d068c65e6062ff9a0fda07432bf00ff1b813a19c8a32ecbddbbaeaf6bc38c7ce26b78763ee7ce6c +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/makeglossaries + bin/i386-netbsd/makeglossaries-lite + +name glossaries.i386-solaris +category Package +revision 37813 +shortdesc i386-solaris files of glossaries +containersize 372 +containerchecksum 0d3a2943c4c63055f59268e6f9853e2d9df2e295ece44998ba090f94b15de1e448ab858ef3c335ed00fc598745f94ab549c6c61e044b0a1283c06a7887bb0358 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/makeglossaries + bin/i386-solaris/makeglossaries-lite + +name glossaries.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of glossaries +containersize 372 +containerchecksum 620c173c2a1e53cc973c0bcf6c63460217dce9038c62ef9e2127518b7ab2b1aad8ca2f79c97dc9911fcb07b5e5b148c0cc19fdacb8f3f8124493808f75a95f9c +binfiles arch=universal-darwin size=2 + bin/universal-darwin/makeglossaries + bin/universal-darwin/makeglossaries-lite + +name glossaries.win32 +category Package +revision 37813 +shortdesc win32 files of glossaries +containersize 720 +containerchecksum 4ef1f297ff4ec0f5a737f87ebc24263dc175d0fbac94fc4dfa1cc6f34bb893886b2802f6d35f2a6ae09b7b55674d1ac6d7e4477d46646b88bf5439a2ae748525 +binfiles arch=win32 size=2 + bin/win32/makeglossaries-lite.exe + bin/win32/makeglossaries.exe + +name glossaries.x86_64-cygwin +category Package +revision 37813 +shortdesc x86_64-cygwin files of glossaries +containersize 372 +containerchecksum 1895880c493e89328abc7a72fee3890e51128de41a93dee01032ff183ad8029a1a13f45c4902a383ba94b39caf59bb1e23817a0b848d282f3d4228f2554d75bd +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/makeglossaries + bin/x86_64-cygwin/makeglossaries-lite + +name glossaries.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of glossaries +containersize 376 +containerchecksum fe66db6136515b898e8acb8418a0c476bd073b0d0500a5291318e9500583caabaa38b9de54e7b1565c59d6149890fedd2693ad355b13df2d480375de8e1795cc +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/makeglossaries + bin/x86_64-darwinlegacy/makeglossaries-lite + +name glossaries.x86_64-linux +category Package +revision 37813 +shortdesc x86_64-linux files of glossaries +containersize 368 +containerchecksum e7aae352f3ccb5acb679932b2df221381084808fdc583050efd3ad8527bccc356ca2b11ba88945524f71a42f547a536fa4e1c273a0f28ea2f0e6c1c84e8bb17c +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/makeglossaries + bin/x86_64-linux/makeglossaries-lite + +name glossaries.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of glossaries +containersize 376 +containerchecksum 1e78b3a49d46339bd35ff7d4a008ff302d5981f9acff24387642d0cb35c0c5b0f9f2beebf0ea417ce0266d9b41e79a41515052833a4c109a2d033d8506a38b4c +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/makeglossaries + bin/x86_64-linuxmusl/makeglossaries-lite + +name glossaries.x86_64-solaris +category Package +revision 37813 +shortdesc x86_64-solaris files of glossaries +containersize 372 +containerchecksum ffb70ae7b46bf65345670998118832c3b5d6570358202dedd0dc989e88c43050b70ea46a6ad2d851955782a4510a8afd9cb06b4d5a170dbcb48e097b7739759c +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/makeglossaries + bin/x86_64-solaris/makeglossaries-lite + +name glyphlist +category Package +revision 54074 +shortdesc Adobe Glyph List and TeX extensions +relocated 1 +longdesc Map between traditional Adobe glyph names and Unicode points, +longdesc maintained by Adobe. The additional texglyphlist.txt is +longdesc maintained as part of lcdf-typetools. +containersize 24764 +containerchecksum c050808623d162ffbfba8742c9aee6c92555717eb3ed0a0cfb0e3cd6696c4f6d940aa494582011e6d0becc3c5572ddccac2598ac8d521b58a323768272f9125a +runfiles size=24 + RELOC/fonts/map/glyphlist/glyphlist.txt + RELOC/fonts/map/glyphlist/pdfglyphlist.txt + RELOC/fonts/map/glyphlist/texglyphlist.txt + +name gmdoc +category Package +revision 21292 +shortdesc Documentation of LaTeX packages +relocated 1 +longdesc A LaTeX package and an example class for documenting (La)TeX +longdesc packages, document classes, .dtx etc., providing hyperlinks. +longdesc The package is believed to be compatible with doc and permits +longdesc minimal markup of code (the macrocode environment is no longer +longdesc necessary). The package provides automatic detection of +longdesc definitions (detecting such things as \def, \newcommand, +longdesc \DeclareOption etc.). The package needs hyperref and the +longdesc author's three 'basic' packages: gmutils, gmverb and gmiflink. +longdesc As a bonus (and as an example of doc compatibility) driver +longdesc files are provided that may be used to typeset the LaTeX Base. +containersize 46364 +containerchecksum cfe29d7bd5e7936c2a40292fe2518dcd79dbc105f08d3f0dfa11ebdc4693ff207a1b312e6160fad4c089bbe5012697bef1122a893b1d42d59fc39fa5c48d2ccf +doccontainersize 918216 +doccontainerchecksum 68825a5fe89383d68b2829bc7e2fe230d717104a2ec56010bc7e67fcb14f9191bf47594cd0387b490debb5e752670048404a7985ab0b5dc039f4764d7926192e +docfiles size=748 + RELOC/doc/latex/gmdoc/README details="README" + RELOC/doc/latex/gmdoc/basedrivers/doc_gmdoc.tex + RELOC/doc/latex/gmdoc/basedrivers/docstrip_gmdoc.tex + RELOC/doc/latex/gmdoc/basedrivers/source2e_gmdoc.tex + RELOC/doc/latex/gmdoc/gmdoc.pdf details="Package documentation" +runfiles size=42 + RELOC/makeindex/gmdoc/gmglo.ist + RELOC/tex/latex/gmdoc/gmdoc.sty + RELOC/tex/latex/gmdoc/gmdocc.cls + RELOC/tex/latex/gmdoc/gmoldcomm.sty +catalogue-also gmdoc-enhance +catalogue-ctan /macros/latex/contrib/gmdoc +catalogue-license lppl +catalogue-topics doc-supp class +catalogue-version 0.993 + +name gmdoc-enhance +category Package +revision 15878 +shortdesc Some enhancements to the gmdoc package +relocated 1 +longdesc This package provides some enhancements for the gmdoc package: +longdesc nicer formatting for multiple line inline comments, an ability +longdesc to "comment out" some code, and a macro to input other files in +longdesc "normal" LaTeX mode. +containersize 3608 +containerchecksum 481bed630ec444fda66a22656c2cdfcbd931a6743823c36f570ede09038ec4f219ecd1985243a4fc8d852f38512c6b369227f559d3874447144e0cd62d7949a7 +doccontainersize 123036 +doccontainerchecksum 0cbecac4ae6f70ed01a407a9e5fa388f2c142b7bf77d219429d6685bf7d7c6bb3f324694286e6fe49bc2eff287faba901b7eba44f8bde1894e8cb09527c289a8 +docfiles size=59 + RELOC/doc/latex/gmdoc-enhance/README details="Readme" + RELOC/doc/latex/gmdoc-enhance/gmdoc-enhance.pdf details="Package documentation" +srccontainersize 10320 +srccontainerchecksum 131afb02bafe204637f0cd1589db70584071d9f2480d2a11c03de4b0c14ed79500fe0e811a035a761ae4e6084d63a89e1dbcfd40edd24b4715db55d206f5206d +srcfiles size=8 + RELOC/source/latex/gmdoc-enhance/gmdoc-enhance.dtx + RELOC/source/latex/gmdoc-enhance/gmdoc-enhance.ins +runfiles size=3 + RELOC/tex/latex/gmdoc-enhance/gmdoc-enhance.sty +catalogue-also gmdoc +catalogue-ctan /macros/latex/contrib/gmdoc-enhance +catalogue-license lppl +catalogue-topics doc-supp +catalogue-version 0.2 + +name gmiflink +category Package +revision 15878 +shortdesc Simplify usage of \hypertarget and \hyperlink +relocated 1 +longdesc Three hyperref-based macros that simplify usage of \hypertarget +longdesc and \hyperlink: one argument instead of the same one twice. +longdesc Also \gmiflink and \gmifref which typeset plain text instead of +longdesc generating an error or printing '??' if there is no respective +longdesc hypertarget or label. +containersize 3464 +containerchecksum 768353fee03e36d5f13e5ea8ca2cf0925fb5dc3c847680325a0961b78a3ed6c30859bc57de7b927cd9e782f85539c97183687755c31738e1da3cc27a08f52387 +doccontainersize 41656 +doccontainerchecksum 4fea41151ea197efdacd9e5756043b87500af8445769d0d0f69560cb94decd4f097bcdd52041706ada9b1ee7826f3c56aa30db473c472b1c74553cebb5231072 +docfiles size=16 + RELOC/doc/latex/gmiflink/README details="README" + RELOC/doc/latex/gmiflink/gmiflink.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/latex/gmiflink/gmiflink.sty +catalogue-also hyperref +catalogue-ctan /macros/latex/contrib/gmiflink +catalogue-license lppl +catalogue-topics hyper +catalogue-version 0.97 + +name gmp +category Package +revision 21691 +shortdesc Enable integration between MetaPost pictures and LaTeX +relocated 1 +longdesc The package allows integration between MetaPost pictures and +longdesc LaTeX. The main feature is that passing parameters to the +longdesc MetaPost pictures is possible and the picture code can be put +longdesc inside arguments to commands, including \newcommand. +containersize 3912 +containerchecksum 79ec2dd12610086eb5e7b582f5296fe7f1101c20b6d4edf10d47c5dbcdd506ff7c5f326af7600287a148031be060b3e8319d20d8267933b94b6c8a53e7753bf8 +doccontainersize 801544 +doccontainerchecksum d3d4bdbc5b1c4618820247ec101e43c1c28b9e023e7613d5256456424fa95a54f23463ff1336f2586359a6078aa733de77cd7ccb892b367cdd00215ac7b67512 +docfiles size=197 + RELOC/doc/latex/gmp/README details="Readme" + RELOC/doc/latex/gmp/gmp.pdf details="Package documentation" +srccontainersize 25888 +srccontainerchecksum 13c602f735e86066e87231dd299680739af8ab526d55897c8a972b177ddda6a92277c3455208a11184281332d94f924b59dc845b51d7288c7c6ed750c45a3fc0 +srcfiles size=23 + RELOC/source/latex/gmp/gmp.dtx + RELOC/source/latex/gmp/gmp.ins +runfiles size=3 + RELOC/tex/latex/gmp/gmp.sty +catalogue-ctan /macros/latex/contrib/gmp +catalogue-license lppl1.3 +catalogue-topics mp-supp graphics +catalogue-version 1.0 + +name gmutils +category Package +revision 24287 +shortdesc Support macros for other packages +relocated 1 +longdesc Miscellaneous macros used by others of the author's packages. +longdesc Contents of the package: \newgif and other globals; \@ifnextcat +longdesc and \@ifXeTeX; \(Re)storeMacro(s) to override redefinitions; +longdesc \afterfi and friends; commands from relsize, etc.; "almost an +longdesc environment" or redefinition of \begin (\begin* doesn't check +longdesc if the argument environment is defined). +containersize 65972 +containerchecksum af0fa2ec7a3ce1414bf5d48d0bd8ce9de1b96b2bfa4f9c2babc6b27c52d11a7e5024bcf66938f3566cf6cf331b154f7eb4ca9d1cbe7109cde939829ea5be55a5 +doccontainersize 1672196 +doccontainerchecksum f1d6205f39f573b0c9b28f0ebca03b32e20e27c0be12adeb7eb23e12daf41a9590733270661aa29d6b8393dc87855f293437617cd8598f39082db8a33e9281ac +docfiles size=431 + RELOC/doc/latex/gmutils/README details="README" + RELOC/doc/latex/gmutils/gmutils.pdf details="Package documentation" +runfiles size=70 + RELOC/tex/latex/gmutils/gmRCS.sty + RELOC/tex/latex/gmutils/gmampulex.sty + RELOC/tex/latex/gmutils/gmbase.sty + RELOC/tex/latex/gmutils/gmcommand.sty + RELOC/tex/latex/gmutils/gmenvir.sty + RELOC/tex/latex/gmutils/gmlogos.sty + RELOC/tex/latex/gmutils/gmmeta.sty + RELOC/tex/latex/gmutils/gmmw.sty + RELOC/tex/latex/gmutils/gmnotonlypream.sty + RELOC/tex/latex/gmutils/gmparts.sty + RELOC/tex/latex/gmutils/gmrelsize.sty + RELOC/tex/latex/gmutils/gmtypos.sty + RELOC/tex/latex/gmutils/gmurl.sty + RELOC/tex/latex/gmutils/gmutils.sty +catalogue-ctan /macros/latex/contrib/gmutils +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.996 + +name gmverb +category Package +revision 24288 +shortdesc A variant of LaTeX \verb, verbatim and shortvrb +relocated 1 +longdesc A redefinition of \verb and verbatim so that long lines are +longdesc breakable before \ and after { with % as 'hyphen'. Allows you +longdesc to define your own verbatim-like environments (subject to a +longdesc size limit) and allows you to declare any single character as a +longdesc shorthand as in the \MakeShortVerb command of the shortvrb +longdesc package of the LaTeX distribution. The package depends on the +longdesc gmutils package. +containersize 16340 +containerchecksum 18038202bca3493596925d9d7c65612434ccddde4b301134f1f57706e5d2978025fead598751e27a29d23f66ed12306e6092461aac1d9d921ce818b0a49cdfbd +doccontainersize 212068 +doccontainerchecksum 6dfcc27b38639d4a97ed311bf7c6f1faeb1a023abc27d53e272f334b232a52aa0edc030b0c53d6587845da64097496696ceb03cbd6aa13c8ca5ac12c1772860c +docfiles size=54 + RELOC/doc/latex/gmverb/README details="README" + RELOC/doc/latex/gmverb/gmverb.pdf details="Package documentation" +runfiles size=12 + RELOC/tex/latex/gmverb/gmverb.sty +catalogue-ctan /macros/latex/contrib/gmverb +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 0.98 + +name gmverse +category Package +revision 29803 +shortdesc A package for typesetting (short) poems +relocated 1 +longdesc A redefinition of the verse environment to make the \\ command +longdesc optional for line ends and to give it a possibility of optical +longdesc centering and `right-hanging' alignment of lines broken because +longdesc of length. +containersize 10736 +containerchecksum 98692f781fead4dc292648153ca18a05d03f2c44174bce8b2f72e85fd1e98cb5ef0fb67c12f33dc982f1d04958873ea4e78f486fadb0c94544ecb66180ee52bf +doccontainersize 96420 +doccontainerchecksum 7e37c0c2e8443aedd6462251f603e2eef9cbacc45d980d79bf42cdc64b7ab0a5d81f50ae65251c17115265c45e641a5930de640099f04dc8112155f68ce9adf0 +docfiles size=55 + RELOC/doc/latex/gmverse/README details="README" + RELOC/doc/latex/gmverse/gmverse.pdf details="Package documentation" +runfiles size=8 + RELOC/tex/latex/gmverse/gmverse.sty +catalogue-ctan /macros/latex/contrib/gmverse +catalogue-license lppl +catalogue-topics verse +catalogue-version 0.73 + +name gnu-freefont +category Package +revision 29349 +shortdesc A Unicode font, with rather wide coverage +relocated 1 +longdesc The package provides a set of outline (i.e. OpenType) fonts +longdesc covering as much as possible of the Unicode character set. The +longdesc set consists of three typefaces: one monospaced and two +longdesc proportional (one with uniform and one with modulated stroke). +containersize 7094080 +containerchecksum c8ced8afc3b1b9108e5a4a82db54a9a28ac6ba5f4f379062b0d9d8b9724716ca98234a345c06c7d809b1ce609f817f0a9acba1ef8e94ecbf8f1301fd3bc9d248 +doccontainersize 161276 +doccontainerchecksum 3b7adbdabaf996fe8e0cff7e1192cb7f5984103398b22af6f859500a0041a0ce2ac0c70bc3f17abb7294ba80e34baa5cc77639500fa03f1a2c1c93548aa2a816 +docfiles size=231 + RELOC/doc/fonts/gnu-freefont/AUTHORS + RELOC/doc/fonts/gnu-freefont/BUILDING + RELOC/doc/fonts/gnu-freefont/COPYING + RELOC/doc/fonts/gnu-freefont/CREDITS + RELOC/doc/fonts/gnu-freefont/ChangeLog + RELOC/doc/fonts/gnu-freefont/INSTALL + RELOC/doc/fonts/gnu-freefont/Makefile + RELOC/doc/fonts/gnu-freefont/README details="Readme" + RELOC/doc/fonts/gnu-freefont/TROUBLESHOOTING + RELOC/doc/fonts/gnu-freefont/USAGE + RELOC/doc/fonts/gnu-freefont/notes/README-downloads.txt + RELOC/doc/fonts/gnu-freefont/notes/building.txt + RELOC/doc/fonts/gnu-freefont/notes/features.txt + RELOC/doc/fonts/gnu-freefont/notes/maintenance.txt + RELOC/doc/fonts/gnu-freefont/notes/troubleshooting.txt + RELOC/doc/fonts/gnu-freefont/notes/usage.txt + RELOC/doc/fonts/gnu-freefont/notes/webfont_guidelines.txt + RELOC/doc/fonts/gnu-freefont/tools/generate/MacTT + RELOC/doc/fonts/gnu-freefont/tools/generate/OpenType + RELOC/doc/fonts/gnu-freefont/tools/generate/TrueType + RELOC/doc/fonts/gnu-freefont/tools/generate/WOFF + RELOC/doc/fonts/gnu-freefont/tools/generate/buildutils.py + RELOC/doc/fonts/gnu-freefont/tools/generate/buildutils.pyc + RELOC/doc/fonts/gnu-freefont/tools/report/OS2UnicodeRange + RELOC/doc/fonts/gnu-freefont/tools/report/OpenType/UnicodeRanges.py + RELOC/doc/fonts/gnu-freefont/tools/report/OpenType/__init__.py + RELOC/doc/fonts/gnu-freefont/tools/report/kernclasses.py + RELOC/doc/fonts/gnu-freefont/tools/report/ligatureLookups.py + RELOC/doc/fonts/gnu-freefont/tools/report/private_use.py + RELOC/doc/fonts/gnu-freefont/tools/report/range_report.py + RELOC/doc/fonts/gnu-freefont/tools/script-menu/nameBySlot.py + RELOC/doc/fonts/gnu-freefont/tools/script-menu/unnameBySlot.py + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/CheckConformance.pl + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-1.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-1.txt + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-2.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-2.txt + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-3B.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-3B.txt + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/WGL4.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/mes-list-expand.pl + RELOC/doc/fonts/gnu-freefont/tools/test/checkGlyphNumbers.py + RELOC/doc/fonts/gnu-freefont/tools/test/findBackLayers.py + RELOC/doc/fonts/gnu-freefont/tools/test/isMonoMono.py + RELOC/doc/fonts/gnu-freefont/tools/test/ranges/Arabic/arabic_test.py + RELOC/doc/fonts/gnu-freefont/tools/test/ranges/Arabic/generate_arabic_shaping.py + RELOC/doc/fonts/gnu-freefont/tools/test/ranges/Arabic/unicode_joining.py + RELOC/doc/fonts/gnu-freefont/tools/test/validate.py + RELOC/doc/fonts/gnu-freefont/tools/utility/KerningNumerals.pl + RELOC/doc/fonts/gnu-freefont/tools/utility/fontforge-interp.sh + RELOC/doc/fonts/gnu-freefont/tools/utility/freefont-ttf.spec + RELOC/doc/fonts/gnu-freefont/tools/utility/hex_range.py + RELOC/doc/fonts/gnu-freefont/tools/utility/metafont/bulk_eps_import.py + RELOC/doc/fonts/gnu-freefont/tools/utility/special-purpose/makeBraille.py +srccontainersize 4241780 +srccontainerchecksum df7be02fdf1e4559f701b67183237f95c7b6c1b9b22f3b65688bc84d96f97964755397e4cf9039229ecec8b5810d65042ff2d7c101ef7cabbb126e6e9c93b3c5 +srcfiles size=6180 + RELOC/source/fonts/gnu-freefont/FreeMono.sfd + RELOC/source/fonts/gnu-freefont/FreeMonoBold.sfd + RELOC/source/fonts/gnu-freefont/FreeMonoBoldOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeMonoOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeSans.sfd + RELOC/source/fonts/gnu-freefont/FreeSansBold.sfd + RELOC/source/fonts/gnu-freefont/FreeSansBoldOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeSansOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeSerif.sfd + RELOC/source/fonts/gnu-freefont/FreeSerifBold.sfd + RELOC/source/fonts/gnu-freefont/FreeSerifBoldItalic.sfd + RELOC/source/fonts/gnu-freefont/FreeSerifItalic.sfd + RELOC/source/fonts/gnu-freefont/Makefile +runfiles size=4350 + RELOC/fonts/opentype/public/gnu-freefont/FreeMono.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeMonoBold.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeMonoBoldOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeMonoOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSans.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSansBold.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSansBoldOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSansOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerif.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerifBold.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerifBoldItalic.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerifItalic.otf + RELOC/fonts/truetype/public/gnu-freefont/FreeMono.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeMonoBold.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeMonoBoldOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeMonoOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSans.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSansBold.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSansBoldOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSansOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerif.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerifBold.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerifBoldItalic.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerifItalic.ttf +catalogue-contact-repository http://savannah.gnu.org/projects/freefont/ +catalogue-ctan /fonts/gnu-freefont +catalogue-license gpl3 +catalogue-topics font font-proportional font-mono font-serif font-otf font-sfd + +name gnuplottex +category Package +revision 54758 +shortdesc Embed Gnuplot commands in LaTeX documents +relocated 1 +longdesc This package allows you to include Gnuplot graphs in your LaTeX +longdesc documents. The gnuplot code is extracted from the document and +longdesc written to .gnuplot files. Then, if shell escape is used, the +longdesc graph files are automatically processed to graphics or LaTeX +longdesc code files which will then be included in the document. If +longdesc shell escape isn't used, the user will have to manually convert +longdesc the files by running gnuplot on the extracted .gnuplot files. +containersize 3288 +containerchecksum 5bc237b3bfa3b31eb4d6d2fb63280ab89fa929b531ec83dec362947f49ad0316b9107abe3a876f79e4c5b283134c859e4908b300a592aa69fc7ea20b80af7fa9 +doccontainersize 418476 +doccontainerchecksum c0e56811b5b4340c770d61ab605961bcdd5ab1abf72b9fcdb0c13c5e56a7481944aedbab70bf5d2daa90751528f0b9d7efd04a1453c08a4a6e40a46a41a1296d +docfiles size=111 + RELOC/doc/latex/gnuplottex/README details="Readme" + RELOC/doc/latex/gnuplottex/SomeValuesForGnuplot.txt + RELOC/doc/latex/gnuplottex/example-pdf.tex + RELOC/doc/latex/gnuplottex/example.gnuplot + RELOC/doc/latex/gnuplottex/gnuplottex.pdf details="Package documentation" + RELOC/doc/latex/gnuplottex/gpl.txt +srccontainersize 9336 +srccontainerchecksum 9db5deaac39afbef502db7cca3c28d0669803af3d927d6650ff39abe365c39be8dff8d7ae7537ab139fe747b7acd7e9fbc3a66dd30ac8495f30dff143dcbdb5e +srcfiles size=10 + RELOC/source/latex/gnuplottex/gnuplottex.dtx + RELOC/source/latex/gnuplottex/gnuplottex.ins +runfiles size=3 + RELOC/tex/latex/gnuplottex/gnuplottex.sty +catalogue-also context-gnuplot +catalogue-ctan /macros/latex/contrib/gnuplottex +catalogue-license gpl2 +catalogue-topics graphics-inline +catalogue-version 0.9.5 + +name go +category Package +revision 28628 +shortdesc Fonts and macros for typesetting go games +relocated 1 +longdesc The macros provide for nothing more complicated than the +longdesc standard 19x19 board; the fonts are written in Metafont. +containersize 9012 +containerchecksum 772772146ad95f2ebff85a2f3064615c26300a6a4050c1a6c7207d53e12b41477b0936b1c3d182f1c5db0aebd8499de19e0c23283c2bccf753addb2623dfd1be +doccontainersize 3724 +doccontainerchecksum c65516b11156d4fef5104a36cb361bf59be244555233cb5d9692892da06d3bdecd0b09866db136aec177a2bcbacfae6bb41c606f6b9da0329a00c614055905d0 +docfiles size=3 + RELOC/doc/fonts/go/gomaps.ltx +srccontainersize 416 +srccontainerchecksum 54cbaf16bd4a1a9bdd02b7811120cc82269be40e97853d94b1d526eef98e7df8e7ab8de2e7abcdd7e7db4c1f7fdf3d7355d511ed57c44c09643ea291e5b1c6d0 +srcfiles size=2 + RELOC/source/fonts/go/go.bat + RELOC/source/fonts/go/go1.bat +runfiles size=77 + RELOC/fonts/source/public/go/go.mf + RELOC/fonts/source/public/go/go10.mf + RELOC/fonts/source/public/go/go15.mf + RELOC/fonts/source/public/go/go1bla10.mf + RELOC/fonts/source/public/go/go1bla15.mf + RELOC/fonts/source/public/go/go1bla20.mf + RELOC/fonts/source/public/go/go1black.mf + RELOC/fonts/source/public/go/go1whi10.mf + RELOC/fonts/source/public/go/go1whi15.mf + RELOC/fonts/source/public/go/go1whi20.mf + RELOC/fonts/source/public/go/go1white.mf + RELOC/fonts/source/public/go/go20.mf + RELOC/fonts/source/public/go/go2bla10.mf + RELOC/fonts/source/public/go/go2bla15.mf + RELOC/fonts/source/public/go/go2bla20.mf + RELOC/fonts/source/public/go/go2black.mf + RELOC/fonts/source/public/go/go2whi10.mf + RELOC/fonts/source/public/go/go2whi15.mf + RELOC/fonts/source/public/go/go2whi20.mf + RELOC/fonts/source/public/go/go2white.mf + RELOC/fonts/source/public/go/gosign50.mf + RELOC/fonts/tfm/public/go/go10.tfm + RELOC/fonts/tfm/public/go/go15.tfm + RELOC/fonts/tfm/public/go/go1bla10.tfm + RELOC/fonts/tfm/public/go/go1bla15.tfm + RELOC/fonts/tfm/public/go/go1bla20.tfm + RELOC/fonts/tfm/public/go/go1whi10.tfm + RELOC/fonts/tfm/public/go/go1whi15.tfm + RELOC/fonts/tfm/public/go/go1whi20.tfm + RELOC/fonts/tfm/public/go/go20.tfm + RELOC/fonts/tfm/public/go/go2bla10.tfm + RELOC/fonts/tfm/public/go/go2bla15.tfm + RELOC/fonts/tfm/public/go/go2bla20.tfm + RELOC/fonts/tfm/public/go/go2whi10.tfm + RELOC/fonts/tfm/public/go/go2whi15.tfm + RELOC/fonts/tfm/public/go/go2whi20.tfm + RELOC/fonts/tfm/public/go/gosign50.tfm + RELOC/tex/latex/go/go.sty +catalogue-also igo +catalogue-ctan /fonts/go +catalogue-license pd +catalogue-topics games font font-symbol font-mf + +name gobble +category Package +revision 56291 +shortdesc More gobble macros for PlainTeX and LaTeX +relocated 1 +longdesc The LaTeX package gobble includes several gobble macros not +longdesc included in the LaTeX kernel. These macros remove a number of +longdesc arguments after them, a feature regulary used inside other +longdesc macros. This includes gobble macros for optional arguments. The +longdesc LaTeX package gobble-user provides these macros at the user +longdesc level, i.e. using names without @ so that these can be used +longdesc without \makeatletter and \makeatother. The same macros are +longdesc provided inside .tex files for use with plain-TeX or other TeX +longdesc formats. However, the gobble macros for optional macros require +longdesc \@ifnextchar to be defined. +containersize 1564 +containerchecksum 1206d7ff1b34bed829bd23ae88b0505e699a30088983d8f7cec7ff77f87774406e82442fc51f1f77d3475474785087d4f2f29e62fec34ef1db26d8a52a904970 +doccontainersize 157648 +doccontainerchecksum 9d862847c9b2596c061cf898e23b0a1188fabb7636f8a5dfded5b08fd4422531fbbc6932af788c9a15b6805ecb4c254c82a37700caa03975fc2ff8c6f3f539cc +docfiles size=41 + RELOC/doc/generic/gobble/README details="Readme" + RELOC/doc/generic/gobble/gobble-user.tex + RELOC/doc/generic/gobble/gobble.pdf details="Package documentation" +srccontainersize 3288 +srccontainerchecksum 6e9178359020f754435ce675f7c2fc8a184f84fe86e990ecd254eeef283ada2576a8f634034fcd083d199d9e92bbc874b91a724739740e707525e83e1227d0a2 +srcfiles size=4 + RELOC/source/generic/gobble/gobble.dtx + RELOC/source/generic/gobble/gobble.ins +runfiles size=3 + RELOC/tex/generic/gobble/gobble-user.sty + RELOC/tex/generic/gobble/gobble.sty + RELOC/tex/generic/gobble/gobble.tex +catalogue-contact-bugs https://sourceforge.net/p/latex-gobble/tickets/ +catalogue-contact-home https://sourceforge.net/p/latex-gobble/ +catalogue-contact-repository https://sourceforge.net/p/latex-gobble/code/ci/default/tree/ +catalogue-ctan /macros/generic/gobble +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.2 + +name gofonts +category Package +revision 54512 +shortdesc GoSans and GoMono fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the GoSans and GoMono families of fonts designed by +longdesc the Bigelow & Holmes foundry for the Go project. GoSans is +longdesc available in three weights: Regular, Medium, and Bold (with +longdesc corresponding italics). GoMono is available in regular and +longdesc bold, with italics. Notes on the design may be found at +longdesc https://blog.golang.org/go-fonts. +execute addMap go.map +containersize 1361732 +containerchecksum 277e9765c5568f84df7fb7fb0004a4ab9cf5dd2beddfe8ba1beba2db069213bef814ce07a714262701dbaa1e371d311dc99052e1239c18d321b7044b4f29564d +doccontainersize 304036 +doccontainerchecksum 831382dcea6b990aadfe38ef630951f0cb10ab093581ad67e3132d69d00a89cd64edb8350fea729fc2c02960a38e564b893ee07b203e3c79ec184aa18f544baf +docfiles size=81 + RELOC/doc/fonts/gofonts/License + RELOC/doc/fonts/gofonts/README details="Readme" + RELOC/doc/fonts/gofonts/go-samples.pdf details="Font samples" + RELOC/doc/fonts/gofonts/go-samples.tex + RELOC/doc/fonts/gofonts/gofonts.pdf details="Design notes" +runfiles size=897 + RELOC/fonts/enc/dvips/gofonts/go_2qimm2.enc + RELOC/fonts/enc/dvips/gofonts/go_4whde3.enc + RELOC/fonts/enc/dvips/gofonts/go_73mlya.enc + RELOC/fonts/enc/dvips/gofonts/go_c3licl.enc + RELOC/fonts/enc/dvips/gofonts/go_dhlxve.enc + RELOC/fonts/enc/dvips/gofonts/go_icpxvt.enc + RELOC/fonts/enc/dvips/gofonts/go_iypgt7.enc + RELOC/fonts/enc/dvips/gofonts/go_zwiz3b.enc + RELOC/fonts/map/dvips/gofonts/go.map + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ts1.tfm + RELOC/fonts/truetype/bh/gofonts/Go-Bold-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Bold.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Medium-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Medium.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Regular-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Regular.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Bold-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Bold.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Regular-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Regular.ttf + RELOC/fonts/truetype/bh/gofonts/GoSmallcaps-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/GoSmallcaps.ttf + RELOC/fonts/type1/bh/gofonts/Go-Bold-Italic.pfb + RELOC/fonts/type1/bh/gofonts/Go-Bold.pfb + RELOC/fonts/type1/bh/gofonts/Go-Medium-Italic.pfb + RELOC/fonts/type1/bh/gofonts/Go-Medium.pfb + RELOC/fonts/type1/bh/gofonts/Go-Regular-Italic.pfb + RELOC/fonts/type1/bh/gofonts/Go-Regular.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Bold-Italic.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Bold.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Regular-Italic.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Regular.pfb + RELOC/fonts/type1/bh/gofonts/GoSmallcaps-Italic.pfb + RELOC/fonts/type1/bh/gofonts/GoSmallcaps.pfb + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-ot1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-t1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-ts1.vf + RELOC/tex/latex/gofonts/GoMono.sty + RELOC/tex/latex/gofonts/GoSans.sty + RELOC/tex/latex/gofonts/LGRGo-TLF.fd + RELOC/tex/latex/gofonts/LGRGoMono-TLF.fd + RELOC/tex/latex/gofonts/LY1Go-TLF.fd + RELOC/tex/latex/gofonts/LY1GoMono-TLF.fd + RELOC/tex/latex/gofonts/OT1Go-TLF.fd + RELOC/tex/latex/gofonts/OT1GoMono-TLF.fd + RELOC/tex/latex/gofonts/T1Go-TLF.fd + RELOC/tex/latex/gofonts/T1GoMono-TLF.fd + RELOC/tex/latex/gofonts/TS1Go-TLF.fd + RELOC/tex/latex/gofonts/TS1GoMono-TLF.fd +catalogue-ctan /fonts/gofonts +catalogue-license other-free lppl +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 + +name gost +category Package +revision 57616 +shortdesc BibTeX styles to format according to GOST +relocated 1 +longdesc BibTeX styles to format bibliographies in English, Russian or +longdesc Ukrainian according to GOST 7.0.5-2008 or GOST 7.1-2003. Both +longdesc 8-bit and Unicode (UTF-8) versions of each BibTeX style, in +longdesc each case offering a choice of sorted and unsorted. Further, a +longdesc set of three styles (which do not conform to current standards) +longdesc are retained for backwards compatibility. +containersize 17432 +containerchecksum 13bd2ec15fb4b61fa1a318092e27f9e94761af1fbb379e52c5143f10802a4bb77be35f152e33973d078e7e3d4554f89f66fc344a7efec9d5a1e0593f4eea0e5e +doccontainersize 1804172 +doccontainerchecksum af9cbcd39b0ed78157040634ea949152f972a02e2b19c4ffc679decfc4d76b161b591ebe915298bdb6927bfdf70b6a6e80bd119f52355fceec8829b20909c4c5 +docfiles size=1566 + RELOC/doc/bibtex/gost/README + RELOC/doc/bibtex/gost/README.md details="Readme" language="en" + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex01.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex02.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex03.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex04.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex05.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex06.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex07.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex08.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex09.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex10.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex11.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex12.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex13.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex14.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex15.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex16.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex17.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex18.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex19.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex20.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex21.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex22.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex23.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex24.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex25.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex26.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex27.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex28.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex29.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex30.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex31.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex32.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex33.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex34.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex35.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex36.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex37.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex38.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex39.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex40.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex41.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex42.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex43.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex44.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex45.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex46.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex47.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex48.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex49.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex50.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex51.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex52.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex53.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex54.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex55.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex56.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex57.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex58.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex59.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex60.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex61.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex62.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex63.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex64.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex65.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex66.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex67.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex68.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex69.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex70.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex71.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex72.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex73.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex74.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex75.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex76.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex77.bib + RELOC/doc/bibtex/gost/examples/cp1251/gost.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2003.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2003.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008-customized.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008-customized.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008l.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008l.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008n.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008n.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008ns.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008ns.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008s.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008s.tex + RELOC/doc/bibtex/gost/examples/cp1251/make-examples-on-win-cp1251.cmd + RELOC/doc/bibtex/gost/examples/utf8/bib/ex01.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex02.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex03.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex04.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex05.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex06.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex07.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex08.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex09.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex10.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex11.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex12.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex13.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex14.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex15.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex16.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex17.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex18.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex19.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex20.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex21.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex22.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex23.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex24.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex25.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex26.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex27.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex28.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex29.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex30.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex31.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex32.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex33.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex34.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex35.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex36.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex37.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex38.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex39.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex40.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex41.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex42.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex43.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex44.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex45.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex46.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex47.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex48.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex49.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex50.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex51.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex52.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex53.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex54.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex55.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex56.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex57.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex58.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex59.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex60.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex61.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex62.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex63.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex64.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex65.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex66.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex67.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex68.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex69.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex70.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex71.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex72.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex73.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex74.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex75.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex76.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex77.bib + RELOC/doc/bibtex/gost/examples/utf8/make-examples-on-win-utf8.cmd + RELOC/doc/bibtex/gost/examples/utf8/ugost.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2003.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2003.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008-customized.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008-customized.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008l.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008l.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008n.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008n.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008ns.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008ns.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008s.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008s.tex + RELOC/doc/bibtex/gost/gost.pdf details="Package documentation" language="en" +srccontainersize 32124 +srccontainerchecksum d375e1f17a9693ed87a840ea11157b5c496ad2495dfeb21bcf67e0b82ee6866ff7072c132c0bbadd5655ec50d791454d63290c32be04be63eccb11617ae58223 +srcfiles size=43 + RELOC/source/bibtex/gost/gost.dtx + RELOC/source/bibtex/gost/gost.ins +runfiles size=267 + RELOC/bibtex/bst/gost/gost2003.bst + RELOC/bibtex/bst/gost/gost2003s.bst + RELOC/bibtex/bst/gost/gost2008.bst + RELOC/bibtex/bst/gost/gost2008l.bst + RELOC/bibtex/bst/gost/gost2008ls.bst + RELOC/bibtex/bst/gost/gost2008n.bst + RELOC/bibtex/bst/gost/gost2008ns.bst + RELOC/bibtex/bst/gost/gost2008s.bst + RELOC/bibtex/bst/gost/ugost2003.bst + RELOC/bibtex/bst/gost/ugost2003s.bst + RELOC/bibtex/bst/gost/ugost2008.bst + RELOC/bibtex/bst/gost/ugost2008l.bst + RELOC/bibtex/bst/gost/ugost2008ls.bst + RELOC/bibtex/bst/gost/ugost2008n.bst + RELOC/bibtex/bst/gost/ugost2008ns.bst + RELOC/bibtex/bst/gost/ugost2008s.bst + RELOC/bibtex/csf/gost/cp1251.csf + RELOC/bibtex/csf/gost/koi8u.csf + RELOC/bibtex/csf/gost/ruscii.csf + RELOC/bibtex/csf/gost/utf8cyrillic.csf +catalogue-also biblatex-gost +catalogue-ctan /biblio/bibtex/contrib/gost +catalogue-license lppl1.3c +catalogue-topics bibtex-sty russian std-conform +catalogue-version 1.2l + +name gothic +category Package +revision 49869 +shortdesc A collection of old German-style fonts +relocated 1 +longdesc A collection of fonts that reproduce those used in "old German" +longdesc printing and handwriting. The set comprises Gothic, Schwabacher +longdesc and Fraktur fonts, a pair of handwriting fonts, Sutterlin and +longdesc Schwell, and a font containing decorative initials. In +longdesc addition, there are two re-encoding packages for Haralambous's +longdesc fonts, providing T1, using virtual fonts, and OT1 and T1, using +longdesc Metafont. +containersize 129612 +containerchecksum 0c3fafd295fb087d3ace144df7253ff09fb3d79091dcd49003964a7ce57308cb4e86f3c3158a5e3d7e509e9958f77d5cc6da03fc41b585ec4ea397822ac29a7a +doccontainersize 193528 +doccontainerchecksum 8f2495f3f9c72e5a5b01e17e1a9f80bae3ded97b902765dd2fa9b43ff87769a9ac2b972aa660344bcc8e29af3824985c49639477ee96213c0ee7d9d411e8ebad +docfiles size=61 + RELOC/doc/fonts/gothic/00readme_fraktur.msg + RELOC/doc/fonts/gothic/README.sueterlin + RELOC/doc/fonts/gothic/README.yinit + RELOC/doc/fonts/gothic/suet.pdf + RELOC/doc/fonts/gothic/suet.tex + RELOC/doc/fonts/gothic/yinit.pdf +srccontainersize 448 +srccontainerchecksum f6e600c736989ac81cde1fd51306ddb520e693b6a5ee8338c3413b5656aaacade8d4f1ca7aa316589c4d49fa8b96b598637792825b03ab0fe3efa4bb584067b2 +srcfiles size=1 + RELOC/source/fonts/gothic/mfall.bat +runfiles size=246 + RELOC/fonts/source/public/gothic/cmfrabase.mf + RELOC/fonts/source/public/gothic/cmfrak.mf + RELOC/fonts/source/public/gothic/cmfraklow.mf + RELOC/fonts/source/public/gothic/cmfrakmis.mf + RELOC/fonts/source/public/gothic/cmfraknum.mf + RELOC/fonts/source/public/gothic/cmfrakoth.mf + RELOC/fonts/source/public/gothic/cmfrakupp.mf + RELOC/fonts/source/public/gothic/dcfrak.mf + RELOC/fonts/source/public/gothic/schwell.mf + RELOC/fonts/source/public/gothic/su-lig.mf + RELOC/fonts/source/public/gothic/su-low.mf + RELOC/fonts/source/public/gothic/su-spec.mf + RELOC/fonts/source/public/gothic/su-upp.mf + RELOC/fonts/source/public/gothic/suet14.mf + RELOC/fonts/source/public/gothic/xxfrak.mf + RELOC/fonts/source/public/gothic/yfrabase.mf + RELOC/fonts/source/public/gothic/yfrak.mf + RELOC/fonts/source/public/gothic/yfraklow.mf + RELOC/fonts/source/public/gothic/yfrakmis.mf + RELOC/fonts/source/public/gothic/yfraknum.mf + RELOC/fonts/source/public/gothic/yfrakoth.mf + RELOC/fonts/source/public/gothic/yfrakupp.mf + RELOC/fonts/source/public/gothic/ygotbase.mf + RELOC/fonts/source/public/gothic/ygoth.mf + RELOC/fonts/source/public/gothic/ygothgen.mf + RELOC/fonts/source/public/gothic/ygothlig.mf + RELOC/fonts/source/public/gothic/ygothlow.mf + RELOC/fonts/source/public/gothic/ygothmis.mf + RELOC/fonts/source/public/gothic/ygothnum.mf + RELOC/fonts/source/public/gothic/ygothupp.mf + RELOC/fonts/source/public/gothic/yinit.mf + RELOC/fonts/source/public/gothic/yinitA.mf + RELOC/fonts/source/public/gothic/yinitB.mf + RELOC/fonts/source/public/gothic/yinitC.mf + RELOC/fonts/source/public/gothic/yinitD.mf + RELOC/fonts/source/public/gothic/yinitE.mf + RELOC/fonts/source/public/gothic/yinitF.mf + RELOC/fonts/source/public/gothic/yinitG.mf + RELOC/fonts/source/public/gothic/yinitH.mf + RELOC/fonts/source/public/gothic/yinitJ.mf + RELOC/fonts/source/public/gothic/yinitK.mf + RELOC/fonts/source/public/gothic/yinitL.mf + RELOC/fonts/source/public/gothic/yinitM.mf + RELOC/fonts/source/public/gothic/yinitN.mf + RELOC/fonts/source/public/gothic/yinitO.mf + RELOC/fonts/source/public/gothic/yinitP.mf + RELOC/fonts/source/public/gothic/yinitQ.mf + RELOC/fonts/source/public/gothic/yinitR.mf + RELOC/fonts/source/public/gothic/yinitS.mf + RELOC/fonts/source/public/gothic/yinitT.mf + RELOC/fonts/source/public/gothic/yinitU.mf + RELOC/fonts/source/public/gothic/yinitV.mf + RELOC/fonts/source/public/gothic/yinitW.mf + RELOC/fonts/source/public/gothic/yinitX.mf + RELOC/fonts/source/public/gothic/yinitY.mf + RELOC/fonts/source/public/gothic/yinitZ.mf + RELOC/fonts/source/public/gothic/yintbase.mf + RELOC/fonts/source/public/gothic/ysmfrak.mf + RELOC/fonts/source/public/gothic/yswab.mf + RELOC/fonts/source/public/gothic/yswabase.mf + RELOC/fonts/source/public/gothic/yswablow.mf + RELOC/fonts/source/public/gothic/yswabmis.mf + RELOC/fonts/source/public/gothic/yswabnum.mf + RELOC/fonts/source/public/gothic/yswabupp.mf + RELOC/fonts/tfm/public/gothic/cmfrak.tfm + RELOC/fonts/tfm/public/gothic/schwell.tfm + RELOC/fonts/tfm/public/gothic/suet14.tfm + RELOC/fonts/tfm/public/gothic/yfrak.tfm + RELOC/fonts/tfm/public/gothic/ygoth.tfm + RELOC/fonts/tfm/public/gothic/yinit.tfm + RELOC/fonts/tfm/public/gothic/ysmfrak.tfm + RELOC/fonts/tfm/public/gothic/yswab.tfm +catalogue-ctan /fonts/gothic +catalogue-license collection +catalogue-topics font font-mf font-collection font-gothic + +name gotoh +category Package +revision 44764 +shortdesc An implementation of the Gotoh sequence alignment algorithm +relocated 1 +longdesc This package calculates biological sequence alignment with the +longdesc Gotoh algorithm. The package also provides an interface to +longdesc control various settings including algorithm parameters. +containersize 2632 +containerchecksum 478d51d4f8af849180d1e21ea21c6404f6eb1d13cd70d232f7002f62a588ed2de40e2950699c1bc0e5442069a957b05f3128430ef421311737cf55a6df868a12 +doccontainersize 291976 +doccontainerchecksum 3aa9837e81bc59adaba5b1cc3908738451fefe2645bf1422e0c6b119e4ff94ad85a7c2ddbae798e1e1ced95a530ab95b2f7a5a92da827c9f6d9bdc574b5f3231 +docfiles size=74 + RELOC/doc/latex/gotoh/LICENSE + RELOC/doc/latex/gotoh/README.md details="Readme" + RELOC/doc/latex/gotoh/gotoh.pdf details="Package documentation" +srccontainersize 8224 +srccontainerchecksum 8ae972cc1f0095c442241e5340c3688021253d135167a89c67000c74a53418c48c3fa13b4b2007dbbf598abd1445ef06a9113a32a1fa37b0b8a5dca6c050ba5e +srcfiles size=9 + RELOC/source/latex/gotoh/gotoh.dtx + RELOC/source/latex/gotoh/gotoh.ins +runfiles size=4 + RELOC/tex/latex/gotoh/gotoh.sty +catalogue-contact-repository https://github.com/wtsnjp/Gotoh +catalogue-ctan /macros/latex/contrib/gotoh +catalogue-license mit +catalogue-topics biology +catalogue-version 1.1 + +name grabbox +category Package +revision 51052 +shortdesc Read an argument into a box and execute the code afterwards +relocated 1 +longdesc The package provides the command \grabbox, which grabs an +longdesc argument into a box and executes the code afterwards. +containersize 1608 +containerchecksum d56aedb2c60216ff18af9cc2f2bce0c646545becf973c7d791db5a17cf593e6677c3bca7134d9d663e6826c249e0ee737128ff68184200f1cf7c09c308508db3 +doccontainersize 353436 +doccontainerchecksum 584d8fc20bb49a9486426eea0c7694461e904375bd9af4d0030394d65c1dae8d97451244decfe3c00a59ee7ba92a5e8b5fcfdbec6668cc1ee3652657b7b04330 +docfiles size=87 + RELOC/doc/latex/grabbox/README.md details="Readme" + RELOC/doc/latex/grabbox/grabbox.pdf details="Package documentation" +srccontainersize 4336 +srccontainerchecksum a82cbee93e9dbc9a2485f13783275304d11920ea201458175dface98da3545b4266be0402f4d39fe3f9f0a0adfdc2210244982e09fed094b7487385b65bb0808 +srcfiles size=4 + RELOC/source/latex/grabbox/grabbox.dtx +runfiles size=1 + RELOC/tex/latex/grabbox/grabbox.sty +catalogue-contact-repository https://gitlass.de/jonathan/grabbox +catalogue-ctan /macros/latex/contrib/grabbox +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 1.4 + +name gradientframe +category Package +revision 21387 +shortdesc Simple gradient frames around objects +relocated 1 +longdesc The package provides a means of drawing graded frames around +longdesc objects. The gradients of the frames are drawn using the color +longdesc package. +containersize 1368 +containerchecksum 31612230548e2167c7f1d6a13029ecc202675d6ae3e681fd915d38aa116374214916155453616da51ef3dadab06955fcbfa9bc383f12b5008adaa8a60e24e6a1 +doccontainersize 235196 +doccontainerchecksum 8b010be9e222609d13015176dee4bcc196d953caf7a8c1814e49f9e50325bc33362975338241bd5cef27d59516114113bd5ac81e3dcc6e89ea7f4d53465b3cff +docfiles size=65 + RELOC/doc/latex/gradientframe/README details="Readme" + RELOC/doc/latex/gradientframe/gradientframe.pdf details="Package documentation" +srccontainersize 4360 +srccontainerchecksum 7ac2eaaff343101c1e9501104e2be138bbbf85d009c2eff98f10876ee814762ac2198bc800ca43b9573e206241b9e3f196ab24e053078f78138415db8ed8fb51 +srcfiles size=4 + RELOC/source/latex/gradientframe/gradientframe.dtx +runfiles size=1 + RELOC/tex/latex/gradientframe/gradientframe.sty +catalogue-ctan /macros/latex/contrib/gradientframe +catalogue-license lppl1.3 +catalogue-topics decoration +catalogue-version 0.2 + +name gradstudentresume +category Package +revision 38832 +shortdesc A generic template for graduate student resumes +relocated 1 +longdesc The package offers a template for graduate students writing an +longdesc academic CV. The goal is to create a flexible template that can +longdesc be customized based on each specific individual's needs. +containersize 1704 +containerchecksum b66b3b8f7cf16f17758e4dae3bcd45f6e6e5cbc0dcfd6fc42f8dbc08abb572f16b96d5de4ba634b27cd16a1c4177bc62644d3eb5ac6060e66d9ca6d3f5df4eee +doccontainersize 2924 +doccontainerchecksum e7b166b87a5dce9941d6bd931dec91124a118ba127075aedbe70fc9fe415a8083911f90f094ddede551eef197baee9cfa4ab6ac65c8ae081cd8938f872ad7bb2 +docfiles size=3 + RELOC/doc/latex/gradstudentresume/README.txt details="Readme" + RELOC/doc/latex/gradstudentresume/example.tex +runfiles size=1 + RELOC/tex/latex/gradstudentresume/gradstudentresume.cls +catalogue-ctan /macros/latex/contrib/gradstudentresume +catalogue-license lppl1.3 +catalogue-topics cv class + +name grafcet +category Package +revision 22509 +shortdesc Draw Grafcet/SFC with TikZ +relocated 1 +longdesc The package provides a library (GRAFCET) that can draw Grafcet +longdesc Sequential Function Chart (SFC) diagrams, in accordance with EN +longdesc 60848, using Pgf/TikZ. L'objectif de la librairie GRAFCET est +longdesc de permettre le trace de grafcet selon la norme EN 60848 a +longdesc partir de Pgf/TikZ. +containersize 3780 +containerchecksum d322b1b45762c65232f6f66adcc12955d85d4bfddc08655cba8e11903f6403f2031a78d7e566f4d9b5eaf950aa8d2a53472038e204a1d18517c754c379c60bc6 +doccontainersize 294584 +doccontainerchecksum b02bfb612cd5fd85c1839307a016bfc4c3d472ddbd591d1318bd7c5fcca42cc1200da07f2105ec429768cb0f9270273425b01df1242e475946bd37658e692f41 +docfiles size=119 + RELOC/doc/latex/grafcet/README + RELOC/doc/latex/grafcet/grafcet.pdf details="Package documentation" language="fr" + RELOC/doc/latex/grafcet/grafcet.tex +runfiles size=5 + RELOC/tex/latex/grafcet/grafcet.sty +catalogue-also tikz-sfc +catalogue-contact-home http://sciences-indus-cpge.papanicola.info/Grafcet-avec-pgf-Tikz +catalogue-ctan /graphics/pgf/contrib/grafcet +catalogue-license lppl1 +catalogue-topics diagram pgf-tikz +catalogue-version 1.3.5 + +name grant +category Package +revision 56852 +shortdesc Classes for formatting federal grant proposals +relocated 1 +longdesc LaTeX classes for formatting federal grant proposals: grant: +longdesc Base class for formatting grant proposals grant-arl: Army +longdesc Research Laboratory grant-darpa: Defense Advanced Research +longdesc Projects Agency grant-doe: Department of Energy grant-nih: +longdesc National Institutes of Health grant-nrl: Naval Research +longdesc Laboratory grant-nsf: National Science Foundation grant-onr: +longdesc Office of Naval Research +containersize 5228 +containerchecksum 212fec263131499530ecb81d7dd23ad5d162928d4bf8a888b29c190f15d1d15df71f50ba5c243cc1cfffd324cde3362e98d2932e7562f69cdb77eb09025ac7cd +doccontainersize 110608 +doccontainerchecksum 5170e7f01087c8198220977c1c5bef2bcd2d1a2b824122a9727fb1504576433d682caaa6c9a93454aab756dcf654875fe129c0fbe32452934b1a8b08fcac079e +docfiles size=31 + RELOC/doc/latex/grant/LICENSE + RELOC/doc/latex/grant/README.md details="Package README" + RELOC/doc/latex/grant/grant.pdf details="User manual" +srccontainersize 6008 +srccontainerchecksum 7894584e5cd67051423ec0febc19e67ddb83e6e183748f9bbe7f037073f8f3d271a6903b535cf699960ea8e8bb5a7fd47a8108cd7ca32e12d309133b9497248d +srcfiles size=9 + RELOC/source/latex/grant/grant.dtx + RELOC/source/latex/grant/grant.ins +runfiles size=12 + RELOC/tex/latex/grant/grant-afosr.cls + RELOC/tex/latex/grant/grant-aro.cls + RELOC/tex/latex/grant/grant-darpa.cls + RELOC/tex/latex/grant/grant-doe.cls + RELOC/tex/latex/grant/grant-nih.cls + RELOC/tex/latex/grant/grant-nrl.cls + RELOC/tex/latex/grant/grant-nsf.cls + RELOC/tex/latex/grant/grant-onr.cls + RELOC/tex/latex/grant/grant.cls +catalogue-ctan /macros/latex/contrib/grant +catalogue-license mit +catalogue-topics class proposal +catalogue-version 0.0.5 + +name graph35 +category Package +revision 47522 +shortdesc Draw keys and screen items of several Casio calculators +relocated 1 +longdesc This package defines commands to draw the Casio Graph 35 / +longdesc fx-9750GII calculator (and other models). It can draw the whole +longdesc calculator, or parts of it (individual keys, part of the +longdesc screen, etc.). It was written to typeset documents instructing +longdesc stundents how to use their calculator. +containersize 23260 +containerchecksum c9e2cb847614a7c21259b7b4e28ea1134d900049ca55da63990ac1f2c733e3b567bfae48de46b1e4b6b8faa9b4e0d4f9202bb00327ff33a899380dc3496214f1 +doccontainersize 2113596 +doccontainerchecksum 21a04b52c476b78142239e3db4165267b51ba596c2c7a95b175f323cf1e78b0bdcd324f55f817cfd8b2b6b7434200b060b51165e3468ee009d295eed752d1e88 +docfiles size=734 + RELOC/doc/latex/graph35/CHANGELOG.md + RELOC/doc/latex/graph35/LICENSE.txt + RELOC/doc/latex/graph35/README.md details="Readme" + RELOC/doc/latex/graph35/graph35-en.pdf details="Package documentation in English" + RELOC/doc/latex/graph35/graph35-fr.pdf details="Package documentation in French" +srccontainersize 13016 +srccontainerchecksum 4c2f073a22fea162e1c3347a74c60f680d5d2088143fd1e6634d4bf2884131c6c8a8c267531a04db705acf2bf2f756607d8164cf81659259f92ba600c7b22427 +srcfiles size=18 + RELOC/source/latex/graph35/graph35.dtx + RELOC/source/latex/graph35/graph35.ins +runfiles size=66 + RELOC/tex/latex/graph35/graph35-keys.sty + RELOC/tex/latex/graph35/graph35-pixelart.sty + RELOC/tex/latex/graph35/graph35.sty +catalogue-contact-bugs https://framagit.org/spalax/graph35/issues +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-license lppl1.3 +catalogue-topics graphics teaching +catalogue-version 0.1.1 + +name graphbox +category Package +revision 46360 +shortdesc Extend graphicx to improve placement of graphics +relocated 1 +longdesc Graphbox is an extension of the standard graphicx LaTeX2e +longdesc package to allow the placement of graphics relative to the +longdesc "current position" using additional optional arguments of +longdesc \includegraphics. For example, changing the vertical alignment +longdesc is convenient for using graphics as elements of (mathematical) +longdesc formulae. Options for shifting, smashing and hiding the +longdesc graphics may be useful in support, for example, of the beamer +longdesc framework. +containersize 1912 +containerchecksum d78f870b4cd54f7c6819413fd8acf0e3e1fe9b3b44f3b68ff3a20ad51aa6fde69c52b336b57285db1f6d5465204beb8a1179f918a71922889297cf6925282d14 +doccontainersize 274736 +doccontainerchecksum 342c9018116e80ebf3414358320df55e456581630e7e266ff868e6c624baec0b7209ad3895d3232cd0bf35a9677b8c3db800b7772606afa928ed3424ac16c71f +docfiles size=73 + RELOC/doc/latex/graphbox/README.txt details="Readme" + RELOC/doc/latex/graphbox/gboxsamp.mps + RELOC/doc/latex/graphbox/gboxsamp.tex + RELOC/doc/latex/graphbox/graphbox.pdf details="Package documentation" +srccontainersize 8612 +srccontainerchecksum 1e97e3a1a91d007309c091fde6f05a7c1b062b715ee1f35051b20ad5fa119ccd415fa3741cf0d5e4f2a090ee9acb090c06b5467294ca26ac8f25a11971ca7530 +srcfiles size=9 + RELOC/source/latex/graphbox/graphbox.dtx + RELOC/source/latex/graphbox/graphbox.ins +runfiles size=2 + RELOC/tex/latex/graphbox/graphbox.sty +catalogue-ctan /macros/latex/contrib/graphbox +catalogue-license lppl1.3 +catalogue-topics graphics graphics-incl +catalogue-version 1.1 + +name graphics +category Package +revision 56514 +catalogue latex-graphics +shortdesc The LaTeX standard graphics bundle +relocated 1 +longdesc This is a collection of LaTeX packages for: producing colour +longdesc including graphics (eg PostScript) files rotation and scaling +longdesc of text in LaTeX documents. It comprises the packages color, +longdesc graphics, graphicx, trig, epsfig, keyval, and lscape. +depend graphics-cfg +depend graphics-def +containersize 15112 +containerchecksum a04c805985e40b4db0abe1f308fe9f2a0ca4d1736e38d8390294c648935ba1d10ed2c0a16af0eda55736f699359c38e6117487a2c37e2c0d73ce588fbe438e17 +doccontainersize 2003520 +doccontainerchecksum 34382cbc4b6d48e60b00ec9eb1fbfbe786d339206e7c7ee3e33163ac41319e0646382745760d546b5946f54ae53882d8dff88bac2c0db117185be66f2f450673 +docfiles size=623 + RELOC/doc/latex/graphics/README.md details="Readme" + RELOC/doc/latex/graphics/cat.eps + RELOC/doc/latex/graphics/changes.txt + RELOC/doc/latex/graphics/color.pdf + RELOC/doc/latex/graphics/drivers.pdf + RELOC/doc/latex/graphics/epsfig.pdf + RELOC/doc/latex/graphics/graphics.pdf + RELOC/doc/latex/graphics/graphicx.pdf + RELOC/doc/latex/graphics/grfguide.pdf details="Bundle documentation" + RELOC/doc/latex/graphics/grfguide.tex + RELOC/doc/latex/graphics/keyval.pdf + RELOC/doc/latex/graphics/lscape.pdf + RELOC/doc/latex/graphics/rotating.pdf + RELOC/doc/latex/graphics/rotex.pdf + RELOC/doc/latex/graphics/rotex.tex + RELOC/doc/latex/graphics/trig.pdf +srccontainersize 52100 +srccontainerchecksum f34cac380d7a42ad97f52aaa07bba40194d88c51905ae8e36b3559cd7dbea0152fb0ab09da353aa694317c360d7abe649b12477f9e2a59a8cb280175df4b5e59 +srcfiles size=64 + RELOC/source/latex/graphics/color.dtx + RELOC/source/latex/graphics/drivers.dtx + RELOC/source/latex/graphics/epsfig.dtx + RELOC/source/latex/graphics/graphics-drivers.ins + RELOC/source/latex/graphics/graphics.dtx + RELOC/source/latex/graphics/graphics.ins + RELOC/source/latex/graphics/graphicx.dtx + RELOC/source/latex/graphics/keyval.dtx + RELOC/source/latex/graphics/lscape.dtx + RELOC/source/latex/graphics/rotating.dtx + RELOC/source/latex/graphics/trig.dtx +runfiles size=35 + RELOC/tex/latex/graphics/color.sty + RELOC/tex/latex/graphics/dvipdf.def + RELOC/tex/latex/graphics/dvipsnam.def + RELOC/tex/latex/graphics/dvipsone.def + RELOC/tex/latex/graphics/dviwin.def + RELOC/tex/latex/graphics/emtex.def + RELOC/tex/latex/graphics/epsfig.sty + RELOC/tex/latex/graphics/graphics-2017-06-25.sty + RELOC/tex/latex/graphics/graphics.sty + RELOC/tex/latex/graphics/graphicx.sty + RELOC/tex/latex/graphics/keyval.sty + RELOC/tex/latex/graphics/lscape.sty + RELOC/tex/latex/graphics/pctex32.def + RELOC/tex/latex/graphics/pctexhp.def + RELOC/tex/latex/graphics/pctexps.def + RELOC/tex/latex/graphics/pctexwin.def + RELOC/tex/latex/graphics/rotating.sty + RELOC/tex/latex/graphics/tcidvi.def + RELOC/tex/latex/graphics/trig.sty + RELOC/tex/latex/graphics/truetex.def +catalogue-contact-bugs https://www.latex-project.org/bugs/ +catalogue-contact-home https://www.latex-project.org/ +catalogue-ctan /macros/latex/required/graphics +catalogue-license lppl1.3c +catalogue-topics graphics collection + +name graphics-cfg +category Package +revision 41448 +shortdesc Sample configuration files for LaTeX color and graphics +relocated 1 +longdesc This bundle includes color.cfg and graphics.cfg files that set +longdesc default "driver" options for the color and graphics packages. +longdesc It contains support for defaulting the new LuaTeX option which +longdesc was added to graphics and color in the 2016-02-01 release. The +longdesc LuaTeX option is only used for LuaTeX versions from 0.87, older +longdesc versions use the pdfTeX option as before. +containersize 1160 +containerchecksum e1015d360b56f63f1b9790daf16e2101e6af995bd1e45288ea604ae94e20196cab22e7e54d318aa79fa386123032a928be70a57154d409321e04f03ecf97ab75 +doccontainersize 876 +doccontainerchecksum dbcfdf635c2816f305205915119e1f6acba816c17b683622a8a32c361d75338376426b258c1fa3271abc1d7ad2a520ac85092a7b3bfbac6463106449bc906ae4 +docfiles size=1 + RELOC/doc/latex/graphics-cfg/README.md details="Readme" +runfiles size=2 + RELOC/tex/latex/graphics-cfg/color.cfg + RELOC/tex/latex/graphics-cfg/graphics.cfg +catalogue-also color graphics +catalogue-contact-repository https://github.com/latex3/graphics-cfg +catalogue-ctan /macros/latex/contrib/graphics-cfg +catalogue-license pd +catalogue-topics graphics colour + +name graphics-def +category Package +revision 58539 +shortdesc Colour and graphics option files +relocated 1 +longdesc This bundle is a combined distribution consisting of dvips.def, +longdesc pdftex.def, luatex.def, xetex.def, dvipdfmx.def, and +longdesc dvisvgm.def driver option files for the LaTeX graphics and +longdesc color packages. It is hoped that by combining their source +longdesc repositories at https://github.com/latex3/graphics-def it will +longdesc be easier to coordinate updates. +containersize 10916 +containerchecksum 441fad3649b85fec474e9191f03b63b9e6a9b594db159de8740409f3cf79544a5aa8b9ee6d939f17dcb4b84507d105bb1bbdd7c25239d28096e99d97ea3c9bec +doccontainersize 604 +doccontainerchecksum 9ad910e5870eb492921b40ef516f0d9e5b571b9c8129e5dc46f40c01cedc1724b0ab01191e0b37adfab62825857847b3ba6b8acaaea24d0da6b38d4b6191b41e +docfiles size=1 + RELOC/doc/latex/graphics-def/README.md details="Readme" +runfiles size=23 + RELOC/tex/latex/graphics-def/dvipdfmx.def + RELOC/tex/latex/graphics-def/dvips.def + RELOC/tex/latex/graphics-def/dvisvgm.def + RELOC/tex/latex/graphics-def/luatex.def + RELOC/tex/latex/graphics-def/pdftex.def + RELOC/tex/latex/graphics-def/xetex.def +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-license lppl1.3c +catalogue-topics graphics-drv + +name graphics-pln +category Package +revision 56823 +shortdesc LaTeX-style graphics for Plain TeX users +relocated 1 +longdesc The Plain TeX graphics package is mostly a thin shell around +longdesc the LaTeX graphicx and color packages, with support of the +longdesc LaTeX-isms in those packages provided by miniltx (which is the +longdesc largest part of the bundle). The bundle also contains a file +longdesc "picture.tex", which is a wrapper around the autopict.sty, and +longdesc provides the LaTeX picture mode to Plain TeX users. +containersize 8740 +containerchecksum cbb87e4d040c6844cb2e677d352f9fdf9dca7848a894225944f52abf4b1ab9c03d6ea2881074b30bb618eee647ebfb70d8baeb2a82c3446bef40a47487e6b9c0 +doccontainersize 2228 +doccontainerchecksum 8051321f777155c8bb81d8e514a15e01d282c8ba73ceee6c60fa76201c1c91ba47299bc2ac3b21cd210a457daa1c549f73d299f94e4a972d2b7467ae9f7b9a87 +docfiles size=5 + RELOC/doc/plain/graphics-pln/README.md details="Readme" + RELOC/doc/plain/graphics-pln/exmplcol.tex + RELOC/doc/plain/graphics-pln/exmplgrf.tex + RELOC/doc/plain/graphics-pln/exmplpfg.tex + RELOC/doc/plain/graphics-pln/exmplpic.tex +runfiles size=12 + RELOC/tex/plain/graphics-pln/autopict.sty + RELOC/tex/plain/graphics-pln/color.tex + RELOC/tex/plain/graphics-pln/graphicx.tex + RELOC/tex/plain/graphics-pln/miniltx.tex + RELOC/tex/plain/graphics-pln/picture.tex + RELOC/tex/plain/graphics-pln/psfrag.tex +catalogue-contact-bugs https://github.com/davidcarlisle/graphics-pln/issues +catalogue-contact-home https://github.com/davidcarlisle/graphics-pln +catalogue-contact-repository https://github.com/davidcarlisle/graphics-pln +catalogue-ctan /macros/plain/graphics +catalogue-license lppl1 +catalogue-topics graphics-incl plain-ext + +name graphicx-psmin +category Package +revision 56931 +shortdesc Reduce size of PostScript files by not repeating images +relocated 1 +longdesc The package is an extension of the standard latex-graphics +longdesc bundle and provides a way to include repeated PostScript +longdesc graphics (ps, eps) only once in a PostScript document. This +longdesc leads to smaller PostScript documents when having, for +longdesc instance, a logo on every page. The package only works when +longdesc post-processed with dvips, which should be version 5.95b or +longdesc later. The difference for a resulting distilled PDF file is +longdesc minimal (as Ghostscript and Adobe Distiller only include a +longdesc single copy of each graphics file, anyway). +containersize 2676 +containerchecksum d0cb1283998d0ba654ec75e0696bb2b6102968a504e3dee457826cdf82d7cc5793dc8407d0145f314a780b3e015a7be49e70ed21c21e68a3735bede1aacde6fa +doccontainersize 80104 +doccontainerchecksum 149f130b4e47f60ed3484267486033fa92aa7529169061a2dd9582daef579b6aeaaef4001261ff7bc301c17ef2817bf7bfeef909d22be44079a2c3c145c92040 +docfiles size=36 + RELOC/doc/latex/graphicx-psmin/README details="Package README" + RELOC/doc/latex/graphicx-psmin/graphicx-psmin.bib + RELOC/doc/latex/graphicx-psmin/graphicx-psmin.pdf details="Package documentation" + RELOC/doc/latex/graphicx-psmin/gxpsmpream.ble +srccontainersize 8184 +srccontainerchecksum 20cdc55b6645f661f5ae9ebdccbec0506c4e2a4a699dfc88aac9bb6d0ea1b0c308f7ef08abb4525faf498edc77eed5051d9130cc12769dbad7c2a31a814e46ba +srcfiles size=6 + RELOC/source/latex/graphicx-psmin/graphicx-psmin.dtx +runfiles size=2 + RELOC/tex/latex/graphicx-psmin/graphicx-psmin.sty +catalogue-also graphics graphicx +catalogue-ctan /macros/latex/contrib/graphicx-psmin +catalogue-license lppl +catalogue-topics graphics-incl +catalogue-version 1.2 + +name graphicxbox +category Package +revision 32630 +shortdesc Insert a graphical image as a background +relocated 1 +longdesc The package defines two new commands \graphicxbox and +longdesc \fgraphicxbox, which are companions to \colorbox and \fcolorbox +longdesc of the Standard LaTeX color package. The \graphicxbox command +longdesc inserts a graphical image as a background rather than a +longdesc background color, while \fgraphicxbox does the same thing, but +longdesc also draws a colored frame around the box. +containersize 1400 +containerchecksum 032168dcdd5eab142cd6bf24eaccc3fc6482e3eba7e0fd2600322b4a6f2bcb1ceb8e30a64dd811b500af37c94e7de3ec25c60c437ba9afa7ba4d8a9af8b79a19 +doccontainersize 438064 +doccontainerchecksum 6fd432f48c05c486963b8058025dda2a65b5cfa87b6ae03581009dcdeafd26396bf16e04fecd0e68a896a99d5c3e09e43902bcfd3f58fa9a9b393cf64406e160 +docfiles size=313 + RELOC/doc/latex/graphicxbox/README details="Readme" + RELOC/doc/latex/graphicxbox/doc/graphicxbox.pdf details="Package documentation" + RELOC/doc/latex/graphicxbox/examples/graphics/IndianBlanket.eps + RELOC/doc/latex/graphicxbox/examples/graphics/IndianBlanket.pdf + RELOC/doc/latex/graphicxbox/examples/graphics/Wood-Brown.eps + RELOC/doc/latex/graphicxbox/examples/graphics/Wood-Brown.pdf + RELOC/doc/latex/graphicxbox/examples/graphics/bg_cle_tile.eps + RELOC/doc/latex/graphicxbox/examples/graphics/grandcanyon.eps + RELOC/doc/latex/graphicxbox/examples/graphics/grandcanyon.pdf + RELOC/doc/latex/graphicxbox/examples/graphics/news_bgr.eps + RELOC/doc/latex/graphicxbox/examples/graphics/news_bgr.pdf + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst.pdf details="Package example" + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst.tex + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_indians.pdf + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_indians.tex + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_sp.pdf + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_sp.tex +srccontainersize 3692 +srccontainerchecksum a563a3c1e81496da30aca7256b5b2afc57d9df9e9aab2b6f5bf908691961f736a616f7c5f86647b94a6dcf36d3732bd68b75f5a4ba7d7d049bb67789ec48449a +srcfiles size=3 + RELOC/source/latex/graphicxbox/graphicxbox.dtx + RELOC/source/latex/graphicxbox/graphicxbox.ins +runfiles size=1 + RELOC/tex/latex/graphicxbox/graphicxbox.sty +catalogue-also graphicxsp color +catalogue-ctan /macros/latex/contrib/graphicxbox +catalogue-license lppl +catalogue-topics graphics-incl boxing +catalogue-version 1.0 + +name graphicxpsd +category Package +revision 57341 +shortdesc Adobe Photoshop Data format (PSD) support for graphicx package +relocated 1 +longdesc This package provides Adobe Photoshop Data format (PSD) support +longdesc for the graphicx package with the sips (Darwin/macOS) or +longdesc convert (ImageMagick) command. +containersize 1892 +containerchecksum c1327b1adc6657f423bf8eb0d29224773055f434cf749da8a8b2d1713c2a90a6fdeed2bded223c7cc941cb2b7403cb68927d72b0eb085e906750ce64ffcad3b8 +doccontainersize 405280 +doccontainerchecksum 082a8e580113ef796be4cc750d98f6dd0bf783298fef80a06f5387f352183d513e0d8b90dfb684bcaa575ff7b9307fe11e55f84aa66d7f29b411e06af76e70e7 +docfiles size=254 + RELOC/doc/latex/graphicxpsd/LICENSE + RELOC/doc/latex/graphicxpsd/README.md details="Readme" + RELOC/doc/latex/graphicxpsd/graphicxpsd.pdf details="Package documentation" + RELOC/doc/latex/graphicxpsd/graphicxpsd.tex + RELOC/doc/latex/graphicxpsd/test-gin-rule-psd.tex + RELOC/doc/latex/graphicxpsd/tigerpsdfmt.psd +runfiles size=2 + RELOC/tex/latex/graphicxpsd/graphicxpsd.sty +catalogue-also graphicx +catalogue-contact-repository https://github.com/munepi/graphicxpsd +catalogue-ctan /macros/latex/contrib/graphicxpsd +catalogue-license mit +catalogue-topics graphics-incl +catalogue-version 1.2 + +name graphpaper +category Package +revision 58661 +shortdesc A LaTeX class to generate several types of graph papers +relocated 1 +longdesc Graphpaper is a LaTeX document class which allows to print +longdesc several types of graph papers: bilinear (millimeter paper), +longdesc semilogarithmic, bilogarithmic, polar, log-polar, Smith charts. +longdesc It is based on the picture environment and its extensions. +containersize 4912 +containerchecksum 5081a2342621a69d4cc4bf70b129f8f28f769edb5e4b4b4b481fe415211979114583082b8e26524b98385dd8058fd415ebf824594714a596483b0e8b228e5283 +doccontainersize 413292 +doccontainerchecksum b5a206b9bc0bf3860a0fc5188d47b40b79fa413619ec8f3c015077fdf850090ebf7a4fe5da7ec41e191a68ec0e30a2e3c318585af9484b1037c034229fc8ed23 +docfiles size=107 + RELOC/doc/latex/graphpaper/README details="Readme" + RELOC/doc/latex/graphpaper/graphpaper.pdf details="Package documentation" +srccontainersize 10952 +srccontainerchecksum 23d7730da8f4df9b38cc1bfb8b17049eb77e37af8a4c19c7a7ab99e8c40b0d5dd585f983cade634f22a0cdc476092c1b27698b8673d9f736ba03a8eeb2c0d122 +srcfiles size=10 + RELOC/source/latex/graphpaper/graphpaper.dtx +runfiles size=5 + RELOC/tex/latex/graphpaper/graphpaper.cls +catalogue-also gridpapers +catalogue-ctan /macros/latex/contrib/graphpaper +catalogue-license lppl1.3c +catalogue-topics class macro-supp +catalogue-version 1.0 + +name graphviz +category Package +revision 31517 +shortdesc Write graphviz (dot+neato) inline in LaTeX documents +relocated 1 +longdesc The package allows inline use of graphviz code, in a LaTeX +longdesc document. +containersize 1940 +containerchecksum 9065f2316f423697c8f815ddcf91254f22e44d89964196d971c3a42192bb1e20f9152c5a98375060daffbb295f8885899d2800728de31ecf60e1a25cf7bce31e +doccontainersize 88484 +doccontainerchecksum 688f17db6771785753797edccd141470517dbb2ee875e2a70769754bbd314cf8af46b3dd89d5c340e7da7d81d86895894baa2b9e8facc0a54ad91cd1a3947722 +docfiles size=40 + RELOC/doc/latex/graphviz/LICENSE + RELOC/doc/latex/graphviz/Makefile + RELOC/doc/latex/graphviz/README details="Readme" + RELOC/doc/latex/graphviz/README.md + RELOC/doc/latex/graphviz/graphviz.pdf details="Package documentation" + RELOC/doc/latex/graphviz/test/Makefile + RELOC/doc/latex/graphviz/test/body.tex + RELOC/doc/latex/graphviz/test/pdf-singlefile-tmpdir.tex + RELOC/doc/latex/graphviz/test/pdf-singlefile.tex + RELOC/doc/latex/graphviz/test/pdf-tmpdir.tex + RELOC/doc/latex/graphviz/test/pdf.tex + RELOC/doc/latex/graphviz/test/ps.tex +srccontainersize 6124 +srccontainerchecksum c3e4fc091b5b64924e886435667049ec2dbf91c20fd7d1678f40990e66aa9d94fd7b40b30dd359be0fd1fba0e169b29058337ede8232189dad3dab7bb34af869 +srcfiles size=6 + RELOC/source/latex/graphviz/graphviz.dtx + RELOC/source/latex/graphviz/graphviz.ins +runfiles size=1 + RELOC/tex/latex/graphviz/graphviz.sty +catalogue-also dottex +catalogue-contact-home http://www.graphviz.org +catalogue-ctan /macros/latex/contrib/graphviz +catalogue-license lppl1.3 +catalogue-topics graphics-inline +catalogue-version 0.94 + +name grayhints +category Package +revision 49052 +shortdesc Produce 'gray hints' to a variable text field +relocated 1 +longdesc The package provides JavaScript code snippets to create 'gray +longdesc hints'. Gray hints, as the author terms them, are text that +longdesc appears initially in a text field that gives a short hint as to +longdesc what the contents of the text field should be. For example, a +longdesc text field might contain the hint 'First Name', or a date field +longdesc might read 'yyyy/mm/dd'. As soon as the field comes into focus, +longdesc the hint disappears. It reappears when the field is blurred and +longdesc the user did not enter any text into the field. The package +longdesc works for dvips/Distiller, pdfLaTeX, LuaLaTeX, and XeLaTeX. +containersize 3296 +containerchecksum 45d0736b5b600aa3ae524e0ff2471846cf48105464710fc7bb7f8d27326275d1accc63b5a0726c5d43e5af487207eba105e1d5e4f59913a1b27d33e950122574 +doccontainersize 496384 +doccontainerchecksum 85a6b8e44ec045ec00b7526f034e5b15d71fc8e439bfbbd43e1c8f85d4400318d8dfeee4bece211705c351e2b5afc9ddc89073fa14c1d90756bdf458d7b5b100 +docfiles size=166 + RELOC/doc/latex/grayhints/README.md details="Readme" + RELOC/doc/latex/grayhints/doc/grayhints.pdf + RELOC/doc/latex/grayhints/doc/grayhints_man.pdf details="Package documentation" + RELOC/doc/latex/grayhints/doc/grayhints_man.tex + RELOC/doc/latex/grayhints/examples/gh-eforms.pdf + RELOC/doc/latex/grayhints/examples/gh-eforms.tex + RELOC/doc/latex/grayhints/examples/gh-fmts-eforms.tex + RELOC/doc/latex/grayhints/examples/gh-fmts-hyperref.tex + RELOC/doc/latex/grayhints/examples/gh-hyperref.tex +srccontainersize 7708 +srccontainerchecksum 7342b60e1957297f41970fa2af45a8736f438e6560e4cb6bd279516fa40ca283d7cd60e5faad2959aba12958c0fa70a95d94bb9c48e7ad47956bbc646af82173 +srcfiles size=8 + RELOC/source/latex/grayhints/grayhints.dtx + RELOC/source/latex/grayhints/grayhints.ins +runfiles size=3 + RELOC/tex/latex/grayhints/grayhints.sty +catalogue-ctan /macros/latex/contrib/grayhints +catalogue-license lppl1.2 +catalogue-topics misc-support pdf-forms adobe-distiller + +name greek-fontenc +category Package +revision 56851 +shortdesc LICR macros and encoding definition files for Greek +relocated 1 +longdesc The package provides Greek LICR macro definitions and encoding +longdesc definition files for Greek text font encodings for use with +longdesc fontenc. +containersize 28948 +containerchecksum 4b7189bd9080c0c34bb61c5d47dcd09985d61875af06c4263c408be70e85657bbd36b94a9f183b409739ff72ba59b1add5fdd8e42a1e498bb3508e3d997d2b53 +doccontainersize 2394692 +doccontainerchecksum 5d6495f824069c6866f3821839b671ef872dda96435ad0dd95a2b719dadeda5325d1d96bc8c4b68876b0812fec878e0d0770ff82c73fa4ec020bf9f0e059150d +docfiles size=762 + RELOC/doc/latex/greek-fontenc/README details="Readme" + RELOC/doc/latex/greek-fontenc/alphabeta-doc.pdf + RELOC/doc/latex/greek-fontenc/alphabeta-doc.tex + RELOC/doc/latex/greek-fontenc/alphabeta-lgr.def.html + RELOC/doc/latex/greek-fontenc/alphabeta-tu.pdf + RELOC/doc/latex/greek-fontenc/alphabeta-tuenc.def.html + RELOC/doc/latex/greek-fontenc/alphabeta.sty.html + RELOC/doc/latex/greek-fontenc/diacritics.pdf + RELOC/doc/latex/greek-fontenc/diacritics.tex + RELOC/doc/latex/greek-fontenc/greek-fontenc.def.html + RELOC/doc/latex/greek-fontenc/greek-fontenc.html details="Readme (HTML)" + RELOC/doc/latex/greek-fontenc/hyperref-with-greek.pdf + RELOC/doc/latex/greek-fontenc/hyperref-with-greek.tex + RELOC/doc/latex/greek-fontenc/lgr2licr.lua + RELOC/doc/latex/greek-fontenc/lgr2licr.lua.html + RELOC/doc/latex/greek-fontenc/lgrenc.def.html + RELOC/doc/latex/greek-fontenc/puenc-greek.def.html + RELOC/doc/latex/greek-fontenc/test-inputenc.pdf + RELOC/doc/latex/greek-fontenc/test-inputenc.tex + RELOC/doc/latex/greek-fontenc/test-lgrenc.pdf + RELOC/doc/latex/greek-fontenc/test-lgrenc.tex + RELOC/doc/latex/greek-fontenc/test-tuenc-greek.pdf + RELOC/doc/latex/greek-fontenc/test-tuenc-greek.tex + RELOC/doc/latex/greek-fontenc/textalpha-doc.pdf + RELOC/doc/latex/greek-fontenc/textalpha-doc.tex + RELOC/doc/latex/greek-fontenc/textalpha-tu.pdf + RELOC/doc/latex/greek-fontenc/textalpha.sty.html + RELOC/doc/latex/greek-fontenc/tuenc-greek.def.html +srccontainersize 1572 +srccontainerchecksum 16049d6c57eca659c9aed41e4ac18417d667d5fb39e1bfa5976b5f8980c33425bf2301288b9284b39ae00e39d9c2878d09b25cfc793e51c09df92e703f6a968f +srcfiles size=2 + RELOC/source/latex/greek-fontenc/Makefile +runfiles size=51 + RELOC/tex/latex/greek-fontenc/alphabeta-lgr.def + RELOC/tex/latex/greek-fontenc/alphabeta-tuenc.def + RELOC/tex/latex/greek-fontenc/alphabeta.sty + RELOC/tex/latex/greek-fontenc/greek-euenc.def + RELOC/tex/latex/greek-fontenc/greek-fontenc.def + RELOC/tex/latex/greek-fontenc/lgrenc.def + RELOC/tex/latex/greek-fontenc/puenc-greek.def + RELOC/tex/latex/greek-fontenc/textalpha.sty + RELOC/tex/latex/greek-fontenc/tuenc-greek.def +catalogue-also lgrx +catalogue-ctan /language/greek/greek-fontenc +catalogue-license lppl1.3 +catalogue-topics greek fontenc +catalogue-version 2.0 + +name greek-inputenc +category Package +revision 51612 +shortdesc Greek encoding support for inputenc +relocated 1 +longdesc The bundle provides UTF-8, Macintosh Greek encoding and ISO +longdesc 8859-7 definition files for use with inputenc. +containersize 6540 +containerchecksum 1b3ad85dba5955a9dfb17d44a41db3e39c0d33920e1c36157e77803c4b2e402c6f7231c0628ad549c07ce7914f4a05c7da9369950b406270233d28f1a5adac55 +doccontainersize 826036 +doccontainerchecksum 42cab0f26d944da70ec3397946bf217155534f0def949f2a0fdeaf8c0dc30a5046447c5daa1d8e2d4fa4235cbd29fef2d8e6fa0c4c440c1ea58d1f2c4c2ab81d +docfiles size=237 + RELOC/doc/latex/greek-inputenc/README details="Readme" + RELOC/doc/latex/greek-inputenc/README.html details="Readme (HTML)" + RELOC/doc/latex/greek-inputenc/greek-utf8-minimal.pdf + RELOC/doc/latex/greek-inputenc/greek-utf8-minimal.tex + RELOC/doc/latex/greek-inputenc/greek-utf8.pdf details="Test, demonstrating the range covered" + RELOC/doc/latex/greek-inputenc/greek-utf8.tex + RELOC/doc/latex/greek-inputenc/inputenc-iso-8859-7.pdf + RELOC/doc/latex/greek-inputenc/inputenc-iso-8859-7.tex + RELOC/doc/latex/greek-inputenc/lgrenc.dfu.html + RELOC/doc/latex/greek-inputenc/unicode-licr.txt +runfiles size=12 + RELOC/tex/latex/greek-inputenc/iso-8859-7.def + RELOC/tex/latex/greek-inputenc/lgrenc.dfu + RELOC/tex/latex/greek-inputenc/macgreek.def +catalogue-ctan /language/greek/greek-inputenc +catalogue-license lppl1.3 +catalogue-topics inputenc greek +catalogue-version 1.7 + +name greekdates +category Package +revision 15878 +shortdesc Provides ancient Greek day and month names, dates, etc +relocated 1 +longdesc The package provides easy access to ancient Greek names of days +longdesc and months of various regions of Greece. In case the historical +longdesc information about a region is not complete, we use the Athenian +longdesc name of the month. Moreover commands and options are provided, +longdesc in order to completely switch to the "ancient way", commands +longdesc such as \today. +containersize 3820 +containerchecksum 7f350b4db9578f9020b28bc217e508574b697749c1d2e10c9de9c6499e26605da8334583ea7fb56d74bae77bc30e5835653014f5f8f594d3f35d04478ccffa9c +doccontainersize 98112 +doccontainerchecksum 979353f7cdeb127e12388e1eeea4903a929d911f6f8fd42cd814b6cbea09a64d0ab9c8118968bf218330dfae64f9147621d23d2955fb85291f484d0b5eb92a00 +docfiles size=29 + RELOC/doc/latex/greekdates/README details="Readme" + RELOC/doc/latex/greekdates/greekdates.pdf details="Package documentation" +srccontainersize 7276 +srccontainerchecksum 16a5fe04bd6a598a09c7f326f6848074782e8801d0723366e5ae2b1ae51580319210c64f5e7dbae7eca5cfe3573b0f24d689c802d9594d18dc7c8f4126d9ff49 +srcfiles size=10 + RELOC/source/latex/greekdates/greekdates.dtx + RELOC/source/latex/greekdates/greekdates.ins +runfiles size=6 + RELOC/tex/latex/greekdates/greekdates.sty +catalogue-ctan /macros/latex/contrib/greekdates +catalogue-license lppl +catalogue-topics date-time greek +catalogue-version 1.0 + +name greektex +category Package +revision 28327 +shortdesc Fonts for typesetting Greek/English documents +relocated 1 +longdesc The fonts are based on Silvio Levy's classical Greek fonts; +longdesc macros and Greek hyphenation patterns for the fonts' encoding +longdesc are also provided. +containersize 6016 +containerchecksum d7aeb9640061341ed39a71f7f69036f892bbe60b9db2236660e163b42fede81d6be58627b0163d3a183c120c9c8fa54f91a1a036ed9e50d2a72d5eac7f8a79a5 +doccontainersize 311284 +doccontainerchecksum b58305d403a58a60ac0cd6ebb60afe3058430eae15774895e03e41b331824673c128c5f06b583525e2311dd8ee5166549ea831e756e8c934c73ae911a0adbaa7 +docfiles size=182 + RELOC/doc/fonts/greektex/README details="Readme" + RELOC/doc/fonts/greektex/gehyphw.gr + RELOC/doc/fonts/greektex/greektexdoc.pdf details="Package documentation" language="el" + RELOC/doc/fonts/greektex/greektexdoc.tex + RELOC/doc/fonts/greektex/ywcl.zip +runfiles size=7 + RELOC/tex/latex/greektex/greektex.sty +catalogue-also greektex-fd +catalogue-ctan /fonts/greek/greektex +catalogue-license pd +catalogue-topics font font-mf font-greek + +name greektonoi +category Package +revision 39419 +shortdesc Facilitates writing/editing of multiaccented greek +relocated 1 +longdesc The greektonoi mapping extends the betababel package or the +longdesc babel polutonikogreek option to provide a simple way to insert +longdesc ancient Greek texts with diacritical characters into your +longdesc document using a similar method to the commonly used Beta Code +longdesc transliteration, but with much more freedom. It is designed +longdesc especially for the XeTeX engine and it could also be used for +longdesc fast and easy modification of monotonic greek texts to +longdesc polytonic. The output text is natively encoded in Unicode, so +longdesc it can be reused in any possible way. The greektonoi package +longdesc provides, in addition to inserting greek accents and +longdesc breathings, many other symbols used in greek numbers and +longdesc arithmetic or in the greek archaic period. It could be used +longdesc with greektonoi mapping or indepedently. +containersize 37196 +containerchecksum a19dd42de4bfdc3c068169bbf32c55fbd76135a8138d41e0726b421d3cd5e20483f77d7b78f85e54571381f780568f1fa1ebc57d23ca460b33e4caa256c4894a +doccontainersize 235232 +doccontainerchecksum 94da0bcac7b513fb9f720c0bc6d7ca8d822956b1517a95335b415e477d3144063bbff65d57978421b6b9611c6b4a866701762cbb2ab09351fe6c5d02e4b02f39 +docfiles size=75 + RELOC/doc/latex/greektonoi/README.txt + RELOC/doc/latex/greektonoi/greektonoi-en.pdf details="Package documentation" + RELOC/doc/latex/greektonoi/greektonoi-en.tex + RELOC/doc/latex/greektonoi/greektonoi.pdf details="Package documentation (Greek)" language="el" + RELOC/doc/latex/greektonoi/greektonoi.tex +runfiles size=44 + RELOC/fonts/map/dvips/greektonoi/greektonoi.map + RELOC/fonts/map/dvips/greektonoi/greektonoi.tec + RELOC/tex/latex/greektonoi/greektonoi.sty +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /language/greek/greektonoi +catalogue-license lgpl3 +catalogue-topics greek multilingual-addon + +name greenpoint +category Package +revision 15878 +shortdesc The Green Point logo +relocated 1 +longdesc A Metafont-implementation of the logo commonly known as 'Der +longdesc Grune Punkt' ('The Green Point'). In Austria, it can be found +longdesc on nearly every bottle. It should not be confused with the +longdesc 'Recycle'-logo, implemented by Ian Green. +containersize 1692 +containerchecksum 2ab6b0a9d12c12936362e9e1ff387c393bcd2e9769357dbc74a5d9bcbbe027424f5d58d85d608c2c519d615f01e6e809f6192280c8c60aa53fb8d96dcbdeb8dc +doccontainersize 948 +doccontainerchecksum 84143440a421999f0a59461652be21d49d8ace66fd3b8d9d89132c6f06f67ef4b571522d6ed54d87f614a15dceb99cdf4c3caecb54eed9a4bbf49401de20ada5 +docfiles size=2 + RELOC/doc/fonts/greenpoint/ChangeLog + RELOC/doc/fonts/greenpoint/README details="Readme" +runfiles size=2 + RELOC/fonts/source/public/greenpoint/greenpoint.mf + RELOC/fonts/tfm/public/greenpoint/greenpoint.tfm +catalogue-ctan /fonts/greenpoint +catalogue-license gpl +catalogue-topics font font-mf font-specialist + +name gregoriotex +category Package +revision 58331 +shortdesc Engraving Gregorian Chant scores +longdesc Gregorio is a software application for engraving Gregorian +longdesc Chant scores on a computer. Gregorio's main job is to convert a +longdesc gabc file (simple text representation of a score) into a +longdesc GregorioTeX file, which makes TeX able to create a PDF of your +longdesc score. +depend gregoriotex.ARCH +containersize 17281028 +containerchecksum 00dcd5bc7c12374a15d778cb903715036bd29a7a07522446cb5a5cb14509956db71df518d97e44d1e89366402281c26b96eaf39cc9f97d624ecb40107eae3db4 +doccontainersize 1418280 +doccontainerchecksum 67f018fe0eb9568b0ecc6977de8eb8fc1b0b9503372e2f674a97723c537d8a8fb4f48d48b95ee8979e4d4490d3725cf4a1411ab9d7da2ea14f72d0dad0fddd95 +docfiles size=516 + texmf-dist/doc/luatex/gregoriotex/Appendix_Font_Tables.tex + texmf-dist/doc/luatex/gregoriotex/CHANGELOG.md + texmf-dist/doc/luatex/gregoriotex/CONTRIBUTING.md + texmf-dist/doc/luatex/gregoriotex/CONTRIBUTORS.md + texmf-dist/doc/luatex/gregoriotex/COPYING.md + texmf-dist/doc/luatex/gregoriotex/Command_Index_User.tex + texmf-dist/doc/luatex/gregoriotex/Command_Index_gregorio.tex + texmf-dist/doc/luatex/gregoriotex/Command_Index_internal.tex + texmf-dist/doc/luatex/gregoriotex/Gabc.tex + texmf-dist/doc/luatex/gregoriotex/GregorioNabcRef.pdf + texmf-dist/doc/luatex/gregoriotex/GregorioNabcRef.tex + texmf-dist/doc/luatex/gregoriotex/GregorioRef.lua + texmf-dist/doc/luatex/gregoriotex/GregorioRef.pdf details="Package documentation" + texmf-dist/doc/luatex/gregoriotex/GregorioRef.tex + texmf-dist/doc/luatex/gregoriotex/README.md details="Readme" + texmf-dist/doc/luatex/gregoriotex/UPGRADE.md + texmf-dist/doc/luatex/gregoriotex/doc_README.md + texmf-dist/doc/luatex/gregoriotex/examples/FactusEst.gabc + texmf-dist/doc/luatex/gregoriotex/examples/PopulusSion.gabc + texmf-dist/doc/luatex/gregoriotex/examples/debugging.tex + texmf-dist/doc/luatex/gregoriotex/examples/main-lualatex.tex + texmf-dist/doc/luatex/gregoriotex/factus.gabc + texmf-dist/doc/luatex/gregoriotex/gsp-sample.tex + texmf-dist/doc/luatex/gregoriotex/omnes.gabc + texmf-dist/doc/luatex/gregoriotex/pitches2.gabc + texmf-dist/doc/luatex/gregoriotex/pitches3.gabc + texmf-dist/doc/luatex/gregoriotex/pitches4.gabc + texmf-dist/doc/luatex/gregoriotex/pitches5.gabc + texmf-dist/doc/luatex/gregoriotex/veni.gabc +srccontainersize 23972788 +srccontainerchecksum 0ae6211b33a256f1b10a2b167f3f5886f712688ae73baf13f698af37f69f83a9be754efbc6b0d5b3a1cdf11e7d459a98986b27c27b6318cba8fbb3e48d7f682a +srcfiles size=5860 + texmf-dist/source/luatex/gregoriotex/gregorio-6.0.0.zip +runfiles size=10656 + texmf-dist/fonts/source/gregoriotex/convertsfdtottf.py + texmf-dist/fonts/source/gregoriotex/fonts_README.md + texmf-dist/fonts/source/gregoriotex/greciliae-base.sfd + texmf-dist/fonts/source/gregoriotex/greextra.sfd + texmf-dist/fonts/source/gregoriotex/gregall.sfd + texmf-dist/fonts/source/gregoriotex/grelaon.sfd + texmf-dist/fonts/source/gregoriotex/gresgmodern.sfd + texmf-dist/fonts/source/gregoriotex/simplify.py + texmf-dist/fonts/source/gregoriotex/squarize.py + texmf-dist/fonts/source/gregoriotex/stemsschemas.py + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-hole.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-hollow.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-op-hole.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-op-hollow.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-op.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greextra.ttf + texmf-dist/fonts/truetype/public/gregoriotex/gregall.ttf + texmf-dist/fonts/truetype/public/gregoriotex/grelaon.ttf + texmf-dist/fonts/truetype/public/gregoriotex/gresgmodern.ttf + texmf-dist/scripts/gregoriotex/uninstall-gtex.sh + texmf-dist/tex/lualatex/gregoriotex/gregoriosyms.sty + texmf-dist/tex/lualatex/gregoriotex/gregoriotex.sty + texmf-dist/tex/luatex/gregoriotex/gregorio-vowels.dat + texmf-dist/tex/luatex/gregoriotex/gregoriotex-chars.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-common.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-gsp-default.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-main.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-nabc.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex-nabc.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-signs.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex-signs.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-spaces.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-syllable.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-symbols.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex-symbols.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex.tex +catalogue-contact-home http://gregorio-project.github.io/ +catalogue-contact-support http://gregorio-project.github.io/contact.html +catalogue-ctan /support/gregoriotex +catalogue-license gpl3 +catalogue-topics music chords +catalogue-version 6.0.0 + +name gregoriotex.aarch64-linux +category Package +revision 58389 +shortdesc aarch64-linux files of gregoriotex +containersize 118720 +containerchecksum 5fac3de1927f2bbc7d14556ec0ecf84a7d51a6f8e0c891fc8c8ab281845304490efc492f8943f4c38cdceb349cb3fd5bacde6d6253fd5865b59f8c4e7535a20b +binfiles arch=aarch64-linux size=184 + bin/aarch64-linux/gregorio + +name gregoriotex.amd64-freebsd +category Package +revision 58388 +shortdesc amd64-freebsd files of gregoriotex +containersize 127752 +containerchecksum 6afd0cc4e4dd17dc3e7bba0405b1f11d267032807e9fd362d5f517727f25305b520101be70887bf3ef65e95274cc7607082c24d52b622ca3d10f3f5c04a81f2d +binfiles arch=amd64-freebsd size=183 + bin/amd64-freebsd/gregorio + +name gregoriotex.amd64-netbsd +category Package +revision 58386 +shortdesc amd64-netbsd files of gregoriotex +containersize 112212 +containerchecksum c2ab8668cd233e02098b9319594283da1efca485970452308a8835272e6934372dfb5ca5f1e16ee49a965a6b0427d51d975574047886f08e6a4560d527ef6199 +binfiles arch=amd64-netbsd size=194 + bin/amd64-netbsd/gregorio + +name gregoriotex.armhf-linux +category Package +revision 58428 +shortdesc armhf-linux files of gregoriotex +containersize 103964 +containerchecksum c149a81c1d0ca5bdad4ba22809f586122423e51d848c540eb6dfa98a797533ebb5915e3d3b18e257cf83f05f3aa3677a79b190c7ac4843dd9b93d23406177170 +binfiles arch=armhf-linux size=173 + bin/armhf-linux/gregorio + +name gregoriotex.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of gregoriotex +containersize 93176 +containerchecksum ed610b5a43f0766419500aac4b4c0bdaaf77bc54f4e325249500bc1f2264919e9ae9e9600646d8e8dac0179cee4190bf6f903bced997903d40038bf6d3582c0a +binfiles arch=i386-cygwin size=168 + bin/i386-cygwin/gregorio.exe + +name gregoriotex.i386-freebsd +category Package +revision 58388 +shortdesc i386-freebsd files of gregoriotex +containersize 110108 +containerchecksum e34d491c08db6d3cd70873534d6efea6f4da269cfabe4a1ab9d62131e0c679914b1d73fb47ec2bfe3b6371b1eb86d2215eb6008179b40b9be411b9d03c2c2f24 +binfiles arch=i386-freebsd size=174 + bin/i386-freebsd/gregorio + +name gregoriotex.i386-linux +category Package +revision 58378 +shortdesc i386-linux files of gregoriotex +containersize 130140 +containerchecksum da3fc86b165156f8920588f1c3a1513e2667cabb158f48f4aa150c0c93e36af3587efc9c463d683b278b7fc3712308bf9cb0660c35769eff48e35b2e231b01fd +binfiles arch=i386-linux size=189 + bin/i386-linux/gregorio + +name gregoriotex.i386-netbsd +category Package +revision 58386 +shortdesc i386-netbsd files of gregoriotex +containersize 102192 +containerchecksum 99fe4c0d833d40e622fdbca2501024c26fe34d45814a4c9db8e5ee7b97e4b7eaff6e78ee171d30f50dd4c5e02d75b07e84131bc2bc0a3d57a5ba08ca8081cfa8 +binfiles arch=i386-netbsd size=187 + bin/i386-netbsd/gregorio + +name gregoriotex.i386-solaris +category Package +revision 58388 +shortdesc i386-solaris files of gregoriotex +containersize 123820 +containerchecksum ac65ef312055406042f8f7a51e70cf3d08b854c63a1e8561be1ddf647aae8c0702a1e2b616ef68aa5de66f14fbf6feee031b40c9dbc6619d95b70a6c5343ab9f +binfiles arch=i386-solaris size=182 + bin/i386-solaris/gregorio + +name gregoriotex.universal-darwin +category Package +revision 58418 +shortdesc universal-darwin files of gregoriotex +containersize 235016 +containerchecksum 5ba6304136969d53c47a8043a77da8031f61c3cbc3e79a3e8db6786de468bc1d3f2e976363979e54f074f7c3ec592b754429c8b3e456cde18c427b1844ff374b +binfiles arch=universal-darwin size=378 + bin/universal-darwin/gregorio + +name gregoriotex.win32 +category Package +revision 58783 +shortdesc win32 files of gregoriotex +containersize 282616 +containerchecksum 19b2f6f8234f0fa40dde993d8b0ed4dec108eaf8bf2606df3c8c6e60e2962c7d911019ea3ae6ce080e36bfd6fb935f3af85fbd3ea32101ce63bf991bc82ce80e +binfiles arch=win32 size=274 + bin/win32/gregorio.exe + +name gregoriotex.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of gregoriotex +containersize 102772 +containerchecksum a8d375eb3581530bab1a2a36dfdb0705562cfbe80e2c2d2970462b6a239e984a74b3c01eb4aa6ef8e4a4389c0c0e9e56ed732791f6f5fc2beed506bf3c618218 +binfiles arch=x86_64-cygwin size=167 + bin/x86_64-cygwin/gregorio.exe + +name gregoriotex.x86_64-darwinlegacy +category Package +revision 58388 +shortdesc x86_64-darwinlegacy files of gregoriotex +containersize 123256 +containerchecksum fa279d4009d8582420242c0c48a99322985773a065f90d8fc4bb446c2f77918b9e0a129b96e944b8750a8a52fa26e7d52a10bcd034dd404863704abe3325d88a +binfiles arch=x86_64-darwinlegacy size=178 + bin/x86_64-darwinlegacy/gregorio + +name gregoriotex.x86_64-linux +category Package +revision 58378 +shortdesc x86_64-linux files of gregoriotex +containersize 134224 +containerchecksum 9b328b436058f1829a7a731ccc537a7e876a584bdb7a67e2e053aa704a0f360403e2bd172dc883cb523a64b58073bb07cf7a7d0af5a580c87eaa5db245b66c88 +binfiles arch=x86_64-linux size=184 + bin/x86_64-linux/gregorio + +name gregoriotex.x86_64-linuxmusl +category Package +revision 58378 +shortdesc x86_64-linuxmusl files of gregoriotex +containersize 139864 +containerchecksum 0671d334004f94834031d98e539efc87b7aca8c418b15edcd0f37187d96fc4b3e2d7b323601236802a42317fd87c0ae8163c5802cb25503031dffcb969008344 +binfiles arch=x86_64-linuxmusl size=187 + bin/x86_64-linuxmusl/gregorio + +name gregoriotex.x86_64-solaris +category Package +revision 58388 +shortdesc x86_64-solaris files of gregoriotex +containersize 143344 +containerchecksum bc373d76875ad74754f12ebe652f0c4a6e5d9fa1f7cf0111db2b4e4deed5137f97dc9f9387b2633a31401146ca8541da8da5aa5aeb6e69501c10c20e9d6c8cf4 +binfiles arch=x86_64-solaris size=194 + bin/x86_64-solaris/gregorio + +name grfext +category Package +revision 53024 +shortdesc Manipulate the graphics package's list of extensions +relocated 1 +longdesc This package provides macros for adding to, and reordering the +longdesc list of graphics file extensions recognised by package +longdesc graphics. +containersize 2340 +containerchecksum a5f68f2bb2ea26d4b8f963a1b8fb8adfb3bd32e3a139dca57e6b45d80fcdd94c5e846549b1292224b9d845fd6a4d0ee56d4c2d2fbfc12c24806eca8551b9dc96 +doccontainersize 308376 +doccontainerchecksum 4337ae578d9e524e2da8564a1b736eac1dd50c1e4495d027c44f3841eb65c6c494527109e32f00844c17a5973a94572569a429ceb95beec98d2b19e84735eaaa +docfiles size=77 + RELOC/doc/latex/grfext/README.md + RELOC/doc/latex/grfext/grfext.pdf details="Package documentation" +srccontainersize 6144 +srccontainerchecksum cb7dcf9b3860b90bc8618c6d964fb7e9f5e056882bd5e6739a57564224f970ab9cf0ba136ebd88072541b8d169245ccaae90f714392a30f83c73e82281a07359 +srcfiles size=6 + RELOC/source/latex/grfext/grfext.dtx +runfiles size=2 + RELOC/tex/latex/grfext/grfext.sty +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-license lppl1.3 +catalogue-topics graphics-supp +catalogue-version 1.3 + +name grffile +category Package +revision 52756 +shortdesc Extended file name support for graphics (legacy package) +relocated 1 +longdesc The original package extended the file name processing of +longdesc package graphics to support a larger range of file names. The +longdesc base LaTeX code now supports multiple dots and spaces, and this +longdesc package by default is a stub that just loads graphicx. However, +longdesc \usepackage{grffile}[=v1] may be used to access version 1(.18) +longdesc of the package if that is needed. +containersize 3868 +containerchecksum 3f1f5e4f258e4ab1f51fdb44fa0b49e80df21a6c35dccad16a6b70ad76489cb4fdfff7e6c4dd07821c54543fdaeecae32cfd8037d4920ce60db02be9a2f8fa07 +doccontainersize 350320 +doccontainerchecksum 2f2285ad44d0c585cd02b85359eb31f885f7c704f6da5f906240c1094ef8d347d33ba6beb31cf34e09a5e39e618a27a7ea263a63d6a887638d8f761e3cd4b61b +docfiles size=88 + RELOC/doc/latex/grffile/README.md details="Readme" + RELOC/doc/latex/grffile/grffile.pdf details="Package documentation" +srccontainersize 11228 +srccontainerchecksum 6538e5cf13f8212b5b231637a4abb68bc97330e123432922e403ae7321439bef910a0d1839abf394518ad274ed232c4c2e19671c8e6aaa55e2525708f305c679 +srcfiles size=11 + RELOC/source/latex/grffile/grffile.dtx +runfiles size=5 + RELOC/tex/latex/grffile/grffile-2017-06-30.sty + RELOC/tex/latex/grffile/grffile.sty +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-license lppl1.3c +catalogue-topics file-mgmt +catalogue-version 2.1 + +name grfpaste +category Package +revision 17354 +shortdesc Include fragments of a dvi file +relocated 1 +longdesc Provides a mechanism to include fragments of dvi files with the +longdesc graphicx package, so that you can use \includegraphics to +longdesc include dvi files. The package requires the dvipaste program. +containersize 3252 +containerchecksum e7c28c38a20e01b05c5839dc7d011ef5769b3344fd4321f68e1189a830a90e6ccf9edd596e248489a0a578b2aa4e5e5f3bd1ec21c76b3dba86a91d5e431d0617 +doccontainersize 371568 +doccontainerchecksum 63719b8f7904baccddc9e68d1fc7d609453b2eb9feeee95bb077b82d1345c40db7a92c649c3d9abae6b9c2e19090163b6a227418f4d9d4d91b1e8b1c0438005d +docfiles size=106 + RELOC/doc/latex/grfpaste/doc/grfpaste.pdf details="Package documentation" + RELOC/doc/latex/grfpaste/doc/grfpaste.tex + RELOC/doc/latex/grfpaste/dvipaste.txt details="Readme-alike" + RELOC/doc/latex/grfpaste/grfp1.tex + RELOC/doc/latex/grfpaste/grfp2.tex + RELOC/doc/latex/grfpaste/grfp3.tex +runfiles size=2 + RELOC/tex/latex/grfpaste/grfpaste.sty +catalogue-ctan /macros/latex/contrib/grfpaste +catalogue-license lppl +catalogue-topics graphics-incl +catalogue-version 0.2 + +name grid +category Package +revision 15878 +shortdesc Grid typesetting in LaTeX +relocated 1 +longdesc The package helps to enables grid typesetting in double column +longdesc documents. Grid typesetting (vertical aligning of lines of text +longdesc in adjacent columns) is a difficult task in LaTeX, and the +longdesc present package is no more than an attempt to help users to +longdesc achieve it in a limited way. An example document, grid.tex, is +longdesc provided with simple instructions to typeset it using the +longdesc package. The package needs a lot more work: this is only a +longdesc beginning... +containersize 3152 +containerchecksum c8a6c0d6ac1f6043411d5484c87877a939d891aa3bbaef31248f8dc04f39bfc5f7f13344ab2997724682f228f180025bc5afcba8712ee95de983d7182785a8fd +doccontainersize 134640 +doccontainerchecksum 9fa0fbf1dfd0fd334c9dd57f50e6d1f893a222bda6402345c70240fce48ea07065fa25ce890fda77983dcb537c8b3b4740cea71ed6a6b4b94275f1e2bd8ea983 +docfiles size=45 + RELOC/doc/latex/grid/README details="Readme" + RELOC/doc/latex/grid/grid.pdf details="Package documentation" + RELOC/doc/latex/grid/grid.tex + RELOC/doc/latex/grid/manifest.txt + RELOC/doc/latex/grid/rvdtx.sty +srccontainersize 680 +srccontainerchecksum 01b7c6dc356487d9e1d9b210828bdb6af50382a59d65b85c8246defe963ada4ee0796a93793d90d25c37ea9c86432d9c05c3eb05598c72410fc2f865e1e69836 +srcfiles size=1 + RELOC/source/latex/grid/Makefile +runfiles size=3 + RELOC/tex/latex/grid/grid.sty +catalogue-contact-home http://www.river-valley.com +catalogue-ctan /macros/latex/contrib/grid +catalogue-license lppl +catalogue-topics typeset-grid +catalogue-version 1.0 + +name grid-system +category Package +revision 32981 +shortdesc Page organisation, modelled on CSS facilities +relocated 1 +longdesc The package provides the means for LaTeX to implement a grid +longdesc system as known from CSS grid systems. The facility is useful +longdesc for creating box layouts as used in brochures. +containersize 1368 +containerchecksum b9846f467854538c488ae444645fcfb962c1aece34e3847dc3dfdd4a2aadf8339840c09243448922ce184f6211bb3b95c6fe9675b5bae0e3b3756b2787e7e87b +doccontainersize 58056 +doccontainerchecksum 659b426e99db9152c64f37a4c977176ce1a24c324465399f3e481cffef505044aa820f1a445a79c68f069702c07082d3d5c73c5fa762068a44acdc21221cce68 +docfiles size=19 + RELOC/doc/latex/grid-system/LICENSE + RELOC/doc/latex/grid-system/README details="Readme" + RELOC/doc/latex/grid-system/grid-system.pdf details="Package documentation" + RELOC/doc/latex/grid-system/grid-system.tex +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-license apache2 +catalogue-topics layout +catalogue-version 0.3.0 + +name gridpapers +category Package +revision 58723 +shortdesc Graph paper backgrounds and color schemes +relocated 1 +longdesc This package provides many preset yet customizable graph paper +longdesc backgrounds. Some of the preset patterns include standard +longdesc quadrille or graph pattern, dot grid, hexagons, isometric or +longdesc triangular grid, squares with 45deg "light cone" lines, ruled, +longdesc and more. Pattern sizes can be controlled via package options. +longdesc There are several preset color palletes, and colors can be +longdesc overridden. The package uses the PGF/TikZ package, and the +longdesc geometry package to control page size. +containersize 5164 +containerchecksum 17f9b6b16a0d2f45648b131623c243e0b62f5e2d2fb1c1997af921a1307d941ffb07729d5e4787b4627961160a75de98165e97a42331b07a3259e91c987f27e0 +doccontainersize 225000 +doccontainerchecksum 0f4fed3e0d17f317f3d56f69a7100d36ac6d022f7c7c81c8dd0bb1f740f782ca5a4064cc2c80daf865c85e7ee84027a97fe675a13f9d0d348e489a2a8afa2ed9 +docfiles size=75 + RELOC/doc/latex/gridpapers/README.md details="Readme" + RELOC/doc/latex/gridpapers/examples/custom-colors.tex + RELOC/doc/latex/gridpapers/examples/dot-grid-10spi.tex + RELOC/doc/latex/gridpapers/examples/dot-grid-5spi.tex + RELOC/doc/latex/gridpapers/examples/engineer-pad.tex + RELOC/doc/latex/gridpapers/examples/engineer-paper-8spi.tex + RELOC/doc/latex/gridpapers/examples/graph-paper-8spi.tex + RELOC/doc/latex/gridpapers/examples/graph-paper.tex + RELOC/doc/latex/gridpapers/examples/grid-with-light-cones.tex + RELOC/doc/latex/gridpapers/examples/hex-engineer-letterpaper-fullpage.tex + RELOC/doc/latex/gridpapers/examples/hex-grid-large.tex + RELOC/doc/latex/gridpapers/examples/hex-grid-small.tex + RELOC/doc/latex/gridpapers/examples/isometric-grid.tex + RELOC/doc/latex/gridpapers/examples/plum-graph-paper.tex + RELOC/doc/latex/gridpapers/examples/precocious-young-engineer.tex + RELOC/doc/latex/gridpapers/examples/quadrille-10spi.tex + RELOC/doc/latex/gridpapers/examples/quadrille-8spi.tex + RELOC/doc/latex/gridpapers/examples/red-graph.tex + RELOC/doc/latex/gridpapers/examples/triangular-grid.tex + RELOC/doc/latex/gridpapers/gridpapers.pdf details="Package documentation" +srccontainersize 7964 +srccontainerchecksum 962b9dd3c99ce419e58cc1f146406b0703807d365069a333971c1b0ad3409f64c9c89d6dfb9c4ce80731164af1d6dcde6b510c156602b0bdde2f231d7da45406 +srcfiles size=8 + RELOC/source/latex/gridpapers/gridpapers.dtx + RELOC/source/latex/gridpapers/gridpapers.ins +runfiles size=5 + RELOC/tex/latex/gridpapers/gridpapers.sty +catalogue-also graphpaper +catalogue-contact-bugs https://github.com/mcnees/LaTeX-Graph-Paper/issues +catalogue-contact-repository https://github.com/mcnees/LaTeX-Graph-Paper +catalogue-ctan /macros/latex/contrib/gridpapers +catalogue-license lppl1.3 +catalogue-topics pgf-tikz background +catalogue-version 1.0.2 + +name gridset +category Package +revision 53762 +shortdesc Grid, a.k.a. in-register, setting +relocated 1 +longdesc Grid setting -- also known as strict in-register setting -- is +longdesc something, that should be done for a lot of documents but is +longdesc not easy using LaTeX. The package helps to get the information +longdesc needed for grid setting. It does not implement auto grid +longdesc setting, but there is a command \vskipnextgrid, that moves to +longdesc the next grid position. This may be enough under some +longdesc circumstances, but in other circumstances it may fail. Thus +longdesc gridset is only one more step for grid setting, not a complete +longdesc solution. +containersize 2752 +containerchecksum 296200c463b67ce45fd7c9625298b5e0b83b730055830b3affcdc0c329a2ebd5f89c5da93e004b056efb63f8e43771824c7f0adfe435461943cc68aea4bbc480 +doccontainersize 224464 +doccontainerchecksum 54fd48dce732ee11a7279eb663bcadde958f2ec9d3307194000dae2ced43f604a54e44174ca36dec389c9ce8e5e0809849b5c66aebd9527337ea3273353142aa +docfiles size=57 + RELOC/doc/latex/gridset/LICENSE.md + RELOC/doc/latex/gridset/README.md details="Readme" + RELOC/doc/latex/gridset/gridset.pdf details="Package documentation" +srccontainersize 6356 +srccontainerchecksum fc25880cbaa087230b0106a40d2c945809f09200c7e25de88588ab0075e06b91efd362453c599397e29f5e9a053f9554e0496cf03f4f134bd74678d1534ba07a +srcfiles size=6 + RELOC/source/latex/gridset/gridset.dtx +runfiles size=2 + RELOC/tex/latex/gridset/gridset.sty +catalogue-contact-home https://komascript.de/gridset +catalogue-contact-repository https://github.com/komascript/gridset.git +catalogue-ctan /macros/latex/contrib/gridset +catalogue-license lppl1.3c +catalogue-topics typeset-grid +catalogue-version 0.3 + +name gridslides +category Package +revision 54512 +shortdesc Free form slides with blocks placed on a grid +relocated 1 +longdesc This package allows creating free form slides with blocks +longdesc placed on a grid. The blocks can be filled with text, +longdesc equations, figures etc. The resulting slides are similar to the +longdesc ones produced with LaTeX beamer, but more flexible. Sequential +longdesc unconvering of elements is supported. A compiler script is +longdesc provided which compiles each slide separately, this way +longdesc avoiding long compile times. +containersize 2532 +containerchecksum 9f9c3fc88cdf9e3641aae264eac0c116c3dc410ddab4c688521289baaf67cb4c8c605c734fbf45538b6498f7c337aeaaa4b90d2584c6becf06a97b81894c63c9 +doccontainersize 570220 +doccontainerchecksum ea3a2ed6334a5e160cb27b096e0868aae28908f77d67626b9d1d86840e615bf1b296ff5813ef5ed24ca0435eea39f4afe601216f243f2be585eb952f4df33255 +docfiles size=177 + RELOC/doc/latex/gridslides/Makefile + RELOC/doc/latex/gridslides/README.md details="Readme" + RELOC/doc/latex/gridslides/compile.pl + RELOC/doc/latex/gridslides/example.pdf details="Example of use" + RELOC/doc/latex/gridslides/example.tex + RELOC/doc/latex/gridslides/figures/band02.png + RELOC/doc/latex/gridslides/figures/band08.png + RELOC/doc/latex/gridslides/figures/cnontrivial.pdf + RELOC/doc/latex/gridslides/figures/ctrivial.pdf + RELOC/doc/latex/gridslides/figures/qahe.pdf + RELOC/doc/latex/gridslides/figures/qshe.pdf + RELOC/doc/latex/gridslides/figures/skyrmion.pdf + RELOC/doc/latex/gridslides/figures/trivial.pdf + RELOC/doc/latex/gridslides/gridslides.pdf details="Package documentation" +runfiles size=3 + RELOC/tex/latex/gridslides/gridslides.cls + RELOC/tex/latex/gridslides/gridslides.sty +catalogue-contact-bugs https://github.com/minad/gridslides/issues +catalogue-contact-repository https://github.com/minad/gridslides +catalogue-ctan /macros/latex/contrib/gridslides +catalogue-license lppl1.3 gpl2 +catalogue-topics presentation class +catalogue-version 0.1.1 + +name grotesq +category Package +revision 35859 +catalogue urw-grotesq +shortdesc URW Grotesq font pack for LaTeX +relocated 1 +longdesc The directory contains a copy of the Type 1 font "URW Grotesq +longdesc 2031 Bold' released under the GPL by URW, with supporting files +longdesc for use with (La)TeX. +execute addMap ugq.map +containersize 47696 +containerchecksum 30d0d52c98f44945ed40f45f1e73ed60e6b98a8a74dbf57cdae5c2d400ef613f8bed2b89b3b6afbf7b98e449738f637911dc1becf0c0dd33c21a23ecac9a9767 +doccontainersize 2796 +doccontainerchecksum d41ae946f315d87b483a03d8b5a1034706f5bda765c69fa692f117b79bd5046b409e42c7b17577ee086ec98795e8a93acd761e30815c6083520b4bd244c33cd5 +docfiles size=4 + RELOC/doc/fonts/grotesq/grotesq.txt + RELOC/doc/fonts/grotesq/readme.grotesq details="Copyright and licence statement" + RELOC/doc/fonts/grotesq/ugq.txt details="Package documentation" +runfiles size=44 + RELOC/fonts/afm/urw/grotesq/ugqb8a.afm + RELOC/fonts/afm/urw/grotesq/ugqb8a.afm.org + RELOC/fonts/map/dvips/grotesq/ugq.map + RELOC/fonts/tfm/urw/grotesq/ugqb7t.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8a.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8c.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8r.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8t.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo7t.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo8c.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo8r.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo8t.tfm + RELOC/fonts/type1/urw/grotesq/ugqb8a.pfb + RELOC/fonts/type1/urw/grotesq/ugqb8a.pfm + RELOC/fonts/vf/urw/grotesq/ugqb7t.vf + RELOC/fonts/vf/urw/grotesq/ugqb8c.vf + RELOC/fonts/vf/urw/grotesq/ugqb8t.vf + RELOC/fonts/vf/urw/grotesq/ugqbo7t.vf + RELOC/fonts/vf/urw/grotesq/ugqbo8c.vf + RELOC/fonts/vf/urw/grotesq/ugqbo8t.vf + RELOC/tex/latex/grotesq/ot1ugq.fd + RELOC/tex/latex/grotesq/t1ugq.fd + RELOC/tex/latex/grotesq/ts1ugq.fd +catalogue-ctan /fonts/urw/grotesq +catalogue-license gpl +catalogue-topics font font-sans font-type1 + +name grundgesetze +category Package +revision 58997 +shortdesc Typeset Frege's Grundgesetze der Arithmetik +relocated 1 +longdesc The package defines maths mode commands for typesetting Gottlob +longdesc Frege's concept-script in the style of his "Grundgesetze der +longdesc Arithmetik" (Basic Laws of Arithmetic). +containersize 2340 +containerchecksum f9912e5daab42e6aaec946ea34f420acc194ce88ef75135ebedcdddd5f70fbebc81c250f3368bc8f65cf3952d0229fc450ab40b58bd02473ae4eecee783f3f09 +doccontainersize 226836 +doccontainerchecksum 7dfacbd4686f5296cc1f677b99f42946f6ba1e761454308568ecb013df3eb0a505273e1cc357d11780f7d4762d03007ab44b87343062c50666bc8e89e1512ed6 +docfiles size=57 + RELOC/doc/latex/grundgesetze/README details="Readme" + RELOC/doc/latex/grundgesetze/grundgesetze.pdf details="Package documentation" +srccontainersize 8156 +srccontainerchecksum dfa00982121cd247149768a95ac8555a2061ebfa1bcc154ff944d07843d213ab7c7bf0931cad3dac118cd995abf0fcfe03f12285e2e7fc3e808223939d4c1d58 +srcfiles size=10 + RELOC/source/latex/grundgesetze/grundgesetze.dtx + RELOC/source/latex/grundgesetze/grundgesetze.ins +runfiles size=3 + RELOC/tex/latex/grundgesetze/grundgesetze.sty +catalogue-also begriff frege bguq +catalogue-ctan /macros/latex/contrib/grundgesetze +catalogue-license gpl2 +catalogue-topics maths logic +catalogue-version 1.03 + +name gsemthesis +category Package +revision 56291 +shortdesc Geneva School of Economics and Management PhD thesis format +relocated 1 +longdesc The class provides a PhD thesis template for the Geneva School +longdesc of Economics and Management (GSEM), University of Geneva, +longdesc Switzerland. The class provides utilities to easily set up the +longdesc cover page, the front matter pages, the page headers, etc., +longdesc conformant to the official guidelines of the GSEM Faculty for +longdesc writing PhD dissertations. +containersize 2952 +containerchecksum 42d5d8461d5f8ccf461e24d04fa61991507eb545a60b7f7bc3980d39c9f767aa155164cbb914ce961204316b1be61f5622f21236154013c6404a86ec30ec18ce +doccontainersize 297248 +doccontainerchecksum 3497f766bc496369a2eb9f829b8ba3f0d73bfe7ac11c4afd7f9ce06c21f9aaceacdee0456a14624ffb38bafeb978c5a4787ce824143693e4c3d99a227a994cb8 +docfiles size=74 + RELOC/doc/latex/gsemthesis/README details="Readme" + RELOC/doc/latex/gsemthesis/gsemthesis.pdf details="Package documentation" +srccontainersize 9964 +srccontainerchecksum 813f4825450b66024ea804e0f36d1df721565b046979d822830b87ef9cbd8a01300d50947ba9344c3e21f9624af573d7a9844d60432dacbeb0890944a9e11dc2 +srcfiles size=10 + RELOC/source/latex/gsemthesis/gsemthesis.dtx + RELOC/source/latex/gsemthesis/gsemthesis.ins +runfiles size=3 + RELOC/tex/latex/gsemthesis/gsemthesis.cls +catalogue-ctan /macros/latex/contrib/gsemthesis +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 0.9.4 + +name gsftopk +category TLCore +revision 52851 +shortdesc Convert "Ghostscript fonts" to PK files +longdesc Designed for use with xdvi and dvips this utility converts +longdesc Adobe Type 1 fonts to PK bitmap format. It should not +longdesc ordinarily be much used nowadays, since both its target +longdesc applications are now capable of dealing with Type 1 fonts, +longdesc direct. +depend gsftopk.ARCH +containersize 3548 +containerchecksum cb9aebd7428d10b627d80ea40d297f3e6de006859c7dd713478ff193458494f90017ecd0737376ac1f47638b059e02e8a46ea53a7c56b8561af75f770e214413 +doccontainersize 27540 +doccontainerchecksum 0a597e2908438fc00fc2bafa7ec635a82b70aad9d7f7e86851a654c0b72b719b8c550be0c20ecf6c8d96627863a48e6a387156ad2c7e71d1e296dd4937d60805 +docfiles size=10 + texmf-dist/doc/man/man1/gsftopk.1 + texmf-dist/doc/man/man1/gsftopk.man1.pdf +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-license gpl +catalogue-topics font-cvt +catalogue-version 1.19.2 + +name gsftopk.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of gsftopk +containersize 39428 +containerchecksum 60d3e223f2bdaff136b3e5e7a02381b610828e33a4e423111b6af01f0d76895ca279d6cc6937179b5ee1d2260fb668b69a34f0c3a888dcab13870746b0d645e1 +binfiles arch=aarch64-linux size=25 + bin/aarch64-linux/gsftopk + +name gsftopk.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of gsftopk +containersize 43336 +containerchecksum e2c05c56fdde4e05211a5f57de1ad229245d8518bb0d930b0630a78d9e502c4e063453064bd5dd64362b29857ac78487408d1a89a10e7565aeece512b8396091 +binfiles arch=amd64-freebsd size=25 + bin/amd64-freebsd/gsftopk + +name gsftopk.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of gsftopk +containersize 37244 +containerchecksum 9261e2889b7ba0f679cc2a1fc68262488f254f76b51164f36f33e1aaa1c5686b9cd670a7a1a6f6fdd13513b4f3592f8909e55934dd68f25cb9f5f5c204916531 +binfiles arch=amd64-netbsd size=29 + bin/amd64-netbsd/gsftopk + +name gsftopk.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of gsftopk +containersize 33676 +containerchecksum 8f4ed2b2d8f470fb6e4ee6b88fac6fad911a9d2576b92f2d5c55d5fe1b9a76b8170507a48c8cf68f08d5d562cedbad6afeecfed339da57cb83268d56f73c44a0 +binfiles arch=armhf-linux size=20 + bin/armhf-linux/gsftopk + +name gsftopk.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of gsftopk +containersize 12040 +containerchecksum 2c43cf4941d505a3379978b18d5b6e468547a07e1488bef3602899f0e08adccdd2ca0da8a9178bc11c8d0f82e1dc7f6f1ace67598f23342411a6c63f85430a53 +binfiles arch=i386-cygwin size=7 + bin/i386-cygwin/gsftopk.exe + +name gsftopk.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of gsftopk +containersize 38076 +containerchecksum 044ed4ffdaa4ce966a0dc90135c4cf8c9d24098f1ea3e7951d7598f2bdd7281782fe711d6807405fdb9e3cbc155b4883210eeb66ed23f2acf5472f0e7b435f77 +binfiles arch=i386-freebsd size=22 + bin/i386-freebsd/gsftopk + +name gsftopk.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of gsftopk +containersize 43152 +containerchecksum 1e360a6620e72bdab29f208a50e4d735b49b4c297c07b0230c747497296c9dd09fd99ddc37b5f67ca8e9c4284427c348ab5423350188a978f94fcd3f93384f28 +binfiles arch=i386-linux size=26 + bin/i386-linux/gsftopk + +name gsftopk.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of gsftopk +containersize 34180 +containerchecksum 56a088a5e8204a775886cab7a7f8c97457b0aaaff7b55f403fad28a9ac8d85358502ba88dcbf4878b29f826c3d8ace8fb1fd7787b9e6f9f1d777d93b33481c8d +binfiles arch=i386-netbsd size=26 + bin/i386-netbsd/gsftopk + +name gsftopk.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of gsftopk +containersize 39980 +containerchecksum 990b1e7890d1c2e1100421c0ae75b29cb3a14cefc684912a9f443e73e303d58866d3300a3f9f0fd11632d013c7eb78176849fbf0c9196b8e651eda7eabe0769f +binfiles arch=i386-solaris size=22 + bin/i386-solaris/gsftopk + +name gsftopk.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of gsftopk +containersize 79608 +containerchecksum adfb30b3024a3004ff3f3d0967b007c3fd13c9ad7784e3a7dfc8d5edf299879894e403ed9221c1b522491d9c500395ea4ba35d43cf28ebc968cf98ae256bef7d +binfiles arch=universal-darwin size=67 + bin/universal-darwin/gsftopk + +name gsftopk.win32 +category TLCore +revision 58783 +shortdesc win32 files of gsftopk +containersize 12972 +containerchecksum 15a1a779c301d1e1bdbdf4713002a4286f972aac263feac91395c3d7967d6aa4bf4d7eb10662ec4224ebe14c9095d056f8a1fc37cbb9f5f2f8b66aef98658e00 +binfiles arch=win32 size=6 + bin/win32/gsftopk.exe + +name gsftopk.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of gsftopk +containersize 12208 +containerchecksum 41e42877e21625a36e7599bdd1b45e47f461d13615edbffb7ab9e0876dd43d417d6a9d4030b17a6280256e791ea2070303b5bdf40482d258a669e6852884eab1 +binfiles arch=x86_64-cygwin size=7 + bin/x86_64-cygwin/gsftopk.exe + +name gsftopk.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of gsftopk +containersize 39648 +containerchecksum c9d57cd916fb59fad2f83ea7d69a59475fb2c6486c672c77c0ac7559326f2c60f85d3da19491e59979e98ec3f76e457d3d770b3c3d098fcfc423d121ce8da4a0 +binfiles arch=x86_64-darwinlegacy size=24 + bin/x86_64-darwinlegacy/gsftopk + +name gsftopk.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of gsftopk +containersize 41076 +containerchecksum 560f347b39899702c13090c424adde1ff222c725b8d61e557c804e73153fb50ed572f30f4e8428994175ebce21a51916c154a2b1e4ff4405c2876dccccbe5014 +binfiles arch=x86_64-linux size=23 + bin/x86_64-linux/gsftopk + +name gsftopk.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of gsftopk +containersize 42780 +containerchecksum 807c241204d58a5675a9aa1735ea10ca6f630eafec81b152ae12be4f5f67fcdae5380230009fb48fa50ec5730352172dcfa65231621a6bb88226a2a865fa4591 +binfiles arch=x86_64-linuxmusl size=26 + bin/x86_64-linuxmusl/gsftopk + +name gsftopk.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of gsftopk +containersize 43092 +containerchecksum 2502203a3b0cf746663724ed86f3ba705fd46f0ca919651d3c16fe87e50e745c08212681802edb387d0c34a5ead967f29b6b33b9403f50b156b34c7fc77a9d7d +binfiles arch=x86_64-solaris size=26 + bin/x86_64-solaris/gsftopk + +name gtl +category Package +revision 49527 +shortdesc Manipulating generalized token lists +relocated 1 +longdesc The package provides tools for simple operations on lists of +longdesc tokens which are not necessarily balanced. It is in particular +longdesc used a lot in the unravel package, to go through tokens one at +longdesc a time rather than having to work with entire braced groups at +longdesc a time. The package requires up-to-date versions of the +longdesc l3kernel, l3kpackages, and l3experimental bundles. +containersize 4076 +containerchecksum cd1c08d092b11423d77a87a5fd7cf4f62290aebcfd6a99b12dca957e075d0b26cc3c482b45e5083916bee3bb6aff91940df375ca4b1dbcbd9fc37a31d8709aeb +doccontainersize 550332 +doccontainerchecksum 2f41bb930e46a95d5c7acb07153e5d874724ac009b2741f6f2e62a9b56165b5e2cf06cf8c89cd9c1fc42a1a93babf6761d0a48b418ddc0a0f5d38e9c2f31f175 +docfiles size=136 + RELOC/doc/generic/gtl/README.md details="Readme" + RELOC/doc/generic/gtl/gtl.pdf details="Package documentation" +srccontainersize 12532 +srccontainerchecksum 5b5d004fbd3dafa14102774a3bf57867df1cf9463630a7912d49303aa9daa2c147733badeee3f628c0d7c2c9b8081131ac39f195f6dfe97d659a945702b7eae2 +srcfiles size=17 + RELOC/source/generic/gtl/gtl.dtx + RELOC/source/generic/gtl/gtl.ins +runfiles size=6 + RELOC/tex/generic/gtl/gtl.sty +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-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 0.5 + +name gtrcrd +category Package +revision 32484 +shortdesc Add chords to lyrics +relocated 1 +longdesc The package provides the means to specify guitar chords to be +longdesc played with each part of the lyrics of a song. The syntax of +longdesc the macros reduces the chance of failing to provide a chord +longdesc where one is needed, and the structure of the macros ensures +longdesc that the chord specification appears immediately above the +longdesc start of the lyric. +containersize 3104 +containerchecksum dabadc0fba92f6da23830069e533e8d4fb234bb679aa355382c03bd3ac13924328ea8fcece3186f36d33b7d7f6cceaebb23f1158b855673160f183991e880796 +doccontainersize 147344 +doccontainerchecksum d8e715d1c4d9c7ebb0c34c690a82e338733501012ad19cd9e2c52e6b39dff352a4e042bdc5f54e63a03a38eb9c76b5aed2ec3afae88ccd63f56663ada32e828b +docfiles size=42 + RELOC/doc/latex/gtrcrd/README details="Readme" + RELOC/doc/latex/gtrcrd/gtrcrd-doc.pdf details="Package documentation" + RELOC/doc/latex/gtrcrd/gtrcrd-doc.tex +runfiles size=5 + RELOC/tex/latex/gtrcrd/gtrcrd.sty +catalogue-ctan /macros/latex/contrib/gtrcrd +catalogue-license lppl1.3 +catalogue-topics music chords +catalogue-version 1.1 + +name gtrlib-largetrees +category Package +revision 49062 +shortdesc Library for genealogytree aiming at large trees +relocated 1 +longdesc The main goal of this package is to offer additional database +longdesc fields and formats for the genealogytree package, particularly +longdesc for typesetting large trees. The package depends on +longdesc genealogytree and etoolbox. +containersize 2300 +containerchecksum 320b5993b676d803b235d0a10cfbcdde966c3e9415f164da6f45dbd2f6f201750b84cf9dd8ce5383afd92c72acd35aa8a44d0c6518e359615b5b2009e772bc6a +doccontainersize 313576 +doccontainerchecksum 6558466d513a94cc98e5fe97d5e3bc89f518128dcfe411e27d0af171716545557096a6cdb103511157f0cd93540ea784f97d688ba271d9b2f1918f11608bb437 +docfiles size=78 + RELOC/doc/latex/gtrlib-largetrees/README.md details="Readme" + RELOC/doc/latex/gtrlib-largetrees/gtrlib.largetrees.pdf details="Package documentation" +srccontainersize 8960 +srccontainerchecksum 258780013cefe87f8fed74b0e3251f64da8fe700b13f45dcdf20e9d9215a5b7b74e931bdc1da944e70b5a6c9d87516eb2618546994b5b45193112fa9af74cac3 +srcfiles size=9 + RELOC/source/latex/gtrlib-largetrees/gtrlib.largetrees.dtx + RELOC/source/latex/gtrlib-largetrees/gtrlib.largetrees.ins +runfiles size=3 + RELOC/tex/latex/gtrlib-largetrees/gtrlib.largetrees.code.tex + RELOC/tex/latex/gtrlib-largetrees/gtrlib.largetrees.sty +catalogue-also genealogytree +catalogue-contact-repository https://github.com/Ri-Ga/gtrlib.largetrees +catalogue-ctan /macros/latex/contrib/gtrlib-largetrees +catalogue-license lppl1.2 +catalogue-topics genealogy +catalogue-version 1.2b + +name gu +category Package +revision 15878 +shortdesc Typeset crystallographic group-subgroup-schemes +relocated 1 +longdesc The package simplifies typesetting of simple crystallographic +longdesc group-subgroup-schemes in the Barnighausen formalism. It +longdesc defines a new environment stammbaum, wherein all elements of +longdesc the scheme are defined. Afterwards all necessary dimensions are +longdesc calculated and the scheme is drawn. Currently two steps of +longdesc symmetry reduction are supported. +containersize 6148 +containerchecksum 243eb6ca0af62518d60134a8fa66f91ab05e39c96fa9c0ebeb2232d27f46679da0a634b64273608028bef7f80bfaaf049dcd9f0cd935d5f66b0d5054b2d21a20 +doccontainersize 724360 +doccontainerchecksum 151f9765d6da2312a10523ffca06cb4e0529d4ebf8189e9ddc00f86510c9cd13be9a04e47b85dc8cd815461c17f7e4b8be9604a1a605c86d7228d1113f985a23 +docfiles size=202 + RELOC/doc/latex/gu/README details="Package README" + RELOC/doc/latex/gu/gudemo.tex + RELOC/doc/latex/gu/gudoc.pdf details="Package documentation" language="de" + RELOC/doc/latex/gu/gudoc.tex +runfiles size=8 + RELOC/tex/latex/gu/gu.sty +catalogue-ctan /macros/latex/contrib/gu +catalogue-license lppl +catalogue-topics crystallography + +name gudea +category Package +revision 57359 +shortdesc The Gudea font face with support for LaTeX and pdfLaTeX +relocated 1 +longdesc This package provides the Gudea family of fonts designed by +longdesc Agustina Mingote, with support for LaTeX and pdfLaTeX. +execute addMap Gudea.map +containersize 182776 +containerchecksum e32cd699f60de092f9bf04e0eae725555735478db9ae7bf0a01a8aa78ff303c5dedee7eefcfa94bc1d8012f4062160dcbcb25cd405debccf7eed20abec056cdd +doccontainersize 49432 +doccontainerchecksum 633f6cace4db98c88e3a7ea1f68deeaf9b0fe980ace490807688b629b1e3b2b00a12717b66b641dd9949065e4f72f423f78788693ddfe2128752f8ac990fd43c +docfiles size=16 + RELOC/doc/fonts/gudea/Gudea-samples.pdf details="Font samples" + RELOC/doc/fonts/gudea/Gudea-samples.tex + RELOC/doc/fonts/gudea/LICENSE.TXT + RELOC/doc/fonts/gudea/README details="Readme" +runfiles size=99 + RELOC/fonts/enc/dvips/gudea/a_i65yxe.enc + RELOC/fonts/enc/dvips/gudea/a_lksl5v.enc + RELOC/fonts/enc/dvips/gudea/a_qnu4g5.enc + RELOC/fonts/enc/dvips/gudea/a_ys4752.enc + RELOC/fonts/map/dvips/gudea/Gudea.map + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ly1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ot1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-t1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-t1.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/gudea/Gudea-tlf-ts1.tfm + RELOC/fonts/type1/public/gudea/Gudea-Bold.pfb + RELOC/fonts/type1/public/gudea/Gudea-BoldLCDFJ.pfb + RELOC/fonts/type1/public/gudea/Gudea-Italic.pfb + RELOC/fonts/type1/public/gudea/Gudea-ItalicLCDFJ.pfb + RELOC/fonts/type1/public/gudea/Gudea.pfb + RELOC/fonts/type1/public/gudea/GudeaLCDFJ.pfb + RELOC/fonts/vf/public/gudea/Gudea-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/gudea/Gudea-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/gudea/Gudea-Bold-tlf-t1.vf + RELOC/fonts/vf/public/gudea/Gudea-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/gudea/Gudea-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/gudea/Gudea-Italic-tlf-ot1.vf + RELOC/fonts/vf/public/gudea/Gudea-Italic-tlf-t1.vf + RELOC/fonts/vf/public/gudea/Gudea-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/gudea/Gudea-tlf-ly1.vf + RELOC/fonts/vf/public/gudea/Gudea-tlf-ot1.vf + RELOC/fonts/vf/public/gudea/Gudea-tlf-t1.vf + RELOC/fonts/vf/public/gudea/Gudea-tlf-ts1.vf + RELOC/tex/latex/gudea/Gudea.sty + RELOC/tex/latex/gudea/LY1Gudea-TLF.fd + RELOC/tex/latex/gudea/OT1Gudea-TLF.fd + RELOC/tex/latex/gudea/T1Gudea-TLF.fd + RELOC/tex/latex/gudea/TS1Gudea-TLF.fd +catalogue-contact-bugs https://github.com/ccebinger/CTAN_Gudea +catalogue-contact-development https://github.com/ccebinger/CTAN_Gudea +catalogue-contact-home https://github.com/ccebinger/CTAN_Gudea +catalogue-contact-repository https://github.com/ccebinger/CTAN_Gudea +catalogue-contact-support https://github.com/ccebinger/CTAN_Gudea +catalogue-ctan /fonts/gudea +catalogue-license ofl lppl +catalogue-topics font font-body font-sans font-proportional font-type1 font-supp font-t1enc +catalogue-version 0.0.1 + +name guide-to-latex +category Package +revision 45712 +shortdesc examples and more from Guide to LaTeX, by Kopka and Daly +relocated 1 +containersize 300 +containerchecksum cc569e242b42361e6506144257db1109f1adee52915f361ed330699edea1895b78ac64488ae8b9e2224bd3baab01515be86486113afc1ed9b072a400ca736695 +doccontainersize 174484 +doccontainerchecksum bba47b9a9e5223e558244029e258835a865b90824c7069287f0c996a36c4fb78d21e62e88e52ea008dbc573e7a4ea34843a646eab11d8377a5167724286c397e +docfiles size=200 + RELOC/doc/latex/guide-to-latex/README.txt + RELOC/doc/latex/guide-to-latex/demo.eps + RELOC/doc/latex/guide-to-latex/demo.pdf + RELOC/doc/latex/guide-to-latex/demodoc.pdf + RELOC/doc/latex/guide-to-latex/demodoc.ps + RELOC/doc/latex/guide-to-latex/demodoc.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-8.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-3a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-3b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-3c.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-11.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-12.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-12.toc + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-1a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-1b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-4a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-4b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-5a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-5b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-7a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-7b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-8a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-8b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-8.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-11.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-12.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-13.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-14.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-15.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-16.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-17.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-18.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-19.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-20.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-21a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-21b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-8.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap8/exer8-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap8/exer8-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap8/exer8-3.tex + RELOC/doc/latex/guide-to-latex/mpletter.cls + RELOC/doc/latex/guide-to-latex/palette.pdf + RELOC/doc/latex/guide-to-latex/palette.ps + RELOC/doc/latex/guide-to-latex/palette.tex + RELOC/doc/latex/guide-to-latex/seminar.con + RELOC/doc/latex/guide-to-latex/sempdftx.sty + +name guitar +category Package +revision 32258 +shortdesc Guitar chords and song texts +relocated 1 +longdesc (La)TeX macros for typesetting guitar chords over song texts. +longdesc The toolbox package is required. Note that this package only +longdesc places arbitrary TeX code over the lyrics. To typeset the +longdesc chords graphically (and not only by name), the author +longdesc recommends use of an additional package such as gchords by K. +longdesc Peeters. +containersize 2388 +containerchecksum fed7be24d0bff6d2a0022374e4cbb60cda508b0f99a5a96d59060247aad561c1124728f00a6d0a51b3b22f4490c6153df740a5e9d8106da23c85bb18db385195 +doccontainersize 90368 +doccontainerchecksum 4a2012e693257c2bdb4daf46a2402882caf0c8efbc65bd6679c9eb11440ae75f09d31369839f84312bd1028207d8aa23a745847be1e762dea977ecd7f73b4a87 +docfiles size=31 + RELOC/doc/latex/guitar/README + RELOC/doc/latex/guitar/guitar.pdf details="Package documentation" + RELOC/doc/latex/guitar/guitar.tex + RELOC/doc/latex/guitar/guitar.txt +srccontainersize 12096 +srccontainerchecksum 26b552a91240900b54a3266f26e9f439c46315bb9558d95ae5b27f518a7f5ffdcc1990a4ef676e9186b5492d4a66826754c4d34e13e82b9bd912ff74d14cd185 +srcfiles size=14 + RELOC/source/latex/guitar/guitar.dtx + RELOC/source/latex/guitar/guitar.ins +runfiles size=2 + RELOC/tex/latex/guitar/guitar.sty +catalogue-ctan /macros/latex/contrib/guitar +catalogue-license lppl1.3 +catalogue-topics music chords +catalogue-version 1.6 + +name guitarchordschemes +category Package +revision 54512 +shortdesc Guitar Chord and Scale Tablatures +relocated 1 +longdesc This package provides two commands (\chordscheme and \scales). +longdesc With those commands it is possible to draw schematic diagrams +longdesc of guitar chord tablatures and scale tablatures. Both commands +longdesc know a range of options that allow wide customization of the +longdesc output. The package's drawing is done with the help of TikZ. +containersize 5016 +containerchecksum 777af4d4ad1a35bef3f0075e2df707c3a3c98969ee688b71c3d13449b04ecfcb2d82ed9332a8aae81a3bd825462c2cbbf840b16a72fc6e3f65e7565ef6b1b164 +doccontainersize 424492 +doccontainerchecksum f7508a78fd341e4d4d0fa8a0f89a14420ca50d590bc4a1f5208d4130a3aa84048faa8720545c24e8f0243b1f062a6f40cb5cccdd9ed7db583a11fff1a40c7eeb +docfiles size=108 + RELOC/doc/latex/guitarchordschemes/README details="Readme" + RELOC/doc/latex/guitarchordschemes/guitarchordschemes_en.pdf details="Package documentation" language="en" + RELOC/doc/latex/guitarchordschemes/guitarchordschemes_en.tex +runfiles size=6 + RELOC/tex/latex/guitarchordschemes/guitarchordschemes.sty +catalogue-also guitar +catalogue-contact-repository https://github.com/cgnieder/guitarchordschemes +catalogue-ctan /macros/latex/contrib/guitarchordschemes +catalogue-license lppl1.3 +catalogue-topics music chords +catalogue-version 0.7 + +name guitartabs +category Package +revision 48102 +shortdesc A class for drawing guitar tablatures easily +relocated 1 +longdesc This package provides is a simple LaTeX2e class that allows +longdesc guitarists to create basic guitar tablatures using LaTeX. +longdesc Create music and do not be bothered with macro programming. The +longdesc class depends on the LaTeX packages geometry, harmony, +longdesc inputenc, intcalc, musixtex, tikz, and xifthen, as well as the +longdesc article class. +containersize 2504 +containerchecksum a4866683cb639b63d455f40da2ef58ee4c69d0e29e5071437a07922a0a45598677557ce609905dd8fc5c3e40a98bceb9a753cf4506342585e6cc2c37fa591271 +doccontainersize 205316 +doccontainerchecksum ef5f516db586d1473d949f44a2eb9fb307b84ea5a7dcc3c9419298203b41c54ff4dad75d3b24cf30fbc24f4c60ad4b79b9c1fd58804667732a66b0ccb52cc3b4 +docfiles size=58 + RELOC/doc/latex/guitartabs/README.md details="Readme" + RELOC/doc/latex/guitartabs/guitartabs-doc.pdf details="Package documentation" + RELOC/doc/latex/guitartabs/guitartabs-doc.tex + RELOC/doc/latex/guitartabs/nothingelsematters.pdf details="Example of use" + RELOC/doc/latex/guitartabs/nothingelsematters.tex +runfiles size=3 + RELOC/tex/latex/guitartabs/guitartabs.cls +catalogue-ctan /macros/latex/contrib/guitartabs +catalogue-license lppl1.3c +catalogue-topics music chords class + +name guitlogo +category Package +revision 55741 +shortdesc Macros for typesetting the GuIT logo +relocated 1 +longdesc This package provides some commands useful to correctly write +longdesc the logo of "Gruppo Utilizzatori Italiani di TeX" (Italian TeX +longdesc User Group), using the default document color or any other +longdesc color the user may ever choose, in conformity with the logo's +longdesc scheme as seen on the group's website https://www.guitex.org. +longdesc Likewise, commands are provided that simplify the writing of +longdesc the GuIT acronym's complete expansion, of the addresses of the +longdesc group's internet site and public forum, and the meeting +longdesc 'GuITmeeting' and the magazine Ars TeXnica's logo. Optionally, +longdesc using hyperref, the outputs of the above cited commands can +longdesc become hyperlinks to the group's website +longdesc https://www.guitex.org. The Documentation is available in +longdesc Italian only. +containersize 3380 +containerchecksum 42fe915cdb69b18182222843452627655ba1d619c2ae9eb469673a35aab31967afc3cc2abadbc2fd13d9215555a2f97a54a6d3b1ec895fc3d3f6388819bbb9f1 +doccontainersize 472316 +doccontainerchecksum 505a1f12e772f2f1cebae02164793b0416322aa60cde58a18ba0e3fea0a7072d07d0d8b1bad9aaeb9248dfa89b4b1730e0e5c2a2581b41a7a3a80636fc161b66 +docfiles size=121 + RELOC/doc/latex/guitlogo/README details="Package README" language="it" + RELOC/doc/latex/guitlogo/guit.pdf details="Package documentation" language="it" + RELOC/doc/latex/guitlogo/guittest.pdf + RELOC/doc/latex/guitlogo/guittest.tex +srccontainersize 17780 +srccontainerchecksum 600881490f339ffe540248d7c497a970ee606a9e8167036043b833b24630171d44a58a262e79ddf72fa9308b45bd70c28893251b8c185aeb955114a11c70794a +srcfiles size=17 + RELOC/source/latex/guitlogo/guit.dtx + RELOC/source/latex/guitlogo/guit.ins +runfiles size=4 + RELOC/tex/latex/guitlogo/guit.cfg + RELOC/tex/latex/guitlogo/guit.sty +catalogue-ctan /macros/latex/contrib/GuIT/GuITlogo +catalogue-license lppl1.3a +catalogue-topics logo +catalogue-version 1.0.0-alpha.4 + +name gustlib +category Package +revision 54074 +shortdesc plain macros for much core and extra functionality, from GUST +relocated 1 +longdesc Includes bibliography support, token manipulation, +longdesc cross-references, verbatim, determining length of a paragraph's +longdesc last line, multicolumn output, Polish bibliography and index +longdesc styles, prepress and color separation, graphics manipulation, +longdesc tables. +containersize 40536 +containerchecksum e752e4b53191a9c5b46d1aa5797d491b98ab2585873e9a9a1471aa89accd898cadc5a9332ab36828b4baa6a3d3d69b311794e1948b788db755dc8f066a68550b +doccontainersize 4296 +doccontainerchecksum 9c1c0279f18a37b2a500e415364dd4404a7dca8b6e0f85b053db5511826eb401865984ee3471fbe607e4cfa605ab50c08e6c11b166dd629e84d9f07db4af7114 +docfiles size=5 + RELOC/doc/plain/gustlib/README + RELOC/doc/plain/gustlib/readme.biblotex + RELOC/doc/plain/gustlib/readme.plbtx993 + RELOC/doc/plain/gustlib/readme.plmac218 +runfiles size=73 + RELOC/bibtex/bib/gustlib/plbib.bib + RELOC/bibtex/bst/gustlib/plabbrv.bst + RELOC/bibtex/bst/gustlib/plalpha.bst + RELOC/bibtex/bst/gustlib/plplain.bst + RELOC/bibtex/bst/gustlib/plunsrt.bst + RELOC/tex/plain/gustlib/biblotex/biblotex.tex + RELOC/tex/plain/gustlib/infr-ex.tex + RELOC/tex/plain/gustlib/infram.tex + RELOC/tex/plain/gustlib/licz/licz-tst.mex + RELOC/tex/plain/gustlib/licz/licz.mex + RELOC/tex/plain/gustlib/map/map.tex + RELOC/tex/plain/gustlib/map/split.tex + RELOC/tex/plain/gustlib/map/tsp-tst.mex + RELOC/tex/plain/gustlib/map/tsp.tex + RELOC/tex/plain/gustlib/map/tun-test.mex + RELOC/tex/plain/gustlib/map/tun.tex + RELOC/tex/plain/gustlib/mcol-ex.tex + RELOC/tex/plain/gustlib/meashor.tex + RELOC/tex/plain/gustlib/mimulcol.tex + RELOC/tex/plain/gustlib/plbtx993/plbtxbst.doc + RELOC/tex/plain/gustlib/plbtx993/test.mex + RELOC/tex/plain/gustlib/plmac218/plidxmac.tex + RELOC/tex/plain/gustlib/plmac218/plind.bat + RELOC/tex/plain/gustlib/plmac218/przyklad.tex + RELOC/tex/plain/gustlib/rbox-ex.tex + RELOC/tex/plain/gustlib/roundbox.tex + RELOC/tex/plain/gustlib/tp-crf.tex + RELOC/tex/plain/gustlib/verbatim-dek.tex + +name gustprog +category Package +revision 54074 +shortdesc utility programs for Polish users of TeX +relocated 1 +longdesc Provided as sources, not installed in the bin directories. +containersize 332 +containerchecksum bd9cf1c174a5674a0b71f07bf76f46ca4e15dfa194372cb04e63467c29ee1e07b03d0e611afceae80ea192b6f842fdbfae0bfce7eab2ce43a4e448058521cef6 +doccontainersize 299260 +doccontainerchecksum 268a01f59660e5225c1c21539076e6239381294e6aaa31992032ff8e3d777cb7e4195247c92d9f22efbee498c8bac34cdb915e0a5b0f6cb2b5c0b72c15695d72 +docfiles size=82 + RELOC/doc/support/gustprog/README + RELOC/doc/support/gustprog/l2h-examples.zip + RELOC/doc/support/gustprog/normtext.awk + RELOC/doc/support/gustprog/plmindex.zip + RELOC/doc/support/gustprog/porzadki.pl + RELOC/doc/support/gustprog/slim.zip + +name gzt +category Package +revision 57765 +shortdesc Bundle of classes for "La Gazette des Mathematiciens" +relocated 1 +longdesc This bundle provides two classes and BibLaTeX styles for the +longdesc French journal "La Gazette des Mathematiciens": gzt for the +longdesc complete issues of the journal, aimed at the Gazette's team, +longdesc gztarticle, intended for authors who wish to publish an article +longdesc in the Gazette. This class's goals are to faithfully reproduce +longdesc the layout of the Gazette, thus enabling the authors to be able +longdesc to work their document in actual conditions, and provide a +longdesc number of tools (commands and environments) to facilitate the +longdesc drafting of documents, in particular those containing +longdesc mathematical formulas. +containersize 33980 +containerchecksum b09bdcde2891d6d84ca193a6183b4286d1912c98fdd7cf6a7e737574f352d8eea2fa5cdcf71602291e9f1abd8f7aed3ad9fd6d56571f62a59e9d9bc58c875637 +doccontainersize 634440 +doccontainerchecksum a44bcb21337d7799d6fec0da69784252bdf74be493bfa75fe425a83e7f6d71b1ba46e45626d94b5a1b6234e0c21661cad68e0a95339d19c99577ddaa31a1a451 +docfiles size=178 + RELOC/doc/latex/gzt/CHANGELOG.md + RELOC/doc/latex/gzt/README.md details="Readme" + RELOC/doc/latex/gzt/english/README-TRANSLATION.md + RELOC/doc/latex/gzt/french/denis.png + RELOC/doc/latex/gzt/french/gzt-fr.bib + RELOC/doc/latex/gzt/french/gzt-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/gzt/french/gzt-fr.tex + RELOC/doc/latex/gzt/french/latexmkrc + RELOC/doc/latex/gzt/french/sections/fixed-footnotes.tex + RELOC/doc/latex/gzt/french/sections/gztarticle.tex + RELOC/doc/latex/gzt/french/sections/notations.tex + RELOC/doc/latex/gzt/french/sections/packages-charges.tex + RELOC/doc/latex/gzt/french/sections/todo.tex +srccontainersize 42964 +srccontainerchecksum 48073e4390ca1e8c0fdf1c95069439160b77ac2277dd1452b36c48172589b4a5aca1b5a2f040675acba09f5f60d80fa241475c1eec828d13d21f942ded6714bf +srcfiles size=56 + RELOC/source/latex/gzt/gzt.dtx +runfiles size=68 + RELOC/tex/latex/gzt/gzt.cfg + RELOC/tex/latex/gzt/gzt.cls + RELOC/tex/latex/gzt/gzt.dbx + RELOC/tex/latex/gzt/gzt.lbx + RELOC/tex/latex/gzt/gztarticle.cls + RELOC/tex/latex/gzt/images/README-PICTOGRAMS.md + RELOC/tex/latex/gzt/images/gzt-logo.pdf +catalogue-contact-bugs https://github.com/dbitouze/gzt/issues +catalogue-contact-repository https://github.com/dbitouze/gzt +catalogue-ctan /macros/latex/contrib/gzt +catalogue-license lppl1.3c +catalogue-topics journalpub class french +catalogue-version 1.0.1 + +name h2020proposal +category Package +revision 38428 +shortdesc LaTeX class and template for EU H2020 RIA proposal +relocated 1 +longdesc This package consists of a class file as well as FET and ICT +longdesc proposal templates for writing EU H2020 RIA proposals and +longdesc generating automatically the many cross-referenced tables that +longdesc are required. +containersize 8324 +containerchecksum ddee9c5c1838bad606f212c1a7ebb7ac4d7ae571f1e29e83d55744dd50afb55e302f4f20a3cedd0d4446886cfa515371fb913b862d4549618858896de2a543ef +doccontainersize 349084 +doccontainerchecksum 5ffad62ed8eb39c8cf07d4840983990009e5696a2d7714d2cbab13a69c77634d01f10a18f612c853a09dfd91ae1ea453bb3373681e89a6994ff4924dd64c3093 +docfiles size=147 + RELOC/doc/latex/h2020proposal/README.txt details="Readme" + RELOC/doc/latex/h2020proposal/gpl.txt + RELOC/doc/latex/h2020proposal/manual/h2020proposal.pdf details="Package documentation" + RELOC/doc/latex/h2020proposal/manual/h2020proposal.tex + RELOC/doc/latex/h2020proposal/template-fet/abstract.tex + RELOC/doc/latex/h2020proposal/template-fet/appendix.tex + RELOC/doc/latex/h2020proposal/template-fet/ethics.tex + RELOC/doc/latex/h2020proposal/template-fet/excellence.tex + RELOC/doc/latex/h2020proposal/template-fet/gantt.tex + RELOC/doc/latex/h2020proposal/template-fet/impact.tex + RELOC/doc/latex/h2020proposal/template-fet/implementation.tex + RELOC/doc/latex/h2020proposal/template-fet/members.tex + RELOC/doc/latex/h2020proposal/template-fet/template-fet.pdf details="Template (FET)" + RELOC/doc/latex/h2020proposal/template-fet/template-fet.tex + RELOC/doc/latex/h2020proposal/template-fet/wp-develop.tex + RELOC/doc/latex/h2020proposal/template-fet/wp-management.tex + RELOC/doc/latex/h2020proposal/template-fet/wp-test.tex + RELOC/doc/latex/h2020proposal/template-ict/abstract.tex + RELOC/doc/latex/h2020proposal/template-ict/appendix.tex + RELOC/doc/latex/h2020proposal/template-ict/ethics.tex + RELOC/doc/latex/h2020proposal/template-ict/excellence.tex + RELOC/doc/latex/h2020proposal/template-ict/gantt.tex + RELOC/doc/latex/h2020proposal/template-ict/impact.tex + RELOC/doc/latex/h2020proposal/template-ict/implementation.pdf + RELOC/doc/latex/h2020proposal/template-ict/implementation.tex + RELOC/doc/latex/h2020proposal/template-ict/members.tex + RELOC/doc/latex/h2020proposal/template-ict/template-ict.pdf details="Template (ICT)" + RELOC/doc/latex/h2020proposal/template-ict/template-ict.tex + RELOC/doc/latex/h2020proposal/template-ict/wp-develop.tex + RELOC/doc/latex/h2020proposal/template-ict/wp-management.tex + RELOC/doc/latex/h2020proposal/template-ict/wp-test.tex +runfiles size=11 + RELOC/tex/latex/h2020proposal/h2020proposal.cls +catalogue-ctan /macros/latex/contrib/h2020proposal +catalogue-license gpl3 +catalogue-topics proposal class +catalogue-version 1.0 + +name hackthefootline +category Package +revision 46494 +shortdesc Footline selection and configuration for LaTeX beamer's standard themes +relocated 1 +longdesc This package is taking over, defining and redefining different +longdesc footlines. Configuration is provided via using key-value +longdesc syntax. It depends on the pgfkeys used for providing the +longdesc configuration keys. Optional features require the following +longdesc LaTeX packages: appendixnumberbeamer, calc, etoolbox, and +longdesc numprint. +containersize 4404 +containerchecksum 223fb22b01327fb63ff16684d578f89ee583d5c7700dbfd5966aa8cb94ca4e280e4409620b0d261bf2a80a57f51658990b0a221c0dd311e3eae1f39d459e8098 +doccontainersize 183604 +doccontainerchecksum 960c6a0bd61210b097710cc6715012e4406b54dafcf070659228074598a05e0dbb65669ef77c3f6ca2cf80001e95c5f801070be29d416d2bd552d6c2a1d27f56 +docfiles size=73 + RELOC/doc/latex/hackthefootline/README.md details="Readme" + RELOC/doc/latex/hackthefootline/doc/hackthefootline-doc.pdf details="Package documentation" + RELOC/doc/latex/hackthefootline/doc/hackthefootline-doc.tex + RELOC/doc/latex/hackthefootline/doc/hackthefootline-examples.pdf + RELOC/doc/latex/hackthefootline/doc/hackthefootline-examples.tex +runfiles size=5 + RELOC/tex/latex/hackthefootline/hackthefootline.sty +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-license lppl1.3c +catalogue-topics presentation page-hf + +name hacm +category Package +revision 27671 +shortdesc Font support for the Arka language +relocated 1 +longdesc The package supports typesetting hacm, the alphabet of the +longdesc constructed language Arka. The bundle provides nine official +longdesc fonts, in Adobe Type 1 format. +execute addMap hacm.map +containersize 226288 +containerchecksum 6f4373f4e30d95c747ecbec45c53a9af23b78acb84a063dc0b2d4d5ed218e7c5f70d4f29817d39f6cf62cacc455cc3117ced589d41bf3f321a6f9d882823164a +doccontainersize 205660 +doccontainerchecksum bb6d5cd50e68ce84abd5f7296d8216d929b772f30e946508ca9bad2ffcd8d077d1927fcc76a5ea2e338799109b34adc8272f9f7f6d316f5af1312070f57fcc3e +docfiles size=53 + RELOC/doc/fonts/hacm/README details="Readme" + RELOC/doc/fonts/hacm/hacmdoc.pdf details="Package documentation" + RELOC/doc/fonts/hacm/hacmdoc.tex +runfiles size=106 + RELOC/fonts/map/dvips/hacm/hacm.map + RELOC/fonts/tfm/public/hacm/alblant.tfm + RELOC/fonts/tfm/public/hacm/defans.tfm + RELOC/fonts/tfm/public/hacm/fenlil.tfm + RELOC/fonts/tfm/public/hacm/fialis.tfm + RELOC/fonts/tfm/public/hacm/inje.tfm + RELOC/fonts/tfm/public/hacm/kardinal.tfm + RELOC/fonts/tfm/public/hacm/lantia.tfm + RELOC/fonts/tfm/public/hacm/nalnia.tfm + RELOC/fonts/tfm/public/hacm/olivia.tfm + RELOC/fonts/tfm/public/hacm/ralblant.tfm + RELOC/fonts/tfm/public/hacm/rdefans.tfm + RELOC/fonts/tfm/public/hacm/rfenlil.tfm + RELOC/fonts/tfm/public/hacm/rfialis.tfm + RELOC/fonts/tfm/public/hacm/rinje.tfm + RELOC/fonts/tfm/public/hacm/rkardinal.tfm + RELOC/fonts/tfm/public/hacm/rlantia.tfm + RELOC/fonts/tfm/public/hacm/rnalnia.tfm + RELOC/fonts/tfm/public/hacm/rolivia.tfm + RELOC/fonts/type1/public/hacm/alblant.pfb + RELOC/fonts/type1/public/hacm/defans.pfb + RELOC/fonts/type1/public/hacm/fenlil.pfb + RELOC/fonts/type1/public/hacm/fialis.pfb + RELOC/fonts/type1/public/hacm/inje.pfb + RELOC/fonts/type1/public/hacm/kardinal.pfb + RELOC/fonts/type1/public/hacm/lantia.pfb + RELOC/fonts/type1/public/hacm/nalnia.pfb + RELOC/fonts/type1/public/hacm/olivia.pfb + RELOC/fonts/vf/public/hacm/alblant.vf + RELOC/fonts/vf/public/hacm/defans.vf + RELOC/fonts/vf/public/hacm/fenlil.vf + RELOC/fonts/vf/public/hacm/fialis.vf + RELOC/fonts/vf/public/hacm/inje.vf + RELOC/fonts/vf/public/hacm/kardinal.vf + RELOC/fonts/vf/public/hacm/lantia.vf + RELOC/fonts/vf/public/hacm/nalnia.vf + RELOC/fonts/vf/public/hacm/olivia.vf + RELOC/tex/latex/hacm/hacm.sty + RELOC/tex/latex/hacm/ot1halb.fd + RELOC/tex/latex/hacm/ot1hdef.fd + RELOC/tex/latex/hacm/ot1hfen.fd + RELOC/tex/latex/hacm/ot1hfia.fd + RELOC/tex/latex/hacm/ot1hinj.fd + RELOC/tex/latex/hacm/ot1hkar.fd + RELOC/tex/latex/hacm/ot1hlan.fd +catalogue-ctan /fonts/hacm +catalogue-license lppl1.3 +catalogue-topics font font-type1 font-invented lang-invented +catalogue-version 0.1 + +name hagenberg-thesis +category Package +revision 56798 +shortdesc A Collection of LaTeX classes, style files, and example documents for academic manuscripts +relocated 1 +longdesc This bundle contains a collection of modern LaTeX classes, +longdesc style files, and example documents for authoring Bachelor, +longdesc Master, or Diploma theses and related academic manuscripts in +longdesc English and German. Includes a comprehensive tutorial (in +longdesc German) with detailed instructions and authoring guidelines. +containersize 18368 +containerchecksum abfb384663a77bd084a7a4f3026f59015b1cb70a851e25153c921ede1089bf43b6abf3a8a50469a55cfa6598d54983604d395eab8c5115ecefe7250ba872462a +doccontainersize 3877600 +doccontainerchecksum 78b8f4fff31a9f0a63b6d31e5d07bf8bf76aa6ad5b37e8ab7a28522bb9f9963d0b8e99925681286696d8e6bb688af8ea02788faaa7bff0ab50d2f166b6c9a4af +docfiles size=2194 + RELOC/doc/latex/hagenberg-thesis/README.md details="Readme" + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/images/cola-public-domain-photo-p.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/images/screenshot-clean.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/images/screenshot-dirty.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/images/screenshot-clean.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/images/screenshot-dirty.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/images/PLACE_IMAGES_HERE.txt + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_a.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_b.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_c.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_d.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/messbox.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/abbildungen.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/abschlussarbeit.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/drucken.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/einleitung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/latex.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/literatur.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/mathematik.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/schluss.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/abstract.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/kurzfassung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/vorwort.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_a.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_b.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_c.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_d.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/printbox.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/closing.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/figures.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/introduction.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/latex.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/literature.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/mathematics.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/printing.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/thethesis.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/abstract.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/kurzfassung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/preface.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_a.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_b.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_c.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_d.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/messbox.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/abbildungen.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/abschlussarbeit.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/drucken.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/einleitung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/latex.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/literatur.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/mathematik.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/schluss.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/abstract.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/kurzfassung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/vorwort.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ball-bearing-1.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ball-bearing-2.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/cola-public-domain-photo-p.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters-1.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters-2.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters.ai + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters.fh11.zip + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/fragebogen.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/freehand-export-screen-setup.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ibm-360-color.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-pdf-save-screenhot.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template-orig.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.pdf_tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.svg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/mathematica-example.nb + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/mathematica-example.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/overhang-mounting.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/photoshop-eps-screen.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/screenshot-clean.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/screenshot-dirty.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/straddle-mounting.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/techniccenter-profile-dvi-26.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/techniccenter-profile-dvips-26.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/workflow-cm.fh11.zip + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/workflow-cm.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/yap-inverse-search-settings.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/Manual/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/Manual/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/Manual/references.bib + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis-tutorial.pdf details="Example document / Tutorial (German)" language="de" + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis.pdf details="Package documentation" + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis.tex +runfiles size=21 + RELOC/tex/latex/hagenberg-thesis/hgb.sty + RELOC/tex/latex/hagenberg-thesis/hgbabbrev.sty + RELOC/tex/latex/hagenberg-thesis/hgbalgo.sty + RELOC/tex/latex/hagenberg-thesis/hgbarticle.cls + RELOC/tex/latex/hagenberg-thesis/hgbbib.sty + RELOC/tex/latex/hagenberg-thesis/hgbheadings.sty + RELOC/tex/latex/hagenberg-thesis/hgblistings.sty + RELOC/tex/latex/hagenberg-thesis/hgbmath.sty + RELOC/tex/latex/hagenberg-thesis/hgbreport.cls + RELOC/tex/latex/hagenberg-thesis/hgbthesis.cls +catalogue-contact-repository https://github.com/Digital-Media/HagenbergThesis +catalogue-ctan /macros/latex/contrib/hagenberg-thesis +catalogue-license cc-by-4 +catalogue-topics dissertation class + +name halloweenmath +category Package +revision 52602 +shortdesc Scary and creepy math symbols with AMS-LaTeX integration +relocated 1 +longdesc The package defines a handful of commands for typesetting +longdesc mathematical symbols of various kinds, ranging from 'large' +longdesc operators to extensible arrow-like relations and growing +longdesc arrow-like math accents that all draw from the classic +longdesc Halloween-related iconography (pumpkins, witches, ghosts, cats, +longdesc and so on) while being, at the same time, seamlessly integrated +longdesc within the rest of the mathematics produced by (AmS-)LaTeX. +containersize 9152 +containerchecksum 1c897f5582e26a42799065d9b105bde3ab7823e9320912eba72654d00624a3796f468d9138fcd47c32e021b31bffb1a618f3ce0024ce753005236a9e08ed05d1 +doccontainersize 888640 +doccontainerchecksum aea1397af446f64f4d8bacb03f0f2d211a44f0f85d93612db840f198a1ed894e1b0a3680005a002808fbe5b8b367f8a8d79b9b99908a4be0891c0d5b43c730e2 +docfiles size=231 + RELOC/doc/latex/halloweenmath/00readme.txt details="2nd Readme" + RELOC/doc/latex/halloweenmath/README details="Readme" + RELOC/doc/latex/halloweenmath/halloweenmath-doc.pdf details="Package overview" + RELOC/doc/latex/halloweenmath/halloweenmath-man.pdf details="User manual" + RELOC/doc/latex/halloweenmath/halloweenmath-man.tex + RELOC/doc/latex/halloweenmath/manifest.txt +srccontainersize 37752 +srccontainerchecksum dcefec44ecf9cd8488b756c70624e3cce53ea6cb2c98acd09948d08fa0f4292ea20fd19156189329f30b47a0a3f7f7fee96e633125eb55eee066ee87b09981cf +srcfiles size=49 + RELOC/source/latex/halloweenmath/Makefile + RELOC/source/latex/halloweenmath/halloweenmath.dtx + RELOC/source/latex/halloweenmath/halloweenmath.ins +runfiles size=11 + RELOC/tex/latex/halloweenmath/halloweenmath.sty +catalogue-ctan /macros/latex/contrib/halloweenmath +catalogue-license lppl1.3 +catalogue-topics amusements maths maths-symbol +catalogue-version 0.11 + +name handin +category Package +revision 48255 +shortdesc Light weight template for creating school submissions using LaTeX +relocated 1 +longdesc This package is for students creating school submissions using +longdesc LaTeX. It is especially suitable for math, physics, statistics +longdesc and the like. It can easily be used for creating exercises, +longdesc too. +containersize 3460 +containerchecksum 361fa013f1932da2370ccbd67e70acaac725349e4fd4fea28a6b676a5459aa8ce8fbc1edf42f3f3fe234e12771c5be8bc463ef758f823a3b43fcb7191bc1a660 +doccontainersize 440932 +doccontainerchecksum cf91e16a8f04835a47da1a5ccb31711fd9317db557f0152689a93c4f58de33c8e7c8be1f7c5d9eac599bf8dceab3f4d3e84831efd0612a58571d3c71f508f20c +docfiles size=115 + RELOC/doc/latex/handin/README.txt details="Readme" + RELOC/doc/latex/handin/example.pdf details="Example of use" + RELOC/doc/latex/handin/example.tex + RELOC/doc/latex/handin/handin-doc.pdf details="Package documentation" + RELOC/doc/latex/handin/handin-doc.tex + RELOC/doc/latex/handin/layout.pdf +runfiles size=3 + RELOC/tex/latex/handin/handin.sty +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-license lppl1.3c +catalogue-topics doc-templ +catalogue-version 0.1.1 + +name handout +category Package +revision 43962 +shortdesc Create handout for auditors of a talk +relocated 1 +longdesc In some fields of scholarship, a beamer does not offer good +longdesc support when giving a talk in a proceeding. For example, in +longdesc classical philology, the main sources are text, and it will be +longdesc better to distribute a handout to the audience with extracts of +longdesc the texts about which we will talk. The package supports +longdesc preparation of such handouts when writing the talk. +containersize 2048 +containerchecksum 9c5da5e16df3bfb4eee1ff7b8c6881e7faeba7001fd7f0ecb8b3027a464d611149c8768b8d8853c07417d67a723fe5b1de19620593a177139241b47c7a814285 +doccontainersize 195724 +doccontainerchecksum 6da7783c7a0dcfee168ec4ad6924fca636ccb5fc965e326d9c38ff31c9d2c7942a820165232e4e89b7c1e4857e81952156198de55d7990ba01e5abcd4c31bfcf +docfiles size=74 + RELOC/doc/latex/handout/README details="Readme" + RELOC/doc/latex/handout/examples/example.bib + RELOC/doc/latex/handout/examples/example1-minimal.pdf + RELOC/doc/latex/handout/examples/example1-minimal.tex + RELOC/doc/latex/handout/examples/example2-cancel-quotation.pdf + RELOC/doc/latex/handout/examples/example2-cancel-quotation.tex + RELOC/doc/latex/handout/examples/example3-defined-path.pdf + RELOC/doc/latex/handout/examples/example3-defined-path.tex + RELOC/doc/latex/handout/examples/example4-sectioning.pdf + RELOC/doc/latex/handout/examples/example4-sectioning.tex + RELOC/doc/latex/handout/examples/example5-numbering.pdf + RELOC/doc/latex/handout/examples/example5-numbering.tex + RELOC/doc/latex/handout/examples/example6-not-and-only.pdf + RELOC/doc/latex/handout/examples/example6-not-and-only.tex + RELOC/doc/latex/handout/examples/example7-biblatex.pdf + RELOC/doc/latex/handout/examples/example7-biblatex.tex + RELOC/doc/latex/handout/examples/latexmkrc + RELOC/doc/latex/handout/examples/makefile + RELOC/doc/latex/handout/examples/txt/Preau1583-not-and-only.tex + RELOC/doc/latex/handout/examples/txt/Preau1583.tex + RELOC/doc/latex/handout/examples/txt/Preau1583b.tex + RELOC/doc/latex/handout/examples/txt/Richard_Simon_NT.tex + RELOC/doc/latex/handout/handout.pdf details="Package documentation" + RELOC/doc/latex/handout/handout.tex + RELOC/doc/latex/handout/latexmkrc + RELOC/doc/latex/handout/makefile +runfiles size=1 + RELOC/tex/latex/handout/handout.sty +catalogue-contact-bugs https://github.com/maieul/handout/issues +catalogue-contact-repository https://github.com/maieul/handout +catalogue-ctan /macros/latex/contrib/handout +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.6.0 + +name hands +category Package +revision 13293 +shortdesc Pointing hand font +relocated 1 +longdesc Provides right- and left-pointing hands in both black-on-white +longdesc and white-on-black realisation. The font is distributed as +longdesc Metafont source. +containersize 2612 +containerchecksum 77c1742d045110ee4da7473b14c1804fcfab3772ae10223848fee99c7c8a8fb3809aabeb82e4c99460f3cfa0e009ee8d470d60e8be4c79c25c3ff990b7d1595a +runfiles size=6 + RELOC/fonts/source/public/hands/hands.mf + RELOC/fonts/source/public/hands/handsdef.mf + RELOC/fonts/source/public/hands/mirror.mf + RELOC/fonts/source/public/hands/reverse.mf + RELOC/fonts/source/public/hands/rvmirror.mf + RELOC/fonts/tfm/public/hands/hands.tfm +catalogue-ctan /fonts/hands +catalogue-license pd +catalogue-topics font font-mf font-symbol + +name hang +category Package +revision 43280 +shortdesc Environments for hanging paragraphs and list items +relocated 1 +longdesc This package provides environments for hanging paragraphs and +longdesc list items. In addition, it defines environments for labeled +longdesc paragraphs and list items. +containersize 1056 +containerchecksum 4a8227707b6878ab010b595296dbc96f0b31489dfc0abf0116e00d6b0acf54e91bad1ec182169357e4a2e1f14ee27afcaa23bd35db1fed7e4e972e66eebee042 +doccontainersize 53740 +doccontainerchecksum bb0af0db38793e12dbd8d33e2df613d581a1809e0661138a3e75cabac1aee2aca942aaa429678a817f487fda82f3ffa3a631d98c3129853ba6a5ce4175346b09 +docfiles size=22 + RELOC/doc/latex/hang/COPYING + RELOC/doc/latex/hang/ChangeLog + RELOC/doc/latex/hang/README details="Readme" + RELOC/doc/latex/hang/hang.pdf details="Package documentation" + RELOC/doc/latex/hang/hang.tex + RELOC/doc/latex/hang/sample.pdf details="Sample of use" + RELOC/doc/latex/hang/sample.tex +runfiles size=1 + RELOC/tex/latex/hang/hang.sty +catalogue-also hanging +catalogue-ctan /macros/latex/contrib/hang +catalogue-license lppl1.3 +catalogue-topics layout list +catalogue-version 2.1 + +name hanging +category Package +revision 15878 +shortdesc Hanging paragraphs +relocated 1 +longdesc The hanging package facilitates the typesetting of hanging +longdesc paragraphs. The package also enables typesetting with hanging +longdesc punctuation, by making punctuation characters active. This +longdesc facility is best suppressed (it can interfere with other +longdesc packages) -- there are package options for suppressing each +longdesc individual punctuation character. 'Real' attempts at hanging +longdesc punction should nowadays use the microtype package, which takes +longdesc advantage of the support offered in recent versions of pdfTeX. +containersize 1956 +containerchecksum 54bd2269c169bfe2a28513354407de22948658e8067cebafa3a3b3d88040acc318f3f3aa375798e36bafacecfa10c4ab5500095b92328e6cbfc12a541a8a7b3e +doccontainersize 145540 +doccontainerchecksum a1e7e9d0d5b85e43ebd7ad88b39d6d5629807f668040041fd1248239c02394cf3c51aa676065c1d1d9e9ba8d1ad20f00e46d25025ddc0db7ec15148280a5b9c0 +docfiles size=42 + RELOC/doc/latex/hanging/README details="Readme" + RELOC/doc/latex/hanging/hanging.pdf details="Package documentation" +srccontainersize 7908 +srccontainerchecksum d982182e5c6c19d6dfaf527f5ff95c0a1d15cfa3078205c73d9ac894d24ebeea31a636d66356387996fc0faf9815242661c884dd566c0dd1d90779d61ba93c28 +srcfiles size=7 + RELOC/source/latex/hanging/hanging.dtx + RELOC/source/latex/hanging/hanging.ins +runfiles size=2 + RELOC/tex/latex/hanging/hanging.sty +catalogue-also hang +catalogue-ctan /macros/latex/contrib/hanging +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 1.2b + +name hanoi +category Package +revision 25019 +shortdesc Tower of Hanoi in TeX +relocated 1 +longdesc The Plain TeX program (typed in the shape of the towers of +longdesc Hanoi) serves both as a game and as a TeX programming exercise. +longdesc As a game it will solve the towers with (up to) 15 discs (with +longdesc 15 discs, 32767 moves are needed). +containersize 1496 +containerchecksum efc8c4892ea4cc8ae395907fc428fe74d535d689a68b3b21422c5c944d4defd57747e519dbca9bd2df2dd010b99e3132afceadee36d547fc11b04480147626c4 +runfiles size=1 + RELOC/tex/plain/hanoi/hanoi.tex +catalogue-ctan /macros/plain/contrib/hanoi +catalogue-license pd +catalogue-topics games +catalogue-version 20120101 + +name happy4th +category Package +revision 25020 +shortdesc A firework display in obfuscated TeX +relocated 1 +longdesc The output PDF file gives an amusing display, as the reader +longdesc pages through it. +containersize 436 +containerchecksum 45492a6becc7496ec6ca6adca474aa141b9c68b06aeed46bb1459f15b6cd1df9e4e2de3842a91ae0121d83269c1fe4f772418a93da67031bd14b6649f3a80657 +doccontainersize 52364 +doccontainerchecksum 78fe311673e370b867ad209fc1c62acd7aeb515e4b145bb7c487d30c121715994803e6dd540bcbf1b9b0776014327c7ca2f6c03437d9ff0b40f477ebff9cf254 +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-license pd +catalogue-topics games frivolous +catalogue-version 20120102 + +name har2nat +category Package +revision 54080 +shortdesc Replace the harvard package with natbib +relocated 1 +longdesc This small package allows a LaTeX document containing the +longdesc citation commands provided by the Harvard package to be +longdesc compiled using the natbib package. Migration from harvard to +longdesc natbib thus can be achieved simply by replacing +longdesc \usepackage{harvard} with usepackage{natbib} +longdesc usepackage{har2nat} It is important that har2nat be loaded +longdesc after natbib, since it modifies natbib commands. +containersize 1112 +containerchecksum b88cc102c09fc86a762da6c16802241af705a0a7da8707d072f051dea7b5836af9bd5cd46e7c80922877dfa389aace6b7713b10c4f1da75cd0d03c7bb3e68745 +doccontainersize 216528 +doccontainerchecksum de971a2f65481fda590a1ecb254663778a9260e65d26efdd67c739f02099baddd4937edd1bdadbce5020fbd9ad227cd525ad524dc4ea5fc1e563369313f5ae22 +docfiles size=57 + RELOC/doc/latex/har2nat/README details="Readme" + RELOC/doc/latex/har2nat/har2nat.pdf details="Package documentation" + RELOC/doc/latex/har2nat/har2nat.tex +runfiles size=1 + RELOC/tex/latex/har2nat/har2nat.sty +catalogue-ctan /macros/latex/contrib/har2nat +catalogue-license lppl +catalogue-topics bibtex-supp +catalogue-version 1.0 + +name haranoaji +category Package +revision 58830 +shortdesc Harano Aji Fonts +longdesc Harano Aji Fonts (Harano Aji Mincho and Harano Aji Gothic) are +longdesc fonts obtained by replacing Adobe-Identity-0 (AI0) CIDs of +longdesc Source Han fonts (Source Han Serif and Source Han Sans) with +longdesc Adobe-Japan1 (AJ1) CIDs. There are 14 fonts, 7 weights each for +longdesc Mincho and Gothic. +postaction script file=tlpkg/tlpostcode/haranoaji-tlpost.pl +containersize 25893424 +containerchecksum 13029f3d1a25d11e2f9f04213532910bfededd9c8fc6f13913fd52c0018db493655a31084ca3ee3325569b500de5a641e69337a6f23ed575e429475d66940898 +doccontainersize 3048 +doccontainerchecksum 0e6b2d9cb7afbef675d4a0cff16b80729ac70d48bad26a5b2e784ef6386aa8f8dcd156b51f19d9eacdfc38962da135aeb1a3bf735f38fc7cfa300b9100b57ce9 +docfiles size=3 + texmf-dist/doc/fonts/haranoaji/LICENSE + texmf-dist/doc/fonts/haranoaji/README details="Readme" +runfiles size=9358 + texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiGothic-Bold.otf + texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiGothic-Heavy.otf + texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiGothic-Medium.otf + texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiGothic-Regular.otf + texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiMincho-Bold.otf + texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiMincho-Light.otf + texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiMincho-Regular.otf + texmf-dist/tex/latex/haranoaji/HaranoAjiGothic.fontspec + texmf-dist/tex/latex/haranoaji/HaranoAjiMincho.fontspec + tlpkg/tlpostcode/haranoaji-tlpost.pl +catalogue-also haranoaji-extra +catalogue-contact-home https://github.com/trueroad/HaranoAjiFonts +catalogue-ctan /fonts/haranoaji +catalogue-license ofl +catalogue-topics font font-cjk japanese +catalogue-version 20210410 + +name haranoaji-extra +category Package +revision 58831 +shortdesc Harano Aji Fonts +relocated 1 +longdesc Harano Aji Fonts (Harano Aji Mincho and Harano Aji Gothic) are +longdesc fonts obtained by replacing Adobe-Identity-0 (AI0) CIDs of +longdesc Source Han fonts (Source Han Serif and Source Han Sans) with +longdesc Adobe-Japan1 (AJ1) CIDs. There are 14 fonts, 7 weights each for +longdesc Mincho and Gothic. +containersize 25771060 +containerchecksum 97d75fa7b631b9319c66c4c9ce7768154efb3ccef02e8d8a0f19660972e171b59ad1a7cb53df976d6f593f7d7e19c897afdef3fdf1a2cc47648e53ee1512884b +doccontainersize 3060 +doccontainerchecksum 46e4516105a996f0abd7a848e51e98b739d7e525ecf5ce3db2bb7542849219414032db56e304e62a588d6dbc26cb9cce174189c75885d161a06a5dfc6d6c69b3 +docfiles size=3 + RELOC/doc/fonts/haranoaji-extra/LICENSE + RELOC/doc/fonts/haranoaji-extra/README details="Readme" +runfiles size=9487 + RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiGothic-ExtraLight.otf + RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiGothic-Light.otf + RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiGothic-Normal.otf + RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiMincho-ExtraLight.otf + RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiMincho-Heavy.otf + RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiMincho-Medium.otf + RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiMincho-SemiBold.otf +catalogue-also haranoaji +catalogue-contact-home https://github.com/trueroad/HaranoAjiFonts +catalogue-ctan /fonts/haranoaji-extra +catalogue-license ofl +catalogue-topics font font-cjk japanese +catalogue-version 20210410 + +name hardwrap +category Package +revision 21396 +shortdesc Hard wrap text to a certain character length +relocated 1 +longdesc The package facilitates wrapping text to a specific character +longdesc width, breaking lines by words rather than, as done by TeX, by +longdesc characters. The primary use for these facilities is to aid the +longdesc generation of messages sent to the log file or console output +longdesc to display messages to the user. Package authors may also find +longdesc this useful when writing out arbitary text to an external file. +containersize 2732 +containerchecksum eeb0f1da2161dae80d292db7b3289a307d892b8967ecf16021b8ed73c5fe724d914dda356bb8fbb48786760698e0060b39349b51886e13289524ed9d45463106 +doccontainersize 120084 +doccontainerchecksum 6dbb83fc5d4b82d11bc8d97d0ded3bcfe583c2b21ec2a260000b6bfb0bdea9c10df834735ffdcddfa9785b7c86b53920a20146d020b0435b8dc04610f05b9b16 +docfiles size=31 + RELOC/doc/latex/hardwrap/README details="Readme" + RELOC/doc/latex/hardwrap/hardwrap.pdf details="Package documentation" +srccontainersize 11108 +srccontainerchecksum 9a40a2a441e9f47b3d681dcd064fad48fe90999b34b57c85b7112e518c99d3b87a9bfc3867beb66e76499bb53ff3c14837f71f2d261ed4c78cad447f185d0ce5 +srcfiles size=11 + RELOC/source/latex/hardwrap/hardwrap.dtx + RELOC/source/latex/hardwrap/hardwrap.ins +runfiles size=3 + RELOC/tex/latex/hardwrap/hardwrap.sty +catalogue-ctan /macros/latex/contrib/hardwrap +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 0.2 + +name harmony +category Package +revision 15878 +shortdesc Typeset harmony symbols, etc., for musicology +relocated 1 +longdesc The package harmony.sty uses the packages ifthen and amssymb +longdesc from the amsfonts bundle, together with the LaTeX font +longdesc lcirclew10 and the font musix13 from musixtex. +containersize 2444 +containerchecksum 25e84addf5ac4c67985e1e433f795f377accfdd4dc56eae0ffb25ddffeb52e0a44278ce1a936406105ff5b7e9541452a103e0bb4ed91b8949facee75ca7c11ae +doccontainersize 138760 +doccontainerchecksum 3226831df9702b669ba4c269549927563ae321e8e10e0e41c6bd1a8d6522dcdaa4ae6a25a907a84cc1dc324c516a53754c81a0e1296fd8e3afbbb29f0992ead9 +docfiles size=40 + RELOC/doc/latex/harmony/README details="Readme" + RELOC/doc/latex/harmony/harmony.pdf details="Package documentation (by example)" + RELOC/doc/latex/harmony/harmony.tex +runfiles size=3 + RELOC/tex/latex/harmony/harmony.sty +catalogue-ctan /macros/latex/contrib/harmony +catalogue-license lppl +catalogue-topics music + +name harnon-cv +category Package +revision 26543 +shortdesc A CV document class with a vertical timeline for experience +relocated 1 +longdesc The class offers another modern, neat, design, and provides a +longdesc simple means of adding an 'experience timeline'. +containersize 2180 +containerchecksum 5acef7bfd07f896f4251fe922cb96f71e9f289205eebfa83dd6aadd241f20eec5d9ecaa3d70d6df3dd61fbe7523f568407d89b7c32c27aa719a6f97b89f4cd33 +doccontainersize 50396 +doccontainerchecksum 1a8d96a152f9ac90f3a6e546c03652ebcde8f8d88a7282626d44177854aa41ec1c66eb6f4d787853711b80935f5e3e3c31d726d0e49d60841119db7ae278de96 +docfiles size=16 + RELOC/doc/latex/harnon-cv/README details="Readme" + RELOC/doc/latex/harnon-cv/sample.pdf details="Sample of use" + RELOC/doc/latex/harnon-cv/sample.tex +runfiles size=2 + RELOC/tex/latex/harnon-cv/harnon-cv.cls +catalogue-ctan /macros/latex/contrib/harnon-cv +catalogue-license pd +catalogue-topics cv class +catalogue-version 1.0 + +name harpoon +category Package +revision 21327 +shortdesc Extra harpoons, using the graphics package +relocated 1 +longdesc Provides over- and under-harpoon symbol commands; the harpoons +longdesc may point in either direction, with the hook pointing up or +longdesc down. The covered object is provided as an argument to the +longdesc commands, so that they have the look of accent commands. +containersize 1196 +containerchecksum 1894f54ff9eb98975f4eec9250a382534a0ede5312b4b540223d298a0fe5d7d8d24abe2018d07b30773e14bacdd97b60039a458fd274bb446aeb2e26b91bf96f +doccontainersize 19464 +doccontainerchecksum 4d69050cd2a7c57219a7c55e8d97656fe6f130936d2e79a00d3760e9139799cbb98db2f338586b65412402069b22971ac73e5b722a3911bf1402625dac3e7d52 +docfiles size=8 + RELOC/doc/latex/harpoon/harpoon.pdf details="Package documentation" + RELOC/doc/latex/harpoon/harpoon.tex +runfiles size=1 + RELOC/tex/latex/harpoon/harpoon.sty +catalogue-ctan /macros/latex/contrib/harpoon +catalogue-license pd +catalogue-topics graphics-symb +catalogue-version 1.0 + +name harvard +category Package +revision 15878 +shortdesc Harvard citation package for use with LaTeX 2e +relocated 1 +longdesc This is a re-implementation, for LaTeX 2e, of the original +longdesc Harvard package. The bundle contains the LaTeX package, several +longdesc BibTeX styles, and a 'Perl package' for use with LaTeX2HTML. +longdesc Harvard is an author-year citation style (all but the first +longdesc author are suppressed in second and subsequent citations of the +longdesc same entry); the package defines several variant styles: +longdesc apsr.bst for the American Political Science Review; agsm.bst +longdesc for Australian Government publications; dcu.bst from the Design +longdesc Computing Unit of the University of Sydney; kluwer.bstwhich +longdesc aims at the format preferred in Kluwer publications; +longdesc nederlands.bst which deals with sorting Dutch names with +longdesc prefixes (such as van) according to Dutch rules, together with +longdesc several styles whose authors offer no description of their +longdesc behaviour. +containersize 16376 +containerchecksum 64781bb5c419248934f259dafba2c43270396a1d3f49bb9a79050ebbb5655a5836a07fd69720f54f009501c5294a62f344f6b6c76adb89114a8c60d1e149e612 +doccontainersize 75192 +doccontainerchecksum 291c2a530da6d24ecf1a87818d27b6141e99944eed10cc2dced2537f30ecfc12580c2f58d01245ef53f7d2b803853ce9bf72c03f8a2c3267dde0f4c799a991bc +docfiles size=35 + RELOC/doc/latex/harvard/INSTALL + RELOC/doc/latex/harvard/README details="Package Readme" + RELOC/doc/latex/harvard/harvard.pdf details="Package documentation" + RELOC/doc/latex/harvard/harvard.perl + RELOC/doc/latex/harvard/harvard.tex + RELOC/doc/latex/harvard/manifest.txt +srccontainersize 1132 +srccontainerchecksum 58720acea1588f742d95d2916f8b1a5c8cba391243a433ae9b2cc4845dd3949c7b2a7a349b87fd663023e4d26b15b15dfb89b7f8db92e14e52f2f7ab835a160a +srcfiles size=2 + RELOC/source/latex/harvard/Makefile + RELOC/source/latex/harvard/doc_Makefile +runfiles size=55 + RELOC/bibtex/bib/harvard/harvard.bib + RELOC/bibtex/bst/harvard/agsm.bst + RELOC/bibtex/bst/harvard/apsr.bst + RELOC/bibtex/bst/harvard/dcu.bst + RELOC/bibtex/bst/harvard/jmr.bst + RELOC/bibtex/bst/harvard/jphysicsB.bst + RELOC/bibtex/bst/harvard/kluwer.bst + RELOC/bibtex/bst/harvard/nederlands.bst + RELOC/tex/latex/harvard/harvard.sty +catalogue-also har2nat +catalogue-ctan /macros/latex/contrib/harvard +catalogue-license lppl +catalogue-topics bibtex-sty bibtex-supp +catalogue-version 2.0.5 + +name harveyballs +category Package +revision 32003 +shortdesc Create Harvey Balls using TikZ +relocated 1 +longdesc The package provides 5 commands (giving symbols that indicate +longdesc values from "none" to "full"). +containersize 1284 +containerchecksum c282249d5758f6c8aa9dfd06cc4671211e76adc2e7c4f5cf925e713472e60f3d44c8a389c9ab4db5b8096336d46d99b62bde0f8c1f9fb5d22857e3cba98994e0 +doccontainersize 138784 +doccontainerchecksum 89ede2f13e82600a2e78047a08766e99879ef5c64dcbcf747a2c21b1a395f4c1a1184921a8a0064b15b86f574834f602870f6641f0f265f92dce506959c6c4e7 +docfiles size=39 + RELOC/doc/latex/harveyballs/README details="Readme" + RELOC/doc/latex/harveyballs/harveyballs-Manual.pdf details="Package documentation" + RELOC/doc/latex/harveyballs/harveyballs-Manual.tex +runfiles size=1 + RELOC/tex/latex/harveyballs/harveyballs.sty +catalogue-ctan /graphics/pgf/contrib/harveyballs +catalogue-license gpl3 +catalogue-topics graphics-symb pgf-tikz +catalogue-version 1.1 + +name harvmac +category Package +revision 15878 +shortdesc Macros for scientific articles +relocated 1 +longdesc Known as 'Harvard macros', since written at that University. +containersize 5640 +containerchecksum 7acf7eb52104bab80b0b9995cf43cac842c106b8aecdff8245b0d1ce8440823e65ead75e470f00923764eadd32e936e02192ec7bbe70295ca254aa57f9b5f662 +doccontainersize 5896 +doccontainerchecksum a0f3308b938ae73c66398c5a3140662240603248cd6fe338a22f3ca6b23f28789dbccee48dcd94a8bf84de029ec103aa35c5b9a78151ceaf61a9cb60b832c484 +docfiles size=5 + RELOC/doc/plain/harvmac/README + RELOC/doc/plain/harvmac/harvsamp.tex +runfiles size=4 + RELOC/tex/plain/harvmac/harvmac.tex +catalogue-ctan /macros/plain/contrib/harvmac +catalogue-license other-free +catalogue-topics plain-ext + +name hatching +category Package +revision 23818 +shortdesc MetaPost macros for hatching interior of closed paths +relocated 1 +longdesc The file hatching.mp contains a set of MetaPost macros for +longdesc hatching interior of closed paths. Examples of usage are +longdesc included. +containersize 1528 +containerchecksum 71983591270b533a6824a836948fdd15d19c3f966c8277d8948b13c5f38b29c29c0b7fe577661f1ecc570dd71d89fa964afd254d50556b6893667cda95e21aa7 +doccontainersize 2444 +doccontainerchecksum 02c2eb4991aa9775feec0846eaad9ddb74123a64eba8a3731c8e40c689844e542793e0f6884df8666f3cec2ed43af26b2d25254cd0536920c6ff0b107f35bf5b +docfiles size=3 + RELOC/doc/metapost/hatching/README details="Readme" + RELOC/doc/metapost/hatching/htchuse.mp + RELOC/doc/metapost/hatching/htchuse_.tex +runfiles size=1 + RELOC/metapost/hatching/hatching.mp +catalogue-ctan /graphics/metapost/contrib/macros/hatching +catalogue-license pd +catalogue-topics graphics-subpic +catalogue-version 0.11 + +name hausarbeit-jura +category Package +revision 56070 +shortdesc Class for writing "juristische Hausarbeiten" at German Universities +relocated 1 +longdesc The class was developed for use by students writing legal +longdesc essays ("juristische Hausarbeit") at German Universities. It is +longdesc based on jurabook and jurabib and makes it easy for LaTeX +longdesc beginners to get a correct and nicely formatted paper. +containersize 5240 +containerchecksum bfee6719ea75ee672a39234d9416a0415a11658c45f4e5958bb12fa67ea416f9da83d2583e7007e3dad860a18d207c42e3e0fbaa3f09afd0b3825c170d00c63a +doccontainersize 342728 +doccontainerchecksum 76898cfd9d4bd0f34632092ac7c1d913f4d460beb9b9fd3d98c249156c406b81fe42a4bed754fde79c497f9e674f50c698de598c9bb675270e7ada1c0002bba4 +docfiles size=87 + RELOC/doc/latex/hausarbeit-jura/README.md details="Readme" + RELOC/doc/latex/hausarbeit-jura/hausarbeit-demo.bib + RELOC/doc/latex/hausarbeit-jura/hausarbeit-demo.tex + RELOC/doc/latex/hausarbeit-jura/hausarbeit-jura.pdf details="Package documentation (German)" language="de" +srccontainersize 12828 +srccontainerchecksum 3346edf31e0f7545c1c53fbe88fd12a902ef673cf5dff0858caec415e1b30e3c26a2bad613a947f5897b6867ac5730deff8c7cf24f51d9078ed0494104bf5a1f +srcfiles size=12 + RELOC/source/latex/hausarbeit-jura/hausarbeit-jura.dtx + RELOC/source/latex/hausarbeit-jura/hausarbeit-jura.ins +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-license lppl1.3 +catalogue-topics legal essay class +catalogue-version 2.1.0 + +name havannah +category Package +revision 36348 +shortdesc Diagrams of board positions in the games of Havannah and Hex +relocated 1 +longdesc This package defines macros for typesetting diagrams of board +longdesc positions in the games of Havannah and Hex. +containersize 2792 +containerchecksum f19498f0f9a7ce349fab4291fef80ff2f2f9eb88c60edeb76174918955fab51f22a0d06b533112e594c0f4cfba23feab58c41fe75e1c4fa2fc4db7cd9f473d0e +doccontainersize 222808 +doccontainerchecksum ee1a90d491debac3f22f470e5df79e11152d153cef97e8d2e38c5d8a60a1931384d65bb91a6d459e6aeba39741763fa67d589bf9004efc5059699ec621b99e43 +docfiles size=57 + RELOC/doc/latex/havannah/README details="Readme" + RELOC/doc/latex/havannah/havannah.pdf details="Package documentation" +srccontainersize 6160 +srccontainerchecksum 9831ea87fbe6e12af8c7fb49d321049316221f4dd33b79a9495c5205b60ddf2f3593c8dfe2f4157e3934f21e69e3004b05802a0d592ae608b2de69cceb2f0c7c +srcfiles size=9 + RELOC/source/latex/havannah/havannah.dtx + RELOC/source/latex/havannah/havannah.ins +runfiles size=3 + RELOC/tex/latex/havannah/havannah.sty +catalogue-ctan /macros/latex/contrib/havannah +catalogue-license lppl1.2 +catalogue-topics games pgf-tikz + +name hc +category Package +revision 15878 +shortdesc Replacement for the LaTeX classes +relocated 1 +longdesc A set of replacements for the default LaTeX classes, based upon +longdesc the Koma-Script bundle and the seminar class. Includes hcart, +longdesc hcreport, hcletter, and hcslides. +containersize 12824 +containerchecksum 17c7037eb04c1d0064dbb637f51947243d1b8f07d46245dfb8f2a38a1ea068ebe41da7e2346ccedf02979003a0a2fa0fbd25eaebf7847b266e21b7c873b032d4 +doccontainersize 43508 +doccontainerchecksum 18aaf579ef82a11ea1e752524d9a04a4a0aa5d6cbb496bde380664723dd30cd421c77dfba1ee6bd88def576c76e202b328198fa6dfb4a9ab451875c3753a515b +docfiles size=38 + RELOC/doc/latex/hc/COPYING + RELOC/doc/latex/hc/FILES + RELOC/doc/latex/hc/README details="Readme" + RELOC/doc/latex/hc/hc.ps +srccontainersize 14060 +srccontainerchecksum 42d3f57fb2c38823875116a67e3e71a3b1aeccdfa00c7a201163325c31fbd47d60a1dd028c6d9102d38d6490424bb118178c7589a433a69ec26e505b805418f8 +srcfiles size=15 + RELOC/source/latex/hc/hc.dtx + RELOC/source/latex/hc/hc.ins +runfiles size=35 + RELOC/bibtex/bst/hc/hc-de.bst + RELOC/bibtex/bst/hc/hc-en.bst + RELOC/tex/latex/hc/german.hld + RELOC/tex/latex/hc/hcart.cls + RELOC/tex/latex/hc/hcletter.cls + RELOC/tex/latex/hc/hcreport.cls + RELOC/tex/latex/hc/hcslides.cls +catalogue-ctan /macros/latex/contrib/hc +catalogue-license other-free +catalogue-topics class presentation letter + +name he-she +category Package +revision 41359 +shortdesc Alternating pronouns to aid gender-neutral writing +relocated 1 +longdesc The package implements a version of semi-automatic pronoun +longdesc switching for writing gender-neutral (and possibly annoying) +longdesc prose. It has upper- and lowercase versions of switching +longdesc pronouns for all case forms, plus anaphoric versions that +longdesc reflect the current gender choice. +containersize 3096 +containerchecksum 726954216d3f8328eb7868553875651c2dbc3f626a9eb60fddd770b0e236a4e09a45872020589d8f263cb9f39300d1743e0a35676947752f33933db1e766411d +doccontainersize 213100 +doccontainerchecksum 580702222de769b066b01af45aad75717d11f46178a2b1f19e0bdc85b67497d9aed8b7ad642f76b8b85c5513f4921f58af8bcb80d1fcb88307f8ca8b07c8307b +docfiles size=56 + RELOC/doc/latex/he-she/README details="Readme" + RELOC/doc/latex/he-she/he-she.pdf details="Package documentation" + RELOC/doc/latex/he-she/he-she.tex +runfiles size=3 + RELOC/tex/latex/he-she/he-she.sty +catalogue-also gender eemeir +catalogue-ctan /macros/latex/contrib/he-she +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.3 + +name hecthese +category Package +revision 56181 +shortdesc A class for dissertations and theses at HEC Montreal +relocated 1 +longdesc This package provides the hecthese class, a class based on +longdesc memoir and compatible with LaTeX. Using this class, +longdesc postgraduate students at HEC Montreal will be able to write +longdesc their dissertation or thesis while complying with all the +longdesc presentation standards required by the University. This class +longdesc is meant to be as flexible as possible; in particular, there +longdesc are very few hardcoded features except those that take care of +longdesc the document's layout. Dissertations and theses at HEC Montreal +longdesc can be written on a per-chapter or per-article basis. Documents +longdesc that are written on a per-article basis require a bibliography +longdesc for each of the included articles and a general bibliography +longdesc for the entire document. The hecthese class takes care of these +longdesc requirements. The class depends on babel, color, enumitem, +longdesc fontawesome, framed, numprint, url, and hyperref. +containersize 3984 +containerchecksum 8a2d32907fd13e505bb0d7a3c2683cca93c3fd40b471adb622ce06a315558c9ac8f991a3fffbcd52a6be93cb027785d4814e0f9364370cc423a30b115ad644b0 +doccontainersize 876192 +doccontainerchecksum efa6e45840e77b4a9905cae13b7dc3322d85429c5acb4c59d81a86833b0bf0d92f38fdcad00f5befc32e883ee4c530abd6921411ff7c5c2df8dd25507a6e1480 +docfiles size=300 + RELOC/doc/latex/hecthese/README.md details="Readme" + RELOC/doc/latex/hecthese/abstract-english.tex + RELOC/doc/latex/hecthese/abstract-french.tex + RELOC/doc/latex/hecthese/acknowledgements.tex + RELOC/doc/latex/hecthese/acronym-list.tex + RELOC/doc/latex/hecthese/annexe.tex + RELOC/doc/latex/hecthese/appendix.tex + RELOC/doc/latex/hecthese/article-1.tex + RELOC/doc/latex/hecthese/article-2.tex + RELOC/doc/latex/hecthese/article-3.tex + RELOC/doc/latex/hecthese/avant-propos.tex + RELOC/doc/latex/hecthese/cadre-theorique.tex + RELOC/doc/latex/hecthese/chapitre-1.tex + RELOC/doc/latex/hecthese/chapitre-2.tex + RELOC/doc/latex/hecthese/chapitre-3.tex + RELOC/doc/latex/hecthese/chapter-1.tex + RELOC/doc/latex/hecthese/chapter-2.tex + RELOC/doc/latex/hecthese/chapter-3.tex + RELOC/doc/latex/hecthese/conclusion.tex + RELOC/doc/latex/hecthese/dedicace.tex + RELOC/doc/latex/hecthese/dedication.tex + RELOC/doc/latex/hecthese/gabarit-memoire-articles.tex + RELOC/doc/latex/hecthese/gabarit-memoire-classique.tex + RELOC/doc/latex/hecthese/gabarit-these-articles.tex + RELOC/doc/latex/hecthese/gabarit-these-classique.tex + RELOC/doc/latex/hecthese/hecthese-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/hecthese/hecthese.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/hecthese/introduction.tex + RELOC/doc/latex/hecthese/liste-abreviations.tex + RELOC/doc/latex/hecthese/literature-review.tex + RELOC/doc/latex/hecthese/preface.tex + RELOC/doc/latex/hecthese/remerciements.tex + RELOC/doc/latex/hecthese/resume-anglais.tex + RELOC/doc/latex/hecthese/resume-francais.tex + RELOC/doc/latex/hecthese/revue-litterature.tex + RELOC/doc/latex/hecthese/template-msc-articles.tex + RELOC/doc/latex/hecthese/template-msc-classic.tex + RELOC/doc/latex/hecthese/template-phd-articles.tex + RELOC/doc/latex/hecthese/template-phd-classic.tex + RELOC/doc/latex/hecthese/theoretical-framework.tex +srccontainersize 30560 +srccontainerchecksum 940e0bf6cf217100912e5950e5a345e85baeeee109b3da2c9f0fcd539fa886241a7fa64526c61b0233f06462ddba07f6aba5d3cc3795a2bd17f694178828465e +srcfiles size=34 + RELOC/source/latex/hecthese/hecthese-en.ins + RELOC/source/latex/hecthese/hecthese-fr.ins + RELOC/source/latex/hecthese/hecthese.dtx +runfiles size=4 + RELOC/tex/latex/hecthese/hecthese.cls +catalogue-contact-home http://www.hec.ca/biblio +catalogue-contact-repository https://github.com/metalogueur/hecthese +catalogue-ctan /macros/latex/contrib/hecthese +catalogue-license lppl1.3c +catalogue-topics dissertation class +catalogue-version 1.4 + +name helmholtz-ellis-ji-notation +category Package +revision 55213 +shortdesc Beautiful in-line microtonal just intonation accidentals +relocated 1 +longdesc The Helmholtz-Ellis JI Pitch Notation (HEJI), devised in the +longdesc early 2000s by Marc Sabat and Wolfgang von Schweinitz, +longdesc explicitly notates the raising and lowering of the untempered +longdesc diatonic Pythagorean notes by specific microtonal ratios +longdesc defined for each prime. It provides visually distinctive +longdesc "logos" distinguishing families of justly tuned intervals that +longdesc relate to the harmonic series. These take the form of strings +longdesc of additional accidental symbols based on historical +longdesc precedents, extending the traditional sharps and flats. Since +longdesc its 2020 update, HEJI ver. 2 ("HEJI2") provides unique +longdesc microtonal symbols through the 47-limit. This package is a +longdesc simple LaTeX implementation of HEJI2 that allows for in-line +longdesc typesetting of microtonal accidentals for use within +longdesc theoretical texts, program notes, symbol legends, etc. +longdesc Documents must be compiled using XeLaTeX. +containersize 16848 +containerchecksum 2c91c08df5e97f9f7ee17f40408d8810cfc3099b5e125b5445a89d2f0d35849f32be0d4150bf7b9f812d5c9c0994c714430fd8d015b9d4ab3bf9879deff5bb43 +doccontainersize 78536 +doccontainerchecksum 20c9b9fce33ec63cd635751acec1d25fb8c5cb4171ea06f3313c839ea400943926550098cc520c4d5fced46c61756977c6294e435821330715ab82cb894222cf +docfiles size=21 + RELOC/doc/fonts/helmholtz-ellis-ji-notation/README.md details="Readme" + RELOC/doc/fonts/helmholtz-ellis-ji-notation/helmholtz-ellis-ji-notation.pdf details="Package documentation" +srccontainersize 4244 +srccontainerchecksum bddeab10a607bf0cd194f9725ffe66e103605c5910abd6fce216c579ba2722afbec724f8717b52b2ad6fdc8f472553519e000d7df41c5a26a157e8eedb41fee4 +srcfiles size=5 + RELOC/source/fonts/helmholtz-ellis-ji-notation/helmholtz-ellis-ji-notation.dtx + RELOC/source/fonts/helmholtz-ellis-ji-notation/helmholtz-ellis-ji-notation.ins +runfiles size=15 + RELOC/fonts/opentype/public/helmholtz-ellis-ji-notation/HEJI2Text.otf + RELOC/tex/latex/helmholtz-ellis-ji-notation/helmholtz-ellis-ji-notation.sty +catalogue-contact-home http://plainsound.org/ +catalogue-ctan /fonts/helmholtz-ellis-ji-notation +catalogue-license cc-by-4 +catalogue-topics font font-music font-otf font-supp music +catalogue-version 1.1 + +name helvetic +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uhv.map +containersize 539636 +containerchecksum db1921bbf180287cb735ef403948585a91b3d84fa0cb5c99ca1bd06db57632f2533f40d0b7aa04c01664ca7898166482559e130f375a85242bc44f362079ec8f +runfiles size=594 + RELOC/dvips/helvetic/config.uhv + RELOC/fonts/afm/adobe/helvetic/phvb8a.afm + RELOC/fonts/afm/adobe/helvetic/phvb8an.afm + RELOC/fonts/afm/adobe/helvetic/phvbo8a.afm + RELOC/fonts/afm/adobe/helvetic/phvbo8an.afm + RELOC/fonts/afm/adobe/helvetic/phvr8a.afm + RELOC/fonts/afm/adobe/helvetic/phvr8an.afm + RELOC/fonts/afm/adobe/helvetic/phvro8a.afm + RELOC/fonts/afm/adobe/helvetic/phvro8an.afm + RELOC/fonts/afm/urw/helvetic/uhvb8a.afm + RELOC/fonts/afm/urw/helvetic/uhvb8ac.afm + RELOC/fonts/afm/urw/helvetic/uhvbo8a.afm + RELOC/fonts/afm/urw/helvetic/uhvbo8ac.afm + RELOC/fonts/afm/urw/helvetic/uhvr8a.afm + RELOC/fonts/afm/urw/helvetic/uhvr8ac.afm + RELOC/fonts/afm/urw/helvetic/uhvro8a.afm + RELOC/fonts/afm/urw/helvetic/uhvro8ac.afm + RELOC/fonts/map/dvips/helvetic/uhv.map + RELOC/fonts/tfm/adobe/helvetic/phvb.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbon.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbrn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvron.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrrn.tfm + RELOC/fonts/tfm/monotype/helvetic/arb10u.tfm + RELOC/fonts/tfm/monotype/helvetic/arb2n.tfm + RELOC/fonts/tfm/monotype/helvetic/arb7j.tfm + RELOC/fonts/tfm/monotype/helvetic/arb8u.tfm + RELOC/fonts/tfm/monotype/helvetic/arb9t.tfm + RELOC/fonts/tfm/monotype/helvetic/ari10u.tfm + RELOC/fonts/tfm/monotype/helvetic/ari2n.tfm + RELOC/fonts/tfm/monotype/helvetic/ari7j.tfm + RELOC/fonts/tfm/monotype/helvetic/ari8u.tfm + RELOC/fonts/tfm/monotype/helvetic/ari9t.tfm + RELOC/fonts/tfm/monotype/helvetic/arj10u.tfm + RELOC/fonts/tfm/monotype/helvetic/arj2n.tfm + RELOC/fonts/tfm/monotype/helvetic/arj7j.tfm + RELOC/fonts/tfm/monotype/helvetic/arj8u.tfm + RELOC/fonts/tfm/monotype/helvetic/arj9t.tfm + RELOC/fonts/tfm/monotype/helvetic/arr10u.tfm + RELOC/fonts/tfm/monotype/helvetic/arr2n.tfm + RELOC/fonts/tfm/monotype/helvetic/arr7j.tfm + RELOC/fonts/tfm/monotype/helvetic/arr8u.tfm + RELOC/fonts/tfm/monotype/helvetic/arr9t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvb.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvb8t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvbi.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvbi8t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvr.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvr8t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvri.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvri8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8tn.tfm + RELOC/fonts/type1/urw/helvetic/uhvb8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvb8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvb8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvb8ac.pfm + RELOC/fonts/type1/urw/helvetic/uhvbo8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvbo8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvbo8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvbo8ac.pfm + RELOC/fonts/type1/urw/helvetic/uhvr8a-105.pfb + RELOC/fonts/type1/urw/helvetic/uhvr8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvr8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvr8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvr8ac.pfm + RELOC/fonts/type1/urw/helvetic/uhvro8a-105.pfb + RELOC/fonts/type1/urw/helvetic/uhvro8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvro8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvro8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvro8ac.pfm + RELOC/fonts/vf/adobe/helvetic/phvb.vf + RELOC/fonts/vf/adobe/helvetic/phvb7t.vf + RELOC/fonts/vf/adobe/helvetic/phvb7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvb8c.vf + RELOC/fonts/vf/adobe/helvetic/phvb8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvb8t.vf + RELOC/fonts/vf/adobe/helvetic/phvb8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbc.vf + RELOC/fonts/vf/adobe/helvetic/phvbc7t.vf + RELOC/fonts/vf/adobe/helvetic/phvbc7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbc8t.vf + RELOC/fonts/vf/adobe/helvetic/phvbc8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbo.vf + RELOC/fonts/vf/adobe/helvetic/phvbo7t.vf + RELOC/fonts/vf/adobe/helvetic/phvbo7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8c.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8t.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbon.vf + RELOC/fonts/vf/adobe/helvetic/phvbrn.vf + RELOC/fonts/vf/adobe/helvetic/phvr.vf + RELOC/fonts/vf/adobe/helvetic/phvr7t.vf + RELOC/fonts/vf/adobe/helvetic/phvr7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvr8c.vf + RELOC/fonts/vf/adobe/helvetic/phvr8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvr8t.vf + RELOC/fonts/vf/adobe/helvetic/phvr8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvrc.vf + RELOC/fonts/vf/adobe/helvetic/phvrc7t.vf + RELOC/fonts/vf/adobe/helvetic/phvrc7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvrc8t.vf + RELOC/fonts/vf/adobe/helvetic/phvrc8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvro.vf + RELOC/fonts/vf/adobe/helvetic/phvro7t.vf + RELOC/fonts/vf/adobe/helvetic/phvro7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvro8c.vf + RELOC/fonts/vf/adobe/helvetic/phvro8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvro8t.vf + RELOC/fonts/vf/adobe/helvetic/phvro8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvron.vf + RELOC/fonts/vf/adobe/helvetic/phvrrn.vf + RELOC/fonts/vf/monotype/helvetic/mhvb.vf + RELOC/fonts/vf/monotype/helvetic/mhvb8t.vf + RELOC/fonts/vf/monotype/helvetic/mhvbi.vf + RELOC/fonts/vf/monotype/helvetic/mhvbi8t.vf + RELOC/fonts/vf/monotype/helvetic/mhvr.vf + RELOC/fonts/vf/monotype/helvetic/mhvr8t.vf + RELOC/fonts/vf/monotype/helvetic/mhvri.vf + RELOC/fonts/vf/monotype/helvetic/mhvri8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbi7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbi8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbi8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8tn.vf + RELOC/tex/latex/helvetic/8ruhv.fd + RELOC/tex/latex/helvetic/omluhv.fd + RELOC/tex/latex/helvetic/omsuhv.fd + RELOC/tex/latex/helvetic/ot1uhv.fd + RELOC/tex/latex/helvetic/t1uhv.fd + RELOC/tex/latex/helvetic/ts1uhv.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name hep +category Package +revision 15878 +shortdesc A "convenience wrapper" for High Energy Physics packages +relocated 1 +longdesc Loads the author's hepunits and hepnicenames packages, and a +longdesc selection of others that are useful in High Energy Physics +longdesc papers, etc. +containersize 2124 +containerchecksum 9cd27826b7dde1ebd5830cdd17423f4092c9833c962be7e73b515de2e624a7853badde0c244dc26be6b7d3d9f9c3932fffc48bb4e86e06b90d6699dcebb0d497 +doccontainersize 1800 +doccontainerchecksum 1d77a9bd31e982a8ff908f772d8cf67692145624bf00db2745afaf1aa59fc1da7cae6d2e094379077a550e4d76338a5a82bef8e25c8d733547751a24c84035f2 +docfiles size=2 + RELOC/doc/latex/hep/ChangeLog + RELOC/doc/latex/hep/README details="Readme" +runfiles size=2 + RELOC/tex/latex/hep/hep.sty +catalogue-ctan /macros/latex/contrib/hep +catalogue-license lppl +catalogue-topics physics +catalogue-version 1.0 + +name hep-paper +category Package +revision 57045 +shortdesc Publications in High Energy Physics +relocated 1 +longdesc This package aims to provide a single style file containing +longdesc most configurations and macros necessary to write appealing +longdesc publications in High Energy Physics. Instead of reinventing the +longdesc wheel by introducing newly created macros, hep-paper preferably +longdesc loads third party packages as long as they are light-weight +longdesc enough. For usual publications it suffices to load the +longdesc hep-paper package, without optional arguments, in addition to +longdesc the article class. +containersize 8820 +containerchecksum e7422cf1015b554b20d6fa6cfca317fbd2e057ef31f6d57448ba11126c3b6b863fea428c642f15b8cbbf46929ce943f362cb99cb95cbe7d1bfe821c4315661f8 +doccontainersize 1359472 +doccontainerchecksum 29f71a395be21b72cfd2c0f167e11475215dbd7005529a89032a316d5802b8e2feffc7670923ea57b6f2bdab4d298b7798f122263ab496f4a4da323f8a44c483 +docfiles size=383 + RELOC/doc/latex/hep-paper/README.md details="Readme" + RELOC/doc/latex/hep-paper/bibliography.bib + RELOC/doc/latex/hep-paper/hep-paper-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-paper/hep-paper-documentation.tex + RELOC/doc/latex/hep-paper/hep-paper-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-paper/license.md +srccontainersize 23384 +srccontainerchecksum 7610edb2223471f6ad729dca66145bb0686e56fdcebfab9260288c3fbaedad0be638f300f789158d824a0a04828297853c5b0774c4c2a96cbb0d48f2d93fd61a +srcfiles size=26 + RELOC/source/latex/hep-paper/hep-paper-implementation.dtx + RELOC/source/latex/hep-paper/hep-paper.ins +runfiles size=9 + RELOC/tex/latex/hep-paper/hep-paper.dbx + RELOC/tex/latex/hep-paper/hep-paper.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/hep-paper +catalogue-license lppl1.3c +catalogue-topics physics +catalogue-version 1.6 + +name hepnames +category Package +revision 35722 +shortdesc Pre-defined high energy particle names +relocated 1 +longdesc Hepnames provides a pair of LaTeX packages, heppennames and +longdesc hepnicenames, providing a large set of pre-defined high energy +longdesc physics particle names built with the hepparticles package. The +longdesc packages are based on pennames.sty by Michel Goosens and Eric +longdesc van Herwijnen. Heppennames re-implements the particle names in +longdesc pennames.sty, with some additions and alterations and greater +longdesc flexibility and robustness due to the hepparticles structures, +longdesc which were written for this purpose. Hepnicenames provides the +longdesc main non-resonant particle names from heppennames with more +longdesc "friendly" names. +containersize 6660 +containerchecksum ec893de8b4cedd1b18dd16c3237fa79b434e91cbab4b856c4fbe11afef162b560bda18c0fd75ab2c47b863cdcca1d64809a139d51f04e9c2f45eab6ba4036c28 +doccontainersize 975796 +doccontainerchecksum 36a0966b755b6bb0f0dd27c80235e66af7c5252df1ae27652e59fd65fc5f280eb487666eef04206813438204dc592c0295651ccf0bce1e5f85f4797cdb439850 +docfiles size=500 + RELOC/doc/latex/hepnames/ChangeLog + RELOC/doc/latex/hepnames/Makefile + RELOC/doc/latex/hepnames/README details="Readme" + RELOC/doc/latex/hepnames/hepnames.pdf details="Details of the package bundle" + RELOC/doc/latex/hepnames/hepnames.tex + RELOC/doc/latex/hepnames/hepnicenames-it.pdf + RELOC/doc/latex/hepnames/hepnicenames-it.tex + RELOC/doc/latex/hepnames/hepnicenames-macros.tex + RELOC/doc/latex/hepnames/hepnicenames-rm.pdf details="Enumeration of available nicenames" + RELOC/doc/latex/hepnames/hepnicenames-rm.tex + RELOC/doc/latex/hepnames/heppennames-it.pdf + RELOC/doc/latex/hepnames/heppennames-it.tex + RELOC/doc/latex/hepnames/heppennames-macros.tex + RELOC/doc/latex/hepnames/heppennames-rm.pdf details="Enumeration of available pennames" + RELOC/doc/latex/hepnames/heppennames-rm.tex + RELOC/doc/latex/hepnames/mkmacrotables +runfiles size=13 + RELOC/tex/latex/hepnames/hepnames.sty + RELOC/tex/latex/hepnames/hepnicenames.sty + RELOC/tex/latex/hepnames/heppennames.sty +catalogue-ctan /macros/latex/contrib/hepnames +catalogue-license lppl +catalogue-topics physics +catalogue-version 2.0 + +name hepparticles +category Package +revision 35723 +shortdesc Macros for typesetting high energy physics particle names +relocated 1 +longdesc HEPparticles is a set of macros for typesetting high energy +longdesc particle names, to meet the following criteria: 1. The main +longdesc particle name is a Roman or Greek symbol, to be typeset in +longdesc upright font in normal contexts. 2. Additionally a superscript +longdesc and/or subscript may follow the main symbol. 3. Particle +longdesc resonances may also have a resonance specifier which is typeset +longdesc in parentheses following the main symbol. In general the +longdesc parentheses may also be followed by sub- and superscripts. 4. +longdesc The particle names are expected to be used both in and out of +longdesc mathematical contexts. 5. If the surrounding text is bold or +longdesc italic then the particle name should adapt to that context as +longdesc best as possible (this may not be possible for Greek symbols). +longdesc A consequence of point 5 is that the well-known problems with +longdesc boldness of particle names in section titles, headers and +longdesc tables of contents automatically disappear if these macros are +longdesc used. +containersize 4448 +containerchecksum fb9229745b601b6f731c959856fe46d6871dd3a1c7fec2bac8116f4d74a575ff52523f610599979e25e7147b4ae6d36906d19ba66260356f15bc1a47a2d57460 +doccontainersize 83952 +doccontainerchecksum 539025b2f0998bf031f417d002028e29edc58c1818d0dc9c07ee58c6877b5709936be23985ecd5a518c36187f451a2d5df66b5832d0019ff8b755c763b903aa8 +docfiles size=27 + RELOC/doc/latex/hepparticles/ChangeLog + RELOC/doc/latex/hepparticles/README details="Readme" + RELOC/doc/latex/hepparticles/hepparticles.pdf details="Package documentation" + RELOC/doc/latex/hepparticles/hepparticles.tex + RELOC/doc/latex/hepparticles/testhepparticles.pdf + RELOC/doc/latex/hepparticles/testhepparticles.tex +runfiles size=5 + RELOC/tex/latex/hepparticles/hepparticles.sty +catalogue-also maybemath +catalogue-ctan /macros/latex/contrib/hepparticles +catalogue-license lppl +catalogue-topics physics +catalogue-version 2.0 + +name hepthesis +category Package +revision 46054 +shortdesc A class for academic reports, especially PhD theses +relocated 1 +longdesc Hepthesis is a LaTeX class for typesetting large academic +longdesc reports, in particular PhD theses. It was originally developed +longdesc for typesetting the author's high-energy physics PhD thesis and +longdesc includes some features specifically tailored to such an +longdesc application. In particular, hepthesis offers: Attractive +longdesc semantic environments for various rubric sections; Extensive +longdesc options for draft production, screen viewing and binding-ready +longdesc output; Helpful extensions of existing environments, including +longdesc equation and tabular; and Support for quotations at the start +longdesc of the thesis and each chapter. The class is based on scrbook, +longdesc from the KOMA-Script bundle. +containersize 7212 +containerchecksum ea6543fec07480af8db52e43ea5fda346ed4e9ea245af0810a6988d864675a903841849e502506b333cef0b1685a6946ebf1f686bbc74f4ddcc7eea676c019ed +doccontainersize 689568 +doccontainerchecksum e456a0ca03da4bf71d767616a140b6e1d922e05944a4db2c0cbb360dff39fc7e8bae741ae5adb49972253f38774f1a9c65393bcf4e38e3c568b0215a04f63d48 +docfiles size=248 + RELOC/doc/latex/hepthesis/ChangeLog + RELOC/doc/latex/hepthesis/Makefile + RELOC/doc/latex/hepthesis/README details="Package README" + RELOC/doc/latex/hepthesis/TODO + RELOC/doc/latex/hepthesis/example/Makefile + RELOC/doc/latex/hepthesis/example/appendices.tex + RELOC/doc/latex/hepthesis/example/backmatter.tex + RELOC/doc/latex/hepthesis/example/chap1.tex + RELOC/doc/latex/hepthesis/example/chap2.tex + RELOC/doc/latex/hepthesis/example/chap3.tex + RELOC/doc/latex/hepthesis/example/ckmfitter-alpha-combined.pdf + RELOC/doc/latex/hepthesis/example/example.pdf details="Part of a thesis, seen as for printing" + RELOC/doc/latex/hepthesis/example/example.tex + RELOC/doc/latex/hepthesis/example/extrastyles.zip + RELOC/doc/latex/hepthesis/example/frontmatter.tex + RELOC/doc/latex/hepthesis/example/getNewBibtex + RELOC/doc/latex/hepthesis/example/h-physrev.bst + RELOC/doc/latex/hepthesis/example/lhcb-detector-cross-section.pdf + RELOC/doc/latex/hepthesis/example/mwe.tex + RELOC/doc/latex/hepthesis/example/mythesis.bib + RELOC/doc/latex/hepthesis/example/mythesismath.sty + RELOC/doc/latex/hepthesis/example/preamble.tex + RELOC/doc/latex/hepthesis/hepthesis.pdf details="Package documentation" + RELOC/doc/latex/hepthesis/hepthesis.tex +runfiles size=7 + RELOC/tex/latex/hepthesis/hepthesis.cls +catalogue-ctan /macros/latex/contrib/hepthesis +catalogue-license lppl +catalogue-topics physics dissertation class +catalogue-version 1.5.2 + +name hepunits +category Package +revision 54758 +shortdesc A set of units useful in high energy physics applications +relocated 1 +longdesc Hepunits is a LaTeX package built on the SIunits package which +longdesc adds a collection of useful HEP units to the existing SIunits +longdesc set. These include the energy units \MeV, \GeV, \TeV and the +longdesc derived momentum and mass units \MeVoverc, \MeVovercsq and so +longdesc on. +containersize 1804 +containerchecksum eae3b071eb3c81e79f166a925f5a3b16ffa3e992073f318b8a193a8188bff5b5222cef7533e398f1481671e17849123947577c13a182f40136124fe6368547ff +doccontainersize 100060 +doccontainerchecksum 86f0080a818aae8743f9c2ef20a3c87f2f23e29641037e91a89e3f195f55fb6653c1ebf1e990b1a984f2acad26243bc07afda6cb2b00d58e5f2416a0f8fddc04 +docfiles size=30 + RELOC/doc/latex/hepunits/ChangeLog + RELOC/doc/latex/hepunits/README details="Readme" + RELOC/doc/latex/hepunits/hepunits.pdf details="Package documentation" + RELOC/doc/latex/hepunits/hepunits.tex +runfiles size=2 + RELOC/tex/latex/hepunits/hepunits.sty +catalogue-ctan /macros/latex/contrib/hepunits +catalogue-license lppl +catalogue-topics physics +catalogue-version 2.0.0 + +name here +category Package +revision 16135 +shortdesc Emulation of obsolete package for "here" floats +relocated 1 +longdesc Provides the H option for floats in LaTeX to signify that the +longdesc environment is not really a float (and should therefore be +longdesc placed "here" and not float at all). The package emulates an +longdesc older package of the same name, which has long been suppressed +longdesc by its author. The job is done by nothing more than loading the +longdesc float package, which has long provided the option in an +longdesc acceptable framework. +containersize 896 +containerchecksum 35c9ac325579de5d3bac4b8d16b1f30355398037cd0ad1c52b1585eb7ec666e743680eb05bec7b1f8cfa3bba3d7f5c0e6e06cddde6ca879ea708388df140eef0 +doccontainersize 596 +doccontainerchecksum 482a2ef8edbe41ce76e2c32bb579b132c84306cbd5387cb5249b10a02826e610229ec9c75a1df53b5b930bb982e1157ad9ffa63a77f84461cb6cc6332f6d6e54 +docfiles size=1 + RELOC/doc/latex/here/README details="Readme" +runfiles size=1 + RELOC/tex/latex/here/here.sty +catalogue-ctan /macros/latex/contrib/here +catalogue-license pd +catalogue-topics float + +name heuristica +category Package +revision 51362 +shortdesc Fonts extending Utopia, with LaTeX support files +relocated 1 +longdesc The fonts extend the utopia set with Cyrillic glyphs, +longdesc additional figure styles, ligatures and Small Caps in Regular +longdesc style only. Macro support, and maths fonts that match the +longdesc Utopia family, are provided by the Fourier and the Mathdesign +longdesc font packages. +execute addMap Heuristica.map +containersize 1079048 +containerchecksum bbadd84c1cc0825f0dbe72bdd8f5c4b939ae1986dc0f97ea80ecf12999f97d455e2f89cd12e71e8a51ae4ccadbcb01ae7768a60a47b9b35f19b98ea17332372f +doccontainersize 224788 +doccontainerchecksum f445e4588ba85a71af43640e6625fe1fbcb1f8a2208d2c5cfc7fadd1df325be3fdda85b9da4dd824f3c0445033b2bd9e2120e71abf61c6f55b9e828a3e61a87e +docfiles size=69 + RELOC/doc/fonts/heuristica/FontLog.txt + RELOC/doc/fonts/heuristica/OFL-FAQ.txt + RELOC/doc/fonts/heuristica/OFL.txt + RELOC/doc/fonts/heuristica/README details="Readme" + RELOC/doc/fonts/heuristica/heuristica-doc.pdf details="Package documentation" + RELOC/doc/fonts/heuristica/heuristica-doc.tex +runfiles size=652 + RELOC/fonts/enc/dvips/heuristica/zut_5b7xz5.enc + RELOC/fonts/enc/dvips/heuristica/zut_bavnqe.enc + RELOC/fonts/enc/dvips/heuristica/zut_ckaykl.enc + RELOC/fonts/enc/dvips/heuristica/zut_cq6rqq.enc + RELOC/fonts/enc/dvips/heuristica/zut_cvig5d.enc + RELOC/fonts/enc/dvips/heuristica/zut_d3dvo4.enc + RELOC/fonts/enc/dvips/heuristica/zut_dcwkkw.enc + RELOC/fonts/enc/dvips/heuristica/zut_dhvb6d.enc + RELOC/fonts/enc/dvips/heuristica/zut_dvh2xl.enc + RELOC/fonts/enc/dvips/heuristica/zut_e7tlds.enc + RELOC/fonts/enc/dvips/heuristica/zut_edf5gu.enc + RELOC/fonts/enc/dvips/heuristica/zut_etrbro.enc + RELOC/fonts/enc/dvips/heuristica/zut_evgarn.enc + RELOC/fonts/enc/dvips/heuristica/zut_f5n2rf.enc + RELOC/fonts/enc/dvips/heuristica/zut_fc3mov.enc + RELOC/fonts/enc/dvips/heuristica/zut_flhghs.enc + RELOC/fonts/enc/dvips/heuristica/zut_g4w54e.enc + RELOC/fonts/enc/dvips/heuristica/zut_geqeyh.enc + RELOC/fonts/enc/dvips/heuristica/zut_hbxdik.enc + RELOC/fonts/enc/dvips/heuristica/zut_hln2hy.enc + RELOC/fonts/enc/dvips/heuristica/zut_hvy566.enc + RELOC/fonts/enc/dvips/heuristica/zut_ijw3px.enc + RELOC/fonts/enc/dvips/heuristica/zut_it5nv3.enc + RELOC/fonts/enc/dvips/heuristica/zut_j3hjx2.enc + RELOC/fonts/enc/dvips/heuristica/zut_k42udk.enc + RELOC/fonts/enc/dvips/heuristica/zut_n2gc2n.enc + RELOC/fonts/enc/dvips/heuristica/zut_nvi5ys.enc + RELOC/fonts/enc/dvips/heuristica/zut_qy67bk.enc + RELOC/fonts/enc/dvips/heuristica/zut_rhmrtx.enc + RELOC/fonts/enc/dvips/heuristica/zut_rutxxy.enc + RELOC/fonts/enc/dvips/heuristica/zut_tfeu3y.enc + RELOC/fonts/enc/dvips/heuristica/zut_thxlbm.enc + RELOC/fonts/enc/dvips/heuristica/zut_tsvs4d.enc + RELOC/fonts/enc/dvips/heuristica/zut_u7pc6m.enc + RELOC/fonts/enc/dvips/heuristica/zut_ul3ofd.enc + RELOC/fonts/enc/dvips/heuristica/zut_v7it2w.enc + RELOC/fonts/enc/dvips/heuristica/zut_vaioc2.enc + RELOC/fonts/enc/dvips/heuristica/zut_vtjod4.enc + RELOC/fonts/enc/dvips/heuristica/zut_ysltpx.enc + RELOC/fonts/enc/dvips/heuristica/zut_zk7stm.enc + RELOC/fonts/enc/dvips/heuristica/zut_zl5g24.enc + RELOC/fonts/map/dvips/heuristica/Heuristica.map + RELOC/fonts/opentype/public/heuristica/Heuristica-Bold.otf + RELOC/fonts/opentype/public/heuristica/Heuristica-BoldItalic.otf + RELOC/fonts/opentype/public/heuristica/Heuristica-Italic.otf + RELOC/fonts/opentype/public/heuristica/Heuristica-Regular.otf + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ts1.tfm + RELOC/fonts/type1/public/heuristica/Heuristica-Bold.pfb + RELOC/fonts/type1/public/heuristica/Heuristica-BoldItalic.pfb + RELOC/fonts/type1/public/heuristica/Heuristica-Italic.pfb + RELOC/fonts/type1/public/heuristica/Heuristica-Regular.pfb + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-ts1.vf + RELOC/tex/latex/heuristica/LY1Heuristica-Inf.fd + RELOC/tex/latex/heuristica/LY1Heuristica-Sup.fd + RELOC/tex/latex/heuristica/LY1Heuristica-TLF.fd + RELOC/tex/latex/heuristica/LY1Heuristica-TOsF.fd + RELOC/tex/latex/heuristica/T1Heuristica-Inf.fd + RELOC/tex/latex/heuristica/T1Heuristica-Sup.fd + RELOC/tex/latex/heuristica/T1Heuristica-TLF.fd + RELOC/tex/latex/heuristica/T1Heuristica-TOsF.fd + RELOC/tex/latex/heuristica/T2AHeuristica-Inf.fd + RELOC/tex/latex/heuristica/T2AHeuristica-Sup.fd + RELOC/tex/latex/heuristica/T2AHeuristica-TLF.fd + RELOC/tex/latex/heuristica/T2AHeuristica-TOsF.fd + RELOC/tex/latex/heuristica/T2BHeuristica-Inf.fd + RELOC/tex/latex/heuristica/T2BHeuristica-Sup.fd + RELOC/tex/latex/heuristica/T2BHeuristica-TLF.fd + RELOC/tex/latex/heuristica/T2BHeuristica-TOsF.fd + RELOC/tex/latex/heuristica/T2CHeuristica-Inf.fd + RELOC/tex/latex/heuristica/T2CHeuristica-Sup.fd + RELOC/tex/latex/heuristica/T2CHeuristica-TLF.fd + RELOC/tex/latex/heuristica/T2CHeuristica-TOsF.fd + RELOC/tex/latex/heuristica/TS1Heuristica-TLF.fd + RELOC/tex/latex/heuristica/TS1Heuristica-TOsF.fd + RELOC/tex/latex/heuristica/heuristica.fontspec + RELOC/tex/latex/heuristica/heuristica.sty +catalogue-ctan /fonts/heuristica +catalogue-license ofl +catalogue-topics font font-type1 font-otf font-cyrillic cyrillic +catalogue-version 1.092 + +name hexgame +category Package +revision 15878 +shortdesc Provide an environment to draw a hexgame-board +relocated 1 +longdesc Hex is a mathematical game invented by the Danish mathematician +longdesc Piet Hein and independently by the mathematician John Nash. +longdesc This package defines an environment that enables the user to +longdesc draw such a game in a trivial way. +containersize 1672 +containerchecksum b16abb669f6bb5c3111e6c333353cc37a76431c49920a4cd22af79f6237f78a5c56124c5854b7665e9dcf963fb2715c488dd7ef4df86d5582aa7b3dbe3d08822 +doccontainersize 29044 +doccontainerchecksum 0fad11a5510dd1a2ceec227c46c3f8c0c387ab3e2819bd70765d363ca5f97822147bfac62e69de773a96d24a881394c35c1542a8f08a1828a82f94aaa7f02644 +docfiles size=11 + RELOC/doc/latex/hexgame/README details="Readme" + RELOC/doc/latex/hexgame/hexgame.pdf details="Package documentation" + RELOC/doc/latex/hexgame/hexgame.tex +runfiles size=2 + RELOC/tex/latex/hexgame/hexgame.sty +catalogue-ctan /macros/latex/contrib/hexgame +catalogue-license lppl +catalogue-topics games +catalogue-version 1.0 + +name hf-tikz +category Package +revision 34733 +shortdesc A simple way to highlight formulas and formula parts +relocated 1 +longdesc The package provides a way to highlight formulas and formula +longdesc parts in both documents and presentations, us TikZ. +containersize 3276 +containerchecksum 47ca98b066829e6ea2009c4beb92db2c7671642c495f1011df9be00d546f3613b7853aba5db88e3805441eab66c873e15b60f5ef75cf21e906f80b5f11aa30a7 +doccontainersize 123256 +doccontainerchecksum 234a8ccdd9cd921368f700fdcca818d0c76265371ac89e09c1a54454fa3e00f0f28fdc7f962c227f9bb69d851585f2c65e20b4a4093aacc3ad0aa84d1abc7f87 +docfiles size=32 + RELOC/doc/latex/hf-tikz/README details="Readme" + RELOC/doc/latex/hf-tikz/hf-tikz.pdf details="Package documentation" +srccontainersize 9924 +srccontainerchecksum 74fd110da2d0d248d70811db52f220012c0a41cecfaf702765cf8bdeae98d9e1a96c6087770de4fcc1ec249901ccc79837ed4e89b4527dd3f746ecf503c201ea +srcfiles size=12 + RELOC/source/latex/hf-tikz/hf-tikz.dtx + RELOC/source/latex/hf-tikz/hf-tikz.ins +runfiles size=4 + RELOC/tex/latex/hf-tikz/hf-tikz.sty +catalogue-ctan /graphics/pgf/contrib/hf-tikz +catalogue-license lppl1.3 +catalogue-topics decoration maths presentation +catalogue-version 0.3a + +name hfbright +category Package +revision 29349 +shortdesc The hfbright fonts +relocated 1 +longdesc These are Adobe Type 1 versions of the OT1-encoded and maths +longdesc parts of the Computer Modern Bright fonts. +execute addMixedMap hfbright.map +containersize 832824 +containerchecksum 91c8b007dd8ce71af9dbc98a66a82a395d68fc87a0abcf9518b5b89a98dc23b28f1b9b9aa551f82b920dc3e2d8b6500884eaa3bc98be48371a9774f9f283a641 +doccontainersize 4964 +doccontainerchecksum 7de24b513093d965fab1f8d7d13ec4b356e7f5495cb3a8f17204b1a786288488b4921df6b7e184262bdd3aa11fed6483a25d0bf8e898db05c8b1f7dff769c175 +docfiles size=7 + RELOC/doc/fonts/hfbright/README details="Readme" + RELOC/doc/fonts/hfbright/config.hfbright + RELOC/doc/fonts/hfbright/generate.sh + RELOC/doc/fonts/hfbright/install.sh + RELOC/doc/fonts/hfbright/simplify-rename.pe +runfiles size=313 + RELOC/fonts/afm/public/hfbright/hfbr10.afm + RELOC/fonts/afm/public/hfbright/hfbr17.afm + RELOC/fonts/afm/public/hfbright/hfbr8.afm + RELOC/fonts/afm/public/hfbright/hfbr9.afm + RELOC/fonts/afm/public/hfbright/hfbras10.afm + RELOC/fonts/afm/public/hfbright/hfbras8.afm + RELOC/fonts/afm/public/hfbright/hfbras9.afm + RELOC/fonts/afm/public/hfbright/hfbrbs10.afm + RELOC/fonts/afm/public/hfbright/hfbrbs8.afm + RELOC/fonts/afm/public/hfbright/hfbrbs9.afm + RELOC/fonts/afm/public/hfbright/hfbrbx10.afm + RELOC/fonts/afm/public/hfbright/hfbrmb10.afm + RELOC/fonts/afm/public/hfbright/hfbrmi10.afm + RELOC/fonts/afm/public/hfbright/hfbrmi8.afm + RELOC/fonts/afm/public/hfbright/hfbrmi9.afm + RELOC/fonts/afm/public/hfbright/hfbrsl10.afm + RELOC/fonts/afm/public/hfbright/hfbrsl17.afm + RELOC/fonts/afm/public/hfbright/hfbrsl8.afm + RELOC/fonts/afm/public/hfbright/hfbrsl9.afm + RELOC/fonts/afm/public/hfbright/hfbrsy10.afm + RELOC/fonts/afm/public/hfbright/hfbrsy8.afm + RELOC/fonts/afm/public/hfbright/hfbrsy9.afm + RELOC/fonts/afm/public/hfbright/hfsltl10.afm + RELOC/fonts/afm/public/hfbright/hftl10.afm + RELOC/fonts/enc/dvips/hfbright/hfmital.enc + RELOC/fonts/enc/dvips/hfbright/hfmsa.enc + RELOC/fonts/enc/dvips/hfbright/hfmsb.enc + RELOC/fonts/enc/dvips/hfbright/hfmsym.enc + RELOC/fonts/enc/dvips/hfbright/hfot1.enc + RELOC/fonts/map/dvips/hfbright/hfbright.map + RELOC/fonts/type1/public/hfbright/hfbr10.pfb + RELOC/fonts/type1/public/hfbright/hfbr17.pfb + RELOC/fonts/type1/public/hfbright/hfbr8.pfb + RELOC/fonts/type1/public/hfbright/hfbr9.pfb + RELOC/fonts/type1/public/hfbright/hfbras10.pfb + RELOC/fonts/type1/public/hfbright/hfbras8.pfb + RELOC/fonts/type1/public/hfbright/hfbras9.pfb + RELOC/fonts/type1/public/hfbright/hfbrbs10.pfb + RELOC/fonts/type1/public/hfbright/hfbrbs8.pfb + RELOC/fonts/type1/public/hfbright/hfbrbs9.pfb + RELOC/fonts/type1/public/hfbright/hfbrbx10.pfb + RELOC/fonts/type1/public/hfbright/hfbrmb10.pfb + RELOC/fonts/type1/public/hfbright/hfbrmi10.pfb + RELOC/fonts/type1/public/hfbright/hfbrmi8.pfb + RELOC/fonts/type1/public/hfbright/hfbrmi9.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl10.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl17.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl8.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl9.pfb + RELOC/fonts/type1/public/hfbright/hfbrsy10.pfb + RELOC/fonts/type1/public/hfbright/hfbrsy8.pfb + RELOC/fonts/type1/public/hfbright/hfbrsy9.pfb + RELOC/fonts/type1/public/hfbright/hfsltl10.pfb + RELOC/fonts/type1/public/hfbright/hftl10.pfb +catalogue-ctan /fonts/ps-type1/hfbright +catalogue-license lppl +catalogue-topics font font-sans font-type1 + +name hfoldsty +category Package +revision 29349 +shortdesc Old style numerals with EC fonts +relocated 1 +longdesc The hfoldsty package provides virtual fonts for using oldstyle +longdesc (0123456789) figures with the European Computer Modern fonts. +longdesc It does a similar job as the eco package by Sebastian Kirsch +longdesc but includes a couple of improvements, i.e., better kerning +longdesc with guillemets, and support for character protruding using the +longdesc pdfcprot package. +containersize 171124 +containerchecksum 5ff36855df468bf59d387d56f4ea65c86ba304eb2495f2ca110558ef48c528ef444c7ebfaa378a454c311c806525ddaa639a32d3d1b16ca492b641f223133390 +doccontainersize 349128 +doccontainerchecksum 1f88ae3c13857be317ac2097093bb368a9f1ffa2a8fe1b5e15f59622dabdce2f2b3aededbca31a4d17f05c2dcb28f8ae0c9be3cfb1758bab4501a99efc68612c +docfiles size=97 + RELOC/doc/fonts/hfoldsty/ChangeLog + RELOC/doc/fonts/hfoldsty/Makefile + RELOC/doc/fonts/hfoldsty/README details="Readme" + RELOC/doc/fonts/hfoldsty/TODO + RELOC/doc/fonts/hfoldsty/gpl.txt + RELOC/doc/fonts/hfoldsty/hfoldsty.pdf + RELOC/doc/fonts/hfoldsty/hfoldsty.xml + RELOC/doc/fonts/hfoldsty/test-eco-hfo.tex + RELOC/doc/fonts/hfoldsty/test-eco.tex + RELOC/doc/fonts/hfoldsty/test-hfo.tex +srccontainersize 16560 +srccontainerchecksum 5ccd5708962e9ddeea3ac41426cac6469ae22914fc4bbb5779e25d592d1cfb0df78f73d79c969e00b68b38eb9ae7016cf394f9592c14d9400bba152e6fc91092 +srcfiles size=24 + RELOC/source/fonts/hfoldsty/Makefile + RELOC/source/fonts/hfoldsty/hfoldsty.dtx + RELOC/source/fonts/hfoldsty/hfoldsty.ins + RELOC/source/fonts/hfoldsty/src/Makefile + RELOC/source/fonts/hfoldsty/src/TS1.etx + RELOC/source/fonts/hfoldsty/src/dostretch.mtx + RELOC/source/fonts/hfoldsty/src/generate.sh + RELOC/source/fonts/hfoldsty/src/t19.etx +runfiles size=1217 + RELOC/fonts/tfm/public/hfoldsty/hfobi0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hform2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hform2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hform2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hform3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc3583.tfm + RELOC/fonts/vf/public/hfoldsty/hfobi0500.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0600.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0700.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0800.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0900.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1000.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1095.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1200.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1440.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1728.vf + RELOC/fonts/vf/public/hfoldsty/hfobi2074.vf + RELOC/fonts/vf/public/hfoldsty/hfobi2488.vf + RELOC/fonts/vf/public/hfoldsty/hfobi2986.vf + RELOC/fonts/vf/public/hfoldsty/hfobi3583.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0500.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0600.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0700.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0800.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0900.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1000.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1095.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1200.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1440.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1728.vf + RELOC/fonts/vf/public/hfoldsty/hfobl2074.vf + RELOC/fonts/vf/public/hfoldsty/hfobl2488.vf + RELOC/fonts/vf/public/hfoldsty/hfobl2986.vf + RELOC/fonts/vf/public/hfoldsty/hfobl3583.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0500.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0600.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0700.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0800.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0900.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1000.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1095.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1200.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1440.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1728.vf + RELOC/fonts/vf/public/hfoldsty/hfobx2074.vf + RELOC/fonts/vf/public/hfoldsty/hfobx2488.vf + RELOC/fonts/vf/public/hfoldsty/hfobx2986.vf + RELOC/fonts/vf/public/hfoldsty/hfobx3583.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfocc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfocc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfocc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfocc3583.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0500.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0600.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0700.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0800.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0900.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1000.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1095.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1200.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1440.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1728.vf + RELOC/fonts/vf/public/hfoldsty/hfodh2074.vf + RELOC/fonts/vf/public/hfoldsty/hfodh2488.vf + RELOC/fonts/vf/public/hfoldsty/hfodh2986.vf + RELOC/fonts/vf/public/hfoldsty/hfodh3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoit2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoit2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoit2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoit3583.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfooc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfooc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfooc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfooc3583.vf + RELOC/fonts/vf/public/hfoldsty/hforb0500.vf + RELOC/fonts/vf/public/hfoldsty/hforb0600.vf + RELOC/fonts/vf/public/hfoldsty/hforb0700.vf + RELOC/fonts/vf/public/hfoldsty/hforb0800.vf + RELOC/fonts/vf/public/hfoldsty/hforb0900.vf + RELOC/fonts/vf/public/hfoldsty/hforb1000.vf + RELOC/fonts/vf/public/hfoldsty/hforb1095.vf + RELOC/fonts/vf/public/hfoldsty/hforb1200.vf + RELOC/fonts/vf/public/hfoldsty/hforb1440.vf + RELOC/fonts/vf/public/hfoldsty/hforb1728.vf + RELOC/fonts/vf/public/hfoldsty/hforb2074.vf + RELOC/fonts/vf/public/hfoldsty/hforb2488.vf + RELOC/fonts/vf/public/hfoldsty/hforb2986.vf + RELOC/fonts/vf/public/hfoldsty/hforb3583.vf + RELOC/fonts/vf/public/hfoldsty/hform0500.vf + RELOC/fonts/vf/public/hfoldsty/hform0600.vf + RELOC/fonts/vf/public/hfoldsty/hform0700.vf + RELOC/fonts/vf/public/hfoldsty/hform0800.vf + RELOC/fonts/vf/public/hfoldsty/hform0900.vf + RELOC/fonts/vf/public/hfoldsty/hform1000.vf + RELOC/fonts/vf/public/hfoldsty/hform1095.vf + RELOC/fonts/vf/public/hfoldsty/hform1200.vf + RELOC/fonts/vf/public/hfoldsty/hform1440.vf + RELOC/fonts/vf/public/hfoldsty/hform1728.vf + RELOC/fonts/vf/public/hfoldsty/hform2074.vf + RELOC/fonts/vf/public/hfoldsty/hform2488.vf + RELOC/fonts/vf/public/hfoldsty/hform2986.vf + RELOC/fonts/vf/public/hfoldsty/hform3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosc3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosi2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosi2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosi2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosi3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosl2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosl2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosl2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosl3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoso2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoso2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoso2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoso3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoss2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoss2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoss2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoss3583.vf + RELOC/fonts/vf/public/hfoldsty/hfost0600.vf + RELOC/fonts/vf/public/hfoldsty/hfost0700.vf + RELOC/fonts/vf/public/hfoldsty/hfost0800.vf + RELOC/fonts/vf/public/hfoldsty/hfost0900.vf + RELOC/fonts/vf/public/hfoldsty/hfost1000.vf + RELOC/fonts/vf/public/hfoldsty/hfost1095.vf + RELOC/fonts/vf/public/hfoldsty/hfost1200.vf + RELOC/fonts/vf/public/hfoldsty/hfost1440.vf + RELOC/fonts/vf/public/hfoldsty/hfost1728.vf + RELOC/fonts/vf/public/hfoldsty/hfost2074.vf + RELOC/fonts/vf/public/hfoldsty/hfost2488.vf + RELOC/fonts/vf/public/hfoldsty/hfost2986.vf + RELOC/fonts/vf/public/hfoldsty/hfost3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosx2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosx2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosx2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosx3583.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfotc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfotc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfotc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfotc3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoti2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoti2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoti2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoti3583.vf + RELOC/fonts/vf/public/hfoldsty/hfott0600.vf + RELOC/fonts/vf/public/hfoldsty/hfott0700.vf + RELOC/fonts/vf/public/hfoldsty/hfott0800.vf + RELOC/fonts/vf/public/hfoldsty/hfott0900.vf + RELOC/fonts/vf/public/hfoldsty/hfott1000.vf + RELOC/fonts/vf/public/hfoldsty/hfott1095.vf + RELOC/fonts/vf/public/hfoldsty/hfott1200.vf + RELOC/fonts/vf/public/hfoldsty/hfott1440.vf + RELOC/fonts/vf/public/hfoldsty/hfott1728.vf + RELOC/fonts/vf/public/hfoldsty/hfott2074.vf + RELOC/fonts/vf/public/hfoldsty/hfott2488.vf + RELOC/fonts/vf/public/hfoldsty/hfott2986.vf + RELOC/fonts/vf/public/hfoldsty/hfott3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoui2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoui2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoui2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoui3583.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0600.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0700.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0800.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0900.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1000.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1095.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1200.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1440.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1728.vf + RELOC/fonts/vf/public/hfoldsty/hfovi2074.vf + RELOC/fonts/vf/public/hfoldsty/hfovi2488.vf + RELOC/fonts/vf/public/hfoldsty/hfovi2986.vf + RELOC/fonts/vf/public/hfoldsty/hfovi3583.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0600.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0700.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0800.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0900.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1000.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1095.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1200.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1440.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1728.vf + RELOC/fonts/vf/public/hfoldsty/hfovt2074.vf + RELOC/fonts/vf/public/hfoldsty/hfovt2488.vf + RELOC/fonts/vf/public/hfoldsty/hfovt2986.vf + RELOC/fonts/vf/public/hfoldsty/hfovt3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc3583.vf + RELOC/tex/latex/hfoldsty/hfoldsty.sty + RELOC/tex/latex/hfoldsty/hforbxitT1.cpa + RELOC/tex/latex/hfoldsty/hforbxitTS1.cpa + RELOC/tex/latex/hfoldsty/hforbxnT1.cpa + RELOC/tex/latex/hfoldsty/hforbxnTS1.cpa + RELOC/tex/latex/hfoldsty/hforbxslT1.cpa + RELOC/tex/latex/hfoldsty/hforbxslTS1.cpa + RELOC/tex/latex/hfoldsty/hformitT1.cpa + RELOC/tex/latex/hfoldsty/hformitTS1.cpa + RELOC/tex/latex/hfoldsty/hformnT1.cpa + RELOC/tex/latex/hfoldsty/hformnTS1.cpa + RELOC/tex/latex/hfoldsty/hformslT1.cpa + RELOC/tex/latex/hfoldsty/hformslTS1.cpa + RELOC/tex/latex/hfoldsty/hfossbxitT1.cpa + RELOC/tex/latex/hfoldsty/hfossbxitTS1.cpa + RELOC/tex/latex/hfoldsty/hfossbxnT1.cpa + RELOC/tex/latex/hfoldsty/hfossbxnTS1.cpa + RELOC/tex/latex/hfoldsty/hfossbxslT1.cpa + RELOC/tex/latex/hfoldsty/hfossbxslTS1.cpa + RELOC/tex/latex/hfoldsty/hfossmitT1.cpa + RELOC/tex/latex/hfoldsty/hfossmitTS1.cpa + RELOC/tex/latex/hfoldsty/hfossmnT1.cpa + RELOC/tex/latex/hfoldsty/hfossmnTS1.cpa + RELOC/tex/latex/hfoldsty/hfossmslT1.cpa + RELOC/tex/latex/hfoldsty/hfossmslTS1.cpa + RELOC/tex/latex/hfoldsty/omlhfor.fd + RELOC/tex/latex/hfoldsty/omshfor.fd + RELOC/tex/latex/hfoldsty/t1hfodh.fd + RELOC/tex/latex/hfoldsty/t1hfor.fd + RELOC/tex/latex/hfoldsty/t1hfoss.fd + RELOC/tex/latex/hfoldsty/t1hfott.fd + RELOC/tex/latex/hfoldsty/t1hfovt.fd + RELOC/tex/latex/hfoldsty/ts1hfor.fd + RELOC/tex/latex/hfoldsty/ts1hfoss.fd + RELOC/tex/latex/hfoldsty/ts1hfott.fd + RELOC/tex/latex/hfoldsty/ts1hfovtt.fd +catalogue-ctan /fonts/hfoldsty +catalogue-license gpl +catalogue-topics font font-virtual font-supp +catalogue-version 1.15 + +name hhtensor +category Package +revision 54080 +shortdesc Print vectors, matrices, and tensors +relocated 1 +longdesc This package provides commands for vectors, matrices, and +longdesc tensors with different styles -- arrows (as the LaTeX default), +longdesc underlined, and bold. +containersize 1204 +containerchecksum ce772bed045b85de5032e3b4beff52958e18513e2c9628e67505b75baa17befe4e3a5eb86f812305b87dbd15dd2f483df78ca7c5db54b64cf18abc75a2ae8f59 +doccontainersize 362248 +doccontainerchecksum aca1224b327f448bbb3f598b350fd4e569960bac9d05b8674b4cde79c4a13b376dc2a932b8fbd315f63f9dbc930ea28599afc18340eb36d4a38d967c14b62152 +docfiles size=93 + RELOC/doc/latex/hhtensor/ChangeLog + RELOC/doc/latex/hhtensor/Makefile + RELOC/doc/latex/hhtensor/README details="Package Readme" + RELOC/doc/latex/hhtensor/getversion.tex + RELOC/doc/latex/hhtensor/hhtensor.pdf details="Package documentation" +srccontainersize 3160 +srccontainerchecksum 6cf27dcfc865514e9274053bace69bd71e6699a501195c553ab3386723b375714f14829e70163539443c4c63b2821be8357653f137943cf49f26e0569c0fb0fc +srcfiles size=4 + RELOC/source/latex/hhtensor/hhtensor.dtx + RELOC/source/latex/hhtensor/hhtensor.ins +runfiles size=1 + RELOC/tex/latex/hhtensor/hhtensor.sty +catalogue-ctan /macros/latex/contrib/hhtensor +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.61 + +name highlightlatex +category Package +revision 58392 +shortdesc Syntax highlighting for LaTeX +relocated 1 +longdesc This package provides extensive colored syntax highlighting for +longdesc LaTeX. For this purpose it builds on the generic listings +longdesc package. +containersize 3548 +containerchecksum befd40ea2efc15015a76f97add004e33da86c628b3bf58277f8a9feff9396544acdc6603cae74e7bb88d2c819656edcbce9897e32f65156f39a0667c087a491d +doccontainersize 223808 +doccontainerchecksum 20760262af6cfeccf512ab205fb874b3f1c9b3c15637ed6500bf5b627ba2f319963eee0f76aa480e1257b0cb31288829bfe324f05afde290c3433aa9a018c10d +docfiles size=61 + RELOC/doc/latex/highlightlatex/LICENSE.txt + RELOC/doc/latex/highlightlatex/README.md details="Readme" + RELOC/doc/latex/highlightlatex/highlightlatex-manual.pdf details="Package documentation" +runfiles size=3 + RELOC/tex/latex/highlightlatex/highlightlatex.sty +catalogue-contact-bugs https://github.com/vkuhlmann/highlight-latex/issues +catalogue-contact-home https://github.com/vkuhlmann/highlight-latex +catalogue-ctan /macros/latex/contrib/highlightlatex +catalogue-license mit +catalogue-topics listing synt-hlt + +name hindawi-latex-template +category Package +revision 57757 +shortdesc A LaTeX template for authors of the Hindawi journals +relocated 1 +longdesc This package contains a LaTeX template for authors of the +longdesc Hindawi journals. Authors can use this template for formatting +longdesc their research articles for submissions. The package has been +longdesc created and is maintained by the Typeset team. +containersize 524 +containerchecksum 1f6651a4aa033a7cff44caff62d01f3dc5dc280bd19d8a0541c78cd35116e9f765517a078f6f6f7a25f9ee42fc4e4e743b86a746e80583b491ac399d46e94ff1 +doccontainersize 44964 +doccontainerchecksum 459a131616a15431dd489aaa87a23533ae5eb58575f38757a81af8eba425bd4e5c0c0f3a11a3c030d04ecd7d29e9ab08b3f4e270961c4c8e8791c15a497ba7fe +docfiles size=18 + RELOC/doc/latex/hindawi-latex-template/README details="Readme" + RELOC/doc/latex/hindawi-latex-template/hindawi_bib_style.bst + RELOC/doc/latex/hindawi-latex-template/hindawi_latex_template.pdf details="Example of use" + RELOC/doc/latex/hindawi-latex-template/hindawi_latex_template.tex +catalogue-contact-support https://www.typeset.io +catalogue-ctan /macros/latex/contrib/hindawi-latex-template +catalogue-license lppl1.3 +catalogue-topics journalpub doc-templ std-conform +catalogue-version 1.0 + +name hindmadurai +category Package +revision 57360 +shortdesc The HindMadurai font face with support for LaTeX and pdfLaTeX +relocated 1 +longdesc This package provides the HindMadurai family of fonts designed +longdesc by the Indian Type Foundry, with support for LaTeX and +longdesc pdfLaTeX. +execute addMap HindMadurai.map +containersize 1191412 +containerchecksum 24a585a4452895c901b41e64613d0bf3b2438c0bdded45b38ec6b61206cca96d5f0dc12ee5fb0073bcce95f208971e0838469e000108bb2d24567b2c239ba936 +doccontainersize 85732 +doccontainerchecksum 9cde302caf78d14cef5c191c6df0179991d07d8dcf40dd46941a966062d3df2ed5ccd21b6f5e5333bbab9245962cfed9ba75161c16bd8e0a914c231f9f420ef6 +docfiles size=25 + RELOC/doc/fonts/hindmadurai/HindMadurai-samples.pdf details="Font samples" + RELOC/doc/fonts/hindmadurai/HindMadurai-samples.tex + RELOC/doc/fonts/hindmadurai/LICENSE.TXT + RELOC/doc/fonts/hindmadurai/README details="Readme" +runfiles size=535 + RELOC/fonts/enc/dvips/hindmadurai/a_4f5hpf.enc + RELOC/fonts/enc/dvips/hindmadurai/a_mlnerp.enc + RELOC/fonts/enc/dvips/hindmadurai/a_u5lxld.enc + RELOC/fonts/enc/dvips/hindmadurai/a_ym6dij.enc + RELOC/fonts/map/dvips/hindmadurai/HindMadurai.map + RELOC/fonts/opentype/public/hindmadurai/HindMadurai-Bold.otf + RELOC/fonts/opentype/public/hindmadurai/HindMadurai-Light.otf + RELOC/fonts/opentype/public/hindmadurai/HindMadurai-Medium.otf + RELOC/fonts/opentype/public/hindmadurai/HindMadurai-Regular.otf + RELOC/fonts/opentype/public/hindmadurai/HindMadurai-SemiBold.otf + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/hindmadurai/HindMadurai-SemiBold-tlf-ts1.tfm + RELOC/fonts/type1/public/hindmadurai/HindMadurai-Bold.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-BoldLCDFJ.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-Light.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-LightLCDFJ.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-Medium.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-MediumLCDFJ.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-Regular.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-RegularLCDFJ.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-SemiBold.pfb + RELOC/fonts/type1/public/hindmadurai/HindMadurai-SemiBoldLCDFJ.pfb + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Bold-tlf-t1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Light-tlf-ly1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Light-tlf-ot1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Light-tlf-t1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Light-tlf-ts1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Medium-tlf-ot1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Medium-tlf-t1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Regular-tlf-t1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-SemiBold-tlf-ot1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/hindmadurai/HindMadurai-SemiBold-tlf-ts1.vf + RELOC/tex/latex/hindmadurai/HindMadurai.sty + RELOC/tex/latex/hindmadurai/LY1HindMadurai-TLF.fd + RELOC/tex/latex/hindmadurai/OT1HindMadurai-TLF.fd + RELOC/tex/latex/hindmadurai/T1HindMadurai-TLF.fd + RELOC/tex/latex/hindmadurai/TS1HindMadurai-TLF.fd +catalogue-contact-bugs https://github.com/ccebinger/CTAN_HindMadurai +catalogue-contact-development https://github.com/ccebinger/CTAN_HindMadurai +catalogue-contact-home https://github.com/ccebinger/CTAN_HindMadurai +catalogue-contact-repository https://github.com/ccebinger/CTAN_HindMadurai +catalogue-contact-support https://github.com/ccebinger/CTAN_HindMadurai +catalogue-ctan /fonts/hindmadurai +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-type1 font-otf font-indic font-supp font-t1enc +catalogue-version 0.0.1 + +name histogr +category Package +revision 15878 +shortdesc Draw histograms with the LaTeX picture environment +relocated 1 +longdesc This is a collection pf macros to draw histogram bars inside a +longdesc LaTeX picture-environment. +containersize 1204 +containerchecksum 987c392828a4995afdb37b10194c7735a7dfe3375bcc6efda6592d3f35351c369c045a2c1464cd2653d6275913a335ce3d527afb44c51ee38d3038d4751eaadf +doccontainersize 92496 +doccontainerchecksum 6cebdf9d6000ba48dd8106645e7a05709ced06c8790f8383a036629d8d53ca434f5c5aa0ff511754ea9e00fa743e435a304dacc16edf18098409972f763f9087 +docfiles size=27 + RELOC/doc/latex/histogr/histogr.pdf +srccontainersize 3208 +srccontainerchecksum f5e764adfe67c9e07261ff1211cc08ac9b4b076e67683dc50f9759e942f50810a72222a9669770b9f281b7f821d50a7da85014ad65461dcaf1117d54b98d89a2 +srcfiles size=4 + RELOC/source/latex/histogr/histogr.dtx + RELOC/source/latex/histogr/histogr.ins +runfiles size=1 + RELOC/tex/latex/histogr/histogr.sty +catalogue-ctan /macros/latex/contrib/histogr +catalogue-license lppl1.3 +catalogue-topics graphics-plot +catalogue-version 1.01 + +name historische-zeitschrift +category Package +revision 42635 +shortdesc BibLaTeX style for the journal 'Historische Zeitschrift' +relocated 1 +longdesc The package provides citations according with the house style +longdesc of the 'Historische Zeitschrift', a German historical journal. +longdesc The scheme is a fullcite for the first citation and 'Author, +longdesc Shorttitle (as note N, P)' for later citations (P being the +longdesc page number). For further details, see the description of the +longdesc house style at the journal's site. The package depends on +longdesc BibLaTeX (version 3.3 or higher) as well as etoolbox (version +longdesc 1.5 or higher). +containersize 5372 +containerchecksum da501792653c77f7cdac978a348e1267d4abc2e80d8b5565b47fdab4a1e2204f9544bab972a291d191ce26bd29203ff28a6440e2f8969cf1b33a5cea48998b04 +doccontainersize 3708 +doccontainerchecksum 1b091b850e4936e8e6484ca484f740005c66458655a0cbe24938c3f33f23807fe9b7a0ab93b38f6a3481c684e35031398860d5452f6bc3fc8a8e6f4c2e82f927 +docfiles size=3 + RELOC/doc/latex/historische-zeitschrift/CHANGES + RELOC/doc/latex/historische-zeitschrift/LIESMICH details="Readme" language="de" + RELOC/doc/latex/historische-zeitschrift/README details="Readme" language="en" +runfiles size=10 + RELOC/tex/latex/historische-zeitschrift/historische-zeitschrift.bbx + 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-license lppl +catalogue-topics journalpub biblatex +catalogue-version 1.2 + +name hitec +category Package +revision 15878 +shortdesc Class for documentation +relocated 1 +longdesc An article-based class designed for use for documentation in +longdesc high-technology companies. +containersize 5944 +containerchecksum d7ebe166a23c05a1b78552c102507e697c07b955cddc8f4061d22fc42fc414664d3a1bc1c08e0dd122a987c736d24d4935dd944b37f62fe260b3c811678a3b30 +doccontainersize 16076 +doccontainerchecksum f166b529f29f0470770d5a24e0f3ea2be9021732fb5373611b87cda10ff2196d1d121258fda75369a2f0f9a65324f4a8dc0d3c5f377cf994c04807b18b5a46f3 +docfiles size=7 + RELOC/doc/latex/hitec/README details="Readme" + RELOC/doc/latex/hitec/hitec_doc.pdf details="Package documentation" + RELOC/doc/latex/hitec/hitec_doc.tex +runfiles size=6 + RELOC/tex/latex/hitec/hitec.cls +catalogue-ctan /macros/latex/contrib/hitec +catalogue-license lppl +catalogue-topics class +catalogue-version 0.0(beta) + +name hithesis +category Package +revision 53362 +shortdesc Harbin Institute of Technology Thesis Template +relocated 1 +longdesc hithesis is a LaTeX thesis template package for Harbin +longdesc Institute of Technology supporting bachelor, master, doctor +longdesc dissertations. +containersize 25980 +containerchecksum c23d1a9aad18b7ff37380cdf7644b759d7cad35998baf6dbb4593a19d38c85a47e376f06e6cc3b8eb445eed3f59f1e1213d844405b62317507602376b1efc2c8 +doccontainersize 979836 +doccontainerchecksum fbf6767efa3bbc7cef8583735e23a7f5a3db1aa2f7b0de8bc276d4728c8627fb9321ca212d010b1604c2e5087f24a947c5794a9d09d3d326ae45ad8d0fbf298a +docfiles size=304 + RELOC/doc/latex/hithesis/README.md details="Readme" + RELOC/doc/latex/hithesis/back/acknowledgements.tex + RELOC/doc/latex/hithesis/back/appA.tex + RELOC/doc/latex/hithesis/back/appendix01.tex + RELOC/doc/latex/hithesis/back/ceindex.tex + RELOC/doc/latex/hithesis/back/conclusion.tex + RELOC/doc/latex/hithesis/back/publications.tex + RELOC/doc/latex/hithesis/back/resume.tex + RELOC/doc/latex/hithesis/body/introduction.tex + RELOC/doc/latex/hithesis/dtx-style.sty + RELOC/doc/latex/hithesis/figures/bthesistitle.eps + RELOC/doc/latex/hithesis/figures/golfer.eps + RELOC/doc/latex/hithesis/figures/hitlogo.eps + RELOC/doc/latex/hithesis/front/cover.tex + RELOC/doc/latex/hithesis/front/denotation.tex + RELOC/doc/latex/hithesis/hithesis.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/hithesis/latexmkrc + RELOC/doc/latex/hithesis/main.pdf + RELOC/doc/latex/hithesis/main.tex + RELOC/doc/latex/hithesis/reference.bib + RELOC/doc/latex/hithesis/wct1.eps + RELOC/doc/latex/hithesis/wct10.eps + RELOC/doc/latex/hithesis/wct5.eps + RELOC/doc/latex/hithesis/zfb.eps +srccontainersize 58844 +srccontainerchecksum 7c04ab284c9f5383aceca3fae590ea9612dd7f05cc0baafd3757b4fb5bf647260cf4645a3242392f211db63b239d0d8c6329ac0375f85631bcbf70a38928b9df +srcfiles size=63 + RELOC/source/latex/hithesis/Makefile + RELOC/source/latex/hithesis/hithesis.dtx + RELOC/source/latex/hithesis/hithesis.ins +runfiles size=53 + RELOC/bibtex/bst/hithesis/hithesis.bst + RELOC/makeindex/hithesis/hithesis.ist + RELOC/tex/latex/hithesis/ctex-fontset-siyuan.def + RELOC/tex/latex/hithesis/hithesis.cfg + RELOC/tex/latex/hithesis/hithesis.cls + RELOC/tex/latex/hithesis/hithesis.sty +catalogue-contact-announce https://github.com/dustincys +catalogue-contact-bugs https://github.com/dustincys/hithesis/issues +catalogue-contact-development https://github.com/dustincys +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-license lppl1.3a +catalogue-topics dissertation class chinese +catalogue-version 2.0.11 + +name hitreport +category Package +revision 58357 +shortdesc Harbin Institute of Technology Report LaTeX Template +relocated 1 +longdesc This package provides an assignment and experiment report +longdesc template free of configuration designed for undergraduates on +longdesc the three campuses of Harbin Institute of Technology. +containersize 10816 +containerchecksum e91894f8589f029d9cfe58d743d495131c24f0f6d6705d52d34ef34e1cbde5ba6dfd8e256cdd09ad7fa3080c613c3feaeaa15d3ca6ddb51fb82ba0a4bc333b99 +doccontainersize 1328244 +doccontainerchecksum e7f0b2566042a8442d5fd5cf36e4eeaffdf093a682b8c640ae8b059016997148d17d9449fdfc6026ba169731e0a7e2bb60c525a4ace29e296fbf1a910e887e9f +docfiles size=418 + RELOC/doc/latex/hitreport/LICENSE + RELOC/doc/latex/hitreport/README.md details="Readme" + RELOC/doc/latex/hitreport/data/abstract.tex + RELOC/doc/latex/hitreport/data/appendix.tex + RELOC/doc/latex/hitreport/data/chap01.tex + RELOC/doc/latex/hitreport/data/chap02.tex + RELOC/doc/latex/hitreport/data/chap03.tex + RELOC/doc/latex/hitreport/dtx-style.sty + RELOC/doc/latex/hitreport/figures/example-image-a.pdf + RELOC/doc/latex/hitreport/figures/example-image-b.pdf + RELOC/doc/latex/hitreport/figures/scan-copyright.pdf + RELOC/doc/latex/hitreport/figures/scan-record.pdf + RELOC/doc/latex/hitreport/figures/scan-statement.pdf + RELOC/doc/latex/hitreport/hitreport-example.pdf details="Example of use" language="zh" + RELOC/doc/latex/hitreport/hitreport-example.tex + RELOC/doc/latex/hitreport/hitreport.pdf details="Package documentation" language="zh" + RELOC/doc/latex/hitreport/hitsetup.tex + RELOC/doc/latex/hitreport/latexmkrc + RELOC/doc/latex/hitreport/photo/hithrb.pdf + RELOC/doc/latex/hitreport/photo/hitsz.pdf + RELOC/doc/latex/hitreport/photo/hitwh.pdf + RELOC/doc/latex/hitreport/ref/appendix.bib + RELOC/doc/latex/hitreport/ref/refs.bib +srccontainersize 25736 +srccontainerchecksum 7abb2458fa0a46e21c4d7e88699a3768555e954b37d2406a11d26925f520cad6a02e22282367d6787c560d0cecd34a1ecb6e96335b3f22930a083db5aa50e649 +srcfiles size=25 + RELOC/source/latex/hitreport/Makefile + RELOC/source/latex/hitreport/hitreport.dtx + RELOC/source/latex/hitreport/hitreport.ins +runfiles size=11 + RELOC/tex/latex/hitreport/hitreport.cls +catalogue-contact-bugs https://github.com/DemerzelSun12/hitreport/issues +catalogue-contact-repository https://github.com/DemerzelSun12/hitreport +catalogue-ctan /macros/latex/contrib/hitreport +catalogue-license lppl1.3c +catalogue-topics chinese class report-like doc-templ +catalogue-version 1.0.0 + +name hitszbeamer +category Package +revision 54381 +shortdesc A beamer theme for Harbin Institute of Technology, ShenZhen +relocated 1 +longdesc This is a beamer theme designed for Harbin Institute of +longdesc Technology, ShenZhen (HITSZ). +containersize 11560 +containerchecksum a90ea22943c228d15f659bc562d79b9e50b157451ee9d06b02cbcdf5a1ef4c1eb353c756e0963d113d6258c1799ab22f71a79905387c78638c01abeb3d936e00 +doccontainersize 1073200 +doccontainerchecksum 84d8a9edf719b1af7ee9d8276d91bfb15306bc3a5632c5c0290412533a5c321c1087bb642104d47137007c9328a346f72c8ab87b9d5f8b94e3ca0b6d2fd18a70 +docfiles size=640 + RELOC/doc/latex/hitszbeamer/README.md details="Readme" + RELOC/doc/latex/hitszbeamer/dtx-style.sty + RELOC/doc/latex/hitszbeamer/figures/hitlogo-mask.jpg + RELOC/doc/latex/hitszbeamer/figures/hitlogo.jpg + RELOC/doc/latex/hitszbeamer/hitszbeamer.pdf details="Package documentation" language="zh" + RELOC/doc/latex/hitszbeamer/main.pdf details="Example of use" language="zh" + RELOC/doc/latex/hitszbeamer/main.tex + RELOC/doc/latex/hitszbeamer/reference.bib +srccontainersize 7944 +srccontainerchecksum 4e62661f3e51baede19234e9bea18065833ee07d1edb6efbd434d8cc194f04adb3ce48e74f93050a4e9fae1d4b77f5efd0346925b6ead46a344503b9af96a23b +srcfiles size=12 + RELOC/source/latex/hitszbeamer/Makefile + RELOC/source/latex/hitszbeamer/hitszbeamer.dtx + RELOC/source/latex/hitszbeamer/hitszbeamer.ins + RELOC/source/latex/hitszbeamer/makebeamer.bat + RELOC/source/latex/hitszbeamer/makeclean.bat + RELOC/source/latex/hitszbeamer/makecleanall.bat + RELOC/source/latex/hitszbeamer/makedoc.bat +runfiles size=39 + RELOC/bibtex/bst/hitszbeamer/hitszbeamer.bst + RELOC/tex/latex/hitszbeamer/beamercolorthemehitszbeamer.sty + RELOC/tex/latex/hitszbeamer/beamerinnerthemehitszbeamer.sty + RELOC/tex/latex/hitszbeamer/beamerouterthemehitszbeamer.sty + RELOC/tex/latex/hitszbeamer/beamerthemehitszbeamer.sty +catalogue-contact-announce https://github.com/YangLaTeX/hitszbeamer/releases +catalogue-contact-bugs https://github.com/YangLaTeX/hitszbeamer/issues +catalogue-contact-home https://github.com/YangLaTeX/hitszbeamer +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/hitszbeamer +catalogue-license lppl1.3c +catalogue-topics chinese presentation +catalogue-version 1.0.0 + +name hitszthesis +category Package +revision 55643 +shortdesc A dissertation template for Harbin Institute of Technology, ShenZhen +relocated 1 +longdesc This package provides a dissertation template for Harbin +longdesc Institute of Technology, ShenZhen (HITSZ), including bachelor, +longdesc master and doctor dissertations. +containersize 25004 +containerchecksum 2661153465f8b9fc3f4feaf23859ddd0e0da863d0cdc3c0e8b14997e192260cc252ef58d95082b54b9f7299347ec72a9057e11d6656c5e26c9f3e6285baf6484 +doccontainersize 1675628 +doccontainerchecksum c6d12b3779c8e67050bd77f905741c1a496379f76c001f3348bd9f8fccfb8c25dbb58acfaab76901c1b01fcab260a206ba3a0337411881a21f46b1888b684195 +docfiles size=474 + RELOC/doc/latex/hitszthesis/README.md details="Readme" + RELOC/doc/latex/hitszthesis/back/acknowledgements.tex + RELOC/doc/latex/hitszthesis/back/appendix01.tex + RELOC/doc/latex/hitszthesis/back/appendix02.tex + RELOC/doc/latex/hitszthesis/back/appendix03.tex + RELOC/doc/latex/hitszthesis/back/appendixA.tex + RELOC/doc/latex/hitszthesis/back/appendixB.tex + RELOC/doc/latex/hitszthesis/back/ceindex.tex + RELOC/doc/latex/hitszthesis/back/conclusion.tex + RELOC/doc/latex/hitszthesis/back/publications.tex + RELOC/doc/latex/hitszthesis/back/resume.tex + RELOC/doc/latex/hitszthesis/body/chapter01.tex + RELOC/doc/latex/hitszthesis/body/chapter02.tex + RELOC/doc/latex/hitszthesis/body/chapter03.tex + RELOC/doc/latex/hitszthesis/body/chapter04.tex + RELOC/doc/latex/hitszthesis/body/chapter05.tex + RELOC/doc/latex/hitszthesis/body/chapter06.tex + RELOC/doc/latex/hitszthesis/ctex-fontset-siyuan.def + RELOC/doc/latex/hitszthesis/dtx-style.sty + RELOC/doc/latex/hitszthesis/figures/bthesistitle.eps + RELOC/doc/latex/hitszthesis/figures/golfer.eps + RELOC/doc/latex/hitszthesis/figures/hitlogo.eps + RELOC/doc/latex/hitszthesis/front/coverinformation.tex + RELOC/doc/latex/hitszthesis/front/denotation.tex + RELOC/doc/latex/hitszthesis/hitszthesis-bachelor.pdf details="Sample document 1" language="zh" + RELOC/doc/latex/hitszthesis/hitszthesis-doctor.pdf details="Sample document 3" language="zh" + RELOC/doc/latex/hitszthesis/hitszthesis-example.tex + RELOC/doc/latex/hitszthesis/hitszthesis-master.pdf details="Sample document 2" language="zh" + RELOC/doc/latex/hitszthesis/hitszthesis.cfg + RELOC/doc/latex/hitszthesis/hitszthesis.pdf details="Package documentation" language="zh" + RELOC/doc/latex/hitszthesis/latexmkrc + RELOC/doc/latex/hitszthesis/reference.bib +srccontainersize 33884 +srccontainerchecksum 3a39f1bf764f53cf149db0fde6e60d28fa290acb9c2506e5fee8379642532d51b29e3f0151ec577e258bb95160387a1ff0e9346c05e64cf18882e12f9b542b78 +srcfiles size=33 + RELOC/source/latex/hitszthesis/Makefile + RELOC/source/latex/hitszthesis/compile.bat + RELOC/source/latex/hitszthesis/hitszthesis.dtx + RELOC/source/latex/hitszthesis/hitszthesis.ins +runfiles size=53 + RELOC/bibtex/bst/hitszthesis/hitszthesis.bst + RELOC/makeindex/hitszthesis/hitszthesis.ist + RELOC/tex/latex/hitszthesis/hitszthesis.cls + RELOC/tex/latex/hitszthesis/hitszthesis.sty +catalogue-contact-announce https://github.com/YangLaTeX/hitszthesis/releases +catalogue-contact-bugs https://github.com/YangLaTeX/hitszthesis/issues +catalogue-contact-repository https://github.com/YangLaTeX/hitszthesis +catalogue-contact-support https://github.com/YangLaTeX/hitszthesis/wiki +catalogue-ctan /macros/latex/contrib/hitszthesis +catalogue-license lppl1.3c +catalogue-topics class dissertation chinese +catalogue-version 3.2 + +name hletter +category Package +revision 30002 +shortdesc Flexible letter typesetting with flexible page headings +relocated 1 +longdesc The package permits the user to specify easily, with the aid of +longdesc self defined key-words, letters (with a logo and private) and +longdesc headings. The heading may include a footer and the letter +longdesc provides commands to include a scanned signature and two +longdesc signees. The package works with the merge package. +containersize 8712 +containerchecksum bd79dec347980624c634918880718af9e434e24acaed206815e974c2db856e8f424e12b6870d920079626423f18a02fd326bdc387c256ae9c3a1dfa4ae26e71b +doccontainersize 2527296 +doccontainerchecksum 67a9a39cf0c8ac1054588ad542a8ba3705e94445920d4ca85b46423a4cea364c58e8d2b02b7d7579c9684653734f0766e8ddced28a7c5ec77e0daa3c3dee26b9 +docfiles size=1215 + RELOC/doc/latex/hletter/Bruennhilde.eps + RELOC/doc/latex/hletter/Bruennhilde.jpg + RELOC/doc/latex/hletter/Gccs.eps + RELOC/doc/latex/hletter/Gccs.jpg + RELOC/doc/latex/hletter/Hletter.pdf details="Package documentation" + RELOC/doc/latex/hletter/README details="Readme" + RELOC/doc/latex/hletter/Testheader.tex + RELOC/doc/latex/hletter/Testletter1.tex + RELOC/doc/latex/hletter/Testletter2.tex + RELOC/doc/latex/hletter/Testletter3.tex + RELOC/doc/latex/hletter/Testmerge.dat + RELOC/doc/latex/hletter/Testmerge.tex + RELOC/doc/latex/hletter/signat.eps + RELOC/doc/latex/hletter/signat.jpg +runfiles size=12 + RELOC/tex/latex/hletter/hdefine.clo + RELOC/tex/latex/hletter/hhead.sty + RELOC/tex/latex/hletter/hlete.clo + RELOC/tex/latex/hletter/hletf.clo + RELOC/tex/latex/hletter/hletg.clo + RELOC/tex/latex/hletter/hletter.cls + RELOC/tex/latex/hletter/hsetup.sty + RELOC/tex/latex/hletter/mergeh.sty +catalogue-ctan /macros/latex/contrib/hletter +catalogue-license lppl1.2 +catalogue-topics letter class +catalogue-version 4.2 + +name hlist +category Package +revision 44983 +shortdesc Horizontal and columned lists +relocated 1 +longdesc This plain TeX and LaTeX package provides the "hlist" +longdesc environment in which \hitem starts a horizontal and columned +longdesc item. It depends upon the simplekv package. +containersize 9244 +containerchecksum 9e2150f08a7fac07a0e2e36edcecbd5c16ab3c119d8532fbae9399f14c6c7567d2cf4e2a92eda9a650049a901a35b6a9a0dd3423a06da6a9d266a3859392334d +doccontainersize 386912 +doccontainerchecksum 5b3748d7f67fb51dc0df2a03318e96ac9224abc42291ab475a907befa14fc210d9d2371005150404480900865e8ffa9f97e3ab122109bb5454c3b061f66a064d +docfiles size=100 + RELOC/doc/generic/hlist/README details="Readme" + RELOC/doc/generic/hlist/hlist-fr.pdf details="Package documentation" + RELOC/doc/generic/hlist/hlist-fr.tex +runfiles size=9 + RELOC/tex/generic/hlist/hlist.sty + RELOC/tex/generic/hlist/hlist.tex +catalogue-ctan /macros/generic/hlist +catalogue-license lppl1.3c +catalogue-topics list-supp table list +catalogue-version 0.11 + +name hmtrump +category Package +revision 54512 +shortdesc Describe card games +relocated 1 +longdesc This package provides a font with LuaLaTeX support for +longdesc describing card games. +containersize 19256 +containerchecksum 34b2e61744e3f8cf180a61ca13788834466dad7bdf831e576829e0f6613c5e8a6330075e89516915728a5936a68c14288c79e0f050e5956964d69bab3784d9c6 +doccontainersize 967852 +doccontainerchecksum 36c1a35cb4efb4dc340a439a921252cbaf48d3f0b7fab0010a7fa22d8b03e7b5b644244410efa9fdc63b5fbf69eb9396cc048908d00210e650941a0647d3f4d3 +docfiles size=265 + RELOC/doc/lualatex/hmtrump/README.md details="Readme" + RELOC/doc/lualatex/hmtrump/by-sa.png + RELOC/doc/lualatex/hmtrump/hmtrump-sample.pdf details="Example of use" language="ja" + RELOC/doc/lualatex/hmtrump/hmtrump-sample.tex + RELOC/doc/lualatex/hmtrump/hmtrump.pdf details="Package documentation" language="ja" + RELOC/doc/lualatex/hmtrump/hmtrump.tex + RELOC/doc/lualatex/hmtrump/nkd04_playing_cards_index/LICENSE + RELOC/doc/lualatex/hmtrump/nkd04_playing_cards_index/readme.txt +runfiles size=15 + RELOC/fonts/truetype/public/hmtrump/nkd04_playing_cards_index.ttf + RELOC/tex/lualatex/hmtrump/hmtrump.sty +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-license cc-by-sa-4 other-free +catalogue-topics games luatex font font-ttf font-symbol font-supp-symbol font-supp +catalogue-version 1.2a + +name hobby +category Package +revision 44474 +shortdesc An implementation of Hobby's algorithm for PGF/TikZ +relocated 1 +longdesc This package defines a path generation function for PGF/TikZ +longdesc which implements Hobby's algorithm for a path built out of +longdesc Bezier curves which passes through a given set of points. The +longdesc path thus generated may by used as a TikZ 'to path'. The +longdesc implementation is in LaTeX3. +containersize 9624 +containerchecksum 669c768dffa4e88d831d0a03a7e518fb2c101cd0af9ca1e15e6527ccbe78a13485145bedd4ef45cbaefcc94e4bead303acb89a0d0f50c6fc3a7ab312717febad +doccontainersize 944236 +doccontainerchecksum 7c8a353078be8b94195558d1d7a319173b4480a616c8725b99357ed3a086565c238b944b9b3baa719b354dcff9476aa7c7ffb055565df546054e662370d5d808 +docfiles size=249 + RELOC/doc/latex/hobby/README + RELOC/doc/latex/hobby/hobby.pdf details="Package documentation" + RELOC/doc/latex/hobby/hobby_code.pdf details="Annotated code" + RELOC/doc/latex/hobby/hobby_doc.tex +srccontainersize 17768 +srccontainerchecksum 216ff34f42c28fd3e2303ff5032a299668881fbe51e8c8957547dd7953b2296e984a449cc09b79268b968ec8fcb8b774453a26e88156f5b7bbc6cb78a57de7e7 +srcfiles size=29 + RELOC/source/latex/hobby/hobby.dtx + RELOC/source/latex/hobby/hobby.ins +runfiles size=19 + RELOC/tex/latex/hobby/hobby.code.tex + RELOC/tex/latex/hobby/pgflibraryhobby.code.tex + RELOC/tex/latex/hobby/pml3array.sty + RELOC/tex/latex/hobby/tikzlibraryhobby.code.tex +catalogue-contact-home https://github.com/loopspace/hobby +catalogue-contact-repository https://github.com/loopspace/hobby +catalogue-ctan /graphics/pgf/contrib/hobby +catalogue-license lppl1.3 +catalogue-topics graphics-curve graphics-supp graphics-in-tex expl3 +catalogue-version 1.8 + +name hobete +category Package +revision 27036 +shortdesc Unofficial beamer theme for the University of Hohenheim +relocated 1 +longdesc The package provides a beamer theme which features the Ci +longdesc colors of the University of Hohenheim. Please note that this is +longdesc not an official Theme, and that there will be no support for +longdesc it, from the University. Furthermore there is NO relationship +longdesc between the University and this theme. +containersize 6292 +containerchecksum d2c79f5d39fbe82b43704a78add3a016768ff282d48ed1f49d1991c6ab56bef5266e8cfa7b3b03bcc944990d407ae43eca99930270ab84679f51323407b861a0 +doccontainersize 366520 +doccontainerchecksum ef7b1bd487c496cb2ffc01fb2940a72ac69edb1a5516d19ce6a6e6cb197ba6f517e03ac673b2372cc9cd4f40e5c6ea2469c2712528a10a3f5ba09e9d3a46f209 +docfiles size=98 + RELOC/doc/latex/hobete/README details="Readme (German)" language="de" + RELOC/doc/latex/hobete/hobete_doc.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/hobete/hobete_doc.tex + RELOC/doc/latex/hobete/poster-test.tex +runfiles size=7 + RELOC/tex/latex/hobete/beamercolorthemehohenheim.sty + RELOC/tex/latex/hobete/beamerouterthemehohenheim.sty + RELOC/tex/latex/hobete/beamerouterthemehohenheimposter.sty + RELOC/tex/latex/hobete/beamerthemehohenheim.sty + RELOC/tex/latex/hobete/hobete.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/hobete +catalogue-license lppl +catalogue-topics presentation poster + +name hobsub +category Package +revision 52810 +shortdesc Construct package bundles +relocated 1 +longdesc Heiko Oberdiek's hobsub package (and hobsub-hyperref and +longdesc hobsub-generic packages) defined a mechanism for concatenating +longdesc multiple files into a single file for faster loading. The +longdesc disadvantage is that it introduces hard dependencies between +longdesc the source files that are included and complicates distribution +longdesc and updates. It was principally used with hyperref but is not +longdesc currently used in any standard packages in TeX Live. The +longdesc packages are still distributed as simple stubs that reference +longdesc the included packages via \RequirePackage rather than copying +longdesc their source. The documented source of the original packages is +longdesc available at github, but is not distributed to CTAN. +containersize 1264 +containerchecksum 586189051038582c9303935c70bed67975f51472d28b533e4b72ef341d4d93ad8f313774a5c585baf4b72d607101941f01176892499c7ecc5cec3ede2e28a693 +doccontainersize 60892 +doccontainerchecksum 8cf2210285b162e52e2cbaf0d1a9e7027ca3aeb7da81ba238fff97a9cb10c7ba9058f5eb4f28303031a7774f457207ace1f30610cef2f733dd65b35d9ab6b1b7 +docfiles size=17 + RELOC/doc/latex/hobsub/README.md details="Readme" + RELOC/doc/latex/hobsub/hobsub.pdf details="Package documentation" + RELOC/doc/latex/hobsub/hobsub.tex +runfiles size=3 + RELOC/tex/latex/hobsub/hobsub-generic.sty + RELOC/tex/latex/hobsub/hobsub-hyperref.sty + RELOC/tex/latex/hobsub/hobsub.sty +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-license lppl1.3c +catalogue-topics macro-supp + +name hologo +category Package +revision 53048 +shortdesc A collection of logos with bookmark support +relocated 1 +longdesc The package defines a single command \hologo, whose argument is +longdesc the usual case-confused ASCII version of the logo. The command +longdesc is bookmark-enabled, so that every logo becomes available in +longdesc bookmarks without further work. +containersize 9924 +containerchecksum 8d1fd73519f0185db7ae8e82ac62957cb958311a5bded23823591157c6c31557b455ca6baa42fffa39d969e42a5fe87b18186dab7d18097e4e30e8589524ec96 +doccontainersize 553396 +doccontainerchecksum 72a65838829017ca887afe5bdf1f7645209601e267241a5650731a806c08b58670a4934698c4ebf2548d198e0b79619ef33c06d6eccfd5eef9119bee19629105 +docfiles size=141 + RELOC/doc/latex/hologo/README.md + RELOC/doc/latex/hologo/example/hologo-example.tex + RELOC/doc/latex/hologo/hologo.pdf details="Package documentation" +srccontainersize 19816 +srccontainerchecksum 0fa9111eb2d1dd0ce076cb831466219be1f18b87e9520aafa15bdfea7636df836e77611e393909b6c410f6bd1aee76b76aa4779317fb4159353098aa95921ed4 +srcfiles size=28 + RELOC/source/latex/hologo/hologo.dtx +runfiles size=14 + RELOC/tex/generic/hologo/hologo.sty +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-license lppl1.3 +catalogue-topics logo +catalogue-version 1.14 + +name hook-pre-commit-pkg +category Package +revision 41378 +shortdesc Pre-commit git hook for LaTeX package developpers +relocated 1 +longdesc This package provides a pre-commit git hook to check basic +longdesc LaTeX syntax for the use of package developers. It is installed +longdesc by copying it into the .git/.hooks file. It then checks the +longdesc following file types: .sty, .dtx, .bbx, .cbx, and .lbx. List of +longdesc performed checks: Each line must be terminated by a %, without +longdesc a space before it. Empty lines are allowed, but not lines with +longdesc nothing but spaces in them. \begin{macro} and \end{macro} must +longdesc be paired. \begin{macrocode} and \end{macrocode} must be +longdesc paired. \begin{macro} must have a second argument. One space +longdesc must be printed between % and \begin{macro} or \end{macro}. % +longdesc must be the first character in the line. Four spaces must be +longdesc printed between % and \begin{macrocode} or \end{macrocode}. \cs +longdesc argument must not start with a backslash. +containersize 808 +containerchecksum 6fb3009d4bb4016f0d6e92571d52aaf7e3780d39a6b2ec73ffb37112b3f153ed71ecbcd985b81dd841f296a39da83e9004a2d6e6e85e9a49765e1682563cfde3 +doccontainersize 2788 +doccontainerchecksum 3873c4714a8a6d221f860a5d0606113c64482b363727067e0017d27e99d73f31cfdac88a799fb1412225baffaecd7bb03dbdc66b607a075b1e4539ffc0df2a9d +docfiles size=4 + RELOC/doc/support/hook-pre-commit-pkg/README details="Readme" + 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-license gpl3 +catalogue-topics package-devel +catalogue-version 1.1.2 + +name hopatch +category Package +revision 56106 +shortdesc Load patches for packages +relocated 1 +longdesc Hopatch provides a command with which the user may register of +longdesc patch code for a particular package. Hopatch will apply the +longdesc patch immediately, if the relevant package has already been +longdesc loaded; otherwise it will store the patch until the package +longdesc appears. +containersize 2184 +containerchecksum 1658c78cf7671e821ed38825f8b0a0dd96b268c80afb0e64b27129c08e6c9375a7c8e3e5019361e100cb11691a0d27fe533aa2d000306a38b752114a0eac4d12 +doccontainersize 303776 +doccontainerchecksum 57441e01ba72ed0fe8439da5b41dd7600ae43eab90e06150e58704c9fac5a0047c6ab3f7d581310972b973006d9a98ee52bf782f0f2fca151c59050e5bc402f3 +docfiles size=76 + RELOC/doc/latex/hopatch/README.md + RELOC/doc/latex/hopatch/hopatch.pdf details="Package documentation" +srccontainersize 6008 +srccontainerchecksum 30537bb32dc82ccba9df85129db856884e2a948cee2cbe500a6208a5c3481b8f55253d86ed744d939e149c784e5aa6d8f843434629dc39a291762df863ad959d +srcfiles size=6 + RELOC/source/latex/hopatch/hopatch.dtx +runfiles size=3 + RELOC/tex/latex/hopatch/hopatch-2016-05-16.sty + RELOC/tex/latex/hopatch/hopatch.sty +catalogue-contact-bugs https://github.com/ho-tex/hopatch/issues +catalogue-ctan /macros/latex/contrib/hopatch +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.4 + +name horoscop +category Package +revision 56021 +shortdesc Generate astrological charts in LaTeX +relocated 1 +longdesc The horoscop package provides a unified interface for +longdesc astrological font packages; typesetting with pict2e of standard +longdesc wheel charts and some variations, in PostScript- and +longdesc PDF-generating TeX engines; and access to external calculation +longdesc software (Astrolog and Swiss Ephemeris) for computing object +longdesc positions. +containersize 10484 +containerchecksum d00c8ecbc9c76c2864a52a8bc9f802477e402a59c86789252bce1b8296735035b7b9cbb1c3a18baa76cd1d308d4af53d7d2f64ee9aa37a70e33bf27e1465207a +doccontainersize 688112 +doccontainerchecksum 9bdd655263da0847bed65c71e423e301a35e69d7cceacd650c0e9d4be91800c0de5fa0d7aa917a6d5f5abcc585ed031e6ec84ef003bb813be41e3daa3ab95f82 +docfiles size=174 + RELOC/doc/latex/horoscop/README details="Readme" + RELOC/doc/latex/horoscop/horoscop.pdf details="Package documentation" +srccontainersize 74156 +srccontainerchecksum 40627807a0ccda26d1ffd1e2340542644b9d38f5344e427bf33c2e6ef72acbe9de9b7c11366d5ad258361b217373c13a9c8fa88da7f8176af6c738440d054626 +srcfiles size=79 + RELOC/source/latex/horoscop/horoscop.dtx + RELOC/source/latex/horoscop/horoscop.ins +runfiles size=15 + RELOC/tex/latex/horoscop/horoscop.sty +catalogue-ctan /macros/latex/contrib/horoscop +catalogue-license pd +catalogue-topics astrology +catalogue-version 1.01 + +name hpsdiss +category Package +revision 15878 +shortdesc A dissertation class +relocated 1 +longdesc The class was developed to typeset a dissertation at ETH +longdesc Zurich. The requirements were to use A5 paper and 10pt type. A +longdesc sample of the output is shown in the PDF documentation link. +containersize 5708 +containerchecksum 4905368d081cc6e7f2c7b43b28d4c6e22081796d8594e5a07e521bb7ab0fb14c9ccce1dcbe135b0cbc5a7b2671e3041d7764ff80c7e1543b4ac4cefe945794b4 +doccontainersize 110020 +doccontainerchecksum 566f0509feee0bc5c28481fb62f2c991827cd5855f9696fdda79628f5c43329b39dd508fe9613d2c0f823bef421a97393fd303d830c779c42ac67f88303a239b +docfiles size=54 + RELOC/doc/latex/hpsdiss/hpsdiss.pdf details="Example of package use" +srccontainersize 11408 +srccontainerchecksum 8337cbedc42502ececcfd60adf422e15aba32381c46489a82d8b618286a4d8848c0288136771b8acdbb03af9f39029e4be8e1c287f6dac9bd3ade3b727e8ec8e +srcfiles size=12 + RELOC/source/latex/hpsdiss/hpsdiss.dtx + RELOC/source/latex/hpsdiss/hpsdiss.ins +runfiles size=6 + RELOC/tex/latex/hpsdiss/hpsdiss.cls +catalogue-ctan /macros/latex/contrib/hpsdiss +catalogue-license gpl +catalogue-topics dissertation class +catalogue-version 1.0 + +name hrefhide +category Package +revision 22255 +shortdesc Suppress hyper links when printing +relocated 1 +longdesc This package provides the command \hrefdisplayonly (which +longdesc provides a substitute for \href). While the (hyperlinked) text +longdesc appears like an ordinary \href in the compiled PDF file, the +longdesc same text will be "hidden" when printing the text. (Hiding is +longdesc actually achieved by making the text the same colour as the +longdesc background, thus preserving the layout of the rest of the +longdesc text.) +containersize 2412 +containerchecksum 6d96fdc550a99ed7f3e4dbee19a589c27b27af16f910a22befb51bfb452d8f9f57cbb27f1ecf96c5604e61eb1cd0343c0a07810ac1519dc51422183d6229916e +doccontainersize 434460 +doccontainerchecksum a8ae0fbbb185ded46cbc1d7550526230de4098bf3a5bc8bf72ec8f5a5b4b93703501da19a4c9e09e08044aea768a01e39dfa36c38c9be72c7aee8e61f58acd71 +docfiles size=111 + RELOC/doc/latex/hrefhide/README details="Readme" + RELOC/doc/latex/hrefhide/hrefhide-example.pdf + RELOC/doc/latex/hrefhide/hrefhide-example.tex + RELOC/doc/latex/hrefhide/hrefhide.pdf details="Package documentation" +srccontainersize 11684 +srccontainerchecksum ed08bbabfdd78725060f3bac173d2819ddfe494e99d76abe02ffff755718caafc520e0336299c8c1dda0db1492089316e05b1b85c93c866b683703b471e845b4 +srcfiles size=12 + RELOC/source/latex/hrefhide/hrefhide.drv + RELOC/source/latex/hrefhide/hrefhide.dtx + RELOC/source/latex/hrefhide/hrefhide.ins +runfiles size=2 + RELOC/tex/latex/hrefhide/hrefhide.sty +catalogue-ctan /macros/latex/contrib/hrefhide +catalogue-license lppl1.3 +catalogue-topics hyper +catalogue-version 1.0f + +name hrlatex +category Package +revision 18020 +shortdesc LaTeX support for Croatian documents +relocated 1 +longdesc This package simplifies creation of new documents for the +longdesc (average) Croatian user. As an example, a class file hrdipl.cls +longdesc (designed for the graduation thesis at the University of +longdesc Zagreb) and sample thesis documents are included. +containersize 3528 +containerchecksum 14bd6fdf4a60ec599971b1f5ee7ae5fc649b0d1382f9dff8bf9905f4623f3964c2d552bbc4485680d22cf04651a5e49b71220ec2c05e6599356b6dcee6e4d122 +doccontainersize 98316 +doccontainerchecksum ecd67675466d365f00e49b775ae3e5264e2d10d574dbbe913d52b3a5b553fe942e06fcca26cb2357fa76688c55fc4268bf7d18f5cb2a90663bfe47c11a5bbde7 +docfiles size=43 + RELOC/doc/latex/hrlatex/README details="Readme" + RELOC/doc/latex/hrlatex/hrlatex.pdf details="Package documentation:" language="hr" + RELOC/doc/latex/hrlatex/sample.fsbispit.tex + RELOC/doc/latex/hrlatex/sample.minimal.cp1250.tex + RELOC/doc/latex/hrlatex/sample.minimal.latin2.tex + RELOC/doc/latex/hrlatex/sample.minimal.utf8.tex + RELOC/doc/latex/hrlatex/sample.prezentacija.tex +srccontainersize 3768 +srccontainerchecksum 01f47918a1926f36840fd4d78debc70cbe09fd2a52b06ede7b40d7c3ce0d42e6385d54cd2cc96eed8bc222ebcbd2e7ab191c41f8c8df82f9b5ff93d2e0f54a16 +srcfiles size=3 + RELOC/source/latex/hrlatex/hrlatex.dtx + RELOC/source/latex/hrlatex/hrlatex.ins +runfiles size=4 + RELOC/tex/latex/hrlatex/fsbispit.cls + RELOC/tex/latex/hrlatex/fsbmath.sty + RELOC/tex/latex/hrlatex/hrlatex.sty +catalogue-ctan /language/croatian/hrlatex +catalogue-license lppl +catalogue-topics croatian +catalogue-version 0.23 + +name hu-berlin-bundle +category Package +revision 57580 +shortdesc LaTeX classes for the Humboldt-Universitat zu Berlin +relocated 1 +longdesc This package provides files according to the corporate design +longdesc of the Humboldt-Universitat zu Berlin. This is not an official +longdesc package by the university itself, and not officially approved +longdesc by it. More information can be found in the Humboldt +longdesc University's corporate design guideline and on the website +longdesc https://www.hu-berlin.de/de/hu-intern/design. At present, the +longdesc bundle contains a letter class based on scrlttr2 and a package +longdesc hu-berlin-base.sty which contains all relevant code for +longdesc documents and documentclasses of the bundle. +containersize 8244 +containerchecksum 78944145098920198c331c54572acea4238fb4344e2ef7b8a53f587b4d1754a0b6b677d7d6ff15ee4edf19b8ecaa08e1728abe00a4a9f0c0300e8b5b11ceff82 +doccontainersize 213632 +doccontainerchecksum 47cef7dab327828865e2cfdd50873d6b50bd370caeba4b107390895c99a0badfbf7a3778e1f6f2a850ed213e95f1f6a52e0f0ff3fc2f1f1beaebd3c177b82cb9 +docfiles size=87 + RELOC/doc/lualatex/hu-berlin-bundle/README.md details="Readme" + RELOC/doc/lualatex/hu-berlin-bundle/hu-berlin-bundle-bibliography.bib + RELOC/doc/lualatex/hu-berlin-bundle/hu-berlin-bundle.pdf details="Package documentation" + RELOC/doc/lualatex/hu-berlin-bundle/hu-berlin-letter-example-lualatex.tex + RELOC/doc/lualatex/hu-berlin-bundle/hu-berlin-letter-example-markdown.md + RELOC/doc/lualatex/hu-berlin-bundle/hu-berlin-letter-example.lco + RELOC/doc/lualatex/hu-berlin-bundle/hu-berlin-letter-template.latex + RELOC/doc/lualatex/hu-berlin-bundle/img/texografie-logo.pdf + RELOC/doc/lualatex/hu-berlin-bundle/makefile +srccontainersize 17768 +srccontainerchecksum 08f7fabd4df92fe01790f6cb843ed912dae1e554a15c4cc54d13121a3f61797ee292086de8312a7df50171e385c2b531141a1bbe93bda482eeb936e6eacd4dcc +srcfiles size=17 + RELOC/source/lualatex/hu-berlin-bundle/hu-berlin-bundle.dtx +runfiles size=7 + RELOC/tex/lualatex/hu-berlin-bundle/hu-berlin-base.sty + RELOC/tex/lualatex/hu-berlin-bundle/hu-berlin-bundle-style.sty + RELOC/tex/lualatex/hu-berlin-bundle/hu-berlin-letter.cls +catalogue-contact-bugs https://github.com/LukasCBossert/hu-berlin-bundle/issues +catalogue-contact-repository https://github.com/LukasCBossert/hu-berlin-bundle +catalogue-ctan /macros/luatex/latex/hu-berlin-bundle +catalogue-license lppl1.3c gpl2 bsd3 +catalogue-topics class letter luatex +catalogue-version 1.1.1 + +name huawei +category Package +revision 58907 +shortdesc Template for Huawei documents +relocated 1 +longdesc This unofficial package provides a class for creating documents +longdesc for people working with Huawei Technologies Co., Ltd.. +containersize 5668 +containerchecksum d6aba70a005d5902c55cdcee90f903d11f8ff337f0fec8966add4a5ed0e03f72b466542b7e40422a83016569d808cf1ec5c04ee1e729b96492140ff356ca9a95 +doccontainersize 366952 +doccontainerchecksum 8131787a0f84aa0b54072f1a20f0c397b5e48c0168a4df993b9ee542e2444db40b4a1cb2c4da7263c492db511a74f03d858f47b287f9db803d997553f88885ed +docfiles size=92 + RELOC/doc/latex/huawei/README.md details="Readme" + RELOC/doc/latex/huawei/huawei.pdf details="Package documentation" + RELOC/doc/latex/huawei/huawei.tex +runfiles size=4 + RELOC/tex/latex/huawei/huawei.cls +catalogue-contact-bugs http://github.com/yegor256/huawei.cls/issues +catalogue-contact-home http://github.com/yegor256/huawei.cls +catalogue-contact-repository http://github.com/yegor256/huawei.cls +catalogue-ctan /macros/latex/contrib/huawei +catalogue-license mit +catalogue-topics class +catalogue-version 0.1.0 + +name hulipsum +category Package +revision 56848 +shortdesc Hungarian dummy text (Lorum ipse) +relocated 1 +longdesc Lorem ipsum is an improper Latin filler dummy text, cf. the +longdesc lipsum package. It is commonly used for demonstrating the +longdesc textual elements of a document template. Lorum ipse is a +longdesc Hungarian variation of Lorem ipsum. (Lorum is a Hungarian card +longdesc game, and ipse is a Hungarian slang word meaning bloke.) With +longdesc this package you can typeset 150 paragraphs of Lorum ipse. All +longdesc paragraphs are taken with permission from +longdesc http://www.lorumipse.hu. Thanks to Lorum Ipse Lab (Viktor Nagy +longdesc and David Takacs) for their work. +containersize 55344 +containerchecksum 32e981937f3077fb1310205f17bd10c93ae20c98e098f766b0a90218d81c7708071aa4ca605bfc55da1614116cbd8299f9cf1853426dae04a99669839b2d5c83 +doccontainersize 146568 +doccontainerchecksum 862a91b902cc8bb0d71efe3933bd0a1b0f3aba1023586595d57cd45e15a0b961cc3c56a59315eee02337f89d35582497dd6894bf3ead060d2863823765211e1f +docfiles size=37 + RELOC/doc/latex/hulipsum/README details="Readme" + RELOC/doc/latex/hulipsum/hulipsum.pdf details="Package documentation" +srccontainersize 56600 +srccontainerchecksum 6de61158c97297d4c76691f6aa2686d8ff88317de0dcc951a23e6aa93c63a4fecfdcabb74629e2e12ed7878a8a74987834f36faeae3c5fd661bacf99aa7f7962 +srcfiles size=44 + RELOC/source/latex/hulipsum/hulipsum.dtx + RELOC/source/latex/hulipsum/hulipsum.ins +runfiles size=42 + RELOC/tex/latex/hulipsum/hulipsum.sty +catalogue-ctan /macros/latex/contrib/hulipsum +catalogue-license lppl1.3 +catalogue-topics dummy-gen macro-supp hungarian +catalogue-version 1.1 + +name hustthesis +category Package +revision 42547 +shortdesc Unofficial thesis template for Huazhong University +relocated 1 +longdesc The package provides an Unofficial Thesis Template in LaTeX for +longdesc Huazhong University of Science and Technology. +containersize 57756 +containerchecksum 508c86a6cf5e3d952dd43786f78952cc8bbe635620a913abd82b49c2cfade29875bc924d5ea89803b03008328c7297010e98f70b62b5191d9855e0cc1614d3d0 +doccontainersize 747152 +doccontainerchecksum 5c114cda4bd4264904b7fdfedd55720046403b8cd3c1bce4181dffbf319a9107ec0ad8cdd092922c8c5268aac62437d1128a45ea0cdff4121a40f02e26dc0148 +docfiles size=219 + RELOC/doc/latex/hustthesis/README.md details="Readme" + RELOC/doc/latex/hustthesis/fig-example.pdf + RELOC/doc/latex/hustthesis/hustthesis-en-example.pdf + RELOC/doc/latex/hustthesis/hustthesis-zh-example.pdf + RELOC/doc/latex/hustthesis/hustthesis.pdf details="Package documentation" + RELOC/doc/latex/hustthesis/ref-example.bib +srccontainersize 24892 +srccontainerchecksum 61b6147d4bd063995900479b894b60d929445e60855c522e46abaedfbd33f7516f90a99d5052b3241d7070d375504cd660446d6647c28284e76d0ff9ec5aaf76 +srcfiles size=29 + RELOC/source/latex/hustthesis/hustthesis.dtx + RELOC/source/latex/hustthesis/hustthesis.ins +runfiles size=54 + RELOC/bibtex/bst/hustthesis/hustthesis.bst + RELOC/tex/latex/hustthesis/hust-title.eps + RELOC/tex/latex/hustthesis/hust-title.pdf + RELOC/tex/latex/hustthesis/hustthesis.cls +catalogue-contact-repository https://github.com/hust-latex/hustthesis +catalogue-ctan /macros/latex/contrib/hustthesis +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.4 + +name hvarabic +category Package +revision 55643 +shortdesc Macros for RTL typesetting +relocated 1 +longdesc This package provides some macros for right-to-left +longdesc typesetting. It uses by default the arabic fonts Scheherazade +longdesc and ALM fixed, the only monospaced arabic font. The package +longdesc works with LuaLaTeX or XeLaTeX, but not with pdfLaTeX or latex. +containersize 1468 +containerchecksum be0e943f505edd7c8e0138ccf101a821791fc7560a6e5afd41c57236fe6fd632c0813162bd9ede8ff021cd5583a739ed7871cc6453a3bae8c0c917740bd06f48 +doccontainersize 150684 +doccontainerchecksum 1e08c4864ef4ba5f083500b55521995fbf4dbea9c53626ff36bdab438db25f612d5272a2d05b72c7c6eb3a72a946179819b4ab52c7eb79ec699ce69d112b2cc8 +docfiles size=49 + RELOC/doc/latex/hvarabic/CHANGELOG + RELOC/doc/latex/hvarabic/README.md + RELOC/doc/latex/hvarabic/hvarabic.pdf details="Package documentation" + RELOC/doc/latex/hvarabic/hvarabic.tex +runfiles size=1 + RELOC/tex/latex/hvarabic/hvarabic.sty +catalogue-ctan /macros/latex/contrib/hvarabic +catalogue-license lppl1.3c +catalogue-topics arabic bidi +catalogue-version 0.01 + +name hvfloat +category Package +revision 59069 +shortdesc Rotating caption and object of floats independently +relocated 1 +longdesc This package defines a macro to place objects (tables and +longdesc figures) and their captions in different positions with +longdesc different rotating angles within a float. All objects and +longdesc captions can be framed. The main command is \hvFloat{float +longdesc type}{floating object}{caption}{label}; a simple example is +longdesc \hvFloat{figure}{\includegraphics{rose}}{Caption}{fig:0}. +longdesc Options are provided to place captions to the right or left, +longdesc and rotated. Setting nonFloat=true results in placing the float +longdesc here. +containersize 8364 +containerchecksum c57acb1f6b5b117e5728cfcc5a009d23d24fb31e1928eb220f0d63cd5f8b8e7e83f15f8e8fdd80f3f99a83a9f3e2bb088bf99f38868b985e0d9eea99feec9226 +doccontainersize 19073660 +doccontainerchecksum e2ef456032dea2e21e94e5e21d68a51b40d4f63a57d4ee2f91d0be5742816f9e538b1a08ff3507b3e4636c64ed0f32e4eb942886bc9378967b0da53e0428adc8 +docfiles size=5870 + RELOC/doc/latex/hvfloat/CTAN.png + RELOC/doc/latex/hvfloat/Changes + RELOC/doc/latex/hvfloat/README details="Readme" + RELOC/doc/latex/hvfloat/README.exa + RELOC/doc/latex/hvfloat/after1s1c.pdf + RELOC/doc/latex/hvfloat/after1s1c.tex + RELOC/doc/latex/hvfloat/after2s2c.pdf + RELOC/doc/latex/hvfloat/after2s2c.tex + RELOC/doc/latex/hvfloat/default1s1c.pdf + RELOC/doc/latex/hvfloat/default1s1c.tex + RELOC/doc/latex/hvfloat/default1s2c.pdf + RELOC/doc/latex/hvfloat/default1s2c.tex + RELOC/doc/latex/hvfloat/default2s1c.pdf + RELOC/doc/latex/hvfloat/default2s1c.tex + RELOC/doc/latex/hvfloat/default2s2c.pdf + RELOC/doc/latex/hvfloat/default2s2c.tex + RELOC/doc/latex/hvfloat/even1s1c.pdf + RELOC/doc/latex/hvfloat/even1s1c.tex + RELOC/doc/latex/hvfloat/even1s2c.pdf + RELOC/doc/latex/hvfloat/even1s2c.tex + RELOC/doc/latex/hvfloat/even2s1c.pdf + RELOC/doc/latex/hvfloat/even2s1c.tex + RELOC/doc/latex/hvfloat/even2s2c.pdf + RELOC/doc/latex/hvfloat/even2s2c.tex + RELOC/doc/latex/hvfloat/frose.png + RELOC/doc/latex/hvfloat/fullpage1s2c.pdf + RELOC/doc/latex/hvfloat/fullpage1s2c.tex + RELOC/doc/latex/hvfloat/hvfloat.pdf details="Package documentation" + RELOC/doc/latex/hvfloat/hvfloat.tex + RELOC/doc/latex/hvfloat/inner1s2c.pdf + RELOC/doc/latex/hvfloat/inner1s2c.tex + RELOC/doc/latex/hvfloat/inner2s1c.pdf + RELOC/doc/latex/hvfloat/inner2s1c.tex + RELOC/doc/latex/hvfloat/inner2s2c.pdf + RELOC/doc/latex/hvfloat/inner2s2c.tex + RELOC/doc/latex/hvfloat/left2s2c.pdf + RELOC/doc/latex/hvfloat/left2s2c.tex + RELOC/doc/latex/hvfloat/missing.txt + RELOC/doc/latex/hvfloat/multi-after1s1c.pdf + RELOC/doc/latex/hvfloat/multi-after1s1c.tex + RELOC/doc/latex/hvfloat/multi-default1s1c.pdf + RELOC/doc/latex/hvfloat/multi-default1s1c.tex + RELOC/doc/latex/hvfloat/multi-default1s2c.pdf + RELOC/doc/latex/hvfloat/multi-default1s2c.tex + RELOC/doc/latex/hvfloat/multi-default2s1c.pdf + RELOC/doc/latex/hvfloat/multi-default2s1c.tex + RELOC/doc/latex/hvfloat/multi-default2s2c.pdf + RELOC/doc/latex/hvfloat/multi-default2s2c.tex + RELOC/doc/latex/hvfloat/multi-inner2s2c.pdf + RELOC/doc/latex/hvfloat/multi-inner2s2c.tex + RELOC/doc/latex/hvfloat/multi-outer2s2c.pdf + RELOC/doc/latex/hvfloat/multi-outer2s2c.tex + RELOC/doc/latex/hvfloat/multi-right1s1c.pdf + RELOC/doc/latex/hvfloat/multi-right1s1c.tex + RELOC/doc/latex/hvfloat/odd1s1c.pdf + RELOC/doc/latex/hvfloat/odd1s1c.tex + RELOC/doc/latex/hvfloat/odd1s2c.pdf + RELOC/doc/latex/hvfloat/odd1s2c.tex + RELOC/doc/latex/hvfloat/odd2s1c.pdf + RELOC/doc/latex/hvfloat/odd2s1c.tex + RELOC/doc/latex/hvfloat/odd2s2c.pdf + RELOC/doc/latex/hvfloat/odd2s2c.tex + RELOC/doc/latex/hvfloat/outer1s2c.pdf + RELOC/doc/latex/hvfloat/outer1s2c.tex + RELOC/doc/latex/hvfloat/outer2s1c.pdf + RELOC/doc/latex/hvfloat/outer2s1c.tex + RELOC/doc/latex/hvfloat/outer2s2c.pdf + RELOC/doc/latex/hvfloat/outer2s2c.tex + RELOC/doc/latex/hvfloat/paper-after1s1c.pdf + RELOC/doc/latex/hvfloat/paper-after1s1c.tex + RELOC/doc/latex/hvfloat/paper-default1s1c.pdf + RELOC/doc/latex/hvfloat/paper-default1s1c.tex + RELOC/doc/latex/hvfloat/paper-default1s2c.pdf + RELOC/doc/latex/hvfloat/paper-default1s2c.tex + RELOC/doc/latex/hvfloat/paper-default2s2c.pdf + RELOC/doc/latex/hvfloat/paper-default2s2c.tex + RELOC/doc/latex/hvfloat/paper-inner2s2c.pdf + RELOC/doc/latex/hvfloat/paper-inner2s2c.tex + RELOC/doc/latex/hvfloat/paper-right1s1c.pdf + RELOC/doc/latex/hvfloat/paper-right1s1c.tex + RELOC/doc/latex/hvfloat/preamble.ltx + RELOC/doc/latex/hvfloat/right1s1c.pdf + RELOC/doc/latex/hvfloat/right1s1c.tex + RELOC/doc/latex/hvfloat/right1s2c.pdf + RELOC/doc/latex/hvfloat/right1s2c.tex + RELOC/doc/latex/hvfloat/right2s1c.pdf + RELOC/doc/latex/hvfloat/right2s1c.tex + RELOC/doc/latex/hvfloat/right2s2c.pdf + RELOC/doc/latex/hvfloat/right2s2c.tex + RELOC/doc/latex/hvfloat/rose.png + RELOC/doc/latex/hvfloat/runAll.sh + RELOC/doc/latex/hvfloat/runEXA.sh + RELOC/doc/latex/hvfloat/sub-after1s1c.pdf + RELOC/doc/latex/hvfloat/sub-after1s1c.tex + RELOC/doc/latex/hvfloat/sub-after2s2c.pdf + RELOC/doc/latex/hvfloat/sub-after2s2c.tex + RELOC/doc/latex/hvfloat/sub-default1s1c.pdf + RELOC/doc/latex/hvfloat/sub-default1s1c.tex + RELOC/doc/latex/hvfloat/sub-default1s2c.pdf + RELOC/doc/latex/hvfloat/sub-default1s2c.tex + RELOC/doc/latex/hvfloat/sub-default2s2c.pdf + RELOC/doc/latex/hvfloat/sub-default2s2c.tex + RELOC/doc/latex/hvfloat/sub-right1s1c.pdf + RELOC/doc/latex/hvfloat/sub-right1s1c.tex + RELOC/doc/latex/hvfloat/sub-right1s2c.pdf + RELOC/doc/latex/hvfloat/sub-right1s2c.tex + RELOC/doc/latex/hvfloat/sub-right2s2c.pdf + RELOC/doc/latex/hvfloat/sub-right2s2c.tex +runfiles size=13 + RELOC/tex/latex/hvfloat/hvfloat-fps.sty + RELOC/tex/latex/hvfloat/hvfloat.sty +catalogue-also rotating +catalogue-ctan /macros/latex/contrib/hvfloat +catalogue-license lppl +catalogue-topics float box-manip +catalogue-version 2.21 + +name hvindex +category Package +revision 46051 +shortdesc Support for indexing +relocated 1 +longdesc The package simplifies the indexing of words using the \index +longdesc command of makeidx. With the package, to index a word in a +longdesc text, you only have to type it once; the package makes sure it +longdesc is both typeset and indexed. +containersize 1672 +containerchecksum 12e47531ca8dcea2f195d86b5721f2a62d2590de5a0b464e5e6de5484ee34803eac14f2474e4a00938f6d5e5b307ed3183ea3aa0a4f0d5874877356de6e8c83d +doccontainersize 76336 +doccontainerchecksum 2a10c26537e550e3d51330c704711c2c43b872f90db15ee709dcfe603a5fc64102a8b466c5d5b7ab4706d5e96e91b11559305ac607477776f34da97590151368 +docfiles size=23 + RELOC/doc/latex/hvindex/Changes + RELOC/doc/latex/hvindex/README details="Readme" + RELOC/doc/latex/hvindex/hvindex-doc.pdf details="Package documentation" + RELOC/doc/latex/hvindex/hvindex-doc.tex +runfiles size=1 + RELOC/tex/latex/hvindex/hvindex.sty +catalogue-ctan /macros/latex/contrib/hvindex +catalogue-license lppl +catalogue-topics index +catalogue-version 0.04 + +name hvqrurl +category Package +revision 52993 +shortdesc Insert a QR code in the margin +relocated 1 +longdesc This package allows to draw an URL as a QR code into the margin +longdesc of a one- or twosided document. The following packages are +longdesc loaded by default: qrcode, marginnote, url, xcolor and xkeyval. +containersize 1240 +containerchecksum 3f52fae550f92e379b76bc91b6a4b8fc25cb9ad6bc19c744c6f9ef0948d6590c1289f267681339fc7f596a7c328adaf45eb7c94be45e5f327bd77db5e366e315 +doccontainersize 96644 +doccontainerchecksum 2f9c4772b34ebb6096da22ffb10b41eef091be66513d1dbb20c4f224c2e471493fa30e63432e19e47b03ca7b248ae178a1a729517ed3108ef406cb30abb6cef8 +docfiles size=28 + RELOC/doc/latex/hvqrurl/Changes + RELOC/doc/latex/hvqrurl/README details="Readme" + RELOC/doc/latex/hvqrurl/hvqrurl.pdf details="Package documentation" + RELOC/doc/latex/hvqrurl/hvqrurl.tex +runfiles size=1 + RELOC/tex/latex/hvqrurl/hvqrurl.sty +catalogue-ctan /macros/latex/contrib/hvqrurl +catalogue-license lppl1.3 +catalogue-topics qrcode +catalogue-version 0.01a + +name hycolor +category Package +revision 53584 +shortdesc Implements colour for packages hyperref and bookmark +relocated 1 +longdesc This package provides the code for the color option that is +longdesc used by packages hyperref and bookmark. It is not intended as +longdesc package for the user. +containersize 4044 +containerchecksum 5269044c5b462f13c78e80d28f7237f2d6e353da98db50267a5c4f01b22d565b0300c689470f6eb1ef9af7b66c1068c1d40d7a30ae01f30e7b3649189a7e7fbd +doccontainersize 375200 +doccontainerchecksum 79e4c83b952182ea89b2ae7a1abdafd771359baadd34fce8d573d7449b24908a5bbf515d16d73fd088e7add82c143a458b2c196c125e5b492033cb36da63eb6d +docfiles size=94 + RELOC/doc/latex/hycolor/README.md + RELOC/doc/latex/hycolor/hycolor.pdf details="Package documentation" language="en" +srccontainersize 9676 +srccontainerchecksum 587ca9470aaa935119d142a970931d89444d2d64ec311ba74a697fa4cd982be999e7e62ee9924dd6028f2b9411657d6b1cf4b6cb9887d08cdb0b969e8a334fd7 +srcfiles size=12 + RELOC/source/latex/hycolor/hycolor.dtx +runfiles size=7 + RELOC/tex/latex/hycolor/hycolor.sty + RELOC/tex/latex/hycolor/xcolor-patch.sty +catalogue-contact-bugs https://github.com/ho-tex/hycolor/issues +catalogue-contact-repository https://github.com/ho-tex/hycolor +catalogue-ctan /macros/latex/contrib/hycolor +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 1.10 + +name hypdestopt +category Package +revision 56253 +shortdesc Hyperref destination optimizer +relocated 1 +longdesc This package supports hyperref's pdfTeX driver. It removes +longdesc unnecessary destinations and shortens the destination names or +longdesc uses numbered destinations to get smaller PDF files. +containersize 2772 +containerchecksum 784fbff599b60abebd3ae794376a65b460c0ac4aa189319e3f245c1feefa5bb501acf75ed345bb6099e301070d0c1e1eaca62129c4e82fae5611526b6aff370d +doccontainersize 329064 +doccontainerchecksum cde846c9c4da226d27bd15881577ad3f1c3f0639c3e37fc86486af40939b0efb2d22d522646136b1b2fe2ebbfd5f2338e347b7476be7289d2a3710d43c2fc8ac +docfiles size=88 + RELOC/doc/latex/hypdestopt/README.md + RELOC/doc/latex/hypdestopt/hypdestopt.dtx + RELOC/doc/latex/hypdestopt/hypdestopt.pdf details="Package documentation" language="en" +runfiles size=3 + RELOC/tex/latex/hypdestopt/hypdestopt.sty +catalogue-contact-bugs https://github.com/ho-tex/hypdestopt/issues +catalogue-contact-repository https://github.com/ho-tex/hypdestopt +catalogue-ctan /macros/latex/contrib/hypdestopt +catalogue-license lppl1.3 +catalogue-topics hyper +catalogue-version 2.7 + +name hypdvips +category Package +revision 53197 +shortdesc Hyperref extensions for use with dvips +relocated 1 +longdesc The hypdvips package fixes some problems when using hyperref +longdesc with dvips. It also adds support for breaking links, file +longdesc attachments, embedded documents and different types of +longdesc GoTo-links. The cooperation of hyperref with cleveref is +longdesc improved, which in addition allows an enhanced back-referencing +longdesc system. +containersize 24028 +containerchecksum 515089c437413d6d21c8d2987b8917aca7c046e42c0dc9212b39be1c9119bcc867f70c37087f9f3709db8c9f824ffe16d1b261f34d06d66e12857db9854892f7 +doccontainersize 471212 +doccontainerchecksum ef485ca27145ffc614c78547f68d574a0b27cd1a7cd5abd5752681e20ad6612e280f34f85c3e1c753bc6cfea976c9801da1768bda1dcea377c19b138ec9f2777 +docfiles size=347 + RELOC/doc/latex/hypdvips/README details="Readme" + RELOC/doc/latex/hypdvips/hypdvips.pdf details="Package documentation" + RELOC/doc/latex/hypdvips/images/example1.eps + RELOC/doc/latex/hypdvips/images/example2.eps + RELOC/doc/latex/hypdvips/images/example3.eps + RELOC/doc/latex/hypdvips/images/example4.eps + RELOC/doc/latex/hypdvips/images/example5.eps + RELOC/doc/latex/hypdvips/images/example6.eps + RELOC/doc/latex/hypdvips/images/example7.eps + RELOC/doc/latex/hypdvips/images/graph.eps + RELOC/doc/latex/hypdvips/images/icon_draft.eps + RELOC/doc/latex/hypdvips/images/ids.eps + RELOC/doc/latex/hypdvips/images/logfile.eps + RELOC/doc/latex/hypdvips/images/openmsg_six.eps + RELOC/doc/latex/hypdvips/images/openmsg_sixinbrowser.eps + RELOC/doc/latex/hypdvips/images/paperclip.eps + RELOC/doc/latex/hypdvips/images/pushpin.eps + RELOC/doc/latex/hypdvips/images/tag.eps + RELOC/doc/latex/hypdvips/manifest.txt +runfiles size=29 + RELOC/tex/latex/hypdvips/hypdvips.sty +catalogue-also breakurl +catalogue-ctan /macros/latex/contrib/hypdvips +catalogue-license lppl1.3 +catalogue-topics hyper +catalogue-version 3.03 + +name hyper +category Package +revision 17357 +shortdesc Hypertext cross referencing +relocated 1 +longdesc Redefines LaTeX cross-referencing commands to insert \special +longdesc commands for HyperTeX dvi viewers, such as recent versions of +longdesc xdvi. The package is now largely superseded by hyperref. +containersize 15680 +containerchecksum 6e5bbad0a682440e28be67fc893a970de315671e1f4987bebff4a163d9c38bb33d8de9557765f1d8c74386556c59e332ef5855a3f1fe36d08eddcbd2a77179df +doccontainersize 278528 +doccontainerchecksum 41fafe8bcaf651994c45abd0040e2123caf8e33fd2d06fafd310d978c10ae5c705f7dd64d9b4740bacee51f11fe52741ed64f83d6b236d298cb6c932fd3ba06e +docfiles size=86 + RELOC/doc/latex/hyper/README details="Readme" + RELOC/doc/latex/hyper/TODO + RELOC/doc/latex/hyper/contrib/README details="Readme" + RELOC/doc/latex/hyper/contrib/harvard-to.hyp + RELOC/doc/latex/hyper/defpattern.sty + RELOC/doc/latex/hyper/hyper.pdf details="Package documentation" + RELOC/doc/latex/hyper/scontrib/README details="Readme" + RELOC/doc/latex/hyper/scontrib/harvard.hyp +srccontainersize 32960 +srccontainerchecksum 50552c5d6650973719d892d2696ee4885f8fa78d9e9c62e3fabd8ac42f35610c025c508aaa250f52c5c7676cb5e0e6aa4b75efdd19d3c9e1f3b3ac6981ab1342 +srcfiles size=43 + RELOC/source/latex/hyper/Makefile-MSDos + RELOC/source/latex/hyper/Makefile-Unix + RELOC/source/latex/hyper/backcite.dtx + RELOC/source/latex/hyper/dvi2pdf.pl + RELOC/source/latex/hyper/hyper.dtx + RELOC/source/latex/hyper/hyper.ins +runfiles size=49 + RELOC/tex/latex/hyper/amsart.hyp + RELOC/tex/latex/hyper/amsbook.hyp + RELOC/tex/latex/hyper/amsdtx.hyp + RELOC/tex/latex/hyper/amsldoc.hyp + RELOC/tex/latex/hyper/amsmath.hyp + RELOC/tex/latex/hyper/amsproc.hyp + RELOC/tex/latex/hyper/amstex.hyp + RELOC/tex/latex/hyper/amsthm.hyp + RELOC/tex/latex/hyper/article.hyp + RELOC/tex/latex/hyper/book.hyp + RELOC/tex/latex/hyper/cweb.hyp + RELOC/tex/latex/hyper/doc.hyp + RELOC/tex/latex/hyper/fancyheadings.hyp + RELOC/tex/latex/hyper/ftnright.hyp + RELOC/tex/latex/hyper/hxt-bc.sty + RELOC/tex/latex/hyper/hyper.sty + RELOC/tex/latex/hyper/leqno.hyp + RELOC/tex/latex/hyper/letter.hyp + RELOC/tex/latex/hyper/longtable.hyp + RELOC/tex/latex/hyper/ltnews.hyp + RELOC/tex/latex/hyper/ltxdoc.hyp + RELOC/tex/latex/hyper/ltxguide.hyp + RELOC/tex/latex/hyper/natbib.hyp + RELOC/tex/latex/hyper/proc.hyp + RELOC/tex/latex/hyper/report.hyp + RELOC/tex/latex/hyper/slides.hyp + RELOC/tex/latex/hyper/subeqnarray.hyp + RELOC/tex/latex/hyper/theorem.hyp + RELOC/tex/latex/hyper/upref.hyp + RELOC/tex/latex/hyper/xr.hyp +catalogue-ctan /macros/latex/contrib/hyper +catalogue-license lppl +catalogue-topics hyper +catalogue-version 4.2d + +name hyperbar +category Package +revision 48147 +shortdesc Add interactive Barcode fields to PDF forms +relocated 1 +longdesc The package extends the hyperref functionality for creating +longdesc interactive forms to allow adding Barcode form fields supported +longdesc by some modern PDF readers. Currently, only pdfTeX is +longdesc supported. +containersize 2444 +containerchecksum 80077002a3bdc99339749e2f76687a0f8597a786fd3ca3f5207ec44dc2037dbec1e696ab58d77ee6b067d6e958357cb8f0c9805621c3feeb40dde004851311b3 +doccontainersize 442692 +doccontainerchecksum 0598acd8fb945605b204c5c99982db63f4fc06fc82c47f7b301ead30be0474c7dde5eb4f78f3aa698160cd068d38aa2aabe3a1fae3c49cc32194e7cd796839c2 +docfiles size=111 + RELOC/doc/latex/hyperbar/README.md details="Readme" + RELOC/doc/latex/hyperbar/example.pdf + RELOC/doc/latex/hyperbar/example.tex + RELOC/doc/latex/hyperbar/hyperbar.pdf details="Package documentation" +srccontainersize 3884 +srccontainerchecksum 99555f8a939783db613ceaf509fbf2d95352ce8e774e750a9d552717eb538a64663a905a063b6b93aa83384ce322079656c61eeccc9678bdee47b2c56e52220b +srcfiles size=3 + RELOC/source/latex/hyperbar/hyperbar.dtx +runfiles size=2 + RELOC/tex/latex/hyperbar/hyperbar.sty +catalogue-also hyperref +catalogue-ctan /macros/latex/contrib/hyperbar +catalogue-license lppl1.3c +catalogue-topics hyper pdf-feat pdf-forms +catalogue-version 0.1 + +name hypernat +category Package +revision 17358 +shortdesc Allow hyperref and natbib to work together +relocated 1 +longdesc Allows hyperref package and the natbib package with options +longdesc 'numbers' and 'sort&compress' to work together. This means that +longdesc multiple sequential citations (e.g [3,2,1]) will be compressed +longdesc to [1-3], where the '1' and the '3' are (color-)linked to the +longdesc bibliography. +containersize 1916 +containerchecksum 0a803b9e7d23d364122869a89a6f181132f00b54d39f677a9d9471c336c933ba0e743fa4100636a6d3e929714a8896ce964e7614800c675ab9df7cce7e6d732c +doccontainersize 186676 +doccontainerchecksum 04a3f646e1595404513149f0ba56a36f0cc21a29f3ab455f38c4a7c3f5a282199208ac3aad329f38aa9fd5086762d326d85fa5052dba125d944969bfc0446489 +docfiles size=48 + RELOC/doc/latex/hypernat/hypernat.pdf details="Package documentation" + RELOC/doc/latex/hypernat/hypernat.tex +runfiles size=2 + RELOC/tex/latex/hypernat/hypernat.sty +catalogue-ctan /macros/latex/contrib/hypernat +catalogue-license gpl +catalogue-topics hyper cite-supp +catalogue-version 1.0b + +name hyperref +category Package +revision 58024 +shortdesc Extensive support for hypertext in LaTeX +relocated 1 +longdesc The hyperref package is used to handle cross-referencing +longdesc commands in LaTeX to produce hypertext links in the document. +longdesc The package provides backends for the \special set defined for +longdesc HyperTeX DVI processors; for embedded pdfmark commands for +longdesc processing by Acrobat Distiller (dvips and Y&Y's dvipsone); for +longdesc Y&Y's dviwindo; for PDF control within pdfTeX and dvipdfm; for +longdesc TeX4ht; and for VTeX's pdf and HTML backends. The package is +longdesc distributed with the backref and nameref packages, which make +longdesc use of the facilities of hyperref. The package depends on the +longdesc author's kvoptions, ltxcmds and refcount packages. +depend atbegshi +depend auxhook +depend bitset +depend etexcmds +depend gettitlestring +depend hycolor +depend intcalc +depend kvdefinekeys +depend kvsetkeys +depend letltxmacro +depend ltxcmds +depend pdfescape +depend refcount +depend rerunfilecheck +depend stringenc +depend url +depend zapfding +containersize 91200 +containerchecksum 00c82f1b64272ee6fd3728e29edf8e399a08eb3ffb9fb4fb011f4d0caa38970a351c132fd7096954a32ce9c730d798ba606f59f0ad6bf1754e43462067dd6c49 +doccontainersize 3287788 +doccontainerchecksum 9005eb33d3f8b90199131eb2104fd961fd7d248c17c67af73162a0b90f0b90de1e5f5c79ffce59564f7d19e835765c59b385fb0e9e19ef4935f1de49655b03dc +docfiles size=1046 + RELOC/doc/latex/hyperref/ChangeLog.txt + RELOC/doc/latex/hyperref/README.md details="Readme" + RELOC/doc/latex/hyperref/backref.pdf + RELOC/doc/latex/hyperref/hyperref-doc.css + RELOC/doc/latex/hyperref/hyperref-doc.html details="Manual, HTML version" + RELOC/doc/latex/hyperref/hyperref-doc.pdf details="Manual, PDF version" language="en" + RELOC/doc/latex/hyperref/hyperref-doc2.html + RELOC/doc/latex/hyperref/hyperref-doc3.html + RELOC/doc/latex/hyperref/hyperref-doc4.html + RELOC/doc/latex/hyperref/hyperref-doc5.html + RELOC/doc/latex/hyperref/hyperref-doc6.html + RELOC/doc/latex/hyperref/hyperref-doc7.html + RELOC/doc/latex/hyperref/hyperref.pdf + RELOC/doc/latex/hyperref/manifest.txt + RELOC/doc/latex/hyperref/nameref.pdf + RELOC/doc/latex/hyperref/paper.pdf details="Paper on tagging and navigation" language="en" + RELOC/doc/latex/hyperref/slides.pdf +srccontainersize 446744 +srccontainerchecksum be6c8585a89c5c17bc38704251c9800073784e0fdfce6441a14ab804e9de0b23cebfcd7ca94f366cdc12e37b20f571f68b309df483691ebe3e065af4a7876f68 +srcfiles size=346 + RELOC/source/latex/hyperref/backref.dtx + RELOC/source/latex/hyperref/bmhydoc.sty + RELOC/source/latex/hyperref/doc/hyperref-doc.tex + RELOC/source/latex/hyperref/doc/paperslides99.zip + RELOC/source/latex/hyperref/hluatex.dtx + RELOC/source/latex/hyperref/hyperref.dtx + RELOC/source/latex/hyperref/hyperref.ins + RELOC/source/latex/hyperref/nameref.dtx +runfiles size=208 + RELOC/tex/latex/hyperref/backref.sty + RELOC/tex/latex/hyperref/hdvipdfm.def + RELOC/tex/latex/hyperref/hdvips.def + RELOC/tex/latex/hyperref/hdvipson.def + RELOC/tex/latex/hyperref/hdviwind.def + RELOC/tex/latex/hyperref/hluatex.def + RELOC/tex/latex/hyperref/hpdftex.def + RELOC/tex/latex/hyperref/htex4ht.cfg + RELOC/tex/latex/hyperref/htex4ht.def + RELOC/tex/latex/hyperref/htexture.def + RELOC/tex/latex/hyperref/hvtex.def + RELOC/tex/latex/hyperref/hvtexhtm.def + RELOC/tex/latex/hyperref/hvtexmrk.def + RELOC/tex/latex/hyperref/hxetex.def + RELOC/tex/latex/hyperref/hyperref-langpatches.def + RELOC/tex/latex/hyperref/hyperref.sty + RELOC/tex/latex/hyperref/hypertex.def + RELOC/tex/latex/hyperref/minitoc-hyper.sty + RELOC/tex/latex/hyperref/nameref.sty + RELOC/tex/latex/hyperref/nohyperref.sty + RELOC/tex/latex/hyperref/ntheorem-hyper.sty + RELOC/tex/latex/hyperref/pd1enc.def + RELOC/tex/latex/hyperref/pdfmark.def + RELOC/tex/latex/hyperref/psdextra.def + RELOC/tex/latex/hyperref/puarenc.def + RELOC/tex/latex/hyperref/puenc-extra.def + RELOC/tex/latex/hyperref/puenc-greekbasic.def + RELOC/tex/latex/hyperref/puenc.def + RELOC/tex/latex/hyperref/puvnenc.def + RELOC/tex/latex/hyperref/xr-hyper.sty +catalogue-contact-bugs https://github.com/latex3/hyperref/issues +catalogue-contact-home https://github.com/latex3/hyperref +catalogue-ctan /macros/latex/contrib/hyperref +catalogue-license lppl1.3 +catalogue-topics hyper pdf-feat adobe-distiller form-fillin +catalogue-version 7.00k + +name hyperxmp +category Package +revision 57004 +shortdesc Embed XMP metadata within a LaTeX document +longdesc XMP (eXtensible Metadata Platform) is a mechanism proposed by +longdesc Adobe for embedding document metadata within the document +longdesc itself. The metadata is designed to be easy to extract, even by +longdesc programs that are oblivious to the document's file format. Most +longdesc of Adobe's applications store XMP metadata when saving files. +longdesc Now, with the hyperxmp package, it is trivial for LaTeX +longdesc document authors to store XMP metadata in their documents as +longdesc well. The package integrates seamlessly with hyperref and +longdesc requires virtually no modifications to documents that already +longdesc exploit hyperref's mechanisms for specifying PDF metadata. The +longdesc current version of hyperxmp can embed the following metadata as +longdesc XMP: title, authors, primary author's title or position, +longdesc metadata writer, subject/summary, keywords, copyright, license +longdesc URL, document base URL, document identifier and instance +longdesc identifier, language, source file name, PDF generating tool, +longdesc PDF version, and contact telephone number/postal address/email +longdesc address/URL. Hyperxmp currently embeds XMP only within PDF +longdesc documents; it is compatible with pdfLaTeX, XeLaTeX, +longdesc LaTeX+dvipdfm, and LaTeX+dvips+ps2pdf. +depend hyperxmp.ARCH +containersize 15008 +containerchecksum 559312539407e1ec8eca1e476d015baa88631b8750249c724a9a99a2bb0644680ddc7b4d9c1aa8cd74dd9ff366b2e1821a01bd6d6eef54a14a72d8877f86b7d7 +doccontainersize 1163204 +doccontainerchecksum e63bb28383038ca1ac45bf0af92a95e50383b1a9dc3714b3e077a37d92022c4304dd00ab313979c7b7763f2ec6ba8946f6ba71fb09fc0870d02a0ac89be25c53 +docfiles size=388 + texmf-dist/doc/latex/hyperxmp/README details="Readme" + texmf-dist/doc/latex/hyperxmp/hyperxmp.pdf details="Package documentation" + texmf-dist/doc/man/man1/hyperxmp-add-bytecount.1 + texmf-dist/doc/man/man1/hyperxmp-add-bytecount.man1.pdf +srccontainersize 156872 +srccontainerchecksum 8c7aab81881bf79fba919bb752a5d9f5c9653e89755d1c4bff5c076dc24339dc1327de57fb35393c7d80ee0ad46b4c787c81d73cc15d8d3111a580059bc2e361 +srcfiles size=111 + texmf-dist/source/latex/hyperxmp/einstein-xmp.tex + texmf-dist/source/latex/hyperxmp/einstein1.pdf + texmf-dist/source/latex/hyperxmp/einstein2.pdf + texmf-dist/source/latex/hyperxmp/gglo-hyxmp.ist + texmf-dist/source/latex/hyperxmp/gind-hyxmp.ist + texmf-dist/source/latex/hyperxmp/hyperxmp-stds.tex + texmf-dist/source/latex/hyperxmp/hyperxmp.dtx + texmf-dist/source/latex/hyperxmp/hyperxmp.ins +runfiles size=17 + texmf-dist/scripts/hyperxmp/hyperxmp-add-bytecount.pl + texmf-dist/tex/latex/hyperxmp/hyperxmp.sty +catalogue-ctan /macros/latex/contrib/hyperxmp +catalogue-license lppl1.3c +catalogue-topics pdf-feat +catalogue-version 5.9 + +name hyperxmp.aarch64-linux +category Package +revision 56984 +shortdesc aarch64-linux files of hyperxmp +containersize 356 +containerchecksum f2a246ef685b1066cb3a0fc871342375c21b4c5e2ac1b09c6f50cd788e507cb63075bf6b7ebc34d195ece86ae33a8a0cbd6fa4c77d931c3b35fd94f8ba44fa53 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/hyperxmp-add-bytecount + +name hyperxmp.amd64-freebsd +category Package +revision 56984 +shortdesc amd64-freebsd files of hyperxmp +containersize 356 +containerchecksum 8501031c9395b6b59a6c54164e35b25ba927825d8db0c39f2613723ede2dca4141b6ad0863389e835de4a2b75d460d0569d2b8c0ee9ec44991bb06882f36ab89 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/hyperxmp-add-bytecount + +name hyperxmp.amd64-netbsd +category Package +revision 56984 +shortdesc amd64-netbsd files of hyperxmp +containersize 356 +containerchecksum 0b9d056733b499c4c293f4ff2aea63d2895a5001db068c084ab625aac312cadf1471754e11920c0e9de7362c4ad0f1536d4f8a32597f8b647890603bb7e56368 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/hyperxmp-add-bytecount + +name hyperxmp.armhf-linux +category Package +revision 56984 +shortdesc armhf-linux files of hyperxmp +containersize 356 +containerchecksum 82914de22b25572cc29fa5f37cfc5903078162c34ede50dd7fc2e76f32381c03889e11a139f32cfe5a6972007017ee4e4c6808f997b5384cf38449eceaf68eba +binfiles arch=armhf-linux size=1 + bin/armhf-linux/hyperxmp-add-bytecount + +name hyperxmp.i386-cygwin +category Package +revision 56984 +shortdesc i386-cygwin files of hyperxmp +containersize 352 +containerchecksum 7a778fbfcd149fc318f52b4916f237ac92ce424cac1316488df3d6d1548d0e87ec22554868847aeaa9440d0656731b60e56adde4678021244612d0f816f2fafc +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/hyperxmp-add-bytecount + +name hyperxmp.i386-freebsd +category Package +revision 56984 +shortdesc i386-freebsd files of hyperxmp +containersize 356 +containerchecksum bef83621ccaf1c3350958ed2a70abdc190d692b85bcdb00f36831c52d78f578e75522f79e62ef00b4d1cd43ef23806162d5fe790ad31f5f5e0a6e24bd2dd7374 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/hyperxmp-add-bytecount + +name hyperxmp.i386-linux +category Package +revision 56984 +shortdesc i386-linux files of hyperxmp +containersize 352 +containerchecksum bb63f48e21e50d9b393a57ebc734bbc6a69fcebff908544e7326821c32be8ab19ab230ba0774870780e8b100a8c2f1318fddfe5e770976b6fb12f18eac85844c +binfiles arch=i386-linux size=1 + bin/i386-linux/hyperxmp-add-bytecount + +name hyperxmp.i386-netbsd +category Package +revision 56984 +shortdesc i386-netbsd files of hyperxmp +containersize 356 +containerchecksum e872e4d6e961d03c76e4936502e134609f656ed8825afe68717daa7b08b8d58a7447ad02e3630d5a7e2a10246cb09c7ab41e0759e11e38d183927be384f91cba +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/hyperxmp-add-bytecount + +name hyperxmp.i386-solaris +category Package +revision 56984 +shortdesc i386-solaris files of hyperxmp +containersize 356 +containerchecksum cfadade0595175b3babcc9a6784847bacfd8f13035fc8a291ec5c7e87a9ffcebeffeaec6ba4a4f434da42f73a1e6649022c5993e11373e0b42928ecbcc2ea78d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/hyperxmp-add-bytecount + +name hyperxmp.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of hyperxmp +containersize 356 +containerchecksum 87ceec5c0f87f5af138c8393ed2dbc07db0ee0317540ca5e826ecaa45360b327dff86ef05c2f6b9dfdb4c3ad1264062a229e9d16a83998a4bf5909ab3f90b568 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/hyperxmp-add-bytecount + +name hyperxmp.win32 +category Package +revision 56984 +shortdesc win32 files of hyperxmp +containersize 692 +containerchecksum 68e8e7357c79c12b04fd0854eed3a1038b1f6fdb6d1a62338c13b3a56f6ac38467b618a6f7bb01d101784e65eae90399bd36efa74a2329e630e71f535c75aa65 +binfiles arch=win32 size=1 + bin/win32/hyperxmp-add-bytecount.exe + +name hyperxmp.x86_64-cygwin +category Package +revision 56984 +shortdesc x86_64-cygwin files of hyperxmp +containersize 356 +containerchecksum 8d8b51cbb45c34dd3c20ac1c10001798b37640476f62dec20bffa11c065c09c4714e5272317fad24c3f036abfba88eb8738cea4a1a8ec490c08adf47f9479f97 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/hyperxmp-add-bytecount + +name hyperxmp.x86_64-darwinlegacy +category Package +revision 56984 +shortdesc x86_64-darwinlegacy files of hyperxmp +containersize 364 +containerchecksum dba978cc5ffcb499e5348dcbae5343f2e816bca3ae9de63b8cdd4055618320727556307423a8a0c14f60a0743ba73bfc49181d788f9191d636940b7b783f01c1 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/hyperxmp-add-bytecount + +name hyperxmp.x86_64-linux +category Package +revision 56984 +shortdesc x86_64-linux files of hyperxmp +containersize 356 +containerchecksum 7eba3567c55235b7108a10f47b63f0150b70e52505491e4dd04caf1e906baa46435c3bf711127fea73a4f212fe586a460fb92c76b22c2fc673ae770b60dcdcf2 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/hyperxmp-add-bytecount + +name hyperxmp.x86_64-linuxmusl +category Package +revision 56984 +shortdesc x86_64-linuxmusl files of hyperxmp +containersize 360 +containerchecksum 4f00ba444df3a11587f26386282aa90c8135d52052358f94d20953e23ea80f3bf5a97fdb4def10e8ef67b24b3393628739d564de81df20bb23131098102ce9d4 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/hyperxmp-add-bytecount + +name hyperxmp.x86_64-solaris +category Package +revision 56984 +shortdesc x86_64-solaris files of hyperxmp +containersize 356 +containerchecksum 866d9eb2c5b83f93e683ae86d336f5322b79cb8f91ff2de7273014eb7a305a8c107dcf1a9dc0558f01f6866f9bb42b18cbd7c6c69a120c2f19e91374dddbcaa5 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/hyperxmp-add-bytecount + +name hyph-utf8 +category Package +revision 58619 +shortdesc Hyphenation patterns expressed in UTF-8 +relocated 1 +longdesc Modern native UTF-8 engines such as XeTeX and LuaTeX need +longdesc hyphenation patterns in UTF-8 format, whereas older systems +longdesc require hyphenation patterns in the 8-bit encoding of the font +longdesc in use (such encodings are codified in the LaTeX scheme with +longdesc names like OT1, T2A, TS1, OML, LY1, etc). The present package +longdesc offers a collection of conversions of existing patterns to +longdesc UTF-8 format, together with converters for use with 8-bit fonts +longdesc in older systems. Since hyphenation patterns for Knuthian-style +longdesc TeX systems are only read at iniTeX time, it is hoped that the +longdesc UTF-8 patterns, with their converters, will completely supplant +longdesc the older patterns. +containersize 15996 +containerchecksum dc14e4a6aa57764113b9945c76f3f485f370e6c399196916bea2e0451f8238c577100c0db89e742d1233a16b7f51f56674ef1f458dd04f49e207f62744e8ea47 +doccontainersize 267700 +doccontainerchecksum 09e4a5ae3b0541b5e6b721f164592c364ca00b0c96986085632461b9201a81fa3f0fe375156a91fdbcdd1f4d5f207d8e7c16d35b6fbe2cd196b4c7025a933d6f +docfiles size=84 + RELOC/doc/generic/hyph-utf8/CHANGES + RELOC/doc/generic/hyph-utf8/HISTORY + RELOC/doc/generic/hyph-utf8/hyph-utf8.pdf details="Main documentation for hyph-utf8" language="en" + RELOC/doc/generic/hyph-utf8/hyph-utf8.tex + RELOC/doc/generic/hyph-utf8/hyphenation-distribution.pdf + RELOC/doc/generic/hyph-utf8/hyphenation-distribution.tex + RELOC/doc/generic/hyph-utf8/img/miktex-languages.png + RELOC/doc/generic/hyph-utf8/img/texlive-collection.png + RELOC/doc/luatex/hyph-utf8/README + RELOC/doc/luatex/hyph-utf8/luatex-hyphen.pdf +srccontainersize 34840 +srccontainerchecksum 3dcf4d89d34db765459694329be8cd3182f0021ebbead0ffaab9ae3810c8392b69bab6d0baf433c209becd7eb5ec55b8fdc4c3f145d7792b0c7456129c997430 +srcfiles size=59 + RELOC/source/generic/hyph-utf8/README + RELOC/source/generic/hyph-utf8/contributed/make-exhyph.pl + RELOC/source/generic/hyph-utf8/data/encodings/ec.dat + RELOC/source/generic/hyph-utf8/data/encodings/il2.dat + RELOC/source/generic/hyph-utf8/data/encodings/il3.dat + RELOC/source/generic/hyph-utf8/data/encodings/l7x.dat + RELOC/source/generic/hyph-utf8/data/encodings/lmc.dat + RELOC/source/generic/hyph-utf8/data/encodings/lth.dat + RELOC/source/generic/hyph-utf8/data/encodings/macedonian.dat + RELOC/source/generic/hyph-utf8/data/encodings/qx.dat + RELOC/source/generic/hyph-utf8/data/encodings/t2a.dat + RELOC/source/generic/hyph-utf8/data/encodings/t8m.dat + RELOC/source/generic/hyph-utf8/data/encodings/texnansi.dat + RELOC/source/generic/hyph-utf8/generate-converters.rb + RELOC/source/generic/hyph-utf8/generate-pattern-loaders.rb + RELOC/source/generic/hyph-utf8/generate-plain-patterns.rb + RELOC/source/generic/hyph-utf8/generate-ptex-patterns.rb + RELOC/source/generic/hyph-utf8/generate-tl-files.rb + RELOC/source/generic/hyph-utf8/hyph-utf8.rb + RELOC/source/generic/hyph-utf8/language-data.rb + RELOC/source/generic/hyph-utf8/languages.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/authors.yml + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/converter.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/language.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/packages.yml + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/path.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive/loader.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive/package.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive/source.rb + RELOC/source/generic/hyph-utf8/spec/spec_helper.rb + RELOC/source/generic/hyph-utf8/spec/tex/hyphen/converter_spec.rb + RELOC/source/generic/hyph-utf8/spec/tex/hyphen/language_spec.rb + RELOC/source/luatex/hyph-utf8/Makefile + RELOC/source/luatex/hyph-utf8/luatex-hyphen.dtx +runfiles size=25 + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-l7x.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-lmc.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-lth.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-qx.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-t8m.tex + RELOC/tex/luatex/hyph-utf8/etex.src + RELOC/tex/luatex/hyph-utf8/luatex-hyphen.lua +catalogue-also dehyph-exptl +catalogue-contact-bugs https://github.com/hyphenation/tex-hyphen/issues +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-license mit +catalogue-topics hyphenation + +name hyphen-afrikaans +category TLCore +revision 58609 +shortdesc Afrikaans hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Afrikaans in T1/EC and UTF-8 +longdesc encodings. OpenOffice includes older patterns created by a +longdesc different author, but the patterns packaged with TeX are +longdesc considered superior in quality. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=afrikaans lefthyphenmin=1 righthyphenmin=2 file=loadhyph-af.tex file_patterns=hyph-af.pat.txt file_exceptions=hyph-af.hyp.txt +containersize 36472 +containerchecksum 0f969847994b3b377c752c23f802e8c51b4076efc2d43ad2560a72b83cea3bf0a64d7df18a59afe4289a4547a9f23cf81b0c365a499be85a2467579941fa9700 +runfiles size=62 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-af.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-af.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-af.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-af.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.pat.txt + +name hyphen-ancientgreek +category TLCore +revision 58652 +shortdesc Ancient Greek hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Ancient Greek in LGR and UTF-8 +longdesc encodings, including support for (obsolete) Ibycus font +longdesc encoding. Patterns in UTF-8 use two code positions for each of +longdesc the vowels with acute accent (a.k.a tonos, oxia), e.g., U+03AE, +longdesc U+1F75 for eta. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=ancientgreek lefthyphenmin=1 righthyphenmin=1 file=loadhyph-grc.tex file_patterns=hyph-grc.pat.txt file_exceptions= +execute AddHyphen name=ibycus lefthyphenmin=2 righthyphenmin=2 file=ibyhyph.tex luaspecial="disabled:8-bit only" +containersize 38216 +containerchecksum 3f91560ecf78c5540fd4f5d9890f6aa7a57bcd3a41095985785505b82e40793b91a5da3a01bdc021b11c32db3dd7030a104686b34b496c9094acfb85509cd007 +runfiles size=54 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-grc.pat.txt + RELOC/tex/generic/hyphen/grahyph5.tex + RELOC/tex/generic/hyphen/ibyhyph.tex + +name hyphen-arabic +category TLCore +revision 54568 +shortdesc (No) Arabic hyphenation patterns. +relocated 1 +longdesc Prevent hyphenation in Arabic. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=arabic lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns= +containersize 368 +containerchecksum 85012062097dd4b624cb39c68b293169a25ab3c9cd15b4474c3a3ffbe4b8ab13d6856c6c70a580da45a2d210952df2d9760682da3917cfd24d17772dc2ccce7f + +name hyphen-armenian +category TLCore +revision 58652 +shortdesc Armenian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Armenian for Unicode engines. +longdesc Auto-generated from a script included in hyph-utf8. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=armenian lefthyphenmin=1 righthyphenmin=2 file=loadhyph-hy.tex file_patterns=hyph-hy.pat.txt file_exceptions= +containersize 2620 +containerchecksum 59538414bf5a4701199100fbd9d5247999a36bc28c7c6ef2a28deb9024e01605d48839f00f345c848365853ac3a9f1aab7402f44860532d7a5c099d2f27ee189 +srccontainersize 1200 +srccontainerchecksum d25e6347545e00a809db1dc8e48ef3fe67678b9ec93a1f3619d2a5a3d786d6e411c2e9f905120e3c5d01d9489c0a83035ce8025836249c88ee768bf07b8e2ca7 +srcfiles size=1 + RELOC/source/generic/hyph-utf8/languages/hy/generate_patterns_hy.rb +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hy.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hy.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hy.pat.txt + +name hyphen-base +category TLCore +revision 58630 +shortdesc core hyphenation support files +relocated 1 +longdesc Includes Knuth's original hyphen.tex, zerohyph.tex to disable +longdesc hyphenation, language.us which starts the autogenerated files +longdesc language.dat and language.def (and default versions of those), +longdesc etc. +containersize 22448 +containerchecksum 15daa4e0004bb55601db85cf796761c1feca5f4668a5894df820a31d107ebefde74fd4d3a997191d9049ecb0fa3f4678a6a0b1fb6506b17bd24546e942d85510 +runfiles size=24 + RELOC/tex/generic/config/language.dat + RELOC/tex/generic/config/language.dat.lua + RELOC/tex/generic/config/language.def + RELOC/tex/generic/config/language.us + RELOC/tex/generic/config/language.us.def + RELOC/tex/generic/config/language.us.lua + RELOC/tex/generic/hyphen/dumyhyph.tex + RELOC/tex/generic/hyphen/hyphen.tex + RELOC/tex/generic/hyphen/hypht1.tex + RELOC/tex/generic/hyphen/zerohyph.tex + +name hyphen-basque +category TLCore +revision 58652 +catalogue bahyph +shortdesc Basque hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Basque in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=basque lefthyphenmin=2 righthyphenmin=2 file=loadhyph-eu.tex file_patterns=hyph-eu.pat.txt file_exceptions= +containersize 3224 +containerchecksum b90680dc5692824d60ca603e8bdd2fcade7cc772c8c0f9538d579704fb16165db2baf0c466ccaff46d92491b4a678fa86a127c0d106dbef6d640dfd2f887663d +srccontainersize 2540 +srccontainerchecksum 75a20da77fa056c719ecc1f014bb09c67f62f1c4a3abe04b7cadf45c7a4e06e4492cb0d34a8025f19f3ee5e3330e488212885095335d4a7e97baa5b106576223 +srcfiles size=2 + RELOC/source/generic/hyph-utf8/languages/eu/generate_patterns_eu.rb +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-eu.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-eu.ec.tex + 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-license other-free +catalogue-topics basque hyphenation + +name hyphen-belarusian +category TLCore +revision 58652 +shortdesc Belarusian hyphenation patterns. +relocated 1 +longdesc Belarusian hyphenation patterns in T2A and UTF-8 encodings +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=belarusian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-be.tex file_patterns=hyph-be.pat.txt file_exceptions= +containersize 11856 +containerchecksum 19b9bd10d2357d0cb6ecc9ddb5e46b65b3c0eec1b2917a78311f255c1609bbb86595ce617d331271a72de934ae4001597f4a04d61b3810e34f3b197b21cab193 +runfiles size=30 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-be.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-be.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-be.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-be.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-be.pat.txt + +name hyphen-bulgarian +category TLCore +revision 58685 +shortdesc Bulgarian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Bulgarian in T2A and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=bulgarian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-bg.tex file_patterns=hyph-bg.pat.txt file_exceptions= +containersize 28184 +containerchecksum 9763e6ece053594b01cd9255a8a3551eb6b86ab082f6f9283664e256c55d43b9513b624774a650d83215d656334751f569496030187c1c78e2fe80f2d10f2f1f +runfiles size=69 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-bg.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-bg.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bg.pat.txt + +name hyphen-catalan +category TLCore +revision 58609 +shortdesc Catalan hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Catalan in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=catalan lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ca.tex file_patterns=hyph-ca.pat.txt file_exceptions=hyph-ca.hyp.txt +containersize 5048 +containerchecksum 37189e09ee902f2c5145f30180b51211091b07d7d04125c98f1b7c424ad27f6899424b78cd17c559509076eeeb957b4f268fb4130807e7fafb461174fed8200b +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ca.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ca.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.pat.txt + +name hyphen-chinese +category TLCore +revision 58652 +shortdesc Chinese pinyin hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for unaccented transliterated Mandarin +longdesc Chinese (pinyin) in T1/EC and UTF-8 encodings. The latter can +longdesc hyphenate pinyin with or without tone markers; the former only +longdesc without. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=pinyin lefthyphenmin=1 righthyphenmin=2 file=loadhyph-zh-latn-pinyin.tex file_patterns=hyph-zh-latn-pinyin.pat.txt file_exceptions= +containersize 3216 +containerchecksum a78b70095fcfe297e2d85a49108affd5d48451ff4740461eed46d395410a665011614c9a89dff37e9477ee3803de6ebaa68595ac39222f2968a4124355ea7fa7 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-zh-latn-pinyin.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-zh-latn-pinyin.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.pat.txt + +name hyphen-churchslavonic +category TLCore +revision 58609 +shortdesc Church Slavonic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Church Slavonic in UTF-8 encoding +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=churchslavonic lefthyphenmin=1 righthyphenmin=2 file=loadhyph-cu.tex file_patterns=hyph-cu.pat.txt file_exceptions=hyph-cu.hyp.txt +containersize 31588 +containerchecksum c44b3f5fec7b44958336dcfb1a43c5b71fd1715262278863f5fcd74d7ec0cc6f1d572b741256d791e6979f15e4b0fcda8058725e27f17e1deb6e5df5fdb007ab +runfiles size=70 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cu.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cu.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cu.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cu.pat.txt + +name hyphen-coptic +category TLCore +revision 58652 +shortdesc Coptic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Coptic in UTF-8 encoding as well as in +longdesc ASCII-based encoding for 8-bit engines. The latter can only be +longdesc used with special Coptic fonts (like CBcoptic). The patterns +longdesc are considered experimental. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=coptic lefthyphenmin=1 righthyphenmin=1 file=loadhyph-cop.tex file_patterns=hyph-cop.pat.txt file_exceptions= +containersize 6148 +containerchecksum fe36adfe900e23f2b0c3e9c3a3d96b608c49bf597222537d355d6a68e2f87f587db78a1921ab1c9a80ea175529e353524c35e99b83ef7f5515ab7c0aacd2f680 +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cop.tex + RELOC/tex/generic/hyph-utf8/patterns/tex-8bit/copthyph.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cop.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cop.pat.txt + +name hyphen-croatian +category TLCore +revision 58652 +catalogue hrhyph +shortdesc Croatian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Croatian in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=croatian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-hr.tex file_patterns=hyph-hr.pat.txt file_exceptions= +containersize 5580 +containerchecksum 8355d0aa95bb2e72bfc45015f9ae9f6a138f94441387a4daadfec5be4060878f6e69d05eab15432d99c256c1a3f68c122d5c915164fe343459d658a4543ddf42 +runfiles size=9 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hr.ec.tex + 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-license lppl1.3 +catalogue-topics hyphenation croatian + +name hyphen-czech +category TLCore +revision 58609 +shortdesc Czech hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Czech in T1/EC and UTF-8 encodings. +longdesc Original patterns 'czhyphen' are still distributed in the +longdesc 'csplain' package and loaded with ISO Latin 2 encoding (IL2). +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=czech lefthyphenmin=2 righthyphenmin=3 file=loadhyph-cs.tex file_patterns=hyph-cs.pat.txt file_exceptions=hyph-cs.hyp.txt +containersize 15756 +containerchecksum f5c8b08c2db716dfa6d36fcf337b4e18372978d04e28ff2c8ed0a0b3866f4bb3efb7b498fedbfde5052fc504b8677ae553c2dce73701e219632d8c5460d7e826 +runfiles size=21 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cs.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-cs.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cs.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.pat.txt + +name hyphen-danish +category TLCore +revision 58652 +catalogue dkhyphen +shortdesc Danish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Danish in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=danish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-da.tex file_patterns=hyph-da.pat.txt file_exceptions= +containersize 5748 +containerchecksum 954543a3fb81ff00d9c58315ba59d7a5e3430217dda6c1453bcb7ffb0516025dea4b877eb9d66c9f80ccc69d3d4895bdc6ae1b611d8394435fa647b8b806559d +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-da.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-da.ec.tex + 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-license lppl +catalogue-topics hyphenation danish + +name hyphen-dutch +category TLCore +revision 58609 +catalogue nehyph +shortdesc Dutch hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Dutch in T1/EC and UTF-8 encodings. +longdesc These patterns don't handle cases like 'menuutje' > 'menu-tje', +longdesc and don't hyphenate words that have different hyphenations +longdesc according to their meaning. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=dutch lefthyphenmin=2 righthyphenmin=2 file=loadhyph-nl.tex file_patterns=hyph-nl.pat.txt file_exceptions=hyph-nl.hyp.txt +containersize 38024 +containerchecksum 111371e47ca29069a5a9144d694858dd899b19e2b38d0c793b1e4884c69ae2d62398aacb4cd89e23246fc025e42872875bc808c1f327ac1502fac88c962e6c14 +runfiles size=66 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nl.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nl.tex + 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-license lppl +catalogue-topics hyphenation dutch +catalogue-version 1.1 + +name hyphen-english +category TLCore +revision 58609 +shortdesc English hyphenation patterns. +relocated 1 +longdesc Additional hyphenation patterns for American and British +longdesc English in ASCII encoding. The American English patterns +longdesc (usenglishmax) greatly extend the standard patterns from Knuth +longdesc to find many additional hyphenation points. British English +longdesc hyphenation is completely different from US English, so has its +longdesc own set of patterns. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=ukenglish synonyms=british,UKenglish lefthyphenmin=2 righthyphenmin=3 file=loadhyph-en-gb.tex file_patterns=hyph-en-gb.pat.txt file_exceptions=hyph-en-gb.hyp.txt +execute AddHyphen name=usenglishmax lefthyphenmin=2 righthyphenmin=3 file=loadhyph-en-us.tex file_patterns=hyph-en-us.pat.txt file_exceptions=hyph-en-us.hyp.txt +containersize 41360 +containerchecksum a305cf89138e4327844d43a7e21773e31ac97a4655e4d58ae9a46dc0df565e432330debf704c37b4ad552561357521eba0b676755544ceb9c4f21ace09d6dd2c +runfiles size=50 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-en-gb.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-en-us.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-en-gb.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.pat.txt + +name hyphen-esperanto +category TLCore +revision 58652 +shortdesc Esperanto hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Esperanto ISO Latin 3 and UTF-8 +longdesc encodings. Note that TeX distributions don't ship any suitable +longdesc fonts in Latin 3 encoding, so unless you create your own font +longdesc support or want to use MlTeX, using native Unicode engines is +longdesc highly recommended. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=esperanto lefthyphenmin=2 righthyphenmin=2 file=loadhyph-eo.tex file_patterns=hyph-eo.pat.txt file_exceptions= +containersize 10668 +containerchecksum ed2976e9fb3eec5d2f0759348b284129e43bf161db571dd21270335388b8aec57e1b8393bc9b246f8a6e9cde22f93a4cb3c1a03dcadd64fdda3d70b576789050 +runfiles size=16 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-eo.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-eo.il3.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-eo.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eo.pat.txt + +name hyphen-estonian +category TLCore +revision 58652 +shortdesc Estonian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Estonian in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=estonian lefthyphenmin=2 righthyphenmin=3 file=loadhyph-et.tex file_patterns=hyph-et.pat.txt file_exceptions= +containersize 14596 +containerchecksum 0eb91153214aaca8c3b5816f5315f9afdeb7c19521c87c79ea2b35e82217bfb23c8bb774baf810206f4413fc663e441ebe6b4962880ca0dbcda9209d2acce3b8 +runfiles size=21 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-et.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-et.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-et.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-et.pat.txt + +name hyphen-ethiopic +category TLCore +revision 58652 +shortdesc Hyphenation patterns for Ethiopic scripts. +relocated 1 +longdesc Hyphenation patterns for languages written using the Ethiopic +longdesc script for Unicode engines. They are not supposed to be +longdesc linguistically relevant in all cases and should, for proper +longdesc typography, be replaced by files tailored to individual +longdesc languages. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=ethiopic synonyms=amharic,geez lefthyphenmin=1 righthyphenmin=1 file=loadhyph-mul-ethi.tex file_patterns=hyph-mul-ethi.pat.txt file_exceptions= +containersize 4448 +containerchecksum a1532603758e7f774acba7c13ee74f0046ff187598ca86b2e93b91da31317f03fdbab5d4d7c0814978fb2ac159bd6e5a48e6e734c19758da21ad0a031844f52b +srccontainersize 2620 +srccontainerchecksum 9d6c8c1b0ce5c40d388937328461336a97fcf1fe780fa6198e029f12ef118d9d98f6eec03ea217743851f0217217d6548298df9336fcf33e6c4c196bbdb9eef0 +srcfiles size=2 + RELOC/source/generic/hyph-utf8/languages/mul-ethi/generate_patterns_mul-ethi.lua +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mul-ethi.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mul-ethi.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.pat.txt + +name hyphen-farsi +category TLCore +revision 54568 +shortdesc (No) Persian hyphenation patterns. +relocated 1 +longdesc Prevent hyphenation in Persian. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=farsi synonyms=persian lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns= +containersize 384 +containerchecksum 5b02582769a55bb07d81e748e83170c16aca1c33b0a240cf547fa9c2212f2be52223e258229c760ddc5dd730419bd9e761614cc4fb3b3ba8102841bb779af511 + +name hyphen-finnish +category TLCore +revision 58652 +catalogue fihyph +shortdesc Finnish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Finnish in T1 and UTF-8 encodings. The +longdesc older set, labelled just “fi”, tries to implement +longdesc etymological rules, while the newer ones (fi-x-school) +longdesc implements the simpler rules taught at Finnish school. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=finnish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-fi.tex file_patterns=hyph-fi.pat.txt file_exceptions= +execute AddHyphen name=schoolfinnish lefthyphenmin=1 righthyphenmin=1 file=loadhyph-fi-x-school.tex file_patterns=hyph-fi-x-school.pat.txt file_exceptions= +containersize 4664 +containerchecksum 6aa171d77952165cdcb1b667885f16dd382124ed70ed1db80a9a89553d972720d8ff5f0da1b36669e02c3030d9ff362ab77ba1fa2ba45cddfb460018f0c0191d +runfiles size=9 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fi-x-school.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fi.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fi-x-school.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fi.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fi-x-school.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi-x-school.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi.pat.txt +catalogue-ctan /language/hyphenation/fihyph +catalogue-license pd +catalogue-topics hyphenation finnish + +name hyphen-french +category TLCore +revision 58652 +shortdesc French hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for French in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=french synonyms=patois,francais lefthyphenmin=2 righthyphenmin=2 file=loadhyph-fr.tex file_patterns=hyph-fr.pat.txt file_exceptions= +containersize 11420 +containerchecksum b9d2d05311a90f4caa6c4e8aa8a2e80e9c15fc3552f03f0ac6ec70d386610612715deb6e778247248355a3a209fb2413d6d2aee12f18bc35d5a334870b612507 +runfiles size=16 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fr.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fr.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fr.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fr.pat.txt + +name hyphen-friulan +category TLCore +revision 58652 +shortdesc Friulan hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Friulan in ASCII encoding. They are +longdesc supposed to comply with the common spelling of the Friulan +longdesc (Furlan) language as fixed by the Regional Law N.15/96 dated +longdesc November 6, 1996 and its following amendments. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=friulan lefthyphenmin=2 righthyphenmin=2 file=loadhyph-fur.tex file_patterns=hyph-fur.pat.txt file_exceptions= +containersize 3792 +containerchecksum d1775a9b6e6b7fa155e44c93271e2ccb41bd1ec143ea0cf624841ad48a123db924dd134e6e60b862a808ad2058ed5b86cb34d98e5728b9dccd3997ba2f06932e +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fur.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fur.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fur.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fur.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fur.pat.txt + +name hyphen-galician +category TLCore +revision 58652 +shortdesc Galician hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Galician in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=galician lefthyphenmin=2 righthyphenmin=2 file=loadhyph-gl.tex file_patterns=hyph-gl.pat.txt file_exceptions= +containersize 10384 +containerchecksum 2d707542f80dc94ad20c0daa776df23b773a5e6ccb261e11db675e1e89f5f303a4f5cd50d97f491cc7ea8b0f3c0d3f6391707812a95d4e72cca3afa7815e566f +srccontainersize 6776 +srccontainerchecksum b9925168b1f9ae5139ffc3bd34810cc05a27475cfae31e98fd0d7618575fc994ca95d7479506024abec2c33bb20121811244d69c490df18a29d6c93fe02174c6 +srcfiles size=11 + RELOC/source/generic/hyph-utf8/languages/gl/README + RELOC/source/generic/hyph-utf8/languages/gl/glhybiox.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhyextr.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhymed.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhyquim.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhytec.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhyxeog.tex + RELOC/source/generic/hyph-utf8/languages/gl/glpatter-utf8.tex +runfiles size=19 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-gl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-gl.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-gl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gl.pat.txt + +name hyphen-georgian +category TLCore +revision 58652 +shortdesc Georgian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Georgian in T8M, T8K and UTF-8 +longdesc encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=georgian lefthyphenmin=1 righthyphenmin=2 file=loadhyph-ka.tex file_patterns=hyph-ka.pat.txt file_exceptions= +containersize 11060 +containerchecksum edaf041a2f92b0f7dbf28042c81838e8fd781cf9c3ad529c314227c94917ce4e8728ca676f8bd42e2a81bae76b11aabc1e22896e3ef9cd38ca4b718bc58fa0cb +runfiles size=24 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ka.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ka.t8m.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ka.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ka.pat.txt + +name hyphen-german +category TLCore +revision 58652 +shortdesc German hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for German in T1/EC and UTF-8 encodings, +longdesc for traditional and reformed spelling, including Swiss German. +longdesc The package includes the latest patterns from dehyph-exptl +longdesc (known to TeX under names 'german', 'ngerman' and +longdesc 'swissgerman'), however 8-bit engines still load old versions +longdesc of patterns for 'german' and 'ngerman' for +longdesc backward-compatibility reasons. Swiss German patterns are +longdesc suitable for Swiss Standard German (Hochdeutsch) not the +longdesc Alemannic dialects spoken in Switzerland (Schwyzerduetsch). +longdesc There are no known patterns for written Schwyzerduetsch. +depend dehyph +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=german lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-1901.tex file_patterns=hyph-de-1901.pat.txt file_exceptions= +execute AddHyphen name=ngerman lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-1996.tex file_patterns=hyph-de-1996.pat.txt file_exceptions= +execute AddHyphen name=swissgerman lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-ch-1901.tex file_patterns=hyph-de-ch-1901.pat.txt file_exceptions= +containersize 222536 +containerchecksum bea7d4605b1a18d3e7845ccaa06951b62178b3abbdc13dc59d3cbece3fa95fc4fba7e4d60dd253cd9fc022f804975cae5c4996fb99d3037c29971ade9984abce +runfiles size=533 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1901.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1996.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-ch-1901.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-1901.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-1996.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-ch-1901.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-1901.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-1996.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-ch-1901.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.pat.txt + +name hyphen-greek +category TLCore +revision 58652 +catalogue elhyphen +shortdesc Modern Greek hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Modern Greek in monotonic and +longdesc polytonic spelling in LGR and UTF-8 encodings. Patterns in +longdesc UTF-8 use two code positions for each of the vowels with acute +longdesc accent (a.k.a tonos, oxia), e.g., U+03AC, U+1F71 for alpha. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=greek synonyms=polygreek lefthyphenmin=1 righthyphenmin=1 file=loadhyph-el-polyton.tex file_patterns=hyph-el-polyton.pat.txt file_exceptions= +execute AddHyphen name=monogreek lefthyphenmin=1 righthyphenmin=1 file=loadhyph-el-monoton.tex file_patterns=hyph-el-monoton.pat.txt file_exceptions= +containersize 13268 +containerchecksum 3da84f41aaf7e5d4be0ce609e4d119e65c9189ff6662051cb7e879e9e373d990ef1c59ac7cfead1bdbc6e55b52d4b3ed28d157b22dbec43e5226f16872d5a7de +doccontainersize 727508 +doccontainerchecksum 865aaf1f9f0fbe130f9006e41ef677713667832745fc24c28cffe805a540a19f7104a3f0fef3258ba0e16c1c456959904887899a4c584338c58de7fcc80c5419 +docfiles size=463 + RELOC/doc/generic/elhyphen/README details="Readme" + RELOC/doc/generic/elhyphen/anc-test.ltx + RELOC/doc/generic/elhyphen/anc-test.pdf + RELOC/doc/generic/elhyphen/ancient.pdf + RELOC/doc/generic/elhyphen/compound.ltx + RELOC/doc/generic/elhyphen/compound.pdf + RELOC/doc/generic/elhyphen/copyrite.txt + RELOC/doc/generic/elhyphen/modern.pdf +runfiles size=20 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-el-monoton.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-el-polyton.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-el-monoton.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-el-polyton.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.pat.txt + RELOC/tex/generic/hyphen/grmhyph5.tex + RELOC/tex/generic/hyphen/grphyph5.tex +catalogue-ctan /language/hyphenation/elhyphen +catalogue-license other-free +catalogue-topics greek hyphenation +catalogue-version 5 + +name hyphen-hungarian +category TLCore +revision 58652 +catalogue hungarian +shortdesc Hungarian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Hungarian in T1/EC and UTF-8 +longdesc encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=hungarian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-hu.tex file_patterns=hyph-hu.pat.txt file_exceptions= +containersize 285188 +containerchecksum 868a4c3f4d0eda078054026bd1ec35e05c2f4013e093bf58147bfa2d861814242b55a900ce60384767558c9552ff9d41cf447e2a157bae83bd2877251012d96b +doccontainersize 179896 +doccontainerchecksum 164180f0485e16a49ba83dcb4721902e8a29f399032d4f5a59d55e424b8178a25dedd9fb99919d9d772142342fb78fe0dbf7a5303382a0b7feae4a381b76f8bb +docfiles size=76 + RELOC/doc/generic/huhyphen/huhyphn.pdf + RELOC/doc/generic/huhyphen/hyph_hu.dic + RELOC/doc/generic/huhyphen/searchforerrors.rb + RELOC/doc/generic/huhyphen/testhyphenation.rb + RELOC/doc/generic/hyph-utf8/languages/hu/huhyphn.pdf +runfiles size=415 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hu.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hu.ec.tex + 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-license gpl +catalogue-topics hyphenation hungarian + +name hyphen-icelandic +category TLCore +revision 58652 +catalogue icehyph +shortdesc Icelandic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Icelandic in T1/EC and UTF-8 +longdesc encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=icelandic lefthyphenmin=2 righthyphenmin=2 file=loadhyph-is.tex file_patterns=hyph-is.pat.txt file_exceptions= +containersize 19384 +containerchecksum 69add7ccde189e86810e2a82692a260de9a9fcc0ba011352881d202d4f4c94c4dbd84fe36dff40ef9b9ad3e8e990947cc61022307790f13cad56744f3ef5e41f +runfiles size=23 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-is.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-is.ec.tex + 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-license lppl +catalogue-topics hyphenation icelandic + +name hyphen-indic +category TLCore +revision 58652 +shortdesc Indic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Assamese, Bengali, Gujarati, Hindi, +longdesc Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil and Telugu +longdesc for Unicode engines. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=assamese lefthyphenmin=1 righthyphenmin=1 file=loadhyph-as.tex file_patterns=hyph-as.pat.txt file_exceptions= +execute AddHyphen name=bengali lefthyphenmin=1 righthyphenmin=1 file=loadhyph-bn.tex file_patterns=hyph-bn.pat.txt file_exceptions= +execute AddHyphen name=gujarati lefthyphenmin=1 righthyphenmin=1 file=loadhyph-gu.tex file_patterns=hyph-gu.pat.txt file_exceptions= +execute AddHyphen name=hindi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-hi.tex file_patterns=hyph-hi.pat.txt file_exceptions= +execute AddHyphen name=kannada lefthyphenmin=1 righthyphenmin=1 file=loadhyph-kn.tex file_patterns=hyph-kn.pat.txt file_exceptions= +execute AddHyphen name=malayalam lefthyphenmin=1 righthyphenmin=1 file=loadhyph-ml.tex file_patterns=hyph-ml.pat.txt file_exceptions= +execute AddHyphen name=marathi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-mr.tex file_patterns=hyph-mr.pat.txt file_exceptions= +execute AddHyphen name=oriya lefthyphenmin=1 righthyphenmin=1 file=loadhyph-or.tex file_patterns=hyph-or.pat.txt file_exceptions= +execute AddHyphen name=pali lefthyphenmin=1 righthyphenmin=2 file=loadhyph-pi.tex file_patterns=hyph-pi.pat.txt file_exceptions= +execute AddHyphen name=panjabi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-pa.tex file_patterns=hyph-pa.pat.txt file_exceptions= +execute AddHyphen name=tamil lefthyphenmin=1 righthyphenmin=1 file=loadhyph-ta.tex file_patterns=hyph-ta.pat.txt file_exceptions= +execute AddHyphen name=telugu lefthyphenmin=1 righthyphenmin=1 file=loadhyph-te.tex file_patterns=hyph-te.pat.txt file_exceptions= +containersize 5164 +containerchecksum 765be1c13ef3445b056b61c24460cc2f18bad038c04541bf4773c7f61c6d26be25d3079b260a1b9623e2f01155ec52eb5bc87b0ea9234e50a5ca24dd8a7a5937 +runfiles size=36 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-as.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-bn.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-gu.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hi.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-kn.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ml.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mr.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-or.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pa.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pi.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ta.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-te.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-as.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-bn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-gu.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hi.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-kn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ml.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mr.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-or.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pa.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pi.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ta.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-te.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-as.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bn.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gu.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hi.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kn.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ml.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mr.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-or.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pa.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pi.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ta.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-te.pat.txt + +name hyphen-indonesian +category TLCore +revision 58609 +shortdesc Indonesian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Indonesian (Bahasa Indonesia) in ASCII +longdesc encoding. They are probably also usable for Malay (Bahasa +longdesc Melayu). +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=indonesian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-id.tex file_patterns=hyph-id.pat.txt file_exceptions=hyph-id.hyp.txt +containersize 2416 +containerchecksum 3f04a63010c02d77cb229c90aec9f1079557493958573be9ce992ac5ae3c229f01f9abc0cac785d9340ff48aa169a01f8b327ecb2e255bef57f1fe85d04d1d2a +runfiles size=4 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-id.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-id.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.pat.txt + +name hyphen-interlingua +category TLCore +revision 58609 +shortdesc Interlingua hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Interlingua in ASCII encoding. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=interlingua lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ia.tex file_patterns=hyph-ia.pat.txt file_exceptions=hyph-ia.hyp.txt +containersize 2876 +containerchecksum dfed82ea70f25d452726b5cd03d8e060bddc23cbbc5deebab2ddad93ce6744c38d357327fbe570bf7a1444f62cee0cc422a6c7d066d6693a238d851b4fe46e32 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ia.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ia.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.pat.txt + +name hyphen-irish +category TLCore +revision 58609 +shortdesc Irish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Irish (Gaeilge) in T1/EC and UTF-8 +longdesc encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=irish lefthyphenmin=2 righthyphenmin=3 file=loadhyph-ga.tex file_patterns=hyph-ga.pat.txt file_exceptions=hyph-ga.hyp.txt +containersize 30404 +containerchecksum 478a77c4ab8231a3041c3427075f16c072f58a394eced8ff0cd5da6544f3f2fd65722f33fd8344e18060c96f09bd18b90af71f8508639fc9c59d29d704d9e348 +runfiles size=38 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ga.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ga.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ga.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.pat.txt + +name hyphen-italian +category TLCore +revision 58652 +catalogue ithyph +shortdesc Italian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Italian in ASCII encoding. Compliant +longdesc with the Recommendation UNI 6461 on hyphenation issued by the +longdesc Italian Standards Institution (Ente Nazionale di Unificazione +longdesc UNI). +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=italian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-it.tex file_patterns=hyph-it.pat.txt file_exceptions= +containersize 3508 +containerchecksum 4e79ee31893d6c948a3aac8588d4beb75d89f89df973b1e39cd63894e008af55f8dca774194d7eb105fb0aef692b17bb645d5bd85cca7debafd74aabf241bc30 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-it.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-it.tex + 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-license lgpl +catalogue-topics hyphenation italian +catalogue-version 4.8g + +name hyphen-kurmanji +category TLCore +revision 58652 +shortdesc Kurmanji hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Kurmanji (Northern Kurdish) as spoken +longdesc in Turkey and by the Kurdish diaspora in Europe, in T1/EC and +longdesc UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=kurmanji lefthyphenmin=2 righthyphenmin=2 file=loadhyph-kmr.tex file_patterns=hyph-kmr.pat.txt file_exceptions= +containersize 2708 +containerchecksum e5114da178fc841b1079130c01f8729ac94f0e3592dbd479f44a978ea009fd75b410d6130d9badd6227d115d8f6dad3ed4b553dbfbf4f80be5d1c2adf108e2fa +runfiles size=4 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-kmr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-kmr.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-kmr.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.pat.txt + +name hyphen-latin +category TLCore +revision 58652 +catalogue lahyph +shortdesc Latin hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Latin in T1/EC and UTF-8 encodings, +longdesc mainly in modern spelling (u when u is needed and v when v is +longdesc needed), medieval spelling with the ligatures \ae and \oe and +longdesc the (uncial) lowercase 'v' written as a 'u' is also supported. +longdesc Apparently there is no conflict between the patterns of modern +longdesc Latin and those of medieval Latin. Hyphenation patterns for the +longdesc Classical Latin in T1/EC and UTF-8 encodings. Classical Latin +longdesc hyphenation patterns are different from those of 'plain' Latin, +longdesc the latter being more adapted to modern Latin. Hyphenation +longdesc patterns for the Liturgical Latin in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=classiclatin lefthyphenmin=2 righthyphenmin=2 file=loadhyph-la-x-classic.tex file_patterns=hyph-la-x-classic.pat.txt file_exceptions= +execute AddHyphen name=latin lefthyphenmin=2 righthyphenmin=2 file=loadhyph-la.tex file_patterns=hyph-la.pat.txt file_exceptions= +execute AddHyphen name=liturgicallatin lefthyphenmin=2 righthyphenmin=2 file=loadhyph-la-x-liturgic.tex file_patterns=hyph-la-x-liturgic.pat.txt file_exceptions= +containersize 101960 +containerchecksum 9d0db7fcad4ca764379957fa22f9daede79898bcacfbdb62abe54318a52dd82a66f8e39542c18008e3f6b6d0db284b1e9b891531d3c8f3c9cf22c764e83d57b3 +runfiles size=156 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la-x-classic.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la-x-liturgic.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-la-x-liturgic.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-la.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex-8bit/hyph-la-x-classic.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-classic.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-liturgic.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.pat.txt + 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-license lppl +catalogue-topics hyphenation latin +catalogue-version 3.1 + +name hyphen-latvian +category TLCore +revision 58652 +shortdesc Latvian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Latvian in L7X and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=latvian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-lv.tex file_patterns=hyph-lv.pat.txt file_exceptions= +containersize 52432 +containerchecksum 85aeadb0cb3c5de9ef48057132ccd958d17f014b07b56b9ebe2186a709c4e7646fad260e156718e43ec3eac88681654f88c9b53a6d71fb3eaee934dcb4439ed9 +runfiles size=68 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-lv.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-lv.l7x.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-lv.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lv.pat.txt + +name hyphen-lithuanian +category TLCore +revision 58652 +shortdesc Lithuanian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Lithuanian in L7X and UTF-8 encodings. +longdesc \lefthyphenmin and \righthyphenmin have to be at least 2. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=lithuanian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-lt.tex file_patterns=hyph-lt.pat.txt file_exceptions= +containersize 7444 +containerchecksum 7a691e3c55c768b9ea5ef13552dc42025ab613df0a0d5c0d54aad58b63da11a93e59bc53e6a8211d5e054cbea8500846da01e9619bbee723d648e2d369a49d55 +runfiles size=10 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-lt.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-lt.l7x.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-lt.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lt.pat.txt + +name hyphen-macedonian +category TLCore +revision 58652 +shortdesc Macedonian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Macedonian +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=macedonian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-mk.tex file_patterns=hyph-mk.pat.txt file_exceptions= +containersize 5508 +containerchecksum f88208291212874df493151581205d1b270b2d4278176c42e11edac9b344b73c2ee859f93b6947e4a6003a00abc4d3753024add9caf84f114c8a0cec72aa8c8d +runfiles size=9 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mk.tex + RELOC/tex/generic/hyph-utf8/patterns/tex-8bit/hyph-mk.macedonian.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mk.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mk.pat.txt + +name hyphen-mongolian +category TLCore +revision 58652 +shortdesc Mongolian hyphenation patterns in Cyrillic script. +relocated 1 +longdesc Hyphenation patterns for Mongolian in T2A, LMC and UTF-8 +longdesc encodings. LMC encoding is used in MonTeX. The package includes +longdesc two sets of patterns that will hopefully be merged in future. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=mongolian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-mn-cyrl.tex file_patterns=hyph-mn-cyrl.pat.txt file_exceptions= +execute AddHyphen name=mongolianlmc lefthyphenmin=2 righthyphenmin=2 file=loadhyph-mn-cyrl-x-lmc.tex luaspecial="disabled:only for 8bit montex with lmc encoding" +containersize 10440 +containerchecksum 159562a8feb25918bc422e7dc78a46423c7fff2f3c61016a0162761411999a5555be3c6e36cf967d5034f65c12f4b0834ae0c0423c2f3ab17a65034b1803dc72 +runfiles size=20 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl-x-lmc.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-mn-cyrl-x-lmc.lmc.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-mn-cyrl.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl-x-lmc.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.pat.txt + +name hyphen-norwegian +category TLCore +revision 58609 +shortdesc Norwegian Bokmal and Nynorsk hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Norwegian Bokmal and Nynorsk in T1/EC +longdesc and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=bokmal synonyms=norwegian,norsk lefthyphenmin=2 righthyphenmin=2 file=loadhyph-nb.tex file_patterns=hyph-nb.pat.txt file_exceptions=hyph-nb.hyp.txt +execute AddHyphen name=nynorsk lefthyphenmin=2 righthyphenmin=2 file=loadhyph-nn.tex file_patterns=hyph-nn.pat.txt file_exceptions=hyph-nn.hyp.txt +containersize 96200 +containerchecksum 8b02e90bfcdf3c6d4bd1966b21e0512069f1749c638d537e9553f68e61e0bc325db8d3b462f45650db4376c7a769c2cde3e0c0601d7de272898a23cd2251c064 +runfiles size=248 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nb.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nn.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nb.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nn.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nb.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.pat.txt + +name hyphen-occitan +category TLCore +revision 58652 +shortdesc Occitan hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Occitan in T1/EC and UTF-8 encodings. +longdesc They are supposed to be valid for all the Occitan variants +longdesc spoken and written in the wide area called 'Occitanie' by the +longdesc French. It ranges from the Val d'Aran within Catalunya, to the +longdesc South Western Italian Alps encompassing the southern half of +longdesc the French pentagon. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=occitan lefthyphenmin=2 righthyphenmin=2 file=loadhyph-oc.tex file_patterns=hyph-oc.pat.txt file_exceptions= +containersize 3304 +containerchecksum b0743d1f6083dac7a347e22aed19d0c5d76119582e4862557a55b817b17dddaa69a2150f14daf6b08689278dd61b27c1b6ed45df5601dd6327bf185a7a46a5c6 +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-oc.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-oc.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-oc.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-oc.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-oc.pat.txt + +name hyphen-piedmontese +category TLCore +revision 58652 +shortdesc Piedmontese hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Piedmontese in ASCII encoding. +longdesc Compliant with 'Gramatica dla lengua piemonteisa' by Camillo +longdesc Brero. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=piedmontese lefthyphenmin=2 righthyphenmin=2 file=loadhyph-pms.tex file_patterns=hyph-pms.pat.txt file_exceptions= +containersize 3336 +containerchecksum fa7fc73edd582ba20b8236507385f0a30f477bb9c79e35fea56aa4020be966b9c4a16a327848dd051fa4cf6e6117ef8a51eb92ed6cb72f6993cb290fa5cd5ca3 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pms.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-pms.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pms.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pms.pat.txt + +name hyphen-polish +category TLCore +revision 58609 +catalogue plhyph +shortdesc Polish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Polish in QX and UTF-8 encodings. +longdesc These patterns are also used by Polish TeX formats MeX and +longdesc LaMeX. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=polish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-pl.tex file_patterns=hyph-pl.pat.txt file_exceptions=hyph-pl.hyp.txt +containersize 12524 +containerchecksum 5580b3865ff8d20d475cb962b0257b909ff0e410b6776cb8153145fb0ee42b2f777069413bc6b3622c8c52318aba1ba836210e8972c5b6a47ef978c24fc8848a +runfiles size=28 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-pl.qx.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pl.tex + 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-license knuth +catalogue-topics hyphenation polish +catalogue-version 3.0b + +name hyphen-portuguese +category TLCore +revision 58609 +shortdesc Portuguese hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Portuguese in T1/EC and UTF-8 +longdesc encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=portuguese synonyms=portuges lefthyphenmin=2 righthyphenmin=3 file=loadhyph-pt.tex file_patterns=hyph-pt.pat.txt file_exceptions=hyph-pt.hyp.txt +containersize 3256 +containerchecksum 9d9ab3e616522ab9837bb7c7509127f998c442e96f96ee6b6fc0fdc9ac53fd03319d0c0ce28e23a35f1ae0ebb840cdeb19e8ab6444549c33059b28e7b307486e +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pt.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-pt.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pt.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.pat.txt + +name hyphen-romanian +category TLCore +revision 58652 +shortdesc Romanian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Romanian in T1/EC and UTF-8 encodings. +longdesc The UTF-8 patterns use U+0219 for the character 's with comma +longdesc accent' and U+021B for 't with comma accent', but we may +longdesc consider using U+015F and U+0163 as well in the future. +longdesc Generated by PatGen2-output hyphen-level 9. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=romanian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ro.tex file_patterns=hyph-ro.pat.txt file_exceptions= +containersize 4344 +containerchecksum 124a93a633731dc1b3d6cbf2fc9b8489bf0737911a0c25ea44dbdfffa07c165ba5804dfd7e9cbe0be3b6eceb9fd6e95daefcae2356ee140f644416bbe1b13507 +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ro.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ro.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ro.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ro.pat.txt + +name hyphen-romansh +category TLCore +revision 58652 +shortdesc Romansh hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Romansh in ASCII encoding. They are +longdesc supposed to comply with the rules indicated by the Lia +longdesc Rumantscha (Romansh language society). +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=romansh lefthyphenmin=2 righthyphenmin=2 file=loadhyph-rm.tex file_patterns=hyph-rm.pat.txt file_exceptions= +containersize 3512 +containerchecksum a69d3881493c70cfd58e3d79ed76ce6f18bbcb43e1683f31270eafeb743b366a3c52c9945ff94db333e88ca18145263ba74002f5e78bb42d7aefa48c66af7955 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-rm.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-rm.pat.txt + +name hyphen-russian +category TLCore +revision 58609 +shortdesc Russian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Russian in T2A and UTF-8 encodings. +longdesc For 8-bit engines, the 'ruhyphen' package provides a number of +longdesc different pattern sets, as well as different (8-bit) encodings, +longdesc that can be chosen at format-generation time. The UTF-8 version +longdesc only provides the default pattern set. A mechanism similar to +longdesc the one used for 8-bit patterns may be implemented in the +longdesc future. +depend hyph-utf8 +depend hyphen-base +depend ruhyphen +execute AddHyphen name=russian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ru.tex file_patterns=hyph-ru.pat.txt file_exceptions=hyph-ru.hyp.txt +containersize 34564 +containerchecksum f17852dffbb8f5c337b8316b92c2b0a60a318df491231047d9c0930d55d8b2be3274ec94d0d87085d53e06e89c585d47250f046300bf3890ce751f6f2052d348 +runfiles size=63 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ru.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ru.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ru.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.pat.txt + +name hyphen-sanskrit +category TLCore +revision 58652 +shortdesc Sanskrit hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Sanskrit and Prakrit in +longdesc transliteration, and in Devanagari, Bengali, Kannada, Malayalam +longdesc and Telugu scripts for Unicode engines. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=sanskrit lefthyphenmin=1 righthyphenmin=3 file=loadhyph-sa.tex file_patterns=hyph-sa.pat.txt file_exceptions= +containersize 3596 +containerchecksum e84b6ca93e922c9c6edf03f4dbec1fae9eef2462379ef2fd0f3508a5048b54819c5ba12e0d76bafe1336666ca74ba95e27f63224fa048068bc515f3bc41f6eba +doccontainersize 992 +doccontainerchecksum 95c6ae15687118ffc9019c8634347a602e6590b4a1d18bc060e57fe548a81f097070322975be1f62fa2685c5affff7f31b4854b0ec941bbcb9377ecf16986cea +docfiles size=1 + RELOC/doc/generic/hyph-utf8/languages/sa/hyphenmin.txt +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sa.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sa.pat.txt + +name hyphen-serbian +category TLCore +revision 58609 +catalogue srhyphc +shortdesc Serbian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Serbian in T1/EC, T2A and UTF-8 +longdesc encodings. For 8-bit engines the patterns are available +longdesc separately as 'serbian' in T1/EC encoding for Latin script and +longdesc 'serbianc' in T2A encoding for Cyrillic script. Unicode engines +longdesc should only use 'serbian' which has patterns in both scripts +longdesc combined. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=serbian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sr-latn.tex file_patterns=hyph-sh-latn.pat.txt,hyph-sh-cyrl.pat.txt file_exceptions=hyph-sh-latn.hyp.txt,hyph-sh-cyrl.hyp.txt +execute AddHyphen name=serbianc lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sr-cyrl.tex file_patterns=hyph-sh-latn.pat.txt,hyph-sh-cyrl.pat.txt file_exceptions=hyph-sh-latn.hyp.txt,hyph-sh-cyrl.hyp.txt +containersize 25340 +containerchecksum 390aa9c116b6db7b362fc57aa0758a4c489c5fe33c718fb37675b17a9772a463ce532a2ace3e1ef90275b4afef5ea8d6cff71a7abe625d84e3f461c115306452 +runfiles size=70 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-cyrl.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-latn.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sh-cyrl.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sh-latn.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sh-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sh-latn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sr-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.pat.txt +catalogue-also shhyphl +catalogue-ctan /language/hyphenation/srhyphc.tex +catalogue-license gpl +catalogue-topics hyphenation serbian +catalogue-version 1.0a + +name hyphen-slovak +category TLCore +revision 58609 +shortdesc Slovak hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Slovak in T1/EC and UTF-8 encodings. +longdesc Original patterns 'skhyphen' are still distributed in the +longdesc 'csplain' package and loaded with ISO Latin 2 encoding (IL2). +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=slovak lefthyphenmin=2 righthyphenmin=3 file=loadhyph-sk.tex file_patterns=hyph-sk.pat.txt file_exceptions=hyph-sk.hyp.txt +containersize 10848 +containerchecksum a0786980e0cda7029a72075023520acdc998b83226e85deb0b8186ee4293560321517d507f74fbe68f1d68a16cd8af67aae68baead9176f9cc687bcc7d0a72e1 +runfiles size=19 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sk.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sk.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.pat.txt + +name hyphen-slovenian +category TLCore +revision 58652 +shortdesc Slovenian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Slovenian in T1/EC and UTF-8 +longdesc encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=slovenian synonyms=slovene lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sl.tex file_patterns=hyph-sl.pat.txt file_exceptions= +containersize 6200 +containerchecksum a605c9149ae452df8b2c25aa0f6bcdde53150e4485147a065f1f56c9740c3544c5c7f9c6049aea913916a62aabaf40777cf6f0f76a858e485c0bd09826a6ef5b +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sl.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sl.pat.txt + +name hyphen-spanish +category TLCore +revision 58652 +shortdesc Spanish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Spanish in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=spanish synonyms=espanol lefthyphenmin=2 righthyphenmin=2 file=loadhyph-es.tex file_patterns=hyph-es.pat.txt file_exceptions= +containersize 16452 +containerchecksum d6783537ff44a326b83c2004afd63f5bdbd162fa4865138c2e6d34c9e6a103ac41dd7b382454646b09c74970f8e0d5827a5f4af617936f74fd300b2054a096d4 +doccontainersize 128796 +doccontainerchecksum 263fd9480c5f225c7e36169b86e846baa64745b83c1072c9602e873f2e7cf8e63b07ab85b29e9d4263656faff58a39fe83e1eba34517b8ba34720f189c8e7f43 +docfiles size=36 + RELOC/doc/generic/hyph-utf8/languages/es/README + RELOC/doc/generic/hyph-utf8/languages/es/division.pdf details="Paper on word division (Spanish)" language="es" +srccontainersize 7912 +srccontainerchecksum b1ceb7602a46ecab68fb767ffb154f0dea9626d81bf6c46dd43be328204f72141842c81efda9d7d51997ed25356746e345f7cd9f9ed88ac2f99746794becb75d +srcfiles size=6 + RELOC/source/generic/hyph-utf8/languages/es/README + RELOC/source/generic/hyph-utf8/languages/es/eshyph-make.lua + RELOC/source/generic/hyph-utf8/languages/es/eshyph.src +runfiles size=33 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-es.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-es.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-es.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-es.pat.txt +catalogue-contact-bugs https://github.com/jbezos/tex-hyphen-spanish/issues +catalogue-contact-home http://www.cervantex.es/ +catalogue-contact-repository https://github.com/jbezos/tex-hyphen-spanish +catalogue-ctan /language/spanish/hyphen-spanish +catalogue-license mit +catalogue-topics hyphenation spanish +catalogue-version 5.0 + +name hyphen-swedish +category TLCore +revision 58652 +shortdesc Swedish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Swedish in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=swedish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sv.tex file_patterns=hyph-sv.pat.txt file_exceptions= +containersize 18240 +containerchecksum 5f993ae6b22eadb87b6a1839bfa7d78a0dccc1107c5afbec8c248ed001018da38bb179e29f2430cffa90283221b20c5475346a8d5566edf16152266257f2a37d +runfiles size=25 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sv.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sv.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sv.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sv.pat.txt + +name hyphen-thai +category TLCore +revision 58652 +shortdesc Thai hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Thai in LTH and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=thai lefthyphenmin=2 righthyphenmin=3 file=loadhyph-th.tex file_patterns=hyph-th.pat.txt file_exceptions= +containersize 33700 +containerchecksum 8336eee03250859ab4328ad3c1fe437d2af688ef56b43be49c45838965ffe033befa84cdf600e9f48cdf60cbbfbff44450c830bd4c34556f680c5096ed3aecc4 +runfiles size=55 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-th.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-th.lth.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-th.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-th.pat.txt + +name hyphen-turkish +category TLCore +revision 58652 +catalogue tkhyph +shortdesc Turkish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Turkish in T1/EC and UTF-8 encodings. +longdesc Auto-generated from a script included in the distribution. The +longdesc patterns for Turkish were first produced for the Ottoman Texts +longdesc Project in 1987 and were suitable for both Modern Turkish and +longdesc Ottoman Turkish in Latin script, however the required character +longdesc set didn't fit into EC encoding, so support for Ottoman Turkish +longdesc had to be dropped to keep compatibility with 8-bit engines. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=turkish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-tr.tex file_patterns=hyph-tr.pat.txt file_exceptions= +containersize 3880 +containerchecksum 5c7023e01bf59af4d36bd451f51ae00c445711c7ecf109c9d835f1d689446d7b0b1b2627b7f9e84e4f4a8ceff52227ff280ac64481e1d29d538a30e093dace85 +srccontainersize 2724 +srccontainerchecksum 2aa80889b9657b03b6beb6510b6790fba13811b97abbac186eaf4d3f40212b41db0dd2d21583429820faad558b0415a09aa8254d2edd96812cf6396fb18ccf5c +srcfiles size=3 + RELOC/source/generic/hyph-utf8/languages/tr/README + RELOC/source/generic/hyph-utf8/languages/tr/generate_patterns_tr.rb +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-tr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-tr.ec.tex + 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-license other-free +catalogue-topics hyphenation turkish + +name hyphen-turkmen +category TLCore +revision 58652 +shortdesc Turkmen hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Turkmen in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=turkmen lefthyphenmin=2 righthyphenmin=2 file=loadhyph-tk.tex file_patterns=hyph-tk.pat.txt file_exceptions= +containersize 6256 +containerchecksum c984bb7f09c5816c36a7a790f16df1750ee90f36e2130994ecd1db63f26afb650245985699a80da9b4d7004ad67106771d8c7b79262438369aee3f52fd8374cf +srccontainersize 1676 +srccontainerchecksum a496f681db0b4b85d82ec1dd60c057f63b6d1c1b52d391e7bee98d3d6e1fb596701c91f2ca400d0df13b96ec7a43d275646b7d2874fe1e4efc9d9b2b47f6cc5d +srcfiles size=1 + RELOC/source/generic/hyph-utf8/languages/tk/generate_patterns_tk.rb +runfiles size=14 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-tk.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-tk.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-tk.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tk.pat.txt + +name hyphen-ukrainian +category TLCore +revision 58652 +shortdesc Ukrainian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Ukrainian in T2A and UTF-8 encodings. +longdesc For 8-bit engines, the 'ukrhyph' package provides a number of +longdesc different pattern sets, as well as different (8-bit) encodings, +longdesc that can be chosen at format-generation time. The UTF-8 version +longdesc only provides the default pattern set. A mechanism similar to +longdesc the one used for 8-bit patterns may be implemented in the +longdesc future. +depend hyph-utf8 +depend hyphen-base +depend ukrhyph +execute AddHyphen name=ukrainian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-uk.tex file_patterns=hyph-uk.pat.txt file_exceptions= +containersize 18692 +containerchecksum 05a9111b358c659159c6edfd38b9ce3d78febd794cc82968dc3e2acdc3612786304721fbd07f00f0a8278f4c2e46a1bfad821b5da45e60546d6acb5bf9068d08 +runfiles size=41 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-uk.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-uk.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-uk.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-uk.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-uk.pat.txt + +name hyphen-uppersorbian +category TLCore +revision 58609 +shortdesc Upper Sorbian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Upper Sorbian in T1/EC and UTF-8 +longdesc encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=uppersorbian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-hsb.tex file_patterns=hyph-hsb.pat.txt file_exceptions=hyph-hsb.hyp.txt +containersize 5520 +containerchecksum b2cb1bcd953ffabbd3f5acd8c72e9c60415fd300004de56ee446fc77d381aac1db65d613a2f591d3d0e45f2a12ff5340457ae3061b4c77de502923932383bdcb +runfiles size=12 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hsb.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hsb.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hsb.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.pat.txt + +name hyphen-welsh +category TLCore +revision 58652 +shortdesc Welsh hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Welsh in T1/EC and UTF-8 encodings. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=welsh lefthyphenmin=2 righthyphenmin=3 file=loadhyph-cy.tex file_patterns=hyph-cy.pat.txt file_exceptions= +containersize 19992 +containerchecksum 12a23e0b9d00eb4381e3c97ecbb449faf5a73b755a17fc0301f1cbad5d0babb370aeec16dcdd316cefb56e142873abaa685288b1a1d3c7dcb76a07a9ef127ac6 +runfiles size=35 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cy.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-cy.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cy.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cy.pat.txt + +name hyphenat +category Package +revision 15878 +shortdesc Disable/enable hypenation +relocated 1 +longdesc This package can disable all hyphenation or enable hyphenation +longdesc of non-alphabetics or monospaced fonts. The package can also +longdesc enable hyphenation within 'words' that contain non-alphabetic +longdesc characters (e.g., that include underscores), and hyphenation of +longdesc text typeset in monospaced (e.g., cmtt) fonts. +containersize 1692 +containerchecksum 5af847cd55cc1b455b1928f6ba275054209ad5c9c2f81a7ae648d87eaa39353e842b2df4e91cf530909a46b4aa226228978d771b35e46b7e12f1a08a08faa181 +doccontainersize 151796 +doccontainerchecksum 57f8a5d71763cac73635fddba75eb59faaaed01d47bcbb7ecc96b80fa5a926bb0091d3cd3448c6f53ad82cd44c9244ee631fb5b56141351b578cd899509eb323 +docfiles size=44 + RELOC/doc/latex/hyphenat/README details="Readme" + RELOC/doc/latex/hyphenat/hyphenat.pdf details="Package documentation" +srccontainersize 10404 +srccontainerchecksum 781337dbca0ecf6155221b768ace1fec364bd1ddf29e3df36b2da64b6137a09996423466c8241cc5107c3eba056b4bf5c54572af77e781fe8e1e7f02264d9577 +srcfiles size=10 + RELOC/source/latex/hyphenat/hyphenat.dtx + RELOC/source/latex/hyphenat/hyphenat.ins +runfiles size=2 + RELOC/tex/latex/hyphenat/hyphenat.sty +catalogue-ctan /macros/latex/contrib/hyphenat +catalogue-license lppl1.3 +catalogue-topics hyphenation +catalogue-version 2.3c + +name hyphenex +category Package +revision 57387 +shortdesc US English hyphenation exceptions file +relocated 1 +longdesc Exceptions for American English hyphenation patterns are +longdesc occasionally published in the TeX User Group journal TUGboat. +longdesc This bundle provides alternative Perl and Bourne shell scripts +longdesc to convert the source of such an article into an exceptions +longdesc file, together with a recent copy of the article and +longdesc machine-readable files. +containersize 8700 +containerchecksum 77ad574e0786d7cd8e7d731fa7666a6a531b29a914759ecbb9b5d6e5f62e9ec9027aae7e3b9ffd62bd918bb0354c41e865779b044381bc1b7256528eddb34754 +srccontainersize 203972 +srccontainerchecksum d93fbc4f3f1a711967f40bbb492e9f6497b7a91b90d42eab92f3815fd0d15b239286c96519acff2d6609be00809a86846ba2cea4bd94719a35aae024e5785a4c +srcfiles size=67 + RELOC/source/generic/hyphenex/GNUmakefile + RELOC/source/generic/hyphenex/README + RELOC/source/generic/hyphenex/hyphenex.pl + RELOC/source/generic/hyphenex/hyphenex.sh + RELOC/source/generic/hyphenex/tb0hyf.pdf + RELOC/source/generic/hyphenex/tb0hyf.tex + RELOC/source/generic/hyphenex/test.tex +runfiles size=7 + RELOC/tex/generic/hyphenex/ushyphex.tex +catalogue-also tugboat tugboat-plain +catalogue-ctan /info/digests/tugboat/hyphenex +catalogue-license other-free +catalogue-topics hyphenation + +name hyplain +category Package +revision 15878 +shortdesc Basic support for multiple languages in Plain TeX +relocated 1 +longdesc The package offers a means to set up hyphenation suitable for +longdesc several languages and/or dialects, and to select them or switch +longdesc between them while typesetting. +containersize 3136 +containerchecksum f2968e8baf048329d8c78934770aa5d0a364ac7b3f77dc00a163e085e4fe45420c180acd05b281016aefdfa6523bed234e75ca07da0d133438798c1e51330d83 +doccontainersize 48884 +doccontainerchecksum cc64c35df85ba832f18f153d0f0cdc9f153ac4a9db0a175a1961a353f59ba585e19b6607e0c4cd1a832d921aa3451687427965cbef4fcb2a87488895e6643bb3 +docfiles size=16 + RELOC/doc/plain/hyplain/README + RELOC/doc/plain/hyplain/hydoc.pdf details="Package documentation" + RELOC/doc/plain/hyplain/hydoc.tex +runfiles size=4 + RELOC/tex/plain/hyplain/hylang.tex + RELOC/tex/plain/hyplain/hypdfplain.ini + RELOC/tex/plain/hyplain/hyplain.tex + RELOC/tex/plain/hyplain/hyrules.tex +catalogue-also babel +catalogue-ctan /macros/plain/contrib/hyplain +catalogue-license pd +catalogue-topics multilingual hyphenation plain-ext +catalogue-version 1.0 + +name ibarra +category Package +revision 55820 +shortdesc LaTeX support for the Ibarra Real Nova family of fonts +relocated 1 +longdesc The Ibarra Real Nova is a revival of a typeface designed by +longdesc Geronimo Gil for the publication of Don Quixote for the Real +longdesc Academia de la Lengua in 1780. Joaquin Ibarra was the printer. +execute addMap ibarra.map +containersize 1106008 +containerchecksum f02661a9cb6b3004bef8ed740cf9b1921080b4e332600e83d2d8c0da1ecbc5a895f026fa178e9b729d3b59457e778d4a64de8e2111e2dae51feb09ae9b2ddfd9 +doccontainersize 213996 +doccontainerchecksum 2f39336d80282c1bf03cd4749b04ef0da513cd1fcae54cce7d64f017ae284c79423b5f17502742677922a9ab9052f2e8053efa70cae2956cc30c6eba1e2ea4a1 +docfiles size=63 + RELOC/doc/fonts/ibarra/OFL.txt + RELOC/doc/fonts/ibarra/README details="Readme" + RELOC/doc/fonts/ibarra/ibarra-samples.pdf details="Package documentation" + RELOC/doc/fonts/ibarra/ibarra-samples.tex + RELOC/doc/fonts/ibarra/specimen.pdf +runfiles size=1112 + RELOC/fonts/enc/dvips/ibarra/ibrr_2qacnp.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_6jlwjs.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_a3lg2q.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_bqfkme.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_eocuub.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_gj2f64.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_ifilzm.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_j5nrvp.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_miztrm.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_qbzklr.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_rszbuw.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_s4svbt.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_xjlkg7.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_xx2mp7.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_yt2suz.enc + RELOC/fonts/enc/dvips/ibarra/ibrr_yyhfj4.enc + RELOC/fonts/map/dvips/ibarra/ibarra.map + RELOC/fonts/opentype/public/ibarra/IbarraRealNova-Bold.otf + RELOC/fonts/opentype/public/ibarra/IbarraRealNova-BoldItalic.otf + RELOC/fonts/opentype/public/ibarra/IbarraRealNova-Italic.otf + RELOC/fonts/opentype/public/ibarra/IbarraRealNova-Regular.otf + RELOC/fonts/opentype/public/ibarra/IbarraRealNova-SemiBold.otf + RELOC/fonts/opentype/public/ibarra/IbarraRealNova-SemiBoldItalic.otf + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ibarra/IbarraRealNova-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/type1/public/ibarra/IbarraRealNova-Bold.pfb + RELOC/fonts/type1/public/ibarra/IbarraRealNova-BoldItalic.pfb + RELOC/fonts/type1/public/ibarra/IbarraRealNova-Italic.pfb + RELOC/fonts/type1/public/ibarra/IbarraRealNova-Regular.pfb + RELOC/fonts/type1/public/ibarra/IbarraRealNova-SemiBold.pfb + RELOC/fonts/type1/public/ibarra/IbarraRealNova-SemiBoldItalic.pfb + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-lf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-lf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-lf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-osf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-osf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-osf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-sup-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Bold-sup-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-lf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-lf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-lf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-osf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-osf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-osf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-sup-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Italic-sup-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-lf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-lf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-lf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-osf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-osf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-osf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-sup-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-Regular-sup-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/ibarra/IbarraRealNova-SemiBoldItalic-sup-t1.vf + RELOC/tex/latex/ibarra/LY1IbarraRealNova-LF.fd + RELOC/tex/latex/ibarra/LY1IbarraRealNova-OsF.fd + RELOC/tex/latex/ibarra/LY1IbarraRealNova-Sup.fd + RELOC/tex/latex/ibarra/OT1IbarraRealNova-LF.fd + RELOC/tex/latex/ibarra/OT1IbarraRealNova-OsF.fd + RELOC/tex/latex/ibarra/OT1IbarraRealNova-Sup.fd + RELOC/tex/latex/ibarra/T1IbarraRealNova-LF.fd + RELOC/tex/latex/ibarra/T1IbarraRealNova-OsF.fd + RELOC/tex/latex/ibarra/T1IbarraRealNova-Sup.fd + RELOC/tex/latex/ibarra/TS1IbarraRealNova-LF.fd + RELOC/tex/latex/ibarra/TS1IbarraRealNova-OsF.fd + RELOC/tex/latex/ibarra/ibarra.sty +catalogue-contact-home https://github.com/googlefonts/ibarrareal +catalogue-ctan /fonts/ibarra +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-serif font-type1 font-otf font-supp font-t1enc + +name ibycus-babel +category Package +revision 15878 +shortdesc Use the Ibycus 4 Greek font with Babel +relocated 1 +longdesc The package allows you to use the Ibycus 4 font for ancient +longdesc Greek with Babel. It uses a Perl script to generate hyphenation +longdesc patterns for Ibycus from those for the ordinary Babel encoding, +longdesc cbgreek. It sets up ibycus as a pseudo-language you can specify +longdesc in the normal Babel manner. For proper hyphenation of Greek +longdesc quoted in mid-paragraph, you should use it with elatex (all +longdesc current distributions of LaTeX are built with e-TeX, so the +longdesc constraint should not be onerous). +containersize 2164 +containerchecksum 30f810bd70555df4f05fbc0b073456c030a0768372bd3c681921f41fc31bfbe0570a39e474ab26aeeacb142622154e5cab3714412b09f89d1260fae8b60e817a +doccontainersize 53824 +doccontainerchecksum f09dfd00f35f653defd756b72437dd712ed1ffceb05beeadfb34c1c5163559ee7c0ae6ce0420f57b722e93080248cbcfd678d811f1383fa5fa1ab76db52a060b +docfiles size=21 + RELOC/doc/latex/ibycus-babel/README details="Readme" + RELOC/doc/latex/ibycus-babel/ibycus-babel-test.tex + RELOC/doc/latex/ibycus-babel/ibycus-babel.pdf details="Package documentation" + RELOC/doc/latex/ibycus-babel/ibyhyph.pl +srccontainersize 7824 +srccontainerchecksum 13e3ad11b56a70d7752209feaa9437bda4979c40a25597114bfc5b4e26a889c623aa7266959a212de6b7e74ebe75fb38b36767fa95f692adae027e5d025a4702 +srcfiles size=7 + RELOC/source/latex/ibycus-babel/ibycus-babel.dtx + RELOC/source/latex/ibycus-babel/ibycus-babel.ins +runfiles size=3 + RELOC/tex/latex/ibycus-babel/ibycus.ldf + RELOC/tex/latex/ibycus-babel/lgienc.def + RELOC/tex/latex/ibycus-babel/lgifib.fd +catalogue-ctan /language/greek/ibycus-babel +catalogue-license lppl +catalogue-topics greek multilingual-addon +catalogue-version 3.0 + +name ibygrk +category Package +revision 15878 +shortdesc Fonts and macros to typeset ancient Greek +relocated 1 +longdesc Ibycus is a Greek typeface, based on Silvio Levy's realisation +longdesc of a classic Didot cut of Greek type from around 1800. The +longdesc fonts are available both as Metafont source and in Adobe Type 1 +longdesc format. This distribution of ibycus is accompanied by a set of +longdesc macro packages to use it with Plain TeX or LaTeX, but for use +longdesc with Babel, see the ibycus-babel package. +execute addMixedMap iby.map +containersize 138944 +containerchecksum 89002af0024ec804ebffcc45f3a33337ffdb66f71e1ca70224b0936388892dadf99605a8ca3f59a2b879e76e24acc91b1da92622d602f49b236aecb8aafe64b9 +doccontainersize 15576 +doccontainerchecksum 9dd3bd7a8ef3267965f30048e4a71314b6a9813cb400b7a94dfe285606d7554cde80aa429603d0fb1f587935e193e5ece5ed67870fc4e0c66eb5152c392a9cdc +docfiles size=18 + RELOC/doc/fonts/ibygrk/COPYING + RELOC/doc/fonts/ibygrk/NEWS + RELOC/doc/fonts/ibygrk/README details="General and installation Readme" + RELOC/doc/fonts/ibygrk/README.ibycus4 + RELOC/doc/fonts/ibygrk/iby4text.tex + RELOC/doc/fonts/ibygrk/ibycus3.RME + RELOC/doc/fonts/ibygrk/ibycus4.ltx + RELOC/doc/fonts/ibygrk/psibycus.ltx + RELOC/doc/fonts/ibygrk/psibycus.tex +runfiles size=109 + RELOC/fonts/afm/public/ibygrk/fibb84.afm + RELOC/fonts/afm/public/ibygrk/fibr84.afm + RELOC/fonts/enc/dvips/ibygrk/IbycusHTG.enc + RELOC/fonts/map/dvips/ibygrk/iby.map + RELOC/fonts/source/public/ibygrk/abary4.mf + RELOC/fonts/source/public/ibygrk/cigma4.mf + RELOC/fonts/source/public/ibygrk/digamma4.mf + RELOC/fonts/source/public/ibygrk/ebary4.mf + RELOC/fonts/source/public/ibygrk/fibb84.mf + RELOC/fonts/source/public/ibygrk/fibb848.mf + RELOC/fonts/source/public/ibygrk/fibb849.mf + RELOC/fonts/source/public/ibygrk/fibo84.mf + RELOC/fonts/source/public/ibygrk/fibo848.mf + RELOC/fonts/source/public/ibygrk/fibo849.mf + RELOC/fonts/source/public/ibygrk/fibr84.mf + RELOC/fonts/source/public/ibygrk/fibr848.mf + RELOC/fonts/source/public/ibygrk/fibr849.mf + RELOC/fonts/source/public/ibygrk/hbary4.mf + RELOC/fonts/source/public/ibygrk/ibary4.mf + RELOC/fonts/source/public/ibygrk/ibyacc4.mf + RELOC/fonts/source/public/ibygrk/ibycus4.map + RELOC/fonts/source/public/ibygrk/ibycus4.mf + RELOC/fonts/source/public/ibygrk/ibylig4.mf + RELOC/fonts/source/public/ibygrk/ibylwr4.mf + RELOC/fonts/source/public/ibygrk/ibypnct4.mf + RELOC/fonts/source/public/ibygrk/ibyupr4.mf + RELOC/fonts/source/public/ibygrk/koppa4.mf + RELOC/fonts/source/public/ibygrk/obary4.mf + RELOC/fonts/source/public/ibygrk/sampi4.mf + RELOC/fonts/source/public/ibygrk/ubary4.mf + RELOC/fonts/source/public/ibygrk/version4.mf + RELOC/fonts/source/public/ibygrk/wbary4.mf + RELOC/fonts/tfm/public/ibygrk/fibb84.tfm + RELOC/fonts/tfm/public/ibygrk/fibb848.tfm + RELOC/fonts/tfm/public/ibygrk/fibb849.tfm + RELOC/fonts/tfm/public/ibygrk/fibo84.tfm + RELOC/fonts/tfm/public/ibygrk/fibo848.tfm + RELOC/fonts/tfm/public/ibygrk/fibo849.tfm + RELOC/fonts/tfm/public/ibygrk/fibr84.tfm + RELOC/fonts/tfm/public/ibygrk/fibr848.tfm + RELOC/fonts/tfm/public/ibygrk/fibr849.tfm + RELOC/fonts/type1/public/ibygrk/fibb84.pfb + RELOC/fonts/type1/public/ibygrk/fibr84.pfb + RELOC/tex/generic/ibygrk/Uibycus.fd + RELOC/tex/generic/ibygrk/Uibycus4.fd + RELOC/tex/generic/ibygrk/iby4extr.tex + RELOC/tex/generic/ibygrk/ibycus4.map + RELOC/tex/generic/ibygrk/ibycus4.sty + RELOC/tex/generic/ibygrk/ibycus4.tex + RELOC/tex/generic/ibygrk/ibycusps.tex + RELOC/tex/generic/ibygrk/psibycus.sty + RELOC/tex/generic/ibygrk/pssetiby.tex + RELOC/tex/generic/ibygrk/setiby4.tex + RELOC/tex/generic/ibygrk/tlgsqq.tex + RELOC/tex/generic/ibygrk/version4.tex +catalogue-ctan /fonts/greek/ibygrk +catalogue-license gpl +catalogue-topics font font-greek greek +catalogue-version 4.5 + +name icite +category Package +revision 54512 +shortdesc Indices locorum citatorum +relocated 1 +longdesc The package is designed to produce from BibTeX or BibLaTeX +longdesc bibliographical databases the different indices of authors and +longdesc works cited which are called indices locorum citatorum. It +longdesc relies on a specific \icite command and can operate with either +longdesc BibTeX or BibLaTeX. +containersize 2444 +containerchecksum cee4e7f2fd3a007c79966520058ae3db836fca0d9b03dc264d2889ac399bfc7db58e11f3d65de4eae8fa378a774908d36e789441fc244b54c86886fe568cd2d2 +doccontainersize 272248 +doccontainerchecksum 09c862c89133912f7ed714678b3e1d041e529f4c8123e0241e1d0f531bcdd3036f9307ec8a34cc1f25df8cb38b5a8b5213f4a486204b21e5481f65ca1949db33 +docfiles size=101 + RELOC/doc/latex/icite/README.md details="Readme" + RELOC/doc/latex/icite/icite.pdf details="Package documentation" + RELOC/doc/latex/icite/samples/bibsample.bib + RELOC/doc/latex/icite/samples/icite-biblatex.pdf + RELOC/doc/latex/icite/samples/icite-biblatex.tex + RELOC/doc/latex/icite/samples/icite-minimal.pdf + RELOC/doc/latex/icite/samples/icite-minimal.tex + RELOC/doc/latex/icite/samples/icite-nobiblatex.pdf + RELOC/doc/latex/icite/samples/icite-nobiblatex.tex +srccontainersize 13520 +srccontainerchecksum 068a63ac822952f6a14eb12362cb94f4f8ef3ed877ef7e40f55e0a234a1736c6fa60276ba80c793c15562889a1cf20caec6baf67daa5e20a3c46cee2c10f6474 +srcfiles size=14 + RELOC/source/latex/icite/Makefile + RELOC/source/latex/icite/icite.dtx + RELOC/source/latex/icite/icite.ins +runfiles size=2 + RELOC/tex/latex/icite/icite.sty +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-license gpl3+ cc-by-sa-4 +catalogue-topics biblatex index bibtex-supp humanities cite-supp +catalogue-version 1.3a + +name icsv +category Package +revision 15878 +shortdesc Class for typesetting articles for the ICSV conference +relocated 1 +longdesc This is an ad-hoc class for typesetting articles for the ICSV +longdesc conference, based on the earler active-conf by the same author. +containersize 3596 +containerchecksum e865708ef636c7c917cc9a870eaba4b8c0249acba01bd2cd3fbfc9d95672405db133bbf0faf9f2d299bc4024118b80b4354ecb8216427507f66817cac085e01b +doccontainersize 209444 +doccontainerchecksum dd06bf5d8a087bcb20c63a61cb9867bda3df35e8adf30a3d4ca69ab149772d46e3b83f168a8fc1c597aa2536a14b98561f42226a59b6663f58de4e338f9b4e82 +docfiles size=58 + RELOC/doc/latex/icsv/README + RELOC/doc/latex/icsv/icsv-example.tex + RELOC/doc/latex/icsv/icsv.pdf details="Package documentation" +srccontainersize 10304 +srccontainerchecksum 9ee3fecec68c7719a39d83860e8efaca3f5daafd82b9ed06af9ac38ffa3659d03f7ecec5407d568ec5f071c22c0cb33166449b64757be7b740943472d9ca1941 +srcfiles size=10 + RELOC/source/latex/icsv/icsv.dtx + RELOC/source/latex/icsv/icsv.ins +runfiles size=3 + RELOC/tex/latex/icsv/icsv.cls +catalogue-ctan /macros/latex/contrib/conferences/icsv +catalogue-license lppl +catalogue-topics confproc +catalogue-version 0.2 + +name identkey +category Package +revision 49018 +shortdesc Typesetting bracketed dichotomous identification keys +relocated 1 +longdesc The package is for typesetting bracketed dichotomous +longdesc identification keys. +containersize 1196 +containerchecksum b04dc4859826ad3f4fc4dd4a9b19abc0f6125d66d200519652a130c522fc6b49de8565af73f81efa9e75d592036ccca6d373a368e66526d8997dab9d8a5f806f +doccontainersize 488 +doccontainerchecksum c676908535a4a67efd8569e81a1d3ce5a47bf7a5ec755e87e62830e370fa3307bf0d6a84f3ec7c399bca3cc365f97469393a6fc954bf83b2e2fbc9eda9983811 +docfiles size=1 + RELOC/doc/latex/identkey/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/identkey/identkey.sty +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-license gpl3 +catalogue-topics biology +catalogue-version 0.1.0 + +name idxcmds +category Package +revision 54554 +shortdesc Semantic commands for adding formatted index entries +relocated 1 +longdesc The package provides commands for adding formatted index +longdesc entries; it arises from the author's work on large documents. +containersize 2380 +containerchecksum ba1737eac5f6985ab4a0bb25aece07fd0668533ba046d9f980e4c4ba4862c9045e19c06a477e498df027fc0cc2af5503683389377287d58ae89690c58b5f6683 +doccontainersize 413600 +doccontainerchecksum 1894abf19f05ea74aad0ac1fed2409478dac130a019a44d6bf2c909cb1de66e4c9ec543c75db6d9238982f51af066a4287bd8827f89a59d3d9ba6d3f79aed4cf +docfiles size=105 + RELOC/doc/latex/idxcmds/README details="Readme" + RELOC/doc/latex/idxcmds/idxcmds_en.pdf details="Package documentation" + RELOC/doc/latex/idxcmds/idxcmds_en.tex +runfiles size=3 + RELOC/tex/latex/idxcmds/idxcmds.sty +catalogue-contact-repository https://github.com/cgnieder/idxcmds/ +catalogue-ctan /macros/latex/contrib/idxcmds +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 0.2c + +name idxlayout +category Package +revision 25821 +shortdesc Configurable index layout, responsive to KOMA-Script and memoir +relocated 1 +longdesc The idxlayout package offers a key-value interface to configure +longdesc index layout parameters, e.g. allowing for three-column indexes +longdesc or for "parent" items and their affiliated subitems being +longdesc typeset as a single paragraph. The package is responsive to the +longdesc index-related options and commands of the KOMA-Script and +longdesc memoir classes. +containersize 2708 +containerchecksum 968d869a0b635b14ce8ce85e710c987ecd8ea2efb97a03314098014366ece450b4566d626031e11b52d7ede53a019665640fc1626dd1e24651275b35a8f2cac6 +doccontainersize 338936 +doccontainerchecksum 469a20893247406856f15dad6b14050e221299dc2adc40f1547361d74d3f7ce90ba6eabde06402bdbe22c845119df4bbfa8b999931e99c1b944b165f3b245892 +docfiles size=84 + RELOC/doc/latex/idxlayout/README details="Readme" language="en" + RELOC/doc/latex/idxlayout/idxlayout.pdf details="Package documentation" language="en" +srccontainersize 12428 +srccontainerchecksum a2fac68e0c6c0f2cc0c9472d9d58882c337f519caa3b2bb088a330bda4f65b43a1acbbdf936e4975f3c628ce1f5a45f58def28cb129a0708a0b4168cbcdcac0a +srcfiles size=12 + RELOC/source/latex/idxlayout/idxlayout.dtx + RELOC/source/latex/idxlayout/idxlayout.ins +runfiles size=2 + RELOC/tex/latex/idxlayout/idxlayout.sty +catalogue-ctan /macros/latex/contrib/idxlayout +catalogue-license lppl +catalogue-topics index +catalogue-version 0.4d + +name ieeepes +category Package +revision 17359 +shortdesc IEEE Power Engineering Society Transactions +relocated 1 +longdesc Supports typesetting of transactions, as well as discussions +longdesc and closures, for the IEEE Power Engineering Society +longdesc Transactions journals. +containersize 9512 +containerchecksum 60ae4ff80be5c2b02e2ebeea5954ed61b73dbc085a4d282004796d9be6038cc7c8020b7c81226d7dc7b121683e4196e461c7c3d101bb460eb8c39bf2da179bb2 +doccontainersize 248084 +doccontainerchecksum ae2413800f1bd4c0467321a7332fac15a8010e31ba7a4effc0fdb44e9e7a0001ba62d6acb44a72eb6f996560ddf96231b7355c4b9ad8b816be102a143b7c8011 +docfiles size=86 + RELOC/doc/latex/ieeepes/README details="Readme" + RELOC/doc/latex/ieeepes/ieeepes_check.bib + RELOC/doc/latex/ieeepes/ieeepes_check.tex + RELOC/doc/latex/ieeepes/ieeepes_doc.pdf details="Package documentation" + RELOC/doc/latex/ieeepes/ieeepes_doc.tex + RELOC/doc/latex/ieeepes/ieeepes_skel.tex + RELOC/doc/latex/ieeepes/vk.eps +runfiles size=9 + RELOC/bibtex/bst/ieeepes/ieeepes.bst + RELOC/tex/latex/ieeepes/ieeepes.sty +catalogue-ctan /macros/latex/contrib/ieeepes +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 4.0 + +name ietfbibs +category Package +revision 41332 +shortdesc Generate BibTeX entries for various IETF index files +relocated 1 +longdesc The package provides scripts to translate IETF index files to +longdesc BibTeX files. +containersize 456 +containerchecksum ad8796bf4e492072dcc9335f913ae2b5d81f2152289ca76cfbb61a63577c631bc38f5cad6860aef47b1fb54c02157f509c23c3f903b34b8e7a82b8604eaa449a +doccontainersize 3464 +doccontainerchecksum 586dc66004dcf4abed254d223394badd45557d79c7e1b56bd20080f41185ea8dca28b3d501e708cc3ed4088f1368f153ba2d2af313d5d6add2d072b46954952f +docfiles size=10 + RELOC/doc/bibtex/ietfbibs/CHANGELOG.md + RELOC/doc/bibtex/ietfbibs/LICENSE.md + RELOC/doc/bibtex/ietfbibs/Makefile + RELOC/doc/bibtex/ietfbibs/README.md details="Readme" + RELOC/doc/bibtex/ietfbibs/id2bib + RELOC/doc/bibtex/ietfbibs/id2bib.awk + RELOC/doc/bibtex/ietfbibs/ids.tex + RELOC/doc/bibtex/ietfbibs/rfc2bib + RELOC/doc/bibtex/ietfbibs/rfc2bib.awk + RELOC/doc/bibtex/ietfbibs/rfcs.tex +catalogue-contact-repository https://github.com/mor1/ietfbibs +catalogue-ctan /biblio/bibtex/utils/ietfbibs +catalogue-license mit +catalogue-topics bibtex-gen +catalogue-version 1.0.0 + +name iffont +category Package +revision 38823 +shortdesc Conditionally load fonts with fontspec +relocated 1 +longdesc This package provides a macro to select the first font XeLaTeX +longdesc or LuaTeX can find in a comma separated list and, additionally, +longdesc a number of macro tests. +containersize 1348 +containerchecksum a2a329da661f003edac0e0bc701958e0744864f8693ffccce7f1ea6867eaabe7d71b38a1dbef8bc27f770e8b4c30a4480ede1dd575d26860095575020db987f6 +doccontainersize 28352 +doccontainerchecksum 95a8f7357f095dc39ff642edeb6d7df206c37ef01c14a1daa280939d44047c5a935eb18049c280ce00238ad4fdfef6abe7399dd8c6fc815b7c70b22072465453 +docfiles size=9 + RELOC/doc/latex/iffont/README.md details="Readme" + RELOC/doc/latex/iffont/iffont.pdf details="Package documentation" +srccontainersize 3452 +srccontainerchecksum 2a12158850d95a2008e5a845914293cc9aae54dedd54e4a13a27899b0bb8c272e43bba374447b34913f7b4aae01aff9b9fee981240bed93f8995dfc53eefd2e5 +srcfiles size=4 + RELOC/source/latex/iffont/iffont.dtx + RELOC/source/latex/iffont/iffont.ins +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-license lppl1.3 +catalogue-topics font-mgmt +catalogue-version 1.0.0 + +name ifmslide +category Package +revision 20727 +shortdesc Presentation slides for screen and printouts +relocated 1 +longdesc This package is used to produce printed slides with LaTeX and +longdesc online presentations with pdfLaTeX. It is provided by the +longdesc 'Institute of Mechanics' (ifm) Univ. of Technology Darmstadt, +longdesc Germany. It is based on ideas of pdfslide, but completely +longdesc rewritten for compatibility with texpower and seminar. The +longdesc manual describes all functions and provides a sample. +containersize 242848 +containerchecksum c9027b8bb34f15e667e530a8b8d57b793ed16a7ea33feabe58f22cd71230945905054e01853561f4cbaf5fe22f4aa140cbc95072f375d567f57bcce3c4d07d09 +doccontainersize 204412 +doccontainerchecksum 4e7a64773cc1a14df0d2f58ae0b66d1769b44958bafa8fdd4e51bc294555e7895632b741b47edbc29fc5f5ac0ddd73dddcc16723a7297c12311d3915e88f633d +docfiles size=89 + RELOC/doc/latex/ifmslide/README details="Readme" + RELOC/doc/latex/ifmslide/genbutton + RELOC/doc/latex/ifmslide/ifmman.pdf details="Package manual" + RELOC/doc/latex/ifmslide/ifmman.tex +runfiles size=211 + RELOC/tex/latex/ifmslide/aqua_ravines.eps + RELOC/tex/latex/ifmslide/aqua_ravines.jpg + RELOC/tex/latex/ifmslide/button1c.eps + RELOC/tex/latex/ifmslide/button1c.pdf + RELOC/tex/latex/ifmslide/button1e.eps + RELOC/tex/latex/ifmslide/button1e.pdf + RELOC/tex/latex/ifmslide/buttonec.eps + RELOC/tex/latex/ifmslide/buttonec.pdf + RELOC/tex/latex/ifmslide/buttonee.eps + RELOC/tex/latex/ifmslide/buttonee.pdf + RELOC/tex/latex/ifmslide/buttongc.eps + RELOC/tex/latex/ifmslide/buttongc.pdf + RELOC/tex/latex/ifmslide/buttonge.eps + RELOC/tex/latex/ifmslide/buttonge.pdf + RELOC/tex/latex/ifmslide/ifmlogoc.eps + RELOC/tex/latex/ifmslide/ifmlogoc.pdf + RELOC/tex/latex/ifmslide/ifmlogog.eps + RELOC/tex/latex/ifmslide/ifmlogog.pdf + RELOC/tex/latex/ifmslide/ifmslide.cfg + RELOC/tex/latex/ifmslide/ifmslide.sty + RELOC/tex/latex/ifmslide/liquid_helium.eps + RELOC/tex/latex/ifmslide/liquid_helium.jpg +catalogue-also prosper +catalogue-ctan /macros/latex/contrib/ifmslide +catalogue-license lppl1.2 +catalogue-topics presentation +catalogue-version 0.47 + +name ifmtarg +category Package +revision 47544 +shortdesc If-then-else command for processing potentially empty arguments +relocated 1 +longdesc This package provides a command for the LaTeX programmer for +longdesc testing whether an argument is empty. +containersize 664 +containerchecksum b04aebac5acfe90a149f417cdf0d45b3a7cbe53d53d4d9f39d5badddfcb894e07f397933199bca702f3f0e66458133ba17feb5ace2ebda4a25bb24bf1af5d259 +doccontainersize 36996 +doccontainerchecksum 8f456c15ecd5090d2124a85b02c1ad100dc999064b258678cad3c444acae3e88b95e38f7ad1785bfc91f385d6bc1664c0b58282d5ef36e6cff9857b81176ab7b +docfiles size=10 + RELOC/doc/latex/ifmtarg/README + RELOC/doc/latex/ifmtarg/ifmtarg.pdf details="Package documentation" +srccontainersize 2712 +srccontainerchecksum e30806ba6fa85737f67dbfbf7cc1556781bd4cb2179672e5b9980e7f625366d5627c69411dae34a9e1c0fc29c16acaf302c344d9d93b9dd4afdf23bea020cc63 +srcfiles size=3 + RELOC/source/latex/ifmtarg/ifmtarg.ins + RELOC/source/latex/ifmtarg/ifmtarg.tex +runfiles size=1 + RELOC/tex/latex/ifmtarg/ifmtarg.sty +catalogue-ctan /macros/latex/contrib/ifmtarg +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.2b + +name ifnextok +category Package +revision 23379 +shortdesc Utility macro: peek ahead without ignoring spaces +relocated 1 +longdesc The package deals with the behaviour of the LaTeX internal +longdesc command \@ifnextchar, which skips blank spaces. This has the +longdesc potential to surprise users, since it can produce really +longdesc unwanted effects. A common example occurs with brackets +longdesc starting a line following \\: the command looks for an optional +longdesc argument, whereas the user wants the brackets to be printed. +longdesc The package offers commands and options for modifying this +longdesc behaviour, maybe limited to certain parts of the document +longdesc source. +containersize 10756 +containerchecksum a56c703e1830fa64432d1b3aa72d3dff52b17c0e5b90b2cb34f7dff974e51331f5d9daa2b5aba578a8bc4a73b693c9a3dd811c6d7e32379165cc7ec1349c541b +doccontainersize 215452 +doccontainerchecksum 1eeb8d7627ad8887761e66704a8f3c848b633a4f3a5b094626b3c64888e6db95c25b8dbad4332887a6d9e866e4aada2816b7c7e7fd19c07dba03db38842886fe +docfiles size=70 + RELOC/doc/latex/ifnextok/README details="Readme" + RELOC/doc/latex/ifnextok/RELEASEs.txt + RELOC/doc/latex/ifnextok/SRCFILEs.txt + RELOC/doc/latex/ifnextok/ifnextok.pdf details="Package documentation" + RELOC/doc/latex/ifnextok/testIfNT.pdf +srccontainersize 2820 +srccontainerchecksum 05422af6ee53e12ad124b314388811490304c5f42b81b17aa899e7cea5c548395043abf4abfd0d4819e6338b6d93e99c57929d18312f49500f0368038e440495 +srcfiles size=4 + RELOC/source/latex/ifnextok/ifnextok.tex + RELOC/source/latex/ifnextok/makedoc.cfg + RELOC/source/latex/ifnextok/srcfiles.tex + RELOC/source/latex/ifnextok/testIfNT.tex +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-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.3 + +name ifoddpage +category Package +revision 56291 +shortdesc Determine if the current page is odd or even +relocated 1 +longdesc The package provides an \ifoddpage conditional to determine if +longdesc the current page is odd or even. The macro \checkoddpage must +longdesc be used direct before to check the page number using a label. +longdesc Two compiler runs are therefore required to achieve correct +longdesc results. In addition, the conditional \ifoddpageoronside is +longdesc provided which is also true in oneside mode where all pages use +longdesc the odd page layout. +containersize 1456 +containerchecksum f56738031814ba4d980455765212f074979b95ccfe62b1661e2017a839bc774b5423f994196a23e763644d40b9842221a5c862f9b427f335f5788d34bbcb9acb +doccontainersize 134584 +doccontainerchecksum e9fdf6ca02d33a52e89046f4d648204a0e560d97e9a12aa5742971e654bdc05867460ec10cbdb5441fc66ba02d2e078007593d9c4c898f290e61965eb6111007 +docfiles size=34 + RELOC/doc/latex/ifoddpage/README details="Readme" + RELOC/doc/latex/ifoddpage/ifoddpage.pdf details="Package documentation" +srccontainersize 4176 +srccontainerchecksum d6e471eb7014a93a4593234f3f2c81fcd1b7a758d73bd3b659c86812304e9eb9a9a29b8a653653e4672a79f75c2399bdf30491069bdc26c0e45ce9834fd8de40 +srcfiles size=4 + RELOC/source/latex/ifoddpage/ifoddpage.dtx + RELOC/source/latex/ifoddpage/ifoddpage.ins +runfiles size=1 + RELOC/tex/latex/ifoddpage/ifoddpage.sty +catalogue-contact-bugs https://sourceforge.net/p/ifoddpage/tickets/ +catalogue-contact-home https://sourceforge.net/p/ifoddpage/ +catalogue-contact-repository https://sourceforge.net/p/ifoddpage/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/ifoddpage +catalogue-license lppl1.3 +catalogue-topics typesetting macro-supp +catalogue-version 1.1 + +name ifplatform +category Package +revision 45533 +shortdesc Conditionals to test which platform is being used +relocated 1 +longdesc This package uses the (La)TeX extension -shell-escape to +longdesc establish whether the document is being processed on a Windows +longdesc or on a Unix-like system (Mac OS X, Linux, etc.), or on Cygwin +longdesc (Unix environment over a windows system). Booleans provided +longdesc are: \ifwindows, \iflinux, \ifmacosx and \ifcygwin. The package +longdesc also preserves the output of uname on a Unix-like system, which +longdesc may be used to distinguish between various classes of Unix +longdesc systems. +containersize 2024 +containerchecksum 952f87877c058c1e8ba3df227ed7332501e7861bdfd2a29878dc4b14e6b95a1b116459bef7f65c5bf277c95d08120c7e9fa9576a7654739e4a26125ca4d5c724 +doccontainersize 151716 +doccontainerchecksum 520004cfa412c2a24ece0e00b11d457405e71a446e554a1d930e60ea7dbd00f61b2b6a7ecbe89b62610316fd3b6fad685d7013042fa71fd7fb270b40748dee56 +docfiles size=38 + RELOC/doc/latex/ifplatform/README details="Readme" + RELOC/doc/latex/ifplatform/ifplatform.pdf details="Package documentation" +srccontainersize 5436 +srccontainerchecksum a3c33b16decd5fb443d9b5bb13f3a5e0ed56705d353b0260772d81f963460ff7e914fb1d7f4ee24e249bf15af77368ddc6fea49014202389baaf035f2165e17f +srcfiles size=5 + RELOC/source/latex/ifplatform/ifplatform.dtx + RELOC/source/latex/ifplatform/ifplatform.ins +runfiles size=1 + RELOC/tex/latex/ifplatform/ifplatform.sty +catalogue-contact-repository https://github.com/wspr/will2e +catalogue-ctan /macros/latex/contrib/ifplatform +catalogue-license lppl1.3c +catalogue-topics env-query +catalogue-version 0.4a + +name ifptex +category Package +revision 52626 +shortdesc Check if the engine is pTeX or one of its derivatives +relocated 1 +longdesc The ifptex package is a counterpart of ifxetex, ifluatex, etc. +longdesc for the ptex engine. The ifuptex package is an alias to ifptex +longdesc provided for backward compatibility. +containersize 3828 +containerchecksum cd06bd01d071c091962451850de4cf78c0ed7604b392e6c0eb59fd66b202ed9f015cac75b6260bfe071b70246cb1d9a70a5bc9f052876469ace54a68ef250e22 +doccontainersize 3176 +doccontainerchecksum 6d6668a5f663aeeddd19c5f8086633d6542316807d0dbfc94e8ed1991136dc2258718e61a450dcc3c1560af3d349519ca2da98a05964741083dbb66ef85fb848 +docfiles size=3 + RELOC/doc/generic/ifptex/LICENSE + RELOC/doc/generic/ifptex/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/generic/ifptex/README.md details="Readme" +runfiles size=4 + RELOC/tex/generic/ifptex/ifptex.sty + RELOC/tex/generic/ifptex/ifuptex.sty +catalogue-contact-repository https://github.com/zr-tex8r/ifptex +catalogue-ctan /macros/generic/ifptex +catalogue-license mit +catalogue-topics env-query japanese +catalogue-version 2.0 + +name ifsym +category Package +revision 24868 +shortdesc A collection of symbols +relocated 1 +longdesc A set of symbol fonts, written in Metafont, offering +longdesc (respectively) clock-face symbols, geometrical symbols, weather +longdesc symbols, mountaineering symbols, electronic circuit symbols and +longdesc a set of miscellaneous symbols. A LaTeX package is provided, +longdesc that allows the user to load only those symbols needed in a +longdesc document. +containersize 9808 +containerchecksum ef6615a3768f87009d22c3feeaa074a0589b17efc8585a509e21692195a100e5b11e2d0849fa2eaf8f80cbe0d96ea12e773aee0be28e7120ee80a86dcfa6f8e2 +doccontainersize 120996 +doccontainerchecksum 10dca0c00a52d9d9775bd2ae35b50d7d56294da9b8eb21f2bc35f7863cbf1ab357cf8f3e1d949570ebf4908a60d9ccfe604e69fe779780c8e7527172f3f0e999 +docfiles size=161 + RELOC/doc/fonts/ifsym/ifsym.ps details="Documentation and font tables (German)" language="de" +runfiles size=46 + RELOC/fonts/source/public/ifsym/ifclk.gen + RELOC/fonts/source/public/ifsym/ifclk10.mf + RELOC/fonts/source/public/ifsym/ifclkb10.mf + RELOC/fonts/source/public/ifsym/ifgeo.gen + RELOC/fonts/source/public/ifsym/ifgeo10.mf + RELOC/fonts/source/public/ifsym/ifgeob10.mf + RELOC/fonts/source/public/ifsym/ifgeobn10.mf + RELOC/fonts/source/public/ifsym/ifgeobw10.mf + RELOC/fonts/source/public/ifsym/ifgeon10.mf + RELOC/fonts/source/public/ifsym/ifgeow10.mf + RELOC/fonts/source/public/ifsym/ifsym.gen + RELOC/fonts/source/public/ifsym/ifsym10.mf + RELOC/fonts/source/public/ifsym/ifsymb10.mf + RELOC/fonts/source/public/ifsym/ifsymbi10.mf + RELOC/fonts/source/public/ifsym/ifsymi10.mf + RELOC/fonts/source/public/ifsym/ifwea.gen + RELOC/fonts/source/public/ifsym/ifwea10.mf + RELOC/fonts/source/public/ifsym/ifweab10.mf + RELOC/fonts/tfm/public/ifsym/ifclk10.tfm + RELOC/fonts/tfm/public/ifsym/ifclkb10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeo10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeob10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeobn10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeobw10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeon10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeow10.tfm + RELOC/fonts/tfm/public/ifsym/ifsym10.tfm + RELOC/fonts/tfm/public/ifsym/ifsymb10.tfm + RELOC/fonts/tfm/public/ifsym/ifsymbi10.tfm + RELOC/fonts/tfm/public/ifsym/ifsymi10.tfm + RELOC/fonts/tfm/public/ifsym/ifwea10.tfm + RELOC/fonts/tfm/public/ifsym/ifweab10.tfm + RELOC/tex/latex/ifsym/ifsym.sty + RELOC/tex/latex/ifsym/uifblk.fd + RELOC/tex/latex/ifsym/uifclk.fd + RELOC/tex/latex/ifsym/uifgeo.fd + RELOC/tex/latex/ifsym/uifsym.fd + RELOC/tex/latex/ifsym/uifwea.fd +catalogue-ctan /fonts/ifsym +catalogue-license other-free +catalogue-topics font font-mf font-symbol + +name iftex +category Package +revision 56594 +shortdesc Am I running under pdfTeX, XeTeX or LuaTeX? +relocated 1 +longdesc The package, which works both for Plain TeX and for LaTeX, +longdesc defines the \ifPDFTeX, \ifXeTeX, and \ifLuaTeX conditionals for +longdesc testing which engine is being used for typesetting. The package +longdesc also provides the \RequirePDFTeX, \RequireXeTeX, and +longdesc \RequireLuaTeX commands which throw an error if pdfTeX, XeTeX +longdesc or LuaTeX (respectively) is not the engine in use. +containersize 3008 +containerchecksum 07e15945295e3d5c2f6a6e4087d16f1f5ca6014f2ae98bfd25a18d32efd07c4da4542676fa164ecdbe326d478b1370337577638ed2031cdb9f0b2b1961b86855 +doccontainersize 218576 +doccontainerchecksum a0497c07ddc2087b8291c9f017101950bb774ae387db082497b859491e38d4fe22d7f69ee9bc093ee9d70d7b67796fdbe643b76322f5fa3577aba5733c7aa105 +docfiles size=56 + RELOC/doc/generic/iftex/README.md details="Readme" + RELOC/doc/generic/iftex/iftex.pdf details="Package documentation" + RELOC/doc/generic/iftex/iftex.tex +runfiles size=7 + RELOC/tex/generic/iftex/ifetex.sty + RELOC/tex/generic/iftex/ifluatex.sty + RELOC/tex/generic/iftex/ifpdf.sty + RELOC/tex/generic/iftex/iftex.sty + RELOC/tex/generic/iftex/ifvtex.sty + RELOC/tex/generic/iftex/ifxetex.sty +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/generic/iftex +catalogue-license lppl1.3c +catalogue-topics env-query macro-gen +catalogue-version 1.0d + +name ifthenx +category Package +revision 25819 +shortdesc Extra tests for \ifthenelse +relocated 1 +longdesc The package extends the ifthen package, providing extra +longdesc predicates for the package's \ifthenelse command. The package +longdesc is complementary to xifthen, in that they provide different +longdesc facilities; the two may be loaded in the same document, as long +longdesc as xifthen is loaded first. +containersize 4116 +containerchecksum 76235d3f8dc4e62604828beaf87327d11d4a9ff69061edf1a3ed4c874983251fba75d80973e54fb3daa2d160b27000089f4cdf1c29748124825fb4075b6f7148 +doccontainersize 1924 +doccontainerchecksum efc4fa3b5d6e91d1d5af27846bf2652672a233537810051b2858c1c4ffacafb9771b2c3a222cea4d490e0478eef96b205c4043f4957b876b7f4d57903b26454d +docfiles size=1 + RELOC/doc/latex/ifthenx/README details="Readme" +runfiles size=3 + RELOC/tex/latex/ifthenx/ifthenx.sty +catalogue-also xifthen +catalogue-ctan /macros/latex/contrib/ifthenx +catalogue-license lppl +catalogue-topics macro-supp cond-comp +catalogue-version 0.1a + +name ifxptex +category Package +revision 46153 +shortdesc Detect pTeX and its derivatives +relocated 1 +longdesc The package provides commands for detecting pTeX and its +longdesc derivatives (e-pTeX, upTeX, e-upTeX, and ApTeX). Both LaTeX and +longdesc plain TeX are supported. +containersize 1268 +containerchecksum 7bc52847fe21879614ffe673ebec74c735c70e07d63649def00f70d22db80faa920f0764f76c5094ef982abbff8202ca55410ee92d033c45ec43fd25adabb23b +doccontainersize 199416 +doccontainerchecksum 1bc4feaacbdd33ba6f46c699969638cdc8a4b962287332476d0d163a10141136f9b913027ccc3418033dee0862d5e572957dbe07d47371c1d932103958151e27 +docfiles size=52 + RELOC/doc/generic/ifxptex/README details="Readme" + RELOC/doc/generic/ifxptex/ifxptex-doc.pdf details="Package documentation" + RELOC/doc/generic/ifxptex/ifxptex-doc.tex +runfiles size=1 + RELOC/tex/generic/ifxptex/ifxptex.sty +catalogue-also ifptex +catalogue-contact-repository https://github.com/Man-Ting-Fang/ifxptex +catalogue-ctan /macros/generic/ifxptex +catalogue-license knuth +catalogue-topics macro-supp env-query +catalogue-version 0.2 + +name iitem +category Package +revision 29613 +shortdesc Multiple level of lists in one list-like environment +relocated 1 +longdesc The package defines multiple level lists within one list-like +longdesc environment. instead of writing \begin{enumerate} \item 1 +longdesc \begin{enumerate} \item 2 \begin{enumerate} \item 3 +longdesc \begin{enumerate} \item 4 \end{enumerate} \end{enumerate} \item +longdesc 2.1 \end{enumerate} \item 1.1 \begin{enumerate} \item 2 +longdesc \end{enumerate} \end{enumerate} this package allows you to +longdesc write \begin{enumerate} \item 1 \iitem 2 \iiitem 3 \ivtem 4 +longdesc \iitem 2.1 \item 1.1 \iitem 2 \end{enumerate} +containersize 1416 +containerchecksum b2b37e68db2b33e414ecbfb9078b60ce5571b7ae931ca828a3c668ea7cccd7b93a2919cadc7723daa3f63a7015939a8046973ade140fba01025dde0d5212edd0 +doccontainersize 379776 +doccontainerchecksum f9f001123e1f49bd90cb3b24448e423068565c9256129e23126791e2ea2bc39788ff5769939d90018087beb1b31fbf3568c6d4962f2e92205717c84aeee54a21 +docfiles size=94 + RELOC/doc/latex/iitem/README details="Readme" + RELOC/doc/latex/iitem/iitem.pdf +srccontainersize 4728 +srccontainerchecksum e24eb4a7a6a635b95b6a1b40d27651eccf86a6c5276aad3ca46cfde08185371fdb34ac2732d87750db74605c14e087d2102399e23ad85a236a68dd5987784c0f +srcfiles size=4 + RELOC/source/latex/iitem/iitem.dtx + RELOC/source/latex/iitem/iitem.ins +runfiles size=1 + RELOC/tex/latex/iitem/iitem.sty +catalogue-ctan /macros/latex/contrib/iitem +catalogue-license lppl +catalogue-topics list +catalogue-version 1.0 + +name ijmart +category Package +revision 30958 +shortdesc LaTeX Class for the Israel Journal of Mathematics +relocated 1 +longdesc The Israel Journal of Mathematics is published by The Hebrew +longdesc University Magnes Press. This class provides LaTeX support for +longdesc its authors and editors. It strives to achieve the distinct +longdesc "look and feel" of the journal, while having the interface +longdesc similar to that of the amsart document class. This will help +longdesc authors already familiar with amsart to easily submit +longdesc manuscripts for The Israel Journal of Mathematics or to put the +longdesc preprints in arXiv with minimal changes in the LaTeX source. +containersize 10720 +containerchecksum a1fc1aca9f557ea9c8c70343ad1e5712a846b8a7edddf2077e78fabc3919b928a5d7e8b1fee0f0bc29ebf7887e26dcda5bd95f2ba613051e52f13f1ee24001d3 +doccontainersize 945544 +doccontainerchecksum 502aebf377c8b13d7699761651cfd67e1e2d10a8e8a022303921aa1e708fe913b217e186b4e2527d8ed81e3db6ff055dba5edbea218d6b9a92f679da66fefe97 +docfiles size=252 + RELOC/doc/latex/ijmart/Makefile + RELOC/doc/latex/ijmart/README details="Readme" + RELOC/doc/latex/ijmart/ijmart.bib + RELOC/doc/latex/ijmart/ijmart.pdf details="Package documentation" + RELOC/doc/latex/ijmart/ijmsample.bib + RELOC/doc/latex/ijmart/ijmsample.pdf details="Sample paper" + RELOC/doc/latex/ijmart/ijmsample.tex +srccontainersize 17084 +srccontainerchecksum e42bfa6ded16f78b764d1ca55e905ae0b2c0a5611b8ffb2e882f121d04855b5f72bf925002bc322cc1106f68c7c68ebb412acc71789d560fbca12051a75860e0 +srcfiles size=15 + RELOC/source/latex/ijmart/ijmart.dtx + RELOC/source/latex/ijmart/ijmart.ins +runfiles size=11 + RELOC/bibtex/bst/ijmart/ijmart.bst + RELOC/tex/latex/ijmart/ijmart.cls +catalogue-ctan /macros/latex/contrib/ijmart +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.7 + +name ijqc +category Package +revision 15878 +shortdesc BibTeX style file for the Intl. J. Quantum Chem +relocated 1 +longdesc ijqc.bst is a BibTeX style file to support publication in +longdesc Wiley's International Journal of Quantum Chemistry. It is not +longdesc in any way officially endorsed by the publisher or editors, and +longdesc is provided without any warranty one could ever think of. +containersize 5972 +containerchecksum 55f7693a820f0cdaafe8697ad352cef2748471711113cfa4738931926cb4d49497f4e825b0a737c233541203cb5c8f23dc4f8326950520e8aa0f4ad27f353347 +doccontainersize 107216 +doccontainerchecksum 6b94eb95d58a06b54a1fb28b26ddec15528ae99286a37631a64b4ced32343872a04b96cb2de540d54c54f02361981ecc575ef7d014a17e1d0111883e92671fad +docfiles size=39 + RELOC/doc/bibtex/ijqc/README details="Package Readme" + RELOC/doc/bibtex/ijqc/makefile + RELOC/doc/bibtex/ijqc/mybib.bib + RELOC/doc/bibtex/ijqc/xampl.pdf details="Example output" + RELOC/doc/bibtex/ijqc/xampl.tex +runfiles size=7 + RELOC/bibtex/bst/ijqc/ijqc.bst +catalogue-ctan /biblio/bibtex/contrib/ijqc +catalogue-license lppl +catalogue-topics bibtex-sty journalpub +catalogue-version 1.2 + +name ijsra +category Package +revision 44886 +shortdesc LaTeX document class for the International Journal of Student Research in Archaeology +relocated 1 +longdesc This is a document class called ijsra which is used for the +longdesc International Journal of Student Research in Archaeology. +containersize 315516 +containerchecksum 9d5db4217675af4577fbf9b7e8a5dc4a42f447e7af60a818d740327326d478afa9071be37c80315b0822fec48d1fefe4e3d6a8dfddb6f34fbc11cd81a5d05a12 +doccontainersize 392404 +doccontainerchecksum a3424b8ed16d1881c5a2c4d80a42277a1c0e3a62484a0d5ee6a18a9ed9fd39fe0de241fefbc723960bfee331908bb5c95a0b1b95ecf5e06d6425ac8e6c2dc342 +docfiles size=101 + RELOC/doc/latex/ijsra/README.md details="Readme" + RELOC/doc/latex/ijsra/ijsra.pdf details="Package documentation" + RELOC/doc/latex/ijsra/ijsra.tex +runfiles size=86 + RELOC/tex/latex/ijsra/ijsra.cls + RELOC/tex/latex/ijsra/ijsra_logo.png +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-license lppl1.3 +catalogue-topics journalpub +catalogue-version 1.1 + +name imac +category Package +revision 17347 +shortdesc International Modal Analysis Conference format +relocated 1 +longdesc A set of files for producing correctly formatted documents for +longdesc the International Modal Analysis Conference. The bundle +longdesc provides a LaTeX package and a BibTeX style file. +containersize 6876 +containerchecksum 5e51d080e18f2a5d9529705d0e8745a8c7b2d0186c929e04434b71ed356df3ee2456c268ce2232da9cdbf6c15182f6580b2b96995a6c48e40fcff1efb001cef9 +doccontainersize 121588 +doccontainerchecksum df4232356db6e2001277bdd8de706549d2f91b2d59d4a55f39c4aa9628e1a2b6ce092a7630ed4fc20096d069d19f2ecdf445129a870ca8bfc9d87e522350798c +docfiles size=36 + RELOC/doc/latex/imac/imac.bib + RELOC/doc/latex/imac/imac.pdf details="Package documentation" + RELOC/doc/latex/imac/imac.tex + RELOC/doc/latex/imac/readme.txt +runfiles size=8 + RELOC/bibtex/bst/imac/imac.bst + RELOC/tex/latex/imac/imac.sty +catalogue-ctan /macros/latex/contrib/imac +catalogue-license gpl +catalogue-topics confproc + +name image-gallery +category Package +revision 15878 +shortdesc Create an overview of pictures from a digital camera or from other sources +relocated 1 +longdesc The class may be used to create an overview of pictures from a +longdesc digital camera or from other sources. It is possible to adjust +longdesc the size of the pictures and all the margins. The example file +longdesc shows the usage. +containersize 2032 +containerchecksum 0435d5011bdaac97c6f36202a03cbe52cb45f83d7dcf37111b9c68706e4cc971b5b13ab5fe0b29cb296f7af4b217a64b5507ea00dfe63e8496e10b5adefeed8b +doccontainersize 726128 +doccontainerchecksum ae9c965bcaeaae17b8a815bac824093a5834f2b96c99bf44527d915ae251cf1dc818279f78d3cbe75e51875e658d47baa3b9657e27f5121ed4e259ae5cc052b9 +docfiles size=399 + RELOC/doc/latex/image-gallery/README details="Readme" + RELOC/doc/latex/image-gallery/gallery-example.pdf details="Example output" + RELOC/doc/latex/image-gallery/gallery-example.tex + RELOC/doc/latex/image-gallery/mypics.txt + RELOC/doc/latex/image-gallery/pic001.jpg + RELOC/doc/latex/image-gallery/pic002.jpg + RELOC/doc/latex/image-gallery/pic003.jpg + RELOC/doc/latex/image-gallery/pic004.jpg + RELOC/doc/latex/image-gallery/pic005.jpg + RELOC/doc/latex/image-gallery/pic006.jpg + RELOC/doc/latex/image-gallery/pic007.jpg + RELOC/doc/latex/image-gallery/pic008.jpg + RELOC/doc/latex/image-gallery/pic009.jpg + RELOC/doc/latex/image-gallery/pic010.jpg + RELOC/doc/latex/image-gallery/pic011.jpg + RELOC/doc/latex/image-gallery/pic012.jpg + RELOC/doc/latex/image-gallery/pic013.jpg + RELOC/doc/latex/image-gallery/pic014.jpg + RELOC/doc/latex/image-gallery/pic015.jpg + RELOC/doc/latex/image-gallery/pic016.jpg + RELOC/doc/latex/image-gallery/pic017.jpg + RELOC/doc/latex/image-gallery/pic018.jpg + RELOC/doc/latex/image-gallery/pic019.jpg + RELOC/doc/latex/image-gallery/pic020.jpg + RELOC/doc/latex/image-gallery/pic021.jpg + RELOC/doc/latex/image-gallery/pic022.jpg +runfiles size=2 + RELOC/tex/latex/image-gallery/image-gallery.cls +catalogue-ctan /macros/latex/contrib/image-gallery +catalogue-license lppl +catalogue-topics graphics-use class +catalogue-version 1.0j + +name imakeidx +category Package +revision 42287 +shortdesc A package for producing multiple indexes +relocated 1 +longdesc The package enables the user to produce and typeset one or more +longdesc indexes simultaneously with a document. The package is known to +longdesc work in LaTeX documents processed with pdfLaTeX, XeLaTeX and +longdesc LuaLaTeX. If makeindex is used for processing the index +longdesc entries, no particular setting up is needed when TeX Live is +longdesc used. Using xindy or other programs it is necessary to enable +longdesc shell escape; shell escape is also needed if splitindex is +longdesc used. +containersize 4072 +containerchecksum 6ca0680f29daf88dfbd26fa87d47a65c8b2c2d534321b814ff78d77d0b97d7fc5654b4dc0b91d12eb0c9373cfaff5fac59f24def8d0f50d97da34fda6f839d84 +doccontainersize 518160 +doccontainerchecksum a07d9461013045274f03145e97d286d930055c4573e917a78e8913841cae30fb61b99e66d098b4ba014cf44e92982301c7d72414e3ce1df176bfd35ecd26ddf0 +docfiles size=129 + RELOC/doc/latex/imakeidx/README details="Readme" + RELOC/doc/latex/imakeidx/imakeidx.pdf details="Package documentation" + RELOC/doc/latex/imakeidx/manifest.txt +srccontainersize 20128 +srccontainerchecksum f3fd8e1a5057cbbfea56a0d21f16bb310fb815ad7363e284083f2c313ac055b1b335fc1c43bbddd1b1beae64ec42e29bb4a194056be658cfd3ee24e49d5e5804 +srcfiles size=17 + RELOC/source/latex/imakeidx/imakeidx.dtx +runfiles size=4 + RELOC/tex/latex/imakeidx/imakeidx.sty +catalogue-ctan /macros/latex/contrib/imakeidx +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 1.3e + +name imfellenglish +category Package +revision 38547 +shortdesc IM Fell English fonts with LaTeX support +relocated 1 +longdesc Igino Marini has implemented digital revivals of fonts +longdesc bequeathed to Oxford University by Dr. John Fell, Bishop of +longdesc Oxford and Dean of Christ Church in 1686. This package provides +longdesc the English family, consisting of Roman, Italic and Small-Cap +longdesc fonts. +execute addMap imfellEnglish.map +containersize 2947156 +containerchecksum 99dcc3e48c55b402adb5e5481615a35f4d6ecc535cf68ac95b223e13bedd8edfad2dcb2d6ce99712646b52d384e02a1500f333823a343d887f87fbed44a06ccc +doccontainersize 143264 +doccontainerchecksum 3ae58fa270354ab028a4cfbd6d23ba12a9969073f28db5ce2de4888af2ec70a904767dfe692ff7ef657e5ce13747e7a2602856b0ee4cc92db87ac8e2f4a9e635 +docfiles size=38 + RELOC/doc/fonts/imfellenglish/COPYING + RELOC/doc/fonts/imfellenglish/README details="Readme" + RELOC/doc/fonts/imfellenglish/imfellEnglish.pdf details="Package documentation" + RELOC/doc/fonts/imfellenglish/imfellEnglish.tex +runfiles size=1431 + RELOC/fonts/enc/dvips/imfellenglish/imfe_5cupvv.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_cycd4j.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_dc7pev.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_fhc46f.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_qauovj.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_s6atnx.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_uut767.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_wnjo6u.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_zxj6gt.enc + RELOC/fonts/map/dvips/imfellenglish/imfellEnglish.map + RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENit28P.otf + RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENrm28P.otf + RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENsc28P.otf + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ts1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1.tfm + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_Italic.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_ItalicLCDFJ.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_Roman.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_RomanLCDFJ.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_SC.pfb + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ts1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1.vf + RELOC/tex/latex/imfellenglish/LY1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/OT1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/T1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/TS1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/imfellEnglish.sty +catalogue-ctan /fonts/imfellenglish +catalogue-license ofl +catalogue-topics font font-otf font-type1 + +name impatient +category Package +revision 54080 +shortdesc Free edition of the book "TeX for the Impatient" +relocated 1 +longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX, +longdesc Plain TeX and Eplain. The book is also available in French and +longdesc Chinese translations. +containersize 452 +containerchecksum 8c606388baf92ebfd113a2e7332c479f1428f4c9b2c5b27f04d9504be29ad20e38b3b538366c2feb78a43998460d362156e9abf8fdb3f8457ff4c8452aeb2141 +doccontainersize 1665608 +doccontainerchecksum 7b0811a691b9ff35fe245df7929164420f2155b4797d372988c7cb7f6052291c5735fdf44a0cd3f7a956be9dec424b5b59385b3f147f39b5beab7b56d1eeae1a +docfiles size=616 + RELOC/doc/plain/impatient/ChangeLog + RELOC/doc/plain/impatient/Makefile + RELOC/doc/plain/impatient/NEWS + RELOC/doc/plain/impatient/README details="Basic project information" + RELOC/doc/plain/impatient/backm.tex + RELOC/doc/plain/impatient/book.ccs + RELOC/doc/plain/impatient/book.pdf details="A copy of the book (English)" language="en" + RELOC/doc/plain/impatient/book.sdx + RELOC/doc/plain/impatient/book.tex + RELOC/doc/plain/impatient/capsule.tex + RELOC/doc/plain/impatient/concepts.tex + RELOC/doc/plain/impatient/config.tex + RELOC/doc/plain/impatient/copyrght.tex + RELOC/doc/plain/impatient/diffs/impatient-2.0-2.3.diff.gz + RELOC/doc/plain/impatient/diffs/impatient-2.3-2.4.diff.gz + RELOC/doc/plain/impatient/diffs/impatient-2.4-2020.diff.gz + RELOC/doc/plain/impatient/eplain.tex + RELOC/doc/plain/impatient/errata.future + RELOC/doc/plain/impatient/errors.tex + RELOC/doc/plain/impatient/examples.tex + RELOC/doc/plain/impatient/fdl.tex + RELOC/doc/plain/impatient/fonts.tex + RELOC/doc/plain/impatient/frontm.tex + RELOC/doc/plain/impatient/genops.tex + RELOC/doc/plain/impatient/index.tex + RELOC/doc/plain/impatient/index1.icn + RELOC/doc/plain/impatient/index2.icn + RELOC/doc/plain/impatient/macros.tex + RELOC/doc/plain/impatient/math.tex + RELOC/doc/plain/impatient/modes.tex + RELOC/doc/plain/impatient/pages.tex + RELOC/doc/plain/impatient/paras.tex + RELOC/doc/plain/impatient/preface.tex + RELOC/doc/plain/impatient/read1st.tex + RELOC/doc/plain/impatient/tips.tex + RELOC/doc/plain/impatient/usebook.tex + RELOC/doc/plain/impatient/usermacs.tex + RELOC/doc/plain/impatient/usingtex.tex + RELOC/doc/plain/impatient/xmptext.tex +catalogue-ctan /info/impatient +catalogue-license fdl +catalogue-topics book-src tut-plaintex french-doc chinese-doc +catalogue-version 2020 + +name impatient-cn +category Package +revision 54080 +catalogue impatient +shortdesc Free edition of the book "TeX for the Impatient" +relocated 1 +longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX, +longdesc Plain TeX and Eplain. The book is also available in French and +longdesc Chinese translations. +containersize 456 +containerchecksum e75363bb36568ec42f13217dc740b839e109529e41ac9cc713e8c7eb620e557dcc08d20f36cbdb5f0e3145d9201d659fc8478d40fae4862fefd3eec005a3463b +doccontainersize 3943832 +doccontainerchecksum ea0918afe1c785d864bc280a6b64a87cc62cabb02540cdf64a7cbf4b8f81afcef9ac85a6f28b5bdbb42a75b6ce1e12139c12d0e1af4183a28115f8d740c6e78e +docfiles size=1289 + RELOC/doc/plain/impatient-cn/Makefile + RELOC/doc/plain/impatient-cn/backm.tex + RELOC/doc/plain/impatient-cn/book.tex + RELOC/doc/plain/impatient-cn/capsule.tex + RELOC/doc/plain/impatient-cn/cnbook.pdf details="A copy of the book (Chinese translation)" language="zh" + RELOC/doc/plain/impatient-cn/concepts.tex + RELOC/doc/plain/impatient-cn/config.tex + RELOC/doc/plain/impatient-cn/copyrght.tex + RELOC/doc/plain/impatient-cn/eplain.tex + RELOC/doc/plain/impatient-cn/eplain3.tex + RELOC/doc/plain/impatient-cn/errors.tex + RELOC/doc/plain/impatient-cn/examples.tex + RELOC/doc/plain/impatient-cn/fdl.tex + RELOC/doc/plain/impatient-cn/fonts.tex + RELOC/doc/plain/impatient-cn/frontm.tex + RELOC/doc/plain/impatient-cn/genops.tex + RELOC/doc/plain/impatient-cn/index.tex + RELOC/doc/plain/impatient-cn/macros.tex + RELOC/doc/plain/impatient-cn/math.tex + RELOC/doc/plain/impatient-cn/modes.tex + RELOC/doc/plain/impatient-cn/pages.tex + RELOC/doc/plain/impatient-cn/paras.tex + RELOC/doc/plain/impatient-cn/preface.tex + RELOC/doc/plain/impatient-cn/read1st.tex + RELOC/doc/plain/impatient-cn/tips.tex + RELOC/doc/plain/impatient-cn/usebook.tex + RELOC/doc/plain/impatient-cn/usermacs.tex + RELOC/doc/plain/impatient-cn/usingtex.tex + RELOC/doc/plain/impatient-cn/xeCJK-base.tex + RELOC/doc/plain/impatient-cn/xmptext.tex +catalogue-ctan /info/impatient +catalogue-license fdl +catalogue-topics book-src tut-plaintex french-doc chinese-doc +catalogue-version 2020 + +name impatient-fr +category Package +revision 54080 +catalogue impatient +shortdesc Free edition of the book "TeX for the Impatient" +relocated 1 +longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX, +longdesc Plain TeX and Eplain. The book is also available in French and +longdesc Chinese translations. +containersize 460 +containerchecksum f6a9a69ded33199fcd46d518fe8ed7dca48677c78fac5f90cdbbed2290558c4a9d7c9b0721c188023384acc97ad95df29565b06abc16fa33deb04490ca50b4ac +doccontainersize 1576664 +doccontainerchecksum 963a379e3fbf422f4f4d53a41d6bd074fd077360908eb0db1db0a50699e12f37dc6b3ec8b42812604de4ea444ecb38cbfc81d3445cd67626a65fa9b520fb8550 +docfiles size=625 + RELOC/doc/plain/impatient-fr/README details="Basic project information" + RELOC/doc/plain/impatient-fr/config.tex + RELOC/doc/plain/impatient-fr/eplain.tex + RELOC/doc/plain/impatient-fr/fbackm.tex + RELOC/doc/plain/impatient-fr/fbook.pdf details="A copy of the book (French translation)" language="fr" + RELOC/doc/plain/impatient-fr/fbook.tex + RELOC/doc/plain/impatient-fr/fcapsule.tex + RELOC/doc/plain/impatient-fr/fconcept.tex + RELOC/doc/plain/impatient-fr/fcopyrgh.tex + RELOC/doc/plain/impatient-fr/fdl.tex + RELOC/doc/plain/impatient-fr/ferrors.tex + RELOC/doc/plain/impatient-fr/fexamples.tex + RELOC/doc/plain/impatient-fr/ffrontm.tex + RELOC/doc/plain/impatient-fr/fgenops.tex + RELOC/doc/plain/impatient-fr/fmacros.tex + RELOC/doc/plain/impatient-fr/fmath.tex + RELOC/doc/plain/impatient-fr/fmodes.tex + RELOC/doc/plain/impatient-fr/fonts.tex + RELOC/doc/plain/impatient-fr/fpages.tex + RELOC/doc/plain/impatient-fr/fparas.tex + RELOC/doc/plain/impatient-fr/fpreface.tex + RELOC/doc/plain/impatient-fr/fread1st.tex + RELOC/doc/plain/impatient-fr/ftips.tex + RELOC/doc/plain/impatient-fr/fusebook.tex + RELOC/doc/plain/impatient-fr/fusermacs.tex + RELOC/doc/plain/impatient-fr/fusingtex.tex + RELOC/doc/plain/impatient-fr/fxmptext.tex +catalogue-ctan /info/impatient +catalogue-license fdl +catalogue-topics book-src tut-plaintex french-doc chinese-doc +catalogue-version 2020 + +name impnattypo +category Package +revision 50227 +shortdesc Support typography of l'Imprimerie Nationale Francaise +relocated 1 +longdesc The package provides useful macros implementing recommendations +longdesc by the French Imprimerie Nationale. +containersize 3476 +containerchecksum 7afd6cf1fc2738bda4f390fe7f2f9d5e1bdd33c2e6bd32b4dda5b232005589f38436813d9e5effb6feae6371896be453b608ed61c64b9bf38fd25ec400c4b101 +doccontainersize 148572 +doccontainerchecksum 086b106a965e0f469cbf3560561da7d84e4151d5430d42d87c2c52568243305e20a1bc99ec4b252237f4c61369127683ff7b629013af8c76e9dc8ea6e551e24c +docfiles size=43 + RELOC/doc/latex/impnattypo/README.md details="Readme" + RELOC/doc/latex/impnattypo/impnattypo-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/impnattypo/impnattypo.pdf details="Package documentation" language="en" +srccontainersize 9308 +srccontainerchecksum 5bf181ff35a90a1d5c7656f7ae9778305088035370cec3542fa451b055cdad6d3b1ac1cf830fb7ab7ba3d4d89ce7b96a1112575f924fb13f24b1a90fc84e24a9 +srcfiles size=10 + RELOC/source/latex/impnattypo/impnattypo.dtx + RELOC/source/latex/impnattypo/impnattypo.ins +runfiles size=4 + RELOC/tex/latex/impnattypo/impnattypo.sty +catalogue-also e-french +catalogue-ctan /macros/latex/contrib/impnattypo +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.5 + +name import +category Package +revision 54683 +shortdesc Establish input relative to a directory +relocated 1 +longdesc The commands \import{full_path}{file} and +longdesc \subimport{path_extension}{file} set up input through standard +longdesc LaTeX mechanisms (\input, \include and \includegraphics) to +longdesc load files relative to the \import-ed directory. There are also +longdesc \includefrom, \subincludefrom, and * variants of the commands. +containersize 2712 +containerchecksum 96a92584b4ff4a4bd3b345b446f2802e34d59ebf8c14469a5b5331e6d2f92b63f42d8f5799bdcefc9ae3f74e5e6f93aad7d5371dbe7d21e84ced3890a76c7a19 +doccontainersize 246512 +doccontainerchecksum 967d456dd18c8838db7d2ed64016fa0f77f2ed475e5cbe36389414849786d7e7850ea43e8bb00d8aa06e3ba06f62970a6525ee1b5a5109f8cbc77a0baf894b50 +docfiles size=63 + RELOC/doc/latex/import/README details="Readme" + RELOC/doc/latex/import/import.pdf details="Package documentation" + RELOC/doc/latex/import/import.tex +runfiles size=2 + RELOC/tex/latex/import/import.sty +catalogue-ctan /macros/latex/contrib/import +catalogue-license pd +catalogue-topics file-control +catalogue-version 6.2 + +name imsproc +category Package +revision 29803 +shortdesc Typeset IMS conference proceedings +relocated 1 +longdesc The class typesets papers for IMS (Iranian Mathematical +longdesc Society) conference proceedings. The class uses the XePersian +longdesc package. +containersize 14784 +containerchecksum 12ce0d8ccdcd54890f846b501cc5cf7af00f7759c916147c676358b689b852a86a1981b76a14e455a4edece20ad1857100123f91469dfb23ba168177e15fcafc +doccontainersize 57712 +doccontainerchecksum a4007fe80cca88525dcade8d8201fb82a2c35cafd7bf92a8ebe6b4668ddce6bd43e958e1223d5c212e91ca692df39aae84c4a25b6862afa3aed2f1f646eabba1 +docfiles size=19 + RELOC/doc/xelatex/imsproc/README details="Readme" + RELOC/doc/xelatex/imsproc/logo.JPG + RELOC/doc/xelatex/imsproc/sample-imsproc.tex +runfiles size=14 + RELOC/tex/xelatex/imsproc/imsproc.cls +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-license lppl1.3 +catalogue-topics confproc +catalogue-version 0.1 + +name imtekda +category Package +revision 17667 +shortdesc IMTEK thesis class +relocated 1 +longdesc The class permits typesetting of diploma, bachelor's and +longdesc master's theses for the Institute of Microsystem Technology +longdesc (IMTEK) at the University of Freiburg (Germany). The class is +longdesc based on the KOMA-Script class scrbook. Included in the +longdesc documentation is a large collection of useful tips for +longdesc typesetting theses and a list of recommended packages. +containersize 4440 +containerchecksum ae95a9d52ed07e962a9d98cdcad868a9d2dc6e1eee82c38fceda7f7668934caab5062727e75ee3b1824ec60ad112f15541c9519fd494fa8199caaf0e83906484 +doccontainersize 628592 +doccontainerchecksum 6f854d85a7649b49b3c88d99f1f011df514b39064e2c340ae1e807de3e730a46a432afe178574105a414bbd46ae0509b9e88d6c0ff825e74dd55772ed189427f +docfiles size=208 + RELOC/doc/latex/imtekda/IMTEKda.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/imtekda/README details="Readme (German)" language="de" + RELOC/doc/latex/imtekda/diplarb.bib + RELOC/doc/latex/imtekda/diplarb.tex + RELOC/doc/latex/imtekda/figures/bild.eps + RELOC/doc/latex/imtekda/figures/bild.pdf +srccontainersize 27688 +srccontainerchecksum c4285c9099d8a2582570d0d7df327e6f693825a63c7dbbd6626361d9ceea83a039425b295e17de133fe51e43a23ada74e5fa83d0995fd4a6528eceaad2f59461 +srcfiles size=24 + RELOC/source/latex/imtekda/IMTEKda.dtx + RELOC/source/latex/imtekda/IMTEKda.ins +runfiles size=4 + RELOC/tex/latex/imtekda/IMTEKda.cls +catalogue-ctan /macros/latex/contrib/imtekda +catalogue-license lppl +catalogue-topics dissertation class +catalogue-version 1.7 + +name incgraph +category Package +revision 36500 +shortdesc Sophisticated graphics inclusion in a PDF document +relocated 1 +longdesc The package provides tools for including graphics at the full +longdesc size of the output medium, or for creating "pages" whose size +longdesc is that of the graphic they contain. A principal use case is +longdesc documents that require inclusion of (potentially many) scans or +longdesc photographs. Bookmarking is especially supported. The tool box +longdesc has basic macros and a 'convenience' user interface that wraps +longdesc \includegraphics. +containersize 4204 +containerchecksum 9a063a51c77ec55136a60a7ffaa259f7c8e2fbc9c71dc2d5240f125be50fc246e2a1d1a6c3379aacc044ad0eb7a754dc27a6445bd12fd63c3d5b2929cdacc133 +doccontainersize 1079708 +doccontainerchecksum 1a1be60ab0ee587095ad6e2c74ce356292ce454f3a40fa96e5fab7d48da52b98cabfe9826235b3afae679baeea1b23e5c4fb4d7a4b00279ce0433568a9cf3108 +docfiles size=575 + RELOC/doc/latex/incgraph/CHANGES + RELOC/doc/latex/incgraph/README details="Readme" + RELOC/doc/latex/incgraph/exaimage-0001.png + RELOC/doc/latex/incgraph/exaimage-0037.png + RELOC/doc/latex/incgraph/exaimage-0123.png + RELOC/doc/latex/incgraph/example.jpg + RELOC/doc/latex/incgraph/incgraph-example-a.pdf + RELOC/doc/latex/incgraph/incgraph-example-a.tex + RELOC/doc/latex/incgraph/incgraph-example-b.pdf + RELOC/doc/latex/incgraph/incgraph-example-b.tex + RELOC/doc/latex/incgraph/incgraph-example-c.pdf + RELOC/doc/latex/incgraph/incgraph-example-c.tex + RELOC/doc/latex/incgraph/incgraph.pdf details="Package documentation" + RELOC/doc/latex/incgraph/incgraph.tex +runfiles size=4 + RELOC/tex/latex/incgraph/incgraph.sty +catalogue-also graphicx +catalogue-ctan /macros/latex/contrib/incgraph +catalogue-license lppl1.3 +catalogue-topics graphics-incl +catalogue-version 1.12 + +name includernw +category Package +revision 47557 +shortdesc Include .Rnw inside .tex +relocated 1 +longdesc This package is for including .Rnw (knitr/sweave)-files inside +longdesc .tex-files. It requires that you have R and the R-package knitr +longdesc installed. Note: This package will probably not work on +longdesc Windows. It is tested only on OS X, and will probably also work +longdesc on standard Linux distros. +containersize 3116 +containerchecksum a2b43d658ed62ff3a301a1b190cc46f04a4a46f413ed4af3e0f84f1873efc6841cd23fc07d68a90cca50b6ed00ccf654aef9dcb6a8b4863277b06c7e8c666e6b +doccontainersize 157728 +doccontainerchecksum 8ebde646868cebadd8d50cfca25cd8d924c0112129ea86b0ca3ae5b9f9f4e4fec3c1e464486ec0f92e5cf7b7fe3df1fceb1a7967bfec755c57645e6909705c0b +docfiles size=43 + RELOC/doc/latex/includernw/README.txt details="Readme" + RELOC/doc/latex/includernw/includeRnw-doc.pdf details="Package documentation" + RELOC/doc/latex/includernw/includeRnw-doc.tex +runfiles size=2 + RELOC/tex/latex/includernw/includeRnw.sty +catalogue-contact-bugs https://github.com/Strauman/includeRnw/issues +catalogue-contact-repository https://github.com/Strauman/includeRnw +catalogue-ctan /macros/latex/contrib/includernw +catalogue-license lppl1.3c +catalogue-topics subdocs statistics compilation +catalogue-version 0.1.0 + +name inconsolata +category Package +revision 54512 +shortdesc A monospaced font, with support files for use with TeX +relocated 1 +longdesc Inconsolata is a monospaced font designed by Raph Levien. This +longdesc package contains the font (in both Adobe Type 1 and OpenType +longdesc formats) in regular and bold weights, with additional glyphs +longdesc and options to control slashed zero, upright quotes and a +longdesc shapelier lower-case L, plus metric files for use with TeX, and +longdesc LaTeX font definition and other relevant files. +execute addMap zi4.map +containersize 299536 +containerchecksum 3b33a1627083b50019e0c66ad49319d3ae699943f217daa21f57b19dd2733d29c6f1e9fbaddc1e3e39ea96623581b1d6a388f1a0009e84e4c3f381887b05d4c7 +doccontainersize 179192 +doccontainerchecksum 9139f7769536398c2822c41fe1fd0850a81fb54d70524904b266c8e231c95e344e27468187f474d51a9ab8c4028d6e5f9cc4513d1b38e306b739a1572c387e88 +docfiles size=149 + RELOC/doc/fonts/inconsolata/OFL.txt + RELOC/doc/fonts/inconsolata/README details="Readme" + RELOC/doc/fonts/inconsolata/afmcmds.txt + RELOC/doc/fonts/inconsolata/inconsolata-doc.pdf details="Package documentation" + RELOC/doc/fonts/inconsolata/inconsolata-doc.tex + RELOC/doc/fonts/inconsolata/novarqu-crop.pdf + RELOC/doc/fonts/inconsolata/novarqu-noupq-crop.pdf + RELOC/doc/fonts/inconsolata/varqu-noupq-crop.pdf +runfiles size=300 + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ts1.enc + RELOC/fonts/map/dvips/inconsolata/zi4.map + RELOC/fonts/opentype/public/inconsolata/InconsolataN-Bold.otf + RELOC/fonts/opentype/public/inconsolata/InconsolataN-Regular.otf + RELOC/fonts/opentype/public/inconsolata/Inconsolatazi4-Bold.otf + RELOC/fonts/opentype/public/inconsolata/Inconsolatazi4-Regular.otf + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-7.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-zi4b.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-zi4nb.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-zi4nr.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-zi4r.tfm + RELOC/fonts/type1/public/inconsolata/Inconsolata-zi4b.pfb + RELOC/fonts/type1/public/inconsolata/Inconsolata-zi4r.pfb + RELOC/fonts/type1/public/inconsolata/InconsolataN-Bold.pfb + RELOC/fonts/type1/public/inconsolata/InconsolataN-Regular.pfb + RELOC/tex/latex/inconsolata/inconsolata.fontspec + RELOC/tex/latex/inconsolata/inconsolata.sty + RELOC/tex/latex/inconsolata/inconsolatan.fontspec + RELOC/tex/latex/inconsolata/ly1zi4.fd + RELOC/tex/latex/inconsolata/ot1zi4.fd + RELOC/tex/latex/inconsolata/qxzi4.fd + RELOC/tex/latex/inconsolata/t1zi4.fd + RELOC/tex/latex/inconsolata/ts1zi4.fd + RELOC/tex/latex/inconsolata/zi4.sty +catalogue-contact-home http://levien.com/type/myfonts/inconsolata.html +catalogue-ctan /fonts/inconsolata +catalogue-license ofl apache2 lppl1.3 +catalogue-topics font font-mono font-type1 font-otf font-t1enc +catalogue-version 1.121 + +name index +category Package +revision 24099 +shortdesc Extended index for LaTeX including multiple indexes +relocated 1 +longdesc This is a reimplementation of LaTeX's indexing macros to +longdesc provide better support for indexing. For example, it supports +longdesc multiple indexes in a single document and provides a more +longdesc robust \index command. It supplies short hand notations for the +longdesc \index command (^{word}) and a * variation of \index +longdesc (abbreviated _{word}) that prints the word being indexed, as +longdesc well as creating an index entry for it. +containersize 11040 +containerchecksum 2b9bed00e12b5aa7b1813be766ba7c2e1eb750dc270e9eb585b1cc3d559a3f0c9094919344aaaa51cb6cf7cc132a5f89f8c07c96a12c5b1a5446524d07f4121e +doccontainersize 156688 +doccontainerchecksum 0e68aca1c5dda444aa42cb1883821f2003c450291191b2eef16169f3f76e03e5ec9d31577574afd8d3b10237309be303538ccd1d4c8edb9757e7c910da7c5f51 +docfiles size=63 + RELOC/doc/latex/index/README details="Package Readme" + RELOC/doc/latex/index/TODO + RELOC/doc/latex/index/agsmtst.tex + RELOC/doc/latex/index/autind.tex + RELOC/doc/latex/index/index.pdf details="Package documentation" + RELOC/doc/latex/index/plaintst.tex + RELOC/doc/latex/index/sample.tex + RELOC/doc/latex/index/test.bib +srccontainersize 14900 +srccontainerchecksum fc9e646c54415a14e41f1adf9894e723ea8d25e1d151b56fe40e5dd437a4659535b11eccbe9e2b6077d01a7a83b044c2d1d2b9aa1b08243d82b5a37a70641c11 +srcfiles size=14 + RELOC/source/latex/index/index.dtx + RELOC/source/latex/index/index.ins +runfiles size=17 + RELOC/bibtex/bst/index/xagsm.bst + RELOC/bibtex/bst/index/xplain.bst + RELOC/makeindex/index/bibref.ist + RELOC/tex/latex/index/autind.sty + RELOC/tex/latex/index/bibref.sty + RELOC/tex/latex/index/index.sty +catalogue-also splitindex multind +catalogue-ctan /macros/latex/contrib/index +catalogue-license other-free +catalogue-topics index index-multi +catalogue-version 4.1beta + +name indextools +category Package +revision 38931 +shortdesc Producing multiple indices +relocated 1 +longdesc This package enables the user to produce and typeset one or +longdesc more indices simultaneously. The package is known to work in +longdesc LaTeX documents processed with pdfLaTeX, XeLaTeX and LuaLaTeX. +longdesc If makeindex is used for processing the index entries, no +longdesc particular setup is needed when TeX Live is used. Using xindy +longdesc or other programs, it is necessary to enable shell escape. +longdesc Shell escape is also needed if splitindex is used. This is a +longdesc fork of imakeidx, with new features and fixed bugs. +containersize 4560 +containerchecksum 69bb7007041b46a25e9f6bb12d8212a4dd4eaa9dfd00fc033edd94de153e8941cc4de8a06d74516220ade56f2f5800f83a96ea2c02d766939cf70aa3822da63b +doccontainersize 611172 +doccontainerchecksum 9290dc53a68dcc191d39bc0d1e760bd4cb8db50d7cf70771e60686ba2b1a7923b408f21e777453a6f2ec9ec372ac30faa3ffa2cc6bf7d2bc82b2526327d732a7 +docfiles size=153 + RELOC/doc/latex/indextools/README details="Readme" + RELOC/doc/latex/indextools/indextools.pdf details="Package documentation" + RELOC/doc/latex/indextools/issue5.pdf + RELOC/doc/latex/indextools/latexmkrc + RELOC/doc/latex/indextools/makefile +srccontainersize 21688 +srccontainerchecksum 2d6d1a6009351911a3dfe204ab81ce8b54abfba885525a98557f56ad22ba6a319d35d36ea6f868d3abe9d788628d9f635dec8a657827ae3b772dae972a11c53c +srcfiles size=19 + RELOC/source/latex/indextools/indextools.dtx +runfiles size=4 + RELOC/tex/latex/indextools/indextools.sty +catalogue-also imakeidx +catalogue-ctan /macros/latex/contrib/indextools +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 1.5.1 + +name infwarerr +category Package +revision 53023 +shortdesc Complete set of information/warning/error message macros +relocated 1 +longdesc This package provides a complete set of macros for information, +longdesc warning and error messages. Under LaTeX, the commands are +longdesc wrappers for the corresponding LaTeX commands; under Plain TeX +longdesc they are available as complete implementations. +containersize 2668 +containerchecksum a41fd6f2ee199e460950fdd31484be7e949a5e36ca740daaf3a1ffa01103d865f573c8ffe0859a8629456786cabf2f1751dbd828cb5d26356b1973960c854261 +doccontainersize 284912 +doccontainerchecksum 2830f622e2ea8e5b3427a9d924dd5f45f0c63a8a6de82e261102ca2c3f3afd7b781a7e0d50903dc8d8c1bee0674503f3ab935fe81dd9490d4310650097c4ffa6 +docfiles size=71 + RELOC/doc/latex/infwarerr/README.md + RELOC/doc/latex/infwarerr/infwarerr.pdf details="Package documentation" +srccontainersize 5712 +srccontainerchecksum ccc6e1f7a63c10fed449c390b2283ac44b94c33a453f1146658082c888723ad8223bea01b71545d7f57f89fb8c8373f1a8329aab7255b7d17fd36853456cfbe9 +srcfiles size=6 + RELOC/source/latex/infwarerr/infwarerr.dtx +runfiles size=3 + RELOC/tex/generic/infwarerr/infwarerr.sty +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-license lppl1.3 +catalogue-topics messages +catalogue-version 1.5 + +name initials +category Package +revision 54080 +shortdesc Adobe Type 1 decorative initial fonts +relocated 1 +longdesc For each font, at least a .pfb and a .tfm file is provided, +longdesc with an .fd file for use with LaTeX. +execute addMap Acorn.map +execute addMap AnnSton.map +execute addMap ArtNouv.map +execute addMap ArtNouvc.map +execute addMap Carrickc.map +execute addMap Eichenla.map +execute addMap Eileen.map +execute addMap EileenBl.map +execute addMap Elzevier.map +execute addMap GotIn.map +execute addMap GoudyIn.map +execute addMap Kinigcap.map +execute addMap Konanur.map +execute addMap Kramer.map +execute addMap MorrisIn.map +execute addMap Nouveaud.map +execute addMap Romantik.map +execute addMap Rothdn.map +execute addMap RoyalIn.map +execute addMap Sanremo.map +execute addMap Starburst.map +execute addMap Typocaps.map +execute addMap Zallman.map +containersize 3132652 +containerchecksum 442ffe7585c725c62cf9edf86bccabfcc0406b7517f145567c952ff0de65dae94158f586a1c0081afc5fe3320494750ddc6f455c78ba96e91f409bb0f5905d8a +doccontainersize 2868 +doccontainerchecksum c8e837291eb7dced1d4bc4d94e7e6bc042ebeb5c561ad3688a491f451991f122896d7df01040575ac6fd705d3ad55350e12afc986dd619c4303ba2919f64dc6d +docfiles size=24 + RELOC/doc/fonts/initials/Acorn.tex + RELOC/doc/fonts/initials/AnnSton.tex + RELOC/doc/fonts/initials/ArtNouv.tex + RELOC/doc/fonts/initials/ArtNouvc.tex + RELOC/doc/fonts/initials/Carrickc.tex + RELOC/doc/fonts/initials/Eichenla.tex + RELOC/doc/fonts/initials/Eileen.tex + RELOC/doc/fonts/initials/EileenBl.tex + RELOC/doc/fonts/initials/Elzevier.tex + RELOC/doc/fonts/initials/GotIn.tex + RELOC/doc/fonts/initials/GoudyIn.tex + RELOC/doc/fonts/initials/Kinigcap.tex + RELOC/doc/fonts/initials/Konanur.tex + RELOC/doc/fonts/initials/Kramer.tex + RELOC/doc/fonts/initials/MorrisIn.tex + RELOC/doc/fonts/initials/Nouveaud.tex + RELOC/doc/fonts/initials/README details="Readme" + RELOC/doc/fonts/initials/Romantik.tex + RELOC/doc/fonts/initials/Rothdn.tex + RELOC/doc/fonts/initials/RoyalIn.tex + RELOC/doc/fonts/initials/Sanremo.tex + RELOC/doc/fonts/initials/Starburst.tex + RELOC/doc/fonts/initials/Typocaps.tex + RELOC/doc/fonts/initials/Zallman.tex +runfiles size=898 + RELOC/dvips/initials/config.Acorn + RELOC/dvips/initials/config.AnnSton + RELOC/dvips/initials/config.ArtNouv + RELOC/dvips/initials/config.ArtNouvc + RELOC/dvips/initials/config.Carrickc + RELOC/dvips/initials/config.Eichenla + RELOC/dvips/initials/config.Eileen + RELOC/dvips/initials/config.EileenBl + RELOC/dvips/initials/config.Elzevier + RELOC/dvips/initials/config.GotIn + RELOC/dvips/initials/config.GoudyIn + RELOC/dvips/initials/config.Kinigcap + RELOC/dvips/initials/config.Konanur + RELOC/dvips/initials/config.Kramer + RELOC/dvips/initials/config.MorrisIn + RELOC/dvips/initials/config.Nouveaud + RELOC/dvips/initials/config.Romantik + RELOC/dvips/initials/config.Rothdn + RELOC/dvips/initials/config.RoyalIn + RELOC/dvips/initials/config.Sanremo + RELOC/dvips/initials/config.Starburst + RELOC/dvips/initials/config.Typocaps + RELOC/dvips/initials/config.Zallman + RELOC/fonts/afm/public/initials/Acorn.afm + RELOC/fonts/afm/public/initials/AnnSton.afm + RELOC/fonts/afm/public/initials/ArtNouv.afm + RELOC/fonts/afm/public/initials/ArtNouvc.afm + RELOC/fonts/afm/public/initials/Carrickc.afm + RELOC/fonts/afm/public/initials/Eichenla.afm + RELOC/fonts/afm/public/initials/Eileen.afm + RELOC/fonts/afm/public/initials/EileenBl.afm + RELOC/fonts/afm/public/initials/Elzevier.afm + RELOC/fonts/afm/public/initials/GotIn.afm + RELOC/fonts/afm/public/initials/GoudyIn.afm + RELOC/fonts/afm/public/initials/Kinigcap.afm + RELOC/fonts/afm/public/initials/Konanur.afm + RELOC/fonts/afm/public/initials/Kramer.afm + RELOC/fonts/afm/public/initials/MorrisIn.afm + RELOC/fonts/afm/public/initials/Nouveaud.afm + RELOC/fonts/afm/public/initials/Romantik.afm + RELOC/fonts/afm/public/initials/Rothdn.afm + RELOC/fonts/afm/public/initials/RoyalIn.afm + RELOC/fonts/afm/public/initials/Sanremo.afm + RELOC/fonts/afm/public/initials/Starburst.afm + RELOC/fonts/afm/public/initials/Typocaps.afm + RELOC/fonts/afm/public/initials/Zallman.afm + RELOC/fonts/map/dvips/initials/Acorn.map + RELOC/fonts/map/dvips/initials/AnnSton.map + RELOC/fonts/map/dvips/initials/ArtNouv.map + RELOC/fonts/map/dvips/initials/ArtNouvc.map + RELOC/fonts/map/dvips/initials/Carrickc.map + RELOC/fonts/map/dvips/initials/Eichenla.map + RELOC/fonts/map/dvips/initials/Eileen.map + RELOC/fonts/map/dvips/initials/EileenBl.map + RELOC/fonts/map/dvips/initials/Elzevier.map + RELOC/fonts/map/dvips/initials/GotIn.map + RELOC/fonts/map/dvips/initials/GoudyIn.map + RELOC/fonts/map/dvips/initials/Kinigcap.map + RELOC/fonts/map/dvips/initials/Konanur.map + RELOC/fonts/map/dvips/initials/Kramer.map + RELOC/fonts/map/dvips/initials/MorrisIn.map + RELOC/fonts/map/dvips/initials/Nouveaud.map + RELOC/fonts/map/dvips/initials/Romantik.map + RELOC/fonts/map/dvips/initials/Rothdn.map + RELOC/fonts/map/dvips/initials/RoyalIn.map + RELOC/fonts/map/dvips/initials/Sanremo.map + RELOC/fonts/map/dvips/initials/Starburst.map + RELOC/fonts/map/dvips/initials/Typocaps.map + RELOC/fonts/map/dvips/initials/Zallman.map + RELOC/fonts/tfm/public/initials/Acorn.tfm + RELOC/fonts/tfm/public/initials/AnnSton.tfm + RELOC/fonts/tfm/public/initials/ArtNouv.tfm + RELOC/fonts/tfm/public/initials/ArtNouvc.tfm + RELOC/fonts/tfm/public/initials/Carrickc.tfm + RELOC/fonts/tfm/public/initials/Eichenla.tfm + RELOC/fonts/tfm/public/initials/Eileen.tfm + RELOC/fonts/tfm/public/initials/EileenBl.tfm + RELOC/fonts/tfm/public/initials/Elzevier.tfm + RELOC/fonts/tfm/public/initials/GotIn.tfm + RELOC/fonts/tfm/public/initials/GoudyIn.tfm + RELOC/fonts/tfm/public/initials/Kinigcap.tfm + RELOC/fonts/tfm/public/initials/Konanur.tfm + RELOC/fonts/tfm/public/initials/Kramer.tfm + RELOC/fonts/tfm/public/initials/MorrisIn.tfm + RELOC/fonts/tfm/public/initials/Nouveaud.tfm + RELOC/fonts/tfm/public/initials/Romantik.tfm + RELOC/fonts/tfm/public/initials/Rothdn.tfm + RELOC/fonts/tfm/public/initials/RoyalIn.tfm + RELOC/fonts/tfm/public/initials/Sanremo.tfm + RELOC/fonts/tfm/public/initials/Starburst.tfm + RELOC/fonts/tfm/public/initials/Typocaps.tfm + RELOC/fonts/tfm/public/initials/Zallman.tfm + RELOC/fonts/type1/public/initials/Acorn.pfb + RELOC/fonts/type1/public/initials/AnnSton.pfb + RELOC/fonts/type1/public/initials/ArtNouv.pfb + RELOC/fonts/type1/public/initials/ArtNouvc.pfb + RELOC/fonts/type1/public/initials/Carrickc.pfb + RELOC/fonts/type1/public/initials/Eichenla.pfb + RELOC/fonts/type1/public/initials/Eileen.pfb + RELOC/fonts/type1/public/initials/EileenBl.pfb + RELOC/fonts/type1/public/initials/Elzevier.pfb + RELOC/fonts/type1/public/initials/GotIn.pfb + RELOC/fonts/type1/public/initials/GoudyIn.pfb + RELOC/fonts/type1/public/initials/Kinigcap.pfb + RELOC/fonts/type1/public/initials/Konanur.pfb + RELOC/fonts/type1/public/initials/Kramer.pfb + RELOC/fonts/type1/public/initials/MorrisIn.pfb + RELOC/fonts/type1/public/initials/Nouveaud.pfb + RELOC/fonts/type1/public/initials/Romantik.pfb + RELOC/fonts/type1/public/initials/Rothdn.pfb + RELOC/fonts/type1/public/initials/RoyalIn.pfb + RELOC/fonts/type1/public/initials/Sanremo.pfb + RELOC/fonts/type1/public/initials/Starburst.pfb + RELOC/fonts/type1/public/initials/Typocaps.pfb + RELOC/fonts/type1/public/initials/Zallman.pfb + RELOC/tex/latex/initials/Acorn.fd + RELOC/tex/latex/initials/AnnSton.fd + RELOC/tex/latex/initials/ArtNouv.fd + RELOC/tex/latex/initials/ArtNouvc.fd + RELOC/tex/latex/initials/Carrickc.fd + RELOC/tex/latex/initials/Eichenla.fd + RELOC/tex/latex/initials/Eileen.fd + RELOC/tex/latex/initials/EileenBl.fd + RELOC/tex/latex/initials/Elzevier.fd + RELOC/tex/latex/initials/GotIn.fd + RELOC/tex/latex/initials/GoudyIn.fd + RELOC/tex/latex/initials/Kinigcap.fd + RELOC/tex/latex/initials/Konanur.fd + RELOC/tex/latex/initials/Kramer.fd + RELOC/tex/latex/initials/MorrisIn.fd + RELOC/tex/latex/initials/Nouveaud.fd + RELOC/tex/latex/initials/Romantik.fd + RELOC/tex/latex/initials/Rothdn.fd + RELOC/tex/latex/initials/RoyalIn.fd + RELOC/tex/latex/initials/Sanremo.fd + RELOC/tex/latex/initials/Starburst.fd + RELOC/tex/latex/initials/Typocaps.fd + RELOC/tex/latex/initials/Zallman.fd +catalogue-ctan /fonts/initials +catalogue-license lppl +catalogue-topics font font-type1 font-decor + +name inkpaper +category Package +revision 54080 +shortdesc A mathematical paper template +relocated 1 +longdesc InkPaper is designed to write mathematical papers,especially +longdesc designed for Mathematics Students. ZJGS students. magazine +longdesc editors. NOTICE.This is not a Thesis class. +containersize 2368 +containerchecksum d07bd9d2f32981607f4baf3bc348fdd99aae0c331423bf1f678231a2ab9830e4a824357df067e52643e6c89ecd1b850afb2444686fa33d75e6a3e598b003553b +doccontainersize 288768 +doccontainerchecksum acc6ffc291db3164d8428a50ee0792907435b90d3677a0e9ec883e0d3b81b6c04785a08217bd6c9554545eb5bc328a702c2958301245bcce68949ce76726c389 +docfiles size=92 + RELOC/doc/latex/inkpaper/LICENSE + RELOC/doc/latex/inkpaper/README.md details="Readme" + RELOC/doc/latex/inkpaper/inkpaper-cn.pdf details="Package documentation" language="zh-cn" + RELOC/doc/latex/inkpaper/inkpaper-cn.tex + RELOC/doc/latex/inkpaper/inkpaper-en.pdf details="Package documentation" language="en" + RELOC/doc/latex/inkpaper/inkpaper-en.tex +runfiles size=2 + RELOC/tex/latex/inkpaper/inkpaper.cls +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-license gpl3 +catalogue-topics maths maths-theorem +catalogue-version 1.0 + +name inline-images +category Package +revision 54080 +shortdesc Inline images in base64 encoding +relocated 1 +longdesc The package provides a command \inlineimg to dynamically create +longdesc a file containing the inline image in base64 format, which is +longdesc decoded and included in the source file. Requirements LaTeX +longdesc must be run with option --shell-escape. Program base64. +containersize 796 +containerchecksum 7706dce6a4c0a6dd9b3222d296654c974ee3d6265ab5baeea762c708863f45d7f351158b04075f4365de5a5913fd9cdae5e777ddea69e19d7feb4067491d6515 +doccontainersize 123068 +doccontainerchecksum 1c24afd0757ca9b9a0cee81192498b15a250994ebf45dc1ad4e26800a1266cad6536c922e97b11999a6b2999ec8ab111de0ff8de46baead06510d2de2296f737 +docfiles size=37 + RELOC/doc/latex/inline-images/README.md details="Readme" + RELOC/doc/latex/inline-images/examples/example.pdf + RELOC/doc/latex/inline-images/examples/example.tex + RELOC/doc/latex/inline-images/screenshots/example.jpg +runfiles size=1 + RELOC/tex/latex/inline-images/inline-images.sty +catalogue-contact-bugs https://mrw.dev/templates/inline-images/issues +catalogue-contact-home https://mrw.dev/templates/inline-images +catalogue-ctan /macros/latex/contrib/inline-images +catalogue-license lgpl3 +catalogue-topics image-supp +catalogue-version 1.0 + +name inlinebib +category Package +revision 22018 +shortdesc Citations in footnotes +relocated 1 +longdesc A BibTeX style and a LaTeX package that allow for a full +longdesc bibliography at the end of the document as well as citation +longdesc details in footnotes. The footnote details include "op. cit." +longdesc and "ibid." contractions. +containersize 6760 +containerchecksum 42e158a9ff10dc165345bd08b18fc0f90b463482fbb824872289edf93269b36b04faaf35cd12538e83ef1e509b7400ee61e604c5849922106368624c6c20f507 +doccontainersize 19896 +doccontainerchecksum 2a00d2f51daca68362b5243d8cc485bff6f64fbb9156d1a221d75dc5eec001c3377e6d67afe5d6384ba3f7504eafd65919f5afca8e1170f8b584eb101c947faf +docfiles size=10 + RELOC/doc/bibtex/inlinebib/MANIFEST + RELOC/doc/bibtex/inlinebib/inlinebib.htm details="Package documentation" + RELOC/doc/bibtex/inlinebib/inlinebib.txt + RELOC/doc/bibtex/inlinebib/inlinebib1.gif + RELOC/doc/bibtex/inlinebib/inlinebib2.gif +runfiles size=8 + RELOC/bibtex/bst/inlinebib/inlinebib.bst + RELOC/tex/latex/inlinebib/inlinebib.sty + RELOC/tex/latex/inlinebib/pageranges.sty +catalogue-ctan /biblio/bibtex/contrib/inlinebib +catalogue-license lppl +catalogue-topics cite-foot + +name inlinedef +category Package +revision 15878 +shortdesc Inline expansions within definitions +relocated 1 +longdesc The package provides a macro \Inline that precedes a \def or +longdesc \gdef. Within the definition text of an inlined definition, +longdesc keywords such as \Expand may be used to selectively inline +longdesc certain expansions at definition-time. This eases the process +longdesc of redefining macros in terms of the original definition, as +longdesc well as definitions in which the token that must be expanded is +longdesc deep within, where \expandafter would be difficult and \edef is +longdesc not suitable. Another application is as an easier version of +longdesc \aftergroup, by defining a macro in terms of expanded local +longdesc variables, then ending the group with +longdesc \expandafter\endgroup\macro. +containersize 3696 +containerchecksum b98b83ff26b5ecc9826f111d9faef5aa0f51ebcec7978881da2a61287af7aee022dc1b7812ee457885c7813eee0d2200d250ef45648619f3d105e2df54cd21d0 +doccontainersize 135048 +doccontainerchecksum 6bf73914a9eff5d774ca7b7e37a859b0e7da3d408bae603b74c9f76e379ff6d3558d7e30ee4a246bf3f7d40f18446fc78299edf4eda0228e2f22e47ad09ea024 +docfiles size=42 + RELOC/doc/latex/inlinedef/README details="Readme" + RELOC/doc/latex/inlinedef/inlinedef.pdf details="Package documentation" + RELOC/doc/latex/inlinedef/inlinetest.tex +srccontainersize 12344 +srccontainerchecksum ccac53e2ce8ad0fcfadfedeca45d136ba94bd51d46fb4b860269f2efb7c0996823d32ee1935a0dad79ebe69c9794e2882e6dabca0c5751b3e8b25e5329623953 +srcfiles size=11 + RELOC/source/latex/inlinedef/inlinedef.dtx + RELOC/source/latex/inlinedef/inlinedef.ins +runfiles size=3 + RELOC/tex/latex/inlinedef/inlinedef.sty +catalogue-ctan /macros/latex/contrib/inlinedef +catalogue-license lppl +catalogue-topics macro-def +catalogue-version 1.0 + +name innerscript +category Package +revision 57672 +shortdesc Modifies automatic mathematics spacing +relocated 1 +longdesc This package modifies two aspects of TeX's automatic interatom +longdesc mathematics spacing. It uses LuaTeX's \Umath primitives to make +longdesc superscripts and subscripts more closely resemble \textstyle +longdesc and \displaystyle math and to treat \mathinner subformulas as +longdesc \mathord, effectively eliminating this class. +containersize 3168 +containerchecksum 0ab2851bf450b502e1f04f8c529a2cee149ce5ffb1a091b6870189f01398ec1aaa7c26e5bcfb4ec6e156cbf3e273a4c4677dac7c6c93078d5eadbd478add7d00 +doccontainersize 120788 +doccontainerchecksum 52684da615ec9caa76e144966be1c3f3152cbf757822b5b2a277c7f40a847bba20d03f1349770a6955daade85f97bbb03572710af39ba6874cf3ff0c422405c3 +docfiles size=32 + RELOC/doc/lualatex/innerscript/README.txt details="Readme" + RELOC/doc/lualatex/innerscript/innerscript.pdf details="Package documentation" +srccontainersize 7808 +srccontainerchecksum b5396a9f73446721e7e8d2283cb10046242e31c9ed77800b3a9e3d825a57f2e81ef06a27ca67b2bee2e88b281329b5f05e230de70982ed937d698cc4b766dfee +srcfiles size=10 + RELOC/source/lualatex/innerscript/innerscript.dtx +runfiles size=6 + RELOC/tex/lualatex/innerscript/innerscript.sty +catalogue-ctan /macros/luatex/latex/innerscript +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 1.1 + +name inputenx +category Package +revision 52986 +shortdesc Enhanced input encoding handling +relocated 1 +longdesc This package deals with input encodings. It provides a wider +longdesc range of input encodings using standard mappings, than does +longdesc inputenc; it also covers nearly all slots. In this way, it +longdesc serves as more uptodate replacement for package inputenc. +containersize 30128 +containerchecksum 5550c1d76a0906f47ac3e2303fc57ef9ad1c8442e12e3522826dbe7fa8c971c7ca4241e0a1707f6e10336855eded20e94130a6db212b787383282326aee8886b +doccontainersize 785444 +doccontainerchecksum 087bca2b38a73530b19dba7343cc488b39ab505ce00b4c622f56f9d40c448e6349052e12358cc8fe6d8db7039c6af4f06910784795a2cb1e69b85eed423d1314 +docfiles size=215 + RELOC/doc/latex/inputenx/README.md details="Readme" + RELOC/doc/latex/inputenx/inputenx.pdf details="Package documentation" +srccontainersize 40392 +srccontainerchecksum a633d0ba777e0342fe99d1ee8d9c955fe159c4a881f31c46fa205078c3b1786edc2025f58ac88b7dccce0c6bed50e8f44025ebd43b28871db953a34e54b3aad7 +srcfiles size=100 + RELOC/source/latex/inputenx/inputenx.dtx +runfiles size=120 + RELOC/tex/latex/inputenx/inputenx.sty + RELOC/tex/latex/inputenx/ix-alias.def + RELOC/tex/latex/inputenx/ix-math.def + RELOC/tex/latex/inputenx/ix-name.def + RELOC/tex/latex/inputenx/ix-slot.def + RELOC/tex/latex/inputenx/ix-uc.def + RELOC/tex/latex/inputenx/ix-utf8enc.dfu + RELOC/tex/latex/inputenx/x-ascii.def + RELOC/tex/latex/inputenx/x-atarist.def + RELOC/tex/latex/inputenx/x-cp1250.def + RELOC/tex/latex/inputenx/x-cp1251.def + RELOC/tex/latex/inputenx/x-cp1252.def + RELOC/tex/latex/inputenx/x-cp1255.def + RELOC/tex/latex/inputenx/x-cp1257.def + RELOC/tex/latex/inputenx/x-cp437.def + RELOC/tex/latex/inputenx/x-cp850.def + RELOC/tex/latex/inputenx/x-cp852.def + RELOC/tex/latex/inputenx/x-cp855.def + RELOC/tex/latex/inputenx/x-cp858.def + RELOC/tex/latex/inputenx/x-cp865.def + RELOC/tex/latex/inputenx/x-cp866.def + RELOC/tex/latex/inputenx/x-dec-mcs.def + RELOC/tex/latex/inputenx/x-iso-8859-1.def + RELOC/tex/latex/inputenx/x-iso-8859-10.def + RELOC/tex/latex/inputenx/x-iso-8859-13.def + RELOC/tex/latex/inputenx/x-iso-8859-14.def + RELOC/tex/latex/inputenx/x-iso-8859-15.def + RELOC/tex/latex/inputenx/x-iso-8859-16.def + RELOC/tex/latex/inputenx/x-iso-8859-2.def + RELOC/tex/latex/inputenx/x-iso-8859-3.def + RELOC/tex/latex/inputenx/x-iso-8859-4.def + RELOC/tex/latex/inputenx/x-iso-8859-5.def + RELOC/tex/latex/inputenx/x-iso-8859-8.def + RELOC/tex/latex/inputenx/x-iso-8859-9.def + RELOC/tex/latex/inputenx/x-koi8-r.def + RELOC/tex/latex/inputenx/x-mac-centeuro.def + RELOC/tex/latex/inputenx/x-mac-cyrillic.def + RELOC/tex/latex/inputenx/x-mac-roman.def + RELOC/tex/latex/inputenx/x-nextstep.def + RELOC/tex/latex/inputenx/x-verbatim.def +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-license lppl1.3 +catalogue-topics inputenc +catalogue-version 1.12 + +name inputtrc +category Package +revision 28019 +shortdesc Trace which file loads which +relocated 1 +longdesc The package produces screen/log messages of the form '<current> +longdesc INPUTTING <next>' reporting LaTeX input commands (<current> and +longdesc <next> being file names). The message is indented to reflect +longdesc the level of input nesting. Tracing may be turned on and off, +longdesc and the unit of indentation may be adjusted. The implementation +longdesc somewhat resembles those of packages FiNK and inputfile. +containersize 2812 +containerchecksum e6450fbeb0f9033b0bcc586c34f5bb8e9c3a6aae102c15912be315d14fe883b8bea62a59a4a65d0ebbfa9cebcc518b9dedf59297f026423ef14aed2c0a2004ab +doccontainersize 335868 +doccontainerchecksum 4fe7894ee87bcb81566d1838f52c02902d8f5668662fdc016005e9a44b31f35eef8831143cdf5321717ee590ed14fc6c35305f584a0b63254549f96149ae2a50 +docfiles size=95 + RELOC/doc/latex/inputtrc/README details="Readme" + RELOC/doc/latex/inputtrc/README.pdf + RELOC/doc/latex/inputtrc/RELEASE.txt + RELOC/doc/latex/inputtrc/SrcFILEs.txt + RELOC/doc/latex/inputtrc/inputtrc.pdf details="Package documentation" +srccontainersize 7124 +srccontainerchecksum 942d536481750f2272cf8b1420e13703d16231a0998b90c7f3335d4aa6dbd0cf1ff3b6ce072970b182fffdf14614422cc794798632ecc5ff41dfffb18c836398 +srcfiles size=8 + RELOC/source/latex/inputtrc/README.tex + RELOC/source/latex/inputtrc/inputtrc.tex + RELOC/source/latex/inputtrc/srcfiles.tex +runfiles size=3 + RELOC/tex/latex/inputtrc/inputtrc.RLS + 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-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 0.3 + +name inriafonts +category Package +revision 54512 +shortdesc Inria fonts with LaTeX support +relocated 1 +longdesc Inria is a free font designed by Black[Foundry] for Inria +longdesc research institute. The font is available for free. It comes as +longdesc Serif and Sans Serif, each with three weights and matching +longdesc italics. Using these fonts with XeLaTeX and LuaLaTeX is easy +longdesc using the fontspec package; we refer to the documentation of +longdesc fontspec for more information. The present package provides a +longdesc way of using them with LaTeX and pdfLaTeX: it provides two +longdesc style files, InriaSerif.sty and InriaSans.sty, together with +longdesc the PostScript version of the fonts and their associated files. +longdesc These were created using autoinst. +execute addMap InriaSans.map +execute addMap InriaSerif.map +containersize 2176904 +containerchecksum 9c960dca72d433a5ee20b2afe843b92fa98060e67638676a8e92ce9c7dde872be4bfdda6be7a76ea90db97e51784db4487ce22c79cd110ba0214ba54bc8fbe18 +doccontainersize 165572 +doccontainerchecksum 352e35b1b748f502db20c76f670c8eb6d02f672ee743518113a7b7807678ab45f2a628980229d8dae67df0dcd3581a5a28492adce8752a1a5f914fe550bab01a +docfiles size=46 + RELOC/doc/fonts/inriafonts/README details="Readme" + RELOC/doc/fonts/inriafonts/inriafonts.pdf details="Package documentation" + RELOC/doc/fonts/inriafonts/inriafonts.tex + RELOC/doc/fonts/inriafonts/license-SIL-OFL.txt +runfiles size=2721 + RELOC/fonts/enc/dvips/inriafonts/inriasans_2ikqt3.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_aeswfl.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_azhk4k.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_clzm26.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_dl3y4j.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_efwr3l.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_fhoe3z.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_g56wvz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_gn4bcn.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_kgbpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_necsus.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_psyc4t.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_pv4xsz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_rhfpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_rriqaz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_svhg3d.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_x5ybkq.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_yeotsr.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_yl5fy2.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_2ikqt3.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_aeswfl.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_azhk4k.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_clzm26.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_dl3y4j.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_efwr3l.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_fhoe3z.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_g56wvz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_gn4bcn.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_kgbpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_necsus.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_psyc4t.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_pv4xsz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_rhfpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_rriqaz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_svhg3d.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_x5ybkq.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_yeotsr.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_yl5fy2.enc + RELOC/fonts/map/dvips/inriafonts/InriaSans.map + RELOC/fonts/map/dvips/inriafonts/InriaSerif.map + RELOC/fonts/opentype/public/inriafonts/InriaSans-Bold.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-BoldItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-Italic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-Light.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-LightItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-Regular.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Bold.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-BoldItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Italic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Light.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-LightItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Regular.otf + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ts1.tfm + RELOC/fonts/truetype/public/inriafonts/InriaSans-Bold.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-BoldItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-Italic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-Light.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-LightItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-Regular.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Bold.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-BoldItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Italic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Light.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-LightItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Regular.ttf + RELOC/fonts/type1/public/inriafonts/InriaSans-Bold.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-BoldItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-Italic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-Light.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-LightItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-Regular.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Bold.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-BoldItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Italic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Light.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-LightItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Regular.pfb + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tosf-ts1.vf + RELOC/tex/latex/inriafonts/InriaSans.sty + RELOC/tex/latex/inriafonts/InriaSerif.sty + RELOC/tex/latex/inriafonts/LY1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-Sup.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-Sup.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-TOsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-Sup.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-Sup.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-TOsF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-Sup.fd + RELOC/tex/latex/inriafonts/T1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-Sup.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-TOsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-TOsF.fd +catalogue-ctan /fonts/inriafonts +catalogue-license ofl lppl +catalogue-topics font font-sans font-serif font-body font-otf font-type1 font-t1enc font-proportional +catalogue-version 1.0 + +name insbox +category Package +revision 34299 +shortdesc Insert pictures/boxes into paragraphs +relocated 1 +longdesc The package provides convenient bundling of the \parshape +longdesc primitive. LaTeX users should note that this is a generic +longdesc package, and should be loaded using \input . +containersize 2928 +containerchecksum 98398c838689cfe22ba859e2983f374ecf94b21bcf46de362056821af31285754717f7b2169f8bfb6fbbbee849449a1f3caf52d1397a901133d0364b392654ce +doccontainersize 40372 +doccontainerchecksum 53baed8af86447a60bb1a97774778256fc4ad1f08f73e2172a68fa091c32e41bf84d10642ebb426be610e34ef5575999d15be7f0c5a966618cea5b3a3832c9a4 +docfiles size=26 + RELOC/doc/generic/insbox/demo.pdf details="Examples of use" + RELOC/doc/generic/insbox/demo.tex + RELOC/doc/generic/insbox/pic1.eps + RELOC/doc/generic/insbox/pic2.eps +runfiles size=2 + RELOC/tex/generic/insbox/insbox.tex +catalogue-also wrapfig floatflt infpic +catalogue-ctan /macros/generic/insbox +catalogue-license pd +catalogue-topics text-flow +catalogue-version 2.2 + +name install-latex-guide-zh-cn +category Package +revision 59037 +shortdesc A short introduction to LaTeX installation written in Chinese +relocated 1 +longdesc This package will introduce the operations related to +longdesc installing TeX Live (introducing MacTeX in macOS), upgrading +longdesc macro packages, and compiling simple documents on Windows 10, +longdesc Ubuntu 20.04, and macOS systems, and mainly introducing command +longdesc line operations. +containersize 568 +containerchecksum 25689f4a96ff97c4790dca455abe2230d5d98f58a0deabb2f8d665d44c9a0a88ad336ace256d830d051a1e796f17da13a14f5f75f5acfb28148ded82658b0dc8 +doccontainersize 766856 +doccontainerchecksum d54c0f575208ba36bdc4d5281e3822816ec65c393caa0d8f3cdbcdcfd6236ea2a10509257690e0c62302c84f7330c91966cedc42a197bda584f2bc84f36f5aa9 +docfiles size=219 + RELOC/doc/latex/install-latex-guide-zh-cn/LICENSE + RELOC/doc/latex/install-latex-guide-zh-cn/README.md details="Readme" + RELOC/doc/latex/install-latex-guide-zh-cn/appendix/mirror.tex + RELOC/doc/latex/install-latex-guide-zh-cn/appendix/offline.tex + RELOC/doc/latex/install-latex-guide-zh-cn/appendix/updateinfo.tex + RELOC/doc/latex/install-latex-guide-zh-cn/appendix/wsladdition.tex + RELOC/doc/latex/install-latex-guide-zh-cn/chapter/editor.tex + RELOC/doc/latex/install-latex-guide-zh-cn/chapter/macos.tex + RELOC/doc/latex/install-latex-guide-zh-cn/chapter/overleaf.tex + RELOC/doc/latex/install-latex-guide-zh-cn/chapter/preface.tex + RELOC/doc/latex/install-latex-guide-zh-cn/chapter/ubuntu.tex + RELOC/doc/latex/install-latex-guide-zh-cn/chapter/windows.tex + RELOC/doc/latex/install-latex-guide-zh-cn/chapter/wsl.tex + RELOC/doc/latex/install-latex-guide-zh-cn/install-latex-guide-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/latex/install-latex-guide-zh-cn/install-latex-guide-zh-cn.tex + RELOC/doc/latex/install-latex-guide-zh-cn/make.bat + RELOC/doc/latex/install-latex-guide-zh-cn/makefile +catalogue-contact-repository https://github.com/OsbertWang/install-latex-guide-zh-cn +catalogue-ctan /info/install-latex-guide-zh-cn +catalogue-license lppl1.3c +catalogue-topics chinese-doc tutorial +catalogue-version 2021.5.1 + +name installfont +category Package +revision 31205 +shortdesc A bash script for installing a LaTeX font family +longdesc With this script you can install a LaTeX font family +longdesc (PostScript Type 1, TrueType and OpenType formats are +longdesc supported). Font series from light to ultra bold, and (faked) +longdesc small caps and (faked) slanted shapes are supported, but not +longdesc expert fonts. The script will rename the fonts automatically +longdesc (optional) or will otherwise expect the *.afm files and the +longdesc font files (in PostScript Type1 format) named in the Karl Berry +longdesc scheme (e.g. 5bbr8a.pfb). After running the script, you should +longdesc have a working font installation in your local TeX tree. +depend installfont.ARCH +containersize 4840 +containerchecksum cd5133b93c5daabaa0ea13649f3d34c28f9af9f92db54917e64cafca5f5e7fe5169d87e36783036850ccde0002d34860eceaea528ad06e21f08141106e6599ae +doccontainersize 56040 +doccontainerchecksum 2b61c4b229e0c4ec89c591075e52bcf8c150f5f9584bff94f81ec1f229940dafef11d6b6f84dd086692cbd99e6616685533d4313ef5bc48c56a7494fef3583b7 +docfiles size=24 + texmf-dist/doc/support/installfont/LICENSE + texmf-dist/doc/support/installfont/README details="Readme" + texmf-dist/doc/support/installfont/installfont + texmf-dist/doc/support/installfont/installfont.pdf details="Package documentation" language="en" + texmf-dist/doc/support/installfont/installfont.tex + texmf-dist/doc/support/installfont/manifest.txt +runfiles size=5 + texmf-dist/scripts/installfont/installfont-tl +catalogue-contact-repository https://bitbucket.org/kleberj/installfont/ +catalogue-ctan /support/installfont +catalogue-license lppl +catalogue-topics font-proc +catalogue-version 1.7 + +name installfont.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of installfont +containersize 344 +containerchecksum 0cb1d4b07edfee4bcf54b72e456f9ec84c1c32bad1b77b56f802891d26643f6975be6fddc02462aac5dbaafa57d780355375949456cd0a7eabb82c1dc2fa744a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/installfont-tl + +name installfont.amd64-freebsd +category Package +revision 19743 +shortdesc amd64-freebsd files of installfont +containersize 348 +containerchecksum f9067abb06177aff0876dd3787e63d266b52ba3eed7b5f13f17311201feba48dde4d461044500bc5ab0db692ca76531c7b275ff670a04a59717f59fe54ee1c2a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/installfont-tl + +name installfont.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of installfont +containersize 344 +containerchecksum 83c05b34a73f937418a3b718f6ceeff31de3be26dd88282b0666e4c488b843d5a4561885f60dd6050120292e8abb516b95a4981693f4388b9806852d35dcca50 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/installfont-tl + +name installfont.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of installfont +containersize 344 +containerchecksum 3b934098ba81fbb081b1b6cfdfa62a75b8a54554ceebe571e1f87fefdba2d945646a18365b7ccf30146981dffa6e14b34de9dd175ed4499acd6c9c6f50fc9957 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/installfont-tl + +name installfont.i386-cygwin +category Package +revision 19743 +shortdesc i386-cygwin files of installfont +containersize 344 +containerchecksum 8bf8465984adcca84b8c033b2a0d5e053181c2f00ac213de99fd5d5e1726c56a95bbc8aa358dd196c6fc39734b19ad576ccb2b2b08a149420931d11208d96f22 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/installfont-tl + +name installfont.i386-freebsd +category Package +revision 19743 +shortdesc i386-freebsd files of installfont +containersize 344 +containerchecksum 79f8a819ccfce5e627391e38271eb966570d5435828873d8524d9af63e73573d4f9a6f2ac75b41634d91060b5747a48bd219b4e40cff914ab143581484481129 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/installfont-tl + +name installfont.i386-linux +category Package +revision 19743 +shortdesc i386-linux files of installfont +containersize 344 +containerchecksum 78a7814294f627e1cd174342d0d650fff3d2a84c5423699b08f430fbe938b9072a4172f1f960485f998e4a2f3e395b57e9acb9c7d38ed74bd7d19e9688abae26 +binfiles arch=i386-linux size=1 + bin/i386-linux/installfont-tl + +name installfont.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of installfont +containersize 344 +containerchecksum b87a3c3cad6c43ea1fec1ee6229e1f6a73dc385c0c11ee640f6cd19f0130706434b93a3fdc57c5aa4ac511443b7f19a24657624e99c886c72df598c994236a3e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/installfont-tl + +name installfont.i386-solaris +category Package +revision 19743 +shortdesc i386-solaris files of installfont +containersize 344 +containerchecksum 734b0fe5e37dfad6661b9b2db8fbf8e68c140c988a1266962576d1fbbf9e08a356c8da13414eefe0c162281465a684bc26a24bdba9145e31ccba9a2e038cbfab +binfiles arch=i386-solaris size=1 + bin/i386-solaris/installfont-tl + +name installfont.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of installfont +containersize 344 +containerchecksum c2083fb0357543aa6337730aadf79770213b07de92eeadcfa9dc9f9c31182c85380b0f6588b63ea1161c4939239ecf0ab6f78cb123444c451354999498505c84 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/installfont-tl + +name installfont.win32 +category Package +revision 33638 +shortdesc win32 files of installfont +containersize 916 +containerchecksum b16958e96bedede2c07a90488c55de416b1f57da9f86b77878c8720a5fcce35a14c488da27d5c261bb93d5125898791c0ac188138c30d295955c28e20da7510a +binfiles arch=win32 size=1 + bin/win32/installfont-tl.exe + +name installfont.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of installfont +containersize 348 +containerchecksum c85836ee60a48b7f36de64c3c24481066121bb5463332e9e796d1eb18756138787e8b2841effe3e0f427f654d003689bc712036fba60c799dd52fab5dd1e4418 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/installfont-tl + +name installfont.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of installfont +containersize 352 +containerchecksum 5deb837ef1e98b85376ada706dcbd962056fb67309351642c52e1db2ebf5fb0e4f07e74a92278f67d18fab01ff7e07bb21dafff62939dc32e8ece6f960060ae2 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/installfont-tl + +name installfont.x86_64-linux +category Package +revision 19743 +shortdesc x86_64-linux files of installfont +containersize 344 +containerchecksum 67a11b5845c1cbc37429ea14abe428214b2806cf13c0c2c048cc11beacd7f98fcde50a28f694fc33c6e3a7bfc09d41d0601a7b5a0f9a3351ae1d6b1a7e577cab +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/installfont-tl + +name installfont.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of installfont +containersize 348 +containerchecksum c42e6275449dd532bb60606e3833cb76af48a69123cd46ddf727ae215ba8dbd931cc32795cbfa720e86436da80b61bc7c6f8117eb9c1b434d0bc965c4949e8d1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/installfont-tl + +name installfont.x86_64-solaris +category Package +revision 19743 +shortdesc x86_64-solaris files of installfont +containersize 344 +containerchecksum c8275a1713978834092e34b55adeb566fdbd10a3764a0705cc4b58849521ec5d7a4389d17a91a942e012c9c17707bc938d3df561733b73f9422b5280e048b862 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/installfont-tl + +name intcalc +category Package +revision 53168 +shortdesc Expandable arithmetic operations with integers +relocated 1 +longdesc This package provides expandable arithmetic operations with +longdesc integers, using the e-TeX extension \numexpr if it is +longdesc available. +containersize 5436 +containerchecksum e1087a7ab3f1d695bc20435ef0bb2b806d1cca71eb792fcf46e6c2fc6d819de2ff623a65593b65d5bf228309e3e3d5210ae1fb1452356f97a5ecb45921a7ce0f +doccontainersize 423196 +doccontainerchecksum f3cc5dba031957d77cdf39d902eeda96c8405efef52352109a7bfb187e363321d31120b4c66ed4b2e990fbd7085b927599a0956749e4303611cdbec5d9d7179e +docfiles size=107 + RELOC/doc/latex/intcalc/README.md + RELOC/doc/latex/intcalc/intcalc.pdf details="Package documentation" +srccontainersize 12576 +srccontainerchecksum c3fc56d3ece265756a6c19684e7c2f9717df7f65176a640bcf6fede941468c8a426abb610ebf9955de920adaf2c96165f91f7314f48701121dfc4381f921d42b +srcfiles size=18 + RELOC/source/latex/intcalc/intcalc.dtx +runfiles size=8 + RELOC/tex/generic/intcalc/intcalc.sty +catalogue-contact-bugs https://github.com/ho-tex/intcalc/issues +catalogue-contact-repository https://github.com/ho-tex/intcalc +catalogue-ctan /macros/latex/contrib/intcalc +catalogue-license lppl1.3 +catalogue-topics arithmetic calculation +catalogue-version 1.3 + +name inter +category Package +revision 58892 +shortdesc The inter font face with support for LaTeX, XeLaTeX, and LuaLaTeX +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Inter Sans family of fonts (version 3.015), +longdesc designed by Rasmus Andersson. Inter is a typeface specially +longdesc designed for user interfaces with focus on high legibility of +longdesc small-to-medium sized text on computer screens. The family +longdesc features a tall x-height to aid in readability of mixed-case +longdesc and lower-case text. +execute addMap Inter.map +containersize 6520756 +containerchecksum fc423429252eeb8878fc9c423c1c51f9d24781b262d0b4e08d10e397a13985507916d50d3f3fd2164f7fea2c5b45e35da415699e6ed424957c9b337b5e349cfb +doccontainersize 55896 +doccontainerchecksum aef65d0830399dd9fbdda59f130cb5a5847796d591baaafe74e621115061f04dfc55c6d68d1954251d5d6b63b6e7b88eb16c50842a6f5b045f4a643498fb9c2c +docfiles size=19 + RELOC/doc/fonts/inter/LICENSE.txt + RELOC/doc/fonts/inter/README details="Readme" + RELOC/doc/fonts/inter/README.md + RELOC/doc/fonts/inter/inter-samples.pdf details="Package documentation" + RELOC/doc/fonts/inter/inter-samples.tex +runfiles size=4738 + RELOC/fonts/enc/dvips/inter/a_2p3rhn.enc + RELOC/fonts/enc/dvips/inter/a_3kvptd.enc + RELOC/fonts/enc/dvips/inter/a_6drkwd.enc + RELOC/fonts/enc/dvips/inter/a_6juwg2.enc + RELOC/fonts/enc/dvips/inter/a_bal5qf.enc + RELOC/fonts/enc/dvips/inter/a_cwhrm5.enc + RELOC/fonts/enc/dvips/inter/a_cyrdxo.enc + RELOC/fonts/enc/dvips/inter/a_doz5y6.enc + RELOC/fonts/enc/dvips/inter/a_dxdtrq.enc + RELOC/fonts/enc/dvips/inter/a_g6if7q.enc + RELOC/fonts/enc/dvips/inter/a_ggbt67.enc + RELOC/fonts/enc/dvips/inter/a_hx3dc4.enc + RELOC/fonts/enc/dvips/inter/a_jvxmtv.enc + RELOC/fonts/enc/dvips/inter/a_n63sgl.enc + RELOC/fonts/enc/dvips/inter/a_nkgz7y.enc + RELOC/fonts/enc/dvips/inter/a_pj3fbv.enc + RELOC/fonts/enc/dvips/inter/a_pn4hzq.enc + RELOC/fonts/enc/dvips/inter/a_rjznlt.enc + RELOC/fonts/enc/dvips/inter/a_v3wpkc.enc + RELOC/fonts/enc/dvips/inter/a_wgqtfc.enc + RELOC/fonts/enc/dvips/inter/a_y2idd3.enc + RELOC/fonts/enc/dvips/inter/a_y6622h.enc + RELOC/fonts/enc/dvips/inter/a_yzlvkb.enc + RELOC/fonts/enc/dvips/inter/a_zasxrl.enc + RELOC/fonts/enc/dvips/inter/a_zxuxr2.enc + RELOC/fonts/map/dvips/inter/Inter.map + RELOC/fonts/opentype/public/inter/Inter-Black.otf + RELOC/fonts/opentype/public/inter/Inter-BlackItalic.otf + RELOC/fonts/opentype/public/inter/Inter-Bold.otf + RELOC/fonts/opentype/public/inter/Inter-BoldItalic.otf + RELOC/fonts/opentype/public/inter/Inter-ExtraBold.otf + RELOC/fonts/opentype/public/inter/Inter-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/inter/Inter-ExtraLight.otf + RELOC/fonts/opentype/public/inter/Inter-ExtraLightItalic.otf + RELOC/fonts/opentype/public/inter/Inter-Italic.otf + RELOC/fonts/opentype/public/inter/Inter-Light.otf + RELOC/fonts/opentype/public/inter/Inter-LightItalic.otf + RELOC/fonts/opentype/public/inter/Inter-Medium.otf + RELOC/fonts/opentype/public/inter/Inter-MediumItalic.otf + RELOC/fonts/opentype/public/inter/Inter-Regular.otf + RELOC/fonts/opentype/public/inter/Inter-SemiBold.otf + RELOC/fonts/opentype/public/inter/Inter-SemiBoldItalic.otf + RELOC/fonts/opentype/public/inter/Inter-Thin.otf + RELOC/fonts/opentype/public/inter/Inter-ThinItalic.otf + RELOC/fonts/tfm/public/inter/Inter-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inter/Inter-ThinItalic-tlf-ts1.tfm + RELOC/fonts/type1/public/inter/Inter-Black.pfb + RELOC/fonts/type1/public/inter/Inter-BlackItalic.pfb + RELOC/fonts/type1/public/inter/Inter-Bold.pfb + RELOC/fonts/type1/public/inter/Inter-BoldItalic.pfb + RELOC/fonts/type1/public/inter/Inter-ExtraBold.pfb + RELOC/fonts/type1/public/inter/Inter-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/inter/Inter-ExtraLight.pfb + RELOC/fonts/type1/public/inter/Inter-ExtraLightItalic.pfb + RELOC/fonts/type1/public/inter/Inter-Italic.pfb + RELOC/fonts/type1/public/inter/Inter-Light.pfb + RELOC/fonts/type1/public/inter/Inter-LightItalic.pfb + RELOC/fonts/type1/public/inter/Inter-Medium.pfb + RELOC/fonts/type1/public/inter/Inter-MediumItalic.pfb + RELOC/fonts/type1/public/inter/Inter-Regular.pfb + RELOC/fonts/type1/public/inter/Inter-SemiBold.pfb + RELOC/fonts/type1/public/inter/Inter-SemiBoldItalic.pfb + RELOC/fonts/type1/public/inter/Inter-Thin.pfb + RELOC/fonts/type1/public/inter/Inter-ThinItalic.pfb + RELOC/fonts/vf/public/inter/Inter-Black-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Black-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Black-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Black-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Black-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Black-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Black-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Black-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Black-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Black-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Black-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Light-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Light-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Light-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Light-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inter/Inter-ThinItalic-tlf-ts1.vf + RELOC/tex/latex/inter/LY1Inter-LF.fd + RELOC/tex/latex/inter/LY1Inter-Sup.fd + RELOC/tex/latex/inter/LY1Inter-TLF.fd + RELOC/tex/latex/inter/OT1Inter-LF.fd + RELOC/tex/latex/inter/OT1Inter-Sup.fd + RELOC/tex/latex/inter/OT1Inter-TLF.fd + RELOC/tex/latex/inter/T1Inter-LF.fd + RELOC/tex/latex/inter/T1Inter-Sup.fd + RELOC/tex/latex/inter/T1Inter-TLF.fd + RELOC/tex/latex/inter/TS1Inter-LF.fd + RELOC/tex/latex/inter/TS1Inter-TLF.fd + RELOC/tex/latex/inter/inter.sty +catalogue-contact-repository https://github.com/ccebinger/CTAN_Inter +catalogue-ctan /fonts/inter +catalogue-license ofl lppl +catalogue-topics font font-body font-sans font-proportional font-otf font-type1 font-supp font-t1enc + +name interactiveworkbook +category Package +revision 15878 +shortdesc LaTeX-based interactive PDF on the Web +relocated 1 +longdesc The package interactiveworkbook gives the user the ability to +longdesc write LaTeX documents which, ultimately, create interactive +longdesc question-and-answer Portable Document Format (PDF) tutorials +longdesc meant to be used by Internet students and that, in particular, +longdesc freely use mathematical notation. +containersize 5216 +containerchecksum 2afca3ee8051065d4014cae8ee751f085abe6e62ea0af7d6c036bfd9ae6c3f38a295857d67c7e8f75a049fd618c82ad8b28a66f5c83a387969549cbf20ef159b +doccontainersize 401956 +doccontainerchecksum cdc12a36f547787fd1e6aaa5f9dc38b99092f4fd7e71095c1b5ca25730b4d2a5a5fc1636798978741538624091721c96220d91b8f1cc29d7f4698767ce0269f0 +docfiles size=242 + RELOC/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.pdf details="Package documentation" + RELOC/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.tex + RELOC/doc/latex/interactiveworkbook/epsfiles/WS_FTP.LOG + RELOC/doc/latex/interactiveworkbook/epsfiles/buttonappearance.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/checkclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/checksubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques1.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques10.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques11.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques12.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques13.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques14.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques15.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques16.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques17.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques18.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques19.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques2.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques20.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques3.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques4.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques5.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques6.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques7.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques8.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques9.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/fieldclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/fieldsubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/ndex.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/next.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonechecktwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldtwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopuptwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiofive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiofour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradioone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiothree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiotwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreechecktwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldtwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopuptwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiofive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiofour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradioone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiothree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiotwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwochecktwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldtwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopuptwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiofive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiofour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadioone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiothree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiotwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/popupclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/popupsubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/prev.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/radioclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/radiosubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/return.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightcheckcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightfieldcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightpopupcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightradiocorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongcheckcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongfieldcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongpopupcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongradiocorrect.eps + RELOC/doc/latex/interactiveworkbook/samplefiles/check.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/check.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/field.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/field.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/ndex.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/ndex.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/popup.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/popup.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/radio.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/radio.tex +runfiles size=17 + RELOC/tex/latex/interactiveworkbook/interactiveworkbook-web.sty + RELOC/tex/latex/interactiveworkbook/interactiveworkbook.sty +catalogue-ctan /macros/latex/contrib/interactiveworkbook +catalogue-license lppl +catalogue-topics tutorial + +name interchar +category Package +revision 36312 +shortdesc Managing character class schemes in XeTeX +relocated 1 +longdesc The package manages character class schemes of XeTeX. Using +longdesc this package, you may switch among different character class +longdesc schemes. Migration commands are provided for make packages +longdesc using this mechanism compatible with each others. +containersize 5308 +containerchecksum 8beb2e016e1a6af0199708355b8f13aa1accc614135cdf1d6dd534eceb6fd5a8d9e611e4d6fe0d72da9effdef446549b01d5ea2aad043f3fe94b81fd3d4aa188 +doccontainersize 85428 +doccontainerchecksum c36dfea3f3f62660cae4f4653136269247bd109931b2eb6478eba29af089d42b6ea9f8afaf0c345c9364a68c1645e288d289345e13c8582e1639edaea20a26be +docfiles size=29 + RELOC/doc/xelatex/interchar/README details="Readme" + RELOC/doc/xelatex/interchar/interchar.pdf details="Package documentation" + RELOC/doc/xelatex/interchar/interchar.tex + RELOC/doc/xelatex/interchar/interchardemo1.pdf + RELOC/doc/xelatex/interchar/interchardemo1.tex + RELOC/doc/xelatex/interchar/interchartest.pdf + RELOC/doc/xelatex/interchar/interchartest.tex +runfiles size=6 + RELOC/tex/xelatex/interchar/interchar.sty +catalogue-contact-repository https://github.com/zohooo/interchar +catalogue-ctan /macros/xetex/latex/interchar +catalogue-license lppl1.3 +catalogue-topics xetex +catalogue-version 0.2 + +name interfaces +category Package +revision 21474 +shortdesc Set parameters for other packages, conveniently +relocated 1 +longdesc The package provides a small number of convenient macros that +longdesc access features in other frequently-used packages, or provide +longdesc interfaces to other useful facilities such as the pdfTeX +longdesc \pdfelapsedtime primitive. Most of these macros use pgfkeys to +longdesc provide a key-value syntax. The package also uses the package +longdesc scrlfile from the Koma-Script bundle (for controlled loading of +longdesc other files) and etoolbox. The package is bundled with +longdesc sub-packages containing actual interfaces: by default, the +longdesc package loads all available sub-packages, but techniques are +longdesc provided for the user to select no more than the interfaces +longdesc needed for a job. +containersize 27932 +containerchecksum 3c726602547ae05d0ca055d92b98a3cd5fce9709329fe9e769e5bb02c401a28b9b4cee53e5b1ee21dbb6c1c4223cf7a098aea227d615a45ced885c7c4ccab93e +doccontainersize 740556 +doccontainerchecksum a9b44711b1f38c48886f7b4a49b3a58ec5514995c9bed9a067d41cbf35dcc0093fcade7ef28693970f1f017924dc2f6f79d8c89a1efc847f7a8c264cb8f98ea9 +docfiles size=320 + RELOC/doc/latex/interfaces/README details="Readme" + RELOC/doc/latex/interfaces/interfaces.pdf details="Package documentation" +srccontainersize 67108 +srccontainerchecksum a93e77e7d12c91515e2d67f926ff6bfb76a278eae5880c60d2575580517d31f82d45656061f2999d5c4e73279a09dc5c5437351f10419b6ea92424d555e7e3a7 +srcfiles size=94 + RELOC/source/latex/interfaces/interfaces.drv + RELOC/source/latex/interfaces/interfaces.dtx + RELOC/source/latex/interfaces/interfaces.ins +runfiles size=60 + RELOC/tex/latex/interfaces/interfaces-LaTeX.sty + RELOC/tex/latex/interfaces/interfaces-appendix.sty + RELOC/tex/latex/interfaces/interfaces-base.sty + RELOC/tex/latex/interfaces/interfaces-bookmark.sty + RELOC/tex/latex/interfaces/interfaces-embedfile.sty + RELOC/tex/latex/interfaces/interfaces-enumitem.sty + RELOC/tex/latex/interfaces/interfaces-environ.sty + RELOC/tex/latex/interfaces/interfaces-etoolbox.sty + RELOC/tex/latex/interfaces/interfaces-fancyhdr.sty + RELOC/tex/latex/interfaces/interfaces-hypbmsec.sty + RELOC/tex/latex/interfaces/interfaces-hyperref.sty + RELOC/tex/latex/interfaces/interfaces-makecell.sty + RELOC/tex/latex/interfaces/interfaces-marks.sty + RELOC/tex/latex/interfaces/interfaces-pgfkeys.sty + RELOC/tex/latex/interfaces/interfaces-scrlfile.sty + RELOC/tex/latex/interfaces/interfaces-tikz.sty + RELOC/tex/latex/interfaces/interfaces-titlesec.sty + RELOC/tex/latex/interfaces/interfaces-tocloft.sty + RELOC/tex/latex/interfaces/interfaces-truncate.sty + RELOC/tex/latex/interfaces/interfaces-umrand.sty + RELOC/tex/latex/interfaces/interfaces.sty +catalogue-ctan /macros/latex/contrib/interfaces +catalogue-license lppl1.3 +catalogue-topics package-supp +catalogue-version 3.1 + +name interpreter +category Package +revision 27232 +shortdesc Translate input files on the fly +relocated 1 +longdesc The package preprocesses input files to a Lua(La)TeX run, on +longdesc the fly. The user defines Lua regular expressions to search for +longdesc patterns and modify input lines (or entire paragraphs) +longdesc accordingly, before TeX reads the material. In this way, +longdesc documents may be prepared in a non-TeX language (e.g., some +longdesc lightweight markup language) and turned into 'proper' TeX for +longdesc processing. The source of the documentation is typed in such a +longdesc lightweight language and is thus easily readable in a text +longdesc editor (the PDF file is also available, of course); the +longdesc transformation to TeX syntax via Interpreter's functions is +longdesc explained in the documentation itself. Interpreter is +longdesc implemented using the author's gates (lua version), and works +longdesc for plain TeX and LaTeX, but not ConTeXt. +containersize 6224 +containerchecksum 6dbbf39f9f0f357f45ae275458f03abfee625720b5f2dd3bbb5a78f60f4c0e8972d153c8d1647f147403f7c665e25147fd0c576cccb226a74630348a9f0a7381 +doccontainersize 122152 +doccontainerchecksum 3408bcb3cd3e6da67294c830870534d3cd620b7abc3ad35d4833e30c831bf93d11dc06d00547888268870c75f6a6e2e861448a0fa197e3e5a3c10aaccc6e4dd8 +docfiles size=41 + RELOC/doc/luatex/interpreter/README details="Readme" + RELOC/doc/luatex/interpreter/i-doc.lua + RELOC/doc/luatex/interpreter/interpreter-doc.pdf details="Package documentation" + RELOC/doc/luatex/interpreter/interpreter-doc.tex + RELOC/doc/luatex/interpreter/interpreter-doc.txt +runfiles size=8 + RELOC/tex/luatex/interpreter/interpreter.lua + RELOC/tex/luatex/interpreter/interpreter.sty + RELOC/tex/luatex/interpreter/interpreter.tex +catalogue-ctan /macros/luatex/generic/interpreter +catalogue-license lppl +catalogue-topics foreign-import macro-supp luatex +catalogue-version 1.2 + +name interval +category Package +revision 50265 +shortdesc Format mathematical intervals, ensuring proper spacing +relocated 1 +longdesc When typing an open interval as $]a,b[$, a closing bracket is +longdesc being used in place of an opening fence and vice versa. This +longdesc leads to the wrong spacing in, say, $]-a,b[$ or $A\in]a,b[=B$. +longdesc The package attempts to solve this using: \interval{a}{b} -> +longdesc [a,b] \interval[open]{a}{b} -> ]a,b[ \interval[open left]{a}{b} +longdesc -> ]a,b] The package also supports fence scaling and ensures +longdesc that the enclosing fences will end up having the proper closing +longdesc and opening types. TeX maths does not do this job properly. The +longdesc package depends on pgfkeys. +containersize 1620 +containerchecksum 2a2fe0ebdc4754ca74962270ec48c69e6574c13e446628f34604b13584e7b14ff33add55744f03a1d28443b5ae87ba79926816bf44781951a729913ceeb4d6c9 +doccontainersize 325808 +doccontainerchecksum 22dcf2288d7f888e76967209ef1fd31bef66dcb9784a45126a945c4a0ea302c67ab4a35bd864355b29679131cf2cf36fc6172017599ccf3025c4ae1537362b9b +docfiles size=82 + RELOC/doc/latex/interval/README details="Readme" + RELOC/doc/latex/interval/interval.pdf details="Package documentation" + RELOC/doc/latex/interval/interval.tex +runfiles size=1 + RELOC/tex/latex/interval/interval.sty +catalogue-ctan /macros/latex/contrib/interval +catalogue-license lppl1.3 +catalogue-topics maths paren-mgmt +catalogue-version 0.4 + +name intopdf +category Package +revision 58743 +shortdesc Embed non-PDF files into PDF with hyperlink +relocated 1 +longdesc The package allows to embed non-PDF files (e.g., BibTeX) into +longdesc PDF with a hyperlink. +containersize 1360 +containerchecksum 555c9e4c98c5d123afd706ecd02b9983406268ccbe32cb06f1072a08d5b4d035aa76ac1cdfb94015b02458405cb95f175ef719a477be593318dff2f1b1e2c0f9 +doccontainersize 379136 +doccontainerchecksum dc4524ac96a3d29ad898e9bf9c34ec3d32716eb3ef9c7da217180ead49f9926883a2a26116b1f7a18635094576e93f6bf1b5110002f14674dec19d26e37da0ce +docfiles size=94 + RELOC/doc/latex/intopdf/README.md details="Readme" + RELOC/doc/latex/intopdf/intopdf.pdf details="Package documentation" +srccontainersize 2388 +srccontainerchecksum 75b6ee9b8b878cfe666d9d73c68a7445a6ab1520515bf6e353d2b27e0b388b28e36ef4508892eaa9647441ee988a1e8607a6dcb94dc356c34ae1e7ae986fad45 +srcfiles size=2 + RELOC/source/latex/intopdf/intopdf.dtx +runfiles size=1 + RELOC/tex/latex/intopdf/intopdf.sty +catalogue-contact-repository https://github.com/zauguin/intopdf +catalogue-ctan /macros/latex/contrib/intopdf +catalogue-license lppl1.3c +catalogue-topics hyper pdf-feat +catalogue-version 0.4.0 + +name intro-scientific +category Package +revision 15878 +shortdesc Introducing scientific/mathematical documents using LaTeX +relocated 1 +longdesc "Writing Scientific Documents Using LaTeX" is an article +longdesc introducing the use of LaTeX in typesetting scientific +longdesc documents. It covers the basics of creating a new LaTeX +longdesc document, special typesetting considerations, mathematical +longdesc typesetting and graphics. It also touches on bibliographic data +longdesc and BibTeX. +containersize 540 +containerchecksum 9919021461485fc22ed6ecc0b30d0a23c0a2217c76a07dd8acd87c9091c9d71be0e370ce1373f90e6f5a36a9638ce4312fc674b16ccd0846aab97d1b05674391 +doccontainersize 274748 +doccontainerchecksum 0daf84bdf7821aeb2f7971ed15de5546a13a444f3dc1b757f31490679350199fc893111109fc564aae2c8786fefc9e198e79e817bb318a1ad62698b6a5c79af5 +docfiles size=113 + RELOC/doc/latex/intro-scientific/Makefile + RELOC/doc/latex/intro-scientific/README details="Readme" + RELOC/doc/latex/intro-scientific/earth-moon.pdf + RELOC/doc/latex/intro-scientific/scidoc.pdf details="The document itself" + RELOC/doc/latex/intro-scientific/scidoc.tex +catalogue-ctan /info/intro-scientific +catalogue-license lppl +catalogue-topics tut-latex +catalogue-version 5th edition + +name inversepath +category Package +revision 15878 +shortdesc Calculate inverse file paths +relocated 1 +longdesc The package calculates inverse relative paths. Such things may +longdesc be useful, for example, when writing an auxiliary file to a +longdesc different directory. +containersize 1420 +containerchecksum d0d95399067922172799d17cc9b9b4fa7a79cf2928630c63441114c479bc60e72b3e5133b54f8f7925cbf90f5b419c89e07699ecf8e8269b43f969e584698043 +doccontainersize 73972 +doccontainerchecksum a9dba77a8aa851a5e915e368c5090fc83fd894c22efedffce97ee0915b4ec50fa72efc30f377891b5efc0749c12018228ce400cd4024369cfb81ff3fe62567b8 +docfiles size=21 + RELOC/doc/latex/inversepath/README details="Readme" + RELOC/doc/latex/inversepath/inversepath.pdf details="Package documentation" +srccontainersize 4432 +srccontainerchecksum de5bfe7ac5967f4ab02dd0931c5799c6c68c5c7a57d8b6c40a205e76546d8a23a6ac6be292c6a1cd4c8475bbf0eb229b6d198eabc66a17b2ea4b0ffd0c798323 +srcfiles size=4 + RELOC/source/latex/inversepath/inversepath.dtx + RELOC/source/latex/inversepath/inversepath.ins +runfiles size=1 + RELOC/tex/latex/inversepath/inversepath.sty +catalogue-ctan /macros/latex/contrib/inversepath +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.2 + +name invoice +category Package +revision 48359 +shortdesc Generate invoices +relocated 1 +longdesc The package may be used for generating invoices. The package +longdesc can deal with invisible expense items and deductions; output +longdesc may be presented in any of 10 different languages. A +longdesc long-standing bug has been removed. Numbers now can show the +longdesc comma as decimal separator. The package depends on the fp, calc +longdesc and siunitx for its calculations. +containersize 8756 +containerchecksum 7ddb8e05d88321f45cfe8618c740671e17e79ddf53fc2c11a3b9224a27ba1ebc815635484f3dfb4c849d90efb859412028df1e7f91a4e746cf812b19e5d1a269 +doccontainersize 101852 +doccontainerchecksum 7b827f575eca669f15767be9fd215e827a3e98b03ea3e1f353039f5190fa7d75a5e59dd5d89ada982518101fc5164449843656c60a65679dd82061dbfcb95ea2 +docfiles size=32 + RELOC/doc/latex/invoice/README details="Readme" + RELOC/doc/latex/invoice/invoice.pdf details="Package documentation" + RELOC/doc/latex/invoice/invoice.tex +runfiles size=13 + RELOC/tex/latex/invoice/invoice.sty + RELOC/tex/latex/invoice/invoicelabels.sty +catalogue-also facture invoice2 +catalogue-ctan /macros/latex/contrib/invoice +catalogue-license lppl1.3c +catalogue-topics invoice + +name invoice-class +category Package +revision 49749 +shortdesc Produces a standard US invoice from a CSV file +relocated 1 +longdesc This class produces a standard US commercial invoice using data +longdesc from a CSV file. Invoices can span multiple pages. The class is +longdesc configurable for different shipping addresses. +containersize 2752 +containerchecksum d31a445c1696741dbbdeb4f035358cdabc9a4ff74855c432dd2b6d66b0d690e65e400207bafdb643a1ae7bee3b3472393043088521a685251acaf9abadb08769 +doccontainersize 102896 +doccontainerchecksum a3ab71dd11f6aedcb7ce8a89f8b97f8a18ac4c610e3460fd13c1d31b8db0d347d25ff6520af7bd4d37453759d03db384df9e69b281307a36a1d05b4beed0a60f +docfiles size=46 + RELOC/doc/latex/invoice-class/README.md details="Readme" + RELOC/doc/latex/invoice-class/doc/duck-invoice.cfg + RELOC/doc/latex/invoice-class/doc/duck-invoice.csv + RELOC/doc/latex/invoice-class/doc/duck-invoice.pdf + RELOC/doc/latex/invoice-class/doc/duck-invoice.tex + RELOC/doc/latex/invoice-class/doc/ducks.csv + RELOC/doc/latex/invoice-class/doc/ducks.pdf + RELOC/doc/latex/invoice-class/doc/ducks.tex + RELOC/doc/latex/invoice-class/doc/invoice-class.pdf details="Package documentation" + RELOC/doc/latex/invoice-class/doc/invoice-class.tex +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-license lppl1.3 +catalogue-topics invoice csv-support +catalogue-version 1.0 + +name invoice2 +category Package +revision 46364 +shortdesc Intelligent invoices with LaTeX3 +relocated 1 +longdesc Typeset invoices with automatic VAT and calculation of totals. +longdesc Supports internationalization, invoices are typeset with +longdesc booktabs for readability. Does not support separate projects +longdesc per invoice. Can be used as a replacement for invoice in most +longdesc cases. +containersize 3388 +containerchecksum a790c180fedcf407b999e018cd96b1a0440b07f98c403e9c9e780863f2ecac4f4559ffb88f6a3e4f6080c89745d8a99e5ca6ee98299c7529972edebe68e00eaa +doccontainersize 626584 +doccontainerchecksum fc4baede264c6fd1ec94338829c6973c79c04f21284532194196063b3499becf2bbc2933644ca8b870608e8879315f724b173bbbd26548d24e1649929feed7d3 +docfiles size=161 + RELOC/doc/latex/invoice2/LICENSE-gpl-3.0.md + RELOC/doc/latex/invoice2/README.md details="Readme" + RELOC/doc/latex/invoice2/invoice2.pdf details="Package documentation" +srccontainersize 9120 +srccontainerchecksum cf014bdc2debe9e400d940232eb434b1354ba7f1a093c7389c5b1d332dd2c270e7e3c1f07d65ffe9fd5d2d088e59b3e846e2fc2598eb7297189d6c772b2b16ee +srcfiles size=11 + RELOC/source/latex/invoice2/invoice2.dtx + RELOC/source/latex/invoice2/invoice2.ins +runfiles size=7 + RELOC/tex/latex/invoice2/invoice2-english.trsl + RELOC/tex/latex/invoice2/invoice2-german.trsl + RELOC/tex/latex/invoice2/invoice2-swissgerman.trsl + RELOC/tex/latex/invoice2/invoice2.sty +catalogue-contact-home https://github.com/no-preserve-root/invoice2 +catalogue-ctan /macros/latex/contrib/invoice2 +catalogue-license gpl3+ +catalogue-topics invoice + +name iodhbwm +category Package +revision 57773 +shortdesc Unofficial template of the DHBW Mannheim +relocated 1 +longdesc This package provides an unofficial template of the DHBW +longdesc Mannheim for the creation of bachelor thesis, studies or +longdesc project work with LaTeX. The aim of the package is the quick +longdesc creation of a basic framework without much effort. +containersize 40680 +containerchecksum a0a6807c8715dfa5f4ded44f66509ecd6af804d5dbfa44adb4fec3454f39be633fe17b79458106be0a6c35086dd1d3e33aec19ec657a6cb6b3903695b5019cac +doccontainersize 3073260 +doccontainerchecksum ed3c906cdbb26c095f5078dbe961781ab1a31f8c1a7b926b0a8082b7bb41b71a8912774829135651937bdcc5f2e53880300cf9b21b6ce35430fc443d30423244 +docfiles size=1213 + RELOC/doc/latex/iodhbwm/README.md details="Readme" + RELOC/doc/latex/iodhbwm/examples/abstract/iodhbwm-auto-sections-with-abstract.pdf + RELOC/doc/latex/iodhbwm/examples/abstract/iodhbwm-auto-sections-with-abstract.tex + RELOC/doc/latex/iodhbwm/examples/abstract/my-abstract.inc.tex + RELOC/doc/latex/iodhbwm/examples/acronyms/iodhbwm-acro.pdf + RELOC/doc/latex/iodhbwm/examples/acronyms/iodhbwm-acro.tex + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix-auto.pdf + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix-auto.tex + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix.pdf + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.tex + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-print.pdf + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-print.tex + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-replace-part-naming.pdf + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-replace-part-naming.tex + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-roman-numbers.pdf + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-roman-numbers.tex + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-advanced-starter.pdf + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-advanced-starter.tex + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-recommended-starter.pdf + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-recommended-starter.tex + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-simple-starter.pdf + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-simple-starter.tex + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings-color.pdf + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings-color.tex + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings.pdf + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings.tex + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-hyperref.pdf + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-hyperref.tex + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-references.pdf + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-references.tex + RELOC/doc/latex/iodhbwm/examples/titlepages/img/penguin-158298-pixabay.png + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-custom-titlepage.pdf + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-custom-titlepage.tex + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-titlepage-logo.pdf + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-titlepage-logo.tex + RELOC/doc/latex/iodhbwm/examples/titlepages/my-titlepage.tex + RELOC/doc/latex/iodhbwm/i18n/english/dhbw-declaration.def + RELOC/doc/latex/iodhbwm/i18n/english/dhbw-titlepage-ba.def + RELOC/doc/latex/iodhbwm/i18n/english/dhbw-titlepage-pa.def + RELOC/doc/latex/iodhbwm/i18n/english/dhbw-titlepage-sa.def + RELOC/doc/latex/iodhbwm/i18n/english/dhbw-titlepage.def + RELOC/doc/latex/iodhbwm/i18n/ngerman/dhbw-declaration.def + RELOC/doc/latex/iodhbwm/i18n/ngerman/dhbw-titlepage-ba.def + RELOC/doc/latex/iodhbwm/i18n/ngerman/dhbw-titlepage-pa.def + RELOC/doc/latex/iodhbwm/i18n/ngerman/dhbw-titlepage-sa.def + RELOC/doc/latex/iodhbwm/i18n/ngerman/dhbw-titlepage.def + RELOC/doc/latex/iodhbwm/iodhbwm.pdf details="Package documentation" language="de" + RELOC/doc/latex/iodhbwm/iodhbwm.tex +runfiles size=20 + RELOC/tex/latex/iodhbwm/dhbw-logo.png + RELOC/tex/latex/iodhbwm/iodhbwm-i18n.def + RELOC/tex/latex/iodhbwm/iodhbwm-templates.sty + RELOC/tex/latex/iodhbwm/iodhbwm.cls +catalogue-contact-bugs https://github.com/faltfe/iodhbwm/issues +catalogue-contact-home https://faltfe.github.io/iodhbwm/ +catalogue-contact-repository https://github.com/faltfe/iodhbwm/ +catalogue-ctan /macros/latex/contrib/iodhbwm +catalogue-license lppl1.3 +catalogue-topics class dissertation misc-paper +catalogue-version 1.2.2 + +name ionumbers +category Package +revision 33457 +shortdesc Restyle numbers in maths mode +relocated 1 +longdesc 'ionumbers' stands for 'input/output numbers'. The package +longdesc restyles numbers in maths mode. If a number in the input file +longdesc is written, e.g., as $3,231.44$ as commonly used in English +longdesc texts, the package is able to restyle it to be output as +longdesc $3\,231{,}44$ as commonly used in German texts (and vice +longdesc versa). This may be useful, for example, if you have a large +longdesc table and want to include it in texts with different output +longdesc conventions without the need to change the table. The package +longdesc can also automatically group digits left of the decimal +longdesc separator (thousands) and right of the decimal separator +longdesc (thousandths) in triplets without the need of specifing commas +longdesc (English) or points (German) as separators. E.g., the input +longdesc $1234.567890$ can be output as $1\,234.\,567\,890$. Finally, an +longdesc e starts the exponent of the number. For example, $21e6$ may be +longdesc output as $26\times10\,^{6}$. +containersize 4952 +containerchecksum f964955ea6470a8906dd7623bd6959aad72ab4da5cbd4c32aa78cb2350cda05a1f577316ef97cdec9658deda027429462b70bcdad18024f255191b2f6cd7f99a +doccontainersize 482812 +doccontainerchecksum 5bf57ed5617846d10834f880e4a1c029547f1ac678a52be3e79613803b4e6cd0986887f2a44a0a4bfabaf9134ef39c44e420a12047fee81fd34243ec42c5262e +docfiles size=134 + RELOC/doc/latex/ionumbers/COPYING + RELOC/doc/latex/ionumbers/Makefile + RELOC/doc/latex/ionumbers/README details="Readme" + RELOC/doc/latex/ionumbers/ionumbers.pdf details="Package documentation" + RELOC/doc/latex/ionumbers/ionumbers_test.pdf + RELOC/doc/latex/ionumbers/ionumbers_test.tex +srccontainersize 12992 +srccontainerchecksum f7d0f56de1a00761104fa7e9aa13f1ca4b9ef97051ef2dd6d28dba3066998d53aeae015d956dec0d3c771d85f6553c5835e4a9bd9d83dd4feb65591d6c613fb4 +srcfiles size=16 + RELOC/source/latex/ionumbers/ionumbers.dtx + RELOC/source/latex/ionumbers/ionumbers.ins +runfiles size=7 + RELOC/tex/latex/ionumbers/ionumbers.sty +catalogue-ctan /macros/latex/contrib/ionumbers +catalogue-license gpl +catalogue-topics numbers +catalogue-version 0.3.3 + +name iopart-num +category Package +revision 15878 +shortdesc Numeric citation style for IOP journals +relocated 1 +longdesc A BibTeX style providing numeric citation in Harvard-like +longdesc format. Intended for use with Institute of Physics (IOP) +longdesc journals, including Journal of Physics. +containersize 7864 +containerchecksum 49fadfe2a8a1796131be814b170e270e7d39c035419d7e546e57d2ef1fea13d48b2b022eda463829e1bdbe60233d361773321d86070420ad2b63b48154adf18d +doccontainersize 63076 +doccontainerchecksum 167b0612883558f74d7696a6c9481fbb75e9ef6e7760edc4f79d81b3e1d7a344dc1efbf638eb4f5ba69be7002391211024f7aafed2e08e19fe559b58b0f7b1b0 +docfiles size=21 + RELOC/doc/bibtex/iopart-num/README details="Readme" + RELOC/doc/bibtex/iopart-num/iopart-num.bib + RELOC/doc/bibtex/iopart-num/iopart-num.pdf details="Package documentation" + RELOC/doc/bibtex/iopart-num/iopart-num.tex +runfiles size=9 + RELOC/bibtex/bst/iopart-num/iopart-num.bst +catalogue-ctan /biblio/bibtex/contrib/iopart-num +catalogue-license lppl +catalogue-topics bibtex-supp journalpub +catalogue-version 2.1 + +name ipaex +category Package +revision 52032 +shortdesc IPA (Japanese) fonts +relocated 1 +longdesc The fonts provide fixed-width glyphs for Kana and Kanji +longdesc characters, proportional width glyphs for Western characters. +containersize 15865216 +containerchecksum c15157c117594f670a5779bc33e1cac043fda730e2b7a95d781470da2f42075e387d2a939976d469f1b0d05804b2907a7daf7ddb7d9f45074239c6893d89c21f +doccontainersize 7480 +doccontainerchecksum 04fca8414689b3b828937ba46767415b3b2de1a4cbc87ae95f790aee4bc82b658c1ff0ff705bea0c45952589693cb357cdf00c1721722d7c340a32f502d3b961 +docfiles size=8 + RELOC/doc/fonts/ipaex/IPA_Font_License_Agreement_v1.0.txt + RELOC/doc/fonts/ipaex/README details="Readme" + RELOC/doc/fonts/ipaex/Readme_IPAexfont00401.txt + RELOC/doc/fonts/ipaex/Readme_IPAfont00303.txt +runfiles size=10380 + RELOC/fonts/truetype/public/ipaex/ipaexg.ttf + RELOC/fonts/truetype/public/ipaex/ipaexm.ttf + RELOC/fonts/truetype/public/ipaex/ipag.ttf + RELOC/fonts/truetype/public/ipaex/ipagp.ttf + RELOC/fonts/truetype/public/ipaex/ipam.ttf + RELOC/fonts/truetype/public/ipaex/ipamp.ttf +catalogue-also ipaex-type1 +catalogue-contact-home http://ipafont.ipa.go.jp/ +catalogue-ctan /fonts/ipaex +catalogue-license other-free +catalogue-topics font font-ttf japanese + +name ipaex-type1 +category Package +revision 47700 +shortdesc IPAex fonts converted to Type-1 format Unicode subfonts +relocated 1 +longdesc The package contains the IPAex Fonts converted into Unicode +longdesc subfonts in Type1 format, which is most suitable for use with +longdesc the CJK package. Font conversion was done with ttf2pt1. +execute addMap ipaex-type1.map +containersize 13160912 +containerchecksum 0dd513aa3cbb9dba7e1099f7f08d839e80002fc5f5bcfc2a2a013dc799a0a6389f128fe72ebc32b673afd66f3ebbc7fab9b97c31763f94b7ad64eebc83b2f569 +doccontainersize 369204 +doccontainerchecksum 1c2974ec35c0291207ddf560b6cef4cb5b161fb59e80a6508b4f88aab5ecf93c6a3dda2a3107a40e838235f5af22ce23704bf4f13fc4a0b344f0805c29655605 +docfiles size=100 + RELOC/doc/fonts/ipaex-type1/LICENSE + RELOC/doc/fonts/ipaex-type1/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/fonts/ipaex-type1/README.md details="Readme (English)" language="en" + RELOC/doc/fonts/ipaex-type1/sample-ipaex-type1.pdf details="Font samples" language="ja" + RELOC/doc/fonts/ipaex-type1/sample-ipaex-type1.tex +runfiles size=5874 + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ly1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ot1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-t1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ts1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u00.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u01.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0200.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0201.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0202.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0203.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0204.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0205.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0206.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0207.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0208.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0209.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0212.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0213.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0214.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0215.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0216.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0217.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0218.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0219.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0221.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0222.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0223.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0226.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0228.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0229.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0231.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0233.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0234.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0235.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0236.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0237.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0238.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0240.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0241.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0243.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0246.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0247.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0248.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0250.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0251.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0252.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0254.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0255.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0257.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0259.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0260.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0262.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0263.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0264.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0266.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0267.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0268.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0269.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0270.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0271.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0273.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0274.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0276.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0277.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0279.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0280.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0282.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0283.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0284.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0285.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0286.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0289.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0292.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0294.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0295.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0296.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0297.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0298.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a0.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a3.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a4.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a5.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a6.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02f8.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u03.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u04.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u1e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u1f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u20.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u21.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u22.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u23.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u24.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u25.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u26.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u27.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u29.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u2e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u2f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u30.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u31.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u32.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u33.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u34.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u35.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u36.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u37.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u38.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u39.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u40.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u41.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u42.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u43.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u44.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u45.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u46.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u47.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u48.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u49.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u50.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u51.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u52.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u53.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u54.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u55.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u56.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u57.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u58.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u59.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u60.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u61.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u62.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u63.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u64.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u65.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u66.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u67.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u68.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u69.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u70.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u71.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u72.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u73.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u74.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u75.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u76.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u77.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u78.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u79.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u80.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u81.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u82.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u83.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u84.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u85.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u86.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u87.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u88.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u89.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u90.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u91.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u92.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u93.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u94.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u95.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u96.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u97.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u98.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u99.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uf0.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uf8.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uf9.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ufa.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ufe.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uff.enc + RELOC/fonts/map/dvips/ipaex-type1/ipaex-type1.map + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ly1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ot1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-t1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ts1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u00.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u01.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02f8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uf0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ly1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ot1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-t1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ts1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u00.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u01.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02f8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ly1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ot1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-t1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ts1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u00.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u01.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02f8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uf0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ly1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ot1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-t1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ts1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u00.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u01.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02f8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-uff.tfm + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ly1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ot1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-t1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ts1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u00.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u01.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0200.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0201.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0202.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0203.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0204.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0205.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0206.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0207.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0208.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0209.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0212.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0213.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0214.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0215.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0216.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0217.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0218.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0219.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0221.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0222.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0223.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0226.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0228.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0229.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0231.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0233.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0234.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0235.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0236.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0237.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0238.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0240.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0241.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0243.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0246.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0247.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0248.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0250.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0251.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0252.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0254.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0255.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0257.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0259.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0260.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0262.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0263.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0264.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0266.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0267.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0268.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0269.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0270.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0271.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0273.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0274.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0276.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0277.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0279.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0280.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0282.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0283.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0284.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0285.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0286.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0289.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0292.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0294.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0295.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0296.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0297.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0298.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a3.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a4.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a5.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a6.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02f8.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u03.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u04.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u1e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u1f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u20.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u21.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u22.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u23.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u24.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u25.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u26.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u27.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u29.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u2e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u2f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u30.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u31.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u32.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u33.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u34.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u35.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u36.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u37.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u38.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u39.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u40.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u41.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u42.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u43.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u44.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u45.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u46.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u47.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u48.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u49.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u50.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u51.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u52.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u53.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u54.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u55.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u56.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u57.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u58.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u59.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u60.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u61.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u62.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u63.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u64.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u65.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u66.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u67.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u68.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u69.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u70.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u71.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u72.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u73.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u74.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u75.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u76.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u77.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u78.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u79.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u80.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u81.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u82.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u83.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u84.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u85.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u86.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u87.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u88.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u89.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u90.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u91.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u92.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u93.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u94.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u95.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u96.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u97.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u98.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u99.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uf0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uf8.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uf9.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ufa.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ufe.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uff.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ly1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ot1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-t1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ts1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u00.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u01.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0200.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0201.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0202.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0203.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0204.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0205.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0206.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0207.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0208.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0209.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0212.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0213.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0214.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0215.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0216.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0217.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0218.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0219.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0221.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0222.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0223.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0226.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0228.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0229.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0231.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0233.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0234.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0235.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0236.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0237.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0238.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0240.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0241.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0243.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0246.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0247.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0248.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0250.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0251.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0252.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0254.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0255.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0257.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0259.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0260.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0262.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0263.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0264.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0266.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0267.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0268.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0269.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0270.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0271.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0273.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0274.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0276.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0277.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0279.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0280.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0282.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0283.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0284.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0285.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0286.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0289.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0292.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0294.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0295.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0296.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0297.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0298.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a3.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a4.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a5.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a6.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02f8.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u03.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u04.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u1e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u1f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u20.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u21.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u22.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u23.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u24.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u25.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u26.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u27.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u29.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u2e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u2f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u30.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u31.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u32.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u33.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u34.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u35.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u36.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u37.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u38.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u39.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u40.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u41.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u42.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u43.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u44.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u45.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u46.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u47.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u48.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u49.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u50.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u51.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u52.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u53.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u54.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u55.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u56.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u57.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u58.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u59.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u60.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u61.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u62.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u63.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u64.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u65.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u66.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u67.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u68.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u69.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u70.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u71.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u72.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u73.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u74.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u75.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u76.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u77.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u78.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u79.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u80.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u81.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u82.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u83.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u84.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u85.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u86.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u87.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u88.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u89.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u90.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u91.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u92.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u93.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u94.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u95.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u96.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u97.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u98.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u99.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uf0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uf8.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uf9.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ufa.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ufe.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uff.pfb + RELOC/tex/latex/ipaex-type1/c70ipxg.fd + RELOC/tex/latex/ipaex-type1/c70ipxg.fdx + RELOC/tex/latex/ipaex-type1/c70ipxga.fd + RELOC/tex/latex/ipaex-type1/c70ipxga.fdx + RELOC/tex/latex/ipaex-type1/c70ipxm.fd + RELOC/tex/latex/ipaex-type1/c70ipxm.fdx + RELOC/tex/latex/ipaex-type1/c70ipxma.fd + RELOC/tex/latex/ipaex-type1/c70ipxma.fdx + RELOC/tex/latex/ipaex-type1/ipaex-type1.sty + RELOC/tex/latex/ipaex-type1/ly1ipxg.fd + RELOC/tex/latex/ipaex-type1/ly1ipxm.fd + RELOC/tex/latex/ipaex-type1/ot1ipxg.fd + RELOC/tex/latex/ipaex-type1/ot1ipxm.fd + RELOC/tex/latex/ipaex-type1/t1ipxg.fd + RELOC/tex/latex/ipaex-type1/t1ipxm.fd + RELOC/tex/latex/ipaex-type1/ts1ipxg.fd + RELOC/tex/latex/ipaex-type1/ts1ipxm.fd +catalogue-ctan /fonts/ipaex-type1 +catalogue-license other-free +catalogue-topics font font-type1 japanese +catalogue-version 0.5 + +name is-bst +category Package +revision 52623 +shortdesc Extended versions of standard BibTeX styles +relocated 1 +longdesc The bundle contains an extended version (xbtxbst.doc) of the +longdesc source of the standard BibTeX styles, together with +longdesc corresponding versions of the standard styles. The styles offer +longdesc support for CODEN, ISBN, ISSN, LCCN, and PRICE fields, extended +longdesc PAGES fields, the PERIODICAL entry, and extended citation label +longdesc suffixing. +containersize 9932 +containerchecksum 491b40704ad4c36e7ffac12bd5b823a4d796a9d52b82176cbd9654b6fe07d3a8a0c63f9756070bd4a971a33836e179ce6c7609e5de2eebddfac9c6aaecb92b43 +doccontainersize 18792 +doccontainerchecksum bbd5aa6261779b7d395a89c04421c680b6906f795ec713b9c72bbdc282fbf459c443a08ccc7c395ac5274ef5aa1b3f56cd773e50faa7ced4ab4629f1b91e73e9 +docfiles size=20 + RELOC/doc/bibtex/is-bst/xbtxbst.doc +runfiles size=40 + RELOC/bibtex/bst/is-bst/is-abbrv.bst + RELOC/bibtex/bst/is-bst/is-alpha.bst + RELOC/bibtex/bst/is-bst/is-plain.bst + RELOC/bibtex/bst/is-bst/is-unsrt.bst +catalogue-ctan /biblio/bibtex/contrib/is-bst +catalogue-license other-free +catalogue-topics bibtex-sty +catalogue-version 2.03 + +name iscram +category Package +revision 45801 +shortdesc A LaTeX class to publish article to ISCRAM conferences +relocated 1 +longdesc LaTeX class to publish article to ISCRAM (International +longdesc Conference on Information Systems for Crisis Response and +longdesc Management). +containersize 2980 +containerchecksum 6111c93a14c28572c17a1336fdf00ddd16b6c04b34b4a10a1b4a5e46742852b949cc99438397895de36632c9f2fd57c4940a0ffa458ac148b4a5e49707e5ca79 +doccontainersize 269984 +doccontainerchecksum 24f5ebac7b8bfa826cb9ebaaeac0ec82db18807c5c3417dac53c6b636f6cb32b60901ef51f0d545cbe185ef0eef034404d3120c1211bf65c4ed4d155c67e19d2 +docfiles size=75 + RELOC/doc/latex/iscram/HMI.pdf + RELOC/doc/latex/iscram/README details="Readme" + RELOC/doc/latex/iscram/iscram-class-doc.bib + RELOC/doc/latex/iscram/iscram-class-doc.pdf details="Package documenatation" + RELOC/doc/latex/iscram/iscram-class-doc.tex +runfiles size=2 + RELOC/tex/latex/iscram/iscram.cls +catalogue-ctan /macros/latex/contrib/iscram +catalogue-license lppl1.3 +catalogue-topics confproc +catalogue-version 1.1 + +name iso +category Package +revision 15878 +shortdesc Generic ISO standards typesetting macros +relocated 1 +longdesc Generic class and package files for typesetting ISO +longdesc International Standard documents. Several standard documents +longdesc have been printed by ISO from camera-ready copy prepared using +longdesc LaTeX and these files. The class makes use of the isorot +longdesc package, rather than use other mechanisms directly. +containersize 15220 +containerchecksum 1ee4026383b28594c02ee7a3fde24228ac777814456fd8580954b1708ba3f735b563beaa291cea859c6492f8b9cc488635b67e373fc3afbd8f884a3b6d30a392 +doccontainersize 812136 +doccontainerchecksum f5c874d3e00fb451f81a52f5711ac0b1c39ce48eca50a6edc0b1049bf4aeec43830fb534e207d852bb440c96bcb86d960d5e2e0670610d7cb9eabad2ff1451a3 +docfiles size=294 + RELOC/doc/latex/iso/README details="Readme" + RELOC/doc/latex/iso/iso4ht.pdf + RELOC/doc/latex/iso/isoe.pdf + RELOC/doc/latex/iso/isofwdbp.tex + RELOC/doc/latex/iso/isoman.pdf details="Package manual" + RELOC/doc/latex/iso/isoman.tex + RELOC/doc/latex/iso/trfwd1.tex + RELOC/doc/latex/iso/tspasfwdbp.tex +srccontainersize 48644 +srccontainerchecksum c40bd267337a62dc7dbf437087e36e569b83da7806f801017ad3aa8b3059409cfc51c32d83e9991b7fa0c9b2e7eb5aed22f841670196fa9f7080e5398a098d74 +srcfiles size=61 + RELOC/source/latex/iso/iso4ht.dtx + RELOC/source/latex/iso/iso4ht.ins + RELOC/source/latex/iso/isoe.dtx + RELOC/source/latex/iso/isoe.ins +runfiles size=27 + RELOC/makeindex/iso/iso.ist + RELOC/tex/latex/iso/askincv1.sty + RELOC/tex/latex/iso/iso10.clo + RELOC/tex/latex/iso/iso11.clo + RELOC/tex/latex/iso/iso9.clo + RELOC/tex/latex/iso/isov2.4ht + RELOC/tex/latex/iso/isov2.cls +catalogue-also iso10303 +catalogue-ctan /macros/latex/contrib/isostds/iso +catalogue-license lppl +catalogue-topics typeset-std +catalogue-version 2.4 + +name iso10303 +category Package +revision 15878 +shortdesc Typesetting the STEP standards +relocated 1 +longdesc Class and package files building on iso for typesetting the ISO +longdesc 10303 (STEP) standards. Standard documents prepared using these +longdesc packages have been published by ISO. +containersize 43536 +containerchecksum 40a36335c15b453d2e5b5abc29b2ec1891c6f1502ee2f8ffdebd2f9a159cea3aa28eba7c661c12a0445a4f713b77079d8b965ac955123fc81225cfd4491e5317 +doccontainersize 686156 +doccontainerchecksum 24c2a83508282a348d6748bbf722962f3ffcd193cd1cfafc4ca1e87c60622e463e5fd382ff65235590f2a9d629e8f40588630810036d2195172f61d1448e3dfa +docfiles size=233 + RELOC/doc/latex/iso10303/README details="Readme" + RELOC/doc/latex/iso10303/step4ht.pdf + RELOC/doc/latex/iso10303/stepe.pdf + RELOC/doc/latex/iso10303/stepman.pdf details="Package manual" +srccontainersize 36244 +srccontainerchecksum 27cb8dd236ad5f249595d963282054eb40de35d135cbd6ad6a106941955e0abf8777602fc341233d22feb1073980341d31b6e939a69097d3776d7e20096fdc18 +srcfiles size=49 + RELOC/source/latex/iso10303/step4ht.dtx + RELOC/source/latex/iso10303/step4ht.ins + RELOC/source/latex/iso10303/stepe.dtx + RELOC/source/latex/iso10303/stepe.ins +runfiles size=87 + RELOC/tex/latex/iso10303/aicv1.sty + RELOC/tex/latex/iso10303/apendint.tex + RELOC/tex/latex/iso10303/apmpspec.tex + RELOC/tex/latex/iso10303/apmptbl.tex + RELOC/tex/latex/iso10303/apmptempl.tex + RELOC/tex/latex/iso10303/apsstempl.tex + RELOC/tex/latex/iso10303/apv12.sty + RELOC/tex/latex/iso10303/atsv11.sty + RELOC/tex/latex/iso10303/bpfap1.tex + RELOC/tex/latex/iso10303/bpfap10.tex + RELOC/tex/latex/iso10303/bpfap11.tex + RELOC/tex/latex/iso10303/bpfap12.tex + RELOC/tex/latex/iso10303/bpfap13.tex + RELOC/tex/latex/iso10303/bpfap14.tex + RELOC/tex/latex/iso10303/bpfap15.tex + RELOC/tex/latex/iso10303/bpfap16.tex + RELOC/tex/latex/iso10303/bpfap2.tex + RELOC/tex/latex/iso10303/bpfap3.tex + RELOC/tex/latex/iso10303/bpfap4.tex + RELOC/tex/latex/iso10303/bpfap5.tex + RELOC/tex/latex/iso10303/bpfap6.tex + RELOC/tex/latex/iso10303/bpfap7.tex + RELOC/tex/latex/iso10303/bpfap8.tex + RELOC/tex/latex/iso10303/bpfap9.tex + RELOC/tex/latex/iso10303/bpfats1.tex + RELOC/tex/latex/iso10303/bpfats10.tex + RELOC/tex/latex/iso10303/bpfats11.tex + RELOC/tex/latex/iso10303/bpfats12.tex + RELOC/tex/latex/iso10303/bpfats14.tex + RELOC/tex/latex/iso10303/bpfats2.tex + RELOC/tex/latex/iso10303/bpfats3.tex + RELOC/tex/latex/iso10303/bpfats4.tex + RELOC/tex/latex/iso10303/bpfats5.tex + RELOC/tex/latex/iso10303/bpfats6.tex + RELOC/tex/latex/iso10303/bpfats7.tex + RELOC/tex/latex/iso10303/bpfats8.tex + RELOC/tex/latex/iso10303/bpfats9.tex + RELOC/tex/latex/iso10303/bpfir1.tex + RELOC/tex/latex/iso10303/bpfir2.tex + RELOC/tex/latex/iso10303/bpfir3.tex + RELOC/tex/latex/iso10303/bpfs1.tex + RELOC/tex/latex/iso10303/bpfs2.tex + RELOC/tex/latex/iso10303/bpfs3.tex + RELOC/tex/latex/iso10303/irv12.sty + RELOC/tex/latex/iso10303/stepman.tex + RELOC/tex/latex/iso10303/stepv13.4ht + RELOC/tex/latex/iso10303/stepv13.sty + RELOC/tex/latex/iso10303/stppdlst.tex +catalogue-ctan /macros/latex/contrib/isostds/iso10303 +catalogue-license lppl +catalogue-topics typeset-std +catalogue-version 1.5 + +name isodate +category Package +revision 16613 +shortdesc Tune the output format of dates according to language +relocated 1 +longdesc This package provides ten output formats of the commands +longdesc \today, \printdate, \printdateTeX, and \daterange (partly +longdesc language dependent). Formats available are: ISO (yyyy-mm-dd), +longdesc numeric (e.g. dd.\,mm.~yyyy), short (e.g. dd.\,mm.\,yy), TeX +longdesc (yyyy/mm/dd), original (e.g. dd. mmm yyyy), short original +longdesc (e.g. dd. mmm yy), as well as numerical formats with Roman +longdesc numerals for the month. The commands \printdate and +longdesc \printdateTeX print any date. The command \daterange prints a +longdesc date range and leaves out unnecessary year or month entries. +longdesc This package supports German (old and new rules), Austrian, US +longdesc English, British English, French, Danish, Swedish, and +longdesc Norwegian. +containersize 7208 +containerchecksum 5fa145cde64155e9a4ca7236cf41449169ce0d1aa88381b46935641ed94d166429c1b139c852f96526dda270fb85736ca54e8864c32452996109b0061003639d +doccontainersize 422664 +doccontainerchecksum 75118f62de8568c9826dcc11b753511f57b7fd237cac6aab1c75377121fad2179c81ae5ec5f64ec127a299beb88abc209727d17b1ded623718c7594bb7ca5da0 +docfiles size=127 + RELOC/doc/latex/isodate/ChangeLog + RELOC/doc/latex/isodate/README details="Package Readme" + RELOC/doc/latex/isodate/getversion.tex + RELOC/doc/latex/isodate/isodate.pdf details="Package documentation" + RELOC/doc/latex/isodate/isodate.xml + RELOC/doc/latex/isodate/isodateo.pdf + RELOC/doc/latex/isodate/testdate.pdf details="Test document showing styles" + RELOC/doc/latex/isodate/testdate.tex + RELOC/doc/latex/isodate/testisodate_without_babel.tex +srccontainersize 21048 +srccontainerchecksum 43bfcc11aefd2c68ec96cf05f7609cab4009f960b5220bc15d982ad384e062bc42a791f269d5480bb1582ceda68f8c7d36e1308129aaa3df41d25d35cbbb96d2 +srcfiles size=37 + RELOC/source/latex/isodate/Makefile + RELOC/source/latex/isodate/isodate.dtx + RELOC/source/latex/isodate/isodate.ins + RELOC/source/latex/isodate/isodateo.dtx +runfiles size=17 + RELOC/tex/latex/isodate/danish.idf + RELOC/tex/latex/isodate/english.idf + RELOC/tex/latex/isodate/french.idf + RELOC/tex/latex/isodate/german.idf + RELOC/tex/latex/isodate/isodate.sty + RELOC/tex/latex/isodate/isodateo.sty + RELOC/tex/latex/isodate/italian.idf + RELOC/tex/latex/isodate/norsk.idf + RELOC/tex/latex/isodate/swedish.idf +catalogue-ctan /macros/latex/contrib/isodate +catalogue-license lppl +catalogue-topics date-time +catalogue-version 2.28 + +name isodoc +category Package +revision 57811 +shortdesc A LaTeX class for typesetting letters and invoices +relocated 1 +longdesc The isodoc class can be used for the preparation of letters and +longdesc invoices (and, in the future, similar documents). Documents are +longdesc set up with options, thus making the class easily adaptable to +longdesc user's wishes and extensible for other document types. The +longdesc class is based on the NTG brief class by Victor Eijkhout, which +longdesc implements the NEN1026 standard. +containersize 9308 +containerchecksum b26c7f3b87f4892f6f3c31f62225b43918be6e168dbb85d287fa708069d9560312d00bff1198842ade1a0a542da59dfd5d802d59ba6f62cc1dd15ce75ecde015 +doccontainersize 838216 +doccontainerchecksum 11cc576322712103511c3025524fe068a3f011e726a2335051ec6eece18a6217931071ccae412ee46148d4665cc3526b0a91fc66f4455ddfdae7af9974ae5959 +docfiles size=214 + RELOC/doc/latex/isodoc/README.md details="Readme" + RELOC/doc/latex/isodoc/isodoc.pdf details="Package documentation" +srccontainersize 472076 +srccontainerchecksum a56610f50bf8e9286e04f8d505158dc2d4838731e667279728edc5e46cb92ced25c4a23b02b6c0cdfd4830fb09d093ed1c87b6292a2917ca5b8d212317b59e3e +srcfiles size=176 + RELOC/source/latex/isodoc/Makefile + RELOC/source/latex/isodoc/isodoc.dtx + RELOC/source/latex/isodoc/isodoc.ins +runfiles size=11 + RELOC/tex/latex/isodoc/isodoc.cls +catalogue-ctan /macros/latex/contrib/isodoc +catalogue-license lppl1.3c +catalogue-topics letter invoice class +catalogue-version 1.12 + +name isomath +category Package +revision 27654 +shortdesc Mathematics style for science and technology +relocated 1 +longdesc The package provides tools for a mathematical style that +longdesc conforms to the International Standard ISO 80000-2 and is +longdesc common in science and technology. It changes the default shape +longdesc of capital Greek letters to italic, sets up bold italic and +longdesc sans-serif bold italic math alphabets with Latin and Greek +longdesc characters, and defines macros for markup of vector, matrix and +longdesc tensor symbols. +containersize 4648 +containerchecksum c9ed49ca5df0932ab59de0988de688fa119682810c3163ec530a8cd80f439eab858bca4dfad85567dbc2de08d226117b4df5249ff29f247c208ae2b1739165f2 +doccontainersize 643076 +doccontainerchecksum 55d94c6b4cf4c2ebc0eae4998f8ed6a1f450efa70e1644549e169cabcc782f1acb879c99bec5237e3147886c696c36f675e9f3c452da9f9880570dabf7adc5ad +docfiles size=211 + RELOC/doc/latex/isomath/README.html + RELOC/doc/latex/isomath/README.txt + RELOC/doc/latex/isomath/isomath-test.pdf details="Example of appearance" + RELOC/doc/latex/isomath/isomath-test.tex + RELOC/doc/latex/isomath/isomath.html details="Package documentation (in HTML format)" + RELOC/doc/latex/isomath/isomath.pdf details="Package documentation (in PDF format)" + RELOC/doc/latex/isomath/isomath.sty.html details="Package source (in HTML format)" + RELOC/doc/latex/isomath/isomath.sty.txt + RELOC/doc/latex/isomath/isomath.txt +runfiles size=4 + RELOC/tex/latex/isomath/isomath.sty +catalogue-ctan /macros/latex/contrib/isomath +catalogue-license lppl +catalogue-topics font-supp-maths std-conform +catalogue-version 0.6.1 + +name isonums +category Package +revision 17362 +shortdesc Display numbers in maths mode according to ISO 31-0 +relocated 1 +longdesc The package makes a quick hack to ziffer to display numbers in +longdesc maths mode according to ISO 31-0, regardless of input format +longdesc (European $1.235,7$ or Anglo-American $1,235.7$). The options +longdesc [euro, anglo] control the global input format. Default input +longdesc format is anglo. Documentation is included as comments to the +longdesc text source. +containersize 2276 +containerchecksum d82a96c2208dfd59f091b8316d8b496115ee56d51e5418344f128418c3b202f0ee20bea505c05f5e81f76006e2efcef48b2d3592bb5c550e219b5c8e4a6e5f4e +doccontainersize 202564 +doccontainerchecksum 5ecd4587ad6d782182986592bb7f76fd62ccd2e9245921b48ae28e9e381f4084e0d5930b32815ebd074be4190fcfd6beec8be890014edd76e9a5b4958f71d6f7 +docfiles size=52 + RELOC/doc/latex/isonums/isonums.pdf details="Package documentation" + RELOC/doc/latex/isonums/isonums.tex +runfiles size=2 + RELOC/tex/latex/isonums/isonums.sty +catalogue-ctan /macros/latex/contrib/isonums +catalogue-license lppl +catalogue-topics std-conform +catalogue-version 1.0 + +name isopt +category Package +revision 45509 +shortdesc Writing a TeX length with a space between number and unit +relocated 1 +longdesc Writing a TeX length with \the writes the value and the unit +longdesc without a space. Package isopt provides a macro \ISO which +longdesc inserts a user defined space between number and unit. +containersize 1168 +containerchecksum 2e313aa3afe2e1457a794834c1c5eddec66ac2d17fb614e15e6781a23ca0834a3fc2d68632b07e55618c6d8dc28de5bb8bf435e34f61a419cb27fa53042d4a7c +doccontainersize 61664 +doccontainerchecksum 94498c64a4acbb2b41a7e4869b628c683a975f1ba28a8b721b9c44843574610a47a39883f5333b405bb8c02d49f50c3d9ee4f344c27b5e5c0d22c181db46bac7 +docfiles size=19 + RELOC/doc/latex/isopt/Changes + RELOC/doc/latex/isopt/README.md details="Readme" + RELOC/doc/latex/isopt/isopt-doc.bib + RELOC/doc/latex/isopt/isopt-doc.pdf details="Package documentation" + RELOC/doc/latex/isopt/isopt-doc.tex +runfiles size=1 + RELOC/tex/latex/isopt/isopt.sty +catalogue-ctan /macros/latex/contrib/isopt +catalogue-license lppl +catalogue-topics misc-support +catalogue-version 0.01 + +name isorot +category Package +revision 15878 +shortdesc Rotation of document elements +relocated 1 +longdesc The package is for rotation of document elements. It is a +longdesc combination of the lscape package and an extension of the +longdesc rotating package. The package is designed for use with the iso +longdesc class but may be used with any normal class. +containersize 2568 +containerchecksum 788b712fc11f3e4dccd58a75a950752d0492dbc30f0475dedeb26b86e500d0d23c4babf0dfc2361fe16e74d7b37d8f5605b4d4faf1e7018642a5e9dd1be73be3 +doccontainersize 122280 +doccontainerchecksum 4aed42e6fe61aecba99783a1173d903daec621e7d5e0867f6f73319804bfa7727a2a2dac204d792b76a98f8e291bc563bff364360b19ccede2b79600a59260d0 +docfiles size=51 + RELOC/doc/latex/isorot/README details="Package Readme" + RELOC/doc/latex/isorot/rotman.pdf details="Package documentation" + RELOC/doc/latex/isorot/rotman.tex +srccontainersize 13604 +srccontainerchecksum 99767e98f2eca92d4f0d8e32024805bea9646f10eda7cdc7fa5b325de04d6e70648c1e1421172e2358d7a6ef7eeca718db3e31e7f272160ddba2f24e4c516888 +srcfiles size=13 + RELOC/source/latex/isorot/isorot.dtx + RELOC/source/latex/isorot/isorot.ins +runfiles size=2 + RELOC/tex/latex/isorot/isorot.sty +catalogue-ctan /macros/latex/contrib/isorot +catalogue-license lppl +catalogue-topics rotation + +name isotope +category Package +revision 23711 +shortdesc A package for typesetting isotopes +relocated 1 +longdesc The package provides a command \isotope for setting the atomic +longdesc weight and atomic number indications of isotopes. (The naive +longdesc way of doing the job with (La)TeX mathematics commands produces +longdesc an unsatisfactory result.) +containersize 1168 +containerchecksum 27c03c4c6519c038185ee485e94ac51d90c21fd095e4a4cb6d91b06f98e7adb7a423a53b1df035514f58cd0556ab0ecb1afd55c05008e558812d95de2159c8ba +doccontainersize 520 +doccontainerchecksum e1a6e798f894f9455e5d2144a935ee2960199e65db0499c4a900f888065eacfce72269f6808e01e98be3ea3440144eb4004c53af26d80d6ddda1be5df5492b1f +docfiles size=1 + RELOC/doc/latex/isotope/README +srccontainersize 3076 +srccontainerchecksum 555ad9d5db22d4efe1373bf971f441391371c91538b73f3140996d3a2dda85fc3003f6d685c3e54c06be216e5b54493d07f165c0a7adeb00845e79bbd9958c5d +srcfiles size=3 + RELOC/source/latex/isotope/isotope.dtx + RELOC/source/latex/isotope/isotope.ins +runfiles size=1 + RELOC/tex/latex/isotope/isotope.sty +catalogue-ctan /macros/latex/contrib/isotope +catalogue-license lppl +catalogue-topics subsup-pos physics +catalogue-version 0.3 + +name issuulinks +category Package +revision 25742 +shortdesc Produce external links instead of internal ones +relocated 1 +longdesc The PDF visualizer http://issuu.com/ISSUU is a popular service +longdesc which shows PDF documents "a page a time". Due to the way it is +longdesc implemented, internal links in these documents are not allowed. +longdesc Instead, they must be converted to external ones in the form +longdesc http://issuu.com/action/page?page=PAGENUMBER. The package +longdesc patches hyperref to produce external links in the required form +longdesc instead of internal links created by \ref, \cite and other +longdesc commands. Since the package redefines the internals of +longdesc hyperref, it must be loaded it AFTER hyperref. +containersize 2104 +containerchecksum 2ac24eb0e19b92e29fa898fcb8cca7e2f64cf87fac408aa0c834f6afc0ef262560a512637b30dcbee2ec06e9f0fc32f344258bab983b1b1d6fd4da85c821c056 +doccontainersize 377392 +doccontainerchecksum 2605ffe2f42560b04fe781efe3c1972ad76f6cbddc7ef68bdb0ece9b0573b8cec785c2bf4befdf339935730a728bf19b83f3597119d3f9705f571350e963801d +docfiles size=96 + RELOC/doc/latex/issuulinks/Makefile + RELOC/doc/latex/issuulinks/README details="Readme" + RELOC/doc/latex/issuulinks/issuulinks.pdf details="Package documentation" + RELOC/doc/latex/issuulinks/sample.pdf + RELOC/doc/latex/issuulinks/sample.tex +srccontainersize 4112 +srccontainerchecksum c66f332f9dea7a03a0ecc7844d99375fbb91ca262aa50faac13b9b396db0991411b33616aec6c1af22e915e3643e7340e0083635fb40b6e693a4e487e1e45fed +srcfiles size=4 + RELOC/source/latex/issuulinks/issuulinks.dtx + RELOC/source/latex/issuulinks/issuulinks.ins +runfiles size=1 + RELOC/tex/latex/issuulinks/issuulinks.sty +catalogue-ctan /macros/latex/contrib/issuulinks +catalogue-license lppl1.3 +catalogue-topics label-ref hyper +catalogue-version 1.1 + +name istgame +category Package +revision 49848 +shortdesc Draw Game Trees with TikZ +relocated 1 +longdesc This LaTeX package provides macros based on TikZ to draw a game +longdesc tree. The main idea underlying its core macros is the +longdesc completion of a whole tree by using a sequence of simple +longdesc 'parent-child' tree structures, with no longer nested relations +longdesc involved (like the use of 'grandchildren' or +longdesc 'great-grandchildren'). Using this package you can draw a game +longdesc tree as easily as drawing a game tree with pen and paper. This +longdesc package depends on expl3, TikZ, and xparse. The 'ist' prefix +longdesc stands for "it's a simple tree" or "In-Sung's simple tree." +containersize 18008 +containerchecksum 3380e604bb3153d94ed21ca3c5fa16bcf0d81ff3ff878a3f19ee3f1beea0ab32185ea9d8b0118eaddfb15e483d040bbc5f915ab7bd3033978518fd30aeb5f609 +doccontainersize 751764 +doccontainerchecksum 9838728c32479b6a1229d2f9e9755209c07520bd691452bfba81a62f21ba929237bc916c5f49523610516aec6c054d080086c82be277eedd5fe4b0006b4be8e5 +docfiles size=250 + RELOC/doc/latex/istgame/README.txt details="Readme" + RELOC/doc/latex/istgame/istgame-doc-v2.0.tex + RELOC/doc/latex/istgame/istgame-doc.pdf details="Package documentation" + RELOC/doc/latex/istgame/istgame-doc.tex + RELOC/doc/latex/istgame/istgame.ist +runfiles size=29 + RELOC/tex/latex/istgame/istgame.sty +catalogue-ctan /graphics/pgf/contrib/istgame +catalogue-license lppl1.3c +catalogue-topics pgf-tikz games tree +catalogue-version 2.0 + +name itnumpar +category Package +revision 15878 +shortdesc Spell numbers in words (Italian) +relocated 1 +longdesc Sometimes we need to say "Capitolo primo" or "Capitolo uno" +longdesc instead of "Capitolo 1", that is, spelling the number in words +longdesc instead of the usual digit form. This package provides support +longdesc for spelling out numbers in Italian words, both in cardinal and +longdesc in ordinal form. +containersize 2268 +containerchecksum 73770854d45bf404e874aeda0d0bc95dac7ba266cb012fe4af7c4e7686c078b1314500ddaa767b1652e9b05b02691c93cd24b34d6b145fc30c0a3f56693f6a17 +doccontainersize 127252 +doccontainerchecksum b7c81a74d816508121f0449580e4599092bcf3d176cbf9f754fe9e662d83a5c8b66e52e43b2621338a13b09c44babac6a575f1e8894863402c028dc3ed792486 +docfiles size=38 + RELOC/doc/latex/itnumpar/README details="Readme" + RELOC/doc/latex/itnumpar/itnumpar.pdf details="Package documentation" +srccontainersize 8148 +srccontainerchecksum 72ad2e68d946f5a862e97c3cd3f20f94c23a2a85fa5183a6da9b1f03be60067a482b2f22e7560c5c731df18f910f643f0c991a2b0c09925cc270287290654c86 +srcfiles size=8 + RELOC/source/latex/itnumpar/itnumpar.dtx + RELOC/source/latex/itnumpar/itnumpar.ins +runfiles size=2 + RELOC/tex/latex/itnumpar/itnumpar.sty +catalogue-ctan /macros/latex/contrib/itnumpar +catalogue-license lppl +catalogue-topics italian numbers +catalogue-version 1.0 + +name iwhdp +category Package +revision 37552 +shortdesc Halle Institute for Economic Research (IWH) Discussion Papers +relocated 1 +longdesc The document class is for creating Discussion Papers of the +longdesc Halle Institute for Economic Research (IWH) in Halle, Germany. +longdesc The class offers options for both English and German texts. +containersize 10284 +containerchecksum 7153fd75ec63a6abbb4d2bbda8a5eb150f4b202b72baec8361a810d28aac5690f76e4099ff3a616a44077337ace469d6a111d4e42ad8d68428144b7fdee58575 +doccontainersize 396092 +doccontainerchecksum f75a9d0ea4b69de5a82659e18a0ea04544c93b056c52efac534e16490a5ac78b329d700f2ed7b3e8564a72331489106bb7e735c44b3e24ff943c6ec0b89eaef2 +docfiles size=124 + RELOC/doc/latex/iwhdp/Back_2015.pdf + RELOC/doc/latex/iwhdp/Deckblatt_2015.pdf + RELOC/doc/latex/iwhdp/README details="Readme" + RELOC/doc/latex/iwhdp/iwhdp_Manual.bib + RELOC/doc/latex/iwhdp/iwhdp_Manual.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/iwhdp/iwhdp_Manual.tex + RELOC/doc/latex/iwhdp/iwhdp_paper.bib + RELOC/doc/latex/iwhdp/iwhdp_paper.tex +runfiles size=9 + RELOC/tex/latex/iwhdp/iwhdp.cls +catalogue-ctan /macros/latex/contrib/iwhdp +catalogue-license lppl1.3 +catalogue-topics misc-paper class +catalogue-version 0.50 + +name iwona +category Package +revision 19611 +shortdesc A two-element sans-serif font +relocated 1 +longdesc Iwona is a two-element sans-serif typeface. It was created as +longdesc an alternative version of the Kurier typeface, which was +longdesc designed in 1975 for a diploma in typeface design at the Warsaw +longdesc Academy of Fine Arts under the supervision of Roman +longdesc Tomaszewski. This distribution contains a significantly +longdesc extended set of characters covering the following modern +longdesc alphabets: latin (including Vietnamese), Cyrillic and Greek as +longdesc well as a number of additional symbols (including mathematical +longdesc symbols). The fonts are prepared in Type 1 and OpenType +longdesc formats. For use with TeX the following encoding files have +longdesc been prepared: T1 (ec), T2 (abc), and OT2--Cyrillic, T5 +longdesc (Vietnamese), OT4, QX, texansi and nonstandard (IL2 for the +longdesc Czech fonts), as well as supporting macros and files defining +longdesc fonts for LaTeX. +execute addMap iwona.map +containersize 3901808 +containerchecksum 2a125919a015c82e00bff575407f02a6c9a176f83a6017df682b98af55473e7e36ca0a94ff27091a3a4279d42fea9c49f0d8ae6da7e852ae9c44389dd5d8f7fe +doccontainersize 467416 +doccontainerchecksum 87128ca46f7f2f13f8f886fc1c3da11f17636637632c0d39ebae07dfe70ec92024e1136da7a736a3fc8d494e856b86407ef9c01cd54a56fc2e41372bc0f1c4fe +docfiles size=147 + RELOC/doc/fonts/iwona/00readme.eng details="Outline in English:" + RELOC/doc/fonts/iwona/00readme.pol details="Outline in Polish:" + RELOC/doc/fonts/iwona/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/iwona/iwona-info-src.zip + RELOC/doc/fonts/iwona/iwona-info.pdf details="Package documentation" + RELOC/doc/fonts/iwona/iwona-latex-cyr.tex + RELOC/doc/fonts/iwona/iwona-latex-math.tex + RELOC/doc/fonts/iwona/iwona-latex-pl.tex + RELOC/doc/fonts/iwona/iwona-latex-t2a.tex + RELOC/doc/fonts/iwona/iwona-latex-t5.tex + RELOC/doc/fonts/iwona/iwona-mathtest.tex + RELOC/doc/fonts/iwona/iwona-table.tex + RELOC/doc/fonts/iwona/manifest.txt +runfiles size=4371 + RELOC/fonts/afm/nowacki/iwona/iwonab.afm + RELOC/fonts/afm/nowacki/iwona/iwonabi.afm + RELOC/fonts/afm/nowacki/iwona/iwonacb.afm + RELOC/fonts/afm/nowacki/iwona/iwonacbi.afm + RELOC/fonts/afm/nowacki/iwona/iwonach.afm + RELOC/fonts/afm/nowacki/iwona/iwonachi.afm + RELOC/fonts/afm/nowacki/iwona/iwonacl.afm + RELOC/fonts/afm/nowacki/iwona/iwonacli.afm + RELOC/fonts/afm/nowacki/iwona/iwonacm.afm + RELOC/fonts/afm/nowacki/iwona/iwonacmi.afm + RELOC/fonts/afm/nowacki/iwona/iwonacr.afm + RELOC/fonts/afm/nowacki/iwona/iwonacri.afm + RELOC/fonts/afm/nowacki/iwona/iwonah.afm + RELOC/fonts/afm/nowacki/iwona/iwonahi.afm + RELOC/fonts/afm/nowacki/iwona/iwonal.afm + RELOC/fonts/afm/nowacki/iwona/iwonali.afm + RELOC/fonts/afm/nowacki/iwona/iwonam.afm + RELOC/fonts/afm/nowacki/iwona/iwonami.afm + RELOC/fonts/afm/nowacki/iwona/iwonar.afm + RELOC/fonts/afm/nowacki/iwona/iwonari.afm + RELOC/fonts/enc/dvips/iwona/cs-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/cs-iwona.enc + RELOC/fonts/enc/dvips/iwona/ec-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/ec-iwona.enc + RELOC/fonts/enc/dvips/iwona/ex-iwona.enc + RELOC/fonts/enc/dvips/iwona/greek-iwona.enc + RELOC/fonts/enc/dvips/iwona/l7x-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/l7x-iwona.enc + RELOC/fonts/enc/dvips/iwona/mi-iwona.enc + RELOC/fonts/enc/dvips/iwona/qx-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/qx-iwona.enc + RELOC/fonts/enc/dvips/iwona/rm-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/rm-iwona.enc + RELOC/fonts/enc/dvips/iwona/sy-iwona.enc + RELOC/fonts/enc/dvips/iwona/t2a-iwona.enc + RELOC/fonts/enc/dvips/iwona/t2b-iwona.enc + RELOC/fonts/enc/dvips/iwona/t2c-iwona.enc + RELOC/fonts/enc/dvips/iwona/t5-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/t5-iwona.enc + RELOC/fonts/enc/dvips/iwona/texnansi-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/texnansi-iwona.enc + RELOC/fonts/enc/dvips/iwona/ts1-iwona.enc + RELOC/fonts/enc/dvips/iwona/wncy-iwona.enc + RELOC/fonts/map/dvips/iwona/iwona-cs.map + RELOC/fonts/map/dvips/iwona/iwona-ec.map + RELOC/fonts/map/dvips/iwona/iwona-ex.map + RELOC/fonts/map/dvips/iwona/iwona-greek.map + RELOC/fonts/map/dvips/iwona/iwona-l7x.map + RELOC/fonts/map/dvips/iwona/iwona-mi.map + RELOC/fonts/map/dvips/iwona/iwona-qx.map + RELOC/fonts/map/dvips/iwona/iwona-rm.map + RELOC/fonts/map/dvips/iwona/iwona-sy.map + RELOC/fonts/map/dvips/iwona/iwona-t2a.map + RELOC/fonts/map/dvips/iwona/iwona-t2b.map + RELOC/fonts/map/dvips/iwona/iwona-t2c.map + RELOC/fonts/map/dvips/iwona/iwona-t5.map + RELOC/fonts/map/dvips/iwona/iwona-texnansi.map + RELOC/fonts/map/dvips/iwona/iwona-ts1.map + RELOC/fonts/map/dvips/iwona/iwona-wncy.map + RELOC/fonts/map/dvips/iwona/iwona.map + RELOC/fonts/opentype/nowacki/iwona/Iwona-Bold.otf + RELOC/fonts/opentype/nowacki/iwona/Iwona-BoldItalic.otf + RELOC/fonts/opentype/nowacki/iwona/Iwona-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/Iwona-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-Bold.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-BoldItalic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondLight-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondLight-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondMedium-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondMedium-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaLight-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaLight-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaMedium-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaMedium-Regular.otf + RELOC/fonts/tfm/nowacki/iwona/cs-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonabz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonacbz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonachz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonaclz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonacmz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonacrz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonahz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonalz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonamz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonarz.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonari.tfm + RELOC/fonts/type1/nowacki/iwona/iwonab.pfb + RELOC/fonts/type1/nowacki/iwona/iwonabi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacb.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacbi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonach.pfb + RELOC/fonts/type1/nowacki/iwona/iwonachi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacl.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacli.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacm.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacmi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacr.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacri.pfb + RELOC/fonts/type1/nowacki/iwona/iwonah.pfb + RELOC/fonts/type1/nowacki/iwona/iwonahi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonal.pfb + RELOC/fonts/type1/nowacki/iwona/iwonali.pfb + RELOC/fonts/type1/nowacki/iwona/iwonam.pfb + RELOC/fonts/type1/nowacki/iwona/iwonami.pfb + RELOC/fonts/type1/nowacki/iwona/iwonar.pfb + RELOC/fonts/type1/nowacki/iwona/iwonari.pfb + RELOC/tex/latex/iwona/il2iwona.fd + RELOC/tex/latex/iwona/il2iwonac.fd + RELOC/tex/latex/iwona/il2iwonal.fd + RELOC/tex/latex/iwona/il2iwonalc.fd + RELOC/tex/latex/iwona/iwona.sty + RELOC/tex/latex/iwona/l7xiwona.fd + RELOC/tex/latex/iwona/l7xiwonac.fd + RELOC/tex/latex/iwona/l7xiwonal.fd + RELOC/tex/latex/iwona/l7xiwonalc.fd + RELOC/tex/latex/iwona/ly1iwona.fd + RELOC/tex/latex/iwona/ly1iwonac.fd + RELOC/tex/latex/iwona/ly1iwonal.fd + RELOC/tex/latex/iwona/ly1iwonalc.fd + RELOC/tex/latex/iwona/omliwona.fd + RELOC/tex/latex/iwona/omliwonac.fd + RELOC/tex/latex/iwona/omliwonal.fd + RELOC/tex/latex/iwona/omliwonalc.fd + RELOC/tex/latex/iwona/omsiwona.fd + RELOC/tex/latex/iwona/omsiwonac.fd + RELOC/tex/latex/iwona/omsiwonal.fd + RELOC/tex/latex/iwona/omsiwonalc.fd + RELOC/tex/latex/iwona/omxiwona.fd + RELOC/tex/latex/iwona/omxiwonac.fd + RELOC/tex/latex/iwona/omxiwonal.fd + RELOC/tex/latex/iwona/omxiwonalc.fd + RELOC/tex/latex/iwona/ot1iwona.fd + RELOC/tex/latex/iwona/ot1iwonac.fd + RELOC/tex/latex/iwona/ot1iwonacm.fd + RELOC/tex/latex/iwona/ot1iwonal.fd + RELOC/tex/latex/iwona/ot1iwonalc.fd + RELOC/tex/latex/iwona/ot1iwonalcm.fd + RELOC/tex/latex/iwona/ot1iwonalm.fd + RELOC/tex/latex/iwona/ot1iwonam.fd + RELOC/tex/latex/iwona/ot2iwona.fd + RELOC/tex/latex/iwona/ot2iwonac.fd + RELOC/tex/latex/iwona/ot2iwonal.fd + RELOC/tex/latex/iwona/ot2iwonalc.fd + RELOC/tex/latex/iwona/ot4iwona.fd + RELOC/tex/latex/iwona/ot4iwonac.fd + RELOC/tex/latex/iwona/ot4iwonal.fd + RELOC/tex/latex/iwona/ot4iwonalc.fd + RELOC/tex/latex/iwona/qxiwona.fd + RELOC/tex/latex/iwona/qxiwonac.fd + RELOC/tex/latex/iwona/qxiwonal.fd + RELOC/tex/latex/iwona/qxiwonalc.fd + RELOC/tex/latex/iwona/t1iwona.fd + RELOC/tex/latex/iwona/t1iwonac.fd + RELOC/tex/latex/iwona/t1iwonal.fd + RELOC/tex/latex/iwona/t1iwonalc.fd + RELOC/tex/latex/iwona/t2aiwona.fd + RELOC/tex/latex/iwona/t2aiwonac.fd + RELOC/tex/latex/iwona/t2aiwonal.fd + RELOC/tex/latex/iwona/t2aiwonalc.fd + RELOC/tex/latex/iwona/t2biwona.fd + RELOC/tex/latex/iwona/t2biwonac.fd + RELOC/tex/latex/iwona/t2biwonal.fd + RELOC/tex/latex/iwona/t2biwonalc.fd + RELOC/tex/latex/iwona/t2ciwona.fd + RELOC/tex/latex/iwona/t2ciwonac.fd + RELOC/tex/latex/iwona/t2ciwonal.fd + RELOC/tex/latex/iwona/t2ciwonalc.fd + RELOC/tex/latex/iwona/t5iwona.fd + RELOC/tex/latex/iwona/t5iwonac.fd + RELOC/tex/latex/iwona/t5iwonal.fd + RELOC/tex/latex/iwona/t5iwonalc.fd + RELOC/tex/latex/iwona/ts1iwona.fd + RELOC/tex/latex/iwona/ts1iwonac.fd + RELOC/tex/latex/iwona/ts1iwonal.fd + RELOC/tex/latex/iwona/ts1iwonalc.fd + RELOC/tex/plain/iwona/iwona-math.tex +catalogue-ctan /fonts/iwona +catalogue-license gfl +catalogue-topics font font-type1 font-otf +catalogue-version 0.995b + +name jablantile +category Package +revision 16364 +shortdesc Metafont version of tiles in the style of Slavik Jablan +relocated 1 +longdesc This is a small Metafont font to implement the modular tiles +longdesc described by Slavik Jablan. For an outline of the theoretical +longdesc structure of the tiles, see (for example) Jablan's JMM 2006 +longdesc Exhibit. +containersize 3672 +containerchecksum 40fb96443b2194adf8477a68d9d435101dfa42471d02ec48a37968d21e12802ff1feffa830484642b457562392b6ea147d394734acdffd735a8a5db421d0eefd +doccontainersize 13880 +doccontainerchecksum 00e753a85f3521ac0c6f336e0e563bd0a68a5e2ae756dfce72d3cf59a01eb9654b6f5c9ad9b83047d3d4f7743b7cce6f2d0d734510532db13942ef6619ae813f +docfiles size=6 + RELOC/doc/fonts/jablantile/README details="Readme" + RELOC/doc/fonts/jablantile/dearjablan.tex + RELOC/doc/fonts/jablantile/jablantile.pdf details="Example of use (letter to Jablan)" +runfiles size=7 + RELOC/fonts/source/public/jablantile/jablantile.mf +catalogue-ctan /fonts/jablantile +catalogue-license pd +catalogue-topics font font-mf font-novelty + +name jacow +category Package +revision 50870 +shortdesc The "jacow.cls" class is used for submissions to the proceedings of conferences on JACoW.org +relocated 1 +longdesc The jacow class is used for submissions to the proceedings of +longdesc conferences on Joint Accelerator Conferences Website (JACoW), +longdesc an international collaboration that publishes the proceedings +longdesc of accelerator conferences held around the world. +containersize 6216 +containerchecksum 11cdae5bd4387f11e30200f72ebca29a0c19c61a44570fd02de40dfffe1b7578defadb15eef1b7e9d06d5f394f816ab8a5f46994b3a225be446c693dd23796d1 +doccontainersize 1131916 +doccontainerchecksum 6872a79aacf4a59ab408fac511604a596c40ad8dc991d0519afd75590a1e3b06ab24c3b7ad33eb4a8447e14094fb34e64d52cea75fd4d41b2ef1e600b4d12d6b +docfiles size=712 + RELOC/doc/latex/jacow/JACoW_LaTeX_A4.pdf details="Package documentation" + RELOC/doc/latex/jacow/JACoW_LaTeX_A4.tex + RELOC/doc/latex/jacow/JACoW_LaTeX_Letter.pdf + RELOC/doc/latex/jacow/JACoW_LaTeX_Letter.tex + RELOC/doc/latex/jacow/JACpic2.jpg + RELOC/doc/latex/jacow/JACpic_mc.pdf + RELOC/doc/latex/jacow/README details="Readme" + RELOC/doc/latex/jacow/annexes-A4.tex + RELOC/doc/latex/jacow/annexes-Letter.tex + RELOC/doc/latex/jacow/jacow-collaboration.pdf + RELOC/doc/latex/jacow/jacow-collaboration.tex +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-license lppl1.3c +catalogue-topics confproc +catalogue-version 2.4 + +name jadetex +category Package +revision 57186 +shortdesc Macros supporting Jade DSSSL output +longdesc Macro package on top of LaTeX to typeset TeX output of the Jade +longdesc DSSSL implementation. +depend amsfonts +depend atbegshi +depend atveryend +depend auxhook +depend babel +depend bigintcalc +depend bitset +depend cm +depend colortbl +depend cyrillic +depend dehyph +depend ec +depend etexcmds +depend everyshi +depend fancyhdr +depend firstaid +depend graphics +depend graphics-cfg +depend graphics-def +depend hycolor +depend hyperref +depend hyph-utf8 +depend hyphen-base +depend iftex +depend infwarerr +depend intcalc +depend jadetex.ARCH +depend kvdefinekeys +depend kvoptions +depend kvsetkeys +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-fonts +depend latexconfig +depend letltxmacro +depend ltxcmds +depend marvosym +depend passivetex +depend pdfescape +depend pdftex +depend pdftexcmds +depend psnfss +depend rerunfilecheck +depend stmaryrd +depend symbol +depend tex +depend tex-ini-files +depend tipa +depend tools +depend ulem +depend unicode-data +depend uniquecounter +depend url +depend wasysym +depend zapfding +execute AddFormat name=jadetex engine=pdftex patterns=language.dat options="*jadetex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,amsfonts,auxhook,bigintcalc,bitset,colortbl,cyrillic,dehyph,ec,etexcmds,fancyhdr,graphics,graphics-cfg,graphics-def,hycolor,hyperref,hyph-utf8,iftex,infwarerr,intcalc,kvdefinekeys,kvoptions,kvsetkeys,latex,latexconfig,letltxmacro,ltxcmds,marvosym,passivetex,pdfescape,pdftexcmds,psnfss,rerunfilecheck,stmaryrd,symbol,tipa,tools,ulem,uniquecounter,url,wasysym,zapfding +execute AddFormat name=pdfjadetex engine=pdftex patterns=language.dat options="*pdfjadetex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,amsfonts,auxhook,bigintcalc,bitset,colortbl,cyrillic,dehyph,ec,etexcmds,fancyhdr,graphics,graphics-cfg,graphics-def,hycolor,hyperref,hyph-utf8,iftex,infwarerr,intcalc,kvdefinekeys,kvoptions,kvsetkeys,latex,latexconfig,letltxmacro,ltxcmds,marvosym,passivetex,pdfescape,pdftexcmds,psnfss,rerunfilecheck,stmaryrd,symbol,tipa,tools,ulem,uniquecounter,url,wasysym,zapfding +containersize 29900 +containerchecksum 985e1ed14e5db0a23e9be510e5a52456fdf07ff8c8746add0d1123fa8b8684b3a0c5d9e99e06aa193c667ffa2dd648419d4359a75685d6514e81b9ef0d92ff22 +doccontainersize 31792 +doccontainerchecksum bf83fb4dc700f10050d34905197a630f8de75a6a27146188efc254b831ad0d68cc873b610f7457a3dc1140a10793aa05c567749efc38225089014df99fc2c895 +docfiles size=34 + texmf-dist/doc/man/man1/jadetex.1 + texmf-dist/doc/man/man1/jadetex.man1.pdf + texmf-dist/doc/man/man1/pdfjadetex.1 + texmf-dist/doc/man/man1/pdfjadetex.man1.pdf + texmf-dist/doc/otherformats/jadetex/base/ChangeLog + texmf-dist/doc/otherformats/jadetex/base/ChangeLog-old + texmf-dist/doc/otherformats/jadetex/base/Makefile + texmf-dist/doc/otherformats/jadetex/base/demo.sgm + texmf-dist/doc/otherformats/jadetex/base/docbook.dsl + texmf-dist/doc/otherformats/jadetex/base/index.html + texmf-dist/doc/otherformats/jadetex/base/index.xml + texmf-dist/doc/otherformats/jadetex/base/index.xsl + texmf-dist/doc/otherformats/jadetex/base/jadetex.cfg + texmf-dist/doc/otherformats/jadetex/base/logo.png + texmf-dist/doc/otherformats/jadetex/base/releasenotes.dsl + texmf-dist/doc/otherformats/jadetex/base/releasenotes.xml +srccontainersize 19312 +srccontainerchecksum 63bf7f94983a971833e1e1b7d33afdf684d83117e4ce846334952176641b45acfe0c18b2fe983c2f24d98e68e91469560c2c10582d53015d069802a38066280f +srcfiles size=21 + texmf-dist/source/jadetex/base/Makefile + texmf-dist/source/jadetex/base/jadetex.dtx + texmf-dist/source/jadetex/base/jadetex.ins +runfiles size=60 + texmf-dist/tex/jadetex/base/dsssl.def + texmf-dist/tex/jadetex/base/jadetex.ini + texmf-dist/tex/jadetex/base/jadetex.ltx + texmf-dist/tex/jadetex/base/pdfjadetex.ini + texmf-dist/tex/jadetex/base/uentities.sty + texmf-dist/tex/jadetex/base/ut1omlgc.fd +catalogue-contact-repository http://jadetex.sourceforge.net/ +catalogue-ctan /macros/jadetex +catalogue-license other-free +catalogue-topics foreign-import +catalogue-version 3.13 + +name jadetex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of jadetex +containersize 340 +containerchecksum 3c85c446776b5ce189b50c77795928a401b61c38b8f4240131aac6caddb7ee09dcc270152660fe6161b0c662c74aeb7115bb4458ad90a2e72d174c7e988f7c7e +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/jadetex + bin/aarch64-linux/pdfjadetex + +name jadetex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of jadetex +containersize 340 +containerchecksum 75ca9157dbba28b82a2d97493f8dfb004db3232d49699bb477107b9f5266c5167d36e6f543948b700b7ba4f228d9d60ef93b3d4febcfefcdfaf6059fa57d1907 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/jadetex + bin/amd64-freebsd/pdfjadetex + +name jadetex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of jadetex +containersize 340 +containerchecksum 59971ddff762f2c346e1fa4d4ef255eac7f0e382ec8a492cdc76d1d654e8879a361be521e500691444dcbc7d531511a35c8295152a1dac94b2dd24603bc6a619 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/jadetex + bin/amd64-netbsd/pdfjadetex + +name jadetex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of jadetex +containersize 340 +containerchecksum 34d34bcec040c67e362e3c0619bac060eac2ccfded16186170bb074ce7884ab7959ea84aa82a4d06e7ce12ef47f4b869e35e68ed5d598c5f03583beba82eedad +binfiles arch=armhf-linux size=2 + bin/armhf-linux/jadetex + bin/armhf-linux/pdfjadetex + +name jadetex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of jadetex +containersize 340 +containerchecksum f3813825129ab1e57fed8908e9cd42d631473f8486ca7c4013120a1b4f8e0cd680e1b7da99d9f9b0c3dddb4e7e9f2a6eda27aa853f3bbcc100becf1625a10878 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/jadetex + bin/i386-cygwin/pdfjadetex + +name jadetex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of jadetex +containersize 340 +containerchecksum 3f00dceccf94374750baccb82fa1258c97d855c2c52a95a122c07023a4d58bdcb8330b1b7a0f51b806ab3efe899f278aa76bc31cae4c8bf153106d9557586db5 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/jadetex + bin/i386-freebsd/pdfjadetex + +name jadetex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of jadetex +containersize 340 +containerchecksum aa80361a60af1a592f4fb525541c4a428b85adb37597722b798661e0473aed4ef5067669f75e6e15da80f4c2ba9e543f7f58cdd38fa01ac5cef232a3cb191822 +binfiles arch=i386-linux size=2 + bin/i386-linux/jadetex + bin/i386-linux/pdfjadetex + +name jadetex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of jadetex +containersize 340 +containerchecksum 2497b2d71d7f36fbfd47a1a7f51dd9ad03c4d6741e4c62368959f395dc4bac94efcdea0aa64e17a83b16f3dc6d2b04e39860993e81f82a1cb2f7276610f07dc8 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/jadetex + bin/i386-netbsd/pdfjadetex + +name jadetex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of jadetex +containersize 340 +containerchecksum 2bf45dd3246a3ae715281a864afaa97c31efe37f2cf7f835b84c5f822c351720f23c0961bfddde0cf6e0218d7c80a5a3ab62a38e5322d118079dd607ac597c48 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/jadetex + bin/i386-solaris/pdfjadetex + +name jadetex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of jadetex +containersize 340 +containerchecksum 77d938228c87674ddeb1a485a8307620ff8ff3a164624e18bad45868c22d903137f9854bfbb357c7817463a7ade6de42636ce62ae8dc033c06114849f5ee7505 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/jadetex + bin/universal-darwin/pdfjadetex + +name jadetex.win32 +category Package +revision 57883 +shortdesc win32 files of jadetex +containersize 880 +containerchecksum 07c9d4a9fa1dc06963b62d015c758dd673d0f81a043390c83ea6b7c85052237d0c557835aaa1eb6ab3484208c7c788c49b29ccc19efb60935ccd4452a15da5fc +binfiles arch=win32 size=2 + bin/win32/jadetex.exe + bin/win32/pdfjadetex.exe + +name jadetex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of jadetex +containersize 344 +containerchecksum 169fca40f7d01fb94a9beb8ff1e9810472dccfc8c6d3cb8aace99f78d18af07042a05831678d4f7c855efa1dd5a88b68ed683b787448209d452bfdbb683a459b +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/jadetex + bin/x86_64-cygwin/pdfjadetex + +name jadetex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of jadetex +containersize 348 +containerchecksum 242f931ea9ea1f571f0a0f825541f160ba1b72952cd6128d7d99285275b5e1079725e1fe327be3bf67a0a61200d6fc8e1794f1e5d3704cf8d99fde570dee3aac +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/jadetex + bin/x86_64-darwinlegacy/pdfjadetex + +name jadetex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of jadetex +containersize 340 +containerchecksum c77695a595c67e68466280d6eb589b2f925d9e6b1da1fe7ff949d66a8647846f2ed8d5a08912f0fd5dee6d960063f5eb084d7f4a18636b7c97a72a38599d409e +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/jadetex + bin/x86_64-linux/pdfjadetex + +name jadetex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of jadetex +containersize 348 +containerchecksum f794ab782e1e9aa86224e7c94bb8790617099862c6222621040bf3b439357cf2247aba36f0ccc484fe7078e0a46e7ca4f2f17dbb04e46757f75c919d30e28cac +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/jadetex + bin/x86_64-linuxmusl/pdfjadetex + +name jadetex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of jadetex +containersize 344 +containerchecksum f96cb103b13c66fca8658cb281ec19e612ba48f32e5b231c648bbab9dce4acf3f7d8fe787e703d1eca44c351ec2796698b839efb67f3e62b9b2e0fa779c21e0f +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/jadetex + bin/x86_64-solaris/pdfjadetex + +name jamtimes +category Package +revision 20408 +shortdesc Expanded Times Roman fonts +relocated 1 +longdesc The package offers LaTeX support for the expanded Times Roman +longdesc font, which has been used for many years in the Journal +longdesc d'Analyse Mathematique. Mathematics support is based on the +longdesc Belleek fonts. +containersize 45676 +containerchecksum 72e2dc3995f173f75aa4714c397bb036c140bace3b17ddbf321afad677ad397c2be804c890df472f89e15300d4645d02d8ce3746c33fa37be85a9d9312ece3a7 +doccontainersize 851028 +doccontainerchecksum bc14db250b9d34e700c0fed6390948b39022f7ba39cc0e083c6a1355517fd10aaf7065f6ca90f40a50aa0cd6557a35cdfb1534aabff12ec6c462a2fc87ec699a +docfiles size=254 + RELOC/doc/latex/jamtimes/README details="Readme" + RELOC/doc/latex/jamtimes/jamtimes.bib + RELOC/doc/latex/jamtimes/jamtimes.dtx + RELOC/doc/latex/jamtimes/jamtimes.ins + RELOC/doc/latex/jamtimes/jamtimes.pdf details="Package documentation" + RELOC/doc/latex/jamtimes/mathsample.pdf + RELOC/doc/latex/jamtimes/mathsample.tex + RELOC/doc/latex/jamtimes/mathsample_ps.pdf + RELOC/doc/latex/jamtimes/textsample.pdf + RELOC/doc/latex/jamtimes/textsample.tex + RELOC/doc/latex/jamtimes/textsample_ps.pdf +runfiles size=136 + RELOC/fonts/map/dvips/jamtimes/jtm.map + RELOC/fonts/tfm/public/jamtimes/blsy.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb8cv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb8rv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbc7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbc8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi7me.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi8cv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi8rv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo8cv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo8rv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7tc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7ye.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7yoe.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8cc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8ce.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8cw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8rc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8re.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8rw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8tc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc8tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7me.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7ze.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8ce.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8cw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8re.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8rw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8ce.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8cw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8re.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8rw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8tw.tfm + RELOC/fonts/tfm/public/jamtimes/ptmb8a.tfm + RELOC/fonts/tfm/public/jamtimes/ptmbi8a.tfm + RELOC/fonts/tfm/public/jamtimes/ptmr8a.tfm + RELOC/fonts/tfm/public/jamtimes/ptmri8a.tfm + RELOC/fonts/tfm/public/jamtimes/rblmi.tfm + RELOC/fonts/vf/public/jamtimes/jtmb7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmb8cv.vf + RELOC/fonts/vf/public/jamtimes/jtmb8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbc7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbc8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbi7me.vf + RELOC/fonts/vf/public/jamtimes/jtmbi7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbi8cv.vf + RELOC/fonts/vf/public/jamtimes/jtmbi8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbo7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbo8cv.vf + RELOC/fonts/vf/public/jamtimes/jtmbo8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmr7tc.vf + RELOC/fonts/vf/public/jamtimes/jtmr7te.vf + RELOC/fonts/vf/public/jamtimes/jtmr7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmr7ye.vf + RELOC/fonts/vf/public/jamtimes/jtmr8cc.vf + RELOC/fonts/vf/public/jamtimes/jtmr8ce.vf + RELOC/fonts/vf/public/jamtimes/jtmr8cw.vf + RELOC/fonts/vf/public/jamtimes/jtmr8tc.vf + RELOC/fonts/vf/public/jamtimes/jtmr8te.vf + RELOC/fonts/vf/public/jamtimes/jtmr8tw.vf + RELOC/fonts/vf/public/jamtimes/jtmrc7te.vf + RELOC/fonts/vf/public/jamtimes/jtmrc7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmrc8te.vf + RELOC/fonts/vf/public/jamtimes/jtmrc8tw.vf + RELOC/fonts/vf/public/jamtimes/jtmri7me.vf + RELOC/fonts/vf/public/jamtimes/jtmri7te.vf + RELOC/fonts/vf/public/jamtimes/jtmri7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmri8ce.vf + RELOC/fonts/vf/public/jamtimes/jtmri8cw.vf + RELOC/fonts/vf/public/jamtimes/jtmri8te.vf + RELOC/fonts/vf/public/jamtimes/jtmri8tw.vf + RELOC/fonts/vf/public/jamtimes/jtmro7te.vf + RELOC/fonts/vf/public/jamtimes/jtmro7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmro8ce.vf + RELOC/fonts/vf/public/jamtimes/jtmro8cw.vf + RELOC/fonts/vf/public/jamtimes/jtmro8te.vf + RELOC/fonts/vf/public/jamtimes/jtmro8tw.vf + RELOC/tex/latex/jamtimes/jamtimes.sty + RELOC/tex/latex/jamtimes/omljtm.fd + RELOC/tex/latex/jamtimes/omsjtm.fd + RELOC/tex/latex/jamtimes/ot1jtm.fd + RELOC/tex/latex/jamtimes/t1jtm.fd + RELOC/tex/latex/jamtimes/ts1jtm.fd +catalogue-ctan /fonts/jamtimes +catalogue-license other-free +catalogue-topics font-supp +catalogue-version 1.12 + +name japanese-otf +category Package +revision 57826 +shortdesc Advanced font selection for platex and its friends +relocated 1 +longdesc The package contains pLaTeX support files and virtual fonts for +longdesc supporting a wide variety of fonts in LaTeX using the pTeX +longdesc engine. +execute addKanjiMap otf-@jaEmbed@.map +execute addKanjiMap otf-ko-@koEmbed@.map +execute addKanjiMap otf-sc-@scEmbed@.map +execute addKanjiMap otf-tc-@tcEmbed@.map +containersize 207068 +containerchecksum 09c4a30bf8ea079119cbc094eb21591e8402b5364e4a497abaa2048278b0a54322f012c7bed44b4a5b30eff44cdb360be66d8271d8e6fd22dc92622862693f47 +doccontainersize 12328 +doccontainerchecksum 92f23d5d376451a6103183e6924328432e3e983577a98f8a911da5cf2421baaffaf617065c48c339bdd0a33868976c55ba2a8b254f3f0a3d7d8a85414495c902 +docfiles size=16 + RELOC/doc/fonts/japanese-otf/COPYRIGHT + RELOC/doc/fonts/japanese-otf/README details="Readme (English)" language="en" + RELOC/doc/fonts/japanese-otf/otf-script-gteb.diff + RELOC/doc/fonts/japanese-otf/readme-ja.txt details="Readme (japanese)" language="ja" + RELOC/doc/fonts/japanese-otf/test/brsgtest.tex + RELOC/doc/fonts/japanese-otf/test/jis2004.tex + RELOC/doc/fonts/japanese-otf/test/koreanexample.tex + RELOC/doc/fonts/japanese-otf/test/otftest.tex + RELOC/doc/fonts/japanese-otf/test/pkanatest.tex + RELOC/doc/fonts/japanese-otf/test/pkanatest2.tex +srccontainersize 45264 +srccontainerchecksum 0f429dcb8ac083503d65dc73e065746d6b2e5849927ceb013e708df4567017ad6554d50cbcfa5cec8da8cbac8461a66599cfa7e26e246a01951ff72d0ed634e5 +srcfiles size=111 + RELOC/source/fonts/japanese-otf/basepl/base-h.pl + RELOC/source/fonts/japanese-otf/basepl/base-v.pl + RELOC/source/fonts/japanese-otf/basepl/base0-h.pl + RELOC/source/fonts/japanese-otf/basepl/base2-h.pl + RELOC/source/fonts/japanese-otf/basepl/base2-v.pl + RELOC/source/fonts/japanese-otf/basepl/base3-v.pl + RELOC/source/fonts/japanese-otf/basepl/brsg-h.pl + RELOC/source/fonts/japanese-otf/basepl/brsg-v.pl + RELOC/source/fonts/japanese-otf/makeotf + RELOC/source/fonts/japanese-otf/mkjvf + RELOC/source/fonts/japanese-otf/script/glyphdata + RELOC/source/fonts/japanese-otf/script/mkaltutfvf.pl + RELOC/source/fonts/japanese-otf/script/mkcidofm.pl + RELOC/source/fonts/japanese-otf/script/mkcidvf.pl + RELOC/source/fonts/japanese-otf/script/mkjp04tfmvf.pl + RELOC/source/fonts/japanese-otf/script/mkmlcidvf.pl + RELOC/source/fonts/japanese-otf/script/mkpkana.pl + RELOC/source/fonts/japanese-otf/script/mkpropofm.pl + RELOC/source/fonts/japanese-otf/script/mktfm.pl + RELOC/source/fonts/japanese-otf/script/mkutfvf.pl + RELOC/source/fonts/japanese-otf/script/mkvpkana.pl + RELOC/source/fonts/japanese-otf/script/otf-hangul.rb +runfiles size=31081 + RELOC/fonts/map/dvipdfmx/japanese-otf/otf-cktx.map + RELOC/fonts/ofm/public/japanese-otf/otf-cjgb-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjgb-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjge-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjge-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjgr-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjgr-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmb-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmb-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmgr-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmgr-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjml-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjml-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmr-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmr-v.ofm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjge-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjge-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjml-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjml-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujge-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgen-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujml-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubymgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubymgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgba-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgba-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbe-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbe-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgea-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgea-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgec-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgec-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjged-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjged-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgee-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgee-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgef-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgef-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgena-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgena-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgend-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgend-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgene-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgene-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmba-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmba-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbe-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbe-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmla-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmla-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmld-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmld-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmle-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmle-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrf-v.tfm + RELOC/fonts/vf/public/japanese-otf/brsgexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/expgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/expgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/expmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/expmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/expmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/expmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/expminb-h.vf + RELOC/fonts/vf/public/japanese-otf/expminb-v.vf + RELOC/fonts/vf/public/japanese-otf/expminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/expminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/expminl-h.vf + RELOC/fonts/vf/public/japanese-otf/expminl-v.vf + RELOC/fonts/vf/public/japanese-otf/expminln-h.vf + RELOC/fonts/vf/public/japanese-otf/expminln-v.vf + RELOC/fonts/vf/public/japanese-otf/expminr-h.vf + RELOC/fonts/vf/public/japanese-otf/expminr-v.vf + RELOC/fonts/vf/public/japanese-otf/expminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/expminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/rubygothb-h.vf + RELOC/fonts/vf/public/japanese-otf/rubygothb-v.vf + RELOC/fonts/vf/public/japanese-otf/rubygotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/rubygotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/rubygothr-h.vf + RELOC/fonts/vf/public/japanese-otf/rubygothr-v.vf + RELOC/fonts/vf/public/japanese-otf/rubymgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/rubymgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/rubyminb-h.vf + RELOC/fonts/vf/public/japanese-otf/rubyminb-v.vf + RELOC/fonts/vf/public/japanese-otf/rubyminl-h.vf + RELOC/fonts/vf/public/japanese-otf/rubyminl-v.vf + RELOC/fonts/vf/public/japanese-otf/rubyminr-h.vf + RELOC/fonts/vf/public/japanese-otf/rubyminr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgba-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgba-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbe-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbe-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgea-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgea-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgec-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgec-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjged-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjged-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgee-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgee-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgef-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgef-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgena-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgena-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgend-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgend-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgene-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgene-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmba-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmba-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbe-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbe-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmla-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmla-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmld-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmld-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmle-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmle-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrf-v.vf + RELOC/tex/platex/japanese-otf/ajmacros.sty + RELOC/tex/platex/japanese-otf/mlcid.sty + RELOC/tex/platex/japanese-otf/otf-hangul.dfu + RELOC/tex/platex/japanese-otf/redeffont.sty +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-license other-free +catalogue-topics font-use font-cjk japanese +catalogue-version 1.7b8 + +name japanese-otf-uptex +category Package +revision 56932 +shortdesc Support for Japanese OTF files in upLaTeX +relocated 1 +longdesc The bundle offers support of the fonts in the japanese-otf +longdesc package, for use with the UpTeX distribution (version 0.20 or +longdesc later). +depend japanese-otf +execute addKanjiMap otf-up-@jaEmbed@.map +containersize 64232 +containerchecksum cd95656f02cd97a06119134406b519928ced50c31647a4dd421850d7e83b3705cd2b715be2e23c45b77d1634c47fd5cf8733aea05c654a0d3fd7fd223a3742a7 +doccontainersize 23520 +doccontainerchecksum c67265456120136645bcd45f099e62174efa2350acbc5a13e45e35e959421f94cc2f1492bba9605b087008c3fe565ae8a52f4842070ac98039d7b6d8a9bf2172 +docfiles size=48 + RELOC/doc/fonts/japanese-otf-uptex/00otf-uptex.txt + RELOC/doc/fonts/japanese-otf-uptex/COPYRIGHT + RELOC/doc/fonts/japanese-otf-uptex/README details="Readme" + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/Makefile + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/era.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/exclam.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/otfscale.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/paren0.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/punct0.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/punctuation.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_cns_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_gb_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_text.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_kr_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotf-sp-utf8.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest-utf8.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upbrsgtest.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upjis2004.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest1.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest2.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/utfmacro-cjk.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/utfmacro-haranoaji.map +srccontainersize 26704 +srccontainerchecksum efb029012b07e8bffa1311424138f923b4fec963bd2373a9aa083ab048007b05a2cabdf1fe53eadfc0d2431d0a48209f2e532e9a36d914868cb0dd932ce55098 +srcfiles size=47 + RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-h.pl + RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-v.pl + RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-h.pl + RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-v.pl + RELOC/source/fonts/japanese-otf-uptex/script/CheckDVICode.pm + RELOC/source/fonts/japanese-otf-uptex/script/MakeSPList.pm + RELOC/source/fonts/japanese-otf-uptex/script/mktfm_sp.pl + RELOC/source/fonts/japanese-otf-uptex/script/mkutf32list.pl + RELOC/source/fonts/japanese-otf-uptex/script/mkutfvf_sp.pl + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_c.txt + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_j.txt + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_k.txt + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_t.txt + RELOC/source/fonts/japanese-otf-uptex/script/umkpkana.pl + RELOC/source/fonts/japanese-otf-uptex/script/umkvpkana.pl + RELOC/source/fonts/japanese-otf-uptex/umakeotf + RELOC/source/fonts/japanese-otf-uptex/umakeotf_brsg + RELOC/source/fonts/japanese-otf-uptex/umakeotf_jis04 + RELOC/source/fonts/japanese-otf-uptex/umakeotf_pre + RELOC/source/fonts/japanese-otf-uptex/umakeotf_prop + RELOC/source/fonts/japanese-otf-uptex/umkjvf +runfiles size=5748 + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucge-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucge-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucml-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucml-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujge-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujge-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgen-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgen-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujml-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujml-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukge-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukge-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukml-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukml-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utge-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utge-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utml-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utml-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubymgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubymgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcge--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcge--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcml--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcml--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgry-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgby-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgby-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjge--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjge--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgej-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgej-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgek-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgek-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgel-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgel-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgem-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgem-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgep-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgep-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjger-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjger-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjges-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjges-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjget-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjget-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgex-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgex-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgey-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgey-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgry-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmby-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmby-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgry-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjml--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjml--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmll-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmll-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmls-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmls-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmly-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmly-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmry-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkge--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkge--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkml--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkml--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmry-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftge--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftge--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmb--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftml--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftml--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmr--v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-v.tfm + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubymgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubymgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcge--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcge--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcml--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcml--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgry-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgby-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgby-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjge--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjge--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgej-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgej-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgek-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgek-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgel-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgel-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgem-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgem-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgep-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgep-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjger-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjger-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjges-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjges-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjget-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjget-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgex-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgex-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgey-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgey-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgry-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmby-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmby-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgry-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjml--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjml--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmll-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmll-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmls-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmls-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmly-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmly-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmry-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkgb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkgb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkge--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkge--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkmb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkmb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkmgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkmgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkml--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkml--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkmr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfkmr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmry-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftge--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftge--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmb--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmb--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmgr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmgr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftml--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftml--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmr--h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmr--v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrz-v.vf + RELOC/tex/platex/japanese-otf-uptex/mlutf.sty + RELOC/tex/platex/japanese-otf-uptex/otf.sty +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-license bsd3 +catalogue-topics font-use font-cjk japanese +catalogue-version 0.26 + +name jbact +category Package +revision 52717 +shortdesc BibTeX style for biology journals +relocated 1 +longdesc The style is a development of apalike.bst in the BibTeX bundle. +longdesc The style serves two journals -- if the user executes +longdesc "\nocite{TitlesOn}", the style serves for the Journal of +longdesc Theoretical Biology; otherwise it serves for the Journal of +longdesc Molecular Biology. +containersize 9792 +containerchecksum 0f1cd72dca41b37c26d863aa734737ad128f5c39c508db13a3e91e4088477a99d9978aa1ed003ba0812e276bb4d80e527c80915cd7a08fd1cbe968816359814e +runfiles size=9 + RELOC/bibtex/bst/jbact/jbact.bst +catalogue-ctan /biblio/bibtex/contrib/misc/jbact.bst +catalogue-license other-free +catalogue-topics bibtex-sty journalpub +catalogue-version 1.30 + +name jfmutil +category Package +revision 55044 +shortdesc Utility to process pTeX-extended TFM and VF +longdesc This program provides functionality to process data files (JFM +longdesc and VF) that form logical fonts used in (u)pTeX. The functions +longdesc currently available include: The mutual conversion between +longdesc Japanese virtual fonts (pairs of VF and JFM) and files in the +longdesc "ZVP format", which is an original text format representing +longdesc data in virtual fonts. This function can be seen as a +longdesc counterpart to the vftovp/vptovf programs. The mutual +longdesc conversion between VF files alone and files in the "ZVP0 +longdesc format", which is a subset of the ZVP format. +depend jfmutil.ARCH +containersize 25772 +containerchecksum ba0c853d1624ef00407e9eb4c6051fa9f71f505e0e55ea2a698d4a9f7fee241c1339d46e873d77573252c781ccacb05b9d447b80aa43887ad76da667977c666b +doccontainersize 9584 +doccontainerchecksum d4b255cccbe58ec85240be3f0a390dd2fd716fd40c744732494d3e113899747133e99be75f8bab888d240e66e16195dbd2b12188f3551e5535a2cbe157c5bf9f +docfiles size=9 + texmf-dist/doc/fonts/jfmutil/LICENSE + texmf-dist/doc/fonts/jfmutil/README-ja.md details="Readme (Japanese)" language="ja" + texmf-dist/doc/fonts/jfmutil/README.md details="Readme" +runfiles size=26 + texmf-dist/scripts/jfmutil/jfmutil.pl +catalogue-ctan /fonts/utilities/jfmutil +catalogue-license mit +catalogue-topics font-proc japanese +catalogue-version 1.3.1 + +name jfmutil.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of jfmutil +containersize 340 +containerchecksum ea88d5a81a682ea7520cb6a318ae339f183611113955e2e35fba1d6ad1b7db5b54b9f6cbead63a82ee9b4beaef6d70f42ca31d219eb561f2e7a4598f51590747 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/jfmutil + +name jfmutil.amd64-freebsd +category Package +revision 44835 +shortdesc amd64-freebsd files of jfmutil +containersize 340 +containerchecksum b10fca0f54f1640ec69a12c29e48615fb088940a8cbfdcadc5358ee3f6fd3c623a17b5a0ce2eb67527ab38578a390bfb640d5cdfb97bb01d3f31601bf253c56f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/jfmutil + +name jfmutil.amd64-netbsd +category Package +revision 44835 +shortdesc amd64-netbsd files of jfmutil +containersize 340 +containerchecksum 00bec98536aaac83e90f63d70bc28434ff20bcb414ce8b23c19966e03496ae0c00f1a19de8709f7a05a21a59726f34a0de6f09e6e787298031620c56191e0e7b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/jfmutil + +name jfmutil.armhf-linux +category Package +revision 44835 +shortdesc armhf-linux files of jfmutil +containersize 340 +containerchecksum f32a42f644de7afc10694175a18bca190ebc805ae421415d4010f92f698a006508b12abd4741b93febfb8922bb568b8dc65a9df0b5c43bfe6b2869f5f7b68e1f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/jfmutil + +name jfmutil.i386-cygwin +category Package +revision 44835 +shortdesc i386-cygwin files of jfmutil +containersize 340 +containerchecksum be92b62a3e0a99d57c9d627ebb73b6b89acd00ba0cabb528b59e8b21a4525d1979abd204493d1c9b08d0b94492344df45780df400c317ae3ad08716bde03c63a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/jfmutil + +name jfmutil.i386-freebsd +category Package +revision 44835 +shortdesc i386-freebsd files of jfmutil +containersize 340 +containerchecksum 3c5be3d66f6cd449383f332178a7dc2f8b089ff0024aaf1352e79895ff915122fe3181a44b2cf23b42daba193ac541bf5eabd733788b546bc9ee0f2f6c40c210 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/jfmutil + +name jfmutil.i386-linux +category Package +revision 44835 +shortdesc i386-linux files of jfmutil +containersize 340 +containerchecksum 9cb46c30cd929ff9507dd8dfafbfa3b763afcc7248441221fa710ccbe3694d75dcfc58f330ebee6a1a24bbb297f28e2023888a1c783a045238aaee81fc982570 +binfiles arch=i386-linux size=1 + bin/i386-linux/jfmutil + +name jfmutil.i386-netbsd +category Package +revision 44835 +shortdesc i386-netbsd files of jfmutil +containersize 340 +containerchecksum 25705c94f778ae24ce226432f87d014922c35008dde056a094488e656a8b4055bcb34f82f8032e949ae45f38f2e8316c797e8de7f3986cf5503dde9d011a14da +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/jfmutil + +name jfmutil.i386-solaris +category Package +revision 44835 +shortdesc i386-solaris files of jfmutil +containersize 340 +containerchecksum 0a7358db82b994a8341a2446a1169fbc1ba7693a6601ed92328e8249b16c87b9710608262913974b1c69bee7fcf83fcb5d9c69b63d24d047df113f1da4bfe7fb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/jfmutil + +name jfmutil.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of jfmutil +containersize 340 +containerchecksum 5dc3aea30fb768dc0005d5189ec22eb5c59fb0b08b7a7e67203b825172a00c06fbe2373895558c9bd03ceb3ab4042c46d2709319a57714ad990155bc059b83e8 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/jfmutil + +name jfmutil.win32 +category Package +revision 44835 +shortdesc win32 files of jfmutil +containersize 684 +containerchecksum cfe6725a5dc9d306a80e4c0b8bd93453e8680109f65c87ca12b541790d6b86cf469241bc5be5f673ad9e1e2c74455ce900fb1ba311a12229b2e0b8141cc7b9bc +binfiles arch=win32 size=1 + bin/win32/jfmutil.exe + +name jfmutil.x86_64-cygwin +category Package +revision 44835 +shortdesc x86_64-cygwin files of jfmutil +containersize 344 +containerchecksum 3183b1cb9feed31035f0b96612b2c9f4c92d4043019851c4a1fdc1dca8f36adcc1258971ee068b1a539ade2ff7b1d6f19121b2e0c76fdfdbb2fc51b5fdfe50e4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/jfmutil + +name jfmutil.x86_64-darwinlegacy +category Package +revision 44835 +shortdesc x86_64-darwinlegacy files of jfmutil +containersize 348 +containerchecksum b7d8571bf0c00b1669e0f9800db8323053b83fe7419129c5721ba945ad33af93dea5eba5f3902a0fdf565080ec9a701f0bc683303403ab2d58dc7b915282ab9b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/jfmutil + +name jfmutil.x86_64-linux +category Package +revision 44835 +shortdesc x86_64-linux files of jfmutil +containersize 340 +containerchecksum f7ec55c98663ff4cc8efea8664c544945a3041ad917f7dd0c338729bc971f6e21ea6bb51c7763c97f6042388c0b77c9597d48aa4f90ee711ecf6c0e7562f9496 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/jfmutil + +name jfmutil.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of jfmutil +containersize 344 +containerchecksum 2e0c1c58a4c7fb325af924ca08b1d77fb97b00ea8e9b7a6c26782fcee505315592466790c3a9e76bd703c8d2484a8aa88bd438bf15583c423029f0798c257787 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/jfmutil + +name jfmutil.x86_64-solaris +category Package +revision 44835 +shortdesc x86_64-solaris files of jfmutil +containersize 340 +containerchecksum 922296ed3f4006351b09b90f2b3b9f9f1c32d175191ef02f0b3564269a5cda0b057c7b51e381be9cb4749742dad21e25e3ca172be27f088cab2861f9a4adaee9 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/jfmutil + +name jigsaw +category Package +revision 49111 +shortdesc Draw jigsaw pieces with TikZ +relocated 1 +longdesc This is a small LaTeX package to draw jigsaw pieces with TikZ. +longdesc It is possible to draw individual pieces and adjust their +longdesc shape, create tile patterns or automatically generate complete +longdesc jigsaws. +containersize 1440 +containerchecksum 3bff01425c502c98894fc517be9b4af8ed48bd5a059835fb850ad1c58a2618998967780a65a5bb43946acecaa397ea51fcdd051dc2b8c863e27b55fd3beb5230 +doccontainersize 176048 +doccontainerchecksum 17c263228124da3f17ca338738add762992e2674b0e0fb80e250c8302cc59d11bd1017a1d4e005a7c9c9d66444a91851cfd6e505a5e1f6fb73aef7d5ee703d31 +docfiles size=50 + RELOC/doc/latex/jigsaw/LICENSE.txt + RELOC/doc/latex/jigsaw/README.md details="Readme" + RELOC/doc/latex/jigsaw/jigsaw-doc.pdf details="Package documentation" + RELOC/doc/latex/jigsaw/jigsaw-doc.tex +runfiles size=1 + RELOC/tex/latex/jigsaw/jigsaw.sty +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-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 0.1a + +name jkmath +category Package +revision 47109 +shortdesc Macros for mathematics that make the code more readable +relocated 1 +longdesc Inspired by the physicspackage on CTAN, the package defines +longdesc some simple macros for mathematical notation which make the +longdesc code more readable and/or allow flexibility in typesetting +longdesc material. +containersize 1636 +containerchecksum 8e549db42b25c2edac71013afba0ebe3e09859ce4ef104da2b969663014cb88c10bf1c8899ee181070e6cec1b28d0ec9e5966d27f2176e2032d6855ded8ea941 +doccontainersize 128124 +doccontainerchecksum 99a954f6eb917333a8e6c4e3437fcd16f6950e0473fc1a48c99d748246c97d5a3df5b96e0314a9ec5e7c6bb0b318b934c40070ec94df00546e49cf140aef23c2 +docfiles size=34 + RELOC/doc/latex/jkmath/README.md details="Readme" + RELOC/doc/latex/jkmath/jkmath.pdf details="Package documentation" + RELOC/doc/latex/jkmath/jkmath.tex +runfiles size=1 + RELOC/tex/latex/jkmath/jkmath.sty +catalogue-contact-home https://github.com/JKaerts/jkmath +catalogue-ctan /macros/latex/contrib/jkmath +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.1 + +name jknapltx +category Package +revision 19440 +catalogue jknappen +shortdesc Miscellaneous packages by Joerg Knappen +relocated 1 +longdesc Miscellaneous macros by Jorg Knappen, including: represent +longdesc counters in greek; Maxwell's non-commutative division; +longdesc latin1jk, latin2jk and latin3jk, which are their inputenc +longdesc definition files that allow verbatim input in the respective +longdesc ISO Latin codes; blackboard bold fonts in maths; use of RSFS +longdesc fonts in maths; extra alignments for \parboxes; swap Roman and +longdesc Sans fonts; transliterate semitic languages; patches to make +longdesc (La)TeX formulae embeddable in SGML; use maths "minus" in text +longdesc as appropriate; simple Young tableaux. +containersize 9096 +containerchecksum 0369405034393ea8de2cd94497a97ba6c40264ec9142eefee09647fd4e51f83e169a99757a4b92c1c9d911637f137404fa54231de452bcd208ba3f9982984153 +doccontainersize 3252 +doccontainerchecksum cadb522c007963278990e75a011e22d2c6bd8429e55fe5ecba3c2f20b9ae13fda4eac304bc405440c1c1566b1458e0f3e77a6d4adc77117b20673204bf502131 +docfiles size=4 + RELOC/doc/latex/jknapltx/00readme.txt + RELOC/doc/latex/jknapltx/README.TEXLIVE + RELOC/doc/latex/jknapltx/mathbbol.rme + RELOC/doc/latex/jknapltx/mathrsfs.rme +runfiles size=19 + RELOC/tex/latex/jknapltx/greekctr.sty + RELOC/tex/latex/jknapltx/holtpolt.sty + RELOC/tex/latex/jknapltx/latin1jk.def + RELOC/tex/latex/jknapltx/latin2jk.def + RELOC/tex/latex/jknapltx/latin3jk.def + RELOC/tex/latex/jknapltx/mathbbol.sty + RELOC/tex/latex/jknapltx/mathrsfs.sty + RELOC/tex/latex/jknapltx/parboxx.sty + RELOC/tex/latex/jknapltx/sans.sty + RELOC/tex/latex/jknapltx/semtrans.sty + RELOC/tex/latex/jknapltx/sgmlcmpt.sty + RELOC/tex/latex/jknapltx/smartmn.sty + RELOC/tex/latex/jknapltx/tccompat.sty + RELOC/tex/latex/jknapltx/ursfs.fd + RELOC/tex/latex/jknapltx/ustmary.fd + RELOC/tex/latex/jknapltx/young.sty +catalogue-ctan /macros/latex/contrib/jknappen +catalogue-license gpl +catalogue-topics collection + +name jlabels +category Package +revision 24858 +shortdesc Make letter-sized pages of labels +relocated 1 +longdesc The package provides controls for the numbers of rows and +longdesc columns. +containersize 1564 +containerchecksum 5077471a09df4090e087a465e9d1823668ab80f088a7d5fea7d14559e9ea8906dae029a2093038ce5e9f013bbe3a9bcd74d8626e6ccbcaf7ebedd5c2f1e3521e +doccontainersize 27008 +doccontainerchecksum 7736480f6736d8b623fac61683321eb7444ca8672eadf0da200eeca928de9dc031152e4599783d602e9c11b58463b03fc1162756edbaa5bd3dc1f6c5b64e08a6 +docfiles size=11 + RELOC/doc/latex/jlabels/README details="Readme" + RELOC/doc/latex/jlabels/jlabels.pdf details="Package documentation" + RELOC/doc/latex/jlabels/jlabels.tex +runfiles size=1 + RELOC/tex/latex/jlabels/jlabels.sty +catalogue-ctan /macros/latex/contrib/jlabels +catalogue-license lppl +catalogue-topics labels + +name jlreq +category Package +revision 58472 +shortdesc Japanese document class based on requirements for Japanese text layout +relocated 1 +longdesc This package provides a Japanese document class based on +longdesc requirements for Japanese text layout. The class file and the +longdesc JFM (Japanese font metric) files for LuaTeX-ja / pLaTeX / +longdesc upLaTeX are provided. +containersize 135032 +containerchecksum 1a2118698ae25d3f9a3d9d41c7bab2b3d56e58b9fea73d977114f6cae429d2e9ed0b410a0537531e4eb6559f2a6ebda47eda0e6b3e1d1b8ddbf567dbe1ebf26f +doccontainersize 502528 +doccontainerchecksum e88a88d7d70a03e8dea569f198690278ddb2233df7dbca0733c60d6f5d4963ad9cc810c7764365646302cd529ac70a29aa258a577adc2958fed9da5448f52299 +docfiles size=162 + RELOC/doc/latex/jlreq/LICENSE + RELOC/doc/latex/jlreq/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/jlreq/README.md details="Readme" + RELOC/doc/latex/jlreq/jlreq-ja.html + RELOC/doc/latex/jlreq/jlreq-ja.pdf details="Package documentation" language="ja" + RELOC/doc/latex/jlreq/jlreq-trimmarks-ja.html + RELOC/doc/latex/jlreq/jlreq-trimmarks-ja.md + RELOC/doc/latex/jlreq/jlreq-trimmarks.html + RELOC/doc/latex/jlreq/jlreq-trimmarks.md + RELOC/doc/latex/jlreq/jlreq.html + RELOC/doc/latex/jlreq/jlreq.pdf details="Package documentation" +srccontainersize 8208 +srccontainerchecksum 143b2d7bb6ce740c2dfcc5295ba568189041091118e6cdd6856b7ce6df2b267ca9a1d7443e752f22cb9d4668971cc559609434d091df94906c04ccce066d67bc +srcfiles size=10 + RELOC/source/latex/jlreq/Makefile + RELOC/source/latex/jlreq/README-template.html + RELOC/source/latex/jlreq/README-template.tex + RELOC/source/latex/jlreq/luajfm2pl.lua + RELOC/source/latex/jlreq/make_variant_jfm.lua +runfiles size=8645 + RELOC/fonts/tfm/public/jlreq/bjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/bjlreq.tfm + RELOC/fonts/tfm/public/jlreq/bjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/bjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreq.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/jlreq-jidori.tfm + RELOC/fonts/tfm/public/jlreq/jlreq-v-jidori.tfm + RELOC/fonts/tfm/public/jlreq/jlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/jlreq.tfm + RELOC/fonts/tfm/public/jlreq/jlreqg-jidori.tfm + RELOC/fonts/tfm/public/jlreq/jlreqg-v-jidori.tfm + RELOC/fonts/tfm/public/jlreq/jlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/jlreqg.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreq.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreq.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq-jidori-q.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq-jidori.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq-v-jidori.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg-jidori-q.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg-jidori.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg-v-jidori.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreq.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/zjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/zjlreq.tfm + RELOC/fonts/tfm/public/jlreq/zjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/zjlreqg.tfm + RELOC/fonts/vf/public/jlreq/bjlreq-v.vf + RELOC/fonts/vf/public/jlreq/bjlreq.vf + RELOC/fonts/vf/public/jlreq/bjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/bjlreqg.vf + RELOC/fonts/vf/public/jlreq/bzjlreq-v.vf + RELOC/fonts/vf/public/jlreq/bzjlreq.vf + RELOC/fonts/vf/public/jlreq/bzjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/bzjlreqg.vf + RELOC/fonts/vf/public/jlreq/jlreq-jidori.vf + RELOC/fonts/vf/public/jlreq/jlreq-v-jidori.vf + RELOC/fonts/vf/public/jlreq/jlreq-v.vf + RELOC/fonts/vf/public/jlreq/jlreq.vf + RELOC/fonts/vf/public/jlreq/jlreqg-jidori.vf + RELOC/fonts/vf/public/jlreq/jlreqg-v-jidori.vf + RELOC/fonts/vf/public/jlreq/jlreqg-v.vf + RELOC/fonts/vf/public/jlreq/jlreqg.vf + RELOC/fonts/vf/public/jlreq/ubjlreq-q.vf + RELOC/fonts/vf/public/jlreq/ubjlreq-v.vf + RELOC/fonts/vf/public/jlreq/ubjlreq.vf + RELOC/fonts/vf/public/jlreq/ubjlreqg-q.vf + RELOC/fonts/vf/public/jlreq/ubjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/ubjlreqg.vf + RELOC/fonts/vf/public/jlreq/ubzjlreq-q.vf + RELOC/fonts/vf/public/jlreq/ubzjlreq-v.vf + RELOC/fonts/vf/public/jlreq/ubzjlreq.vf + RELOC/fonts/vf/public/jlreq/ubzjlreqg-q.vf + RELOC/fonts/vf/public/jlreq/ubzjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/ubzjlreqg.vf + RELOC/fonts/vf/public/jlreq/ujlreq-jidori-q.vf + RELOC/fonts/vf/public/jlreq/ujlreq-jidori.vf + RELOC/fonts/vf/public/jlreq/ujlreq-q.vf + RELOC/fonts/vf/public/jlreq/ujlreq-v-jidori.vf + RELOC/fonts/vf/public/jlreq/ujlreq-v.vf + RELOC/fonts/vf/public/jlreq/ujlreq.vf + RELOC/fonts/vf/public/jlreq/ujlreqg-jidori-q.vf + RELOC/fonts/vf/public/jlreq/ujlreqg-jidori.vf + RELOC/fonts/vf/public/jlreq/ujlreqg-q.vf + RELOC/fonts/vf/public/jlreq/ujlreqg-v-jidori.vf + RELOC/fonts/vf/public/jlreq/ujlreqg-v.vf + RELOC/fonts/vf/public/jlreq/ujlreqg.vf + RELOC/fonts/vf/public/jlreq/uzjlreq-q.vf + RELOC/fonts/vf/public/jlreq/uzjlreq-v.vf + RELOC/fonts/vf/public/jlreq/uzjlreq.vf + RELOC/fonts/vf/public/jlreq/uzjlreqg-q.vf + RELOC/fonts/vf/public/jlreq/uzjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/uzjlreqg.vf + RELOC/fonts/vf/public/jlreq/zjlreq-v.vf + RELOC/fonts/vf/public/jlreq/zjlreq.vf + RELOC/fonts/vf/public/jlreq/zjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/zjlreqg.vf + RELOC/tex/latex/jlreq/jlreq-helpers.sty + RELOC/tex/latex/jlreq/jlreq-trimmarks.sty + RELOC/tex/latex/jlreq/jlreq.cls + RELOC/tex/luatex/jlreq/jfm-jlreq-jidori.lua + RELOC/tex/luatex/jlreq/jfm-jlreq.lua + RELOC/tex/luatex/jlreq/jfm-jlreqv-jidori.lua + RELOC/tex/luatex/jlreq/jfm-jlreqv.lua +catalogue-contact-home https://github.com/abenori/jlreq +catalogue-ctan /language/japanese/jlreq +catalogue-license bsd2 +catalogue-topics japanese font-cjk class std-conform + +name jlreq-deluxe +category Package +revision 58329 +shortdesc Multi-weight Japanese font support for the jlreq class +relocated 1 +longdesc This package provides multi-weight Japanese font support for +longdesc the jlreq class. +containersize 21492 +containerchecksum b7b3e3c5a9de849ea79cf84d6fde1d9594ebb3c5b8887ef682c2973227f7d60a159a3f90b05797c9bc59eb030bef4853415e02a98ccccc2f914b29c1e619b27e +doccontainersize 66008 +doccontainerchecksum 956be7405e5aeeb7c56e6db88465950865376e14a39caaee61be9b77fbd859f509dc9dc522e756382a0276dedac85a23cd43c2f7034d1d8482bce5b305eae75d +docfiles size=20 + RELOC/doc/platex/jlreq-deluxe/LICENSE + RELOC/doc/platex/jlreq-deluxe/README-ja.md details="Readme (Japanese)" + RELOC/doc/platex/jlreq-deluxe/README.md details="Readme (English)" + RELOC/doc/platex/jlreq-deluxe/jlreq-deluxe.pdf details="Package documentation" language="ja" + RELOC/doc/platex/jlreq-deluxe/jlreq-deluxe.tex +runfiles size=1177 + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--rubyminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--uprubyminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--rubyminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--uprubyminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--rubyminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--uprubyminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--rubyminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminbn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminbn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminln-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminln-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminrn-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminrn-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubygothb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubygothb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubygotheb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubygotheb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubygothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubygothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubymgothr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubymgothr-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubyminb-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubyminb-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubyminl-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubyminl-v.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubyminr-h.tfm + RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--uprubyminr-v.tfm + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--rubyminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--uprubyminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--rubyminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--uprubyminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--rubyminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/jlreq--uprubyminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--rubyminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothebn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothebn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminbn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminbn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminln-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminln-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminrn-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminrn-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubygothb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubygothb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubygotheb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubygotheb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubygothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubygothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubymgothr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubymgothr-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubyminb-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubyminb-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubyminl-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubyminl-v.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubyminr-h.vf + RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--uprubyminr-v.vf + RELOC/tex/platex/jlreq-deluxe/jlreq-deluxe.sty +catalogue-also jlreq +catalogue-contact-repository https://github.com/h20y6m/jlreq-deluxe +catalogue-ctan /language/japanese/jlreq-deluxe +catalogue-license mit +catalogue-topics font-cjk font-use japanese expl3 +catalogue-version 0.4.0 + +name jmb +category Package +revision 52718 +shortdesc BibTeX style for the Journal of Theoretical Biology +relocated 1 +longdesc This BibTeX bibliography style is for the Journal of Molecular +longdesc Biology and Journal of Theoretical Biology; the accompanying +longdesc LaTeX (2.09) package is a close relative of apalike.sty in the +longdesc BibTeX distribution; it features author-date references. The +longdesc bibliography style has control over whether to print reference +longdesc titles; if your database contains an article with the cite key +longdesc "TitlesOn", and you invoke it by \nocite{TitlesOn}, titles will +longdesc be printed; otherwise titles will not be printed. +containersize 10072 +containerchecksum 6317f3437416ead3fa1224432bd2cae247614e614f888ea074cfc442b8c7c3832d0243988269a1d772172008fa377b142288f9644bb1e2954c3758c1b75f78a7 +runfiles size=11 + RELOC/bibtex/bst/jmb/jmb.bst + RELOC/tex/latex/jmb/jmb.sty +catalogue-ctan /biblio/bibtex/contrib/jmb +catalogue-license other-free +catalogue-topics molbio bibtex-sty +catalogue-version 1.21 + +name jmlr +category Package +revision 56395 +shortdesc Class files for the Journal of Machine Learning Research +relocated 1 +longdesc The jmlr bundle provides a class for authors (jmlr) and a class +longdesc for production editors (jmlrbook). The jmlrbook class can be +longdesc used to combine articles written using the jmlr class into a +longdesc book. The class uses the combine class and the hyperref package +longdesc to produce either a colour hyperlinked book for on-line viewing +longdesc or a greyscale nonhyperlinked book for printing. Production +longdesc editors can use makejmlrbookgui to help build the proceedings +longdesc from the articles. +containersize 24348 +containerchecksum 950f1d737ccf93c12d497ae04192f63c861a3a03279e69aa54c28ab0dbf4299dca3339ca19933c96f1c5f42dd9e2d860dda9c201d2f89b6aadbf75d73c16a878 +doccontainersize 1740652 +doccontainerchecksum c86b3f5c1e1522009b2a31fa532c98a754354ef744be12ddaa24f1ae0c3c7f36522d1ff886aefb220796375541949a55ddefe0a085fdc0b607383a183f70234f +docfiles size=534 + RELOC/doc/latex/jmlr/CHANGES + RELOC/doc/latex/jmlr/INSTALL + RELOC/doc/latex/jmlr/README details="Readme" + RELOC/doc/latex/jmlr/jmlr.pdf details="Package documentation" + RELOC/doc/latex/jmlr/sample-books/bookLogo-gray.png + RELOC/doc/latex/jmlr/sample-books/bookLogo.png + RELOC/doc/latex/jmlr/sample-books/jmlrbook-sample.pdf + RELOC/doc/latex/jmlr/sample-books/jmlrbook-sample.tex + RELOC/doc/latex/jmlr/sample-books/paper1/paper1.bib + RELOC/doc/latex/jmlr/sample-books/paper1/paper1.tex + RELOC/doc/latex/jmlr/sample-books/paper2/paper2.bib + RELOC/doc/latex/jmlr/sample-books/paper2/paper2.tex + RELOC/doc/latex/jmlr/sample-books/paper3/paper3.bib + RELOC/doc/latex/jmlr/sample-books/paper3/paper3.tex + RELOC/doc/latex/jmlr/sample-books/paper4/paper4.bib + RELOC/doc/latex/jmlr/sample-books/paper4/paper4.tex + RELOC/doc/latex/jmlr/sample-books/proceedings-sample.pdf + RELOC/doc/latex/jmlr/sample-books/proceedings-sample.tex + RELOC/doc/latex/jmlr/sample-papers/images/circle-gray.png + RELOC/doc/latex/jmlr/sample-papers/images/circle.jpg + RELOC/doc/latex/jmlr/sample-papers/images/nodes-gray.png + RELOC/doc/latex/jmlr/sample-papers/images/nodes.png + RELOC/doc/latex/jmlr/sample-papers/images/square-gray.png + RELOC/doc/latex/jmlr/sample-papers/images/square.png + RELOC/doc/latex/jmlr/sample-papers/images/teximage.tex + RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.bib + RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.pdf + RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.tex + RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.pdf + RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.tex +srccontainersize 41916 +srccontainerchecksum 163df127f2f448d0ae23144d91fc7aa28c423f3d2ffc63d7cd34d6532b734721215e5f3f31cb3f6662544d3609da83a9a2fd3970a8169841b6cdf129a58a575f +srcfiles size=54 + RELOC/source/latex/jmlr/jmlr.dtx + RELOC/source/latex/jmlr/jmlr.ins +runfiles size=30 + RELOC/scripts/jmlr/makejmlrbook + RELOC/tex/latex/jmlr/jmlr.cls + RELOC/tex/latex/jmlr/jmlrbook.cls + RELOC/tex/latex/jmlr/jmlrutils.sty +catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=jmlr +catalogue-ctan /macros/latex/contrib/jmlr +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.28 + +name jmn +category Package +revision 45751 +shortdesc special fonts for ConTeXt +relocated 1 +containersize 40048 +containerchecksum 2e250c3f115911c56f9b8d46d358fdef289c624a5b24c9b4213bbf7818bf42c7b778df55d4bf181bce115b388915cedc90ef7cfa99ee6ad8dd621e7853fc7c29 +runfiles size=22 + RELOC/fonts/afm/jmn/hans/hans-sh.afm + RELOC/fonts/afm/jmn/hans/hans.afm + RELOC/fonts/enc/dvips/jmn/hans.enc + RELOC/fonts/map/dvips/jmn/hans.map + RELOC/fonts/tfm/jmn/hans/hans-sh.tfm + RELOC/fonts/tfm/jmn/hans/hans.tfm + RELOC/fonts/type1/jmn/hans/hans-sh.pfb + RELOC/fonts/type1/jmn/hans/hans-sh.pfm + RELOC/fonts/type1/jmn/hans/hans.pfb + RELOC/fonts/type1/jmn/hans/hans.pfm + +name jneurosci +category Package +revision 17346 +shortdesc BibTeX style for the Journal of Neuroscience +relocated 1 +longdesc This is a slightly modified version of the namedplus style, +longdesc which fully conforms with the Journal of Neuroscience citation +longdesc style. It should be characterised as an author-date citation +longdesc style; a BibTeX style and a LaTeX package are provided. +containersize 6560 +containerchecksum 1ea3d11a66045784c2d1abe0290d95482c5a2a65a21963a58d9626872b25bb0d20f8d1c3c3b8173bf7f63ed71f7c33e13c8f6dab0918585b36d72fa37dc35714 +doccontainersize 237620 +doccontainerchecksum 2ed6a342b376ced405a75da39fff51d03e9fffa89341522555d2edf8d8eca701013a95f09f01cbf642d3ed1ba93a1aecc89682986ae5c94d784f3c857eaaadb1 +docfiles size=62 + RELOC/doc/latex/jneurosci/README details="Readme" + RELOC/doc/latex/jneurosci/jneurosci.pdf details="Package documentation" + RELOC/doc/latex/jneurosci/jneurosci.tex +runfiles size=8 + RELOC/bibtex/bst/jneurosci/jneurosci.bst + RELOC/tex/latex/jneurosci/jneurosci.sty +catalogue-ctan /biblio/bibtex/contrib/jneurosci +catalogue-license lppl +catalogue-topics neuro bibtex-sty +catalogue-version 1.00 + +name jnuexam +category Package +revision 56867 +shortdesc Exam class for Jinan University +relocated 1 +longdesc The package provides an exam class for Jinan University +longdesc (China). +containersize 7892 +containerchecksum 36aa8858e22affb522332de4ef06a2760c5f4ecf24858fcad34655e0062cb319dc27a34ae1648fc89ebbdb2d3d79f8630d4d3663956022ec345a31cad58a5d1a +doccontainersize 594576 +doccontainerchecksum e80d4db8fd0f094589ab88ef2afb01f17be611ef07b0b6fe827e8940227c5c47fce7841881dad4ce2805c0098f41eb27da5491cd50825cc70b5aa2c5bf4b1926 +docfiles size=224 + RELOC/doc/latex/jnuexam/README details="Readme" + RELOC/doc/latex/jnuexam/exam-a-a3input.pdf + RELOC/doc/latex/jnuexam/exam-a-a3input.tex + RELOC/doc/latex/jnuexam/exam-a-a3split.pdf + RELOC/doc/latex/jnuexam/exam-a-a3split.tex + RELOC/doc/latex/jnuexam/exam-a-empty.pdf + RELOC/doc/latex/jnuexam/exam-a-empty.tex + RELOC/doc/latex/jnuexam/exam-a.pdf + RELOC/doc/latex/jnuexam/exam-a.tex + RELOC/doc/latex/jnuexam/exam-b-a3input.pdf + RELOC/doc/latex/jnuexam/exam-b-a3input.tex + RELOC/doc/latex/jnuexam/exam-b-a3split.pdf + RELOC/doc/latex/jnuexam/exam-b-a3split.tex + RELOC/doc/latex/jnuexam/exam-b-empty.pdf + RELOC/doc/latex/jnuexam/exam-b-empty.tex + RELOC/doc/latex/jnuexam/exam-b.pdf + RELOC/doc/latex/jnuexam/exam-b.tex + RELOC/doc/latex/jnuexam/jnuexam.pdf details="Package documentation" language="zh" + RELOC/doc/latex/jnuexam/jnuexam.tex +runfiles size=7 + RELOC/tex/latex/jnuexam/jnuexam.cls +catalogue-contact-home https://lvjr.bitbucket.io/jnuexam.html +catalogue-ctan /macros/latex/contrib/jnuexam +catalogue-license lppl1.3 +catalogue-topics exam class chinese +catalogue-version 1.0 + +name josefin +category Package +revision 57152 +shortdesc Josefin fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Josefin Sans family of fonts, designed by +longdesc Santiago Orozco of the Typemade foundry in Monterey, Mexico. +longdesc Josefin Sans is available in seven weights, with corresponding +longdesc italics. +execute addMap josefin.map +containersize 1097116 +containerchecksum 4f0a7e6095a676878617bf05b1680c5482b3f5f43d00abf2460bfe1d09568721afc2808081001898bebbc8e16e54f9faab0a0c9c41b0d6aa0bc43f7a829f1b16 +doccontainersize 173112 +doccontainerchecksum 2f59d8fbe271d00673bb78592d4f3a9ba70a5004236548dcf49182c4efc458b5973d1e01a3f97bc3e6556d8b70d4e20f52d7f268dd7ed2b875fc1656d6781506 +docfiles size=46 + RELOC/doc/fonts/josefin/OFL.txt + RELOC/doc/fonts/josefin/README details="Readme" + RELOC/doc/fonts/josefin/josefin-samples.pdf details="Font samples" + RELOC/doc/fonts/josefin/josefin-samples.tex +runfiles size=649 + RELOC/fonts/enc/dvips/josefin/jfn_2p3jiy.enc + RELOC/fonts/enc/dvips/josefin/jfn_adz5lu.enc + RELOC/fonts/enc/dvips/josefin/jfn_d2anrk.enc + RELOC/fonts/enc/dvips/josefin/jfn_ehgfhq.enc + RELOC/fonts/enc/dvips/josefin/jfn_hf4msv.enc + RELOC/fonts/enc/dvips/josefin/jfn_ti63qo.enc + RELOC/fonts/enc/dvips/josefin/jfn_umrhwx.enc + RELOC/fonts/enc/dvips/josefin/jfn_w4rwtq.enc + RELOC/fonts/map/dvips/josefin/josefin.map + RELOC/fonts/tfm/public/josefin/JosefinSans-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Light-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/josefin/JosefinSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/truetype/public/josefin/JosefinSans-Bold.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-BoldItalic.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-ExtraLight.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-ExtraLightItalic.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-Italic.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-Light.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-LightItalic.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-Medium.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-MediumItalic.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-Regular.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-SemiBold.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-SemiBoldItalic.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-Thin.ttf + RELOC/fonts/truetype/public/josefin/JosefinSans-ThinItalic.ttf + RELOC/fonts/type1/public/josefin/JosefinSans-Bold.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-BoldItalic.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-ExtraLight.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-ExtraLightItalic.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-Italic.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-Light.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-LightItalic.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-Medium.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-MediumItalic.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-Regular.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-SemiBold.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-SemiBoldItalic.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-Thin.pfb + RELOC/fonts/type1/public/josefin/JosefinSans-ThinItalic.pfb + RELOC/fonts/vf/public/josefin/JosefinSans-Bold-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Bold-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Bold-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Italic-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Italic-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Italic-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Light-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Light-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Light-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Medium-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Medium-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Medium-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Regular-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Regular-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Regular-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Thin-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Thin-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-Thin-lf-ts1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/josefin/JosefinSans-ThinItalic-lf-ts1.vf + RELOC/tex/latex/josefin/LY1JosefinSans-LF.fd + RELOC/tex/latex/josefin/OT1JosefinSans-LF.fd + RELOC/tex/latex/josefin/T1JosefinSans-LF.fd + RELOC/tex/latex/josefin/TS1JosefinSans-LF.fd + RELOC/tex/latex/josefin/josefin.sty +catalogue-contact-development https://github.com/googlefonts/josefinsans +catalogue-ctan /fonts/josefin +catalogue-license ofl lppl +catalogue-topics font font-body font-sans font-mono font-otf font-type1 font-proportional font-supp font-t1enc + +name jpsj +category Package +revision 15878 +shortdesc Document Class for Journal of the Physical Society of Japan +relocated 1 +containersize 7272 +containerchecksum 70b0e83af5b828e6a783d888adcacc504342e2cbe255d88aaa2fc3cdda629fca8e2fec9c98c73c0673d98d396727025b0a622905c3403c2b568d67597218398e +doccontainersize 150368 +doccontainerchecksum 220c28ed6312c046dcb2973e2e22fd47c683460578dbf952d12d52da0aa4c21a5dc5e8195b78d743c093e05772ae1e00a45d3c221e805a452420c435f23b6a38 +docfiles size=61 + RELOC/doc/latex/jpsj/dummy.eps + RELOC/doc/latex/jpsj/injpsj2.pdf details="Instructions for authors" + RELOC/doc/latex/jpsj/injpsj2.tex + RELOC/doc/latex/jpsj/template.tex +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-license lppl +catalogue-topics physics journalpub +catalogue-version 1.2.2 + +name js-misc +category Package +revision 16211 +shortdesc Miscellaneous macros from Joachim Schrod +relocated 1 +longdesc A bunch of packages, including: idverb.tex, for 'short +longdesc verbatim'; xfig.tex, for including xfig/transfig output in a +longdesc TeX document; and cassette.tex for setting cassette labels. +containersize 13868 +containerchecksum 6dd7920204cc66ff28c78f54bd6432a71d77ae2f4463bd997d2a4170465053eb86d61bc35d8da66377b47cb1eba88c6ed0918142910a5bdd4e44aec41d3ec4d0 +doccontainersize 18444 +doccontainerchecksum 507cc8c04589dfa7b4d36bf32e4c1d18af42b90df58fee128c0ad37284a87aa1adad32623591d0e8ca880c53a1f583b0bd8054487e231bb2a58ed06d1bf6c6e3 +docfiles size=26 + RELOC/doc/plain/js-misc/History + RELOC/doc/plain/js-misc/INSTALL + RELOC/doc/plain/js-misc/Imakefile + RELOC/doc/plain/js-misc/License + RELOC/doc/plain/js-misc/Makefile + RELOC/doc/plain/js-misc/README details="Readme" + RELOC/doc/plain/js-misc/TODO + RELOC/doc/plain/js-misc/deutsch.doc + RELOC/doc/plain/js-misc/deutsch.tex + RELOC/doc/plain/js-misc/idverb.doc + RELOC/doc/plain/js-misc/names.sty + RELOC/doc/plain/js-misc/xfig/text-2.1-doc.tex + RELOC/doc/plain/js-misc/xfig/text-2.1.fig + RELOC/doc/plain/js-misc/xfig/text-2.1.latex + RELOC/doc/plain/js-misc/xfig/text-3.1-doc.tex + RELOC/doc/plain/js-misc/xfig/text-3.1.latex +runfiles size=13 + RELOC/tex/plain/js-misc/cassette.tex + RELOC/tex/plain/js-misc/idverb.tex + RELOC/tex/plain/js-misc/js-misc.tex + RELOC/tex/plain/js-misc/schild.tex + RELOC/tex/plain/js-misc/sperr.tex + RELOC/tex/plain/js-misc/xfig.tex +catalogue-ctan /macros/plain/contrib/js-misc +catalogue-license pd +catalogue-topics collection + +name jsclasses +category Package +revision 56608 +shortdesc Classes tailored for use with Japanese +relocated 1 +longdesc Classes jsarticle and jsbook are provided, together with +longdesc packages okumacro and okuverb. These classes are designed to +longdesc work under ASCII Corporation's Japanese TeX system ptex. +containersize 21760 +containerchecksum 18c5cd1e63e4fedbf1ec0faf069d40d34dd72ca18af0d634eab16b5c7ce92139cf4892492782f816c0c0deab4706ee1c5a83d052cd122f7d5df35f1d5d2ff4dc +doccontainersize 782112 +doccontainerchecksum f9d477ca10dfa4fe83e2f5a981f7584555e06968417c542cd09e223a0ef30074540890b3f5b28de12b9d77e9a45e3bae19590cfec31d3232528db1d854514083 +docfiles size=199 + RELOC/doc/platex/jsclasses/LICENSE + RELOC/doc/platex/jsclasses/README.md details="Readme" + RELOC/doc/platex/jsclasses/jsclasses.pdf details="Documentation of the classes (Japanese)" language="ja" + RELOC/doc/platex/jsclasses/jslogo.pdf + RELOC/doc/platex/jsclasses/jsverb.pdf details="Jsverb package documentation (Japanese)" language="ja" + RELOC/doc/platex/jsclasses/okumacro.pdf details="Okumacro package documentation (Japanese)" language="ja" + RELOC/doc/platex/jsclasses/okuverb.pdf details="Okuverb package documentation (Japanese)" language="ja" +srccontainersize 56528 +srccontainerchecksum c4b4d11b3684122e47cb3b1ef59001e0163297768743b570f4c64c3eb0ab95f41a6660b44f6048acf4e9d1f4b949eae9883ee97cadec53798d363f3630cc4fca +srcfiles size=73 + RELOC/source/platex/jsclasses/Makefile + RELOC/source/platex/jsclasses/jsclasses.dtx + RELOC/source/platex/jsclasses/jsclasses.ins + RELOC/source/platex/jsclasses/jslogo.dtx + RELOC/source/platex/jsclasses/jslogo.ins + RELOC/source/platex/jsclasses/jsverb.dtx + RELOC/source/platex/jsclasses/jsverb.ins + RELOC/source/platex/jsclasses/okumacro.dtx + RELOC/source/platex/jsclasses/okumacro.ins + RELOC/source/platex/jsclasses/okuverb.dtx + RELOC/source/platex/jsclasses/okuverb.ins +runfiles size=85 + RELOC/tex/platex/jsclasses/jsarticle.cls + RELOC/tex/platex/jsclasses/jsbook.cls + RELOC/tex/platex/jsclasses/jslogo.sty + RELOC/tex/platex/jsclasses/jspf.cls + RELOC/tex/platex/jsclasses/jsreport.cls + RELOC/tex/platex/jsclasses/jsverb.sty + RELOC/tex/platex/jsclasses/kiyou.cls + RELOC/tex/platex/jsclasses/minijs.sty + RELOC/tex/platex/jsclasses/okumacro.sty + RELOC/tex/platex/jsclasses/okuverb.sty +catalogue-contact-repository https://github.com/texjporg/jsclasses +catalogue-ctan /macros/latex/contrib/jsclasses +catalogue-license bsd +catalogue-topics japanese class + +name jslectureplanner +category Package +revision 57095 +shortdesc Creation and management of university course material +relocated 1 +longdesc The jslectureplanner package facilitates the generation and +longdesc management of university course material. It provides an +longdesc interface to set up and access centralized course data that can +longdesc be reused in all course documents. Furthermore, the package is +longdesc able to calculate the session dates of a whole semester and +longdesc generate course programs, if the course is held weekly and the +longdesc date of the first lecture is specified. Moreover, the package +longdesc can be used to generate a sectioned course bibliography via +longdesc BibLaTeX. The bundle also includes a package jsmembertable.sty +longdesc that helps in generating course member and presence lists. +containersize 12972 +containerchecksum 022c878b95fbca48c7cd3464a12d5af8b29b26c2fe46f3c4dc2f27e6c3b3660f78f3baa7b9d289c3444fecd7186f6d6cb18d8c6c94b9ff27842f6c9018e9762e +doccontainersize 1203772 +doccontainerchecksum 1af4d1a75b6f5f056f0426f00c8c26493638e8efbdd5ff7b746f45cf4ca3c6648d97b3832885d97b71124cba7e57eb22fc2018619e5a33c66ece10ba20528a2f +docfiles size=410 + RELOC/doc/latex/jslectureplanner/README details="Readme" + RELOC/doc/latex/jslectureplanner/examples/English/lecpresbody-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lecturebib-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lecturebib-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lecturehandout-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lecturehandout-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lectureplanner-examples.bib + RELOC/doc/latex/jslectureplanner/examples/English/lecturepresentation-english.pdf details="Example of use" + RELOC/doc/latex/jslectureplanner/examples/English/lecturepresentation-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lectureprogram-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lectureprogram-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lecturescript-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lecturescript-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/membertable-blank-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/membertable-blank-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/membertable-filled-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/membertable-filled-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/metadata.tex + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-blank-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-blank-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-filled-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-filled-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/presentation-list-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/presentation-list-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/students.csv + RELOC/doc/latex/jslectureplanner/examples/German/lecpresbody.tex + RELOC/doc/latex/jslectureplanner/examples/German/lecturebib.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturebib.tex + RELOC/doc/latex/jslectureplanner/examples/German/lecturehandout.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturehandout.tex + RELOC/doc/latex/jslectureplanner/examples/German/lectureplanner-examples.bib + RELOC/doc/latex/jslectureplanner/examples/German/lecturepresentation.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturepresentation.tex + RELOC/doc/latex/jslectureplanner/examples/German/lectureprogram.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lectureprogram.tex + RELOC/doc/latex/jslectureplanner/examples/German/lecturescript.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturescript.tex + RELOC/doc/latex/jslectureplanner/examples/German/membertable-blank.pdf + RELOC/doc/latex/jslectureplanner/examples/German/membertable-blank.tex + RELOC/doc/latex/jslectureplanner/examples/German/membertable-filled.pdf + RELOC/doc/latex/jslectureplanner/examples/German/membertable-filled.tex + RELOC/doc/latex/jslectureplanner/examples/German/metadata.tex + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-blank.pdf + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-blank.tex + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-filled.pdf + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-filled.tex + RELOC/doc/latex/jslectureplanner/examples/German/presentation-list.pdf + RELOC/doc/latex/jslectureplanner/examples/German/presentation-list.tex + RELOC/doc/latex/jslectureplanner/examples/German/students.csv + RELOC/doc/latex/jslectureplanner/jslectureplanner.pdf details="Package documentation" + RELOC/doc/latex/jslectureplanner/jslectureplanner.tex +runfiles size=22 + RELOC/tex/latex/jslectureplanner/cologne.lps + RELOC/tex/latex/jslectureplanner/english.lps + RELOC/tex/latex/jslectureplanner/german-default.lps + RELOC/tex/latex/jslectureplanner/jslectureplanner.sty + RELOC/tex/latex/jslectureplanner/jsmembertable.sty +catalogue-contact-repository https://github.com/jspitz/jslectureplanner +catalogue-ctan /macros/latex/contrib/jslectureplanner +catalogue-license lppl1.3 +catalogue-topics teaching planning +catalogue-version 1.12 + +name jumplines +category Package +revision 37553 +shortdesc Articles with teasers and continuation later on +relocated 1 +longdesc Jumplines is a package for typesetting (newspaper) articles +longdesc that show a teaser (some few lines of text/content) and are +longdesc continued at a later place, with optional hyperlinking and a +longdesc list of articles. It requires lualatex for colour support in +longdesc split boxes. +containersize 4036 +containerchecksum e09ee044fe7d5692fe4f1098406e33481ebdf81698168223235e735637499053c66f278a1f7e27585aaa1a586ccf85b4f5afdccfa3ac35950475f56e46324103 +doccontainersize 254168 +doccontainerchecksum c7f56f012d6eca83e54610aabf1530889c01c1b28e9b790b220726bff860504a3e46ad4fd8d88ef50d3fff17507710bc168fd2d5861e9f2cdae69cff6f95ae71 +docfiles size=67 + RELOC/doc/latex/jumplines/README details="Readme" + RELOC/doc/latex/jumplines/jumplines_doc.pdf details="Package documentation" + RELOC/doc/latex/jumplines/jumplines_doc.tex + RELOC/doc/latex/jumplines/jumplines_example.pdf details="Package example" + RELOC/doc/latex/jumplines/jumplines_example.tex +runfiles size=5 + RELOC/tex/latex/jumplines/jumplines.sty +catalogue-ctan /macros/latex/contrib/jumplines +catalogue-license lppl1.3 +catalogue-topics luatex journalpub +catalogue-version 0.2 + +name junicode +category Package +revision 53954 +shortdesc A TrueType font for mediaevalists +relocated 1 +longdesc Junicode is a TrueType font with many OpenType features for +longdesc antiquarians (especially medievalists) based on typefaces used +longdesc by the Oxford Press in the late 17th and early 18th centuries. +longdesc It works well with Xe(La)TeX. +execute addMap Junicode.map +containersize 937448 +containerchecksum a0e447471da270a19659d19bb4e18699eda7447ef65b5c5abea1662ff6ca631ccf1a4c0efbb192208a835d8acabfeb51aba3c576578c7e40c13d6d28e727cbd4 +doccontainersize 5756 +doccontainerchecksum f692c94008d88ed2b0b0d91678072cee6cd379e5a3fe58831a69393cb2de3058c0e7320409385a2112b41c9369255ddbc6919520a222adccb38223b5b2576790 +docfiles size=8 + RELOC/doc/fonts/junicode/COPYING + RELOC/doc/fonts/junicode/ChangeLog + RELOC/doc/fonts/junicode/README details="Readme" + RELOC/doc/fonts/junicode/README.TEXLIVE + RELOC/doc/fonts/junicode/fleurons + RELOC/doc/fonts/junicode/replacements +runfiles size=1104 + RELOC/fonts/enc/dvips/junicode/a_2bpv3m.enc + RELOC/fonts/enc/dvips/junicode/a_2mm3c2.enc + RELOC/fonts/enc/dvips/junicode/a_2p6ois.enc + RELOC/fonts/enc/dvips/junicode/a_2sfipb.enc + RELOC/fonts/enc/dvips/junicode/a_3lniep.enc + RELOC/fonts/enc/dvips/junicode/a_3oiwi3.enc + RELOC/fonts/enc/dvips/junicode/a_3volwp.enc + RELOC/fonts/enc/dvips/junicode/a_3xz3h2.enc + RELOC/fonts/enc/dvips/junicode/a_4n6crv.enc + RELOC/fonts/enc/dvips/junicode/a_4wispq.enc + RELOC/fonts/enc/dvips/junicode/a_4ycye2.enc + RELOC/fonts/enc/dvips/junicode/a_5swlfy.enc + RELOC/fonts/enc/dvips/junicode/a_6u5uu4.enc + RELOC/fonts/enc/dvips/junicode/a_7ds3wq.enc + RELOC/fonts/enc/dvips/junicode/a_b5lvdl.enc + RELOC/fonts/enc/dvips/junicode/a_b5zcir.enc + RELOC/fonts/enc/dvips/junicode/a_bt27yq.enc + RELOC/fonts/enc/dvips/junicode/a_buzzjq.enc + RELOC/fonts/enc/dvips/junicode/a_bxn3t2.enc + RELOC/fonts/enc/dvips/junicode/a_c3r5id.enc + RELOC/fonts/enc/dvips/junicode/a_ciujvo.enc + RELOC/fonts/enc/dvips/junicode/a_czanfn.enc + RELOC/fonts/enc/dvips/junicode/a_daqx6o.enc + RELOC/fonts/enc/dvips/junicode/a_ddgo45.enc + RELOC/fonts/enc/dvips/junicode/a_dh7eks.enc + RELOC/fonts/enc/dvips/junicode/a_dsxmxh.enc + RELOC/fonts/enc/dvips/junicode/a_e224kq.enc + RELOC/fonts/enc/dvips/junicode/a_e24h5d.enc + RELOC/fonts/enc/dvips/junicode/a_eegkrc.enc + RELOC/fonts/enc/dvips/junicode/a_egdeql.enc + RELOC/fonts/enc/dvips/junicode/a_equvmx.enc + RELOC/fonts/enc/dvips/junicode/a_ewwy5y.enc + RELOC/fonts/enc/dvips/junicode/a_eyvcqg.enc + RELOC/fonts/enc/dvips/junicode/a_fb4xbs.enc + RELOC/fonts/enc/dvips/junicode/a_fsg22v.enc + RELOC/fonts/enc/dvips/junicode/a_ghwqhd.enc + RELOC/fonts/enc/dvips/junicode/a_gus7sm.enc + RELOC/fonts/enc/dvips/junicode/a_h747e4.enc + RELOC/fonts/enc/dvips/junicode/a_hlkg6v.enc + RELOC/fonts/enc/dvips/junicode/a_hzunuz.enc + RELOC/fonts/enc/dvips/junicode/a_iahbda.enc + RELOC/fonts/enc/dvips/junicode/a_iapetj.enc + RELOC/fonts/enc/dvips/junicode/a_iqg3f5.enc + RELOC/fonts/enc/dvips/junicode/a_jddr6t.enc + RELOC/fonts/enc/dvips/junicode/a_jg27fn.enc + RELOC/fonts/enc/dvips/junicode/a_jjpsim.enc + RELOC/fonts/enc/dvips/junicode/a_jtxgor.enc + RELOC/fonts/enc/dvips/junicode/a_l3mb37.enc + RELOC/fonts/enc/dvips/junicode/a_leirnf.enc + RELOC/fonts/enc/dvips/junicode/a_lzmc63.enc + RELOC/fonts/enc/dvips/junicode/a_m5vvpo.enc + RELOC/fonts/enc/dvips/junicode/a_msm5ja.enc + RELOC/fonts/enc/dvips/junicode/a_myi6mz.enc + RELOC/fonts/enc/dvips/junicode/a_n574it.enc + RELOC/fonts/enc/dvips/junicode/a_n5rwri.enc + RELOC/fonts/enc/dvips/junicode/a_ncdqoi.enc + RELOC/fonts/enc/dvips/junicode/a_nfgurc.enc + RELOC/fonts/enc/dvips/junicode/a_ng574l.enc + RELOC/fonts/enc/dvips/junicode/a_nxovao.enc + RELOC/fonts/enc/dvips/junicode/a_ocfo6w.enc + RELOC/fonts/enc/dvips/junicode/a_ofg65e.enc + RELOC/fonts/enc/dvips/junicode/a_ovuqp7.enc + RELOC/fonts/enc/dvips/junicode/a_oyqcvc.enc + RELOC/fonts/enc/dvips/junicode/a_oz2voy.enc + RELOC/fonts/enc/dvips/junicode/a_p42lhv.enc + RELOC/fonts/enc/dvips/junicode/a_pjlm4h.enc + RELOC/fonts/enc/dvips/junicode/a_pyi5bn.enc + RELOC/fonts/enc/dvips/junicode/a_q5oomy.enc + RELOC/fonts/enc/dvips/junicode/a_qojq43.enc + RELOC/fonts/enc/dvips/junicode/a_qrnvns.enc + RELOC/fonts/enc/dvips/junicode/a_r5vqsy.enc + RELOC/fonts/enc/dvips/junicode/a_re7epd.enc + RELOC/fonts/enc/dvips/junicode/a_reswd7.enc + RELOC/fonts/enc/dvips/junicode/a_riy3vj.enc + RELOC/fonts/enc/dvips/junicode/a_rld3th.enc + RELOC/fonts/enc/dvips/junicode/a_rq7kaz.enc + RELOC/fonts/enc/dvips/junicode/a_rufiuz.enc + RELOC/fonts/enc/dvips/junicode/a_senygh.enc + RELOC/fonts/enc/dvips/junicode/a_skkj5j.enc + RELOC/fonts/enc/dvips/junicode/a_tgx5t5.enc + RELOC/fonts/enc/dvips/junicode/a_ud6k5n.enc + RELOC/fonts/enc/dvips/junicode/a_ue6kia.enc + RELOC/fonts/enc/dvips/junicode/a_uqrabr.enc + RELOC/fonts/enc/dvips/junicode/a_uteiqb.enc + RELOC/fonts/enc/dvips/junicode/a_uui4bo.enc + RELOC/fonts/enc/dvips/junicode/a_vd2fo2.enc + RELOC/fonts/enc/dvips/junicode/a_w3oimd.enc + RELOC/fonts/enc/dvips/junicode/a_wqhzsa.enc + RELOC/fonts/enc/dvips/junicode/a_x5gcu6.enc + RELOC/fonts/enc/dvips/junicode/a_xafpoq.enc + RELOC/fonts/enc/dvips/junicode/a_xzdxuw.enc + RELOC/fonts/enc/dvips/junicode/a_yabl64.enc + RELOC/fonts/enc/dvips/junicode/a_yt7kgf.enc + RELOC/fonts/enc/dvips/junicode/a_z2b6ll.enc + RELOC/fonts/enc/dvips/junicode/a_zbjpie.enc + RELOC/fonts/enc/dvips/junicode/a_zw22co.enc + RELOC/fonts/enc/dvips/junicode/a_zyf2d6.enc + RELOC/fonts/map/dvips/junicode/Junicode.map + RELOC/fonts/tfm/public/junicode/Junicode-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-sup-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-sup-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-sup-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-sc-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tlf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-sc-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Bold-tosf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-sup-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-sup-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-sup-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tlf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-BoldItalic-tosf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-inf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-sup-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-sc-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tlf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-sc-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-Italic-tosf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-inf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-sup-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-sc-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tlf-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-sc-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-ot1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-swash-ts3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-t1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-t1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-t3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-t3.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-ts1.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-ts3--base.tfm + RELOC/fonts/tfm/public/junicode/Junicode-tosf-ts3.tfm + RELOC/fonts/truetype/public/junicode/FoulisGreek.ttf + RELOC/fonts/truetype/public/junicode/Junicode-Bold.ttf + RELOC/fonts/truetype/public/junicode/Junicode-BoldItalic.ttf + RELOC/fonts/truetype/public/junicode/Junicode-Italic.ttf + RELOC/fonts/truetype/public/junicode/Junicode.ttf + RELOC/fonts/vf/public/junicode/Junicode-Bold-sup-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-sup-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-sc-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-sc-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-sup-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-inf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-inf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-inf-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-sup-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-sup-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-sup-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-sc-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-sc-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-swash-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tlf-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-sc-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-sc-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-swash-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-Italic-tosf-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-inf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-inf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-inf-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-sup-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-sup-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-sup-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-sc-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-sc-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-sc-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-sc-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-sc-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-swash-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-tlf-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-sc-ly1.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-sc-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-sc-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-sc-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-sc-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-swash-ot1.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-swash-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-swash-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-swash-ts3.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-t1.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-t3.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-ts1.vf + RELOC/fonts/vf/public/junicode/Junicode-tosf-ts3.vf + RELOC/tex/latex/junicode/LY1Junicode-Inf.fd + RELOC/tex/latex/junicode/LY1Junicode-Sup.fd + RELOC/tex/latex/junicode/LY1Junicode-TLF.fd + RELOC/tex/latex/junicode/LY1Junicode-TOsF.fd + RELOC/tex/latex/junicode/OT1Junicode-Inf.fd + RELOC/tex/latex/junicode/OT1Junicode-Sup.fd + RELOC/tex/latex/junicode/OT1Junicode-TLF.fd + RELOC/tex/latex/junicode/OT1Junicode-TOsF.fd + RELOC/tex/latex/junicode/T1Junicode-Inf.fd + RELOC/tex/latex/junicode/T1Junicode-Sup.fd + RELOC/tex/latex/junicode/T1Junicode-TLF.fd + RELOC/tex/latex/junicode/T1Junicode-TOsF.fd + RELOC/tex/latex/junicode/T3Junicode-Inf.fd + RELOC/tex/latex/junicode/T3Junicode-Sup.fd + RELOC/tex/latex/junicode/T3Junicode-TLF.fd + RELOC/tex/latex/junicode/T3Junicode-TOsF.fd + RELOC/tex/latex/junicode/TS1Junicode-TLF.fd + RELOC/tex/latex/junicode/TS1Junicode-TOsF.fd + RELOC/tex/latex/junicode/TS3Junicode-Inf.fd + RELOC/tex/latex/junicode/TS3Junicode-Sup.fd + RELOC/tex/latex/junicode/TS3Junicode-TLF.fd + RELOC/tex/latex/junicode/TS3Junicode-TOsF.fd + RELOC/tex/latex/junicode/junicode.sty + RELOC/tex/latex/junicode/mt-Junicode.cfg +catalogue-ctan /fonts/junicode +catalogue-license ofl +catalogue-topics font font-ttf font-historical +catalogue-version 1.0.2 + +name jupynotex +category Package +revision 56715 +shortdesc Include whole or partial Jupyter notebooks in LaTeX documents +relocated 1 +longdesc This package provides a python3 script and a LaTeX .sty file +longdesc which can be used together to include Jupyter Notebooks (all of +longdesc them, or some specific cells) as part of a LaTeX document. It +longdesc will convert the Jupyter Notebook format to proper LaTeX so it +longdesc gets included seamlessly, supporting text, LaTeX, images, etc. +containersize 2516 +containerchecksum 3b5cca7c6b8b14eda35d52a6db5e7ac027c0b29ee08a7b8f58411886963d8dc69348752d6cc1f010d11b9216026b705fe4cc915d2c60cb3ee9f3950fcc6bb308 +doccontainersize 28936 +doccontainerchecksum 35b8d2dbcbecfb4e7b2bfb0ef39f2d076d6f4eec9189e89cee3bdfdbb6f57d5c1dcefbca3eeecf4842f7f94616030d2e73588074618b39e232f40104e371f3ea +docfiles size=22 + RELOC/doc/latex/jupynotex/LICENSE + RELOC/doc/latex/jupynotex/README.md details="Readme" + RELOC/doc/latex/jupynotex/example/build + RELOC/doc/latex/jupynotex/example/example.tex + RELOC/doc/latex/jupynotex/example/notebook.ipynb + RELOC/doc/latex/jupynotex/tests/run + RELOC/doc/latex/jupynotex/tests/test_cellparser.py + RELOC/doc/latex/jupynotex/tests/test_main.py + RELOC/doc/latex/jupynotex/tests/test_notebook.py +runfiles size=3 + RELOC/tex/latex/jupynotex/jupynotex.py + RELOC/tex/latex/jupynotex/jupynotex.sty +catalogue-contact-bugs https://github.com/facundobatista/jupynotex/issues +catalogue-contact-repository https://github.com/facundobatista/jupynotex/ +catalogue-ctan /macros/latex/contrib/jupynotex +catalogue-license apache2 +catalogue-topics foreign-import data-import ext-code +catalogue-version 0.1 + +name jura +category Package +revision 15878 +shortdesc A document class for German legal texts +relocated 1 +longdesc Implements the standard layout for German term papers in law +longdesc (one-and-half linespacing, 7 cm margins, etc.). Includes +longdesc alphanum that permits alphanumeric section numbering (e.g., A. +longdesc Introduction; III. International Law). +containersize 4016 +containerchecksum 08426bab6c0627e945d620a338c6081a8a21d80567d4a4b686617d0d57c99b1e148f5e5c3406a0337ee4ad61bd795dca353c28b0f33d397c5b47515969fa5951 +doccontainersize 216560 +doccontainerchecksum 4d19c663f73791712d9c24361d8e2a0c2faf25bdac15dcce48825f02468f6a798eff7e147f531368bcc8d7e2a1938202b5614e2434cd46866f359f8349564adc +docfiles size=64 + RELOC/doc/latex/jura/README details="README file" language="en" + RELOC/doc/latex/jura/jura.pdf details="Class documentation" language="de" + RELOC/doc/latex/jura/jura2html + RELOC/doc/latex/jura/juratest.ltx +srccontainersize 17700 +srccontainerchecksum 7c83d639330c1bd405b2439b5e85dd723f476f8ed5096c8085180f03d63ffdeb834639fc8a49a454d50df9f882f27dd42782741fed89f8bafe45b6222bd43239 +srcfiles size=15 + RELOC/source/latex/jura/jura.dtx + RELOC/source/latex/jura/jura.ins +runfiles size=4 + RELOC/tex/latex/jura/alphanum.sty + RELOC/tex/latex/jura/jura.cls +catalogue-also juramisc alnumsec jurabib +catalogue-ctan /macros/latex/contrib/jura +catalogue-license gpl +catalogue-topics dissertation legal german class +catalogue-version 4.3 + +name juraabbrev +category Package +revision 15878 +shortdesc Abbreviations for typesetting (German) juridical documents +relocated 1 +longdesc This package should be helpful for people working on (German) +longdesc law. It helps you to handle abbreviations and creates a list of +longdesc those (pre-defined) abbreviations that have actually been used +longdesc in the document +containersize 3248 +containerchecksum 4d6fd00247c6c915956679674dd029048cb96ac3bc97606c0a299bbaff24a4cbb9440d557eb2945151720265ecb27bf15c638c003e1039dafee56471dfa03945 +doccontainersize 447500 +doccontainerchecksum ede48ff67dacf107baf50be345b042a7b64c815442875281241b7de4c3be56ec40c969e40ec69669f31058bbbe9b27c51cae25938d93bec99a8c57dfb8e9cb75 +docfiles size=120 + RELOC/doc/latex/juraabbrev/README details="Readme" + RELOC/doc/latex/juraabbrev/abbrevtest.tex + RELOC/doc/latex/juraabbrev/juraabbrev.pdf details="Package documentation (German)" language="de" +srccontainersize 15500 +srccontainerchecksum 3a92a5231317d6f7d7b1afdf5df14997e17217e10b694ad97a9a2f3984b0afdfe5a3edeb4368108e4fb389a98a7f5414409e5fc7d319f4c78802cdc1a350d6a2 +srcfiles size=13 + RELOC/source/latex/juraabbrev/juraabbrev.dtx + RELOC/source/latex/juraabbrev/juraabbrev.ins +runfiles size=4 + RELOC/makeindex/juraabbrev/laws.ist + RELOC/tex/latex/juraabbrev/juraabbrev.4ht + RELOC/tex/latex/juraabbrev/juraabbrev.sty +catalogue-also jurarsp +catalogue-ctan /macros/latex/contrib/juraabbrev +catalogue-license gpl +catalogue-topics legal german + +name jurabib +category Package +revision 15878 +shortdesc Extended BibTeX citation support for the humanities and legal texts +relocated 1 +longdesc This package enables automated citation with BibTeX for legal +longdesc studies and the humanities. In addition, the package provides +longdesc commands for specifying editors in a commentary in a convenient +longdesc way. Simplified formatting of the citation as well as the +longdesc bibliography entry is also provided. It is possible to display +longdesc the (short) title of a work only if an authors is cited with +longdesc multiple works. Giving a full citation in the text, conforming +longdesc to the bibliography entry, is supported. Several options are +longdesc provided which might be of special interest for those outside +longdesc legal studies--for instance, displaying multiple full +longdesc citations. In addition, the format of last names and first +longdesc names of authors may be changed easily. Cross references to +longdesc other footnotes are possible. Language dependent handling of +longdesc bibliography entries is possible by the special language field. +containersize 51660 +containerchecksum 12a1d9402ca15ff23cbb9818f07290f0b295c9844bc4cf02e1332eb27a26a3a8d0ed3199df1c4f4f85c9ff5308e7426d0c7adad8dc587fe905c5a15314863b3b +doccontainersize 651904 +doccontainerchecksum 3f804537752bfd7b6780d082b37834c805e521491f39bd76b52541707e69f8b775b9e18bfcba0b0827133be8cf82bab86651f2a7ec351f9cc140427056ca0dc0 +docfiles size=242 + RELOC/doc/latex/jurabib/changes.txt + RELOC/doc/latex/jurabib/docs/english/jbendoc.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/jurabib/docs/english/jbendoc.tex + RELOC/doc/latex/jurabib/docs/german/jbgerdoc.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/jurabib/docs/german/jbgerdoc.tex + RELOC/doc/latex/jurabib/jbtest.pdf + RELOC/doc/latex/jurabib/jbtest.tex + RELOC/doc/latex/jurabib/jbtest.url + RELOC/doc/latex/jurabib/jbtestbt.tex + RELOC/doc/latex/jurabib/jbtestbu.tex + RELOC/doc/latex/jurabib/jbtestcb.tex + RELOC/doc/latex/jurabib/jbtestcb1.tex + RELOC/doc/latex/jurabib/jbtestcb2.tex + RELOC/doc/latex/jurabib/jbtesthu.tex + RELOC/doc/latex/jurabib/jbtestmb.tex +srccontainersize 61896 +srccontainerchecksum 349a2f55265584d73d0a1b0cdd00f0fdb384c87f8b1399acf62f14229ec4cb03919bb1c37d3c8ed992f72f3cd846c93bb13f25bed052edd80810bb6a92665e75 +srcfiles size=111 + RELOC/source/latex/jurabib/jurabib.dtx + RELOC/source/latex/jurabib/jurabib.ins +runfiles size=145 + RELOC/bibtex/bib/jurabib/book.bib + RELOC/bibtex/bib/jurabib/comment.bib + RELOC/bibtex/bib/jurabib/jbtest.bib + RELOC/bibtex/bib/jurabib/jbtesthu.bib + RELOC/bibtex/bst/jurabib/jox.bst + RELOC/bibtex/bst/jurabib/jurabib.bst + RELOC/bibtex/bst/jurabib/jureco.bst + RELOC/bibtex/bst/jurabib/jurunsrt.bst + RELOC/tex/latex/jurabib/dajbbib.ldf + RELOC/tex/latex/jurabib/dejbbib.ldf + RELOC/tex/latex/jurabib/dujbbib.ldf + RELOC/tex/latex/jurabib/enjbbib.ldf + RELOC/tex/latex/jurabib/fijbbib.ldf + RELOC/tex/latex/jurabib/frjbbib.ldf + RELOC/tex/latex/jurabib/itjbbib.ldf + RELOC/tex/latex/jurabib/jblong.cfg + RELOC/tex/latex/jurabib/jurabib.cfg + RELOC/tex/latex/jurabib/jurabib.sty + RELOC/tex/latex/jurabib/nojbbib.ldf + RELOC/tex/latex/jurabib/ptjbbib.ldf + RELOC/tex/latex/jurabib/spjbbib.ldf +catalogue-also jura juramisc alphanum alnumsec +catalogue-contact-repository http://sourceforge.net/projects/jurabib +catalogue-ctan /macros/latex/contrib/jurabib +catalogue-license gpl +catalogue-topics bibtex-supp +catalogue-version 0.6 + +name juramisc +category Package +revision 15878 +shortdesc Typesetting German juridical documents +relocated 1 +longdesc A collection of classes for typesetting court sentences, legal +longdesc opinions, books and dissertations for German lawyers. A +longdesc jurabook class is also provided, which may not yet be complete. +containersize 24848 +containerchecksum cbf6ebe12bf72dfb823578ed49066f34059e5ab1beefe0eeee84c7df55135644eabdea7582dc848b52cd575579d8807a2a2723bdb697e851eb8aef88f8a5e533 +doccontainersize 1142256 +doccontainerchecksum 3925418b9e4d05def76b9e0ebcf882c4b7061ff7ae446aa63d412c093caa04536ad45c757e04e088c3b4099c569885c6e6708ad31b866ebe89ecabb8395964b2 +docfiles size=469 + RELOC/doc/latex/juramisc/README details="Package README" language="de" + RELOC/doc/latex/juramisc/doc/jbook/jbook.dtx + RELOC/doc/latex/juramisc/doc/jbook/jbook.ins + RELOC/doc/latex/juramisc/doc/jmgerdoc.pdf details="Package documentation" language="de" + RELOC/doc/latex/juramisc/doc/jmgerdoc.tex + RELOC/doc/latex/juramisc/doc/jmgerdoc_scr.pdf +runfiles size=31 + RELOC/tex/latex/juramisc/jbgoe.clo + RELOC/tex/latex/juramisc/jbstgallen.clo + RELOC/tex/latex/juramisc/jbtrier.clo + RELOC/tex/latex/juramisc/jurabase.sty + RELOC/tex/latex/juramisc/jurabook.cls + RELOC/tex/latex/juramisc/juraovw.cls + RELOC/tex/latex/juramisc/juraurtl.cls +catalogue-also jura alphanum alnumsec jurabib +catalogue-ctan /macros/latex/contrib/juramisc +catalogue-license lppl +catalogue-topics legal book-pub class german +catalogue-version 0.91 + +name jurarsp +category Package +revision 15878 +shortdesc Citations of judgements and official documents in (German) juridical documents +relocated 1 +longdesc This package should be helpful for people working on (German) +longdesc law. It (ab)uses BibTeX for citations of judgements and +longdesc official documents. For this purpose, a special BibTeX-style is +longdesc provided. +containersize 9464 +containerchecksum 511130814ed94c7f0829802a0c3e8e613b0c4aae50854f6e06779448f430e78c8712142fe04d3662b799a488d90944072847dd223b01b642de78c1f98649e79a +doccontainersize 121072 +doccontainerchecksum 1c439e351102ae3f768ae38404cc5d98403028fb6fa6088cd53eea40593ee03c10d20955f3fadef41f41af6d23f139ba356a9b06ed735644b67d3f42a076e0af +docfiles size=57 + RELOC/doc/latex/jurarsp/README details="Readme" + RELOC/doc/latex/jurarsp/jurarsp.pdf details="Package documentation" language="de" + RELOC/doc/latex/jurarsp/rsptest.bib + RELOC/doc/latex/jurarsp/rsptest.tex +srccontainersize 26216 +srccontainerchecksum 8853060222f8f45e69fd7d3539534ed6a0762cb7f97d4c140dcb4ac59fcf1fe339d7f6cdca6e035d4e9bbcd730746e1311885d837fbedf65e208be2100ec2a90 +srcfiles size=31 + RELOC/source/latex/jurarsp/jurarsp.dtx + RELOC/source/latex/jurarsp/jurarsp.ins +runfiles size=17 + RELOC/bibtex/bst/jurarsp/jurarsp.bst + RELOC/tex/latex/jurarsp/jurarsp.cfg + RELOC/tex/latex/jurarsp/jurarsp.sty +catalogue-also juraabbrev +catalogue-ctan /macros/latex/contrib/jurarsp +catalogue-license gpl +catalogue-topics bibtex-supp legal german +catalogue-version 0.52 + +name jvlisting +category Package +revision 24638 +shortdesc A replacement for LaTeX's verbatim package +relocated 1 +longdesc This package provides a LaTeX environment listing, an +longdesc alternative to the built-in verbatim environment. The listing +longdesc environment is tailored for including listings of computer +longdesc program source code into documents. The main advantages over +longdesc the original verbatim environment are: environments +longdesc automatically fixes leading whitespace so that the environment +longdesc and program listing can be indented with the rest of the +longdesc document source, and; listing environments may easily be +longdesc customised and extended. +containersize 2552 +containerchecksum 70626cd23359751909ce385a7ed4415c5641e9c303d0dafeb99e36d0151f382c02c2f6818a135bc92fb156d4fa25d1976b2c906074fcc112e56a1a7a458801c2 +doccontainersize 197100 +doccontainerchecksum de6a694c26332d9c97bf4202bec0989370226b7381d080c4d6f5a106cd8f2bf352d756cbe7cede2a4ba3e17f85ad553e5c24e874a00cc1dd307325125e6d0bcb +docfiles size=53 + RELOC/doc/latex/jvlisting/README + RELOC/doc/latex/jvlisting/examples.tex + RELOC/doc/latex/jvlisting/jvlisting.pdf details="Package documentation" + RELOC/doc/latex/jvlisting/test.tex +srccontainersize 6744 +srccontainerchecksum 776fe9200a5447c151f11ee09b0f3d95aa5f07ccd427607b12ad7069aa70084d99c7d620261797e6c147ab134bf3a151bb739eadc8e3898dc8b16f284c66a965 +srcfiles size=7 + RELOC/source/latex/jvlisting/jvlisting.dtx + RELOC/source/latex/jvlisting/jvlisting.ins +runfiles size=2 + RELOC/tex/latex/jvlisting/jvlisting.sty +catalogue-also verbatim +catalogue-ctan /macros/latex/contrib/jvlisting +catalogue-license lppl +catalogue-topics listing +catalogue-version 0.7 + +name kalendarium +category Package +revision 48744 +shortdesc Print dates according to the classical Latin calendar +relocated 1 +longdesc kalendarium is a LaTeX3 package that provides several macros +longdesc with which to print dates in classical Latin given days on the +longdesc Julian or Gregorian calendars, using the same syntax used by +longdesc ancient Roman authors. The format of these dates may be +longdesc customised either in the package options or on a per-command +longdesc basis; these options also allow for the generation of date +longdesc strings according to different eras of the Classical period. +containersize 3540 +containerchecksum fea39ce08f6028f078e2d87ec73aeeb56d72006d24d316f8e257b3c71604efe2b4ea2fa698f79798ec5c9b3d271d758d4c0699ffce1bf380a74d21158224eabb +doccontainersize 365480 +doccontainerchecksum 60a1dcbaa92fcb4438f4a2416dc4784fc30af34c6e1511533b8827a266b61a62a6c0e66f51b27ce81dd879d774e9fee6b155a048ddb9f68e1f991294791739e1 +docfiles size=99 + RELOC/doc/latex/kalendarium/README.md details="Readme" + RELOC/doc/latex/kalendarium/kalendarium.pdf details="Package documentation" +srccontainersize 16432 +srccontainerchecksum a1668bd43e489002ff365f5f90c6f9f8d6acb752256159f223a444b41ac1398e8d0bde50a63deac11f8d3a22f792278891cb05109b5af4c2efc1e8c278f01a76 +srcfiles size=19 + RELOC/source/latex/kalendarium/kalendarium.dtx + RELOC/source/latex/kalendarium/kalendarium.ins +runfiles size=4 + RELOC/tex/latex/kalendarium/kalendarium.sty +catalogue-contact-announce https://github.com/Andrew-William-Smith/kalendarium/commits/master +catalogue-contact-bugs https://github.com/Andrew-William-Smith/kalendarium/issues +catalogue-contact-development https://github.com/Andrew-William-Smith/kalendarium +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-license lppl1.3c +catalogue-topics calendar latex3 +catalogue-version 1.0 + +name kanaparser +category Package +revision 48052 +shortdesc Kana parser for LuaTeX +relocated 1 +longdesc The package provides a kana parser for LuaTeX. It is a set of 4 +longdesc macros that handle transliteration of text: from hiragana and +longdesc katakana to Latin from Latin and katakana to hiragana from +longdesc Latin and hiragana to katakana It can be used to write kana +longdesc directly using only the ASCII character set or for education +longdesc purposes. The package has support for obsolete and rarely used +longdesc syllables, some only accessible via the provided toggle macro. +containersize 4620 +containerchecksum a9db1fc66330bafc5fc26ed600f1779dce328d6234ebe930aaff65a02a0d740188e73c5f73a9c75d69926323a610dca4b37044e7357a141eae9bb3231fd3e272 +doccontainersize 367048 +doccontainerchecksum 9eb00a9652f22411f9ae0123bd2bda62af617f39ed3eb8266c4ca38ff0783722a3d1eb05a0fe1ef6a238a3132ade65c5ebd882309f154ca416e2191b9db44c4c +docfiles size=96 + RELOC/doc/luatex/kanaparser/README.md details="Readme" + RELOC/doc/luatex/kanaparser/description.pdf details="Package documentation" + RELOC/doc/luatex/kanaparser/description.tex + RELOC/doc/luatex/kanaparser/examples.pdf + RELOC/doc/luatex/kanaparser/examples.tex +runfiles size=5 + RELOC/tex/luatex/kanaparser/kanaparser.lua + RELOC/tex/luatex/kanaparser/kanaparser.tex +catalogue-ctan /macros/luatex/generic/kanaparser +catalogue-license bsd +catalogue-topics luatex parser japanese +catalogue-version 1.0 + +name kantlipsum +category Package +revision 51727 +shortdesc Generate sentences in Kant's style +relocated 1 +longdesc The package spits out sentences in Kantian style; the text is +longdesc provided by the Kant generator for Python by Mark Pilgrim, +longdesc described in the book "Dive into Python". The package is +longdesc modelled on lipsum, and may be used for similar purposes. +containersize 24020 +containerchecksum 7aac4684e6d08b46319b711a824dbe33446674f63fe301e366543553e6fc4c41aa1eb9aabfc9d11710014c9347ac559dfa1882478f6ec5d9edb39c5dc42cda8d +doccontainersize 579876 +doccontainerchecksum bb96e91c7562c34c56c7170e246eb71c353d67d649cbbaee5904f6bd82b905b93e79baeee536a3d8eb8b9f08296591a8d0fe621883914f4af676f78c6f244523 +docfiles size=144 + RELOC/doc/latex/kantlipsum/README.md details="Readme" + RELOC/doc/latex/kantlipsum/kantlipsum.pdf details="Package documentation" +srccontainersize 27900 +srccontainerchecksum aeebdbaa22e0e2b369a18bf7243d714b872115ac9f0154438d37aa0719e3623ce27d31068d90bb60b301322b30c18bf34d4ad312355a65c8e00043653f696b54 +srcfiles size=51 + RELOC/source/latex/kantlipsum/kantlipsum.dtx + RELOC/source/latex/kantlipsum/kantlipsum.ins +runfiles size=47 + RELOC/tex/latex/kantlipsum/kantlipsum.sty +catalogue-also blindtext +catalogue-ctan /macros/latex/contrib/kantlipsum +catalogue-license lppl1.3c +catalogue-topics macro-supp dummy-gen +catalogue-version 0.8a + +name karnaugh +category Package +revision 21338 +shortdesc Typeset Karnaugh-Veitch-maps +relocated 1 +longdesc The package provides macros for typesetting Karnaugh-Maps and +longdesc Veitch-Charts in a simple and user-friendly way. Karnaugh-Maps +longdesc and Veitch-Charts are used to display and simplify logic +longdesc functions "manually". These macros can typeset Karnaugh-Maps +longdesc and Veitch-Charts with up to ten variables (=1024 entries). +containersize 4420 +containerchecksum 344027bcf79a9b1d3c408aae774bc532a39e7c638c4831d2566e7cf5ba5780161c6314bc0f9337de21fa08a2a2d72f3b5ccf9df7a521d7c95b4dc6e62cf2136f +doccontainersize 142148 +doccontainerchecksum 379638ab38cdfe3d94d049fec7701995566df9c5451f4f6a862c7cde232ceea899222b13f3c40398676bd2746305ee48e8b43781804cd24f48f36946526d23e4 +docfiles size=47 + RELOC/doc/latex/karnaugh/kvdoc.pdf details="Package documentation" + RELOC/doc/latex/karnaugh/kvdoc.tex +runfiles size=5 + RELOC/tex/latex/karnaugh/kvmacros.tex +catalogue-also askmaps karnaughmap karnaugh-map +catalogue-ctan /macros/latex/contrib/karnaugh +catalogue-license lppl1 +catalogue-topics engineering maths + +name karnaugh-map +category Package +revision 44131 +shortdesc LaTeX package for drawing karnaugh maps with up to 6 variables +relocated 1 +longdesc This package draws karnaugh maps with 2, 3, 4, 5, and 6 +longdesc variables. It also contains commands for filling the karnaugh +longdesc map with terms semi-automatically or manually. Last but not +longdesc least it contains commands for drawing implicants on top of the +longdesc map. This package depends on the TikZ, xparse, and xstring +longdesc packages. +containersize 4836 +containerchecksum dc2327e4cda55e4b60365d6354f679f9bc68d87a3d3695eb98c2754d7a5f7f64d65db8732b107f686fc39a07868d4703afc0fba754f42af3fd567a143199580e +doccontainersize 239480 +doccontainerchecksum 0daa9aafafd67df8934ff2b7b31794b23c8ebc53fb142f23111e64957a75904c4813c6f40512e4a440861351a2185884969cffef35209dfddbfd9ac4007e6557 +docfiles size=60 + RELOC/doc/latex/karnaugh-map/README.md details="Readme" + RELOC/doc/latex/karnaugh-map/karnaugh-map.pdf details="Package documentation" +srccontainersize 8056 +srccontainerchecksum 3de03d6661f8a8d0955de760bd8e0a9e2c5592e1ec95e55224994c9b5580036da6c20a9e68a2e59195fbdbbe0ffb5f431dd025400a3c1c57c44fa92000575dfc +srcfiles size=16 + RELOC/source/latex/karnaugh-map/karnaugh-map.dtx + RELOC/source/latex/karnaugh-map/karnaugh-map.ins +runfiles size=8 + RELOC/tex/latex/karnaugh-map/karnaugh-map.sty +catalogue-also karnaugh karnaughmap +catalogue-contact-repository https://github.com/2pi/karnaugh-map +catalogue-ctan /graphics/pgf/contrib/karnaugh-map +catalogue-license other-free +catalogue-topics maths engineering pgf-tikz +catalogue-version 1.1 + +name karnaughmap +category Package +revision 36989 +shortdesc Typeset Karnaugh maps +relocated 1 +longdesc This package provides an easy to use interface to typeset +longdesc Karnaugh maps using TikZ. Though similar to the karnaugh +longdesc macros, it provides a key-value system to customize +longdesc karnaughmaps and a proper LaTeX package. +containersize 3320 +containerchecksum 72c5ee674d7719b535a03cb9180a605fce2ac089c875cf57b95739b5c139bc45552960faf8f3287731fbe12c8402ce3c2c6517513d20bbc484e12a44468d6ec7 +doccontainersize 323304 +doccontainerchecksum c79e28dbfb45764c3f5feff21bf3cb8ec5ee41380fe43d35b2b091b1e263db1eb417a19c74987743c04a2f41fc2c3655fdc531c8971320580be48beeb4d3d6eb +docfiles size=81 + RELOC/doc/latex/karnaughmap/README details="Readme" + RELOC/doc/latex/karnaughmap/karnaughmap.pdf details="Package documentation" +srccontainersize 11192 +srccontainerchecksum ff5bdbaebaf55faf2d617b1e3634e52a6ec52c9d56932653d9b13a8aba94db101c4afbccdabd916d51be201135de2e739295b8a0523b63def160f1c07171e4a2 +srcfiles size=17 + RELOC/source/latex/karnaughmap/karnaughmap.dtx + RELOC/source/latex/karnaughmap/karnaughmap.ins +runfiles size=6 + RELOC/tex/latex/karnaughmap/karnaughmap.sty +catalogue-also karnaugh karnaugh-map +catalogue-ctan /graphics/pgf/contrib/karnaughmap +catalogue-license lppl1.2 +catalogue-topics engineering maths pgf-tikz +catalogue-version 2.0 + +name kastrup +category Package +revision 15878 +catalogue binhex +shortdesc Convert numbers into binary, octal and hexadecimal +relocated 1 +longdesc Provides expandable macros for both fixed-width and +longdesc minimum-width numbers to bases 2, 4, 8 and 16. +containersize 1388 +containerchecksum d7cbd22ead6633284e9d114d90b2cb47924bfeb10c15eb350e4c2f82b883930c953410362313cdf8ac476a68cfa3a9b020217097909504b97a8ecd7addbc8d97 +doccontainersize 139420 +doccontainerchecksum 32883a008b0f44c341fbd5f65f9783e403fb5751201235b0c4a2dfd9af8400e1a36adaf4573165688d78cacdaad3c8b2ac1b92ba87ef6951d3bc5330537d1f9e +docfiles size=37 + RELOC/doc/generic/kastrup/binhex.pdf details="Package documentation" +srccontainersize 7392 +srccontainerchecksum 60390a053fe2fa53685403df1d67a2bf8795f49db0f4eaa5a147ccaed951a55c1ed50c9cc5802bcdb5e356b694c2b4be78715022842c958f784908cab89a3f75 +srcfiles size=7 + RELOC/source/generic/kastrup/binhex.drv + RELOC/source/generic/kastrup/binhex.dtx + RELOC/source/generic/kastrup/binhex.ins +runfiles size=1 + RELOC/tex/generic/kastrup/binhex.tex +catalogue-ctan /macros/generic/kastrup +catalogue-license other-free +catalogue-topics numbers + +name kblocks +category Package +revision 57617 +shortdesc Easily typeset Control Block Diagrams and Signal Flow Graphs +relocated 1 +longdesc Kblocks defines a number of commands to make drawing control +longdesc block diagrams using TikZ/PGF more structured and easier. It +longdesc reduces the learning curve forTikZ/PGF and serves as a +longdesc frontend, by focusing on the block resp. flow diagrams only. +containersize 8140 +containerchecksum 1cf755fb680b13d5298c306698bf41cd0446f7ec8da321b065ed549c1bc83bc352bd4a44d67eaff6fd1c253b2d92768f8ddcdb6a986febc4dd1abe6884a2354d +doccontainersize 339680 +doccontainerchecksum 7aa79c73b32d4098bdbf6152f28de628083639fcea2b7338e64fe6108aa605662f36002d93268f67fcfac59798369d392c5c4b79adcb18d0600faed8d804d8df +docfiles size=97 + RELOC/doc/latex/kblocks/README.md details="Readme" + RELOC/doc/latex/kblocks/intro.png + RELOC/doc/latex/kblocks/kblocks-doc.pdf details="Package documentation" + RELOC/doc/latex/kblocks/kblocks-doc.tex +runfiles size=26 + RELOC/tex/latex/kblocks/kblocks.sty +catalogue-contact-bugs https://github.com/somefunAgba/kblocks/issues +catalogue-contact-development https://github.com/somefunAgba/kblocks/pulls +catalogue-contact-home https://github.com/somefunAgba/kblocks +catalogue-contact-repository https://github.com/somefunAgba/kblocks +catalogue-ctan /graphics/pgf/contrib/kblocks +catalogue-license mit +catalogue-topics diagram-block diagram-flow +catalogue-version 2.0 + +name kdgdocs +category Package +revision 24498 +shortdesc Document classes for Karel de Grote University College +relocated 1 +longdesc The bundle provides two classes for usage by KdG professors and +longdesc master students: kdgcoursetext: for writing course texts, and +longdesc kdgmasterthesis: for writing master's theses. The bundle +longdesc replaces the original kdgcoursetext package (now removed from +longdesc the archive). +containersize 3640 +containerchecksum 79b64f2f20b9da908fd9acee1033fdef290c30e99794c37f5020f33dc5fdbb670383463bc17614f4ecaa1d5d4c03b4ffd3aa4f2b7c53f27455740adda9d0545a +doccontainersize 718580 +doccontainerchecksum 6b579a44d041a10eb9224aa80c1b59b113492cb12c121b1ca5f57625d044b52a80cbfab63d7a3160043b41b1b4e27d463f5ef8c9688f620f431fc1937a8bc561 +docfiles size=285 + RELOC/doc/latex/kdgdocs/LICENSE + RELOC/doc/latex/kdgdocs/README details="Readme" + RELOC/doc/latex/kdgdocs/kdg_color.eps + RELOC/doc/latex/kdgdocs/kdg_color.pdf + RELOC/doc/latex/kdgdocs/kdgcoursetext-example.pdf details="Course text example" + RELOC/doc/latex/kdgdocs/kdgcoursetext-example.tex + RELOC/doc/latex/kdgdocs/kdgdocs.pdf details="Package documentation" + RELOC/doc/latex/kdgdocs/kdgmasterthesis-example.pdf details="Master thesis example" + RELOC/doc/latex/kdgdocs/kdgmasterthesis-example.tex + RELOC/doc/latex/kdgdocs/manifest.txt + RELOC/doc/latex/kdgdocs/pi-orchid.jpg +srccontainersize 10436 +srccontainerchecksum 256c4c4e0a8dddf39fc6ce14f17313f2bee7c967dac21910fb44fd674573de113e78b0beaaa979d3c7f3fba06ad15d24d6243b8716b0114507331f267144d6f2 +srcfiles size=11 + RELOC/source/latex/kdgdocs/kdgdocs.dtx + RELOC/source/latex/kdgdocs/kdgdocs.ins +runfiles size=5 + RELOC/tex/latex/kdgdocs/kdgcoursetext.cls + RELOC/tex/latex/kdgdocs/kdgmasterthesis.cls +catalogue-ctan /macros/latex/contrib/kdgdocs +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.0 + +name kerkis +category Package +revision 56271 +shortdesc Kerkis (Greek) font family +relocated 1 +longdesc Sans-serif Greek fonts to match the URW Bookman set (which are +longdesc distributed with Kerkis). The Kerkis font set has some support +longdesc for mathematics as well as other glyphs missing from the base +longdesc URW Bookman fonts. Macros are provided to use the fonts in OT1, +longdesc T1 (only NG/ng glyphs missing) and LGR encodings, as well as in +longdesc mathematics; small caps and old-style number glyphs are also +longdesc available. The philosophy, and the design process, of the +longdesc Kerkis fonts is discussed in a paper in TUGboat 23(3/4), 2002. +execute addMap kerkis.map +containersize 2015492 +containerchecksum b4a8465264a174320180ac5f9bd89900f7a3b351af21d3a138db40b0781228bac8f8e9ea66a54a1910b3750d65eed17f74880f1c7396780dcd631eda164aff58 +doccontainersize 2496 +doccontainerchecksum b9c57f71b2c5e48ab3b96984b231f5ad418d884caad0a3747c78bdf0a5688c4ac05993e43707236b02650750d5b7507d39e50668b7cc16e00a35547d63d0bbb3 +docfiles size=3 + RELOC/doc/fonts/kerkis/License.txt + RELOC/doc/fonts/kerkis/README details="Readme" +runfiles size=950 + RELOC/fonts/afm/public/kerkis/Kerkis-Bold.afm + RELOC/fonts/afm/public/kerkis/Kerkis-BoldItalic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-BoldSmallCaps.afm + RELOC/fonts/afm/public/kerkis/Kerkis-Calligraphic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-Italic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-SemiBold-Italic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-SemiBold.afm + RELOC/fonts/afm/public/kerkis/Kerkis-SmallCaps.afm + RELOC/fonts/afm/public/kerkis/Kerkis.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-Bold.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-BoldItalic.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-Italic.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-SmallCaps.afm + RELOC/fonts/afm/public/kerkis/KerkisSans.afm + RELOC/fonts/afm/public/kerkis/ktsy.afm + RELOC/fonts/enc/dvips/kerkis/gkerkis.enc + RELOC/fonts/enc/dvips/kerkis/gkerkisc.enc + RELOC/fonts/enc/dvips/kerkis/gpkerkis.enc + RELOC/fonts/enc/dvips/kerkis/gpkerkisc.enc + RELOC/fonts/enc/dvips/kerkis/kerkis.enc + RELOC/fonts/enc/dvips/kerkis/kerkisc.enc + RELOC/fonts/enc/dvips/kerkis/kerkisec.enc + RELOC/fonts/enc/dvips/kerkis/kerkisecsc.enc + RELOC/fonts/enc/dvips/kerkis/kmath.enc + RELOC/fonts/enc/dvips/kerkis/kmex.enc + RELOC/fonts/enc/dvips/kerkis/kmsym.enc + RELOC/fonts/map/dvips/kerkis/kerkis.map + RELOC/fonts/opentype/public/kerkis/Kerkis-Bold.otf + RELOC/fonts/opentype/public/kerkis/Kerkis-BoldItalic.otf + RELOC/fonts/opentype/public/kerkis/Kerkis-BoldSmallCaps.otf + RELOC/fonts/opentype/public/kerkis/Kerkis-Calligraphic.otf + RELOC/fonts/opentype/public/kerkis/Kerkis-Italic.otf + RELOC/fonts/opentype/public/kerkis/Kerkis-SemiBold-Italic.otf + RELOC/fonts/opentype/public/kerkis/Kerkis-SemiBold.otf + RELOC/fonts/opentype/public/kerkis/Kerkis-SmallCaps.otf + RELOC/fonts/opentype/public/kerkis/Kerkis.otf + RELOC/fonts/opentype/public/kerkis/KerkisSans-Bold.otf + RELOC/fonts/opentype/public/kerkis/KerkisSans-BoldItalic.otf + RELOC/fonts/opentype/public/kerkis/KerkisSans-Italic.otf + RELOC/fonts/opentype/public/kerkis/KerkisSans-SmallCaps.otf + RELOC/fonts/opentype/public/kerkis/KerkisSans.otf + RELOC/fonts/tfm/public/kerkis/ek8a.tfm + RELOC/fonts/tfm/public/kerkis/ek8r.tfm + RELOC/fonts/tfm/public/kerkis/ekb8a.tfm + RELOC/fonts/tfm/public/kerkis/ekb8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbi8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbi8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbo8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbo8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbsc8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbsc8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbsco8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbsco8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbui8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbui8r.tfm + RELOC/fonts/tfm/public/kerkis/ekcal8a.tfm + RELOC/fonts/tfm/public/kerkis/ekcal8r.tfm + RELOC/fonts/tfm/public/kerkis/eki8a.tfm + RELOC/fonts/tfm/public/kerkis/eki8r.tfm + RELOC/fonts/tfm/public/kerkis/eko8a.tfm + RELOC/fonts/tfm/public/kerkis/eko8r.tfm + RELOC/fonts/tfm/public/kerkis/eksb8a.tfm + RELOC/fonts/tfm/public/kerkis/eksb8r.tfm + RELOC/fonts/tfm/public/kerkis/eksbi8a.tfm + RELOC/fonts/tfm/public/kerkis/eksbi8r.tfm + RELOC/fonts/tfm/public/kerkis/eksbo8a.tfm + RELOC/fonts/tfm/public/kerkis/eksbo8r.tfm + RELOC/fonts/tfm/public/kerkis/eksbui8a.tfm + RELOC/fonts/tfm/public/kerkis/eksbui8r.tfm + RELOC/fonts/tfm/public/kerkis/eksc8a.tfm + RELOC/fonts/tfm/public/kerkis/eksc8r.tfm + RELOC/fonts/tfm/public/kerkis/eksco8a.tfm + RELOC/fonts/tfm/public/kerkis/eksco8r.tfm + RELOC/fonts/tfm/public/kerkis/eksf8a.tfm + RELOC/fonts/tfm/public/kerkis/eksf8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfb8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfb8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfbi8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfbi8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfi8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfi8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfsc8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfsc8t.tfm + RELOC/fonts/tfm/public/kerkis/ekui8a.tfm + RELOC/fonts/tfm/public/kerkis/ekui8r.tfm + RELOC/fonts/tfm/public/kerkis/gk7a.tfm + RELOC/fonts/tfm/public/kerkis/gk7t.tfm + RELOC/fonts/tfm/public/kerkis/gkb7a.tfm + RELOC/fonts/tfm/public/kerkis/gkb7t.tfm + RELOC/fonts/tfm/public/kerkis/gkbi7a.tfm + RELOC/fonts/tfm/public/kerkis/gkbi7t.tfm + RELOC/fonts/tfm/public/kerkis/gkbo7a.tfm + RELOC/fonts/tfm/public/kerkis/gkbo7t.tfm + RELOC/fonts/tfm/public/kerkis/gkbsc8a.tfm + RELOC/fonts/tfm/public/kerkis/gkbsc8r.tfm + RELOC/fonts/tfm/public/kerkis/gkbsco8a.tfm + RELOC/fonts/tfm/public/kerkis/gkbsco8r.tfm + RELOC/fonts/tfm/public/kerkis/gkbui7a.tfm + RELOC/fonts/tfm/public/kerkis/gkbui7t.tfm + RELOC/fonts/tfm/public/kerkis/gkcal7a.tfm + RELOC/fonts/tfm/public/kerkis/gkcal7t.tfm + RELOC/fonts/tfm/public/kerkis/gki7a.tfm + RELOC/fonts/tfm/public/kerkis/gki7t.tfm + RELOC/fonts/tfm/public/kerkis/gko7a.tfm + RELOC/fonts/tfm/public/kerkis/gko7t.tfm + RELOC/fonts/tfm/public/kerkis/gksb7a.tfm + RELOC/fonts/tfm/public/kerkis/gksb7t.tfm + RELOC/fonts/tfm/public/kerkis/gksbi7a.tfm + RELOC/fonts/tfm/public/kerkis/gksbi7t.tfm + RELOC/fonts/tfm/public/kerkis/gksbo7a.tfm + RELOC/fonts/tfm/public/kerkis/gksbo7t.tfm + RELOC/fonts/tfm/public/kerkis/gksbui7a.tfm + RELOC/fonts/tfm/public/kerkis/gksbui7t.tfm + RELOC/fonts/tfm/public/kerkis/gksc7a.tfm + RELOC/fonts/tfm/public/kerkis/gksc7t.tfm + RELOC/fonts/tfm/public/kerkis/gksco7a.tfm + RELOC/fonts/tfm/public/kerkis/gksco7t.tfm + RELOC/fonts/tfm/public/kerkis/gksf7a.tfm + RELOC/fonts/tfm/public/kerkis/gksf7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfb7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfb7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfbi7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfbi7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfi7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfi7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfsc7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfsc7t.tfm + RELOC/fonts/tfm/public/kerkis/gkui7a.tfm + RELOC/fonts/tfm/public/kerkis/gkui7t.tfm + RELOC/fonts/tfm/public/kerkis/k8a.tfm + RELOC/fonts/tfm/public/kerkis/k8r.tfm + RELOC/fonts/tfm/public/kerkis/kb8a.tfm + RELOC/fonts/tfm/public/kerkis/kb8r.tfm + RELOC/fonts/tfm/public/kerkis/kbi8a.tfm + RELOC/fonts/tfm/public/kerkis/kbi8r.tfm + RELOC/fonts/tfm/public/kerkis/kbo8a.tfm + RELOC/fonts/tfm/public/kerkis/kbo8r.tfm + RELOC/fonts/tfm/public/kerkis/kbsc8a.tfm + RELOC/fonts/tfm/public/kerkis/kbsc8r.tfm + RELOC/fonts/tfm/public/kerkis/kbsco8a.tfm + RELOC/fonts/tfm/public/kerkis/kbsco8r.tfm + RELOC/fonts/tfm/public/kerkis/kbui8a.tfm + RELOC/fonts/tfm/public/kerkis/kbui8r.tfm + RELOC/fonts/tfm/public/kerkis/kcal8a.tfm + RELOC/fonts/tfm/public/kerkis/kcal8r.tfm + RELOC/fonts/tfm/public/kerkis/ki8a.tfm + RELOC/fonts/tfm/public/kerkis/ki8r.tfm + RELOC/fonts/tfm/public/kerkis/kmath8a.tfm + RELOC/fonts/tfm/public/kerkis/kmath8r.tfm + RELOC/fonts/tfm/public/kerkis/ko8a.tfm + RELOC/fonts/tfm/public/kerkis/ko8r.tfm + RELOC/fonts/tfm/public/kerkis/ksb8a.tfm + RELOC/fonts/tfm/public/kerkis/ksb8r.tfm + RELOC/fonts/tfm/public/kerkis/ksbi8a.tfm + RELOC/fonts/tfm/public/kerkis/ksbi8r.tfm + RELOC/fonts/tfm/public/kerkis/ksbo8a.tfm + RELOC/fonts/tfm/public/kerkis/ksbo8r.tfm + RELOC/fonts/tfm/public/kerkis/ksbui8a.tfm + RELOC/fonts/tfm/public/kerkis/ksbui8r.tfm + RELOC/fonts/tfm/public/kerkis/ksc8a.tfm + RELOC/fonts/tfm/public/kerkis/ksc8r.tfm + RELOC/fonts/tfm/public/kerkis/ksco8a.tfm + RELOC/fonts/tfm/public/kerkis/ksco8r.tfm + RELOC/fonts/tfm/public/kerkis/ksf8a.tfm + RELOC/fonts/tfm/public/kerkis/ksf8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfb8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfb8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfbi8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfbi8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfi8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfi8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfsc8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfsc8t.tfm + RELOC/fonts/tfm/public/kerkis/ktsy8a.tfm + RELOC/fonts/tfm/public/kerkis/ktsy8r.tfm + RELOC/fonts/tfm/public/kerkis/kui8a.tfm + RELOC/fonts/tfm/public/kerkis/kui8r.tfm + RELOC/fonts/type1/public/kerkis/Kerkis-Bold.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-BoldItalic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-BoldSmallCaps.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-Calligraphic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-Italic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-SemiBold-Italic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-SemiBold.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-SmallCaps.pfb + RELOC/fonts/type1/public/kerkis/Kerkis.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-Bold.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-BoldItalic.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-Italic.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-SmallCaps.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans.pfb + RELOC/fonts/type1/public/kerkis/ktsy.pfb + RELOC/fonts/vf/public/kerkis/ek8a.vf + RELOC/fonts/vf/public/kerkis/ekb8a.vf + RELOC/fonts/vf/public/kerkis/ekbi8a.vf + RELOC/fonts/vf/public/kerkis/ekbo8a.vf + RELOC/fonts/vf/public/kerkis/ekbsc8a.vf + RELOC/fonts/vf/public/kerkis/ekbsco8a.vf + RELOC/fonts/vf/public/kerkis/ekbui8a.vf + RELOC/fonts/vf/public/kerkis/ekcal8a.vf + RELOC/fonts/vf/public/kerkis/eki8a.vf + RELOC/fonts/vf/public/kerkis/eko8a.vf + RELOC/fonts/vf/public/kerkis/eksb8a.vf + RELOC/fonts/vf/public/kerkis/eksbi8a.vf + RELOC/fonts/vf/public/kerkis/eksbo8a.vf + RELOC/fonts/vf/public/kerkis/eksbui8a.vf + RELOC/fonts/vf/public/kerkis/eksc8a.vf + RELOC/fonts/vf/public/kerkis/eksco8a.vf + RELOC/fonts/vf/public/kerkis/eksf8t.vf + RELOC/fonts/vf/public/kerkis/eksfb8t.vf + RELOC/fonts/vf/public/kerkis/eksfbi8t.vf + RELOC/fonts/vf/public/kerkis/eksfi8t.vf + RELOC/fonts/vf/public/kerkis/eksfsc8t.vf + RELOC/fonts/vf/public/kerkis/ekui8a.vf + RELOC/fonts/vf/public/kerkis/gk7t.vf + RELOC/fonts/vf/public/kerkis/gkb7t.vf + RELOC/fonts/vf/public/kerkis/gkbi7t.vf + RELOC/fonts/vf/public/kerkis/gkbo7t.vf + RELOC/fonts/vf/public/kerkis/gkbsc8a.vf + RELOC/fonts/vf/public/kerkis/gkbsco8a.vf + RELOC/fonts/vf/public/kerkis/gkbui7t.vf + RELOC/fonts/vf/public/kerkis/gkcal7t.vf + RELOC/fonts/vf/public/kerkis/gki7t.vf + RELOC/fonts/vf/public/kerkis/gko7t.vf + RELOC/fonts/vf/public/kerkis/gksb7t.vf + RELOC/fonts/vf/public/kerkis/gksbi7t.vf + RELOC/fonts/vf/public/kerkis/gksbo7t.vf + RELOC/fonts/vf/public/kerkis/gksbui7t.vf + RELOC/fonts/vf/public/kerkis/gksc7t.vf + RELOC/fonts/vf/public/kerkis/gksco7t.vf + RELOC/fonts/vf/public/kerkis/gksf7t.vf + RELOC/fonts/vf/public/kerkis/gksfb7t.vf + RELOC/fonts/vf/public/kerkis/gksfbi7t.vf + RELOC/fonts/vf/public/kerkis/gksfi7t.vf + RELOC/fonts/vf/public/kerkis/gksfsc7t.vf + RELOC/fonts/vf/public/kerkis/gkui7t.vf + RELOC/fonts/vf/public/kerkis/k8a.vf + RELOC/fonts/vf/public/kerkis/kb8a.vf + RELOC/fonts/vf/public/kerkis/kbi8a.vf + RELOC/fonts/vf/public/kerkis/kbo8a.vf + RELOC/fonts/vf/public/kerkis/kbsc8a.vf + RELOC/fonts/vf/public/kerkis/kbsco8a.vf + RELOC/fonts/vf/public/kerkis/kbui8a.vf + RELOC/fonts/vf/public/kerkis/kcal8a.vf + RELOC/fonts/vf/public/kerkis/ki8a.vf + RELOC/fonts/vf/public/kerkis/kmath8a.vf + RELOC/fonts/vf/public/kerkis/ko8a.vf + RELOC/fonts/vf/public/kerkis/ksb8a.vf + RELOC/fonts/vf/public/kerkis/ksbi8a.vf + RELOC/fonts/vf/public/kerkis/ksbo8a.vf + RELOC/fonts/vf/public/kerkis/ksbui8a.vf + RELOC/fonts/vf/public/kerkis/ksc8a.vf + RELOC/fonts/vf/public/kerkis/ksco8a.vf + RELOC/fonts/vf/public/kerkis/ksf8t.vf + RELOC/fonts/vf/public/kerkis/ksfb8t.vf + RELOC/fonts/vf/public/kerkis/ksfbi8t.vf + RELOC/fonts/vf/public/kerkis/ksfi8t.vf + RELOC/fonts/vf/public/kerkis/ksfsc8t.vf + RELOC/fonts/vf/public/kerkis/ktsy8a.vf + RELOC/fonts/vf/public/kerkis/kui8a.vf + RELOC/tex/latex/kerkis/kerkis.sty + RELOC/tex/latex/kerkis/kmath.sty + RELOC/tex/latex/kerkis/lgrkfn.fd + RELOC/tex/latex/kerkis/lgrmak.fd + RELOC/tex/latex/kerkis/lgrmaksf.fd + RELOC/tex/latex/kerkis/omlmak.fd + RELOC/tex/latex/kerkis/omsmak.fd + RELOC/tex/latex/kerkis/ot1kfn.fd + RELOC/tex/latex/kerkis/ot1mak.fd + RELOC/tex/latex/kerkis/ot1maksf.fd + RELOC/tex/latex/kerkis/t1mak.fd + RELOC/tex/latex/kerkis/t1maksf.fd +catalogue-ctan /fonts/greek/kerkis +catalogue-license lppl1.3c +catalogue-topics font font-greek font-maths font-type1 font-otf font-supp font-t1enc +catalogue-version 1.11 + +name kerntest +category Package +revision 15878 +shortdesc Print tables and generate control files to adjust kernings +relocated 1 +longdesc This class makes it easy to generate tables that show many +longdesc different kerning pairs of an arbitrary font, usable by LaTeX. +longdesc It shows the kerning values that are used in the font by +longdesc default. In addition, this class enables the user to alter the +longdesc kernings and to observe the results. Kerning pairs can be +longdesc defined for groups of similar glyphs at the same time. An mtx +longdesc file is generated automatically. The mtx file may then be +longdesc loaded by fontinst to introduce the user-made kernings into the +longdesc virtual font for later use in LaTeX. +containersize 11356 +containerchecksum 9f295c253228745bdd91db65f2e414bc6113d246242ea1717db6659c2ccbf72530fdc326c0ec499f6d6c2af3ec8df2b78965666dd8544e07bce864716804e76b +doccontainersize 627468 +doccontainerchecksum b471544af9d1ecfd6225e4b9d61f05b4da950a6512ac4c4bab54b1ef9befa859ee5aee2498690e724d84313808d2abc8f005fd4e121891878cd2dbd03ae36415 +docfiles size=232 + RELOC/doc/latex/kerntest/ChangeLog + RELOC/doc/latex/kerntest/README details="Readme" + RELOC/doc/latex/kerntest/ToDo + RELOC/doc/latex/kerntest/kerntest.pdf details="Package documentation" + RELOC/doc/latex/kerntest/krntst-v.tex + RELOC/doc/latex/kerntest/ot1-XXX-m-n.tex + RELOC/doc/latex/kerntest/schoolb.map + RELOC/doc/latex/kerntest/schoolb1.tex + RELOC/doc/latex/kerntest/schoolb2.tex + RELOC/doc/latex/kerntest/t1-9nc-m-n-1.tex + RELOC/doc/latex/kerntest/t1-9nc-m-n-2.tex + RELOC/doc/latex/kerntest/t1-XXX-m-n.tex + RELOC/doc/latex/kerntest/t1-cmr-m-n-1200.tex + RELOC/doc/latex/kerntest/t1-ptm-bx-n-example.tex + RELOC/doc/latex/kerntest/t1-ptm-m-n-shortexample.tex + RELOC/doc/latex/kerntest/t1-ptm-m-n.tex + RELOC/doc/latex/kerntest/testschoolb.tex + RELOC/doc/latex/kerntest/ts1-XXX-m-n.tex +srccontainersize 32176 +srccontainerchecksum 8d7c2a8e8881f361c67ff71a57056dbabd3e0af5d24cbbc5f9e7e6e321504482469809f8bf349b5fd4d65e011049d5a67e7570c0b364cfe178b0fe377da82c31 +srcfiles size=45 + RELOC/source/latex/kerntest/Makefile + RELOC/source/latex/kerntest/kerntest.dtx + RELOC/source/latex/kerntest/kerntest.ins +runfiles size=22 + RELOC/tex/latex/kerntest/kerntest.cls + RELOC/tex/latex/kerntest/ly1mtx.clo + RELOC/tex/latex/kerntest/ot1mtx.clo + RELOC/tex/latex/kerntest/t1cmr-1200.fd + RELOC/tex/latex/kerntest/t1mtx.clo + RELOC/tex/latex/kerntest/t2amtx.clo + RELOC/tex/latex/kerntest/t2bmtx.clo + RELOC/tex/latex/kerntest/ts1mtx.clo +catalogue-ctan /macros/latex/contrib/kerntest +catalogue-license lppl +catalogue-topics font-devel +catalogue-version 1.32 + +name ketcindy +category Package +revision 58661 +shortdesc macros for graphic generation and Cinderella plugin +longdesc KETpic is a macro package designed for computer algebra systems +longdesc (CAS) to generate LaTeX source codes for high-quality +longdesc mathematical artwork. KETcindy is a plugin for Cinderella that +longdesc allows to generate graphics using KETpic. The generated code +longdesc can be included in any LaTeX document. +depend ketcindy.ARCH +containersize 2528836 +containerchecksum da33a0bdc989fcb6f4521d23e5d44bae70d608ed8ac10f05d6962a252e99bbd80380afa2cbe9e02b9c652b044dfff79218f951144da6ce55f8a53033c11ff346 +doccontainersize 14292908 +doccontainerchecksum 1704411b3e7c41b6318ff6f8da56007dbf1bec67bb495d25364d6274d9b8acf234430081c22bab6ad13ffd0ea47586e6e24c9f27da8a97a309e2128ec74f89e9 +docfiles size=5777 + texmf-dist/doc/support/ketcindy/HowToInstallE.pdf + texmf-dist/doc/support/ketcindy/HowToInstallJ.pdf + texmf-dist/doc/support/ketcindy/LICENSE + texmf-dist/doc/support/ketcindy/README details="Readme" + texmf-dist/doc/support/ketcindy/README.TeXLive + texmf-dist/doc/support/ketcindy/Scriptkelib.txt + texmf-dist/doc/support/ketcindy/forLinux/ReadmeLinuxE.pdf + texmf-dist/doc/support/ketcindy/forLinux/ReadmeLinuxJ.pdf + texmf-dist/doc/support/ketcindy/forLinux/setcindyetc.sh + texmf-dist/doc/support/ketcindy/forLinux/setketcindy.sh + texmf-dist/doc/support/ketcindy/forLinux/setwork.sh + texmf-dist/doc/support/ketcindy/forMac/Forsettingmanually/ketcindy.conf + texmf-dist/doc/support/ketcindy/forMac/Forsettingmanually/ketcindy.ini + texmf-dist/doc/support/ketcindy/forMac/ReadmeMacE.pdf + texmf-dist/doc/support/ketcindy/forMac/ReadmeMacJ.pdf + texmf-dist/doc/support/ketcindy/forMac/setketcindy.command + texmf-dist/doc/support/ketcindy/forMac/setwork.command + texmf-dist/doc/support/ketcindy/forWindows/Forsettingmanually/ketcindy.conf + texmf-dist/doc/support/ketcindy/forWindows/Forsettingmanually/ketcindy.ini + texmf-dist/doc/support/ketcindy/forWindows/ReadmeWinE.pdf + texmf-dist/doc/support/ketcindy/forWindows/ReadmeWinJ.pdf + texmf-dist/doc/support/ketcindy/forWindows/setketcindykettex.bat + texmf-dist/doc/support/ketcindy/forWindows/setketcindyothertex.bat + texmf-dist/doc/support/ketcindy/forWindows/setketcindytexlive.bat + texmf-dist/doc/support/ketcindy/forWindows/setketcindyw32J.bat + texmf-dist/doc/support/ketcindy/forWindows/setwork.bat + texmf-dist/doc/support/ketcindy/ketcindyjs/3dlist.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/Cindy.js + texmf-dist/doc/support/ketcindy/ketcindyjs/Cindy.js.map + texmf-dist/doc/support/ketcindy/ketcindyjs/CindyJS.css + texmf-dist/doc/support/ketcindy/ketcindyjs/basic1list.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/basic2list.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/basic3list.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/ignoredfun.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/katex-plugin.js + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Main-Regular.ttf + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Main-Regular.woff + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Main-Regular.woff2 + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Math-Italic.ttf + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Math-Italic.woff + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Math-Italic.woff2 + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/katex.min.css + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/katex.min.js + texmf-dist/doc/support/ketcindy/ketcindyjs/makefunlist.cdy + texmf-dist/doc/support/ketcindy/ketcindyjs/webfont.js + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyGuideE.pdf details="User guide (English)" + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyGuideJ.pdf details="User guide (Japanese)" language="ja" + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyReferenceE.pdf details="Reference manual (English)" + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyReferenceJ.pdf details="Reference manual (Japanese)" language="ja" + texmf-dist/doc/support/ketcindy/ketmanual/KeTPicStyleE.pdf + texmf-dist/doc/support/ketcindy/ketmanual/KeTPicStyleJ.pdf + texmf-dist/doc/support/ketcindy/samples/s01figure/s0101figure.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0101figurepdf.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0102figure2.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0103polygon.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0104shade.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0105vector.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0106bowdotfill.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0106bowhatch.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0107hyperbolahatch.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0108cycloid.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0109epitrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0110hypotrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0201basic.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0202graph1.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0203graph2.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0204graph3.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0205coniccurve.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0206defexp.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0207envelope.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0208intersecthatch.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0209diffeq.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0210diffeq2.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0212implicit.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0213implicithatch.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0214inputvalue.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0215quacurve.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0301table.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0302table2.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0302table2line.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0303gridpaper.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0303gridpaper1.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0303gridpaperlog.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0303gridpaperloglog.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0304graphforincanddec.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0304multitables.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0305twotables.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0306tenkey.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/dogwalk.png + texmf-dist/doc/support/ketcindy/samples/s04bezier/heart.png + texmf-dist/doc/support/ketcindy/samples/s04bezier/mtfuji.png + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0401bezierbasic.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0402ospline.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0403oshimaspline.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0403osplinecrspline.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0404heart.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0405dogwalk.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0406mtfuji.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/DownloadPolyhedrons_objE.txt + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/DownloadPolyhedrons_objJ.txt + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0501basic.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0501plane.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0502spacecurve.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0503perp.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0504embed.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0505bezier3d.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0506embedhatch.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0507polyhedron.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0508concatobj.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0509cubiccut.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0510cubiccut2.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0511tetra.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0521totaldiffskeleton.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0522conecutmaxima.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0601cycloid.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0602diffeq.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0603envelope.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0604diffeq2.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0605cycloid2.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0606epitrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0607hypotrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0608ellipsefocus.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0609hyperbolafocus.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0610parabolafocus.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0611generalangle.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/figwall/wallpaper.tex + texmf-dist/doc/support/ketcindy/samples/s07slides/howtouseslideE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/howtouseslideJ.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basic.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basic.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basicE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basicE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graph.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graph.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graphE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graphE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeat.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeat.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeatE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeatE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thin.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thin.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thinE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thinE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705para.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705para.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705paraE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705paraE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animate.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animate.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animateE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animateE.txt + texmf-dist/doc/support/ketcindy/samples/s08R/s0801plotR.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0802plotR2.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0803plotdiscR.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0804boxplot.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0805histplot.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0806random.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0807dataframe.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0808ttest.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0901paraboloid.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0902cone.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0903saddle.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0904mant.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0905sphere.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0906curveonsurf.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0907intersectcrvsf.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0908wiredata.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0909conecut.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0910multisurfaces.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0911saddleskeleton.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0912animesaddle.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0913animeparaboloid.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0914animemobius.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0915discont.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0916multiandcut.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1001basic.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1001factorial.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1002equation.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1003trig.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1004calcby.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1005diffint.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1005intplot.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1006calculus.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1007linalg.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1008idtable.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1009diffeq.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1010fourier.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1011matrixop.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1012for.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1012odefor.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1013incdec.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1014primenumber.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1100list.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1101calculator1.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1102calculator2.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1103calcby.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1104diff.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1105fint101.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1105fzero109.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1106fmmx110.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1110integrate.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1111grobner1.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1112residue.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1201integrate.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1201integrate2.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1202calcby.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1202equations.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1301basic.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1303objparts.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1304symbol.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1305hyperpara.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1306poly.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1307poly2.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1308discont.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1309discont2.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1310totaldiff.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1311plate.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1312plane.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1313changescale.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/s1401csvprocessing.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/s1402copypaste.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/s1403maketableJ.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/sample1.csv + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/sample2.csv + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1501paraboloidR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1502coneR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1503saddleR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1504mantR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1505sphereR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1506curveonsurfR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1507intersectcrvsfR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1508multisurfacesR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1509wiredataR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1510conecutR.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/howtouseketcindyjsE.txt + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/howtouseketcindyjsJ.txt + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1601basic.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1602diffeq2.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1603gamow.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1604putoncurve.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1605triangle.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1606morley.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1607inputbox.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1608texcalc.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketJSmisc/s1609trigratio.cdy + texmf-dist/doc/support/ketcindy/samples/s17spacekc/ReadmeE.txt + texmf-dist/doc/support/ketcindy/samples/s17spacekc/ReadmeJ.txt + texmf-dist/doc/support/ketcindy/samples/s17spacekc/Spacekc.cdy + texmf-dist/doc/support/ketcindy/samples/s17spacekc/Spacekc.pdf + texmf-dist/doc/support/ketcindy/samples/s17spacekc/SpacekcReference.pdf + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/KetCindyPlugin.iml + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/build.xml + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/config/META-INF/services/de.cinderella.api.cs.CindyScriptPlugin + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/lib/cindy2.jar + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/lib/commons-math.jar + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/src/KetCindyPlugin.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin150906.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160515.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160518.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160530.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160601.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160604.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160609.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160723.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin161019.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin161021.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin161209.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin170605.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin170906.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin171112.java + texmf-dist/doc/support/ketcindy/source/cdy-templates/Makefile + texmf-dist/doc/support/ketcindy/source/howtoinstall/HowToInstallE.tex + texmf-dist/doc/support/ketcindy/source/howtoinstall/HowToInstallJ.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/3dscreen.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/3dstart.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/CindyhelpE.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Dotfill.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-10.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-6.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-7.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-9.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-ya1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead2-10.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead2-6.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead2-7.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead2-8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead2-9.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Framedata.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita5E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita6E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita7.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita7E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita9.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Intersectcurvsf.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/IntersectsgpL0.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/IntersectsgpL1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/IntersectsgpL2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Nearestpt.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Nearestpt1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/PutcellE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/addax1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/addax2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/addgraph.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/angle-mark.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/angle.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/anglearrow.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/anglearrowscreen.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/anglemark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/anglemark2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/animestart.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/arrowdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/arrowhead.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/assign.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bbdata.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bezier3d1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/binvsnormal.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bisector.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bowdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bowdata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/boxframeslide.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/boxplot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/boxplot01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/calcbyr01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/calling.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/cardioid1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/changetable.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkCR.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb10.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb11.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb9.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe6.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe7.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbmain.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbs1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbs2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkmc1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksm1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksm2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksy1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksy2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circle-by-radius.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata3.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/coloring.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/colortable.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/concatobj.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/concept.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/conceptE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/crosspoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/crvsfparadata1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/crvsfparadata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deffun01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deffun02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deffun03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/delete.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deqplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deqplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deqplot3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/derivative.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/diffeq1.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/drawfigures1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/drawpoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/drwxy.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipse-by-foci.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipsecindy.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipseplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipseplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/embed01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/embed02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/embed03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/enclosing.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ewns.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ewsn.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/execcmdc1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/expr.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/exprrot.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/exprrot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/fontsize.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/fourier.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/fourierseries.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustume.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustumew.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustumewn.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustumw.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/gpro01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/gpro02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/greenring.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/grid-less.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/grid-more.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/histgram.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/htickmark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/htickmark01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hyper1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hyperbola-by-foci.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/implicit.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/implicit1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter02E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intersectcrvs1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intersectcrvs2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intersection.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intlog.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/inversefun.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/invparapt.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/joincrvs.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/kobayashi.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/kobayashiE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter3d.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/lineplot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot3view.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/makeslide.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/makeslideE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/maxfun01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/maxfun02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/maxima1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab06.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/middle.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mirror.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mkpttable.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mkpttableE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/move.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/moviedata01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/moviedata02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-circle.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-line.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-parallel.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-perp.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mvgaiyou01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxbatch.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex01E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/nohiddenbyfaces1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/nohiddenbyfaces2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/numptcrv.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/oresenex01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ospline1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ospline2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ovaldata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabola-by-foci.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabola.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabolaplot.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabolaplot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabolaplotE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramoncrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv3d1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv3d2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pdexample.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pdtoconsole.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/periodfun.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/periodfun2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/perpplane.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/perppt.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata04.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdatar1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdatatan1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdatatan2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pointdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pointoncrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pointsize.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/poison01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polar-of-point.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygon.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplane1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplane2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplot2.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptcrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptselected01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptselected02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptstart.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putcell.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putcol.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putcolE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putintersect.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putoncurve.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putoncurve.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putonline1.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putonseg.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rasen.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/readobj.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata3d01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata3d02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata3d03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectpoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatedata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatedata3d01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatedata3d02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatepoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rshade.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ruler.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ruler1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s106bowhatch.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s10diffint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s210diffeq1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s305graphforincanddec.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s305incanddec.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/saddle1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/saddle1E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/saddle2E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scaledata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scaledata3d.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scalepoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scatter.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/segmark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/segment.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/select-lines.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/select-points.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setax-theta.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setcolor.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setorigin.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setorigin.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setscaling.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setwindow.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sf3ddata3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sf3ddata4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara04.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara05.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfcut.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shade.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shade01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shade01E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shadeE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/single-add.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/skeletonparadata01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/skeletonparadata02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/skeletonparadata03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slide01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slide01E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidepdf1.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidepdf2.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidepdf3.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slider.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sliderepeat.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sliderepeatE.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidescreen.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidescript.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slot.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slotE.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/snap.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/spacelinecurve1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/spacelinecurve2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start04.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start05.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start06.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start07.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start08.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start09.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start10.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/surfacemodel.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/surfacemodelE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list00.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list001.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list001E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list01E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list02E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list03E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list04.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list04E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/table01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/table02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/table03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample1E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample2E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tangent.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/taylor.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tetrahedron.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translate-view.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translate01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translatedata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translatepoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/trimarrow.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/trimseg.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/vertex01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire04.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/zogen3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/zoom-in.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/zoom-out.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyGuideE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyGuideJ.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyReferenceE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyReferenceJ.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTPicStyleE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTPicStyleJ.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeLinuxE.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeLinuxJ.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeMacE.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeMacJ.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeWinE.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeWinJ.tex + texmf-dist/doc/support/ketcindy/source/spacekc/SpacekcReferenceE.tex + texmf-dist/doc/support/ketcindy/source/spacekc/SpacekcReferenceJ.tex +runfiles size=1493 + texmf-dist/scripts/ketcindy/allbuttons.cdy + texmf-dist/scripts/ketcindy/data/fontF/0Small.png + texmf-dist/scripts/ketcindy/data/fontF/0Smalla-h.png + texmf-dist/scripts/ketcindy/data/fontF/0Smalli-o.png + texmf-dist/scripts/ketcindy/data/fontF/0Smallp-w.png + texmf-dist/scripts/ketcindy/data/fontF/0Smallxyz.png + texmf-dist/scripts/ketcindy/data/fontF/nsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/nsi.txt + texmf-dist/scripts/ketcindy/data/fontF/pcr.cdy + texmf-dist/scripts/ketcindy/data/fontF/pcr.txt + texmf-dist/scripts/ketcindy/data/fontF/qcr.cdy + texmf-dist/scripts/ketcindy/data/fontF/qcr.txt + texmf-dist/scripts/ketcindy/data/fontF/rcr.cdy + texmf-dist/scripts/ketcindy/data/fontF/rcr.txt + texmf-dist/scripts/ketcindy/data/fontF/tsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/tsi.txt + texmf-dist/scripts/ketcindy/data/fontF/xsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/xsi.txt + texmf-dist/scripts/ketcindy/data/fontF/ysi.cdy + texmf-dist/scripts/ketcindy/data/fontF/ysi.txt + texmf-dist/scripts/ketcindy/data/fontF/zsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/zsi.txt + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r01.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r02.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r03.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r04.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r05.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/readme.pdf + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/readme.txt + texmf-dist/scripts/ketcindy/ketcindy.conf + texmf-dist/scripts/ketcindy/ketcindy.ini + texmf-dist/scripts/ketcindy/ketcindy.pl + texmf-dist/scripts/ketcindy/ketcindy.sh + texmf-dist/scripts/ketcindy/ketjava/KetCindyPlugin.jar + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dhelpE.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dhelpJ.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dlogr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dr.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic1logr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic1r.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic2logr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic2r.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic3logr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic3r.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindylibhelpE.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibhelpJ.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvhelpE.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvhelpJ.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvlogr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvr.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindyliboutlogr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindyliboutr.cs + texmf-dist/scripts/ketcindy/ketlib/ketpicR/ketpic5_2_4.r + texmf-dist/scripts/ketcindy/ketlib/ketpiccurrent.r + texmf-dist/scripts/ketcindy/ketlib/ketpiccurrent_rep2e.r + texmf-dist/scripts/ketcindy/ketlib/ketpiccurrent_reptikz.r + texmf-dist/scripts/ketcindy/ketlib/maximaL/fourier_sec.max + texmf-dist/scripts/ketcindy/ketlib/maximaL/matoperation.max + texmf-dist/scripts/ketcindy/ketlib/maximaL/pdefourier.mac + texmf-dist/scripts/ketcindy/ketlib/maximaL/poincare.mac + texmf-dist/scripts/ketcindy/ketlib/maximaL/rkfun.lisp + texmf-dist/scripts/ketcindy/ketlib/oshima/os_muldif.pdf + texmf-dist/scripts/ketcindy/ketlib/oshima/os_muldif.rr + texmf-dist/scripts/ketcindy/ketlibC/ketcommon.h + texmf-dist/scripts/ketcindy/ketlibC/ketcommonhead.h + texmf-dist/scripts/ketcindy/ketlibC/ketlibClog.txt + texmf-dist/scripts/ketcindy/ketlibC/surflib.h + texmf-dist/scripts/ketcindy/ketlibC/surflibhead.h + texmf-dist/scripts/ketcindy/ketoutset.txt + texmf-dist/scripts/ketcindy/setketcindy.txt + texmf-dist/scripts/ketcindy/template0.cdy + texmf-dist/scripts/ketcindy/template1basic.cdy + texmf-dist/scripts/ketcindy/template3Dfigure.cdy + texmf-dist/scripts/ketcindy/template4ketcindyjs.cdy + texmf-dist/tex/latex/ketcindy/ketlayer.sty + texmf-dist/tex/latex/ketcindy/ketlayer2e.sty + texmf-dist/tex/latex/ketcindy/ketmedia.sty + texmf-dist/tex/latex/ketcindy/ketpic.sty + texmf-dist/tex/latex/ketcindy/ketpic2e.sty + texmf-dist/tex/latex/ketcindy/ketslide.sty + texmf-dist/tex/latex/ketcindy/ketslide2.sty +catalogue-contact-bugs https://github.com/ketpic/ketcindy/issues +catalogue-contact-repository https://github.com/ketpic/ketcindy +catalogue-contact-support https://github.com/ketpic/ketcindy/issues +catalogue-ctan /graphics/ketcindy +catalogue-license gpl3+ +catalogue-topics maths graphics +catalogue-version 20191225.0 + +name ketcindy.aarch64-linux +category Package +revision 49033 +shortdesc aarch64-linux files of ketcindy +containersize 340 +containerchecksum ef8625fbf6a66f5904e29d2bda3a9529ef1b718a590b2d33a47bbdb609991f2ec9f53e929a59d71a70bcce901dcb1581eefb79ea806928b4d45267b7fc71bfdd +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ketcindy + +name ketcindy.amd64-freebsd +category Package +revision 49033 +shortdesc amd64-freebsd files of ketcindy +containersize 344 +containerchecksum 1d1a2d0d88ef205bc7dab929e5e8451ef49df029092c63d7d7961f1891ac2300929be3d454768e832e46074c97f0b165c3b57430291bd38c98c694acceaecb40 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ketcindy + +name ketcindy.amd64-netbsd +category Package +revision 49033 +shortdesc amd64-netbsd files of ketcindy +containersize 344 +containerchecksum 8b0a7bc585dad7265a56a0528f7e2742c64a61513535ca46e2664f90e0393cb748c53a8ba717a8ac575f430236c7594fe48c89f42d500ff54d9c9bd3c1fc1e97 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ketcindy + +name ketcindy.armhf-linux +category Package +revision 49033 +shortdesc armhf-linux files of ketcindy +containersize 344 +containerchecksum d106825d5a0d971562974f15024f080d7d1e960497969b4b4fd28f31d9086057716577876185dbab23d42f47dfb91f7d72644be9cc498e435af358b46757e1f6 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ketcindy + +name ketcindy.i386-cygwin +category Package +revision 49033 +shortdesc i386-cygwin files of ketcindy +containersize 340 +containerchecksum 9956776f379f7bb7bd03abdb0111b521bb3fa95e5fda18a7c9360044601a092df7d96d2b70aae31293764f2996e5a7dc17ea056b54cf9c9b886ad8066da02876 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ketcindy + +name ketcindy.i386-freebsd +category Package +revision 49033 +shortdesc i386-freebsd files of ketcindy +containersize 344 +containerchecksum b9914b19b4dcee85e45e3afa1672344ea66670ef12993787510d55835144215536cc60343c7513caa5981f0ab8dbe2d9340179b8d193427fd6d0a7ea96fe2bf2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ketcindy + +name ketcindy.i386-linux +category Package +revision 49033 +shortdesc i386-linux files of ketcindy +containersize 340 +containerchecksum 230bfc5ca4cc0544dabaceda7b20e4ff37951adcec95d720f32a45aeab02b6a4e08d1eed975ad701d7f813f3686f47d48d428495c429af75ff7fa5ed0e632051 +binfiles arch=i386-linux size=1 + bin/i386-linux/ketcindy + +name ketcindy.i386-netbsd +category Package +revision 49033 +shortdesc i386-netbsd files of ketcindy +containersize 340 +containerchecksum 15118ac8b122b4b01aaf9e4b131e276dcf35331a6c0cdb578031fcea7946548e5caaee76c06a9940ac35d9455beb12c34b1f0b79112754c77b45b7e57878e790 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ketcindy + +name ketcindy.i386-solaris +category Package +revision 49033 +shortdesc i386-solaris files of ketcindy +containersize 340 +containerchecksum edf0c5ac29c226c1d44bdbb2d42f8feaeec168c63ba586b90d0b96b602a7b7b7e58cdb1ed9e91c46438574ed0830b1b49041282721aab9a4fa515d918c963524 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ketcindy + +name ketcindy.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ketcindy +containersize 340 +containerchecksum 66e789cb6056ba27df46ad478bac99e29ef304344142f160a5c543441aa2b0e9953e3ce61eee5e0f0ee5094b4e35b64977bcd0f4c64dc6ceeb3c833b28a59d2f +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ketcindy + +name ketcindy.win32 +category Package +revision 49033 +shortdesc win32 files of ketcindy +containersize 684 +containerchecksum 6f28e9fefe4712512e5c62eb2fd4e54f18153678dbbbd61b4580b84d39a0e7d561fcdecde9cc8f2d0586d14e6cdba9071db025c968a8288bc2b09d2e19aa829d +binfiles arch=win32 size=1 + bin/win32/ketcindy.exe + +name ketcindy.x86_64-cygwin +category Package +revision 49033 +shortdesc x86_64-cygwin files of ketcindy +containersize 344 +containerchecksum b5aa925a83c9355f359714dd5848e347494a039e2255efbd3a549ad87624f2403c7e3a835804516c2a1f4fa0675ef5001481065bff7037e4930ae9fab3b9322c +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ketcindy + +name ketcindy.x86_64-darwinlegacy +category Package +revision 49033 +shortdesc x86_64-darwinlegacy files of ketcindy +containersize 352 +containerchecksum c6f37343a8af8790ea7b6f643afd5abcd7894a5af2d0eedf41c6c614d2e64fecc4d97d7743e101553f2a840b72426d1b2a60a29dbf84ed8e824e020c0ae96997 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ketcindy + +name ketcindy.x86_64-linux +category Package +revision 49033 +shortdesc x86_64-linux files of ketcindy +containersize 344 +containerchecksum dc5f3f657b8c07f72d8d540672171cf22547b0ae184471c2b51376637119595eeeeaf56e26b25d46399e9cd8cccd4e98ba359291ba8c4cf5c1c3f8633d828ce6 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ketcindy + +name ketcindy.x86_64-linuxmusl +category Package +revision 49033 +shortdesc x86_64-linuxmusl files of ketcindy +containersize 348 +containerchecksum 2baa668fe0c818a3a15842f6bb8532fb9cb74514e50198286feed960bab1442b8f463fbd1690eed7316a6d48686fc9df1a609238ecb14cca615e60c95e9e63d5 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ketcindy + +name ketcindy.x86_64-solaris +category Package +revision 49033 +shortdesc x86_64-solaris files of ketcindy +containersize 344 +containerchecksum d09e91f25d8ff6838915d5722823c26fc3c9c69b2f30827bb603066e05db2e8356e9ea2a7c95d9908cd26f49c1663906435c4aa88702873e5a99dda52dce292d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ketcindy + +name keycommand +category Package +revision 18042 +shortdesc Simple creation of commands with key-value arguments +relocated 1 +longdesc The package (which requires e-TeX) provides a natural way to +longdesc define commands with optional keys. The package provides +longdesc \newkeycommand, \renewkeycommand, \providekeycommand, +longdesc \newkeyenvironment and \renewkeyenvironment, together with +longdesc \keycmd for a more advanced interface. The package is based on +longdesc kvsetkeys by Heiko Oberdiek. +containersize 4904 +containerchecksum 90c2246edbfd199d98a05df336ee228c65f26073f3c95c5ae55c3201cf59453bb5afb95ad367ab4af6b36dc4e0c52a25bb10f80fba265003c701122247be50d9 +doccontainersize 343996 +doccontainerchecksum b99b58407f5d93fb868bf525ab199c41e07fcf5f31c7a6a14cf68622ef3a34e44d1014e4d34594441144af5c7d9a9853cef1505311928b32a9fcbd41c7bf4284 +docfiles size=125 + RELOC/doc/latex/keycommand/README details="Readme" + RELOC/doc/latex/keycommand/keycommand-example.pdf details="Example of usage" + RELOC/doc/latex/keycommand/keycommand-example.tex + RELOC/doc/latex/keycommand/keycommand.pdf details="Package documentation" +srccontainersize 15252 +srccontainerchecksum 44b63a11f08c3bd47ab337ccfa1b0b2737624f77228ca1d745020e2c1ca1b1616c1bfadda1b99c362c0b372bfbdf37d839f0d0457082922a54a66608c82aa928 +srcfiles size=16 + RELOC/source/latex/keycommand/keycommand.drv + RELOC/source/latex/keycommand/keycommand.dtx + RELOC/source/latex/keycommand/keycommand.ins +runfiles size=5 + RELOC/tex/latex/keycommand/keycommand.sty +catalogue-ctan /macros/latex/contrib/keycommand +catalogue-license lppl +catalogue-topics keyval +catalogue-version 3.1415 + +name keyfloat +category Package +revision 52160 +shortdesc Provides a key/value interface for generating floats +relocated 1 +longdesc The keyfloat package provides a key/value user interface for +longdesc quickly creating figures with a single image each, figures with +longdesc arbitrary contents, tables, subfloats, rows of floats, floats +longdesc located [H]ere, floats in the [M]argin, and floats with text +longdesc [W]rapped around them. Key/value combinations may specify a +longdesc caption and label, a width proportional to \linewidth, a fixed +longdesc width and/or height, rotation, scaling, a tight or loose frame, +longdesc an \arraystretch, a continued float, additional supplemental +longdesc text, and an artist/author's name with automatic index entry. +longdesc When used with the tocdata package, the name also appears in +longdesc the List of Figures. Floats may be placed into a row +longdesc environment, and are typeset to fit within the given number of +longdesc columns, continuing to the next row if necessary. Nested +longdesc sub-rows may be used to generate layouts such as two small +longdesc figures placed vertically next to one larger figure. Subfloats +longdesc are supported by two environments. +containersize 6644 +containerchecksum 3d2be77c6ff60292b3cb50e8033d5f182fa731b6b435e4eec4d6a3f4376e6f0487a6bc5bfbb59da37ba6d620721f3756e42a795bc26547d2218f66b2dcf82a4d +doccontainersize 1033348 +doccontainerchecksum b678b7e0fac699625b9638b67e3e00b892ed4d0a01d78ef0fb13ce65d2a1e74afea50bbb9f4ffbfaa37b1e80a96dd1cd8f8420e8b1b5f1cbf6f6155d745a7604 +docfiles size=259 + RELOC/doc/latex/keyfloat/README.txt details="Readme" + RELOC/doc/latex/keyfloat/images/image.pdf + RELOC/doc/latex/keyfloat/images/image2.pdf + RELOC/doc/latex/keyfloat/keyfloat.pdf details="Package documentation" +srccontainersize 27136 +srccontainerchecksum 32c7cfd96870d94034984b923d47075a2e071df11290f076ddb4def33236aa3ca40118382072b3d17aeb8d8fa263c1c0575182ff5b91a4c410f6c7268100eefa +srcfiles size=35 + RELOC/source/latex/keyfloat/keyfloat.dtx + RELOC/source/latex/keyfloat/keyfloat.ins +runfiles size=9 + RELOC/tex/latex/keyfloat/keyfloat.sty +catalogue-contact-home http://bdtechconcepts.com +catalogue-ctan /macros/latex/contrib/keyfloat +catalogue-license lppl1.3 +catalogue-topics float +catalogue-version 2.01 + +name keyindex +category Package +revision 50828 +shortdesc Index entries by key lookup +relocated 1 +longdesc The package provides functionality for producing an index +longdesc without directly entering index entries into the text using the +longdesc \index command, but instead by looking up short keys and +longdesc printing a predefined string in the main text and adding a +longdesc corresponding index entry. The standard use case is the +longdesc production of an index of names. +containersize 1388 +containerchecksum 93de5becfa1b4950f518bc004f0dbdfe96f567e17ec4b7656326b89201f1f85edcbdaa771dc8568fc0c87bcbd8877b618d0d00ce387ca70036f6794a8b870695 +doccontainersize 146072 +doccontainerchecksum 4be79367bed5a7bc3f5bfd6c10f7ba6a4c87ed51139e8f8a7f55c59ae3ce6c1aa10df1c88728f7dbb4573634bba2ee599378755cf6c77a2ccf8d93ece5540736 +docfiles size=38 + RELOC/doc/latex/keyindex/README.md details="Readme" + RELOC/doc/latex/keyindex/keyindex.pdf details="Package documentation" + RELOC/doc/latex/keyindex/makenameindex +srccontainersize 3464 +srccontainerchecksum 3f177cf8d323fa6dc0b47742a27cada66cc505777a20c26864dcee73c272e46ba3867c4120f480be8ce5afcfc6896d908eae0f336cf306a13019bd0f0206f9dd +srcfiles size=3 + RELOC/source/latex/keyindex/keyindex.dtx + RELOC/source/latex/keyindex/keyindex.ins +runfiles size=1 + RELOC/tex/latex/keyindex/keyindex.sty +catalogue-contact-bugs https://github.com/rzach/keyindex/issues +catalogue-contact-repository https://github.com/rzach/keyindex +catalogue-ctan /macros/latex/contrib/keyindex +catalogue-license lppl1.3c +catalogue-topics index +catalogue-version 1.0 + +name keyreader +category Package +revision 28195 +shortdesc A robust interface to xkeyval +relocated 1 +longdesc The package provides a robust interface to controlling keys in +longdesc xkeyval, removing some of that package's restrictions. The +longdesc package also addresses some of the issues now covered by the +longdesc author's ltxkeys package, which was assumed to be a replacement +longdesc for keyreader. Since keyreader has remained a favourite with +longdesc users, it has been reinstated. +containersize 9192 +containerchecksum d1786b07a3dc87f94248043f0bd941dcd8dccce29132e67118d3fedc0fe207a2df846d850851217fa87ed2219915719e70fa73ec284ed420072654c578ee0b3c +doccontainersize 233148 +doccontainerchecksum 05c45cb13bd2612dd5b048f296437b605117c71a52cef2a1b90ad58b693a31d05da9491464ea9b208dd7eed3f3cfc96e9b5a00f5a77e5d492208fe1e924dde4c +docfiles size=64 + RELOC/doc/latex/keyreader/README details="Readme" + RELOC/doc/latex/keyreader/keyreader-example1.tex + RELOC/doc/latex/keyreader/keyreader-guide.pdf details="Package documentation" + RELOC/doc/latex/keyreader/keyreader-guide.tex +runfiles size=10 + RELOC/tex/latex/keyreader/keyreader.sty +catalogue-ctan /macros/latex/contrib/keyreader +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 0.5b + +name keystroke +category Package +revision 17992 +shortdesc Graphical representation of keys on keyboard +relocated 1 +longdesc A LaTeX package which provides macros for the graphical +longdesc representation of the keys on a computer keyboard. +containersize 6820 +containerchecksum e04e13e23b3342686078c2278d3b6f7c8678d99acda197f50296ade3dd91bc4316323a669efd7238fd246c60f169c694677252601a81d9e23b49a1e37049c93a +doccontainersize 33556 +doccontainerchecksum bac7f2e879796c0ccd5ee28c47aa79e9208ce0d01456de9ada6cd00d822c098cfa318615311c43b1815de0e6968252f6005a3dfd9d0475ee7dec25f7d24d1d86 +docfiles size=12 + RELOC/doc/latex/keystroke/README details="Readme" + RELOC/doc/latex/keystroke/key-test.pdf details="Package demo" + RELOC/doc/latex/keystroke/key-test.tex +runfiles size=10 + RELOC/tex/latex/keystroke/keystroke.sty + RELOC/tex/latex/keystroke/keystroke_left.eps + RELOC/tex/latex/keystroke/keystroke_left.pdf + RELOC/tex/latex/keystroke/keystroke_middle.eps + RELOC/tex/latex/keystroke/keystroke_middle.pdf + RELOC/tex/latex/keystroke/keystroke_right.eps + RELOC/tex/latex/keystroke/keystroke_right.pdf +catalogue-ctan /macros/latex/contrib/keystroke +catalogue-license gpl +catalogue-topics doc-supp +catalogue-version 1.6 + +name keyval2e +category Package +revision 23698 +shortdesc A lightweight and robust key-value parser +relocated 1 +longdesc The package provides lightweight and robust facilities for +longdesc creating and managing keys. Its machinery isn't as extensive as +longdesc that of, e.g., the ltxkeys package, but it is equally robust; +longdesc ease of use and speed of processing are the design aims of the +longdesc package. +containersize 3228 +containerchecksum 08495711a9b509707ce6da359f9743b267baaa6ba6e18e41c965ce016c4c51e1bb7353769ecc9596e9bc415976449612f602e291608d306ee5baa69a4e823160 +doccontainersize 314328 +doccontainerchecksum 424035c6250990b4104200fdab744d50643b6ce36ea717f50544fecd40746d47d7d2145203f0d6f19652a7217c99eb599a1c7d8b0e3a0fe00e1355c416cd4294 +docfiles size=91 + RELOC/doc/latex/keyval2e/README details="Readme" + RELOC/doc/latex/keyval2e/keyval2e-examples.pdf + RELOC/doc/latex/keyval2e/keyval2e-examples.tex + RELOC/doc/latex/keyval2e/keyval2e-guide.pdf details="Package documentation" + RELOC/doc/latex/keyval2e/keyval2e-guide.tex +runfiles size=3 + RELOC/tex/latex/keyval2e/keyval2e.sty +catalogue-ctan /macros/latex/contrib/keyval2e +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 0.0.2 + +name keyvaltable +category Package +revision 54677 +shortdesc Re-usable table layouts separating content and presentation +relocated 1 +longdesc The main goal of this package is to offer means for typesetting +longdesc tables easily and yet still looking rather nicely in a way that +longdesc separates content from presentation and with re-usable layout +longdesc for tables of the same type. For this purpose, the package +longdesc provides the environment KeyValTable, which allows one to +longdesc typeset tables that have a previously defined column layout and +longdesc whose rows can be produced in a key-value fashion. +containersize 8740 +containerchecksum 5f3f337347df00a955dd7d7694a51ecce15027580d2264da3f580cb9ea602f6e1583f41e72cbe39a5d4ffb36640eb26cd39132967e0e5a138de8703eb1651de7 +doccontainersize 459000 +doccontainerchecksum 7709c3ea7ad6fac4625620bc86bddeda751c6e36accf7b14b3dab2d5280c77ee4b704b2657511c4226efaffc7db79cb8eea068566ae099354920a522975dbef5 +docfiles size=117 + RELOC/doc/latex/keyvaltable/README.md details="Readme" + RELOC/doc/latex/keyvaltable/keyvaltable.pdf details="Package documentation" +srccontainersize 37812 +srccontainerchecksum aeab384eab5a414cdee5162ccfea90284e9ccaa96129a2fcd77059abcdf2039350a8f6e17f4d5a7ea8759cf414daa620d12eb85ac42523ecfca70e6424e5df6c +srcfiles size=42 + RELOC/source/latex/keyvaltable/keyvaltable.dtx + RELOC/source/latex/keyvaltable/keyvaltable.ins +runfiles size=10 + RELOC/tex/latex/keyvaltable/keyvaltable.sty +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-license lppl1.2 +catalogue-topics table +catalogue-version 2.2 + +name kix +category Package +revision 21606 +shortdesc Typeset KIX codes +relocated 1 +longdesc Implements KIX codes as used by the Dutch PTT for bulk mail +longdesc addressing. (Royal Mail 4 State Code.) KIX is a registered +longdesc trade mark of PTT Post Holdings B. V. +containersize 1304 +containerchecksum dd819518a80ca0486a191361625b58f91d00ccac88a2f69269bd6e1753f6c87dd3c97d39a14a5dc3768c9ecccbc981106eba1f495cb7870103a828ea69ed8bef +doccontainersize 123796 +doccontainerchecksum 3d3816d395e69ec83c88fe55801cab052b12f5e38702edafec2d3f9225c80a31165dca553b60401dedac7689c583feb00615e41c7179fd19ccdc420fbd5e6d86 +docfiles size=32 + RELOC/doc/latex/kix/kix.pdf details="Package documentation" + RELOC/doc/latex/kix/kix.tex +runfiles size=1 + RELOC/tex/latex/kix/kix.sty +catalogue-also pst-barcode kixfont +catalogue-ctan /macros/latex/contrib/kix +catalogue-license lppl1 +catalogue-topics barcode + +name kixfont +category Package +revision 18488 +shortdesc A font for KIX codes +relocated 1 +longdesc The KIX code is a barcode-like format used by the Dutch PTT to +longdesc encode country codes, zip codes and street numbers in a +longdesc machine-readable format. If printed below the address line on +longdesc bulk mailings, a discount can be obtained. The font is +longdesc distributed in Metafont format, and covers the numbers and +longdesc upper-case letters. +containersize 1828 +containerchecksum a866364705d75ab560488c84a5e403755acfffe7b49b8e6dd65342f45f852a5be9d4072d750fae606c3d5789e1d46458da66f0af6fb9f9e0225c1d9acf69d4a5 +doccontainersize 15960 +doccontainerchecksum ca250703364924daf9827ddeb48126fb21ff5ec3230afbc3f6778d23e96dbbb16173e5504900032ddbe14920cb40adf8130be50ee92f3c9c2dbceb95b8ecb90f +docfiles size=9 + RELOC/doc/fonts/kixfont/kix.mf.asc + RELOC/doc/fonts/kixfont/kixtable.pdf details="Font table" + RELOC/doc/fonts/kixfont/kixtable.tex +runfiles size=2 + RELOC/fonts/source/public/kixfont/kix.mf + RELOC/fonts/tfm/public/kixfont/kix.tfm +catalogue-also kix pst-barcode +catalogue-ctan /fonts/kixfont +catalogue-license other-free +catalogue-topics font font-mf font-specialist barcode + +name kluwer +category Package +revision 54074 +shortdesc Kluwer publication support +relocated 1 +longdesc Most likely long obsolete, unfortunately. +containersize 53524 +containerchecksum 25210201032ab5cf867e8e46de560a2232e36cb636db8d6d533a6052ae125024f2fdb3d016aa68d49d5be4ded676a1e02108094c366fbc9cc443035edbc82107 +doccontainersize 61516 +doccontainerchecksum 0908a60833ebab53fda54708cb332f0b3e2ed6c071daa1b231570c6dca57b09b6c9e7e52afb606300b04f9c42794d6d6b7c2387ab35fdebae0ef4d346ca068e4 +docfiles size=54 + RELOC/doc/latex/kluwer/00readme + RELOC/doc/latex/kluwer/mouse.eps + RELOC/doc/latex/kluwer/sampkluw.dvi + RELOC/doc/latex/kluwer/sampkluw.ent + RELOC/doc/latex/kluwer/sampkluw.tex + RELOC/doc/latex/kluwer/sampopen.dvi + RELOC/doc/latex/kluwer/sampopen.tex + RELOC/doc/latex/kluwer/usrman.dvi + RELOC/doc/latex/kluwer/usrman.ent + RELOC/doc/latex/kluwer/usrman.tex +srccontainersize 2016 +srccontainerchecksum 12f20e51c0c7668761c2894ac6559f16f853c4d255331db36d9d50e21ac92103828d661d2df8358de24c8403f7a0292866ed4edd5c64e54e555e979475bb5adf +srcfiles size=3 + RELOC/source/latex/kluwer/kluwer.dtx + RELOC/source/latex/kluwer/kluwer.ins +runfiles size=114 + RELOC/bibtex/bst/kluwer/klunamed.bst + RELOC/bibtex/bst/kluwer/klunum.bst + RELOC/tex/latex/kluwer/klu10.clo + RELOC/tex/latex/kluwer/klu105.clo + RELOC/tex/latex/kluwer/klu11.clo + RELOC/tex/latex/kluwer/klu12.clo + RELOC/tex/latex/kluwer/klu9.clo + RELOC/tex/latex/kluwer/klucite.sty + RELOC/tex/latex/kluwer/kluedit.sty + RELOC/tex/latex/kluwer/klufloa.sty + RELOC/tex/latex/kluwer/klulist.sty + RELOC/tex/latex/kluwer/klumac.sty + RELOC/tex/latex/kluwer/klumath.sty + RELOC/tex/latex/kluwer/klumono.sty + RELOC/tex/latex/kluwer/klunote.sty + RELOC/tex/latex/kluwer/kluopen.sty + RELOC/tex/latex/kluwer/klups.sty + RELOC/tex/latex/kluwer/kluref.sty + RELOC/tex/latex/kluwer/klusec.sty + RELOC/tex/latex/kluwer/klut10.clo + RELOC/tex/latex/kluwer/klut11.clo + RELOC/tex/latex/kluwer/klut12.clo + RELOC/tex/latex/kluwer/klut9.clo + RELOC/tex/latex/kluwer/klutab.sty + RELOC/tex/latex/kluwer/kluwer.cls + +name knitting +category Package +revision 50782 +shortdesc Produce knitting charts, in Plain TeX or LaTeX +relocated 1 +longdesc The package provides symbol fonts and commands to write charted +longdesc instructions for cable and lace knitting patterns, using either +longdesc plain TeX or LaTeX. The fonts are available both as Metafont +longdesc source and in Adobe Type 1 format. +execute addMap knitfont.map +containersize 578004 +containerchecksum af3f7d2355054293c2c7973cfd40f0b741c8821884cca6ceec7562efeb92433bb81aa204b7b0ed4dae77cf674f4a63005f36133fbb5bf3d239f0cd5ef61a69ac +doccontainersize 815812 +doccontainerchecksum effaaf06a5593a9d73f2e93a722355009a0a957a2067a1432edb40d8dda7649c42571cbc37fc7aa4103ae2094dea7b1bfd861273566102c55546f71b326e7118 +docfiles size=223 + RELOC/doc/fonts/knitting/README details="Readme" + RELOC/doc/fonts/knitting/knitexamples.pdf + RELOC/doc/fonts/knitting/knitexamples.tex + RELOC/doc/fonts/knitting/knitkey.pdf + RELOC/doc/fonts/knitting/knitkey.tex + RELOC/doc/fonts/knitting/knitting-doc.pdf details="Package documentation" + RELOC/doc/fonts/knitting/knitting-doc.tex +runfiles size=294 + RELOC/fonts/afm/public/knitting/knitg_sc_in.afm + RELOC/fonts/afm/public/knitting/knitg_sc_out.afm + RELOC/fonts/afm/public/knitting/knitgg.afm + RELOC/fonts/afm/public/knitting/knitgn.afm + RELOC/fonts/afm/public/knitting/knitgp.afm + RELOC/fonts/afm/public/knitting/knitmg.afm + RELOC/fonts/afm/public/knitting/knitml.afm + RELOC/fonts/afm/public/knitting/knitmn.afm + RELOC/fonts/afm/public/knitting/knitmp.afm + RELOC/fonts/afm/public/knitting/knitmr.afm + RELOC/fonts/afm/public/knitting/knitn_sc_in.afm + RELOC/fonts/afm/public/knitting/knitn_sc_out.afm + RELOC/fonts/afm/public/knitting/knitnl.afm + RELOC/fonts/afm/public/knitting/knitnn.afm + RELOC/fonts/afm/public/knitting/knitnp.afm + RELOC/fonts/afm/public/knitting/knitnr.afm + RELOC/fonts/afm/public/knitting/knitwg.afm + RELOC/fonts/afm/public/knitting/knitwn.afm + RELOC/fonts/afm/public/knitting/knitwp.afm + RELOC/fonts/map/dvips/knitting/knitfont.map + RELOC/fonts/source/public/knitting/knit_dimens.mf + RELOC/fonts/source/public/knitting/knit_grid_cables.mf + RELOC/fonts/source/public/knitting/knit_nogrid_cables.mf + RELOC/fonts/source/public/knitting/knit_symbols.mf + RELOC/fonts/source/public/knitting/knitg_sc_in.mf + RELOC/fonts/source/public/knitting/knitg_sc_out.mf + RELOC/fonts/source/public/knitting/knitgg.mf + RELOC/fonts/source/public/knitting/knitgn.mf + RELOC/fonts/source/public/knitting/knitgp.mf + RELOC/fonts/source/public/knitting/knitmg.mf + RELOC/fonts/source/public/knitting/knitml.mf + RELOC/fonts/source/public/knitting/knitmn.mf + RELOC/fonts/source/public/knitting/knitmp.mf + RELOC/fonts/source/public/knitting/knitmr.mf + RELOC/fonts/source/public/knitting/knitn_sc_in.mf + RELOC/fonts/source/public/knitting/knitn_sc_out.mf + RELOC/fonts/source/public/knitting/knitnl.mf + RELOC/fonts/source/public/knitting/knitnn.mf + RELOC/fonts/source/public/knitting/knitnp.mf + RELOC/fonts/source/public/knitting/knitnr.mf + RELOC/fonts/source/public/knitting/knitwg.mf + RELOC/fonts/source/public/knitting/knitwn.mf + RELOC/fonts/source/public/knitting/knitwp.mf + RELOC/fonts/tfm/public/knitting/knitg_sc_in.tfm + RELOC/fonts/tfm/public/knitting/knitg_sc_out.tfm + RELOC/fonts/tfm/public/knitting/knitgg.tfm + RELOC/fonts/tfm/public/knitting/knitgn.tfm + RELOC/fonts/tfm/public/knitting/knitgp.tfm + RELOC/fonts/tfm/public/knitting/knitmg.tfm + RELOC/fonts/tfm/public/knitting/knitml.tfm + RELOC/fonts/tfm/public/knitting/knitmn.tfm + RELOC/fonts/tfm/public/knitting/knitmp.tfm + RELOC/fonts/tfm/public/knitting/knitmr.tfm + RELOC/fonts/tfm/public/knitting/knitn_sc_in.tfm + RELOC/fonts/tfm/public/knitting/knitn_sc_out.tfm + RELOC/fonts/tfm/public/knitting/knitnl.tfm + RELOC/fonts/tfm/public/knitting/knitnn.tfm + RELOC/fonts/tfm/public/knitting/knitnp.tfm + RELOC/fonts/tfm/public/knitting/knitnr.tfm + RELOC/fonts/tfm/public/knitting/knitwg.tfm + RELOC/fonts/tfm/public/knitting/knitwn.tfm + RELOC/fonts/tfm/public/knitting/knitwp.tfm + RELOC/fonts/type1/public/knitting/knitg_sc_in.pfb + RELOC/fonts/type1/public/knitting/knitg_sc_out.pfb + RELOC/fonts/type1/public/knitting/knitgg.pfb + RELOC/fonts/type1/public/knitting/knitgn.pfb + RELOC/fonts/type1/public/knitting/knitgp.pfb + RELOC/fonts/type1/public/knitting/knitmg.pfb + RELOC/fonts/type1/public/knitting/knitml.pfb + RELOC/fonts/type1/public/knitting/knitmn.pfb + RELOC/fonts/type1/public/knitting/knitmp.pfb + RELOC/fonts/type1/public/knitting/knitmr.pfb + RELOC/fonts/type1/public/knitting/knitn_sc_in.pfb + RELOC/fonts/type1/public/knitting/knitn_sc_out.pfb + RELOC/fonts/type1/public/knitting/knitnl.pfb + RELOC/fonts/type1/public/knitting/knitnn.pfb + RELOC/fonts/type1/public/knitting/knitnp.pfb + RELOC/fonts/type1/public/knitting/knitnr.pfb + RELOC/fonts/type1/public/knitting/knitwg.pfb + RELOC/fonts/type1/public/knitting/knitwn.pfb + RELOC/fonts/type1/public/knitting/knitwp.pfb + RELOC/tex/latex/knitting/knitting.sty + RELOC/tex/latex/knitting/uknit.fd + RELOC/tex/plain/knitting/knitting.tex +catalogue-also knittingpattern +catalogue-ctan /fonts/knitting +catalogue-license lppl1.3 +catalogue-topics diagram font font-symbol font-type1 font-mf +catalogue-version 3.0 + +name knittingpattern +category Package +revision 17205 +shortdesc Create knitting patterns +relocated 1 +longdesc The class provides a simple, effective method for knitters to +longdesc produce high-quality, attractive patterns using LaTeX. It does +longdesc this by providing commands to handle as much of the layout of +longdesc the document as possible, leaving the author free to +longdesc concentrate on the pattern. +containersize 1540 +containerchecksum cee26b0e6fd54a43a12e0e48fd5b4bf381816dabb6019cbd7c13ab5e2561b9f191d9fce4c75a513c06530077bba8d383b26552e2e6f4e97600aa2216547a08b5 +doccontainersize 136792 +doccontainerchecksum d391a25a224713092128af5adf68e5331c530a67a763dc37f657d8bfcee0d904632e86ae2f3745ec2c4bb0cea5e886c85da15b064780dbe997104b9afbef9e4e +docfiles size=42 + RELOC/doc/latex/knittingpattern/README details="Readme" + RELOC/doc/latex/knittingpattern/introduction.pdf details="Package introduction" + RELOC/doc/latex/knittingpattern/introduction.tex + RELOC/doc/latex/knittingpattern/lion.png + RELOC/doc/latex/knittingpattern/template.pdf + RELOC/doc/latex/knittingpattern/template.tex +runfiles size=1 + RELOC/tex/latex/knittingpattern/knittingpattern.cls +catalogue-also knitting +catalogue-ctan /macros/latex/contrib/knittingpattern +catalogue-license lppl1.3 +catalogue-topics diagram + +name knowledge +category Package +revision 58724 +shortdesc Displaying, hyperlinking, and indexing notions in a document +relocated 1 +longdesc The package offers a systematic way to handle +longdesc notions/concepts/terms throughout a document. It helps building +longdesc an index. In combination with hyperref it makes it easy to have +longdesc every reference of a concept linked to its introduction. It +longdesc also offers simple notations. +containersize 21536 +containerchecksum 22b67c0c0833f593ec0ca072744986212d34765945e8e18e0ac37c1ceba26109e98e41ad6535df066cd8091757a55fc644c311159b734fe69952845fcaed1c31 +doccontainersize 772396 +doccontainerchecksum 99b2a1f7bf227317dfa946d0c500f4b3b018d9348b3e71eae188fa3b14df61ad0ea9a63297e186b6555c0ac002150fda71aeedf8abcea20065a13c6c39f0ccae +docfiles size=225 + RELOC/doc/latex/knowledge/README.md details="Readme" + RELOC/doc/latex/knowledge/knowledge-example.tex + RELOC/doc/latex/knowledge/knowledge.pdf details="Package documentation" + RELOC/doc/latex/knowledge/knowledge.tex + RELOC/doc/latex/knowledge/makefile +srccontainersize 41004 +srccontainerchecksum fe2cef9c5ddc8cfb133291d3340546d75168568211c99f3db5b87d6029fabc85027d382df5210d70e52b782b15728493932b9f15e5673911d821cf656bc56f57 +srcfiles size=54 + RELOC/source/latex/knowledge/knowledge-code.dtx + RELOC/source/latex/knowledge/knowledge-configuration.dtx + RELOC/source/latex/knowledge/knowledge-utils.dtx + RELOC/source/latex/knowledge/knowledge.ins +runfiles size=32 + RELOC/tex/latex/knowledge/knowledge.sty +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-license lppl1.2 +catalogue-topics index label-ref expl3 +catalogue-version 1.25 + +name knuth-errata +category Package +revision 58682 +shortdesc Knuth's published errata +relocated 1 +longdesc These files record details of problems reported in Knuth's +longdesc 'Computers and Typesetting' series of books, for the Computer +longdesc Modern fonts, and for TeX, Metafont and related programs. +containersize 444 +containerchecksum f74443cd6bd0ebc039ff7eb0f5df2709b28c34c1fbf49793ee6d8ba2477337d8b7d0072573c32d67da17f7796efa058aa0d2d7cc2f7e196111c9ff90668ddb97 +doccontainersize 266192 +doccontainerchecksum 86abd134ee7d4afd4398735964c83340b67edb9b41a960d205aacb3dbf1c702a854eb469d3c39b06a7ed1974c8e2a951dcb1c3fcfdeb2c394b7d21e4205ceca4 +docfiles size=267 + RELOC/doc/generic/knuth-errata/cm85.bug + RELOC/doc/generic/knuth-errata/errata.eight + RELOC/doc/generic/knuth-errata/errata.eleven + RELOC/doc/generic/knuth-errata/errata.five + RELOC/doc/generic/knuth-errata/errata.four + RELOC/doc/generic/knuth-errata/errata.nine + RELOC/doc/generic/knuth-errata/errata.one + RELOC/doc/generic/knuth-errata/errata.seven + RELOC/doc/generic/knuth-errata/errata.six + RELOC/doc/generic/knuth-errata/errata.ten + RELOC/doc/generic/knuth-errata/errata.tex + RELOC/doc/generic/knuth-errata/errata.three + RELOC/doc/generic/knuth-errata/errata.twelve + RELOC/doc/generic/knuth-errata/errata.two + RELOC/doc/generic/knuth-errata/errorlog.tex + RELOC/doc/generic/knuth-errata/logmac.tex + RELOC/doc/generic/knuth-errata/mf84.bug + RELOC/doc/generic/knuth-errata/tex82.bug +catalogue-ctan /systems/knuth/dist/errata +catalogue-license knuth +catalogue-topics doc-errata + +name knuth-lib +category Package +revision 57963 +shortdesc Core TeX and Metafont sources from Knuth +relocated 1 +longdesc A collection of core TeX and Metafont macro files from DEK, +longdesc apart from the plain format and base. Includes the MF logo +longdesc font(s), webmac.tex, etc. +containersize 30508 +containerchecksum 47d50b1966dc5a3adf4921c297d9ed5917035e917098154fc08d1c72ebd0ba70ebfa41735c7ae52c5087d62242bcfa9b0b49914c6da4f392e2d4c56a6d72807d +runfiles size=47 + RELOC/fonts/source/public/knuth-lib/3test.mf + RELOC/fonts/source/public/knuth-lib/6test.mf + RELOC/fonts/source/public/knuth-lib/expr.mf + RELOC/fonts/source/public/knuth-lib/grayf.mf + RELOC/fonts/source/public/knuth-lib/io.mf + RELOC/fonts/source/public/knuth-lib/logo.mf + RELOC/fonts/source/public/knuth-lib/logo10.mf + RELOC/fonts/source/public/knuth-lib/logo8.mf + RELOC/fonts/source/public/knuth-lib/logo9.mf + RELOC/fonts/source/public/knuth-lib/logobf10.mf + RELOC/fonts/source/public/knuth-lib/logosl10.mf + RELOC/fonts/source/public/knuth-lib/manfnt.mf + RELOC/fonts/source/public/knuth-lib/null.mf + RELOC/fonts/source/public/knuth-lib/rtest.mf + RELOC/fonts/source/public/knuth-lib/slant.mf + RELOC/fonts/source/public/knuth-lib/test.mf + RELOC/fonts/source/public/knuth-lib/waits.mf + RELOC/fonts/source/public/knuth-lib/ztest.mf + RELOC/fonts/tfm/public/knuth-lib/logo10.tfm + RELOC/fonts/tfm/public/knuth-lib/logo8.tfm + RELOC/fonts/tfm/public/knuth-lib/logo9.tfm + RELOC/fonts/tfm/public/knuth-lib/logobf10.tfm + RELOC/fonts/tfm/public/knuth-lib/logosl10.tfm + RELOC/fonts/tfm/public/knuth-lib/manfnt.tfm + RELOC/tex/generic/knuth-lib/null.tex + RELOC/tex/plain/knuth-lib/manmac.tex + RELOC/tex/plain/knuth-lib/mftmac.tex + RELOC/tex/plain/knuth-lib/story.tex + RELOC/tex/plain/knuth-lib/testfont.tex + RELOC/tex/plain/knuth-lib/webmac.tex +catalogue-ctan /systems/knuth/dist/lib +catalogue-license knuth +catalogue-topics collection + +name knuth-local +category Package +revision 57963 +shortdesc Knuth's local information +relocated 1 +longdesc A collection of experimental programs and developments based +longdesc on, or complementary to, the matter in his distribution +longdesc directories. +containersize 23156 +containerchecksum 91962f359e8b2f668130a6511e7fafad26a0c4c14a46f715172aa28723f743e08c50be666cadafd7a591f2283daec4fdd45039afc714115077667b66e67cedb5 +runfiles size=53 + RELOC/fonts/source/public/knuth-local/black.mf + RELOC/fonts/source/public/knuth-local/blackaps.mf + RELOC/fonts/source/public/knuth-local/blackimagen.mf + RELOC/fonts/source/public/knuth-local/blacklino.mf + RELOC/fonts/source/public/knuth-local/blacklj.mf + RELOC/fonts/source/public/knuth-local/domino.mf + RELOC/fonts/source/public/knuth-local/gray.mf + RELOC/fonts/source/public/knuth-local/grayaps.mf + RELOC/fonts/source/public/knuth-local/grayimagen.mf + RELOC/fonts/source/public/knuth-local/grayimagen3.mf + RELOC/fonts/source/public/knuth-local/grayimagenlight.mf + RELOC/fonts/source/public/knuth-local/graylj.mf + RELOC/fonts/source/public/knuth-local/local.mf + RELOC/fonts/source/public/knuth-local/logod10.mf + RELOC/fonts/source/public/knuth-local/logosl9.mf + RELOC/fonts/source/public/knuth-local/mfman.mf + RELOC/fonts/source/public/knuth-local/oneone.mf + RELOC/fonts/source/public/knuth-local/random.mf + RELOC/fonts/source/public/knuth-local/slantaps4.mf + RELOC/fonts/source/public/knuth-local/slantimagen4.mf + RELOC/fonts/source/public/knuth-local/slantimagen6.mf + RELOC/fonts/source/public/knuth-local/slantlino4.mf + RELOC/fonts/source/public/knuth-local/slantlj4.mf + RELOC/fonts/source/public/knuth-local/snfont.mf + RELOC/fonts/tfm/public/knuth-local/domino.tfm + RELOC/fonts/tfm/public/knuth-local/logod10.tfm + RELOC/fonts/tfm/public/knuth-local/logosl9.tfm + RELOC/fonts/tfm/public/knuth-local/random.tfm + RELOC/fonts/tfm/public/knuth-local/snfont.tfm + RELOC/mft/knuth-local/e.mft + RELOC/tex/plain/knuth-local/xepsf.tex +catalogue-also knuth-dist +catalogue-ctan /systems/knuth/local +catalogue-license pd +catalogue-topics collection + +name knuth-pdf +category Package +revision 58470 +shortdesc PDF library for C/WEB sources in TeX Live +relocated 1 +longdesc Here you find a large collection of PDF documents for many +longdesc C/WEB programs in TeX Live, both in their original form as +longdesc written by their respective authors, and in the changed form as +longdesc they are actually used in the TeX Live system. Care has been +longdesc taken to keep the section numbering intact, so that you can +longdesc study the sources and their changes in parallel. Also included +longdesc is the collection of "errata" for Donald Knuth's "Computers & +longdesc Typesetting series";. Although not all the texts here are +longdesc written or maintained by Donald Knuth, it is more convenient +longdesc for everything to be collected in one place for reading and +longdesc searching. And they all stem from the system that Knuth +longdesc created. The central entry point is the "index" file, with +longdesc links to the individual documents, either in HTML or in PDF +longdesc format. +containersize 860 +containerchecksum 281dd6f88f543a84b66ecc6b7f53cf1b9c7c295079e97dc722212fdfb337dd5adaea510d687916d477c990042382066e80f0aec3b2eb29d22b29cdf0968f7e1f +doccontainersize 45480112 +doccontainerchecksum b6bb93794b064466c8bf7f79425a55a111a276a9888b720b7780756b5dbab86c6a573dedcd3946e4f7aa661b6bc6eecbc5f92068a50c0f17a3676e4077acfe0b +docfiles size=11873 + RELOC/doc/generic/knuth-pdf/README.md details="Readme" + RELOC/doc/generic/knuth-pdf/bibtex/bibtex-changes.pdf + RELOC/doc/generic/knuth-pdf/bibtex/bibtex.pdf + RELOC/doc/generic/knuth-pdf/ctie/ctie-changes.pdf + RELOC/doc/generic/knuth-pdf/ctie/ctie.pdf + RELOC/doc/generic/knuth-pdf/cweb/common-changes.pdf + RELOC/doc/generic/knuth-pdf/cweb/common.pdf + RELOC/doc/generic/knuth-pdf/cweb/ctangle-changes.pdf + RELOC/doc/generic/knuth-pdf/cweb/ctangle.pdf + RELOC/doc/generic/knuth-pdf/cweb/ctwill-changes.pdf + RELOC/doc/generic/knuth-pdf/cweb/ctwill.pdf + RELOC/doc/generic/knuth-pdf/cweb/cweave-changes.pdf + RELOC/doc/generic/knuth-pdf/cweb/cweave.pdf + RELOC/doc/generic/knuth-pdf/cweb/cwebman.pdf + RELOC/doc/generic/knuth-pdf/cweb/refsort-changes.pdf + RELOC/doc/generic/knuth-pdf/cweb/refsort.pdf + RELOC/doc/generic/knuth-pdf/cweb/twinx-changes.pdf + RELOC/doc/generic/knuth-pdf/cweb/twinx.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.eight.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.eleven.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.five.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.four.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.nine.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.one.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.seven.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.six.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.ten.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.three.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.twelve.pdf + RELOC/doc/generic/knuth-pdf/errata/errata.two.pdf + RELOC/doc/generic/knuth-pdf/errata/errorlog.pdf + RELOC/doc/generic/knuth-pdf/etc/vftovp-changes.pdf + RELOC/doc/generic/knuth-pdf/etc/vftovp.pdf + RELOC/doc/generic/knuth-pdf/etc/vptovf-changes.pdf + RELOC/doc/generic/knuth-pdf/etc/vptovf.pdf + RELOC/doc/generic/knuth-pdf/index.html + RELOC/doc/generic/knuth-pdf/index.pdf + RELOC/doc/generic/knuth-pdf/mf/mf-changes.pdf + RELOC/doc/generic/knuth-pdf/mf/mf.pdf + RELOC/doc/generic/knuth-pdf/mf/trapman.pdf + RELOC/doc/generic/knuth-pdf/mfware/gftodvi-changes.pdf + RELOC/doc/generic/knuth-pdf/mfware/gftodvi.pdf + RELOC/doc/generic/knuth-pdf/mfware/gftopk-changes.pdf + RELOC/doc/generic/knuth-pdf/mfware/gftopk.pdf + RELOC/doc/generic/knuth-pdf/mfware/gftype-changes.pdf + RELOC/doc/generic/knuth-pdf/mfware/gftype.pdf + RELOC/doc/generic/knuth-pdf/mfware/mft-changes.pdf + RELOC/doc/generic/knuth-pdf/mfware/mft.pdf + RELOC/doc/generic/knuth-pdf/other/dvicopy-changes.pdf + RELOC/doc/generic/knuth-pdf/other/dvicopy.pdf + RELOC/doc/generic/knuth-pdf/other/patgen-changes.pdf + RELOC/doc/generic/knuth-pdf/other/patgen.pdf + RELOC/doc/generic/knuth-pdf/other/pktogf-changes.pdf + RELOC/doc/generic/knuth-pdf/other/pktogf.pdf + RELOC/doc/generic/knuth-pdf/other/pktype-changes.pdf + RELOC/doc/generic/knuth-pdf/other/pktype.pdf + RELOC/doc/generic/knuth-pdf/pdftex/pdftex-changes.pdf + RELOC/doc/generic/knuth-pdf/pdftex/pdftex.pdf + RELOC/doc/generic/knuth-pdf/tex/glue.pdf + RELOC/doc/generic/knuth-pdf/tex/tex-changes.pdf + RELOC/doc/generic/knuth-pdf/tex/tex.pdf + RELOC/doc/generic/knuth-pdf/tex/tripman.pdf + RELOC/doc/generic/knuth-pdf/texware/dvitype-changes.pdf + RELOC/doc/generic/knuth-pdf/texware/dvitype.pdf + RELOC/doc/generic/knuth-pdf/texware/pltotf-changes.pdf + RELOC/doc/generic/knuth-pdf/texware/pltotf.pdf + RELOC/doc/generic/knuth-pdf/texware/pooltype-changes.pdf + RELOC/doc/generic/knuth-pdf/texware/pooltype.pdf + RELOC/doc/generic/knuth-pdf/texware/tftopl-changes.pdf + RELOC/doc/generic/knuth-pdf/texware/tftopl.pdf + RELOC/doc/generic/knuth-pdf/tie/tie-changes.pdf + RELOC/doc/generic/knuth-pdf/tie/tie.pdf + RELOC/doc/generic/knuth-pdf/web/tangle-changes.pdf + RELOC/doc/generic/knuth-pdf/web/tangle.pdf + RELOC/doc/generic/knuth-pdf/web/weave-changes.pdf + RELOC/doc/generic/knuth-pdf/web/weave.pdf + RELOC/doc/generic/knuth-pdf/web/webman.pdf + RELOC/doc/generic/knuth-pdf/xetex/xetex-changes.pdf + RELOC/doc/generic/knuth-pdf/xetex/xetex.pdf +catalogue-contact-repository https://github.com/ascherer/web +catalogue-contact-support https://tug.org/texmfbug +catalogue-ctan /info/knuth-pdf +catalogue-license pd +catalogue-topics collection +catalogue-version 1.1 + +name koma-moderncvclassic +category Package +revision 25025 +shortdesc Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with BibLaTeX +relocated 1 +longdesc This package provides an imitation of the moderncv class with +longdesc the classic style (by Xavier Danaux), to be used in conjunction +longdesc with the koma-classes. Thus it is possible to configure +longdesc pagelayout, headings etc. the way it is done in koma-classes. +longdesc Moreover, it is possible to use BibLaTeX, while the original +longdesc moderncv-class is incompatible with BibLaTeX. +containersize 3972 +containerchecksum 68aa7ea875f46a4c1d1bbf29d4abb77f4ec729242fab41f3e79caf95a925a076ec3d37ce7d98b44aecaaf9edce541d1673780238786b36cee0621acf4212a1ef +doccontainersize 191168 +doccontainerchecksum 968f5303bc7b5fa3df39a2a44c38b63e54059a94ac7df2349b45cbc0855d22ec64ec39feaafd761515720d306d5e5ea8a223ca74790ba160bd093f989d8b69c0 +docfiles size=50 + RELOC/doc/latex/koma-moderncvclassic/README details="Readme" + RELOC/doc/latex/koma-moderncvclassic/changelog + RELOC/doc/latex/koma-moderncvclassic/cvbasic.pdf details="Example output" + RELOC/doc/latex/koma-moderncvclassic/cvbasic.tex details="Example input" +runfiles size=4 + RELOC/tex/latex/koma-moderncvclassic/koma-moderncvclassic.sty +catalogue-also moderncv koma-script +catalogue-ctan /macros/latex/contrib/koma-moderncvclassic +catalogue-license lppl1.3 +catalogue-topics cv +catalogue-version 0.5 + +name koma-script +category TLCore +revision 58585 +shortdesc A bundle of versatile classes and packages +relocated 1 +longdesc The KOMA-Script bundle provides replacements for the article, +longdesc report, and book classes with emphasis on typography and +longdesc versatility. There is also a letter class. The bundle also +longdesc offers: a package for calculating type areas in the way laid +longdesc down by the typographer Jan Tschichold, packages for easily +longdesc changing and defining page styles, a package scrdate for +longdesc getting not only the current date but also the name of the day, +longdesc and a package scrtime for getting the current time. All these +longdesc packages may be used not only with KOMA-Script classes but also +longdesc with the standard classes. Since every package has its own +longdesc version number, the version number quoted only refers to the +longdesc version of scrbook, scrreprt, scrartcl, scrlttr2 and typearea +longdesc (which are the main parts of the bundle). +containersize 12947592 +containerchecksum c7df4ac717c0b1ed2508ad52546b3cd1ba84db401f32888461cb0e558bb434abda933bd91b1a9f01b42ea0db9754fbf230e5915caac823d67d8789ac4f7c0f4c +runfiles size=5429 + RELOC/doc/latex/koma-script/INSTALL.txt + RELOC/doc/latex/koma-script/INSTALLD.txt + RELOC/doc/latex/koma-script/README + RELOC/doc/latex/koma-script/koma-script.html + RELOC/doc/latex/koma-script/komabug.tex + RELOC/doc/latex/koma-script/komascr.html + RELOC/doc/latex/koma-script/komascript.html + RELOC/doc/latex/koma-script/lppl-de.txt + RELOC/doc/latex/koma-script/lppl.txt + RELOC/doc/latex/koma-script/manifest.txt + RELOC/doc/latex/koma-script/scraddr.html + RELOC/doc/latex/koma-script/scrartcl.html + RELOC/doc/latex/koma-script/scrbase.html + RELOC/doc/latex/koma-script/scrbook.html + RELOC/doc/latex/koma-script/scrdate.html + RELOC/doc/latex/koma-script/scrextend.html + RELOC/doc/latex/koma-script/scrguide.html + RELOC/doc/latex/koma-script/scrguide.pdf + RELOC/doc/latex/koma-script/scrguien.html + RELOC/doc/latex/koma-script/scrguien.pdf + RELOC/doc/latex/koma-script/scrhack.html + RELOC/doc/latex/koma-script/scrlayer-notecolumn.html + RELOC/doc/latex/koma-script/scrlayer-scrpage.html + RELOC/doc/latex/koma-script/scrlayer.html + RELOC/doc/latex/koma-script/scrletter.html + RELOC/doc/latex/koma-script/scrlfile.html + RELOC/doc/latex/koma-script/scrlttr2.html + RELOC/doc/latex/koma-script/scrreprt.html + RELOC/doc/latex/koma-script/scrtime.html + RELOC/doc/latex/koma-script/scrwfile.html + RELOC/doc/latex/koma-script/tocbasic.html + RELOC/doc/latex/koma-script/typearea.html + RELOC/source/latex/koma-script/Makefile + RELOC/source/latex/koma-script/Makefile.baseinit + RELOC/source/latex/koma-script/Makefile.baserules + RELOC/source/latex/koma-script/doc/Makefile + RELOC/source/latex/koma-script/doc/Makefile.guide + RELOC/source/latex/koma-script/doc/Makefile.latexinit + RELOC/source/latex/koma-script/doc/bin/genhtmlidx.pl + RELOC/source/latex/koma-script/doc/bin/genindex.pl + RELOC/source/latex/koma-script/doc/english/Makefile + RELOC/source/latex/koma-script/doc/english/adrconvnote.tex + RELOC/source/latex/koma-script/doc/english/authorpart.tex + RELOC/source/latex/koma-script/doc/english/common-compatibility.tex + RELOC/source/latex/koma-script/doc/english/common-dictum.tex + RELOC/source/latex/koma-script/doc/english/common-draftmode.tex + RELOC/source/latex/koma-script/doc/english/common-fontsize.tex + RELOC/source/latex/koma-script/doc/english/common-footnotes.tex + RELOC/source/latex/koma-script/doc/english/common-headfootheight.tex + RELOC/source/latex/koma-script/doc/english/common-interleafpage.tex + RELOC/source/latex/koma-script/doc/english/common-lists.tex + RELOC/source/latex/koma-script/doc/english/common-marginpar.tex + RELOC/source/latex/koma-script/doc/english/common-oddorevenpage.tex + RELOC/source/latex/koma-script/doc/english/common-options.tex + RELOC/source/latex/koma-script/doc/english/common-pagestylemanipulation.tex + RELOC/source/latex/koma-script/doc/english/common-parmarkup.tex + RELOC/source/latex/koma-script/doc/english/common-textmarkup.tex + RELOC/source/latex/koma-script/doc/english/common-titles.tex + RELOC/source/latex/koma-script/doc/english/common-typearea.tex + RELOC/source/latex/koma-script/doc/english/expertpart.tex + RELOC/source/latex/koma-script/doc/english/guide-english.tex + RELOC/source/latex/koma-script/doc/english/guide.tex + RELOC/source/latex/koma-script/doc/english/htmlsetup + RELOC/source/latex/koma-script/doc/english/introduction.tex + RELOC/source/latex/koma-script/doc/english/japanlco.tex + RELOC/source/latex/koma-script/doc/english/linkalias.tex + RELOC/source/latex/koma-script/doc/english/preface.tex + RELOC/source/latex/koma-script/doc/english/scraddr.tex + RELOC/source/latex/koma-script/doc/english/scrbase.tex + RELOC/source/latex/koma-script/doc/english/scrbookreportarticle-experts.tex + RELOC/source/latex/koma-script/doc/english/scrbookreportarticle.tex + RELOC/source/latex/koma-script/doc/english/scrdatetime.tex + RELOC/source/latex/koma-script/doc/english/scrextend.tex + RELOC/source/latex/koma-script/doc/english/scrhack.tex + RELOC/source/latex/koma-script/doc/english/scrjura.tex + RELOC/source/latex/koma-script/doc/english/scrjuraexample.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn-example.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-scrpage-experts.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-scrpage.tex + RELOC/source/latex/koma-script/doc/english/scrlayer.tex + RELOC/source/latex/koma-script/doc/english/scrlfile.tex + RELOC/source/latex/koma-script/doc/english/scrlttr2-experts.tex + RELOC/source/latex/koma-script/doc/english/scrlttr2.tex + RELOC/source/latex/koma-script/doc/english/scrlttr2examples.dtx + RELOC/source/latex/koma-script/doc/english/scrwfile.tex + RELOC/source/latex/koma-script/doc/english/tocbasic.tex + RELOC/source/latex/koma-script/doc/english/typearea-experts.tex + RELOC/source/latex/koma-script/doc/english/typearea.tex + RELOC/source/latex/koma-script/doc/guide.bib + RELOC/source/latex/koma-script/doc/guide.tex + RELOC/source/latex/koma-script/doc/koma-script.html + RELOC/source/latex/koma-script/doc/komascr.html + RELOC/source/latex/koma-script/doc/komascript.html + RELOC/source/latex/koma-script/doc/linkalias.tex + RELOC/source/latex/koma-script/doc/ngerman/Makefile + RELOC/source/latex/koma-script/doc/ngerman/adrconvnote.tex + RELOC/source/latex/koma-script/doc/ngerman/authorpart.tex + RELOC/source/latex/koma-script/doc/ngerman/common-compatibility.tex + RELOC/source/latex/koma-script/doc/ngerman/common-dictum.tex + RELOC/source/latex/koma-script/doc/ngerman/common-draftmode.tex + RELOC/source/latex/koma-script/doc/ngerman/common-fontsize.tex + RELOC/source/latex/koma-script/doc/ngerman/common-footnotes.tex + RELOC/source/latex/koma-script/doc/ngerman/common-headfootheight.tex + RELOC/source/latex/koma-script/doc/ngerman/common-interleafpage.tex + RELOC/source/latex/koma-script/doc/ngerman/common-lists.tex + RELOC/source/latex/koma-script/doc/ngerman/common-marginpar.tex + RELOC/source/latex/koma-script/doc/ngerman/common-oddorevenpage.tex + RELOC/source/latex/koma-script/doc/ngerman/common-options.tex + RELOC/source/latex/koma-script/doc/ngerman/common-pagestylemanipulation.tex + RELOC/source/latex/koma-script/doc/ngerman/common-parmarkup.tex + RELOC/source/latex/koma-script/doc/ngerman/common-textmarkup.tex + RELOC/source/latex/koma-script/doc/ngerman/common-titles.tex + RELOC/source/latex/koma-script/doc/ngerman/common-typearea.tex + RELOC/source/latex/koma-script/doc/ngerman/expertpart.tex + RELOC/source/latex/koma-script/doc/ngerman/guide-ngerman.tex + RELOC/source/latex/koma-script/doc/ngerman/guide.tex + RELOC/source/latex/koma-script/doc/ngerman/htmlsetup + RELOC/source/latex/koma-script/doc/ngerman/introduction.tex + RELOC/source/latex/koma-script/doc/ngerman/linkalias.tex + RELOC/source/latex/koma-script/doc/ngerman/preface.tex + RELOC/source/latex/koma-script/doc/ngerman/scraddr.tex + RELOC/source/latex/koma-script/doc/ngerman/scrbase.tex + RELOC/source/latex/koma-script/doc/ngerman/scrbookreportarticle-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/scrbookreportarticle.tex + RELOC/source/latex/koma-script/doc/ngerman/scrdatetime.tex + RELOC/source/latex/koma-script/doc/ngerman/scrextend.tex + RELOC/source/latex/koma-script/doc/ngerman/scrhack.tex + RELOC/source/latex/koma-script/doc/ngerman/scrjura.tex + RELOC/source/latex/koma-script/doc/ngerman/scrjuraexample.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn-example.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-scrpage-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-scrpage.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlfile.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlttr2-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlttr2.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlttr2examples.dtx + RELOC/source/latex/koma-script/doc/ngerman/scrwfile.tex + RELOC/source/latex/koma-script/doc/ngerman/tocbasic.tex + RELOC/source/latex/koma-script/doc/ngerman/typearea-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/typearea.tex + RELOC/source/latex/koma-script/doc/plength.dtx + RELOC/source/latex/koma-script/doc/scraddr.html + RELOC/source/latex/koma-script/doc/scrartcl.html + RELOC/source/latex/koma-script/doc/scrbase.html + RELOC/source/latex/koma-script/doc/scrbook.html + RELOC/source/latex/koma-script/doc/scrdate.html + RELOC/source/latex/koma-script/doc/scrextend.html + RELOC/source/latex/koma-script/doc/scrguide.cls + RELOC/source/latex/koma-script/doc/scrguide.gst + RELOC/source/latex/koma-script/doc/scrguide.html + RELOC/source/latex/koma-script/doc/scrguide.ist + RELOC/source/latex/koma-script/doc/scrguide.pdf + RELOC/source/latex/koma-script/doc/scrguien.html + RELOC/source/latex/koma-script/doc/scrguien.pdf + RELOC/source/latex/koma-script/doc/scrhack.html + RELOC/source/latex/koma-script/doc/scrlayer-notecolumn.html + RELOC/source/latex/koma-script/doc/scrlayer-scrpage.html + RELOC/source/latex/koma-script/doc/scrlayer.html + RELOC/source/latex/koma-script/doc/scrletter.html + RELOC/source/latex/koma-script/doc/scrlfile.html + RELOC/source/latex/koma-script/doc/scrlttr2.html + RELOC/source/latex/koma-script/doc/scrreprt.html + RELOC/source/latex/koma-script/doc/scrtime.html + RELOC/source/latex/koma-script/doc/scrwfile.html + RELOC/source/latex/koma-script/doc/tocbasic.html + RELOC/source/latex/koma-script/doc/typearea.html + RELOC/source/latex/koma-script/japanlco.dtx + RELOC/source/latex/koma-script/scraddr.dtx + RELOC/source/latex/koma-script/scrdoc.dtx + RELOC/source/latex/koma-script/scrdocstrip.tex + RELOC/source/latex/koma-script/scrextend.dtx + RELOC/source/latex/koma-script/scrhack.dtx + RELOC/source/latex/koma-script/scrjura.dtx + RELOC/source/latex/koma-script/scrkernel-basics.dtx + RELOC/source/latex/koma-script/scrkernel-bibliography.dtx + RELOC/source/latex/koma-script/scrkernel-circularletters.dtx + RELOC/source/latex/koma-script/scrkernel-compatibility.dtx + RELOC/source/latex/koma-script/scrkernel-floats.dtx + RELOC/source/latex/koma-script/scrkernel-fonts.dtx + RELOC/source/latex/koma-script/scrkernel-footnotes.dtx + RELOC/source/latex/koma-script/scrkernel-index.dtx + RELOC/source/latex/koma-script/scrkernel-language.dtx + RELOC/source/latex/koma-script/scrkernel-letterclassoptions.dtx + RELOC/source/latex/koma-script/scrkernel-listsandtabulars.dtx + RELOC/source/latex/koma-script/scrkernel-listsof.dtx + RELOC/source/latex/koma-script/scrkernel-miscellaneous.dtx + RELOC/source/latex/koma-script/scrkernel-notepaper.dtx + RELOC/source/latex/koma-script/scrkernel-pagestyles.dtx + RELOC/source/latex/koma-script/scrkernel-paragraphs.dtx + RELOC/source/latex/koma-script/scrkernel-pseudolengths.dtx + RELOC/source/latex/koma-script/scrkernel-sections.dtx + RELOC/source/latex/koma-script/scrkernel-title.dtx + RELOC/source/latex/koma-script/scrkernel-tocstyle.dtx + RELOC/source/latex/koma-script/scrkernel-typearea.dtx + RELOC/source/latex/koma-script/scrkernel-variables.dtx + RELOC/source/latex/koma-script/scrkernel-version.dtx + RELOC/source/latex/koma-script/scrlayer-notecolumn.dtx + RELOC/source/latex/koma-script/scrlayer-scrpage.dtx + RELOC/source/latex/koma-script/scrlayer.dtx + RELOC/source/latex/koma-script/scrlfile-hook.dtx + RELOC/source/latex/koma-script/scrlfile-patcholdlatex.dtx + RELOC/source/latex/koma-script/scrlfile.dtx + RELOC/source/latex/koma-script/scrlogo.dtx + RELOC/source/latex/koma-script/scrmain.ins + RELOC/source/latex/koma-script/scrsource.tex + RELOC/source/latex/koma-script/scrstrip.inc + RELOC/source/latex/koma-script/scrstrop.inc + RELOC/source/latex/koma-script/scrtime.dtx + RELOC/source/latex/koma-script/scrwfile.dtx + RELOC/source/latex/koma-script/tocbasic.dtx + RELOC/tex/latex/koma-script/DIN.lco + RELOC/tex/latex/koma-script/DIN5008A.lco + RELOC/tex/latex/koma-script/DIN5008B.lco + RELOC/tex/latex/koma-script/DINmtext.lco + RELOC/tex/latex/koma-script/KOMAold.lco + RELOC/tex/latex/koma-script/KakuLL.lco + RELOC/tex/latex/koma-script/NF.lco + RELOC/tex/latex/koma-script/NipponEH.lco + RELOC/tex/latex/koma-script/NipponEL.lco + RELOC/tex/latex/koma-script/NipponLH.lco + RELOC/tex/latex/koma-script/NipponLL.lco + RELOC/tex/latex/koma-script/NipponRL.lco + RELOC/tex/latex/koma-script/SN.lco + RELOC/tex/latex/koma-script/SNleft.lco + RELOC/tex/latex/koma-script/UScommercial9.lco + RELOC/tex/latex/koma-script/UScommercial9DW.lco + RELOC/tex/latex/koma-script/float.hak + RELOC/tex/latex/koma-script/floatrow.hak + RELOC/tex/latex/koma-script/hyperref.hak + RELOC/tex/latex/koma-script/listings.hak + RELOC/tex/latex/koma-script/lscape.hak + RELOC/tex/latex/koma-script/nomencl.hak + RELOC/tex/latex/koma-script/scraddr.sty + RELOC/tex/latex/koma-script/scrartcl.cls + RELOC/tex/latex/koma-script/scrarticle.cls + RELOC/tex/latex/koma-script/scrbase.sty + RELOC/tex/latex/koma-script/scrbook.cls + RELOC/tex/latex/koma-script/scrdate.sty + RELOC/tex/latex/koma-script/scrdoc.cls + RELOC/tex/latex/koma-script/scrextend.sty + RELOC/tex/latex/koma-script/scrfontsizes.sty + RELOC/tex/latex/koma-script/scrhack.sty + RELOC/tex/latex/koma-script/scrjura.sty + RELOC/tex/latex/koma-script/scrkbase.sty + RELOC/tex/latex/koma-script/scrlayer-notecolumn.sty + RELOC/tex/latex/koma-script/scrlayer-scrpage.sty + RELOC/tex/latex/koma-script/scrlayer.sty + RELOC/tex/latex/koma-script/scrletter.cls + RELOC/tex/latex/koma-script/scrletter.sty + RELOC/tex/latex/koma-script/scrlfile-hook.sty + RELOC/tex/latex/koma-script/scrlfile-patcholdlatex.sty + RELOC/tex/latex/koma-script/scrlfile.sty + RELOC/tex/latex/koma-script/scrlogo.sty + RELOC/tex/latex/koma-script/scrlttr2.cls + RELOC/tex/latex/koma-script/scrreport.cls + RELOC/tex/latex/koma-script/scrreprt.cls + RELOC/tex/latex/koma-script/scrsize10pt.clo + RELOC/tex/latex/koma-script/scrsize11pt.clo + RELOC/tex/latex/koma-script/scrsize12pt.clo + RELOC/tex/latex/koma-script/scrtime.sty + RELOC/tex/latex/koma-script/scrwfile.sty + RELOC/tex/latex/koma-script/setspace.hak + RELOC/tex/latex/koma-script/standardsections.hak + RELOC/tex/latex/koma-script/tocbasic.sty + RELOC/tex/latex/koma-script/typearea.sty + RELOC/tex/latex/koma-script/visualize.lco +catalogue-also scrartcl scrbook +catalogue-contact-home http://www.komascript.de/ +catalogue-ctan /macros/latex/contrib/koma-script +catalogue-license lppl1.3c +catalogue-topics class letter book-pub page-hf geometry +catalogue-version 3.33 + +name koma-script-examples +category Package +revision 47523 +shortdesc Examples from the KOMA-Script book +relocated 1 +longdesc This package contains some examples from the 6th edition of the +longdesc book >>KOMA-Script<<, >>Eine Sammlung von Klassen und Paketen +longdesc fur LaTeX2e<< by Markus Kohm, published by Lehmanns Media. +longdesc There are no further descriptions of these examples. +containersize 540 +containerchecksum df9ccc215a2693454b3f8e1cbce816708415e987451cb652c1b3c2121ff073b7dd0311e3a61de493b5591923edd7688edf66e061467d28a5c3ea437f912568f9 +doccontainersize 563260 +doccontainerchecksum 6cdd548d21897f33927ee33be350b77b317777464ce3c7be24223cf10b6200ffb73944d72d0ea8491795de71c9554881ee52ae157a035b667f8c2c74aa1c3641 +docfiles size=416 + RELOC/doc/latex/koma-script-examples/Anhang-B/result/chapterthumbexample.pdf + RELOC/doc/latex/koma-script-examples/Anhang-B/source/chapterthumb.sty + RELOC/doc/latex/koma-script-examples/Anhang-B/source/chapterthumbexample.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefDIN.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefSN.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefbak3.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefdup.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/brieflft.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/brieflfu.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefnow.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefrag2.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefwbk.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefwbk2.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefwbt2.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/letter-nipponA.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/letter-nipponB.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/source/CaptainHook-1.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/source/SNslhead.lco + RELOC/doc/latex/koma-script-examples/Anhang-C/source/asymTypB.lco + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefDIN.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefSN.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefbak3.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefdup.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/brieflft.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/brieflfu.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefnow.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefrag2.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/brieftemplate.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefwbk.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefwbk2.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefwbt2.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/dateup.lco + RELOC/doc/latex/koma-script-examples/Anhang-C/source/letter-nipponA.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/letter-nipponB.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/nowindow.lco + RELOC/doc/latex/koma-script-examples/Kapitel-11/result/scrjuraexample.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-11/source/scrjuraexample.tex + RELOC/doc/latex/koma-script-examples/Kapitel-15/result/remarkexample.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-15/source/remarkbox.sty + RELOC/doc/latex/koma-script-examples/Kapitel-15/source/remarkexample.tex + RELOC/doc/latex/koma-script-examples/Kapitel-19/result/scrlayer-notecolumn-example.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-19/source/scrlayer-notecolumn-example.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-0.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-1.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-10.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-11.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-12.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-13.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-14.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-15.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-16.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-17.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-18.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-19.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-2.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-20.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-21.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-22.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-23.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-3.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-4.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-5.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-6.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-7.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-8.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-9.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/ich.lco + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-0.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-1.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-10.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-11.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-12.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-13.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-14.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-15.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-16.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-17.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-18.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-19.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-2.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-20.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-21.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-22.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-23.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-3.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-4.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-5.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-6.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-7.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-8.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-9.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/musterlogo.pdf + RELOC/doc/latex/koma-script-examples/LEGAL.txt + RELOC/doc/latex/koma-script-examples/LEGAL_DE.txt + RELOC/doc/latex/koma-script-examples/LIESMICH.txt details="German Readme" language="de" + 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-license lppl1.3c +catalogue-topics book-ex + +name koma-script-sfs +category Package +revision 26137 +shortdesc Koma-script letter class option for Finnish +relocated 1 +longdesc A koma-script parameter set for letters on A4 paper, complying +longdesc with Finnish standards SFS 2486, 2487 and 2488; suitable for +longdesc window envelopes with window on the left size in the sizes C5, +longdesc C65, E5 and E65 (although, because the address window is +longdesc smaller, for sizes E5 and E65 the address may not fit within +longdesc the window, but ordinary 3-line address should fit). +containersize 3400 +containerchecksum 3b281a1e94c73e1d8224f6ae552be91e3df344f9031e139334fd7256e38dc70bed4132164935845c710bef9dfe0e8c439c229d3415ff835e48777aea182e7fae +doccontainersize 37524 +doccontainerchecksum 84f7fb5c11c9b40029bc481d34ef7cca39baa2a3872f22fd5b656e324aa5cc0becf3ff6d894ceaf26e8ddea0d8cc14d428a140e1f19ff2e060c6d32390d51070 +docfiles size=12 + RELOC/doc/latex/koma-script-sfs/README details="Readme" + RELOC/doc/latex/koma-script-sfs/SFSesim.pdf details="Package documentation (Finnish)" language="fi" + RELOC/doc/latex/koma-script-sfs/SFSesim.tex +runfiles size=2 + RELOC/tex/latex/koma-script-sfs/SFS.lco +catalogue-ctan /macros/latex/contrib/koma-script-SFS +catalogue-license lppl +catalogue-topics letter +catalogue-version 1.0 + +name komacv +category Package +revision 57721 +shortdesc Typesetting a beautiful CV with various style options +relocated 1 +longdesc The class simplifies the creation of beautiful CV. The user may +longdesc choose between different styles, and may adjust settings to +longdesc tune the output. +containersize 7252 +containerchecksum 028e8d2a7e5ea450ad8d6f2b14ad0b84b319db0a234f03f8a6e1efc781fa7e60a67a67e4aa5cd101eea59e2c93a073b635d74bc6443d84b01599575466994a6f +doccontainersize 460496 +doccontainerchecksum d016f4bd23fb08fb932c3d1516167619d239f8cebe8d2ad8e6fcd07aa945c2df17d6e05e5474dc5522ce4bff1d72fa7879bf9dee4348eb8aa8624d1fe30ea86f +docfiles size=185 + RELOC/doc/latex/komacv/README details="Readme" + RELOC/doc/latex/komacv/examples/jeyre.jpg + RELOC/doc/latex/komacv/examples/komacv.bib + RELOC/doc/latex/komacv/examples/komacv_example.tex + RELOC/doc/latex/komacv/examples/komacv_example_casual.pdf details="Example of use (casual)" + RELOC/doc/latex/komacv/examples/komacv_example_classic.pdf details="Example of use (classic)" + RELOC/doc/latex/komacv/examples/komacv_example_oldstyle.pdf details="Example of use (old style)" + RELOC/doc/latex/komacv/komacv.pdf details="Package documentation" +srccontainersize 19112 +srccontainerchecksum ab1dd4f3976bd0b1a81c7772a92f1c015f2a0a662c65f474bc36b9bc6edfce6756f428fe9e45d969dcbbbeda41a0b1ffd463c3fe5cb286fa9722de22c59847c6 +srcfiles size=21 + RELOC/source/latex/komacv/komacv.dtx + RELOC/source/latex/komacv/komacv.ins +runfiles size=12 + RELOC/tex/latex/komacv/komacv-casual.sty + RELOC/tex/latex/komacv/komacv-classic.sty + RELOC/tex/latex/komacv/komacv-oldstyle.sty + RELOC/tex/latex/komacv/komacv.cls +catalogue-ctan /macros/latex/contrib/komacv +catalogue-license lppl1.3 +catalogue-topics cv class +catalogue-version 1.1.2 + +name komacv-rg +category Package +revision 49064 +shortdesc LaTeX packages that aid in creating CVs based on the komacv class and creating related documents +relocated 1 +longdesc The komacv-rg bundle provides packages that aid in creating CVs +longdesc based on the komacv class and creating related documents, such +longdesc as cover letters and cover sheets for job applications. +longdesc Concretely, the bundle consists of three packages: +longdesc komacv-addons, komacv-lco, and komacv-multilang. komacv-addons +longdesc is a small collection of add-ons and fixes for the komacv +longdesc class; komacv-lco enables the use of letter class options from +longdesc scrlttr2 also in komacv-based and other non-scrlttr2-based +longdesc documents; komacv-multilang enables the provisioning of CVs in +longdesc multiple languages and the selection of a language via babel or +longdesc polyglossia. +containersize 3308 +containerchecksum 6d400b0f228d42aaabf9527bbd3447fdf92eeff81f1fb7978cf90c3afa9835e4731a9da938bbece65034476ac2e2f7afff19000d9012ddd76b6f65618bea7223 +doccontainersize 856680 +doccontainerchecksum 58236086df2335cd167a5d475cb0e223747d43d81d23c0c0ace1cd711a19ca371426d36e199d69a9fd5414a33872dc4ab3725850a6677440484daba0e55d5208 +docfiles size=224 + RELOC/doc/latex/komacv-rg/README.md details="Readme" + RELOC/doc/latex/komacv-rg/komacv-addons.pdf details="Package documentation komacv-addons" + RELOC/doc/latex/komacv-rg/komacv-lco.pdf details="Package documentation komacv-lco" + RELOC/doc/latex/komacv-rg/komacv-multilang.pdf details="Package documentation komacv-multilang" +srccontainersize 14452 +srccontainerchecksum 512fbddc0b233061afd3a2af20846e8eefcb9d1dc00b29669e45499b62289d842053201b208819536af0a2a7db56cfbf2346210775412035fcd13d2b2593dcf1 +srcfiles size=18 + RELOC/source/latex/komacv-rg/komacv-addons.dtx + RELOC/source/latex/komacv-rg/komacv-lco.dtx + RELOC/source/latex/komacv-rg/komacv-multilang.dtx + RELOC/source/latex/komacv-rg/komacv-rg.ins +runfiles size=4 + RELOC/tex/latex/komacv-rg/komacv-addons.sty + RELOC/tex/latex/komacv-rg/komacv-lco.sty + RELOC/tex/latex/komacv-rg/komacv-multilang.sty +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-license lppl1.2 +catalogue-topics cv +catalogue-version 0.9.2 + +name kotex-oblivoir +category Package +revision 58436 +shortdesc A LaTeX document class for typesetting Korean documents +relocated 1 +longdesc The class is based on memoir, and is adapted to typesetting +longdesc Korean documents. The bundle (of class and associated packages) +longdesc belongs to the ko.TeX bundle. It depends on memoir and +longdesc kotex-utf to function. +depend kotex-utf +depend memoir +containersize 41476 +containerchecksum af873efba59c61bfacad1914a9842a0240b38ce064258a1e4ad0317c396df1a82d62e3372fd4d1386ebcec8c74a552c6a0f9f7f8a950b0b8a4b638b6a518ca73 +doccontainersize 470140 +doccontainerchecksum 921b184ffe6ecb78e44791d86cc622894232d7c4ff439236f2439e501634cd97e3ff1d4432d58fd1750e755010d169ad79c1c9a82941d043bf6dbbf5998d480c +docfiles size=153 + RELOC/doc/latex/kotex-oblivoir/ChangeLog + RELOC/doc/latex/kotex-oblivoir/README details="Readme" + RELOC/doc/latex/kotex-oblivoir/ob-mathleading-doc.pdf + RELOC/doc/latex/kotex-oblivoir/ob-mathleading-doc.tex + RELOC/doc/latex/kotex-oblivoir/obchaptertoc-doc.pdf + RELOC/doc/latex/kotex-oblivoir/obchaptertoc-doc.tex + RELOC/doc/latex/kotex-oblivoir/oblivoir-simpledoc.pdf details="Package documentation" language="ko" + RELOC/doc/latex/kotex-oblivoir/oblivoir-simpledoc.tex + RELOC/doc/latex/kotex-oblivoir/oblivoir-test.tex +runfiles size=69 + RELOC/tex/latex/kotex-oblivoir/memhangul-common/10_5.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/fapapersize.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/memhangul-common.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/memhangul-patch.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/memucs-enumerate.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/memucs-setspace.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/ob-koreanappendix.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/ob-nokoreanappendix.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/ob-toclof.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/obchaptertoc.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/hfontsel.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/hfontspec.nanum + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-ucs.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-gremph.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-interword.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/nanumfontsel.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/memhangul-x.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/memucs-interword-x.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/ob-mathleading.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/ob-unfontsdefault.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xetexko-var.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-amssymb.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-dotemph.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-font.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-hyper.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-lwarp.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-paralist.sty + RELOC/tex/latex/kotex-oblivoir/oblivoir-utf.cls + RELOC/tex/latex/kotex-oblivoir/oblivoir-xl.cls + RELOC/tex/latex/kotex-oblivoir/oblivoir.cls + RELOC/tex/latex/kotex-oblivoir/xoblivoir.cls +catalogue-ctan /language/korean/kotex-oblivoir +catalogue-license lppl1.3c +catalogue-topics korean class +catalogue-version 3.0.1 + +name kotex-plain +category Package +revision 38630 +shortdesc Macros for typesetting Korean under Plain TeX +relocated 1 +longdesc The package provides macros for typesetting Hangul, the native +longdesc alphabet of the Korean language, using plain *TeX. Input Korean +longdesc text should be encoded in UTF-8. The package is belongs to the +longdesc ko.TeX bundle. +containersize 9052 +containerchecksum f04333a7b7ffa7bee44b2d74bc1c4b0eb22fc57fe0721db0ed3bf260fddd68a6c10d92a041e42fe0ab1f897b5869cd7ff67da168336a708f03d072b4c4cedd68 +doccontainersize 1712 +doccontainerchecksum 55b16054d06f079a5d8bf6baa32155a0114e2a12b0269e1ba07ba988e733ad16cdebc1c991033f7bedbc3a180ef24fa84bb463c07e138136ffd89bab0c48b0e4 +docfiles size=2 + RELOC/doc/plain/kotex-plain/ChangeLog + RELOC/doc/plain/kotex-plain/README details="Readme" +runfiles size=11 + RELOC/tex/plain/kotex-plain/hangulcweb.tex + RELOC/tex/plain/kotex-plain/kotexplain.tex + RELOC/tex/plain/kotex-plain/kotexutf-core.tex + RELOC/tex/plain/kotex-plain/kotexutf.tex +catalogue-ctan /language/korean/kotex-plain +catalogue-license lppl1.3 +catalogue-topics korean plain-ext enc-juggle +catalogue-version 2.1.1a + +name kotex-utf +category Package +revision 38558 +shortdesc Typeset Hangul, coded in UTF-8 +relocated 1 +longdesc The package typesets Hangul, which is the native alphabet of +longdesc the Korean language; input Korean text should be encoded in +longdesc UTF-8. The bundle (of class and associated packages) belongs to +longdesc the ko.TeX bundle. +depend cjk-ko +containersize 20496 +containerchecksum 65ce36703d824ae483a53ac6a3550a8d71d140bdeb67d3c9ddd343255cedbb74739c1688b05ae4742703c6c46b3e46deef5c6a7c5571cfe8f8a4003d56aac446 +doccontainersize 6849784 +doccontainerchecksum 692a2d90f404c571aa0dea436436f72139bf2024dc6f3be0b9e48cb57b60e36d1abb79d7e51fb88b5efc83176417b8f74c8b945fbd236c0832873ad8fa65f410 +docfiles size=2066 + RELOC/doc/latex/kotex-utf/ChangeLog + RELOC/doc/latex/kotex-utf/README details="Readme" + RELOC/doc/latex/kotex-utf/fig/allowbreak-dhucs.pdf + RELOC/doc/latex/kotex-utf/fig/fntexp.pdf + RELOC/doc/latex/kotex-utf/fig/fntnormal.pdf + RELOC/doc/latex/kotex-utf/fig/histkotex.jpg + RELOC/doc/latex/kotex-utf/fig/linebreaktest.pdf + RELOC/doc/latex/kotex-utf/fig/testdhucsallowbreak.pdf + RELOC/doc/latex/kotex-utf/kotexdoc.pdf details="Package documentation (Korean)" language="ko" + RELOC/doc/latex/kotex-utf/kotexdoc.tex + RELOC/doc/latex/kotex-utf/sample-finemath-setup.tex + RELOC/doc/latex/kotex-utf/yettext.tex + RELOC/doc/latex/kotex-utf/yettext.txt +runfiles size=38 + RELOC/tex/latex/kotex-utf/contrib/dhucs-cmap.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-enumerate.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-enumitem.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-gremph.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-interword.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-paralist.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-sectsty.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-setspace.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-trivcj.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-ucshyper.sty + RELOC/tex/latex/kotex-utf/contrib/dhucsfn.sty + RELOC/tex/latex/kotex-utf/contrib/kotex-logo.sty + RELOC/tex/latex/kotex-utf/contrib/kotex-varioref.sty + RELOC/tex/latex/kotex-utf/dhucs-nanumfont.sty + RELOC/tex/latex/kotex-utf/dhucs.sty + RELOC/tex/latex/kotex-utf/hfontspec.default + RELOC/tex/latex/kotex-utf/kosections-utf.sty + RELOC/tex/latex/kotex-utf/kotex.cfg + RELOC/tex/latex/kotex-utf/kotexutf.sty + RELOC/tex/latex/kotex-utf/lucenc.dfu + RELOC/tex/latex/kotex-utf/lucuhcmj.fd + RELOC/tex/latex/kotex-utf/tex4ht/dhucs.4ht + RELOC/tex/latex/kotex-utf/tex4ht/dhucs.cfg + RELOC/tex/latex/kotex-utf/tex4ht/kosections-utf.4ht +catalogue-ctan /language/korean/kotex-utf +catalogue-license lppl1.3 +catalogue-topics korean +catalogue-version 2.1.2 + +name kotex-utils +category Package +revision 38727 +shortdesc Utility scripts and support files for typesetting Korean +longdesc The bundle provides scripts and support files for index +longdesc generation in Korean language typesetting. The files belong to +longdesc the ko.TeX bundle. +depend kotex-utf +depend kotex-utils.ARCH +containersize 30480 +containerchecksum 569e9677ef0f346e5a53f4cc84302a8ddf2b4ad85708f4ab8ba7d076ebf339ec60998a41fa92fa815167e9bfc37085ebfd921dd13a60b017a0574e4a5d205802 +doccontainersize 45472 +doccontainerchecksum a46c5d09d119fa2fe8b9acea87a37776536e3216b776af6b7037fc5b0a522af5c1a58baf081e60f06c9a4054e8ac2372458c276c779038a030dc92efdfa3aef6 +docfiles size=153 + texmf-dist/doc/latex/kotex-utils/ChangeLog + texmf-dist/doc/latex/kotex-utils/README details="Readme" + texmf-dist/doc/latex/kotex-utils/utf8-lang.xdy + texmf-dist/doc/latex/kotex-utils/utf8.xdy +runfiles size=75 + texmf-dist/makeindex/kotex-utils/kotex.ist + texmf-dist/makeindex/kotex-utils/memucs-manual.ist + texmf-dist/scripts/kotex-utils/jamo-normalize.pl + texmf-dist/scripts/kotex-utils/komkindex.pl + texmf-dist/scripts/kotex-utils/ttf2kotexfont.pl +catalogue-ctan /language/korean/kotex-utils +catalogue-license lppl +catalogue-topics korean index +catalogue-version 2.1.0 + +name kotex-utils.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of kotex-utils +containersize 416 +containerchecksum c347a6c71c70d63ea4c47393c7239c9a7ba305e924e02f98d522eb637fd58abb15087d52383e2386a2ab200c0f3bc2e9a22e075e8c66e7c5f2db62a3130c8a33 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/jamo-normalize + bin/aarch64-linux/komkindex + bin/aarch64-linux/ttf2kotexfont + +name kotex-utils.amd64-freebsd +category Package +revision 32101 +shortdesc amd64-freebsd files of kotex-utils +containersize 416 +containerchecksum 0970758d9e97a13a64307a800c405b0230a54696d07d4d168f36fcbea0fae41309b53917b11f8c0f627f6ca0b58ebd07ae6270efafc452b5523b96c2f69a12df +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/jamo-normalize + bin/amd64-freebsd/komkindex + bin/amd64-freebsd/ttf2kotexfont + +name kotex-utils.amd64-netbsd +category Package +revision 32101 +shortdesc amd64-netbsd files of kotex-utils +containersize 412 +containerchecksum 80b1daea5c759d65747ebe67c8c1e639de57e4c529cf16b08f7e1eadc95f1a9444f653bb2f9f79c39075e17eb74889c179314b7a02b657792f33557638f8e915 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/jamo-normalize + bin/amd64-netbsd/komkindex + bin/amd64-netbsd/ttf2kotexfont + +name kotex-utils.armhf-linux +category Package +revision 32101 +shortdesc armhf-linux files of kotex-utils +containersize 416 +containerchecksum a74beb9db4b6dbdb7fade6cd1316865a9392fd78a20a90be90731f545e86b0deede6992e0114bd52c5220b896fb9b3fb569a5ecd9d3302ba237bdf97dd2a2f9f +binfiles arch=armhf-linux size=3 + bin/armhf-linux/jamo-normalize + bin/armhf-linux/komkindex + bin/armhf-linux/ttf2kotexfont + +name kotex-utils.i386-cygwin +category Package +revision 32101 +shortdesc i386-cygwin files of kotex-utils +containersize 412 +containerchecksum d8348558ed0c70ed50ed4abd115bdcbdf9cf72fd6f4ad0579cc55255505f186749d3e4d86d83e777df153e1668cb759aa71a6d383590662bdf5639bd2196393a +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/jamo-normalize + bin/i386-cygwin/komkindex + bin/i386-cygwin/ttf2kotexfont + +name kotex-utils.i386-freebsd +category Package +revision 32101 +shortdesc i386-freebsd files of kotex-utils +containersize 412 +containerchecksum 52a3eb750c6a2460a20d0da32cfccd8a87196169bc5c79803df690850124ecb56966b597fbbb7c616f0564aaa3d83250a935aa6a23394588b08a1943a84f4765 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/jamo-normalize + bin/i386-freebsd/komkindex + bin/i386-freebsd/ttf2kotexfont + +name kotex-utils.i386-linux +category Package +revision 32101 +shortdesc i386-linux files of kotex-utils +containersize 412 +containerchecksum b19dbadebc01e4d119ebff23e4281f030a12d64c7f05cf87a0c9673e6169def2748963b0f014e7da2875bc97c64704dadb7e59784bcc78580df37b78407bc660 +binfiles arch=i386-linux size=3 + bin/i386-linux/jamo-normalize + bin/i386-linux/komkindex + bin/i386-linux/ttf2kotexfont + +name kotex-utils.i386-netbsd +category Package +revision 32101 +shortdesc i386-netbsd files of kotex-utils +containersize 416 +containerchecksum 640c5960d3e1e6c5166ed9477c657d6e45c91f1fd8204590ae8ab2cfcee1b9614f36c0f5eb98621503bf6a31a98a3fa708571d4614f5cc27f1af6fce5250df1d +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/jamo-normalize + bin/i386-netbsd/komkindex + bin/i386-netbsd/ttf2kotexfont + +name kotex-utils.i386-solaris +category Package +revision 32101 +shortdesc i386-solaris files of kotex-utils +containersize 416 +containerchecksum 6e70615d22c310b70316e64644d518030567bc1bdc712c07e6d69f5d90eee164afc1ceb1582ae3cf96bdc6e19ffcec01e1a851baf3f0f901674d3aba11ed6a17 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/jamo-normalize + bin/i386-solaris/komkindex + bin/i386-solaris/ttf2kotexfont + +name kotex-utils.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of kotex-utils +containersize 412 +containerchecksum c1721284d3c6104bbb276d81ab1b2a16612fd9c478f568a2d560c3fe1e9d41bef1aefc7d5fe381be8e61552740ad1d2d7829ee351a6302562bb18eefe9312acb +binfiles arch=universal-darwin size=3 + bin/universal-darwin/jamo-normalize + bin/universal-darwin/komkindex + bin/universal-darwin/ttf2kotexfont + +name kotex-utils.win32 +category Package +revision 32101 +shortdesc win32 files of kotex-utils +containersize 744 +containerchecksum 73514a29441619841d3a341e7c60f9fc94aa93a334ffc226d53acdd0b9d0452e4b19b54b717cd93c01ccde7c89e39d852643019c0b2eb12bc1e99c1d8c59d87c +binfiles arch=win32 size=3 + bin/win32/jamo-normalize.exe + bin/win32/komkindex.exe + bin/win32/ttf2kotexfont.exe + +name kotex-utils.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of kotex-utils +containersize 416 +containerchecksum 62d276da2630c77f59e42c8a88c8bb836e8ac4e8177fee91179aadf36b9072aba6119868c0897401e32e30758f71ffef0eff1b3204e8ffcb50b922490f1cd0f4 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/jamo-normalize + bin/x86_64-cygwin/komkindex + bin/x86_64-cygwin/ttf2kotexfont + +name kotex-utils.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of kotex-utils +containersize 420 +containerchecksum 45ba49a39305148081d6e730fc2a4c586f6add6075bc799589c1010d19a854c6ec0c6f3aa79dc8d708ab413e1d8f74eeae2eaa90697a9bc0eace5c9f99357845 +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/jamo-normalize + bin/x86_64-darwinlegacy/komkindex + bin/x86_64-darwinlegacy/ttf2kotexfont + +name kotex-utils.x86_64-linux +category Package +revision 32101 +shortdesc x86_64-linux files of kotex-utils +containersize 412 +containerchecksum bee0a36e462e675a8e3d3754d4e923942db879b86cef43c90d0a1d33a97041f6bf2fae7312a3a0d5ccb8233c7c9c0eee988f1fdc2173c51f9e15f3306c31379f +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/jamo-normalize + bin/x86_64-linux/komkindex + bin/x86_64-linux/ttf2kotexfont + +name kotex-utils.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of kotex-utils +containersize 420 +containerchecksum 91adc24c3517696de501c00a99f861e71a354556e6b1b8ae360a74b7c789f7e351d961324de1d3801359de4160aca7a925237aa60e915b658bb3f02a1dbc959b +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/jamo-normalize + bin/x86_64-linuxmusl/komkindex + bin/x86_64-linuxmusl/ttf2kotexfont + +name kotex-utils.x86_64-solaris +category Package +revision 32101 +shortdesc x86_64-solaris files of kotex-utils +containersize 416 +containerchecksum 04e5eea5de887ce1bbb477a895086a5d1f8e6aff12c1dbd3145a1328ec774153f36d535edd9424a8aeea667ad666decca04def61a2e75e57937cf5eca4790a60 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/jamo-normalize + bin/x86_64-solaris/komkindex + bin/x86_64-solaris/ttf2kotexfont + +name kpathsea +category TLCore +revision 58622 +shortdesc Path searching library for TeX-related files +longdesc Kpathsea is a library and utility programs which provide path +longdesc searching facilities for TeX file types, including the +longdesc self-locating feature required for movable installations, +longdesc layered on top of a general search mechanism. It is not +longdesc distributed separately, but rather is released and maintained +longdesc as part of the TeX live sources. +depend kpathsea.ARCH +containersize 32484 +containerchecksum 33e8096a1798a6204c0a6519cd13302e1c80797937aae4ce9e7c4928e4bd75472cd0864cd00ff88d3d6f01fcf1a2e027efbd5d1768024fa5ee23e56094f1b308 +doccontainersize 1072996 +doccontainerchecksum 9d34679ffecc16117ed7d1d6207602ab9466266b48b15d303764fc27301eb9dd4621dbf9ad2dcff85bfcf0c1f762316a412b3925e91f6b31e4da03e46ee51893 +docfiles size=556 + texmf-dist/doc/info/dir + texmf-dist/doc/info/kpathsea.info + texmf-dist/doc/info/tds.info + texmf-dist/doc/info/web2c.info + texmf-dist/doc/kpathsea/kpathsea.html + texmf-dist/doc/kpathsea/kpathsea.pdf details="Package documentation" + texmf-dist/doc/man/man1/kpseaccess.1 + texmf-dist/doc/man/man1/kpseaccess.man1.pdf + texmf-dist/doc/man/man1/kpsereadlink.1 + texmf-dist/doc/man/man1/kpsereadlink.man1.pdf + texmf-dist/doc/man/man1/kpsestat.1 + texmf-dist/doc/man/man1/kpsestat.man1.pdf + texmf-dist/doc/man/man1/kpsewhich.1 + texmf-dist/doc/man/man1/kpsewhich.man1.pdf + texmf-dist/doc/web2c/web2c.html + texmf-dist/doc/web2c/web2c.pdf +runfiles size=52 + texmf-dist/web2c/amiga-pl.tcx + texmf-dist/web2c/cp1250cs.tcx + texmf-dist/web2c/cp1250pl.tcx + texmf-dist/web2c/cp1250t1.tcx + texmf-dist/web2c/cp227.tcx + texmf-dist/web2c/cp852-cs.tcx + texmf-dist/web2c/cp852-pl.tcx + texmf-dist/web2c/cp8bit.tcx + texmf-dist/web2c/empty.tcx + texmf-dist/web2c/fmtutil.cnf + texmf-dist/web2c/il1-t1.tcx + texmf-dist/web2c/il2-cs.tcx + texmf-dist/web2c/il2-pl.tcx + texmf-dist/web2c/il2-t1.tcx + texmf-dist/web2c/kam-cs.tcx + texmf-dist/web2c/kam-t1.tcx + texmf-dist/web2c/macce-pl.tcx + texmf-dist/web2c/macce-t1.tcx + texmf-dist/web2c/maz-pl.tcx + texmf-dist/web2c/mktex.cnf + texmf-dist/web2c/mktex.opt + texmf-dist/web2c/mktexdir + texmf-dist/web2c/mktexdir.opt + texmf-dist/web2c/mktexnam + texmf-dist/web2c/mktexnam.opt + texmf-dist/web2c/mktexupd + texmf-dist/web2c/natural.tcx + texmf-dist/web2c/tcvn-t5.tcx + texmf-dist/web2c/texmf.cnf + texmf-dist/web2c/viscii-t5.tcx +catalogue-contact-bugs https://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 https://lists.tug.org/tex-k +catalogue-license lgpl2.1 +catalogue-topics sys-supp + +name kpathsea.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of kpathsea +containersize 38340 +containerchecksum f1bdb3ca6852dfa7d6bd8de658e849e3d4a89709b8856249623c3e1b44b87a9c1e1a257ce50d2029d4257dc3fd6a7fa895311d604f2127ea8305c74400873270 +binfiles arch=aarch64-linux size=32 + bin/aarch64-linux/kpseaccess + bin/aarch64-linux/kpsereadlink + bin/aarch64-linux/kpsestat + bin/aarch64-linux/kpsewhich + +name kpathsea.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of kpathsea +containersize 42924 +containerchecksum 294252b3a8f4cf83c442ef2d8e4969087c720310c86eb1deaa1f8e8821ec48ddba8d0f83fc690a0401327afca5469c4988c87ee0a9ff5e4f438a34f9d5213ece +binfiles arch=amd64-freebsd size=30 + bin/amd64-freebsd/kpseaccess + bin/amd64-freebsd/kpsereadlink + bin/amd64-freebsd/kpsestat + bin/amd64-freebsd/kpsewhich + +name kpathsea.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of kpathsea +containersize 38752 +containerchecksum 22aeba59cd561971281962ec34cf7a18be8f5b98494be54d04476902696fdcd9e7d16635a9707845b72c83466781bdb9d83ed245236ee166c34436423f7d0d6b +binfiles arch=amd64-netbsd size=36 + bin/amd64-netbsd/kpseaccess + bin/amd64-netbsd/kpsereadlink + bin/amd64-netbsd/kpsestat + bin/amd64-netbsd/kpsewhich + +name kpathsea.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of kpathsea +containersize 32400 +containerchecksum 777ec112d244ea141bc98c283e6d4f97e378881fb7bc93c0584a95873c5ae884e5caddeb65c1c55c5debbd0ee9b8b859c193f722aaeca1a9956a942b1108e1fb +binfiles arch=armhf-linux size=25 + bin/armhf-linux/kpseaccess + bin/armhf-linux/kpsereadlink + bin/armhf-linux/kpsestat + bin/armhf-linux/kpsewhich + +name kpathsea.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of kpathsea +containersize 47024 +containerchecksum b25fe26f84b34f85b953f99a58e40b5de52adb743f0c96d8ee98d0773725fa7ae2ca96e6428bcdc4484678399261c87237b6eec0e30f8126dcd88e995fd1b995 +binfiles arch=i386-cygwin size=40 + bin/i386-cygwin/cygkpathsea-6.dll + bin/i386-cygwin/kpseaccess.exe + bin/i386-cygwin/kpsereadlink.exe + bin/i386-cygwin/kpsestat.exe + bin/i386-cygwin/kpsewhich.exe + +name kpathsea.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of kpathsea +containersize 38328 +containerchecksum 9844038b46eb2c0b37dd37513fea53d05d79976f7390f47f1056109809e2bf7c187fbf2dc6eaad22ffa313b6ec63f16c5d0a02f59a5c2baac152d6762dce63c9 +binfiles arch=i386-freebsd size=27 + bin/i386-freebsd/kpseaccess + bin/i386-freebsd/kpsereadlink + bin/i386-freebsd/kpsestat + bin/i386-freebsd/kpsewhich + +name kpathsea.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of kpathsea +containersize 42620 +containerchecksum 4651121c2cb264914c64f063837a5435f7fe2a3743b55807153c53cedb6e3f60aea733b0d18b5ee71af708a7c5dea2312f50b0ea7f66c66e661440265ef5470d +binfiles arch=i386-linux size=31 + bin/i386-linux/kpseaccess + bin/i386-linux/kpsereadlink + bin/i386-linux/kpsestat + bin/i386-linux/kpsewhich + +name kpathsea.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of kpathsea +containersize 35560 +containerchecksum 52cc7316d8ae4eaddce597c6e6b97655de9e5081eb197ce1afdc5e34570dbd12f5566099e3eea62347794697eb4a6eb81ed9a8d00e75bc767cac688f5c5b5d76 +binfiles arch=i386-netbsd size=33 + bin/i386-netbsd/kpseaccess + bin/i386-netbsd/kpsereadlink + bin/i386-netbsd/kpsestat + bin/i386-netbsd/kpsewhich + +name kpathsea.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of kpathsea +containersize 41332 +containerchecksum a70e280b69f4e857edbd99f7bea42076549dd47ec66454fc188bbd0ffcb9d53836488475d037e0214e55681b59dc26f77309984195c7618bc53e566a195645a1 +binfiles arch=i386-solaris size=28 + bin/i386-solaris/kpseaccess + bin/i386-solaris/kpsereadlink + bin/i386-solaris/kpsestat + bin/i386-solaris/kpsewhich + +name kpathsea.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of kpathsea +containersize 83712 +containerchecksum 8da7bc1520b4c2238ea5d6efd001539aff8ba8fb8e8f9b9c400d847223688ecb530fb78c24ee862567c77ace10627812a633eaf669d84a4d286cf58cccb6a906 +binfiles arch=universal-darwin size=142 + bin/universal-darwin/kpseaccess + bin/universal-darwin/kpsereadlink + bin/universal-darwin/kpsestat + bin/universal-darwin/kpsewhich + +name kpathsea.win32 +category TLCore +revision 58783 +shortdesc win32 files of kpathsea +containersize 487512 +containerchecksum 1ece66a50ddbb88cc14ef8ff93f057c2b543f7c0c74648d841f8bdd8472f513b2211ab729f18b01aa08d862afa96480f1c6f0999a6f24675ce65085b426f03fb +binfiles arch=win32 size=332 + bin/win32/kpathsealib.dll + bin/win32/kpseaccess.exe + bin/win32/kpsereadlink.exe + bin/win32/kpsestat.exe + bin/win32/kpsewhich.exe + bin/win32/mktexupd.exe + bin/win32/msvcp140.dll + bin/win32/msvcr100.dll + +name kpathsea.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of kpathsea +containersize 45992 +containerchecksum f2be719854aef13ef5f7cc52eebddaab127b726555b1eb5a9df2b05760e339fee0b7d3a5128288f1016ff4cc5df7fb45c4929681d437e914099f5738849fe8da +binfiles arch=x86_64-cygwin size=38 + bin/x86_64-cygwin/cygkpathsea-6.dll + bin/x86_64-cygwin/kpseaccess.exe + bin/x86_64-cygwin/kpsereadlink.exe + bin/x86_64-cygwin/kpsestat.exe + bin/x86_64-cygwin/kpsewhich.exe + +name kpathsea.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of kpathsea +containersize 39540 +containerchecksum 42ec4d87e85929958811d6d5c807f5a0caec51fd7838eaddb2191c574967c107e1f73cf7d5ba7be6adab7db388f59a4d3d5a78243840234933d1cd09b70600a6 +binfiles arch=x86_64-darwinlegacy size=31 + bin/x86_64-darwinlegacy/kpseaccess + bin/x86_64-darwinlegacy/kpsereadlink + bin/x86_64-darwinlegacy/kpsestat + bin/x86_64-darwinlegacy/kpsewhich + +name kpathsea.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of kpathsea +containersize 40260 +containerchecksum 1b5155d366e33c2c0717439f1024e4108ec9d1e4c052d30ed547e66b0978f145048362e886feb99ba6674f9093abb77f077efd44da23a69f3d393f5ed42fe8a4 +binfiles arch=x86_64-linux size=28 + bin/x86_64-linux/kpseaccess + bin/x86_64-linux/kpsereadlink + bin/x86_64-linux/kpsestat + bin/x86_64-linux/kpsewhich + +name kpathsea.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of kpathsea +containersize 44140 +containerchecksum 3b16593d6c1f1194bb585f991161d82f6a196d90ce681098aec611344aeda7f3fbfd38268997078ce5b1ac014836abb9101a71120a2b7b9233d3f5e93da44d95 +binfiles arch=x86_64-linuxmusl size=32 + bin/x86_64-linuxmusl/kpseaccess + bin/x86_64-linuxmusl/kpsereadlink + bin/x86_64-linuxmusl/kpsestat + bin/x86_64-linuxmusl/kpsewhich + +name kpathsea.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of kpathsea +containersize 44648 +containerchecksum 8f7be67242f2b4596c00115e7815d1336474cec5e685d8fb3a0083591bac88091ecfd84ac8fd0d4980c3b8e40c9796a78c98d62bbb753814e561e1284e8f73fc +binfiles arch=x86_64-solaris size=33 + bin/x86_64-solaris/kpseaccess + bin/x86_64-solaris/kpsereadlink + bin/x86_64-solaris/kpsestat + bin/x86_64-solaris/kpsewhich + +name kpfonts +category Package +revision 55643 +shortdesc A complete set of fonts for text and mathematics +relocated 1 +longdesc The family contains text fonts in roman, sans-serif and +longdesc monospaced shapes, with true small caps and old-style numbers; +longdesc the package offers full support of the textcomp package. The +longdesc mathematics fonts include all the AMS fonts, in both normal and +longdesc bold weights. Each of the font types is available in two main +longdesc versions: default and 'light'. Each version is available in +longdesc four variants: default; oldstyle numbers; oldstyle numbers with +longdesc old ligatures such as ct and st, and long-tailed capital Q; and +longdesc veryoldstyle with long s. Other variants include small caps as +longdesc default or 'large small caps', and for mathematics both upright +longdesc and slanted shapes for Greek letters, as well as default and +longdesc narrow versions of multiple integrals. The fonts were +longdesc originally derived from URW Palladio (with URW's agreement) +longdesc though the fonts are very clearly different in appearance from +longdesc their parent. +execute addMap kpfonts.map +containersize 2205528 +containerchecksum 80ac89fcf4e17560781d3f5774d39b47dee0851938409e0fda6837f99d9781c5669d1e6f3c7f27b08ce2e76bf884da7de95d5e66664a1b9e4c012063ed4a6f45 +doccontainersize 1759292 +doccontainerchecksum fee8417e0bfb66a6ebd6869eba5d5cb64ffa64259925b9ef8c150c24d0e3ca5d15c82d3769542245c835189d7afd128a831f567dc642df00c6dac2d536b2e94f +docfiles size=544 + RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.pdf details="Package documentation (French)" language="fr" + RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.tex + RELOC/doc/fonts/kpfonts/README.txt details="Readme" + RELOC/doc/fonts/kpfonts/christophe.cls + RELOC/doc/fonts/kpfonts/kpfonts-abstract.pdf details="Summary of features" + RELOC/doc/fonts/kpfonts/kpfonts-abstract.tex + RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.pdf + RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.tex + RELOC/doc/fonts/kpfonts/kpfonts.pdf details="Package documentation (English)" language="en" + RELOC/doc/fonts/kpfonts/kpfonts.tex +srccontainersize 223556 +srccontainerchecksum 387ac06bb251c84b0da03e25f530eff8f8c0ac134fc7b33b1fa3a0dd47366f8a78e3fba8bb9dd0bab2094d1082bc5e08dde7c198e302654bced7ff01776e5317 +srcfiles size=76 + RELOC/source/fonts/kpfonts/afm.zip + RELOC/source/fonts/kpfonts/kpfonts-fontinst.zip +runfiles size=3713 + RELOC/fonts/enc/dvips/kpfonts/kpfonts-expert-sc.enc + RELOC/fonts/enc/dvips/kpfonts/kpfonts-expert-tt.enc + RELOC/fonts/enc/dvips/kpfonts/kpfonts-expert.enc + RELOC/fonts/enc/dvips/kpfonts/kpfonts-large-sc.enc + RELOC/fonts/map/dvips/kpfonts/kpfonts.map + RELOC/fonts/tfm/public/kpfonts/jkpbex.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbexa.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbite.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsya.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxite.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpex.tfm + RELOC/fonts/tfm/public/kpfonts/jkpexa.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbex.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbexa.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbite.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxite.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxne.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplex.tfm + RELOC/fonts/tfm/public/kpfonts/jkplexa.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmite.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmite.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbex.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssex.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsssyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsssybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsya.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmsl8t.tfm + RELOC/fonts/type1/public/kpfonts/jkpbex.pfb + RELOC/fonts/type1/public/kpfonts/jkpbexa.pfb + RELOC/fonts/type1/public/kpfonts/jkpbit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpbitc.pfb + RELOC/fonts/type1/public/kpfonts/jkpbite.pfb + RELOC/fonts/type1/public/kpfonts/jkpbmi.pfb + RELOC/fonts/type1/public/kpfonts/jkpbmia.pfb + RELOC/fonts/type1/public/kpfonts/jkpbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpbne.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsy.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsya.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkpex.pfb + RELOC/fonts/type1/public/kpfonts/jkpexa.pfb + RELOC/fonts/type1/public/kpfonts/jkpkbsc.pfb + RELOC/fonts/type1/public/kpfonts/jkpkmsc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbex.pfb + RELOC/fonts/type1/public/kpfonts/jkplbexa.pfb + RELOC/fonts/type1/public/kpfonts/jkplbit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplbitc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbite.pfb + RELOC/fonts/type1/public/kpfonts/jkplbmi.pfb + RELOC/fonts/type1/public/kpfonts/jkplbmia.pfb + RELOC/fonts/type1/public/kpfonts/jkplbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbne.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsce.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsy.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkplex.pfb + RELOC/fonts/type1/public/kpfonts/jkplexa.pfb + RELOC/fonts/type1/public/kpfonts/jkplkbsc.pfb + RELOC/fonts/type1/public/kpfonts/jkplkmsc.pfb + RELOC/fonts/type1/public/kpfonts/jkplmi.pfb + RELOC/fonts/type1/public/kpfonts/jkplmia.pfb + RELOC/fonts/type1/public/kpfonts/jkplmit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplmitc.pfb + RELOC/fonts/type1/public/kpfonts/jkplmite.pfb + RELOC/fonts/type1/public/kpfonts/jkplmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkplmne.pfb + RELOC/fonts/type1/public/kpfonts/jkplmsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplmsce.pfb + RELOC/fonts/type1/public/kpfonts/jkplsy.pfb + RELOC/fonts/type1/public/kpfonts/jkplsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkplsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkplsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkpmi.pfb + RELOC/fonts/type1/public/kpfonts/jkpmia.pfb + RELOC/fonts/type1/public/kpfonts/jkpmit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpmitc.pfb + RELOC/fonts/type1/public/kpfonts/jkpmite.pfb + RELOC/fonts/type1/public/kpfonts/jkpmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpmne.pfb + RELOC/fonts/type1/public/kpfonts/jkpmsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpmsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbne.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpsskbsc.pfb + RELOC/fonts/type1/public/kpfonts/jkpsskmsc.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmne.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpsy.pfb + RELOC/fonts/type1/public/kpfonts/jkpsya.pfb + RELOC/fonts/type1/public/kpfonts/jkpsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkpsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkpsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkpttbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpttbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpttbne.pfb + RELOC/fonts/type1/public/kpfonts/jkpttmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpttmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpttmne.pfb + RELOC/fonts/vf/public/kpfonts/jkpbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkpbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpbsydw.vf + RELOC/fonts/vf/public/kpfonts/jkpbsyw.vf + RELOC/fonts/vf/public/kpfonts/jkpbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkplbmif.vf + RELOC/fonts/vf/public/kpfonts/jkplbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkplbsydw.vf + RELOC/fonts/vf/public/kpfonts/jkplbsyw.vf + RELOC/fonts/vf/public/kpfonts/jkplbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkplmif.vf + RELOC/fonts/vf/public/kpfonts/jkplmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplsybw.vf + RELOC/fonts/vf/public/kpfonts/jkplsydw.vf + RELOC/fonts/vf/public/kpfonts/jkplsyw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmi.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmif.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmi.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmif.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkpmif.vf + RELOC/fonts/vf/public/kpfonts/jkpmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbex.vf + RELOC/fonts/vf/public/kpfonts/jkpssbmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssbmia.vf + RELOC/fonts/vf/public/kpfonts/jkpssbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsyb.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssex.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsslbsyb.vf + RELOC/fonts/vf/public/kpfonts/jkpsslbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpsslsyb.vf + RELOC/fonts/vf/public/kpfonts/jkpsslsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpssmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssmia.vf + RELOC/fonts/vf/public/kpfonts/jkpssmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsssyb.vf + RELOC/fonts/vf/public/kpfonts/jkpsssybw.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpsydw.vf + RELOC/fonts/vf/public/kpfonts/jkpsyw.vf + RELOC/fonts/vf/public/kpfonts/jkpttbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmi.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmi.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmif.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmsl8t.vf + RELOC/tex/latex/kpfonts/kpfonts.sty + RELOC/tex/latex/kpfonts/omljkp.fd + RELOC/tex/latex/kpfonts/omljkpl.fd + RELOC/tex/latex/kpfonts/omljkplvos.fd + RELOC/tex/latex/kpfonts/omljkplvosw.fd + RELOC/tex/latex/kpfonts/omljkplw.fd + RELOC/tex/latex/kpfonts/omljkpss.fd + RELOC/tex/latex/kpfonts/omljkpssvos.fd + RELOC/tex/latex/kpfonts/omljkpvos.fd + RELOC/tex/latex/kpfonts/omljkpvosw.fd + RELOC/tex/latex/kpfonts/omljkpw.fd + RELOC/tex/latex/kpfonts/omsjkp.fd + RELOC/tex/latex/kpfonts/omsjkpl.fd + RELOC/tex/latex/kpfonts/omsjkplw.fd + RELOC/tex/latex/kpfonts/omsjkpw.fd + RELOC/tex/latex/kpfonts/omxjkp.fd + RELOC/tex/latex/kpfonts/omxjkpl.fd + RELOC/tex/latex/kpfonts/omxjkpss.fd + RELOC/tex/latex/kpfonts/ot1jkp.fd + RELOC/tex/latex/kpfonts/ot1jkpf.fd + RELOC/tex/latex/kpfonts/ot1jkpfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpk.fd + RELOC/tex/latex/kpfonts/ot1jkpkf.fd + RELOC/tex/latex/kpfonts/ot1jkpkfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpkos.fd + RELOC/tex/latex/kpfonts/ot1jkpkosn.fd + RELOC/tex/latex/kpfonts/ot1jkpkvos.fd + RELOC/tex/latex/kpfonts/ot1jkpl.fd + RELOC/tex/latex/kpfonts/ot1jkplf.fd + RELOC/tex/latex/kpfonts/ot1jkplfosn.fd + RELOC/tex/latex/kpfonts/ot1jkplk.fd + RELOC/tex/latex/kpfonts/ot1jkplkf.fd + RELOC/tex/latex/kpfonts/ot1jkplkfosn.fd + RELOC/tex/latex/kpfonts/ot1jkplkos.fd + RELOC/tex/latex/kpfonts/ot1jkplkosn.fd + RELOC/tex/latex/kpfonts/ot1jkplkvos.fd + RELOC/tex/latex/kpfonts/ot1jkplos.fd + RELOC/tex/latex/kpfonts/ot1jkplosn.fd + RELOC/tex/latex/kpfonts/ot1jkplvos.fd + RELOC/tex/latex/kpfonts/ot1jkpos.fd + RELOC/tex/latex/kpfonts/ot1jkposn.fd + RELOC/tex/latex/kpfonts/ot1jkpss.fd + RELOC/tex/latex/kpfonts/ot1jkpssf.fd + RELOC/tex/latex/kpfonts/ot1jkpssfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpssk.fd + RELOC/tex/latex/kpfonts/ot1jkpsskf.fd + RELOC/tex/latex/kpfonts/ot1jkpsskfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpsskos.fd + RELOC/tex/latex/kpfonts/ot1jkpsskosn.fd + RELOC/tex/latex/kpfonts/ot1jkpsskvos.fd + RELOC/tex/latex/kpfonts/ot1jkpssos.fd + RELOC/tex/latex/kpfonts/ot1jkpssosn.fd + RELOC/tex/latex/kpfonts/ot1jkpssvos.fd + RELOC/tex/latex/kpfonts/ot1jkptt.fd + RELOC/tex/latex/kpfonts/ot1jkpttos.fd + RELOC/tex/latex/kpfonts/ot1jkpttosn.fd + RELOC/tex/latex/kpfonts/ot1jkpttvos.fd + RELOC/tex/latex/kpfonts/ot1jkpvos.fd + RELOC/tex/latex/kpfonts/ot1jkpx.fd + RELOC/tex/latex/kpfonts/ot1jkpxf.fd + RELOC/tex/latex/kpfonts/ot1jkpxfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxk.fd + RELOC/tex/latex/kpfonts/ot1jkpxkf.fd + RELOC/tex/latex/kpfonts/ot1jkpxkfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxkos.fd + RELOC/tex/latex/kpfonts/ot1jkpxkosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxkvos.fd + RELOC/tex/latex/kpfonts/ot1jkpxos.fd + RELOC/tex/latex/kpfonts/ot1jkpxosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxvos.fd + RELOC/tex/latex/kpfonts/t1jkp.fd + RELOC/tex/latex/kpfonts/t1jkpf.fd + RELOC/tex/latex/kpfonts/t1jkpfosn.fd + RELOC/tex/latex/kpfonts/t1jkpk.fd + RELOC/tex/latex/kpfonts/t1jkpkf.fd + RELOC/tex/latex/kpfonts/t1jkpkfosn.fd + RELOC/tex/latex/kpfonts/t1jkpkos.fd + RELOC/tex/latex/kpfonts/t1jkpkosn.fd + RELOC/tex/latex/kpfonts/t1jkpkvos.fd + RELOC/tex/latex/kpfonts/t1jkpl.fd + RELOC/tex/latex/kpfonts/t1jkplf.fd + RELOC/tex/latex/kpfonts/t1jkplfosn.fd + RELOC/tex/latex/kpfonts/t1jkplk.fd + RELOC/tex/latex/kpfonts/t1jkplkf.fd + RELOC/tex/latex/kpfonts/t1jkplkfosn.fd + RELOC/tex/latex/kpfonts/t1jkplkos.fd + RELOC/tex/latex/kpfonts/t1jkplkosn.fd + RELOC/tex/latex/kpfonts/t1jkplkvos.fd + RELOC/tex/latex/kpfonts/t1jkplos.fd + RELOC/tex/latex/kpfonts/t1jkplosn.fd + RELOC/tex/latex/kpfonts/t1jkplvos.fd + RELOC/tex/latex/kpfonts/t1jkpos.fd + RELOC/tex/latex/kpfonts/t1jkposn.fd + RELOC/tex/latex/kpfonts/t1jkpss.fd + RELOC/tex/latex/kpfonts/t1jkpssf.fd + RELOC/tex/latex/kpfonts/t1jkpssfosn.fd + RELOC/tex/latex/kpfonts/t1jkpssk.fd + RELOC/tex/latex/kpfonts/t1jkpsskf.fd + RELOC/tex/latex/kpfonts/t1jkpsskfosn.fd + RELOC/tex/latex/kpfonts/t1jkpsskos.fd + RELOC/tex/latex/kpfonts/t1jkpsskosn.fd + RELOC/tex/latex/kpfonts/t1jkpsskvos.fd + RELOC/tex/latex/kpfonts/t1jkpssos.fd + RELOC/tex/latex/kpfonts/t1jkpssosn.fd + RELOC/tex/latex/kpfonts/t1jkpssvos.fd + RELOC/tex/latex/kpfonts/t1jkptt.fd + RELOC/tex/latex/kpfonts/t1jkpttos.fd + RELOC/tex/latex/kpfonts/t1jkpttosn.fd + RELOC/tex/latex/kpfonts/t1jkpttvos.fd + RELOC/tex/latex/kpfonts/t1jkpvos.fd + RELOC/tex/latex/kpfonts/t1jkpx.fd + RELOC/tex/latex/kpfonts/t1jkpxf.fd + RELOC/tex/latex/kpfonts/t1jkpxfosn.fd + RELOC/tex/latex/kpfonts/t1jkpxk.fd + RELOC/tex/latex/kpfonts/t1jkpxkf.fd + RELOC/tex/latex/kpfonts/t1jkpxkfosn.fd + RELOC/tex/latex/kpfonts/t1jkpxkos.fd + RELOC/tex/latex/kpfonts/t1jkpxkosn.fd + RELOC/tex/latex/kpfonts/t1jkpxkvos.fd + RELOC/tex/latex/kpfonts/t1jkpxos.fd + RELOC/tex/latex/kpfonts/t1jkpxosn.fd + RELOC/tex/latex/kpfonts/t1jkpxvos.fd + RELOC/tex/latex/kpfonts/ts1jkp.fd + RELOC/tex/latex/kpfonts/ts1jkpf.fd + RELOC/tex/latex/kpfonts/ts1jkpfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpk.fd + RELOC/tex/latex/kpfonts/ts1jkpkf.fd + RELOC/tex/latex/kpfonts/ts1jkpkfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpkos.fd + RELOC/tex/latex/kpfonts/ts1jkpkosn.fd + RELOC/tex/latex/kpfonts/ts1jkpkvos.fd + RELOC/tex/latex/kpfonts/ts1jkpl.fd + RELOC/tex/latex/kpfonts/ts1jkplf.fd + RELOC/tex/latex/kpfonts/ts1jkplfosn.fd + RELOC/tex/latex/kpfonts/ts1jkplk.fd + RELOC/tex/latex/kpfonts/ts1jkplkf.fd + RELOC/tex/latex/kpfonts/ts1jkplkfosn.fd + RELOC/tex/latex/kpfonts/ts1jkplkos.fd + RELOC/tex/latex/kpfonts/ts1jkplkosn.fd + RELOC/tex/latex/kpfonts/ts1jkplkvos.fd + RELOC/tex/latex/kpfonts/ts1jkplos.fd + RELOC/tex/latex/kpfonts/ts1jkplosn.fd + RELOC/tex/latex/kpfonts/ts1jkplvos.fd + RELOC/tex/latex/kpfonts/ts1jkpos.fd + RELOC/tex/latex/kpfonts/ts1jkposn.fd + RELOC/tex/latex/kpfonts/ts1jkpss.fd + RELOC/tex/latex/kpfonts/ts1jkpssf.fd + RELOC/tex/latex/kpfonts/ts1jkpssfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpssk.fd + RELOC/tex/latex/kpfonts/ts1jkpsskf.fd + RELOC/tex/latex/kpfonts/ts1jkpsskfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpsskos.fd + RELOC/tex/latex/kpfonts/ts1jkpsskosn.fd + RELOC/tex/latex/kpfonts/ts1jkpsskvos.fd + RELOC/tex/latex/kpfonts/ts1jkpssos.fd + RELOC/tex/latex/kpfonts/ts1jkpssosn.fd + RELOC/tex/latex/kpfonts/ts1jkpssvos.fd + RELOC/tex/latex/kpfonts/ts1jkptt.fd + RELOC/tex/latex/kpfonts/ts1jkpttos.fd + RELOC/tex/latex/kpfonts/ts1jkpttosn.fd + RELOC/tex/latex/kpfonts/ts1jkpttvos.fd + RELOC/tex/latex/kpfonts/ts1jkpvos.fd + RELOC/tex/latex/kpfonts/ts1jkpx.fd + RELOC/tex/latex/kpfonts/ts1jkpxf.fd + RELOC/tex/latex/kpfonts/ts1jkpxfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxk.fd + RELOC/tex/latex/kpfonts/ts1jkpxkf.fd + RELOC/tex/latex/kpfonts/ts1jkpxkfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxkos.fd + RELOC/tex/latex/kpfonts/ts1jkpxkosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxkvos.fd + RELOC/tex/latex/kpfonts/ts1jkpxos.fd + RELOC/tex/latex/kpfonts/ts1jkpxosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxvos.fd + RELOC/tex/latex/kpfonts/ujkpexa.fd + RELOC/tex/latex/kpfonts/ujkplexa.fd + RELOC/tex/latex/kpfonts/ujkplmia.fd + RELOC/tex/latex/kpfonts/ujkplmiaw.fd + RELOC/tex/latex/kpfonts/ujkplsyb.fd + RELOC/tex/latex/kpfonts/ujkplsybw.fd + RELOC/tex/latex/kpfonts/ujkplsyc.fd + RELOC/tex/latex/kpfonts/ujkplsyd.fd + RELOC/tex/latex/kpfonts/ujkplsydw.fd + RELOC/tex/latex/kpfonts/ujkpmia.fd + RELOC/tex/latex/kpfonts/ujkpmiaw.fd + RELOC/tex/latex/kpfonts/ujkpsslsyb.fd + RELOC/tex/latex/kpfonts/ujkpsslsybw.fd + RELOC/tex/latex/kpfonts/ujkpssmia.fd + RELOC/tex/latex/kpfonts/ujkpsssyb.fd + RELOC/tex/latex/kpfonts/ujkpsssybw.fd + RELOC/tex/latex/kpfonts/ujkpsya.fd + RELOC/tex/latex/kpfonts/ujkpsyb.fd + RELOC/tex/latex/kpfonts/ujkpsybw.fd + RELOC/tex/latex/kpfonts/ujkpsyc.fd + RELOC/tex/latex/kpfonts/ujkpsyd.fd + RELOC/tex/latex/kpfonts/ujkpsydw.fd +catalogue-also kpfonts-otf +catalogue-ctan /fonts/kpfonts +catalogue-license gpl +catalogue-topics font font-type1 font-serif font-sans font-mono font-maths +catalogue-version 3.33 + +name kpfonts-otf +category Package +revision 58435 +shortdesc OTF version of the Kp-fonts +relocated 1 +longdesc This bundle provides OpenType versions of the Type1 Kp-fonts +longdesc designed by Christophe Caignaert. It is usable with LuaTeX or +longdesc XeTeX engines only. It consists of sixteen Text fonts (eight +longdesc Serif, four Sans-Serif, four Monotype) and five Math fonts. +longdesc Serif and Sans-Serif families have small caps available in two +longdesc sizes (SmallCaps and PetitesCaps), upper and lowercase digits, +longdesc real superscripts and subscripts; ancient ligatures (ct and +longdesc st), ancient long-s and a long-tailed capital Q are available +longdesc via font features. Math fonts cover all usual symbols including +longdesc AMS'; a full list of available symbols is provided, see the +longdesc 'List of glyphs'. +containersize 1084240 +containerchecksum 7daa6cf5fcdedce50ad5fac45abe82c69f695d8f42c95bece738ca161b6b494ef4b008a769f3989ac800d9970888e5c205d87ef7c33ba19a56883547f2957c61 +doccontainersize 2057708 +doccontainerchecksum 29affa9fa075b00abc05332a214ed6abb5c0a8e79a07527461b813d335ace02e3e2e04e32abf823d2a327721b69affc4a2a065ba6b1392afa04542ab37cd9efc +docfiles size=554 + RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.ltx + RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.pdf details="Package documentation (English)" language="en" + RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-French.ltx + RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-French.pdf details="Package documentation (French)" language="fr" + RELOC/doc/fonts/kpfonts-otf/README.md details="Readme" + RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.ltx + RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.pdf details="List of glyphs" +runfiles size=828 + RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Bold.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Light.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Regular.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Sans.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Semibold.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMono-Bold.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMono-BoldItalic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMono-Italic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMono-Regular.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-Bold.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-BoldItalic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-Italic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-Light.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-LightItalic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-Regular.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-Semibold.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpRoman-SemiboldItalic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpSans-Bold.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpSans-BoldItalic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpSans-Italic.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpSans-Regular.otf + RELOC/tex/latex/kpfonts-otf/KpLight.fontspec + RELOC/tex/latex/kpfonts-otf/KpMono.fontspec + RELOC/tex/latex/kpfonts-otf/KpRoman.fontspec + RELOC/tex/latex/kpfonts-otf/KpSans.fontspec + RELOC/tex/latex/kpfonts-otf/kpfonts-otf.sty +catalogue-also kpfonts +catalogue-ctan /fonts/kpfonts-otf +catalogue-license ofl lppl1.3 +catalogue-topics font font-body font-serif font-sans font-proportional font-mono font-maths font-otf font-supp +catalogue-version 0.35 + +name ksfh_nat +category Package +revision 24825 +catalogue ksfh-nat +shortdesc BibTeX style for KSFH Munich +relocated 1 +longdesc The package supports bibliographies as standard for KSFH +longdesc (Katholische Stiftungsfachhochschule) Munich. BibTeX entries in +longdesc article, book, inbook, incollection and misc formats are +longdesc supported. +containersize 3968 +containerchecksum 8893133ed49c9b4ba7472bc80a4e5583ec2546838e261fa2cf9aee188a0b00bca45de05c4e969af0b6f222a9668c3a7fac0caadbb180c10500fc53ae8c9f56c6 +runfiles size=6 + RELOC/bibtex/bst/ksfh_nat/ksfh_nat.bst +catalogue-ctan /biblio/bibtex/contrib/ksfh_nat +catalogue-license lppl1.3 +catalogue-topics bibtex-sty +catalogue-version 1.1 + +name ksp-thesis +category Package +revision 39080 +shortdesc A LaTeX class for theses published with KIT Scientific Publishing +relocated 1 +longdesc This package provides a LaTeX class intended for authors who +longdesc want to publish their thesis or other scientific work with KIT +longdesc Scientific Publishing (KSP). The class is based on the scrbook +longdesc class of the KOMA-script bundle in combination with the +longdesc ClassicThesis and ArsClassica packages. It modifies some of the +longdesc layout and style definitions of these packages in order to +longdesc provide a document layout that should be compatible with the +longdesc requirements by KSP. +containersize 4340 +containerchecksum 3a250167d8810e3e81c5b6f86dad57e191a2a8387b5c7701e9b176cb007ebed79bd11867caa63e9cb9d3412fd59baeca7ff8e7589b11c4ef1144678552957216 +doccontainersize 146928 +doccontainerchecksum ea4ff7ccabb237b113511b58ff767b494b213cec1382467ea8b95b72abe9c0d361f39781940c976075157bae93e8e32364f716cdba2a07b8a7d72c0970a31cf9 +docfiles size=94 + RELOC/doc/latex/ksp-thesis/LISTOFFILES + RELOC/doc/latex/ksp-thesis/README.md details="Readme" + RELOC/doc/latex/ksp-thesis/demo/full/content/appendix.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/appendix/bibliography.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/appendix/lists.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/docinfo.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/abstract.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/acknowledgments.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/dirtytitle.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/lists.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/publications.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/titlepage.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/toc.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/frontmatter.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/mainmatter.tex + RELOC/doc/latex/ksp-thesis/demo/full/example.tex + RELOC/doc/latex/ksp-thesis/demo/full/preamble/layout.tex + RELOC/doc/latex/ksp-thesis/demo/minimal/example.tex + RELOC/doc/latex/ksp-thesis/ksp-thesis.pdf details="Package documentation" + RELOC/doc/latex/ksp-thesis/ksp-thesis.tex +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-license lppl1.3 +catalogue-topics class dissertation +catalogue-version 1.0.2 + +name ktv-texdata +category Package +revision 27369 +shortdesc Extract subsets of documents +relocated 1 +longdesc The package defines an exercice environment which numbers every +longdesc exercise, and a command \get to extract a collection whose +longdesc argument is a comma-separated set of exercise index numbers. +longdesc While the package was designed for teachers constructing tables +longdesc of exercises, it plainly has more general application. +containersize 2832 +containerchecksum c2f3e86494993e6e56f131b9e7105ee2d15179b96580982ae7fba9e32c3e9889159ae767d96d95111f2eb052bd61f0c3c15406ae3af70b359e3b5ce081a6978a +doccontainersize 192368 +doccontainerchecksum d930db31105dbcfe3df4184422115d82fda7efa93d00eb8f9fefa0eff3893602fb4db9e7be26d2a44c0b3cb56e8e9810f61bc660c15e49c23880c3f0cd44025b +docfiles size=60 + RELOC/doc/latex/ktv-texdata/README details="Readme" + RELOC/doc/latex/ktv-texdata/README.txt.doc + RELOC/doc/latex/ktv-texdata/ktv-data.tex + RELOC/doc/latex/ktv-texdata/ktv-test.KTVhint + RELOC/doc/latex/ktv-texdata/ktv-test.tex + RELOC/doc/latex/ktv-texdata/ktv-texdata.ktvnum + RELOC/doc/latex/ktv-texdata/ktv-texdata.pdf details="Package documentation" +srccontainersize 14640 +srccontainerchecksum 1f7eebfcdbdeae66dbff4037a01173bc9383f75b5d7704755a10c442d63380d286bb4532546e036d5c558dc399defe3f9d3d035bc67a5ba90f8482e427b507ce +srcfiles size=15 + RELOC/source/latex/ktv-texdata/ktv-texdata.dtx + RELOC/source/latex/ktv-texdata/ktv-texdata.ins +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-license gpl +catalogue-topics data-sel +catalogue-version 05.34 + +name ku-template +category Package +revision 45935 +shortdesc Copenhagen University or faculty logo for front page +relocated 1 +longdesc A comprehensive package for adding University of Copenhagen or +longdesc faculty logo to your front page. For use by student or staff at +longdesc University of Copenhagen (Kobenhavns Universitet). +containersize 1012 +containerchecksum 4603e59129f749b0eb065283bff9cddcafcd1096627f196749be09c19a4a79848564ee9343f14f31dddb2e37a01e222bf08531d5b3237bb906cf88efb427fdb9 +doccontainersize 226880 +doccontainerchecksum 6b8535ef84bd1ccf70d16f7098826b5acea602b22cd461df66cdda64c4afe36f9ef6c4386227c5317a31767e4694c388f7a2fd87fe8fe06697af4bf5202b29bc +docfiles size=128 + RELOC/doc/latex/ku-template/README.txt details="Readme" + RELOC/doc/latex/ku-template/images/hum-da.pdf + RELOC/doc/latex/ku-template/images/hum-en.pdf + RELOC/doc/latex/ku-template/images/jur-da.pdf + RELOC/doc/latex/ku-template/images/jur-en.pdf + RELOC/doc/latex/ku-template/images/ku-da.pdf + RELOC/doc/latex/ku-template/images/ku-en.pdf + RELOC/doc/latex/ku-template/images/sam-da.pdf + RELOC/doc/latex/ku-template/images/sam-en.pdf + RELOC/doc/latex/ku-template/images/sci-da.pdf + RELOC/doc/latex/ku-template/images/sci-en.pdf + RELOC/doc/latex/ku-template/images/sun-da.pdf + RELOC/doc/latex/ku-template/images/sun-en.pdf + RELOC/doc/latex/ku-template/images/teo-da.pdf + RELOC/doc/latex/ku-template/images/teo-en.pdf +runfiles size=1 + RELOC/tex/latex/ku-template/ku-template.sty +catalogue-ctan /macros/latex/contrib/ku-template +catalogue-license mit +catalogue-topics logo +catalogue-version 0.02 + +name kurdishlipsum +category Package +revision 47518 +shortdesc A 'lipsum' package for the Kurdish language +relocated 1 +longdesc This package provides lipsum-like facilities for the Kurdish +longdesc language. The package gives you easy access to the Kurdish +longdesc poetry and balladry texts of the Diwany Vafaiy, Ahmedy Xani, +longdesc Naly, Mahwy,.... The package needs to be run under XeLaTeX. +containersize 34900 +containerchecksum d7160d78d7f0d8d7771740f030cf1c76b57aa9ec2d179887fe4065337e35bef528b522c666eca0974aea6696033678dec5446a9a198fb139f2d2469c8cd47eff +doccontainersize 55448 +doccontainerchecksum 6af516595f4cc5b090398078977bb37e97a5aa4b28a578c068931eff7d34fa2cac379b53e70c8bcf270c998fa6fbcbe354b56d0299657fcce9a4e076a87b36d9 +docfiles size=17 + RELOC/doc/xelatex/kurdishlipsum/README details="Readme" + RELOC/doc/xelatex/kurdishlipsum/kurdishlipsum.pdf details="Package documentation" + RELOC/doc/xelatex/kurdishlipsum/kurdishlipsum.tex +runfiles size=38 + RELOC/tex/xelatex/kurdishlipsum/kurdishlipsum.sty +catalogue-ctan /macros/xetex/latex/kurdishlipsum +catalogue-license lppl +catalogue-topics macro-supp dummy-gen kurdish xetex +catalogue-version 1.1 + +name kurier +category Package +revision 19612 +shortdesc A two-element sans-serif typeface +relocated 1 +longdesc Kurier is a two-element sans-serif typeface. It was designed +longdesc for a diploma in typeface design at the Warsaw Academy of Fine +longdesc Arts under the supervision of Roman Tomaszewski. This +longdesc distribution contains a significantly extended set of +longdesc characters covering the following modern alphabets: latin +longdesc (including Vietnamese), Cyrillic and Greek as well as a number +longdesc of additional symbols (including mathematical symbols). The +longdesc fonts are prepared in Type 1 and OpenType formats. For use with +longdesc TeX the following encoding files have been prepared: T1 (ec), +longdesc T2 (abc), and OT2--Cyrillic, T5 (Vietnamese), OT4, QX, texansi +longdesc and--nonstandard (IL2 for the Czech fonts), as well as +longdesc supporting macros and files defining fonts for LaTeX. +execute addMap kurier.map +containersize 3862448 +containerchecksum 4f727e8733824e8c516e3ab1286cf0c834413a6ab52bccb5519c9a14a526cd3397a6d0a264679dc8b7d80cfc1d75ab11dcd2c02734ea63d5a2a5cebd3ea3c24c +doccontainersize 465112 +doccontainerchecksum 7fda14c05f105d341a31561e761517ce12b3e5ceabc01e0c5c8552ddaf55be1863a22545b268026c844b23f03e8700350f0dede79ca8fda62e7a2672fa510407 +docfiles size=146 + RELOC/doc/fonts/kurier/00readme.eng details="Outline in English" language="en" + RELOC/doc/fonts/kurier/00readme.pol details="Outline in Polish" language="pl" + RELOC/doc/fonts/kurier/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/kurier/kurier-info-src.zip + RELOC/doc/fonts/kurier/kurier-info.pdf details="Package documentation" + RELOC/doc/fonts/kurier/kurier-latex-cyr.tex + RELOC/doc/fonts/kurier/kurier-latex-math.tex + RELOC/doc/fonts/kurier/kurier-latex-pl.tex + RELOC/doc/fonts/kurier/kurier-latex-t2a.tex + RELOC/doc/fonts/kurier/kurier-latex-t5.tex + RELOC/doc/fonts/kurier/kurier-mathtest.tex + RELOC/doc/fonts/kurier/kurier-table.tex + RELOC/doc/fonts/kurier/manifest.txt +runfiles size=4363 + RELOC/fonts/afm/nowacki/kurier/kurierb.afm + RELOC/fonts/afm/nowacki/kurier/kurierbi.afm + RELOC/fonts/afm/nowacki/kurier/kuriercb.afm + RELOC/fonts/afm/nowacki/kurier/kuriercbi.afm + RELOC/fonts/afm/nowacki/kurier/kurierch.afm + RELOC/fonts/afm/nowacki/kurier/kurierchi.afm + RELOC/fonts/afm/nowacki/kurier/kuriercl.afm + RELOC/fonts/afm/nowacki/kurier/kuriercli.afm + RELOC/fonts/afm/nowacki/kurier/kuriercm.afm + RELOC/fonts/afm/nowacki/kurier/kuriercmi.afm + RELOC/fonts/afm/nowacki/kurier/kuriercr.afm + RELOC/fonts/afm/nowacki/kurier/kuriercri.afm + RELOC/fonts/afm/nowacki/kurier/kurierh.afm + RELOC/fonts/afm/nowacki/kurier/kurierhi.afm + RELOC/fonts/afm/nowacki/kurier/kurierl.afm + RELOC/fonts/afm/nowacki/kurier/kurierli.afm + RELOC/fonts/afm/nowacki/kurier/kurierm.afm + RELOC/fonts/afm/nowacki/kurier/kuriermi.afm + RELOC/fonts/afm/nowacki/kurier/kurierr.afm + RELOC/fonts/afm/nowacki/kurier/kurierri.afm + RELOC/fonts/enc/dvips/kurier/cs-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/cs-kurier.enc + RELOC/fonts/enc/dvips/kurier/ec-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/ec-kurier.enc + RELOC/fonts/enc/dvips/kurier/ex-kurier.enc + RELOC/fonts/enc/dvips/kurier/greek-kurier.enc + RELOC/fonts/enc/dvips/kurier/l7x-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/l7x-kurier.enc + RELOC/fonts/enc/dvips/kurier/mi-kurier.enc + RELOC/fonts/enc/dvips/kurier/qx-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/qx-kurier.enc + RELOC/fonts/enc/dvips/kurier/rm-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/rm-kurier.enc + RELOC/fonts/enc/dvips/kurier/sy-kurier.enc + RELOC/fonts/enc/dvips/kurier/t2a-kurier.enc + RELOC/fonts/enc/dvips/kurier/t2b-kurier.enc + RELOC/fonts/enc/dvips/kurier/t2c-kurier.enc + RELOC/fonts/enc/dvips/kurier/t5-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/t5-kurier.enc + RELOC/fonts/enc/dvips/kurier/texnansi-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/texnansi-kurier.enc + RELOC/fonts/enc/dvips/kurier/ts1-kurier.enc + RELOC/fonts/enc/dvips/kurier/wncy-kurier.enc + RELOC/fonts/map/dvips/kurier/kurier-cs.map + RELOC/fonts/map/dvips/kurier/kurier-ec.map + RELOC/fonts/map/dvips/kurier/kurier-ex.map + RELOC/fonts/map/dvips/kurier/kurier-greek.map + RELOC/fonts/map/dvips/kurier/kurier-l7x.map + RELOC/fonts/map/dvips/kurier/kurier-mi.map + RELOC/fonts/map/dvips/kurier/kurier-qx.map + RELOC/fonts/map/dvips/kurier/kurier-rm.map + RELOC/fonts/map/dvips/kurier/kurier-sy.map + RELOC/fonts/map/dvips/kurier/kurier-t2a.map + RELOC/fonts/map/dvips/kurier/kurier-t2b.map + RELOC/fonts/map/dvips/kurier/kurier-t2c.map + RELOC/fonts/map/dvips/kurier/kurier-t5.map + RELOC/fonts/map/dvips/kurier/kurier-texnansi.map + RELOC/fonts/map/dvips/kurier/kurier-ts1.map + RELOC/fonts/map/dvips/kurier/kurier-wncy.map + RELOC/fonts/map/dvips/kurier/kurier.map + RELOC/fonts/opentype/nowacki/kurier/Kurier-Bold.otf + RELOC/fonts/opentype/nowacki/kurier/Kurier-BoldItalic.otf + RELOC/fonts/opentype/nowacki/kurier/Kurier-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/Kurier-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-Bold.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-BoldItalic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondLight-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondLight-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondMedium-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondMedium-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierLight-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierLight-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierMedium-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierMedium-Regular.otf + RELOC/fonts/tfm/nowacki/kurier/cs-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierbz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriercbz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierchz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierclz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriercmz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriercrz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierhz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierlz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriermz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierrz.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierri.tfm + RELOC/fonts/type1/nowacki/kurier/kurierb.pfb + RELOC/fonts/type1/nowacki/kurier/kurierbi.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercb.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercbi.pfb + RELOC/fonts/type1/nowacki/kurier/kurierch.pfb + RELOC/fonts/type1/nowacki/kurier/kurierchi.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercl.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercli.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercm.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercmi.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercr.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercri.pfb + RELOC/fonts/type1/nowacki/kurier/kurierh.pfb + RELOC/fonts/type1/nowacki/kurier/kurierhi.pfb + RELOC/fonts/type1/nowacki/kurier/kurierl.pfb + RELOC/fonts/type1/nowacki/kurier/kurierli.pfb + RELOC/fonts/type1/nowacki/kurier/kurierm.pfb + RELOC/fonts/type1/nowacki/kurier/kuriermi.pfb + RELOC/fonts/type1/nowacki/kurier/kurierr.pfb + RELOC/fonts/type1/nowacki/kurier/kurierri.pfb + RELOC/tex/latex/kurier/il2kurier.fd + RELOC/tex/latex/kurier/il2kurierc.fd + RELOC/tex/latex/kurier/il2kurierl.fd + RELOC/tex/latex/kurier/il2kurierlc.fd + RELOC/tex/latex/kurier/kurier.sty + RELOC/tex/latex/kurier/l7xkurier.fd + RELOC/tex/latex/kurier/l7xkurierc.fd + RELOC/tex/latex/kurier/l7xkurierl.fd + RELOC/tex/latex/kurier/l7xkurierlc.fd + RELOC/tex/latex/kurier/ly1kurier.fd + RELOC/tex/latex/kurier/ly1kurierc.fd + RELOC/tex/latex/kurier/ly1kurierl.fd + RELOC/tex/latex/kurier/ly1kurierlc.fd + RELOC/tex/latex/kurier/omlkurier.fd + RELOC/tex/latex/kurier/omlkurierc.fd + RELOC/tex/latex/kurier/omlkurierl.fd + RELOC/tex/latex/kurier/omlkurierlc.fd + RELOC/tex/latex/kurier/omskurier.fd + RELOC/tex/latex/kurier/omskurierc.fd + RELOC/tex/latex/kurier/omskurierl.fd + RELOC/tex/latex/kurier/omskurierlc.fd + RELOC/tex/latex/kurier/omxkurier.fd + RELOC/tex/latex/kurier/omxkurierc.fd + RELOC/tex/latex/kurier/omxkurierl.fd + RELOC/tex/latex/kurier/omxkurierlc.fd + RELOC/tex/latex/kurier/ot1kurier.fd + RELOC/tex/latex/kurier/ot1kurierc.fd + RELOC/tex/latex/kurier/ot1kuriercm.fd + RELOC/tex/latex/kurier/ot1kurierl.fd + RELOC/tex/latex/kurier/ot1kurierlc.fd + RELOC/tex/latex/kurier/ot1kurierlcm.fd + RELOC/tex/latex/kurier/ot1kurierlm.fd + RELOC/tex/latex/kurier/ot1kurierm.fd + RELOC/tex/latex/kurier/ot2kurier.fd + RELOC/tex/latex/kurier/ot2kurierc.fd + RELOC/tex/latex/kurier/ot2kurierl.fd + RELOC/tex/latex/kurier/ot2kurierlc.fd + RELOC/tex/latex/kurier/ot4kurier.fd + RELOC/tex/latex/kurier/ot4kurierc.fd + RELOC/tex/latex/kurier/ot4kurierl.fd + RELOC/tex/latex/kurier/ot4kurierlc.fd + RELOC/tex/latex/kurier/qxkurier.fd + RELOC/tex/latex/kurier/qxkurierc.fd + RELOC/tex/latex/kurier/qxkurierl.fd + RELOC/tex/latex/kurier/qxkurierlc.fd + RELOC/tex/latex/kurier/t1kurier.fd + RELOC/tex/latex/kurier/t1kurierc.fd + RELOC/tex/latex/kurier/t1kurierl.fd + RELOC/tex/latex/kurier/t1kurierlc.fd + RELOC/tex/latex/kurier/t2akurier.fd + RELOC/tex/latex/kurier/t2akurierc.fd + RELOC/tex/latex/kurier/t2akurierl.fd + RELOC/tex/latex/kurier/t2akurierlc.fd + RELOC/tex/latex/kurier/t2bkurier.fd + RELOC/tex/latex/kurier/t2bkurierc.fd + RELOC/tex/latex/kurier/t2bkurierl.fd + RELOC/tex/latex/kurier/t2bkurierlc.fd + RELOC/tex/latex/kurier/t2ckurier.fd + RELOC/tex/latex/kurier/t2ckurierc.fd + RELOC/tex/latex/kurier/t2ckurierl.fd + RELOC/tex/latex/kurier/t2ckurierlc.fd + RELOC/tex/latex/kurier/t5kurier.fd + RELOC/tex/latex/kurier/t5kurierc.fd + RELOC/tex/latex/kurier/t5kurierl.fd + RELOC/tex/latex/kurier/t5kurierlc.fd + RELOC/tex/latex/kurier/ts1kurier.fd + RELOC/tex/latex/kurier/ts1kurierc.fd + RELOC/tex/latex/kurier/ts1kurierl.fd + RELOC/tex/latex/kurier/ts1kurierlc.fd + RELOC/tex/plain/kurier/kurier-math.tex +catalogue-ctan /fonts/kurier +catalogue-license gfl +catalogue-topics font font-otf font-type1 +catalogue-version 0.995b + +name kvdefinekeys +category Package +revision 53193 +shortdesc Define keys for use in the kvsetkeys package +relocated 1 +longdesc The package provides a macro \kv@define@key (analogous to +longdesc keyval's \define@key, to define keys for use by kvsetkeys. +containersize 2092 +containerchecksum 2a03840307805bd6fe30be9c108982bc472912c11c8cec25737ebc4042e48af8fe4f1a76124536874bea8c554f003a9c52b8a72d2f6900bc6872ffef8649c40e +doccontainersize 296808 +doccontainerchecksum c540045ec1c8bd7fea3000dd0ebc8adac64da7ccc24b0becb9b9c32c9dda6e5e11a77b57bee667bd2ddbddf347bd8af069907e087d543898a92ebaedf3fa4b7c +docfiles size=74 + RELOC/doc/latex/kvdefinekeys/README.md details="Readme" + RELOC/doc/latex/kvdefinekeys/kvdefinekeys.pdf details="Package documentation" +srccontainersize 5112 +srccontainerchecksum 0944a3f6f8e8cd8c189767944a74d5dbf09fcccd94cfdd2e67018f4a3542ce2ca4b8b7e3cb440345eb299584707962ed903f2fd8c832fad6cb850b29c7a99af6 +srcfiles size=5 + RELOC/source/latex/kvdefinekeys/kvdefinekeys.dtx +runfiles size=2 + RELOC/tex/generic/kvdefinekeys/kvdefinekeys.sty +catalogue-contact-bugs https://github.com/ho-tex/kvdefinekeys/issues +catalogue-contact-repository https://github.com/ho-tex/kvdefinekeys +catalogue-ctan /macros/latex/contrib/kvdefinekeys +catalogue-license lppl1.3c +catalogue-topics keyval +catalogue-version 1.6 + +name kvmap +category Package +revision 56361 +shortdesc Create Karnaugh maps with LaTeX +relocated 1 +longdesc This LaTeX package allows the creation of (even large) Karnaugh +longdesc maps. It provides a tabular-like input syntax and support for +longdesc drawing bundles (implicants) around adjacent values. It is +longdesc based on an answer at StackExchange. +depend amsmath +depend l3experimental +depend pgf +containersize 2684 +containerchecksum 54a107c866519e6ce6cb69bd8c13ae085813c4adf235592e32cbfb2bd7eb8039ff8e1fe165f43892367a28ac0984874581424e733b1d3722796204df96d840f3 +doccontainersize 93732 +doccontainerchecksum 41fb3957c91e3127b5d7c78fe2114cb4fe6c8167e6f7f2bbf3a5b7c0fdb12c0ac79e47d84fad54c4b6a3165114c333c575eea01d5c0c886c19b21643ab0fb03f +docfiles size=26 + RELOC/doc/latex/kvmap/DEPENDS.txt + RELOC/doc/latex/kvmap/README.md details="Readme" + RELOC/doc/latex/kvmap/kvmap.pdf details="Package documentation" +srccontainersize 8776 +srccontainerchecksum 5dae9b0972acc7c95b148fb13d9008b27591aa9ff9065c1c43dc799c5096f89a8b6b2da97b17bb5e544b1a10702cf247d9cecaa39d9790993996276741c0d792 +srcfiles size=9 + RELOC/source/latex/kvmap/kvmap.dtx + RELOC/source/latex/kvmap/kvmap.ins +runfiles size=3 + RELOC/tex/latex/kvmap/kvmap.sty +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-license lppl1.3c +catalogue-topics maths engineering +catalogue-version 0.3.5 + +name kvoptions +category Package +revision 56609 +shortdesc Key value format for package options +relocated 1 +longdesc This package offers support for package authors who want to use +longdesc options in key-value format for their package options. +containersize 7136 +containerchecksum 47d2d386a418ffd07810589061d13e625b691fe65522ccf5efb514750314933aeafa75f1e2a56df9851b2cabf3bd54be9bd1200df59c671f0f7c92e90d9aa9b9 +doccontainersize 472508 +doccontainerchecksum dc8fa31afcb9c86d5a94ffa4bfd7e02fd186b27d1f645a5317c718d8079e4b003426e9202c49f6cf3017cd49a59100d8c2a6a553d16012856e340da0e9ede0ef +docfiles size=121 + RELOC/doc/latex/kvoptions/README.md details="Readme" + RELOC/doc/latex/kvoptions/example-mycolorsetup.sty + RELOC/doc/latex/kvoptions/kvoptions.pdf details="Package documentation" language="en" +srccontainersize 21336 +srccontainerchecksum 90a0c6d2b03855dfa7716eb9a18d3c412e51a5bc592650677298eff8040acff81e3c2cda492daa0790372034f33e93763f4ac02821587d095f77dc0810a52b25 +srcfiles size=24 + RELOC/source/latex/kvoptions/kvoptions.dtx +runfiles size=10 + RELOC/tex/latex/kvoptions/kvoptions-patch.sty + RELOC/tex/latex/kvoptions/kvoptions.sty +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-license lppl1.3 +catalogue-topics keyval +catalogue-version 3.14 + +name kvsetkeys +category Package +revision 53166 +shortdesc Key value parser with default handler support +relocated 1 +longdesc This package provides \kvsetkeys, a variant of package keyval's +longdesc \setkeys. It allows the user to specify a handler that deals +longdesc with unknown options. Active commas and equal signs may be used +longdesc (e.g. see babel's shorthands) and only one level of curly +longdesc braces are removed from the values. +containersize 3568 +containerchecksum c5e117a46ab54485b7748bafd5cfd381d28073564b571fd1cda78da70b42dcf48fe054538323cdee7e784aff91cb76dd24361908a4c97213df315f6cb91af583 +doccontainersize 372380 +doccontainerchecksum 875af5f0ef28b6bb80b19537ca3dc426fb9daf4de8e10dc518cf5daea8f6bc6801832156e5bd978937209b2e9883898b957c8cbe87b51a2b2aeb071445e045de +docfiles size=94 + RELOC/doc/latex/kvsetkeys/README.md + RELOC/doc/latex/kvsetkeys/kvsetkeys-example.tex + RELOC/doc/latex/kvsetkeys/kvsetkeys.pdf details="Package documentation" language="en" +srccontainersize 10800 +srccontainerchecksum 48a8299a53c47b518b3461fc960c18d81acd26b90bc58e84756cff28fa34b072d769b55162ab86ebd10fb6e3e1a4486c85c66093a32695636f7821582234cb9f +srcfiles size=12 + RELOC/source/latex/kvsetkeys/kvsetkeys.dtx +runfiles size=4 + RELOC/tex/generic/kvsetkeys/kvsetkeys.sty +catalogue-contact-bugs https://github.com/ho-tex/kvsetkeys/issues +catalogue-contact-repository https://github.com/ho-tex/kvsetkeys +catalogue-ctan /macros/latex/contrib/kvsetkeys +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 1.18 + +name l2picfaq +category Package +revision 19601 +shortdesc LaTeX pictures "how-to" (German) +relocated 1 +longdesc The document (in German) is a collection of "how-to" notes +longdesc about LaTeX and pictures. The aim of the document is to provide +longdesc a solution, in the form of some sample code, for every problem. +containersize 484 +containerchecksum c6ea1d8ac189784d6581eaf9cae83a83beba9adfd32536f43c04633f7cc457353f0dbb69407332a29856633552910bfdd31cf85332c6dfb05da2cbab88ec67a2 +doccontainersize 364380 +doccontainerchecksum e4202740ea2842296338e9d635b27c35801f4a5f8b21eb8dc0c1db572da0718fc5adcefc5c122793618336272606ec27f02f13825f8d2a6cf4b83583ea372288 +docfiles size=166 + RELOC/doc/latex/l2picfaq/README details="Package README" language="de" + RELOC/doc/latex/l2picfaq/ctanlion.pdf + RELOC/doc/latex/l2picfaq/gfdl.tex + RELOC/doc/latex/l2picfaq/l2picfaq.pdf details="The document itself" language="de" + RELOC/doc/latex/l2picfaq/l2picfaq.tex +catalogue-also epslatex +catalogue-ctan /info/l2picfaq/german +catalogue-license fdl +catalogue-topics faq +catalogue-version 1.50 + +name l2tabu +category Package +revision 39597 +shortdesc Obsolete packages and commands +relocated 1 +longdesc The "sins" of LaTeX users, and how to correct them. The +longdesc document provides a list of obsolete packages and commands. +longdesc This original is in German; it has been translated into +longdesc English, French, Italian, and Spanish. +containersize 500 +containerchecksum 2e94e77ab5c8327396d2ff714f7c6c1e8c91a3ab0f35be411d11f617d39dd815d4bf1c6eb1dd0be5154c1d702697c08b8658c8371dce3dca0349712a5dac2d1b +doccontainersize 245464 +doccontainerchecksum 84673b59100568d1472f3221ff0cc35b8e8512ece38701f35d60265d316aa52186642def2d66885df47e2f613ae042a86972b7958349b7b2b83e754d72163df6 +docfiles size=74 + RELOC/doc/latex/l2tabu/CHANGES + RELOC/doc/latex/l2tabu/README details="Readme" + RELOC/doc/latex/l2tabu/l2tabu.pdf details="The document itself" language="de" + RELOC/doc/latex/l2tabu/l2tabu.tex +catalogue-ctan /info/l2tabu/german +catalogue-license other-free +catalogue-topics german-doc +catalogue-version 2.4 + +name l2tabu-english +category Package +revision 15878 +shortdesc English translation of "Obsolete packages and commands" +relocated 1 +longdesc English translation of the l2tabu practical guide to LaTeX2e by +longdesc Mark Trettin. A list of obsolete packages and commands. +containersize 444 +containerchecksum 66e1d62c731a021c1be2fb6e9e3034c7dec59edfd03dc2bb0042a37ff6f0d967e59a023fee994f45cf2c9b15e64445b45c48a207e21b7edb81d8a538b6c8eb6b +doccontainersize 266556 +doccontainerchecksum 250ebdbd2a6dd3dd7d05c35cea0ea8fdb969bef983bc0a5f2c804129091f22ac0a499df482a1a990bf278ad94befc774d354341b30f9a0cd67539e1f63074ee4 +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-license gpl +catalogue-topics documentation translation +catalogue-version 1.8.5.7 + +name l2tabu-french +category Package +revision 31315 +shortdesc French translation of l2tabu +relocated 1 +longdesc French translation of l2tabu. +containersize 380 +containerchecksum 8478211e871e38765cbbd36f8f571e63b5cfb9dc652107a4a9178c11a16b419eba7314246878507f22bf7f66818f8c5d1516a527deda5a2dc6c30f9260f23b59 +doccontainersize 269348 +doccontainerchecksum f489b0bd07b60797b53fc9010c699029dabccbf326767948dd815224f1c591cb59d6da7bbac0d0385ddfb6f0e885e187b2385bfcdbb88933588b06dfc34f640c +docfiles size=101 + RELOC/doc/latex/l2tabu-french/README details="Readme" + RELOC/doc/latex/l2tabu-french/l2tabufr.pdf details="The document itself" language="fr" + RELOC/doc/latex/l2tabu-french/l2tabufr.tex +catalogue-also l2tabu l2tabu-english l2tabu-italian +catalogue-ctan /info/l2tabu/french +catalogue-license gpl +catalogue-topics french-doc +catalogue-version 2.3 + +name l2tabu-italian +category Package +revision 25218 +shortdesc Italian Translation of Obsolete packages and commands +relocated 1 +longdesc Italian translation of the l2tabu practical guide to LaTeX2e (a +longdesc list of obsolete packages and commands). +containersize 448 +containerchecksum 5b2348bed7ce47d7e2b8de6642e14b24ab440226d0de46a51eab08b3d11a39bada93d890e1ab9e2dbd3ce253b3263460fe7114baf9bc7b5c775a7d806c731ab2 +doccontainersize 257412 +doccontainerchecksum c76981112631423d5d92ee9236d9b5b076e3d71086f9dada77de51362a5d5e01d82d5b018a68950c2b7f4b10eff1882d677243594436bae41bcc6ab996aa900a +docfiles size=76 + RELOC/doc/latex/l2tabu-italian/l2tabuit.pdf details="The document itself" language="it" + RELOC/doc/latex/l2tabu-italian/l2tabuit.tex +catalogue-also l2tabu l2tabu-english l2tabu-french +catalogue-ctan /info/l2tabu/italian +catalogue-license other-free +catalogue-topics italian-doc +catalogue-version 2.3 + +name l2tabu-spanish +category Package +revision 15878 +shortdesc Spanish translation of "Obsolete packages and commands" +relocated 1 +longdesc A Spanish translation of the l2tabu practical guide to LaTeX2e +longdesc by Mark Trettin. A list of obsolete packages, commands and +longdesc usages. +containersize 448 +containerchecksum 73cecbb031be2d421c25a7d6a5c04d08e30d83a88b4132682d434a879da915f1d4af56980f1bf04f7df5a3e881ecdd940a058a2dcf89b5e9f48c378eb322da06 +doccontainersize 227412 +doccontainerchecksum a6886d54c0f5e1915ff9efbc4974ab1ef7f6dc026d67a0596ed47ac9e94da098e690bc70d5ed3e45a4d8cbd0f877f0cd6cd3a3757288dfc2df284e9c040b7c1e +docfiles size=84 + RELOC/doc/latex/l2tabu-spanish/README details="Readme" + 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-license pd +catalogue-topics spanish-doc +catalogue-version 1.1 + +name l3backend +category Package +revision 58509 +shortdesc LaTeX3 backend drivers +relocated 1 +longdesc This package forms parts of expl3, and contains the code used +longdesc to interface with backends (drivers) across the expl3 codebase. +longdesc The functions here are defined differently depending on the +longdesc engine in use. As such, these are distributed separately from +longdesc l3kernel to allow this code to be updated on an independent +longdesc schedule. +containersize 14412 +containerchecksum 4e0fa3710748aef350580d94d95b788dabb5d1ea86b2fe6e70697e9baa0fa7f254d06cad4c4ce4a3f9ec5b5e38be1742887051a16e327c18fd754cc500f74c75 +doccontainersize 806248 +doccontainerchecksum 5255d75a9804c1b1c5505873897145d759aa57c7bbaff7d1c2eeaa3677af6630c984b48984ba397cf77a0c9c564d110f7983c6c024c3623883edf3128e769ebc +docfiles size=209 + RELOC/doc/latex/l3backend/CHANGELOG.md + RELOC/doc/latex/l3backend/README.md details="Readme" + RELOC/doc/latex/l3backend/l3backend-code.pdf details="Package documentation" + RELOC/doc/latex/l3backend/l3backend-code.tex +srccontainersize 31112 +srccontainerchecksum f4fe6972053149b04b9b88b4c6d231a04a6b2d6eea5c96b7a9fe7589657917bb330152840b8c008e5e798c54ebf4a6fa7f038530bdbb36cf9c634b5396e7392a +srcfiles size=54 + RELOC/source/latex/l3backend/l3backend-basics.dtx + RELOC/source/latex/l3backend/l3backend-box.dtx + RELOC/source/latex/l3backend/l3backend-color.dtx + RELOC/source/latex/l3backend/l3backend-draw.dtx + RELOC/source/latex/l3backend/l3backend-graphics.dtx + RELOC/source/latex/l3backend/l3backend-header.dtx + RELOC/source/latex/l3backend/l3backend-opacity.dtx + RELOC/source/latex/l3backend/l3backend-pdf.dtx + RELOC/source/latex/l3backend/l3backend.ins +runfiles size=49 + RELOC/dvips/l3backend/l3backend-dvips.pro + RELOC/tex/latex/l3backend/l3backend-dvipdfmx.def + RELOC/tex/latex/l3backend/l3backend-dvips.def + RELOC/tex/latex/l3backend/l3backend-dvisvgm.def + RELOC/tex/latex/l3backend/l3backend-luatex.def + RELOC/tex/latex/l3backend/l3backend-pdftex.def + RELOC/tex/latex/l3backend/l3backend-xetex.def +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-license lppl1.3c +catalogue-topics latex3 expl3 macro-supp pre-release + +name l3build +category Package +revision 59091 +shortdesc A testing and building system for (La)TeX +longdesc The build system supports testing and building LaTeX3 code, on +longdesc Linux, Mac OS X and Windows systems. The package offers: A unit +longdesc testing system for (La)TeX code (whether kernel code or +longdesc contributed packages); A system for typesetting package +longdesc documentation; and An automated process for creating CTAN +longdesc releases. The package is essentially independent of other +longdesc material released by the LaTeX3 team, and may be updated on a +longdesc different schedule. +depend l3build.ARCH +depend luatex +containersize 33328 +containerchecksum bb1a5a2b7a0a1944b6f34256c776cc4a09157ae1abc07a2dbf2ef8f71e3df7fe33b3c22ddc05ee3362904f683e87f2c2125d5b88f64ac21686a1fcdb25e973bf +doccontainersize 725568 +doccontainerchecksum dc7e6fcd044c6b4ccb0fb5653a796bef60570696cc55ae72fe4fdfcca6f38bd5736563a47ef6c73000e3cdf5cde5a00e13a26935daea356885e1d42bcb846eab +docfiles size=184 + texmf-dist/doc/latex/l3build/CHANGELOG.md + texmf-dist/doc/latex/l3build/CONTRIBUTING.md + texmf-dist/doc/latex/l3build/README.md details="Readme" + texmf-dist/doc/latex/l3build/l3build.pdf details="Package documentation" + texmf-dist/doc/man/man1/l3build.1 + texmf-dist/doc/man/man1/l3build.man1.pdf +srccontainersize 29816 +srccontainerchecksum 19cc091239126937a281d3a6cd6a3132a82eb070f326b7781d44e53c4f8400adf926d0e8824855312f96873722627ceaecfe3da8726d6c9d392a1bdb02023e16 +srcfiles size=28 + texmf-dist/source/latex/l3build/l3build.dtx + texmf-dist/source/latex/l3build/l3build.ins +runfiles size=44 + texmf-dist/scripts/l3build/l3build-arguments.lua + texmf-dist/scripts/l3build/l3build-aux.lua + texmf-dist/scripts/l3build/l3build-check.lua + texmf-dist/scripts/l3build/l3build-clean.lua + texmf-dist/scripts/l3build/l3build-ctan.lua + texmf-dist/scripts/l3build/l3build-file-functions.lua + texmf-dist/scripts/l3build/l3build-help.lua + texmf-dist/scripts/l3build/l3build-install.lua + texmf-dist/scripts/l3build/l3build-manifest-setup.lua + texmf-dist/scripts/l3build/l3build-manifest.lua + texmf-dist/scripts/l3build/l3build-stdmain.lua + texmf-dist/scripts/l3build/l3build-tagging.lua + texmf-dist/scripts/l3build/l3build-typesetting.lua + texmf-dist/scripts/l3build/l3build-unpack.lua + texmf-dist/scripts/l3build/l3build-upload.lua + texmf-dist/scripts/l3build/l3build-variables.lua + texmf-dist/scripts/l3build/l3build.lua + texmf-dist/tex/latex/l3build/regression-test.tex +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-license lppl1.3c +catalogue-topics package-devel macro-supp ctan + +name l3build.aarch64-linux +category Package +revision 46894 +shortdesc aarch64-linux files of l3build +containersize 344 +containerchecksum 3c605cbffce8611677121270ff4b28f80650daffcd0e04205fa8cbac59f844e25337f388ac578a982b2d526c78b6ff8eb4588007ba940fc7e1dcd1e693c679af +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/l3build + +name l3build.amd64-freebsd +category Package +revision 46894 +shortdesc amd64-freebsd files of l3build +containersize 344 +containerchecksum ec78f487b2addf06cb67b4e3191b0e3cc2339b5ce43010983a614f84f00807aa8978629ce770aa06114f3b63dca5abc6c5c0c03db2a83417512848d39ecc4c7e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/l3build + +name l3build.amd64-netbsd +category Package +revision 46894 +shortdesc amd64-netbsd files of l3build +containersize 340 +containerchecksum 6a4df908510e843755e3ab05102d0409fb98de494a9c1066148be92fb6c8e84195bc5917f3cb4db50e646eb4bae778cca67510b98bce4a8a527cac0161b73824 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/l3build + +name l3build.armhf-linux +category Package +revision 46894 +shortdesc armhf-linux files of l3build +containersize 340 +containerchecksum 2feec116d36c90f13f9e4a0be3dee8ae3a0a9bd949bf266e80f456dc960cf30bff65a1cc6ebb9a7c936be56b1d16d527da0ee9f278c3bb7f40c1ee3f98c6136d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/l3build + +name l3build.i386-cygwin +category Package +revision 46894 +shortdesc i386-cygwin files of l3build +containersize 340 +containerchecksum 1cbda214e44cc4f67c50339f7b68ddeddbe7b1388da85acd1d415e9ae88c50b720e50033d17f595146e9b506e5a267332621fb18f2dc95e2155e8c2ed0de2af1 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/l3build + +name l3build.i386-freebsd +category Package +revision 46894 +shortdesc i386-freebsd files of l3build +containersize 340 +containerchecksum 074bd0e8d8ade724a5f221966434819cb3f791667be22af607be201765cb1851d144c1f89fffe7c91c8d169f719475c85b50d2212fc12c4f4edb9144bcb366f6 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/l3build + +name l3build.i386-linux +category Package +revision 46894 +shortdesc i386-linux files of l3build +containersize 340 +containerchecksum f3835781d950f70ac5f23c56c67d28a9ab5dccc60af6a82112bf557b9d54a2692af87a2fd348f8208049aac8bd0bad31a6eb2ddf09d4dd61a88846cd4dddcf50 +binfiles arch=i386-linux size=1 + bin/i386-linux/l3build + +name l3build.i386-netbsd +category Package +revision 46894 +shortdesc i386-netbsd files of l3build +containersize 340 +containerchecksum 6ebd218b4ba4cf03a626b77cc86aa92476e32eb78b9412b61ddcfd82cadaff7e29c0a4a0e13ace1823dceac76f0a1a8c0fab9f48291095c08ad367101eff1234 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/l3build + +name l3build.i386-solaris +category Package +revision 46894 +shortdesc i386-solaris files of l3build +containersize 340 +containerchecksum 3cba7bcd8492d07c8373f6342f623b483927201e8767a436f30dd0f740383e00426c85e3ed303f9473cf82937419106b9bd0a5878c9f33034d0c9746f939805f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/l3build + +name l3build.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of l3build +containersize 340 +containerchecksum 79f49bbe75e817b3e677c1ddf7682ee732c39025a358d278cfa398f8ff7f8ba3f93b84878a5d27f80d6524aaa298a49b88bda786b40152cab69627da6f9a070b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/l3build + +name l3build.win32 +category Package +revision 46894 +shortdesc win32 files of l3build +containersize 684 +containerchecksum 796aeecde79f2c21f414e647539e8c6f40f4dc91c335570a42d75f95fcbd06232b9621b5b3a8f94f9ddf3f2248c564afb05047a3e52c95f64774b107aa492d57 +binfiles arch=win32 size=1 + bin/win32/l3build.exe + +name l3build.x86_64-cygwin +category Package +revision 46894 +shortdesc x86_64-cygwin files of l3build +containersize 344 +containerchecksum b175d059d9fca58fc959b545703826c9faecd8a3f67ae20ed43a1a3c99c1492b0b823187715a7e4a7aff29f2cbba7fab77a8447c4538568cf2a399add377e54d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/l3build + +name l3build.x86_64-darwinlegacy +category Package +revision 46894 +shortdesc x86_64-darwinlegacy files of l3build +containersize 348 +containerchecksum 4b51cf696b12f3c914c697d97b96cd05238531649c7732f9bcde5e6369a79b2644fa5850689d4ce67398b61ed2ec02b836a20d36ffb3d44e357eb7ebb32bde9d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/l3build + +name l3build.x86_64-linux +category Package +revision 46894 +shortdesc x86_64-linux files of l3build +containersize 340 +containerchecksum 0f29977ad0a457e82bbb9c77dfceb72a7408d3a6bc2279bfe7c3b2064b28ab8d62fc5ed6c74b5f34af75317ca8fec2ffa218f3c879e7d4349330057259d778a7 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/l3build + +name l3build.x86_64-linuxmusl +category Package +revision 46894 +shortdesc x86_64-linuxmusl files of l3build +containersize 344 +containerchecksum 25433705644d5e3f4b054b834355a5daca126839688ec4dfdeec420032b52a61c12970a87c35577fb2424aaa157d2cb1cc13d48bf53f3f5510900da1a07aa9b5 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/l3build + +name l3build.x86_64-solaris +category Package +revision 46894 +shortdesc x86_64-solaris files of l3build +containersize 340 +containerchecksum f1b37e6e1f544c742ef7587ae1b84c1103fa196066c89a38e32ce78e7076aed900bb67eec6d976e094529c88ab7f7a58fde3f37a3c40ab17f95ea227ae6c63a0 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/l3build + +name l3experimental +category Package +revision 57789 +shortdesc Experimental LaTeX3 concepts +relocated 1 +longdesc The l3experimental packages are a collection of experimental +longdesc implementations for aspects of the LaTeX3 kernel, dealing with +longdesc higher-level ideas such as the Designer Interface. Some of them +longdesc work as stand alone packages, providing new functionality, and +longdesc can be used on top of LaTeX2e with no changes to the existing +longdesc kernel. The present release includes: l3benchmark for measuring +longdesc the time taken by TeX to run certain code; l3draw, a code-level +longdesc interface for constructing drawings; l3graphics, an interfaces +longdesc for the inclusion of graphics files; l3str, support for string +longdesc manipulation; l3bitset, support for bit vectors; l3sys-shell, +longdesc which provides abstractions for common shell functions like +longdesc file deletion and copying; xcoffins, which allows the alignment +longdesc of boxes using a series of 'handle' positions, supplementing +longdesc the simple TeX reference point; xgalley, which controls boxes +longdesc receiving text for typesetting. +depend l3kernel +containersize 22992 +containerchecksum b72f9d154fe57effb38b8da1fa1e32e4343e4ff8eee094794c7d3864a2b89f4ad65f2c744de8033e4371872c325462f5fac9886e5037a965d3a5e242a916a055 +doccontainersize 3241488 +doccontainerchecksum b0951f18b213cbc9796eb80ec688ff7bddb07606a756262a252ea0572e4ae5b4c562af62bc26a13ed4512ac82c92a6eb3505d39eff50df16de1fbb924bf3d499 +docfiles size=952 + RELOC/doc/latex/l3experimental/CHANGELOG.md + RELOC/doc/latex/l3experimental/README.md details="Readme" + RELOC/doc/latex/l3experimental/l3benchmark/l3benchmark.pdf details="l3benchmark documentation" + RELOC/doc/latex/l3experimental/l3bitset/l3bitset.pdf + RELOC/doc/latex/l3experimental/l3draw/l3draw-code.pdf + RELOC/doc/latex/l3experimental/l3draw/l3draw-code.tex + RELOC/doc/latex/l3experimental/l3draw/l3draw.pdf details="l3draw documentation" + RELOC/doc/latex/l3experimental/l3graphics/l3graphics.pdf details="l3graphics documentation" + RELOC/doc/latex/l3experimental/l3str/l3str-format.pdf details="l3str-format documentation" + RELOC/doc/latex/l3experimental/l3sys-shell/l3sys-shell.pdf details="l3sys-shell documentation" + RELOC/doc/latex/l3experimental/xcoffins/xcoffins.pdf details="xcoffins documentation" + RELOC/doc/latex/l3experimental/xgalley/l3galley.pdf + RELOC/doc/latex/l3experimental/xgalley/xgalley.pdf details="xgalley documentation" +srccontainersize 78284 +srccontainerchecksum 2a48f0bbb8d53bb95939376a91a08523233f002eb9c4114c36d599c89a8442a960df52a727605a4d8c5ec96e89e131ba7c3cebbb575aaae9d85b0a60f02659dd +srcfiles size=126 + RELOC/source/latex/l3experimental/l3benchmark/l3benchmark.dtx + RELOC/source/latex/l3experimental/l3benchmark/l3benchmark.ins + RELOC/source/latex/l3experimental/l3bitset/l3bitset.dtx + RELOC/source/latex/l3experimental/l3bitset/l3bitset.ins + RELOC/source/latex/l3experimental/l3draw/l3draw-boxes.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-layers.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-paths.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-points.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-scopes.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-softpath.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-state.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-transforms.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw.ins + RELOC/source/latex/l3experimental/l3graphics/l3graphics.dtx + RELOC/source/latex/l3experimental/l3graphics/l3graphics.ins + RELOC/source/latex/l3experimental/l3str/l3str-format.dtx + RELOC/source/latex/l3experimental/l3str/l3str.ins + RELOC/source/latex/l3experimental/l3sys-shell/l3sys-shell.dtx + RELOC/source/latex/l3experimental/l3sys-shell/l3sys-shell.ins + RELOC/source/latex/l3experimental/xcoffins/xcoffins.dtx + RELOC/source/latex/l3experimental/xcoffins/xcoffins.ins + RELOC/source/latex/l3experimental/xgalley/l3galley.dtx + RELOC/source/latex/l3experimental/xgalley/xgalley.dtx + RELOC/source/latex/l3experimental/xgalley/xgalley.ins +runfiles size=47 + RELOC/tex/latex/l3experimental/l3benchmark/l3benchmark.sty + RELOC/tex/latex/l3experimental/l3bitset/l3bitset.sty + RELOC/tex/latex/l3experimental/l3draw/l3draw.sty + RELOC/tex/latex/l3experimental/l3graphics/l3graphics.sty + RELOC/tex/latex/l3experimental/l3str/l3str-format.sty + RELOC/tex/latex/l3experimental/l3sys-shell/l3sys-shell.sty + RELOC/tex/latex/l3experimental/xcoffins/xcoffins.sty + RELOC/tex/latex/l3experimental/xgalley/l3galley.sty + RELOC/tex/latex/l3experimental/xgalley/xgalley.sty +catalogue-also l3kernel l3packages +catalogue-contact-home http://www.latex-project.org/code.html +catalogue-ctan /macros/latex/contrib/l3experimental +catalogue-license lppl1.3c +catalogue-topics macro-supp layout latex3 pre-release + +name l3kernel +category Package +revision 57789 +shortdesc LaTeX3 programming conventions +relocated 1 +longdesc The l3kernel bundle provides an implementation of the LaTeX3 +longdesc programmers' interface, as a set of packages that run under +longdesc LaTeX2e. The interface provides the foundation on which the +longdesc LaTeX3 kernel and other future code are built: it is an API for +longdesc TeX programmers. The packages are set up so that the LaTeX3 +longdesc conventions can be used with regular LaTeX2e packages. +depend l3backend +containersize 163980 +containerchecksum 6cc0245c0986c964ba8a41430c4c1a794196f6c534fffa8bb87a43687d60a5f7ae686cbe09e36845898e60d13d6503448c81a6d549c7793f799c241013ef41b6 +doccontainersize 10408236 +doccontainerchecksum 70150363e1f09627e3040aaa7f1b0aabc3a62e5f5d81c00b8991895873bfccf764164dbc7da4a6ff7c5e12513d343a0eb6e38d7a173050e0db53a6c7cb66f6b1 +docfiles size=2932 + RELOC/doc/latex/l3kernel/CHANGELOG.md + RELOC/doc/latex/l3kernel/README.md details="Readme" + RELOC/doc/latex/l3kernel/expl3.pdf details="The LaTeX3 Programming Language" + RELOC/doc/latex/l3kernel/interface3.pdf details="The LaTeX3 interfaces" + RELOC/doc/latex/l3kernel/interface3.tex + RELOC/doc/latex/l3kernel/l3docstrip.pdf + RELOC/doc/latex/l3kernel/l3news.pdf + RELOC/doc/latex/l3kernel/l3news.tex + RELOC/doc/latex/l3kernel/l3news01.pdf + RELOC/doc/latex/l3kernel/l3news01.tex + RELOC/doc/latex/l3kernel/l3news02.pdf + RELOC/doc/latex/l3kernel/l3news02.tex + RELOC/doc/latex/l3kernel/l3news03.pdf + RELOC/doc/latex/l3kernel/l3news03.tex + RELOC/doc/latex/l3kernel/l3news04.pdf + RELOC/doc/latex/l3kernel/l3news04.tex + RELOC/doc/latex/l3kernel/l3news05.pdf + RELOC/doc/latex/l3kernel/l3news05.tex + RELOC/doc/latex/l3kernel/l3news06.pdf + RELOC/doc/latex/l3kernel/l3news06.tex + RELOC/doc/latex/l3kernel/l3news07.pdf + RELOC/doc/latex/l3kernel/l3news07.tex + RELOC/doc/latex/l3kernel/l3news08.pdf + RELOC/doc/latex/l3kernel/l3news08.tex + RELOC/doc/latex/l3kernel/l3news09.pdf + RELOC/doc/latex/l3kernel/l3news09.tex + RELOC/doc/latex/l3kernel/l3news10.pdf + RELOC/doc/latex/l3kernel/l3news10.tex + RELOC/doc/latex/l3kernel/l3news11.pdf + RELOC/doc/latex/l3kernel/l3news11.tex + RELOC/doc/latex/l3kernel/l3news12.pdf + RELOC/doc/latex/l3kernel/l3news12.tex + RELOC/doc/latex/l3kernel/l3obsolete.txt + RELOC/doc/latex/l3kernel/l3prefixes.csv + RELOC/doc/latex/l3kernel/l3prefixes.pdf + RELOC/doc/latex/l3kernel/l3prefixes.tex + RELOC/doc/latex/l3kernel/l3styleguide.pdf details="LaTeX3 style guide" + RELOC/doc/latex/l3kernel/l3styleguide.tex + RELOC/doc/latex/l3kernel/l3syntax-changes.pdf details="Syntax changes" + RELOC/doc/latex/l3kernel/l3syntax-changes.tex + RELOC/doc/latex/l3kernel/l3term-glossary.pdf + RELOC/doc/latex/l3kernel/l3term-glossary.tex + RELOC/doc/latex/l3kernel/source3.pdf + RELOC/doc/latex/l3kernel/source3.tex + RELOC/doc/latex/l3kernel/source3body.tex +srccontainersize 568920 +srccontainerchecksum 5f8837dd921469ed84e48ace634a00e450cee5fd8306a7236279cdf86b842ed2134f8960ff58bc2cf15dbf26ac7d407bc2a1d1ca48179d6666e88285a210d4b7 +srcfiles size=878 + RELOC/source/latex/l3kernel/expl3.dtx + RELOC/source/latex/l3kernel/l3.ins + RELOC/source/latex/l3kernel/l3basics.dtx + RELOC/source/latex/l3kernel/l3bootstrap.dtx + RELOC/source/latex/l3kernel/l3box.dtx + RELOC/source/latex/l3kernel/l3candidates.dtx + RELOC/source/latex/l3kernel/l3cctab.dtx + RELOC/source/latex/l3kernel/l3clist.dtx + RELOC/source/latex/l3kernel/l3coffins.dtx + RELOC/source/latex/l3kernel/l3color.dtx + RELOC/source/latex/l3kernel/l3debug.dtx + RELOC/source/latex/l3kernel/l3deprecation.dtx + RELOC/source/latex/l3kernel/l3doc.dtx + RELOC/source/latex/l3kernel/l3docstrip.dtx + RELOC/source/latex/l3kernel/l3expan.dtx + RELOC/source/latex/l3kernel/l3file.dtx + RELOC/source/latex/l3kernel/l3flag.dtx + RELOC/source/latex/l3kernel/l3fp-assign.dtx + RELOC/source/latex/l3kernel/l3fp-aux.dtx + RELOC/source/latex/l3kernel/l3fp-basics.dtx + RELOC/source/latex/l3kernel/l3fp-convert.dtx + RELOC/source/latex/l3kernel/l3fp-expo.dtx + RELOC/source/latex/l3kernel/l3fp-extended.dtx + RELOC/source/latex/l3kernel/l3fp-logic.dtx + RELOC/source/latex/l3kernel/l3fp-parse.dtx + RELOC/source/latex/l3kernel/l3fp-random.dtx + RELOC/source/latex/l3kernel/l3fp-round.dtx + RELOC/source/latex/l3kernel/l3fp-traps.dtx + RELOC/source/latex/l3kernel/l3fp-trig.dtx + RELOC/source/latex/l3kernel/l3fp.dtx + RELOC/source/latex/l3kernel/l3fparray.dtx + RELOC/source/latex/l3kernel/l3int.dtx + RELOC/source/latex/l3kernel/l3intarray.dtx + RELOC/source/latex/l3kernel/l3kernel-functions.dtx + RELOC/source/latex/l3kernel/l3keys.dtx + RELOC/source/latex/l3kernel/l3legacy.dtx + RELOC/source/latex/l3kernel/l3luatex.dtx + RELOC/source/latex/l3kernel/l3msg.dtx + RELOC/source/latex/l3kernel/l3names.dtx + RELOC/source/latex/l3kernel/l3pdf.dtx + RELOC/source/latex/l3kernel/l3prg.dtx + RELOC/source/latex/l3kernel/l3prop.dtx + RELOC/source/latex/l3kernel/l3quark.dtx + RELOC/source/latex/l3kernel/l3regex.dtx + RELOC/source/latex/l3kernel/l3seq.dtx + RELOC/source/latex/l3kernel/l3skip.dtx + RELOC/source/latex/l3kernel/l3sort.dtx + RELOC/source/latex/l3kernel/l3str-convert.dtx + RELOC/source/latex/l3kernel/l3str.dtx + RELOC/source/latex/l3kernel/l3sys.dtx + RELOC/source/latex/l3kernel/l3text-case.dtx + RELOC/source/latex/l3kernel/l3text-purify.dtx + RELOC/source/latex/l3kernel/l3text.dtx + RELOC/source/latex/l3kernel/l3tl-analysis.dtx + RELOC/source/latex/l3kernel/l3tl.dtx + RELOC/source/latex/l3kernel/l3token.dtx + RELOC/source/latex/l3kernel/l3unicode.dtx +runfiles size=335 + RELOC/tex/latex/l3kernel/expl3-code.tex + RELOC/tex/latex/l3kernel/expl3-generic.tex + RELOC/tex/latex/l3kernel/expl3.ltx + RELOC/tex/latex/l3kernel/expl3.lua + RELOC/tex/latex/l3kernel/expl3.sty + RELOC/tex/latex/l3kernel/l3debug.def + RELOC/tex/latex/l3kernel/l3deprecation.def + RELOC/tex/latex/l3kernel/l3doc.cls + RELOC/tex/latex/l3kernel/l3docstrip.tex + RELOC/tex/latex/l3kernel/l3str-enc-iso88591.def + RELOC/tex/latex/l3kernel/l3str-enc-iso885910.def + RELOC/tex/latex/l3kernel/l3str-enc-iso885911.def + RELOC/tex/latex/l3kernel/l3str-enc-iso885913.def + RELOC/tex/latex/l3kernel/l3str-enc-iso885914.def + RELOC/tex/latex/l3kernel/l3str-enc-iso885915.def + RELOC/tex/latex/l3kernel/l3str-enc-iso885916.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88592.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88593.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88594.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88595.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88596.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88597.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88598.def + RELOC/tex/latex/l3kernel/l3str-enc-iso88599.def +catalogue-also l3backend l3packages l3experimental +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-license lppl1.3c +catalogue-topics format latex3 pre-release + +name l3packages +category Package +revision 58296 +shortdesc High-level LaTeX3 concepts +relocated 1 +longdesc This collection contains implementations for aspects of the +longdesc LaTeX3 kernel, dealing with higher-level ideas such as the +longdesc Designer Interface. The packages here are considered broadly +longdesc stable (The LaTeX3 Project does not expect the interfaces to +longdesc alter radically). These packages are built on LaTeX2e +longdesc conventions at the interface level, and so may not migrate in +longdesc the current form to a stand-alone LaTeX3 format. Packages +longdesc provided: xparse, which provides a high-level interface for +longdesc declaring document commands xfp, an expandable IEEE 754 FPU for +longdesc LaTeX l3keys2e, which makes the facilities of the kernel module +longdesc l3keys available for use by LaTeX 2e packages xtemplate, which +longdesc provides a means of defining generic functions using a +longdesc key-value syntax xfrac, which provides flexible split-level +longdesc fractions +depend l3kernel +containersize 21504 +containerchecksum 9ce87e6667a601818c586a01629ff954bd539075160a11e82bb8f53bf1306255584fca6f3ee36327fed5c78c43d7ecabcecf4db1b09410a70ec77496871ba4e0 +doccontainersize 1773816 +doccontainerchecksum 782e2a1d9d49264eab0801c625940c3fd993051f879f1e525a685572ba08e949368f429a01574a2f94d9b5dd386db33a6c75aa3eb485c725ec9c8007f5f5def0 +docfiles size=532 + RELOC/doc/latex/l3packages/CHANGELOG.md + RELOC/doc/latex/l3packages/README.md details="Readme" + RELOC/doc/latex/l3packages/l3keys2e/l3keys2e-demo.tex + RELOC/doc/latex/l3packages/l3keys2e/l3keys2e.pdf details="l3keys2e documentation" + RELOC/doc/latex/l3packages/xfp/xfp.pdf details="xfp documentation" + RELOC/doc/latex/l3packages/xfrac/xfrac.pdf details="xfrac documentation" + RELOC/doc/latex/l3packages/xparse/xparse.pdf details="xparse documentation" + RELOC/doc/latex/l3packages/xtemplate/xtemplate.pdf details="xtemplate documentation" +srccontainersize 44724 +srccontainerchecksum b78b37e60af618bd2bb527a7bca77f99d2e977d4baa8a1899275ebd1ac0ec9f71b6553a8a83a1b8df763b6a4ea9533fb5d0bbc64bdf0e7b29c9a0bb850dce59a +srcfiles size=59 + RELOC/source/latex/l3packages/l3keys2e/l3keys2e.dtx + RELOC/source/latex/l3packages/l3keys2e/l3keys2e.ins + RELOC/source/latex/l3packages/xfp/xfp.dtx + RELOC/source/latex/l3packages/xfp/xfp.ins + RELOC/source/latex/l3packages/xfrac/xfrac.dtx + RELOC/source/latex/l3packages/xfrac/xfrac.ins + RELOC/source/latex/l3packages/xparse/xparse.dtx + RELOC/source/latex/l3packages/xparse/xparse.ins + RELOC/source/latex/l3packages/xtemplate/xtemplate.dtx + RELOC/source/latex/l3packages/xtemplate/xtemplate.ins +runfiles size=65 + RELOC/tex/latex/l3packages/l3keys2e/l3keys2e.sty + RELOC/tex/latex/l3packages/xfp/xfp.sty + RELOC/tex/latex/l3packages/xfrac/xfrac.sty + RELOC/tex/latex/l3packages/xparse/xparse-2018-04-12.sty + RELOC/tex/latex/l3packages/xparse/xparse-2020-10-01.sty + RELOC/tex/latex/l3packages/xparse/xparse-generic.tex + RELOC/tex/latex/l3packages/xparse/xparse.ltx + RELOC/tex/latex/l3packages/xparse/xparse.sty + RELOC/tex/latex/l3packages/xtemplate/xtemplate.sty +catalogue-also l3kernel l3experimental +catalogue-contact-home http://www.latex-project.org/code.html +catalogue-ctan /macros/latex/contrib/l3packages +catalogue-license lppl1.3c +catalogue-topics macro-supp latex3 pre-release + +name labbook +category Package +revision 15878 +shortdesc Typeset laboratory journals +relocated 1 +longdesc This class is designed to typeset laboratory journals that +longdesc contain chronologically ordered records about experiments. From +longdesc the sectioning commands, an experiment index is generated. The +longdesc class is based on the KOMA-Script class scrbook.cls. There can +longdesc be several index entries for one experiment. +containersize 4180 +containerchecksum 92bd582cc729bcd3cea6979771e934d5a4a194536ff89a475309d3999ab0a2ab70d5ba5be6f0353e97498ab4e971e3209df9a3ca4ac99a8c9de27586a0f4a3b0 +doccontainersize 210236 +doccontainerchecksum 98758f4cc186df470e8a16b2e9365f3bec585be18c0fa8700df238befe052ad69b697357c7d89b19233a9cf2b308c29a54bf84215fa3ca8859111b0214971ed2 +docfiles size=70 + RELOC/doc/latex/labbook/README details="Readme" + RELOC/doc/latex/labbook/boilerplates.tex + RELOC/doc/latex/labbook/examplde.tex + RELOC/doc/latex/labbook/examplen.tex + RELOC/doc/latex/labbook/labboode.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/labbook/labboode.tex + RELOC/doc/latex/labbook/labbook.el + RELOC/doc/latex/labbook/labbook.pdf details="Package documentation (English)" language="en" +srccontainersize 23192 +srccontainerchecksum 23b9f993dbd431328590617c6715bb082cd1dac757db003b05296d318a002e85c8c541f5ce6a45703fa2cc481c7af98fe41e483c77b5025e50de324b68fcf525 +srcfiles size=21 + RELOC/source/latex/labbook/labbook.dtx + RELOC/source/latex/labbook/labbook.ins +runfiles size=5 + RELOC/tex/latex/labbook/labbook.cls +catalogue-ctan /macros/latex/contrib/labbook +catalogue-license lppl +catalogue-topics record-keep class + +name labels +category Package +revision 15878 +shortdesc Print sheets of sticky labels +relocated 1 +longdesc A LaTeX package to print a regular grid of ragged-right labels +longdesc on a page, suitable for sheets of labels which can be fed +longdesc through a printer. Macros are provided to allow easy input of +longdesc names and addresses in a form free of TeX markup. Equally +longdesc useful is a feature for making multiple copies of a single +longdesc label, e.g., return address stickers to go with the labels. +longdesc Rows, columns, borders can all be specified to match the label +longdesc sheet being used. +containersize 3536 +containerchecksum b1cd175e1c5ece09926ad3fb5ef3b2dbc528435e26c81df563f674388083b481e6a6f072724254302c243a640960a942a6b356664675f4041c94962155f5ee62 +doccontainersize 177412 +doccontainerchecksum 0ac61f3a1ec027dd3631a4e6ffabdbf71ca27eb19c877a0beef8d7d991989d613769474e99770e9edc74dffc8b59981da8666e5dcb26450717be37b098a028b9 +docfiles size=87 + RELOC/doc/latex/labels/README + RELOC/doc/latex/labels/labels.pdf + RELOC/doc/latex/labels/test/avery5162.tex + RELOC/doc/latex/labels/test/badge.tex + RELOC/doc/latex/labels/test/beebe.tex + RELOC/doc/latex/labels/test/door.tex + RELOC/doc/latex/labels/test/door209.tex + RELOC/doc/latex/labels/test/names.dat + RELOC/doc/latex/labels/test/news.tex + RELOC/doc/latex/labels/test/test.tex + RELOC/doc/latex/labels/test/test1.tex + RELOC/doc/latex/labels/test/test10.tex + RELOC/doc/latex/labels/test/test11.tex + RELOC/doc/latex/labels/test/test12.tex + RELOC/doc/latex/labels/test/test2.tex + RELOC/doc/latex/labels/test/test3.tex + RELOC/doc/latex/labels/test/test4.tex + RELOC/doc/latex/labels/test/test5.tex + RELOC/doc/latex/labels/test/test6.tex + RELOC/doc/latex/labels/test/test7.tex + RELOC/doc/latex/labels/test/test8.tex + RELOC/doc/latex/labels/test/test9.tex + RELOC/doc/latex/labels/test/testnew.tex + RELOC/doc/latex/labels/test/testnew1.tex + RELOC/doc/latex/labels/test/testnew10.tex + RELOC/doc/latex/labels/test/testnew11.tex + RELOC/doc/latex/labels/test/testnew12.tex + RELOC/doc/latex/labels/test/testnew13.tex + RELOC/doc/latex/labels/test/testnew2.tex + RELOC/doc/latex/labels/test/testnew3.tex + RELOC/doc/latex/labels/test/testnew4.tex + RELOC/doc/latex/labels/test/testnew5.tex + RELOC/doc/latex/labels/test/testnew6.tex + RELOC/doc/latex/labels/test/testnew7.tex + RELOC/doc/latex/labels/test/testnew8.tex + RELOC/doc/latex/labels/test/testnew9.tex + RELOC/doc/latex/labels/test/zwekform.tex +srccontainersize 14888 +srccontainerchecksum debc22ed66f978aed88c84a0756677cc5faed39ef47ad37f8fcd4d6dcd02ce6b3a582ea6edc73ddd96ae04e7a50d43eddaba8404ceadb8c49439927f41f8c210 +srcfiles size=13 + RELOC/source/latex/labels/labels.dtx + RELOC/source/latex/labels/labels.ins +runfiles size=6 + RELOC/tex/latex/labels/labels.sty + RELOC/tex/latex/labels/olabels.sty +catalogue-ctan /macros/latex/contrib/labels +catalogue-license lppl1.2 +catalogue-topics labels +catalogue-version .13 + +name labels4easylist +category Package +revision 51124 +shortdesc Add reference labels to easylist items +relocated 1 +longdesc This package provides the \itemLabel macro for adding +longdesc configurable reference labels to easylist items. +containersize 1876 +containerchecksum 1f792dfc8c3d51cbb3ec4370e4ea36612d503a9a92d088f0d8b03ccc78c480118308aa48e4dba66dcfd55c8a3442950242742eddd557bd6b44c925e01e361163 +doccontainersize 25184 +doccontainerchecksum 1ca630c5aa01e53d6a7fa65d9ebb4ccf5bc43af7d3cb66a6bbb287398e28764dae0b535eb4b821c2c406e22e239e8a88fc63a010d4e79977ef6e8cfd563afde2 +docfiles size=9 + RELOC/doc/latex/labels4easylist/README details="Readme" + RELOC/doc/latex/labels4easylist/labels4easylist.pdf details="Package documentation" + RELOC/doc/latex/labels4easylist/labels4easylist.tex +runfiles size=1 + RELOC/tex/latex/labels4easylist/labels4easylist.sty +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-license mit +catalogue-topics list +catalogue-version 1.0 + +name labelschanged +category Package +revision 46040 +shortdesc Identify labels which cause endless "may have changed" warnings +relocated 1 +longdesc Several conditions can cause LaTeX labels to keep changing, no +longdesc matter how many times a document is recompiled. This package +longdesc helps diagnose the cause of repeated "Label(s) may have +longdesc changed" warnings. The names and before/after definitions of +longdesc changing labels are printed at the end of each compile. +longdesc Multiply-defined labels are printed as well. +containersize 1060 +containerchecksum e9cbb45a636fa75c9b9c8d8400fd9a0cf0ef2a46f998d650631e9874907daa7b4deeb4c99d1610eefc343436d164ace717b32cb1d0c45e860e64d69e4c827a07 +doccontainersize 195592 +doccontainerchecksum 130c0e5f27f0de161949fca202f73bce3486e9346a48584ce1b8636c16367eb3398b36f0145e37531d64933698c201132ba90ca3b5d5b011978d0fad0cc5ad63 +docfiles size=49 + RELOC/doc/latex/labelschanged/README.txt details="Readme" + RELOC/doc/latex/labelschanged/labelschanged.pdf details="Package documentation" +srccontainersize 4164 +srccontainerchecksum 59c1cd3371e97542f6f1cd8fcd14b3cadfabffbecad635bcea33eb535e45ba8b174e9e392e135c799afec08c195b867477255d1336c281a1e9dffe7c1c457cd3 +srcfiles size=4 + RELOC/source/latex/labelschanged/labelschanged.dtx + RELOC/source/latex/labelschanged/labelschanged.ins +runfiles size=1 + RELOC/tex/latex/labelschanged/labelschanged.sty +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /macros/latex/contrib/labelschanged +catalogue-license pd +catalogue-topics misc-support label-ref +catalogue-version 1.0 + +name labyrinth +category Package +revision 33454 +shortdesc Draw labyrinths and solution paths +relocated 1 +longdesc The labyrinth package provides code and an environment for +longdesc typesetting simple labyrinths with LaTeX, and generating an +longdesc automatic or manual solution path. +containersize 2348 +containerchecksum 06c61f5a0a2b39d644d5b741877f445dea48fefaaddfb7f60251ecb328f16ba2ec6f09731608ac5ca7b288fe77fc193984dad25b8f0ad0da5f35bdd43fb2f8ee +doccontainersize 228388 +doccontainerchecksum 980a3bef8b8eb51cd454c835ba09205f8dedab92f747db9704c72d5433db75f68df298ee4ca06c6d68e0cb4c4b733c882d14bbbb9d877406163b0f95730a10ce +docfiles size=63 + RELOC/doc/latex/labyrinth/README details="Readme" + RELOC/doc/latex/labyrinth/classic-en.ist + RELOC/doc/latex/labyrinth/labyrinth.pdf details="Package documentation" + RELOC/doc/latex/labyrinth/labyrinth.tex + RELOC/doc/latex/labyrinth/lstlocal.cfg +runfiles size=2 + RELOC/tex/latex/labyrinth/labyrinth.sty +catalogue-ctan /macros/latex/contrib/labyrinth +catalogue-license lppl +catalogue-topics games +catalogue-version 1.0 + +name lacheck +category TLCore +revision 54070 +shortdesc LaTeX checker +longdesc Lacheck is a tool for finding common mistakes in LaTeX +longdesc documents. The distribution includes sources, and executables +longdesc for OS/2 and Win32 environments. +depend lacheck.ARCH +containersize 436 +containerchecksum 30241d13ac35054017c6240ad066ae84b11c26757fa895ffdc1444b0825e50a2a89864ca85d710882be4105127c4df203ad4a403504a6c309b796c9b9ee5b589 +doccontainersize 20964 +doccontainerchecksum a1ef923bfe1c3496651052b4a8b6978665b75f43b7dbeb254fb61657050427aedc8415218f988a7e727849dd0001b67ed023ecd252bac2445b0965a58800187c +docfiles size=8 + texmf-dist/doc/man/man1/lacheck.1 + texmf-dist/doc/man/man1/lacheck.man1.pdf +catalogue-also l2tabu nag +catalogue-ctan /support/lacheck +catalogue-license gpl +catalogue-topics latex-qual + +name lacheck.aarch64-linux +category TLCore +revision 53999 +shortdesc aarch64-linux files of lacheck +containersize 20096 +containerchecksum 3245dc94860e151eebc5393b63e4423c308ba341a497f17349d647157563517f88b5fc77d811ae650fa9679db1a76435a5f88a4e7cd1fa04cbba89d4a18d617b +binfiles arch=aarch64-linux size=16 + bin/aarch64-linux/lacheck + +name lacheck.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of lacheck +containersize 21992 +containerchecksum 0f59b594b416a97e50dbffacd56ac6d50a840121485fa483f203ca0e96bf36abd38a14736eb79cbf1602b80899809a8d360df9b0aceb54d49dd13b96361ccbd9 +binfiles arch=amd64-freebsd size=16 + bin/amd64-freebsd/lacheck + +name lacheck.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of lacheck +containersize 21624 +containerchecksum 8ca80dcdb5da1e2569bbb2ef2fe1ab9e1f7a0ca44ef58557a7e064920b83d7075d44171d0fc5305ca4c8d9602549d65d7b11397239764d09dac681834326acef +binfiles arch=amd64-netbsd size=17 + bin/amd64-netbsd/lacheck + +name lacheck.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of lacheck +containersize 18788 +containerchecksum 06f282c5a0736e03c534886a6ae7146fd3729832ee835e9313a70703b7ea5a0059d364005f1a7c4aafe9363bfb363c478d5ce8f04e048c01924c33eb0a9093c7 +binfiles arch=armhf-linux size=15 + bin/armhf-linux/lacheck + +name lacheck.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of lacheck +containersize 19752 +containerchecksum 8e7a744bf751fde7e7da5fc1e82dda909440a357dae5a88a99eb8c6346259ad6f5cb9ae30bd307ca2f7804c937048600bbe8d16b0ebaff8e925e4bb6dda83d4f +binfiles arch=i386-cygwin size=16 + bin/i386-cygwin/lacheck.exe + +name lacheck.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of lacheck +containersize 18740 +containerchecksum b9f1cbd022d584bdcadc55d451939377b46f741cc224f43a5c76c2e3839a9e2bd6815c04e9443dd1b01989409718f1aff0fe77ed8f8749dd823172db330a794c +binfiles arch=i386-freebsd size=14 + bin/i386-freebsd/lacheck + +name lacheck.i386-linux +category TLCore +revision 53999 +shortdesc i386-linux files of lacheck +containersize 20088 +containerchecksum 17b4c50c03d2298edea06be3ea9e9a1b6d1aa8e9ec32adf9ec56dc8a8f25976694ae77fb5b157be46764d6f2c9506014be7eda4ef433e6fd41a35186d322f1ed +binfiles arch=i386-linux size=15 + bin/i386-linux/lacheck + +name lacheck.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of lacheck +containersize 18412 +containerchecksum 8ed91959fb81c001568cef97e2b1998e36bf10215de1bf13508730f5d98080b4d56937343d1a6735514cdab10f93f7cd4f3373abe3ac282e04897157577381d4 +binfiles arch=i386-netbsd size=16 + bin/i386-netbsd/lacheck + +name lacheck.i386-solaris +category TLCore +revision 53999 +shortdesc i386-solaris files of lacheck +containersize 20320 +containerchecksum 8b8211b764aeca56e903a8dabecd28fe145ac20c6fde81d14be10bb4171213bffbfce060009711007ddbeef3a9e986fb2c12ea4e719f2e3073aa22ba02bd2ad8 +binfiles arch=i386-solaris size=15 + bin/i386-solaris/lacheck + +name lacheck.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of lacheck +containersize 37056 +containerchecksum a977b535b5b86d6d1652e331f0cd61984c1107f3a777b4bb74e2feea3aa29e93c89783a1d5960e3eb8e207877364784b2fd016f407c3327b67b3b3ef6075e751 +binfiles arch=universal-darwin size=54 + bin/universal-darwin/lacheck + +name lacheck.win32 +category TLCore +revision 53994 +shortdesc win32 files of lacheck +containersize 19512 +containerchecksum b43adead20abe73c6458ef3ed6e9caccb2e759bada0dc3b8ebd5d0b9a80b50aadd2e47242c904e7b3de295adfcdd42d19d94dcfcaa48d131dd3d7bf7f79d5d4f +binfiles arch=win32 size=15 + bin/win32/lacheck.exe + +name lacheck.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of lacheck +containersize 22664 +containerchecksum 9b0d4ce48248b097546cbfa6fcca17ef850bd968cfe5b72d0ffec84fdd55aa770ac564aa204a83c57baedd0dae01e3c8a73976aa58f5321135cb69640d299f47 +binfiles arch=x86_64-cygwin size=16 + bin/x86_64-cygwin/lacheck.exe + +name lacheck.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of lacheck +containersize 20100 +containerchecksum 10afd9bb5e94e26e2cc29db8e54b8e6777204f86c416c1dcfee93e264a5b17b77cd4e100767b0572a050c0b590fecda606a2c226b92e0906d5792a8661d916b9 +binfiles arch=x86_64-darwinlegacy size=15 + bin/x86_64-darwinlegacy/lacheck + +name lacheck.x86_64-linux +category TLCore +revision 53999 +shortdesc x86_64-linux files of lacheck +containersize 22592 +containerchecksum 5fc6c78281b14a149859ab717119fef7cd44b0926ddc487805bd5f450fe33667e998cc99142545580fe03a3539950d17d38a1d365cdbdc1640ecb9ae32a572e6 +binfiles arch=x86_64-linux size=16 + bin/x86_64-linux/lacheck + +name lacheck.x86_64-linuxmusl +category TLCore +revision 54264 +shortdesc x86_64-linuxmusl files of lacheck +containersize 22496 +containerchecksum b25c8f26a3b15b3d709c63d9550961e0ec643e0045a1e8b31d2ca4d82aafb970891879fee493cef3f47e8b938183bdca582702ffd6d93235d86a67bf706f2ecf +binfiles arch=x86_64-linuxmusl size=16 + bin/x86_64-linuxmusl/lacheck + +name lacheck.x86_64-solaris +category TLCore +revision 53999 +shortdesc x86_64-solaris files of lacheck +containersize 24040 +containerchecksum eaa3d4af3c1ac0311586a83b99f9b5e2e2144d9548d75afc1c42636f0a9312feffb4c0d8894ab0add74bd27dd6cccd9e8d6546ad97c525d515977b6351ff5859 +binfiles arch=x86_64-solaris size=17 + bin/x86_64-solaris/lacheck + +name ladder +category Package +revision 44394 +shortdesc Draw simple ladder diagrams using TikZ +relocated 1 +longdesc This package permits the creation of simple ladder diagrams +longdesc within LaTeX documents. Required packages are tikz, ifthen, and +longdesc calc. +containersize 1412 +containerchecksum bbe2f94442a4f308a416e9d849f9e4b8af12387e59e73931b563d5daaee312dbdf82a99f5122de897cb069a54f3bc13619e719ed717b38db4aebcac72c2c4f93 +doccontainersize 214124 +doccontainerchecksum 1cf2a2a2267e819c9ee723af9cf51d711f778c3583c859eb01f2b2faebfd0f7a6fc4f4ab6caa83a9df6a797175ec27d29f0debbeaeb39387954070623ab60b29 +docfiles size=55 + RELOC/doc/latex/ladder/README.md details="Readme" + RELOC/doc/latex/ladder/ladder.pdf details="Package documentation" + RELOC/doc/latex/ladder/ladder.tex +runfiles size=2 + RELOC/tex/latex/ladder/ladder.sty +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-license mit +catalogue-topics pgf-tikz diagram-circ + +name lambda +category Package +revision 45756 +shortdesc LaTeX for Omega and Aleph +relocated 1 +containersize 47360 +containerchecksum 54da97daf172e3dae434e75425b80d1c617ddc9991f6ee804cd812e2c4bd70b49eb1a01318e243c10998870877d4f76e084b5ef0b0eaa89afa66f77a124a7c02 +runfiles size=85 + RELOC/tex/lambda/base/UT1cmr.fd + RELOC/tex/lambda/base/UT1omlgc.fd + RELOC/tex/lambda/base/elhyph16.tex + RELOC/tex/lambda/base/french.bgd + RELOC/tex/lambda/base/french.lay + RELOC/tex/lambda/base/grcodes.tex + RELOC/tex/lambda/base/greek.bgd + RELOC/tex/lambda/base/greek.lay + RELOC/tex/lambda/base/grmhyph.tex + RELOC/tex/lambda/base/inuit.hpn + RELOC/tex/lambda/base/lambda.tex + RELOC/tex/lambda/base/lchcmr.fd + RELOC/tex/lambda/base/lchenc.def + RELOC/tex/lambda/base/ocherokee.sty + RELOC/tex/lambda/base/odev.sty + RELOC/tex/lambda/base/ojapan.sty + RELOC/tex/lambda/base/omarab.cfg + RELOC/tex/lambda/base/omega.sty + RELOC/tex/lambda/base/omlgc.cfg + RELOC/tex/lambda/base/ot1omarb.fd + RELOC/tex/lambda/base/ot1omlgc.fd + RELOC/tex/lambda/base/ot1uctt.fd + RELOC/tex/lambda/base/usenglish.bgd + RELOC/tex/lambda/base/usenglish.lay + RELOC/tex/lambda/base/ut1enc.def + RELOC/tex/lambda/config/lambda.ini + RELOC/tex/lambda/config/language.dat + +name lambda-lists +category Package +revision 31402 +shortdesc Lists in TeX's mouth +relocated 1 +longdesc These list-processing macros avoid the reassignments employed +longdesc in the macros shown in Appendix D of the TeXbook: all the +longdesc manipulations take place in what Knuth is pleased to call +longdesc "TeX's mouth". +containersize 1548 +containerchecksum caeb3a547eb68d3e255d729cb6ec390cfaeb3bd9d4b4b6e8f877140fe24f4ee3ff0ddccd4107fa836faf5163d3d71209fed4a9e052d3329ff22a892d62b43b92 +doccontainersize 130024 +doccontainerchecksum 846c403f99194a19cd21e4d7367a1b43a8ad608055315bb36a1113fb37dd3d922dd8c5cb8474ae52ed3006be520b7e9023680e85f0dbb17f69a41c8c17e81a5c +docfiles size=45 + RELOC/doc/plain/lambda-lists/README + RELOC/doc/plain/lambda-lists/lambda-lists.pdf + RELOC/doc/plain/lambda-lists/lambda-lists.tex +runfiles size=1 + RELOC/tex/plain/lambda-lists/lambda.sty +catalogue-ctan /macros/generic/lambda-lists +catalogue-license lppl +catalogue-topics macro-supp + +name langcode +category Package +revision 27764 +shortdesc Simple language-dependent settings based on language codes +relocated 1 +longdesc The package provides a command \uselangcode{<code>} to adjust +longdesc language-dependent settings such as key words, typographical +longdesc conventions and language codes (ISO 639-1). The package +longdesc provides a means of selecting macros according to the specified +longdesc code, for preparing a document that is to be separately typeset +longdesc in different laguages. The package is dependent on the plainpkg +longdesc package, and is already in use in the morehype and catcodes +longdesc packages. +containersize 3032 +containerchecksum bc3e601701732d3ff533a7415446c2aaf7306732fdd6a8ac8aee6571cbdfc02b38f51fffde3a80cf5df6b0dd5e649971406f76d394500a74f1830139ea0bc0bb +doccontainersize 313268 +doccontainerchecksum 7ac261071a2902d1e24cbe4bd43bf1baef418bdeb4d3c1dbee4db273d29918649f346e97b5ead3e3de2820110c0cd11dc58c78f765dbd07f7221f28ede5242a8 +docfiles size=87 + RELOC/doc/generic/langcode/README details="Readme" + RELOC/doc/generic/langcode/SrcFILEs.txt + RELOC/doc/generic/langcode/langcode.pdf details="Package documentation" +srccontainersize 2064 +srccontainerchecksum 60baef83840b42deb38d8ae66e18484e4a0431fedd23b1a8dc96c426840ee57f37ab613d93409c3ad8660eef2e759757daf39ec9aace30350623accbd21d2de8 +srcfiles size=2 + RELOC/source/generic/langcode/langcode.tex + RELOC/source/generic/langcode/srcfiles.tex +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-license lppl1.3 +catalogue-topics multilingual macro-gen +catalogue-version 0.2 + +name langsci +category Package +revision 58820 +shortdesc Typeset books for publication with Language Science Press +relocated 1 +longdesc This package allows you to typeset monographs and edited +longdesc volumes for publication with Language Science Press +longdesc (http://www.langsci-press.org). It includes all necessary files +longdesc for title pages, frontmatter, main content, list of references +longdesc and indexes. Dust jackets for BoD and Createspace +longdesc (print-on-demand service providers) can also be produced. +containersize 74256 +containerchecksum bff440adaa56f45ff5a2e8d84d9af8267dacf1c1835c0ae151aac8b30d08b50a1b9b432343603fc6c5426d157befd70cc6d80e2c70470f85c875bf3e733927a4 +doccontainersize 202348 +doccontainerchecksum 570af6bd6f945aef36cc533d5a7fb05f7ffe615d01c9fbb63d9c1cbe2fa8120444b484ccdb84cc3a1c9805bd00b92c7cf744688b3d02166bb03c735404088a19 +docfiles size=58 + RELOC/doc/xelatex/langsci/README.md details="README.md" + RELOC/doc/xelatex/langsci/documentation/langsci-doc.pdf details="Package documentation" + RELOC/doc/xelatex/langsci/documentation/langsci-doc.tex + RELOC/doc/xelatex/langsci/documentation/langsci-gb4.pdf + RELOC/doc/xelatex/langsci/examples/langsci-test.bib + RELOC/doc/xelatex/langsci/examples/samplemonograph.tex + RELOC/doc/xelatex/langsci/examples/samplepaper.tex + RELOC/doc/xelatex/langsci/examples/samplevolume.tex + RELOC/doc/xelatex/langsci/labphon-logo.pdf +runfiles size=107 + RELOC/tex/xelatex/langsci/langsci-affiliations.sty + RELOC/tex/xelatex/langsci/langsci-basic.sty + RELOC/tex/xelatex/langsci/langsci-bidi.sty + RELOC/tex/xelatex/langsci/langsci-forest-setup.sty + RELOC/tex/xelatex/langsci/langsci-gb4e.sty + RELOC/tex/xelatex/langsci/langsci-hyphenation-de.tex + RELOC/tex/xelatex/langsci/langsci-hyphenation-fr.tex + RELOC/tex/xelatex/langsci/langsci-hyphenation-pt.tex + RELOC/tex/xelatex/langsci/langsci-hyphenation-universal.tex + RELOC/tex/xelatex/langsci/langsci-lgr.sty + RELOC/tex/xelatex/langsci/langsci-linguex.sty + RELOC/tex/xelatex/langsci/langsci-optional.sty + RELOC/tex/xelatex/langsci/langsci-plots.sty + RELOC/tex/xelatex/langsci/langsci-pod.sty + RELOC/tex/xelatex/langsci/langsci-series.def + RELOC/tex/xelatex/langsci/langsci-subparts.sty + RELOC/tex/xelatex/langsci/langsci-tbls.sty + RELOC/tex/xelatex/langsci/langsci-textipa.sty + RELOC/tex/xelatex/langsci/langsci-tikz.sty + RELOC/tex/xelatex/langsci/langsci-tobi.sty + RELOC/tex/xelatex/langsci/langsci-unified.bbx + RELOC/tex/xelatex/langsci/langsci-unified.cbx + RELOC/tex/xelatex/langsci/langscibook.cls + RELOC/tex/xelatex/langsci/tbls-alarm.pdf + RELOC/tex/xelatex/langsci/tbls-book.eps + RELOC/tex/xelatex/langsci/tbls-book.pdf + RELOC/tex/xelatex/langsci/tbls-bulb.eps + RELOC/tex/xelatex/langsci/tbls-bulb.pdf + RELOC/tex/xelatex/langsci/tbls-bulbon.pdf + RELOC/tex/xelatex/langsci/tbls-code.pdf + RELOC/tex/xelatex/langsci/tbls-explore.pdf + RELOC/tex/xelatex/langsci/tbls-filter.pdf + RELOC/tex/xelatex/langsci/tbls-glass.eps + RELOC/tex/xelatex/langsci/tbls-glass.pdf + RELOC/tex/xelatex/langsci/tbls-glass2.pdf + RELOC/tex/xelatex/langsci/tbls-law.eps + RELOC/tex/xelatex/langsci/tbls-law.pdf + RELOC/tex/xelatex/langsci/tbls-more.pdf + RELOC/tex/xelatex/langsci/tbls-pencil.pdf + RELOC/tex/xelatex/langsci/tbls-people.pdf + RELOC/tex/xelatex/langsci/tbls-plus.pdf + RELOC/tex/xelatex/langsci/tbls-r.pdf + RELOC/tex/xelatex/langsci/tbls-receipt.pdf + RELOC/tex/xelatex/langsci/tbls-refresh.pdf + RELOC/tex/xelatex/langsci/tbls-report.pdf + RELOC/tex/xelatex/langsci/tbls-test.pdf + RELOC/tex/xelatex/langsci/tbls-tree.pdf +catalogue-contact-bugs https://github.com/langsci/langscibook/issues +catalogue-contact-development https://github.com/langsci/langscibook/graphs/contributors +catalogue-contact-home https://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-license lppl1.3 +catalogue-topics journalpub book-pub class + +name langsci-avm +category Package +revision 55846 +shortdesc Attribute-value matrices and feature structures for use in linguistics +relocated 1 +longdesc This package is aimed at typesetting beautiful feature +longdesc structures, also known as attribute-value matrices (AVMs), for +longdesc use in linguistics. The package provides a minimal and easy to +longdesc read syntax. It depends only on the array package and can be +longdesc placed almost everywhere, in particular in footnotes or graphs +longdesc and tree structures. The package is meant as an update to, and +longdesc serves the same purpose as, Christopher Manning's avm package, +longdesc but shares no code base with that package. langsci-avm was +longdesc developed at Language Science Press to help in the production +longdesc of scientific texts in linguistics, in particular an upcoming +longdesc HPSG handbook. +containersize 3360 +containerchecksum 45e13bfd02059c610e29e486effc0fd6b2b9f3c6ab2ac12dc52de45f8ac564215141450619c6d10021f649114c9faf84ff7b6ccfd5c2ea29d0cefce188b71615 +doccontainersize 112560 +doccontainerchecksum d1430be2082f046538d035ed3aecd3be47694ed251a51e542a26b2206686d08594d443107fbb019732d06152d97724359b8e42a3be4bdcdf6ec778e80116df9a +docfiles size=29 + RELOC/doc/latex/langsci-avm/README details="Readme" + RELOC/doc/latex/langsci-avm/langsci-avm.pdf details="Package documentation" +srccontainersize 11436 +srccontainerchecksum 4f7432db385da2317e11a7c41d90d06f47ca0867897db38c14f91a138d6b671fe808800eea40736266cb6b49c1f7ae30c62be84af64cfb47d986672bb9a27a16 +srcfiles size=12 + RELOC/source/latex/langsci-avm/langsci-avm.dtx + RELOC/source/latex/langsci-avm/langsci-avm.ins +runfiles size=4 + RELOC/tex/latex/langsci-avm/langsci-avm.sty +catalogue-contact-bugs https://github.com/langsci/langsci-avm/issues +catalogue-contact-repository https://github.com/langsci/langsci-avm +catalogue-ctan /macros/latex/contrib/langsci-avm +catalogue-license lppl1.3c +catalogue-topics linguistic matrix expl3 +catalogue-version 0.2.1 + +name lapdf +category Package +revision 23806 +shortdesc PDF drawing directly in TeX documents +relocated 1 +longdesc The package provides the means to use PDF drawing primitives to +longdesc produce high quality, colored graphics. It uses Bezier curves +longdesc (integral and rational) from degree one to seven, allows TeX +longdesc typesetting in the graphic, offers most of the standard math +longdesc functions, allows plotting normal, parametric and polar +longdesc functions. The package has linear, logx, logy, logxy and polar +longdesc grids with many specs; it can rotate, clip and do many nice +longdesc things easily it has two looping commands for programming and +longdesc many instructive example files. The package requires pdfTeX but +longdesc otherwise only depends on the calc package. +containersize 11828 +containerchecksum 10bb6891b82334f7dad4a1cf48c78b2b55c3b4a8939628a26576e99495f00e2bb8ee82028b13db4de6224e58e421402794feb2591842030cd47898506589ff6d +doccontainersize 2533132 +doccontainerchecksum 6e561e0d513f7b18e4e40d11fc1f077a061e6cb08ed072de1d186bb86ab1fbd3905af6a79f9dbb0c201e437a1a8716706a83f1709d580c293961ae454699c9c0 +docfiles size=819 + RELOC/doc/latex/lapdf/README details="Readme" + RELOC/doc/latex/lapdf/arcs.pdf + RELOC/doc/latex/lapdf/arcs.tex + RELOC/doc/latex/lapdf/bezier.pdf + RELOC/doc/latex/lapdf/bezier.tex + RELOC/doc/latex/lapdf/bezinfo.pdf + RELOC/doc/latex/lapdf/bezinfo.tex + RELOC/doc/latex/lapdf/buttrfly.pdf + RELOC/doc/latex/lapdf/buttrfly.tex + RELOC/doc/latex/lapdf/cfamily.pdf + RELOC/doc/latex/lapdf/cfamily.tex + RELOC/doc/latex/lapdf/chrysant.pdf + RELOC/doc/latex/lapdf/chrysant.tex + RELOC/doc/latex/lapdf/circle.pdf + RELOC/doc/latex/lapdf/circle.tex + RELOC/doc/latex/lapdf/colors.pdf + RELOC/doc/latex/lapdf/colors.tex + RELOC/doc/latex/lapdf/conic.pdf + RELOC/doc/latex/lapdf/conic.tex + RELOC/doc/latex/lapdf/curve.pdf + RELOC/doc/latex/lapdf/curve.tex + RELOC/doc/latex/lapdf/curveto.pdf + RELOC/doc/latex/lapdf/curveto.tex + RELOC/doc/latex/lapdf/cycloid.pdf + RELOC/doc/latex/lapdf/cycloid.tex + RELOC/doc/latex/lapdf/drawing.pdf + RELOC/doc/latex/lapdf/drawing.tex + RELOC/doc/latex/lapdf/ellipse.pdf + RELOC/doc/latex/lapdf/ellipse.tex + RELOC/doc/latex/lapdf/fplot.pdf + RELOC/doc/latex/lapdf/fplot.tex + RELOC/doc/latex/lapdf/geometry.pdf + RELOC/doc/latex/lapdf/geometry.tex + RELOC/doc/latex/lapdf/grids.pdf + RELOC/doc/latex/lapdf/grids.tex + RELOC/doc/latex/lapdf/hippo.pdf + RELOC/doc/latex/lapdf/hippo.tex + RELOC/doc/latex/lapdf/lapdf.pdf details="Package documentation" + RELOC/doc/latex/lapdf/lapdf.tex + RELOC/doc/latex/lapdf/licence.txt + RELOC/doc/latex/lapdf/line.pdf + RELOC/doc/latex/lapdf/line.tex + RELOC/doc/latex/lapdf/polygon.pdf + RELOC/doc/latex/lapdf/polygon.tex + RELOC/doc/latex/lapdf/polynom.pdf + RELOC/doc/latex/lapdf/polynom.tex + RELOC/doc/latex/lapdf/pplot.pdf + RELOC/doc/latex/lapdf/pplot.tex + RELOC/doc/latex/lapdf/preamble.tex + RELOC/doc/latex/lapdf/pythagor.pdf + RELOC/doc/latex/lapdf/pythagor.tex + RELOC/doc/latex/lapdf/qcircle.pdf + RELOC/doc/latex/lapdf/qcircle.tex + RELOC/doc/latex/lapdf/quartic.pdf + RELOC/doc/latex/lapdf/quartic.tex + RELOC/doc/latex/lapdf/rational.pdf + RELOC/doc/latex/lapdf/rational.tex + RELOC/doc/latex/lapdf/rcircle.pdf + RELOC/doc/latex/lapdf/rcircle.tex + RELOC/doc/latex/lapdf/rcurve.pdf + RELOC/doc/latex/lapdf/rcurve.tex + RELOC/doc/latex/lapdf/recttria.pdf + RELOC/doc/latex/lapdf/recttria.tex + RELOC/doc/latex/lapdf/roundtri.pdf + RELOC/doc/latex/lapdf/roundtri.tex + RELOC/doc/latex/lapdf/rparams.pdf + RELOC/doc/latex/lapdf/rparams.tex + RELOC/doc/latex/lapdf/superell.pdf + RELOC/doc/latex/lapdf/superell.tex + RELOC/doc/latex/lapdf/tplot.pdf + RELOC/doc/latex/lapdf/tplot.tex + RELOC/doc/latex/lapdf/trochoid.pdf + RELOC/doc/latex/lapdf/trochoid.tex + RELOC/doc/latex/lapdf/turtle.pdf + RELOC/doc/latex/lapdf/turtle.tex + RELOC/doc/latex/lapdf/vector.pdf + RELOC/doc/latex/lapdf/vector.tex +runfiles size=16 + RELOC/tex/latex/lapdf/lapdf.sty +catalogue-ctan /macros/latex/contrib/lapdf +catalogue-license gpl +catalogue-topics graphics-in-tex +catalogue-version 1.1 + +name lastpackage +category Package +revision 34481 +shortdesc Indicates the last loaded package +relocated 1 +longdesc This package may be used to define the last point where some +longdesc code shall be executed. Its provides a package name for use in +longdesc package-placing commands from the author's templatetools. Usage +longdesc examples are provided in the documentation. +containersize 980 +containerchecksum f4d30e327704b32afe1bcb81023a247095203a9b47357f9a6dc4b631f4bb669255ba899cf1c8378b42ebd16f2608d8a649a0999f26e3d05c963eced1cc955ee2 +doccontainersize 254872 +doccontainerchecksum f31731b5a93c154db123e66699ac5175fb63b965522bb511d344577645f9b8ac6d78c6a1a108cad8914b1c01b1c7a6e656743b075a03322c306aaa5417f62be2 +docfiles size=64 + RELOC/doc/latex/lastpackage/README details="Readme" + RELOC/doc/latex/lastpackage/lastpackage.pdf details="Package documentation" +srccontainersize 2580 +srccontainerchecksum f894a701e4f30797039bf60e98f9f9e6cc730a167fcccf88075802c0a5a0244eefce9f854b95207b7a0714984592030965f818ecd72c98af199c07f3400eb74d +srcfiles size=3 + RELOC/source/latex/lastpackage/lastpackage.dtx + RELOC/source/latex/lastpackage/lastpackage.ins +runfiles size=1 + RELOC/tex/latex/lastpackage/lastpackage.sty +catalogue-ctan /macros/latex/contrib/lastpackage +catalogue-license lppl1.3 +catalogue-topics preamble-admin +catalogue-version 0.1 + +name lastpage +category Package +revision 36680 +shortdesc Reference last page for Page N of M type footers +relocated 1 +longdesc Reference the number of pages in your LaTeX document through +longdesc the introduction of a new label which can be referenced like +longdesc \pageref{LastPage} to give a reference to the last page of a +longdesc document. It is particularly useful in the page footer that +longdesc says: Page N of M. +containersize 3556 +containerchecksum adcd9319022ecf2a5b959ede5d5ce8c5d6a3e7efe1aae5f84abfa7d138162e24a403c6d50604cb6bf8bc80a918837f6d78dee60a452397e7a495cc4d15e52956 +doccontainersize 547124 +doccontainerchecksum 2eb7e8457918e2ed51abf6f48d5f5d93157eff19b8e320a782bc204b44c58a684cdeb2dd3b1c28f5a8de7434b6da9af49ffb2d939ae80875234797149a80c2ab +docfiles size=139 + RELOC/doc/latex/lastpage/README details="Readme" + RELOC/doc/latex/lastpage/lastpage-example.pdf details="Package examples" + RELOC/doc/latex/lastpage/lastpage-example.tex + RELOC/doc/latex/lastpage/lastpage.pdf details="Package documentation" +srccontainersize 19772 +srccontainerchecksum 53b1f86deddefe6f61b270ae18cc705a8ec1360a98a5e5338730aa7cb1653383062cede821dc670c5a9db0064e2989961d2604491bd6a5df9fd90f6e18ba0ae0 +srcfiles size=22 + RELOC/source/latex/lastpage/lastpage.drv + RELOC/source/latex/lastpage/lastpage.dtx + RELOC/source/latex/lastpage/lastpage.ins +runfiles size=4 + RELOC/tex/latex/lastpage/lastpage.sty + RELOC/tex/latex/lastpage/lastpage209.sty +catalogue-also totpages +catalogue-ctan /macros/latex/contrib/lastpage +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.2m + +name latex +category Package +revision 57354 +shortdesc A TeX macro package that defines LaTeX +relocated 1 +longdesc LaTeX is a widely-used macro package for TeX, providing many +longdesc basic document formating commands extended by a wide range of +longdesc packages. It is a development of Leslie Lamport's LaTeX 2.09, +longdesc and superseded the older system in June 1994. The basic +longdesc distribution is catalogued separately, at latex-base; apart +longdesc from a large set of contributed packages and third-party +longdesc documentation (elsewhere on the archive), the distribution +longdesc includes: - a bunch of required packages, which LaTeX authors +longdesc are "entitled to assume" will be present on any system running +longdesc LaTeX; and - a minimal set of documentation detailing +longdesc differences from the 'old' version of LaTeX in the areas of +longdesc user commands, font selection and control, class and package +longdesc writing, font encodings, configuration options and modification +longdesc of LaTeX. For downloading details, see the linked catalogue +longdesc entries above. +depend latex-fonts +depend latexconfig +depend luatex +depend pdftex +containersize 196100 +containerchecksum 3dc7384b2074e86b6c45f5096b7a85a03064b0d9be4e74b46adefbfcc1fe80d66700f38494961a806ccd4710219681e2968fa5c0c071b366b197114af7c798b0 +doccontainersize 22967836 +doccontainerchecksum 13b7a880f89a5cb1ea79fe32f8fcc20679ed30fdba4c27837b29a7c861f52cfabd614622bcdaa7805bd0e8f1abbaeea0336d346d3a8b990e94bddb516e093ce3 +docfiles size=7175 + RELOC/doc/latex/base/README.md + RELOC/doc/latex/base/alltt.pdf + RELOC/doc/latex/base/bugs.txt + RELOC/doc/latex/base/cfgguide.pdf + RELOC/doc/latex/base/cfgguide.tex + RELOC/doc/latex/base/changes.old.txt + RELOC/doc/latex/base/changes.txt + RELOC/doc/latex/base/classes.pdf + RELOC/doc/latex/base/clsguide.pdf + RELOC/doc/latex/base/clsguide.tex + RELOC/doc/latex/base/cmfonts.pdf + RELOC/doc/latex/base/cyrguide.pdf + RELOC/doc/latex/base/cyrguide.tex + RELOC/doc/latex/base/doc.pdf + RELOC/doc/latex/base/docstrip.pdf + RELOC/doc/latex/base/encguide.pdf + RELOC/doc/latex/base/encguide.tex + RELOC/doc/latex/base/exscale.pdf + RELOC/doc/latex/base/fix-cm.pdf + RELOC/doc/latex/base/fntguide.pdf + RELOC/doc/latex/base/fntguide.tex + RELOC/doc/latex/base/graphpap.pdf + RELOC/doc/latex/base/ifthen.pdf + RELOC/doc/latex/base/inputenc.pdf + RELOC/doc/latex/base/latexchanges.pdf + RELOC/doc/latex/base/latexchanges.tex + RELOC/doc/latex/base/latexrelease.pdf + RELOC/doc/latex/base/latexsym.pdf + RELOC/doc/latex/base/lb2.err + RELOC/doc/latex/base/lb2.pdf + RELOC/doc/latex/base/legal.txt + RELOC/doc/latex/base/letter.pdf + RELOC/doc/latex/base/lgc2.err + RELOC/doc/latex/base/lgc2.pdf + RELOC/doc/latex/base/lppl-1-0.txt + RELOC/doc/latex/base/lppl-1-1.txt + RELOC/doc/latex/base/lppl-1-2.txt + RELOC/doc/latex/base/lppl.pdf + RELOC/doc/latex/base/lppl.txt + RELOC/doc/latex/base/ltfilehook-code.pdf + RELOC/doc/latex/base/ltfilehook-code.tex + RELOC/doc/latex/base/ltfilehook-doc.pdf + RELOC/doc/latex/base/ltfilehook-doc.tex + RELOC/doc/latex/base/lthooks-code.pdf + RELOC/doc/latex/base/lthooks-code.tex + RELOC/doc/latex/base/lthooks-doc.pdf + RELOC/doc/latex/base/lthooks-doc.tex + RELOC/doc/latex/base/ltluatex.pdf + RELOC/doc/latex/base/ltnews.pdf + RELOC/doc/latex/base/ltnews.tex + RELOC/doc/latex/base/ltnews01.pdf + RELOC/doc/latex/base/ltnews01.tex + RELOC/doc/latex/base/ltnews02.pdf + RELOC/doc/latex/base/ltnews02.tex + RELOC/doc/latex/base/ltnews03.pdf + RELOC/doc/latex/base/ltnews03.tex + RELOC/doc/latex/base/ltnews04.pdf + RELOC/doc/latex/base/ltnews04.tex + RELOC/doc/latex/base/ltnews05.pdf + RELOC/doc/latex/base/ltnews05.tex + RELOC/doc/latex/base/ltnews06.pdf + RELOC/doc/latex/base/ltnews06.tex + RELOC/doc/latex/base/ltnews07.pdf + RELOC/doc/latex/base/ltnews07.tex + RELOC/doc/latex/base/ltnews08.pdf + RELOC/doc/latex/base/ltnews08.tex + RELOC/doc/latex/base/ltnews09.pdf + RELOC/doc/latex/base/ltnews09.tex + RELOC/doc/latex/base/ltnews10.pdf + RELOC/doc/latex/base/ltnews10.tex + RELOC/doc/latex/base/ltnews11.pdf + RELOC/doc/latex/base/ltnews11.tex + RELOC/doc/latex/base/ltnews12.pdf + RELOC/doc/latex/base/ltnews12.tex + RELOC/doc/latex/base/ltnews13.pdf + RELOC/doc/latex/base/ltnews13.tex + RELOC/doc/latex/base/ltnews14.pdf + RELOC/doc/latex/base/ltnews14.tex + RELOC/doc/latex/base/ltnews15.pdf + RELOC/doc/latex/base/ltnews15.tex + RELOC/doc/latex/base/ltnews16.pdf + RELOC/doc/latex/base/ltnews16.tex + RELOC/doc/latex/base/ltnews17.pdf + RELOC/doc/latex/base/ltnews17.tex + RELOC/doc/latex/base/ltnews18.pdf + RELOC/doc/latex/base/ltnews18.tex + RELOC/doc/latex/base/ltnews19.pdf + RELOC/doc/latex/base/ltnews19.tex + RELOC/doc/latex/base/ltnews20.pdf + RELOC/doc/latex/base/ltnews20.tex + RELOC/doc/latex/base/ltnews21.pdf + RELOC/doc/latex/base/ltnews21.tex + RELOC/doc/latex/base/ltnews22.pdf + RELOC/doc/latex/base/ltnews22.tex + RELOC/doc/latex/base/ltnews23.pdf + RELOC/doc/latex/base/ltnews23.tex + RELOC/doc/latex/base/ltnews24.pdf + RELOC/doc/latex/base/ltnews24.tex + RELOC/doc/latex/base/ltnews25.pdf + RELOC/doc/latex/base/ltnews25.tex + RELOC/doc/latex/base/ltnews26.pdf + RELOC/doc/latex/base/ltnews26.tex + RELOC/doc/latex/base/ltnews27.pdf + RELOC/doc/latex/base/ltnews27.tex + RELOC/doc/latex/base/ltnews28.pdf + RELOC/doc/latex/base/ltnews28.tex + RELOC/doc/latex/base/ltnews29.pdf + RELOC/doc/latex/base/ltnews29.tex + RELOC/doc/latex/base/ltnews30.pdf + RELOC/doc/latex/base/ltnews30.tex + RELOC/doc/latex/base/ltnews31.pdf + RELOC/doc/latex/base/ltnews31.tex + RELOC/doc/latex/base/ltnews32.pdf + RELOC/doc/latex/base/ltnews32.tex + RELOC/doc/latex/base/ltshipout-code.pdf + RELOC/doc/latex/base/ltshipout-code.tex + RELOC/doc/latex/base/ltshipout-doc.pdf + RELOC/doc/latex/base/ltshipout-doc.tex + RELOC/doc/latex/base/ltx3info.pdf + RELOC/doc/latex/base/ltx3info.tex + RELOC/doc/latex/base/ltxdoc.pdf + RELOC/doc/latex/base/makeindx.pdf + RELOC/doc/latex/base/manifest.txt + RELOC/doc/latex/base/manual.err + RELOC/doc/latex/base/manual.pdf + RELOC/doc/latex/base/modguide.pdf + RELOC/doc/latex/base/modguide.tex + RELOC/doc/latex/base/nfssfont.pdf + RELOC/doc/latex/base/proc.pdf + RELOC/doc/latex/base/slides.pdf + RELOC/doc/latex/base/slifonts.pdf + RELOC/doc/latex/base/source2e.pdf + RELOC/doc/latex/base/source2e.tex + RELOC/doc/latex/base/syntonly.pdf + RELOC/doc/latex/base/tex2.txt + RELOC/doc/latex/base/texpert.txt + RELOC/doc/latex/base/tlc2.err + RELOC/doc/latex/base/tlc2.pdf + RELOC/doc/latex/base/tulm.pdf + RELOC/doc/latex/base/usrguide.pdf + RELOC/doc/latex/base/usrguide.tex + RELOC/doc/latex/base/usrguide3.pdf + RELOC/doc/latex/base/usrguide3.tex + RELOC/doc/latex/base/utf8ienc.pdf + RELOC/doc/latex/base/webcomp.err + RELOC/doc/latex/base/webcomp.pdf +srccontainersize 604512 +srccontainerchecksum 39703818293b0deb2b337ac23e8ca6bf55c982b71e5753dbebffbc3627729f6334e60fb44e68d372401dae03bcfa3a3afedc0751dadf3934fa8037365a390f51 +srcfiles size=889 + RELOC/source/latex/base/alltt.dtx + RELOC/source/latex/base/alltt.ins + RELOC/source/latex/base/classes.dtx + RELOC/source/latex/base/classes.ins + RELOC/source/latex/base/cmextra.ins + RELOC/source/latex/base/cmfonts.fdd + RELOC/source/latex/base/cmfonts.ins + RELOC/source/latex/base/doc.dtx + RELOC/source/latex/base/docstrip.dtx + RELOC/source/latex/base/docstrip.ins + RELOC/source/latex/base/ec.ins + RELOC/source/latex/base/exscale.dtx + RELOC/source/latex/base/exscale.ins + RELOC/source/latex/base/fix-cm.dtx + RELOC/source/latex/base/fix-cm.ins + RELOC/source/latex/base/fontdef.dtx + RELOC/source/latex/base/format.ins + RELOC/source/latex/base/graphpap.dtx + RELOC/source/latex/base/graphpap.ins + RELOC/source/latex/base/ifthen.dtx + RELOC/source/latex/base/ifthen.ins + RELOC/source/latex/base/inputenc.dtx + RELOC/source/latex/base/inputenc.ins + RELOC/source/latex/base/latex209.dtx + RELOC/source/latex/base/latex209.ins + RELOC/source/latex/base/latexrelease.dtx + RELOC/source/latex/base/latexrelease.ins + RELOC/source/latex/base/latexsym.dtx + RELOC/source/latex/base/latexsym.ins + RELOC/source/latex/base/letter.dtx + RELOC/source/latex/base/letter.ins + RELOC/source/latex/base/ltalloc.dtx + RELOC/source/latex/base/ltbibl.dtx + RELOC/source/latex/base/ltboxes.dtx + RELOC/source/latex/base/ltclass.dtx + RELOC/source/latex/base/ltcntrl.dtx + RELOC/source/latex/base/ltcounts.dtx + RELOC/source/latex/base/ltdefns.dtx + RELOC/source/latex/base/ltdirchk.dtx + RELOC/source/latex/base/lterror.dtx + RELOC/source/latex/base/ltexpl.dtx + RELOC/source/latex/base/ltfilehook.dtx + RELOC/source/latex/base/ltfiles.dtx + RELOC/source/latex/base/ltfinal.dtx + RELOC/source/latex/base/ltfloat.dtx + RELOC/source/latex/base/ltfntcmd.dtx + RELOC/source/latex/base/ltfssaxes.dtx + RELOC/source/latex/base/ltfssbas.dtx + RELOC/source/latex/base/ltfsscmp.dtx + RELOC/source/latex/base/ltfssdcl.dtx + RELOC/source/latex/base/ltfssini.dtx + RELOC/source/latex/base/ltfsstrc.dtx + RELOC/source/latex/base/lthooks.dtx + RELOC/source/latex/base/lthyphen.dtx + RELOC/source/latex/base/ltidxglo.dtx + RELOC/source/latex/base/ltlength.dtx + RELOC/source/latex/base/ltlists.dtx + RELOC/source/latex/base/ltlogos.dtx + RELOC/source/latex/base/ltluatex.dtx + RELOC/source/latex/base/ltmath.dtx + RELOC/source/latex/base/ltmiscen.dtx + RELOC/source/latex/base/ltoutenc.dtx + RELOC/source/latex/base/ltoutenc.ins + RELOC/source/latex/base/ltoutput.dtx + RELOC/source/latex/base/ltpage.dtx + RELOC/source/latex/base/ltpageno.dtx + RELOC/source/latex/base/ltpar.dtx + RELOC/source/latex/base/ltpictur.dtx + RELOC/source/latex/base/ltplain.dtx + RELOC/source/latex/base/ltsect.dtx + RELOC/source/latex/base/ltshipout.dtx + RELOC/source/latex/base/ltspace.dtx + RELOC/source/latex/base/lttab.dtx + RELOC/source/latex/base/lttextcomp.dtx + RELOC/source/latex/base/ltthm.dtx + RELOC/source/latex/base/ltvers.dtx + RELOC/source/latex/base/ltxdoc.dtx + RELOC/source/latex/base/ltxref.dtx + RELOC/source/latex/base/makeindx.dtx + RELOC/source/latex/base/makeindx.ins + RELOC/source/latex/base/newdc.ins + RELOC/source/latex/base/newlfont.dtx + RELOC/source/latex/base/nfssfont.dtx + RELOC/source/latex/base/nfssfont.ins + RELOC/source/latex/base/olddc.ins + RELOC/source/latex/base/oldlfont.dtx + RELOC/source/latex/base/preload.dtx + RELOC/source/latex/base/proc.dtx + RELOC/source/latex/base/proc.ins + RELOC/source/latex/base/slides.dtx + RELOC/source/latex/base/slides.ins + RELOC/source/latex/base/slifonts.fdd + RELOC/source/latex/base/syntonly.dtx + RELOC/source/latex/base/syntonly.ins + RELOC/source/latex/base/tulm.fdd + RELOC/source/latex/base/tulm.ins + RELOC/source/latex/base/unpack.ins + RELOC/source/latex/base/utf8ienc.dtx +runfiles size=530 + RELOC/makeindex/latex/gglo.ist + RELOC/makeindex/latex/gind.ist + RELOC/tex/latex/base/alltt.sty + RELOC/tex/latex/base/ansinew.def + RELOC/tex/latex/base/applemac.def + RELOC/tex/latex/base/article.cls + RELOC/tex/latex/base/article.sty + RELOC/tex/latex/base/ascii.def + RELOC/tex/latex/base/atbegshi-ltx.sty + RELOC/tex/latex/base/atveryend-ltx.sty + RELOC/tex/latex/base/bezier.sty + RELOC/tex/latex/base/bk10.clo + RELOC/tex/latex/base/bk11.clo + RELOC/tex/latex/base/bk12.clo + RELOC/tex/latex/base/book.cls + RELOC/tex/latex/base/book.sty + RELOC/tex/latex/base/cp1250.def + RELOC/tex/latex/base/cp1252.def + RELOC/tex/latex/base/cp1257.def + RELOC/tex/latex/base/cp437.def + RELOC/tex/latex/base/cp437de.def + RELOC/tex/latex/base/cp850.def + RELOC/tex/latex/base/cp852.def + RELOC/tex/latex/base/cp858.def + RELOC/tex/latex/base/cp865.def + RELOC/tex/latex/base/decmulti.def + RELOC/tex/latex/base/doc.sty + RELOC/tex/latex/base/docstrip.tex + RELOC/tex/latex/base/everyshi-ltx.sty + RELOC/tex/latex/base/exscale.sty + RELOC/tex/latex/base/fix-cm.sty + RELOC/tex/latex/base/fixltx2e.sty + RELOC/tex/latex/base/flafter.sty + RELOC/tex/latex/base/fleqn.clo + RELOC/tex/latex/base/fleqn.sty + RELOC/tex/latex/base/fltrace.sty + RELOC/tex/latex/base/fontenc.sty + RELOC/tex/latex/base/fontmath.cfg + RELOC/tex/latex/base/fontmath.ltx + RELOC/tex/latex/base/fonttext.cfg + RELOC/tex/latex/base/fonttext.ltx + RELOC/tex/latex/base/graphpap.sty + RELOC/tex/latex/base/hyphen.ltx + RELOC/tex/latex/base/idx.tex + RELOC/tex/latex/base/ifthen.sty + RELOC/tex/latex/base/inputenc.sty + RELOC/tex/latex/base/lablst.tex + RELOC/tex/latex/base/latex.ltx + RELOC/tex/latex/base/latex209.def + RELOC/tex/latex/base/latexrelease.sty + RELOC/tex/latex/base/latexsym.sty + RELOC/tex/latex/base/latin1.def + RELOC/tex/latex/base/latin10.def + RELOC/tex/latex/base/latin2.def + RELOC/tex/latex/base/latin3.def + RELOC/tex/latex/base/latin4.def + RELOC/tex/latex/base/latin5.def + RELOC/tex/latex/base/latin9.def + RELOC/tex/latex/base/lcyenc.dfu + RELOC/tex/latex/base/leqno.clo + RELOC/tex/latex/base/leqno.sty + RELOC/tex/latex/base/letter.cls + RELOC/tex/latex/base/letter.sty + RELOC/tex/latex/base/lppl.tex + RELOC/tex/latex/base/ltluatex.lua + RELOC/tex/latex/base/ltluatex.tex + RELOC/tex/latex/base/ltnews.cls + RELOC/tex/latex/base/ltxcheck.tex + RELOC/tex/latex/base/ltxdoc.cls + RELOC/tex/latex/base/ltxguide.cls + RELOC/tex/latex/base/ly1enc.dfu + RELOC/tex/latex/base/macce.def + RELOC/tex/latex/base/makeidx.sty + RELOC/tex/latex/base/minimal.cls + RELOC/tex/latex/base/newlfont.sty + RELOC/tex/latex/base/next.def + RELOC/tex/latex/base/nfssfont.tex + RELOC/tex/latex/base/oldlfont.sty + RELOC/tex/latex/base/omlcmm.fd + RELOC/tex/latex/base/omlcmr.fd + RELOC/tex/latex/base/omlenc.def + RELOC/tex/latex/base/omllcmm.fd + RELOC/tex/latex/base/omscmr.fd + RELOC/tex/latex/base/omscmsy.fd + RELOC/tex/latex/base/omsenc.def + RELOC/tex/latex/base/omsenc.dfu + RELOC/tex/latex/base/omslcmsy.fd + RELOC/tex/latex/base/omxcmex.fd + RELOC/tex/latex/base/omxlcmex.fd + RELOC/tex/latex/base/openbib.sty + RELOC/tex/latex/base/ot1cmdh.fd + RELOC/tex/latex/base/ot1cmfib.fd + RELOC/tex/latex/base/ot1cmfr.fd + RELOC/tex/latex/base/ot1cmr.fd + RELOC/tex/latex/base/ot1cmss.fd + RELOC/tex/latex/base/ot1cmtt.fd + RELOC/tex/latex/base/ot1cmvtt.fd + RELOC/tex/latex/base/ot1enc.def + RELOC/tex/latex/base/ot1enc.dfu + RELOC/tex/latex/base/ot1lcmss.fd + RELOC/tex/latex/base/ot1lcmtt.fd + RELOC/tex/latex/base/ot2enc.dfu + RELOC/tex/latex/base/ot4enc.def + RELOC/tex/latex/base/preload.cfg + RELOC/tex/latex/base/preload.ltx + RELOC/tex/latex/base/proc.cls + RELOC/tex/latex/base/proc.sty + RELOC/tex/latex/base/report.cls + RELOC/tex/latex/base/report.sty + RELOC/tex/latex/base/sample2e.tex + RELOC/tex/latex/base/sfonts.def + RELOC/tex/latex/base/shortvrb.sty + RELOC/tex/latex/base/showidx.sty + RELOC/tex/latex/base/size10.clo + RELOC/tex/latex/base/size11.clo + RELOC/tex/latex/base/size12.clo + RELOC/tex/latex/base/slides.cls + RELOC/tex/latex/base/slides.def + RELOC/tex/latex/base/slides.sty + RELOC/tex/latex/base/small2e.tex + RELOC/tex/latex/base/source2edoc.cls + RELOC/tex/latex/base/structuredlog.sty + RELOC/tex/latex/base/syntonly.sty + RELOC/tex/latex/base/t1cmdh.fd + RELOC/tex/latex/base/t1cmfib.fd + RELOC/tex/latex/base/t1cmfr.fd + RELOC/tex/latex/base/t1cmr.fd + RELOC/tex/latex/base/t1cmss.fd + RELOC/tex/latex/base/t1cmtt.fd + RELOC/tex/latex/base/t1cmvtt.fd + RELOC/tex/latex/base/t1enc.def + RELOC/tex/latex/base/t1enc.dfu + RELOC/tex/latex/base/t1enc.sty + RELOC/tex/latex/base/t1lcmss.fd + RELOC/tex/latex/base/t1lcmtt.fd + RELOC/tex/latex/base/t2aenc.dfu + RELOC/tex/latex/base/t2benc.dfu + RELOC/tex/latex/base/t2cenc.dfu + RELOC/tex/latex/base/testpage.tex + RELOC/tex/latex/base/texsys.cfg + RELOC/tex/latex/base/textcomp-2018-08-11.sty + RELOC/tex/latex/base/textcomp.sty + RELOC/tex/latex/base/tracefnt.sty + RELOC/tex/latex/base/ts1cmr.fd + RELOC/tex/latex/base/ts1cmss.fd + RELOC/tex/latex/base/ts1cmtt.fd + RELOC/tex/latex/base/ts1cmvtt.fd + RELOC/tex/latex/base/ts1enc.def + RELOC/tex/latex/base/ts1enc.dfu + RELOC/tex/latex/base/tuenc.def + RELOC/tex/latex/base/tulmdh.fd + RELOC/tex/latex/base/tulmr.fd + RELOC/tex/latex/base/tulmss.fd + RELOC/tex/latex/base/tulmssq.fd + RELOC/tex/latex/base/tulmtt.fd + RELOC/tex/latex/base/tulmvtt.fd + RELOC/tex/latex/base/ucmr.fd + RELOC/tex/latex/base/ucmss.fd + RELOC/tex/latex/base/ucmtt.fd + RELOC/tex/latex/base/ulasy.fd + RELOC/tex/latex/base/ullasy.fd + RELOC/tex/latex/base/utf8-2018.def + RELOC/tex/latex/base/utf8.def + RELOC/tex/latex/base/utf8enc.dfu + RELOC/tex/latex/base/x2enc.dfu +catalogue-contact-home http://www.latex-project.org/ +catalogue-license lppl1.3c +catalogue-topics format +catalogue-version 2020-10-01-PL4 + +name latex-amsmath-dev +category Package +revision 56791 +shortdesc Development pre-release of the LaTeX amsmath bundle +relocated 1 +longdesc This is a pre-release version of the standard LaTeX amsmath +longdesc bundle. It accompanies the pre-testing kernel code +longdesc (latex-base-dev), and is intended for testing by knowledgeable +longdesc users. +containersize 30636 +containerchecksum 53089df5f54a43f8e6e4835df89824ebbc7ba53d54a96dcb3419be22fb8151337d5b03dec8db095a808135e83de9739f8dd314befb52d3f3340a7f82d8b0d0da +doccontainersize 2351488 +doccontainerchecksum ec111f9ae7c306c4a028ece6edd89b205a47d05d82ad9872235ce189354cdb2415f64a401c150327dd6cbb1b84d0ca495236b733000213f7fc9865a9baceb8df +docfiles size=667 + RELOC/doc/latex-dev/amsmath/README.md details="Readme" + RELOC/doc/latex-dev/amsmath/ams-external.txt + RELOC/doc/latex-dev/amsmath/ams-internal.txt + RELOC/doc/latex-dev/amsmath/amsbsy.pdf + RELOC/doc/latex-dev/amsmath/amscd.pdf + RELOC/doc/latex-dev/amsmath/amsgen.pdf + RELOC/doc/latex-dev/amsmath/amsldoc.pdf details="User guide (English)" language="en" + RELOC/doc/latex-dev/amsmath/amsldoc.tex + RELOC/doc/latex-dev/amsmath/amsmath.pdf + RELOC/doc/latex-dev/amsmath/amsopn.pdf + RELOC/doc/latex-dev/amsmath/amstext.pdf + RELOC/doc/latex-dev/amsmath/amsxtra.pdf + RELOC/doc/latex-dev/amsmath/changes.txt + RELOC/doc/latex-dev/amsmath/diffs-m.txt details="Differences from previous versions" language="en" + RELOC/doc/latex-dev/amsmath/manifest.txt + RELOC/doc/latex-dev/amsmath/subeqn.pdf details="Sub-equation usage" language="en" + RELOC/doc/latex-dev/amsmath/subeqn.tex + RELOC/doc/latex-dev/amsmath/technote.pdf details="Technical details" language="en" + RELOC/doc/latex-dev/amsmath/technote.tex + RELOC/doc/latex-dev/amsmath/testmath.pdf details="Examples paper" language="en" + RELOC/doc/latex-dev/amsmath/testmath.tex +srccontainersize 65376 +srccontainerchecksum 13564f9aa92a5e6577caacd4c912ba7b8ac1da004092dd911bc311818689b9cccdff8c5b9e6ae9fb3cbac4cfb0eca0a008d83603a0e793739f02cf4cecd307cb +srcfiles size=81 + RELOC/source/latex-dev/amsmath/amsbsy.dtx + RELOC/source/latex-dev/amsmath/amsbsy.ins + RELOC/source/latex-dev/amsmath/amscd.dtx + RELOC/source/latex-dev/amsmath/amscd.ins + RELOC/source/latex-dev/amsmath/amsgen.dtx + RELOC/source/latex-dev/amsmath/amsgen.ins + RELOC/source/latex-dev/amsmath/amsmath.dtx + RELOC/source/latex-dev/amsmath/amsmath.ins + RELOC/source/latex-dev/amsmath/amsopn.dtx + RELOC/source/latex-dev/amsmath/amsopn.ins + RELOC/source/latex-dev/amsmath/amstext.dtx + RELOC/source/latex-dev/amsmath/amstext.ins + RELOC/source/latex-dev/amsmath/amsxtra.dtx + RELOC/source/latex-dev/amsmath/amsxtra.ins +runfiles size=70 + RELOC/tex/latex-dev/amsmath/amsbsy.sty + RELOC/tex/latex-dev/amsmath/amscd.sty + RELOC/tex/latex-dev/amsmath/amsgen.sty + RELOC/tex/latex-dev/amsmath/amsmath-2018-12-01.sty + RELOC/tex/latex-dev/amsmath/amsmath.sty + RELOC/tex/latex-dev/amsmath/amsopn.sty + RELOC/tex/latex-dev/amsmath/amstex.sty + RELOC/tex/latex-dev/amsmath/amstext.sty + RELOC/tex/latex-dev/amsmath/amsxtra.sty +catalogue-ctan /macros/latex-dev/required/amsmath +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 2021-05-01 pre-release 0 + +name latex-base-dev +category Package +revision 59080 +shortdesc Development pre-release of the LaTeX kernel +relocated 1 +longdesc This package provides a testing release for upcoming LaTeX2e +longdesc kernel changes. Testing by the LaTeX team itself suggests that +longdesc the code is stable and usable, but wider use by knowledgeable +longdesc users is required by adding these changes to the release LaTeX +longdesc kernel. Typically, the code here will be used by a TeX system +longdesc to create dedicated formats, for example pdflatex-dev, which +longdesc can then be used explicitly for testing. +containersize 215440 +containerchecksum 49b883fe2a4e048c2dbc730ac67c2b9566161ca36d1bce5af87114f8e47df6c6635fe86c2d82e8083af4e93d50e7c1cf16ce4beeb822da38f0a4cbec36ba2a6e +doccontainersize 27216200 +doccontainerchecksum 3bd64f94d9a8c045735ef3d3f04cdd553fa1d60151e01ab6e1736e8e0109ae30681bc90ff33ba8c4d0b9fe52945a36fafb237ae1de6c87a69403769167e150af +docfiles size=8572 + RELOC/doc/latex-dev/base/README.md details="Readme" + RELOC/doc/latex-dev/base/alltt.pdf + RELOC/doc/latex-dev/base/bugs.txt + RELOC/doc/latex-dev/base/cfgguide.pdf details="Configuration guide" + RELOC/doc/latex-dev/base/cfgguide.tex + RELOC/doc/latex-dev/base/changes.old.txt + RELOC/doc/latex-dev/base/changes.txt + RELOC/doc/latex-dev/base/classes.pdf + RELOC/doc/latex-dev/base/clsguide.pdf details="Class and package programming guide" + RELOC/doc/latex-dev/base/clsguide.tex + RELOC/doc/latex-dev/base/cmfonts.pdf + RELOC/doc/latex-dev/base/cyrguide.pdf details="Cyrillic languages guide" + RELOC/doc/latex-dev/base/cyrguide.tex + RELOC/doc/latex-dev/base/doc.pdf + RELOC/doc/latex-dev/base/docstrip.pdf + RELOC/doc/latex-dev/base/encguide.pdf details="Font encoding guide" + RELOC/doc/latex-dev/base/encguide.tex + RELOC/doc/latex-dev/base/exscale.pdf + RELOC/doc/latex-dev/base/fix-cm.pdf + RELOC/doc/latex-dev/base/fntguide.pdf details="Font selection guide" + RELOC/doc/latex-dev/base/fntguide.tex + RELOC/doc/latex-dev/base/graphpap.pdf + RELOC/doc/latex-dev/base/ifthen.pdf + RELOC/doc/latex-dev/base/inputenc.pdf + RELOC/doc/latex-dev/base/latexchanges.pdf details="Details of changes to LaTeX2e" + RELOC/doc/latex-dev/base/latexchanges.tex + RELOC/doc/latex-dev/base/latexrelease.pdf + RELOC/doc/latex-dev/base/latexsym.pdf + RELOC/doc/latex-dev/base/lb2.err + RELOC/doc/latex-dev/base/lb2.pdf + RELOC/doc/latex-dev/base/legal.txt + RELOC/doc/latex-dev/base/letter.pdf + RELOC/doc/latex-dev/base/lgc2.err + RELOC/doc/latex-dev/base/lgc2.pdf + RELOC/doc/latex-dev/base/lppl-1-0.txt + RELOC/doc/latex-dev/base/lppl-1-1.txt + RELOC/doc/latex-dev/base/lppl-1-2.txt + RELOC/doc/latex-dev/base/lppl.pdf + RELOC/doc/latex-dev/base/lppl.txt + RELOC/doc/latex-dev/base/ltcmdhooks-code.pdf + RELOC/doc/latex-dev/base/ltcmdhooks-code.tex + RELOC/doc/latex-dev/base/ltcmdhooks-doc.pdf + RELOC/doc/latex-dev/base/ltcmdhooks-doc.tex + RELOC/doc/latex-dev/base/ltfilehook-code.pdf + RELOC/doc/latex-dev/base/ltfilehook-code.tex + RELOC/doc/latex-dev/base/ltfilehook-doc.pdf + RELOC/doc/latex-dev/base/ltfilehook-doc.tex + RELOC/doc/latex-dev/base/lthooks-code.pdf + RELOC/doc/latex-dev/base/lthooks-code.tex + RELOC/doc/latex-dev/base/lthooks-doc.pdf + RELOC/doc/latex-dev/base/lthooks-doc.tex + RELOC/doc/latex-dev/base/ltluatex.pdf + RELOC/doc/latex-dev/base/ltnews.pdf details="Complete LaTeX2e news" + RELOC/doc/latex-dev/base/ltnews.tex + RELOC/doc/latex-dev/base/ltnews01.pdf + RELOC/doc/latex-dev/base/ltnews01.tex + RELOC/doc/latex-dev/base/ltnews02.pdf + RELOC/doc/latex-dev/base/ltnews02.tex + RELOC/doc/latex-dev/base/ltnews03.pdf + RELOC/doc/latex-dev/base/ltnews03.tex + RELOC/doc/latex-dev/base/ltnews04.pdf + RELOC/doc/latex-dev/base/ltnews04.tex + RELOC/doc/latex-dev/base/ltnews05.pdf + RELOC/doc/latex-dev/base/ltnews05.tex + RELOC/doc/latex-dev/base/ltnews06.pdf + RELOC/doc/latex-dev/base/ltnews06.tex + RELOC/doc/latex-dev/base/ltnews07.pdf + RELOC/doc/latex-dev/base/ltnews07.tex + RELOC/doc/latex-dev/base/ltnews08.pdf + RELOC/doc/latex-dev/base/ltnews08.tex + RELOC/doc/latex-dev/base/ltnews09.pdf + RELOC/doc/latex-dev/base/ltnews09.tex + RELOC/doc/latex-dev/base/ltnews10.pdf + RELOC/doc/latex-dev/base/ltnews10.tex + RELOC/doc/latex-dev/base/ltnews11.pdf + RELOC/doc/latex-dev/base/ltnews11.tex + RELOC/doc/latex-dev/base/ltnews12.pdf + RELOC/doc/latex-dev/base/ltnews12.tex + RELOC/doc/latex-dev/base/ltnews13.pdf + RELOC/doc/latex-dev/base/ltnews13.tex + RELOC/doc/latex-dev/base/ltnews14.pdf + RELOC/doc/latex-dev/base/ltnews14.tex + RELOC/doc/latex-dev/base/ltnews15.pdf + RELOC/doc/latex-dev/base/ltnews15.tex + RELOC/doc/latex-dev/base/ltnews16.pdf + RELOC/doc/latex-dev/base/ltnews16.tex + RELOC/doc/latex-dev/base/ltnews17.pdf + RELOC/doc/latex-dev/base/ltnews17.tex + RELOC/doc/latex-dev/base/ltnews18.pdf + RELOC/doc/latex-dev/base/ltnews18.tex + RELOC/doc/latex-dev/base/ltnews19.pdf + RELOC/doc/latex-dev/base/ltnews19.tex + RELOC/doc/latex-dev/base/ltnews20.pdf + RELOC/doc/latex-dev/base/ltnews20.tex + RELOC/doc/latex-dev/base/ltnews21.pdf + RELOC/doc/latex-dev/base/ltnews21.tex + RELOC/doc/latex-dev/base/ltnews22.pdf + RELOC/doc/latex-dev/base/ltnews22.tex + RELOC/doc/latex-dev/base/ltnews23.pdf + RELOC/doc/latex-dev/base/ltnews23.tex + RELOC/doc/latex-dev/base/ltnews24.pdf + RELOC/doc/latex-dev/base/ltnews24.tex + RELOC/doc/latex-dev/base/ltnews25.pdf + RELOC/doc/latex-dev/base/ltnews25.tex + RELOC/doc/latex-dev/base/ltnews26.pdf + RELOC/doc/latex-dev/base/ltnews26.tex + RELOC/doc/latex-dev/base/ltnews27.pdf + RELOC/doc/latex-dev/base/ltnews27.tex + RELOC/doc/latex-dev/base/ltnews28.pdf + RELOC/doc/latex-dev/base/ltnews28.tex + RELOC/doc/latex-dev/base/ltnews29.pdf + RELOC/doc/latex-dev/base/ltnews29.tex + RELOC/doc/latex-dev/base/ltnews30.pdf + RELOC/doc/latex-dev/base/ltnews30.tex + RELOC/doc/latex-dev/base/ltnews31.pdf + RELOC/doc/latex-dev/base/ltnews31.tex + RELOC/doc/latex-dev/base/ltnews32.pdf + RELOC/doc/latex-dev/base/ltnews32.tex + RELOC/doc/latex-dev/base/ltnews33.pdf + RELOC/doc/latex-dev/base/ltnews33.tex + RELOC/doc/latex-dev/base/ltpara-code.pdf + RELOC/doc/latex-dev/base/ltpara-code.tex + RELOC/doc/latex-dev/base/ltpara-doc.pdf + RELOC/doc/latex-dev/base/ltpara-doc.tex + RELOC/doc/latex-dev/base/ltshipout-code.pdf + RELOC/doc/latex-dev/base/ltshipout-code.tex + RELOC/doc/latex-dev/base/ltshipout-doc.pdf + RELOC/doc/latex-dev/base/ltshipout-doc.tex + RELOC/doc/latex-dev/base/ltx3info.pdf + RELOC/doc/latex-dev/base/ltx3info.tex + RELOC/doc/latex-dev/base/ltxdoc.pdf + RELOC/doc/latex-dev/base/makeindx.pdf + RELOC/doc/latex-dev/base/manifest.txt + RELOC/doc/latex-dev/base/manual.err + RELOC/doc/latex-dev/base/manual.pdf + RELOC/doc/latex-dev/base/modguide.pdf details="Modification guide" + RELOC/doc/latex-dev/base/modguide.tex + RELOC/doc/latex-dev/base/nfssfont.pdf + RELOC/doc/latex-dev/base/proc.pdf + RELOC/doc/latex-dev/base/slides.pdf + RELOC/doc/latex-dev/base/slifonts.pdf + RELOC/doc/latex-dev/base/source2e.pdf + RELOC/doc/latex-dev/base/source2e.tex + RELOC/doc/latex-dev/base/syntonly.pdf + RELOC/doc/latex-dev/base/tex2.txt + RELOC/doc/latex-dev/base/texpert.txt + RELOC/doc/latex-dev/base/tlc2.err + RELOC/doc/latex-dev/base/tlc2.pdf + RELOC/doc/latex-dev/base/tulm.pdf + RELOC/doc/latex-dev/base/usrguide.pdf details="User guide to LaTeX 2e" + RELOC/doc/latex-dev/base/usrguide.tex + RELOC/doc/latex-dev/base/usrguide3.pdf details="LaTeX3 methods for document authors" + RELOC/doc/latex-dev/base/usrguide3.tex + RELOC/doc/latex-dev/base/utf8ienc.pdf + RELOC/doc/latex-dev/base/webcomp.err + RELOC/doc/latex-dev/base/webcomp.pdf +srccontainersize 665048 +srccontainerchecksum 89387b87aa7116f8bc04116b20dd487855bc63859db0b886694b7abe42e0a7540b92ff0fca8fc5a1a409513fec1120ebd7800247949d05421920996853bb1b3f +srcfiles size=974 + RELOC/source/latex-dev/base/alltt.dtx + RELOC/source/latex-dev/base/alltt.ins + RELOC/source/latex-dev/base/classes.dtx + RELOC/source/latex-dev/base/classes.ins + RELOC/source/latex-dev/base/cmextra.ins + RELOC/source/latex-dev/base/cmfonts.fdd + RELOC/source/latex-dev/base/cmfonts.ins + RELOC/source/latex-dev/base/doc.dtx + RELOC/source/latex-dev/base/docstrip.dtx + RELOC/source/latex-dev/base/docstrip.ins + RELOC/source/latex-dev/base/ec.ins + RELOC/source/latex-dev/base/exscale.dtx + RELOC/source/latex-dev/base/exscale.ins + RELOC/source/latex-dev/base/fix-cm.dtx + RELOC/source/latex-dev/base/fix-cm.ins + RELOC/source/latex-dev/base/fontdef.dtx + RELOC/source/latex-dev/base/format.ins + RELOC/source/latex-dev/base/graphpap.dtx + RELOC/source/latex-dev/base/graphpap.ins + RELOC/source/latex-dev/base/ifthen.dtx + RELOC/source/latex-dev/base/ifthen.ins + RELOC/source/latex-dev/base/inputenc.dtx + RELOC/source/latex-dev/base/inputenc.ins + RELOC/source/latex-dev/base/latex209.dtx + RELOC/source/latex-dev/base/latex209.ins + RELOC/source/latex-dev/base/latexrelease.dtx + RELOC/source/latex-dev/base/latexrelease.ins + RELOC/source/latex-dev/base/latexsym.dtx + RELOC/source/latex-dev/base/latexsym.ins + RELOC/source/latex-dev/base/letter.dtx + RELOC/source/latex-dev/base/letter.ins + RELOC/source/latex-dev/base/ltalloc.dtx + RELOC/source/latex-dev/base/ltbibl.dtx + RELOC/source/latex-dev/base/ltboxes.dtx + RELOC/source/latex-dev/base/ltclass.dtx + RELOC/source/latex-dev/base/ltcmd.dtx + RELOC/source/latex-dev/base/ltcmdhooks.dtx + RELOC/source/latex-dev/base/ltcntrl.dtx + RELOC/source/latex-dev/base/ltcounts.dtx + RELOC/source/latex-dev/base/ltdefns.dtx + RELOC/source/latex-dev/base/ltdirchk.dtx + RELOC/source/latex-dev/base/lterror.dtx + RELOC/source/latex-dev/base/ltexpl.dtx + RELOC/source/latex-dev/base/ltfilehook.dtx + RELOC/source/latex-dev/base/ltfiles.dtx + RELOC/source/latex-dev/base/ltfinal.dtx + RELOC/source/latex-dev/base/ltfloat.dtx + RELOC/source/latex-dev/base/ltfntcmd.dtx + RELOC/source/latex-dev/base/ltfssaxes.dtx + RELOC/source/latex-dev/base/ltfssbas.dtx + RELOC/source/latex-dev/base/ltfsscmp.dtx + RELOC/source/latex-dev/base/ltfssdcl.dtx + RELOC/source/latex-dev/base/ltfssini.dtx + RELOC/source/latex-dev/base/ltfsstrc.dtx + RELOC/source/latex-dev/base/lthooks.dtx + RELOC/source/latex-dev/base/lthyphen.dtx + RELOC/source/latex-dev/base/ltidxglo.dtx + RELOC/source/latex-dev/base/ltlength.dtx + RELOC/source/latex-dev/base/ltlists.dtx + RELOC/source/latex-dev/base/ltlogos.dtx + RELOC/source/latex-dev/base/ltluatex.dtx + RELOC/source/latex-dev/base/ltmath.dtx + RELOC/source/latex-dev/base/ltmiscen.dtx + RELOC/source/latex-dev/base/ltoutenc.dtx + RELOC/source/latex-dev/base/ltoutenc.ins + RELOC/source/latex-dev/base/ltoutput.dtx + RELOC/source/latex-dev/base/ltpage.dtx + RELOC/source/latex-dev/base/ltpageno.dtx + RELOC/source/latex-dev/base/ltpar.dtx + RELOC/source/latex-dev/base/ltpara.dtx + RELOC/source/latex-dev/base/ltpictur.dtx + RELOC/source/latex-dev/base/ltplain.dtx + RELOC/source/latex-dev/base/ltsect.dtx + RELOC/source/latex-dev/base/ltshipout.dtx + RELOC/source/latex-dev/base/ltspace.dtx + RELOC/source/latex-dev/base/lttab.dtx + RELOC/source/latex-dev/base/lttextcomp.dtx + RELOC/source/latex-dev/base/ltthm.dtx + RELOC/source/latex-dev/base/ltvers.dtx + RELOC/source/latex-dev/base/ltxdoc.dtx + RELOC/source/latex-dev/base/ltxref.dtx + RELOC/source/latex-dev/base/makeindx.dtx + RELOC/source/latex-dev/base/makeindx.ins + RELOC/source/latex-dev/base/newdc.ins + RELOC/source/latex-dev/base/newlfont.dtx + RELOC/source/latex-dev/base/nfssfont.dtx + RELOC/source/latex-dev/base/nfssfont.ins + RELOC/source/latex-dev/base/olddc.ins + RELOC/source/latex-dev/base/oldlfont.dtx + RELOC/source/latex-dev/base/preload.dtx + RELOC/source/latex-dev/base/proc.dtx + RELOC/source/latex-dev/base/proc.ins + RELOC/source/latex-dev/base/slides.dtx + RELOC/source/latex-dev/base/slides.ins + RELOC/source/latex-dev/base/slifonts.fdd + RELOC/source/latex-dev/base/syntonly.dtx + RELOC/source/latex-dev/base/syntonly.ins + RELOC/source/latex-dev/base/tulm.fdd + RELOC/source/latex-dev/base/tulm.ins + RELOC/source/latex-dev/base/unpack.ins + RELOC/source/latex-dev/base/utf8ienc.dtx +runfiles size=598 + RELOC/tex/latex-dev/base/alltt.sty + RELOC/tex/latex-dev/base/ansinew.def + RELOC/tex/latex-dev/base/applemac.def + RELOC/tex/latex-dev/base/article.cls + RELOC/tex/latex-dev/base/article.sty + RELOC/tex/latex-dev/base/ascii.def + RELOC/tex/latex-dev/base/atbegshi-ltx.sty + RELOC/tex/latex-dev/base/atveryend-ltx.sty + RELOC/tex/latex-dev/base/bezier.sty + RELOC/tex/latex-dev/base/bk10.clo + RELOC/tex/latex-dev/base/bk11.clo + RELOC/tex/latex-dev/base/bk12.clo + RELOC/tex/latex-dev/base/book.cls + RELOC/tex/latex-dev/base/book.sty + RELOC/tex/latex-dev/base/cp1250.def + RELOC/tex/latex-dev/base/cp1252.def + RELOC/tex/latex-dev/base/cp1257.def + RELOC/tex/latex-dev/base/cp437.def + RELOC/tex/latex-dev/base/cp437de.def + RELOC/tex/latex-dev/base/cp850.def + RELOC/tex/latex-dev/base/cp852.def + RELOC/tex/latex-dev/base/cp858.def + RELOC/tex/latex-dev/base/cp865.def + RELOC/tex/latex-dev/base/decmulti.def + RELOC/tex/latex-dev/base/doc-v3beta.sty + RELOC/tex/latex-dev/base/doc.sty + RELOC/tex/latex-dev/base/docstrip.tex + RELOC/tex/latex-dev/base/exscale.sty + RELOC/tex/latex-dev/base/fix-cm.sty + RELOC/tex/latex-dev/base/fixltx2e.sty + RELOC/tex/latex-dev/base/flafter.sty + RELOC/tex/latex-dev/base/fleqn.clo + RELOC/tex/latex-dev/base/fleqn.sty + RELOC/tex/latex-dev/base/fltrace.sty + RELOC/tex/latex-dev/base/fontenc.sty + RELOC/tex/latex-dev/base/fontmath.cfg + RELOC/tex/latex-dev/base/fontmath.ltx + RELOC/tex/latex-dev/base/fonttext.cfg + RELOC/tex/latex-dev/base/fonttext.ltx + RELOC/tex/latex-dev/base/graphpap.sty + RELOC/tex/latex-dev/base/hyphen.ltx + RELOC/tex/latex-dev/base/idx.tex + RELOC/tex/latex-dev/base/ifthen.sty + RELOC/tex/latex-dev/base/inputenc.sty + RELOC/tex/latex-dev/base/lablst.tex + RELOC/tex/latex-dev/base/latex.ltx + RELOC/tex/latex-dev/base/latex209.def + RELOC/tex/latex-dev/base/latexrelease.sty + RELOC/tex/latex-dev/base/latexsym.sty + RELOC/tex/latex-dev/base/latin1.def + RELOC/tex/latex-dev/base/latin10.def + RELOC/tex/latex-dev/base/latin2.def + RELOC/tex/latex-dev/base/latin3.def + RELOC/tex/latex-dev/base/latin4.def + RELOC/tex/latex-dev/base/latin5.def + RELOC/tex/latex-dev/base/latin9.def + RELOC/tex/latex-dev/base/lcyenc.dfu + RELOC/tex/latex-dev/base/leqno.clo + RELOC/tex/latex-dev/base/leqno.sty + RELOC/tex/latex-dev/base/letter.cls + RELOC/tex/latex-dev/base/letter.sty + RELOC/tex/latex-dev/base/lppl.tex + RELOC/tex/latex-dev/base/ltluatex.lua + RELOC/tex/latex-dev/base/ltluatex.tex + RELOC/tex/latex-dev/base/ltnews.cls + RELOC/tex/latex-dev/base/ltxcheck.tex + RELOC/tex/latex-dev/base/ltxdoc.cls + RELOC/tex/latex-dev/base/ltxguide.cls + RELOC/tex/latex-dev/base/ly1enc.dfu + RELOC/tex/latex-dev/base/macce.def + RELOC/tex/latex-dev/base/makeidx.sty + RELOC/tex/latex-dev/base/minimal.cls + RELOC/tex/latex-dev/base/newlfont.sty + RELOC/tex/latex-dev/base/next.def + RELOC/tex/latex-dev/base/nfssfont.tex + RELOC/tex/latex-dev/base/oldlfont.sty + RELOC/tex/latex-dev/base/omlcmm.fd + RELOC/tex/latex-dev/base/omlcmr.fd + RELOC/tex/latex-dev/base/omlenc.def + RELOC/tex/latex-dev/base/omllcmm.fd + RELOC/tex/latex-dev/base/omscmr.fd + RELOC/tex/latex-dev/base/omscmsy.fd + RELOC/tex/latex-dev/base/omsenc.def + RELOC/tex/latex-dev/base/omsenc.dfu + RELOC/tex/latex-dev/base/omslcmsy.fd + RELOC/tex/latex-dev/base/omxcmex.fd + RELOC/tex/latex-dev/base/omxlcmex.fd + RELOC/tex/latex-dev/base/openbib.sty + RELOC/tex/latex-dev/base/ot1cmdh.fd + RELOC/tex/latex-dev/base/ot1cmfib.fd + RELOC/tex/latex-dev/base/ot1cmfr.fd + RELOC/tex/latex-dev/base/ot1cmr.fd + RELOC/tex/latex-dev/base/ot1cmss.fd + RELOC/tex/latex-dev/base/ot1cmtt.fd + RELOC/tex/latex-dev/base/ot1cmvtt.fd + RELOC/tex/latex-dev/base/ot1enc.def + RELOC/tex/latex-dev/base/ot1enc.dfu + RELOC/tex/latex-dev/base/ot1lcmss.fd + RELOC/tex/latex-dev/base/ot1lcmtt.fd + RELOC/tex/latex-dev/base/ot2enc.dfu + RELOC/tex/latex-dev/base/ot4enc.def + RELOC/tex/latex-dev/base/preload.cfg + RELOC/tex/latex-dev/base/preload.ltx + RELOC/tex/latex-dev/base/proc.cls + RELOC/tex/latex-dev/base/proc.sty + RELOC/tex/latex-dev/base/report.cls + RELOC/tex/latex-dev/base/report.sty + RELOC/tex/latex-dev/base/sample2e.tex + RELOC/tex/latex-dev/base/sfonts.def + RELOC/tex/latex-dev/base/shortvrb.sty + RELOC/tex/latex-dev/base/showidx.sty + RELOC/tex/latex-dev/base/size10.clo + RELOC/tex/latex-dev/base/size11.clo + RELOC/tex/latex-dev/base/size12.clo + RELOC/tex/latex-dev/base/slides.cls + RELOC/tex/latex-dev/base/slides.def + RELOC/tex/latex-dev/base/slides.sty + RELOC/tex/latex-dev/base/small2e.tex + RELOC/tex/latex-dev/base/source2edoc.cls + RELOC/tex/latex-dev/base/structuredlog.sty + RELOC/tex/latex-dev/base/syntonly.sty + RELOC/tex/latex-dev/base/t1cmdh.fd + RELOC/tex/latex-dev/base/t1cmfib.fd + RELOC/tex/latex-dev/base/t1cmfr.fd + RELOC/tex/latex-dev/base/t1cmr.fd + RELOC/tex/latex-dev/base/t1cmss.fd + RELOC/tex/latex-dev/base/t1cmtt.fd + RELOC/tex/latex-dev/base/t1cmvtt.fd + RELOC/tex/latex-dev/base/t1enc.def + RELOC/tex/latex-dev/base/t1enc.dfu + RELOC/tex/latex-dev/base/t1enc.sty + RELOC/tex/latex-dev/base/t1lcmss.fd + RELOC/tex/latex-dev/base/t1lcmtt.fd + RELOC/tex/latex-dev/base/t2aenc.dfu + RELOC/tex/latex-dev/base/t2benc.dfu + RELOC/tex/latex-dev/base/t2cenc.dfu + RELOC/tex/latex-dev/base/testpage.tex + RELOC/tex/latex-dev/base/texsys.cfg + RELOC/tex/latex-dev/base/textcomp-2018-08-11.sty + RELOC/tex/latex-dev/base/textcomp.sty + RELOC/tex/latex-dev/base/tracefnt.sty + RELOC/tex/latex-dev/base/ts1cmr.fd + RELOC/tex/latex-dev/base/ts1cmss.fd + RELOC/tex/latex-dev/base/ts1cmtt.fd + RELOC/tex/latex-dev/base/ts1cmvtt.fd + RELOC/tex/latex-dev/base/ts1enc.def + RELOC/tex/latex-dev/base/ts1enc.dfu + RELOC/tex/latex-dev/base/tuenc.def + RELOC/tex/latex-dev/base/tulmdh.fd + RELOC/tex/latex-dev/base/tulmr.fd + RELOC/tex/latex-dev/base/tulmss.fd + RELOC/tex/latex-dev/base/tulmssq.fd + RELOC/tex/latex-dev/base/tulmtt.fd + RELOC/tex/latex-dev/base/tulmvtt.fd + RELOC/tex/latex-dev/base/ucmr.fd + RELOC/tex/latex-dev/base/ucmss.fd + RELOC/tex/latex-dev/base/ucmtt.fd + RELOC/tex/latex-dev/base/ulasy.fd + RELOC/tex/latex-dev/base/ullasy.fd + RELOC/tex/latex-dev/base/utf8-2018.def + RELOC/tex/latex-dev/base/utf8.def + RELOC/tex/latex-dev/base/utf8enc.dfu + RELOC/tex/latex-dev/base/x2enc.dfu +catalogue-also latex-base +catalogue-ctan /macros/latex-dev/base +catalogue-license lppl1.3c +catalogue-topics format class +catalogue-version 2021-06-01 pre-release 3 + +name latex-bin +category TLCore +revision 57972 +shortdesc LaTeX executables and man pages +depend atbegshi +depend atveryend +depend babel +depend cm +depend dehyph +depend everyshi +depend firstaid +depend graphics +depend hyph-utf8 +depend hyphen-base +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-bin.ARCH +depend latex-fonts +depend latexconfig +depend lm +depend luahbtex +depend luaotfload +depend luatex +depend pdftex +depend tex-ini-files +depend unicode-data +execute AddFormat name=dvilualatex engine=luatex patterns=language.dat,language.dat.lua options="dvilualatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex,lm,luaotfload +execute AddFormat name=latex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *latex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex,dehyph,hyph-utf8,latexconfig +execute AddFormat name=lualatex engine=luahbtex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex,lm,luaotfload +execute AddFormat name=pdflatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex,dehyph,hyph-utf8,latexconfig +containersize 616 +containerchecksum b349e8fad2765c4a87b471532dcfafedc0a9711237c6e967011727da7bad3a5ed27a89eca81af324aa84958872d0b78c68e6d9490fced44eb7636b2fbf36611f +doccontainersize 53816 +doccontainerchecksum 7cfb465f4db5089e7fa41762a0437f5f51445efdb9aba5d676dc5933e0fbcfbe0fda31baf83e20f2d16e6a7a0019c71752af8744d02ad12636adb9afb8cb3041 +docfiles size=32 + texmf-dist/doc/man/man1/dvilualatex.1 + texmf-dist/doc/man/man1/dvilualatex.man1.pdf + texmf-dist/doc/man/man1/latex.1 + texmf-dist/doc/man/man1/latex.man1.pdf + texmf-dist/doc/man/man1/lualatex.1 + texmf-dist/doc/man/man1/lualatex.man1.pdf + texmf-dist/doc/man/man1/pdflatex.1 + texmf-dist/doc/man/man1/pdflatex.man1.pdf + +name latex-bin-dev +category TLCore +revision 59005 +shortdesc LaTeX pre-release executables and formats +longdesc See the latex-base-dev package for information. +depend atbegshi +depend atveryend +depend babel +depend cm +depend dehyph +depend everyshi +depend firstaid +depend hyph-utf8 +depend hyphen-base +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-base-dev +depend latex-bin-dev.ARCH +depend latex-firstaid-dev +depend latex-fonts +depend latex-graphics-dev +depend latexconfig +depend lm +depend luahbtex +depend luaotfload +depend luatex +depend pdftex +depend tex-ini-files +depend unicode-data +execute AddFormat name=dvilualatex-dev engine=luatex patterns=language.dat,language.dat.lua options="dvilualatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,lm,luaotfload +execute AddFormat name=latex-dev engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *latex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,dehyph,hyph-utf8,latexconfig,pdftex +execute AddFormat name=lualatex-dev engine=luahbtex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,lm,luaotfload +execute AddFormat name=pdflatex-dev engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,dehyph,hyph-utf8,latexconfig,pdftex +containersize 676 +containerchecksum 5d44e0274f584509e2d600f0c27f6bb395d5c9a9d18cef9df67199a8ebb30b00d32a6a944ad7e195a47ac7bd87e0bd2d8f116cd513678a0cdf2a7d45db8c065a +doccontainersize 13972 +doccontainerchecksum f7ac33d09631c9054f8ccb0ffd91a6ab83bedfee96a299ec5727be9ffeae226d2844a08633cf19e5ed45a17fce9c15707e02aeb53778d06281aba0b612c90a60 +docfiles size=35 + texmf-dist/doc/man/man1/dvilualatex-dev.1 + texmf-dist/doc/man/man1/dvilualatex-dev.man1.pdf + texmf-dist/doc/man/man1/latex-dev.1 + texmf-dist/doc/man/man1/latex-dev.man1.pdf + texmf-dist/doc/man/man1/lualatex-dev.1 + texmf-dist/doc/man/man1/lualatex-dev.man1.pdf + texmf-dist/doc/man/man1/pdflatex-dev.1 + texmf-dist/doc/man/man1/pdflatex-dev.man1.pdf + texmf-dist/doc/man/man1/platex-dev.1 + texmf-dist/doc/man/man1/platex-dev.man1.pdf + texmf-dist/doc/man/man1/uplatex-dev.1 + texmf-dist/doc/man/man1/uplatex-dev.man1.pdf + texmf-dist/doc/man/man1/xelatex-dev.1 + texmf-dist/doc/man/man1/xelatex-dev.man1.pdf + +name latex-bin-dev.aarch64-linux +category TLCore +revision 53999 +shortdesc aarch64-linux files of latex-bin-dev +containersize 384 +containerchecksum 27a7356c08bbb8ab91aaedc9d3cd72b3625dba5dcdf6c4a4df09b23e3d83bd9b0140a289af8bedb80cf7749cafa52e7d07c2f82c47261be86f7af97522e316b6 +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/dvilualatex-dev + bin/aarch64-linux/latex-dev + bin/aarch64-linux/lualatex-dev + bin/aarch64-linux/pdflatex-dev + +name latex-bin-dev.amd64-freebsd +category TLCore +revision 53999 +shortdesc amd64-freebsd files of latex-bin-dev +containersize 392 +containerchecksum f830bc5bdafc1e5a044591f5877ed15e6e7c8c6f89de7d673d7c28960531a189a4365d23b7df1e3a1406e49b818acace2bcba6c25c88e270a5254267220c96dc +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/dvilualatex-dev + bin/amd64-freebsd/latex-dev + bin/amd64-freebsd/lualatex-dev + bin/amd64-freebsd/pdflatex-dev + +name latex-bin-dev.amd64-netbsd +category TLCore +revision 54003 +shortdesc amd64-netbsd files of latex-bin-dev +containersize 388 +containerchecksum ab94d1c8f30524fb947b06298ce5c06ca78df624ba5fb1b8c3000ed94a04a1d85aa38632612748f1a4b790b778163a8501cb6a88d14a82735855c440bac7ba6c +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/dvilualatex-dev + bin/amd64-netbsd/latex-dev + bin/amd64-netbsd/lualatex-dev + bin/amd64-netbsd/pdflatex-dev + +name latex-bin-dev.armhf-linux +category TLCore +revision 54033 +shortdesc armhf-linux files of latex-bin-dev +containersize 384 +containerchecksum cd1bacf193ca6913c55bcf642104ccd9112a13b8d39d814c194f1f09055d226c8fe98f7bc88f961ec5202ba2c250f86f2722cf80402898defd889f21bd787132 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/dvilualatex-dev + bin/armhf-linux/latex-dev + bin/armhf-linux/lualatex-dev + bin/armhf-linux/pdflatex-dev + +name latex-bin-dev.i386-cygwin +category TLCore +revision 54026 +shortdesc i386-cygwin files of latex-bin-dev +containersize 384 +containerchecksum 9139e2af25a4f2ca990db07bd4fe7066bf887f8fa4df2d4a7eabf62b7796316bdc64c3c5097454b286a3ee7e3752a38c483192aa79152008d988578206c2368e +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/dvilualatex-dev + bin/i386-cygwin/latex-dev + bin/i386-cygwin/lualatex-dev + bin/i386-cygwin/pdflatex-dev + +name latex-bin-dev.i386-freebsd +category TLCore +revision 53999 +shortdesc i386-freebsd files of latex-bin-dev +containersize 392 +containerchecksum efa3f2484b8f71c6a3a9ec73b2dede47bab751239fa853e3f583d9b2cbaee42aa879fc5a30ca4a985e0940357ebbb3d98d18bac8fd66dc40240791c634291506 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/dvilualatex-dev + bin/i386-freebsd/latex-dev + bin/i386-freebsd/lualatex-dev + bin/i386-freebsd/pdflatex-dev + +name latex-bin-dev.i386-linux +category TLCore +revision 53999 +shortdesc i386-linux files of latex-bin-dev +containersize 388 +containerchecksum 647a3dce919dfdf0369fb86d33582fcff4f93bcde2ea9660b1ac98b3ec3466dfeb6b7252550bffa9fa01edeb51275dee71ea5de0b5581630cc8781b67d08e4f8 +binfiles arch=i386-linux size=4 + bin/i386-linux/dvilualatex-dev + bin/i386-linux/latex-dev + bin/i386-linux/lualatex-dev + bin/i386-linux/pdflatex-dev + +name latex-bin-dev.i386-netbsd +category TLCore +revision 54104 +shortdesc i386-netbsd files of latex-bin-dev +containersize 384 +containerchecksum c28a1454d82507cb28f1046549a14008ed80fd29edd20992858edb7331438257f5fff147fca408a7241f80a40ed2f365e6da551f83142b5899af4f9bf4357cfc +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/dvilualatex-dev + bin/i386-netbsd/latex-dev + bin/i386-netbsd/lualatex-dev + bin/i386-netbsd/pdflatex-dev + +name latex-bin-dev.i386-solaris +category TLCore +revision 53999 +shortdesc i386-solaris files of latex-bin-dev +containersize 388 +containerchecksum 4bf03ac150072e988c0b7e682e74adf5708ccb3329597c1ae4656125c1f2cd8b0d033d341e968526a99e2a2d4c31b734c30e0a60ee6dea9ecd723bdb8396ea39 +binfiles arch=i386-solaris size=4 + bin/i386-solaris/dvilualatex-dev + bin/i386-solaris/latex-dev + bin/i386-solaris/lualatex-dev + bin/i386-solaris/pdflatex-dev + +name latex-bin-dev.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of latex-bin-dev +containersize 384 +containerchecksum 48d3e601a842f4582ba8a13efd1446345fbe705e5814e3562126c2316ffdda6680c368c08d9d6818588667b9f87729ae0e4caf4588b51d3dfb451214fe142f01 +binfiles arch=universal-darwin size=4 + bin/universal-darwin/dvilualatex-dev + bin/universal-darwin/latex-dev + bin/universal-darwin/lualatex-dev + bin/universal-darwin/pdflatex-dev + +name latex-bin-dev.win32 +category TLCore +revision 57883 +shortdesc win32 files of latex-bin-dev +containersize 960 +containerchecksum 37dc8049f8323944465fd50382a04310009e9ef66ce0b6b6cff79db210d8dce6d1af82c8b2a6448d32f84654d703a935cedceb3ea00368502b18b2fff67ff1fd +binfiles arch=win32 size=4 + bin/win32/dvilualatex-dev.exe + bin/win32/latex-dev.exe + bin/win32/lualatex-dev.exe + bin/win32/pdflatex-dev.exe + +name latex-bin-dev.x86_64-cygwin +category TLCore +revision 54025 +shortdesc x86_64-cygwin files of latex-bin-dev +containersize 388 +containerchecksum a7f2a906eba15d84c932e4dc2a2bb623d3b6ed3a00989f28f3aa6648b53d9f165522bc67d06cb5b4ec41d3e723ba8fe5439e391df45bdf11daad9afd5c3e2ec4 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/dvilualatex-dev + bin/x86_64-cygwin/latex-dev + bin/x86_64-cygwin/lualatex-dev + bin/x86_64-cygwin/pdflatex-dev + +name latex-bin-dev.x86_64-darwinlegacy +category TLCore +revision 53999 +shortdesc x86_64-darwinlegacy files of latex-bin-dev +containersize 400 +containerchecksum dcadb827d6b1eeb11f3848fd2194d22b83e171117395265ec6cb7d70c5231556e6623026a48abdc61c17acc5d8fc99545e65b1cbb764d3e7b08e74a4737534b9 +binfiles arch=x86_64-darwinlegacy size=4 + bin/x86_64-darwinlegacy/dvilualatex-dev + bin/x86_64-darwinlegacy/latex-dev + bin/x86_64-darwinlegacy/lualatex-dev + bin/x86_64-darwinlegacy/pdflatex-dev + +name latex-bin-dev.x86_64-linux +category TLCore +revision 53999 +shortdesc x86_64-linux files of latex-bin-dev +containersize 388 +containerchecksum c35f372e6120037a840cb95d96906fd9539677be828080e40d8306dddbfd587000352e323c5927aca9e202e5578f1fa8fec080a6949d490a6814d9ffa27c9141 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/dvilualatex-dev + bin/x86_64-linux/latex-dev + bin/x86_64-linux/lualatex-dev + bin/x86_64-linux/pdflatex-dev + +name latex-bin-dev.x86_64-linuxmusl +category TLCore +revision 53999 +shortdesc x86_64-linuxmusl files of latex-bin-dev +containersize 396 +containerchecksum 4fa0fd683d98616f76c94fbb1be1661f5b01dc3a2aae93443ea8634c7199bdbcec9f59a8422e7bc7b98bf4a71b0fc0eee8970395bb44a32c6e66f054d3c23062 +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/dvilualatex-dev + bin/x86_64-linuxmusl/latex-dev + bin/x86_64-linuxmusl/lualatex-dev + bin/x86_64-linuxmusl/pdflatex-dev + +name latex-bin-dev.x86_64-solaris +category TLCore +revision 53999 +shortdesc x86_64-solaris files of latex-bin-dev +containersize 392 +containerchecksum 1bd3700e5875f331e6c1ce7557c0544abc7c8db5d78816b866f0a4eb45f46b061f7d187ec6637eab3e889984df69f43cf9df132c6052667cc74680dc64be7cfb +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/dvilualatex-dev + bin/x86_64-solaris/latex-dev + bin/x86_64-solaris/lualatex-dev + bin/x86_64-solaris/pdflatex-dev + +name latex-bin.aarch64-linux +category TLCore +revision 54018 +shortdesc aarch64-linux files of latex-bin +containersize 384 +containerchecksum c8f47dcfa5c29be25ded52e0f44d11d7aa00f041e3118875f19f8e47921e814dd84a4854043ca75c70b0cf76bafa7b4e8cd8f15c715ed8cddc4883937d84722c +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/dvilualatex + bin/aarch64-linux/latex + bin/aarch64-linux/lualatex + bin/aarch64-linux/pdflatex + +name latex-bin.amd64-freebsd +category TLCore +revision 54018 +shortdesc amd64-freebsd files of latex-bin +containersize 384 +containerchecksum af6bfec595ec12b644d0b845229b33291c2a4a7e01c985f7584407b681bffc8b1e190a6ba271532405b44d95817e0f1b1e1abc98213d1f3c2a7513c06d47127d +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/dvilualatex + bin/amd64-freebsd/latex + bin/amd64-freebsd/lualatex + bin/amd64-freebsd/pdflatex + +name latex-bin.amd64-netbsd +category TLCore +revision 54018 +shortdesc amd64-netbsd files of latex-bin +containersize 380 +containerchecksum 11d704d461eb9b9ac38ae71bd46d55f46f3246f03403f9433039c758533d04c3e06fdbfee6bc8f738f988b34a59b0fdfec03480d4c1f7c7e5d15a315050e7266 +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/dvilualatex + bin/amd64-netbsd/latex + bin/amd64-netbsd/lualatex + bin/amd64-netbsd/pdflatex + +name latex-bin.armhf-linux +category TLCore +revision 54033 +shortdesc armhf-linux files of latex-bin +containersize 384 +containerchecksum 55b385823ff14ab1a8e52b98607d21e38549dd583409a52a189b97f8f1cfbfa5bf44f732dc0bc48c69a281c6e8f6e18e13ba2ccdfd2244386b24375d09901eb8 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/dvilualatex + bin/armhf-linux/latex + bin/armhf-linux/lualatex + bin/armhf-linux/pdflatex + +name latex-bin.i386-cygwin +category TLCore +revision 54035 +shortdesc i386-cygwin files of latex-bin +containersize 388 +containerchecksum cc395dd629ba92e5d85a492bd6e405dd8e19d36e4a878d158107a73044b3b64f34fb439b58412307a91a249373623c87950301c32aca5c477eeab987ef94e609 +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/dvilualatex + bin/i386-cygwin/latex + bin/i386-cygwin/lualatex + bin/i386-cygwin/pdflatex + +name latex-bin.i386-freebsd +category TLCore +revision 54018 +shortdesc i386-freebsd files of latex-bin +containersize 384 +containerchecksum 3bced073ca6bd184763f597e4dd9c031b18de5509f17d470e9db5e3dea0c90947f4539902fe58e2b6a2930ae444a1db7a7cbcf5fef36cbfa943db890d738902c +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/dvilualatex + bin/i386-freebsd/latex + bin/i386-freebsd/lualatex + bin/i386-freebsd/pdflatex + +name latex-bin.i386-linux +category TLCore +revision 54358 +shortdesc i386-linux files of latex-bin +containersize 384 +containerchecksum f1cb6e9d897822730847cc6923554a23c594c6a002eda6468e19dbd1d9f35ed18dbcfc352334eab71a75020810321f79935bcde2b364402c7441737c6d695201 +binfiles arch=i386-linux size=4 + bin/i386-linux/dvilualatex + bin/i386-linux/latex + bin/i386-linux/lualatex + bin/i386-linux/pdflatex + +name latex-bin.i386-netbsd +category TLCore +revision 54104 +shortdesc i386-netbsd files of latex-bin +containersize 380 +containerchecksum 3c5ecf79cc2a6dc2ee9f3926ed82495bd6aa9774c6c615c1a74cdaea3243af4bbac3d012e995f2c951e3b54da5c504c2fd1e2ebbb88c8ec78dace79b8683aa91 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/dvilualatex + bin/i386-netbsd/latex + bin/i386-netbsd/lualatex + bin/i386-netbsd/pdflatex + +name latex-bin.i386-solaris +category TLCore +revision 54018 +shortdesc i386-solaris files of latex-bin +containersize 384 +containerchecksum 80ed6453e9a94b72d0e0f28e19e8ba67275d5a9dbe536834903cf50deacfd8629964b476d8861b06e711ebf40c6b9559a5792efb3d1615a9229e0fe5f5aa900b +binfiles arch=i386-solaris size=4 + bin/i386-solaris/dvilualatex + bin/i386-solaris/latex + bin/i386-solaris/lualatex + bin/i386-solaris/pdflatex + +name latex-bin.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of latex-bin +containersize 376 +containerchecksum 45abdf9fec79500491f0f3c5511aa2a8a25521ee9bf648e9f81ea667c194aac2bdf76267e0f4276cfbd70e4b8f3c1f109129c77030138ba43f51f4e6e0d291f8 +binfiles arch=universal-darwin size=4 + bin/universal-darwin/dvilualatex + bin/universal-darwin/latex + bin/universal-darwin/lualatex + bin/universal-darwin/pdflatex + +name latex-bin.win32 +category TLCore +revision 57883 +shortdesc win32 files of latex-bin +containersize 956 +containerchecksum 87bd0c26a3a3405b730e4a46a54e230d65d34dd66b34d69baa356a6e2aaf5f1f700643be814bb11715104a23405fcc3a7c36d621c49b7545d7fdf396419202ad +binfiles arch=win32 size=4 + bin/win32/dvilualatex.exe + bin/win32/latex.exe + bin/win32/lualatex.exe + bin/win32/pdflatex.exe + +name latex-bin.x86_64-cygwin +category TLCore +revision 54035 +shortdesc x86_64-cygwin files of latex-bin +containersize 388 +containerchecksum 82fd18fe4b98274f38a0a28a402a8f26b9c511c0f71eab0dba63d5cd10bc67febb29d43ad3c495d1807b151ac6ea34fe3e661099a01a94c6b3588ab5bac89c14 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/dvilualatex + bin/x86_64-cygwin/latex + bin/x86_64-cygwin/lualatex + bin/x86_64-cygwin/pdflatex + +name latex-bin.x86_64-darwinlegacy +category TLCore +revision 54018 +shortdesc x86_64-darwinlegacy files of latex-bin +containersize 392 +containerchecksum a58ed2c6c93b3a83e5b351050e0ce8e9d4e76f266d402039cfbd1c589c1f28b5dc5d02bae3e2f4269de1ec48a418b8f60abeeab34fb73a73f9798bfc1d534844 +binfiles arch=x86_64-darwinlegacy size=4 + bin/x86_64-darwinlegacy/dvilualatex + bin/x86_64-darwinlegacy/latex + bin/x86_64-darwinlegacy/lualatex + bin/x86_64-darwinlegacy/pdflatex + +name latex-bin.x86_64-linux +category TLCore +revision 54018 +shortdesc x86_64-linux files of latex-bin +containersize 376 +containerchecksum 4822d2b4bab3a785fd2d53d845b52178b4d7c8b82cef29757cddaa7d08bfb34a72583c4f51e5c8267240cdd5f5df8e41fe9ffc472d2b27ef4e80942c462c1ce2 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/dvilualatex + bin/x86_64-linux/latex + bin/x86_64-linux/lualatex + bin/x86_64-linux/pdflatex + +name latex-bin.x86_64-linuxmusl +category TLCore +revision 54018 +shortdesc x86_64-linuxmusl files of latex-bin +containersize 388 +containerchecksum 72de7a9ebb297033e3abd78516a78d8e352783cf9578984a1cf653abc367d69036bd4af27d27d6a4c9f29c4a7be29158ebc6ec0d0680062e6cada935af08d618 +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/dvilualatex + bin/x86_64-linuxmusl/latex + bin/x86_64-linuxmusl/lualatex + bin/x86_64-linuxmusl/pdflatex + +name latex-bin.x86_64-solaris +category TLCore +revision 54018 +shortdesc x86_64-solaris files of latex-bin +containersize 380 +containerchecksum 598c83a59781c83890b793eb351207b98f098b71abed8ae56b8f52756bb76c90a5744b75cb2a3f481d2c2bc61f91e526099a0687d838054f7778b05566540f54 +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/dvilualatex + bin/x86_64-solaris/latex + bin/x86_64-solaris/lualatex + bin/x86_64-solaris/pdflatex + +name latex-brochure +category Package +revision 40612 +shortdesc A publicity flyer for LaTeX +relocated 1 +longdesc The document is designed as a publicity flyer for LaTeX, but +longdesc also serves as an interesting showcase of what LaTeX can do. +longdesc The flyer is designed for printing, double-sided, on A3 paper, +longdesc which would then be folded once. +containersize 500 +containerchecksum de98a91947d5cb919b6a2c6e6a87f63499c8c5975992d039bb8d2a4662ed597cbdad99668b006cf775f71af936e5ad285958b48b57eac61783460fe37ed76298 +doccontainersize 6200016 +doccontainerchecksum f057b86b61ee1f50430cdb83a56c27896e052047bbc93c4f09884b7d76f16f73cb1b570341faa2b8c771c0d42bb4d6450b8715c921fe866a57727eb4ffdd329a +docfiles size=2752 + RELOC/doc/latex/latex-brochure/README details="Readme" + RELOC/doc/latex/latex-brochure/README.pdf details="Readme (PDF format)" + RELOC/doc/latex/latex-brochure/brochure-a3folderFB.pdf + RELOC/doc/latex/latex-brochure/brochure-a3folderIN.pdf + RELOC/doc/latex/latex-brochure/brochure-a4.pdf + RELOC/doc/latex/latex-brochure/brochure-ledgerfolderFB.pdf + RELOC/doc/latex/latex-brochure/brochure-ledgerfolderIN.pdf + RELOC/doc/latex/latex-brochure/brochure-letter.pdf + RELOC/doc/latex/latex-brochure/brochure.bib + RELOC/doc/latex/latex-brochure/brochure.pdf details="The document itself" + RELOC/doc/latex/latex-brochure/brochure.sty + RELOC/doc/latex/latex-brochure/brochure.tex + RELOC/doc/latex/latex-brochure/build + RELOC/doc/latex/latex-brochure/diagram-crop.eps + RELOC/doc/latex/latex-brochure/diagram-crop.pdf + RELOC/doc/latex/latex-brochure/fullscreen.eps + RELOC/doc/latex/latex-brochure/fullscreen.png + RELOC/doc/latex/latex-brochure/index.html + RELOC/doc/latex/latex-brochure/sample-crop.eps + RELOC/doc/latex/latex-brochure/sample-crop.pdf + RELOC/doc/latex/latex-brochure/typo-degraded.eps + RELOC/doc/latex/latex-brochure/typo-degraded.png +catalogue-also latex-veryshortguide +catalogue-ctan /info/latex-brochure +catalogue-license lppl +catalogue-topics advert + +name latex-course +category Package +revision 25505 +shortdesc A LaTeX course as a projected presentation +relocated 1 +longdesc A brief Beamer-based slide presentation on LaTeX, based on +longdesc Rupprecht's LaTeX 2.09 course, which the author has translated +longdesc to English and taken to LaTeX2e/Beamer. Additional material was +longdesc taken from the Short Introduction to LaTeX. +containersize 512 +containerchecksum 9af9e8a2ff7663ba89538a93e45e27098451be4ccb9380b0deb002a9a42613467184b5a4d38ff8222c7ec5e3c722128222976aade12000c447ff7f8ab42c0656 +doccontainersize 600116 +doccontainerchecksum 772ecca6e71a9af7c31b9c5fd48cce88a7dd880a98b0885e9e5084247f64049234a8d123fe985e247ae706f1d0da1f58bae9e62082defe1acf9345bc252b03b7 +docfiles size=248 + RELOC/doc/latex/latex-course/Graphics/Ross-Siegel.png + RELOC/doc/latex/latex-course/Graphics/Thumbs.db + RELOC/doc/latex/latex-course/Graphics/campus3.png + RELOC/doc/latex/latex-course/LaTeX-Course.pdf details="The course itself" + RELOC/doc/latex/latex-course/LaTeX-Course.tex + RELOC/doc/latex/latex-course/LaTeX-course.prj + RELOC/doc/latex/latex-course/README details="Readme" + RELOC/doc/latex/latex-course/beamercolorthemeross.sty +catalogue-ctan /info/latex-course +catalogue-license gpl +catalogue-topics course-material tut-latex +catalogue-version 2 + +name latex-doc-ptr +category Package +revision 57311 +shortdesc A direction-finder for LaTeX resources available online +relocated 1 +longdesc A brief set of recommendations for users who need online +longdesc documentation of LaTeX. The document supports the need for +longdesc documentation of LaTeX itself, in distributions. For example, +longdesc it could be used in the command texdoc latex, in the TeX Live +longdesc distribution. +containersize 520 +containerchecksum 22017cc47746d2e14436915a0d649b31050debff1827cca44a3ab7bf9b240f40450d445a8eaab811b8737f589839ab7f2078aced47b65b320237ddbcc443b99a +doccontainersize 186924 +doccontainerchecksum c7d7217a9136785cfd6ddb000e51d455e7482bfe395a9131329767bfffc71f918c2349b1426b615a6740263c958530c68c044ee3ae78300a004a8acf20bd8bdc +docfiles size=68 + RELOC/doc/latex/latex-doc-ptr/LICENSE + RELOC/doc/latex/latex-doc-ptr/Makefile + RELOC/doc/latex/latex-doc-ptr/README details="Readme" + RELOC/doc/latex/latex-doc-ptr/dash.sty + RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.css + RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.css.replacement + RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.html + RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.pdf details="The document itself" + RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.sty + RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.tex + RELOC/doc/latex/latex-doc-ptr/massage_html.awk +catalogue-contact-repository https://gitlab.com/jim.hefferon/latex-doc-ptr +catalogue-ctan /info/latex-doc-ptr +catalogue-license pd +catalogue-topics latex-doc + +name latex-firstaid-dev +category Package +revision 57981 +shortdesc Development pre-release of the LaTeX firstaid package +relocated 1 +longdesc This is a pre-release version of the standard LaTeX firstaid +longdesc package. It accompanies the pre-testing kernel code +longdesc (latex-base-dev), and is intended for testing by knowledgeable +longdesc users. +containersize 2344 +containerchecksum d15e218f16cef0e7ae518ee567d9d3912b20e1e62781f0aea4d167b1922ad28b5ce946609fd2f2a9e3c2671f096a0e34c0f88d30877dfee466ac37130cf20a18 +doccontainersize 219328 +doccontainerchecksum 870a42973a33fccdca2c176071bb5dc9f52f29c69fbe41633f75097b3b42e63db0185697ac0bbeb487eed0bc35df61507a934f2ab47c413970fa6ee1eeda73e1 +docfiles size=57 + RELOC/doc/latex-dev/firstaid/README.md details="Readme" + RELOC/doc/latex-dev/firstaid/changes.txt + RELOC/doc/latex-dev/firstaid/latex2e-first-aid-for-external-files.pdf details="Package documentation" +srccontainersize 6076 +srccontainerchecksum d9b97a9c8b659ef4a4ff3a67a4593bf95bf5d01917b0c550017a4a2085d5acb127a1028920d4bee04a7b00c34219f001afbdf8b34c51a0b04bcca2e2c70fc3bc +srcfiles size=6 + RELOC/source/latex-dev/firstaid/firstaid.ins + RELOC/source/latex-dev/firstaid/latex2e-first-aid-for-external-files.dtx +runfiles size=3 + RELOC/tex/latex-dev/firstaid/everysel-ltx.sty + RELOC/tex/latex-dev/firstaid/filehook-ltx.sty + RELOC/tex/latex-dev/firstaid/latex2e-first-aid-for-external-files.ltx +catalogue-ctan /macros/latex-dev/required/firstaid +catalogue-license lppl1.3c +catalogue-topics format bugfix +catalogue-version 1.0k + +name latex-fonts +category Package +revision 28888 +shortdesc A collection of fonts used in LaTeX distributions +relocated 1 +longdesc This is a collection of fonts for use with standard LaTeX +longdesc packages and classes. It includes 'invisible' fonts (for use +longdesc with the slides class), line and circle fonts (for use in the +longdesc picture environment) and 'LaTeX symbol' fonts. For full support +longdesc of a LaTeX installation, some Computer Modern font variants +longdesc cmbsy(6-9), cmcsc(8,9), cmex(7-9) and cmmib(5-9) from the +longdesc amsfonts distribution, are also necessary. The fonts are +longdesc available as Metafont source, and metric (tfm) files are also +longdesc provided. Most of the fonts are also available in Adobe Type 1 +longdesc format, in the amsfonts distribution. +containersize 17972 +containerchecksum 98549dd0c7b29511abc3a1a6b6803a86af0b48121d47e292066f3b67e4b5847efbb7025352c1ec996778c7ea3a5cba552385e9b4dfd6ab005d716f503e37a26e +doccontainersize 1128 +doccontainerchecksum 4d3162776a17f31caa8e6a0fe05eed9447b681d77e653371cb5fa5d8dd2f01bddddc9f95ca916f233c11f8ec7d15e02fe575dc953fdd18c34ba877829a142bea +docfiles size=2 + RELOC/doc/fonts/latex-fonts/README details="Readme" + RELOC/doc/fonts/latex-fonts/legal.txt +runfiles size=61 + RELOC/fonts/source/public/latex-fonts/circle.mf + RELOC/fonts/source/public/latex-fonts/icmcsc10.mf + RELOC/fonts/source/public/latex-fonts/icmex10.mf + RELOC/fonts/source/public/latex-fonts/icmmi8.mf + RELOC/fonts/source/public/latex-fonts/icmsy8.mf + RELOC/fonts/source/public/latex-fonts/icmtt8.mf + RELOC/fonts/source/public/latex-fonts/ilasy8.mf + RELOC/fonts/source/public/latex-fonts/ilcmss8.mf + RELOC/fonts/source/public/latex-fonts/ilcmssb8.mf + RELOC/fonts/source/public/latex-fonts/ilcmssi8.mf + RELOC/fonts/source/public/latex-fonts/lasy.mf + RELOC/fonts/source/public/latex-fonts/lasy10.mf + RELOC/fonts/source/public/latex-fonts/lasy5.mf + RELOC/fonts/source/public/latex-fonts/lasy6.mf + RELOC/fonts/source/public/latex-fonts/lasy7.mf + RELOC/fonts/source/public/latex-fonts/lasy8.mf + RELOC/fonts/source/public/latex-fonts/lasy9.mf + RELOC/fonts/source/public/latex-fonts/lasyb10.mf + RELOC/fonts/source/public/latex-fonts/lcircle10.mf + RELOC/fonts/source/public/latex-fonts/lcirclew10.mf + RELOC/fonts/source/public/latex-fonts/lcmss8.mf + RELOC/fonts/source/public/latex-fonts/lcmssb8.mf + RELOC/fonts/source/public/latex-fonts/lcmssi8.mf + RELOC/fonts/source/public/latex-fonts/line.mf + RELOC/fonts/source/public/latex-fonts/line10.mf + RELOC/fonts/source/public/latex-fonts/linew10.mf + RELOC/fonts/source/public/latex-fonts/sroman.mf + RELOC/fonts/source/public/latex-fonts/sromanu.mf + RELOC/fonts/tfm/public/latex-fonts/icmcsc10.tfm + RELOC/fonts/tfm/public/latex-fonts/icmex10.tfm + RELOC/fonts/tfm/public/latex-fonts/icmmi8.tfm + RELOC/fonts/tfm/public/latex-fonts/icmsy8.tfm + RELOC/fonts/tfm/public/latex-fonts/icmtt8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilasy8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilcmss8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilcmssb8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilcmssi8.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy10.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy5.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy6.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy7.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy8.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy9.tfm + RELOC/fonts/tfm/public/latex-fonts/lasyb10.tfm + RELOC/fonts/tfm/public/latex-fonts/lcircle10.tfm + RELOC/fonts/tfm/public/latex-fonts/lcirclew10.tfm + RELOC/fonts/tfm/public/latex-fonts/lcmss8.tfm + RELOC/fonts/tfm/public/latex-fonts/lcmssb8.tfm + RELOC/fonts/tfm/public/latex-fonts/lcmssi8.tfm + RELOC/fonts/tfm/public/latex-fonts/line10.tfm + RELOC/fonts/tfm/public/latex-fonts/linew10.tfm +catalogue-ctan /fonts/latex +catalogue-license lppl +catalogue-topics font font-symbol font-mf + +name latex-git-log +category Package +revision 54010 +shortdesc Typeset git log information +longdesc The program is run within a git repository, and outputs the +longdesc entire version history, as a LaTeX table. That output will +longdesc typically be redirected to a file; the author recommends +longdesc typesetting in landscape orientation. +depend latex-git-log.ARCH +containersize 4880 +containerchecksum 15994c6eb9ba1b194df270c68a3d74ab3db11974875ce192559182b2dbfa9b308d598056a3145f2cc2f6718865a5b140ccb95dea22a9e23edee527e5b86362ff +doccontainersize 110280 +doccontainerchecksum 52bc94324c64caac9a5b25b49c9ea01b8560433d640646ee70830d27637482cf50da95bbb86db93006f2be4ab9f5f79fa144e4b631d62c05f0a11ab45e639cbf +docfiles size=36 + texmf-dist/doc/man/man1/latex-git-log.1 + texmf-dist/doc/man/man1/latex-git-log.man1.pdf + texmf-dist/doc/support/latex-git-log/README.md details="Readme" + texmf-dist/doc/support/latex-git-log/example-output.tex + texmf-dist/doc/support/latex-git-log/example.pdf + texmf-dist/doc/support/latex-git-log/example.tex + texmf-dist/doc/support/latex-git-log/po/de.po +runfiles size=3 + texmf-dist/scripts/latex-git-log/latex-git-log +catalogue-contact-repository https://github.com/ypid/typesetting/tree/master/scripts/latex-git-log +catalogue-ctan /support/latex-git-log +catalogue-license gpl3+ +catalogue-topics project-mgmt +catalogue-version 1.0.0 + +name latex-git-log.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex-git-log +containersize 344 +containerchecksum bacded72ad18ddcf10a9227cfc38aa7c8328aa14596323e8bbcdcaa5bb6f84f4a78e2016134eb9284845411112f2d34eae7a995ee29e181be4ec806dc400bf49 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex-git-log + +name latex-git-log.amd64-freebsd +category Package +revision 30983 +shortdesc amd64-freebsd files of latex-git-log +containersize 348 +containerchecksum 4dce70741e2d013ee78baa940a76d4dcbdcee3455afa3ee069fbb343f2b7f647249e11b02a15e51104889bfed79b2097dc852b46f7962b62747622cae8c587c4 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex-git-log + +name latex-git-log.amd64-netbsd +category Package +revision 30983 +shortdesc amd64-netbsd files of latex-git-log +containersize 344 +containerchecksum 7717dbba51eba449dcb471fe5d999c185cfd9ded5f216b243c13d3ea9e1133667814cd756ce865c8d9206862717f0e63c478fdf5efad31ef62a587c97b3c447f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex-git-log + +name latex-git-log.armhf-linux +category Package +revision 30983 +shortdesc armhf-linux files of latex-git-log +containersize 344 +containerchecksum 390d256dda4dbe4c04a61df18a5f2c7f67c245fb0604cb83621536515a592d546bebcecd8e55573cbf7b31409d7d089b5acc99867bf33da944b92e6d378ede8e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex-git-log + +name latex-git-log.i386-cygwin +category Package +revision 30983 +shortdesc i386-cygwin files of latex-git-log +containersize 340 +containerchecksum 1521059195d4613781302c9cb7439c634905712b2d2d10d9d1667f83ece1f4448490ee532c201e7c632d10c206bb8a153f826fde5447332bee4fbf78eaaa5dd8 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex-git-log + +name latex-git-log.i386-freebsd +category Package +revision 30983 +shortdesc i386-freebsd files of latex-git-log +containersize 344 +containerchecksum 18f83eb16c0776bf224b94a7298d3bdeca6b9d247bdd3f7d254fc1c1400ee33df4616684a0d2c837579ae6202f49b3eb5ea14c4a3504fdb113fe89cab925fb5c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex-git-log + +name latex-git-log.i386-linux +category Package +revision 30983 +shortdesc i386-linux files of latex-git-log +containersize 344 +containerchecksum 60b4b3125bcc5697e4b3d027a0f0eac774ee6780f2b2adac57af11bee05a0876bb2e8014fc334bd9aee21997b5228b0fbe6fbc509c0c255f75f2374e9943a4e8 +binfiles arch=i386-linux size=1 + bin/i386-linux/latex-git-log + +name latex-git-log.i386-netbsd +category Package +revision 30983 +shortdesc i386-netbsd files of latex-git-log +containersize 344 +containerchecksum 4ab85ef9c4d38aa35e3df93959cc60532b6ee1eddd4805fbed4f59611de055e2fbe6e97e6b4e4c655a226e61f2cbe1ba5389422ec8db5921fa15a408ac48545e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex-git-log + +name latex-git-log.i386-solaris +category Package +revision 30983 +shortdesc i386-solaris files of latex-git-log +containersize 344 +containerchecksum a9c63a2c8c72769da719a3ee09ef3ca2dbe4f2cd8909acb7f1dc84e3cb742baaf7134b2d90b35bc110d45470999c4b4e24ca996059363e51339d6addbdba50e5 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex-git-log + +name latex-git-log.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latex-git-log +containersize 340 +containerchecksum 91cde3b5b26d715dd42ce524281d050b5966cabc74449088b1543c27cb8921dcfdfec730cb5e4092f01fd09190e356edf72e60a11db404f1d00c2a835fb9cb6d +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latex-git-log + +name latex-git-log.win32 +category Package +revision 30983 +shortdesc win32 files of latex-git-log +containersize 692 +containerchecksum f1e8bc5f5290151660dcb98176cc55fd940baed882b036d83c88eac2b8488ebde7c4706f21da6246ee8fb7775fe66b517b2e3cc5800a479128b587396e125800 +binfiles arch=win32 size=1 + bin/win32/latex-git-log.exe + +name latex-git-log.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latex-git-log +containersize 344 +containerchecksum 5dd3d49ac9aa6f648c40ae18bac9e015fb9057d7ee1340b3e7f963ec7c29cc70611070f70e03f8e568c3f1d95d1079b6515c80eecab171eef65db81aed1c16d7 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex-git-log + +name latex-git-log.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex-git-log +containersize 352 +containerchecksum e2294139a7d6e66e0a192bb8b8a23c0cdc9a23ef393a5aaeb0bfe78cee3bdd3a009a85120b9167f6dbfa204327f4139df6a6df1decc977dc23fe0a9d5fb3d2b3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex-git-log + +name latex-git-log.x86_64-linux +category Package +revision 30983 +shortdesc x86_64-linux files of latex-git-log +containersize 344 +containerchecksum 6438cdf0fddf8c4f9b4cf949bb291de784958f217cc3dbc6bb0ce131172e6f8c560e27d53f006cf1e4d18877cfe0e4570f28da6823d5834a1a084e19b2364c79 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex-git-log + +name latex-git-log.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex-git-log +containersize 348 +containerchecksum 6e53a7bce5f1ea5f25656085797cf4d89677caced997e0d5cf9ea5a737a41b12573fb4fb44a563c8579dc1fdfaecf04a61d5c9a6564b0b36a3a03dc5ed23723b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex-git-log + +name latex-git-log.x86_64-solaris +category Package +revision 30983 +shortdesc x86_64-solaris files of latex-git-log +containersize 344 +containerchecksum d66b328c6d3892abfda6a4416ced62379ab29059d6a82aef07c2b4cba1a534384f5bc923810c9efc634e5bdf714d26cd003c8aa57bfd967de611e3a1b0517bf6 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex-git-log + +name latex-graphics-companion +category Package +revision 29235 +catalogue lgc-examples +shortdesc Examples from The LaTeX Graphics Companion +relocated 1 +longdesc The source of the examples printed in the book, together with +longdesc necessary supporting files. +containersize 436 +containerchecksum 3148a646539db3622096f9aeefd7ca2d44b0cf83cd454673893978897d07cfe7107b8f5bc745bc6b60734d4ad3429be1ffc2edaa8c9dd1721b41bfe913fa0dbe +doccontainersize 61484 +doccontainerchecksum ab9d885c811af3964e8cdd8576349059bd45d660e6b9a7e931697f7c7fa5282c725e044817de8f2648ded59519d1592945e0804ba7cbe0054ce2bd4d44606af5 +docfiles size=447 + RELOC/doc/latex/latex-graphics-companion/1-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-10.pic + RELOC/doc/latex/latex-graphics-companion/1-4-11.pic + RELOC/doc/latex/latex-graphics-companion/1-4-12.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-4.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-5.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-6.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-7.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-8.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-9.pic + RELOC/doc/latex/latex-graphics-companion/10-1-1.ltx + RELOC/doc/latex/latex-graphics-companion/10-1-2.ltx + RELOC/doc/latex/latex-graphics-companion/10-1-3.ltx + RELOC/doc/latex/latex-graphics-companion/10-1-4.inl + RELOC/doc/latex/latex-graphics-companion/10-1-5.inl + RELOC/doc/latex/latex-graphics-companion/10-5-1.ltx + RELOC/doc/latex/latex-graphics-companion/11-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/11-6-1.inl + RELOC/doc/latex/latex-graphics-companion/12-0-1.mp + RELOC/doc/latex/latex-graphics-companion/12-0-10.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-11.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-12.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-2.mp + RELOC/doc/latex/latex-graphics-companion/12-0-3.mp + RELOC/doc/latex/latex-graphics-companion/12-0-4.mp + RELOC/doc/latex/latex-graphics-companion/12-0-5.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-6.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-7.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-8.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-9.ltx + RELOC/doc/latex/latex-graphics-companion/2-2-1.inl + RELOC/doc/latex/latex-graphics-companion/2-2-10.inl + RELOC/doc/latex/latex-graphics-companion/2-2-11.inl + RELOC/doc/latex/latex-graphics-companion/2-2-12.inl + RELOC/doc/latex/latex-graphics-companion/2-2-13.inl + RELOC/doc/latex/latex-graphics-companion/2-2-14.inl + RELOC/doc/latex/latex-graphics-companion/2-2-15.inl + RELOC/doc/latex/latex-graphics-companion/2-2-16.inl + RELOC/doc/latex/latex-graphics-companion/2-2-17.inl + RELOC/doc/latex/latex-graphics-companion/2-2-18.inl + RELOC/doc/latex/latex-graphics-companion/2-2-19.inl + RELOC/doc/latex/latex-graphics-companion/2-2-2.inl + RELOC/doc/latex/latex-graphics-companion/2-2-20.inl + RELOC/doc/latex/latex-graphics-companion/2-2-3.inl + RELOC/doc/latex/latex-graphics-companion/2-2-4.inl + RELOC/doc/latex/latex-graphics-companion/2-2-5.inl + RELOC/doc/latex/latex-graphics-companion/2-2-6.inl + RELOC/doc/latex/latex-graphics-companion/2-2-7.inl + RELOC/doc/latex/latex-graphics-companion/2-2-8.inl + RELOC/doc/latex/latex-graphics-companion/2-2-9.inl + RELOC/doc/latex/latex-graphics-companion/2-3-1.inl + RELOC/doc/latex/latex-graphics-companion/2-3-10.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-11.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-12.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-13.inl + RELOC/doc/latex/latex-graphics-companion/2-3-14.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-15.inl + RELOC/doc/latex/latex-graphics-companion/2-3-16.inl + RELOC/doc/latex/latex-graphics-companion/2-3-17.inl + RELOC/doc/latex/latex-graphics-companion/2-3-2.inl + RELOC/doc/latex/latex-graphics-companion/2-3-3.inl + RELOC/doc/latex/latex-graphics-companion/2-3-4.inl + RELOC/doc/latex/latex-graphics-companion/2-3-5.inl + RELOC/doc/latex/latex-graphics-companion/2-3-6.inl + RELOC/doc/latex/latex-graphics-companion/2-3-7.inl + RELOC/doc/latex/latex-graphics-companion/2-3-8.inl + RELOC/doc/latex/latex-graphics-companion/2-3-9.inl + RELOC/doc/latex/latex-graphics-companion/3-1-1.mp + RELOC/doc/latex/latex-graphics-companion/3-1-2.mp + RELOC/doc/latex/latex-graphics-companion/3-1-3.mp + RELOC/doc/latex/latex-graphics-companion/3-1-4.mp + RELOC/doc/latex/latex-graphics-companion/3-1-5.mp + RELOC/doc/latex/latex-graphics-companion/3-1-6.mp + RELOC/doc/latex/latex-graphics-companion/3-1-7.mp + RELOC/doc/latex/latex-graphics-companion/3-1-8.mp + RELOC/doc/latex/latex-graphics-companion/3-1-9.mp + RELOC/doc/latex/latex-graphics-companion/3-2-1.mp + RELOC/doc/latex/latex-graphics-companion/3-2-2.mp + RELOC/doc/latex/latex-graphics-companion/3-2-3.mp + RELOC/doc/latex/latex-graphics-companion/3-3-1.mp + RELOC/doc/latex/latex-graphics-companion/3-3-10.mp + RELOC/doc/latex/latex-graphics-companion/3-3-11.mp + RELOC/doc/latex/latex-graphics-companion/3-3-12.mp + RELOC/doc/latex/latex-graphics-companion/3-3-13.mp + RELOC/doc/latex/latex-graphics-companion/3-3-14.mp + RELOC/doc/latex/latex-graphics-companion/3-3-15.mp + RELOC/doc/latex/latex-graphics-companion/3-3-16.mp + RELOC/doc/latex/latex-graphics-companion/3-3-17.mp + RELOC/doc/latex/latex-graphics-companion/3-3-18.mp + RELOC/doc/latex/latex-graphics-companion/3-3-19.mp + RELOC/doc/latex/latex-graphics-companion/3-3-2.mp + RELOC/doc/latex/latex-graphics-companion/3-3-3.mp + RELOC/doc/latex/latex-graphics-companion/3-3-4.mp + RELOC/doc/latex/latex-graphics-companion/3-3-5.mp + RELOC/doc/latex/latex-graphics-companion/3-3-6.mp + RELOC/doc/latex/latex-graphics-companion/3-3-7.mp + RELOC/doc/latex/latex-graphics-companion/3-3-8.mp + RELOC/doc/latex/latex-graphics-companion/3-3-9.mp + RELOC/doc/latex/latex-graphics-companion/3-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-4.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-5.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-6.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-1.inl + RELOC/doc/latex/latex-graphics-companion/4-10-10.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-11.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-2.inl + RELOC/doc/latex/latex-graphics-companion/4-10-3.inl + RELOC/doc/latex/latex-graphics-companion/4-10-4.inl + RELOC/doc/latex/latex-graphics-companion/4-10-5.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-6.inl + RELOC/doc/latex/latex-graphics-companion/4-10-7.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-8.inl + RELOC/doc/latex/latex-graphics-companion/4-10-9.inl + RELOC/doc/latex/latex-graphics-companion/4-2-1.inl + RELOC/doc/latex/latex-graphics-companion/4-2-2.inl + RELOC/doc/latex/latex-graphics-companion/4-2-3.inl + RELOC/doc/latex/latex-graphics-companion/4-2-4.inl + RELOC/doc/latex/latex-graphics-companion/4-2-5.inl + RELOC/doc/latex/latex-graphics-companion/4-3-1.inl + RELOC/doc/latex/latex-graphics-companion/4-3-2.inl + RELOC/doc/latex/latex-graphics-companion/4-4-1.inl + RELOC/doc/latex/latex-graphics-companion/4-4-10.inl + RELOC/doc/latex/latex-graphics-companion/4-4-11.inl + RELOC/doc/latex/latex-graphics-companion/4-4-12.inl + RELOC/doc/latex/latex-graphics-companion/4-4-2.inl + RELOC/doc/latex/latex-graphics-companion/4-4-3.inl + RELOC/doc/latex/latex-graphics-companion/4-4-4.inl + RELOC/doc/latex/latex-graphics-companion/4-4-5.inl + RELOC/doc/latex/latex-graphics-companion/4-4-6.inl + RELOC/doc/latex/latex-graphics-companion/4-4-7.inl + RELOC/doc/latex/latex-graphics-companion/4-4-8.inl + RELOC/doc/latex/latex-graphics-companion/4-4-9.inl + RELOC/doc/latex/latex-graphics-companion/4-5-1.inl + RELOC/doc/latex/latex-graphics-companion/4-5-10.inl + RELOC/doc/latex/latex-graphics-companion/4-5-11.inl + RELOC/doc/latex/latex-graphics-companion/4-5-12.inl + RELOC/doc/latex/latex-graphics-companion/4-5-13.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-14.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-15.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-16.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-2.inl + RELOC/doc/latex/latex-graphics-companion/4-5-3.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-4.inl + RELOC/doc/latex/latex-graphics-companion/4-5-5.inl + RELOC/doc/latex/latex-graphics-companion/4-5-6.inl + RELOC/doc/latex/latex-graphics-companion/4-5-7.inl + RELOC/doc/latex/latex-graphics-companion/4-5-8.inl + RELOC/doc/latex/latex-graphics-companion/4-5-9.inl + RELOC/doc/latex/latex-graphics-companion/4-6-1.inl + RELOC/doc/latex/latex-graphics-companion/4-6-10.inl + RELOC/doc/latex/latex-graphics-companion/4-6-11.inl + RELOC/doc/latex/latex-graphics-companion/4-6-12.inl + RELOC/doc/latex/latex-graphics-companion/4-6-13.inl + RELOC/doc/latex/latex-graphics-companion/4-6-14.inl + RELOC/doc/latex/latex-graphics-companion/4-6-15.inl + RELOC/doc/latex/latex-graphics-companion/4-6-16.inl + RELOC/doc/latex/latex-graphics-companion/4-6-17.inl + RELOC/doc/latex/latex-graphics-companion/4-6-18.inl + RELOC/doc/latex/latex-graphics-companion/4-6-19.inl + RELOC/doc/latex/latex-graphics-companion/4-6-2.inl + RELOC/doc/latex/latex-graphics-companion/4-6-20.inl + RELOC/doc/latex/latex-graphics-companion/4-6-21.inl + RELOC/doc/latex/latex-graphics-companion/4-6-22.inl + RELOC/doc/latex/latex-graphics-companion/4-6-23.inl + RELOC/doc/latex/latex-graphics-companion/4-6-24.inl + RELOC/doc/latex/latex-graphics-companion/4-6-25.inl + RELOC/doc/latex/latex-graphics-companion/4-6-26.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-27.inl + RELOC/doc/latex/latex-graphics-companion/4-6-28.inl + RELOC/doc/latex/latex-graphics-companion/4-6-29.inl + RELOC/doc/latex/latex-graphics-companion/4-6-3.inl + RELOC/doc/latex/latex-graphics-companion/4-6-30.inl + RELOC/doc/latex/latex-graphics-companion/4-6-31.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-32.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-33.inl + RELOC/doc/latex/latex-graphics-companion/4-6-34.inl + RELOC/doc/latex/latex-graphics-companion/4-6-35.inl + RELOC/doc/latex/latex-graphics-companion/4-6-36.inl + RELOC/doc/latex/latex-graphics-companion/4-6-37.inl + RELOC/doc/latex/latex-graphics-companion/4-6-38.inl + RELOC/doc/latex/latex-graphics-companion/4-6-39.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-4.inl + RELOC/doc/latex/latex-graphics-companion/4-6-40.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-41.inl + RELOC/doc/latex/latex-graphics-companion/4-6-42.inl + RELOC/doc/latex/latex-graphics-companion/4-6-43.inl + RELOC/doc/latex/latex-graphics-companion/4-6-44.inl + RELOC/doc/latex/latex-graphics-companion/4-6-45.inl + RELOC/doc/latex/latex-graphics-companion/4-6-46.inl + RELOC/doc/latex/latex-graphics-companion/4-6-5.inl + RELOC/doc/latex/latex-graphics-companion/4-6-6.inl + RELOC/doc/latex/latex-graphics-companion/4-6-7.inl + RELOC/doc/latex/latex-graphics-companion/4-6-8.inl + RELOC/doc/latex/latex-graphics-companion/4-6-9.inl + RELOC/doc/latex/latex-graphics-companion/4-7-1.ltx + RELOC/doc/latex/latex-graphics-companion/4-7-2.ltx + RELOC/doc/latex/latex-graphics-companion/4-7-3.ltx + RELOC/doc/latex/latex-graphics-companion/4-7-4.ltx + RELOC/doc/latex/latex-graphics-companion/4-8-1.inl + RELOC/doc/latex/latex-graphics-companion/4-8-2.inl + RELOC/doc/latex/latex-graphics-companion/4-8-3.ltx + RELOC/doc/latex/latex-graphics-companion/4-8-4.ltx + RELOC/doc/latex/latex-graphics-companion/4-8-5.ltx + RELOC/doc/latex/latex-graphics-companion/4-9-1.inl + RELOC/doc/latex/latex-graphics-companion/4-9-10.ltx + RELOC/doc/latex/latex-graphics-companion/4-9-2.inl + RELOC/doc/latex/latex-graphics-companion/5-2-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-3.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-4.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-5.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-6.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-7.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-8.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-9.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-4.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-10.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-11.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-12.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-13.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-14.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-15.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-16.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-17.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-18.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-19.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-2.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-20.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-21.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-22.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-23.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-24.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-25.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-26.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-27.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-28.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-29.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-3.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-30.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-31.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-32.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-33.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-34.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-35.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-4.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-5.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-6.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-7.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-8.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-9.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-10.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-11.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-12.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-13.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-14.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-15.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-16.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-17.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-18.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-19.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-20.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-21.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-22.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-23.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-24.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-5.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-6.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-7.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-8.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-9.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-10.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-11.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-12.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-13.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-14.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-5.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-6.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-7.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-8.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-9.ltx + RELOC/doc/latex/latex-graphics-companion/6-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-5-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-5.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-6.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-7.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-1.m4 + RELOC/doc/latex/latex-graphics-companion/6-7-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-2.m4 + RELOC/doc/latex/latex-graphics-companion/6-7-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-3.m4 + RELOC/doc/latex/latex-graphics-companion/6-7-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-4.m4 + RELOC/doc/latex/latex-graphics-companion/7-2-1.mx1 + RELOC/doc/latex/latex-graphics-companion/7-2-1.mx2 + RELOC/doc/latex/latex-graphics-companion/7-2-1.ptx + RELOC/doc/latex/latex-graphics-companion/7-2-2.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-3.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-4.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-5.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-6.ltx + RELOC/doc/latex/latex-graphics-companion/7-3-1.abc + RELOC/doc/latex/latex-graphics-companion/7-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/7-3-3.abc + RELOC/doc/latex/latex-graphics-companion/7-3-4.abc + RELOC/doc/latex/latex-graphics-companion/7-3-5.abc + RELOC/doc/latex/latex-graphics-companion/7-3-6.abc + RELOC/doc/latex/latex-graphics-companion/7-3-7.abc + RELOC/doc/latex/latex-graphics-companion/7-3-8.abc + RELOC/doc/latex/latex-graphics-companion/7-3-9.abc + RELOC/doc/latex/latex-graphics-companion/7-4-1.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-10.mx1 + RELOC/doc/latex/latex-graphics-companion/7-4-10.mx2 + RELOC/doc/latex/latex-graphics-companion/7-4-10.ptx + RELOC/doc/latex/latex-graphics-companion/7-4-2.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-3.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-4.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-5.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-6.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-7.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-8.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-9.mpp + RELOC/doc/latex/latex-graphics-companion/8-1-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-1-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-1-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-1-4.ltx + RELOC/doc/latex/latex-graphics-companion/8-2-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-2-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-2-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-3-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-5-1.inl + RELOC/doc/latex/latex-graphics-companion/8-6-1.inl + RELOC/doc/latex/latex-graphics-companion/8-6-2.inl + RELOC/doc/latex/latex-graphics-companion/8-6-3.inl + RELOC/doc/latex/latex-graphics-companion/8-6-4.inl + RELOC/doc/latex/latex-graphics-companion/8-6-5.inl + RELOC/doc/latex/latex-graphics-companion/8-6-6.inl + RELOC/doc/latex/latex-graphics-companion/8-6-7.inl + RELOC/doc/latex/latex-graphics-companion/8-6-8.inl + RELOC/doc/latex/latex-graphics-companion/8-7-1.acr + RELOC/doc/latex/latex-graphics-companion/8-7-1.dwn + RELOC/doc/latex/latex-graphics-companion/8-7-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-7-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-7-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-7-4.ltx + RELOC/doc/latex/latex-graphics-companion/9-2-1.inl + RELOC/doc/latex/latex-graphics-companion/9-2-2.inl + RELOC/doc/latex/latex-graphics-companion/9-2-3.inl + RELOC/doc/latex/latex-graphics-companion/9-2-4.inl + RELOC/doc/latex/latex-graphics-companion/9-2-5.inl + RELOC/doc/latex/latex-graphics-companion/9-2-6.inl + RELOC/doc/latex/latex-graphics-companion/9-2-7.inl + RELOC/doc/latex/latex-graphics-companion/9-2-8.ltx + RELOC/doc/latex/latex-graphics-companion/9-2-9.ltx + RELOC/doc/latex/latex-graphics-companion/9-3-1.inl + RELOC/doc/latex/latex-graphics-companion/9-3-10.inl + RELOC/doc/latex/latex-graphics-companion/9-3-11.inl + RELOC/doc/latex/latex-graphics-companion/9-3-12.inl + RELOC/doc/latex/latex-graphics-companion/9-3-13.inl + RELOC/doc/latex/latex-graphics-companion/9-3-14.inl + RELOC/doc/latex/latex-graphics-companion/9-3-15.inl + RELOC/doc/latex/latex-graphics-companion/9-3-16.inl + RELOC/doc/latex/latex-graphics-companion/9-3-17.inl + RELOC/doc/latex/latex-graphics-companion/9-3-18.inl + RELOC/doc/latex/latex-graphics-companion/9-3-19.inl + RELOC/doc/latex/latex-graphics-companion/9-3-2.inl + RELOC/doc/latex/latex-graphics-companion/9-3-20.inl + RELOC/doc/latex/latex-graphics-companion/9-3-3.inl + RELOC/doc/latex/latex-graphics-companion/9-3-4.inl + RELOC/doc/latex/latex-graphics-companion/9-3-5.inl + RELOC/doc/latex/latex-graphics-companion/9-3-6.inl + RELOC/doc/latex/latex-graphics-companion/9-3-7.inl + RELOC/doc/latex/latex-graphics-companion/9-3-8.inl + RELOC/doc/latex/latex-graphics-companion/9-3-9.inl + RELOC/doc/latex/latex-graphics-companion/A-1-1.inl + RELOC/doc/latex/latex-graphics-companion/Makefile + RELOC/doc/latex/latex-graphics-companion/README details="Readme" + RELOC/doc/latex/latex-graphics-companion/ages.dat + RELOC/doc/latex/latex-graphics-companion/bar.ini + RELOC/doc/latex/latex-graphics-companion/chap.dat + RELOC/doc/latex/latex-graphics-companion/clef.ini + RELOC/doc/latex/latex-graphics-companion/config.ps + RELOC/doc/latex/latex-graphics-companion/decade.dat + RELOC/doc/latex/latex-graphics-companion/feature.ini + RELOC/doc/latex/latex-graphics-companion/graves.dat + RELOC/doc/latex/latex-graphics-companion/inputs/graphics.cfg + RELOC/doc/latex/latex-graphics-companion/inputs/header.tex + RELOC/doc/latex/latex-graphics-companion/inputs/mfpic.sty + RELOC/doc/latex/latex-graphics-companion/inputs/ppex.cls + RELOC/doc/latex/latex-graphics-companion/key.ini + RELOC/doc/latex/latex-graphics-companion/langs.dat + RELOC/doc/latex/latex-graphics-companion/langs2.dat + RELOC/doc/latex/latex-graphics-companion/langs3.dat + RELOC/doc/latex/latex-graphics-companion/macro.ini + RELOC/doc/latex/latex-graphics-companion/mpp.tex + RELOC/doc/latex/latex-graphics-companion/note.ini + RELOC/doc/latex/latex-graphics-companion/notecc.ini + RELOC/doc/latex/latex-graphics-companion/pot.dat + RELOC/doc/latex/latex-graphics-companion/script.ini + RELOC/doc/latex/latex-graphics-companion/scriptcc.ini + RELOC/doc/latex/latex-graphics-companion/showgrid.tex + RELOC/doc/latex/latex-graphics-companion/stones.dat + RELOC/doc/latex/latex-graphics-companion/students.dat + RELOC/doc/latex/latex-graphics-companion/veracx.mx1 + RELOC/doc/latex/latex-graphics-companion/veracx.tex + RELOC/doc/latex/latex-graphics-companion/yearm.dat + RELOC/doc/latex/latex-graphics-companion/years.dat + RELOC/doc/latex/latex-graphics-companion/years.men + RELOC/doc/latex/latex-graphics-companion/years.wom + RELOC/doc/latex/latex-graphics-companion/yearw.dat +catalogue-ctan /info/examples/lgc +catalogue-license lppl +catalogue-topics book-ex + +name latex-graphics-dev +category Package +revision 59080 +shortdesc Development pre-release of the LaTeX graphics bundle +relocated 1 +longdesc This is a pre-release version of the standard LaTeX graphics +longdesc bundle. It accompanies the pre-testing kernel code +longdesc (latex-base-dev), and is intended for testing by knowledgeable +longdesc users. +depend graphics-cfg +containersize 15148 +containerchecksum 5a68637707e35fd7567bfd19d7053a07b5b14bca6da5d8ba021d3c802ab74d693b4586e1da0793ab0facf4757d5512651b8111dfc0665cea66066b121b6a0588 +doccontainersize 2028260 +doccontainerchecksum 138df1c018b519e4f4463dacd158735d8de58fcf54e97e586899d49fd6ba60f5d1b53d92526cc812d85da74537c09d1fe3268a8c2515c9e12ccc918ce399ed67 +docfiles size=669 + RELOC/doc/latex-dev/graphics/README.md details="Readme" + RELOC/doc/latex-dev/graphics/cat.eps + RELOC/doc/latex-dev/graphics/changes.txt + RELOC/doc/latex-dev/graphics/color.pdf + RELOC/doc/latex-dev/graphics/drivers.pdf + RELOC/doc/latex-dev/graphics/epsfig.pdf + RELOC/doc/latex-dev/graphics/graphics.pdf + RELOC/doc/latex-dev/graphics/graphicx.pdf + RELOC/doc/latex-dev/graphics/grfguide.pdf details="Bundle documentation" + RELOC/doc/latex-dev/graphics/grfguide.tex + RELOC/doc/latex-dev/graphics/keyval.pdf + RELOC/doc/latex-dev/graphics/lscape.pdf + RELOC/doc/latex-dev/graphics/rotating.pdf + RELOC/doc/latex-dev/graphics/rotex.pdf + RELOC/doc/latex-dev/graphics/rotex.tex + RELOC/doc/latex-dev/graphics/trig.pdf +srccontainersize 52252 +srccontainerchecksum 63386bb2d2ca9c8153e770efda87777e589bf94093f1d81abea91945156bb173ca974fa3799cb0fa1151e722265675e11a880ae6a70c74a18d0ef74db836cfae +srcfiles size=65 + RELOC/source/latex-dev/graphics/color.dtx + RELOC/source/latex-dev/graphics/drivers.dtx + RELOC/source/latex-dev/graphics/epsfig.dtx + RELOC/source/latex-dev/graphics/graphics-drivers.ins + RELOC/source/latex-dev/graphics/graphics.dtx + RELOC/source/latex-dev/graphics/graphics.ins + RELOC/source/latex-dev/graphics/graphicx.dtx + RELOC/source/latex-dev/graphics/keyval.dtx + RELOC/source/latex-dev/graphics/lscape.dtx + RELOC/source/latex-dev/graphics/rotating.dtx + RELOC/source/latex-dev/graphics/trig.dtx +runfiles size=35 + RELOC/tex/latex-dev/graphics/color.sty + RELOC/tex/latex-dev/graphics/dvipdf.def + RELOC/tex/latex-dev/graphics/dvipsnam.def + RELOC/tex/latex-dev/graphics/dvipsone.def + RELOC/tex/latex-dev/graphics/dviwin.def + RELOC/tex/latex-dev/graphics/emtex.def + RELOC/tex/latex-dev/graphics/epsfig.sty + RELOC/tex/latex-dev/graphics/graphics-2017-06-25.sty + RELOC/tex/latex-dev/graphics/graphics.sty + RELOC/tex/latex-dev/graphics/graphicx.sty + RELOC/tex/latex-dev/graphics/keyval.sty + RELOC/tex/latex-dev/graphics/lscape.sty + RELOC/tex/latex-dev/graphics/pctex32.def + RELOC/tex/latex-dev/graphics/pctexhp.def + RELOC/tex/latex-dev/graphics/pctexps.def + RELOC/tex/latex-dev/graphics/pctexwin.def + RELOC/tex/latex-dev/graphics/rotating.sty + RELOC/tex/latex-dev/graphics/tcidvi.def + RELOC/tex/latex-dev/graphics/trig.sty + RELOC/tex/latex-dev/graphics/truetex.def +catalogue-also latex-graphics +catalogue-ctan /macros/latex-dev/required/graphics +catalogue-license lppl1.3c +catalogue-topics graphics collection +catalogue-version 2021-06-01 pre-release 1 + +name latex-make +category Package +revision 57349 +shortdesc Easy compiling of complex (and simple) LaTeX documents +relocated 1 +longdesc This package provides several tools that aim to simplify the +longdesc compilation of LaTeX documents: LaTeX.mk: a Makefile snippet to +longdesc help compiling LaTeX documents in DVI, PDF, PS, ... format. +longdesc Dependencies are automatically tracked: one should be able to +longdesc compile documents with a one-line Makefile containing 'include +longdesc LaTeX.mk'. Complex documents (with multiple bibliographies, +longdesc indexes, glossaries, ...) should be correctly managed. +longdesc figlatex.sty: a LaTeX package to easily insert xfig figures +longdesc (with \includegraphics{file.fig}). It can interact with +longdesc LaTeX.mk so that the latter automatically invokes transfig if +longdesc needed. And various helper tools for LaTeX.mk This package +longdesc requires GNUmake (>= 3.81). +containersize 9628 +containerchecksum 1813e8f2c768d7bc33a44d8fa11609915bb392d08da86718ed969fbe3c4284d57619a39284e611ab454d207edd054b36322d5e621cd23e302e85c17c52c5060c +doccontainersize 678104 +doccontainerchecksum 71111a4f203b1ac200515ff1668831265733c9b7fd6884c4612f1261e65ad6cb1336258e7ef47f51f0d0e12a98f3efe4884f38426c0905164b3a9b8ffd47895b +docfiles size=201 + RELOC/doc/support/latex-make/LaTeX.mk + RELOC/doc/support/latex-make/LaTeX.mk.conf + RELOC/doc/support/latex-make/README details="Readme" + RELOC/doc/support/latex-make/figlatex.pdf details="figlatex Package documentation" + RELOC/doc/support/latex-make/latex-make.pdf details="Package documentation" + RELOC/doc/support/latex-make/texdepends.pdf details="texdepends Package documentation" +srccontainersize 28948 +srccontainerchecksum 9aef117c9db4a8e59715ea906c8293fb460ea4026d583d33bb34c3e14ad92ccd536d831cd2e3eb8729eac3b4654236e73419a2bacf84e1c10d640ab9274db2fa +srcfiles size=35 + RELOC/source/support/latex-make/figlatex.dtx + RELOC/source/support/latex-make/latex-make.dtx + RELOC/source/support/latex-make/latex-make.ins + RELOC/source/support/latex-make/pdfswitch.dtx + RELOC/source/support/latex-make/texdepends.dtx +runfiles size=16 + RELOC/scripts/latex-make/figdepth.py + RELOC/scripts/latex-make/gensubfig.py + RELOC/scripts/latex-make/latexfilter.py + RELOC/scripts/latex-make/svg2dev.py + RELOC/scripts/latex-make/svgdepth.py + RELOC/tex/latex/latex-make/figlatex.cfg + RELOC/tex/latex/latex-make/figlatex.sty + RELOC/tex/latex/latex-make/pdfswitch.sty + RELOC/tex/latex/latex-make/texdepends.sty + RELOC/tex/latex/latex-make/texgraphicx.sty +catalogue-contact-repository https://gitlab.inria.fr/latex-utils/latex-make +catalogue-ctan /support/latex-make +catalogue-license gpl +catalogue-topics compilation +catalogue-version 2.4.2 + +name latex-mr +category Package +revision 55475 +shortdesc A practical guide to LaTeX and Polyglossia for Marathi and other Indian languages +relocated 1 +longdesc The package provides a short guide to LaTeX and specifically to +longdesc the polyglossia package. This document aims to introduce LaTeX +longdesc and polyglossia for Indian languages. Though the document often +longdesc discusses the language Marathi, the discussion applies to other +longdesc India languages also, with some minute changes which are +longdesc described in Section 1.2. We assume that the user of this +longdesc document knows basic (La)TeX or has, at least, tried her hand +longdesc on it. This document is not very suitable for first time users. +containersize 700 +containerchecksum eb9b8b12f15a8662eea0e3df907264093074cac1d8f8e1f027186b35f3f3318c4b8c120d261be21350fa660b51a5f33e196d957864b0676395ded0f70940464a +doccontainersize 357060 +doccontainerchecksum 51dcfff4a8df46a8715d07d2528d3a1960479ce4bffba9b8eb5170d5d6307f0c776e197bdbe788d316067070c1d5f5d1382c32430e94ea83664868931a844e52 +docfiles size=135 + RELOC/doc/latex/latex-mr/Leslie_Lamport.jpg + RELOC/doc/latex/latex-mr/README.md details="Readme" + RELOC/doc/latex/latex-mr/latex-mr.pdf details="Package documentation" + RELOC/doc/latex/latex-mr/latex-mr.tex +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-license lppl1.3 +catalogue-topics tut-latex indic marathi +catalogue-version 1.0 + +name latex-notes-zh-cn +category Package +revision 15878 +shortdesc Chinese Introduction to TeX and LaTeX +relocated 1 +longdesc The document is an introduction to TeX/LaTeX, in Chinese. It +longdesc covers basic text typesetting, mathematics, graphics, tables, +longdesc Chinese language & fonts, and some miscellaneous features +longdesc (hyperlinks, long documents, bibliographies, indexes and page +longdesc layout). +containersize 532 +containerchecksum 5e5b3bb01456fec3dc22cb5d0d4f521b4d4f5f8f3119fdd76ea9cc55a70a2ad8a2b72e36471894ee448c1d40d887d20ac8fda39c4a3fe2cd111d2850eec12071 +doccontainersize 693120 +doccontainerchecksum 477df31445a2991db3c2b8cafaa97662d722f3f7171c2f756cf025717cb3b896c1773adadbc42c22cb360f7542a0e658547f15cd71c54e9b79f76fb1e2097e90 +docfiles size=603 + RELOC/doc/generic/latex-notes-zh-cn/README details="Readme" + RELOC/doc/generic/latex-notes-zh-cn/history.txt + RELOC/doc/generic/latex-notes-zh-cn/latex-notes-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/generic/latex-notes-zh-cn/license.txt + RELOC/doc/generic/latex-notes-zh-cn/src/basics.tex + RELOC/doc/generic/latex-notes-zh-cn/src/dscf4684.jpg + RELOC/doc/generic/latex-notes-zh-cn/src/examples/arrow.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/color.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/colors.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/curve.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/dashed.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/dot.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/fill.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/label.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/line.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/loop.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/path.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/predefined.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_arc.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_arrow.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_axis.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_bezier.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_circle.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_color.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_curve.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_dot.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_fill.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_frame.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_grid.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_label.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_line.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_linestyle.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_origin.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_parabola.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_polygon.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_rput.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_uput.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/subfig.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/subfig_left.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/subfig_right.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/transform.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/uline.mps + RELOC/doc/generic/latex-notes-zh-cn/src/fonts.tex + RELOC/doc/generic/latex-notes-zh-cn/src/graphics.tex + RELOC/doc/generic/latex-notes-zh-cn/src/i18n.tex + RELOC/doc/generic/latex-notes-zh-cn/src/introduction.tex + RELOC/doc/generic/latex-notes-zh-cn/src/lnotes.tex + RELOC/doc/generic/latex-notes-zh-cn/src/math.tex + RELOC/doc/generic/latex-notes-zh-cn/src/misc.tex + RELOC/doc/generic/latex-notes-zh-cn/src/postcript.tex + RELOC/doc/generic/latex-notes-zh-cn/src/preface.tex + 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-license lppl1.3 +catalogue-topics chinese-doc +catalogue-version 1.20 + +name latex-papersize +category Package +revision 53131 +shortdesc Calculate LaTeX settings for any font and paper size +longdesc The package is a Python script, whose typical use is when +longdesc preparing printed material for users with low vision. The most +longdesc effective way of doing this is to print on (notional) small +longdesc paper, and then to magnify the result; the script calculates +longdesc the settings for various font and paper sizes. More details are +longdesc to be read in the script itself. +depend latex-papersize.ARCH +containersize 4696 +containerchecksum 00010f764235c6d9e4d6667c8c8b9f0ec6ae4b65afb53109f8179e0429d4b3787bd6b0985cd511f770cd74512483d1077e0f42136fe7ce1871984b372f2f2e54 +doccontainersize 596 +doccontainerchecksum 8ebddd884e3e533d06332f2d6f8657ed54c9c376b3de68c7e7652f3b2835ec6601f5326ea70dc830b645440f0bd9ba2281e4f71a847946bb595771c6a950c0a6 +docfiles size=1 + texmf-dist/doc/support/latex-papersize/README details="Readme" +runfiles size=3 + texmf-dist/scripts/latex-papersize/latex-papersize.py +catalogue-ctan /support/latex-papersize +catalogue-license apache2 +catalogue-topics layout +catalogue-version 1.63 + +name latex-papersize.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex-papersize +containersize 348 +containerchecksum dea8679fed21c394b12424f6d66ed8b1dd02c32164357c2dc68115120f2e94f01dc0cc9e29bfaeac1c91d04df80397870da5a2597b50787603ba4175dca8a783 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex-papersize + +name latex-papersize.amd64-freebsd +category Package +revision 42296 +shortdesc amd64-freebsd files of latex-papersize +containersize 348 +containerchecksum d8b8d0bd58132d787e60c30f1a5a5ce953e41b5e05551204acc1b0bf88e315db7bd5028cd8f4182b7ccade9ce3b3d06435eced459eacc85b9f2e04fc791a293e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex-papersize + +name latex-papersize.amd64-netbsd +category Package +revision 42296 +shortdesc amd64-netbsd files of latex-papersize +containersize 348 +containerchecksum de16029133293cbe644a8f462ab8ae19e85d8a1d27fa3931b7e24b051d3ea075e31027b5611999244fb7c7a8b0c80a7b6aca1ac4fa2a1b5b3208435bbbbd2221 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex-papersize + +name latex-papersize.armhf-linux +category Package +revision 42296 +shortdesc armhf-linux files of latex-papersize +containersize 348 +containerchecksum 0276bf7f34e4c18c75a3397d70713290c401a4dc2ef9bc15790709e235a73ba56e6f5de15f456b85b98478bd1ee6a092cc32eace113f0653f218455cf5e781ef +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex-papersize + +name latex-papersize.i386-cygwin +category Package +revision 42296 +shortdesc i386-cygwin files of latex-papersize +containersize 344 +containerchecksum a851ceebda55e9e474090291df9dd1feb21f7ba8b7850418bbc74125c4670b17d93a9cf9c63c1a44d953d2f9ff1103f034b8fb904fa414f7c7b2ded1fbb3574a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex-papersize + +name latex-papersize.i386-freebsd +category Package +revision 42296 +shortdesc i386-freebsd files of latex-papersize +containersize 348 +containerchecksum ae3b48c030940406afc51378bc7ff005ab2688523c39ad02fc43f668c297c7a29b027f87683d7ef2a025b0d56f21abb5b1b1c86886d0424e576eaee25550e4c2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex-papersize + +name latex-papersize.i386-linux +category Package +revision 42296 +shortdesc i386-linux files of latex-papersize +containersize 348 +containerchecksum 7119b2619202265e7c4d0f92a90a90bdc3dec72f96860f85ca66ff165fc8c108196dc683f1adc777731012062a8cfee70fffda2ba9922dd25ecd11441f6e9fed +binfiles arch=i386-linux size=1 + bin/i386-linux/latex-papersize + +name latex-papersize.i386-netbsd +category Package +revision 42296 +shortdesc i386-netbsd files of latex-papersize +containersize 344 +containerchecksum 6f2de48f0dcbd1e06a97ca8e2e28a8d5aeb7bc943374f238a93e37927a01c50523d483cf6776493289f0e5ce6753c456c521f1f3b3fbcb6d23555d6a85f2b206 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex-papersize + +name latex-papersize.i386-solaris +category Package +revision 42296 +shortdesc i386-solaris files of latex-papersize +containersize 348 +containerchecksum 3713462310302a08d694e44f3947a738b06fd0464a231d62d1560acce8ea45d6e176160ef93c4c45c576f841ba6a277ea23cc986a67deb1f3904ae57278db242 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex-papersize + +name latex-papersize.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latex-papersize +containersize 344 +containerchecksum 709cc045d173f7faac28d7d1e4638d653651a3978cadca7703d93468bad69a6223bc75bed8120a0a92b134a5049b6e52fbb641b6ec658daf040cae3dcfee8e6b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latex-papersize + +name latex-papersize.win32 +category Package +revision 42296 +shortdesc win32 files of latex-papersize +containersize 688 +containerchecksum 68ae3e1aa0a98182b798b09cffc265117deda073cdb7209c351921fe3db5300553a00e7c8951833f5a1aa732e3ad2d09db9fe3b813ac7ec7820bbf37759f1c8c +binfiles arch=win32 size=1 + bin/win32/latex-papersize.exe + +name latex-papersize.x86_64-cygwin +category Package +revision 42296 +shortdesc x86_64-cygwin files of latex-papersize +containersize 348 +containerchecksum 1508c9d6eb1ed71fd0ac0d2cd2a0b3cf7d0957632fc2f78689db9ca83fa14de40dfd7757bab0e6b743270dd808e66553e3052dcf316dec2a1374a9c96bddbd8d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex-papersize + +name latex-papersize.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex-papersize +containersize 352 +containerchecksum f4e6a82e14f35c0ffbc77de43889f1ddea20b53b3ba5ee184a57dd044ab5a626d93f2465ac5d71049594b29a760404334a64efcd95570e255bc025f574fcd5f5 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex-papersize + +name latex-papersize.x86_64-linux +category Package +revision 42296 +shortdesc x86_64-linux files of latex-papersize +containersize 344 +containerchecksum b509a7ee1aaf8ac9e54f0ea32e823c4b3353060fe905b52bbd64a1e8350b1c89d83ce3c2e9f2ca2e112e41d5f6e4712d67705f5a0b3e6ca61113c25fc8f10963 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex-papersize + +name latex-papersize.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex-papersize +containersize 348 +containerchecksum 42f96aa36fa7f3d95170bda04a7431bb98ddfcf7fed1c8895460d51e16879faeb3da311b4ef372f909a12480d7c640c33604e30af7eee671779c2ef4ca38f8a9 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex-papersize + +name latex-papersize.x86_64-solaris +category Package +revision 42296 +shortdesc x86_64-solaris files of latex-papersize +containersize 348 +containerchecksum 3d428f378217621dcff2900ccfb8627c8d416f356e35093b85d94daa726caabfe6d79a404e05c5300f902e6252fe06219ba025b3f097d955f73e791379a3a2ce +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex-papersize + +name latex-refsheet +category Package +revision 45076 +shortdesc LaTeX Reference Sheet for a thesis with KOMA-Script +relocated 1 +longdesc This LaTeX Reference Sheet is for writing a thesis using the +longdesc KOMA-Script document classes (scrartcl, scrreprt, scrbook) and +longdesc all the packages needed for a thesis in natural sciences. +containersize 480 +containerchecksum ea6751fc09aada1b8ebcca08ecdb10279b6df881b3b373b04e8c238609de92b4cdc4f1e7321f178b15637c0b712e9781317af07030f2f9297a3ce23a5f46cb32 +doccontainersize 5020492 +doccontainerchecksum 77149dabb1fe5c4a46591b3b307d02b2e2b33a07267afcdb44b77a2a823dcea9ea76b4be5ddad530151b638cfbcaf5d87ed0fed59a9e8ed99acb0895717bc71a +docfiles size=1818 + RELOC/doc/latex/latex-refsheet/LaTeX_RefSheet.pdf details="The document itself" + RELOC/doc/latex/latex-refsheet/LaTeX_RefSheet.tex + RELOC/doc/latex/latex-refsheet/README.md details="Readme" + RELOC/doc/latex/latex-refsheet/acknowledgements.pdf + RELOC/doc/latex/latex-refsheet/acknowledgements.tex + RELOC/doc/latex/latex-refsheet/header-graph.pdf + RELOC/doc/latex/latex-refsheet/header-graph.tex + RELOC/doc/latex/latex-refsheet/layout.pdf + RELOC/doc/latex/latex-refsheet/logo.png + RELOC/doc/latex/latex-refsheet/thesis.bib + RELOC/doc/latex/latex-refsheet/thesis.pdf + RELOC/doc/latex/latex-refsheet/thesis.tex +catalogue-ctan /info/latex-refsheet +catalogue-license lppl1.3c +catalogue-topics tut-cheat +catalogue-version 1.2 + +name latex-tools-dev +category Package +revision 59080 +shortdesc Development pre-release of the LaTeX tools bundle +relocated 1 +longdesc This is a pre-release version of the standard LaTeX tools +longdesc bundle. It accompanies the pre-testing kernel code +longdesc (latex-base-dev), and is intended for testing by knowledgeable +longdesc users. +containersize 42452 +containerchecksum c99eb52581a1407268fe124d1a33ba6dc6b9bc431f79a17a8a7d5d34c99a81248d7826cf8043ab2230fe6f2a019984f5165ca2a8b8325d616f960c06d85f683e +doccontainersize 5280832 +doccontainerchecksum f3b0cb91bd4cd95de31f52518f8be5fdb6693fd5f0c6b00d5891521745251bfe352641c3a83cd4d7e47a6191736afff1e6ceab9ea6a5824f8433b8f9c72c80d1 +docfiles size=1774 + RELOC/doc/latex-dev/tools/README.md details="Readme" + RELOC/doc/latex-dev/tools/afterpage.pdf + RELOC/doc/latex-dev/tools/array.pdf + RELOC/doc/latex-dev/tools/bm.pdf + RELOC/doc/latex-dev/tools/calc.pdf + RELOC/doc/latex-dev/tools/changes.txt + RELOC/doc/latex-dev/tools/dcolumn.pdf + RELOC/doc/latex-dev/tools/delarray.pdf + RELOC/doc/latex-dev/tools/enumerate.pdf + RELOC/doc/latex-dev/tools/fileerr.pdf + RELOC/doc/latex-dev/tools/fontsmpl.pdf + RELOC/doc/latex-dev/tools/ftnright.pdf + RELOC/doc/latex-dev/tools/hhline.pdf + RELOC/doc/latex-dev/tools/indentfirst.pdf + RELOC/doc/latex-dev/tools/layout.pdf + RELOC/doc/latex-dev/tools/longtable.pdf + RELOC/doc/latex-dev/tools/manifest.txt + RELOC/doc/latex-dev/tools/multicol.pdf + RELOC/doc/latex-dev/tools/rawfonts.pdf + RELOC/doc/latex-dev/tools/shellesc.pdf + RELOC/doc/latex-dev/tools/showkeys.pdf + RELOC/doc/latex-dev/tools/somedefs.pdf + RELOC/doc/latex-dev/tools/tabularx.pdf + RELOC/doc/latex-dev/tools/theorem.pdf + RELOC/doc/latex-dev/tools/tools-overview.pdf + RELOC/doc/latex-dev/tools/tools-overview.tex + RELOC/doc/latex-dev/tools/trace.pdf + RELOC/doc/latex-dev/tools/varioref.pdf + RELOC/doc/latex-dev/tools/verbatim.pdf + RELOC/doc/latex-dev/tools/xr.pdf + RELOC/doc/latex-dev/tools/xspace.pdf +srccontainersize 227844 +srccontainerchecksum cc88af3474e6ed454b7c6b967aaf74c428a1575620a8dd4abe0979b8b65bccafd94b5862a75143412581a88d69692dcbd5d534191a5de13b6309950beebe3653 +srcfiles size=269 + RELOC/source/latex-dev/tools/afterpage.dtx + RELOC/source/latex-dev/tools/afterpage.ins + RELOC/source/latex-dev/tools/array.dtx + RELOC/source/latex-dev/tools/bm.dtx + RELOC/source/latex-dev/tools/bm.ins + RELOC/source/latex-dev/tools/calc.dtx + RELOC/source/latex-dev/tools/dcolumn.dtx + RELOC/source/latex-dev/tools/delarray.dtx + RELOC/source/latex-dev/tools/enumerate.dtx + RELOC/source/latex-dev/tools/fileerr.dtx + RELOC/source/latex-dev/tools/fontsmpl.dtx + RELOC/source/latex-dev/tools/ftnright.dtx + RELOC/source/latex-dev/tools/hhline.dtx + RELOC/source/latex-dev/tools/indentfirst.dtx + RELOC/source/latex-dev/tools/layout.dtx + RELOC/source/latex-dev/tools/longtable.dtx + RELOC/source/latex-dev/tools/longtable.ins + RELOC/source/latex-dev/tools/multicol.dtx + RELOC/source/latex-dev/tools/multicol.ins + RELOC/source/latex-dev/tools/rawfonts.dtx + RELOC/source/latex-dev/tools/shellesc.dtx + RELOC/source/latex-dev/tools/showkeys.dtx + RELOC/source/latex-dev/tools/somedefs.dtx + RELOC/source/latex-dev/tools/tabularx.dtx + RELOC/source/latex-dev/tools/tabularx.ins + RELOC/source/latex-dev/tools/theorem.dtx + RELOC/source/latex-dev/tools/tools.ins + RELOC/source/latex-dev/tools/trace.dtx + RELOC/source/latex-dev/tools/varioref.dtx + RELOC/source/latex-dev/tools/varioref.ins + RELOC/source/latex-dev/tools/verbatim.dtx + RELOC/source/latex-dev/tools/xr.dtx + RELOC/source/latex-dev/tools/xspace.dtx +runfiles size=110 + RELOC/tex/latex-dev/tools/.tex + RELOC/tex/latex-dev/tools/afterpage.sty + RELOC/tex/latex-dev/tools/array-2016-10-06.sty + RELOC/tex/latex-dev/tools/array-2020-02-10.sty + RELOC/tex/latex-dev/tools/array.sty + RELOC/tex/latex-dev/tools/bm.sty + RELOC/tex/latex-dev/tools/calc.sty + RELOC/tex/latex-dev/tools/dcolumn.sty + RELOC/tex/latex-dev/tools/delarray.sty + RELOC/tex/latex-dev/tools/e.tex + RELOC/tex/latex-dev/tools/enumerate.sty + RELOC/tex/latex-dev/tools/fontsmpl.sty + RELOC/tex/latex-dev/tools/fontsmpl.tex + RELOC/tex/latex-dev/tools/ftnright.sty + RELOC/tex/latex-dev/tools/h.tex + RELOC/tex/latex-dev/tools/hhline.sty + RELOC/tex/latex-dev/tools/indentfirst.sty + RELOC/tex/latex-dev/tools/layout.sty + RELOC/tex/latex-dev/tools/longtable-2020-01-07.sty + RELOC/tex/latex-dev/tools/longtable.sty + RELOC/tex/latex-dev/tools/multicol-2017-04-11.sty + RELOC/tex/latex-dev/tools/multicol.sty + RELOC/tex/latex-dev/tools/q.tex + RELOC/tex/latex-dev/tools/r.tex + RELOC/tex/latex-dev/tools/rawfonts.sty + RELOC/tex/latex-dev/tools/s.tex + RELOC/tex/latex-dev/tools/shellesc.sty + RELOC/tex/latex-dev/tools/showkeys.sty + RELOC/tex/latex-dev/tools/somedefs.sty + RELOC/tex/latex-dev/tools/tabularx.sty + RELOC/tex/latex-dev/tools/thb.sty + RELOC/tex/latex-dev/tools/thc.sty + RELOC/tex/latex-dev/tools/thcb.sty + RELOC/tex/latex-dev/tools/theorem.sty + RELOC/tex/latex-dev/tools/thm.sty + RELOC/tex/latex-dev/tools/thmb.sty + RELOC/tex/latex-dev/tools/thp.sty + RELOC/tex/latex-dev/tools/trace.sty + RELOC/tex/latex-dev/tools/varioref-2016-02-16.sty + RELOC/tex/latex-dev/tools/varioref.sty + RELOC/tex/latex-dev/tools/verbatim.sty + RELOC/tex/latex-dev/tools/verbtest.tex + RELOC/tex/latex-dev/tools/x.tex + RELOC/tex/latex-dev/tools/xr.sty + RELOC/tex/latex-dev/tools/xspace.sty +catalogue-ctan /macros/latex-dev/required/tools +catalogue-license lppl1.3c +catalogue-topics collection +catalogue-version 2021-06-01 pre-release 2 + +name latex-uni8 +category Package +revision 49729 +shortdesc Universal inputenc, fontenc, and babel for pdfLaTeX and LuaLaTeX +relocated 1 +longdesc This package provides a LaTeX style file which makes it easy to +longdesc use input encoding (UTF-8 by default, can be changed), +longdesc fontspec.sty (optional), font encoding (T1 if fontspec.sty is +longdesc not used), babel (English language by default), hyphenation, +longdesc underline (with soul.sty), default text and math fonts +longdesc (Computer Modern or Times), and paper sizes correctly with both +longdesc pdfLaTeX and LuaLaTeX. +containersize 4112 +containerchecksum 1e98eb60547932eb218f30cc713b94e8c7ee5861e66cc600b01f577a37e318a5b440b65c2aef1c770ef94bb4c4cf86d5d1636943de60f78049d2286a92ba5d81 +doccontainersize 3380 +doccontainerchecksum 201de55826ce4911153f079e1107e2f4d2399d3d3cca95bc669cd958d09839ed7de778d644502cb6af8429818834027c9d3f3255fe58f95c985d1a96e4682f22 +docfiles size=16 + RELOC/doc/latex/latex-uni8/README.txt details="Readme" + RELOC/doc/latex/latex-uni8/example_fl.tex + RELOC/doc/latex/latex-uni8/example_flr.tex + RELOC/doc/latex/latex-uni8/example_fm.tex + RELOC/doc/latex/latex-uni8/example_fmr.tex + RELOC/doc/latex/latex-uni8/example_fu.tex + RELOC/doc/latex/latex-uni8/example_fur.tex + RELOC/doc/latex/latex-uni8/example_fut.tex + RELOC/doc/latex/latex-uni8/example_futr.tex + RELOC/doc/latex/latex-uni8/example_pl.tex + RELOC/doc/latex/latex-uni8/example_plr.tex + RELOC/doc/latex/latex-uni8/example_pm.tex + RELOC/doc/latex/latex-uni8/example_pmr.tex + RELOC/doc/latex/latex-uni8/example_pu.tex + RELOC/doc/latex/latex-uni8/example_pur.tex +runfiles size=3 + RELOC/tex/latex/latex-uni8/uni8.sty +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-license lppl +catalogue-topics inputenc fontenc unicode misc-support +catalogue-version 0.03 + +name latex-veryshortguide +category Package +revision 55228 +shortdesc The Very Short Guide to LaTeX +relocated 1 +longdesc This is a 4-page reminder of what LaTeX does. It is designed +longdesc for printing on A4 paper, double-sided, and folding once to A5. +longdesc Such an 'imposed' version of the document is provided in the +longdesc distribution, as PDF. An analogous version is provided in +longdesc 'legal' format. +containersize 560 +containerchecksum 5c32c836c5ada42858de4579167848ef51c4b7626601fa95fe56175f406cb747bba5015ffe369ebfa93e789d29ba5329e1ab3e42262699695fa59b6cf047a581 +doccontainersize 521444 +doccontainerchecksum e2c521e768ea425312a400d88c893404c0f86c5886f595162b2a03493836ee1a949e2feebf8a8b3c9d6450630ff644b8973374f9963c67478af29e2a432d2f9d +docfiles size=228 + RELOC/doc/latex/latex-veryshortguide/MANIFEST + RELOC/doc/latex/latex-veryshortguide/README.md details="Readme" + RELOC/doc/latex/latex-veryshortguide/VERSION + RELOC/doc/latex/latex-veryshortguide/menno-a.jpg + RELOC/doc/latex/latex-veryshortguide/veryshortguide-A4-imposed.pdf details="The document itself, imposed for 1 sheet of A4 paper" + RELOC/doc/latex/latex-veryshortguide/veryshortguide.cls + RELOC/doc/latex/latex-veryshortguide/veryshortguide.dtx + RELOC/doc/latex/latex-veryshortguide/veryshortguide.ins + RELOC/doc/latex/latex-veryshortguide/veryshortguide.pdf details="The document itself" + RELOC/doc/latex/latex-veryshortguide/vsg.bib + RELOC/doc/latex/latex-veryshortguide/vsg.tex +catalogue-also latex-brochure +catalogue-contact-home http://latex.silmaril.ie/veryshortguide/ +catalogue-ctan /info/latex-veryshortguide +catalogue-license lppl1.3 +catalogue-topics tut-latex +catalogue-version 0.7 + +name latex-via-exemplos +category Package +revision 53248 +shortdesc A LaTeX course written in brazilian portuguese language +relocated 1 +longdesc This is a LaTeX2e course written in brazilian portuguese +longdesc language. +containersize 400 +containerchecksum 12760e4866e1796a290bae531205da1cca1f24c51359a9e0f231524a55834a94a357625b775997f065c002da663c460eabcdb5ae22984330427c62e001f49fc7 +doccontainersize 2020468 +doccontainerchecksum 5a108346c7653122b37a9914cdf16410e6135f142b1f849d3d4d413be2cc59631d56c3b25d770621d84ff3256cadecbe7834f132b424244353f5889f09dfecf2 +docfiles size=675 + RELOC/doc/latex/latex-via-exemplos/README.md details="Readme" + RELOC/doc/latex/latex-via-exemplos/changelog.txt + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-certificado.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-fig.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-lista-nomes.csv + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.pdf details="The document itself (oneside)" + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-poster.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-slides.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.bib + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.pdf details="The document itself (twoside)" + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.tex + RELOC/doc/latex/latex-via-exemplos/makeaux.sh + RELOC/doc/latex/latex-via-exemplos/makedoc.sh +catalogue-also lshort-portuguese-br +catalogue-ctan /info/latex-via-exemplos +catalogue-license gpl2+ +catalogue-topics portuguese-doc tut-latex +catalogue-version 0.5.6 + +name latex-web-companion +category Package +revision 29349 +catalogue lwc-examples +shortdesc Examples from The LaTeX Web Companion +relocated 1 +longdesc The source of the examples printed in the book, together with +longdesc necessary supporting files. +containersize 432 +containerchecksum 5f45c7f74a0e97b938009ada69146875e141edd556165b62185553b0ce5f590d5ca6f93a875dae1c546ebc788156d5cfc69c46535000adfe6933abe79a2fb06d +doccontainersize 272788 +doccontainerchecksum a972860f65d763c6fb45e9726e5dd7b8234509b90634f45b8b25e090da92d0ac577bf8b33ea7b0a0f91e4e5639bf62c07086dc36708ae697c1e16e644acc83f0 +docfiles size=372 + RELOC/doc/latex/latex-web-companion/apa/README.apa + RELOC/doc/latex/latex-web-companion/apa/latexexa-raw.xml + RELOC/doc/latex/latex-web-companion/apa/latexexa.dtd + RELOC/doc/latex/latex-web-companion/apa/latexexa.tex + RELOC/doc/latex/latex-web-companion/apa/latexexa.xml + RELOC/doc/latex/latex-web-companion/apa/phys332-1.eps + RELOC/doc/latex/latex-web-companion/apa/phys332-2.eps + RELOC/doc/latex/latex-web-companion/apa/teched.html + RELOC/doc/latex/latex-web-companion/apa/teched.java + RELOC/doc/latex/latex-web-companion/apb/InvitationSAX.class + RELOC/doc/latex/latex-web-companion/apb/InvitationSAX.java + RELOC/doc/latex/latex-web-companion/apb/MySAXApp.class + RELOC/doc/latex/latex-web-companion/apb/MySAXApp.java + RELOC/doc/latex/latex-web-companion/apb/README.apb + RELOC/doc/latex/latex-web-companion/apb/bibliotest1.xml + RELOC/doc/latex/latex-web-companion/apb/bibliotest2.xml + RELOC/doc/latex/latex-web-companion/apb/biblioxml1.dtd + RELOC/doc/latex/latex-web-companion/apb/biblioxml2.dtd + RELOC/doc/latex/latex-web-companion/apb/colorcir.eps + RELOC/doc/latex/latex-web-companion/apb/inv2.tex + RELOC/doc/latex/latex-web-companion/apb/invitation.sty + RELOC/doc/latex/latex-web-companion/apb/invitation2.dtd + RELOC/doc/latex/latex-web-companion/apb/invitation2.xml + RELOC/doc/latex/latex-web-companion/apb/latexmath.dtd + RELOC/doc/latex/latex-web-companion/apb/latexmml.dtd + RELOC/doc/latex/latex-web-companion/apb/makelatex.sh + RELOC/doc/latex/latex-web-companion/apb/minilatex.dtd + RELOC/doc/latex/latex-web-companion/apb/minilatex.xsl + RELOC/doc/latex/latex-web-companion/apb/minilatexexa.tex + RELOC/doc/latex/latex-web-companion/apb/minilatexexa.xml + RELOC/doc/latex/latex-web-companion/apb/mybiblio.dtd + RELOC/doc/latex/latex-web-companion/apb/utf82latin1.sh + RELOC/doc/latex/latex-web-companion/apc/ISOcyr1.pen + RELOC/doc/latex/latex-web-companion/apc/README.apc + RELOC/doc/latex/latex-web-companion/apc/invitation.sty + RELOC/doc/latex/latex-web-companion/apc/invitationfr.dtd + RELOC/doc/latex/latex-web-companion/apc/invitationfr.tex + RELOC/doc/latex/latex-web-companion/apc/invitationfr.xml + RELOC/doc/latex/latex-web-companion/apc/invitationfrraw.tex + RELOC/doc/latex/latex-web-companion/apc/invlat1fr.xsl + RELOC/doc/latex/latex-web-companion/apc/utf8.html + RELOC/doc/latex/latex-web-companion/apc/utf8.xml + RELOC/doc/latex/latex-web-companion/apc/utf8.xsl + RELOC/doc/latex/latex-web-companion/apc/utf8raw.html + RELOC/doc/latex/latex-web-companion/ch2/latexexa.aux + RELOC/doc/latex/latex-web-companion/ch2/latexexa.brf + RELOC/doc/latex/latex-web-companion/ch2/latexexa.log + RELOC/doc/latex/latex-web-companion/ch2/latexexa.out + RELOC/doc/latex/latex-web-companion/ch2/latexexa.pdf + RELOC/doc/latex/latex-web-companion/ch2/latexexa.tex + RELOC/doc/latex/latex-web-companion/ch2/phys332-1.pdf + RELOC/doc/latex/latex-web-companion/ch2/phys332-2.pdf + RELOC/doc/latex/latex-web-companion/ch3/Makefile.ex2 + RELOC/doc/latex/latex-web-companion/ch3/Makefile.ex3 + RELOC/doc/latex/latex-web-companion/ch3/README.ch3 + RELOC/doc/latex/latex-web-companion/ch3/colorcir.eps + RELOC/doc/latex/latex-web-companion/ch3/ex20.tex + RELOC/doc/latex/latex-web-companion/ch3/ex21.tex + RELOC/doc/latex/latex-web-companion/ch3/ex22.tex + RELOC/doc/latex/latex-web-companion/ch3/ex2bib.tex + RELOC/doc/latex/latex-web-companion/ch3/ex30.tex + RELOC/doc/latex/latex-web-companion/ch3/ex31.tex + RELOC/doc/latex/latex-web-companion/ch3/ex32.tex + RELOC/doc/latex/latex-web-companion/ch3/ex3bib.tex + RELOC/doc/latex/latex-web-companion/ch3/l2hexa.tex + RELOC/doc/latex/latex-web-companion/ch3/myinit.pl + RELOC/doc/latex/latex-web-companion/ch3/sampleAMS.css + RELOC/doc/latex/latex-web-companion/ch3/sampleAMS.tex + RELOC/doc/latex/latex-web-companion/ch3/sampleMath.tex + RELOC/doc/latex/latex-web-companion/ch3/sampleMathImages.tex + RELOC/doc/latex/latex-web-companion/ch3/sampleMathThumb.tex + RELOC/doc/latex/latex-web-companion/ch3/tac2dim.eps + RELOC/doc/latex/latex-web-companion/ch4/latexexa.aux + RELOC/doc/latex/latex-web-companion/ch4/latexexa.css + RELOC/doc/latex/latex-web-companion/ch4/latexexa.dvi + RELOC/doc/latex/latex-web-companion/ch4/latexexa.html + RELOC/doc/latex/latex-web-companion/ch4/latexexa.idv + RELOC/doc/latex/latex-web-companion/ch4/latexexa.lg + RELOC/doc/latex/latex-web-companion/ch4/latexexa.log + RELOC/doc/latex/latex-web-companion/ch4/latexexa.otc + RELOC/doc/latex/latex-web-companion/ch4/latexexa.tex + RELOC/doc/latex/latex-web-companion/ch4/latexexa.toc + RELOC/doc/latex/latex-web-companion/ch4/latexexa.xref + RELOC/doc/latex/latex-web-companion/ch4/phys332-1.eps + RELOC/doc/latex/latex-web-companion/ch4/phys332-2.eps + RELOC/doc/latex/latex-web-companion/ch4/tex4ht.env + RELOC/doc/latex/latex-web-companion/ch4/tex4ht.tmp + RELOC/doc/latex/latex-web-companion/ch4/tmp.ps + RELOC/doc/latex/latex-web-companion/ch6/README.ch6 + RELOC/doc/latex/latex-web-companion/ch6/catalog + RELOC/doc/latex/latex-web-companion/ch6/emptyexample.xml + RELOC/doc/latex/latex-web-companion/ch6/invitation.dtd + RELOC/doc/latex/latex-web-companion/ch6/invitation.xml + RELOC/doc/latex/latex-web-companion/ch6/wrong.xml + RELOC/doc/latex/latex-web-companion/ch6/xml.dcl + RELOC/doc/latex/latex-web-companion/ch7/README.ch7 + RELOC/doc/latex/latex-web-companion/ch7/SGMLS.pm + RELOC/doc/latex/latex-web-companion/ch7/SGMLS/Output.pm + RELOC/doc/latex/latex-web-companion/ch7/SGMLS/Refs.pm + RELOC/doc/latex/latex-web-companion/ch7/SGMLS/SGMLS.pm + RELOC/doc/latex/latex-web-companion/ch7/any.xml + RELOC/doc/latex/latex-web-companion/ch7/any.xsl + RELOC/doc/latex/latex-web-companion/ch7/catalog + RELOC/doc/latex/latex-web-companion/ch7/catalog.dsssl + RELOC/doc/latex/latex-web-companion/ch7/catalog.xml + RELOC/doc/latex/latex-web-companion/ch7/debug.txt + RELOC/doc/latex/latex-web-companion/ch7/dsssl.cat + RELOC/doc/latex/latex-web-companion/ch7/dsssl.dtd + RELOC/doc/latex/latex-web-companion/ch7/empty.dsl + RELOC/doc/latex/latex-web-companion/ch7/empty.xsl + RELOC/doc/latex/latex-web-companion/ch7/emptyexample.xml + RELOC/doc/latex/latex-web-companion/ch7/fot.dtd + RELOC/doc/latex/latex-web-companion/ch7/inv1html.pl + RELOC/doc/latex/latex-web-companion/ch7/inv2css.html.save + RELOC/doc/latex/latex-web-companion/ch7/inv2html.pl + RELOC/doc/latex/latex-web-companion/ch7/inv2lat.pl + RELOC/doc/latex/latex-web-companion/ch7/inv3.xml + RELOC/doc/latex/latex-web-companion/ch7/invcss.html.save + RELOC/doc/latex/latex-web-companion/ch7/invfo1.fop + RELOC/doc/latex/latex-web-companion/ch7/invfo1.out + RELOC/doc/latex/latex-web-companion/ch7/invfo1.pdf + RELOC/doc/latex/latex-web-companion/ch7/invfo1.xsl + RELOC/doc/latex/latex-web-companion/ch7/invhtml.dsl + RELOC/doc/latex/latex-web-companion/ch7/invhtml2.xsl + RELOC/doc/latex/latex-web-companion/ch7/invit.css + RELOC/doc/latex/latex-web-companion/ch7/invitation.dsl + RELOC/doc/latex/latex-web-companion/ch7/invitation.dtd + RELOC/doc/latex/latex-web-companion/ch7/invitation.fot + RELOC/doc/latex/latex-web-companion/ch7/invitation.sty + RELOC/doc/latex/latex-web-companion/ch7/invitation.tex.save + RELOC/doc/latex/latex-web-companion/ch7/invitation.xml + RELOC/doc/latex/latex-web-companion/ch7/invitation2.dtd + RELOC/doc/latex/latex-web-companion/ch7/invitation2.xml + RELOC/doc/latex/latex-web-companion/ch7/invitationfr.sty + RELOC/doc/latex/latex-web-companion/ch7/invlat1.xsl + RELOC/doc/latex/latex-web-companion/ch7/invtab1.dsl + RELOC/doc/latex/latex-web-companion/ch7/invtab2.dsl + RELOC/doc/latex/latex-web-companion/ch7/makesum.xml + RELOC/doc/latex/latex-web-companion/ch7/makesum.xsl + RELOC/doc/latex/latex-web-companion/ch7/sectionexa.xml + RELOC/doc/latex/latex-web-companion/ch7/sectionexa.xsl + RELOC/doc/latex/latex-web-companion/ch7/sgmlspl.pl + RELOC/doc/latex/latex-web-companion/ch7/skel.pl + RELOC/doc/latex/latex-web-companion/ch7/style-sheet.dtd + RELOC/doc/latex/latex-web-companion/ch7/templatest.xml + RELOC/doc/latex/latex-web-companion/ch7/templatest.xsl + RELOC/doc/latex/latex-web-companion/ch7/templatestnok.xsl + RELOC/doc/latex/latex-web-companion/ch7/templatestok.xsl + RELOC/doc/latex/latex-web-companion/ch7/test-SGMLS.pl + RELOC/doc/latex/latex-web-companion/ch7/writefile.xsl + RELOC/doc/latex/latex-web-companion/ch7/writefiles.xml + RELOC/doc/latex/latex-web-companion/ch7/wrong.xml + RELOC/doc/latex/latex-web-companion/ch7/xml.dcl + RELOC/doc/latex/latex-web-companion/ch7/xsl.xml + RELOC/doc/latex/latex-web-companion/ch7/xslexa1.xsl +catalogue-ctan /info/examples/lwc +catalogue-license lppl +catalogue-topics book-ex + +name latex2e-help-texinfo +category Package +revision 57213 +shortdesc Unofficial reference manual covering LaTeX2e +relocated 1 +longdesc The manual is provided as Texinfo source (which was originally +longdesc derived from the VMS help file in the DECUS TeX distribution of +longdesc 1990, with many subsequent changes). This is a collaborative +longdesc development, and details of getting involved are to be found on +longdesc the package home page. A French translation is available as a +longdesc separate package. All the other formats in the distribution are +longdesc derived from the Texinfo source, as usual. +containersize 708 +containerchecksum 914b0959cd94f13c8c8a9e3bf4ce88988816298853d73e02ef3bef24a03e621a43d6e7e2a33a0253991c32c4a02b87bff7eb6d6a8cec7f4ca80142308c4d79bd +doccontainersize 1725896 +doccontainerchecksum d659abed2563ca91820af487693cc91919ee3ae10c077c40a27fdbcc5ef1b7fc223007945bfe15ba6e5e8c2522b0f46c78810342cbebf9a6e9a96563d42c583e +docfiles size=1700 + RELOC/doc/info/latex2e.info + RELOC/doc/latex/latex2e-help-texinfo/ChangeLog + RELOC/doc/latex/latex2e-help-texinfo/Makefile + RELOC/doc/latex/latex2e-help-texinfo/NEWS + RELOC/doc/latex/latex2e-help-texinfo/README details="Package Readme" + RELOC/doc/latex/latex2e-help-texinfo/aspell.en.pws + RELOC/doc/latex/latex2e-help-texinfo/common.texi + RELOC/doc/latex/latex2e-help-texinfo/graphics/README details="Package Readme" + RELOC/doc/latex/latex2e-help-texinfo/graphics/asy/list.asy + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.eps + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.pdf + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.png + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.txt + RELOC/doc/latex/latex2e-help-texinfo/latex2e.css + RELOC/doc/latex/latex2e-help-texinfo/latex2e.dbk + RELOC/doc/latex/latex2e-help-texinfo/latex2e.html details="HTML conversion of the source (English)" + RELOC/doc/latex/latex2e-help-texinfo/latex2e.pdf details="PDF conversion of the source (English)" + RELOC/doc/latex/latex2e-help-texinfo/latex2e.texi + RELOC/doc/latex/latex2e-help-texinfo/latex2e.txt + RELOC/doc/latex/latex2e-help-texinfo/latex2e.xml + RELOC/doc/latex/latex2e-help-texinfo/ltx-help.el +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman +catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/ +catalogue-contact-support https://lists.tug.org/latexrefman +catalogue-ctan /info/latex2e-help-texinfo +catalogue-license other-free +catalogue-topics ref-latex documentation spanish-doc + +name latex2e-help-texinfo-fr +category Package +revision 57275 +shortdesc A French translation of "latex2e-help-texinfo" +relocated 1 +longdesc This package provides a complete French translation of +longdesc latex2e-help-texinfo. +containersize 448 +containerchecksum d531614aca1d80614fd6fd8f56ff8c5542c5c2f1c944083d151317820b9019395a7d3ec4daf91d7afc53d3852aee1fbfaa6ece12bc08783d508e996b330e5059 +doccontainersize 1768004 +doccontainerchecksum 91f4166da251720271be473412764934212e19fbe21a4487245a0b19e08967c2693b81c89d98788ff7a768f1da462a5cd44aeec95ac459c912e0f128ebe65ecc +docfiles size=1709 + RELOC/doc/info/latex2e-fr.info + RELOC/doc/latex/latex2e-help-texinfo-fr/ChangeLog + RELOC/doc/latex/latex2e-help-texinfo-fr/Makefile + RELOC/doc/latex/latex2e-help-texinfo-fr/NEWS-fr + RELOC/doc/latex/latex2e-help-texinfo-fr/README details="Readme" + RELOC/doc/latex/latex2e-help-texinfo-fr/aspell.fr.pws + RELOC/doc/latex/latex2e-help-texinfo-fr/common.texi + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.dbk + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.html details="HTML conversion of the source (French)" language="fr" + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.pdf details="PDF conversion of the source (French)" language="fr" + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.texi + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.txt + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.xml + RELOC/doc/latex/latex2e-help-texinfo-fr/ltx-help.el +catalogue-contact-bugs https://lists.tug.org/latexrefman +catalogue-contact-home https://puszcza.gnu.org.ua/software/latexrefman/ +catalogue-ctan /info/latex2e-help-texinfo-fr +catalogue-license pd +catalogue-topics ref-latex documentation french-doc + +name latex2e-help-texinfo-spanish +category Package +revision 57213 +catalogue latex2e-help-texinfo +shortdesc Unofficial reference manual covering LaTeX2e +relocated 1 +longdesc The manual is provided as Texinfo source (which was originally +longdesc derived from the VMS help file in the DECUS TeX distribution of +longdesc 1990, with many subsequent changes). This is a collaborative +longdesc development, and details of getting involved are to be found on +longdesc the package home page. A French translation is available as a +longdesc separate package. All the other formats in the distribution are +longdesc derived from the Texinfo source, as usual. +containersize 712 +containerchecksum d6181f2049056c06911b5eabe977d07d24099bc2bfbfee3ff4d2bee811af9b2a6165fd8ee464fe68172f5b8d47d85ac9ae973a2bbe8dcbe0529c9d68d9c3c692 +doccontainersize 873268 +doccontainerchecksum 8b8bc956d914b97d2679274e6f3e4ef62022eaf32e20dbac83e0c995e0c85ae33e8cf707f94a2ae9890747bedcc27ec46f627dd4a2923f10a4a7ec62d039194e +docfiles size=758 + RELOC/doc/info/latex2e-es.info + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.dbk + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.html details="HTML conversion of the source (Spanish)" language="es" + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.pdf + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.texi + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.txt + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.xml +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman +catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/ +catalogue-contact-support https://lists.tug.org/latexrefman +catalogue-ctan /info/latex2e-help-texinfo +catalogue-license other-free +catalogue-topics ref-latex documentation spanish-doc + +name latex2man +category Package +revision 49249 +shortdesc Translate LaTeX-based manual pages into Unix man format +longdesc Latex2man is a tool to translate UNIX manual pages written with +longdesc LaTeX into the troff format understood by the UNIX man(1) +longdesc command. Alternatively HTML, TexInfo, or LaTeX code can be +longdesc produced too. Output of parts of the text may be supressed +longdesc using the conditional text feature (for this, LaTeX generation +longdesc may be used). There is a LaTeX package (latex2man.sty) for +longdesc writing the man page and a Perl script (latex2man) that does +longdesc the actual translation. +depend latex2man.ARCH +containersize 14088 +containerchecksum 9ce1870958d7de7625fe73dfb735488d2512b048c8c06fed3f87255db0914080675017d24c88a97ec71ddb9cfe6f5769ea378f099d8787e447837a1ff5167436 +doccontainersize 369336 +doccontainerchecksum 214685e6982c7a9c694d74a73d37c58f3947d7304637d2ed44fc616cece6026e5d02763f26e280ab21212d18a962c31b4ac5315fa840f10bf1efcfb782f4dd2a +docfiles size=146 + texmf-dist/doc/info/latex2man.info + texmf-dist/doc/man/man1/latex2man.1 + texmf-dist/doc/man/man1/latex2man.man1.pdf + texmf-dist/doc/support/latex2man/CHANGES + texmf-dist/doc/support/latex2man/INSTALL + texmf-dist/doc/support/latex2man/Makefile + texmf-dist/doc/support/latex2man/README details="Readme" + texmf-dist/doc/support/latex2man/THIS-IS-VERSION-1.29 + texmf-dist/doc/support/latex2man/latex2man-CHANGES.html + texmf-dist/doc/support/latex2man/latex2man.css + texmf-dist/doc/support/latex2man/latex2man.html details="Package documentation (HTML)" + texmf-dist/doc/support/latex2man/latex2man.inc + texmf-dist/doc/support/latex2man/latex2man.pdf details="Package documentation (PDF)" + texmf-dist/doc/support/latex2man/latex2man.tex + texmf-dist/doc/support/latex2man/latex2man.texi + texmf-dist/doc/support/latex2man/latex2man.trans + texmf-dist/doc/support/latex2man/latex2man.txt +runfiles size=17 + texmf-dist/scripts/latex2man/latex2man + texmf-dist/tex/latex/latex2man/latex2man.cfg + texmf-dist/tex/latex/latex2man/latex2man.sty +catalogue-contact-home http://www.informatik-vollmer.de/software/latex2man.php +catalogue-ctan /support/latex2man +catalogue-license lppl1 +catalogue-topics cvt-other +catalogue-version 1.29 + +name latex2man.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex2man +containersize 340 +containerchecksum 8bcbf3dc3e171ff2a322f7cfa99f46bfdfbf78d99700e09cde1cb871bab2b99bdb4433322fcfa0b3e95afb36176c5f73a0e81ed4ec6e30a08bf13674988ca42a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex2man + +name latex2man.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of latex2man +containersize 340 +containerchecksum acac883579a058c814642a87c62446c129b8e122afbc30b4b1873e1b96722deb75045a95415dba40bb3bb35939a2ede3680c973a27b53490c62c4212e6a58838 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex2man + +name latex2man.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latex2man +containersize 340 +containerchecksum 8af7e9322c78713096d7bc31ca93ca692eda7f60164ed2d284ed7d08007261c04c595d8f6b6c222da05214c2e945f4ede1d8cf81c38862a5321a8748d4063e52 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex2man + +name latex2man.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latex2man +containersize 340 +containerchecksum d70dbf4a9a31a1d36dc1f31cca6162206b0ebd033f615cf1dcf4fb1f1c9fcdd0c06155c753924d59d777376a6a52f3424ce228ee47cea507edb5885c734bbea4 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex2man + +name latex2man.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of latex2man +containersize 336 +containerchecksum e91746e3b185d2dfc04b25adcc7ec3ef6bc1aa485abab5ed139927ac372ad8cd9705912915bc494030b0b2fd14deba207b96c65e12af9b6800276959797eca62 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex2man + +name latex2man.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of latex2man +containersize 340 +containerchecksum 6f00dd032eb3a93e243846652a84697821a717b9dbf94d22334fd9995acaff9218d9befab64e85c9fe74b3f8b06200ec79fbaf78758245f0460704b4ea19a31c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex2man + +name latex2man.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of latex2man +containersize 340 +containerchecksum be4ff3e4917489c368278817c886d15712c17f95aa3a1fce3a4d00c82e8888d86fd34f59fe6e24f7268a5aa9695b591cc1ce849bd257e9aca27ce915665b1dd7 +binfiles arch=i386-linux size=1 + bin/i386-linux/latex2man + +name latex2man.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latex2man +containersize 340 +containerchecksum 72ffbdef52f47f3a5c2095f74fa737e9e2f584c01bef2e45ce0b7994a37cc2e164fc301e340f22f79d811a6d5b70d0b3c24b22118ee20a96b8ff6b0005d6ddfe +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex2man + +name latex2man.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of latex2man +containersize 340 +containerchecksum ef7b3d1022eebd31274e51d767416f0b2fa44d5f7d6fa13de6b3ad814b3318335375c2b6895f9b9d9dc505466f832de74b3c07d808bf4ddfb25774ea574b96a5 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex2man + +name latex2man.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latex2man +containersize 340 +containerchecksum 1e901e3809956ec0c0d94e678364fa063ef56c93bc46fb07016cff9724e0956d9a9ba24ff460fd0c511f8cfa80d2dffa56feb9d1fa0d9fbd817dc465aed05868 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latex2man + +name latex2man.win32 +category Package +revision 15404 +shortdesc win32 files of latex2man +containersize 684 +containerchecksum 1cafd038a94c11980b17f6828e4bcf454fa14457391a017c574476d403405f82192a075a4f0a71db5a756349028b2dba75d142efaa872815867d9e3d42ddafa4 +binfiles arch=win32 size=1 + bin/win32/latex2man.exe + +name latex2man.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latex2man +containersize 340 +containerchecksum 1de55422d1e375c1da424b12d538ba97e504d309fe2914412e5a0782029a6fbac78a72e8a752ebbc3eab3bffdb378c84114a98165427278416818172b2372ff8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex2man + +name latex2man.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex2man +containersize 348 +containerchecksum 41ead27fc16025fce6ab463780524ad1facc78fbcaa58aceb44df8f3d3715a9ea79fe737b825ad6738569bc5fc6710bb3950b7321d23e236c1de7c6b960f1719 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex2man + +name latex2man.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of latex2man +containersize 340 +containerchecksum a3442935d1017436450bdfd166968fee6df1343ead96c24a952d46133f8a69390e8934d1f2f3cab22b30e7cf61d0f09d7c2631f69557183e2dd2b04a078cf098 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex2man + +name latex2man.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex2man +containersize 344 +containerchecksum c2713d8a140923fff24e3547bd976ca73c191deb5b3c0c2c6f7641c05f235411afe39dc713c5cb2168d69d8ee1ca12b948fdecbb93fbd9afb31809b8b12f89f1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex2man + +name latex2man.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of latex2man +containersize 340 +containerchecksum 977d379c2cde1dd46ae65a0ecc87d6c1f40a4d37f093ae749de2d8df36169a85cc091b7b3dea192d29bc4cce57f9e4771f5e999a31833725491b6b89f9609c56 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex2man + +name latex2nemeth +category Package +revision 54389 +shortdesc Convert LaTeX source to Braille with math in Nemeth +longdesc After many failed attempts to transcribe real math notes and +longdesc books to Braille/Nemeth in order to deal with a real situation +longdesc (blind student in Math Dept.), we decided to develop a new +longdesc program that follows a direct, from LaTeX to Braille/Nemeth, +longdesc approach. Other attempts (such as tex4ht) failed because they +longdesc all needed an extra step to go from xml to Braille, and this +longdesc step (say, with liblouis) produced incomprehensible output +longdesc (liblouis focuses on Office apps). Our main target was the +longdesc Greek language which is only Braille level 1, but English at +longdesc level 1 is supported as well. Simple pictures in PSTricks are +longdesc also supported in order to produce tactile graphics with +longdesc specialized equipment. Note that embossing will need +longdesc LibreOffice and odt2braille as this project does not deal with +longdesc embossers' drivers. +depend latex2nemeth.ARCH +containersize 7125616 +containerchecksum 37065f9916e6755c1a97f2b8a1f1cfd838008b5da2d2131938626ae4eb6872af30e5b4b767ff3204e271a86b7245b54d9146d9fdd8c807f882ca28e1663d2d14 +doccontainersize 26836 +doccontainerchecksum e2ea8084bec4d41a4b694c3b46788e3170043ba1f7ce4096bf029a4de61b76cb504b532d7e0c454943980d44d1c145a78a9e4a7f20a6654aa9cca63d388bdb5a +docfiles size=42 + texmf-dist/doc/support/latex2nemeth/README details="Readme" + texmf-dist/doc/support/latex2nemeth/encodings/polytonic.json + texmf-dist/doc/support/latex2nemeth/examples/mathpics.tex + texmf-dist/doc/support/latex2nemeth/examples/mathtest.tex + texmf-dist/doc/support/latex2nemeth/examples/nemeth.json + texmf-dist/doc/support/latex2nemeth/gpl-3.0.txt +runfiles size=1947 + texmf-dist/scripts/latex2nemeth/latex2nemeth + texmf-dist/scripts/latex2nemeth/latex2nemeth-v1.0.2.jar +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/braille/index-en.html +catalogue-ctan /support/latex2nemeth +catalogue-license gpl3 +catalogue-topics cvt-other maths accessible +catalogue-version 1.0.2 + +name latex2nemeth.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex2nemeth +containersize 344 +containerchecksum 6ae7620a7ddd20dd9eaf175b879db5a22274881327e4185092d5260fcb17d1b9e814cafbcbcac1b0166b45151110904443de06005bc439892c6bc1740972e937 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex2nemeth + +name latex2nemeth.amd64-freebsd +category Package +revision 42300 +shortdesc amd64-freebsd files of latex2nemeth +containersize 344 +containerchecksum 38d6b5f1cc8ce766fc8de1441bff0b4bb00dbd48b5236bc2fcbc569e4677c46f6ff55dddc368043a0094d85f080f0cdf363e6f60d6a5bb1f0ccf2bf2c99ef6fa +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex2nemeth + +name latex2nemeth.amd64-netbsd +category Package +revision 42300 +shortdesc amd64-netbsd files of latex2nemeth +containersize 344 +containerchecksum 294b49ba6c18d7d53d5cfb8da1969889358caa57839b1460bb18a2de085c33675a9da930ddc21b73eeed3bd70c3686d0dfe1e35c46826d26b9ae03ec7d327a9a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex2nemeth + +name latex2nemeth.armhf-linux +category Package +revision 42300 +shortdesc armhf-linux files of latex2nemeth +containersize 340 +containerchecksum f76abf0ab25b94f918604d5e2fbd52b651ee05a73d03a8c8a8cc5eb65746942f8ced3f20cb5d8b39fcf454ca406f272a496baf1daa16441af9ecfde3bab5edbb +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex2nemeth + +name latex2nemeth.i386-cygwin +category Package +revision 42300 +shortdesc i386-cygwin files of latex2nemeth +containersize 340 +containerchecksum ac144ec03445736c785b2a652b46a8c95033781e8989e780ba4c732eba934141b09866a5b51338147c89ffef8340c594d2f9060223f24d700d954ba94b63a025 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex2nemeth + +name latex2nemeth.i386-freebsd +category Package +revision 42300 +shortdesc i386-freebsd files of latex2nemeth +containersize 344 +containerchecksum 2d31d8de13e0a52f80c42c95f72166ec8580020852f482ac38678ea621b6330c01d0ec9a702e82370ba6f8e3025edc0ccfbc43552846747b4f37ce9df453b7e9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex2nemeth + +name latex2nemeth.i386-linux +category Package +revision 42300 +shortdesc i386-linux files of latex2nemeth +containersize 344 +containerchecksum d6f3876cc46169500342c55918548f6fe348f642b800de018363168c419c5ff882b8c3a45cc0ed6600f084c18bc1533ee8878229b5cd2b5d0673d802b0e39226 +binfiles arch=i386-linux size=1 + bin/i386-linux/latex2nemeth + +name latex2nemeth.i386-netbsd +category Package +revision 42300 +shortdesc i386-netbsd files of latex2nemeth +containersize 344 +containerchecksum 530972fadfd2ffee63a82b6f7fbd8c82c43eb156af47d7b8b1451866384675a09ccbcd4fd2f36949ee20eedafaffa4fe74c40546ea2862aedec560afc7af1632 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex2nemeth + +name latex2nemeth.i386-solaris +category Package +revision 42300 +shortdesc i386-solaris files of latex2nemeth +containersize 340 +containerchecksum 714617caf7e5a6313581670e7e6b1ecdda02ce25f42e9416df3650620c366a2c53bd1eeb1134a40e9f4b6ef35be43079e0df639d32c0c5162271c2b35a9bfc81 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex2nemeth + +name latex2nemeth.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latex2nemeth +containersize 344 +containerchecksum 139d1deef9f953d46306123b0e0c6f73633acc9436995a4d668d8e1a139528e9857015989a40777c9c105842ee5fafe78d7e78d9c23a258c45292f57967a427a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latex2nemeth + +name latex2nemeth.win32 +category Package +revision 42300 +shortdesc win32 files of latex2nemeth +containersize 688 +containerchecksum 742ca9f2d901077a554c4114c6fca696bc3b677dd8d5b579a9c4e4537cef99de1b6a3a801c8cb3e15764d35ad3592aae81a0ed5ef19bb1531920ff542846ce2c +binfiles arch=win32 size=1 + bin/win32/latex2nemeth.exe + +name latex2nemeth.x86_64-cygwin +category Package +revision 42300 +shortdesc x86_64-cygwin files of latex2nemeth +containersize 344 +containerchecksum 4a2155bca9cd2be553d23e268f07484acf28950e0c582c6e91210609d8b40c678aa72bf06a6cb9383b310f3a13ed87cf23ee2e6db3aeb76f2e81f2e4d4a1e720 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex2nemeth + +name latex2nemeth.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex2nemeth +containersize 348 +containerchecksum 259d02b352b3d206289672d98eeedfeefcf4f2941d16d0882ab9562b0a4d181258f836f73555720f73342f6e35a2ab48f4a2133e67b1715087dc7f9604b3e095 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex2nemeth + +name latex2nemeth.x86_64-linux +category Package +revision 42300 +shortdesc x86_64-linux files of latex2nemeth +containersize 340 +containerchecksum 70d0de15e6be915561e04ad3d230e3daf00f01cefdfe877bda998f0c5abf2937f24b33dff92134a3f590c54ea5fc5192bffaf58f4c838c6a7fe6ca42082ad034 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex2nemeth + +name latex2nemeth.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex2nemeth +containersize 348 +containerchecksum 3f9c75fa418a2b413d4ead1bda658c75831afafc85e5017a33ac5f5ac93bd1b1d9c6314fb0856708ee89ee4e853a2c9990f31c3dbfacac828e6ee16abf6e3923 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex2nemeth + +name latex2nemeth.x86_64-solaris +category Package +revision 42300 +shortdesc x86_64-solaris files of latex2nemeth +containersize 344 +containerchecksum 863e687e95ce383cf356f18bcd8f0f508f3e88471f7a1eb12546fec55adb9e04481e54524f6b8e5d5b78d8a6b9f66bf07ec5ee30ef404cb01b72c8b12c51becc +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex2nemeth + +name latex4musicians +category Package +revision 49759 +shortdesc A guide for combining LaTeX and music +relocated 1 +longdesc This guide, "LaTeX for Musicians", explains how to create LaTeX +longdesc documents that include several kinds of music elements: music +longdesc symbols, song lyrics, guitar chords diagrams, lead sheets, +longdesc music excerpts, guitar tablatures, multi-page scores. +containersize 524 +containerchecksum a37c75d55857e9680b8e4b0f59f1889f3b5198477212ea531aa6bbf9ea11dbae06fef7fdba9e706f016c6c0618eebe4ddb81ba73b48979683a22592a0adb119a +doccontainersize 1340360 +doccontainerchecksum 738c2c467d9df87cb1eccf0442b5c94a97a3c4c2b329d78d80b05d2adf9e3be11aaf2fb407ebc29f07e6455e6533464d981ae65122b080aebabdfaa29cf71b61 +docfiles size=705 + RELOC/doc/latex/latex4musicians/Figures/Makefile.sb + RELOC/doc/latex/latex4musicians/Figures/abctab.abc + RELOC/doc/latex/latex4musicians/Figures/abctab.ly + RELOC/doc/latex/latex4musicians/Figures/bravura.tex + RELOC/doc/latex/latex4musicians/Figures/breeches.abc + RELOC/doc/latex/latex4musicians/Figures/chordii.cho + RELOC/doc/latex/latex4musicians/Figures/chords.tex + RELOC/doc/latex/latex4musicians/Figures/drowsy.abc + RELOC/doc/latex/latex4musicians/Figures/fellow.abc + RELOC/doc/latex/latex4musicians/Figures/gchords.tex + RELOC/doc/latex/latex4musicians/Figures/gcschemes.tex + RELOC/doc/latex/latex4musicians/Figures/gdiagram.tex + RELOC/doc/latex/latex4musicians/Figures/glyphs.tex + RELOC/doc/latex/latex4musicians/Figures/glyphs_ls.tex + RELOC/doc/latex/latex4musicians/Figures/gtablature.ly + RELOC/doc/latex/latex4musicians/Figures/gtrcrd.tex + RELOC/doc/latex/latex4musicians/Figures/guitar.tex + RELOC/doc/latex/latex4musicians/Figures/guitartabs.tex + RELOC/doc/latex/latex4musicians/Figures/happyb.abc + RELOC/doc/latex/latex4musicians/Figures/jingle.ly + RELOC/doc/latex/latex4musicians/Figures/julia.abc + RELOC/doc/latex/latex4musicians/Figures/kyrie.gabc + RELOC/doc/latex/latex4musicians/Figures/kyrie.tex + RELOC/doc/latex/latex4musicians/Figures/leadsheets.tex + RELOC/doc/latex/latex4musicians/Figures/lilyglyphs.tex + RELOC/doc/latex/latex4musicians/Figures/lilytab.ly + RELOC/doc/latex/latex4musicians/Figures/mtxlatex.sty + RELOC/doc/latex/latex4musicians/Figures/musicography.tex + RELOC/doc/latex/latex4musicians/Figures/musixguit.tex + RELOC/doc/latex/latex4musicians/Figures/musixtab.tex + RELOC/doc/latex/latex4musicians/Figures/notes.abc + RELOC/doc/latex/latex4musicians/Figures/pdfcrop.sh + RELOC/doc/latex/latex4musicians/Figures/sample-abc-all.tex + RELOC/doc/latex/latex4musicians/Figures/sample-abc.abc + RELOC/doc/latex/latex4musicians/Figures/sample-abc.tex + RELOC/doc/latex/latex4musicians/Figures/sample-all.tex + RELOC/doc/latex/latex4musicians/Figures/sample-includeall.tex + RELOC/doc/latex/latex4musicians/Figures/sample-latexmtx.ltx + RELOC/doc/latex/latex4musicians/Figures/sample-lilybook.lytex + RELOC/doc/latex/latex4musicians/Figures/sample-lilypond.ly + RELOC/doc/latex/latex4musicians/Figures/sample-lyluatex.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mlatex.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mtex.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mtx.mtx + RELOC/doc/latex/latex4musicians/Figures/sample-mtx.pmx + RELOC/doc/latex/latex4musicians/Figures/sample-mtx.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mup.mup + RELOC/doc/latex/latex4musicians/Figures/sample-musixtex-tab.tex + RELOC/doc/latex/latex4musicians/Figures/sample-pmw.pmw + RELOC/doc/latex/latex4musicians/Figures/sample-songbook.orig.tex + RELOC/doc/latex/latex4musicians/Figures/sample-songbook.tex + RELOC/doc/latex/latex4musicians/Figures/scale.mtx + RELOC/doc/latex/latex4musicians/Figures/scale.pmx + RELOC/doc/latex/latex4musicians/Figures/scale.tex + RELOC/doc/latex/latex4musicians/Figures/scale1.abc + RELOC/doc/latex/latex4musicians/Figures/shave.abc + RELOC/doc/latex/latex4musicians/Figures/shave.ly + RELOC/doc/latex/latex4musicians/Figures/sheet.abc + RELOC/doc/latex/latex4musicians/Figures/songbook.tex + RELOC/doc/latex/latex4musicians/Figures/songs.tex + RELOC/doc/latex/latex4musicians/Figures/songs_all.tex + RELOC/doc/latex/latex4musicians/Figures/songs_g.tex + RELOC/doc/latex/latex4musicians/Figures/twinkle.abc + RELOC/doc/latex/latex4musicians/Figures/verses-chords.tex + RELOC/doc/latex/latex4musicians/Figures/warm.abc + RELOC/doc/latex/latex4musicians/HOW-TO-TYPESET.md + RELOC/doc/latex/latex4musicians/Makefile + RELOC/doc/latex/latex4musicians/README details="Readme" + RELOC/doc/latex/latex4musicians/TODO + RELOC/doc/latex/latex4musicians/abctab.pdf + RELOC/doc/latex/latex4musicians/bravura.pdf + RELOC/doc/latex/latex4musicians/chordii.pdf + RELOC/doc/latex/latex4musicians/chords.pdf + RELOC/doc/latex/latex4musicians/crop.sh + RELOC/doc/latex/latex4musicians/gchords.pdf + RELOC/doc/latex/latex4musicians/gcschemes.pdf + RELOC/doc/latex/latex4musicians/gdiagram.pdf + RELOC/doc/latex/latex4musicians/glyphs.pdf + RELOC/doc/latex/latex4musicians/glyphs_ls.pdf + RELOC/doc/latex/latex4musicians/gtablature.pdf + RELOC/doc/latex/latex4musicians/gtrcrd.pdf + RELOC/doc/latex/latex4musicians/guidopiper.jpeg + RELOC/doc/latex/latex4musicians/guitar.pdf + RELOC/doc/latex/latex4musicians/guitartabs.pdf + RELOC/doc/latex/latex4musicians/jingle.midi + RELOC/doc/latex/latex4musicians/jingle.pdf + RELOC/doc/latex/latex4musicians/kyrie.pdf + RELOC/doc/latex/latex4musicians/latex4musicians.pdf details="The document itself" + RELOC/doc/latex/latex4musicians/latex4musicians.tex + RELOC/doc/latex/latex4musicians/leadsheets.pdf + RELOC/doc/latex/latex4musicians/lilyglyphs.pdf + RELOC/doc/latex/latex4musicians/lilytab.pdf + RELOC/doc/latex/latex4musicians/musicography.pdf + RELOC/doc/latex/latex4musicians/musixguit.pdf + RELOC/doc/latex/latex4musicians/params.tex + RELOC/doc/latex/latex4musicians/pdfcrop.sh + RELOC/doc/latex/latex4musicians/pdfl.sh + RELOC/doc/latex/latex4musicians/pdfx.sh + RELOC/doc/latex/latex4musicians/sample-abc-all.pdf + RELOC/doc/latex/latex4musicians/sample-abc.pdf + RELOC/doc/latex/latex4musicians/sample-all.pdf + RELOC/doc/latex/latex4musicians/sample-latexmtx.pdf + RELOC/doc/latex/latex4musicians/sample-lilybook.pdf + RELOC/doc/latex/latex4musicians/sample-lyluatex.pdf + RELOC/doc/latex/latex4musicians/sample-mlatex.pdf + RELOC/doc/latex/latex4musicians/sample-mtex.pdf + RELOC/doc/latex/latex4musicians/sample-mtx.pdf + RELOC/doc/latex/latex4musicians/sample-musixtex-tab.pdf + RELOC/doc/latex/latex4musicians/sample-pmw.pdf + RELOC/doc/latex/latex4musicians/sample-songbook.pdf + RELOC/doc/latex/latex4musicians/sheet.pdf + RELOC/doc/latex/latex4musicians/songbook.pdf + RELOC/doc/latex/latex4musicians/songs.pdf + RELOC/doc/latex/latex4musicians/songs_g.pdf + RELOC/doc/latex/latex4musicians/verses-chords.pdf +catalogue-ctan /info/latex4musicians +catalogue-license fdl +catalogue-topics music tutorial tut-latex +catalogue-version 1.0.1 + +name latex4wp +category Package +revision 35999 +shortdesc A LaTeX guide specifically designed for word processor users +relocated 1 +longdesc "LaTeX for Word Processor Users" is a guide that helps +longdesc converting knowledge and techniques of word processing into the +longdesc LaTeX typesetting environment. It aims at helping WP users use +longdesc LaTeX instead. +containersize 504 +containerchecksum 64ce122ac380c4f2c06d3afe2cf1aa2af2dd6d29fc451ced9df05206c97dc0343e6867d770d9b4e1c0425ea41ef89cb2d0a003d43cddf82ea19a7b33d383b7ca +doccontainersize 785532 +doccontainerchecksum e8f22deb966044c87e7414d828ae3d8bfabfda40bdebb4b26b712692020c785ad8688595cced27ea5993c8b8f34f7fbe0cc86180d2ff8bfcc44cc009fd52e936 +docfiles size=240 + RELOC/doc/latex/latex4wp/HOW-TO-TYPESET + RELOC/doc/latex/latex4wp/README details="Readme" + RELOC/doc/latex/latex4wp/dat2tex.sh + RELOC/doc/latex/latex4wp/exa.sty + RELOC/doc/latex/latex4wp/gnuplot.gp + RELOC/doc/latex/latex4wp/gnuplot.pdf + RELOC/doc/latex/latex4wp/inkscape-tb.png + RELOC/doc/latex/latex4wp/inkscape.png + RELOC/doc/latex/latex4wp/latex4wp.pdf details="The document itself" + RELOC/doc/latex/latex4wp/latex4wp.tex + RELOC/doc/latex/latex4wp/midifile.mid + RELOC/doc/latex/latex4wp/tbx.eps + RELOC/doc/latex/latex4wp/tbx.pdf + RELOC/doc/latex/latex4wp/tbx.tex +catalogue-ctan /info/latex4wp +catalogue-license fdl +catalogue-topics documentation fac-survey +catalogue-version 1.0.10 + +name latex4wp-it +category Package +revision 36000 +shortdesc LaTeX guide for word processor users, in Italian +relocated 1 +longdesc The package provides a version of the document in Italian +containersize 420 +containerchecksum 691d8936d71ca825da3a5fb193f8f7067480981b1b9bc93100f54834a7f9500e66785a216110cb1eb5cdd41b538333b693dab8e0e855e546a3eab90c43c48630 +doccontainersize 816780 +doccontainerchecksum c0c527bc7e9e71038316be5c6a57f4200ed69e7ed6fa0f066923cb14d14e20e90213cf0b989d3ba746bdb3e2263cf1daba56db3073017a0d7582e40640d35fd3 +docfiles size=250 + RELOC/doc/latex/latex4wp-it/COME-COMPORRE + RELOC/doc/latex/latex4wp-it/README details="Readme" language="it" + RELOC/doc/latex/latex4wp-it/dat2tex + RELOC/doc/latex/latex4wp-it/exa.sty + RELOC/doc/latex/latex4wp-it/gnuplot.gp + RELOC/doc/latex/latex4wp-it/gnuplot.pdf + RELOC/doc/latex/latex4wp-it/inkscape-tb.png + RELOC/doc/latex/latex4wp-it/inkscape.png + RELOC/doc/latex/latex4wp-it/latex4wp-it.pdf details="The document itself" language="it" + RELOC/doc/latex/latex4wp-it/latex4wp-it.tex + RELOC/doc/latex/latex4wp-it/midifile.mid + RELOC/doc/latex/latex4wp-it/tbx.eps + RELOC/doc/latex/latex4wp-it/tbx.pdf + RELOC/doc/latex/latex4wp-it/tbx.tex +catalogue-ctan /info/latex4wp-it +catalogue-license fdl +catalogue-topics italian-doc fac-survey +catalogue-version 1.0.10 + +name latexbangla +category Package +revision 55475 +shortdesc Enhanced LaTeX integration for Bangla +relocated 1 +longdesc This package simplifies the process of writing Bangla in LaTeX +longdesc and addresses most of the associated typesetting issues. +longdesc Notable features: Automated transition from Bangla to English +longdesc and vice versa. Patch for the unproportionate whitespace issue +longdesc in popular Bangla fonts. Full support for all the common +longdesc commands and environments. Bangla numbering for page, section, +longdesc chapter, footnotes etc. (extending polyglossia's support). New +longdesc theorem, problems, example, solution and other environments, +longdesc all of which are in Bangla. +containersize 3268 +containerchecksum 8b61b8aee0e95339b356fa85b9bb7ad3833ccf410267eb31a84a811c25c4e34ac350952fa26ed6461468bfeca37121e809ba560fbed7a0d8e747613708ff7795 +doccontainersize 147412 +doccontainerchecksum 8d8c686edbf3e70e70fa577c7d09f2e3d3f1ab938253ed01892ba030be0ba948bba48d67503a6f215628e03160bb32878f868d8a72b5a0d65ce3400fb9011ac9 +docfiles size=41 + RELOC/doc/latex/latexbangla/README details="Readme" + RELOC/doc/latex/latexbangla/latexbangla.pdf details="Package documentation" + RELOC/doc/latex/latexbangla/latexbangla.tex +runfiles size=2 + RELOC/tex/latex/latexbangla/latexbangla.sty +catalogue-ctan /language/bengali/latexbangla +catalogue-license lppl1.3 +catalogue-topics indic bengali +catalogue-version 0.2 + +name latexbug +category Package +revision 58151 +shortdesc Bug-classification for LaTeX related bugs +relocated 1 +longdesc The package is written in order to help identifying the +longdesc rightful addressee for a bug report. The LaTeX team asks that +longdesc it will be loaded in any test file that is intended to be sent +longdesc to the LaTeX bug database as part of a bug report. +containersize 4796 +containerchecksum 167fd3afc056f1a17510ff3040208686d71939e2bcb8f09e4d21ebd57420debd0beb315d0c6623ca2525f8ce7d50c063b3761eadd1764a8d369768edabde2d69 +doccontainersize 186860 +doccontainerchecksum 4875fb2f4533d884259ec3191625b252f2d922ce8e992adf3c58eef2f1263e7c24121e6cc43d16e617da2dc66abbc6dbe9899cf63ee1592c42cf61174d77c763 +docfiles size=48 + RELOC/doc/latex/latexbug/README.md details="Readme" + RELOC/doc/latex/latexbug/changes.txt + RELOC/doc/latex/latexbug/latexbug.pdf details="Package documentation" +srccontainersize 8916 +srccontainerchecksum 2daca13020e5e605e974dbf4da0e83a1941496202b2908f6e4ac40666d715cf4a8edbc9ced512974d88b05812e62c0f2e856c564a9116b95a530dc18e768a0d8 +srcfiles size=9 + RELOC/source/latex/latexbug/latexbug.dtx + RELOC/source/latex/latexbug/latexbug.ins +runfiles size=5 + RELOC/tex/latex/latexbug/latexbug.sty +catalogue-contact-repository https://github.com/latex3/latexbug +catalogue-ctan /macros/latex/required/latexbug +catalogue-license lppl1.3c +catalogue-topics latex-doc latex-devel +catalogue-version 1.0j + +name latexcheat +category Package +revision 15878 +shortdesc A LaTeX cheat sheet +relocated 1 +longdesc A LaTeX reference sheet for writing scientific papers. Unlike +longdesc many other such sheets, this sheet does not focus on +longdesc typesetting mathematics (though it does list some symbols). +containersize 464 +containerchecksum 530041d286048809968d91b20fd40c5ec41eb440fec25bf08f92af0f0fd5e1481a1344ba3c659da4477de353d222f3cb160d75eea2241ccf19b05e63e059ed6f +doccontainersize 155812 +doccontainerchecksum 28abbdc3b53c245b0cfb6ab68549661a72d37df004a5c760f5021e91b1df892b02872c7e20f328c7dd4624edff96f3b1fadfb46cf35d080c6b7c5635dc36adfc +docfiles size=50 + RELOC/doc/latex/latexcheat/README details="Readme" + RELOC/doc/latex/latexcheat/latexsheet.pdf details="The document itself" + RELOC/doc/latex/latexcheat/latexsheet.tex +catalogue-ctan /info/latexcheat/latexcheat +catalogue-license lppl +catalogue-topics tut-cheat +catalogue-version 1.13 + +name latexcheat-de +category Package +revision 35702 +shortdesc A LaTeX cheat sheet, in German +relocated 1 +longdesc This is a translation to German of Winston Chang's LaTeX cheat +longdesc sheet (a reference sheet for writing scientific papers). It has +longdesc been adapted to German standards using the KOMA script document +longdesc classes. +containersize 544 +containerchecksum 84de8075c1ba86467c8b34ed614462953ca8b9a237bb84453b2f9a1482eebfdb628c3e460d38da126416cc111387d68d3f479c5806ecbf06d079e47c35b88ca6 +doccontainersize 528444 +doccontainerchecksum dda8002178b55e155f7ce1f49f57f928b6c5097007daf36aa473c1a2d07aef4c3ec5e1c238537c0531731af0cb0d51804b0c0310be63954f112f266e737c7d37 +docfiles size=136 + RELOC/doc/latex/latexcheat-de/README details="Readme (in German)" language="de" + RELOC/doc/latex/latexcheat-de/latexsheet-de.pdf details="The document itself" language="de" + 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-license lppl +catalogue-topics german-doc tut-cheat + +name latexcheat-esmx +category Package +revision 36866 +shortdesc A LaTeX cheat sheet, in Spanish +relocated 1 +longdesc This is a translation to Spanish (Castellano) of Winston +longdesc Chang's LaTeX cheat sheet (a reference sheet for writing +longdesc scientific papers). +containersize 460 +containerchecksum ab9965189096647e8af9aa58a937fa15595bed32055b3819bfd12334cf60e01d18b12563de8169ea28e3c0a7768864e51631c29bbbe47d45e09ffb2b87c5d524 +doccontainersize 467256 +doccontainerchecksum a45f2db2445e2daec8b31e995669a189c1d201f457e06de7fc2a85ad85686b31fcf70040e7840e1168e29b2e5caf796c45b6ce934780fa5982d0750438263606 +docfiles size=130 + RELOC/doc/latex/latexcheat-esmx/README details="Readme" language="es" + 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-license lppl +catalogue-topics spanish-doc tut-cheat +catalogue-version 2.00 + +name latexcheat-ptbr +category Package +revision 15878 +shortdesc A LaTeX cheat sheet, in Brazilian Portuguese +relocated 1 +longdesc This is a translation to Brazilian Portuguese of Winston +longdesc Chang's LaTeX cheat sheet +containersize 424 +containerchecksum e50cd94941704f1a620a7411624ffd61d47aa4ef2944220ef0bfa9fbc428d8ea46be17bb3b18b30d645dcddf3c8091dafa9532f809dee7af230e2133c86b9bf5 +doccontainersize 143516 +doccontainerchecksum 00369fce725567a85310afd3063a4a20e670d8a0c57ef7e4515579ee0f91157f44bac2471b076c2ba51253e2c172447cc4b915877d80b0c43874c4e125f5f9d4 +docfiles size=68 + RELOC/doc/latex/latexcheat-ptbr/README-ptbr details="Readme (in Brazilian Portuguese)" language="pt" + 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-license lppl +catalogue-topics portuguese-doc tut-cheat +catalogue-version 1.13 + +name latexcolors +category Package +revision 49888 +shortdesc Use color definitions from latexcolor.com +relocated 1 +longdesc Built on top of the xcolor package, the latexcolors package +longdesc defines the set of colors shown on latexcolor.com for use in +longdesc documents typeset with LaTeX & friends. +containersize 7712 +containerchecksum b22521df5572411a33ba84b2d7560f0735a6f3a3bab0c6d7ca460e19333fba20ec8852becc618274ca7b7461fac1c42d0e6ce7fb9b7e4349c74bd05e8e1b5faf +doccontainersize 374576 +doccontainerchecksum 5f6f26c2ece42c07b2b2e634308a2a417e12a105d9856d630f483443825615d770ed35f7322f59904b1d8fea9425e0222fe9deff27451a5aec52fac39eb9369e +docfiles size=93 + RELOC/doc/latex/latexcolors/README.md details="Readme" + RELOC/doc/latex/latexcolors/latexcolors.pdf details="Package documentation" +srccontainersize 12256 +srccontainerchecksum 369c0cb2c019ef227c41d38a193f82ca1417158065cf6f0f913d9e4bb7030e6ff3b34fb49157d3e81b9917bd38db454194c3576009be76d9293b365e59619a59 +srcfiles size=17 + RELOC/source/latex/latexcolors/Makefile + RELOC/source/latex/latexcolors/latexcolors.dtx + RELOC/source/latex/latexcolors/latexcolors.ins +runfiles size=10 + RELOC/tex/latex/latexcolors/latexcolors.sty +catalogue-contact-bugs https://github.com/tcpluess/latexcolors/issues +catalogue-contact-repository https://github.com/tcpluess/latexcolors +catalogue-ctan /macros/latex/contrib/latexcolors +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.1a + +name latexconfig +category Package +revision 53525 +shortdesc configuration files for LaTeX-related formats +relocated 1 +containersize 3996 +containerchecksum 2d98dafa5c2b90321ca8600171ba22cc7eff73a23d6d88073c477bcb84de37369ddf682163b7a9dc26ce77fb2b1c174a4f810b66a34b29646ad988a9965d9bb6 +runfiles size=7 + RELOC/tex/latex/latexconfig/epstopdf-sys.cfg + RELOC/tex/latex/latexconfig/latex.ini + RELOC/tex/latex/latexconfig/lualatexiniconfig.tex + RELOC/tex/latex/latexconfig/lualatexquotejobname.lua + RELOC/tex/latex/latexconfig/lualatexquotejobname.tex + RELOC/tex/latex/latexconfig/mllatex.ini + RELOC/tex/latex/latexconfig/pdflatex.ini + +name latexcourse-rug +category Package +revision 39026 +shortdesc A LaTeX course book +relocated 1 +longdesc The package provides the book and practice files for a LaTeX +longdesc course that the author has give several times at the +longdesc Rijksuniversiteit Groningen (Netherlands). +containersize 464 +containerchecksum ab31ee52beb0fe100f4798e6e42673d5284f6f85ccdecf8875f4d058928cab7363507f8cafe6c3c6f437a682f3e0017923d138ff671eea118ca8d2339627fbe0 +doccontainersize 5200392 +doccontainerchecksum aeaeeef2c43a5ddf782a91152c9e2e18f00d9b3e18b7023837920a53eb390652d7ea85afcae338519a00b84a972a723eedd7819e73944ef7015f8c028822fea9 +docfiles size=1438 + RELOC/doc/latex/latexcourse-rug/README details="Readme" + RELOC/doc/latex/latexcourse-rug/latexcourse-rug-sources.zip + 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-license other-free +catalogue-topics course-material +catalogue-version 1.1 + +name latexdemo +category Package +revision 55265 +shortdesc Demonstrate LaTeX code with its resulting output +relocated 1 +longdesc The package provides configurable tools to print out LaTeX code +longdesc and the resulting output in the same document. It also supports +longdesc printing the result inside a conditional sequence; thus one may +longdesc suppress printing if the code would not compile. +containersize 2456 +containerchecksum c93e3d39dd042ddbb32661b3972d153ea3905726fd0961a4162223fee274cea0c95f0978233c4619e00a043189e9d2f2c285767e33890e30ed118f099ef9a5ae +doccontainersize 459344 +doccontainerchecksum 442a42c51eab80a28152a53f62b792108002e912dbb0e9ff6afd41237cdf2e954c57c46b0ddc382c0ff0877ddf9747e22cb7c7ac5fabb79080cdd657a1c1422a +docfiles size=114 + RELOC/doc/latex/latexdemo/README + RELOC/doc/latex/latexdemo/latexdemo.pdf details="Package documentation" +srccontainersize 6176 +srccontainerchecksum 2bfdb3740b0118a362e890257a4f38271d6ac24a4b8712edb5a646eeb8ee14787d913d7d8a171ab9a849667899cad3b2089a9eec2fc7c21bfa21e91d900c9527 +srcfiles size=6 + RELOC/source/latex/latexdemo/latexdemo.dtx + RELOC/source/latex/latexdemo/latexdemo.ins +runfiles size=2 + RELOC/tex/latex/latexdemo/latexdemo.sty +catalogue-ctan /macros/latex/contrib/latexdemo +catalogue-license lppl1.3 +catalogue-topics listing macro-demo +catalogue-version 0.1 + +name latexdiff +category Package +revision 55540 +shortdesc Determine and mark up significant differences between LaTeX files +longdesc Latexdiff is a Perl script for visual mark up and revision of +longdesc significant differences between two LaTeX files. Various +longdesc options are available for visual markup using standard LaTeX +longdesc packages such as color. Changes not directly affecting visible +longdesc text, for example in formatting commands, are still marked in +longdesc the LaTeX source. A rudimentary revision facilility is provided +longdesc by another Perl script, latexrevise, which accepts or rejects +longdesc all changes. Manual editing of the difference file can be used +longdesc to override this default behaviour and accept or reject +longdesc selected changes only. +depend latexdiff.ARCH +containersize 70032 +containerchecksum cd69ad7bea121664c600e77438eee882e71447bfe5ffb034773a72269ea856f41b54b1369aa701b755586e12f121948d9773688f65d6b0bb161e3a052d95c5f6 +doccontainersize 478708 +doccontainerchecksum 33931c4a47ce1ae61119a54caf074049504ea044159afb6a8ad59dcfea1d54782939ef5d2e8f3303f0aa623c64c4dc84a209eefb179fd057b6903ef6c9409f67 +docfiles size=260 + texmf-dist/doc/man/man1/latexdiff-vc.1 + texmf-dist/doc/man/man1/latexdiff-vc.man1.pdf + texmf-dist/doc/man/man1/latexdiff.1 + texmf-dist/doc/man/man1/latexdiff.man1.pdf + texmf-dist/doc/man/man1/latexrevise.1 + texmf-dist/doc/man/man1/latexrevise.man1.pdf + texmf-dist/doc/support/latexdiff/COPYING + texmf-dist/doc/support/latexdiff/Makefile + texmf-dist/doc/support/latexdiff/README details="Package Readme" + texmf-dist/doc/support/latexdiff/contrib/README.latexchanges + texmf-dist/doc/support/latexdiff/contrib/latexchanges.py + texmf-dist/doc/support/latexdiff/contrib/latexdiff-wrap + texmf-dist/doc/support/latexdiff/contrib/latexdiff.spec + texmf-dist/doc/support/latexdiff/doc/example-diff.tex + texmf-dist/doc/support/latexdiff/doc/latexdiff-man.pdf details="Package manual" + texmf-dist/doc/support/latexdiff/doc/latexdiff-man.tex + texmf-dist/doc/support/latexdiff/example/example-draft.tex + texmf-dist/doc/support/latexdiff/example/example-rev.tex + texmf-dist/doc/support/latexdiff/latexdiff + texmf-dist/doc/support/latexdiff/latexdiff-fast +runfiles size=72 + texmf-dist/scripts/latexdiff/latexdiff-vc.pl + texmf-dist/scripts/latexdiff/latexdiff.pl + texmf-dist/scripts/latexdiff/latexrevise.pl +catalogue-contact-repository https://github.com/ftilmann/latexdiff/ +catalogue-ctan /support/latexdiff +catalogue-license gpl3 +catalogue-topics doc-mgmt +catalogue-version 1.3.1.1 + +name latexdiff.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexdiff +containersize 384 +containerchecksum 0a27f7270c784deaa292a419b1f4bda42b671713632b423cd3233f573604c99259dd24376ef67db085092ac125ed5fc939cfbc8dd6deec9104090354e7f30d91 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/latexdiff + bin/aarch64-linux/latexdiff-vc + bin/aarch64-linux/latexrevise + +name latexdiff.amd64-freebsd +category Package +revision 16484 +shortdesc amd64-freebsd files of latexdiff +containersize 388 +containerchecksum a7b06456252578203ca46b299cfa74c8f0755895b92f1d63181dcb87bc588255f7733b8dfaf62d09567478de267b32e420d429598ca21ad5fe4a3d199e1cea10 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/latexdiff + bin/amd64-freebsd/latexdiff-vc + bin/amd64-freebsd/latexrevise + +name latexdiff.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexdiff +containersize 384 +containerchecksum f5ca158ddca2c751dc97c35ee95aac6d996feb58429e5d823ff6555aa6e729c8d822e729934576aeab3507335c91e97772f3762ca149e90513fdd54a098c63eb +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/latexdiff + bin/amd64-netbsd/latexdiff-vc + bin/amd64-netbsd/latexrevise + +name latexdiff.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexdiff +containersize 384 +containerchecksum 908eab874a56315a640e1e83489f05784cfdc7dcab3c4990e3c707a4cfbfac84107bea4ff033043de4691267e1c0126830261e1b106a45234faa001cd4da0dd5 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/latexdiff + bin/armhf-linux/latexdiff-vc + bin/armhf-linux/latexrevise + +name latexdiff.i386-cygwin +category Package +revision 16420 +shortdesc i386-cygwin files of latexdiff +containersize 384 +containerchecksum 23e6f9e796dc1c2e3c4202c6dab5d01d60022d4ba6fbae1f51f79087668ce3d5120866d16b1f0d540b3e7e2fdf994a3fe4c388ca4a32395b8783d3859dc097e1 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/latexdiff + bin/i386-cygwin/latexdiff-vc + bin/i386-cygwin/latexrevise + +name latexdiff.i386-freebsd +category Package +revision 16484 +shortdesc i386-freebsd files of latexdiff +containersize 388 +containerchecksum 3787606ca422dd52aab970a68722b8edae6baa0c3cf11a8f728e984109a629af50b920648555957569d5660ea9879c2eef919269875396efc4e701e2c3c85598 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/latexdiff + bin/i386-freebsd/latexdiff-vc + bin/i386-freebsd/latexrevise + +name latexdiff.i386-linux +category Package +revision 16420 +shortdesc i386-linux files of latexdiff +containersize 384 +containerchecksum 3a91eabf737c0c416585748c52297ae679d4fcc53175cdf73648697f88852773c603e20ed3d977b9f7a51a8c83bd9559fb27dc6ea2aa67bba847ccd0643c329b +binfiles arch=i386-linux size=3 + bin/i386-linux/latexdiff + bin/i386-linux/latexdiff-vc + bin/i386-linux/latexrevise + +name latexdiff.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexdiff +containersize 384 +containerchecksum 8e7dfbe8b25ad7878e6c3aff2a27a19da6d95e53d02d8c03cc1d188f9bedb2b780bc6172680a4948953775a501f9b190b066f69847610173fa32c4369234ff68 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/latexdiff + bin/i386-netbsd/latexdiff-vc + bin/i386-netbsd/latexrevise + +name latexdiff.i386-solaris +category Package +revision 16420 +shortdesc i386-solaris files of latexdiff +containersize 384 +containerchecksum cccc859fbd6295deacdb85b38712d62b2c96f7bf9111488148cedde4a344b0b4a30c595649ae1b7ca876640b6928cbbb64b2ae2564670cad7c950904d0014687 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/latexdiff + bin/i386-solaris/latexdiff-vc + bin/i386-solaris/latexrevise + +name latexdiff.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latexdiff +containersize 388 +containerchecksum 8f4f98cf5233613e01a25200039e81ff9eb878fc108449ca5f197b71b5edace599eb1efd983fd20b780737f97fb65a49bf72c4fac9f2a6da5ebf629d0b7cb9fc +binfiles arch=universal-darwin size=3 + bin/universal-darwin/latexdiff + bin/universal-darwin/latexdiff-vc + bin/universal-darwin/latexrevise + +name latexdiff.win32 +category Package +revision 16726 +shortdesc win32 files of latexdiff +containersize 716 +containerchecksum acadc4bfcbec0bc4f628115e605b4574867a799b96d7d7099002b42bf96a9429513aea31613408be93ea8bf8bf8235c479589637f581d8ba7ce4141d20c844a0 +binfiles arch=win32 size=3 + bin/win32/latexdiff-vc.exe + bin/win32/latexdiff.exe + bin/win32/latexrevise.exe + +name latexdiff.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexdiff +containersize 388 +containerchecksum eb3d7db6d71c0b0f41f330041a94452531a5e41d6c1e9fe77427bb597dfe8c5754e56a22ac64a51536a4cf46a48674d5ca8184064d7aedfea186a7693f3dbf6a +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/latexdiff + bin/x86_64-cygwin/latexdiff-vc + bin/x86_64-cygwin/latexrevise + +name latexdiff.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexdiff +containersize 400 +containerchecksum 98ce8c7065fe6ab92155af391ce55aeef292a81c8464ae6d043263784161a1891225c8aa7d604745a9a00d1e48b8528680ba1eb0bfdc54bb5c84d91e694cadc5 +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/latexdiff + bin/x86_64-darwinlegacy/latexdiff-vc + bin/x86_64-darwinlegacy/latexrevise + +name latexdiff.x86_64-linux +category Package +revision 16420 +shortdesc x86_64-linux files of latexdiff +containersize 384 +containerchecksum 37f34e90a572e49f4643e10f429e8256b4d0dd236123823ce35b8681b68322988632bb0294d806755b21ed8742757e77b4e157f202a1b781be2826a717e08618 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/latexdiff + bin/x86_64-linux/latexdiff-vc + bin/x86_64-linux/latexrevise + +name latexdiff.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexdiff +containersize 392 +containerchecksum 4d6417b1c39a1de56187e86bf7ba0be9a2118f55512b3a074f94cf1bc92caf430b8840973bad79efe3fcf0691fdf76605463b95b6b74aeae5f8264a2dff1b30e +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/latexdiff + bin/x86_64-linuxmusl/latexdiff-vc + bin/x86_64-linuxmusl/latexrevise + +name latexdiff.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of latexdiff +containersize 384 +containerchecksum 800ff14bd4efc55d1c46b3214a1bbf2164efab679f9e30d68854c1f7711e2c139c48bb30bf70914835d28ed847ad42dbd25ea5d289ca7f8ea795fa9d5be52d00 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/latexdiff + bin/x86_64-solaris/latexdiff-vc + bin/x86_64-solaris/latexrevise + +name latexfileinfo-pkgs +category Package +revision 26760 +shortdesc A comparison of packages showing LaTeX file information +relocated 1 +longdesc The package provides an HTML file that lists and compares CTAN +longdesc packages that display LaTeX source file information from +longdesc \ProvidesClass, \ProvidesFile, and \ProvidesPackage commands in +longdesc the LaTeX file. Five packages of the author's, and several +longdesc other packages are discussed; revision control systems are +longdesc mentioned briefly. +containersize 856 +containerchecksum b08fbfeb87299273a0e087e7cfe0e9df9bf50b95503a3110b9b329a9a41931f34f65661e219c6adf377e3448536d5aac8199799821f7057a67a4680a24f30ad0 +doccontainersize 8008 +doccontainerchecksum af5ff5d84fbbaf299be548d13163c8e5e83b73ce795bc1236a204f4025e34d9ef0c587702ea5d6b234791e16e7cd1930a63f3839c20caefad7610de125a583e6 +docfiles size=8 + RELOC/doc/latex/latexfileinfo-pkgs/README details="Readme" + RELOC/doc/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.htm details="The document itself" +srccontainersize 8120 +srccontainerchecksum b204065af499edadaf997f6a6cb1be474d02d03c1e37f94b33dc7d290f934c4a453fb648588482821f52f7b0b80f5edafa9a034f8eb2a9287ef06e753b8c1e96 +srcfiles size=8 + RELOC/source/latex/latexfileinfo-pkgs/SrcFILEs.txt + RELOC/source/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.tex + RELOC/source/latex/latexfileinfo-pkgs/mkht_ltxfinfo_pkgs.tex +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-license lppl1.3 +catalogue-topics review-document +catalogue-version 0.22 + +name latexfileversion +category Package +revision 29349 +shortdesc Prints the version and date of a LaTeX class or style file +longdesc This simple shell script prints the version and date of a LaTeX +longdesc class or style file. Syntax: latexfileversion <file> This +longdesc programme handles style files (extension .sty), class files +longdesc (extension .cls), and other TeX input files. The file extension +longdesc must be given. +depend latexfileversion.ARCH +containersize 1652 +containerchecksum 3a017b8a367864358370f0063957c301014df2aa039566ef33ae78dcf428235ccc2a88e19c917c940e186371e2c0b747887cb04e7cb78b9a04ac1720dbd94cf9 +doccontainersize 928 +doccontainerchecksum b1df01f8bc7daed937cd20d1ab7cce443a3d1fbb58e04cb18f0c0b30ef0795c988cf51bf49ace2f960c173f6a95fe982ee9d29d7650dcde21784c788165094c1 +docfiles size=2 + texmf-dist/doc/support/latexfileversion/ChangeLog + texmf-dist/doc/support/latexfileversion/README details="Readme" +runfiles size=1 + texmf-dist/scripts/latexfileversion/latexfileversion +catalogue-ctan /support/latexfileversion +catalogue-license lppl +catalogue-topics file-mgmt +catalogue-version 0.3 + +name latexfileversion.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexfileversion +containersize 344 +containerchecksum a55404bffe968a65e6c20abbce25be1ecfca595738e35774bf81793ed27fe4fddeba7f671d7d1328fda95fbe7d2bed3af6ee31e4cd5f556bb3c08773ba777e3d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexfileversion + +name latexfileversion.amd64-freebsd +category Package +revision 25012 +shortdesc amd64-freebsd files of latexfileversion +containersize 344 +containerchecksum 158a052116cd0e42145903ea74b0dd600c21d04bdc3306101873774f955c1560f8046c155c88efba0c9da6654a838d97016668c9147593bb915cdc2ea07bebe5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexfileversion + +name latexfileversion.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexfileversion +containersize 344 +containerchecksum ea1e8f49eebcd8ada0a76d6d7039a25c1db28de9dae1f843e04ddfdb7426f2376658f03972954579757bc06a6fd4cbfd2f58bfb9b9b5d55aa1614dd989047cb1 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexfileversion + +name latexfileversion.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexfileversion +containersize 344 +containerchecksum 411a423f3f653ccdee5b0892a918f31f44a02fda74e4e50087545deeac8490b81bb41022b5f0dfc4f7eac568a8179826991d2fc6e773b9d5d5ab255320ee5836 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexfileversion + +name latexfileversion.i386-cygwin +category Package +revision 25012 +shortdesc i386-cygwin files of latexfileversion +containersize 340 +containerchecksum 1cf639adfef41bf56594a2c116761670ca973dbf883252c5ce446244154df9b27360043f0f0ca0fe9f9074e66074b03a5c1874f077f4ed0ca9fe7c9fbc996bfb +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexfileversion + +name latexfileversion.i386-freebsd +category Package +revision 25012 +shortdesc i386-freebsd files of latexfileversion +containersize 344 +containerchecksum b7e6990bb8fca1395191ec52878472f80d66364ab96e253077234f6b907884d262445af587250ecd8c6c7274b30b7e055bac2430bd355129f7ffade4ae230db4 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexfileversion + +name latexfileversion.i386-linux +category Package +revision 25012 +shortdesc i386-linux files of latexfileversion +containersize 344 +containerchecksum a792fc857b7a1b5473359d6d810520662a6ee3d211234668f1076d9e38f768f492e5d47bd674cea3498890f2594107060fec830efdb301557dd3a70bfbb08521 +binfiles arch=i386-linux size=1 + bin/i386-linux/latexfileversion + +name latexfileversion.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexfileversion +containersize 344 +containerchecksum ebc2d721218be48404a22cdd891af1256a294cc6ba2e7a41332b444358a72ad64fcf319e474cd24d2eca839f4e77b4c0c75673e6c134e766bebcf961126c5996 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexfileversion + +name latexfileversion.i386-solaris +category Package +revision 25012 +shortdesc i386-solaris files of latexfileversion +containersize 344 +containerchecksum 9f3a18dcd1b8671df84a475b927f9c12a835915b0af6851f8db26f2d155b04fbfeb15295fe59e876739a10e0389fe225574cb447bb2c12c279a093db14e02953 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexfileversion + +name latexfileversion.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latexfileversion +containersize 340 +containerchecksum b7ece121571c308388df3563c1e977e4809f7c130b090fd21637a7b29b08cd00aef0ac3a74fdb79ee6d6422063daf54ea2c3d831335fae3c096f11bf4bebfe2c +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latexfileversion + +name latexfileversion.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexfileversion +containersize 344 +containerchecksum ecc825f100326551704fcdfca9f3c14cb676f40f91df27368026ab4ece59fdce05fa04824e525adba08e4e703c05420f5b25172321d35c10b064104cc9644341 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexfileversion + +name latexfileversion.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexfileversion +containersize 352 +containerchecksum 1355ffb0a79c49768424d3d02d537d6893ca12bfccc131b9a548f3ad3bef4054d0989164c4c2480099a51c8737b62502bad048b5baf69e2c3aac68d769c01280 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexfileversion + +name latexfileversion.x86_64-linux +category Package +revision 25012 +shortdesc x86_64-linux files of latexfileversion +containersize 344 +containerchecksum fa4ce4e4c60a730e741685db51699749327a23789f92795703e5815dbc4ab4e49664785c5c3c7b1b73b1cbadc21c9b9e64d9f605d257abc8083cf9c0dda53d3f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexfileversion + +name latexfileversion.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexfileversion +containersize 348 +containerchecksum 77f7acc80e0c1ef2a2535b8f82d2c2fe27bd422c507342cb65ece4c17a9df70b3021028072b6583edef16ed470b38a8278db91e4f1a1bf71838defc1571fc94b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexfileversion + +name latexfileversion.x86_64-solaris +category Package +revision 25012 +shortdesc x86_64-solaris files of latexfileversion +containersize 344 +containerchecksum cd174cab426807ca8fa1f8c25f0e52b8b8f13163328b4cfc67141bd1a7a3d52bc38d6575956c03eb59b3a34d5f1b6012541fac9543b92d5eeb8b044bd17577f5 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexfileversion + +name latexgit +category Package +revision 54811 +shortdesc A LaTeX git wrapper +relocated 1 +longdesc This package provides several macros to fetch git information +longdesc and typeset it. The macros defined by LaTeXgit can be helpful +longdesc to documentation authors and others to whom clear document +longdesc versioning is important. +containersize 1840 +containerchecksum 4e3787d5e9bf950e796e7eb475c825f20628ec5ed5b99cb145036fba99c4941ed81b347acba1548dea624d87a03e0cdbbc28fc579cc8edb0aa36460e9df0b6d8 +doccontainersize 446104 +doccontainerchecksum bfc6ce99ca1b66c0b1d5d98453716cf9e3a7e65ac55d7d17e5b06417f57d13f532602b537c804581e2e81b5265d554dd99e4d4307ef6d634d25916aae1892cab +docfiles size=117 + RELOC/doc/latex/latexgit/LICENSE + RELOC/doc/latex/latexgit/README.md details="Readme" + RELOC/doc/latex/latexgit/latexgit.pdf details="Package documentation" +srccontainersize 5280 +srccontainerchecksum 8a09f128428644335c9d909d23acc91ede2020304ebf009be00928cdef670aba23d245b979e5fd8d927c9d0e652bc195c717a744015a31fbb2aed1c566abfaf4 +srcfiles size=6 + RELOC/source/latex/latexgit/latexgit.dtx + RELOC/source/latex/latexgit/latexgit.ins +runfiles size=2 + RELOC/tex/latex/latexgit/latexgit.sty +catalogue-ctan /macros/latex/contrib/latexgit +catalogue-license gpl3 +catalogue-topics version-control doc-mgmt + +name latexindent +category Package +revision 58790 +shortdesc Indent a LaTeX document, highlighting the programming structure +longdesc The Perl script (also available as a windows executable) +longdesc processes a LaTeX file, indenting parts so as to highlight the +longdesc structure for the reader. +depend latexindent.ARCH +containersize 60252 +containerchecksum d33db672ca71557e5a2fe1a59e95c78a4da49ed0d9a73da5b1ecdf9b36d1b4fbb61aa6f9ec47d7ec5bbf8197878692758cec937879bce94d1f8505b47514a050 +doccontainersize 982572 +doccontainerchecksum 89bfacb4bde1abd385173bfa2b02a7f0c8fac437f557dac027e4b7b112a27308b91844217c6fcf46dfef2141f9efd1025c17b244acc8b87b56a72a5595beaf28 +docfiles size=337 + texmf-dist/doc/support/latexindent/README details="Readme" + texmf-dist/doc/support/latexindent/appendices.tex + texmf-dist/doc/support/latexindent/cmhlistings.tex + texmf-dist/doc/support/latexindent/figure-schematic.png + texmf-dist/doc/support/latexindent/figure-schematic.tex + texmf-dist/doc/support/latexindent/latexindent-module-installer.pl + texmf-dist/doc/support/latexindent/latexindent.pdf details="Package documentation" + texmf-dist/doc/support/latexindent/latexindent.tex + texmf-dist/doc/support/latexindent/logo.png + texmf-dist/doc/support/latexindent/logo.tex + texmf-dist/doc/support/latexindent/references.tex + texmf-dist/doc/support/latexindent/sec-conclusions-know-limitations.tex + texmf-dist/doc/support/latexindent/sec-default-user-local.tex + texmf-dist/doc/support/latexindent/sec-demonstration.tex + texmf-dist/doc/support/latexindent/sec-fine-tuning.tex + texmf-dist/doc/support/latexindent/sec-how-to-use.tex + texmf-dist/doc/support/latexindent/sec-indent-config-and-settings.tex + texmf-dist/doc/support/latexindent/sec-introduction.tex + texmf-dist/doc/support/latexindent/sec-replacements.tex + texmf-dist/doc/support/latexindent/sec-the-m-switch.tex + texmf-dist/doc/support/latexindent/subsec-commands-and-their-options.tex + texmf-dist/doc/support/latexindent/subsec-conflicting-poly-switches.tex + texmf-dist/doc/support/latexindent/subsec-noAdditionalIndent-indentRules.tex + texmf-dist/doc/support/latexindent/subsec-partnering-poly-switches.tex + texmf-dist/doc/support/latexindent/subsubsec-commands-with-arguments.tex + texmf-dist/doc/support/latexindent/subsubsec-environments-and-their-arguments.tex + texmf-dist/doc/support/latexindent/subsubsec-environments-with-items.tex + texmf-dist/doc/support/latexindent/subsubsec-headings.tex + texmf-dist/doc/support/latexindent/subsubsec-ifelsefi.tex + texmf-dist/doc/support/latexindent/subsubsec-no-add-remaining-code-blocks.tex + texmf-dist/doc/support/latexindent/subsubsec-special.tex + texmf-dist/doc/support/latexindent/title.tex +runfiles size=124 + texmf-dist/scripts/latexindent/LatexIndent/AlignmentAtAmpersand.pm + texmf-dist/scripts/latexindent/LatexIndent/Arguments.pm + texmf-dist/scripts/latexindent/LatexIndent/BackUpFileProcedure.pm + texmf-dist/scripts/latexindent/LatexIndent/BlankLines.pm + texmf-dist/scripts/latexindent/LatexIndent/Braces.pm + texmf-dist/scripts/latexindent/LatexIndent/Command.pm + texmf-dist/scripts/latexindent/LatexIndent/Document.pm + texmf-dist/scripts/latexindent/LatexIndent/DoubleBackSlash.pm + texmf-dist/scripts/latexindent/LatexIndent/Else.pm + texmf-dist/scripts/latexindent/LatexIndent/Environment.pm + texmf-dist/scripts/latexindent/LatexIndent/FileContents.pm + texmf-dist/scripts/latexindent/LatexIndent/FileExtension.pm + texmf-dist/scripts/latexindent/LatexIndent/GetYamlSettings.pm + texmf-dist/scripts/latexindent/LatexIndent/Heading.pm + texmf-dist/scripts/latexindent/LatexIndent/HiddenChildren.pm + texmf-dist/scripts/latexindent/LatexIndent/HorizontalWhiteSpace.pm + texmf-dist/scripts/latexindent/LatexIndent/IfElseFi.pm + texmf-dist/scripts/latexindent/LatexIndent/Indent.pm + texmf-dist/scripts/latexindent/LatexIndent/Item.pm + texmf-dist/scripts/latexindent/LatexIndent/KeyEqualsValuesBraces.pm + texmf-dist/scripts/latexindent/LatexIndent/LogFile.pm + texmf-dist/scripts/latexindent/LatexIndent/Logger.pm + texmf-dist/scripts/latexindent/LatexIndent/MandatoryArgument.pm + texmf-dist/scripts/latexindent/LatexIndent/ModifyLineBreaks.pm + texmf-dist/scripts/latexindent/LatexIndent/NamedGroupingBracesBrackets.pm + texmf-dist/scripts/latexindent/LatexIndent/OptionalArgument.pm + texmf-dist/scripts/latexindent/LatexIndent/Preamble.pm + texmf-dist/scripts/latexindent/LatexIndent/Replacement.pm + texmf-dist/scripts/latexindent/LatexIndent/RoundBrackets.pm + texmf-dist/scripts/latexindent/LatexIndent/Sentence.pm + texmf-dist/scripts/latexindent/LatexIndent/Special.pm + texmf-dist/scripts/latexindent/LatexIndent/Switches.pm + texmf-dist/scripts/latexindent/LatexIndent/Tokens.pm + texmf-dist/scripts/latexindent/LatexIndent/TrailingComments.pm + texmf-dist/scripts/latexindent/LatexIndent/UnNamedGroupingBracesBrackets.pm + texmf-dist/scripts/latexindent/LatexIndent/Verbatim.pm + texmf-dist/scripts/latexindent/LatexIndent/Version.pm + texmf-dist/scripts/latexindent/defaultSettings.yaml + texmf-dist/scripts/latexindent/latexindent.pl +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-license gpl3 +catalogue-topics code-layout +catalogue-version 3.9.2 + +name latexindent.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexindent +containersize 344 +containerchecksum 911581ebf63ae01d914b5e35bf384d17e4346727f5e22e881bdce4dbb8d32cfbe9821b60dd6d74544f090389c54bf200188b240026640c01f9b0c8477289d891 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexindent + +name latexindent.amd64-freebsd +category Package +revision 32150 +shortdesc amd64-freebsd files of latexindent +containersize 344 +containerchecksum 0a6914e16876836c40f26c307e3f1bc49392d14be92e89e7fef1cd59d776cd5284cfd8b73b3024ea7c426cc2151c64ecbbde9903e620249e81ceb034a2a246ea +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexindent + +name latexindent.amd64-netbsd +category Package +revision 32150 +shortdesc amd64-netbsd files of latexindent +containersize 344 +containerchecksum 68388830b1fefea213cfce682aa5ad4200bf03df6771b2bee8d7dd7bf39cd30cf155599d4b00618c91b0caf6cf6ec51f278eb7df76c96c73d5e296d48589b9b4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexindent + +name latexindent.armhf-linux +category Package +revision 32150 +shortdesc armhf-linux files of latexindent +containersize 344 +containerchecksum 183a78fc54bdcc152ee38d905bd67763744882234fa735ca1b3103f620f0a3400cbfd4dfa225520f0f328883e23c579334d1dfcf874af1e069d7f4ee17a9f808 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexindent + +name latexindent.i386-cygwin +category Package +revision 32150 +shortdesc i386-cygwin files of latexindent +containersize 340 +containerchecksum 63c36a9ae80ccd699769a86701aa3aca56d78039b11afbf180a1efad365d6ef7833c1b315c26dcd6594f5f16fada469716a6e57f6324330841e879b8ec359d93 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexindent + +name latexindent.i386-freebsd +category Package +revision 32150 +shortdesc i386-freebsd files of latexindent +containersize 344 +containerchecksum 4ab806e5a95bca15ea8305d5e68229a432d8860a36a4e807088f43463b99ef29b7175f96342d93224c1c973e0a3641dd945f7aa40742f7ba691f5264e1bd6fe9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexindent + +name latexindent.i386-linux +category Package +revision 32150 +shortdesc i386-linux files of latexindent +containersize 344 +containerchecksum a7d824e960f5ddfc2e21483a9d09b398589f63c8736d47dc8735414aa98180f1a44f763896f2000d2c194a30f867c0ee758413f2949db973b03766e02d020b5d +binfiles arch=i386-linux size=1 + bin/i386-linux/latexindent + +name latexindent.i386-netbsd +category Package +revision 32150 +shortdesc i386-netbsd files of latexindent +containersize 344 +containerchecksum a040a1deeda39767b9004f0c821b7c045c47bd46447399fcc8b3a4110c5795cdd49cf394a1f9b64bdd8749d746dc21e48b34bd9b2c97d2638230f41bd39aae3d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexindent + +name latexindent.i386-solaris +category Package +revision 32150 +shortdesc i386-solaris files of latexindent +containersize 344 +containerchecksum 3b3fa0574d67c0261a4d0c4fdee3ebb61183ec1897a16c477434e6c5fc645b61c5891339183734133684f7d7472cc7734d596e945351e9ee5479c6a107c1ac60 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexindent + +name latexindent.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latexindent +containersize 344 +containerchecksum 1319ee46aa7512b5077f657ac7a405074ff4751a53f53875cae9dfc4b4e518948e6d6c4263f75441bc9ce0d3f3e6d705b24aa40f3234ed5022155c2ccbc586d2 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latexindent + +name latexindent.win32 +category Package +revision 58595 +shortdesc win32 files of latexindent +containersize 3057588 +containerchecksum dec9178a0f21ea13a08011d8bbf7cba0de29cd8648425a28a658ccf6f50ecd207c3669b259b4f7a4f121e04375da13e54a355b5474cfaa2d89a6d17d3d0dadad +binfiles arch=win32 size=1556 + bin/win32/latexindent.exe + +name latexindent.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexindent +containersize 344 +containerchecksum 1e129afadfe4d59a9bf49e4c1ac328ac4d558053b7308158ddbfe7de61ab430f84209f159210a9ccd7b01338d87cf05675abbfd0b37494cc3df5e6cfba88a42f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexindent + +name latexindent.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexindent +containersize 352 +containerchecksum 9f3237f9e942bd3909e1db65cb719d5f7d4132daff735c66b23e1536da3695359e1a85ffc8704f9124ac0960ba3593c2f86836739a1203c6aaa3e7c8bd665e82 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexindent + +name latexindent.x86_64-linux +category Package +revision 32150 +shortdesc x86_64-linux files of latexindent +containersize 344 +containerchecksum 36a953e50a6c83edb3e7644a3fca247c7d50df862a55421153a5be62e1484de350f67033bb07bddba8f62698e7f70ce050533a6134bf62b24b7b767cf7646c8d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexindent + +name latexindent.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexindent +containersize 348 +containerchecksum 6f10b12904497f5b928cfcec56d0066069d631189afbd2fa7213d7a0483c2003e36888a2f05e8faaf0dd4a0f638a75e49f08c0a78a0ba4c19487fc30de72dd8f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexindent + +name latexindent.x86_64-solaris +category Package +revision 32150 +shortdesc x86_64-solaris files of latexindent +containersize 344 +containerchecksum 1d02fcaf6b976ad6df0fe19717efd36bf7456f62ee64b025a6e218b232c7eef76788c1e627c0c5ce2e3e02bb49d0083b0bcb9133f6f04d9953f58b50af0846bf +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexindent + +name latexmk +category Package +revision 59081 +shortdesc Fully automated LaTeX document generation +longdesc Latexmk completely automates the process of generating a LaTeX +longdesc document. Given the source files for a document, latexmk issues +longdesc the appropriate sequence of commands to generate a .dvi, .ps, +longdesc .pdf or hardcopy version of the document. An important feature +longdesc is the "preview continuous mode", where the script watches all +longdesc of the source files (primary file and included TeX and graphics +longdesc files), and reruns LaTeX, etc., whenever a source file has +longdesc changed. Thus a previewer can offer a display of the document's +longdesc latest state. +depend latexmk.ARCH +containersize 93244 +containerchecksum b6385b44df35f91ae6e64cf868ecc903bd9e143ff1727553443d4c4e307c71845e123b39f361bac6ec302181c07cf42fb9939c3826a88568cf45cffb19317f76 +doccontainersize 480040 +doccontainerchecksum 634c9bb9b15e6e866d31bfd9ff30014f0f763fc8f0cec69cd80988ef289fb1bfd23729faee9e1abb96a0e42bf91eebe897952e824b57531e8fe55a608dfb8073 +docfiles size=259 + texmf-dist/doc/man/man1/latexmk.1 + texmf-dist/doc/man/man1/latexmk.man1.pdf + texmf-dist/doc/support/latexmk/CHANGES + texmf-dist/doc/support/latexmk/COPYING + texmf-dist/doc/support/latexmk/INSTALL + texmf-dist/doc/support/latexmk/README details="Readme" + texmf-dist/doc/support/latexmk/example_rcfiles/README-latexmk-rcfiles + texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/bib2gls_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/chapterbib-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/clean_pattern_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/exceltex1.sty + texmf-dist/doc/support/latexmk/example_rcfiles/exceltex_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/fix-aux.latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/glossary_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/hyperxmp-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/knitr-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/mpost_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/nomenclature_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/pdflatexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/pweave-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/pythontex-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/sagetex_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/splitindex.latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/texinfo-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/tikz-externalized-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/xelatex_latexmkrc + texmf-dist/doc/support/latexmk/extra-scripts/README-latexmk-scripts + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfm_call + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfm_call.bat + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfmx_call + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfmx_call.bat + texmf-dist/doc/support/latexmk/extra-scripts/htlatexonly + texmf-dist/doc/support/latexmk/extra-scripts/kickxdvi + texmf-dist/doc/support/latexmk/extra-scripts/l1 + texmf-dist/doc/support/latexmk/extra-scripts/l2 + texmf-dist/doc/support/latexmk/extra-scripts/myhtlatex2 + texmf-dist/doc/support/latexmk/extra-scripts/pst2pdf_for_latexmk + texmf-dist/doc/support/latexmk/extra-scripts/pst2pdf_for_latexmk_README.txt + texmf-dist/doc/support/latexmk/extra-scripts/startacroread + texmf-dist/doc/support/latexmk/latexmk.pdf details="Manual page, PDF" + texmf-dist/doc/support/latexmk/latexmk.txt details="Manual page, text format" +runfiles size=101 + texmf-dist/scripts/latexmk/latexmk.pl +catalogue-also latexn prv arara +catalogue-contact-home http://personal.psu.edu/~jcc8/software/latexmk/ +catalogue-ctan /support/latexmk +catalogue-license gpl2 +catalogue-topics compilation +catalogue-version 4.73 + +name latexmk.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexmk +containersize 340 +containerchecksum 0b397c69945221fc6575c719ba1b9a28cdec5c3e24ac2e5be0eee434f64c9be0fd8be7078cb374b8fc81a8fa97d28ecd3febbe58f35cac749281f4399d9d0f4e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexmk + +name latexmk.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of latexmk +containersize 340 +containerchecksum 222eacdaca92d0299ab50705ea96b1a52e4531b1d9d653c12cdbf5da0bb295f7d62ab7338c818b47035cfd0628fc66904871ae70da0b2cafa80d731b88e4cdbd +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexmk + +name latexmk.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexmk +containersize 340 +containerchecksum dd7c0aec7485e6f52e5be18a351ddad8a57f9bacf61d5ff63b0a6aab28423ee586f5ca7c9823ae65b7170ffa767a97bbb8b5073377df2fb43bfff5e89645db77 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexmk + +name latexmk.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexmk +containersize 340 +containerchecksum 949c63fb461fba492c97e06df99c916b0071a445d3155b8e4181d33b1b21672c61c543295fa2e4bba127b42f9c6e7ce60c829b7269e44665809380f652be5241 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexmk + +name latexmk.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of latexmk +containersize 336 +containerchecksum 5d0a0736b1a75abe2fa24a3c0b60666d96e639aed2e8267adff3666ca354dfe5b79bd326966efb9a53e2342eb7f6923f0bbb009ebfcef8d874dc3fd087b34b73 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexmk + +name latexmk.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of latexmk +containersize 340 +containerchecksum 77a4836e1f98ed39383075da59cbe64c3ad062dc3bba4f619518255ba576e079b5879ea5d1209c987cf982ec8a9e333c9263c4453086637378b038db3f6f2bfd +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexmk + +name latexmk.i386-linux +category Package +revision 10937 +shortdesc i386-linux files of latexmk +containersize 340 +containerchecksum 11ac633bf4e6551a761e3bd023c09473458f550bcd40104b48fb647f6237376c9015239dbce7a995dddf209e72c45c00e779d6eaf6fbf9810869aedf521e7b63 +binfiles arch=i386-linux size=1 + bin/i386-linux/latexmk + +name latexmk.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexmk +containersize 336 +containerchecksum 8aaf7efa646d8a2acdbe07a2679c2e3bfdadc359f21249e23ba3dc30c76d1709e964cb2b18c300815b463b6323c1cc68b62d77ec2879cd67bb9e1ad4e7b431b5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexmk + +name latexmk.i386-solaris +category Package +revision 10937 +shortdesc i386-solaris files of latexmk +containersize 340 +containerchecksum ef40fe8a764c3ca88828efe38dfdf3d2f29f15bd0d66c8f5d9a9fb6115f28ce0f12651fd8a8f316c6a418e4d3d9cd6a4f85c9a34c05899c4818e5fce09dfcf70 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexmk + +name latexmk.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latexmk +containersize 340 +containerchecksum ab302c69dbd2644803a243082de3dfea1d441950f40d04ac2dbc660eca3c7038a6faa6fbcc0e703411a922918c8f2d40837b307ad8a41b27e34a2297ce1c1268 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latexmk + +name latexmk.win32 +category Package +revision 15404 +shortdesc win32 files of latexmk +containersize 684 +containerchecksum 6ffbaea9c44da9fc73228a44f55d98219e8515ed595fafeda03a2794f3c7dc1f96bff22b4e7dcdc6c5ce4ee0ce8ca07f15150ed00b8ecfcbdd12b89b685be616 +binfiles arch=win32 size=1 + bin/win32/latexmk.exe + +name latexmk.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexmk +containersize 340 +containerchecksum ac96bd49dca426d6b00e9cec228da0096294f89dcc8668b68cda2757b108195004e808ad1c997389ea895fb70a29e6c2ff9e54118780aa13283126260802c083 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexmk + +name latexmk.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexmk +containersize 348 +containerchecksum 8dd10b88f495218dc9acb3a1e05dcbe4d5747df8334408094a8cdb2e5a92dd9111900ea615f038a083bff22847ba2bf5a59b405e3a31f60c37bec8b9db2ea48e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexmk + +name latexmk.x86_64-linux +category Package +revision 10937 +shortdesc x86_64-linux files of latexmk +containersize 340 +containerchecksum d0d78524ebd8aecbd3f2646030150d37283be92d852aadc75c1efa33b08e1b73c6365ce4e41e86eb5626d819e75140c7fe4caf772f472b51810b7b0868f0aa4d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexmk + +name latexmk.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexmk +containersize 344 +containerchecksum 193cec5c8d3b1bd86ca97f9f29778d5e0522995a53107112fde4d43ebe68585c486f342bb81b704d4d502f5e9a7251fd52b8203abf4fe5c0ff35c100b6168184 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexmk + +name latexmk.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of latexmk +containersize 340 +containerchecksum 0a951b32faa7a5c3e664c7873b0250272852a1f64ecf8d8eef0eb44a0aa962adfc06cecf78df72d978639a91b7354e70e797eda529434cc9852cc5f8afec23b3 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexmk + +name latexmp +category Package +revision 55643 +shortdesc Interface for LaTeX-based typesetting in MetaPost +relocated 1 +longdesc The MetaPost package latexMP implements a user-friendly +longdesc interface to access LaTeX-based typesetting capabilities in +longdesc MetaPost. The text to be typeset is given as string. This +longdesc allows even dynamic text elements, for example counters, to be +longdesc used in labels. Compared to other implementations it is much +longdesc more flexible, since it can be used as direct replacement for +longdesc btex.etex, and much faster, compared for example to the +longdesc solution provided by tex.mp. +containersize 5268 +containerchecksum e32eddbc519ed33687c1fbe36b2cf45f9ee886a78c0a088f6648da42dbebb0a72064ec4b9d5333656cc3bed7b251ef3a758926db88e6bb79ffd4536489717db5 +doccontainersize 147444 +doccontainerchecksum 02cda290799bde7288220d0b634b970a6ac543fd63318bcf90c4ad06eab074f5851e7bc42c9359af709eccc0c8847a0d3d1a9e27cdfd3f60c7143de7ac4d3901 +docfiles size=44 + RELOC/doc/metapost/latexmp/README details="Readme" + RELOC/doc/metapost/latexmp/latexmp.pdf details="Package documentation" +runfiles size=4 + RELOC/metapost/latexmp/latexmp.mp +catalogue-ctan /graphics/metapost/contrib/macros/latexmp +catalogue-license pd +catalogue-topics graphics-text +catalogue-version 1.2.1 + +name latexpand +category Package +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 6692 +containerchecksum ff362aea91f703759157dc810067d39d0d8fbdfd031e993c1a6c019a55d50a3e11745ab72c8abc7bd615f79cbe589cb0bd7bf82c147d12d18d3483ef95dcf4ba +doccontainersize 3132 +doccontainerchecksum 63181837edaf48a5bcd842039579e3efad999cf2db1cc3da8184b59f359db0ed7f50a9c706a44f32fd0642438020256283434b95a29d64b184ddd5ca27895282 +docfiles size=4 + texmf-dist/doc/support/latexpand/LICENCE + texmf-dist/doc/support/latexpand/README details="Readme" + texmf-dist/doc/support/latexpand/version.txt +runfiles size=5 + texmf-dist/scripts/latexpand/latexpand +catalogue-contact-repository https://gitlab.com/latexpand/latexpand +catalogue-ctan /support/latexpand +catalogue-license bsd +catalogue-topics file-mgmt +catalogue-version 1.6 + +name latexpand.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexpand +containersize 340 +containerchecksum e01996eb076bcd2045509b6296d35cb476e64e2bc3fffeeb6fd73f257916e7ddcb90e7134cc3cdea8e2946fff8747e9241e0234257311fd01f172de096e1e061 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexpand + +name latexpand.amd64-freebsd +category Package +revision 27025 +shortdesc amd64-freebsd files of latexpand +containersize 340 +containerchecksum c86d80784c888907e13dfc5c1fc45e64fd8f9621e604457ff5456fccef927b7ef49ecaa04e5c8e4b364c49b7f73d9cc62689ae87dab8a6e9eaeb7131d9f00a78 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexpand + +name latexpand.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexpand +containersize 340 +containerchecksum 0e4eb847fa6863aac11bd3788359d2a4f1922bbe6e6a0213284e5b27c5ec92b92e8de8b0de140026a8761b4321c01f9f38b8193344b0f7fe70cdfc51a279f991 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexpand + +name latexpand.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexpand +containersize 336 +containerchecksum 639827d3b54121c42d6a2b0a46787a335897d9c883500534c6eacc8f91ba90a969e5261d3ba026dc51687c31c307849ca87859ebf413994bdddd1c78c569ff67 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexpand + +name latexpand.i386-cygwin +category Package +revision 27025 +shortdesc i386-cygwin files of latexpand +containersize 336 +containerchecksum 23e8f1ed6bd3079f95f20b2d9bfeaa2cc918593a8e8a28654ef8bcabb7d7816b7b23f1e32fa90680c3e47462db05e58497ee36e32cf33e59b5e259507158a7c9 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexpand + +name latexpand.i386-freebsd +category Package +revision 27025 +shortdesc i386-freebsd files of latexpand +containersize 340 +containerchecksum 7300e33a318c9638390be9f47407fc2fd36a0e3acc50117f8b42eeba7a99fbee813ebae3e1f0b71f9b4f4adacce5c6e35dfbc34f494dbbb8b76387a6831eafe6 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexpand + +name latexpand.i386-linux +category Package +revision 27025 +shortdesc i386-linux files of latexpand +containersize 340 +containerchecksum 925c90b542dfedb1c4d29ed039a32f3cf97ec6ccc51592b6070f5ec25407d54d0d54a50d439d4e29d408230fff592798e1d3f2eb84ae8629ce0ed2b19b6a04c5 +binfiles arch=i386-linux size=1 + bin/i386-linux/latexpand + +name latexpand.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexpand +containersize 336 +containerchecksum 5f8d61a5316e020fca5187e28d57c24d041f8f794a67f1894043c63fa58baf7594d56b1fa2731524b7f4df4e25cf72562547334446ec41ff7d814c3af17c8b89 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexpand + +name latexpand.i386-solaris +category Package +revision 27025 +shortdesc i386-solaris files of latexpand +containersize 340 +containerchecksum fbf1283bbf71aeb6cc9e38fe8562c1bf57855e5d1f3d163c367c58092c59761b489ba20897abead3e6c20a3dbcbe69f6feb0a18fd9148c49cbf6db3770877400 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexpand + +name latexpand.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of latexpand +containersize 336 +containerchecksum c6eb47a18b103986cf9f42703d0a20a437944c02c1ad53036a8e5e271638fdd51361c1c805f3e672a99e7c6b83abaf4173a936bae8eeb8a1f8b4a66376662f43 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latexpand + +name latexpand.win32 +category Package +revision 27025 +shortdesc win32 files of latexpand +containersize 680 +containerchecksum 21c9edc74fe645c4e2ccb7a24196c71710d9e4ca730069bbaffc3012f804623a92bca4e6d491d773a398d42d8ddc118a57c078b98b35d481cd8da45865c88bbf +binfiles arch=win32 size=1 + bin/win32/latexpand.exe + +name latexpand.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexpand +containersize 340 +containerchecksum a2dcab5e90c37ce8686d4fbc5902b89528619738f41d507bf90d69e1c6e06263fe33d30f33c33899b9d0895d92c981b95c561c19807758b67ca4c4fd9b494055 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexpand + +name latexpand.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexpand +containersize 344 +containerchecksum c741381ee39621d1416b1e5cec65407b5c73f0c41b161db2c096ba03c52dd20947224bafd31814f38b3abd01ade9ce9773d0d5b5c6d45f8f865bc8c4d26b565c +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexpand + +name latexpand.x86_64-linux +category Package +revision 27025 +shortdesc x86_64-linux files of latexpand +containersize 336 +containerchecksum fd892c3d6faf3e3b42fe1789e7dbe99aa571f3f6be1bf38d7b8dc0936c9374061a855268fbedc5107e35bd0f7eb29e8dd160f67bae49aa4bc082c14f75902cb1 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexpand + +name latexpand.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexpand +containersize 344 +containerchecksum 4f92b83c54340c4b5e5a23935e122b056265ed73566a337d91d16538f113bcac5949bd8b7567753276308b4a29b0f5c33c3ae26aaf88180b1437dd8a96cb38a2 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexpand + +name latexpand.x86_64-solaris +category Package +revision 27025 +shortdesc x86_64-solaris files of latexpand +containersize 340 +containerchecksum d9b69e3f9d1799d7305bafc6b377e1c95c186f951fe353bfb464bbe08bc226f7e1876a028c4e6f743a5c9cf001440fa51960d19065f155edfcb6b239138b5032 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexpand + +name latino-sine-flexione +category Package +revision 53485 +shortdesc LaTeX support for documents written in Peano's Interlingua +relocated 1 +longdesc Latino sine Flexione (or Interlingua) is a language constructed +longdesc by Giuseppe Peano at the beginning of the last century. This +longdesc simplified Latin is designed to be an instrument for +longdesc international cooperation, especially in the academic sphere. +longdesc (Note that this "Interlingua" is different from the +longdesc "Interlingua" that was created a few decades after Peano's work +longdesc and which is supported by babel-interlingua!) This package +longdesc provides the necessary translations to use the language within +longdesc a LaTeX document. It also imports fontenc in order to be able +longdesc to use ligatures and quotation marks. Finally, it offers a text +longdesc in Interlingua that can be used as a dummy text: Fundamento de +longdesc intelligentia. This article by H. Bijlsma was first published +longdesc in Schola et Vita Anno I (1926). +containersize 1392 +containerchecksum 6c6e7dacb974ba25fb5106ee1b846a22590c1ee3e5b19aa4c9cb90aab927216a19d15f977eb92f20fb589011769463a500ac2146c0c8cc807a91169da660bc13 +doccontainersize 3944 +doccontainerchecksum 204422bc4fc85ecf94cc3236a74acc368d34926b53effb45b6411e694c4bdd2b91c30250894868d3928b19c693372c49e7435f83974e09b829938b6237ef1957 +docfiles size=3 + RELOC/doc/latex/latino-sine-flexione/README.md details="Readme" + RELOC/doc/latex/latino-sine-flexione/fundamento.tex +runfiles size=1 + RELOC/tex/latex/latino-sine-flexione/latino-sine-flexione.sty +catalogue-contact-home https://github.com/AcProIL +catalogue-contact-support http://reddit.com/r/LatinoSineFlexione/ +catalogue-ctan /macros/latex/contrib/latino-sine-flexione +catalogue-license pd +catalogue-topics interlingua +catalogue-version 1.2 + +name lato +category Package +revision 54512 +shortdesc Lato font family and LaTeX support +relocated 1 +longdesc Lato is a sanserif typeface family designed in the Summer 2010 +longdesc by Warsaw-based designer Lukasz Dziedzic for the tyPoland +longdesc foundry. This font, which includes five weights (hairline, +longdesc light, regular, bold and black), is available from the Google +longdesc Font Directory as TrueType files under the Open Font License +longdesc version 1.1. The package provides support for this font in +longdesc LaTeX. It includes the original TrueType fonts, as well as Type +longdesc 1 versions, converted for this package using FontForge for full +longdesc support with Dvips. +execute addMap lato.map +containersize 12721308 +containerchecksum 2f8454888913ec6a024c53cf157509b8b769f948ac2c92d0683e80ff8e22865545a6a65864876be35569bf4a5d56ed871c8112b216561e3ce585136bd062c9ce +doccontainersize 1235932 +doccontainerchecksum 0965bdda9b3c106bc49d8156f497c4c85a80d76a4740964b2d24c58155e8afed57989166bc5ac3eb44daf377b7e8985b406a0955dc419ced4a7011f328ce0c62 +docfiles size=305 + RELOC/doc/fonts/lato/CHANGES + RELOC/doc/fonts/lato/README details="Readme" + RELOC/doc/fonts/lato/lato-samples.pdf details="Font samples" + RELOC/doc/fonts/lato/lato.pdf details="Package documentation" +runfiles size=11794 + RELOC/fonts/enc/dvips/lato/a_25nmxu.enc + RELOC/fonts/enc/dvips/lato/a_3qgqav.enc + RELOC/fonts/enc/dvips/lato/a_4vt5lz.enc + RELOC/fonts/enc/dvips/lato/a_5qkav4.enc + RELOC/fonts/enc/dvips/lato/a_6aejyg.enc + RELOC/fonts/enc/dvips/lato/a_6rhh47.enc + RELOC/fonts/enc/dvips/lato/a_cje5wf.enc + RELOC/fonts/enc/dvips/lato/a_cl4kdn.enc + RELOC/fonts/enc/dvips/lato/a_dakysd.enc + RELOC/fonts/enc/dvips/lato/a_eu4zf2.enc + RELOC/fonts/enc/dvips/lato/a_ggdek5.enc + RELOC/fonts/enc/dvips/lato/a_glk7jc.enc + RELOC/fonts/enc/dvips/lato/a_gxztqc.enc + RELOC/fonts/enc/dvips/lato/a_hgebqg.enc + RELOC/fonts/enc/dvips/lato/a_jdumzv.enc + RELOC/fonts/enc/dvips/lato/a_ju6eua.enc + RELOC/fonts/enc/dvips/lato/a_jzblmk.enc + RELOC/fonts/enc/dvips/lato/a_khaflp.enc + RELOC/fonts/enc/dvips/lato/a_l7s2m2.enc + RELOC/fonts/enc/dvips/lato/a_lqirpk.enc + RELOC/fonts/enc/dvips/lato/a_nqwozw.enc + RELOC/fonts/enc/dvips/lato/a_o6jpkv.enc + RELOC/fonts/enc/dvips/lato/a_oolqad.enc + RELOC/fonts/enc/dvips/lato/a_rt66h3.enc + RELOC/fonts/enc/dvips/lato/a_t3w74u.enc + RELOC/fonts/enc/dvips/lato/a_t6qg2v.enc + RELOC/fonts/enc/dvips/lato/a_v5zdec.enc + RELOC/fonts/enc/dvips/lato/a_v7r724.enc + RELOC/fonts/enc/dvips/lato/a_vc7epu.enc + RELOC/fonts/enc/dvips/lato/a_vrqych.enc + RELOC/fonts/enc/dvips/lato/a_wd5mfa.enc + RELOC/fonts/enc/dvips/lato/a_y2bxm4.enc + RELOC/fonts/enc/dvips/lato/a_y72t7m.enc + RELOC/fonts/enc/dvips/lato/a_ycjpon.enc + RELOC/fonts/enc/dvips/lato/a_yl3wnd.enc + RELOC/fonts/enc/dvips/lato/a_yoxmuz.enc + RELOC/fonts/map/dvips/lato/lato.map + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TOsF.tfm + RELOC/fonts/truetype/typoland/lato/Lato-Black.ttf + RELOC/fonts/truetype/typoland/lato/Lato-BlackItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Bold.ttf + RELOC/fonts/truetype/typoland/lato/Lato-BoldItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Hairline.ttf + RELOC/fonts/truetype/typoland/lato/Lato-HairlineItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Heavy.ttf + RELOC/fonts/truetype/typoland/lato/Lato-HeavyItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Italic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Light.ttf + RELOC/fonts/truetype/typoland/lato/Lato-LightItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Medium.ttf + RELOC/fonts/truetype/typoland/lato/Lato-MediumItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Regular.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Semibold.ttf + RELOC/fonts/truetype/typoland/lato/Lato-SemiboldItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Thin.ttf + RELOC/fonts/truetype/typoland/lato/Lato-ThinItalic.ttf + RELOC/fonts/type1/typoland/lato/Lato-Black.pfb + RELOC/fonts/type1/typoland/lato/Lato-BlackItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Bold.pfb + RELOC/fonts/type1/typoland/lato/Lato-BoldItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Hairline.pfb + RELOC/fonts/type1/typoland/lato/Lato-HairlineItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Heavy.pfb + RELOC/fonts/type1/typoland/lato/Lato-HeavyItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Italic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Light.pfb + RELOC/fonts/type1/typoland/lato/Lato-LightItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Medium.pfb + RELOC/fonts/type1/typoland/lato/Lato-MediumItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Regular.pfb + RELOC/fonts/type1/typoland/lato/Lato-Semibold.pfb + RELOC/fonts/type1/typoland/lato/Lato-SemiboldItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Thin.pfb + RELOC/fonts/type1/typoland/lato/Lato-ThinItalic.pfb + RELOC/fonts/vf/typoland/lato/Lato-Black-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-LGR-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-LGR-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-LGR-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-LGR-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-TOsF.vf + RELOC/tex/latex/lato/LGRlato-LF.fd + RELOC/tex/latex/lato/LGRlato-OsF.fd + RELOC/tex/latex/lato/LGRlato-TLF.fd + RELOC/tex/latex/lato/LGRlato-TOsF.fd + RELOC/tex/latex/lato/OT1lato-LF.fd + RELOC/tex/latex/lato/OT1lato-OsF.fd + RELOC/tex/latex/lato/OT1lato-TLF.fd + RELOC/tex/latex/lato/OT1lato-TOsF.fd + RELOC/tex/latex/lato/T1lato-LF.fd + RELOC/tex/latex/lato/T1lato-OsF.fd + RELOC/tex/latex/lato/T1lato-TLF.fd + RELOC/tex/latex/lato/T1lato-TOsF.fd + RELOC/tex/latex/lato/T2Alato-LF.fd + RELOC/tex/latex/lato/T2Alato-OsF.fd + RELOC/tex/latex/lato/T2Alato-TLF.fd + RELOC/tex/latex/lato/T2Alato-TOsF.fd + RELOC/tex/latex/lato/T2Blato-LF.fd + RELOC/tex/latex/lato/T2Blato-OsF.fd + RELOC/tex/latex/lato/T2Blato-TLF.fd + RELOC/tex/latex/lato/T2Blato-TOsF.fd + RELOC/tex/latex/lato/T2Clato-LF.fd + RELOC/tex/latex/lato/T2Clato-OsF.fd + RELOC/tex/latex/lato/T2Clato-TLF.fd + RELOC/tex/latex/lato/T2Clato-TOsF.fd + RELOC/tex/latex/lato/TS1lato-LF.fd + RELOC/tex/latex/lato/TS1lato-OsF.fd + RELOC/tex/latex/lato/TS1lato-TLF.fd + RELOC/tex/latex/lato/TS1lato-TOsF.fd + RELOC/tex/latex/lato/X2lato-LF.fd + RELOC/tex/latex/lato/X2lato-OsF.fd + RELOC/tex/latex/lato/X2lato-TLF.fd + RELOC/tex/latex/lato/X2lato-TOsF.fd + RELOC/tex/latex/lato/lato.sty +catalogue-contact-home http://www.latofonts.com/ +catalogue-ctan /fonts/lato +catalogue-license ofl lppl1.3c +catalogue-topics font font-type1 font-ttf font-sans +catalogue-version 3.3 + +name layaureo +category Package +revision 19087 +shortdesc A package to improve the A4 page layout +relocated 1 +longdesc This package produces a wide page layout for documents that use +longdesc A4 paper size. Moreover, LayAureo provides both a simple hook +longdesc for leaving an empty space which is required if pages are +longdesc bundled by a press binding (use option binding=length), and an +longdesc option called big which it forces typearea to become maximum. +containersize 1748 +containerchecksum 849b0e0fbd15b45cb31ed4856b0eaa190c26437a1965da2c860af62b65cbb000b590320611e96c5a6c4cc63c029c31fb352ec44d96e0704eb52c70ee460abcd3 +doccontainersize 126876 +doccontainerchecksum b4333e1361b352689dfd67e13a694a304449eac61ef8189957356bd94e5745f4c15fa38bc21219c8a21805dbecd44a51e719bbcd884b850ba1276759bdebeb94 +docfiles size=37 + RELOC/doc/latex/layaureo/README details="Readme and summary" + RELOC/doc/latex/layaureo/layaureo.pdf details="Package documentation" language="it" +srccontainersize 8972 +srccontainerchecksum 054df6aade854320987e605aad0a641778336ef918ef086dd097db8d1a2fc8d623f0335aa4ffb98942e157438ba06b6e75411b48db541779fc2a6e08e5b1c594 +srcfiles size=7 + RELOC/source/latex/layaureo/layaureo.dtx + RELOC/source/latex/layaureo/layaureo.ins +runfiles size=1 + RELOC/tex/latex/layaureo/layaureo.sty +catalogue-ctan /macros/latex/contrib/layaureo +catalogue-license lppl +catalogue-topics layout +catalogue-version 0.2 + +name layouts +category Package +revision 42428 +shortdesc Display various elements of a document's layout +relocated 1 +longdesc Display information about a document, including: text +longdesc positioning on a page; disposition of floats; layout of +longdesc paragraphs, lists, footnotes, table of contents, and sectional +longdesc headings; font boxes. Facilities are provided for a document +longdesc designer to experiment with the layout parameters. +containersize 13564 +containerchecksum 9db14862ac1bea22096130ddac071a9b058e4cc1309917d2f8e8c536f280d2f4efc9a8dad9a5dbec0824b94f92c290e82820ec1628f0e4b72aa8fa617b72d981 +doccontainersize 477556 +doccontainerchecksum aa6639c5ca0029efda9af523a0a075ef2b60ae9e031bd68232ee03792bb2f7452e2201e7223735e83b7979f2c057674fcedde4ed416254ab4b5b8a6cd9bb002e +docfiles size=143 + RELOC/doc/latex/layouts/README details="Readme" + RELOC/doc/latex/layouts/layman.pdf details="Package documentation" + RELOC/doc/latex/layouts/layouts.pdf +srccontainersize 40952 +srccontainerchecksum 1abb95aa76cb3dc55d7426b8f98923662b48fa91ae8e5e2c3c01fb14dc28c8ceae90c01c9a22b1f59103e56d1818675d6da6223be6771083562ebc50ceff07b6 +srcfiles size=63 + RELOC/source/latex/layouts/layman.tex + RELOC/source/latex/layouts/layouts.dtx + RELOC/source/latex/layouts/layouts.ins +runfiles size=26 + RELOC/tex/latex/layouts/layouts.sty +catalogue-also layout +catalogue-ctan /macros/latex/contrib/layouts +catalogue-license lppl1.3 +catalogue-topics geometry layout-show +catalogue-version 2.6d + +name lazylist +category Package +revision 17691 +shortdesc Lists in TeX's "mouth" +relocated 1 +longdesc The package was developed to provide flexible lists, whose +longdesc ordering can be altered on the fly. The implementation involves +longdesc a pile of lambda-calculus and list-handling macros of an +longdesc incredibly obtuse nature. The TUGboat paper serves as a manual +longdesc for the macros. Having said all of which, confidence is +longdesc enhanced by the knowledge that the TeX code was formally +longdesc verified. +containersize 1680 +containerchecksum 5ceccebce9cf3ff0574c471141f94b919d14a7faf1b5c7b5e09eb079aee11cb95bdfa7d8b26fb83e99875818d842cbd64733ab7cf7b7024f04f661f732a3fb04 +doccontainersize 120736 +doccontainerchecksum 1ecf491370fd7ba0fcd3ef1ce11df768509c32bc9bf14978e3d6f36e39094570144b897337bbc481bfeb8b74354b36f66d561a33e255ba50aae0a5c42f002e7e +docfiles size=43 + RELOC/doc/latex/lazylist/lazylist.pdf details="Paper prepared for TUGboat" + RELOC/doc/latex/lazylist/lazylist.tex +runfiles size=1 + RELOC/tex/latex/lazylist/lazylist.sty +catalogue-ctan /macros/latex/contrib/lazylist +catalogue-license lppl1.2 +catalogue-topics list +catalogue-version 1.0a + +name lccaps +category Package +revision 46432 +shortdesc Lowercased (spaced) small capitals +relocated 1 +longdesc This little package serves the purpose of providing a uniform +longdesc method to use lowercased small capitals and spaced lowercased +longdesc small capitals. It relies on the iftex, textcase, and microtype +longdesc packages and comes with four new user macros: \textlcc, the +longdesc main feature: lowercased small capitals; \spacedcaps, a prefix +longdesc to small capitals text commands to slightly increase their +longdesc spacing; \textslcc and \textssc, which are shortcuts for +longdesc \spacedcaps\textlcc and \spacedcaps\textsc (accordingly). +containersize 1544 +containerchecksum 98d57c77a3ca19a067c04c9cef06d632e56f42daaa70ec729a7cbf3ff68ef3e7ab95e1d0d25cf853d85dd1916668dd5601ba6feb889d1eda344b3ebcb31da333 +doccontainersize 151000 +doccontainerchecksum ce14177476624831de64a12ef858516a2df28a3e194748a1c759d7a41743a93e03a7d96bff3acd85f9db0f5d4c96a53aff7b73077e131bc6fa807c8b36844bef +docfiles size=38 + RELOC/doc/latex/lccaps/README.md details="Readme" + RELOC/doc/latex/lccaps/lccaps.pdf details="Package documentation" +srccontainersize 2980 +srccontainerchecksum cb0f4f8400542d9d15e55dd8d9b55ecc1aad60dfda5de9ab342e8e02d075123e9b32b1c19dbed700ad8626d754a11be6e694a86b6eef757db3a6f47f9f5a22d8 +srcfiles size=3 + RELOC/source/latex/lccaps/lccaps.dtx + RELOC/source/latex/lccaps/lccaps.ins +runfiles size=1 + RELOC/tex/latex/lccaps/lccaps.sty +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-license lppl1.3c +catalogue-topics font-supp +catalogue-version 1.0 + +name lcd +category Package +revision 16549 +shortdesc Alphanumerical LCD-style displays +relocated 1 +longdesc A LaTeX package that will display text as on an (early) LCD +longdesc display (the output is very visibly pixellated). Assumes 8-bit +longdesc input in its internal verbatim-style environment. +containersize 3220 +containerchecksum 829c0fbed639619707023c1df1fa511d584e4805aa4f26b0ba5e5c5dd85d927901f4ad949e4a171d9765995c9ccfd34e5d45aa44dfef2508d5ec84c27712e05a +doccontainersize 64288 +doccontainerchecksum 385df3ec85fdbaa579b15f0ef0fa2347e15cb796a84265b1cc7a9e2bc520c0c98d0703615ed28c68ce5ab7cbca6f2699502ec26a31297c14b0039dd4b584fd86 +docfiles size=21 + RELOC/doc/latex/lcd/00readme details="Package README" + RELOC/doc/latex/lcd/example.pdf details="Examples" + RELOC/doc/latex/lcd/example.tex +srccontainersize 10796 +srccontainerchecksum 1d788d589c959240c92775455ee3272b8014a9491f2299c4d6f4d9aff66681100a6352bfbb644e0c4cb770e27152bb5b3fdf0f347aff489c172189c542a02e58 +srcfiles size=11 + RELOC/source/latex/lcd/lcd.dtx + RELOC/source/latex/lcd/lcd.ins +runfiles size=3 + RELOC/tex/latex/lcd/lcd.sty +catalogue-ctan /macros/latex/contrib/lcd +catalogue-license lppl +catalogue-topics graphics-in-tex +catalogue-version 0.3 + +name lcdftypetools +category TLCore +revision 52851 +catalogue lcdf-typetools +shortdesc A bundle of outline font manipulation tools +longdesc This bundle of tools comprises: Cfftot1, which translates a +longdesc Compact Font Format (CFF) font, or a PostScript-flavored +longdesc OpenType font, into PostScript Type 1 format. It correctly +longdesc handles subroutines and hints; Mmafm and mmpfb, which create +longdesc instances of multiple-master fonts (mmafm and mmpfb were +longdesc previously distributed in their own package, mminstance); +longdesc Otfinfo, which reports information about OpenType fonts, such +longdesc as the features they support and the contents of their 'size' +longdesc optical size features; Otftotfm, which creates TeX font metrics +longdesc and encodings that correspond to a PostScript-flavored OpenType +longdesc font. It will interpret glyph positionings, substitutions, and +longdesc ligatures as far as it is able. You can say which OpenType +longdesc features should be activated; T1dotlessj, creates a Type 1 font +longdesc whose only character is a dotless j matching the input font's +longdesc design; T1lint, which checks a Type 1 font for correctness; +longdesc T1reencode, which replaces a font's internal encoding with one +longdesc you specify; and T1testpage, which creates a PostScript proof +longdesc for a Type 1 font. It is preliminary software. +depend glyphlist +depend lcdftypetools.ARCH +containersize 1004 +containerchecksum 3f3cc8f7cce233eb36315b21db408847a267ff393d6d4118de61c4b03ec408f3f29b2d41fdcf84995bfbf5d07bcb25984d7ffc76458d4f2dc12fdb6dfb85e23f +doccontainersize 258904 +doccontainerchecksum 5a1dd1e2fd79351afc65d6786b24aebd9681a2b9e92755b44a836b47da5ceb1817f085483f306991a113dc0c26edfcd84839dec93bb46a003034536f31b31e5f +docfiles size=105 + texmf-dist/doc/man/man1/cfftot1.1 + texmf-dist/doc/man/man1/cfftot1.man1.pdf + texmf-dist/doc/man/man1/mmafm.1 + texmf-dist/doc/man/man1/mmafm.man1.pdf + texmf-dist/doc/man/man1/mmpfb.1 + texmf-dist/doc/man/man1/mmpfb.man1.pdf + texmf-dist/doc/man/man1/otfinfo.1 + texmf-dist/doc/man/man1/otfinfo.man1.pdf + texmf-dist/doc/man/man1/otftotfm.1 + texmf-dist/doc/man/man1/otftotfm.man1.pdf + texmf-dist/doc/man/man1/t1dotlessj.1 + texmf-dist/doc/man/man1/t1dotlessj.man1.pdf + texmf-dist/doc/man/man1/t1lint.1 + texmf-dist/doc/man/man1/t1lint.man1.pdf + texmf-dist/doc/man/man1/t1rawafm.1 + texmf-dist/doc/man/man1/t1rawafm.man1.pdf + texmf-dist/doc/man/man1/t1reencode.1 + texmf-dist/doc/man/man1/t1reencode.man1.pdf + texmf-dist/doc/man/man1/t1testpage.1 + texmf-dist/doc/man/man1/t1testpage.man1.pdf + texmf-dist/doc/man/man1/ttftotype42.1 + texmf-dist/doc/man/man1/ttftotype42.man1.pdf +catalogue-contact-home http://www.lcdf.org/type/ +catalogue-ctan /fonts/utilities/lcdf-typetools +catalogue-license gpl +catalogue-topics font-devel + +name lcdftypetools.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of lcdftypetools +containersize 664856 +containerchecksum f1058d70d83ac89e84f9eec670f1783c42559a0c8ebdc7209627dfad5f285b9df9529b539dfc22703acb8fee2c265faa1b11ff02f6180cef88990da26c565fb4 +binfiles arch=aarch64-linux size=1225 + bin/aarch64-linux/cfftot1 + bin/aarch64-linux/mmafm + bin/aarch64-linux/mmpfb + bin/aarch64-linux/otfinfo + bin/aarch64-linux/otftotfm + bin/aarch64-linux/t1dotlessj + bin/aarch64-linux/t1lint + bin/aarch64-linux/t1rawafm + bin/aarch64-linux/t1reencode + bin/aarch64-linux/t1testpage + bin/aarch64-linux/ttftotype42 + +name lcdftypetools.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of lcdftypetools +containersize 633868 +containerchecksum 07ff0317d4cf2299c92142bf6efeccb620b9f8eee601224632fcaa0dc5718342b90d89e53fc50f22c40bc2d6282f76f9ce320b3304a4cc0c1f19e4aaea23326e +binfiles arch=amd64-freebsd size=937 + bin/amd64-freebsd/cfftot1 + bin/amd64-freebsd/mmafm + bin/amd64-freebsd/mmpfb + bin/amd64-freebsd/otfinfo + bin/amd64-freebsd/otftotfm + bin/amd64-freebsd/t1dotlessj + bin/amd64-freebsd/t1lint + bin/amd64-freebsd/t1rawafm + bin/amd64-freebsd/t1reencode + bin/amd64-freebsd/t1testpage + bin/amd64-freebsd/ttftotype42 + +name lcdftypetools.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of lcdftypetools +containersize 684932 +containerchecksum fcea348d4fc4ef28a34894a4fe2d921f96ba77c3ad4d5821a8ad872cda74926dff5d21ee457463d281037ddde6ce4dcc31b85dfa024c4253edca33e34233002e +binfiles arch=amd64-netbsd size=1258 + bin/amd64-netbsd/cfftot1 + bin/amd64-netbsd/mmafm + bin/amd64-netbsd/mmpfb + bin/amd64-netbsd/otfinfo + bin/amd64-netbsd/otftotfm + bin/amd64-netbsd/t1dotlessj + bin/amd64-netbsd/t1lint + bin/amd64-netbsd/t1rawafm + bin/amd64-netbsd/t1reencode + bin/amd64-netbsd/t1testpage + bin/amd64-netbsd/ttftotype42 + +name lcdftypetools.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of lcdftypetools +containersize 498220 +containerchecksum e2c5a791803c837447ca7c67a1bbd93eb5ed9c4290a41155502d85b2550f8576611a008d2ba41d5cd9fe72fff96b31ba74df61ab3527c0075426d8e72b274087 +binfiles arch=armhf-linux size=914 + bin/armhf-linux/cfftot1 + bin/armhf-linux/mmafm + bin/armhf-linux/mmpfb + bin/armhf-linux/otfinfo + bin/armhf-linux/otftotfm + bin/armhf-linux/t1dotlessj + bin/armhf-linux/t1lint + bin/armhf-linux/t1rawafm + bin/armhf-linux/t1reencode + bin/armhf-linux/t1testpage + bin/armhf-linux/ttftotype42 + +name lcdftypetools.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of lcdftypetools +containersize 603728 +containerchecksum 5b270b8173af7d2e14e5b9b3720cf8ca73cd25dcf8baf15558569d793032c94a8629490bd4e92316bc35c255e4c0cd4e19ecd19cccd763371c36e2744f7b9e1b +binfiles arch=i386-cygwin size=1088 + bin/i386-cygwin/cfftot1.exe + bin/i386-cygwin/mmafm.exe + bin/i386-cygwin/mmpfb.exe + bin/i386-cygwin/otfinfo.exe + bin/i386-cygwin/otftotfm.exe + bin/i386-cygwin/t1dotlessj.exe + bin/i386-cygwin/t1lint.exe + bin/i386-cygwin/t1rawafm.exe + bin/i386-cygwin/t1reencode.exe + bin/i386-cygwin/t1testpage.exe + bin/i386-cygwin/ttftotype42.exe + +name lcdftypetools.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of lcdftypetools +containersize 628048 +containerchecksum 837aaa652414e84ba1c7c1f0de602290b3af7481ce0785119db84e53d38f23ec094cf14003fbbfefaed6baac9568e45df0dd63e1f1bec328270c1370fb19284c +binfiles arch=i386-freebsd size=859 + bin/i386-freebsd/cfftot1 + bin/i386-freebsd/mmafm + bin/i386-freebsd/mmpfb + bin/i386-freebsd/otfinfo + bin/i386-freebsd/otftotfm + bin/i386-freebsd/t1dotlessj + bin/i386-freebsd/t1lint + bin/i386-freebsd/t1rawafm + bin/i386-freebsd/t1reencode + bin/i386-freebsd/t1testpage + bin/i386-freebsd/ttftotype42 + +name lcdftypetools.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of lcdftypetools +containersize 694764 +containerchecksum 9ac05ad89c92a072995ec4ad6197060a4d2086dc7d197986505a8084a5d5f5a81b90d619a7d976603d2b3a846d0c4267de8fe0f918446e7c70f72b85991d33ac +binfiles arch=i386-linux size=1133 + bin/i386-linux/cfftot1 + bin/i386-linux/mmafm + bin/i386-linux/mmpfb + bin/i386-linux/otfinfo + bin/i386-linux/otftotfm + bin/i386-linux/t1dotlessj + bin/i386-linux/t1lint + bin/i386-linux/t1rawafm + bin/i386-linux/t1reencode + bin/i386-linux/t1testpage + bin/i386-linux/ttftotype42 + +name lcdftypetools.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of lcdftypetools +containersize 658156 +containerchecksum 03d8f45b2a6b9d35f98ac5487d5454d868956eb3a37d774919098e8731ad62b09611f8ea09cda6c5605b0c9d0c013de56839d8d5df494ba85b34e1f5220b77e2 +binfiles arch=i386-netbsd size=1151 + bin/i386-netbsd/cfftot1 + bin/i386-netbsd/mmafm + bin/i386-netbsd/mmpfb + bin/i386-netbsd/otfinfo + bin/i386-netbsd/otftotfm + bin/i386-netbsd/t1dotlessj + bin/i386-netbsd/t1lint + bin/i386-netbsd/t1rawafm + bin/i386-netbsd/t1reencode + bin/i386-netbsd/t1testpage + bin/i386-netbsd/ttftotype42 + +name lcdftypetools.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of lcdftypetools +containersize 824320 +containerchecksum acf3757f6bee9b553e21247aa80218680ee6c552b676a047899356441d46e6ff95bd4c618f52099a16bcaf42e9cf491bb6045ad2b048d432dcf421d19a297c5d +binfiles arch=i386-solaris size=1297 + bin/i386-solaris/cfftot1 + bin/i386-solaris/mmafm + bin/i386-solaris/mmpfb + bin/i386-solaris/otfinfo + bin/i386-solaris/otftotfm + bin/i386-solaris/t1dotlessj + bin/i386-solaris/t1lint + bin/i386-solaris/t1rawafm + bin/i386-solaris/t1reencode + bin/i386-solaris/t1testpage + bin/i386-solaris/ttftotype42 + +name lcdftypetools.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of lcdftypetools +containersize 1290584 +containerchecksum aa099612bd5bbadcb10afe92c2a11a593b3fb9364d38c1a80c40d73ed7f6642c4a103494af0b22ee80e8fc3bf3d2b1cdfe8bc074dc065e23212975c513608ef6 +binfiles arch=universal-darwin size=2103 + bin/universal-darwin/cfftot1 + bin/universal-darwin/mmafm + bin/universal-darwin/mmpfb + bin/universal-darwin/otfinfo + bin/universal-darwin/otftotfm + bin/universal-darwin/t1dotlessj + bin/universal-darwin/t1lint + bin/universal-darwin/t1rawafm + bin/universal-darwin/t1reencode + bin/universal-darwin/t1testpage + bin/universal-darwin/ttftotype42 + +name lcdftypetools.win32 +category TLCore +revision 58783 +shortdesc win32 files of lcdftypetools +containersize 703488 +containerchecksum 8945dd808cbacc646ce25020b24b4de69b49a67a63656bb46c8fddbe00d2ff18d16a9c939ce9aedfa54ab7508e840cc9ac9d9cdc39378ef04d81c35a41fc56b4 +binfiles arch=win32 size=947 + bin/win32/cfftot1.exe + bin/win32/mmafm.exe + bin/win32/mmpfb.exe + bin/win32/otfinfo.exe + bin/win32/otftotfm.exe + bin/win32/t1dotlessj.exe + bin/win32/t1lint.exe + bin/win32/t1rawafm.exe + bin/win32/t1reencode.exe + bin/win32/t1testpage.exe + bin/win32/ttftotype42.exe + +name lcdftypetools.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of lcdftypetools +containersize 588000 +containerchecksum 373e6f31dc49f96cd560e4ae5adcb74b621cd743e3fe599effd6d4501d84f6a6343ce3e49b490f674ef352481c3c8e46e9fa8b93c9c924a427128b401e5a6aab +binfiles arch=x86_64-cygwin size=1033 + bin/x86_64-cygwin/cfftot1.exe + bin/x86_64-cygwin/mmafm.exe + bin/x86_64-cygwin/mmpfb.exe + bin/x86_64-cygwin/otfinfo.exe + bin/x86_64-cygwin/otftotfm.exe + bin/x86_64-cygwin/t1dotlessj.exe + bin/x86_64-cygwin/t1lint.exe + bin/x86_64-cygwin/t1rawafm.exe + bin/x86_64-cygwin/t1reencode.exe + bin/x86_64-cygwin/t1testpage.exe + bin/x86_64-cygwin/ttftotype42.exe + +name lcdftypetools.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of lcdftypetools +containersize 630700 +containerchecksum 0bb7fc5b20405cb0cf0fdfe71cc971358e72945c9f6a49239333bca37260722050f0557a8d2a20f4c530ad9818d6530f1ff30832a00ca2f85178f3a56c5d6604 +binfiles arch=x86_64-darwinlegacy size=864 + bin/x86_64-darwinlegacy/cfftot1 + bin/x86_64-darwinlegacy/mmafm + bin/x86_64-darwinlegacy/mmpfb + bin/x86_64-darwinlegacy/otfinfo + bin/x86_64-darwinlegacy/otftotfm + bin/x86_64-darwinlegacy/t1dotlessj + bin/x86_64-darwinlegacy/t1lint + bin/x86_64-darwinlegacy/t1rawafm + bin/x86_64-darwinlegacy/t1reencode + bin/x86_64-darwinlegacy/t1testpage + bin/x86_64-darwinlegacy/ttftotype42 + +name lcdftypetools.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of lcdftypetools +containersize 680296 +containerchecksum 6465df752752473925d88701940e3319efdd497d78190c9ea6abe74c68508d24b0667baff8e04c4a95e2fe8e3362782ace3f624d0582abc2ad7523c0d88e598c +binfiles arch=x86_64-linux size=1120 + bin/x86_64-linux/cfftot1 + bin/x86_64-linux/mmafm + bin/x86_64-linux/mmpfb + bin/x86_64-linux/otfinfo + bin/x86_64-linux/otftotfm + bin/x86_64-linux/t1dotlessj + bin/x86_64-linux/t1lint + bin/x86_64-linux/t1rawafm + bin/x86_64-linux/t1reencode + bin/x86_64-linux/t1testpage + bin/x86_64-linux/ttftotype42 + +name lcdftypetools.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of lcdftypetools +containersize 769440 +containerchecksum 3c9259ceafdf7c66940acb161810d64d5b55fc7bb415a09c7d6d952082a61da4895a1a89052feff02046daccb9d8e1cfa14130f3f699d0a575297ae86c1da751 +binfiles arch=x86_64-linuxmusl size=1184 + bin/x86_64-linuxmusl/cfftot1 + bin/x86_64-linuxmusl/mmafm + bin/x86_64-linuxmusl/mmpfb + bin/x86_64-linuxmusl/otfinfo + bin/x86_64-linuxmusl/otftotfm + bin/x86_64-linuxmusl/t1dotlessj + bin/x86_64-linuxmusl/t1lint + bin/x86_64-linuxmusl/t1rawafm + bin/x86_64-linuxmusl/t1reencode + bin/x86_64-linuxmusl/t1testpage + bin/x86_64-linuxmusl/ttftotype42 + +name lcdftypetools.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of lcdftypetools +containersize 842508 +containerchecksum 5cd90653c252685d58aaa77a48fc2893a36d16cc6545a83934e1cd0e85e30a6d8a31c44af78b1b6463b94303c40370fe29ab3e4ad01fbf4382e7bad4e6b8b686 +binfiles arch=x86_64-solaris size=1403 + bin/x86_64-solaris/cfftot1 + bin/x86_64-solaris/mmafm + bin/x86_64-solaris/mmpfb + bin/x86_64-solaris/otfinfo + bin/x86_64-solaris/otftotfm + bin/x86_64-solaris/t1dotlessj + bin/x86_64-solaris/t1lint + bin/x86_64-solaris/t1rawafm + bin/x86_64-solaris/t1reencode + bin/x86_64-solaris/t1testpage + bin/x86_64-solaris/ttftotype42 + +name lcg +category Package +revision 31474 +shortdesc Generate random integers +relocated 1 +longdesc The lcg package generates random numbers (integers) via a +longdesc linear congruential generator (Schrage's method). The random +longdesc numbers are written to a counter. The keyval package is used +longdesc for the user to provide values for the range and a seed, and +longdesc for the name of the counter to be used. +containersize 2668 +containerchecksum 6ca6f347b6ca4104ec376554ff7ba5d19002b2b4174fa491f3fec87d6c75c3ed11c1d13b9e7d30e6c086b2a12dc3013f21ee10b482c95b177f0eaff02d953fee +doccontainersize 247496 +doccontainerchecksum 5674612693481265f72420ae10914329029f9af2f526e6b59ba2614d4d2994a0033cb3393d2751064987698f819cca8e0fa3783555db3fa6cc5849f337b1cfd5 +docfiles size=65 + RELOC/doc/latex/lcg/lcg.pdf details="Package documentation" +srccontainersize 6444 +srccontainerchecksum b26dc9e706b14c304a282d2b5abc2d0fdb81799238c3951badb6152f8c83f6a2ace579ea0c2fb782bdfe0d02448cf716e77c3114ff0be594b12bcabbe138b17a +srcfiles size=7 + RELOC/source/latex/lcg/lcg.dtx + RELOC/source/latex/lcg/lcg.ins +runfiles size=2 + RELOC/tex/latex/lcg/lcg.sty +catalogue-also random +catalogue-ctan /macros/latex/contrib/lcg +catalogue-license lppl +catalogue-topics calculation random +catalogue-version 1.3 + +name lcyw +category Package +revision 15878 +shortdesc Make Classic Cyrillic CM fonts accessible in LaTeX +relocated 1 +longdesc The package makes the classic CM Cyrillic fonts accessible for +longdesc use with LaTeX. +containersize 3996 +containerchecksum 324a9eb8f1a68124888ad7d4f35dd0446c917e643e2cdcfa041ca26b719ccdc541b9b89857aa05dea2d599912c506561c762d288ccc86d637fd927cc70bf910d +doccontainersize 107760 +doccontainerchecksum c063b6b5d23bd0a7197f5bd3121c93237c24f0a77fbc72cb370a7cd535282151731ef03098c36d8152707c50808c1b996fd1adaf16185bd3d0e3589e85b67981 +docfiles size=29 + RELOC/doc/latex/lcyw/README details="Readme" + RELOC/doc/latex/lcyw/README.koi8-r + RELOC/doc/latex/lcyw/example-lcyw.tex + RELOC/doc/latex/lcyw/lcyw.pdf details="Package documentation" +srccontainersize 7420 +srccontainerchecksum 5303052e625fa1e07a3e54a682a11469f0b14697fad5658f2eb6d0266dfa25e6f66bd752265a3ca99dab138200711b48cadb29d8b1a1a878a59f5c5e112aa860 +srcfiles size=10 + RELOC/source/latex/lcyw/lcyw.dtx + RELOC/source/latex/lcyw/lcyw.ins + RELOC/source/latex/lcyw/lcywfd.fdd +runfiles size=10 + RELOC/tex/latex/lcyw/cmap-cyr-vf.sty + RELOC/tex/latex/lcyw/koi7a.cmap + RELOC/tex/latex/lcyw/lcywcmr.fd + RELOC/tex/latex/lcyw/lcywcmss.fd + RELOC/tex/latex/lcyw/lcywcmssq.fd + RELOC/tex/latex/lcyw/lcywcmtt.fd + RELOC/tex/latex/lcyw/lcywenc.def +catalogue-ctan /macros/latex/contrib/lcyw +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 1.1 + +name leading +category Package +revision 15878 +shortdesc Define leading with a length +relocated 1 +longdesc The package defines a command \leading, whose argument is a +longdesc <length> that specifies the nominal distance between +longdesc consecutive baselines of typeset text. The command replaces the +longdesc rather more difficult LaTeX command \linespread{<ratio>}, where +longdesc the leading is specified by reference to the font size. +containersize 1140 +containerchecksum c326950e6c4b07782148ee4c9ac5b22f7e42512e0bc6e5e1f75be6ed757ca90ebf2bb6b30b91ceaac32c761d595ba5799f0f40ca15954f150d481ea366f1c72d +doccontainersize 84128 +doccontainerchecksum 3ede6910ccb0a30c3ae9c78b86cf00cd7e2c5d8905b648861d2113d0af6225b2ffdc30509a72a5f69dd9e1164525c3225cd4ecaa04471ddf5c346a862fe097e4 +docfiles size=24 + RELOC/doc/latex/leading/README details="Readme" + RELOC/doc/latex/leading/leading.pdf details="Package documentation" +srccontainersize 3576 +srccontainerchecksum b42b230efc2508f4b3901de791424251c6e0ff003bb342fa11ea282f46b2dfd5c68a63c95fbb9aee146839944586218a3cec0ef182575a9760d3ed3f5924d78f +srcfiles size=4 + RELOC/source/latex/leading/leading.dtx + RELOC/source/latex/leading/leading.ins +runfiles size=1 + RELOC/tex/latex/leading/leading.sty +catalogue-ctan /macros/latex/contrib/leading +catalogue-license lppl +catalogue-topics typesetting layout +catalogue-version 0.3 + +name leadsheets +category Package +revision 52275 +shortdesc Typesetting leadsheets and songbooks +relocated 1 +longdesc This LaTeX package offers support for typesetting simple +longdesc leadsheets of songs, i.e. song lyrics and the corresponding +longdesc chords. +containersize 16964 +containerchecksum e7a84348b6347962fad95171059e968f35e7601da51ae6fa278add1ed4262bd7ab84bddad9b48780e7481056bece9c311ed1cc25e77c57f9d9e0649abc9197e5 +doccontainersize 958896 +doccontainerchecksum dea48a9b053aa67f6d9e3dcd3560ceccd104d743a5797320e76d43cdb8709afe7236f7ac8ef23dc9175268fe57c97898c92d0dc329a4e3151b017544fa537521 +docfiles size=255 + RELOC/doc/latex/leadsheets/README details="Readme" + RELOC/doc/latex/leadsheets/leadsheets_en.pdf details="Package documentation" + RELOC/doc/latex/leadsheets/leadsheets_en.tex +runfiles size=33 + RELOC/tex/latex/leadsheets/leadsheet.cls + RELOC/tex/latex/leadsheets/leadsheets.library.chordnames.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.chords.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.external.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.musejazz.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.musicsymbols.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.properties.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.shorthands.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.songs.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.templates.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.translations.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.transposing.code.tex + RELOC/tex/latex/leadsheets/leadsheets.sty +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-license lppl1.3 +catalogue-topics music chords +catalogue-version 0.6 + +name leaflet +category Package +revision 56878 +shortdesc Create small handouts (flyers) +relocated 1 +longdesc A document class to create small hand-outs (flyers) that fit on +longdesc a single sheet of paper which is then folded twice. Pages are +longdesc rearranged by LaTeX so that they print correctly on a single +longdesc sheet -- no external script is necessary. (Works with +longdesc PostScript and PDF.) This is a complete reimplementation with +longdesc permission of the original author Jurgen Schlegelmilch. +containersize 5652 +containerchecksum ec809f2aa4cbc16dd26aae988e2e3b5fcef9284cd31deb126d26989358e52596a50fd63df07095f0bf081c46d1e8af3b3f59572d372be873d9afe1f3db3cee95 +doccontainersize 344060 +doccontainerchecksum ccfee44447524b112f47211729bcd2c78021dfd19394b82eb7024bd10a68d1a04789d01d16cc9f3b5eab7feda884eae6bbd47b6abe8023893587c49613b44d6a +docfiles size=88 + RELOC/doc/latex/leaflet/README.md details="Readme" + RELOC/doc/latex/leaflet/leaflet-manual.pdf details="Package manual (as a leaflet)" + RELOC/doc/latex/leaflet/leaflet-manual.tex + RELOC/doc/latex/leaflet/leaflet.pdf details="Documented source" +srccontainersize 13844 +srccontainerchecksum cb505761b78adbc0dd69fba2888ab86394c7c32fd590969f721cebac249ab8298c87fad284fbb8bd9d557e4f7741559536e504155ee3b4f771dd135204857337 +srcfiles size=13 + RELOC/source/latex/leaflet/leaflet.dtx + RELOC/source/latex/leaflet/leaflet.ins +runfiles size=5 + RELOC/tex/latex/leaflet/leaflet.cls +catalogue-contact-bugs https://github.com/rolfn/leaflet/issues +catalogue-contact-repository https://github.com/rolfn/leaflet +catalogue-ctan /macros/latex/contrib/leaflet +catalogue-license lppl1.3 +catalogue-topics layout class +catalogue-version 2.1a + +name lebhart +category Package +revision 58503 +shortdesc Write your articles in a colorful way +relocated 1 +longdesc This package provides a LaTeX class for typesetting articles +longdesc with a colorful design. Currently, it has native support for +longdesc English, French, and Chinese typesetting. It compiles with +longdesc either XeLaTeX or LuaLaTeX. This is part of the colorist class +longdesc series and depends on colorist.sty from the colorist package. +longdesc The package name "lebhart" is taken from the German word +longdesc "lebhaft" ("vivid"), combined with the first three letters of +longdesc "Artikel" ("article"). +depend colorist +containersize 3044 +containerchecksum 9f2e2a2b45593dcbcf57bb5a41b0785c73b3e920d26b2311f25776d5902b325db23931f3d9fb642804c374ac00495b350af5559b9bf7bc7fd367f90919a4e94f +doccontainersize 273048 +doccontainerchecksum b3f9af0dd9a4a08034bbe769a3d8a0f76aa741431646ce9be168d6292688c63070d57c3757c799fc2d37391cee12e65828e31062c9abad80b2ca7167ab881f4f +docfiles size=81 + RELOC/doc/latex/lebhart/LICENSE + RELOC/doc/latex/lebhart/README.md details="Readme" + RELOC/doc/latex/lebhart/lebhart-doc-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/lebhart/lebhart-doc-cn.tex + RELOC/doc/latex/lebhart/lebhart-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/lebhart/lebhart-doc-en.tex +runfiles size=2 + RELOC/tex/latex/lebhart/lebhart.cls +catalogue-also colorist +catalogue-contact-repository https://github.com/Jinwen-XU/colorist +catalogue-ctan /macros/unicodetex/latex/lebhart +catalogue-license lppl1.3c +catalogue-topics class article-like chinese + +name lecturer +category Package +revision 23916 +shortdesc On-screen presentations for (almost) all formats +relocated 1 +longdesc The package creates slides for on-screen presentations based on +longdesc PDF features without manipulating TeX's typesetting process. +longdesc The presentation flow relies on PDF's abilities to display +longdesc content step by step. Features include: Free positioning of +longdesc anything anywhere in painted areas on the slide, as well as in +longdesc the main textblock; Numerous attributes to control the layout +longdesc and the presentation flow, from TeX's primitive dimensions to +longdesc the visibility of steps; Feature inheritance from global to +longdesc local settings, with intermediate types; Basic drawing +longdesc facilities to produce symbols, e.g., for list items or buttons; +longdesc Colours, transparency, shades, and pictures; Navigation with +longdesc links, pop-up menus, and customizable bookmarks; Easy switch +longdesc between presentation and handout; and PDF transitions. Besides +longdesc the traditional documentation, the distribution includes visual +longdesc documentation and six demo presentations ranging from geometric +longdesc abstraction to classic style to silly video game. Lecturer is +longdesc designed to work with all formats, but presently fails with +longdesc ConTeXt MkIV (because of clashes in management of PDF objects, +longdesc probably), works only with pdfTeX and LuaTeX for the time +longdesc being, and requires texapi and yax, both v.1.02. +containersize 18668 +containerchecksum e0c217ed089dccb7cb526e62456bf72d186bf8cdc69b2014bd4210b6f1225277d1afb514f381e4581727900c6ebf34780bb4df01c3682580cea0418fa9caa1db +doccontainersize 1126000 +doccontainerchecksum 97892442ebe9263cbdc8e35ecbc2f3acebdaa886e5fe814bcc0ada98b0cecd9e140a0d103adc9eb0aab1e5e48e9d7f4ab42e786d52f8fcc96d03db17c51fc17b +docfiles size=1022 + RELOC/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.pdf + RELOC/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.tex + RELOC/doc/generic/lecturer/LecturerDemo-KitschScienceFiction.pdf + RELOC/doc/generic/lecturer/LecturerDemo-KitschScienceFiction.tex + RELOC/doc/generic/lecturer/LecturerDemo-Mondrian.pdf + RELOC/doc/generic/lecturer/LecturerDemo-Mondrian.tex + RELOC/doc/generic/lecturer/LecturerDemo-SimplePresentation.pdf + RELOC/doc/generic/lecturer/LecturerDemo-SimplePresentation.tex + RELOC/doc/generic/lecturer/LecturerDemo-SquaresOfAs.pdf + RELOC/doc/generic/lecturer/LecturerDemo-SquaresOfAs.tex + RELOC/doc/generic/lecturer/LecturerDemo-ThePoodleLectures.pdf + RELOC/doc/generic/lecturer/LecturerDemo-ThePoodleLectures.tex + RELOC/doc/generic/lecturer/LecturerDemo-VisualDoc.pdf details="Visual package documentation" + RELOC/doc/generic/lecturer/LecturerDemo-VisualDoc.tex + RELOC/doc/generic/lecturer/README details="Readme" + RELOC/doc/generic/lecturer/lecturer-doc.pdf details="Package documentation" + RELOC/doc/generic/lecturer/lecturer-doc.tex + RELOC/doc/generic/lecturer/universe.jpg +runfiles size=23 + RELOC/tex/generic/lecturer/lecturer.sty + RELOC/tex/generic/lecturer/lecturer.tex + RELOC/tex/generic/lecturer/ltr-areas.tex + RELOC/tex/generic/lecturer/ltr-graphics.tex + RELOC/tex/generic/lecturer/ltr-job.tex + RELOC/tex/generic/lecturer/ltr-navigation.tex + RELOC/tex/generic/lecturer/ltr-slides.tex + RELOC/tex/generic/lecturer/ltr-steps.tex + RELOC/tex/generic/lecturer/t-lecturer.tex +catalogue-ctan /macros/generic/lecturer +catalogue-license lppl +catalogue-topics presentation + +name lectures +category Package +revision 53642 +shortdesc A document class for quickly drafting nice looking lecture notes +relocated 1 +longdesc This LaTeX documentclass provides a number of gimmicks to draft +longdesc nice looking lecture notes, such as a number of theorem +longdesc environments, automatic spacing and alignment of figures and +longdesc much more. More information is available in the package readme. +containersize 6740 +containerchecksum e3fb80a67dcb5198503050d61266cbd3890c91c1c5c93042a17f2aa410223c3943e3dcb73d7d6e7a4d5888d87ae9613fc89025f0435c122ab44a8f822732250f +doccontainersize 2080 +doccontainerchecksum bc50485fd0a8782095bbc37b9185bbc61df2a6bdccaef359f2cedd553cedc14ffd0bb8e6690578f1d57b85e2efa650a68af3b579a7c360a737791ddd74373424 +docfiles size=2 + RELOC/doc/latex/lectures/LICENSE + RELOC/doc/latex/lectures/README.md details="Readme" +runfiles size=6 + RELOC/tex/latex/lectures/lectures.cls +catalogue-contact-bugs https://github.com/LucaCappelletti94/lectures/issues +catalogue-contact-repository https://github.com/LucaCappelletti94/lectures +catalogue-ctan /macros/latex/contrib/lectures +catalogue-license mit +catalogue-topics class presentation teaching +catalogue-version 1.0.5 + +name lectureslides +category Package +revision 58393 +shortdesc Combine single PDF files into one file +relocated 1 +longdesc This package makes it easy to combine and index individual PDF +longdesc files into one large PDF file. +containersize 1528 +containerchecksum 8d5c2e6872ae1f6acbfadabf997ff8b4286398afee2cdb01a0be17b243df25fa9677d360872e422ab62b1c8f3150c6fe4e896eb2dc802752ff362df51d684004 +doccontainersize 47572 +doccontainerchecksum 77822069774285b57a68ae543a287d09dde276266f3a4acc767f101eafd113b74a53fbcaa0ee71bedda18edbbca23f2bde5b77a4f33a0f0dd26a631e3b0945b7 +docfiles size=15 + RELOC/doc/latex/lectureslides/README.md details="Readme" + RELOC/doc/latex/lectureslides/lectureslides-doc.pdf details="Package documentation" + RELOC/doc/latex/lectureslides/lectureslides-doc.tex +runfiles size=1 + RELOC/tex/latex/lectureslides/lectureslides.sty +catalogue-also pdfjam pdfpages +catalogue-ctan /macros/latex/contrib/lectureslides +catalogue-license cc-by-4 +catalogue-topics pdfprocess +catalogue-version 0.1 + +name ledmac +category Package +revision 41811 +shortdesc Typeset scholarly editions +relocated 1 +longdesc A macro package for typesetting scholarly critical editions. +longdesc The ledmac package is a LaTeX port of the plain TeX EDMAC +longdesc macros. It supports indexing by page and line number and simple +longdesc tabular- and array-style environments. The package is +longdesc distributed with the related ledpar and ledarab packages. The +longdesc package is now superseded by reledmac. +containersize 25456 +containerchecksum b465117d5634dc4eeaefbc2c12a4d0fb892f4a27ed66057938701fe51e4dedfb5b7f28d796145d89a59b2667cf61c7175803f72e5970cf81244329130d173136 +doccontainersize 2362392 +doccontainerchecksum 7e7fa49106457f13aed11bcf80a1e38f000f5161e9a67bdbb174371db63a3953109f26da3cef8781d2c13abb4b86d5cb0c2b1b41e6f2cd3584512bed1a67cf6a +docfiles size=822 + RELOC/doc/latex/ledmac/Makefile + RELOC/doc/latex/ledmac/README details="Readme" + RELOC/doc/latex/ledmac/djd17nov.tex + RELOC/doc/latex/ledmac/djd17novL.eps + RELOC/doc/latex/ledmac/djd17novR.eps + RELOC/doc/latex/ledmac/djdpoems.tex + RELOC/doc/latex/ledmac/djdpoems1.eps + RELOC/doc/latex/ledmac/djdpoems2.eps + RELOC/doc/latex/ledmac/djdpoems3.eps + RELOC/doc/latex/ledmac/djdpoems4.eps + RELOC/doc/latex/ledmac/egarab.eps + RELOC/doc/latex/ledmac/egarab.tex + RELOC/doc/latex/ledmac/egarabpar.eps + RELOC/doc/latex/ledmac/egarabpar.tex + RELOC/doc/latex/ledmac/ledarab.pdf + RELOC/doc/latex/ledmac/ledarden.eps + RELOC/doc/latex/ledmac/ledarden.tex + RELOC/doc/latex/ledmac/ledbraonain.eps + RELOC/doc/latex/ledmac/ledbraonain.tex + RELOC/doc/latex/ledmac/ledeasy.eps + RELOC/doc/latex/ledmac/ledeasy.tex + RELOC/doc/latex/ledmac/ledekker.eps + RELOC/doc/latex/ledmac/ledekker.tex + RELOC/doc/latex/ledmac/ledfeat.eps + RELOC/doc/latex/ledmac/ledfeat.tex + RELOC/doc/latex/ledmac/ledioc.eps + RELOC/doc/latex/ledmac/ledioc.tex + RELOC/doc/latex/ledmac/ledmac.pdf details="Package documentation" + RELOC/doc/latex/ledmac/ledmixed.eps + RELOC/doc/latex/ledmac/ledmixed.tex + RELOC/doc/latex/ledmac/ledpar.pdf + RELOC/doc/latex/ledmac/villon.eps + RELOC/doc/latex/ledmac/villon.tex +srccontainersize 142344 +srccontainerchecksum 918f3009f11e3fa2b5531c5cf8ffe9d835e331793abe1241f01f01b14d990ffd1f3aac6ec153b17f77099f38c284965209cff8f9105c340bfdadc85f78fd5d5c +srcfiles size=176 + RELOC/source/latex/ledmac/ledarab.dtx + RELOC/source/latex/ledmac/ledarab.ins + RELOC/source/latex/ledmac/ledmac.dtx + RELOC/source/latex/ledmac/ledmac.ins + RELOC/source/latex/ledmac/ledpar.dtx + RELOC/source/latex/ledmac/ledpar.ins +runfiles size=41 + RELOC/tex/latex/ledmac/afoot.sty + RELOC/tex/latex/ledmac/ledarab.sty + RELOC/tex/latex/ledmac/ledmac.sty + RELOC/tex/latex/ledmac/ledpar.sty +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-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 0.19.4 + +name leftidx +category Package +revision 15878 +shortdesc Left and right subscripts and superscripts in math mode +relocated 1 +longdesc Left and right subscripts and superscripts are automatically +longdesc raised for better fitting to the symbol they belong to. +containersize 944 +containerchecksum a01d085af4ac4048b5659e7f2f1692dd787b7c4cc9a0c06acf9852ad9d5aaa9790bdad6db7a76ec2f1a268af520ac35975a7fc55ef0d6373f244c85b8b6e116c +doccontainersize 50916 +doccontainerchecksum 1e372c7d307b4bae8fc5673c9654785db1fc7c510e188e7e0945e01dd502580479b7910e19132c7b8b169acf7d9de84504de2aa9fb580c9a526a5700114f009e +docfiles size=18 + RELOC/doc/latex/leftidx/README details="Readme" + RELOC/doc/latex/leftidx/leftidx.pdf details="Package documentation" +srccontainersize 3176 +srccontainerchecksum 3339968b569bf6fba6d7332399d0727148add95c1c0dc2ae06626269c156a4e365dbbf672b652d3c5d097d0570b0955e6cb34255e3f8383f05ea52fa2c12e375 +srcfiles size=4 + RELOC/source/latex/leftidx/Makefile + RELOC/source/latex/leftidx/leftidx.dtx + RELOC/source/latex/leftidx/leftidx.ins +runfiles size=1 + RELOC/tex/latex/leftidx/leftidx.sty +catalogue-ctan /macros/latex/contrib/leftidx +catalogue-license lppl +catalogue-topics subsup-pos maths + +name leftindex +category Package +revision 56182 +shortdesc Left indices with better spacing +relocated 1 +longdesc This package provides commands for typesetting left indices. +longdesc Unlike other similar packages, leftindex also indents the left +longdesc superscript, providing much better spacing in general. +containersize 1476 +containerchecksum 01e0687f0205c40d95e23b5a9fea2dc8aea95d2e8d5abc54a0c21c1b5934dd68b3705cb625b7e7c34ee30d590cb3028e816719dae6eaf80e5c435078fa3b908b +doccontainersize 74940 +doccontainerchecksum 93b1c20788bc707ad90efd69194d8ecdf5154afe89870e51397c810e292b4e52fc7714de844580d0af5be0434a4493bca7464ca0d0b5f2641d9cf46a1f9c77ae +docfiles size=21 + RELOC/doc/latex/leftindex/README.md details="Readme" + RELOC/doc/latex/leftindex/leftindex.pdf details="Package documentation" + RELOC/doc/latex/leftindex/leftindex.tex +runfiles size=1 + RELOC/tex/latex/leftindex/leftindex.sty +catalogue-ctan /macros/latex/contrib/leftindex +catalogue-license lppl1.3c +catalogue-topics subsup-pos maths expl3 +catalogue-version 0.1beta + +name leipzig +category Package +revision 52450 +shortdesc Typeset and index linguistic gloss abbreviations +relocated 1 +longdesc The leipzig package provides a set of macros for standard +longdesc glossing abbreviations, with options to create new ones. They +longdesc are mnemonic (e.g. \Acc{} for accusative, abbreviated acc). +longdesc These abbre can be used alone or on top of the glossaries +longdesc package for easy indexing and glossary printing. +containersize 5708 +containerchecksum 6811c2259558856d930901d2d82a47774c4c37ceb5d1309fa6b78ebb031685405e334e8de7cd63b1998bf673d5210aacfd096b1c6570ed26840fe4ec22359c5c +doccontainersize 595424 +doccontainerchecksum a701d8c9ffc741099aa09f75dcef117db6c64a832dd51f57dfe07cee694a177a3a8be824560308b9cdd483013d4e69b77ee8755972b9ed504e033db6396532a0 +docfiles size=149 + RELOC/doc/latex/leipzig/README.md details="Readme" + RELOC/doc/latex/leipzig/leipzig.acn + RELOC/doc/latex/leipzig/leipzig.bno + RELOC/doc/latex/leipzig/leipzig.pdf details="Package documentation" +srccontainersize 25756 +srccontainerchecksum 957fda848d5d4b5a07aa0150019670058343764434b5a7151131ac1d401e4de60a6f57af72eb485f02d0e3b63a60edc291ce1692d408363b23f811d1c97fb389 +srcfiles size=27 + RELOC/source/latex/leipzig/leipzig.dtx + RELOC/source/latex/leipzig/leipzig.ins +runfiles size=7 + RELOC/makeindex/leipzig/leipzig.ist + RELOC/tex/latex/leipzig/leipzig.sty + RELOC/tex/latex/leipzig/leipzig.tex +catalogue-contact-repository https://github.com/natalieweber/leipzig +catalogue-ctan /macros/latex/contrib/leipzig +catalogue-license lppl1.3 +catalogue-topics linguistic +catalogue-version 2.3 + +name lengthconvert +category Package +revision 55064 +shortdesc Express lengths in arbitrary units +relocated 1 +longdesc The package provides a command to convert a length to any of a +longdesc large selection of units. The package relies on the LaTeX3 +longdesc programming environment. +containersize 2020 +containerchecksum 7796d45d91e157f2e901a1a48a7841bf222f86540ac00d59250e3f47568ab86832bc115340c0b65b27c12eb1a39cc2729cffb5da71afc413dbae737341d8eb63 +doccontainersize 443500 +doccontainerchecksum 4191c3ce9b546f885c61243a343761a9dbc1ac031b3878a87c292d99a70effc89d927a1fd35eeafdd6523aea7c4bde0c90255057177767f534b471d4e098d3d4 +docfiles size=109 + RELOC/doc/latex/lengthconvert/lengthconvert.pdf details="Package documentation" +srccontainersize 4160 +srccontainerchecksum ae8d4f8563c86a5fbcd56d40dc39df2bf52bf4dd5098b4976ddc6ec00b8512e2d6cf4a4b3f6fe83e27188ea24ad954c8043daf49aaaa15e503bc2f84f740ae75 +srcfiles size=5 + RELOC/source/latex/lengthconvert/lengthconvert.dtx + RELOC/source/latex/lengthconvert/lengthconvert.ins +runfiles size=2 + RELOC/tex/latex/lengthconvert/lengthconvert.sty +catalogue-also printlen unitconv +catalogue-ctan /macros/latex/contrib/lengthconvert +catalogue-license lppl1.3 +catalogue-topics units misc-conv expl3 +catalogue-version 1.0a + +name letltxmacro +category Package +revision 53022 +shortdesc Let assignment for LaTeX macros +relocated 1 +longdesc TeX's \let assignment does not work for LaTeX macros with +longdesc optional arguments or for macros that are defined as robust +longdesc macros by \DeclareRobustCommand. This package defines +longdesc \LetLtxMacro that also takes care of the involved internal +longdesc macros. +containersize 2092 +containerchecksum c9c1f5c3b9aab6b31750011cd45c42bdb32ecd712ced8f8cdafe1aeca532159051d1cff1449b06e3d35fbefdd44f2332805cb1618ff1da022d405a88d600083b +doccontainersize 290936 +doccontainerchecksum 8be12930acfaa79dbf3d7d3e0a60a518b12392c094e1dc531bfbcd8d9517d4744e99d339b3b7bcfb1e156d0ccbd17ca464126d8530e9f9c13e29d19a6aaeea99 +docfiles size=73 + RELOC/doc/latex/letltxmacro/README.md + RELOC/doc/latex/letltxmacro/letltxmacro-showcases.tex + RELOC/doc/latex/letltxmacro/letltxmacro.pdf details="Package documentation" language="en" +srccontainersize 5912 +srccontainerchecksum 86863fc9935ac5044f2e3b3013b0df39cfe95f54fff5c6b1af0297b828fc88353243b117caf79cafb7f8c17d9fa90b2e0e8ca753573baa06db7acb26a978f30d +srcfiles size=6 + RELOC/source/latex/letltxmacro/letltxmacro.dtx +runfiles size=2 + RELOC/tex/latex/letltxmacro/letltxmacro.sty +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-license lppl1.3 +catalogue-topics macro-def +catalogue-version 1.6 + +name letterspacing +category Package +revision 54266 +shortdesc Letter spacing +relocated 1 +longdesc Space out the letters of text; the command is +longdesc \letterspace<\hbox modifier>{<text>}: the text is placed in an +longdesc \hbox of the specified size, and space is inserted between each +longdesc glyph to make the text fit the box. Note that letterspacing is +longdesc not ordinarily considered acceptable in modern typesetting of +longdesc English. +containersize 5180 +containerchecksum 30fdc0f87976feb698b9736e9deb6726746e4c25e4ed4a4637ff26699e171738be6447e8e2d02d154cf57944aa988208ee97859c0a7fac784d55fa6ef889b86c +runfiles size=4 + RELOC/tex/generic/letterspacing/letterspacing.tex +catalogue-also soul +catalogue-ctan /macros/generic/misc/letterspacing.tex +catalogue-license knuth +catalogue-topics letterspace + +name letterswitharrows +category Package +revision 53709 +shortdesc Draw arrows over math letters +relocated 1 +longdesc This package provides LaTeX math-mode commands for setting left +longdesc and right arrows over mathematical symbols so that the arrows +longdesc dynamically scale with the symbols. While it is possible to set +longdesc arrows over longer strings of symbols, the focus lies on single +longdesc characters. +containersize 3204 +containerchecksum 4594fdce5a2c6bb4c4405d5111b574076faa247e4b5976596695af2de776edc26fb949d46012ce29663c55c78342d0d234e0a0e0f6a53fc59991083fc3b7e52c +doccontainersize 455796 +doccontainerchecksum 4bbef8f44103e5155cdcbb3719c80f3a1cd4b24211b3734e4e698b411519fb70742b4cab9ee510bf4db2a6a929550e1f448aeffba311b0fa7904e17ecd44b5b2 +docfiles size=113 + RELOC/doc/latex/letterswitharrows/README.txt details="Readme" + RELOC/doc/latex/letterswitharrows/letterswitharrows.pdf details="Package documentation" +srccontainersize 5200 +srccontainerchecksum ea32a5da486d6c7501c900254f1c76494bc30ca6ab74be7d7f6494abe263151c0a94ec3ebae48d778e7fd21ab71f065a26c56535ae9d2f1d8205cceae13ee9af +srcfiles size=5 + RELOC/source/latex/letterswitharrows/letterswitharrows.dtx +runfiles size=3 + RELOC/tex/latex/letterswitharrows/letterswitharrows.sty +catalogue-ctan /macros/latex/contrib/letterswitharrows +catalogue-license lppl1.3 +catalogue-topics maths expl3 pgf-tikz + +name lettre +category Package +revision 54722 +shortdesc Letters and faxes in French +relocated 1 +longdesc Developed from the ancestor of the standard letter class, at +longdesc the Observatoire de Geneve. +containersize 25428 +containerchecksum 308dc21e8be8d8f6952eadf9b5e9002fe32e8ea3b79ba679606badef75ae346721270e85e3fbcd269ee86b9ae049390164c57cfd73d7f2efe22fe82c7466a813 +doccontainersize 1005116 +doccontainerchecksum 9962763ae46836874eccf4ea5a2dd695eaa1ab890224d6a54e83670618e2cae4a917fb6bf05610c5104f4d241e0163e079628e79ddad3edf374b513cf6a457f6 +docfiles size=371 + RELOC/doc/latex/lettre/3.002-release-notes.txt + RELOC/doc/latex/lettre/ALIRE details="Readme (French)" language="fr" + RELOC/doc/latex/lettre/README details="Readme" + RELOC/doc/latex/lettre/amgmono.mps + RELOC/doc/latex/lettre/ecusson55.mps + RELOC/doc/latex/lettre/latexmkrc + RELOC/doc/latex/lettre/letdoc.ist + RELOC/doc/latex/lettre/letex1.tex + RELOC/doc/latex/lettre/letex2.tex + RELOC/doc/latex/lettre/letex3.tex + RELOC/doc/latex/lettre/letex4.tex + RELOC/doc/latex/lettre/letex5.tex + RELOC/doc/latex/lettre/letex6.tex + RELOC/doc/latex/lettre/letex7.tex + RELOC/doc/latex/lettre/letex8.tex + RELOC/doc/latex/lettre/lettre-languages.tex + RELOC/doc/latex/lettre/lettre-path.tex + RELOC/doc/latex/lettre/lettre-sondes.tex + RELOC/doc/latex/lettre/lettre.pdf details="Package documentation" language="fr" + RELOC/doc/latex/lettre/lettre.tex + RELOC/doc/latex/lettre/testfaxd.tex + RELOC/doc/latex/lettre/testfaxe.tex + RELOC/doc/latex/lettre/testfaxf.tex +runfiles size=35 + RELOC/tex/latex/lettre/lettre-USenglish.ldf + RELOC/tex/latex/lettre/lettre-amg.cfg + RELOC/tex/latex/lettre/lettre-default.cfg + RELOC/tex/latex/lettre/lettre-english.ldf + RELOC/tex/latex/lettre/lettre-french.ldf + RELOC/tex/latex/lettre/lettre-german.ldf + RELOC/tex/latex/lettre/lettre-institut.tpl + RELOC/tex/latex/lettre/lettre-obs.cfg + RELOC/tex/latex/lettre/lettre-romand.ldf + RELOC/tex/latex/lettre/lettre-telefax.tpl + RELOC/tex/latex/lettre/lettre.cls + RELOC/tex/latex/lettre/lettre.tpl +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-license lppl1.3 +catalogue-topics class letter french +catalogue-version 3.002 + +name lettrine +category Package +revision 54560 +shortdesc Typeset dropped capitals +relocated 1 +longdesc The lettrine package supports various dropped capitals styles, +longdesc typically those described in the French typographic books. In +longdesc particular, it has facilities for the paragraph text's left +longdesc edge to follow the outline of capitals that have a regular +longdesc shape (such as "A" and "V"). +containersize 7052 +containerchecksum 839469d3cdd53698bd9072451e7b9262633282cf46c32ecf23f3b0f46ae999ac259daeb6b4cc5c43222f9f788a95b85cc406857b19bf4eea1ac1ff3b00caac60 +doccontainersize 272308 +doccontainerchecksum 3ef14d7292d3653acfb5bd47141d16cdeaba393450fe27fe1b91b1f2c171c46949e7336a5d9a384676f3bf0d01b8297ff81f732267d94491460c7d883a520763 +docfiles size=81 + RELOC/doc/latex/lettrine/README.md details="Readme" + RELOC/doc/latex/lettrine/demo-de.pdf details="Package examples (German)" language="de" + RELOC/doc/latex/lettrine/demo-de.tex + RELOC/doc/latex/lettrine/demo-fr.pdf details="Package examples (French)" language="fr" + RELOC/doc/latex/lettrine/demo-fr.tex + RELOC/doc/latex/lettrine/demo-lua.pdf + RELOC/doc/latex/lettrine/demo-lua.tex + RELOC/doc/latex/lettrine/lettrine.pdf details="Package documentation" +srccontainersize 16720 +srccontainerchecksum 0f80bf599a303757e2a8ce836d50bd4a4ab701a623d5ea218d23c8c7ef267756cd5320998570962f9679f17bb26d89bd353ab99c3d5407aa535355239856465a +srcfiles size=20 + RELOC/source/latex/lettrine/contrib.dtx + RELOC/source/latex/lettrine/contrib.ins + RELOC/source/latex/lettrine/lettrine.dtx + RELOC/source/latex/lettrine/lettrine.ins +runfiles size=19 + RELOC/tex/latex/lettrine/lettrine-2006-03-17.sty + RELOC/tex/latex/lettrine/lettrine-2015-08-31.sty + RELOC/tex/latex/lettrine/lettrine-2018-08-18.sty + RELOC/tex/latex/lettrine/lettrine.cfg + RELOC/tex/latex/lettrine/lettrine.sty + RELOC/tex/latex/lettrine/optfile.cfl + RELOC/tex/latex/lettrine/pacl.cfl + RELOC/tex/latex/lettrine/padl.cfl + RELOC/tex/latex/lettrine/pzc2.cfl + RELOC/tex/latex/lettrine/pzc3.cfl +catalogue-contact-home http://daniel.flipo.free.fr/lettrine +catalogue-ctan /macros/latex/contrib/lettrine +catalogue-license lppl1.3 +catalogue-topics lettrine +catalogue-version 2.23 + +name levy +category Package +revision 21750 +catalogue levy-font +shortdesc Fonts for typesetting classical greek +relocated 1 +longdesc These fonts are derivatives of Kunth's CM fonts. Macros for use +longdesc with Plain TeX are included in the package; for use with LaTeX, +longdesc see lgreek (with English documentation) or levy (with German +longdesc documentation). +containersize 34736 +containerchecksum a71294df1b2bdb1402892ebc0c82dd60275cf41f6844cdd284e1ba73c8515e98258118c5a1e5158fb6d09acdc53427eb4e3f62f24591fd2eafc90d0bb69b71ea +doccontainersize 24736 +doccontainerchecksum e69a1e2e421100a50416f86bda40702aa9a4d5c5b0b8c783e328e56e1ce587f832cad984fee2cad259603e893413155bc4539e853e1df0d95c89e9167c67b2e1 +docfiles size=24 + RELOC/doc/fonts/levy/README details="Readme" + RELOC/doc/fonts/levy/digits.mf-old + RELOC/doc/fonts/levy/g.mf-old + RELOC/doc/fonts/levy/greekhist.tex + RELOC/doc/fonts/levy/greekuse.tex + RELOC/doc/fonts/levy/grinstall.tex + RELOC/doc/fonts/levy/grtestfont.tex + RELOC/doc/fonts/levy/makeall + RELOC/doc/fonts/levy/makefont + RELOC/doc/fonts/levy/testfont +runfiles size=82 + RELOC/fonts/source/public/levy/a.mf + RELOC/fonts/source/public/levy/b.mf + RELOC/fonts/source/public/levy/d.mf + RELOC/fonts/source/public/levy/digits.mf + RELOC/fonts/source/public/levy/e.mf + RELOC/fonts/source/public/levy/f.mf + RELOC/fonts/source/public/levy/g.mf + RELOC/fonts/source/public/levy/gen_acc.mf + RELOC/fonts/source/public/levy/gen_sigma.mf + RELOC/fonts/source/public/levy/graccent.mf + RELOC/fonts/source/public/levy/grbase.mf + RELOC/fonts/source/public/levy/grbld10.mf + RELOC/fonts/source/public/levy/grbld8.mf + RELOC/fonts/source/public/levy/grbld9.mf + RELOC/fonts/source/public/levy/greek.mf + RELOC/fonts/source/public/levy/grpunct.mf + RELOC/fonts/source/public/levy/grreg10.mf + RELOC/fonts/source/public/levy/grreg8.mf + RELOC/fonts/source/public/levy/grreg9.mf + RELOC/fonts/source/public/levy/grtt10.mf + RELOC/fonts/source/public/levy/h.mf + RELOC/fonts/source/public/levy/i.mf + RELOC/fonts/source/public/levy/j.mf + RELOC/fonts/source/public/levy/k.mf + RELOC/fonts/source/public/levy/l.mf + RELOC/fonts/source/public/levy/lig.mf + RELOC/fonts/source/public/levy/lower.mf + RELOC/fonts/source/public/levy/m.mf + RELOC/fonts/source/public/levy/n.mf + RELOC/fonts/source/public/levy/o.mf + RELOC/fonts/source/public/levy/p.mf + RELOC/fonts/source/public/levy/q.mf + RELOC/fonts/source/public/levy/r.mf + RELOC/fonts/source/public/levy/s.mf + RELOC/fonts/source/public/levy/t.mf + RELOC/fonts/source/public/levy/u.mf + RELOC/fonts/source/public/levy/upper.mf + RELOC/fonts/source/public/levy/w.mf + RELOC/fonts/source/public/levy/x.mf + RELOC/fonts/source/public/levy/y.mf + RELOC/fonts/source/public/levy/z.mf + RELOC/fonts/tfm/public/levy/grbld10.tfm + RELOC/fonts/tfm/public/levy/grbld8.tfm + RELOC/fonts/tfm/public/levy/grbld9.tfm + RELOC/fonts/tfm/public/levy/grreg10.tfm + RELOC/fonts/tfm/public/levy/grreg8.tfm + RELOC/fonts/tfm/public/levy/grreg9.tfm + RELOC/tex/generic/levy/greekmacros.tex + RELOC/tex/generic/levy/slgreek.sty +catalogue-ctan /fonts/greek/levy +catalogue-license gpl2 +catalogue-topics font font-mf font-greek + +name lewis +category Package +revision 15878 +shortdesc Draw Lewis structures +relocated 1 +longdesc The package provides rudimentary support for drawing Lewis +longdesc Structures. Support is limited to elements that support the +longdesc octet rule. +containersize 1028 +containerchecksum 7dbe24061df0d0bb4762e7d308c895c99d8f9a9105137bce8c4e589c7fdc80f989aa8c3ebbe40708a8b6fa2a2df5542ce25fb16f528344ca46d50c47724e006a +doccontainersize 40844 +doccontainerchecksum b267e3c79dfacdd7ed8c931a0e5954c9fd2ea0cfc12beceef3b40bbbed30bbb421d29afd263a25a5b0b5b77a6bc74ddf38e609262485eecae065d65e23200bff +docfiles size=13 + RELOC/doc/latex/lewis/README details="Readme" + RELOC/doc/latex/lewis/lewis.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/latex/lewis/lewis.sty +catalogue-ctan /macros/latex/contrib/lewis +catalogue-license pd +catalogue-topics chemistry +catalogue-version 0.1 + +name lexend +category Package +revision 57564 +shortdesc The Lexend fonts for XeLaTeX and LuaLaTeX through fontspec +relocated 1 +longdesc The purpose of this package is pretty straightforward: The +longdesc Lexend font collection has been designed by Dr. Bonnie +longdesc Shaver-Troup and Thomas Jockin to make reading easier for +longdesc everyone. Now my goal is to bring this wonderful collection to +longdesc the world of LaTeX. +containersize 186932 +containerchecksum 6a9e4ab844e5189e996b73ee95d5ea5bda0d5d9f7b00a707d5bf9b7ceb97eb2f37baef9310252227701d6fc280a14a8a79ff524b5cdee3610c4dc48968f6b3b5 +doccontainersize 143084 +doccontainerchecksum fa21e0311899513ca5f7031471189ce0269fcb35b5bb38d2e3d2e8015dab11ab2a10cc086ba6d41f24c25d99b32f91750371e3297c505ef4a522d61aaa24e5bd +docfiles size=43 + RELOC/doc/fonts/lexend/LICENSE + RELOC/doc/fonts/lexend/README.md details="Readme" + RELOC/doc/fonts/lexend/lexend.pdf details="Package documentation" + RELOC/doc/fonts/lexend/lexend.tex +runfiles size=251 + RELOC/fonts/truetype/public/lexend/LexendDeca-Regular.ttf + RELOC/fonts/truetype/public/lexend/LexendExa-Regular.ttf + RELOC/fonts/truetype/public/lexend/LexendGiga-Regular.ttf + RELOC/fonts/truetype/public/lexend/LexendMega-Regular.ttf + RELOC/fonts/truetype/public/lexend/LexendPeta-Regular.ttf + RELOC/fonts/truetype/public/lexend/LexendTera-Regular.ttf + RELOC/fonts/truetype/public/lexend/LexendZetta-Regular.ttf + RELOC/tex/latex/lexend/LexendDeca.fontspec + RELOC/tex/latex/lexend/LexendExa.fontspec + RELOC/tex/latex/lexend/LexendGiga.fontspec + RELOC/tex/latex/lexend/LexendMega.fontspec + RELOC/tex/latex/lexend/LexendPeta.fontspec + RELOC/tex/latex/lexend/LexendTera.fontspec + RELOC/tex/latex/lexend/LexendZetta.fontspec + RELOC/tex/latex/lexend/lexend.sty +catalogue-contact-announce https://github.com/BrainStone/latex-lexend/blob/master/CHANGELOG.md +catalogue-contact-bugs https://github.com/BrainStone/latex-lexend/issues +catalogue-contact-development https://github.com/BrainStone/latex-lexend#developing +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-license lppl1.3c ofl +catalogue-topics font font-collection font-body font-sans font-proportional font-ttf font-supp +catalogue-version 1.1.0.70 + +name lexikon +category Package +revision 17364 +shortdesc Macros for a two language dictionary +relocated 1 +containersize 2196 +containerchecksum 7c0642f9e727d34175898138d27a838f0432a68659acd7986acb0b74183f28467351c169c52ab057daf46546d8ef9f9bdf30dcb1846b458b6b718ae38633b275 +doccontainersize 180172 +doccontainerchecksum 4f1329d49d92d93743127e4f3ad9401e07529d31d2d68af86373f08b56ae69c22c70b89151461548aefb7fc1f7eca66cc1a4ac73407d82b65bd007f3372243cf +docfiles size=48 + RELOC/doc/latex/lexikon/lexikon-doc.pdf details="Package documentation" + RELOC/doc/latex/lexikon/lexikon-doc.tex + RELOC/doc/latex/lexikon/lexikon.tex + RELOC/doc/latex/lexikon/lexikon.upl details="Upload note" +runfiles size=2 + RELOC/tex/latex/lexikon/lexikon.sty +catalogue-ctan /macros/latex/contrib/lexikon +catalogue-license lppl +catalogue-topics dictionary +catalogue-version 1.0c + +name lexref +category Package +revision 36026 +shortdesc Convenient and uniform references to legal provisions +relocated 1 +longdesc The package is aimed at continental lawyers (especially those +longdesc in Switzerland and Germany), allowing the user to make +longdesc references to legal provisions conveniently and uniformly. The +longdesc package also allows the user to add cited Acts to a +longdesc nomenclature list (automatically), and to build specific +longdesc indexes for each cited Act. The package is still under +longdesc development, and should be treated as an 'alpha'-release. +containersize 4008 +containerchecksum f9bf7792ac09a6b5a69ae642e0becbcb1ed0c2eea3254b31da62bb9b7e3e161c24109e0bcacc8b89e3d03426710378f04e13a05be467115eaea2be028f8e5812 +doccontainersize 386412 +doccontainerchecksum 6a348acfd0e0701954195210bc717666308743f5f282b9efb7a253ab860a0372ed383cc2c8811527eeb2ed72c46be95cfb9e133d156fe8b906b67ed5140437af +docfiles size=101 + RELOC/doc/latex/lexref/README details="Readme" + RELOC/doc/latex/lexref/lexref.pdf details="Package documentation" + RELOC/doc/latex/lexref/lexref.tex +runfiles size=5 + RELOC/tex/latex/lexref/lexref.sty +catalogue-ctan /macros/latex/contrib/lexref +catalogue-license lppl1.3 +catalogue-topics legal +catalogue-version 1.1a + +name lfb +category Package +revision 15878 +shortdesc A Greek font with normal and bold variants +relocated 1 +longdesc This is a Greek font written in Metafont, with inspiration from +longdesc the Bodoni typefaces in old books. It is stylistically a little +longdesc more exotic than the standard textbook Greek fonts, +longdesc particularly in glyphs like the lowercase rho and kappa. It +longdesc aims for a rather calligraphic feel, but seems to blend well +longdesc with Computer Modern. There is a ligature scheme which +longdesc automatically inserts the breathings required for ancient +longdesc texts, making the input text more readable than in some +longdesc schemes. +containersize 18296 +containerchecksum 5b1386321f8c24673531b48d996a20cea9ed527ae60e608f63a790a2cbbea573d01e0351c1ef695b11f14d31d5c482ffa02b337ea04e649b7b758eef713f3bf6 +doccontainersize 35492 +doccontainerchecksum 59eef59a1be002d28ce802617ee638b6c0e74efb391a502fa9593bf19e54f563f819f45442714b46a2e97f49bd561d2a2df631e53ad3847b48a881c8762d2d9d +docfiles size=19 + RELOC/doc/fonts/lfb/README details="Package README" + RELOC/doc/fonts/lfb/example.pdf details="Example of text in lfb" language="el" + RELOC/doc/fonts/lfb/example.tex + RELOC/doc/fonts/lfb/lfb.make + RELOC/doc/fonts/lfb/lfbacc.tex +runfiles size=83 + RELOC/fonts/source/public/lfb/accents.mf + RELOC/fonts/source/public/lfb/alpha.mf + RELOC/fonts/source/public/lfb/beta.mf + RELOC/fonts/source/public/lfb/capitals.mf + RELOC/fonts/source/public/lfb/charmap.mf + RELOC/fonts/source/public/lfb/delta.mf + RELOC/fonts/source/public/lfb/epsilon.mf + RELOC/fonts/source/public/lfb/eta.mf + RELOC/fonts/source/public/lfb/gamma.mf + RELOC/fonts/source/public/lfb/iota.mf + RELOC/fonts/source/public/lfb/kappa.mf + RELOC/fonts/source/public/lfb/khi.mf + RELOC/fonts/source/public/lfb/lambda.mf + RELOC/fonts/source/public/lfb/lfb.mf + RELOC/fonts/source/public/lfb/lfb10.mf + RELOC/fonts/source/public/lfb/lfb11.mf + RELOC/fonts/source/public/lfb/lfb12.mf + RELOC/fonts/source/public/lfb/lfb5.mf + RELOC/fonts/source/public/lfb/lfb6.mf + RELOC/fonts/source/public/lfb/lfb7.mf + RELOC/fonts/source/public/lfb/lfb8.mf + RELOC/fonts/source/public/lfb/lfb9.mf + RELOC/fonts/source/public/lfb/lfbb10.mf + RELOC/fonts/source/public/lfb/lfbb11.mf + RELOC/fonts/source/public/lfb/lfbb12.mf + RELOC/fonts/source/public/lfb/lfbb5.mf + RELOC/fonts/source/public/lfb/lfbb6.mf + RELOC/fonts/source/public/lfb/lfbb7.mf + RELOC/fonts/source/public/lfb/lfbb8.mf + RELOC/fonts/source/public/lfb/lfbb9.mf + RELOC/fonts/source/public/lfb/ligature.mf + RELOC/fonts/source/public/lfb/mu.mf + RELOC/fonts/source/public/lfb/nu.mf + RELOC/fonts/source/public/lfb/omega.mf + RELOC/fonts/source/public/lfb/omikron.mf + RELOC/fonts/source/public/lfb/others.mf + RELOC/fonts/source/public/lfb/phi.mf + RELOC/fonts/source/public/lfb/pi.mf + RELOC/fonts/source/public/lfb/psi.mf + RELOC/fonts/source/public/lfb/rho.mf + RELOC/fonts/source/public/lfb/serifs.mf + RELOC/fonts/source/public/lfb/sigma.mf + RELOC/fonts/source/public/lfb/sigmafin.mf + RELOC/fonts/source/public/lfb/tau.mf + RELOC/fonts/source/public/lfb/theta.mf + RELOC/fonts/source/public/lfb/upsilon.mf + RELOC/fonts/source/public/lfb/xi.mf + RELOC/fonts/source/public/lfb/zeta.mf + RELOC/fonts/tfm/public/lfb/lfb10.tfm + RELOC/fonts/tfm/public/lfb/lfb11.tfm + RELOC/fonts/tfm/public/lfb/lfb12.tfm + RELOC/fonts/tfm/public/lfb/lfb5.tfm + RELOC/fonts/tfm/public/lfb/lfb6.tfm + RELOC/fonts/tfm/public/lfb/lfb7.tfm + RELOC/fonts/tfm/public/lfb/lfb8.tfm + RELOC/fonts/tfm/public/lfb/lfb9.tfm + RELOC/fonts/tfm/public/lfb/lfbb10.tfm + RELOC/fonts/tfm/public/lfb/lfbb11.tfm + RELOC/fonts/tfm/public/lfb/lfbb12.tfm + RELOC/fonts/tfm/public/lfb/lfbb5.tfm + RELOC/fonts/tfm/public/lfb/lfbb6.tfm + RELOC/fonts/tfm/public/lfb/lfbb7.tfm + RELOC/fonts/tfm/public/lfb/lfbb8.tfm + RELOC/fonts/tfm/public/lfb/lfbb9.tfm +catalogue-ctan /fonts/greek/lfb +catalogue-license lppl +catalogue-topics font font-mf font-greek +catalogue-version 1.0 + +name lgreek +category Package +revision 21818 +shortdesc LaTeX macros for using Silvio Levy's Greek fonts +relocated 1 +longdesc A conversion of Silvio Levy's Plain TeX macros for use with +longdesc LaTeX. +containersize 1724 +containerchecksum f0b5cc9b7267aa07dc0b0f8c6d23a164bc239591fd13b5d77c5c840d33e131546c63c63a3bbbee2851000bda2e8593e7617f8a7ae381e7cd0561302a667acac1 +doccontainersize 203112 +doccontainerchecksum 915df985f4766f492a70a35342e086567d17c155ea0dfce5514c6edebaf1dacb78998dc4bf5cc44415fef580a7779083bc2261a22dfd668e8f2023f1f15bff35 +docfiles size=57 + RELOC/doc/latex/lgreek/README details="Readme" + RELOC/doc/latex/lgreek/lgreekuse.pdf details="Package documentation" + RELOC/doc/latex/lgreek/lgreekuse.tex +runfiles size=4 + RELOC/tex/latex/lgreek/LGcmr.fd + RELOC/tex/latex/lgreek/LGcmtt.fd + RELOC/tex/latex/lgreek/LGenc.def + RELOC/tex/latex/lgreek/lgreek.sty +catalogue-also levy-latex +catalogue-ctan /macros/latex/contrib/lgreek +catalogue-license gpl2 +catalogue-topics font-use greek + +name lh +category Package +revision 15878 +shortdesc Cyrillic fonts that support LaTeX standard encodings +relocated 1 +longdesc The LH fonts address the problem of the wide variety of +longdesc alphabets that are written with Cyrillic-style characters. The +longdesc fonts are the original basis of the set of T2* and X2 encodings +longdesc that are now used when LaTeX users need to write in Cyrillic +longdesc languages. Macro support in standard LaTeX encodings is offered +longdesc through the latex-cyrillic and t2 bundles, and the package +longdesc itself offers support for other (more traditional) encodings. +longdesc The fonts, in the standard T2* and X2 encodings are available +longdesc in Adobe Type 1 format, in the CM-Super family of fonts. The +longdesc package also offers its own LaTeX support for OT2 encoded +longdesc fonts, CM bright shaped fonts and Concrete shaped fonts. +depend ec +containersize 172080 +containerchecksum 265aeba5ee99cbec2eca77a273a9e4857d78280e0ff17089a358e7f85d0595025e259b2edd471ce5287479531fe37cfeeaeba405ac9cabc7ac9616242815b6cf +doccontainersize 55428 +doccontainerchecksum 33f1cd39b2e68caa750ca5867bebbbc43c9948a7606f6fe44ba3bd8be84661fb562b5472ec57ccc3f6c18ef2823188c2f81ca4444b562f935e6f041d8ec0f39d +docfiles size=104 + RELOC/doc/fonts/lh/README details="Readme" + RELOC/doc/fonts/lh/beresta/beresta.tex + RELOC/doc/fonts/lh/beresta/berestax.tex + RELOC/doc/fonts/lh/beresta/lacodes.tex + RELOC/doc/fonts/lh/beresta/lbcodes.tex + RELOC/doc/fonts/lh/beresta/lccodes.tex + RELOC/doc/fonts/lh/beresta/ldcodes.tex + RELOC/doc/fonts/lh/beresta/rxcodes.tex + RELOC/doc/fonts/lh/beresta/txcodes.tex + RELOC/doc/fonts/lh/beresta/yycodes.tex + RELOC/doc/fonts/lh/fonttest/allenc.tex + RELOC/doc/fonts/lh/fonttest/allenc0.tex + RELOC/doc/fonts/lh/fonttest/allenc1.tex + RELOC/doc/fonts/lh/fonttest/allenc2.tex + RELOC/doc/fonts/lh/fonttest/allenc3.tex + RELOC/doc/fonts/lh/fonttest/allenc4.tex + RELOC/doc/fonts/lh/fonttest/katalog-beresta.tex + RELOC/doc/fonts/lh/fonttest/katalog-short.t2 + RELOC/doc/fonts/lh/fonttest/katalog.lh + RELOC/doc/fonts/lh/fonttest/katalog.t2 + RELOC/doc/fonts/lh/fonttest/katalog1.lh + RELOC/doc/fonts/lh/fonttest/katalog1.t2 + RELOC/doc/fonts/lh/fonttest/katalog2.lh + RELOC/doc/fonts/lh/fonttest/katalog2.t2 + RELOC/doc/fonts/lh/fonttest/katalog3.t2 + RELOC/doc/fonts/lh/fonttest/katalog4.t2 + RELOC/doc/fonts/lh/fonttest/katalog5.t2 + RELOC/doc/fonts/lh/fonttest/katalog6.t2 + RELOC/doc/fonts/lh/fonttest/katalog7.t2 + RELOC/doc/fonts/lh/fonttest/lh-fmap.tex + RELOC/doc/fonts/lh/fonttest/lh-text.tex + RELOC/doc/fonts/lh/fonttest/lh-texx.tex + RELOC/doc/fonts/lh/fonttest/lh-texy.tex + RELOC/doc/fonts/lh/fonttest/t2a-fmap-short.tex + RELOC/doc/fonts/lh/fonttest/t2a-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2a-text.tex + RELOC/doc/fonts/lh/fonttest/t2b-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2b-text.tex + RELOC/doc/fonts/lh/fonttest/t2c-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2c-text.tex + RELOC/doc/fonts/lh/fonttest/t2d-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2d-text.tex + RELOC/doc/fonts/lh/fonttest/testLHtxt.tex + RELOC/doc/fonts/lh/fonttest/uc-fmap.tex + RELOC/doc/fonts/lh/fonttest/wn-comp.tex + RELOC/doc/fonts/lh/fonttest/wn-fmap.tex + RELOC/doc/fonts/lh/fonttest/wn-text.tex + RELOC/doc/fonts/lh/fonttest/x2-fmap.tex + RELOC/doc/fonts/lh/fonttest/x2-text.tex + RELOC/doc/fonts/lh/fonttest/xsl-fmap.tex + RELOC/doc/fonts/lh/fonttest/xsl-text.tex + RELOC/doc/fonts/lh/install + RELOC/doc/fonts/lh/lhfonts/T1inT2.en + RELOC/doc/fonts/lh/lhfonts/fonttest.en + RELOC/doc/fonts/lh/lhfonts/lhfont35.en + RELOC/doc/fonts/lh/lhfonts/lhfont35.ru + RELOC/doc/fonts/lh/lhfonts/lhfonts.hst + RELOC/doc/fonts/lh/manifest.txt + RELOC/doc/fonts/lh/readme35c.1st + RELOC/doc/fonts/lh/readme35g.1st + RELOC/doc/fonts/lh/samples/lh-lcy.tex + RELOC/doc/fonts/lh/samples/lh-lcytext.tex + RELOC/doc/fonts/lh/samples/lh-ot2.tex + RELOC/doc/fonts/lh/samples/lh-ot2text.tex + RELOC/doc/fonts/lh/samples/lh-t2a.tex + RELOC/doc/fonts/lh/samples/lh-t2atext.tex +srccontainersize 41756 +srccontainerchecksum a81d3d7295101718dc4e66c6daafca8c480b281d7219956b0007adb4fd7e0f35959277931254fc778bf69c581b7d15ccf445f5037b589cee937211c39f59529e +srcfiles size=130 + RELOC/source/fonts/lh/dvidrv.mfj + RELOC/source/fonts/lh/dvidrvlh.mfj + RELOC/source/fonts/lh/tex/00readme.txt + RELOC/source/fonts/lh/tex/01cm-lh.tex + RELOC/source/fonts/lh/tex/03cm-wn.tex + RELOC/source/fonts/lh/tex/04cm-vf.tex + RELOC/source/fonts/lh/tex/11ex-rs.tex + RELOC/source/fonts/lh/tex/11ex-rx.tex + RELOC/source/fonts/lh/tex/12ex-la.tex + RELOC/source/fonts/lh/tex/13ex-lb.tex + RELOC/source/fonts/lh/tex/14ex-lc.tex + RELOC/source/fonts/lh/tex/15ex-ld.tex + RELOC/source/fonts/lh/tex/20cm-ct.tex + RELOC/source/fonts/lh/tex/21cm-ic.tex + RELOC/source/fonts/lh/tex/22cm-wc.tex + RELOC/source/fonts/lh/tex/23cm-mc.tex + RELOC/source/fonts/lh/tex/24cm-kc.tex + RELOC/source/fonts/lh/tex/25cm-uc.tex + RELOC/source/fonts/lh/tex/30cm-lx.tex + RELOC/source/fonts/lh/tex/31cm-ix.tex + RELOC/source/fonts/lh/tex/32cm-wx.tex + RELOC/source/fonts/lh/tex/33cm-mx.tex + RELOC/source/fonts/lh/tex/34cm-kx.tex + RELOC/source/fonts/lh/tex/46cm-ly.tex + RELOC/source/fonts/lh/tex/46cm-lz.tex + RELOC/source/fonts/lh/tex/47ex-tx.tex + RELOC/source/fonts/lh/tex/91berest.tex + RELOC/source/fonts/lh/tex/92check.tex + RELOC/source/fonts/lh/tex/92cm-xx.tex + RELOC/source/fonts/lh/tex/99-CMstd.tex + RELOC/source/fonts/lh/tex/99-T2enc.tex + RELOC/source/fonts/lh/tex/99allenc.tex + RELOC/source/fonts/lh/tex/99tstenc.tex + RELOC/source/fonts/lh/tex/cfhead.tex + RELOC/source/fonts/lh/tex/cfstdedt.tex + RELOC/source/fonts/lh/tex/cod-edt.tex + RELOC/source/fonts/lh/tex/enc-t2.tex + RELOC/source/fonts/lh/tex/fntaddcm.tex + RELOC/source/fonts/lh/tex/fntaddec.tex + RELOC/source/fonts/lh/tex/fntallcm.tex + RELOC/source/fonts/lh/tex/fntallec.tex + RELOC/source/fonts/lh/tex/fntbasec.tex + RELOC/source/fonts/lh/tex/fntbercm.tex + RELOC/source/fonts/lh/tex/fntberec.tex + RELOC/source/fonts/lh/tex/fntbricm.tex + RELOC/source/fonts/lh/tex/fntbriec.tex + RELOC/source/fonts/lh/tex/fntconcm.tex + RELOC/source/fonts/lh/tex/fntconec.tex + RELOC/source/fonts/lh/tex/fntinvcm.tex + RELOC/source/fonts/lh/tex/fntinvec.tex + RELOC/source/fonts/lh/tex/fntmincm.tex + RELOC/source/fonts/lh/tex/fntminec.tex + RELOC/source/fonts/lh/tex/fnttstcm.tex + RELOC/source/fonts/lh/tex/fnttstec.tex + RELOC/source/fonts/lh/tex/likerdat.tex + RELOC/source/fonts/lh/tex/likergrp.tex + RELOC/source/fonts/lh/tex/likermac.tex + RELOC/source/fonts/lh/tex/rliker.tex + RELOC/source/fonts/lh/tex/setter.tex + RELOC/source/fonts/lh/tex/wrk/lh-XSlav/00readme + RELOC/source/fonts/lh/tex/wrk/lh-lcy/00readme + RELOC/source/fonts/lh/tex/wrk/lh-ot2/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2a/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2b/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2c/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2d/00readme + RELOC/source/fonts/lh/tex/wrk/lh-x2/00readme + RELOC/source/fonts/lh/tex/wrk/lh_temp/00readme + RELOC/source/latex/lh/00readme.txt + RELOC/source/latex/lh/lcyfonts.fdd + RELOC/source/latex/lh/lcyfonts.ins + RELOC/source/latex/lh/nfssfox.dtx + RELOC/source/latex/lh/nfssfox.ins + RELOC/source/latex/lh/ot2fonts.fdd + RELOC/source/latex/lh/ot2fonts.ins + RELOC/source/latex/lh/t2ccfonts.fdd + RELOC/source/latex/lh/t2ccfonts.ins +runfiles size=1023 + RELOC/fonts/source/lh/base/fikparm.mf + RELOC/fonts/source/lh/base/lcyrbeg.mf + RELOC/fonts/source/lh/base/lcyrdefs.mf + RELOC/fonts/source/lh/base/ldbroman.mf + RELOC/fonts/source/lh/base/ldcsc.mf + RELOC/fonts/source/lh/base/ldroman.mf + RELOC/fonts/source/lh/base/ldtexset.mf + RELOC/fonts/source/lh/base/ldtextit.mf + RELOC/fonts/source/lh/base/ldtitle.mf + RELOC/fonts/source/lh/base/lebroman.mf + RELOC/fonts/source/lh/base/lecsc.mf + RELOC/fonts/source/lh/base/leroman.mf + RELOC/fonts/source/lh/base/letextit.mf + RELOC/fonts/source/lh/base/lgcspl.mf + RELOC/fonts/source/lh/base/lgcyracc.mf + RELOC/fonts/source/lh/base/lgcyri.mf + RELOC/fonts/source/lh/base/lgcyrl.mf + RELOC/fonts/source/lh/base/lgcyrsp.mf + RELOC/fonts/source/lh/base/lgcyrsym.mf + RELOC/fonts/source/lh/base/lgcyru.mf + RELOC/fonts/source/lh/base/lgengsym.mf + RELOC/fonts/source/lh/base/lgidigit.mf + RELOC/fonts/source/lh/base/lgilig.mf + RELOC/fonts/source/lh/base/lgitalp.mf + RELOC/fonts/source/lh/base/lgocyrac.mf + RELOC/fonts/source/lh/base/lgpunct.mf + RELOC/fonts/source/lh/base/lgrdigit.mf + RELOC/fonts/source/lh/base/lgrlig.mf + RELOC/fonts/source/lh/base/lgromp.mf + RELOC/fonts/source/lh/base/lgrusi.mf + RELOC/fonts/source/lh/base/lgrusl.mf + RELOC/fonts/source/lh/base/lgrusu.mf + RELOC/fonts/source/lh/base/lgt2comi.mf + RELOC/fonts/source/lh/base/lgt2coml.mf + RELOC/fonts/source/lh/base/lgt2comu.mf + RELOC/fonts/source/lh/base/lgt2loi.mf + RELOC/fonts/source/lh/base/lgt2lol.mf + RELOC/fonts/source/lh/base/lgt2lou.mf + RELOC/fonts/source/lh/base/lgt2slvi.mf + RELOC/fonts/source/lh/base/lgt2slvl.mf + RELOC/fonts/source/lh/base/lgt2slvu.mf + RELOC/fonts/source/lh/base/lgt2upi.mf + RELOC/fonts/source/lh/base/lgt2upl.mf + RELOC/fonts/source/lh/base/lgt2upu.mf + RELOC/fonts/source/lh/base/lkligtbl.mf + RELOC/fonts/source/lh/base/llbligtb.mf + RELOC/fonts/source/lh/base/llcligtb.mf + RELOC/fonts/source/lh/base/lliligtb.mf + RELOC/fonts/source/lh/base/llmligtb.mf + RELOC/fonts/source/lh/base/llrligtb.mf + RELOC/fonts/source/lh/base/llvligtb.mf + RELOC/fonts/source/lh/base/lwnligs.mf + RELOC/fonts/source/lh/base/lxpseudo.mf + RELOC/fonts/source/lh/base/lycyracc.mf + RELOC/fonts/source/lh/base/lypseudo.mf + RELOC/fonts/source/lh/base/nodraw.mf + RELOC/fonts/source/lh/lh-XSlav/irslb8.mf + RELOC/fonts/source/lh/lh-XSlav/irsli8.mf + RELOC/fonts/source/lh/lh-XSlav/irslo8.mf + RELOC/fonts/source/lh/lh-XSlav/irslq8.mf + RELOC/fonts/source/lh/lh-XSlav/irsltt8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbbx10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbegin.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbtl10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbto10.mf + RELOC/fonts/source/lh/lh-XSlav/rscodes.mf + RELOC/fonts/source/lh/lh-XSlav/rslb8.mf + RELOC/fonts/source/lh/lh-XSlav/rsli8.mf + RELOC/fonts/source/lh/lh-XSlav/rsliker.mf + RELOC/fonts/source/lh/lh-XSlav/rslo8.mf + RELOC/fonts/source/lh/lh-XSlav/rslq8.mf + RELOC/fonts/source/lh/lh-XSlav/rsltt8.mf + RELOC/fonts/source/lh/lh-XSlav/rsob10.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx10.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx5.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx6.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx7.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx8.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx9.mf + RELOC/fonts/source/lh/lh-XSlav/rsobxsl10.mf + RELOC/fonts/source/lh/lh-XSlav/rsobxti10.mf + RELOC/fonts/source/lh/lh-XSlav/rsocc10.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm10.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm5.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm6.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm7.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm8.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm9.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl10.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl5.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl6.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl7.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl8.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl9.mf + RELOC/fonts/source/lh/lh-XSlav/rsoslc9.mf + RELOC/fonts/source/lh/lh-XSlav/rsoti10.mf + RELOC/fonts/source/lh/lh-XSlav/rsqi8.mf + RELOC/fonts/source/lh/lh-XSlav/rssq8.mf + RELOC/fonts/source/lh/lh-XSlav/rsssdc10.mf + RELOC/fonts/source/lh/lh-conc/00readme.txt + RELOC/fonts/source/lh/lh-conc/ccb10.mf + RELOC/fonts/source/lh/lh-conc/ccbx10.mf + RELOC/fonts/source/lh/lh-conc/ccbx5.mf + RELOC/fonts/source/lh/lh-conc/ccbx6.mf + RELOC/fonts/source/lh/lh-conc/ccbx7.mf + RELOC/fonts/source/lh/lh-conc/ccbx8.mf + RELOC/fonts/source/lh/lh-conc/ccbx9.mf + RELOC/fonts/source/lh/lh-conc/ccbxsl10.mf + RELOC/fonts/source/lh/lh-conc/ccbxti10.mf + RELOC/fonts/source/lh/lh-conc/concb10pt.mf + RELOC/fonts/source/lh/lh-conc/concbx10pt.mf + RELOC/fonts/source/lh/lh-conc/concbx12pt.mf + RELOC/fonts/source/lh/lh-conc/concbx5pt.mf + RELOC/fonts/source/lh/lh-conc/concbx6pt.mf + RELOC/fonts/source/lh/lh-conc/concbx7pt.mf + RELOC/fonts/source/lh/lh-conc/concbx8pt.mf + RELOC/fonts/source/lh/lh-conc/concbx9pt.mf + RELOC/fonts/source/lh/lh-conc/concbxti10.mf + RELOC/fonts/source/lh/lh-conc/concc9pt.mf + RELOC/fonts/source/lh/lh-conc/eob10.mf + RELOC/fonts/source/lh/lh-conc/eobx10.mf + RELOC/fonts/source/lh/lh-conc/eobx5.mf + RELOC/fonts/source/lh/lh-conc/eobx6.mf + RELOC/fonts/source/lh/lh-conc/eobx7.mf + RELOC/fonts/source/lh/lh-conc/eobx8.mf + RELOC/fonts/source/lh/lh-conc/eobx9.mf + RELOC/fonts/source/lh/lh-conc/eobxsl10.mf + RELOC/fonts/source/lh/lh-conc/eobxti10.mf + RELOC/fonts/source/lh/lh-conc/eoslc9.mf + RELOC/fonts/source/lh/lh-lcy/ilhcsc10.mf + RELOC/fonts/source/lh/lh-lcy/ilhtt8.mf + RELOC/fonts/source/lh/lh-lcy/illhss8.mf + RELOC/fonts/source/lh/lh-lcy/illhssb8.mf + RELOC/fonts/source/lh/lh-lcy/illhssi8.mf + RELOC/fonts/source/lh/lh-lcy/lhbr10.mf + RELOC/fonts/source/lh/lh-lcy/lhbr17.mf + RELOC/fonts/source/lh/lh-lcy/lhbr8.mf + RELOC/fonts/source/lh/lh-lcy/lhbr9.mf + RELOC/fonts/source/lh/lh-lcy/lhbrbx10.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl10.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl17.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl8.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl9.mf + RELOC/fonts/source/lh/lh-lcy/lhcb10.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx10.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx5.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx6.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx7.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx8.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx9.mf + RELOC/fonts/source/lh/lh-lcy/lhcbxsl10.mf + RELOC/fonts/source/lh/lh-lcy/lhcbxti10.mf + RELOC/fonts/source/lh/lh-lcy/lhccsc10.mf + RELOC/fonts/source/lh/lh-lcy/lhcodes.mf + RELOC/fonts/source/lh/lh-lcy/lhcr10.mf + RELOC/fonts/source/lh/lh-lcy/lhcr5.mf + RELOC/fonts/source/lh/lh-lcy/lhcr6.mf + RELOC/fonts/source/lh/lh-lcy/lhcr7.mf + RELOC/fonts/source/lh/lh-lcy/lhcr8.mf + RELOC/fonts/source/lh/lh-lcy/lhcr9.mf + RELOC/fonts/source/lh/lh-lcy/lhcsl10.mf + RELOC/fonts/source/lh/lh-lcy/lhcsl9.mf + RELOC/fonts/source/lh/lh-lcy/lhcslc9.mf + RELOC/fonts/source/lh/lh-lcy/lhcti10.mf + RELOC/fonts/source/lh/lh-lcy/lhliker.mf + RELOC/fonts/source/lh/lh-lcy/lhsltl10.mf + RELOC/fonts/source/lh/lh-lcy/lhtl10.mf + RELOC/fonts/source/lh/lh-lcy/llhss8.mf + RELOC/fonts/source/lh/lh-lcy/llhssb8.mf + RELOC/fonts/source/lh/lh-lcy/llhssi8.mf + RELOC/fonts/source/lh/lh-ot2/ilwnss8.mf + RELOC/fonts/source/lh/lh-ot2/ilwnssb8.mf + RELOC/fonts/source/lh/lh-ot2/ilwnssi8.mf + RELOC/fonts/source/lh/lh-ot2/iwncsc10.mf + RELOC/fonts/source/lh/lh-ot2/iwntt8.mf + RELOC/fonts/source/lh/lh-ot2/lwnss8.mf + RELOC/fonts/source/lh/lh-ot2/lwnssb8.mf + RELOC/fonts/source/lh/lh-ot2/lwnssi8.mf + RELOC/fonts/source/lh/lh-ot2/wnbr10.mf + RELOC/fonts/source/lh/lh-ot2/wnbr17.mf + RELOC/fonts/source/lh/lh-ot2/wnbr8.mf + RELOC/fonts/source/lh/lh-ot2/wnbr9.mf + RELOC/fonts/source/lh/lh-ot2/wnbrbx10.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl10.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl17.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl8.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl9.mf + RELOC/fonts/source/lh/lh-ot2/wncb10.mf + RELOC/fonts/source/lh/lh-ot2/wncbx10.mf + RELOC/fonts/source/lh/lh-ot2/wncbx5.mf + RELOC/fonts/source/lh/lh-ot2/wncbx6.mf + RELOC/fonts/source/lh/lh-ot2/wncbx7.mf + RELOC/fonts/source/lh/lh-ot2/wncbx8.mf + RELOC/fonts/source/lh/lh-ot2/wncbx9.mf + RELOC/fonts/source/lh/lh-ot2/wncbxsl10.mf + RELOC/fonts/source/lh/lh-ot2/wncbxti10.mf + RELOC/fonts/source/lh/lh-ot2/wnccsc10.mf + RELOC/fonts/source/lh/lh-ot2/wncodes.mf + RELOC/fonts/source/lh/lh-ot2/wncr10.mf + RELOC/fonts/source/lh/lh-ot2/wncr5.mf + RELOC/fonts/source/lh/lh-ot2/wncr6.mf + RELOC/fonts/source/lh/lh-ot2/wncr7.mf + RELOC/fonts/source/lh/lh-ot2/wncr8.mf + RELOC/fonts/source/lh/lh-ot2/wncr9.mf + RELOC/fonts/source/lh/lh-ot2/wncsl10.mf + RELOC/fonts/source/lh/lh-ot2/wncsl9.mf + RELOC/fonts/source/lh/lh-ot2/wncslc9.mf + RELOC/fonts/source/lh/lh-ot2/wncti10.mf + RELOC/fonts/source/lh/lh-ot2/wnliker.mf + RELOC/fonts/source/lh/lh-ot2/wnsltl10.mf + RELOC/fonts/source/lh/lh-ot2/wntl10.mf + RELOC/fonts/source/lh/lh-t2a/ilalb8.mf + RELOC/fonts/source/lh/lh-t2a/ilali8.mf + RELOC/fonts/source/lh/lh-t2a/ilalo8.mf + RELOC/fonts/source/lh/lh-t2a/ilalq8.mf + RELOC/fonts/source/lh/lh-t2a/ilaltt8.mf + RELOC/fonts/source/lh/lh-t2a/labbx10.mf + RELOC/fonts/source/lh/lh-t2a/labmo10.mf + RELOC/fonts/source/lh/lh-t2a/labmo17.mf + RELOC/fonts/source/lh/lh-t2a/labmo8.mf + RELOC/fonts/source/lh/lh-t2a/labmo9.mf + RELOC/fonts/source/lh/lh-t2a/labmr10.mf + RELOC/fonts/source/lh/lh-t2a/labmr17.mf + RELOC/fonts/source/lh/lh-t2a/labmr8.mf + RELOC/fonts/source/lh/lh-t2a/labmr9.mf + RELOC/fonts/source/lh/lh-t2a/labso10.mf + RELOC/fonts/source/lh/lh-t2a/labso17.mf + RELOC/fonts/source/lh/lh-t2a/labso8.mf + RELOC/fonts/source/lh/lh-t2a/labso9.mf + RELOC/fonts/source/lh/lh-t2a/labsr10.mf + RELOC/fonts/source/lh/lh-t2a/labsr17.mf + RELOC/fonts/source/lh/lh-t2a/labsr8.mf + RELOC/fonts/source/lh/lh-t2a/labsr9.mf + RELOC/fonts/source/lh/lh-t2a/labtl10.mf + RELOC/fonts/source/lh/lh-t2a/labto10.mf + RELOC/fonts/source/lh/lh-t2a/lacodes.mf + RELOC/fonts/source/lh/lh-t2a/lalb8.mf + RELOC/fonts/source/lh/lh-t2a/lali8.mf + RELOC/fonts/source/lh/lh-t2a/laliker.mf + RELOC/fonts/source/lh/lh-t2a/lalo8.mf + RELOC/fonts/source/lh/lh-t2a/lalq8.mf + RELOC/fonts/source/lh/lh-t2a/laltt8.mf + RELOC/fonts/source/lh/lh-t2a/laob10.mf + RELOC/fonts/source/lh/lh-t2a/laobx10.mf + RELOC/fonts/source/lh/lh-t2a/laobx5.mf + RELOC/fonts/source/lh/lh-t2a/laobx6.mf + RELOC/fonts/source/lh/lh-t2a/laobx7.mf + RELOC/fonts/source/lh/lh-t2a/laobx8.mf + RELOC/fonts/source/lh/lh-t2a/laobx9.mf + RELOC/fonts/source/lh/lh-t2a/laobxsl10.mf + RELOC/fonts/source/lh/lh-t2a/laobxti10.mf + RELOC/fonts/source/lh/lh-t2a/laocc10.mf + RELOC/fonts/source/lh/lh-t2a/laorm10.mf + RELOC/fonts/source/lh/lh-t2a/laorm5.mf + RELOC/fonts/source/lh/lh-t2a/laorm6.mf + RELOC/fonts/source/lh/lh-t2a/laorm7.mf + RELOC/fonts/source/lh/lh-t2a/laorm8.mf + RELOC/fonts/source/lh/lh-t2a/laorm9.mf + RELOC/fonts/source/lh/lh-t2a/laosl10.mf + RELOC/fonts/source/lh/lh-t2a/laosl5.mf + RELOC/fonts/source/lh/lh-t2a/laosl6.mf + RELOC/fonts/source/lh/lh-t2a/laosl7.mf + RELOC/fonts/source/lh/lh-t2a/laosl8.mf + RELOC/fonts/source/lh/lh-t2a/laosl9.mf + RELOC/fonts/source/lh/lh-t2a/laoslc9.mf + RELOC/fonts/source/lh/lh-t2a/laoti10.mf + RELOC/fonts/source/lh/lh-t2a/laqi8.mf + RELOC/fonts/source/lh/lh-t2a/lasq8.mf + RELOC/fonts/source/lh/lh-t2a/lassdc10.mf + RELOC/fonts/source/lh/lh-t2b/ilblb8.mf + RELOC/fonts/source/lh/lh-t2b/ilbli8.mf + RELOC/fonts/source/lh/lh-t2b/ilblo8.mf + RELOC/fonts/source/lh/lh-t2b/ilblq8.mf + RELOC/fonts/source/lh/lh-t2b/ilbltt8.mf + RELOC/fonts/source/lh/lh-t2b/lbbbx10.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo10.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo17.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo8.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo9.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr10.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr17.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr8.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr9.mf + RELOC/fonts/source/lh/lh-t2b/lbbso10.mf + RELOC/fonts/source/lh/lh-t2b/lbbso17.mf + RELOC/fonts/source/lh/lh-t2b/lbbso8.mf + RELOC/fonts/source/lh/lh-t2b/lbbso9.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr10.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr17.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr8.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr9.mf + RELOC/fonts/source/lh/lh-t2b/lbbtl10.mf + RELOC/fonts/source/lh/lh-t2b/lbbto10.mf + RELOC/fonts/source/lh/lh-t2b/lbcodes.mf + RELOC/fonts/source/lh/lh-t2b/lblb8.mf + RELOC/fonts/source/lh/lh-t2b/lbli8.mf + RELOC/fonts/source/lh/lh-t2b/lbliker.mf + RELOC/fonts/source/lh/lh-t2b/lblo8.mf + RELOC/fonts/source/lh/lh-t2b/lblq8.mf + RELOC/fonts/source/lh/lh-t2b/lbltt8.mf + RELOC/fonts/source/lh/lh-t2b/lbob10.mf + RELOC/fonts/source/lh/lh-t2b/lbobx10.mf + RELOC/fonts/source/lh/lh-t2b/lbobx5.mf + RELOC/fonts/source/lh/lh-t2b/lbobx6.mf + RELOC/fonts/source/lh/lh-t2b/lbobx7.mf + RELOC/fonts/source/lh/lh-t2b/lbobx8.mf + RELOC/fonts/source/lh/lh-t2b/lbobx9.mf + RELOC/fonts/source/lh/lh-t2b/lbobxsl10.mf + RELOC/fonts/source/lh/lh-t2b/lbobxti10.mf + RELOC/fonts/source/lh/lh-t2b/lbocc10.mf + RELOC/fonts/source/lh/lh-t2b/lborm10.mf + RELOC/fonts/source/lh/lh-t2b/lborm5.mf + RELOC/fonts/source/lh/lh-t2b/lborm6.mf + RELOC/fonts/source/lh/lh-t2b/lborm7.mf + RELOC/fonts/source/lh/lh-t2b/lborm8.mf + RELOC/fonts/source/lh/lh-t2b/lborm9.mf + RELOC/fonts/source/lh/lh-t2b/lbosl10.mf + RELOC/fonts/source/lh/lh-t2b/lbosl5.mf + RELOC/fonts/source/lh/lh-t2b/lbosl6.mf + RELOC/fonts/source/lh/lh-t2b/lbosl7.mf + RELOC/fonts/source/lh/lh-t2b/lbosl8.mf + RELOC/fonts/source/lh/lh-t2b/lbosl9.mf + RELOC/fonts/source/lh/lh-t2b/lboslc9.mf + RELOC/fonts/source/lh/lh-t2b/lboti10.mf + RELOC/fonts/source/lh/lh-t2b/lbqi8.mf + RELOC/fonts/source/lh/lh-t2b/lbsq8.mf + RELOC/fonts/source/lh/lh-t2b/lbssdc10.mf + RELOC/fonts/source/lh/lh-t2c/ilclb8.mf + RELOC/fonts/source/lh/lh-t2c/ilcli8.mf + RELOC/fonts/source/lh/lh-t2c/ilclo8.mf + RELOC/fonts/source/lh/lh-t2c/ilclq8.mf + RELOC/fonts/source/lh/lh-t2c/ilcltt8.mf + RELOC/fonts/source/lh/lh-t2c/lcbbx10.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo10.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo17.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo8.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo9.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr10.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr17.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr8.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr9.mf + RELOC/fonts/source/lh/lh-t2c/lcbso10.mf + RELOC/fonts/source/lh/lh-t2c/lcbso17.mf + RELOC/fonts/source/lh/lh-t2c/lcbso8.mf + RELOC/fonts/source/lh/lh-t2c/lcbso9.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr10.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr17.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr8.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr9.mf + RELOC/fonts/source/lh/lh-t2c/lcbtl10.mf + RELOC/fonts/source/lh/lh-t2c/lcbto10.mf + RELOC/fonts/source/lh/lh-t2c/lccodes.mf + RELOC/fonts/source/lh/lh-t2c/lclb8.mf + RELOC/fonts/source/lh/lh-t2c/lcli8.mf + RELOC/fonts/source/lh/lh-t2c/lcliker.mf + RELOC/fonts/source/lh/lh-t2c/lclo8.mf + RELOC/fonts/source/lh/lh-t2c/lclq8.mf + RELOC/fonts/source/lh/lh-t2c/lcltt8.mf + RELOC/fonts/source/lh/lh-t2c/lcob10.mf + RELOC/fonts/source/lh/lh-t2c/lcobx10.mf + RELOC/fonts/source/lh/lh-t2c/lcobx5.mf + RELOC/fonts/source/lh/lh-t2c/lcobx6.mf + RELOC/fonts/source/lh/lh-t2c/lcobx7.mf + RELOC/fonts/source/lh/lh-t2c/lcobx8.mf + RELOC/fonts/source/lh/lh-t2c/lcobx9.mf + RELOC/fonts/source/lh/lh-t2c/lcobxsl10.mf + RELOC/fonts/source/lh/lh-t2c/lcobxti10.mf + RELOC/fonts/source/lh/lh-t2c/lcocc10.mf + RELOC/fonts/source/lh/lh-t2c/lcorm10.mf + RELOC/fonts/source/lh/lh-t2c/lcorm5.mf + RELOC/fonts/source/lh/lh-t2c/lcorm6.mf + RELOC/fonts/source/lh/lh-t2c/lcorm7.mf + RELOC/fonts/source/lh/lh-t2c/lcorm8.mf + RELOC/fonts/source/lh/lh-t2c/lcorm9.mf + RELOC/fonts/source/lh/lh-t2c/lcosl10.mf + RELOC/fonts/source/lh/lh-t2c/lcosl5.mf + RELOC/fonts/source/lh/lh-t2c/lcosl6.mf + RELOC/fonts/source/lh/lh-t2c/lcosl7.mf + RELOC/fonts/source/lh/lh-t2c/lcosl8.mf + RELOC/fonts/source/lh/lh-t2c/lcosl9.mf + RELOC/fonts/source/lh/lh-t2c/lcoslc9.mf + RELOC/fonts/source/lh/lh-t2c/lcoti10.mf + RELOC/fonts/source/lh/lh-t2c/lcqi8.mf + RELOC/fonts/source/lh/lh-t2c/lcsq8.mf + RELOC/fonts/source/lh/lh-t2c/lcssdc10.mf + RELOC/fonts/source/lh/lh-t2d/ildlb8.mf + RELOC/fonts/source/lh/lh-t2d/ildli8.mf + RELOC/fonts/source/lh/lh-t2d/ildlo8.mf + RELOC/fonts/source/lh/lh-t2d/ildlq8.mf + RELOC/fonts/source/lh/lh-t2d/ildltt8.mf + RELOC/fonts/source/lh/lh-t2d/ldbbx10.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo10.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo17.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo8.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo9.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr10.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr17.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr8.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr9.mf + RELOC/fonts/source/lh/lh-t2d/ldbso10.mf + RELOC/fonts/source/lh/lh-t2d/ldbso17.mf + RELOC/fonts/source/lh/lh-t2d/ldbso8.mf + RELOC/fonts/source/lh/lh-t2d/ldbso9.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr10.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr17.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr8.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr9.mf + RELOC/fonts/source/lh/lh-t2d/ldbtl10.mf + RELOC/fonts/source/lh/lh-t2d/ldbto10.mf + RELOC/fonts/source/lh/lh-t2d/ldcodes.mf + RELOC/fonts/source/lh/lh-t2d/ldlb8.mf + RELOC/fonts/source/lh/lh-t2d/ldli8.mf + RELOC/fonts/source/lh/lh-t2d/ldliker.mf + RELOC/fonts/source/lh/lh-t2d/ldlo8.mf + RELOC/fonts/source/lh/lh-t2d/ldlq8.mf + RELOC/fonts/source/lh/lh-t2d/ldltt8.mf + RELOC/fonts/source/lh/lh-t2d/ldob10.mf + RELOC/fonts/source/lh/lh-t2d/ldobx10.mf + RELOC/fonts/source/lh/lh-t2d/ldobx5.mf + RELOC/fonts/source/lh/lh-t2d/ldobx6.mf + RELOC/fonts/source/lh/lh-t2d/ldobx7.mf + RELOC/fonts/source/lh/lh-t2d/ldobx8.mf + RELOC/fonts/source/lh/lh-t2d/ldobx9.mf + RELOC/fonts/source/lh/lh-t2d/ldobxsl10.mf + RELOC/fonts/source/lh/lh-t2d/ldobxti10.mf + RELOC/fonts/source/lh/lh-t2d/ldocc10.mf + RELOC/fonts/source/lh/lh-t2d/ldorm10.mf + RELOC/fonts/source/lh/lh-t2d/ldorm5.mf + RELOC/fonts/source/lh/lh-t2d/ldorm6.mf + RELOC/fonts/source/lh/lh-t2d/ldorm7.mf + RELOC/fonts/source/lh/lh-t2d/ldorm8.mf + RELOC/fonts/source/lh/lh-t2d/ldorm9.mf + RELOC/fonts/source/lh/lh-t2d/ldosl10.mf + RELOC/fonts/source/lh/lh-t2d/ldosl5.mf + RELOC/fonts/source/lh/lh-t2d/ldosl6.mf + RELOC/fonts/source/lh/lh-t2d/ldosl7.mf + RELOC/fonts/source/lh/lh-t2d/ldosl8.mf + RELOC/fonts/source/lh/lh-t2d/ldosl9.mf + RELOC/fonts/source/lh/lh-t2d/ldoslc9.mf + RELOC/fonts/source/lh/lh-t2d/ldoti10.mf + RELOC/fonts/source/lh/lh-t2d/ldqi8.mf + RELOC/fonts/source/lh/lh-t2d/ldsq8.mf + RELOC/fonts/source/lh/lh-t2d/ldssdc10.mf + RELOC/fonts/source/lh/lh-x2/irxlb8.mf + RELOC/fonts/source/lh/lh-x2/irxli8.mf + RELOC/fonts/source/lh/lh-x2/irxlo8.mf + RELOC/fonts/source/lh/lh-x2/irxlq8.mf + RELOC/fonts/source/lh/lh-x2/irxltt8.mf + RELOC/fonts/source/lh/lh-x2/rxbbx10.mf + RELOC/fonts/source/lh/lh-x2/rxbmo10.mf + RELOC/fonts/source/lh/lh-x2/rxbmo17.mf + RELOC/fonts/source/lh/lh-x2/rxbmo8.mf + RELOC/fonts/source/lh/lh-x2/rxbmo9.mf + RELOC/fonts/source/lh/lh-x2/rxbmr10.mf + RELOC/fonts/source/lh/lh-x2/rxbmr17.mf + RELOC/fonts/source/lh/lh-x2/rxbmr8.mf + RELOC/fonts/source/lh/lh-x2/rxbmr9.mf + RELOC/fonts/source/lh/lh-x2/rxbso10.mf + RELOC/fonts/source/lh/lh-x2/rxbso17.mf + RELOC/fonts/source/lh/lh-x2/rxbso8.mf + RELOC/fonts/source/lh/lh-x2/rxbso9.mf + RELOC/fonts/source/lh/lh-x2/rxbsr10.mf + RELOC/fonts/source/lh/lh-x2/rxbsr17.mf + RELOC/fonts/source/lh/lh-x2/rxbsr8.mf + RELOC/fonts/source/lh/lh-x2/rxbsr9.mf + RELOC/fonts/source/lh/lh-x2/rxbtl10.mf + RELOC/fonts/source/lh/lh-x2/rxbto10.mf + RELOC/fonts/source/lh/lh-x2/rxcodes.mf + RELOC/fonts/source/lh/lh-x2/rxlb8.mf + RELOC/fonts/source/lh/lh-x2/rxli8.mf + RELOC/fonts/source/lh/lh-x2/rxliker.mf + RELOC/fonts/source/lh/lh-x2/rxlo8.mf + RELOC/fonts/source/lh/lh-x2/rxlq8.mf + RELOC/fonts/source/lh/lh-x2/rxltt8.mf + RELOC/fonts/source/lh/lh-x2/rxob10.mf + RELOC/fonts/source/lh/lh-x2/rxobx10.mf + RELOC/fonts/source/lh/lh-x2/rxobx5.mf + RELOC/fonts/source/lh/lh-x2/rxobx6.mf + RELOC/fonts/source/lh/lh-x2/rxobx7.mf + RELOC/fonts/source/lh/lh-x2/rxobx8.mf + RELOC/fonts/source/lh/lh-x2/rxobx9.mf + RELOC/fonts/source/lh/lh-x2/rxobxsl10.mf + RELOC/fonts/source/lh/lh-x2/rxobxti10.mf + RELOC/fonts/source/lh/lh-x2/rxocc10.mf + RELOC/fonts/source/lh/lh-x2/rxorm10.mf + RELOC/fonts/source/lh/lh-x2/rxorm5.mf + RELOC/fonts/source/lh/lh-x2/rxorm6.mf + RELOC/fonts/source/lh/lh-x2/rxorm7.mf + RELOC/fonts/source/lh/lh-x2/rxorm8.mf + RELOC/fonts/source/lh/lh-x2/rxorm9.mf + RELOC/fonts/source/lh/lh-x2/rxosl10.mf + RELOC/fonts/source/lh/lh-x2/rxosl5.mf + RELOC/fonts/source/lh/lh-x2/rxosl6.mf + RELOC/fonts/source/lh/lh-x2/rxosl7.mf + RELOC/fonts/source/lh/lh-x2/rxosl8.mf + RELOC/fonts/source/lh/lh-x2/rxosl9.mf + RELOC/fonts/source/lh/lh-x2/rxoslc9.mf + RELOC/fonts/source/lh/lh-x2/rxoti10.mf + RELOC/fonts/source/lh/lh-x2/rxqi8.mf + RELOC/fonts/source/lh/lh-x2/rxsq8.mf + RELOC/fonts/source/lh/lh-x2/rxssdc10.mf + RELOC/fonts/source/lh/nont2/lgbersta.mf + RELOC/fonts/source/lh/nont2/lgberstb.mf + RELOC/fonts/source/lh/nont2/lgberstc.mf + RELOC/fonts/source/lh/nont2/lgcacci.mf + RELOC/fonts/source/lh/nont2/lgcaccl.mf + RELOC/fonts/source/lh/nont2/lgcaccu.mf + RELOC/fonts/source/lh/nont2/lgcmodi.mf + RELOC/fonts/source/lh/nont2/lgcmodl.mf + RELOC/fonts/source/lh/nont2/lgcmodu.mf + RELOC/fonts/source/lh/nont2/lgcvaci.mf + RELOC/fonts/source/lh/nont2/lgcvacl.mf + RELOC/fonts/source/lh/nont2/lgcvacu.mf + RELOC/fonts/source/lh/nont2/lgt2slxi.mf + RELOC/fonts/source/lh/nont2/lgt2slxl.mf + RELOC/fonts/source/lh/nont2/lgt2slxu.mf + RELOC/fonts/source/lh/nont2/lgunici.mf + RELOC/fonts/source/lh/nont2/lgunicl.mf + RELOC/fonts/source/lh/nont2/lgunicu.mf + RELOC/fonts/source/lh/nont2/lhberest.mf + RELOC/fonts/source/lh/specific/lgcrusl.mf + RELOC/fonts/source/lh/specific/lgcyrcl.mf + RELOC/fonts/source/lh/specific/lgcyrcu.mf + RELOC/fonts/source/lh/specific/lgnoncl.mf + RELOC/fonts/source/lh/specific/lgnoncu.mf + RELOC/fonts/source/lh/specific/lgrucl.mf + RELOC/fonts/source/lh/specific/lgrucu.mf + RELOC/tex/latex/lh/lh-lcy.sty + RELOC/tex/latex/lh/lh-lcyccr.sty + RELOC/tex/latex/lh/lh-lcyxccr.sty + RELOC/tex/latex/lh/lh-ot2.sty + RELOC/tex/latex/lh/lh-ot2ccr.sty + RELOC/tex/latex/lh/lh-ot2xccr.sty + RELOC/tex/latex/lh/lh-t2accr.sty + RELOC/tex/latex/lh/lh-t2axccr.sty + RELOC/tex/latex/lh/lh-t2bccr.sty + RELOC/tex/latex/lh/lh-t2bxccr.sty + RELOC/tex/latex/lh/lh-t2cccr.sty + RELOC/tex/latex/lh/lh-t2cxccr.sty + RELOC/tex/latex/lh/lh-x2ccr.sty + RELOC/tex/latex/lh/lh-x2xccr.sty + RELOC/tex/latex/lh/nfssfox.tex + RELOC/tex/plain/lh/testfox.tex + RELOC/tex/plain/lh/testkern.tex +catalogue-also ccfonts cmbright concrete ecc +catalogue-ctan /fonts/cyrillic/lh +catalogue-license lppl +catalogue-topics font font-mf font-cyrillic +catalogue-version 3.5g + +name lhcyr +category Package +revision 31795 +shortdesc A non-standard Cyrillic input scheme +relocated 1 +longdesc A collection of three LaTeX 2e styles intended for typesetting +longdesc Russian and bilingual English-Russian documents, using the lh +longdesc fonts and without the benefit of babel's language-switching +longdesc mechanisms. The packages (lhcyralt and lhcyrwin for use under +longdesc emTeX, and lhcyrkoi for use under teTeX) provide mappings +longdesc between the input encoding and the font encoding (which is +longdesc described as OT1). The way this is done does not match the way +longdesc inputenc would do the job, for output via fontenc to one of the +longdesc T2 series of font encodings. +containersize 36192 +containerchecksum 55cf81c051e8f23fe4f085990bc72a5b1dfc276e3ae1721680ad033deae1e3eafb1b9dcff3380ee20b72623b1ab8f117aca66f61441387d914dc29dc91c78448 +srccontainersize 2352 +srccontainerchecksum 18fc370261acff25634107705a36d06ec6367da95526a79fdd78c887234a2f2a6a17147eb317e97effa2ae8fe8e21e8df71cff3da5572055356386d26d2b06d8 +srcfiles size=4 + RELOC/source/latex/lhcyr/README + RELOC/source/latex/lhcyr/dvidrv.mfj + RELOC/source/latex/lhcyr/lhjob.mfj + RELOC/source/latex/lhcyr/wcjob.mfj +runfiles size=73 + RELOC/tex/latex/lhcyr/karabas.tex + RELOC/tex/latex/lhcyr/kniga.tex + RELOC/tex/latex/lhcyr/lhcyralt/README + RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt-hyphen.cfg + RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt-rhyphen.tex + RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt.sty + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhdh.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhfib.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhfr.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhr.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhss.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhtt.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhvtt.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/README + RELOC/tex/latex/lhcyr/lhcyrkoi/kcmf.tgz + RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-hyphen.cfg + RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-rhyphen.tex + RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi.sty + RELOC/tex/latex/lhcyr/lhcyrkoi/maketfms.sh + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcdh.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcfib.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcfr.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcr.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcss.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kctt.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcvtt.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/special.kc + RELOC/tex/latex/lhcyr/lhcyrwin/README + RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin-hyphen.cfg + RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin-rhyphen.tex + RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin.sty + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcdh.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcfib.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcfr.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcr.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcss.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wctt.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcvtt.fd + RELOC/tex/latex/lhcyr/otchet.tex + RELOC/tex/latex/lhcyr/pismo.tex + RELOC/tex/latex/lhcyr/rusfonts.tex + RELOC/tex/latex/lhcyr/statya.tex +catalogue-also koi8 +catalogue-ctan /macros/latex/contrib/lhcyr +catalogue-license other-free +catalogue-topics multilingual font-supp + +name lhelp +category Package +revision 23638 +shortdesc Miscellaneous helper packages +relocated 1 +longdesc This package defines macros which are useful for many +longdesc documents. It is a large collection of simple 'little helpers' +longdesc which do not really warrant a separate package on their own. +longdesc Included are, among other things, definitions of common units +longdesc with preceeding thinspaces, framed boxes where both width and +longdesc height can be specified, starting new odd or even pages, draft +longdesc markers, notes, conditional includes, including EPS files, and +longdesc versions of enumerate and itemize which allow the horizontal +longdesc and vertical spacing to be changed. +containersize 5988 +containerchecksum 3a5bb1d95c300e9546b67c48cc2c3e1a5c3089c4430d76172a8d7f3cdc59fe03de1fafc6a1babeacc9259444e09e85e02a64f3b3f8ddfe3883511482b9ff0985 +doccontainersize 225808 +doccontainerchecksum 2411bd37dba9c4afe1ac4251c9897c99e5934938bd802dbe89993d5b6ec0d19e1cba8b143ee5febd9ad73f0ef823eb79f34587e6885250a2bce8eebbdbf06fd6 +docfiles size=64 + RELOC/doc/latex/lhelp/Makefile + RELOC/doc/latex/lhelp/lhelp.pdf details="Package documentation" +srccontainersize 22548 +srccontainerchecksum 42e419f41c8d8c00a4d27b4bd4499097b7c4c2b8b2e75c68fedd224796dcc9b9dd09054f90cc525286ea6b72a579120c3fc027239bd0f0630ec471bc870ec02b +srcfiles size=22 + RELOC/source/latex/lhelp/lhelp.drv + RELOC/source/latex/lhelp/lhelp.dtx + RELOC/source/latex/lhelp/lhelp.ins +runfiles size=5 + RELOC/tex/latex/lhelp/lhelp.sty +catalogue-ctan /macros/latex/contrib/lhelp +catalogue-license gpl +catalogue-topics macro-supp +catalogue-version 2.0 + +name libertine +category Package +revision 54583 +shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX +relocated 1 +longdesc The package provides the Libertine and Biolinum fonts in both +longdesc Type 1 and OTF styles, together with support macros for their +longdesc use. Monospaced and display fonts, and the "keyboard" set are +longdesc also included, in OTF style, only. The mweights package is used +longdesc to manage the selection of font weights. The package supersedes +longdesc both the libertineotf and the libertine-legacy packages. +depend fontaxes +depend iftex +depend mweights +depend xkeyval +execute addMap libertine.map +containersize 13946168 +containerchecksum b4c3a52caa463b8968862de7c9442da09af1bad572b4f59a31cd349948365fc04a190f876b99dca61cffeaa57faf26658c1e44bca6e27ea03024fd50fb665d5b +doccontainersize 1119028 +doccontainerchecksum 185faa15915e8224dc705d6555c35877cb82f6a752df67eb8eb78f05ab8dc7dea228bad5828764551df7f0509668287575432cb864e1365d574d5ffd53e122f9 +docfiles size=305 + RELOC/doc/fonts/libertine/Bugs.txt + RELOC/doc/fonts/libertine/ChangeLog.txt + RELOC/doc/fonts/libertine/ChangeLogLaTeX.txt + RELOC/doc/fonts/libertine/GPL.txt + RELOC/doc/fonts/libertine/LICENCE.txt + RELOC/doc/fonts/libertine/README details="Readme" + RELOC/doc/fonts/libertine/ToDo.txt + RELOC/doc/fonts/libertine/g2ntotex.c + RELOC/doc/fonts/libertine/libertine.pdf details="Package documentation" + RELOC/doc/fonts/libertine/libertine.tex + RELOC/doc/fonts/libertine/rename_enc + RELOC/doc/fonts/libertine/samples.pdf details="Font samples" + RELOC/doc/fonts/libertine/samples.tex +runfiles size=8155 + RELOC/fonts/enc/dvips/libertine/lbtn_25tcsq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2exa4z.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2ezly2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2jy62z.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2lhpup.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2mruj6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2or2lf.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2vtnkl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2xw2fz.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2yk3ov.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3acize.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3c7nkx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3dk467.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3gqkkc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3i7fl4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3ocgcu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3r2fe2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3zs4uy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_44kw74.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4fqbzh.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4gizrm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4h5nuw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4ifdhd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4lzzdn.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4p7cpr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4pa5s6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4qdwcl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4wvzw4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4xgrig.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4zgdm7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_5t7yy5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_5yotx4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_64fcpm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_67ud6q.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6fbtzc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6icwtb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6igaju.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6koeqx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6mhf45.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6p6dn5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_75c3wo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_76gpa5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_77vsbz.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7aljsl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7fko2h.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7gfcac.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7grukw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7gvbi7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7ukmos.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7wxhd7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7yry24.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7zzaqc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_a6mubu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_a7ysm3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ac44fr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_afusau.enc + RELOC/fonts/enc/dvips/libertine/lbtn_aiatc4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ashjgg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_avrf3y.enc + RELOC/fonts/enc/dvips/libertine/lbtn_azutla.enc + RELOC/fonts/enc/dvips/libertine/lbtn_b7buxp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_b7tf5m.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bgokdj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bgqvqi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bkwvsw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bvtjwh.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bxcpwt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c3m4uk.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c4mbat.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c5qhbu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c6yh3y.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c7hqsr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c7kyj5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ccye3h.enc + RELOC/fonts/enc/dvips/libertine/lbtn_coqhcm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_crxz7j.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ctsnwr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_d4efeo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_d5t6d3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_d6jdyt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dc4jmj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dgc7p3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dgwfac.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dh3kuf.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dhi6qf.enc + RELOC/fonts/enc/dvips/libertine/lbtn_djk3hd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dm3bvq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dobmnc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_doxsfd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_drc7cb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dukpkt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dvvysc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dylq3g.enc + RELOC/fonts/enc/dvips/libertine/lbtn_e2nnp6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_edcawa.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ee6wgp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_eh2cuc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ehpgim.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ek5o26.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ep5ow4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_etetpy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ew6fhv.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ewm74v.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ezf25l.enc + RELOC/fonts/enc/dvips/libertine/lbtn_f3437j.enc + RELOC/fonts/enc/dvips/libertine/lbtn_f4vjgq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_f75mth.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fah7mx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fdphbq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ffhb5a.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fgflse.enc + RELOC/fonts/enc/dvips/libertine/lbtn_flx7j2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fmcq3c.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fte2ql.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fygcup.enc + RELOC/fonts/enc/dvips/libertine/lbtn_g3iycs.enc + RELOC/fonts/enc/dvips/libertine/lbtn_g3y3rv.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gannye.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ggtxir.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gj2vz5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_glqt35.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gppru4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gw5dl2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gwx7x5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gzistf.enc + RELOC/fonts/enc/dvips/libertine/lbtn_h7zthp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hj4mhx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hk6flg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hmhe76.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hraow7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hrou5r.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hx6qbg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hxgvkt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_i5uqjc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_igd6cx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ijo4o4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ilz2ox.enc + RELOC/fonts/enc/dvips/libertine/lbtn_imzna7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_indkeb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_io54zc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ip3srb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_iqbcqn.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ism4pi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_itwafr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_j3xg3k.enc + RELOC/fonts/enc/dvips/libertine/lbtn_j6rzs3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jbwhst.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jk65vs.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jkqd5u.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jm7hzd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jnah33.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jr2l53.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jtbvjr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jtta5h.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jubyw6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jvhpxk.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jx6jsy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_k2din5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ka7zfp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ki75ao.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kijugd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kmbcyi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kozgsn.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kqi56g.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ks2ukx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kuli6n.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kvn6mi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_l4ygyh.enc + RELOC/fonts/enc/dvips/libertine/lbtn_l5ekfx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ldz4vi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_lmduqq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_lqfkm2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_lrrvac.enc + RELOC/fonts/enc/dvips/libertine/lbtn_lu7m2n.enc + RELOC/fonts/enc/dvips/libertine/lbtn_lyu3x3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_m4ul6s.enc + RELOC/fonts/enc/dvips/libertine/lbtn_m7vdvu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_mdetlm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_mlkyly.enc + RELOC/fonts/enc/dvips/libertine/lbtn_mmutss.enc + RELOC/fonts/enc/dvips/libertine/lbtn_mx3chd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_mywn7m.enc + RELOC/fonts/enc/dvips/libertine/lbtn_n3ddym.enc + RELOC/fonts/enc/dvips/libertine/lbtn_n3gv2c.enc + RELOC/fonts/enc/dvips/libertine/lbtn_n3xw57.enc + RELOC/fonts/enc/dvips/libertine/lbtn_n7uljd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_naooyc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ncsllp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_nh77jq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_nifh3d.enc + RELOC/fonts/enc/dvips/libertine/lbtn_o3jfbt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_o3v7gd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_o7ljol.enc + RELOC/fonts/enc/dvips/libertine/lbtn_oexx6f.enc + RELOC/fonts/enc/dvips/libertine/lbtn_oie7e6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_okxbyw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_omcwp2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ooant5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ouu7z6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ov2e4f.enc + RELOC/fonts/enc/dvips/libertine/lbtn_owmg2c.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pagsao.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pc62jw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pfnu67.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pjjyzv.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pjxd67.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pkft74.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pq6qgt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_prxh5x.enc + RELOC/fonts/enc/dvips/libertine/lbtn_puhpfk.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pwsgbx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_q2zrjv.enc + RELOC/fonts/enc/dvips/libertine/lbtn_q6vmp6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_qac756.enc + RELOC/fonts/enc/dvips/libertine/lbtn_qacof3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_qgimbz.enc + RELOC/fonts/enc/dvips/libertine/lbtn_qlw4xk.enc + RELOC/fonts/enc/dvips/libertine/lbtn_qnd5b5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_qwz7uv.enc + RELOC/fonts/enc/dvips/libertine/lbtn_r4tgzq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_rat5le.enc + RELOC/fonts/enc/dvips/libertine/lbtn_rh4gvg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_roevjg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_rvmawp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_sakzps.enc + RELOC/fonts/enc/dvips/libertine/lbtn_sdmuhw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_sfn3yq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_sjkbhb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_soyanm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_sruc5m.enc + RELOC/fonts/enc/dvips/libertine/lbtn_suv2ur.enc + RELOC/fonts/enc/dvips/libertine/lbtn_t62t6h.enc + RELOC/fonts/enc/dvips/libertine/lbtn_tk3eej.enc + RELOC/fonts/enc/dvips/libertine/lbtn_tltjc6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_tlukpt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_tnngrt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_trvg3w.enc + RELOC/fonts/enc/dvips/libertine/lbtn_txfk5t.enc + RELOC/fonts/enc/dvips/libertine/lbtn_u442ab.enc + RELOC/fonts/enc/dvips/libertine/lbtn_u4pufl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_u7qtuy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ufdkzv.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ulngvd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_uqwtgw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_urpt4g.enc + RELOC/fonts/enc/dvips/libertine/lbtn_usa6cb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_utckyy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_uwivlq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_v2xmgd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_v3uc42.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vezqth.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vfdxlw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vhl5ch.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vm42ve.enc + RELOC/fonts/enc/dvips/libertine/lbtn_voilzo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_volajt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vp3gac.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vpeqwl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vpjqew.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vsrqlo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vump27.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vyzecs.enc + RELOC/fonts/enc/dvips/libertine/lbtn_w5h3ip.enc + RELOC/fonts/enc/dvips/libertine/lbtn_w6afmj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_wcay2e.enc + RELOC/fonts/enc/dvips/libertine/lbtn_weuxsp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_wnipxy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_wruwpj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_wyfdnl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_wzgokb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_x4bvel.enc + RELOC/fonts/enc/dvips/libertine/lbtn_x4urtl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xapzkq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xc6c72.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xeech7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xie3od.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xnyvcl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xogrpz.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xpavo4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xsgxhq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xz74p6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xzlo5e.enc + RELOC/fonts/enc/dvips/libertine/lbtn_y6cxei.enc + RELOC/fonts/enc/dvips/libertine/lbtn_y6gumo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yea32d.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yfflrw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yruotg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yvenhr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_z254vq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_z3bmga.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zacdtl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zajy4r.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zkaele.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zlmmkb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zoexom.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zp73k3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zq22hj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zxvhqu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zycpkp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zyymej.enc + RELOC/fonts/map/dvips/libertine/libertine.map + RELOC/fonts/opentype/public/libertine/LinBiolinum_K.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_R.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_RB.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_RBO.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_RI.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_DR.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_I.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_M.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_MB.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_MBO.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_MO.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_R.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RB.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RBI.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RI.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RZ.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RZI.otf + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ts1.tfm + RELOC/fonts/type1/public/libertine/LinBiolinumT.pfb + RELOC/fonts/type1/public/libertine/LinBiolinumTB.pfb + RELOC/fonts/type1/public/libertine/LinBiolinumTBO.pfb + RELOC/fonts/type1/public/libertine/LinBiolinumTI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineDisplayT.pfb + RELOC/fonts/type1/public/libertine/LinLibertineIT.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMT.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMTB.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMTBO.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMTO.pfb + RELOC/fonts/type1/public/libertine/LinLibertineO.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOB.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOBI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOZ.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOZI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineT.pfb + RELOC/fonts/type1/public/libertine/LinLibertineTB.pfb + RELOC/fonts/type1/public/libertine/LinLibertineTBI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineTI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineTZ.pfb + RELOC/fonts/type1/public/libertine/LinLibertineTZI.pfb + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-ts1.vf + RELOC/tex/latex/libertine/LKey.tex + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-TOsF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-TOsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/LinBiolinum_K.tex + RELOC/tex/latex/libertine/LinBiolinum_R.tex + RELOC/tex/latex/libertine/LinLibertine_I.tex + RELOC/tex/latex/libertine/LinLibertine_R.tex + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-TOsF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-Sup.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-Sup.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-Sup.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-TOsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineT-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineT-Sup.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-Sup.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-Sup.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-Sup.fd + RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineT-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineT-OsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineT-Sup.fd + RELOC/tex/latex/libertine/T1LinuxLibertineT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineMonoT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineT-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/biolinum.sty + RELOC/tex/latex/libertine/libertine.sty + RELOC/tex/latex/libertine/libertineMono.sty + RELOC/tex/latex/libertine/libertineRoman.sty +catalogue-ctan /fonts/libertine +catalogue-license gpl ofl lppl +catalogue-topics font font-body font-serif font-sans font-mono font-otf font-type1 font-supp font-t1enc +catalogue-version 5.3.0 + +name libertinegc +category Package +revision 44616 +shortdesc Libertine add-on to support Greek and Cyrillic +relocated 1 +longdesc The package provides LaTeX support files to access the Greek +longdesc and Cyrillic glyphs in LinuxLibertine. It functions as an +longdesc add-on to the libertine package, using filenames and macro +longdesc names that are compatible with that package. Supported +longdesc encodings: LGR, T2A, T2B, T2C, OT2. +execute addMap libertinegc.map +containersize 39208 +containerchecksum 0af71c5bd17a2c89d85c2df056e76e4f8ff98b24de40dd306a9c4207c15dbe9dfd08864736a3a45f1c82f51717396ea843082f6798b89f7e9ea8c316453a707f +doccontainersize 302488 +doccontainerchecksum 010db594b034a5e401fd17a7772dd3dbf95c37d533fad97f7b1568336beca31523384da1eab42e74b2e8bf294b25a8d19df7469eddd65cc1bb61abd5dbe79d03 +docfiles size=76 + RELOC/doc/fonts/libertinegc/README details="Readme" + RELOC/doc/fonts/libertinegc/libertinegc-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinegc/libertinegc-doc.tex +runfiles size=152 + RELOC/fonts/enc/dvips/libertinegc/lib-ot2.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2a.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2a1.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2a2.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2b.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2b1.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2b2.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2c.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2c1.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2c2.enc + RELOC/fonts/enc/dvips/libertinegc/lib1-ot2.enc + RELOC/fonts/enc/dvips/libertinegc/libosf-lgr.enc + RELOC/fonts/enc/dvips/libertinegc/libtlf-lgr.enc + RELOC/fonts/map/dvips/libertinegc/libertinegc.map + RELOC/fonts/tfm/public/libertinegc/LinLIbertineT-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-tlf-lgr.tfm + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/libertinegc.sty +catalogue-also libertine +catalogue-ctan /fonts/libertinegc +catalogue-license lppl1.3 +catalogue-topics font font-cyrillic font-greek font-multilingual font-serif +catalogue-version 1.01 + +name libertinus +category Package +revision 55064 +shortdesc Wrapper to use the correct libertinus package according to the used TeX engine +relocated 1 +longdesc This package is only a wrapper for the the two packages +longdesc libertinus-type1 (pdfLaTeX) and libertinus-otf +longdesc (LuaLaTeX/XeLaTeX). The Libertinus fonts are similiar to +longdesc Libertine and Biolinum, but come with math symbols. +containersize 972 +containerchecksum ec36e8d1184e4b8aad46391bf6cfe54a48006af6ab70cc2a4e20892bdaabdf39ec145e216a12e8be389e3080a51ce5d81be2376be631e32f48ddd5f9548cc564 +doccontainersize 16240 +doccontainerchecksum 35e7c7ccb8c10bf2d5d24c03b47174a6e53dfabb9f7629f778f6ab3624f146371b4970f577d28765cbcdb1094dbf8414a729a2b808a7f41f418b911899ee0698 +docfiles size=7 + RELOC/doc/fonts/libertinus/Changes + RELOC/doc/fonts/libertinus/README.md details="Readme" + RELOC/doc/fonts/libertinus/libertinus-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinus/libertinus-doc.tex +runfiles size=1 + RELOC/tex/latex/libertinus/libertinus.sty +catalogue-ctan /fonts/libertinus +catalogue-license lppl1.3 +catalogue-topics font-serif font-sans font-mono font-maths font-otf +catalogue-version 0.02 + +name libertinus-fonts +category Package +revision 57948 +shortdesc The Libertinus font family +relocated 1 +longdesc This is a fork of the Linux Libertine and Linux Biolinum fonts +longdesc that started as an OpenType math companion of the Libertine +longdesc font family, but grown as a full fork to address some of the +longdesc bugs in the fonts. The family consists of: Libertinus Serif: +longdesc forked from Linux Libertine. Libertinus Sans: forked from Linux +longdesc Biolinum. Libertinus Mono: forked from Linux Libertine Mono. +longdesc Libertinus Math: an OpenType math font for use in OpenType +longdesc math-capable applications like LuaTeX, XeTeX or MS Word 2007+. +containersize 1659740 +containerchecksum 5deeffa40e2399169a7ec16fec4d417c27350cb5ccb7f59eb1638172758e88167d24470d889b311760b0739b9fa0251e2389f7ccda0e4e8e2ce3a454406f13be +doccontainersize 553012 +doccontainerchecksum 410edfda953b321c9fa53e99854eea206177e4486c0fdd6ae3cc20eddb31111f28f17dfd725c5f2dc573d82ba5daa1f75c544709accae84292cff45d52b10c18 +docfiles size=279 + RELOC/doc/fonts/libertinus-fonts/AUTHORS.txt + RELOC/doc/fonts/libertinus-fonts/CONTRIBUTING.md + RELOC/doc/fonts/libertinus-fonts/CONTRIBUTORS.txt + RELOC/doc/fonts/libertinus-fonts/Design-Guidelines.md + RELOC/doc/fonts/libertinus-fonts/FONTLOG.txt + RELOC/doc/fonts/libertinus-fonts/Features.md + RELOC/doc/fonts/libertinus-fonts/Math-Sample.pdf details="Math font samples" + RELOC/doc/fonts/libertinus-fonts/OFL.txt + RELOC/doc/fonts/libertinus-fonts/Opentype-Features.pdf + RELOC/doc/fonts/libertinus-fonts/README.md details="Readme" + RELOC/doc/fonts/libertinus-fonts/Sample.pdf details="Font samples" + RELOC/doc/fonts/libertinus-fonts/libertinus.css + RELOC/doc/fonts/libertinus-fonts/preview.pdf + RELOC/doc/fonts/libertinus-fonts/preview.svg +runfiles size=871 + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusKeyboard-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusMath-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusMono-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSans-Bold.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSans-Italic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSans-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Bold.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-BoldItalic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Italic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Semibold.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-SemiboldItalic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerifDisplay-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerifInitials-Regular.otf +catalogue-also libertinus-otf libertinus-type1 +catalogue-contact-announce https://github.com/alerque/libertinus/releases +catalogue-contact-bugs https://github.com/alerque/libertinus/issues +catalogue-contact-repository https://github.com/alerque/libertinus +catalogue-ctan /fonts/libertinus-fonts +catalogue-license ofl +catalogue-topics font font-body font-proportional font-mono font-serif font-sans font-multilingual font-maths font-otf +catalogue-version 7.040 + +name libertinus-otf +category Package +revision 57398 +shortdesc Support for Libertinus OpenType +relocated 1 +longdesc This package offers LuaLaTeX/XeLaTeX support for the Libertinus +longdesc OpenType fonts maintained by Khaled Hosny. Missing fonts are +longdesc defined via several font feature settings. The Libertinus fonts +longdesc are similiar to Libertine and Biolinum, but come with math +longdesc symbols. +containersize 3724 +containerchecksum 12f6bf40c77850714880d7f1e91629e2242d206b2f672b2d9d2f18d567e0e6fe47ef161d03a6351d0e1344048dc8b92b755d53153c164e23177c0dd29ccc3372 +doccontainersize 593988 +doccontainerchecksum a55175cad1b7a407e827b341ab742f6a7ed3aa92984c4a39d534a76b2c733b4aec939609fc77e0e319f2eb2589f2a96c5bb0f8d2b00ecad7ad74932fd8959bb1 +docfiles size=170 + RELOC/doc/fonts/libertinus-otf/Changes + RELOC/doc/fonts/libertinus-otf/README.md details="Readme" + RELOC/doc/fonts/libertinus-otf/libertinus-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinus-otf/libertinus-otf-doc.tex +runfiles size=7 + RELOC/tex/latex/libertinus-otf/libertinus-otf.sty +catalogue-also libertinus-fonts libertinus-type1 +catalogue-ctan /fonts/libertinus-otf +catalogue-license lppl1.3 +catalogue-topics font-body font-otf font-supp font-serif font-sans font-proportional font-mono font-maths luatex xetex +catalogue-version 0.28 + +name libertinus-type1 +category Package +revision 57754 +shortdesc Support for using Libertinus fonts with LaTeX/pdfLaTeX +relocated 1 +longdesc This package provides support for use of Libertinus fonts with +longdesc traditional processing engines (LaTeX with dvips or dvipdfmx, +longdesc or pdfLaTeX). +execute addMap libertinus.map +containersize 8791732 +containerchecksum cfd0e2f07d40389fe0a1dbbcc08b35da4f2639c235c0bf4f5bcce92c09fce6721b4c4f0870e8e09b18e8bbf239b79fb9c6603e6de4efda9958e111b164ac6716 +doccontainersize 1407044 +doccontainerchecksum 92d0df6163e0fe5951b73b938ee184b30c3443492cb6844c1ea662ae47889434afbbad77463da051358835eeb02b1c1730351acab75fb2530782f4a37348ab2e +docfiles size=350 + RELOC/doc/fonts/libertinus-type1/OFL.txt + RELOC/doc/fonts/libertinus-type1/README details="Readme" + RELOC/doc/fonts/libertinus-type1/libertinus-samples.pdf details="Font samples" + RELOC/doc/fonts/libertinus-type1/libertinus-samples.tex + RELOC/doc/fonts/libertinus-type1/libertinus-type1.pdf details="Package documentation" + RELOC/doc/fonts/libertinus-type1/libertinus-type1.tex +runfiles size=4932 + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2dnbtf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2fcdyd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2ojay3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2tlncs.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2u3q4p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2vfnnw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2y652m.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2yds7f.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_332eyj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_35favc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_36t55i.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_37i5h5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3d54jy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3j5xjf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3jolak.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3kirmv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3kmpct.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3m644f.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3qta4x.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3ssu23.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3un72f.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3vqmyw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3yrfnt.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4crdwc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4d42wm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4gaomz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4hcz3c.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4mrx7q.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4q6kep.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4sdcjk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4uwsiq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4wbnoe.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4xoyfg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4zqa2g.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_57bjkg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5acxeg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5cy3nd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5h7qbk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5jnf2k.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5mdojo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5xa72p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_63ftwl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_674lrv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6caxtj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6ewxxu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6gletg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6h6srf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6hdezz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6l4fbc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6lk76t.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6wmeer.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_72youc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_75t36g.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_76xdns.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_77jah4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_77t54r.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7aen2t.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7bccbz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7d2mhk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7hmj2z.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7lwjes.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7mm7zy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7oodvn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7vsebg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7yclm6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_a3f66t.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_aidrin.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_arfinu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_at32ur.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_avlujb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_avlydd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ayzaac.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_b4oezt.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_b5fzbp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_b7xqh5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bgegdt.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bjbyqz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bn2i3n.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bvhzzu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bxwrog.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_c3bv3f.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_c4i7ev.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_c4nx3a.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_c6ebdh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_c6vmpn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_c7grr2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_calslh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_cb34qf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_cclupu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_cefqwa.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ckbdgg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ckenly.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_cpinjp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_cslza4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_cykel7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_d2pxsd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_d37b7c.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dgc4ye.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dhtsou.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dkknmm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dn22no.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dsfsze.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dzyoth.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_e35iwk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_e5lu6a.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ecxtyf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ed5ai4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_eejjqw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ep5pfz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_epdddg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ercrba.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_erdvwd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_esgnlu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_et5tau.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_exfok6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_f2r76x.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_f3pcwn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fili27.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fmdp7p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fmriqv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fph2zj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_frnenp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fszxp3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fujx3h.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fuyass.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fy3had.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_g3dkmi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_g6etas.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gazpeh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gc5t3w.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gekugp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gh4gmp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_goqnek.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gp3nhm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gq67ga.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gr4hit.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gz554e.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gz7arp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hahfqq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hboyu3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hej6xm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hh5cao.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hhbt6z.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hhmpft.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hjeuwr.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hrrrjq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hvvyjb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hxvdny.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hzjkgg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_i52ngl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iadd5v.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iaq24h.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ibb6ig.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_icmtyb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ie56ak.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ienuhe.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ighl2q.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_igmfoi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ihsp6n.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iknsvo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_inpbes.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ipd343.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_is673m.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iv4zj2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_j6sgbi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_jb5pke.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_jdjwkh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_jfamas.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_jrenuz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_jwzfsl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_k62zaj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_kbhblx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_kehxxc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_koaj57.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_komy7m.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_kq3xmd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_kwkowq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l5raak.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l5ujiv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l5vej2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l6vzgi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l74upk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_laenbp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lafzha.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lhntva.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lkanbr.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_llns2d.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_llzec3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lsubum.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lwzthx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lyzgu3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lzae2z.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lzywtf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m254rf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m2klan.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m3c2oj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m3l6fs.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m5c6xi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m7sqdm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mbfmc4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mfadfl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mi54ls.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mll6fo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mlwm27.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mmgovh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mphtgh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mrbizy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mvzwgg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mxiee2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mzxlpf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n3cifc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n3dtgz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n4gj6t.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n4tewx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_nl47lc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_nufysp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_nv3oiw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_o7mh5o.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_oaaihm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_obkmrl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_obzz72.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_odbssz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_of47id.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_of4nbw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_olw3tj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_onayya.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_opzo24.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ork5hb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_orvmfm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_osdvzf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_oxank3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_p5b3to.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_p7snj6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pa7fun.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pag3gg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pb7os7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pdot6l.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_peeabe.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pkzsom.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_poicuj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ponsko.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ppaygs.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ppmlvs.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pquqdo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ptnx64.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pydski.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_q2cvbs.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_q2ibpc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_q4imkx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_q4q2yp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qamrlg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qcfvgl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qe2yqv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qpph5c.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qqnp2h.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qsv3bx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_quwwcn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qylzkl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qzwhi6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_r37ntu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_r4goj2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_r7yss2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rcarnw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rchowm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rfuadt.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ridgvo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rlktsf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rpeiua.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rqhkdi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rtitj6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rv4ogi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_sceraq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_segm3u.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_sewfus.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_sfissr.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_sihybe.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_sjlxxx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_slsqbu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_snijqp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_sppvmf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_srwzhm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_st5lk5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_sut3w7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_szn4yf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_szwnvb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_tevnlg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_tll2u3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_trmgk4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_trxlme.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_tzl7op.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_u2zr7g.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_u7nqae.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ucipzb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ucscsg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ugujza.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uhqgc3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uhwxqu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uoecuf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_usfuuy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_usl52j.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_usz5ut.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_utifxg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uwmf7x.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uxbjn5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uxf4m5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uyjt7r.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_v5eacd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_v5z4kv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vafbri.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vejg7h.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vftr22.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vgeuwy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vgw5na.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vhmker.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vizicw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vjxogo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vkm6ln.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vmhi4g.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vmjjgq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vtz4pu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vu5j2r.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vvzoei.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_w5ro75.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_waqoej.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wm6att.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wogi6j.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wozmdw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wpqmwa.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wrg6fm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wyusil.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_x7beke.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xaezkf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xfy7gm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xh3iko.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xhfw3j.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xjb3td.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xpehld.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xrj6hp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ya3yeu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ya7mbv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yaf6wf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yahecb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ygr64v.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yki2t7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ynfuvy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ysaokq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yt5vb5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yuwgqp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yzuq4p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_z6ew44.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_z6nnva.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zh5q6t.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zjhiql.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_znslmj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zpwads.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zqzvht.enc + RELOC/fonts/map/dvips/libertinus-type1/libertinus.map + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2b--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2c--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ts1.tfm + RELOC/fonts/type1/public/libertinus-type1/LibertinusMono-Bold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusMono-BoldOblique.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusMono-Oblique.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusMono-Regular.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans-Bold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans-BoldOblique.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans-Italic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans-Regular.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-Bold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-BoldItalic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-Italic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-Regular.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-Semibold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-SemiboldItalic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerifDisplay-Regular.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerifInitials-Regular.pfb + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Regular-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2c.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ts1.vf + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusMono-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/libertinus-type1.sty +catalogue-also libertinus-fonts libertinus-otf +catalogue-ctan /fonts/libertinus-type1 +catalogue-license gpl2 ofl lppl +catalogue-topics font font-body font-type1 font-serif font-sans font-proportional font-mono font-t1enc font-supp + +name libertinust1math +category Package +revision 56861 +shortdesc A Type 1 font and LaTeX support for Libertinus Math +relocated 1 +longdesc The package provides a Type1 version of Libertinus Math, with a +longdesc number of additions and changes, plus LaTeX support files that +longdesc allow it to serve as a math accompaniment to Libertine under +longdesc LaTeX. In addition, with option sansmath, it can function as a +longdesc standalone math font with sans serif Roman and Greek letters. +execute addMap libertinust1math.map +containersize 1011376 +containerchecksum a0720e690aecd6e8239aabacdb815ebd70512b067782d0efbef9da437b8cbed9edc70f5650eae18f51e3cd37b4dc966af472690fac9bcca0dd025faf591b26fc +doccontainersize 1329808 +doccontainerchecksum d963d7e8541a8a7df1ab8da508cee578abffeebae9d1326ed0d11f1c28831b6f6656429988ea77378477d7a5680aab1fcadd793931908a93cb16548265c7a96d +docfiles size=1193 + RELOC/doc/fonts/libertinust1math/FONTLOG.txt + RELOC/doc/fonts/libertinust1math/LibertinusT1Math-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinust1math/LibertinusT1Math-doc.tex + RELOC/doc/fonts/libertinust1math/OFL.txt + RELOC/doc/fonts/libertinust1math/README details="Readme" + RELOC/doc/fonts/libertinust1math/sample1-crop.pdf + RELOC/doc/fonts/libertinust1math/sample1.pdf + RELOC/doc/fonts/libertinust1math/sample1.tex + RELOC/doc/fonts/libertinust1math/sample10-crop.pdf + RELOC/doc/fonts/libertinust1math/sample10.pdf + RELOC/doc/fonts/libertinust1math/sample10.tex + RELOC/doc/fonts/libertinust1math/sample11-crop.pdf + RELOC/doc/fonts/libertinust1math/sample11.pdf + RELOC/doc/fonts/libertinust1math/sample11.tex + RELOC/doc/fonts/libertinust1math/sample2-crop.pdf + RELOC/doc/fonts/libertinust1math/sample2.pdf + RELOC/doc/fonts/libertinust1math/sample2.tex + RELOC/doc/fonts/libertinust1math/sample3-crop.pdf + RELOC/doc/fonts/libertinust1math/sample3.pdf + RELOC/doc/fonts/libertinust1math/sample3.tex + RELOC/doc/fonts/libertinust1math/sample4-crop.pdf + RELOC/doc/fonts/libertinust1math/sample4.pdf + RELOC/doc/fonts/libertinust1math/sample4.tex + RELOC/doc/fonts/libertinust1math/sample5-crop.pdf + RELOC/doc/fonts/libertinust1math/sample5.pdf + RELOC/doc/fonts/libertinust1math/sample5.tex + RELOC/doc/fonts/libertinust1math/sample6-crop.pdf + RELOC/doc/fonts/libertinust1math/sample6.pdf + RELOC/doc/fonts/libertinust1math/sample6.tex + RELOC/doc/fonts/libertinust1math/sample7-crop.pdf + RELOC/doc/fonts/libertinust1math/sample7.pdf + RELOC/doc/fonts/libertinust1math/sample7.tex + RELOC/doc/fonts/libertinust1math/sample8-crop.pdf + RELOC/doc/fonts/libertinust1math/sample8.pdf + RELOC/doc/fonts/libertinust1math/sample8.tex + RELOC/doc/fonts/libertinust1math/sample9-crop.pdf + RELOC/doc/fonts/libertinust1math/sample9.pdf + RELOC/doc/fonts/libertinust1math/sample9.tex +runfiles size=455 + RELOC/fonts/afm/public/libertinust1math/BDXsfmi-bol.afm + RELOC/fonts/afm/public/libertinust1math/BDXsfmi-reg.afm + RELOC/fonts/afm/public/libertinust1math/BDXsfmr-bol.afm + RELOC/fonts/afm/public/libertinust1math/BDXsfmr-reg.afm + RELOC/fonts/afm/public/libertinust1math/LibertinusT1Math.afm + RELOC/fonts/enc/dvips/libertinust1math/libusBB.enc + RELOC/fonts/enc/dvips/libertinust1math/libusBMI.enc + RELOC/fonts/enc/dvips/libertinust1math/libusBMR.enc + RELOC/fonts/enc/dvips/libertinust1math/libusEX.enc + RELOC/fonts/enc/dvips/libertinust1math/libusFRK.enc + RELOC/fonts/enc/dvips/libertinust1math/libusMI.enc + RELOC/fonts/enc/dvips/libertinust1math/libusMR.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSF.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSFB.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSFI.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSYM.enc + RELOC/fonts/enc/dvips/libertinust1math/libussfMI.enc + RELOC/fonts/enc/dvips/libertinust1math/libussfMR.enc + RELOC/fonts/map/dvips/libertinust1math/libertinust1math.map + RELOC/fonts/tfm/public/libertinust1math/BDXsfmi-bol.tfm + RELOC/fonts/tfm/public/libertinust1math/BDXsfmi-reg.tfm + RELOC/fonts/tfm/public/libertinust1math/BDXsfmr-bol.tfm + RELOC/fonts/tfm/public/libertinust1math/BDXsfmr-reg.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathbb.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathex.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathit-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathit.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathrm-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathrm.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfit-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfit.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfrm-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfrm.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsym.tfm + RELOC/fonts/type1/public/libertinust1math/BDXsfmi-bol.pfb + RELOC/fonts/type1/public/libertinust1math/BDXsfmi-reg.pfb + RELOC/fonts/type1/public/libertinust1math/BDXsfmr-bol.pfb + RELOC/fonts/type1/public/libertinust1math/BDXsfmr-reg.pfb + RELOC/fonts/type1/public/libertinust1math/LibertinusT1Math.pfb + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfit-bold.vf + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfit.vf + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfrm-bold.vf + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfrm.vf + RELOC/tex/latex/libertinust1math/libertinust1math.sty + RELOC/tex/latex/libertinust1math/ls1libertinust1math.fd + RELOC/tex/latex/libertinust1math/ls1libertinust1mathbb.fd + RELOC/tex/latex/libertinust1math/ls1libertinust1mathsf.fd + RELOC/tex/latex/libertinust1math/ls2libertinust1mathex.fd + RELOC/tex/latex/libertinust1math/ls2libertinust1mathsym.fd + RELOC/tex/latex/libertinust1math/ot1libertinust1mathsf.fd +catalogue-ctan /fonts/libertinust1math +catalogue-license ofl lppl +catalogue-topics font-serif font-sans font-maths font-type1 +catalogue-version 1.2.2 + +name libgreek +category Package +revision 27789 +shortdesc Use Libertine or Biolinum Greek glyphs in mathematics +relocated 1 +longdesc The package is for LaTeX users who wish to use the Libertine or +longdesc Biolinum font for the Greek letters in math mode. It is not +longdesc necessary to load the libertine package itself, but of course +longdesc the Linux-Libertine/Biolinum fonts and LaTeX support files must +longdesc have been installed. +containersize 2244 +containerchecksum 0547ebdd180554fd00a7ad96932816e13744886457c84960b8abba06125f68ec9391ffb03c7bb7ad039a2654a1b73c2c378b8eee2130107a02e25881581c8139 +doccontainersize 46148 +doccontainerchecksum 105ad6a6d557213c6918b2160dfc70449d496155e3a0fe1e683b2186b8d10d3067a85b05e3ee26f01ccdb6f70c2f864d09439eb4b8347dc3217482e17600f79d +docfiles size=16 + RELOC/doc/latex/libgreek/README details="Readme" + RELOC/doc/latex/libgreek/libgreek.pdf details="Package documentation" + RELOC/doc/latex/libgreek/libgreekcheck.tex +srccontainersize 4748 +srccontainerchecksum 41e1629949d8fbe9cbef5a153bd9ffe2ed354789a4c80d518e5ef7bb4bb9f5152c024f190a4ad8d22eb58a69852d3fa63d7670aa1fa78001cac5d46c3891e025 +srcfiles size=5 + RELOC/source/latex/libgreek/libgreek.dtx + RELOC/source/latex/libgreek/libgreek.ins +runfiles size=3 + RELOC/tex/latex/libgreek/libgreek.sty +catalogue-ctan /macros/latex/contrib/libgreek +catalogue-license lppl1.3 +catalogue-topics font-maths font-supp +catalogue-version 1.0 + +name librarian +category Package +revision 19880 +shortdesc Tools to create bibliographies in TeX +relocated 1 +longdesc The package extracts information in bib files, makes it +longdesc available in the current document, and sorts lists of entries +longdesc according to that information and the user's specifications. +longdesc Citation and bibliography styles can then be written directly +longdesc in TeX, without any use of BibTeX. Creating references thus +longdesc depends entirely on the user's skill in TeX. The package works +longdesc with all formats that use plain TeX's basic syntactic sugar; +longdesc the distribution includes a third-party file for ConTeXt and a +longdesc style file for LaTeX. As an example of use, an Author (Year) +longdesc style is given in a separate file and explained in the +longdesc documentation. +containersize 6860 +containerchecksum 2a01755bec49fa8c78680b0599b58649b803694f339383ad168bdc06554dabeab3047d1b17d63f7487860a5d0102dd8f68a78d5ad5ba94a2f8b29db7329e1ebb +doccontainersize 162064 +doccontainerchecksum 6d95e43b1f9965fe016bd9fc7ba3f9df56716d8f6c89948417643bffc4b9e89f8a5e6cb045e873daff819a16cc10cd61e74e73e98119a076580967187338be37 +docfiles size=54 + RELOC/doc/generic/librarian/README details="Readme" + RELOC/doc/generic/librarian/authoryear.tex + RELOC/doc/generic/librarian/librarian-doc.pdf details="Package documentation" + RELOC/doc/generic/librarian/librarian-doc.tex + RELOC/doc/generic/librarian/librarian.bib +runfiles size=10 + RELOC/tex/generic/librarian/librarian.sty + RELOC/tex/generic/librarian/librarian.tex + RELOC/tex/generic/librarian/t-librarian.tex +catalogue-ctan /macros/generic/librarian +catalogue-license lppl +catalogue-topics biblio +catalogue-version 1.0 + +name librebaskerville +category Package +revision 56018 +shortdesc The Libre Baskerville family of fonts with LaTeX support +relocated 1 +longdesc This package provides the Libre Baskerville family of fonts, +longdesc designed by Pablo Impallari, for use with LaTeX, pdfLaTeX, +longdesc XeLaTeX or LuaLaTeX. It is primarily intended to be a web font +longdesc but is also attractive as a text font. A BoldItalic variant has +longdesc been artificially generated. +execute addMap LibreBaskerville.map +containersize 576200 +containerchecksum 49e0fce1bb4d31cb12f323e45a9e9cdd8688951f89e69c22c9cb576d2d0e222eafe74e02b07a9a854fdca2a32debadbca32ded1ec5a0b2efaff4a0d20e7ea3a1 +doccontainersize 33176 +doccontainerchecksum f90a5f6d2de21b15d53dc047771412fcd7ca7b5332a667efe1bab6c59eec59c474b5b6042fd1d81e70df86b3a571f3fd64799fd5e7ccac9362a9fe0b65da63ca +docfiles size=13 + RELOC/doc/fonts/librebaskerville/FONTLOG.txt + RELOC/doc/fonts/librebaskerville/OFL.txt + RELOC/doc/fonts/librebaskerville/README details="Readme" + RELOC/doc/fonts/librebaskerville/librebaskerville-samples.pdf details="Font samples" + RELOC/doc/fonts/librebaskerville/librebaskerville-samples.tex +runfiles size=457 + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_4uz6a2.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_4yc6wb.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_6hj2ra.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_p6yehx.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_uf5aa7.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_ufnake.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_vepvv3.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_wpcz7d.enc + RELOC/fonts/enc/dvips/librebaskerville/lbskvl_yeotsr.enc + RELOC/fonts/map/dvips/librebaskerville/LibreBaskerville.map + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-lf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-lf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-lf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBskvl-Regular-sup-t1.tfm + RELOC/fonts/truetype/impallari/librebaskerville/LibreBaskerville-Bold.ttf + RELOC/fonts/truetype/impallari/librebaskerville/LibreBaskerville-Italic.ttf + RELOC/fonts/truetype/impallari/librebaskerville/LibreBaskerville-Regular.ttf + RELOC/fonts/truetype/impallari/librebaskerville/LibreBskvl-BoldItalic.ttf + RELOC/fonts/type1/impallari/librebaskerville/LibreBskvl-Bold.pfb + RELOC/fonts/type1/impallari/librebaskerville/LibreBskvl-BoldItalic.pfb + RELOC/fonts/type1/impallari/librebaskerville/LibreBskvl-Italic.pfb + RELOC/fonts/type1/impallari/librebaskerville/LibreBskvl-Regular.pfb + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Bold-lf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Bold-lf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Bold-lf-ts1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Italic-lf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Italic-lf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Italic-lf-ts1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Regular-lf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Regular-lf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Regular-lf-ts1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Regular-sup-t1.vf + RELOC/tex/latex/librebaskerville/LY1LibreBskvl-LF.fd + RELOC/tex/latex/librebaskerville/LY1LibreBskvl-Sup.fd + RELOC/tex/latex/librebaskerville/LibreBskvl.sty + RELOC/tex/latex/librebaskerville/OT1LibreBskvl-LF.fd + RELOC/tex/latex/librebaskerville/OT1LibreBskvl-Sup.fd + RELOC/tex/latex/librebaskerville/T1LibreBskvl-LF.fd + RELOC/tex/latex/librebaskerville/T1LibreBskvl-Sup.fd + RELOC/tex/latex/librebaskerville/TS1LibreBskvl-LF.fd + RELOC/tex/latex/librebaskerville/librebaskerville.sty +catalogue-ctan /fonts/librebaskerville +catalogue-license ofl lppl +catalogue-topics font font-body font-serif font-proportional font-ttf font-type1 font-supp font-t1enc + +name librebodoni +category Package +revision 39375 +shortdesc Libre Bodoni fonts with LaTeX support +relocated 1 +longdesc The Libre Bodoni fonts are designed by Pablo Impallari and +longdesc Rodrigo Fuenzalida, based on the 19th century Morris Fuller +longdesc Benton's. +execute addMap LibreBodoni.map +containersize 547364 +containerchecksum eebacf9b045b46df1a8c806deebbd94742e2c1615e45da85946c83cbb82a3a2ff278a6a0bdf47059c5713ed1c2dfce8988ff82c4682aeeadc05772c49426372f +doccontainersize 20164 +doccontainerchecksum 5cad86257fd423e1f7551a014f888c28d4b61a9fea14aabb0128458fa17ad81372668f247d9e7a81ab0801d9ece0a0529a304d16ae2f06dae5598048bef4d036 +docfiles size=9 + RELOC/doc/fonts/librebodoni/OFL.txt + RELOC/doc/fonts/librebodoni/README details="Readme" + RELOC/doc/fonts/librebodoni/librebodoni-samples.pdf details="Package documentation" + RELOC/doc/fonts/librebodoni/librebodoni-samples.tex +runfiles size=316 + RELOC/fonts/enc/dvips/librebodoni/lbd_2nc6ly.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_dwvqiv.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_fttd7q.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_gxeqsi.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_k2dfwc.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_oaf34p.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_pcwse4.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_rpuqof.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_yeotsr.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_zpaflu.enc + RELOC/fonts/map/dvips/librebodoni/LibreBodoni.map + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-Bold.otf + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-BoldItalic.otf + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-Italic.otf + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-Regular.otf + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ts1.tfm + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-Bold.pfb + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-BoldItalic.pfb + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-Italic.pfb + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-Regular.pfb + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-tlf-ts1.vf + RELOC/tex/latex/librebodoni/LY1LibreBodoni-Inf.fd + RELOC/tex/latex/librebodoni/LY1LibreBodoni-Sup.fd + RELOC/tex/latex/librebodoni/LY1LibreBodoni-TLF.fd + RELOC/tex/latex/librebodoni/LibreBodoni.sty + RELOC/tex/latex/librebodoni/OT1LibreBodoni-Inf.fd + RELOC/tex/latex/librebodoni/OT1LibreBodoni-Sup.fd + RELOC/tex/latex/librebodoni/OT1LibreBodoni-TLF.fd + RELOC/tex/latex/librebodoni/T1LibreBodoni-Inf.fd + RELOC/tex/latex/librebodoni/T1LibreBodoni-Sup.fd + RELOC/tex/latex/librebodoni/T1LibreBodoni-TLF.fd + RELOC/tex/latex/librebodoni/TS1LibreBodoni-TLF.fd +catalogue-ctan /fonts/librebodoni +catalogue-license ofl +catalogue-topics font font-otf font-type1 + +name librecaslon +category Package +revision 56003 +shortdesc Libre Caslon fonts, with LaTeX support +relocated 1 +longdesc The Libre Caslon fonts are designed by Pablo Impallari. +longdesc Although they have been designed for use as web fonts, they +longdesc work well as conventional text fonts. An artificially generated +longdesc BoldItalic variant has been added. +execute addMap LibreCaslon.map +containersize 693256 +containerchecksum 83f7bf4212aa4340cb12ef5ab6ba447860793c8e2f1e8892e43b28d7bb19f3d20bdd58b74d9362fa21afd2bbd7f374d292635f30be91eddfe091a005703cf7ef +doccontainersize 107932 +doccontainerchecksum c41ea29708c5f830ef69d02444eb2735a307c545bbd3b876e9d367006bcea0df55d43fb740b15f1fba2849a9133ecf9edc617b9f2e143789c317821ea5573cdd +docfiles size=30 + RELOC/doc/fonts/librecaslon/OFL.txt + RELOC/doc/fonts/librecaslon/README details="Readme" + RELOC/doc/fonts/librecaslon/librecaslon-samples.pdf details="Font samples" + RELOC/doc/fonts/librecaslon/librecaslon-samples.tex +runfiles size=927 + RELOC/fonts/enc/dvips/librecaslon/lcsln_4uz6a2.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_4yc6wb.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_6hj2ra.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_cfomvu.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_dwvqiv.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_dybe4i.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_etzx2k.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_fx4jx2.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_igmdqj.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_n56tqa.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_p6yehx.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_uf5aa7.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_ufnake.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_vwciie.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_yeotsr.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_yiohbm.enc + RELOC/fonts/enc/dvips/librecaslon/lcsln_zdmgtj.enc + RELOC/fonts/map/dvips/librecaslon/LibreCaslon.map + RELOC/fonts/opentype/impallari/librecaslon/LibreCaslonText-Bold.otf + RELOC/fonts/opentype/impallari/librecaslon/LibreCaslonText-Italic.otf + RELOC/fonts/opentype/impallari/librecaslon/LibreCaslonText-Regular.otf + RELOC/fonts/opentype/impallari/librecaslon/LibreCsln-BoldItalic.otf + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-inf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-lf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tosf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-inf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-lf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-inf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-lf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-lf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-lf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-lf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tosf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCsln-Regular-tosf-ts1.tfm + RELOC/fonts/type1/impallari/librecaslon/LibreCsln-Bold.pfb + RELOC/fonts/type1/impallari/librecaslon/LibreCsln-BoldItalic.pfb + RELOC/fonts/type1/impallari/librecaslon/LibreCsln-Italic.pfb + RELOC/fonts/type1/impallari/librecaslon/LibreCsln-Regular.pfb + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-inf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-inf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-lf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-lf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-lf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-tosf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-tosf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Bold-tosf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-inf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-lf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-inf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-inf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-lf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-lf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-lf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-tosf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-tosf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Italic-tosf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-inf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-inf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-lf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-lf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-lf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-tosf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-tosf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCsln-Regular-tosf-ts1.vf + RELOC/tex/latex/librecaslon/LY1LibreCsln-Inf.fd + RELOC/tex/latex/librecaslon/LY1LibreCsln-LF.fd + RELOC/tex/latex/librecaslon/LY1LibreCsln-OsF.fd + RELOC/tex/latex/librecaslon/LY1LibreCsln-Sup.fd + RELOC/tex/latex/librecaslon/LY1LibreCsln-TLF.fd + RELOC/tex/latex/librecaslon/LY1LibreCsln-TOsF.fd + RELOC/tex/latex/librecaslon/OT1LibreCsln-Inf.fd + RELOC/tex/latex/librecaslon/OT1LibreCsln-LF.fd + RELOC/tex/latex/librecaslon/OT1LibreCsln-OsF.fd + RELOC/tex/latex/librecaslon/OT1LibreCsln-Sup.fd + RELOC/tex/latex/librecaslon/OT1LibreCsln-TLF.fd + RELOC/tex/latex/librecaslon/OT1LibreCsln-TOsF.fd + RELOC/tex/latex/librecaslon/T1LibreCsln-Inf.fd + RELOC/tex/latex/librecaslon/T1LibreCsln-LF.fd + RELOC/tex/latex/librecaslon/T1LibreCsln-OsF.fd + RELOC/tex/latex/librecaslon/T1LibreCsln-Sup.fd + RELOC/tex/latex/librecaslon/T1LibreCsln-TLF.fd + RELOC/tex/latex/librecaslon/T1LibreCsln-TOsF.fd + RELOC/tex/latex/librecaslon/TS1LibreCsln-LF.fd + RELOC/tex/latex/librecaslon/TS1LibreCsln-OsF.fd + RELOC/tex/latex/librecaslon/TS1LibreCsln-TLF.fd + RELOC/tex/latex/librecaslon/TS1LibreCsln-TOsF.fd + RELOC/tex/latex/librecaslon/librecaslon.sty +catalogue-contact-home https://github.com/impallari/Libre-Caslon-Text +catalogue-ctan /fonts/librecaslon +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-serif font-otf font-type1 font-supp font-t1enc + +name librefranklin +category Package +revision 54512 +shortdesc LaTeX support for the Libre-Franklin family of fonts +relocated 1 +longdesc Libre Franklin is an interpretation and expansion based on the +longdesc 1912 Morris Fuller Benton's classic, designed by Pablo +longdesc Impallari, Rodrigo Fuenzalida and Nhung Nguyen. +execute addMap LibreFranklin.map +containersize 2995408 +containerchecksum 793a8b7048c96bab41620464fbac38adba4a07bf1cbe167e12bf56a051183b5af599f2559ea00bef51f1dc9d8851c41fc8bb65664a2544278b9b66be66d2f9cc +doccontainersize 31688 +doccontainerchecksum 54b3c072fc80d07b07a1388988d37ba39a1ee302e12e99d9b9beed32bd547edc4bdd1134888cc79922a59347bd5c03724150eab7fcd84431bda31cc8a04eadaf +docfiles size=13 + RELOC/doc/fonts/librefranklin/OFL.txt + RELOC/doc/fonts/librefranklin/README details="Readme" + RELOC/doc/fonts/librefranklin/librefranklin-samples.pdf details="Package documentation" + RELOC/doc/fonts/librefranklin/librefranklin-samples.tex +runfiles size=1546 + RELOC/fonts/enc/dvips/librefranklin/lbfr_ejn2og.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_hlvv6p.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_nb4g6w.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_spbxfw.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_tdlrq7.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_tf5jo5.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_w4rwtq.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_wmouhf.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_xsutkk.enc + RELOC/fonts/map/dvips/librefranklin/LibreFranklin.map + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Black.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-BlackItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Bold.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-BoldItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraBold.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraBoldItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraLight.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraLightItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Italic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Light.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-LightItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Medium.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-MediumItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Regular.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-SemiBold.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-SemiBoldItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Thin.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ThinItalic.otf + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ts1.tfm + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Black.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-BlackItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Bold.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-BoldItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraBold.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraBoldItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraLight.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraLightItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Italic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Light.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-LightItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Medium.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-MediumItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Regular.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-SemiBold.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-SemiBoldItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Thin.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ThinItalic.pfb + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ts1.vf + RELOC/tex/latex/librefranklin/LGRLibreFranklin-Sup.fd + RELOC/tex/latex/librefranklin/LGRLibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/LY1LibreFranklin-Sup.fd + RELOC/tex/latex/librefranklin/LY1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/OT1LibreFranklin-Sup.fd + RELOC/tex/latex/librefranklin/OT1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/T1LibreFranklin-Sup.fd + RELOC/tex/latex/librefranklin/T1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/TS1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/librefranklin.sty +catalogue-contact-home https://github.com/impallari/Libre-Franklin +catalogue-ctan /fonts/librefranklin +catalogue-license lppl ofl +catalogue-topics font font-sans font-proportional font-body font-otf font-type1 font-t1enc + +name libris +category Package +revision 19409 +shortdesc Libris ADF fonts, with LaTeX support +relocated 1 +longdesc LibrisADF is a sans-serif family designed to mimic Lydian. The +longdesc bundle includes: fonts, in Adobe Type 1, TrueType and OpenType +longdesc formats, and LaTeX support macros, for use with the Type 1 +longdesc versions of the fonts. The LaTeX macros depend on the +longdesc nfssext-cfr bundle. GPL licensing applies the fonts themselves; +longdesc the support macros are distributed under LPPL licensing. +execute addMap yly.map +containersize 239832 +containerchecksum 1a754d896846d0db358cf4f878928dcb511d76a7de6e7dfabee71970908e3ed7caab98f854695318ead334e052282b690712069597f42505b00c41e328ad141d +doccontainersize 502560 +doccontainerchecksum 04378b8461d6ea0284f038974fed6ae6fc48fc362f63dfb8b8d57a81a721da7bf17ca3aeabb198c373a68a4c8e5516b66f12c240e081dabcf1b9c79fd2d2b388 +docfiles size=138 + RELOC/doc/fonts/libris/COPYING + RELOC/doc/fonts/libris/NOTICE.txt + RELOC/doc/fonts/libris/README details="Readme" + RELOC/doc/fonts/libris/librisadf.pdf details="Details of distribution" + RELOC/doc/fonts/libris/librisadf.tex + RELOC/doc/fonts/libris/manifest.txt +srccontainersize 10060 +srccontainerchecksum 8ccb8a6beb30c508d582dc905136cc8b1b053a8d71a7701bdeccb0ff1eecfa69e32d7167b871d4e38eb0c98ef49c8ee9a00a9ea3bbc30e51c8a81d903ac147ff +srcfiles size=34 + RELOC/source/fonts/libris/libris-supp.etx + RELOC/source/fonts/libris/reglyph-yly.tex + RELOC/source/fonts/libris/resetalt.mtx + RELOC/source/fonts/libris/t1-cfr.etx + RELOC/source/fonts/libris/t1-libris.etx + RELOC/source/fonts/libris/t1-librisswash.etx + RELOC/source/fonts/libris/ts1-euro.etx + RELOC/source/fonts/libris/yly-drv.tex + RELOC/source/fonts/libris/yly-map.tex +runfiles size=169 + RELOC/fonts/afm/arkandis/libris/ylyb8a.afm + RELOC/fonts/afm/arkandis/libris/ylybi8a.afm + RELOC/fonts/afm/arkandis/libris/ylyr8a.afm + RELOC/fonts/afm/arkandis/libris/ylyri8a.afm + RELOC/fonts/enc/dvips/libris/libris-supp.enc + RELOC/fonts/enc/dvips/libris/t1-cfr-yly.enc + RELOC/fonts/enc/dvips/libris/ts1-euro-yly.enc + RELOC/fonts/map/dvips/libris/yly.map + RELOC/fonts/tfm/arkandis/libris/ylyb-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylybiw8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylybw8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyriw8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyrw8t.tfm + RELOC/fonts/type1/arkandis/libris/ylyb8a.pfb + RELOC/fonts/type1/arkandis/libris/ylyb8a.pfm + RELOC/fonts/type1/arkandis/libris/ylybi8a.pfb + RELOC/fonts/type1/arkandis/libris/ylybi8a.pfm + RELOC/fonts/type1/arkandis/libris/ylyr8a.pfb + RELOC/fonts/type1/arkandis/libris/ylyr8a.pfm + RELOC/fonts/type1/arkandis/libris/ylyri8a.pfb + RELOC/fonts/type1/arkandis/libris/ylyri8a.pfm + RELOC/fonts/vf/arkandis/libris/ylyb8c.vf + RELOC/fonts/vf/arkandis/libris/ylyb8t.vf + RELOC/fonts/vf/arkandis/libris/ylybi8c.vf + RELOC/fonts/vf/arkandis/libris/ylybi8t.vf + RELOC/fonts/vf/arkandis/libris/ylybiw8t.vf + RELOC/fonts/vf/arkandis/libris/ylybw8t.vf + RELOC/fonts/vf/arkandis/libris/ylyr8c.vf + RELOC/fonts/vf/arkandis/libris/ylyr8t.vf + RELOC/fonts/vf/arkandis/libris/ylyri8c.vf + RELOC/fonts/vf/arkandis/libris/ylyri8t.vf + RELOC/fonts/vf/arkandis/libris/ylyriw8t.vf + RELOC/fonts/vf/arkandis/libris/ylyrw8t.vf + RELOC/tex/latex/libris/libris.sty + RELOC/tex/latex/libris/t1yly.fd + RELOC/tex/latex/libris/t1ylyw.fd + RELOC/tex/latex/libris/ts1yly.fd + RELOC/tex/latex/libris/ts1ylyw.fd +catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm +catalogue-ctan /fonts/libris +catalogue-license gpl +catalogue-topics font font-type1 font-supp +catalogue-version 1.007 + +name lie-hasse +category Package +revision 53653 +shortdesc Draw Hasse diagrams +relocated 1 +longdesc This package draws Hasse diagrams of the partially ordered sets +longdesc of the simple roots of any complex simple Lie algebra. It uses +longdesc the Dynkin diagrams package dynkin-diagrams. +containersize 10712 +containerchecksum ecd15640967371587139b06241a7031e86b72a6855a762e90b5b96ffa629c520613fafa95f08f346bbca365ef4e2156b2d1db6051f5e065bfd94291d942b2a44 +doccontainersize 575492 +doccontainerchecksum e33467606f46bf04dc4b42820a1016a3da4222e17dc3ee0fd44290b6e8cd831ee8080beb3536a66f961406066884bffd1488b103ec2fd86c1bc01399b1879bfa +docfiles size=152 + RELOC/doc/latex/lie-hasse/README details="Readme" + RELOC/doc/latex/lie-hasse/lie-hasse.bib + RELOC/doc/latex/lie-hasse/lie-hasse.pdf details="Package documentation" + RELOC/doc/latex/lie-hasse/lie-hasse.tex +runfiles size=15 + RELOC/tex/latex/lie-hasse/lie-hasse.sty +catalogue-contact-home http://euclid.ucc.ie/Mckay/ +catalogue-ctan /graphics/pgf/contrib/lie-hasse +catalogue-license lppl1.3c +catalogue-topics diagram pgf-tikz +catalogue-version 1.0 + +name light-latex-make +category Package +revision 56513 +shortdesc llmk: A build tool for LaTeX documents +longdesc This program is yet another build tool specific for LaTeX +longdesc documents. Its aim is to provide a simple way to specify a +longdesc workflow of processing LaTeX documents and encourage people to +longdesc always explicitly show the right workflow for each document. +longdesc The main features of the executable llmk are all about the +longdesc above purpose. First, you can describe the workflows either in +longdesc an external file llmk.toml or in a LaTeX document source in the +longdesc form of magic comments. Further, multiple magic comment formats +longdesc can be used. Second, it is fully cross-platform. The only +longdesc requirement of the program is the texlua command; llmk provides +longdesc a uniform way to describe the workflows available for nearly +longdesc all TeX environments. Third, it behaves exactly the same in any +longdesc environment. At this point, llmk intentionally does not provide +longdesc any method for user configuration. Therefore one can guarantee +longdesc that for a LaTeX document with an llmk setup, the process of +longdesc typesetting the document will be reproduced in any TeX +longdesc environment with the program. +depend light-latex-make.ARCH +containersize 10432 +containerchecksum ef43711feb7a776c094dfb0fb87d8f1d64f30bb4f5872cd47ca9f9bcbe7aaea84158b54414ea6e3cfa6a8dc58035eadee7835d175b8a6829b5c7298c33723d26 +doccontainersize 178660 +doccontainerchecksum 5e25885e1a537a435b7e4d71969046918c0221741ff9d90adce0ac03f4ef3208e18af58dd007a95c62261ce4c2506724244d4a3706a0ec9c8c527a0596c0da05 +docfiles size=65 + texmf-dist/doc/man/man1/llmk.1 + texmf-dist/doc/man/man1/llmk.man1.pdf + texmf-dist/doc/support/light-latex-make/LICENSE + texmf-dist/doc/support/light-latex-make/README.md details="Readme" + texmf-dist/doc/support/light-latex-make/llmk-doc.cls + texmf-dist/doc/support/light-latex-make/llmk-logo-code.tex + texmf-dist/doc/support/light-latex-make/llmk-logo.png + texmf-dist/doc/support/light-latex-make/llmk.pdf details="Package documentation" + texmf-dist/doc/support/light-latex-make/llmk.tex +runfiles size=10 + texmf-dist/scripts/light-latex-make/llmk.lua +catalogue-alias llmk +catalogue-contact-bugs https://github.com/wtsnjp/llmk/issues +catalogue-contact-repository https://github.com/wtsnjp/llmk +catalogue-ctan /support/light-latex-make +catalogue-license mit +catalogue-topics comp-supp compilation use-lua +catalogue-version 0.2.0 + +name light-latex-make.aarch64-linux +category Package +revision 56352 +shortdesc aarch64-linux files of light-latex-make +containersize 348 +containerchecksum e49001bab8db3ccd2e48c4a65816d197cb042a1f6791398ecd7a739641c945e76ae3821f7eab128f4d2d6fb48ab58a7cff93a1e36b6f900b4b5ecda1570a1911 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/llmk + +name light-latex-make.amd64-freebsd +category Package +revision 56352 +shortdesc amd64-freebsd files of light-latex-make +containersize 352 +containerchecksum 4bf21b18f9404934f2087ca6a1db472c03d56373113444bf0b4b6b180e124736eb020c21df35390da50e794b5dc2288cc4432a514fbe9ed5bcde99bab241aa6e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/llmk + +name light-latex-make.amd64-netbsd +category Package +revision 56352 +shortdesc amd64-netbsd files of light-latex-make +containersize 352 +containerchecksum f9df894d5994b643f7c9ac1498bebf408c42181f421580a49850767d843dd0fa9875b0ac3da1ee896139ec8ef729985b029949bc62aa5878ec77e2427929fcda +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/llmk + +name light-latex-make.armhf-linux +category Package +revision 56352 +shortdesc armhf-linux files of light-latex-make +containersize 352 +containerchecksum 69d48626724175f8c2937472bf26a1cd3e7e9a0a542fd611d477612893971c62cbeef1fb06666d9429699d941e503c6a005d8826b5d07c9043596fcbbd43b497 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/llmk + +name light-latex-make.i386-cygwin +category Package +revision 56352 +shortdesc i386-cygwin files of light-latex-make +containersize 348 +containerchecksum 72ad7e1aa102c1273155e4a26df7c42a12224cf75734c5eb5464b210520261120586fbedf45fae30324f7843029b42654f2a94006de235d93b09f9cddbe9099c +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/llmk + +name light-latex-make.i386-freebsd +category Package +revision 56352 +shortdesc i386-freebsd files of light-latex-make +containersize 352 +containerchecksum e39f19e5f853e6a1a523898d8ba7584cd3711f83e16a0ba32cc765a095214cfdee730720c2141ef4cfeeb8122e8713d6298e0a5d1ea0551c66f9b15da4533d2a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/llmk + +name light-latex-make.i386-linux +category Package +revision 56352 +shortdesc i386-linux files of light-latex-make +containersize 348 +containerchecksum 42b7b7da40ea59c70daa1d999d623516ac94d91043779c79698f7b1b30116326eb3fbe5293581e8ff0233ccae23f97c67b802008fa49d3c91689701df4a66e98 +binfiles arch=i386-linux size=1 + bin/i386-linux/llmk + +name light-latex-make.i386-netbsd +category Package +revision 56352 +shortdesc i386-netbsd files of light-latex-make +containersize 348 +containerchecksum cf498db25a56c7c0ab242b2607662b7d117e0f1f49e7745490e4c2d5c6c7797876be43f9abb0ffa72eeb194740bdd56410539cf18e01dbe9ef465e842cb49c16 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/llmk + +name light-latex-make.i386-solaris +category Package +revision 56352 +shortdesc i386-solaris files of light-latex-make +containersize 352 +containerchecksum ac930198e6c9324e88b5a7f09dad8400b3ae09aa3e881307093825476072c8b39692eaa0610a1ca60f878c3e51f3a7db745eda70c77b425faf469a8b2609024f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/llmk + +name light-latex-make.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of light-latex-make +containersize 348 +containerchecksum e965b7f7aa9807e77b6db99acce0a2b6f1b72b35342233e2c6037574aab2be72d12f84ec53ce6724be8d6a514be6b65eb5f7db76e556c742fd8445e95cbd51f1 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/llmk + +name light-latex-make.win32 +category Package +revision 56352 +shortdesc win32 files of light-latex-make +containersize 688 +containerchecksum 3fb2e03fbdff6bfc5c482afe63f561714397ff061b06ab4ade267e2b24117ba5b44fe47fe524de20d5e4ad852cf02885bef8a26ae01ebfd6e7ac57103bfd6bdf +binfiles arch=win32 size=1 + bin/win32/llmk.exe + +name light-latex-make.x86_64-cygwin +category Package +revision 56352 +shortdesc x86_64-cygwin files of light-latex-make +containersize 348 +containerchecksum 571289b2e7cc206a4a9c6b41cb2699e56bd4c1392104546f85f86bf2edd2afe63cc8bc7be06a3c1187b1550f32f73b684c5d37a189533821eeb2c7a578f2888d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/llmk + +name light-latex-make.x86_64-darwinlegacy +category Package +revision 56352 +shortdesc x86_64-darwinlegacy files of light-latex-make +containersize 356 +containerchecksum f9e50ee61651da8be65af4da5f302801c87522d7469aad035f2233c0ff3e9dfc01a196280832ae5a26906129d4dec7e3c24d587a34fb4a0c704ffb7e5a5c40db +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/llmk + +name light-latex-make.x86_64-linux +category Package +revision 56352 +shortdesc x86_64-linux files of light-latex-make +containersize 352 +containerchecksum 97b8f506094e626eca0db811c2466bad9d4bfcec4dcb4b7d982bb54c2dd98c465d19edfb6b71752738bc84b2e4675880469c4532a8efd74d6d92e499be6f3041 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/llmk + +name light-latex-make.x86_64-linuxmusl +category Package +revision 56352 +shortdesc x86_64-linuxmusl files of light-latex-make +containersize 352 +containerchecksum 6b191f7b596c7e7e503c602371f179830b756f2ea8137acfe07610401745e36f4b01b76d8f87d712d52c94b621412b520377d5422616030843606030eb02544e +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/llmk + +name light-latex-make.x86_64-solaris +category Package +revision 56352 +shortdesc x86_64-solaris files of light-latex-make +containersize 348 +containerchecksum e6e9f263f9f33cc1050321ee64908dd81275ee38fe45dd2ca1afd3313dcc2bdaccbf9b340b6d3d5b279eaf45205167d1c0a20604d7fc32a3cc927f69cb9ed386 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/llmk + +name lilyglyphs +category Package +revision 56473 +shortdesc Access lilypond fragments and glyphs, in LaTeX +longdesc The package provides the means to include arbitrary elements of +longdesc Lilypond notation, including symbols from Lilypond's Emmentaler +longdesc font, in a LaTeX document. The package uses OpenType fonts, and +longdesc as a result must be compiled with LuaLaTeX or XeLaTeX. +depend lilyglyphs.ARCH +containersize 370160 +containerchecksum 2616757691d289e859fb2bc161c2a5b5312bb1cd824aa15854520e004a639e597f42515756b3cad383e4e33b3057a1579ff5c2ea7c39d8f9bf9d36e9c9b58b70 +doccontainersize 1152316 +doccontainerchecksum 4d9ac765c6a4b2b736d08569eeb6d0d8b168fe96563526264f2485d3d27a944a3e81c6144cd8f1d8cb5162d425b436fc688172db18b09610b3088df4ce868a27 +docfiles size=430 + texmf-dist/doc/latex/lilyglyphs/CHANGES.md + texmf-dist/doc/latex/lilyglyphs/INSTALL + texmf-dist/doc/latex/lilyglyphs/README details="Readme" + texmf-dist/doc/latex/lilyglyphs/README-scripts + texmf-dist/doc/latex/lilyglyphs/VERSION + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs-example-400.png + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs-example-600.png + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs-example-de.pdf + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs-example-de.tex + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs-example.pdf + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs-example.png + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs-example.tex + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs.pdf details="Package documentation" + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs.tex + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.pdf + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.png + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.tex + texmf-dist/doc/latex/lilyglyphs/documentation/lilyglyphs_private.zip + texmf-dist/doc/latex/lilyglyphs/documentation/resources/kerning-pairs.pdf + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-088c978c.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-1981c3c7.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-20e8632d.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-2abb8a04.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-2be182be.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-3b47d3fe.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-3f4afecc.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-40869867.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-5b13ce04.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-5c91a201.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-707477b7.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-76dbcd67.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-7fd84ff8.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-8155deab.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-8b332c94.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-8d82df0c.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-8d8bb8a3.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-907bc72d.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-a2bf82dd.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-ae3fd948.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-b3dc0958.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-b69af986.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-d9988a2c.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-dffaecd2.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lily-f4d0afc9.png + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lilyglyphsManualFonts.sty + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lilyglyphsStyle.sty + texmf-dist/doc/latex/lilyglyphs/documentation/resources/lilypond-manuals.css + texmf-dist/doc/latex/lilyglyphs/documentation/resources/scripts.pdf + texmf-dist/doc/latex/lilyglyphs/documentation/resources/test.pdf + texmf-dist/doc/latex/lilyglyphs/documentation/the-feta-font-2-18-0.html + texmf-dist/doc/latex/lilyglyphs/license/COPYING.LPPL + texmf-dist/doc/latex/lilyglyphs/license/MANIFEST + texmf-dist/doc/latex/lilyglyphs/license/license-preamble.inp +srccontainersize 139436 +srccontainerchecksum e0a1db8b5c4e57374ea19a7f8da3f4a89a2947869eba3f57411a9e815d645f4cb4200832276e3d3c869e2b3a8e3018e8e0f20f942f2396395b7739d7e9b23951 +srcfiles size=84 + texmf-dist/source/latex/lilyglyphs/fonts/README-emmentaler + texmf-dist/source/latex/lilyglyphs/fonts/emmentaler-2-18-0.zip + texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/_template.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/beamednotes.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/dynamicsigns.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/fancyexamples.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/score.ily + texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/singlenotes.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crescHairpin.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchet.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDotted.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDouble.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDoubleDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-decrescHairpin.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-fancyExample.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNote.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDotted.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDouble.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDoubleDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaver.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDotted.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDouble.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDdown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaver.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDotted.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDouble.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDoubleDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDown.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly + texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-twoBeamedQuavers.ly +runfiles size=526 + texmf-dist/fonts/opentype/public/lilyglyphs/FONTLOG + texmf-dist/fonts/opentype/public/lilyglyphs/LICENSE.OFL + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-11.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-13.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-14.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-16.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-18.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-20.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-23.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-26.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-brace.otf + texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py + texmf-dist/scripts/lilyglyphs/lily-image-commands.py + texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py + texmf-dist/scripts/lilyglyphs/lilyglyphs_common.py + texmf-dist/tex/latex/lilyglyphs/README-tex + texmf-dist/tex/latex/lilyglyphs/commands/README-commands + texmf-dist/tex/latex/lilyglyphs/commands/accidentals.inp + texmf-dist/tex/latex/lilyglyphs/commands/accordion.inp + texmf-dist/tex/latex/lilyglyphs/commands/beamednotes.inp + texmf-dist/tex/latex/lilyglyphs/commands/clefs.inp + texmf-dist/tex/latex/lilyglyphs/commands/dynamics.inp + texmf-dist/tex/latex/lilyglyphs/commands/fancyexamples.inp + texmf-dist/tex/latex/lilyglyphs/commands/noteheads.inp + texmf-dist/tex/latex/lilyglyphs/commands/numbers.inp + texmf-dist/tex/latex/lilyglyphs/commands/rests.inp + texmf-dist/tex/latex/lilyglyphs/commands/scripts.inp + texmf-dist/tex/latex/lilyglyphs/commands/singlenotes.inp + texmf-dist/tex/latex/lilyglyphs/commands/timesignatures.inp + texmf-dist/tex/latex/lilyglyphs/core/README-core + texmf-dist/tex/latex/lilyglyphs/core/dotted.inp + texmf-dist/tex/latex/lilyglyphs/core/genericAccess.inp + texmf-dist/tex/latex/lilyglyphs/core/keyval.inp + texmf-dist/tex/latex/lilyglyphs/core/opticals.inp + texmf-dist/tex/latex/lilyglyphs/lilyglyphs.sty + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-crescHairpin.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-crotchet.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-crotchetDotted.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-crotchetDottedDouble.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-crotchetDottedDoubleDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-crotchetDottedDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-crotchetDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-decrescHairpin.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-demisemiquaver.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-demisemiquaverDotted.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-demisemiquaverDottedDouble.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-demisemiquaverDottedDoubleDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-demisemiquaverDottedDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-demisemiquaverDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-fancyExample.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-halfNote.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-halfNoteDotted.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-halfNoteDottedDouble.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-halfNoteDottedDoubleDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-halfNoteDottedDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-halfNoteDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-quaver.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-quaverDotted.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-quaverDottedDouble.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-quaverDottedDoubleDdown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-quaverDottedDoubleDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-quaverDottedDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-quaverDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-semiquaver.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-semiquaverDotted.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-semiquaverDottedDouble.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-semiquaverDottedDoubleDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-semiquaverDottedDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-semiquaverDown.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-threeBeamedQuavers.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-threeBeamedQuaversI.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-threeBeamedQuaversII.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-threeBeamedQuaversIII.pdf + texmf-dist/tex/latex/lilyglyphs/pdfs/lily-twoBeamedQuavers.pdf +catalogue-also context-lilypond +catalogue-contact-repository https://github.com/uliska/lilyglyphs +catalogue-ctan /macros/unicodetex/latex/lilyglyphs +catalogue-license lppl1.3c +catalogue-topics font font-otf font-music music +catalogue-version 0.2.4 + +name lilyglyphs.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of lilyglyphs +containersize 404 +containerchecksum a5200b374de074f1e2d63198f9ecf360be654b601e0289fec9006805e9f82d257ca7199d044c5b2ffdd9c17aa5564d6aadf60a1ec85f15960f793d098b3ae4a8 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/lily-glyph-commands + bin/aarch64-linux/lily-image-commands + bin/aarch64-linux/lily-rebuild-pdfs + +name lilyglyphs.amd64-freebsd +category Package +revision 31696 +shortdesc amd64-freebsd files of lilyglyphs +containersize 404 +containerchecksum a2b3d005022db99e0aea3a91e3fe0871ebe455c086214bf13988afd10f486038beb5286082220d493313ab10c3e68672326cc93dd9f38c17730efdcd22495aa2 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/lily-glyph-commands + bin/amd64-freebsd/lily-image-commands + bin/amd64-freebsd/lily-rebuild-pdfs + +name lilyglyphs.amd64-netbsd +category Package +revision 31696 +shortdesc amd64-netbsd files of lilyglyphs +containersize 404 +containerchecksum 0063b43e5bf9d7bbb87a27a60bb37001ff4d5a30102d1d4dbf49e3fbe3eca657d6efe677e5959874e523794391fc94cef0aa39a69ac9916016dfc8669b661042 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/lily-glyph-commands + bin/amd64-netbsd/lily-image-commands + bin/amd64-netbsd/lily-rebuild-pdfs + +name lilyglyphs.armhf-linux +category Package +revision 31696 +shortdesc armhf-linux files of lilyglyphs +containersize 404 +containerchecksum f8a6eabed374f6448c1fd549301bec605f96c0c6e2e31271527faca577fb1d9b86068356aa07881c6e6cf9f517c25de1deac1d591b51e5db705f4082aa914daa +binfiles arch=armhf-linux size=3 + bin/armhf-linux/lily-glyph-commands + bin/armhf-linux/lily-image-commands + bin/armhf-linux/lily-rebuild-pdfs + +name lilyglyphs.i386-cygwin +category Package +revision 31696 +shortdesc i386-cygwin files of lilyglyphs +containersize 404 +containerchecksum 65a794e629817fb861f6f7798d9c1d02a7bfc3c1cc92ca706127363bfb7b155a96d1a70857cfcf7930d854be4df68381b4f6d0f1df6e34b00e8035631d9f45c0 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/lily-glyph-commands + bin/i386-cygwin/lily-image-commands + bin/i386-cygwin/lily-rebuild-pdfs + +name lilyglyphs.i386-freebsd +category Package +revision 31696 +shortdesc i386-freebsd files of lilyglyphs +containersize 404 +containerchecksum e06b480001d525e4cae20e3683ce54597f7e40a679edf4f74028d0cf71d57a82e2b8251a8843e37db269f67396c90f6e54d971d423256edb0668dcab62d5c5a2 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/lily-glyph-commands + bin/i386-freebsd/lily-image-commands + bin/i386-freebsd/lily-rebuild-pdfs + +name lilyglyphs.i386-linux +category Package +revision 31696 +shortdesc i386-linux files of lilyglyphs +containersize 404 +containerchecksum 5ad48d5b181e3fc95b97fce32da24b853859e938925943c73351eb5cf95df7b3f8af4af85fafe1d11daa4f58b347fd3e66e7432acdac4359e34c5cabd61523e9 +binfiles arch=i386-linux size=3 + bin/i386-linux/lily-glyph-commands + bin/i386-linux/lily-image-commands + bin/i386-linux/lily-rebuild-pdfs + +name lilyglyphs.i386-netbsd +category Package +revision 31696 +shortdesc i386-netbsd files of lilyglyphs +containersize 404 +containerchecksum a454ad99c48c161ee6d60f759aca7d553cb724116678808d0043aab7b66707fb32534fe79f5ac15f4568beb4fe0388f178204f4e6b7dc4dc6eb70d5b4dd92165 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/lily-glyph-commands + bin/i386-netbsd/lily-image-commands + bin/i386-netbsd/lily-rebuild-pdfs + +name lilyglyphs.i386-solaris +category Package +revision 31696 +shortdesc i386-solaris files of lilyglyphs +containersize 400 +containerchecksum ddd15685c4cebe98b78fa237bf3f91230aee7b5c9da91f7b44fa4729e4611da0329bcb580e2acc133cbd7ce8a663e8f29bd44e22617bbf512539d20e6614a0fc +binfiles arch=i386-solaris size=3 + bin/i386-solaris/lily-glyph-commands + bin/i386-solaris/lily-image-commands + bin/i386-solaris/lily-rebuild-pdfs + +name lilyglyphs.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of lilyglyphs +containersize 404 +containerchecksum 8371c559e268a2fdb3488dc1fa4a41e48281335133e4f2b1b67a4c5cf6e72391ff49cc58921beac12d78c329f137d61b14e389a831027d475c850765ba36695f +binfiles arch=universal-darwin size=3 + bin/universal-darwin/lily-glyph-commands + bin/universal-darwin/lily-image-commands + bin/universal-darwin/lily-rebuild-pdfs + +name lilyglyphs.win32 +category Package +revision 31696 +shortdesc win32 files of lilyglyphs +containersize 736 +containerchecksum b27fc290cd7bd198aa814ae3513ca849377cb76db2920d3b32e007d78b64e7e8af385e7a207558525948d382b670419e5156b02ba9fc4bc5516734732de66801 +binfiles arch=win32 size=3 + bin/win32/lily-glyph-commands.exe + bin/win32/lily-image-commands.exe + bin/win32/lily-rebuild-pdfs.exe + +name lilyglyphs.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of lilyglyphs +containersize 404 +containerchecksum 44c64b5b98d9b75ea56d32d722e34486f7d1a9cf1c572a57c12a4a8c755f83aa400d4bcf04501bae757635dfd00bd749adb3f53f7b4b20a84c113cfa16d56d63 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/lily-glyph-commands + bin/x86_64-cygwin/lily-image-commands + bin/x86_64-cygwin/lily-rebuild-pdfs + +name lilyglyphs.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of lilyglyphs +containersize 412 +containerchecksum 1ee5dd286264a85f5aa6793ff8868891aadcd67a2a9f0ec19689ad07804233b5d045f82e5b15a65157e4d03e8d8e24020a99aa11a3007b42c0066556a0c7c8af +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/lily-glyph-commands + bin/x86_64-darwinlegacy/lily-image-commands + bin/x86_64-darwinlegacy/lily-rebuild-pdfs + +name lilyglyphs.x86_64-linux +category Package +revision 31696 +shortdesc x86_64-linux files of lilyglyphs +containersize 404 +containerchecksum 1062cc314fc280c861d048eb04631e2148e3c45a4c2d86c47a9956f93f35e07d0319167c608e81bb78313f95fc0efb9995e4662d41a4fdbbb10f2e8c553e436a +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/lily-glyph-commands + bin/x86_64-linux/lily-image-commands + bin/x86_64-linux/lily-rebuild-pdfs + +name lilyglyphs.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of lilyglyphs +containersize 408 +containerchecksum 9599ff3f642f4897182924e02bb1c51eca3246e3c738f59515df5653dfb963ab0a74367e42a66d03de0a274ac2874aeac8dcb9098a4ca386338c7eb3e8c7b4e7 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/lily-glyph-commands + bin/x86_64-linuxmusl/lily-image-commands + bin/x86_64-linuxmusl/lily-rebuild-pdfs + +name lilyglyphs.x86_64-solaris +category Package +revision 31696 +shortdesc x86_64-solaris files of lilyglyphs +containersize 404 +containerchecksum 974ef7a2ff1fe230f18bb779558ad04cdde8772b9fb8a815f2656576fd47f85eb41bc09f42647dfb7446efc4b51e9d5f7e035ae8c29b059fb01e8e075aec6a71 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/lily-glyph-commands + bin/x86_64-solaris/lily-image-commands + bin/x86_64-solaris/lily-rebuild-pdfs + +name limap +category Package +revision 44863 +shortdesc Typeset maps and blocks according to the Information Mapping(r) method +relocated 1 +longdesc The Information Mapping(r) method provides a methodology for +longdesc structuring and presenting information. It claims to be useful +longdesc for readers who are more concerned about finding the right +longdesc information than reading the document as a whole. Thus short, +longdesc highly structured, and context free pieces of information are +longdesc used. A LaTeX style and a LaTeX class are provided. The style +longdesc contains definitions to typeset maps and blocks according to +longdesc the Information Mapping(r) method. The class provides all +longdesc definitions to typeset a whole document. +containersize 4524 +containerchecksum eae51f72a65d407b091244ed926ec98a7bf02ed8c360fcea2d614011555195992d315bb22b3697c8220f8e91f34a1c2f88092f34697dc9ac42f757e066198650 +doccontainersize 263404 +doccontainerchecksum 748504c008704d2aa1c763920c03c72372c89368e245fbf4172b442b6e9efe11b3754f37c37a864ab19301c8822aa31f0d25f80edbe26405c043aab8a0382739 +docfiles size=131 + RELOC/doc/latex/limap/Makefile + RELOC/doc/latex/limap/README.md details="Readme" + RELOC/doc/latex/limap/limap.pdf details="Package documentation" + RELOC/doc/latex/limap/lppl.txt + RELOC/doc/latex/limap/samples/boxed-toc.ltx + RELOC/doc/latex/limap/samples/boxed-toc.pdf + RELOC/doc/latex/limap/samples/hyper.ltx + RELOC/doc/latex/limap/samples/hyper.pdf + RELOC/doc/latex/limap/samples/nolines.ltx + RELOC/doc/latex/limap/samples/nolines.pdf + RELOC/doc/latex/limap/samples/sample.ltx + RELOC/doc/latex/limap/samples/sample.pdf +srccontainersize 18916 +srccontainerchecksum 2fd49d1313293fdda8726c84438a742095ef9a917369d8ac62d619507f540b4a9ced794472441f8d48edd5a5cc575ac2ac8ff43b3a50ccff70af0416808dd611 +srcfiles size=22 + RELOC/source/latex/limap/limap.dtx + RELOC/source/latex/limap/limap.ins +runfiles size=7 + RELOC/tex/latex/limap/limap.cls + RELOC/tex/latex/limap/limap.sty +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-license lppl1.3c +catalogue-topics struc-mkup class article-like report-like book-pub +catalogue-version 2.2 + +name limecv +category Package +revision 54329 +shortdesc A (Xe/Lua)LaTeX document class for curriculum vitae +relocated 1 +longdesc limecv is a (Xe/Lua)LaTeX document class to write curriculum +longdesc vitae. It is designed with the following design rules: simple, +longdesc elegant and clean. To this end, it offers several environments +longdesc and macros for convenience. +containersize 8180 +containerchecksum 90614eceacd921cfaaa60748ebd342eacc66f580879e0d2b03641b5c4b587e5559242c17240f248bd8ba227976d07a58553cc529bc6decfe40e8fcb3464669a0 +doccontainersize 377240 +doccontainerchecksum 53859b21cbb3786f84c5250a8decc225a5d7208cab54ade8de28026d7a47a38daa841b89bca76e2952240d05d91a63e6cbc8afe401adb721dfad9417e2369089 +docfiles size=122 + RELOC/doc/latex/limecv/LICENSE + RELOC/doc/latex/limecv/README.md details="Readme" + RELOC/doc/latex/limecv/examples/limecv-icon.pdf + RELOC/doc/latex/limecv/examples/mwe-latex.pdf + RELOC/doc/latex/limecv/examples/mwe-latex.tex + RELOC/doc/latex/limecv/examples/mwe-lualatex.pdf + RELOC/doc/latex/limecv/examples/mwe-lualatex.tex + RELOC/doc/latex/limecv/examples/mwe-xelatex.pdf details="Example of use" + RELOC/doc/latex/limecv/examples/mwe-xelatex.tex + RELOC/doc/latex/limecv/examples/picture.png + RELOC/doc/latex/limecv/limecv.pdf details="Package documentation" +srccontainersize 19496 +srccontainerchecksum e140a18b0c7956fda5bca6d75d0d4d89c7035f6cfe5cdf7245fbba47a095323813ca45ef5b9f5dfeb75e63e92cdd48e4003abd23666a8d70d8be8f3bc9a60e6e +srcfiles size=23 + RELOC/source/latex/limecv/limecv.dtx + RELOC/source/latex/limecv/limecv.ins +runfiles size=10 + RELOC/tex/latex/limecv/limecv.cls +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-license lppl1.3c +catalogue-topics cv class +catalogue-version 0.1.8 + +name linearA +category Package +revision 15878 +shortdesc Linear A script fonts +relocated 1 +longdesc The linearA package provides a simple interface to two fonts +longdesc which include all known symbols, simple and complex, of the +longdesc Linear A script. This way one can easily replicate Linear A +longdesc "texts" using modern typographic technology. Note that the +longdesc Linear A script has not been deciphered yet and probably never +longdesc will be deciphered. +execute addMap linearA.map +containersize 151816 +containerchecksum 5fc18101f389b2576b8e035e2f3bc79a37c11cdd64783df288f7776d1dc99ebc5c56a61d727de2dc57a9af4a4d0634b5ec6564513aea369fb1c8e4ce4eb407b5 +doccontainersize 165064 +doccontainerchecksum ca6749644b81bd4e6407acf0ea99f2de57a408b8fd332725dc8319888ae05e8e27cec2c3201c49e51f2cab22221ebabd8f980c627c7ce9f836bff2cb0a2cd575 +docfiles size=47 + RELOC/doc/fonts/linearA/README details="Readme" + RELOC/doc/fonts/linearA/linearA_glyphs.pdf details="Font samples" +srccontainersize 3804 +srccontainerchecksum ffbf77f9c3f97acc3bed0445dc3d7c92b9d4cd095e117a2f9ff1ba54cc1c3f96c734c1d22951fd520a194ca3f385504db06821a0797a4394079fb221d650fb7e +srcfiles size=8 + RELOC/source/fonts/linearA/linearA.dtx + RELOC/source/fonts/linearA/linearA.ins +runfiles size=53 + RELOC/fonts/afm/public/linearA/LinearA.afm + RELOC/fonts/afm/public/linearA/LinearACmplxSigns.afm + RELOC/fonts/map/dvips/linearA/linearA.map + RELOC/fonts/tfm/public/linearA/LinearA.tfm + RELOC/fonts/tfm/public/linearA/LinearACmplxSigns.tfm + RELOC/fonts/type1/public/linearA/LinearA.pfb + RELOC/fonts/type1/public/linearA/LinearACmplxSigns.pfb + RELOC/tex/latex/linearA/linearA.sty +catalogue-ctan /fonts/archaic/linearA +catalogue-license lppl +catalogue-topics font font-type1 font-archaic + +name linegoal +category Package +revision 21523 +shortdesc A "dimen" that returns the space left on the line +relocated 1 +longdesc The linegoal package provides a macro \linegoal to be used with +longdesc \setlength: \setlength<some dimen>\linegoal will set <some +longdesc dimen> to the horizontal length of the remainder of the line. +longdesc This is achieved using the \pdfsavepos primitive of pdfTeX, +longdesc through the zref-savepos package. Example: Some text: +longdesc \begin{tabularx}\linegoal{|l|X|} \hline one & two \\ three & +longdesc four \\\hline \end{tabularx} will position the table after the +longdesc initial text, and make the table fill the rest of the line. +containersize 1988 +containerchecksum 87a062513ff7674f315472cc46e13fbce99057c3b7083a2b9c93b92f09d538af29f5d1e3664dd5273080b9037ac232dc0d7491753b83136d2d3558ada1b81976 +doccontainersize 138308 +doccontainerchecksum 9c61ec4fa6bc63a57f7b272c7dfc55035e8e4f14225bbd2763157915fd351a2bb4f179150801f06682fd9bd59f756edbb127e7bd68592ffee5c1cfbac91b10a6 +docfiles size=48 + RELOC/doc/latex/linegoal/README details="Readme" + RELOC/doc/latex/linegoal/linegoal.pdf details="Package documentation" +srccontainersize 10356 +srccontainerchecksum 69133c573e53608e6b341abd7e745ba6b532eba05bb9a2ff2105bb9da69e31bf590fdc3f06241e5b667ec7f0c9458a908f5ad72304c7a5c9e412c0057611c5cc +srcfiles size=11 + RELOC/source/latex/linegoal/linegoal.drv + RELOC/source/latex/linegoal/linegoal.dtx + RELOC/source/latex/linegoal/linegoal.ins +runfiles size=1 + RELOC/tex/latex/linegoal/linegoal.sty +catalogue-ctan /macros/latex/contrib/linegoal +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 2.9 + +name lineno +category Package +revision 57866 +shortdesc Line numbers on paragraphs +relocated 1 +longdesc Adds line numbers to selected paragraphs with reference +longdesc possible through the LaTeX \ref and \pageref cross reference +longdesc mechanism. Line numbering may be extended to footnote lines, +longdesc using the fnlineno package. +containersize 62292 +containerchecksum be1b8112411650d579727b5f30b0f9cd2d716b43ef5039b6ebfdf6cd6f5b39d948dddb7f41531a91fc5df4bdfc51d2182d2bb99f1c22e3a88cb54d3364dcc5fc +doccontainersize 649996 +doccontainerchecksum 440a8d04ffb923991699c23cae01ac2c5bc5a050c9fe66c3893d50db2138b7b204ca649303be244a03cff46f9ab19750ea1f5233fb24c7918e631fd72baf827c +docfiles size=218 + RELOC/doc/latex/lineno/CHANGEs.txt + RELOC/doc/latex/lineno/COPYING.txt + RELOC/doc/latex/lineno/README + RELOC/doc/latex/lineno/README.txt details="Readme" + RELOC/doc/latex/lineno/SRCFILEs.txt + RELOC/doc/latex/lineno/fnlineno.pdf + RELOC/doc/latex/lineno/lineno.pdf details="Package documentation:" + RELOC/doc/latex/lineno/lnosuppl.pdf details="Supplementary files as PDF" + RELOC/doc/latex/lineno/ulineno.pdf details="User manual:" +srccontainersize 44284 +srccontainerchecksum 919c0b2b98257ab3106bbecd3c25c35c723e9d4105cef3cdc8dec0fde81fb82b9da7f53de81971a1ffd9f7d1d8b6f90bf2ba7035b88e0ade1bf9d04227d21ed0 +srcfiles size=40 + RELOC/source/latex/lineno/fnlineno.tex + RELOC/source/latex/lineno/lineno.tex + RELOC/source/latex/lineno/lnosuppl.tex + RELOC/source/latex/lineno/ulineno.tex +runfiles size=60 + RELOC/tex/latex/lineno/ednmath0.sty + RELOC/tex/latex/lineno/edtable.sty + RELOC/tex/latex/lineno/fnlineno.sty + RELOC/tex/latex/lineno/lineno.sty + RELOC/tex/latex/lineno/vplref.sty +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-license lppl +catalogue-topics typesetting line-nos +catalogue-version 4.41 + +name ling-macros +category Package +revision 42268 +shortdesc Macros for typesetting formal linguistics +relocated 1 +longdesc This package contains macros for typesetting glosses and formal +longdesc expressions. It covers a range of subfields in formal +longdesc linguistics. +containersize 5428 +containerchecksum 686dbb33df2670af909a80863943a8870ecef128679ab679f3d90d1747042b752c9aea15660c962b0f02418233d4d152e64357d5b57884a2fc2371acb3d90a52 +doccontainersize 306420 +doccontainerchecksum fe424a7db4be743168c4b1016fc25c95d33cf9d66767b39db0e79a5ba1bb667c76b9b5f10b23a08449362a3fef281d60f0b53e2b0f196846efe9f4765f3f08c6 +docfiles size=81 + RELOC/doc/latex/ling-macros/README.txt details="Readme" + RELOC/doc/latex/ling-macros/ling-macros-doc.pdf details="Package documentation" + RELOC/doc/latex/ling-macros/ling-macros-doc.tex +runfiles size=5 + RELOC/tex/latex/ling-macros/ling-macros.sty +catalogue-ctan /macros/latex/contrib/ling-macros +catalogue-license lppl1.3 +catalogue-topics linguistic + +name linguex +category Package +revision 30815 +shortdesc Format linguists' examples +relocated 1 +longdesc This bundle comprises two packages: The linguex package +longdesc facilitates the formatting of linguist examples, automatically +longdesc taking care of example numbering, indentations, indexed +longdesc brackets, and the '*' in grammaticality judgments. The ps-trees +longdesc package provides linguistic trees, building on the macros of +longdesc tree-dvips, but overcoming some of the older package's +longdesc shortcomings. +containersize 6924 +containerchecksum 36fab316a894029feba86bf771d4e600b3e7f5d766deb9d844605979b066483500c8fa0a425718d22e9a2bc14d74aada16ca8deb7ee744a81e18fee8c77a7b50 +doccontainersize 274676 +doccontainerchecksum 7a5d84d5425031d341deea8f37f1d8a9f6eaee820ef66661e8e38eafad2b20a5e9b04b81b1a0db0b11ab70fb0adc9c81cef886978626008eba6aa3c32bc0c848 +docfiles size=77 + RELOC/doc/latex/linguex/README + RELOC/doc/latex/linguex/linguex-doc.pdf details="Linguex manual" + RELOC/doc/latex/linguex/linguex-doc.tex + RELOC/doc/latex/linguex/ps-trees-doc.pdf details="PS-trees manual" + RELOC/doc/latex/linguex/ps-trees-doc.tex +runfiles size=8 + RELOC/tex/latex/linguex/linguex.sty + RELOC/tex/latex/linguex/linguho.sty + RELOC/tex/latex/linguex/ps-trees.sty +catalogue-ctan /macros/latex/contrib/linguex +catalogue-license lppl +catalogue-topics linguistic tree +catalogue-version 4.3 + +name linguisticspro +category Package +revision 54512 +shortdesc LinguisticsPro fonts with LaTeX support +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the LinguisticsPro family of fonts. This family is +longdesc derived from the Utopia Nova font family, by Andreas Nolda. +execute addMap LinguisticsPro.map +containersize 1395864 +containerchecksum 62085ea970d1cebc752cc5dab4b84487bd99e0e99fd48a2effa44fe9ae0bb86aa91966fd81639aea7d4364d3c3d97046affcf2693d8b4be8fa016e91014604c5 +doccontainersize 42252 +doccontainerchecksum 4ece804238885fb37505222218c92c923804d032e5e150de3cfadc62f0eec73e8acc47600ddc4d5af0f7bacf9f54254b6ead43a3f4a084aeb40dfe95b53d2965 +docfiles size=14 + RELOC/doc/fonts/linguisticspro/README details="Readme" + RELOC/doc/fonts/linguisticspro/SILOpenFontLicense.txt + RELOC/doc/fonts/linguisticspro/linguisticspro-samples.pdf details="Package documentation" + RELOC/doc/fonts/linguisticspro/linguisticspro-samples.tex +runfiles size=697 + RELOC/fonts/enc/dvips/linguisticspro/lnpr_2dchsz.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_2io6ub.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_2mzpfv.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_2sam6o.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_3ifnsw.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_4slpb2.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_5g7sdz.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_6eapwe.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_6ezgzr.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_7s35zn.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_bylpnz.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_c3wdkv.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_c5y55d.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_clyilc.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_ctp5bu.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_d5qjpp.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_ehss4d.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_elz76p.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_fxbwbp.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_i7qe4r.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_jlizdj.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_jvdtnb.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_klqkbd.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_mptstw.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_n5uv5s.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_n7rfoz.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_niynhd.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_o6z2fv.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_olwjlf.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_p6qnqd.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_pcxklf.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_pq5q4e.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_q4n4m4.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_qzkx3x.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_rozyzo.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_rqjpbq.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_rr27g2.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_rwq5kg.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_syddkj.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_t2hwm2.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_tdl523.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_usrmsl.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_vfi6fz.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_vycqam.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_waxsla.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_whgjeg.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_whn5dx.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_wo5mze.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_wsrlge.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_wsw7yh.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_xexdze.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_xr332d.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_xv6zbl.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_y6ghoo.enc + RELOC/fonts/enc/dvips/linguisticspro/lnpr_ydj4q2.enc + RELOC/fonts/map/dvips/linguisticspro/LinguisticsPro.map + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-Bold.otf + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-BoldItalic.otf + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-Italic.otf + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-Regular.otf + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-lf-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-osf-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-lf-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-osf-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-lf-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-osf-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-sc-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-lf-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-sc-ts3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-t3--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-t3.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-osf-ts3.tfm + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-Bold.pfb + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-BoldItalic.pfb + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-Italic.pfb + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-Regular.pfb + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-lf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-lf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-lf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-osf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-osf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-osf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-lf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-osf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-lf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-lf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-lf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-osf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-osf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-osf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-lf-sc-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-lf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-lf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-lf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-osf-sc-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-osf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-osf-t3.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-osf-ts1.vf + RELOC/tex/latex/linguisticspro/LGRLinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/LGRLinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/LY1LinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/LY1LinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/OT1LinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/OT1LinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/T1LinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/T1LinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/T2ALinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/T2ALinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/T2BLinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/T2BLinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/T2CLinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/T2CLinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/T3LinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/T3LinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/TS1LinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/TS1LinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/TS3LinguisticsPro-LF.fd + RELOC/tex/latex/linguisticspro/TS3LinguisticsPro-OsF.fd + RELOC/tex/latex/linguisticspro/linguisticspro.sty +catalogue-contact-home https://www.fontsquirrel.com/fonts/linguistics-pro +catalogue-ctan /fonts/linguisticspro +catalogue-license lppl ofl +catalogue-topics font font-serif font-proportional font-body font-multilingual font-greek font-cyrillic font-otf font-type1 font-supp font-t1enc + +name linop +category Package +revision 41304 +shortdesc Typeset linear operators as they appear in quantum theory or linear algebra +relocated 1 +longdesc This small package aims to provide two simple commands and many +longdesc options to easily write linear operators as they appear in +longdesc many-body physics, quantum theory, and linear algebra, in any +longdesc of the ways commonly in use. +containersize 1376 +containerchecksum ba0c5e053399c44203d6eff42252854a16ccbf12132ee6e26fa577587554234b36ed31a63f1a6c40059e0aab8d9367a5b6aa6f34d552d64866b46e68478c36b4 +doccontainersize 226748 +doccontainerchecksum e63f09e370a53dadc92591d105c677f2a5eea4cbcbc4e3133448df64b10abf2eae1d76cdeed5e288f610be13eb4baf8f248a6e9df92ab79066078ee165b9fdc8 +docfiles size=63 + RELOC/doc/latex/linop/README.md details="Readme" + RELOC/doc/latex/linop/compact.png + RELOC/doc/latex/linop/linop.pdf details="Package documentation" + RELOC/doc/latex/linop/linop.tex +runfiles size=1 + RELOC/tex/latex/linop/linop.sty +catalogue-ctan /macros/latex/contrib/linop +catalogue-license lppl1.3 +catalogue-topics maths physics +catalogue-version 0.1 + +name lion-msc +category Package +revision 55415 +shortdesc LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of Physics (LION) +relocated 1 +longdesc LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of +longdesc Physics (LION). The purpose of this class is twofold: It +longdesc creates a uniform layout of the student theses from our +longdesc department. More importantly it contains several fields on the +longdesc front-page that the user needs to fill that are used in the +longdesc university administration (name, student number and name of +longdesc supervisor). Students are free to change the layout of the text +longdesc but should leave the title page as it is. +containersize 45376 +containerchecksum 8eed5de445edcd936654a9d7ef8e227d43b479f39279025115fd8586cb7fa107dbacd8c7272e868eb11de0e320740fb8dc5c1fd26327fc6e8394c8924ff37cf0 +doccontainersize 1464640 +doccontainerchecksum 87d5b7e8fec95c857f6c45aeeab3cd6eb70e9b7a237eea3b5a4deb8e92ec8ddd5a381c88ae4919bc1841df15a4b93a569a996ed032cf2b0b7a5bb088c779e873 +docfiles size=442 + RELOC/doc/latex/lion-msc/4photon.bib + RELOC/doc/latex/lion-msc/AlexanderPRA.tex + RELOC/doc/latex/lion-msc/Fig1.png + RELOC/doc/latex/lion-msc/Fig2.png + RELOC/doc/latex/lion-msc/Fig3a.png + RELOC/doc/latex/lion-msc/Fig3b.png + RELOC/doc/latex/lion-msc/Fig4.png + RELOC/doc/latex/lion-msc/README.md details="Readme" + RELOC/doc/latex/lion-msc/lion-msc.layout + RELOC/doc/latex/lion-msc/lion-msc.pdf details="Package documentation" + RELOC/doc/latex/lion-msc/lion-msc.tex + RELOC/doc/latex/lion-msc/minimal.pdf + RELOC/doc/latex/lion-msc/minimal.tex +runfiles size=20 + RELOC/bibtex/bst/lion-msc/lion-msc.bst + 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-license lppl1.3 +catalogue-topics class dissertation +catalogue-version 0.30 + +name lipsum +category Package +revision 58123 +shortdesc Easy access to the Lorem Ipsum dummy text +relocated 1 +longdesc This package gives you easy access to the Lorem Ipsum dummy +longdesc text; an option is available to separate the paragraphs of the +longdesc dummy text into TeX-paragraphs. All the paragraphs are taken +longdesc with permission from http://lipsum.com/. +containersize 75536 +containerchecksum 6d93dbb16d94f7aa199e59b85096583a9e8e7a07b107bbfe1e0be7615717c29d94ecfd308c4adf462062251adb03b171a332cd688425f6854ce442c390c47396 +doccontainersize 808520 +doccontainerchecksum 6d7e7f8037cebffac9a3725b5a7b32eefcb458ebd86cbc9b0380d05d2b1926c3a70e7032629ffd4bede5102c3a36d84e1b2bd21d2b7f9b3e9c642390822fbffa +docfiles size=200 + RELOC/doc/latex/lipsum/README.txt details="Readme" + RELOC/doc/latex/lipsum/lipsum.pdf details="Package documentation" +srccontainersize 86992 +srccontainerchecksum b2f55edabef986f5e792509c6db58f89f2bfc816cb07968e21f49308df4fb37836798f28d84a91b6020b6003b441e697800c2087b9e3549b2dee3cd1a393c5f2 +srcfiles size=77 + RELOC/source/latex/lipsum/lipsum.dtx + RELOC/source/latex/lipsum/lipsum.ins +runfiles size=65 + RELOC/tex/latex/lipsum/cicero.ltd.tex + RELOC/tex/latex/lipsum/lipsum.ltd.tex + RELOC/tex/latex/lipsum/lipsum.sty +catalogue-also blindtext kantlipsum +catalogue-contact-bugs https://github.com/PhelypeOleinik/lipsum/issues +catalogue-contact-repository https://github.com/PhelypeOleinik/lipsum +catalogue-ctan /macros/latex/contrib/lipsum +catalogue-license lppl1.3 +catalogue-topics macro-supp dummy-gen +catalogue-version 2.3 + +name lisp-on-tex +category Package +revision 38722 +shortdesc Execute LISP code in a LaTeX document +relocated 1 +longdesc The package provides a LISP interpreter written using TeX +longdesc macros; it is provided as a LaTeX package. The interpreter +longdesc static scoping, dynamic typing, and eager evaluation. +containersize 13164 +containerchecksum 67817d9894ac5bc8d456ce2b114eba81b0c444bf53422c4acb5066b42cd5cd55d73c46fb2b443db9fe3b13bebb58d6fd7f2bb31686dc4ac2295447285295c602 +doccontainersize 142988 +doccontainerchecksum fb3a8ef4ada38d910b3055f408059daf700946c84b17873846175e6cd3075ad7f3889d2af154adc3a7898ac33646251bdbe0d8cda17ccf354dee526a96476432 +docfiles size=47 + RELOC/doc/latex/lisp-on-tex/LICENSE + RELOC/doc/latex/lisp-on-tex/README.md details="Readme" + RELOC/doc/latex/lisp-on-tex/examples/div2.pdf + RELOC/doc/latex/lisp-on-tex/examples/div2.tex + RELOC/doc/latex/lisp-on-tex/examples/fact.pdf + RELOC/doc/latex/lisp-on-tex/examples/fact.tex + RELOC/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.pdf + RELOC/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.tex + RELOC/doc/latex/lisp-on-tex/examples/nqueen.pdf + RELOC/doc/latex/lisp-on-tex/examples/nqueen.tex + RELOC/doc/latex/lisp-on-tex/examples/repl.tex + RELOC/doc/latex/lisp-on-tex/examples/rocket.pdf + RELOC/doc/latex/lisp-on-tex/examples/rocket.tex + RELOC/doc/latex/lisp-on-tex/examples/showfont.pdf + RELOC/doc/latex/lisp-on-tex/examples/showfont.tex +runfiles size=22 + RELOC/tex/latex/lisp-on-tex/lisp-arith.sty + RELOC/tex/latex/lisp-on-tex/lisp-gc.sty + RELOC/tex/latex/lisp-on-tex/lisp-latexutil.sty + RELOC/tex/latex/lisp-on-tex/lisp-mod-fpnum.sty + RELOC/tex/latex/lisp-on-tex/lisp-mod-l3regex.sty + RELOC/tex/latex/lisp-on-tex/lisp-on-tex.sty + RELOC/tex/latex/lisp-on-tex/lisp-prim.sty + RELOC/tex/latex/lisp-on-tex/lisp-read.sty + RELOC/tex/latex/lisp-on-tex/lisp-simple-alloc.sty + 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-license bsd +catalogue-topics exec-foreign +catalogue-version 2.0 + +name listbib +category Package +revision 29349 +shortdesc Lists contents of BibTeX files +longdesc Generates listings of bibliographic data bases in BibTeX format +longdesc -- for example for archival purposes. Included is a listbib.bst +longdesc which is better suited for this purpose than the standard +longdesc styles. +depend listbib.ARCH +containersize 21348 +containerchecksum e71bda783acbb8ab6ccab3d8af535034caf0eea919bbd175685fe50585970b87613e0df5ed076967aca395cd8c7f1317e805fb1cf765897b03d6cc131d3d98b8 +doccontainersize 332236 +doccontainerchecksum 0ec0970f591fd3a840c27730d41f0b817f631727c9c7219880b45209c21fe0d3aa616eb6eb94bc7016a9acabfe9c50846d872d3b36a104e1f4eb74dd003a16d3 +docfiles size=87 + texmf-dist/doc/latex/listbib/listbib-doc.pdf details="Package documentation" +srccontainersize 14012 +srccontainerchecksum 441b13ec75d91c68b8e7253a5dc9a6e515c5bb0df81a4784dd414b1956be6f2c9189051ae9090a04bd4d11919945a38ad6563f41c27d1b8d03ad283f71c9a19d +srcfiles size=13 + texmf-dist/source/latex/listbib/listbib-doc.drv + texmf-dist/source/latex/listbib/listbib.drv + texmf-dist/source/latex/listbib/listbib.dtx + texmf-dist/source/latex/listbib/listbib.ins +runfiles size=22 + texmf-dist/bibtex/bst/listbib/listbib.bst + texmf-dist/scripts/listbib/listbib + texmf-dist/tex/latex/listbib/listbib.cfg + texmf-dist/tex/latex/listbib/listbib.sty + texmf-dist/tex/latex/listbib/listbib.tex +catalogue-also biblist +catalogue-ctan /macros/latex/contrib/listbib +catalogue-license gpl +catalogue-topics bibtex-util +catalogue-version 2.2 + +name listbib.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of listbib +containersize 340 +containerchecksum abca96d626e6fec49fa5954e866797c7401820622c494f5c14995f43e4ce5a365d5a543e6f82182f8466d842d550ca088d4f1dfdc84c6b41d3f898d3efec6d10 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/listbib + +name listbib.amd64-freebsd +category Package +revision 26126 +shortdesc amd64-freebsd files of listbib +containersize 340 +containerchecksum 6cc2bf085862e4e07b92cb28b781e93cf08a358ad7ecbba968119d69a3489d16a348ffd8cee96fa2aea51cd2cff70d2ae8146183e330850408a7dcc33cfd8bad +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/listbib + +name listbib.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of listbib +containersize 336 +containerchecksum 5bb93c1cf4caaffb2feac9a0ab5832c60f99ea9b5b5a655e25207ac11b29d925e0932c08102dd4fb8a355c54968a1142dccd4543b1d4ed233339dd26acc20974 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/listbib + +name listbib.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of listbib +containersize 340 +containerchecksum b19ca72dd2069f64a48c7bdaca8c32c83569ddf7081cfdb66ce362545130cbf9a37c53384c777c5cbdad61ee10c14e0a5a93a7afb86f4eb3af5ae786681853d8 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/listbib + +name listbib.i386-cygwin +category Package +revision 26126 +shortdesc i386-cygwin files of listbib +containersize 336 +containerchecksum 1df42825226c3f3ac8fed15a36b35b3d22c9db086978242cbcb78227c970c58eeacb3d35eedf51bf3fddeb8dfa5b5c31383f47970087998d28a02a95b69097ed +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/listbib + +name listbib.i386-freebsd +category Package +revision 26126 +shortdesc i386-freebsd files of listbib +containersize 340 +containerchecksum 51cb34bd0067d82a7c1cc92c19a35ec9f44776a6a06628406e83735e0fb56091c2e3d7d98ec023313a59ba2867715a44722857b0b54259daeae9012d6484503c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/listbib + +name listbib.i386-linux +category Package +revision 26126 +shortdesc i386-linux files of listbib +containersize 336 +containerchecksum 9f05b1008794bfb4c18a296e7b0058bb8ebac921568b2a2980fb74f992867b68d533e8ba8a66b3503c24fe434e93f5671fcf9f45ccfe54064443390c881d1172 +binfiles arch=i386-linux size=1 + bin/i386-linux/listbib + +name listbib.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of listbib +containersize 336 +containerchecksum 9eba071267d485cb612a22347e77f4487d6c8eed6231829cbebbb4de16999d3f9715f411ffa91f02ca47b401c1eb9b28367412674a8b7685130ac3adb7915b88 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/listbib + +name listbib.i386-solaris +category Package +revision 26126 +shortdesc i386-solaris files of listbib +containersize 336 +containerchecksum d8478c54609efed39b74e8496fd22906844e0b5d926638a4a273e00ff540c9ce1d33519d7167130e46eb3ae31972188457a7d7703da5cc48af5eda9a8e77ba23 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/listbib + +name listbib.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of listbib +containersize 340 +containerchecksum bf423fa0219ca6c6f156aa9c1cf6c815234e3d72180185eaba4b786757d06235893dbcd2d0494c1807c9d0c1a1d2355d03eb4a769c67ae339692351942332fe7 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/listbib + +name listbib.win32 +category Package +revision 26126 +shortdesc win32 files of listbib +containersize 684 +containerchecksum 3560ce0556b5a8f066a8975373e68cbc9ea1d611002e32f23994acacc27e60c6a3481af035bb2c01625150417f7dc7e826360ed0fd5311613ffe7d50bdb1f32f +binfiles arch=win32 size=1 + bin/win32/listbib.exe + +name listbib.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of listbib +containersize 340 +containerchecksum 07e253f5d3eda53b9d7d895dba016121cfbb59fe3280361c642256afb70b06b1f2d7597c7c51ac9280675dc9e848a196f203f0ea8325fb4aa1adeee272c6f432 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/listbib + +name listbib.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of listbib +containersize 348 +containerchecksum d4e755bb806dde5a2ed5f700f9b150525a39247d4a27cd0617eac0893dd211a26ba5fcefbe33cfee548644a8c9bfbcd71dcb938587cbb2d01c4c8741e0aa2176 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/listbib + +name listbib.x86_64-linux +category Package +revision 26126 +shortdesc x86_64-linux files of listbib +containersize 336 +containerchecksum 8f10bcb3425cc8f12bef08f7d13d1ddb9ce2fae6275e14cfda204affbb25347246630a355413c03dedc3cd39f2e8dbf1ab5051f70b9b027d92c41a457a0ceed0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/listbib + +name listbib.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of listbib +containersize 340 +containerchecksum 0a52a51bf78fc77629f0d02fd846d72e0a6c3004bfd20b23160976322c649df1fc61270d908089762d6d1de272dfb3af829bbb229908535f74d19ac61886c1cb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/listbib + +name listbib.x86_64-solaris +category Package +revision 26126 +shortdesc x86_64-solaris files of listbib +containersize 340 +containerchecksum cf66d179f32992ed024d150bde0d745563f31d833fe783edc1f61a7a205952463621ce28ce5d4a7fd665e73b6f6fdbcb294360e8e0094ef6dc81d852041adcff +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/listbib + +name listing +category Package +revision 17373 +shortdesc Produce formatted program listings +relocated 1 +longdesc The listing environment is provided and is similar to figure +longdesc and table, although it is not a floating environment. Includes +longdesc support for \caption, \label, \ref, and introduces +longdesc \listoflistings, \listingname, \listlistingname. It produces a +longdesc .lol file. It does not change \@makecaption (unless the option +longdesc bigcaptions is used), so packages that change the layout of +longdesc \caption still work. +containersize 1968 +containerchecksum 154a9eb9da19d4a1d9f6ed421bc13f1f83279cd456b95ab8b7d84f9c48d6aae5548b7357e46041580d4b457758aa090e6352aca9d9e20f1739dc589d4fa24bdd +doccontainersize 259240 +doccontainerchecksum 11ef594d55ee823dab2a88ad5882e1ea89d7741f1038d3782ac43fa43cce948c1ed72096ddd11d1efbcc3b43ac9bc4dd23713f725aa71807ea174548d9a5c968 +docfiles size=66 + RELOC/doc/latex/listing/listing.pdf details="Package documentation" + RELOC/doc/latex/listing/listing.tex +runfiles size=1 + RELOC/tex/latex/listing/listing.sty +catalogue-also listings +catalogue-ctan /macros/latex/contrib/listing +catalogue-license lppl +catalogue-topics listing +catalogue-version 1.2 + +name listings +category Package +revision 55265 +shortdesc Typeset source code listings using LaTeX +relocated 1 +longdesc The package enables the user to typeset programs (programming +longdesc code) within LaTeX; the source code is read directly by TeX--no +longdesc front-end processor is needed. Keywords, comments and strings +longdesc can be typeset using different styles (default is bold for +longdesc keywords, italic for comments and no special style for +longdesc strings). Support for hyperref is provided. To use, +longdesc \usepackage{listings}, identify the language of the object to +longdesc typeset, using a construct like: \lstset{language=Python}, then +longdesc use environment lstlisting for inline code. External files may +longdesc be formatted using \lstinputlisting to process a given file in +longdesc the form appropriate for the current language. Short (in-line) +longdesc listings are also available, using either \lstinline|...| or +longdesc |...| (after defining the | token with the \lstMakeShortInline +longdesc command). +containersize 146224 +containerchecksum b9e3dc1a3394305803007927e2b9d446801d59bb7b8a62d4fa757b7d42b56c27dcf9ebaf6ee1fb1e7d8e437182df9fbbbcbd7ceb8f42db7d1999cbcd6b9d6f6e +doccontainersize 2163008 +doccontainerchecksum 0a19a7148ec9f902e7eccb3d65724db899e030d326dd0291ed9fd15a540dcf4e3e61a15576fbb16ebb6736751b484356aa78785108aae44f866de97f56d34b09 +docfiles size=604 + RELOC/doc/latex/listings/README details="Package Readme" + RELOC/doc/latex/listings/listings-devel.pdf + RELOC/doc/latex/listings/listings.pdf details="Package documentation" + RELOC/doc/latex/listings/lstdrvrs.pdf details="Language drivers details" +srccontainersize 267480 +srccontainerchecksum be76355265cfb208ca069d79ae598fd317b6fe3cc1d81f0ce02e4154e3c03c2b298ec91e8e95cede3a8bf301ae1b6156cb42740e38e138c66b451f561ea49073 +srcfiles size=275 + RELOC/source/latex/listings/Makefile + RELOC/source/latex/listings/listings.dtx + RELOC/source/latex/listings/listings.ins + RELOC/source/latex/listings/lstdrvrs.dtx + RELOC/source/latex/listings/lstdrvrs.ins + RELOC/source/latex/listings/ltxdoc.cfg +runfiles size=145 + RELOC/tex/latex/listings/listings-acm.prf + RELOC/tex/latex/listings/listings-bash.prf + RELOC/tex/latex/listings/listings-fortran.prf + RELOC/tex/latex/listings/listings-hansl.prf + RELOC/tex/latex/listings/listings-lua.prf + RELOC/tex/latex/listings/listings-python.prf + RELOC/tex/latex/listings/listings.cfg + RELOC/tex/latex/listings/listings.sty + RELOC/tex/latex/listings/lstdoc.sty + RELOC/tex/latex/listings/lstlang1.sty + RELOC/tex/latex/listings/lstlang2.sty + RELOC/tex/latex/listings/lstlang3.sty + RELOC/tex/latex/listings/lstmisc.sty +catalogue-also listing +catalogue-ctan /macros/latex/contrib/listings +catalogue-license lppl1.3c +catalogue-topics listing synt-hlt macro-demo +catalogue-version 1.8d + +name listings-ext +category Package +revision 29349 +shortdesc Automated input of source +longdesc The package provides a means of marking a source, so that +longdesc samples of it may be included in a document (by means of the +longdesc listings package) in a stable fashion, regardless of any change +longdesc to the source. The markup in the source text defines tags for +longdesc blocks of source. These tags are processed by a shell script to +longdesc make a steering file that is used by the package when LaTeX is +longdesc being run.y +depend listings-ext.ARCH +containersize 4856 +containerchecksum c68752d0e7a1ffb7d08f153bf337849164d0287f20ff8f092635ad7083b2e5a6c487bcd9dff913dd029f4ea92750768d23583eed53a0c2d3bf012e4db059708c +doccontainersize 103704 +doccontainerchecksum 82491f81dfc89950d085f7cc41dabdf7b895b23c8a69f80c1b4f4c420fe8f036ac181b56e3ab60496910d0f1165ce19b2f94c5e268dc1d59e352ab6747e3bee5 +docfiles size=48 + texmf-dist/doc/latex/listings-ext/README details="Readme" + texmf-dist/doc/latex/listings-ext/THIS_IS_VERSION_v67 + texmf-dist/doc/latex/listings-ext/getversion.tex + texmf-dist/doc/latex/listings-ext/hyperref.cfg + texmf-dist/doc/latex/listings-ext/listings-ext.bib + texmf-dist/doc/latex/listings-ext/listings-ext.el + texmf-dist/doc/latex/listings-ext/listings-ext.makemake + texmf-dist/doc/latex/listings-ext/listings-ext.mk + texmf-dist/doc/latex/listings-ext/listings-ext.pdf details="Package documentation" + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_a.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_b.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_c.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_d.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java + texmf-dist/doc/latex/listings-ext/listings-ext_test_a.tex + texmf-dist/doc/latex/listings-ext/listings-ext_test_d.tex + texmf-dist/doc/latex/listings-ext/listings.cfg +srccontainersize 22652 +srccontainerchecksum fab34f07d6384a5474f3ac30e2e00a75398418668134ac1041cabded6209c9521244e1637e4037e7346bc70b3247ebcd90526d5e34fc3c4e388fa978382bf228 +srcfiles size=21 + texmf-dist/source/latex/listings-ext/listings-ext.dtx + texmf-dist/source/latex/listings-ext/listings-ext.ins +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-license lppl1.2 +catalogue-topics listing +catalogue-version 67 + +name listings-ext.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of listings-ext +containersize 348 +containerchecksum 9ad6b78ddb87f51cad45c81c9b56932317377ea5505c375cadbe98eb9daffb307af92ca12bc9fc4c2cc0ad95672352be770fc8e23960a82d3d56fcc4c30bcb66 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/listings-ext.sh + +name listings-ext.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of listings-ext +containersize 348 +containerchecksum b80dfc71414939ad42dda24f42673015c947b1a8cba739e51a04705a5dfa87a55b3c3add4a426cd3d5c268c1692f4658741cffc71b2023b6a82b0128f3fba3b0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/listings-ext.sh + +name listings-ext.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of listings-ext +containersize 344 +containerchecksum ce53c3548c196b33bcdf4f901ee8571c3d7c9a01f8af6c6d7617050a3d73ed15f6bf43e2e86d92d8ffb4386b2dafb252e8d230090dabba93f80c42553a7b48f9 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/listings-ext.sh + +name listings-ext.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of listings-ext +containersize 344 +containerchecksum ccf346eccda0dbaaf893accd61f362fdfcafbe9dfbb34535cd8f7a2c72456b8f03a89233a4b372fe1c900eeefd68f0251461444d38f89ced7e1bb480906bc511 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/listings-ext.sh + +name listings-ext.i386-cygwin +category Package +revision 15093 +shortdesc i386-cygwin files of listings-ext +containersize 344 +containerchecksum ef158c9ae28ee5c32268bb332b6d14907fa3aa34e9f458b667720713f0a76e374ef1ac72d46189649a1f8129b0ad05017b8a8b683d85290f6bcee12c3bdd5bed +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/listings-ext.sh + +name listings-ext.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of listings-ext +containersize 344 +containerchecksum f61b8b153ad174c88cd856357dae2195980f32f694b02fdc0bf8d739d81df25c72e692990625931f9f6e9918e2c479032142faf2ae3bff1cb5ed39e72c010f25 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/listings-ext.sh + +name listings-ext.i386-linux +category Package +revision 15093 +shortdesc i386-linux files of listings-ext +containersize 344 +containerchecksum 382fb61532b3c86a8fe94d4d3487c9f4bb53f3989f9b3a068761b0927e763dd555c8cb48cfd60ea6f6d91309c46a8ab3fedc849f9e482c86bcba23a5ffb89f3c +binfiles arch=i386-linux size=1 + bin/i386-linux/listings-ext.sh + +name listings-ext.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of listings-ext +containersize 344 +containerchecksum b989452f6a89536bd223f0d343b3a8cbd3561635ec1628fa1c75a6d0d66cb6b489a9296f2173b6047353470c9ba334aab8c1ce351ea542f4dce049b6eb339b64 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/listings-ext.sh + +name listings-ext.i386-solaris +category Package +revision 15093 +shortdesc i386-solaris files of listings-ext +containersize 344 +containerchecksum d5dcb1bc9bca0931832d6d7ab6c6452499dfe53ec7d31cf4a883221f113ac157d46672ea395e7720b5e83c8ea4223ed1397f53576ffaaa0420f34acc366aab0d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/listings-ext.sh + +name listings-ext.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of listings-ext +containersize 344 +containerchecksum 6b2d8ebabb2ea9f76f4d47a7928b63788560caf85da8bd30f659c0173ba940faea0b1d3613720b3570e31354c62729f98b12af910ef626f84dc3fc9d3aac4800 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/listings-ext.sh + +name listings-ext.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of listings-ext +containersize 344 +containerchecksum 55385dec2cd06b98e0f7bf336bf4a1e7d7852e83b559e4e50bf92d33fca5be354254e686a82655ccddf5cd62e1e752b3ecd3b32d9cc5a624d60be5332b7668e7 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/listings-ext.sh + +name listings-ext.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of listings-ext +containersize 352 +containerchecksum acb898dce5b2dabba230f3035259bf9495e05fe979534f4073083c2f7004d83fc206749498364db8f6445709218fabbbb9fb76adc01f65e26253e837192a8a0f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/listings-ext.sh + +name listings-ext.x86_64-linux +category Package +revision 15093 +shortdesc x86_64-linux files of listings-ext +containersize 344 +containerchecksum 0bedc989d08718d49eac6f7557ec3b3e6737d1cc40f458fdf07cd207ab100800bb1370da3d300edc6653ff11a7f19b1fd95747eaeda09e1043377c7a161cf00c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/listings-ext.sh + +name listings-ext.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of listings-ext +containersize 348 +containerchecksum 4f0908c6b6734ebc6eab54155d22d6be930bdf8cc803f3c1bfc6b1b4b96baf9cc33b7ab074c758f1e3d8d0882fbe0c1c3b8f2060c0dfd80ef7f22bb077ad2ebd +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/listings-ext.sh + +name listings-ext.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of listings-ext +containersize 344 +containerchecksum 955c0a92f70eb43883ee0adec5f8c3f1990f8552f89a9dede9ee9ca58afaa737aa6ef81133a19d07db326bf6677c176788093270a10d0986be4040d3823a8a1a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/listings-ext.sh + +name listingsutf8 +category Package +revision 53097 +shortdesc Allow UTF-8 in listings input +relocated 1 +longdesc Package listings does not support files with multi-byte +longdesc encodings such as UTF-8. In the case of \lstinputlisting, a +longdesc simple workaround is possible if a one-byte encoding exists +longdesc that the file can be converted to. The package requires the +longdesc e-TeX extensions under pdfTeX (in either PDF or DVI output +longdesc mode). +containersize 2264 +containerchecksum 846cc046ced340cafd98f009a55e891bfa6bd5715c94c0dbd5b124599c8e3aed1f248f56592795184fa040285001b0d967dfb26b0fb764bdfadcc2eabe8c3122 +doccontainersize 299004 +doccontainerchecksum fd15657a8c7e8af4d21721f64ee0c2a77606d965698fdfeb581116f3b13dbf95bf774b77f019bef4cdb4565cd1957cf040818b1d9f78425eecfccc48ab6c5e28 +docfiles size=75 + RELOC/doc/latex/listingsutf8/README.md + RELOC/doc/latex/listingsutf8/listingsutf8.pdf details="Package documentation" language="en" +srccontainersize 5628 +srccontainerchecksum 9ee30440400c6cba5726ad3e15e0044fb18b74613237da64eca9e188246193b6e0ac205af9a3e7e1b566503330a85bf6507db7c3ac4caba6c31033f9f87404e2 +srcfiles size=5 + RELOC/source/latex/listingsutf8/listingsutf8.dtx +runfiles size=2 + RELOC/tex/latex/listingsutf8/listingsutf8.sty +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-license lppl1.3 +catalogue-topics listing synt-hlt utf8-adapt +catalogue-version 1.5 + +name listlbls +category Package +revision 34893 +shortdesc Creates a list of all labels used throughout a document +relocated 1 +longdesc The package aims to help a LaTeX author to keep track of all +longdesc defined labels by typesetting a complete list of labels +longdesc wherever the author requests it. (Of course, the user may need +longdesc to have additional LaTeX runs to get the references right. ) +longdesc This package is based on an answer David Carlisle gave on +longdesc TeX/Stackexchange in the thread 'List of all labels with +longdesc hyperlinks'. +containersize 1908 +containerchecksum b5c2e7e168b07aa288c911dbf5c1fa8b56d2a73d38babf0140b77bbf783334f2da42b2bfa8d951e166f7184345cea26a908d12ff4a07ef89b85a7d7772d645e1 +doccontainersize 74316 +doccontainerchecksum 225837c7a5c80b5a01739c20011f4b4c76b0cdeaf26e3f8f44fcafee3e439a104c6eb1a47660a788b96a3cd63f3e19d1384ecada059380773850c7a4109d3269 +docfiles size=23 + RELOC/doc/latex/listlbls/Makefile + RELOC/doc/latex/listlbls/README details="Readme" + RELOC/doc/latex/listlbls/README.md + RELOC/doc/latex/listlbls/README.txt + RELOC/doc/latex/listlbls/listlbls.hd + RELOC/doc/latex/listlbls/listlbls.pdf details="Package documentation" +srccontainersize 5048 +srccontainerchecksum 3b35fa88f640d4f2a13f0cc888a7ab7bb09052ab080454d398f0edc27caa11728152e24bf5184d54aeb1bc86e599aa8a4bbfff6a6efd790e11277f99da2f27e6 +srcfiles size=5 + RELOC/source/latex/listlbls/listlbls.dtx + RELOC/source/latex/listlbls/listlbls.ins +runfiles size=1 + RELOC/tex/latex/listlbls/listlbls.sty +catalogue-ctan /macros/latex/contrib/listlbls +catalogue-license lppl1.3 +catalogue-topics label-ref debug-supp +catalogue-version 1.03 + +name listliketab +category Package +revision 15878 +shortdesc Typeset lists as tables +relocated 1 +longdesc The listliketab package helps the user make list-like tabulars, +longdesc i.e., a tabular that is indistinguishable from an itemize or +longdesc enumerate environment. The advantage of using a tabular is that +longdesc the user can add additional columns to each entry in the list. +containersize 1416 +containerchecksum 0aead2b70e314639aeb98c199d051fb0701570df0263f452bb2e65408678d437c7eb071c41d8674971e42a0961da30754696a58eaaa41dc32d33ded58a833153 +doccontainersize 120912 +doccontainerchecksum 70ceddb9c59981319ec33fba05c663ecaf549b5dab56f29fa07f9c314d97d999c762ee1efff0d20b5e35b39e89b031458fdde4c5c708e0a1c2dbfdf17d710c2e +docfiles size=36 + RELOC/doc/latex/listliketab/README details="Package Readme" + RELOC/doc/latex/listliketab/listliketab.pdf details="Package documentation" +srccontainersize 6696 +srccontainerchecksum 68b75e9dcce30acb59d928f4ff95732cd7e37061d31625f8c1835ef6b8da85ef39f4d8ee86b50e299e71cace2ca5307c25641042f325a93a93bd04bf804ec5b4 +srcfiles size=6 + RELOC/source/latex/listliketab/listliketab.dtx + RELOC/source/latex/listliketab/listliketab.ins +runfiles size=1 + RELOC/tex/latex/listliketab/listliketab.sty +catalogue-ctan /macros/latex/contrib/listliketab +catalogue-license lppl +catalogue-topics list table + +name listofitems +category Package +revision 51923 +shortdesc Grab items in lists using user-specified sep char +relocated 1 +longdesc This simple package is designed to read a list of items whose +longdesc parsing character may be selected by the user. Once the list is +longdesc read, its items are stored in a structure that behaves as a +longdesc dimensioned array. As such, it becomes very easy to access an +longdesc item in the list by its number. For example, if the list is +longdesc stored in the macro \foo, the item #3 is designated by \foo[3]. +longdesc A component may, in turn, be a list with a parsing delimiter +longdesc different from the parent list, paving the way for nesting and +longdesc employing a syntax reminiscent of an array of several +longdesc dimensions of the type \foo[3,2] to access the item #2 of the +longdesc list contained within the item #3 of the top-tier list. +containersize 8420 +containerchecksum 9cdbbac3442d2b6cf45659a77dbbf7c1db2252af3c656d277f8c9c1f8cfd98879efb7e6a9957481cd6e892d8f3df1c8ef46c7992b45c6c461dfe936018600917 +doccontainersize 802140 +doccontainerchecksum e7c3df40b9657dab386eaf54f08018e3d390a1de96a47c5c4f63759c11aa38b243301287940131297ad107e4a63fddad5bd9ca5982b211febda7bf5a6a8d40de +docfiles size=224 + RELOC/doc/generic/listofitems/README details="Readme" + RELOC/doc/generic/listofitems/listofitems-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/listofitems/listofitems-en.tex + RELOC/doc/generic/listofitems/listofitems-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/listofitems/listofitems-fr.tex +runfiles size=15 + RELOC/tex/generic/listofitems/listofitems.sty + RELOC/tex/generic/listofitems/listofitems.tex + RELOC/tex/generic/listofitems/listofitemsold.tex +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-license lppl1.3c +catalogue-topics text-manip list +catalogue-version 1.63 + +name listofsymbols +category Package +revision 16134 +shortdesc Create and manipulate lists of symbols +relocated 1 +longdesc Listofsymbols provides commands to automatically create a list +longdesc of symbols (also called notation or nomenclature), and to +longdesc handle symbols logically, i.e. define a macro that is expanded +longdesc to the desired output and use the macro in the text rather than +longdesc `hardcoding' the output into the text. This helps to ensure +longdesc consistency throughout the text, especially if there is a +longdesc chance that symbols will be changed at some stage. The package +longdesc is more or less a combination of what the packages nomencl and +longdesc formula do. The concept of creating the list of symbols, +longdesc though, is different from the way nomencl.sty does it. +containersize 2552 +containerchecksum dd32fbcd59fa9ec599b0a06672d2e810b5b8172a96a4170cad03a93be3da21a02a036967d0e7e3a617bad6535aca2b1a34a114c383b5ed1aca22bc45239266d2 +doccontainersize 50936 +doccontainerchecksum ff8bb87ee326f0b0df175eb41d634d67cf2f1ecb76f1f8dacf2e19d061e54c4f5cf8e01c7e8c41087ca6b69a04f5a3184ee8ee39f00758d3df2f24a4b2e372d3 +docfiles size=16 + RELOC/doc/latex/listofsymbols/README details="Readme" + RELOC/doc/latex/listofsymbols/listofsymbols.pdf details="Package documentation" +srccontainersize 6188 +srccontainerchecksum b232671411ada9bee8e9408ac9f7bb94e57010a39d916beb78d3f04dd1826203b37f8b8d4f040cce5bf0cc6b7ca97eab97d6f764ffe370b09c361a44af530837 +srcfiles size=7 + RELOC/source/latex/listofsymbols/listofsymbols.dtx + RELOC/source/latex/listofsymbols/listofsymbols.ins +runfiles size=2 + RELOC/tex/latex/listofsymbols/listofsymbols.sty +catalogue-ctan /macros/latex/contrib/listofsymbols +catalogue-license lppl +catalogue-topics toc-etc +catalogue-version 0.2 + +name lithuanian +category Package +revision 46039 +shortdesc Lithuanian language support +relocated 1 +longdesc This language support package provides: Lithuanian adds for +longdesc Babel: lithuanian.ldf lithuanian.sty Lithuanian TeX fonts for +longdesc URW family map, enc, fd, tfm extra code page definitions for +longdesc inputenc: cp772, cp774, cp775, cpKBL, cpRIM +execute addMap l7x-urwvn.map +containersize 67136 +containerchecksum 228fa0f588bb0293778a71a910401575e20aaa8a184d54d51dcf1bebc8bb6b0c0ea81cb1d3e0f2d36b6a0abf830dbd328caa6053fca7f40a83bb292f76b83918 +doccontainersize 55944 +doccontainerchecksum e4b01bf2174854d95f348caeb5e5b88ec436420178eb06a78cb9157bad23bcd34584e9bde451e3963f4de59e66162820f9487ca4d166b2bd898b2cef17e63ee4 +docfiles size=25 + RELOC/doc/latex/lithuanian/COPYING + RELOC/doc/latex/lithuanian/ChangeLog + RELOC/doc/latex/lithuanian/Copyright + RELOC/doc/latex/lithuanian/README details="Readme" + RELOC/doc/latex/lithuanian/latin7x.pdf + RELOC/doc/latex/lithuanian/testlt-urw.tex + RELOC/doc/latex/lithuanian/testlt.tex +runfiles size=98 + RELOC/fonts/enc/dvips/lithuanian/latin7x.enc + RELOC/fonts/map/dvips/lithuanian/l7x-urwvn.map + RELOC/fonts/tfm/public/lithuanian/l7x-uagd.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uagdo.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uagk.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uagko.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkd.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkdi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkl.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkli.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrbo.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrro.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvbc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvbo.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvboc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvrc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvro.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvroc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncbi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncri.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplbi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplri.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmbi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmri.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uzcmi.tfm + RELOC/tex/latex/lithuanian/cp772.def + RELOC/tex/latex/lithuanian/cp774.def + RELOC/tex/latex/lithuanian/cp775.def + RELOC/tex/latex/lithuanian/cpKBL.def + RELOC/tex/latex/lithuanian/cpRIM.def + RELOC/tex/latex/lithuanian/l7xenc.def + RELOC/tex/latex/lithuanian/l7xenc.dfu + RELOC/tex/latex/lithuanian/l7xenc.sty + RELOC/tex/latex/lithuanian/l7xuag.fd + RELOC/tex/latex/lithuanian/l7xubk.fd + RELOC/tex/latex/lithuanian/l7xucr.fd + RELOC/tex/latex/lithuanian/l7xuhv.fd + RELOC/tex/latex/lithuanian/l7xunc.fd + RELOC/tex/latex/lithuanian/l7xupl.fd + RELOC/tex/latex/lithuanian/l7xutm.fd + RELOC/tex/latex/lithuanian/l7xuzc.fd + RELOC/tex/latex/lithuanian/latin7.def + RELOC/tex/latex/lithuanian/lithuanian.ldf + RELOC/tex/latex/lithuanian/lithuanian.sty +catalogue-ctan /language/lithuanian +catalogue-license lppl1.3c +catalogue-topics lithuanian font-proc font-supp + +name liturg +category Package +revision 15878 +shortdesc Support for typesetting Catholic liturgical texts +relocated 1 +longdesc The packages offers simple macros for typesetting Catholic +longdesc liturgical texts, particularly Missal and Breviary texts. The +longdesc package assumes availability of Latin typesetting packages. +containersize 6508 +containerchecksum e97da4e9046fbd60ac2b22bc3753db7a75b5b6aeeb6c37293c5dd1e4e8fffd18b32818b9038b816a405033ff74d9c19ec2443b0169721656af687f1c5d62cf9d +doccontainersize 115684 +doccontainerchecksum 6b342e85917d5a70dc32461de01ae3c6ac66ca247b4ba3d812b7645f1cd1d961c914e584cabf743bb03ea74cac144ec05b03cc09d0c23cf7bbf4b8ce7d01937c +docfiles size=34 + RELOC/doc/latex/liturg/README details="Readme" + RELOC/doc/latex/liturg/liturg.pdf details="Package documentation" + RELOC/doc/latex/liturg/test.tex +srccontainersize 924 +srccontainerchecksum 07bfbe684ae7584cac1dceb3d9012607ee24639a0e4e858d2f570f4aa3c21280bb6116123910a111c729dab794e568c05f8778d3b71612ebc288b0c268eab920 +srcfiles size=1 + RELOC/source/latex/liturg/liturg.ins +runfiles size=5 + RELOC/tex/latex/liturg/liturg.sty +catalogue-ctan /macros/latex/contrib/liturg +catalogue-license lppl +catalogue-topics theology +catalogue-version 1.0 + +name lkproof +category Package +revision 20021 +shortdesc LK Proof figure macros +relocated 1 +longdesc The package defines a pair of commands \infer and \deduce, that +longdesc are used in constructing LK proof diagrams. +containersize 2732 +containerchecksum 58c211cf1ed20b36e69ceffc8568fc1cbdb51cb812af79d16a64cbe8a8e7e672a2d49e672501b2cb23ef72c4a04c59017e17e538061159c8b9e797624f8334ca +doccontainersize 258344 +doccontainerchecksum 01c3f1b50147c73294dabf83d79811862d4742f5a76f69ff6f6a1d5a2b0a8462e3728ba6e4d6fea57d3703c638f6cf04568948d45d4ec8d1dfe59571ff2933b6 +docfiles size=65 + RELOC/doc/latex/lkproof/lkproof-doc.pdf details="Summary documentation" + RELOC/doc/latex/lkproof/lkproof-doc.tex + RELOC/doc/latex/lkproof/proofeg.tex +runfiles size=2 + RELOC/tex/latex/lkproof/proof.sty +catalogue-also proofs +catalogue-contact-home http://research.nii.ac.jp/~tatsuta/index-e.html +catalogue-ctan /macros/latex/contrib/lkproof +catalogue-license gpl +catalogue-topics logic +catalogue-version 3.1 + +name llncsconf +category Package +revision 55117 +shortdesc LaTeX package extending Springer's llncs class +relocated 1 +longdesc The package extends Springer's llncs class for adding +longdesc additional notes describing the status of the paper (submitted, +longdesc accepted) as well as for creating author-archived versions that +longdesc include the references to the official version hosted by +longdesc Springer (as requested by the copyright transfer agreement for +longdesc Springer's LNCS series). +containersize 2188 +containerchecksum 76531fdf2031c7442ce0ea5f63e6f625a976b6949e6758ad77b19a0c50b9dda01244949b32297815137cf40f4697faf3264f1f972952d89559b0c37c21493b7e +doccontainersize 126308 +doccontainerchecksum bbe6f93431219ff18bc2aafa423337fd5017aeaacb91c14897c950b7eafcfe3e124b8403cdb66bc89a34537f1b1e79dfee73cf971767024772b8a47d647b8588 +docfiles size=35 + RELOC/doc/latex/llncsconf/CHANGELOG.md + RELOC/doc/latex/llncsconf/LICENSE + RELOC/doc/latex/llncsconf/README.md details="Readme" + RELOC/doc/latex/llncsconf/example.pdf details="Package documentation" + RELOC/doc/latex/llncsconf/example.tex +runfiles size=2 + RELOC/tex/latex/llncsconf/llncsconf.sty +catalogue-contact-bugs https://github.com/adbrucker/llncsconf/issues +catalogue-contact-repository https://github.com/adbrucker/llncsconf +catalogue-ctan /macros/latex/contrib/llncsconf +catalogue-license lppl1.3c +catalogue-topics journalpub archival +catalogue-version 1.1.0 + +name lm +category Package +revision 58637 +shortdesc Latin modern fonts in outline formats +relocated 1 +longdesc The Latin Modern family of fonts consists of 72 text fonts and +longdesc 20 mathematics fonts, and is based on the Computer Modern fonts +longdesc released into public domain by AMS (copyright (c) 1997 AMS). +longdesc The lm font set contains a lot of additional characters, mainly +longdesc accented ones, but not exclusively. There is one set of fonts, +longdesc available both in Adobe Type 1 format (*.pfb) and in OpenType +longdesc format (*.otf). There are five sets of TeX Font Metric files, +longdesc corresponding to: Cork encoding (cork-*.tfm); QX encoding +longdesc (qx-*.tfm); TeX'n'ANSI aka LY1 encoding (texnansi-*.tfm); T5 +longdesc (Vietnamese) encoding (t5-*.tfm); and Text Companion for EC +longdesc fonts aka TS1 (ts1-*.tfm). +execute addMap lm.map +containersize 11944788 +containerchecksum d758e51742787410416bfa4ea4e32951484435b977c9ea3bc7ce51d919ec4d28b2ade387d3b1129f034aeb41db481bf72729fca5d24177e65d2719200798febb +doccontainersize 1630432 +doccontainerchecksum c8d6d05ee42d060505ecbdc3e4a5e1d0e6e3c5e919fb4be04162b45723abf697f629d412f359b6d205013d5716f575bfc4d6a7dc115fad05ab47d12ac0dafe5b +docfiles size=657 + RELOC/doc/fonts/lm/GUST-FONT-LICENSE.TXT + RELOC/doc/fonts/lm/MANIFEST-Latin-Modern.TXT + RELOC/doc/fonts/lm/README-Latin-Modern.TXT + RELOC/doc/fonts/lm/lm-hist.txt + RELOC/doc/fonts/lm/lm-info.pdf + RELOC/doc/fonts/lm/tstlmot1.pdf + RELOC/doc/fonts/lm/tstlmot1.tex + RELOC/doc/fonts/lm/tstlmot4.pdf + RELOC/doc/fonts/lm/tstlmot4.tex + RELOC/doc/fonts/lm/tstlmqx.pdf + RELOC/doc/fonts/lm/tstlmqx.tex + RELOC/doc/fonts/lm/tstlmt1.pdf + RELOC/doc/fonts/lm/tstlmt1.tex + RELOC/doc/fonts/lm/tstlmts1.pdf + RELOC/doc/fonts/lm/tstlmts1.tex +runfiles size=10645 + RELOC/fonts/afm/public/lm/lmb10.afm + RELOC/fonts/afm/public/lm/lmbo10.afm + RELOC/fonts/afm/public/lm/lmbsy10.afm + RELOC/fonts/afm/public/lm/lmbsy10.aft + RELOC/fonts/afm/public/lm/lmbsy5.afm + RELOC/fonts/afm/public/lm/lmbsy5.aft + RELOC/fonts/afm/public/lm/lmbsy7.afm + RELOC/fonts/afm/public/lm/lmbsy7.aft + RELOC/fonts/afm/public/lm/lmbx10.afm + RELOC/fonts/afm/public/lm/lmbx12.afm + RELOC/fonts/afm/public/lm/lmbx5.afm + RELOC/fonts/afm/public/lm/lmbx6.afm + RELOC/fonts/afm/public/lm/lmbx7.afm + RELOC/fonts/afm/public/lm/lmbx8.afm + RELOC/fonts/afm/public/lm/lmbx9.afm + RELOC/fonts/afm/public/lm/lmbxi10.afm + RELOC/fonts/afm/public/lm/lmbxo10.afm + RELOC/fonts/afm/public/lm/lmcsc10.afm + RELOC/fonts/afm/public/lm/lmcsco10.afm + RELOC/fonts/afm/public/lm/lmdunh10.afm + RELOC/fonts/afm/public/lm/lmduno10.afm + RELOC/fonts/afm/public/lm/lmex10.afm + RELOC/fonts/afm/public/lm/lmex10.aft + RELOC/fonts/afm/public/lm/lmmi10.afm + RELOC/fonts/afm/public/lm/lmmi10.aft + RELOC/fonts/afm/public/lm/lmmi12.afm + RELOC/fonts/afm/public/lm/lmmi12.aft + RELOC/fonts/afm/public/lm/lmmi5.afm + RELOC/fonts/afm/public/lm/lmmi5.aft + RELOC/fonts/afm/public/lm/lmmi6.afm + RELOC/fonts/afm/public/lm/lmmi6.aft + RELOC/fonts/afm/public/lm/lmmi7.afm + RELOC/fonts/afm/public/lm/lmmi7.aft + RELOC/fonts/afm/public/lm/lmmi8.afm + RELOC/fonts/afm/public/lm/lmmi8.aft + RELOC/fonts/afm/public/lm/lmmi9.afm + RELOC/fonts/afm/public/lm/lmmi9.aft + RELOC/fonts/afm/public/lm/lmmib10.afm + RELOC/fonts/afm/public/lm/lmmib10.aft + RELOC/fonts/afm/public/lm/lmmib5.afm + RELOC/fonts/afm/public/lm/lmmib5.aft + RELOC/fonts/afm/public/lm/lmmib7.afm + RELOC/fonts/afm/public/lm/lmmib7.aft + RELOC/fonts/afm/public/lm/lmr10.afm + RELOC/fonts/afm/public/lm/lmr12.afm + RELOC/fonts/afm/public/lm/lmr17.afm + RELOC/fonts/afm/public/lm/lmr5.afm + RELOC/fonts/afm/public/lm/lmr6.afm + RELOC/fonts/afm/public/lm/lmr7.afm + RELOC/fonts/afm/public/lm/lmr8.afm + RELOC/fonts/afm/public/lm/lmr9.afm + RELOC/fonts/afm/public/lm/lmri10.afm + RELOC/fonts/afm/public/lm/lmri12.afm + RELOC/fonts/afm/public/lm/lmri7.afm + RELOC/fonts/afm/public/lm/lmri8.afm + RELOC/fonts/afm/public/lm/lmri9.afm + RELOC/fonts/afm/public/lm/lmro10.afm + RELOC/fonts/afm/public/lm/lmro12.afm + RELOC/fonts/afm/public/lm/lmro17.afm + RELOC/fonts/afm/public/lm/lmro8.afm + RELOC/fonts/afm/public/lm/lmro9.afm + RELOC/fonts/afm/public/lm/lmss10.afm + RELOC/fonts/afm/public/lm/lmss12.afm + RELOC/fonts/afm/public/lm/lmss17.afm + RELOC/fonts/afm/public/lm/lmss8.afm + RELOC/fonts/afm/public/lm/lmss9.afm + RELOC/fonts/afm/public/lm/lmssbo10.afm + RELOC/fonts/afm/public/lm/lmssbx10.afm + RELOC/fonts/afm/public/lm/lmssdc10.afm + RELOC/fonts/afm/public/lm/lmssdo10.afm + RELOC/fonts/afm/public/lm/lmsso10.afm + RELOC/fonts/afm/public/lm/lmsso12.afm + RELOC/fonts/afm/public/lm/lmsso17.afm + RELOC/fonts/afm/public/lm/lmsso8.afm + RELOC/fonts/afm/public/lm/lmsso9.afm + RELOC/fonts/afm/public/lm/lmssq8.afm + RELOC/fonts/afm/public/lm/lmssqbo8.afm + RELOC/fonts/afm/public/lm/lmssqbx8.afm + RELOC/fonts/afm/public/lm/lmssqo8.afm + RELOC/fonts/afm/public/lm/lmsy10.afm + RELOC/fonts/afm/public/lm/lmsy10.aft + RELOC/fonts/afm/public/lm/lmsy5.afm + RELOC/fonts/afm/public/lm/lmsy5.aft + RELOC/fonts/afm/public/lm/lmsy6.afm + RELOC/fonts/afm/public/lm/lmsy6.aft + RELOC/fonts/afm/public/lm/lmsy7.afm + RELOC/fonts/afm/public/lm/lmsy7.aft + RELOC/fonts/afm/public/lm/lmsy8.afm + RELOC/fonts/afm/public/lm/lmsy8.aft + RELOC/fonts/afm/public/lm/lmsy9.afm + RELOC/fonts/afm/public/lm/lmsy9.aft + RELOC/fonts/afm/public/lm/lmtcsc10.afm + RELOC/fonts/afm/public/lm/lmtcso10.afm + RELOC/fonts/afm/public/lm/lmtk10.afm + RELOC/fonts/afm/public/lm/lmtko10.afm + RELOC/fonts/afm/public/lm/lmtl10.afm + RELOC/fonts/afm/public/lm/lmtlc10.afm + RELOC/fonts/afm/public/lm/lmtlco10.afm + RELOC/fonts/afm/public/lm/lmtlo10.afm + RELOC/fonts/afm/public/lm/lmtt10.afm + RELOC/fonts/afm/public/lm/lmtt12.afm + RELOC/fonts/afm/public/lm/lmtt8.afm + RELOC/fonts/afm/public/lm/lmtt9.afm + RELOC/fonts/afm/public/lm/lmtti10.afm + RELOC/fonts/afm/public/lm/lmtto10.afm + RELOC/fonts/afm/public/lm/lmu10.afm + RELOC/fonts/afm/public/lm/lmvtk10.afm + RELOC/fonts/afm/public/lm/lmvtko10.afm + RELOC/fonts/afm/public/lm/lmvtl10.afm + RELOC/fonts/afm/public/lm/lmvtlo10.afm + RELOC/fonts/afm/public/lm/lmvtt10.afm + RELOC/fonts/afm/public/lm/lmvtto10.afm + RELOC/fonts/enc/dvips/lm/lm-cs.enc + RELOC/fonts/enc/dvips/lm/lm-cssc.enc + RELOC/fonts/enc/dvips/lm/lm-cstt.enc + RELOC/fonts/enc/dvips/lm/lm-ec.enc + RELOC/fonts/enc/dvips/lm/lm-l7x.enc + RELOC/fonts/enc/dvips/lm/lm-mathex.enc + RELOC/fonts/enc/dvips/lm/lm-mathit.enc + RELOC/fonts/enc/dvips/lm/lm-mathsy.enc + RELOC/fonts/enc/dvips/lm/lm-qx.enc + RELOC/fonts/enc/dvips/lm/lm-qxsc.enc + RELOC/fonts/enc/dvips/lm/lm-qxtt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmin.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmit.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmitt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmrm.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmsc.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmtt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-csin.enc + RELOC/fonts/enc/dvips/lm/lm-rep-csrm.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cssc.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cstt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plin.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plit.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plitt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plrm.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plsc.enc + RELOC/fonts/enc/dvips/lm/lm-rep-pltt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-t5psn.enc + RELOC/fonts/enc/dvips/lm/lm-rm.enc + RELOC/fonts/enc/dvips/lm/lm-rmsc.enc + RELOC/fonts/enc/dvips/lm/lm-rmtt.enc + RELOC/fonts/enc/dvips/lm/lm-t5.enc + RELOC/fonts/enc/dvips/lm/lm-texnansi.enc + RELOC/fonts/enc/dvips/lm/lm-ts1.enc + RELOC/fonts/map/dvipdfm/lm/lm-ec.map + RELOC/fonts/map/dvipdfm/lm/lm-math.map + RELOC/fonts/map/dvipdfm/lm/lm-rm.map + RELOC/fonts/map/dvipdfm/lm/lm-texnansi.map + RELOC/fonts/map/dvips/lm/lm-cs.map + RELOC/fonts/map/dvips/lm/lm-ec.map + RELOC/fonts/map/dvips/lm/lm-l7x.map + RELOC/fonts/map/dvips/lm/lm-math.map + RELOC/fonts/map/dvips/lm/lm-qx.map + RELOC/fonts/map/dvips/lm/lm-rep-cmother.map + RELOC/fonts/map/dvips/lm/lm-rep-cmtext-interpolated.map + RELOC/fonts/map/dvips/lm/lm-rep-cmtext.map + RELOC/fonts/map/dvips/lm/lm-rep-cstext.map + RELOC/fonts/map/dvips/lm/lm-rep-pltext.map + RELOC/fonts/map/dvips/lm/lm-rep-vntext.map + RELOC/fonts/map/dvips/lm/lm-rm.map + RELOC/fonts/map/dvips/lm/lm-t5.map + RELOC/fonts/map/dvips/lm/lm-texnansi.map + RELOC/fonts/map/dvips/lm/lm-ts1.map + RELOC/fonts/map/dvips/lm/lm.map + RELOC/fonts/opentype/public/lm/lmmono10-italic.otf + RELOC/fonts/opentype/public/lm/lmmono10-regular.otf + RELOC/fonts/opentype/public/lm/lmmono12-regular.otf + RELOC/fonts/opentype/public/lm/lmmono8-regular.otf + RELOC/fonts/opentype/public/lm/lmmono9-regular.otf + RELOC/fonts/opentype/public/lm/lmmonocaps10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonocaps10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-bold.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoltcond10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonoltcond10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoprop10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonoprop10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-bold.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoslant10-regular.otf + RELOC/fonts/opentype/public/lm/lmroman10-bold.otf + RELOC/fonts/opentype/public/lm/lmroman10-bolditalic.otf + RELOC/fonts/opentype/public/lm/lmroman10-italic.otf + RELOC/fonts/opentype/public/lm/lmroman10-regular.otf + RELOC/fonts/opentype/public/lm/lmroman12-bold.otf + RELOC/fonts/opentype/public/lm/lmroman12-italic.otf + RELOC/fonts/opentype/public/lm/lmroman12-regular.otf + RELOC/fonts/opentype/public/lm/lmroman17-regular.otf + RELOC/fonts/opentype/public/lm/lmroman5-bold.otf + RELOC/fonts/opentype/public/lm/lmroman5-regular.otf + RELOC/fonts/opentype/public/lm/lmroman6-bold.otf + RELOC/fonts/opentype/public/lm/lmroman6-regular.otf + RELOC/fonts/opentype/public/lm/lmroman7-bold.otf + RELOC/fonts/opentype/public/lm/lmroman7-italic.otf + RELOC/fonts/opentype/public/lm/lmroman7-regular.otf + RELOC/fonts/opentype/public/lm/lmroman8-bold.otf + RELOC/fonts/opentype/public/lm/lmroman8-italic.otf + RELOC/fonts/opentype/public/lm/lmroman8-regular.otf + RELOC/fonts/opentype/public/lm/lmroman9-bold.otf + RELOC/fonts/opentype/public/lm/lmroman9-italic.otf + RELOC/fonts/opentype/public/lm/lmroman9-regular.otf + RELOC/fonts/opentype/public/lm/lmromancaps10-oblique.otf + RELOC/fonts/opentype/public/lm/lmromancaps10-regular.otf + RELOC/fonts/opentype/public/lm/lmromandemi10-oblique.otf + RELOC/fonts/opentype/public/lm/lmromandemi10-regular.otf + RELOC/fonts/opentype/public/lm/lmromandunh10-oblique.otf + RELOC/fonts/opentype/public/lm/lmromandunh10-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant10-bold.otf + RELOC/fonts/opentype/public/lm/lmromanslant10-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant12-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant17-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant8-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant9-regular.otf + RELOC/fonts/opentype/public/lm/lmromanunsl10-regular.otf + RELOC/fonts/opentype/public/lm/lmsans10-bold.otf + RELOC/fonts/opentype/public/lm/lmsans10-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmsans10-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans10-regular.otf + RELOC/fonts/opentype/public/lm/lmsans12-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans12-regular.otf + RELOC/fonts/opentype/public/lm/lmsans17-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans17-regular.otf + RELOC/fonts/opentype/public/lm/lmsans8-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans8-regular.otf + RELOC/fonts/opentype/public/lm/lmsans9-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans9-regular.otf + RELOC/fonts/opentype/public/lm/lmsansdemicond10-oblique.otf + RELOC/fonts/opentype/public/lm/lmsansdemicond10-regular.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-bold.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-oblique.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-regular.otf + RELOC/fonts/tfm/public/lm/cs-lmb10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx12.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx5.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx6.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx7.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx8.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx9.tfm + RELOC/fonts/tfm/public/lm/cs-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/cs-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/cs-lmduno10.tfm + RELOC/fonts/tfm/public/lm/cs-lmr10.tfm + RELOC/fonts/tfm/public/lm/cs-lmr12.tfm + RELOC/fonts/tfm/public/lm/cs-lmr17.tfm + RELOC/fonts/tfm/public/lm/cs-lmr5.tfm + RELOC/fonts/tfm/public/lm/cs-lmr6.tfm + RELOC/fonts/tfm/public/lm/cs-lmr7.tfm + RELOC/fonts/tfm/public/lm/cs-lmr8.tfm + RELOC/fonts/tfm/public/lm/cs-lmr9.tfm + RELOC/fonts/tfm/public/lm/cs-lmri10.tfm + RELOC/fonts/tfm/public/lm/cs-lmri12.tfm + RELOC/fonts/tfm/public/lm/cs-lmri7.tfm + RELOC/fonts/tfm/public/lm/cs-lmri8.tfm + RELOC/fonts/tfm/public/lm/cs-lmri9.tfm + RELOC/fonts/tfm/public/lm/cs-lmro10.tfm + RELOC/fonts/tfm/public/lm/cs-lmro12.tfm + RELOC/fonts/tfm/public/lm/cs-lmro17.tfm + RELOC/fonts/tfm/public/lm/cs-lmro8.tfm + RELOC/fonts/tfm/public/lm/cs-lmro9.tfm + RELOC/fonts/tfm/public/lm/cs-lmss10.tfm + RELOC/fonts/tfm/public/lm/cs-lmss12.tfm + RELOC/fonts/tfm/public/lm/cs-lmss17.tfm + RELOC/fonts/tfm/public/lm/cs-lmss8.tfm + RELOC/fonts/tfm/public/lm/cs-lmss9.tfm + RELOC/fonts/tfm/public/lm/cs-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/cs-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso10.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso12.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso17.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso8.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso9.tfm + RELOC/fonts/tfm/public/lm/cs-lmssq8.tfm + RELOC/fonts/tfm/public/lm/cs-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/cs-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/cs-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/cs-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtk10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtko10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtl10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt12.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt8.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt9.tfm + RELOC/fonts/tfm/public/lm/cs-lmtti10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtto10.tfm + RELOC/fonts/tfm/public/lm/cs-lmu10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/ec-lmb10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx12.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx5.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx6.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx7.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx8.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx9.tfm + RELOC/fonts/tfm/public/lm/ec-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/ec-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/ec-lmduno10.tfm + RELOC/fonts/tfm/public/lm/ec-lmr10.tfm + RELOC/fonts/tfm/public/lm/ec-lmr12.tfm + RELOC/fonts/tfm/public/lm/ec-lmr17.tfm + RELOC/fonts/tfm/public/lm/ec-lmr5.tfm + RELOC/fonts/tfm/public/lm/ec-lmr6.tfm + RELOC/fonts/tfm/public/lm/ec-lmr7.tfm + RELOC/fonts/tfm/public/lm/ec-lmr8.tfm + RELOC/fonts/tfm/public/lm/ec-lmr9.tfm + RELOC/fonts/tfm/public/lm/ec-lmri10.tfm + RELOC/fonts/tfm/public/lm/ec-lmri12.tfm + RELOC/fonts/tfm/public/lm/ec-lmri7.tfm + RELOC/fonts/tfm/public/lm/ec-lmri8.tfm + RELOC/fonts/tfm/public/lm/ec-lmri9.tfm + RELOC/fonts/tfm/public/lm/ec-lmro10.tfm + RELOC/fonts/tfm/public/lm/ec-lmro12.tfm + RELOC/fonts/tfm/public/lm/ec-lmro17.tfm + RELOC/fonts/tfm/public/lm/ec-lmro8.tfm + RELOC/fonts/tfm/public/lm/ec-lmro9.tfm + RELOC/fonts/tfm/public/lm/ec-lmss10.tfm + RELOC/fonts/tfm/public/lm/ec-lmss12.tfm + RELOC/fonts/tfm/public/lm/ec-lmss17.tfm + RELOC/fonts/tfm/public/lm/ec-lmss8.tfm + RELOC/fonts/tfm/public/lm/ec-lmss9.tfm + RELOC/fonts/tfm/public/lm/ec-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/ec-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso10.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso12.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso17.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso8.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso9.tfm + RELOC/fonts/tfm/public/lm/ec-lmssq8.tfm + RELOC/fonts/tfm/public/lm/ec-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/ec-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/ec-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/ec-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtk10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtko10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtl10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt12.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt8.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt9.tfm + RELOC/fonts/tfm/public/lm/ec-lmtti10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtto10.tfm + RELOC/fonts/tfm/public/lm/ec-lmu10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmb10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx5.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx6.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx7.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmduno10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr5.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr6.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr7.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri7.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssq8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtk10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtko10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtl10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtti10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtto10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmu10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/lmbsy10.tfm + RELOC/fonts/tfm/public/lm/lmbsy5.tfm + RELOC/fonts/tfm/public/lm/lmbsy7.tfm + RELOC/fonts/tfm/public/lm/lmex10.tfm + RELOC/fonts/tfm/public/lm/lmmi10.tfm + RELOC/fonts/tfm/public/lm/lmmi12.tfm + RELOC/fonts/tfm/public/lm/lmmi5.tfm + RELOC/fonts/tfm/public/lm/lmmi6.tfm + RELOC/fonts/tfm/public/lm/lmmi7.tfm + RELOC/fonts/tfm/public/lm/lmmi8.tfm + RELOC/fonts/tfm/public/lm/lmmi9.tfm + RELOC/fonts/tfm/public/lm/lmmib10.tfm + RELOC/fonts/tfm/public/lm/lmmib5.tfm + RELOC/fonts/tfm/public/lm/lmmib7.tfm + RELOC/fonts/tfm/public/lm/lmsy10.tfm + RELOC/fonts/tfm/public/lm/lmsy5.tfm + RELOC/fonts/tfm/public/lm/lmsy6.tfm + RELOC/fonts/tfm/public/lm/lmsy7.tfm + RELOC/fonts/tfm/public/lm/lmsy8.tfm + RELOC/fonts/tfm/public/lm/lmsy9.tfm + RELOC/fonts/tfm/public/lm/qx-lmb10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx12.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx5.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx6.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx7.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx8.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx9.tfm + RELOC/fonts/tfm/public/lm/qx-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/qx-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/qx-lmduno10.tfm + RELOC/fonts/tfm/public/lm/qx-lmr10.tfm + RELOC/fonts/tfm/public/lm/qx-lmr12.tfm + RELOC/fonts/tfm/public/lm/qx-lmr17.tfm + RELOC/fonts/tfm/public/lm/qx-lmr5.tfm + RELOC/fonts/tfm/public/lm/qx-lmr6.tfm + RELOC/fonts/tfm/public/lm/qx-lmr7.tfm + RELOC/fonts/tfm/public/lm/qx-lmr8.tfm + RELOC/fonts/tfm/public/lm/qx-lmr9.tfm + RELOC/fonts/tfm/public/lm/qx-lmri10.tfm + RELOC/fonts/tfm/public/lm/qx-lmri12.tfm + RELOC/fonts/tfm/public/lm/qx-lmri7.tfm + RELOC/fonts/tfm/public/lm/qx-lmri8.tfm + RELOC/fonts/tfm/public/lm/qx-lmri9.tfm + RELOC/fonts/tfm/public/lm/qx-lmro10.tfm + RELOC/fonts/tfm/public/lm/qx-lmro12.tfm + RELOC/fonts/tfm/public/lm/qx-lmro17.tfm + RELOC/fonts/tfm/public/lm/qx-lmro8.tfm + RELOC/fonts/tfm/public/lm/qx-lmro9.tfm + RELOC/fonts/tfm/public/lm/qx-lmss10.tfm + RELOC/fonts/tfm/public/lm/qx-lmss12.tfm + RELOC/fonts/tfm/public/lm/qx-lmss17.tfm + RELOC/fonts/tfm/public/lm/qx-lmss8.tfm + RELOC/fonts/tfm/public/lm/qx-lmss9.tfm + RELOC/fonts/tfm/public/lm/qx-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/qx-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso10.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso12.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso17.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso8.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso9.tfm + RELOC/fonts/tfm/public/lm/qx-lmssq8.tfm + RELOC/fonts/tfm/public/lm/qx-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/qx-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/qx-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/qx-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtk10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtko10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtl10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt12.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt8.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt9.tfm + RELOC/fonts/tfm/public/lm/qx-lmtti10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtto10.tfm + RELOC/fonts/tfm/public/lm/qx-lmu10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/rm-lmb10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx12.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx5.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx6.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx7.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx8.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx9.tfm + RELOC/fonts/tfm/public/lm/rm-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/rm-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/rm-lmduno10.tfm + RELOC/fonts/tfm/public/lm/rm-lmr10.tfm + RELOC/fonts/tfm/public/lm/rm-lmr12.tfm + RELOC/fonts/tfm/public/lm/rm-lmr17.tfm + RELOC/fonts/tfm/public/lm/rm-lmr5.tfm + RELOC/fonts/tfm/public/lm/rm-lmr6.tfm + RELOC/fonts/tfm/public/lm/rm-lmr7.tfm + RELOC/fonts/tfm/public/lm/rm-lmr8.tfm + RELOC/fonts/tfm/public/lm/rm-lmr9.tfm + RELOC/fonts/tfm/public/lm/rm-lmri10.tfm + RELOC/fonts/tfm/public/lm/rm-lmri12.tfm + RELOC/fonts/tfm/public/lm/rm-lmri7.tfm + RELOC/fonts/tfm/public/lm/rm-lmri8.tfm + RELOC/fonts/tfm/public/lm/rm-lmri9.tfm + RELOC/fonts/tfm/public/lm/rm-lmro10.tfm + RELOC/fonts/tfm/public/lm/rm-lmro12.tfm + RELOC/fonts/tfm/public/lm/rm-lmro17.tfm + RELOC/fonts/tfm/public/lm/rm-lmro8.tfm + RELOC/fonts/tfm/public/lm/rm-lmro9.tfm + RELOC/fonts/tfm/public/lm/rm-lmss10.tfm + RELOC/fonts/tfm/public/lm/rm-lmss12.tfm + RELOC/fonts/tfm/public/lm/rm-lmss17.tfm + RELOC/fonts/tfm/public/lm/rm-lmss8.tfm + RELOC/fonts/tfm/public/lm/rm-lmss9.tfm + RELOC/fonts/tfm/public/lm/rm-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/rm-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso10.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso12.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso17.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso8.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso9.tfm + RELOC/fonts/tfm/public/lm/rm-lmssq8.tfm + RELOC/fonts/tfm/public/lm/rm-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/rm-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/rm-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/rm-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtk10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtko10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtl10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt12.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt8.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt9.tfm + RELOC/fonts/tfm/public/lm/rm-lmtti10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtto10.tfm + RELOC/fonts/tfm/public/lm/rm-lmu10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/t5-lmb10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx12.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx5.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx6.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx7.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx8.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx9.tfm + RELOC/fonts/tfm/public/lm/t5-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/t5-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/t5-lmduno10.tfm + RELOC/fonts/tfm/public/lm/t5-lmr10.tfm + RELOC/fonts/tfm/public/lm/t5-lmr12.tfm + RELOC/fonts/tfm/public/lm/t5-lmr17.tfm + RELOC/fonts/tfm/public/lm/t5-lmr5.tfm + RELOC/fonts/tfm/public/lm/t5-lmr6.tfm + RELOC/fonts/tfm/public/lm/t5-lmr7.tfm + RELOC/fonts/tfm/public/lm/t5-lmr8.tfm + RELOC/fonts/tfm/public/lm/t5-lmr9.tfm + RELOC/fonts/tfm/public/lm/t5-lmri10.tfm + RELOC/fonts/tfm/public/lm/t5-lmri12.tfm + RELOC/fonts/tfm/public/lm/t5-lmri7.tfm + RELOC/fonts/tfm/public/lm/t5-lmri8.tfm + RELOC/fonts/tfm/public/lm/t5-lmri9.tfm + RELOC/fonts/tfm/public/lm/t5-lmro10.tfm + RELOC/fonts/tfm/public/lm/t5-lmro12.tfm + RELOC/fonts/tfm/public/lm/t5-lmro17.tfm + RELOC/fonts/tfm/public/lm/t5-lmro8.tfm + RELOC/fonts/tfm/public/lm/t5-lmro9.tfm + RELOC/fonts/tfm/public/lm/t5-lmss10.tfm + RELOC/fonts/tfm/public/lm/t5-lmss12.tfm + RELOC/fonts/tfm/public/lm/t5-lmss17.tfm + RELOC/fonts/tfm/public/lm/t5-lmss8.tfm + RELOC/fonts/tfm/public/lm/t5-lmss9.tfm + RELOC/fonts/tfm/public/lm/t5-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/t5-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso10.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso12.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso17.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso8.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso9.tfm + RELOC/fonts/tfm/public/lm/t5-lmssq8.tfm + RELOC/fonts/tfm/public/lm/t5-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/t5-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/t5-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/t5-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtk10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtko10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtl10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt12.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt8.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt9.tfm + RELOC/fonts/tfm/public/lm/t5-lmtti10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtto10.tfm + RELOC/fonts/tfm/public/lm/t5-lmu10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmb10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx5.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx6.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx7.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmduno10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr5.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr6.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr7.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri7.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssq8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtk10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtko10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtl10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtti10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtto10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmu10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmb10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx5.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx6.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx7.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmduno10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr5.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr6.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr7.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri7.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssq8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtk10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtko10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtl10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtti10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtto10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmu10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtto10.tfm + RELOC/fonts/type1/public/lm/lmb10.pfb + RELOC/fonts/type1/public/lm/lmb10.pfm + RELOC/fonts/type1/public/lm/lmbo10.pfb + RELOC/fonts/type1/public/lm/lmbo10.pfm + RELOC/fonts/type1/public/lm/lmbsy10.pfb + RELOC/fonts/type1/public/lm/lmbsy10.pfm + RELOC/fonts/type1/public/lm/lmbsy5.pfb + RELOC/fonts/type1/public/lm/lmbsy5.pfm + RELOC/fonts/type1/public/lm/lmbsy7.pfb + RELOC/fonts/type1/public/lm/lmbsy7.pfm + RELOC/fonts/type1/public/lm/lmbx10.pfb + RELOC/fonts/type1/public/lm/lmbx10.pfm + RELOC/fonts/type1/public/lm/lmbx12.pfb + RELOC/fonts/type1/public/lm/lmbx12.pfm + RELOC/fonts/type1/public/lm/lmbx5.pfb + RELOC/fonts/type1/public/lm/lmbx5.pfm + RELOC/fonts/type1/public/lm/lmbx6.pfb + RELOC/fonts/type1/public/lm/lmbx6.pfm + RELOC/fonts/type1/public/lm/lmbx7.pfb + RELOC/fonts/type1/public/lm/lmbx7.pfm + RELOC/fonts/type1/public/lm/lmbx8.pfb + RELOC/fonts/type1/public/lm/lmbx8.pfm + RELOC/fonts/type1/public/lm/lmbx9.pfb + RELOC/fonts/type1/public/lm/lmbx9.pfm + RELOC/fonts/type1/public/lm/lmbxi10.pfb + RELOC/fonts/type1/public/lm/lmbxi10.pfm + RELOC/fonts/type1/public/lm/lmbxo10.pfb + RELOC/fonts/type1/public/lm/lmbxo10.pfm + RELOC/fonts/type1/public/lm/lmcsc10.pfb + RELOC/fonts/type1/public/lm/lmcsc10.pfm + RELOC/fonts/type1/public/lm/lmcsco10.pfb + RELOC/fonts/type1/public/lm/lmcsco10.pfm + RELOC/fonts/type1/public/lm/lmdunh10.pfb + RELOC/fonts/type1/public/lm/lmdunh10.pfm + RELOC/fonts/type1/public/lm/lmduno10.pfb + RELOC/fonts/type1/public/lm/lmduno10.pfm + RELOC/fonts/type1/public/lm/lmex10.pfb + RELOC/fonts/type1/public/lm/lmex10.pfm + RELOC/fonts/type1/public/lm/lmmi10.pfb + RELOC/fonts/type1/public/lm/lmmi10.pfm + RELOC/fonts/type1/public/lm/lmmi12.pfb + RELOC/fonts/type1/public/lm/lmmi12.pfm + RELOC/fonts/type1/public/lm/lmmi5.pfb + RELOC/fonts/type1/public/lm/lmmi5.pfm + RELOC/fonts/type1/public/lm/lmmi6.pfb + RELOC/fonts/type1/public/lm/lmmi6.pfm + RELOC/fonts/type1/public/lm/lmmi7.pfb + RELOC/fonts/type1/public/lm/lmmi7.pfm + RELOC/fonts/type1/public/lm/lmmi8.pfb + RELOC/fonts/type1/public/lm/lmmi8.pfm + RELOC/fonts/type1/public/lm/lmmi9.pfb + RELOC/fonts/type1/public/lm/lmmi9.pfm + RELOC/fonts/type1/public/lm/lmmib10.pfb + RELOC/fonts/type1/public/lm/lmmib10.pfm + RELOC/fonts/type1/public/lm/lmmib5.pfb + RELOC/fonts/type1/public/lm/lmmib5.pfm + RELOC/fonts/type1/public/lm/lmmib7.pfb + RELOC/fonts/type1/public/lm/lmmib7.pfm + RELOC/fonts/type1/public/lm/lmr10.pfb + RELOC/fonts/type1/public/lm/lmr10.pfm + RELOC/fonts/type1/public/lm/lmr12.pfb + RELOC/fonts/type1/public/lm/lmr12.pfm + RELOC/fonts/type1/public/lm/lmr17.pfb + RELOC/fonts/type1/public/lm/lmr17.pfm + RELOC/fonts/type1/public/lm/lmr5.pfb + RELOC/fonts/type1/public/lm/lmr5.pfm + RELOC/fonts/type1/public/lm/lmr6.pfb + RELOC/fonts/type1/public/lm/lmr6.pfm + RELOC/fonts/type1/public/lm/lmr7.pfb + RELOC/fonts/type1/public/lm/lmr7.pfm + RELOC/fonts/type1/public/lm/lmr8.pfb + RELOC/fonts/type1/public/lm/lmr8.pfm + RELOC/fonts/type1/public/lm/lmr9.pfb + RELOC/fonts/type1/public/lm/lmr9.pfm + RELOC/fonts/type1/public/lm/lmri10.pfb + RELOC/fonts/type1/public/lm/lmri10.pfm + RELOC/fonts/type1/public/lm/lmri12.pfb + RELOC/fonts/type1/public/lm/lmri12.pfm + RELOC/fonts/type1/public/lm/lmri7.pfb + RELOC/fonts/type1/public/lm/lmri7.pfm + RELOC/fonts/type1/public/lm/lmri8.pfb + RELOC/fonts/type1/public/lm/lmri8.pfm + RELOC/fonts/type1/public/lm/lmri9.pfb + RELOC/fonts/type1/public/lm/lmri9.pfm + RELOC/fonts/type1/public/lm/lmro10.pfb + RELOC/fonts/type1/public/lm/lmro10.pfm + RELOC/fonts/type1/public/lm/lmro12.pfb + RELOC/fonts/type1/public/lm/lmro12.pfm + RELOC/fonts/type1/public/lm/lmro17.pfb + RELOC/fonts/type1/public/lm/lmro17.pfm + RELOC/fonts/type1/public/lm/lmro8.pfb + RELOC/fonts/type1/public/lm/lmro8.pfm + RELOC/fonts/type1/public/lm/lmro9.pfb + RELOC/fonts/type1/public/lm/lmro9.pfm + RELOC/fonts/type1/public/lm/lmss10.pfb + RELOC/fonts/type1/public/lm/lmss10.pfm + RELOC/fonts/type1/public/lm/lmss12.pfb + RELOC/fonts/type1/public/lm/lmss12.pfm + RELOC/fonts/type1/public/lm/lmss17.pfb + RELOC/fonts/type1/public/lm/lmss17.pfm + RELOC/fonts/type1/public/lm/lmss8.pfb + RELOC/fonts/type1/public/lm/lmss8.pfm + RELOC/fonts/type1/public/lm/lmss9.pfb + RELOC/fonts/type1/public/lm/lmss9.pfm + RELOC/fonts/type1/public/lm/lmssbo10.pfb + RELOC/fonts/type1/public/lm/lmssbo10.pfm + RELOC/fonts/type1/public/lm/lmssbx10.pfb + RELOC/fonts/type1/public/lm/lmssbx10.pfm + RELOC/fonts/type1/public/lm/lmssdc10.pfb + RELOC/fonts/type1/public/lm/lmssdc10.pfm + RELOC/fonts/type1/public/lm/lmssdo10.pfb + RELOC/fonts/type1/public/lm/lmssdo10.pfm + RELOC/fonts/type1/public/lm/lmsso10.pfb + RELOC/fonts/type1/public/lm/lmsso10.pfm + RELOC/fonts/type1/public/lm/lmsso12.pfb + RELOC/fonts/type1/public/lm/lmsso12.pfm + RELOC/fonts/type1/public/lm/lmsso17.pfb + RELOC/fonts/type1/public/lm/lmsso17.pfm + RELOC/fonts/type1/public/lm/lmsso8.pfb + RELOC/fonts/type1/public/lm/lmsso8.pfm + RELOC/fonts/type1/public/lm/lmsso9.pfb + RELOC/fonts/type1/public/lm/lmsso9.pfm + RELOC/fonts/type1/public/lm/lmssq8.pfb + RELOC/fonts/type1/public/lm/lmssq8.pfm + RELOC/fonts/type1/public/lm/lmssqbo8.pfb + RELOC/fonts/type1/public/lm/lmssqbo8.pfm + RELOC/fonts/type1/public/lm/lmssqbx8.pfb + RELOC/fonts/type1/public/lm/lmssqbx8.pfm + RELOC/fonts/type1/public/lm/lmssqo8.pfb + RELOC/fonts/type1/public/lm/lmssqo8.pfm + RELOC/fonts/type1/public/lm/lmsy10.pfb + RELOC/fonts/type1/public/lm/lmsy10.pfm + RELOC/fonts/type1/public/lm/lmsy5.pfb + RELOC/fonts/type1/public/lm/lmsy5.pfm + RELOC/fonts/type1/public/lm/lmsy6.pfb + RELOC/fonts/type1/public/lm/lmsy6.pfm + RELOC/fonts/type1/public/lm/lmsy7.pfb + RELOC/fonts/type1/public/lm/lmsy7.pfm + RELOC/fonts/type1/public/lm/lmsy8.pfb + RELOC/fonts/type1/public/lm/lmsy8.pfm + RELOC/fonts/type1/public/lm/lmsy9.pfb + RELOC/fonts/type1/public/lm/lmsy9.pfm + RELOC/fonts/type1/public/lm/lmtcsc10.pfb + RELOC/fonts/type1/public/lm/lmtcsc10.pfm + RELOC/fonts/type1/public/lm/lmtcso10.pfb + RELOC/fonts/type1/public/lm/lmtcso10.pfm + RELOC/fonts/type1/public/lm/lmtk10.pfb + RELOC/fonts/type1/public/lm/lmtk10.pfm + RELOC/fonts/type1/public/lm/lmtko10.pfb + RELOC/fonts/type1/public/lm/lmtko10.pfm + RELOC/fonts/type1/public/lm/lmtl10.pfb + RELOC/fonts/type1/public/lm/lmtl10.pfm + RELOC/fonts/type1/public/lm/lmtlc10.pfb + RELOC/fonts/type1/public/lm/lmtlc10.pfm + RELOC/fonts/type1/public/lm/lmtlco10.pfb + RELOC/fonts/type1/public/lm/lmtlco10.pfm + RELOC/fonts/type1/public/lm/lmtlo10.pfb + RELOC/fonts/type1/public/lm/lmtlo10.pfm + RELOC/fonts/type1/public/lm/lmtt10.pfb + RELOC/fonts/type1/public/lm/lmtt10.pfm + RELOC/fonts/type1/public/lm/lmtt12.pfb + RELOC/fonts/type1/public/lm/lmtt12.pfm + RELOC/fonts/type1/public/lm/lmtt8.pfb + RELOC/fonts/type1/public/lm/lmtt8.pfm + RELOC/fonts/type1/public/lm/lmtt9.pfb + RELOC/fonts/type1/public/lm/lmtt9.pfm + RELOC/fonts/type1/public/lm/lmtti10.pfb + RELOC/fonts/type1/public/lm/lmtti10.pfm + RELOC/fonts/type1/public/lm/lmtto10.pfb + RELOC/fonts/type1/public/lm/lmtto10.pfm + RELOC/fonts/type1/public/lm/lmu10.pfb + RELOC/fonts/type1/public/lm/lmu10.pfm + RELOC/fonts/type1/public/lm/lmvtk10.pfb + RELOC/fonts/type1/public/lm/lmvtk10.pfm + RELOC/fonts/type1/public/lm/lmvtko10.pfb + RELOC/fonts/type1/public/lm/lmvtko10.pfm + RELOC/fonts/type1/public/lm/lmvtl10.pfb + RELOC/fonts/type1/public/lm/lmvtl10.pfm + RELOC/fonts/type1/public/lm/lmvtlo10.pfb + RELOC/fonts/type1/public/lm/lmvtlo10.pfm + RELOC/fonts/type1/public/lm/lmvtt10.pfb + RELOC/fonts/type1/public/lm/lmvtt10.pfm + RELOC/fonts/type1/public/lm/lmvtto10.pfb + RELOC/fonts/type1/public/lm/lmvtto10.pfm + RELOC/tex/latex/lm/il2lmdh.fd + RELOC/tex/latex/lm/il2lmr.fd + RELOC/tex/latex/lm/il2lmss.fd + RELOC/tex/latex/lm/il2lmssq.fd + RELOC/tex/latex/lm/il2lmtt.fd + RELOC/tex/latex/lm/il2lmvtt.fd + RELOC/tex/latex/lm/l7xlmdh.fd + RELOC/tex/latex/lm/l7xlmr.fd + RELOC/tex/latex/lm/l7xlmss.fd + RELOC/tex/latex/lm/l7xlmssq.fd + RELOC/tex/latex/lm/l7xlmtt.fd + RELOC/tex/latex/lm/l7xlmvtt.fd + RELOC/tex/latex/lm/lmodern.sty + RELOC/tex/latex/lm/ly1lmdh.fd + RELOC/tex/latex/lm/ly1lmr.fd + RELOC/tex/latex/lm/ly1lmss.fd + RELOC/tex/latex/lm/ly1lmssq.fd + RELOC/tex/latex/lm/ly1lmtt.fd + RELOC/tex/latex/lm/ly1lmvtt.fd + RELOC/tex/latex/lm/omllmm.fd + RELOC/tex/latex/lm/omllmr.fd + RELOC/tex/latex/lm/omslmr.fd + RELOC/tex/latex/lm/omslmsy.fd + RELOC/tex/latex/lm/omxlmex.fd + RELOC/tex/latex/lm/ot1lmdh.fd + RELOC/tex/latex/lm/ot1lmr.fd + RELOC/tex/latex/lm/ot1lmss.fd + RELOC/tex/latex/lm/ot1lmssq.fd + RELOC/tex/latex/lm/ot1lmtt.fd + RELOC/tex/latex/lm/ot1lmvtt.fd + RELOC/tex/latex/lm/ot4lmdh.fd + RELOC/tex/latex/lm/ot4lmr.fd + RELOC/tex/latex/lm/ot4lmss.fd + RELOC/tex/latex/lm/ot4lmssq.fd + RELOC/tex/latex/lm/ot4lmtt.fd + RELOC/tex/latex/lm/ot4lmvtt.fd + RELOC/tex/latex/lm/qxlmdh.fd + RELOC/tex/latex/lm/qxlmr.fd + RELOC/tex/latex/lm/qxlmss.fd + RELOC/tex/latex/lm/qxlmssq.fd + RELOC/tex/latex/lm/qxlmtt.fd + RELOC/tex/latex/lm/qxlmvtt.fd + RELOC/tex/latex/lm/t1lmdh.fd + RELOC/tex/latex/lm/t1lmr.fd + RELOC/tex/latex/lm/t1lmss.fd + RELOC/tex/latex/lm/t1lmssq.fd + RELOC/tex/latex/lm/t1lmtt.fd + RELOC/tex/latex/lm/t1lmvtt.fd + RELOC/tex/latex/lm/t5lmdh.fd + RELOC/tex/latex/lm/t5lmr.fd + RELOC/tex/latex/lm/t5lmss.fd + RELOC/tex/latex/lm/t5lmssq.fd + RELOC/tex/latex/lm/t5lmtt.fd + RELOC/tex/latex/lm/t5lmvtt.fd + RELOC/tex/latex/lm/ts1lmdh.fd + RELOC/tex/latex/lm/ts1lmr.fd + RELOC/tex/latex/lm/ts1lmss.fd + RELOC/tex/latex/lm/ts1lmssq.fd + RELOC/tex/latex/lm/ts1lmtt.fd + RELOC/tex/latex/lm/ts1lmvtt.fd +catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/latin-modern +catalogue-ctan /fonts/lm +catalogue-license gfl +catalogue-topics font font-body font-serif font-sans font-proportional font-mono font-type1 font-otf font-cm +catalogue-version 2.005 + +name lm-math +category Package +revision 36915 +shortdesc OpenType maths fonts for Latin Modern +relocated 1 +longdesc Latin Modern Math is a maths companion for the Latin Modern +longdesc family of fonts, in OpenType format. For use with LuaLaTeX or +longdesc XeLaTeX, support is available from the unicode-math package. +containersize 377816 +containerchecksum f2424f917e13aa9805f6738ceed376d6063713dd4c58a5953b5456da4ba81eaba3f0f97963ecf36ead4f68b1311c4c9e30f064002ab8bbf0f5ed3a67db3ead4a +doccontainersize 94656 +doccontainerchecksum 262a99ab29fd22976334eabaed77d3326e87b63014d9e640ef8ea31b14382b273a6435f3059aa235c50f9f829ec28adf754763e17a945265495e9a54e7ee53fa +docfiles size=37 + RELOC/doc/fonts/lm-math/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/lm-math/INSTALL.txt + RELOC/doc/fonts/lm-math/MANIFEST-Latin-Modern-Math.txt + RELOC/doc/fonts/lm-math/README-Latin-Modern-Math.txt + RELOC/doc/fonts/lm-math/math-test-context.tex + RELOC/doc/fonts/lm-math/math-test.tex + RELOC/doc/fonts/lm-math/test-context-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-context-latinmodern_math.tex + RELOC/doc/fonts/lm-math/test-lualatex-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-lualatex-latinmodern_math.tex + RELOC/doc/fonts/lm-math/test-word-latinmodern_math.docx + RELOC/doc/fonts/lm-math/test-word-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-xelatex-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-xelatex-latinmodern_math.tex +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-license gfl +catalogue-topics font font-maths font-otf +catalogue-version 1.959 + +name lmake +category Package +revision 25552 +shortdesc Process lists to do repetitive actions +relocated 1 +longdesc The package provides commands to simplify processing of +longdesc sequential list-like structures, such as making a series of +longdesc 'similar' commands from a list of names. +containersize 2016 +containerchecksum 3613e9d53808b2d1e326175c28acb672c1f244b2e00ea1d544e1e05c73e2a93e49b5e8b187a8a73e87ffbb00c22235781983a2c0a733a6ae5598db12c278a763 +doccontainersize 269032 +doccontainerchecksum 08fa487d9151ea6a49a73044d1f6b41ed0c636a69e04a2c9f04bce996f915e9d267383a6fc374f3292c01244981fdebf6d9fc462ee0fc151ded2601e4554593b +docfiles size=72 + RELOC/doc/latex/lmake/README details="Readme" + RELOC/doc/latex/lmake/lmake.pdf details="Package documentation" +srccontainersize 6828 +srccontainerchecksum d18894108d2b4b5d46d4e212648b6c7d76894faf4dd45555371d17df5f6d186d4d2b5c8878e745520441eba2459c5fce320bef28e23bb59c09f01fee44a6041e +srcfiles size=6 + RELOC/source/latex/lmake/lmake.dtx + RELOC/source/latex/lmake/lmake.ins +runfiles size=2 + RELOC/tex/latex/lmake/lmake.sty +catalogue-ctan /macros/latex/contrib/lmake +catalogue-license lppl1.2 +catalogue-topics macro-supp +catalogue-version 1.0 + +name lni +category Package +revision 58061 +shortdesc Official class for the "Lecture Notes in Informatics" +relocated 1 +longdesc This is the official version of the class "lni" for submissions +longdesc to the Lecture Notes in Informatics published by the +longdesc Gesellschaft fur Informatik. To use it, download the file +longdesc lni-author-template.tex and edit it in your favorite LaTeX +longdesc editor. +containersize 11792 +containerchecksum 5b9de3838172a042473eb03ccc26cfa701c027c33db9c943d4efaa00b22854c67b17e43d20ae8fcb2960444e817c05860a67aea50ed7047cd7a4f90b059f59c3 +doccontainersize 367248 +doccontainerchecksum 87ad80c4a70772177ddc7cfe9b90c0fcfe3d7bdfd583cde52837b8fcfc85aa1fd21fa11ea562fa7169adc7ae954185696c4fa8bf655916e149f57a95bae4627e +docfiles size=97 + RELOC/doc/latex/lni/CHANGELOG.md + RELOC/doc/latex/lni/CONTRIBUTING.md + RELOC/doc/latex/lni/README.md details="Readme" + RELOC/doc/latex/lni/lni-author-template.tex + RELOC/doc/latex/lni/lni-paper-example-de.bib + RELOC/doc/latex/lni/lni-paper-example-de.tex + RELOC/doc/latex/lni/lni.pdf details="Package documentation" +srccontainersize 24720 +srccontainerchecksum be7bf7271556755196f8921c0d261f308dfc20e0df81261015c4001c53b537948d1328ee33a856c13e22dce7ac6056904f2b2989073f95ea5d61d226ac7977f0 +srcfiles size=24 + RELOC/source/latex/lni/lni.dtx + RELOC/source/latex/lni/lni.ins +runfiles size=18 + RELOC/bibtex/bst/lni/lni.bst + RELOC/bibtex/bst/lni/lnig.bst + RELOC/tex/latex/lni/lni.cls +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-license lppl1.3c +catalogue-topics journalpub class +catalogue-version 1.7 + +name lobster2 +category Package +revision 56019 +shortdesc Lobster Two fonts, with support for all LaTeX engines +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Lobster Two family of fonts, designed by Pablo +longdesc Impallari. This is a family of script fonts with many ligatures +longdesc and terminal forms; for the best results, use XeLaTeX or +longdesc LuaLaTeX. There are two weights and italic variants for both. +execute addMap LobsterTwo.map +containersize 514092 +containerchecksum d104589256496cab2cd55625f9ea252d21971eb2bb97ec91a9515ea8fd8d749ad02d1234c16bc3bd378f2a509df510951fc2764a73d839d982b630505ef44041 +doccontainersize 100416 +doccontainerchecksum 330f73cbc97686cb1ed53dc2c66424cbdc62b5728790b7fc1256ee8b858d991fcd897fa47c9bd6c0fa9979ef13a2b47e004c61d06a52e88b487e394fc0de0b84 +docfiles size=28 + RELOC/doc/fonts/lobster2/OFL.txt + RELOC/doc/fonts/lobster2/README details="Readme" + RELOC/doc/fonts/lobster2/lobster2-samples.pdf details="Package documentation" + RELOC/doc/fonts/lobster2/lobster2-samples.tex +runfiles size=299 + RELOC/fonts/enc/dvips/lobster2/lbstr_2rydtx.enc + RELOC/fonts/enc/dvips/lobster2/lbstr_bucufw.enc + RELOC/fonts/enc/dvips/lobster2/lbstr_pvoz5h.enc + RELOC/fonts/enc/dvips/lobster2/lbstr_t7yaon.enc + RELOC/fonts/map/dvips/lobster2/LobsterTwo.map + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-Bold.otf + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-BoldItalic.otf + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-Italic.otf + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-Regular.otf + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Bold-lf-ts1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Italic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/Lbstr-Regular-lf-ts1.tfm + RELOC/fonts/type1/impallari/lobster2/Lbstr-Bold.pfb + RELOC/fonts/type1/impallari/lobster2/Lbstr-BoldItalic.pfb + RELOC/fonts/type1/impallari/lobster2/Lbstr-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/impallari/lobster2/Lbstr-BoldLCDFJ.pfb + RELOC/fonts/type1/impallari/lobster2/Lbstr-Italic.pfb + RELOC/fonts/type1/impallari/lobster2/Lbstr-ItalicLCDFJ.pfb + RELOC/fonts/type1/impallari/lobster2/Lbstr-Regular.pfb + RELOC/fonts/type1/impallari/lobster2/Lbstr-RegularLCDFJ.pfb + RELOC/fonts/vf/impallari/lobster2/Lbstr-Bold-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Bold-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Bold-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Bold-lf-ts1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-BoldItalic-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Italic-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Italic-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Italic-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Italic-lf-ts1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Regular-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Regular-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Regular-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/Lbstr-Regular-lf-ts1.vf + RELOC/tex/latex/lobster2/LY1Lbstr-LF.fd + RELOC/tex/latex/lobster2/LobsterTwo.sty + RELOC/tex/latex/lobster2/OT1Lbstr-LF.fd + RELOC/tex/latex/lobster2/T1Lbstr-LF.fd + RELOC/tex/latex/lobster2/TS1Lbstr-LF.fd +catalogue-contact-repository https://github.com/impallari/The-Lobster-Font +catalogue-ctan /fonts/lobster2 +catalogue-license ofl lppl +catalogue-topics font font-calligraphic font-proportional font-otf font-type1 font-supp font-t1enc + +name locality +category Package +revision 20422 +shortdesc Various macros for keeping things local +relocated 1 +longdesc A toolbox of macros designed to allow the LaTeX programmer to +longdesc work around some of the restrictions of the TeX grouping +longdesc mechanisms. The present release offers a preliminary view of +longdesc the package; not all of its facilities are working optimally +containersize 2412 +containerchecksum c7fde4ad74b339d340a046a4f59ff73da45942631c6b68275d365c18ee80b213d18b84540b8ee535f012aa18ef559e88b1df3fcff4560d241ee1147695824a2e +doccontainersize 175696 +doccontainerchecksum 5b7fde689fc764dc75930522416cfeb51ec30eec64080b289c085be4b00a0da1c5d6d79d2734502ca8a329bc2935216a8b298495e0ad1ac8331c6d3a5718bb5f +docfiles size=48 + RELOC/doc/latex/locality/README details="Readme" + RELOC/doc/latex/locality/changes.txt + RELOC/doc/latex/locality/locality.pdf details="Package documentation" +srccontainersize 6612 +srccontainerchecksum bb1e55107d9b16460b8990f35461bbe775c674ecb2dabb78d19514e365cc97f0b03ad5884b310edc60f2fea9366ee2633ddf4280165cab562038e024ea9267fd +srcfiles size=8 + RELOC/source/latex/locality/locality.dtx + RELOC/source/latex/locality/locality.ins +runfiles size=3 + RELOC/tex/latex/locality/locality.sty +catalogue-ctan /macros/latex/contrib/locality +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.2 + +name localloc +category Package +revision 56496 +shortdesc Macros for localizing TeX register allocations +relocated 1 +longdesc This package approaches the problem of the shortage of +longdesc registers, by providing a mechanism for local allocation. The +longdesc package works with Plain TeX, LaTeX, and LaTeX 2.09. +containersize 2436 +containerchecksum abd3aaa28d6c90182990890ebc8aa0ab1d71833549e9a1ed9a09d7fc2db01cad45efb231cb8d3b09a849c948a6f7ba309954d38152af88fa8cd3e38cc857fe68 +doccontainersize 241332 +doccontainerchecksum 40fa07b0d5a5fe0603a087ce9440dd6d95ab188b83b4adf847d7145f9e1f1cc8e2d8ef49c7ee206e341db26afd885308ef349ea5a8c2b826ba6664c347c7d8c5 +docfiles size=66 + RELOC/doc/generic/localloc/localloc.README details="Package Readme" + RELOC/doc/generic/localloc/localloc.pdf details="Package documentation" + RELOC/doc/generic/localloc/localtst.tex +srccontainersize 11672 +srccontainerchecksum 9a19531358e4809a90c1e571a8f7c507ec1b0807a009627ad2dfa3ebdf97fb749a4f57441b0855e44cae93ccbdc64e79b640de078fb9ccdca1de891a2d156eae +srcfiles size=11 + RELOC/source/generic/localloc/localloc.drv + RELOC/source/generic/localloc/localloc.dtx +runfiles size=2 + RELOC/tex/generic/localloc/localloc.sty +catalogue-ctan /macros/generic/localloc +catalogue-license other-free +catalogue-topics macro-supp macro-gen + +name logbox +category Package +revision 24499 +shortdesc e-TeX showbox facilities for exploration purposes +relocated 1 +longdesc The command \logbox does \showbox without stopping the +longdesc compilation. The package's main command is \viewbox*: the box +longdesc is typeset (copied) with its dimensions, and its contents are +longdesc logged in the .log file. +containersize 1444 +containerchecksum 0c6f9d401c81344465d6eaa6eb6e655443c4af1622bfb6751db508638e2625aba7b5e77780fbb6453eee40b8a7ddba84d70ceca8882049779db61f83e7a15aee +doccontainersize 588824 +doccontainerchecksum 21f379c88638ee8499e7e47abb0850822a08d520aabb352e0f85ed0c38950aa71b4f9b3d430c31193de5640a915d0c84dc28fba71443d3f2e461a2dac53e2b9a +docfiles size=160 + RELOC/doc/latex/logbox/README details="Readme" + RELOC/doc/latex/logbox/logbox.pdf details="Package documentation" + RELOC/doc/latex/logbox/logbox.png +srccontainersize 7324 +srccontainerchecksum 3123ed1fef39d4a252159c65e0cf938933f2ab4c693d8f7364f20e60accb20e32fcd9da8828019a8cefae1fb874605ffbcf88dd7123fff91871858cb5694a985 +srcfiles size=8 + RELOC/source/latex/logbox/logbox.drv + RELOC/source/latex/logbox/logbox.dtx + RELOC/source/latex/logbox/logbox.ins +runfiles size=1 + RELOC/tex/latex/logbox/logbox.sty +catalogue-ctan /macros/latex/contrib/logbox +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.0 + +name logical-markup-utils +category Package +revision 15878 +shortdesc Packages for language-dependent inline quotes and dashes +relocated 1 +longdesc The bundle contains two packages: quoted, for inserting +longdesc quotation marks; and onedash, for inserting dashes. Each +longdesc package takes a language name as an option; accepted language +longdesc options are american, british, german and polish. +containersize 1884 +containerchecksum 87f7fc345935804705ab25ab010376fb72bc4722c75bb115b0c9dd0e0a51fc8bdd6dd4051b76dd083ec07d80b8c59c5d18423da55e0430db7a9f94ad0bd45906 +doccontainersize 12844 +doccontainerchecksum 80c44068a6e474071e40a0bf3dc67f0201b21eb84a041fad8423c59c9e34ce138833c54ead638979357dc3026eea55da034daa05e71a56ecabe701ebf53faf24 +docfiles size=11 + RELOC/doc/latex/logical-markup-utils/COPYING + RELOC/doc/latex/logical-markup-utils/README details="Readme" + RELOC/doc/latex/logical-markup-utils/TODO +runfiles size=2 + RELOC/tex/latex/logical-markup-utils/onedash.sty + RELOC/tex/latex/logical-markup-utils/quoted.sty +catalogue-also csquotes +catalogue-ctan /macros/latex/contrib/logical-markup-utils +catalogue-license gpl3 +catalogue-topics quote-marks + +name logicproof +category Package +revision 33254 +shortdesc Box proofs for propositional and predicate logic +relocated 1 +longdesc A common style of proof used in propositional and predicate +longdesc logic is Fitch proofs, in which each line of the proof has a +longdesc statement and a justification, and subproofs within a larger +longdesc proof have boxes around them. The package provides environments +longdesc for typesetting such proofs and boxes. It creates proofs in a +longdesc style similar to that used in "Logic in Computer Science" by +longdesc Huth and Ryan. +containersize 2016 +containerchecksum d5b15ee5f35a9ef94618f8b092e97ccc4f1959a617c2e604b99ba56eef14c4a1a078d66f2c77d02239289e30878293ea6c9ff4134bd003331fc41fd3db19cec5 +doccontainersize 54576 +doccontainerchecksum bf8a33c5db05a30cb4f520fa2f73f572a90c3803c4b6dc1709f9e2c80f67e32e7665ce898852dedcd3daa8974bf909034d06f805ce473318f0f512645ceaf9da +docfiles size=15 + RELOC/doc/latex/logicproof/README details="Readme" + RELOC/doc/latex/logicproof/logicproof.pdf details="Package documentation" +srccontainersize 7728 +srccontainerchecksum 4cde464059a65161c6ab069ef0c8905e4e6cefb7ebfd8c7c3b2af909209af4a911dd1bb0daee5b27868305660601187fe7a105660b395de98ae3d30864f012ea +srcfiles size=8 + RELOC/source/latex/logicproof/logicproof.dtx + RELOC/source/latex/logicproof/logicproof.ins +runfiles size=2 + RELOC/tex/latex/logicproof/logicproof.sty +catalogue-ctan /macros/latex/contrib/logicproof +catalogue-license lppl1.3 +catalogue-topics logic + +name logicpuzzle +category Package +revision 34491 +shortdesc Typeset (grid-based) logic puzzles +relocated 1 +longdesc The package allows the user to typeset various logic puzzles. +longdesc At the moment the following puzzles are supported: 2D-Sudoku +longdesc (aka Magiequadrat, Diagon, ...), Battleship (aka Bimaru, +longdesc Marinespiel, Batalla Naval, ...), Bokkusu (aka Kakurasu, +longdesc Feldersummenratsel, ...), Bridges (akak Bruckenbau, Hashi, +longdesc ...), Chaos Sudoku, Four Winds (aka Eminent Domain, +longdesc Lichtstrahl, ...), Hakyuu (aka Seismic, Ripple Effect, ...), +longdesc Hitori, Kakuro, Kendoku (aka Mathdoku, Calcudoku, Basic, +longdesc MiniPlu, Ken Ken, Square Wisdom, Sukendo, Caldoku, ..., Killer +longdesc Sudoku (aka Samunapure, Sum Number Place, Sumdoku, +longdesc Gebietssummen, ...), Laser Beam (aka Laserstrahl, ...), Magic +longdesc Labyrinth (aka Magic Spiral, Magisches Labyrinth, ...), Magnets +longdesc (aka Magnetplatte, Magnetfeld, ...), Masyu (aka Mashi, +longdesc {White|Black} Pearls, ...), Minesweeper (aka Minensuche, ...), +longdesc Nonogram (aka Griddlers, Hanjie, Tsunami, Logic Art, Logimage, +longdesc ...), Number Link (aka Alphabet Link, Arukone, Buchstabenbund, +longdesc ...), Resuko, Schatzsuche, Skyline (aka Skycrapers, +longdesc Wolkenkratzer, Hochhauser, ...), including Skyline Sudoku and +longdesc Skyline Sudoku (N*N) variants, Slitherlink (aka Fences, Number +longdesc Line, Dotty Dilemma, Sli-Lin, Takegaki, Great Wall of China, +longdesc Loop the Loop, Rundweg, Gartenzaun, ...), Star Battle (aka +longdesc Sternenschlacht, ...), Stars and Arrows (aka Sternenhimmel, +longdesc ...), Sudoku, Sun and Moon (aka Sternenhaufen, Munraito, ...), +longdesc Tents and Trees (aka Zeltlager, Zeltplatz, Camping, ...), and +longdesc Tunnel. +containersize 15228 +containerchecksum 2c642c7aa6d6f12e51228432f8bd9fab906ff4dd3354a49f636582a065bff0f534222161ce11306ff6bf3e354a9ca6f6394cf9826b321ac94e9ef5ee8c0621ff +doccontainersize 810144 +doccontainerchecksum 872a72ed13f7dcb43df3bd2f2b7bd504e3e430030115faadf0a130d2fd94331a335c4853e37c78e4b8aa7c59a44bfd87ad2a484b1b836c2a7526b97ef26ddd56 +docfiles size=284 + RELOC/doc/latex/logicpuzzle/README details="Readme" + RELOC/doc/latex/logicpuzzle/logicpuzzle.dtx + RELOC/doc/latex/logicpuzzle/logicpuzzle.pdf details="Package documentation" + RELOC/doc/latex/logicpuzzle/manifest.txt + RELOC/doc/latex/logicpuzzle/qrcode.png +runfiles size=32 + RELOC/scripts/logicpuzzle/createlpsudoku + RELOC/scripts/logicpuzzle/lpsmag + RELOC/scripts/logicpuzzle/simple.smc + RELOC/tex/latex/logicpuzzle/logicpuzzle.sty + RELOC/tex/latex/logicpuzzle/lpenv.sty +catalogue-contact-repository https://bitbucket.org/kleberj/logicpuzzle/ +catalogue-ctan /graphics/pgf/contrib/logicpuzzle +catalogue-license lppl1.3 +catalogue-topics pgf-tikz games +catalogue-version 2.5 + +name logix +category Package +revision 57457 +shortdesc Supplement to the Unicode math symbols +relocated 1 +longdesc The package provides a Unicode font with over 4,000 symbols to +longdesc supplement the Unicode math symbols. It is compatible with and +longdesc complements the AMS STIX2 math fonts, but focuses on new +longdesc symbols and symbol variants more suited to work in logic. +containersize 2090608 +containerchecksum fc499a8c77e2d3a285888ee01837c88077906fc57ac73223f5887796e0f32bf4179b5b2df1a87d4535b59137ca12b6dc9ac1f9084dbd158b038ae622aca92eb9 +doccontainersize 1211856 +doccontainerchecksum b483c80466b883cbc56fdc5807420b01ee5c720d262908d0ec5bd9b61a51a15be5e1de90097026b1d2e87b54d19cf3dcafec33b5d8075edff46f2b4a6bfb6bb6 +docfiles size=1597 + RELOC/doc/fonts/logix/CHANGELOG + RELOC/doc/fonts/logix/README details="Readme" + RELOC/doc/fonts/logix/logix.math + RELOC/doc/fonts/logix/logix.pdf details="Package documentation" + RELOC/doc/fonts/logix/logix.tex + RELOC/doc/fonts/logix/logix.vfc + RELOC/doc/fonts/logix/logixMono.vfc +runfiles size=831 + RELOC/fonts/opentype/public/logix/logix.eot + RELOC/fonts/opentype/public/logix/logix.otf + RELOC/fonts/opentype/public/logix/logix.woff + RELOC/fonts/opentype/public/logix/logix.woff2 + RELOC/fonts/opentype/public/logix/logixMono.eot + RELOC/fonts/opentype/public/logix/logixMono.otf + RELOC/fonts/opentype/public/logix/logixMono.woff + RELOC/fonts/opentype/public/logix/logixMono.woff2 + RELOC/fonts/truetype/public/logix/logix.ttf + RELOC/fonts/truetype/public/logix/logixMono.ttf + RELOC/tex/latex/logix/logix.sty +catalogue-ctan /fonts/logix +catalogue-license ofl lppl1.3c +catalogue-topics font font-maths font-symbol-maths font-otf font-ttf font-supp logic +catalogue-version 1.08 + +name logpap +category Package +revision 15878 +shortdesc Generate logarithmic graph paper with LaTeX +relocated 1 +longdesc The logpap package provides four macros for drawing +longdesc logarithmic-logarithmic, logarithmic-linear, linear-logarithmic +longdesc and (because it was easy to implement) linear-linear graph +longdesc paper with LaTeX. +containersize 5880 +containerchecksum 159876dc23e96f65fbb29278e30baa497489331fcf52ebda2adcb19098c2519044ce54ee590c3d91f80bf27b6df0a49aff455da54748c3e04c7e81c2be108e4b +doccontainersize 67724 +doccontainerchecksum f85a52b9d95247ce5eb537cc677aff184a434a41fa9c3433955b43eec3e3cf2deaa701718fe77dd3b3cfad5811c5275a097d980e157130705ad5cd3f14276dff +docfiles size=23 + RELOC/doc/latex/logpap/README details="Package Readme" + RELOC/doc/latex/logpap/example.pdf details="Package documentation" + RELOC/doc/latex/logpap/example.tex +srccontainersize 22100 +srccontainerchecksum c6c2127c2789c2717072d8d08043ac73a86248d71dd542d38dcedb3a36947f7ceb99f0246787e279b22fa03dea554a6afde6438ffda3fda6143027a7e6f1d78a +srcfiles size=28 + RELOC/source/latex/logpap/logpap.dtx + RELOC/source/latex/logpap/logpap.ins +runfiles size=7 + RELOC/tex/latex/logpap/logpap.sty +catalogue-ctan /macros/latex/contrib/logpap +catalogue-license lppl +catalogue-topics diagram +catalogue-version 0.6 + +name logreq +category Package +revision 53003 +shortdesc Support for automation of the LaTeX workflow +relocated 1 +longdesc The package helps to automate a typical LaTeX workflow that +longdesc involves running LaTeX several times, running tools such as +longdesc BibTeX or makeindex, and so on. It will log requests like +longdesc "please rerun LaTeX" or "please run BibTeX on file X" to an +longdesc external XML file which lists all open tasks in a +longdesc machine-readable format. Compiler scripts and integrated LaTeX +longdesc editing environments may parse this file to determine the next +longdesc steps in the workflow in a way that is more efficient than +longdesc parsing the main log file. In sum, the package will do two +longdesc things: enable package authors to use LaTeX commands to issue +longdesc requests, collect all requests from all packages and write them +longdesc to an external XML file at the end of the document. +depend etoolbox +containersize 3212 +containerchecksum df61c0c6c0b8520f5ec38780d8eb69cfd5fccd21f5120e48eee71e02b004d3da4cc9cb9371a36766852e3ca09a3db86655f1a2639a49741f00134cff1246acd2 +doccontainersize 3792 +doccontainerchecksum fa9277da81dfb3aa235bd795780e8d3e629558fede90fa9234528b50a11507e59e65e49a0ca787af037186890392dfd45bf6de7bd859cec369626fb7d57b543f +docfiles size=12 + RELOC/doc/latex/logreq/README details="Readme" + RELOC/doc/latex/logreq/examples/01-basic.run.xml + RELOC/doc/latex/logreq/examples/01-basic.tex + RELOC/doc/latex/logreq/examples/02-index.run.xml + RELOC/doc/latex/logreq/examples/02-index.tex + RELOC/doc/latex/logreq/examples/03-biblatex+bibtex8.run.xml + RELOC/doc/latex/logreq/examples/03-biblatex+bibtex8.tex + RELOC/doc/latex/logreq/examples/04-biblatex+bibtex+refsections.run.xml + RELOC/doc/latex/logreq/examples/04-biblatex+bibtex+refsections.tex + RELOC/doc/latex/logreq/examples/05-biblatex+biber.run.xml + RELOC/doc/latex/logreq/examples/05-biblatex+biber.tex +runfiles size=3 + RELOC/tex/latex/logreq/logreq.def + RELOC/tex/latex/logreq/logreq.sty +catalogue-ctan /macros/latex/contrib/logreq +catalogue-license lppl1.3 +catalogue-topics compilation +catalogue-version 1.0 + +name lollipop +category Package +revision 45678 +shortdesc TeX made easy +longdesc Lollipop is "TeX made easy" -- it is a macro package that +longdesc functions as a toolbox for writing TeX macros. Its main aim is +longdesc to make macro writing so easy that implementing a fully new +longdesc layout in TeX would become a matter of less than an hour for an +longdesc average document. The aim is that such a task could be +longdesc accomplished by someone with only a very basic training in TeX +longdesc programming. Thus, Lollipop aims to make structured text +longdesc formatting available in environments where typical users would +longdesc switch to WYSIWYG packages for the freedom that such a +longdesc mechanism offers. In addition, development of support for +longdesc Lollipop documents written in RTL languages (such as Persian) +longdesc is underway. +depend cm +depend hyphen-base +depend lollipop.ARCH +execute AddFormat name=lollipop engine=tex options="lollipop.ini" fmttriggers=cm,hyphen-base +containersize 51304 +containerchecksum 81557b83acfa4ad42dfa6fb1a65ea42bc33885da444ee23bc3c67a899df7b3ac2c19a1607305b5ec10b503980365c5d29ac3598339fc186a05417ea5bca60a78 +doccontainersize 341356 +doccontainerchecksum 206dee2be733e3ac04b5b259862b60fb3641fc44ea182da601ca54a010ff8e42f254dd01c03be7bcdd2a6258110c567a596ee82b4eb74d04ca8ed70e50cd6a86 +docfiles size=136 + texmf-dist/doc/otherformats/lollipop/README details="Readme" + texmf-dist/doc/otherformats/lollipop/manual/address.tex + texmf-dist/doc/otherformats/lollipop/manual/appendix.tex + texmf-dist/doc/otherformats/lollipop/manual/btxmac.tex + texmf-dist/doc/otherformats/lollipop/manual/comm.tex + texmf-dist/doc/otherformats/lollipop/manual/comment.tex + texmf-dist/doc/otherformats/lollipop/manual/example.tex + texmf-dist/doc/otherformats/lollipop/manual/extern.tex + texmf-dist/doc/otherformats/lollipop/manual/head.tex + texmf-dist/doc/otherformats/lollipop/manual/list.tex + texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.bib + texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.pdf details="Package manual" + texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.tex + texmf-dist/doc/otherformats/lollipop/manual/mandefs.tex + texmf-dist/doc/otherformats/lollipop/manual/opt.tex + texmf-dist/doc/otherformats/lollipop/manual/out.tex + texmf-dist/doc/otherformats/lollipop/manual/prelim.tex + texmf-dist/doc/otherformats/lollipop/manual/struct.tex + texmf-dist/doc/otherformats/lollipop/manual/titlepag.tex + texmf-dist/doc/otherformats/lollipop/manual/trace.tex + texmf-dist/doc/otherformats/lollipop/tex-inde.xen +runfiles size=57 + texmf-dist/tex/lollipop/lollipop-define.tex + texmf-dist/tex/lollipop/lollipop-document.tex + texmf-dist/tex/lollipop/lollipop-float.tex + texmf-dist/tex/lollipop/lollipop-fontdefs.tex + texmf-dist/tex/lollipop/lollipop-fonts.tex + texmf-dist/tex/lollipop/lollipop-heading.tex + texmf-dist/tex/lollipop/lollipop-lists.tex + texmf-dist/tex/lollipop/lollipop-output.tex + texmf-dist/tex/lollipop/lollipop-plain.tex + texmf-dist/tex/lollipop/lollipop-text.tex + texmf-dist/tex/lollipop/lollipop-tools.tex + texmf-dist/tex/lollipop/lollipop.ini + texmf-dist/tex/lollipop/lollipop.tex +catalogue-contact-bugs https://github.com/bidi-tex/lollipop/issues +catalogue-contact-repository https://github.com/bidi-tex/lollipop +catalogue-ctan /macros/lollipop +catalogue-license gpl3 +catalogue-topics format +catalogue-version 1.07 + +name lollipop.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of lollipop +containersize 324 +containerchecksum 4fa520616bbd96b729e4988991ea19480b239b667528f074ffb455ec863824dde0c718b9f8974a6d087e6bee616f5fac66ccff76773ec641ae6be1b2a31dc23f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/lollipop + +name lollipop.amd64-freebsd +category Package +revision 41465 +shortdesc amd64-freebsd files of lollipop +containersize 324 +containerchecksum 31c133cbe8fd563b8eba0c9d2623b514a95d7cb827e19b78962c326b89282d1e766d1ac83c867c18a3208f259fd5270946ef6efebaa3e09cf6f4696dc5d3c602 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/lollipop + +name lollipop.amd64-netbsd +category Package +revision 41257 +shortdesc amd64-netbsd files of lollipop +containersize 320 +containerchecksum 25386e918e90ef4aecc84c8688d6e1fdcbe7e4204c6f8ee6dbae82afd9e347ee1bc0acaed06f0de6f5e57018c9bf4d06ed4f05723893341e328474d98bc61bdf +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/lollipop + +name lollipop.armhf-linux +category Package +revision 41465 +shortdesc armhf-linux files of lollipop +containersize 324 +containerchecksum dc1d8af1f8ffd5a4dbe56b89845f99cf1b0ea384f53f42ec84edf313340122d7dbdf9a6b5efb94969b35734b564a0d39dc2075591da94b46089fb5a902dffa42 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/lollipop + +name lollipop.i386-cygwin +category Package +revision 41465 +shortdesc i386-cygwin files of lollipop +containersize 324 +containerchecksum 2247ebd3a3ecca18db6c8565bfa8d6172b0de35645edb640f679fe1f974efa0036a3915a176b8d7c5105999fa6fd3889c10a473ed7b013bb0b0650b912aed840 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/lollipop + +name lollipop.i386-freebsd +category Package +revision 41465 +shortdesc i386-freebsd files of lollipop +containersize 324 +containerchecksum 5a129efeb208acf4fb3e87d8b2c34fa0922130f5a10e6aecdc57e7c0cb4b15c4f859ead760c4e71942b5fe8da4b1a421c1155e1f8363023222b900a4ad30cc04 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/lollipop + +name lollipop.i386-linux +category Package +revision 41465 +shortdesc i386-linux files of lollipop +containersize 320 +containerchecksum 943855ec5e30857ccd4d7b2ade241d8eb32f5ff270633b3c89e34f574066462064917124901183fc35467946d1a487fa818fe09aef07f1c890b6db28f3a8c9f6 +binfiles arch=i386-linux size=1 + bin/i386-linux/lollipop + +name lollipop.i386-netbsd +category Package +revision 41221 +shortdesc i386-netbsd files of lollipop +containersize 320 +containerchecksum d002ea134db014dbd0f8784ac631b06e1badefa81f90452ca2e0333b855e3f2548ccf35ede4341ec90b9c853651508f206bfce2cd8f8bc67c4d249d44b3a809a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/lollipop + +name lollipop.i386-solaris +category Package +revision 41465 +shortdesc i386-solaris files of lollipop +containersize 320 +containerchecksum 69bcbfd6aa39870f22e42993e2fd3c1016b7c460afe89e9938174726f2cc983232b39b6910fdcce8c208e4ec55f1d2a735a9de96568c43b07f4c746a6f789f21 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/lollipop + +name lollipop.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of lollipop +containersize 320 +containerchecksum 74dd6244a1cd92656f60bd152a099fb455e4f0381ddb3a9306dd25c7b9576a40f11a1e81ffd80ea4f2f8e48f5c6a6af0eed49398718a521bfb631a0079719dd3 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/lollipop + +name lollipop.win32 +category Package +revision 57883 +shortdesc win32 files of lollipop +containersize 864 +containerchecksum 1866c633d511d6272a4ccd2e3e46360294d0fa555a7d2060b07d52ce732bd06e510f0a95f34e481ba39378f4878d8c2a219b7cb19508250042a4c0b4d3b2bf1b +binfiles arch=win32 size=1 + bin/win32/lollipop.exe + +name lollipop.x86_64-cygwin +category Package +revision 41465 +shortdesc x86_64-cygwin files of lollipop +containersize 324 +containerchecksum dd4f5dda60dd193038f01a4cca31e6e848f3e2b034d8db864545e041195ce8b05675ab73a23d429db69a54ab3dc77fd63ffe2b07bb2dd90493eb644a161346b2 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/lollipop + +name lollipop.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of lollipop +containersize 332 +containerchecksum 5d86c49a27dc63564322e81340970b31c235681c6b5d86fd63e461b0c99c51ced95d25cae77bc37ba14ed027b35ab249073a84bf6a6929dfb7d988cdc58f791b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/lollipop + +name lollipop.x86_64-linux +category Package +revision 41465 +shortdesc x86_64-linux files of lollipop +containersize 320 +containerchecksum 130f488f1cfbe67d8192d1c52e08ac6a31a79386f5081ec2c45adf13aed3e6f7764d275aa078e230e1e6c385d698f7aaafaacf664e4eb741cdf2fc5754710ea0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/lollipop + +name lollipop.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of lollipop +containersize 328 +containerchecksum 5a0d093f8abf3beb0c3f6112b6bdabdeb9e7c1f27a3c5f1e9392ccbb73ba7e5ddf6cdbb12f34a2b2fb47c3f04d5324fd5990251d15e4400a4d281785ad4f7fc4 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/lollipop + +name lollipop.x86_64-solaris +category Package +revision 41465 +shortdesc x86_64-solaris files of lollipop +containersize 324 +containerchecksum 526966d10b71de15c56097a94fd9f03a25bb5ba2072aa4ae0c4eb67db4f6c9db06e809e04a0fe852d5a1821fdaca260e0efc930ac00366be334de0cd4359eaca +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/lollipop + +name longdivision +category Package +revision 55117 +shortdesc Typesets long division +relocated 1 +longdesc This package executes the long division algorithm and typesets +longdesc the solutions. The dividend must be a positive decimal number +longdesc and the divisor must be a positive integer. Repeating decimals +longdesc is handled correctly, putting a bar over the repeated part of +longdesc the decimal. Dividends up to 20 digits long are handled +longdesc gracefully (though the typeset result will take up about a +longdesc page), and dividends between 20 and 60 digits long slightly +longdesc less gracefully. The package defines two macros, \longdivision +longdesc and \intlongdivision. Each takes two arguments, a dividend and +longdesc a divisor. \longdivision keeps dividing until the remainder is +longdesc zero, or it encounters a repeated remainder. \intlongdivision +longdesc stops when the dividend stops (though the dividend doesn't have +longdesc to be an integer). This package depends on the xparse package +longdesc from the l3packages bundle. +containersize 10680 +containerchecksum 13595c314837df4581f424d753b4afdba62f7d9c4ab4d43d1b756d18ace7cd5a53cb7783366c0e07d237333d5b5eb9e85a91d1041055707cdd7de225d748080d +doccontainersize 141716 +doccontainerchecksum 71f18b1f4f87def00c504b2dd67e8f7c2d9510f3f2459e8dbf1380948e501eb9b2ba4badaa6cfd2cb6440a0c6d0c9bb048c21664e6b37f85cd49c6a8a0a39d86 +docfiles size=43 + RELOC/doc/latex/longdivision/README.md details="Readme" + RELOC/doc/latex/longdivision/longdivision_manual.pdf details="Package documentation" + RELOC/doc/latex/longdivision/longdivision_manual.tex +runfiles size=11 + RELOC/tex/latex/longdivision/longdivision.sty +catalogue-also longdiv +catalogue-contact-repository https://github.com/hoodmane/longdivision +catalogue-ctan /macros/latex/contrib/longdivision +catalogue-license lppl +catalogue-topics maths arithmetic expl3 +catalogue-version 1.2.0 + +name longfbox +category Package +revision 39028 +shortdesc Draw framed boxes with standard CSS attributes that can break over multiple pages +relocated 1 +longdesc The longfbox package provides framed boxes that can be +longdesc customized using standard CSS attributes. It was written to +longdesc support precise rendering of Madoko documents in LaTeX. +containersize 17084 +containerchecksum 43164941fd7ad91fa304aee01c3d34ec1faf8672549ae3b2711bdd4c91ae57ecbdcd8b29080d6c96cc64a73f7d7fd74c8621a70604a29dc1474f3c922c34a4c7 +doccontainersize 339604 +doccontainerchecksum fb319a679631e56122535b99a187d3c2ad5400d4a1f00275b73420c43f98e8b421a4b86f77b868c68edb39870132117de3310a00bde82f6387559c6adf34a8a7 +docfiles size=146 + RELOC/doc/latex/longfbox/README details="Readme" + RELOC/doc/latex/longfbox/longfbox.html + RELOC/doc/latex/longfbox/longfbox.pdf details="Package documentation" +runfiles size=23 + RELOC/tex/latex/longfbox/longbox.sty + RELOC/tex/latex/longfbox/longfbox.sty +catalogue-ctan /macros/latex/contrib/longfbox +catalogue-license lppl1.3 +catalogue-topics boxing decoration +catalogue-version 1.0 + +name longfigure +category Package +revision 34302 +shortdesc Provides a figure-like environment that break over pages +relocated 1 +longdesc The longfigure package uses and relabels components of the +longdesc well-known longtable package, written by David Carlisle, to +longdesc provide a table-like environment that can display a stream of +longdesc figures as a single figure that can break across pages. +containersize 4512 +containerchecksum 984f10c8a2196b490dbffb015f2aa6449e8db6475c2f02dd71c92d5a3f6cb5dccb98a4c4f923f6efd3bbb1056aa8e64f324e3d8a051c11879677addaed8d3f06 +doccontainersize 443792 +doccontainerchecksum 1f949e3ada113710f40b6d2960bb01ffffd3f9d26a65fd0482644da2a20c5375454c430e1c7d3b74cf872cbe486ccab9a4e71567592da5d39ad9e72102c382db +docfiles size=111 + RELOC/doc/latex/longfigure/README details="Readme" + RELOC/doc/latex/longfigure/longfigure.pdf details="Package documentation" +srccontainersize 8468 +srccontainerchecksum 03d73c0d0c30d0c69f1fb878dcf843b26480c5005d88034e6f09fce485db3cf249240f2e39f591acd13556cf06677bd567857ceaaf96ec9cd0178f8216323be8 +srcfiles size=8 + RELOC/source/latex/longfigure/longfigure.dtx + RELOC/source/latex/longfigure/longfigure.ins +runfiles size=4 + RELOC/tex/latex/longfigure/longfigure.sty +catalogue-ctan /macros/latex/contrib/longfigure +catalogue-license lppl1.3 +catalogue-topics table table-long graphics-incl +catalogue-version 1.0 + +name longnamefilelist +category Package +revision 27889 +shortdesc Tidy \listfiles with long file names +relocated 1 +longdesc The package equips LaTeX's \listfiles command with an optional +longdesc argument for the number of characters in the longest base +longdesc filename. This way you get a neatly aligned file list even when +longdesc it contains files whose base names have more than 8 characters. +longdesc The package can be combined with the myfilist package as +longdesc explained in the documentation. +containersize 3620 +containerchecksum 1d16ee9c76784c5124de3abe62b6e916d0f65e979a18a721ef688a960e5d20382dc976de0b68d95c47e9651ad71a67ca97a828f1bdfba8e4a77ac084d7561386 +doccontainersize 309272 +doccontainerchecksum d909908d763342790b8ab56d333e60d7047894472f3922a2554581a5455539845af72d3867d0a55f5a27e982aa8128ae1a948f40e106fa127f2d01156b55ccf6 +docfiles size=85 + RELOC/doc/latex/longnamefilelist/README details="Readme" + RELOC/doc/latex/longnamefilelist/SrcFILEs.txt + RELOC/doc/latex/longnamefilelist/longnamefilelist.pdf details="Package documentation" +srccontainersize 1652 +srccontainerchecksum af1383755b422a3bdbf7af7437b732a39aaf666c7244e75d498b1252d3644e58a18115a744c4b4c7fe1433f415b40886868faeb064b13647452d444f64fd6f9b +srcfiles size=2 + RELOC/source/latex/longnamefilelist/longnamefilelist.tex + RELOC/source/latex/longnamefilelist/srcfiles.tex +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-license lppl1.3 +catalogue-topics doc-mgmt +catalogue-version 0.2 + +name loops +category Package +revision 30704 +shortdesc General looping macros for use with LaTeX +relocated 1 +longdesc The package provides efficient looping macros for processing +longdesc both csv (separated-values) and nsv/tsv (non-separated values) +longdesc lists. CSV lists which have associated parsers may be processed +longdesc with the tools of the package. +containersize 11928 +containerchecksum 60ee6999e43ba9082c5a283dac5a930c9075b24f6bc7cd3f719b0336b01dfcb17fb2d5e3c82b9f1636c9bb3e6c923607a3d9237d08fbaf17bbfc1196d0a75281 +doccontainersize 8240 +doccontainerchecksum 9d70b3ae88d64bf2710157db88113224a95947aa03f11a2eb659c61109a451e2a93b2aa5ffd6ce9cf2f1b5fc8e0ef815850a0a9f27c7ec5ddbfbff1fe98ecaa4 +docfiles size=8 + RELOC/doc/latex/loops/README details="Readme" + RELOC/doc/latex/loops/loops-pokayoke1.tex +runfiles size=13 + RELOC/tex/latex/loops/loops.sty +catalogue-ctan /macros/latex/contrib/loops +catalogue-license lppl1.3 +catalogue-topics list-supp macro-supp csv-support +catalogue-version 1.3 + +name lpform +category Package +revision 36918 +shortdesc Typesetting linear programming formulations and sets of equations +relocated 1 +longdesc The package is designed to aid the author writing linear +longdesc programming formulations, one restriction at a time. With the +longdesc package, one can easily label equations, formulations can span +longdesc multiple pages and several elements of the layout (such as +longdesc spacing, texts and equation tags) are also customizable. +longdesc Besides linear programming formulations, this package can also +longdesc be used to display any series of aligned equations with easy +longdesc labeling/referencing and other customization options. +containersize 1564 +containerchecksum 91d5748629ad72ca421834ffc61c13f71240bbcaedf9f0e4279bc6aa0bbdc817f093c24cf5a9c50d5a4a132208969bd356642fc5704ebd5c4ef2b7eef23f27ac +doccontainersize 269288 +doccontainerchecksum 92ddf3b473e13fe8b77ad955d55acbe7a6da34381bfaac78184342a900f2c9bb1e0981d5ebdb440cf0f44affe2eb0dd862f9b51d2a40c9abd90f1dbe81584c9d +docfiles size=74 + RELOC/doc/generic/lpform/README details="Readme" + RELOC/doc/generic/lpform/lpform-doc.pdf details="Package documentation" + RELOC/doc/generic/lpform/lpform-doc.tex +runfiles size=2 + RELOC/tex/generic/lpform/lpform.sty +catalogue-ctan /macros/generic/lpform +catalogue-license lppl +catalogue-topics maths + +name lpic +category Package +revision 20843 +shortdesc Put LaTeX material over included graphics +relocated 1 +longdesc The package defines a convenient interface to put any LaTeX +longdesc material on top of included graphics. The LaTeX material may +longdesc also be rotated and typeset on top of a white box overshadowing +longdesc the graphics. The coordinates of the LaTeX boxes are given +longdesc relative to the original, unscaled graphics; when the graphics +longdesc is rescaled, the LaTeX annotations stay at their right places +longdesc (unless you do something extreme). In a draft mode, the package +longdesc enables you to draw a coordinate grid over the picture for easy +longdesc adjustment of positions of the annotations. +containersize 5308 +containerchecksum d918fdc8744a9f5e0d24f6ba4f19bbc4cbd9a5ba4b3c559ab1321c36a9e3599ccf6ee849bd7f2ef6c3156cec6e526a44d27bc033b7dc5b217e289fdbff0bf149 +doccontainersize 96860 +doccontainerchecksum 307109b75129099c191a65a7632ad0cbc903cb2b621b199dcceb7cab5ab5ddeff7ee504d7da3afd653e1aac04236efb6a3c1225f9e533a777295052bcc28d2ba +docfiles size=36 + RELOC/doc/latex/lpic/README details="Readme" + RELOC/doc/latex/lpic/instructions-differential.eps + RELOC/doc/latex/lpic/instructions-differential.pdf + RELOC/doc/latex/lpic/instructions.pdf details="Package documentation" + RELOC/doc/latex/lpic/instructions.tex +runfiles size=6 + RELOC/tex/latex/lpic/lpic.sty +catalogue-also overpic +catalogue-ctan /macros/latex/contrib/lpic +catalogue-license lppl1.3 +catalogue-topics graphics-text +catalogue-version 0.8 + +name lplfitch +category Package +revision 31077 +shortdesc Fitch-style natural deduction proofs +relocated 1 +longdesc The package provides macros for typesetting natural deduction +longdesc proofs in "Fitch" style, with subproofs indented and offset by +longdesc scope lines. The proofs from use of the package are in the +longdesc format used in the textbook Language, Proof, and Logic by Dave +longdesc Barker-Plummer, Jon Barwise, and John Etchemendy. +containersize 1964 +containerchecksum 189b9d6000d4b762a3c64652bb05f9465d5c789b7e2413e8f0ca281a8d4729a3044aa955ad7eb82c7b8513bd547bb76c2ad2b609e902b07f8f4f018698e17071 +doccontainersize 227352 +doccontainerchecksum a690ee2c1f9cf5eb36693a4a9385c047a31d29387930211bf6384d7cbedb3d1f1696c0c04269b02ef29b13ebccc69bbc329772f3fee209a1b1d51768484f9a50 +docfiles size=57 + RELOC/doc/latex/lplfitch/README details="Readme" + RELOC/doc/latex/lplfitch/lplfitch.pdf details="Package documentation" +srccontainersize 8048 +srccontainerchecksum b06b45d992045111d1a8aed78267519f8b959415b00b94f75602b35cb7d37c47092e726db881d9094e82d3e25492513db66b210603730f8119d10e60819ec89e +srcfiles size=8 + RELOC/source/latex/lplfitch/lplfitch.dtx + RELOC/source/latex/lplfitch/lplfitch.ins +runfiles size=2 + RELOC/tex/latex/lplfitch/lplfitch.sty +catalogue-contact-repository https://github.com/rzach/lplfitch +catalogue-ctan /macros/latex/contrib/lplfitch +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.9 + +name lps +category Package +revision 21322 +shortdesc Class for "Logic and Philosophy of Science" +relocated 1 +longdesc The 'Logic and Philosophy of Science' journal is an online +longdesc publication of the University of Trieste (Italy). The class +longdesc builds on the standard article class to offer a format that +longdesc LaTeX authors may use when submitting to the journal. +containersize 2252 +containerchecksum 8bc59b5d8874fca88bfe62822f2050f5dee0461523d853a1c92a051e854ddd6a8b2ce235a674bda383f26ad01d6e18a83cac87db2ea73b4af7e22e74ff823d0e +doccontainersize 162420 +doccontainerchecksum a8ad542b5d2c28a9a02b5e4d4a43a13e2f3469512cf7264eb7ed78e2c5a29228531de3be7e84e557e3cc8a9ad60e59ca426da3d5e034dae6b40088ee99d2fd94 +docfiles size=66 + RELOC/doc/latex/lps/README details="Readme" + RELOC/doc/latex/lps/lps.pdf details="Package documentation" + RELOC/doc/latex/lps/lpstemplate.tex +srccontainersize 7840 +srccontainerchecksum d1ae82c4a55280183a85fb3eec77306990f694f85c5d6b543b4ce4bbaf87a01b7fae2d6892bbf23587738079be503ac94b6a68b372ca1948863ceab826975a85 +srcfiles size=7 + RELOC/source/latex/lps/lps.dtx + RELOC/source/latex/lps/lps.ins +runfiles size=2 + RELOC/tex/latex/lps/lps.cls +catalogue-ctan /macros/latex/contrib/lps +catalogue-license lppl +catalogue-topics journalpub class +catalogue-version 0.7 + +name lroundrect +category Package +revision 39804 +shortdesc LaTeX macros for utilizing the roundrect MetaPost routines +relocated 1 +longdesc This LaTeX package provides ways to use the extremely +longdesc configurable rounded rectangles of the roundrect MetaPost +longdesc package with LaTeX. It is chiefly useful for examples, but also +longdesc has macros for particular types of boxes which are useful on +longdesc their own. +containersize 2604 +containerchecksum 6e4968db6d4593fb0ad66c58b7977b77cfc5ad29a8ae8648bfa0f7844d71a809e0b381acfa4563cb1795177374963ddc10e8fad8a62c1523ea82288c7bd02087 +doccontainersize 252820 +doccontainerchecksum 12e6bccf3875f4045558df6e274a13f60fb7845a998de2e8a722168cbef2d9003224f02e379bcf0752770542aed15ec1d1e680a54e347763b554535ffc2e1042 +docfiles size=67 + RELOC/doc/latex/lroundrect/README details="Readme" + RELOC/doc/latex/lroundrect/lppl.txt + RELOC/doc/latex/lroundrect/lroundrect.pdf details="Package documentation" +srccontainersize 6836 +srccontainerchecksum cf39670d2c17420b2283be3264b163f7d4df70288b6c974674cb0ca4d52e3d7f99766f9f0c5b8636348aaad2ca851d1c4b3d530a2a85567a1bec2804ac5d70a4 +srcfiles size=7 + RELOC/source/latex/lroundrect/lroundrect.dtx + RELOC/source/latex/lroundrect/lroundrect.ins +runfiles size=2 + RELOC/tex/latex/lroundrect/lroundrect.sty +catalogue-ctan /macros/latex/contrib/lroundrect +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 1.0 + +name lsc +category Package +revision 15878 +shortdesc Typesetting Live Sequence Charts +relocated 1 +longdesc This package is similar to the msc package in that it provides +longdesc macros for typesetting a variant of sequence diagrams, in this +longdesc case the Live Sequence Charts of Damm and Harel. The package +longdesc supports the full LSC language of the original LSC paper, the +longdesc Klose-extensions for formal verification and some of the +longdesc Harel-extensions for the Play-In/Play-Out approach (cf. the +longdesc manual). +containersize 14224 +containerchecksum f61d81a49c25972e03120cbf6557d356d6df6937af6e0443e47305312485217b6bb5c0818adf248fb860ec5d42c07fc22fdc0c54f9dd1f3bdcb12486350316da +doccontainersize 187204 +doccontainerchecksum 5d0550421ee0657c378cc1ad8159e16e43644f533e3d8a013d917c494bbb8d11cba79b99fcaa7bdcf8ef5f5deb88d144ed64d75a5682fe4c4187c60c634297f5 +docfiles size=73 + RELOC/doc/latex/lsc/README details="Readme" + RELOC/doc/latex/lsc/lsc.pdf details="Package documentation" + RELOC/doc/latex/lsc/lsc.tex +runfiles size=16 + RELOC/bibtex/bib/lsc/lsc.bib + RELOC/tex/latex/lsc/lsc.sty +catalogue-ctan /macros/latex/contrib/lsc +catalogue-license lppl +catalogue-topics comp-net + +name lshort-bulgarian +category Package +revision 15878 +shortdesc Bulgarian translation of the "Short Introduction to LaTeX2e" +relocated 1 +longdesc The source files, PostScript and PDF files of the Bulgarian +longdesc translation of the "Short Introduction to LaTeX 2e". +containersize 424 +containerchecksum b528c16903ca8ed5ce69f5e2397dff8f05b13016384bc1304980cad71d86bbb55004d41db92dc29dd412a12b9a0a1b1ea99afcbea621a25bb20da4639d008776 +doccontainersize 1899640 +doccontainerchecksum 7cd22cad45d7ef2972679cf2a3653c3bbcb1d9bcfe94a65fb9dac23760de05b659470ca45cf8be13513924fa1cbb98599a304a51bc18f8f4d6631f082e662bc4 +docfiles size=639 + RELOC/doc/latex/lshort-bulgarian/README details="Readme" + 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-license pd +catalogue-topics tut-latex bulgarian + +name lshort-chinese +category Package +revision 56036 +catalogue lshort-zh-cn +shortdesc Introduction to LaTeX, in Chinese +relocated 1 +longdesc A Chinese edition of the not so short introduction to LaTeX2e, +longdesc with additional information of typesetting Chinese language. +containersize 472 +containerchecksum f78920a3adac063cddd42284e325308cd124d5e0f2f1ca6f92111edec872ad1325b99331615c8643dbc11ec1165ed0b0320c9a8b1e3eda0dabfcf496ae0d47c2 +doccontainersize 1539324 +doccontainerchecksum 0f8950630220afd353d05b2f4d146ded4eb24fc163f19510a3d57ea680fd06a1dff064c35a0afb8625b32741d1ab6543cde20d5269a0914e0dcff7c42bfca327 +docfiles size=455 + RELOC/doc/latex/lshort-chinese/README-zh.md details="Readme (Chinese)" language="zh" + RELOC/doc/latex/lshort-chinese/README.md details="Readme" + RELOC/doc/latex/lshort-chinese/lshort-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/latex/lshort-chinese/src/INSTRUCTIONS.md + RELOC/doc/latex/lshort-chinese/src/Makefile + RELOC/doc/latex/lshort-chinese/src/chap/app.A.install.tex + RELOC/doc/latex/lshort-chinese/src/chap/app.B.error.help.tex + RELOC/doc/latex/lshort-chinese/src/chap/biblio.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.01.basics.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.02.text.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.03.elements.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.04.math.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.05.style.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.06.spec.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.07.graphic.tex + RELOC/doc/latex/lshort-chinese/src/chap/chap.08.custom.tex + RELOC/doc/latex/lshort-chinese/src/chap/fdl.tex + RELOC/doc/latex/lshort-chinese/src/chap/preface.contrib.tex + RELOC/doc/latex/lshort-chinese/src/chap/preface.overview.tex + RELOC/doc/latex/lshort-chinese/src/chap/sec.symbol.table.tex + RELOC/doc/latex/lshort-chinese/src/chap/titlepage.tex + RELOC/doc/latex/lshort-chinese/src/latexmkrc + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn-layout.tex + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn-style.sty + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn.ist + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn.tex + RELOC/doc/latex/lshort-chinese/src/make.bat +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-license fdl +catalogue-topics tut-latex chinese-doc +catalogue-version 6.02 + +name lshort-czech +category Package +revision 55643 +shortdesc Czech translation of the "Short Introduction to LaTeX2e" +relocated 1 +longdesc This is the Czech translation of "A Short Introduction to +longdesc LaTeX2e". +containersize 384 +containerchecksum dc967aae970e535c5dea48264c30f01d5ff3521851abd718905b78497c3d95d403c4f1ec8633cd2a7a55fe0a6bc1e1523391b214fbb8a0e2ed03737b09080e40 +doccontainersize 1644616 +doccontainerchecksum 10de238b8152907ec04834d6b4737cebb13bd6567c9867e19e2003d123299c733012569cd64a66d31a79894f9b37c1fc409cd5b76ed10832762988fc318875e5 +docfiles size=637 + RELOC/doc/latex/lshort-czech/CHANGES + RELOC/doc/latex/lshort-czech/MANIFEST + RELOC/doc/latex/lshort-czech/Makefile + RELOC/doc/latex/lshort-czech/README details="Readme" + RELOC/doc/latex/lshort-czech/lshort-cs.pdf details="The document itself" language="cs" + RELOC/doc/latex/lshort-czech/src/appendix.tex + RELOC/doc/latex/lshort-czech/src/biblio.tex + RELOC/doc/latex/lshort-czech/src/contrib.tex + RELOC/doc/latex/lshort-czech/src/custom.tex + RELOC/doc/latex/lshort-czech/src/fancyhea.sty + RELOC/doc/latex/lshort-czech/src/graphic.tex + RELOC/doc/latex/lshort-czech/src/lshort-base.tex + RELOC/doc/latex/lshort-czech/src/lshort-cs-a5.tex + RELOC/doc/latex/lshort-czech/src/lshort-cs.ind + RELOC/doc/latex/lshort-czech/src/lshort-cs.tex + RELOC/doc/latex/lshort-czech/src/lshort.ist + RELOC/doc/latex/lshort-czech/src/lshort.sty + RELOC/doc/latex/lshort-czech/src/lssym.tex + RELOC/doc/latex/lshort-czech/src/math.tex + RELOC/doc/latex/lshort-czech/src/mylayout.sty + RELOC/doc/latex/lshort-czech/src/overview.tex + RELOC/doc/latex/lshort-czech/src/spec.tex + RELOC/doc/latex/lshort-czech/src/things.tex + RELOC/doc/latex/lshort-czech/src/title.tex + RELOC/doc/latex/lshort-czech/src/typeset.tex +catalogue-ctan /info/lshort/czech +catalogue-license gpl +catalogue-topics tut-latex czech-doc +catalogue-version 4.27 + +name lshort-dutch +category Package +revision 15878 +shortdesc Introduction to LaTeX in Dutch +relocated 1 +longdesc This is the Dutch (Nederlands) translation of the Short +longdesc Introduction to LaTeX2e. +containersize 412 +containerchecksum c8635db5888817d392706b8b65aa5158a4973cf236dad7fe31a9545857daab15a6c1f2f82ab06e71e50a4af94824b17ac89c394a759721e192966a1f78433d47 +doccontainersize 777012 +doccontainerchecksum 29fc8b6a2645f241e8af437de3a295be8d56a088bd7c7666c35b14f104f242e68ecef2757d62a393400d9f337eb685e48ebac06769259c723d634312a7288ab9 +docfiles size=272 + RELOC/doc/latex/lshort-dutch/LEESMIJ details="Readme" language="nl" + RELOC/doc/latex/lshort-dutch/README + RELOC/doc/latex/lshort-dutch/WIJZIGINGEN + 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-license gpl +catalogue-topics tut-latex dutch-doc +catalogue-version 1.3 + +name lshort-english +category Package +revision 58309 +shortdesc A (Not So) Short Introduction to LaTeX2e +relocated 1 +longdesc The document derives from a German introduction ('lkurz'), +longdesc which was translated and updated; it continues to be updated. +longdesc This translation has, in its turn, been translated into several +longdesc other languages; see the lshort catalogue entry for the current +longdesc list. +containersize 540 +containerchecksum 73e7cebb51b9ae5ce2c6ddfd191a1d7e5358e5a1bfc61ff8d921cf0928e2cde839f232dae6cb0d9dd1b05df907c8c56c3f72a4d89917a6930762a46e1b1aa286 +doccontainersize 739236 +doccontainerchecksum ab6dccb0110d7033a36d743b9f8132ec5ab4a0b4b334ab7800dd68f9e65bdc7de6c5e766fba6a7a3596d3fd8d6a3a16299344fcbfd67585f1fbe5e519876d7ba +docfiles size=189 + RELOC/doc/latex/lshort-english/CHANGES + RELOC/doc/latex/lshort-english/README details="Readme" + RELOC/doc/latex/lshort-english/lshort-6.4.src.tar.gz + RELOC/doc/latex/lshort-english/lshort.pdf details="The document itself (A4 paper format)" +catalogue-contact-home http://tobi.oetiker.ch/ +catalogue-ctan /info/lshort/english +catalogue-license gpl2 +catalogue-topics tut-latex documentation +catalogue-version 6.4 + +name lshort-estonian +category Package +revision 39323 +shortdesc Estonian introduction to LaTeX +relocated 1 +longdesc This is the Estonian translation of Short Introduction to +longdesc LaTeX2e. +containersize 400 +containerchecksum 6bd3c07c1e5f9d543b0f67a5585cc33252567cc346a8d7feca050baf8ab437be97e73d2c4b4b159102e9c4772f8cce2abcbc25486d73e976b83a3d2f4b9e9487 +doccontainersize 2940172 +doccontainerchecksum e16397fac3e6cefa699b412ada1851c7792520da8af1230274fa1a337b890629b68f71d94b3894044f28e687c6aa60d766377e12232d0e522e82e18dc97428e3 +docfiles size=867 + RELOC/doc/latex/lshort-estonian/README details="Readme" + RELOC/doc/latex/lshort-estonian/lshort-ee-a5.pdf + RELOC/doc/latex/lshort-estonian/lshort-ee.pdf details="The document itself" language="et" + RELOC/doc/latex/lshort-estonian/src/appendix.tex + RELOC/doc/latex/lshort-estonian/src/biblio.tex + RELOC/doc/latex/lshort-estonian/src/contrib.tex + RELOC/doc/latex/lshort-estonian/src/custom.tex + RELOC/doc/latex/lshort-estonian/src/graphic.tex + RELOC/doc/latex/lshort-estonian/src/lshort-base.tex + RELOC/doc/latex/lshort-estonian/src/lshort-ee-a5.ind + RELOC/doc/latex/lshort-estonian/src/lshort-ee-a5.tex + RELOC/doc/latex/lshort-estonian/src/lshort-ee.ind + RELOC/doc/latex/lshort-estonian/src/lshort-ee.tex + RELOC/doc/latex/lshort-estonian/src/lshort.sty + RELOC/doc/latex/lshort-estonian/src/lssym.tex + RELOC/doc/latex/lshort-estonian/src/math.tex + RELOC/doc/latex/lshort-estonian/src/overview.tex + RELOC/doc/latex/lshort-estonian/src/preamble.tex + RELOC/doc/latex/lshort-estonian/src/spec.tex + RELOC/doc/latex/lshort-estonian/src/things.tex + RELOC/doc/latex/lshort-estonian/src/title.tex + RELOC/doc/latex/lshort-estonian/src/typeset.tex +catalogue-ctan /info/lshort/estonian +catalogue-license gpl2 +catalogue-topics tut-latex estonian +catalogue-version 5.05 + +name lshort-finnish +category Package +revision 15878 +shortdesc Finnish introduction to LaTeX +relocated 1 +longdesc This is the Finnish translation of Short Introduction to +longdesc LaTeX2e, with added coverage of Finnish typesetting rules. +containersize 424 +containerchecksum 997db393d16942e78e4f52eef886ac7b14cba7ec3fd0c88f8c2cc74fb6b35f3802c58c51ac0112cc2b086f9c3b965b5f8d508ea81a36edb7da1ce84ef83cd203 +doccontainersize 1681088 +doccontainerchecksum 71c2e5c4d49a779f529a527cda5fcc6e55cfa0149fc2d9272ae7e69aecf2a8a361b057bcfdf5deaa7791073bc6252c3101f5ce0b8d231c779e99c34910a3343f +docfiles size=601 + RELOC/doc/latex/lshort-finnish/README details="Readme" + RELOC/doc/latex/lshort-finnish/lyhyt2e.pdf details="The document itself" language="fi" + RELOC/doc/latex/lshort-finnish/src/asiat.tex + RELOC/doc/latex/lshort-finnish/src/erikois.tex + RELOC/doc/latex/lshort-finnish/src/esipuhe.tex + RELOC/doc/latex/lshort-finnish/src/grafiikka.tex + RELOC/doc/latex/lshort-finnish/src/kiitokset.tex + RELOC/doc/latex/lshort-finnish/src/kirjallisuus.tex + RELOC/doc/latex/lshort-finnish/src/ladonta.tex + RELOC/doc/latex/lshort-finnish/src/llyhyt2e.sty + RELOC/doc/latex/lshort-finnish/src/lyhyt2e.ind + RELOC/doc/latex/lshort-finnish/src/lyhyt2e.tex + RELOC/doc/latex/lshort-finnish/src/matikka.tex + RELOC/doc/latex/lshort-finnish/src/mylayout.sty + RELOC/doc/latex/lshort-finnish/src/otsikko.tex + RELOC/doc/latex/lshort-finnish/src/symbolit.tex + RELOC/doc/latex/lshort-finnish/src/typeset.tex + RELOC/doc/latex/lshort-finnish/src/viritys.tex +catalogue-ctan /info/lshort/finnish +catalogue-license pd +catalogue-topics tut-latex finnish-doc + +name lshort-french +category Package +revision 23332 +shortdesc Short introduction to LaTeX, French translation +relocated 1 +longdesc French version of A Short Introduction to LaTeX2e. +containersize 404 +containerchecksum 1b2ab00e9e69eb058afd96c1ed099b8c783bb97bb52411cc907afcc82d43167ad6e2023a95671e90d059ee43ae335dae3401cc0d1b53c19c186992756aad5060 +doccontainersize 2147688 +doccontainerchecksum 2974f067584486528adf42a13cad28afd205f2f52680e89e8de33c4c0debdccb2d0d9d8259d6e2adaa5f86af0b9451232450d40ffacd9f63c43af2519cd8a06a +docfiles size=690 + RELOC/doc/latex/lshort-french/README details="Readme" + RELOC/doc/latex/lshort-french/historique + 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-license gpl +catalogue-topics tut-latex french-doc +catalogue-version 5.01fr-0 + +name lshort-german +category Package +revision 55643 +shortdesc German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung +relocated 1 +containersize 404 +containerchecksum c937bb8da86a3ef6d428d134903bf8af74a286d644bedfe4766841b2b5234b34e2caed70460ecaf7a1b1dc57f1faf1396435cca7f714f84d75f15acea12e79f8 +doccontainersize 951712 +doccontainerchecksum 69cebdd6a1444670a154d5cdd199022f6f1d6612b24b05fc8dc1e9f54a89fb65cda1f545341cd37616dbf6dd94077ccb924bf4b49f1473e45eb0bcd33f5f33a6 +docfiles size=328 + RELOC/doc/latex/lshort-german/CHANGES + RELOC/doc/latex/lshort-german/README.l2kurz + RELOC/doc/latex/lshort-german/allgemeines.tex + RELOC/doc/latex/lshort-german/anhang.tex + RELOC/doc/latex/lshort-german/bilder.tex + RELOC/doc/latex/lshort-german/eingabefile.tex + RELOC/doc/latex/lshort-german/einleitung.tex + RELOC/doc/latex/lshort-german/fontspec.pdf + RELOC/doc/latex/lshort-german/fontspecbeispiel.tex + RELOC/doc/latex/lshort-german/l2ksym.tex + RELOC/doc/latex/lshort-german/l2kurz.bib + RELOC/doc/latex/lshort-german/l2kurz.pdf details="The document itself" language="de" + RELOC/doc/latex/lshort-german/l2kurz.tex + RELOC/doc/latex/lshort-german/latexmkrc + RELOC/doc/latex/lshort-german/mathematik.tex + RELOC/doc/latex/lshort-german/ozean.pdf + RELOC/doc/latex/lshort-german/ozean.svg + RELOC/doc/latex/lshort-german/schriften.tex + RELOC/doc/latex/lshort-german/seitenaufbau.tex + RELOC/doc/latex/lshort-german/spezialitaeten.tex + RELOC/doc/latex/lshort-german/textsatz.tex +catalogue-contact-repository https://github.com/texdoc/l2kurz +catalogue-ctan /info/lshort/german +catalogue-license opl +catalogue-topics tut-latex german-doc +catalogue-version 3.0c + +name lshort-italian +category Package +revision 57038 +shortdesc Introduction to LaTeX in Italian +relocated 1 +longdesc This is the Italian translation of the Short Introduction to +longdesc LaTeX2e. +containersize 432 +containerchecksum 05435f3a1af4c589267f1841e9af267fc12e2a3fe5b3ea2c586fd352f4a1184f1fc4be408780ff6db1b9212e1e4d1bb7263e3b35e7be9358e97e1712e9abcd6a +doccontainersize 3653384 +doccontainerchecksum 6caa8b7d2795779ef010c0ef9ac387c73b15715929557a6227e0a8112f4d99717ad82fdcdf8d1fe18ad5ea9b502ed559bd7b44f73381475034b481eeb6ab1c9a +docfiles size=927 + RELOC/doc/latex/lshort-italian/CHANGES + RELOC/doc/latex/lshort-italian/MANIFEST + RELOC/doc/latex/lshort-italian/README + RELOC/doc/latex/lshort-italian/TODO + RELOC/doc/latex/lshort-italian/TRANSLATIONS + RELOC/doc/latex/lshort-italian/it-lshort.pdf details="The document itself" language="it" + RELOC/doc/latex/lshort-italian/src.zip +catalogue-contact-bugs https://www.guitex.org/home/en/forum/index +catalogue-contact-support https://www.guitex.org/home/en/forum/index +catalogue-ctan /info/lshort/italian +catalogue-license gpl +catalogue-topics tut-latex italian-doc +catalogue-version 6.2 + +name lshort-japanese +category Package +revision 36207 +shortdesc Japanese version of A Short Introduction to LaTeX2e +relocated 1 +containersize 368 +containerchecksum 25de64f37ca5811ce39c8efc3e895c1deea317c8dd02ac3e091a41ff11ab7a4730a0e476d323d8375c41fd60401cf441c2c15d614a090092d66413701500d43c +doccontainersize 515744 +doccontainerchecksum 83292d42fa21614a055420eeb372ae5cf21a9a15b999e0b39f1063f63ee7fe53f77ce771a8aa649e860827214138fbd435161cb3dc4b3fdf2b75775979d904cd +docfiles size=132 + RELOC/doc/latex/lshort-japanese/00README + RELOC/doc/latex/lshort-japanese/CHANGES.jp + RELOC/doc/latex/lshort-japanese/READ.ME + RELOC/doc/latex/lshort-japanese/jlshort-1.00.src.tar.gz + RELOC/doc/latex/lshort-japanese/jlshort.pdf +catalogue-ctan /info/lshort/japanese +catalogue-license gpl +catalogue-topics tut-latex japanese-doc + +name lshort-korean +category Package +revision 58468 +shortdesc Korean introduction to LaTeX +relocated 1 +longdesc A translation of Oetiker's original (not so) short +longdesc introduction. +containersize 376 +containerchecksum 3050ad46874a78c36d8bf247c00e2369c18e122ec89a36b0423df290ba8e06e9c5dbd1d9bba5485e370cd73dc500a6d2415b3d8f6de0eabb3932b9ae5515fb8c +doccontainersize 1269092 +doccontainerchecksum 6789054257f176828b341fe9ad258b1f7100d2fc880aab68244842317b45cea872ee49031ad2c1d376011772fb39d2ef05a700f962279f5ce3a286270b77ee1d +docfiles size=317 + RELOC/doc/latex/lshort-korean/README.md details="Readme" + RELOC/doc/latex/lshort-korean/lshort-ko-src-20210316.tar.gz + RELOC/doc/latex/lshort-korean/lshort-ko.pdf details="The document itself" language="ko" +catalogue-ctan /info/lshort/korean +catalogue-license fdl +catalogue-topics tut-latex korean-doc + +name lshort-mongol +category Package +revision 15878 +shortdesc Short introduction to LaTeX, in Mongolian +relocated 1 +longdesc A translation of Oetiker's Not so short introduction. +containersize 412 +containerchecksum 464b6638ca4bf859ff178238625ecdb7016598fc98c476d3e4b2a24e2f34e6096edef5864ab325ab4df21bcf309a8467deda80b385b624685b38b538a0d40b8d +doccontainersize 1693292 +doccontainerchecksum cb60632992b187e5cc80973b9e9848675b464b075b13356db171c1a7613c94dd9bf8ea53df47e0c36c910772316f4c43857c8e638819d8ece7c1ce1790fc9d29 +docfiles size=615 + RELOC/doc/latex/lshort-mongol/00README + RELOC/doc/latex/lshort-mongol/CHANGES + RELOC/doc/latex/lshort-mongol/MANIFEST + RELOC/doc/latex/lshort-mongol/Makefile + RELOC/doc/latex/lshort-mongol/README details="Readme" + RELOC/doc/latex/lshort-mongol/TODO + RELOC/doc/latex/lshort-mongol/TRANSLATIONS + RELOC/doc/latex/lshort-mongol/fixdate.pl + RELOC/doc/latex/lshort-mongol/lshort-mn.pdf details="The document itself" language="mn" + RELOC/doc/latex/lshort-mongol/src/appendix.tex + RELOC/doc/latex/lshort-mongol/src/biblio.tex + RELOC/doc/latex/lshort-mongol/src/contrib.tex + RELOC/doc/latex/lshort-mongol/src/custom.tex + RELOC/doc/latex/lshort-mongol/src/fancyhea.sty + RELOC/doc/latex/lshort-mongol/src/graphic.tex + RELOC/doc/latex/lshort-mongol/src/lshort-a5.tex + RELOC/doc/latex/lshort-mongol/src/lshort-base.tex + RELOC/doc/latex/lshort-mongol/src/lshort-mn.tex + RELOC/doc/latex/lshort-mongol/src/lshort.sty + RELOC/doc/latex/lshort-mongol/src/lssym.tex + RELOC/doc/latex/lshort-mongol/src/math.tex + RELOC/doc/latex/lshort-mongol/src/mylayout.sty + RELOC/doc/latex/lshort-mongol/src/overview.tex + RELOC/doc/latex/lshort-mongol/src/spec.tex + RELOC/doc/latex/lshort-mongol/src/things.tex + RELOC/doc/latex/lshort-mongol/src/title.tex + RELOC/doc/latex/lshort-mongol/src/typeset.tex +catalogue-ctan /info/lshort/mongolian/lshort-mongol +catalogue-license lppl +catalogue-topics mongolian-doc tut-latex +catalogue-version 4.26 + +name lshort-persian +category Package +revision 31296 +shortdesc Persian (Farsi) introduction to LaTeX +relocated 1 +longdesc A Persian (Farsi) translation of Oetiker's (not so) short +longdesc introduction. +containersize 404 +containerchecksum 6430462b11786fe3703e78efc9f1486da78db15601ae31e72a95d516d10a098c8b4c5dc9079490e652c57369698d3b4fe4d75b32c44ddd2a470aa5cbc79ab492 +doccontainersize 849972 +doccontainerchecksum 9e7c43f3df8299db4bfad3c0b270c5b54a1448370e6782d095dd9a9b82ccc186aae98da86b2efe71c34031a5f4a07f54f4640de6d8b6fad913252979d440ccd1 +docfiles size=288 + RELOC/doc/latex/lshort-persian/README details="Readme" + RELOC/doc/latex/lshort-persian/appendix.tex + RELOC/doc/latex/lshort-persian/biblio.tex + RELOC/doc/latex/lshort-persian/contrib.tex + RELOC/doc/latex/lshort-persian/custom.tex + RELOC/doc/latex/lshort-persian/graphic.tex + RELOC/doc/latex/lshort-persian/lshort-a5.tex + RELOC/doc/latex/lshort-persian/lshort-base.tex + RELOC/doc/latex/lshort-persian/lshort.pdf details="The document itself" language="fa" + RELOC/doc/latex/lshort-persian/lshort.sty + RELOC/doc/latex/lshort-persian/lshort.tex + RELOC/doc/latex/lshort-persian/lssym.tex + RELOC/doc/latex/lshort-persian/math.tex + RELOC/doc/latex/lshort-persian/mylayout.sty + RELOC/doc/latex/lshort-persian/overview.tex + RELOC/doc/latex/lshort-persian/preface.tex + RELOC/doc/latex/lshort-persian/spec.tex + RELOC/doc/latex/lshort-persian/things.tex + RELOC/doc/latex/lshort-persian/title.tex + RELOC/doc/latex/lshort-persian/transpreface.tex + RELOC/doc/latex/lshort-persian/typeset.tex +catalogue-ctan /info/lshort/persian +catalogue-license pd +catalogue-topics persian-doc +catalogue-version 5.01 + +name lshort-polish +category Package +revision 55643 +shortdesc Introduction to LaTeX in Polish +relocated 1 +longdesc This is the Polish translation of A Short Introduction to +longdesc LaTeX2e. +containersize 372 +containerchecksum 77927173ea8b2608567a330fb0b76663b7389026de4066b21bf4c460c4721d57badf65179df473f19fc94ba60b56c8ba9f3e99073f500f31c37dce6ba754b3f4 +doccontainersize 1116840 +doccontainerchecksum 5fab9a867d78fabec9edff0148c1134d36ddc8b19140e5fa20752fb5315b30dc3f144eed08fd2f6849581d5ea1a515f350428268fdf3d78fbc92644fc1681271 +docfiles size=372 + RELOC/doc/latex/lshort-polish/README details="Readme" + RELOC/doc/latex/lshort-polish/lshort2e.pdf details="The document itself" language="pl" + RELOC/doc/latex/lshort-polish/src.zip +catalogue-ctan /info/lshort/polish +catalogue-license pd +catalogue-topics polish-doc tut-latex + +name lshort-portuguese +category Package +revision 55643 +shortdesc Introduction to LaTeX in Portuguese +relocated 1 +longdesc This is the Portuguese translation of A Short Introduction to +longdesc LaTeX2e. +containersize 384 +containerchecksum 70031c79e7124b9c839571fa95d8b141035a0d8f79665f1e79df8a3154b81f0a7f8b7d371cd00cfec11c141165ca5e1fb0e1cbbc4d0de8c52cc5e0b77c885f5d +doccontainersize 2187228 +doccontainerchecksum 19c55e5547d83fbce705121dbb09fe329c23cd42c1cedb812cc282bb447f9cc51ce0861e61a984e2863103a2bccaa6a4c7ffe8bd2913637930e42747c6947b02 +docfiles size=710 + RELOC/doc/latex/lshort-portuguese/pt-lshort-5.01.0.src.tar.gz + RELOC/doc/latex/lshort-portuguese/pt-lshort.pdf details="The document itself" language="pt" +catalogue-ctan /info/lshort/portuguese +catalogue-license pd +catalogue-topics portuguese-doc tut-latex +catalogue-version 5.01.0 + +name lshort-russian +category Package +revision 55643 +shortdesc Russian introduction to LaTeX +relocated 1 +longdesc Russian version of A Short Introduction to LaTeX2e. +containersize 356 +containerchecksum d6641dc4f19c740898dccc357aa1004860952d0a2add37c6c37fe69ac222dd8396e506ff6a00ef98f77d8cdcea2287c96258214159f08d8b63184eb014ececc3 +doccontainersize 1307892 +doccontainerchecksum b991cb5fc833446ab36c82beefa82afa026eda6b1084d99e6c4525687b82bf7c2f64f9cea38d244065cecf1b12a00331d4e70716880c5bf2509add05257accac +docfiles size=513 + RELOC/doc/latex/lshort-russian/lshortru.pdf details="The document itself" language="ru" + RELOC/doc/latex/lshort-russian/lshortru.zip +catalogue-ctan /info/lshort/russian +catalogue-license gpl +catalogue-topics russian-doc tut-latex + +name lshort-slovak +category Package +revision 15878 +shortdesc Slovak introduction to LaTeX +relocated 1 +longdesc A Slovak translation of Oetiker's (not so) short introduction. +containersize 392 +containerchecksum bf3821d0846701c2e45d89578625f517567d401d613f5aa7aaa4cdfdf8c4c4f87abec22d6fccac21b274afdba9c29c21a6918fabef77f4cca506071341b7cdbe +doccontainersize 708848 +doccontainerchecksum 8ee79c17e5ccc9dbb9f833b4f8927b22e7ce368f49f4d016fb936d2a5ec964791d9473b679a037d704efb269dc6caa1344168927a90a8e859527c64b0410996b +docfiles size=221 + RELOC/doc/latex/lshort-slovak/slshorte.pdf + RELOC/doc/latex/lshort-slovak/src.zip +catalogue-ctan /info/lshort/slovak +catalogue-license lppl +catalogue-topics slovak tut-latex + +name lshort-slovenian +category Package +revision 55643 +shortdesc Slovenian translation of lshort +relocated 1 +longdesc A Slovenian translation of the Not So Short Introduction to +longdesc LaTeX 2e. +containersize 428 +containerchecksum 689ca4286149002f840e2ae82d7d9c8eaadb3471db16d935ef82c37e25560200ecd2fb95bb6fba61a1deb1fe481549073893df59cdd37ff9aab3c55679028492 +doccontainersize 1390728 +doccontainerchecksum 13cafc10d15f89945f020743c10d2bc44b226cfc9c7217be32b8c2affed12602cf024295c75a929478beb3fe763eacdcd47bf80615826472b85cb4db7454ee8f +docfiles size=500 + RELOC/doc/latex/lshort-slovenian/README details="Readme" + RELOC/doc/latex/lshort-slovenian/lshort-slovenian.pdf details="The document itself" language="sl" + RELOC/doc/latex/lshort-slovenian/src/biblio.tex + RELOC/doc/latex/lshort-slovenian/src/contrib.tex + RELOC/doc/latex/lshort-slovenian/src/custom.tex + RELOC/doc/latex/lshort-slovenian/src/fancyhea.sty + RELOC/doc/latex/lshort-slovenian/src/graphic.tex + RELOC/doc/latex/lshort-slovenian/src/lshort-a5.tex + RELOC/doc/latex/lshort-slovenian/src/lshort-base.tex + RELOC/doc/latex/lshort-slovenian/src/lshort-slovenian.sty + RELOC/doc/latex/lshort-slovenian/src/lshort-slovenian.tex + RELOC/doc/latex/lshort-slovenian/src/lssym.tex + RELOC/doc/latex/lshort-slovenian/src/math.tex + RELOC/doc/latex/lshort-slovenian/src/mylayout.sty + RELOC/doc/latex/lshort-slovenian/src/overview.tex + RELOC/doc/latex/lshort-slovenian/src/spec.tex + RELOC/doc/latex/lshort-slovenian/src/things.tex + RELOC/doc/latex/lshort-slovenian/src/title.tex + 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-license gpl +catalogue-topics slovenian tut-latex +catalogue-version 4.20 + +name lshort-spanish +category Package +revision 35050 +shortdesc Short introduction to LaTeX, Spanish translation +relocated 1 +longdesc A Spanish translation of the Short Introduction to LaTeX2e, +longdesc version 20. +containersize 412 +containerchecksum 127fc2d598f16d38b075b4a9668ded064537f7056aae34bdde22f89aa8d301d77cca818976e22aa036f47867929d30cc47e02ed3f724ea26279ecba723e5baf4 +doccontainersize 1538720 +doccontainerchecksum f968352fe1e32a918c1d5ebfce16d3975c436539349af22b32bfae1ab06061ac2b2b85feaed3e8a28da89956f4d5948e7d1a6426766144b0c0ebec72ecfe99cb +docfiles size=583 + RELOC/doc/latex/lshort-spanish/fuente/CAMBIOS + RELOC/doc/latex/lshort-spanish/fuente/LEAME.utf8 + RELOC/doc/latex/lshort-spanish/fuente/MANIFEST + RELOC/doc/latex/lshort-spanish/fuente/src/IEEEtrantools.sty + RELOC/doc/latex/lshort-spanish/fuente/src/biblio.tex + RELOC/doc/latex/lshort-spanish/fuente/src/contrib.tex + RELOC/doc/latex/lshort-spanish/fuente/src/custom.tex + RELOC/doc/latex/lshort-spanish/fuente/src/fancyhea.sty + RELOC/doc/latex/lshort-spanish/fuente/src/graphic.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-a4.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-a5.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-base.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-letter.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort.ist + RELOC/doc/latex/lshort-spanish/fuente/src/lshort.sty + RELOC/doc/latex/lshort-spanish/fuente/src/lssym.tex + RELOC/doc/latex/lshort-spanish/fuente/src/math.tex + RELOC/doc/latex/lshort-spanish/fuente/src/mylayout.sty + RELOC/doc/latex/lshort-spanish/fuente/src/overview.tex + RELOC/doc/latex/lshort-spanish/fuente/src/spec.tex + RELOC/doc/latex/lshort-spanish/fuente/src/things.tex + RELOC/doc/latex/lshort-spanish/fuente/src/title.tex + 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-license other-free +catalogue-topics spanish-doc tut-latex +catalogue-version 0.5 + +name lshort-thai +category Package +revision 55643 +shortdesc Introduction to LaTeX in Thai +relocated 1 +longdesc This is the Thai translation of the Short Introduction to +longdesc LaTeX2e. +containersize 372 +containerchecksum e81deefb7fa47e336a6b9fc363fa75c35576fa40de1771fff207dff22106b33d185c267d76a3897f2188d2dbdf9d2b93a1caddcdae38eb770cd7c5d6f1ccdbb2 +doccontainersize 474892 +doccontainerchecksum fc805e2749305cff0164ccd8d0b043d26731fd6f39e19c0023c87e4812f8509b923d4c1a97594563394dd7bbbe4a99d3b25aa37366f6e5bfb3cc1c2aa21c0606 +docfiles size=135 + RELOC/doc/latex/lshort-thai/lsh132.pdf details="The document itself" language="th" + RELOC/doc/latex/lshort-thai/lsh132.zip + RELOC/doc/latex/lshort-thai/readme details="Readme" +catalogue-ctan /info/lshort/thai +catalogue-license pd +catalogue-topics thai tut-latex +catalogue-version 1.32 + +name lshort-turkish +category Package +revision 15878 +shortdesc Turkish introduction to LaTeX +relocated 1 +longdesc A Turkish translation of Oetiker's (not so) short introduction. +containersize 400 +containerchecksum 769036083d282ab95c5f1fed08d669dd4fb1d2dd7937e5a4e2fad54e20cf56ce3d5100b7aa612cc59dca50b6ff67fbbd5bbe05c085b6121654f873fcb991609c +doccontainersize 1427680 +doccontainerchecksum 3aad40a5de5eee9e59064b15fe3e9c6a2585146fc21fdaf4683bfcba6786366c4ff1b3c38b6932426f53a6a9211809d4173f688f0878cbf2011d8982e3732834 +docfiles size=447 + RELOC/doc/latex/lshort-turkish/README + 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-license pd +catalogue-topics tut-latex turkish +catalogue-version 4.20 + +name lshort-ukr +category Package +revision 55643 +shortdesc Ukrainian version of the LaTeX introduction +relocated 1 +longdesc Ukrainian version of A Short Introduction to LaTeX2e. +containersize 372 +containerchecksum 82600643c91120d732d50dcc6e14a4b4b4c471bf6c0031890487215d952cbb9675210f11fc40b039aff529bef90282d432966ef9547fc7d0272f85c02a288f4c +doccontainersize 2085896 +doccontainerchecksum f707d0491bb6a246243035d1cad265787ec4aeb7cbcc73e3500295dc67bf3a3a06b316f9f82d559502b7f108ab636b90fd01c3d1b0ee5f13fa3418910557c8b3 +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" language="uk" +catalogue-ctan /info/lshort/ukrainian +catalogue-license other-free +catalogue-topics tut-latex ukrainian +catalogue-version 4.00 + +name lshort-vietnamese +category Package +revision 55643 +shortdesc Vietnamese version of the LaTeX introduction +relocated 1 +longdesc Vietnamese version of A Short Introduction to LaTeX2e. +containersize 372 +containerchecksum 6192e85537e184137189771d2180f1760db5930ad5a8c3dc8788ab5ca502a92b433224b1cc1afcc4e2a493fd17d4e4c43edbc84e4893ecf0770bd07579444eb7 +doccontainersize 1569572 +doccontainerchecksum a0bad6d83fbc288ac1f39bee6bf1cfb3267a47852a0860f56b8251b67b2dbcd526d203c20b91f7adbe42034481255e5e3128b525e49f8cb341f18d9fc2407e14 +docfiles size=599 + RELOC/doc/latex/lshort-vietnamese/README details="Readme" + RELOC/doc/latex/lshort-vietnamese/lshort-vi.pdf details="The document itself" language="vi" + RELOC/doc/latex/lshort-vietnamese/src/LocalVariables + RELOC/doc/latex/lshort-vietnamese/src/Makefile + RELOC/doc/latex/lshort-vietnamese/src/README.txt + RELOC/doc/latex/lshort-vietnamese/src/abbr.tex + RELOC/doc/latex/lshort-vietnamese/src/biblio.tex + RELOC/doc/latex/lshort-vietnamese/src/contrib.tex + RELOC/doc/latex/lshort-vietnamese/src/custom.tex + RELOC/doc/latex/lshort-vietnamese/src/fancyhea.sty + RELOC/doc/latex/lshort-vietnamese/src/graphic.tex + RELOC/doc/latex/lshort-vietnamese/src/lshort-print-vi.tex + RELOC/doc/latex/lshort-vietnamese/src/lshort-vi.sty + RELOC/doc/latex/lshort-vietnamese/src/lshort-vi.tex + RELOC/doc/latex/lshort-vietnamese/src/lssym.tex + RELOC/doc/latex/lshort-vietnamese/src/math.tex + RELOC/doc/latex/lshort-vietnamese/src/mylayout.sty + RELOC/doc/latex/lshort-vietnamese/src/overview.tex + RELOC/doc/latex/lshort-vietnamese/src/spec.tex + RELOC/doc/latex/lshort-vietnamese/src/things.tex + RELOC/doc/latex/lshort-vietnamese/src/tiengviet.tex + RELOC/doc/latex/lshort-vietnamese/src/title.tex + RELOC/doc/latex/lshort-vietnamese/src/typeset.tex +catalogue-ctan /info/lshort/vietnamese +catalogue-license lppl +catalogue-topics tut-latex vietnamese-doc +catalogue-version 4.00 + +name lstaddons +category Package +revision 56291 +shortdesc Add-on packages for listings: autogobble and line background +relocated 1 +longdesc The bundle contains a small collection of add-on packages for +longdesc the listings package. Current packages are: lstlinebgrd: colour +longdesc the background of some or all lines of a listing; and +longdesc lstautogobble: set the standard "gobble" option to the indent +longdesc of the first line of the code. +containersize 2224 +containerchecksum a0fdffdcc648eaa59145c2668412e02f1ca6f5617c5068b80a767e1efa0df30e9c6b458279380bf062ac8aabb0b531585f65f8c9e7bd9d2d6ca057395cb7fe9e +doccontainersize 366356 +doccontainerchecksum 823d63d53a4c7abc108d6d72244acf48a6197de00d3fca7b3f75a082c2b051091497c354429aa9aebb64682b65c6e45d5a90413f2a4248c8c47dddb0fecdf5a7 +docfiles size=99 + RELOC/doc/latex/lstaddons/README details="Readme" + RELOC/doc/latex/lstaddons/lstautogobble.pdf details="lstautogobble package documentation" + RELOC/doc/latex/lstaddons/lstlinebgrd.pdf details="lstlinebgrd package documentation" +srccontainersize 5572 +srccontainerchecksum 33c8822bfea19259db8792ece9d2796aed34323873dc18d5a0827844b17e6a43d9337a0f55e0f183e18cbc338f0b54d105860993462c3ccea595c7af4df38443 +srcfiles size=7 + RELOC/source/latex/lstaddons/lstaddons.ins + RELOC/source/latex/lstaddons/lstautogobble.dtx + RELOC/source/latex/lstaddons/lstlinebgrd.dtx +runfiles size=2 + RELOC/tex/latex/lstaddons/lstautogobble.sty + RELOC/tex/latex/lstaddons/lstlinebgrd.sty +catalogue-contact-bugs https://sourceforge.net/p/lstaddons/tickets/ +catalogue-contact-home https://sourceforge.net/projects/lstaddons/ +catalogue-contact-repository https://sourceforge.net/p/lstaddons/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/lstaddons +catalogue-license lppl1.3 +catalogue-topics listing +catalogue-version 0.1 + +name lstbayes +category Package +revision 48160 +shortdesc Listings language driver for Bayesian modeling languages +relocated 1 +longdesc The package provides language drivers for the listings package +longdesc for several languages not included in that package: BUGS, JAGS, +longdesc and Stan. +containersize 2920 +containerchecksum 8089546f54a849fdd2b8cd1bb2430927a03249f1acb72bd9d37e9ce42770be2413c6ba8186a45eda8f52a3ba2f34e01e6073ed7acce5883d9407e4ccd86cc12e +doccontainersize 269280 +doccontainerchecksum 9e256d20493164eb1ed01bb6f7dc7f555d9617492fe14688c0852b85e27c1f8f7f1978b1352ea3294bea41f77ce505c6a5bf2910514240e62ce19c47c8da0ee6 +docfiles size=72 + RELOC/doc/latex/lstbayes/Makefile + RELOC/doc/latex/lstbayes/README.md details="Readme" + RELOC/doc/latex/lstbayes/examples.pdf details="Examples of use" + RELOC/doc/latex/lstbayes/examples.tex + RELOC/doc/latex/lstbayes/lstbayes.pdf details="Package documentation" +srccontainersize 4168 +srccontainerchecksum 9378291c820b65d1f1f126a47d6db40ad757009d71327f84e5b78fc4309d77272231cc892fb6881426130d6571b0e7caca7ee910117a9e2660cef42f6f0d7827 +srcfiles size=5 + RELOC/source/latex/lstbayes/lstbayes.dtx + RELOC/source/latex/lstbayes/lstbayes.ins +runfiles size=3 + RELOC/tex/latex/lstbayes/lstbayes.sty +catalogue-ctan /macros/latex/contrib/lstbayes +catalogue-license lppl1.3 +catalogue-topics listing + +name lstfiracode +category Package +revision 49503 +shortdesc Use Fira Code font for listings +relocated 1 +longdesc The lstfiracode package defines FiraCodeStyle for the use with +longdesc the listings package. This style contains almost all ligatures +longdesc in Nikita Prokopov's Fira Code family of fonts. +containersize 2268 +containerchecksum d2752c177194f4926191245f6397ca1ad613e66708e245b29ed6719bfb7438cbbde8dc69a639bdaf7a4447d7737909a5dfdb465a0f0b446c0d30900b7d279c6c +doccontainersize 57084 +doccontainerchecksum ab396312abc4174267184dc2d5f4dd61e4510d3b70bcf1b6b84685cbe2e5941d6325d4abeb1d08f85cef62adc953d4a59ebc5d99fe9d7c643f7d25c3d36bfde7 +docfiles size=18 + RELOC/doc/latex/lstfiracode/README.md details="Readme" + RELOC/doc/latex/lstfiracode/lstfiracode.pdf details="Package documentation" + RELOC/doc/latex/lstfiracode/lstfiracode.tex +runfiles size=2 + RELOC/tex/latex/lstfiracode/lstfiracode.sty +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-license lppl1.3c +catalogue-topics listing +catalogue-version 0.1c + +name lt3graph +category Package +revision 45913 +shortdesc Provide a graph datastructure for experimental LaTeX3 +relocated 1 +longdesc The package defines a 'graph' data structure, for use in +longdesc documents that are using the experimental LaTeX 3 syntax. +containersize 10864 +containerchecksum 9a3137a56952d18f41337f3ea1412180d6a0d7732178fe4855d23647d01648ddefd57859f786534c5bf39cb622da11e113a028135429ca38e6ea3bcfde41b5ca +doccontainersize 576392 +doccontainerchecksum efa314f54f3d7444931f4b7410c406fc89c35fc318882683cc97cd479faae00d3aeb58be06c9b174e59bbcc2bae57ff712983ba0c216a270441490866646fcfa +docfiles size=145 + RELOC/doc/latex/lt3graph/README details="Readme" + RELOC/doc/latex/lt3graph/lt3graph.pdf details="Package documentation" + RELOC/doc/latex/lt3graph/lt3graph.tex +runfiles size=18 + RELOC/tex/latex/lt3graph/lt3graph-dry.sty + RELOC/tex/latex/lt3graph/lt3graph-packagedoc.cls + RELOC/tex/latex/lt3graph/lt3graph.sty +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-license lppl1.3 +catalogue-topics macro-supp expl3 +catalogue-version 0.1.9 + +name ltablex +category Package +revision 34923 +shortdesc Table package extensions +relocated 1 +longdesc Modifies the tabularx environment to combine the features of +longdesc the tabularx package (auto-sized columns in a fixed width +longdesc table) with those of the longtable package (multi-page tables). +containersize 2492 +containerchecksum 5a64bd2904338fc45d6150c6be6497d56cf2e190c41018527a59ef075db41f94378f8981d4b92e211f60f2d641408144c546f2de0bbe4a8e94b0a3cadf4311a8 +doccontainersize 233152 +doccontainerchecksum c3ab3559880077f63523c84cfc5cf363cf9f1d2c4d8aa9cb173b4a2dd07e5afbbdc9b1ea1b29cb50b64c68d65f4470dd9c1656703e0a1ac8955b72b87e33e804 +docfiles size=60 + RELOC/doc/latex/ltablex/README details="README file" + RELOC/doc/latex/ltablex/ltablex.pdf details="Package documentation" + RELOC/doc/latex/ltablex/ltablex.tex +runfiles size=2 + RELOC/tex/latex/ltablex/ltablex.sty +catalogue-also xltabular +catalogue-ctan /macros/latex/contrib/ltablex +catalogue-license lppl +catalogue-topics table table-long +catalogue-version 1.1 + +name ltabptch +category Package +revision 17533 +shortdesc Bug fix for longtable +relocated 1 +longdesc A patch for LaTeX bugs tools/3180 and tools/3480. The patch +longdesc applies to version 4.11 of longtable. +containersize 4740 +containerchecksum 15c839c34935ee27b0b741325a13cbe6ec2f918b007ddd691029ce341173d12ca0e5cdef3a0111c3148257babf686815c5f81c92b6019cbbb022608535f17283 +doccontainersize 267928 +doccontainerchecksum d85ff06112e540d5bd3cac2bc6100d7d922e44d3388d247e521119ee4145716ef52889515b640e85c8a21405a35fbf63b168af09253e772e826572b0560305ac +docfiles size=73 + RELOC/doc/latex/ltabptch/README details="Readme" + RELOC/doc/latex/ltabptch/ltabptch.pdf details="Package documentation" + RELOC/doc/latex/ltabptch/ltabptch.tex + RELOC/doc/latex/ltabptch/ltabtest.tex +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-license lppl +catalogue-topics table-long +catalogue-version 1.74d + +name ltb2bib +category Package +revision 43746 +shortdesc Converts amsrefs' .ltb bibliographical databases to BibTeX format +relocated 1 +longdesc This package implements a LaTeX command that converts an +longdesc amsrefs bibliographical database (.ltb) to a BibTeX +longdesc bibliographical database (.bib). ltb2bib is the reverse of the +longdesc "amsxport" option in amsrefs. Typical uses are: produce bib +longdesc entries for some publishers which don't accept amsrefs (Taylor +longdesc & Francis, for example); import an ltb database in a database +longdesc management program, e.g. for sorting; access one's ltb database +longdesc within emacs's RefTeX mode. +containersize 2420 +containerchecksum 42e634e7c3018b87825e2bae40513eeb757520e1dba1b1b20244bee2d0fadc4663cbfa0dfdf74fa71f7821f47c41bb7c873a64cc68e153f9b7207f6a8bf3f8a9 +doccontainersize 42552 +doccontainerchecksum c26b018043c14022acc64bfaff6377988b5e40d09ac10916479079550bdbcfa5219df13988327679e7647c4a679490645376ed23be0601dc4df0528d45725325 +docfiles size=15 + RELOC/doc/latex/ltb2bib/README details="Readme" + RELOC/doc/latex/ltb2bib/bibdest.bib + RELOC/doc/latex/ltb2bib/doltb2bib.tex + RELOC/doc/latex/ltb2bib/ltb2bib.pdf details="Package documentation" + RELOC/doc/latex/ltb2bib/ltbsource.ltb +srccontainersize 4568 +srccontainerchecksum 0ed23f0084e3afbf51cb6a5c6079db62fd8dca9ef12a159b4be1d68ede6b632155ebc0ee9d6fc91cf93d2cddb5463b5d52b14cb72e7c1d61b975c891f710af3f +srcfiles size=5 + RELOC/source/latex/ltb2bib/ltb2bib.dtx + RELOC/source/latex/ltb2bib/ltb2bib.ins +runfiles size=2 + RELOC/tex/latex/ltb2bib/ltb2bib.sty +catalogue-also amsrefs +catalogue-ctan /biblio/bibtex/utils/ltb2bib +catalogue-license lppl1.3 +catalogue-topics biblio +catalogue-version 0.01 + +name ltxcmds +category Package +revision 56421 +shortdesc Some LaTeX kernel commands for general use +relocated 1 +longdesc This package exports some utility macros from the LaTeX kernel +longdesc into a separate namespace and also makes them available for +longdesc other formats such as plain TeX. +containersize 4124 +containerchecksum 052303cd90b960cc5a9bf89c8938af95d8959ba6bdc603b4d53b68666b443b620417c9ec4ac65867b04eae8cb0a88940f905eac78d2c3718ce7a40ea249c9f94 +doccontainersize 391720 +doccontainerchecksum d82f046eee3892b5a241f78b44910c801b14583cf7f9a693f861ab04d9b05e0cd7639d8f85eaf46f95d2d325688fd1ba3c76421c6ceec5969046db497b0d698f +docfiles size=98 + RELOC/doc/generic/ltxcmds/README.md details="Readme" + RELOC/doc/generic/ltxcmds/ltxcmds.pdf details="Package documentation" +srccontainersize 12916 +srccontainerchecksum 55f04ec6375c0b38b9e9d78fb658378c0e35c9d72127495e824376b1d54155138c65f6bfa804f7795b3a4514fbf1c5a7505e7500f51decb9b4d7c65b47d2909b +srcfiles size=17 + RELOC/source/generic/ltxcmds/ltxcmds.dtx +runfiles size=5 + RELOC/tex/generic/ltxcmds/ltxcmds.sty +catalogue-contact-bugs https://github.com/ho-tex/ltxcmds/issues +catalogue-contact-repository https://github.com/ho-tex/ltxcmds +catalogue-ctan /macros/generic/ltxcmds +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.25 + +name ltxdockit +category Package +revision 21869 +shortdesc Documentation support +relocated 1 +longdesc This bundle, consisting of a simple wrapper class and some +longdesc packages, forms a small LaTeX/BibTeX documentation kit; the +longdesc author uses it for some of his own packages. The package is not +longdesc supported: users should not attempt its use unless they are +longdesc capable of dealing with problems unaided. (The actual purpose +longdesc of releasing the package is to make it possible for third +longdesc parties to compile the documentation of other packages, should +longdesc that be necessary.) +containersize 6272 +containerchecksum 1144bd68bec92b4ac9ec8763e2e7df7c6018cd8b88c7ed2f02e7597c3bc13608a562551d80fab2a41b8aa9881848fa1b3501da7ae9c39edaae3720875ff65bd8 +doccontainersize 968 +doccontainerchecksum a47852f464e8c31d9a2926e55d62c090292337acad6398568c7082012899045ce32163b798b25ac090e7fbd6ebec95f17a83ee1fdfe5f1f33d0b423dbeed94a1 +docfiles size=1 + RELOC/doc/latex/ltxdockit/README details="Readme" +runfiles size=8 + RELOC/tex/latex/ltxdockit/btxdockit.sty + RELOC/tex/latex/ltxdockit/ltxdockit.cfg + RELOC/tex/latex/ltxdockit/ltxdockit.cls + RELOC/tex/latex/ltxdockit/ltxdockit.def + RELOC/tex/latex/ltxdockit/ltxdockit.sty +catalogue-ctan /macros/latex/contrib/ltxdockit +catalogue-license lppl +catalogue-topics doc-supp +catalogue-version 1.2d + +name ltxfileinfo +category Package +revision 38663 +shortdesc Print version information for a LaTeX file +longdesc ltxfileinfo displays version information for LaTeX files. If no +longdesc path information is given, the file is searched using +longdesc kpsewhich. As an extra, for developers, the script will (use +longdesc the --star or --color options) check the valididity of the +longdesc \Provides... statements in the files. The script uses code from +longdesc Uwe Luck's readprov.sty. +depend ltxfileinfo.ARCH +containersize 5168 +containerchecksum ca078af6b822747e9b337eb5694c1b019444e55f5f9f9dbdf59fa1a65c9445b19a62b0d610514c9231365017d3ea95ad9288a37b62b400c12df74c0c7f774a44 +doccontainersize 37612 +doccontainerchecksum 0020ffc5874e0545c7ae4d1f6f9c0d5d598786444f4e98369e0c5fc872c5d63f235222594a9b0f5d2def5c3dcafc5ad660a4fd5a9e4551dd7717bc6ac06189d5 +docfiles size=11 + texmf-dist/doc/support/ltxfileinfo/README details="README" + texmf-dist/doc/support/ltxfileinfo/ltxfileinfo.pdf details="Package documentation" +runfiles size=4 + texmf-dist/scripts/ltxfileinfo/ltxfileinfo +catalogue-ctan /support/ltxfileinfo +catalogue-license gpl +catalogue-topics file-mgmt +catalogue-version 2.04 + +name ltxfileinfo.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ltxfileinfo +containersize 340 +containerchecksum 3c9c4aec2c0f28ace8bf14a2b0e66176d2487c512fef920521316fabdb15335302e5a3acde00d96db68afcacd3f0d8e6930b27116c91b0bff712cd1c2e8bff55 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ltxfileinfo + +name ltxfileinfo.amd64-freebsd +category Package +revision 29005 +shortdesc amd64-freebsd files of ltxfileinfo +containersize 344 +containerchecksum 665445cc3fbdcc60f623bb0246dda8ce3bc39debf2b9e17bf96859f935f5d58f1611d125d6ad5cc2492148538e201073ac5316c76482219ea288a9b353be57ac +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ltxfileinfo + +name ltxfileinfo.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ltxfileinfo +containersize 340 +containerchecksum 29fead6afcd834dc67ffd5c39c1e89f2289bbc345cfa64baf3099dc5d8a6f44d91ed9fe98de0961bd55690591dc85ca3b9afcc89402ff17c5e869243a4ba3787 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ltxfileinfo + +name ltxfileinfo.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ltxfileinfo +containersize 340 +containerchecksum 446b416521942f5f6ae2ec496d86546420cafd8db029359c0b61e4445c831e16e19cd914f2650eaccb10abc36628f246e92de894b97a93b334c7555a5e2ad4c9 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ltxfileinfo + +name ltxfileinfo.i386-cygwin +category Package +revision 29005 +shortdesc i386-cygwin files of ltxfileinfo +containersize 340 +containerchecksum 838a102b9643b368ea9a8a2c7bb2b516a4bd4ed46932ea290cd3d55670a8fa59127c3508512cc86955efb8064517007b0c7473d291da523513589ca378435166 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ltxfileinfo + +name ltxfileinfo.i386-freebsd +category Package +revision 29005 +shortdesc i386-freebsd files of ltxfileinfo +containersize 340 +containerchecksum 07431a9fa68ef11962070eddd44588e75412c80b0ce2eaf2847f9c7d23a0c50b3d31eecf4c136d646abc27e8054a47824fbe309a311387bf1c8337d8db190da8 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ltxfileinfo + +name ltxfileinfo.i386-linux +category Package +revision 29005 +shortdesc i386-linux files of ltxfileinfo +containersize 340 +containerchecksum 9569ebd9bd49f02a5561820d0b6b9216b848458ae6fbaeca807efebd6cd73538ff1024886f29171e0194e15c69b977a693aa2f914b29342705cc01eb5b26ba03 +binfiles arch=i386-linux size=1 + bin/i386-linux/ltxfileinfo + +name ltxfileinfo.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ltxfileinfo +containersize 340 +containerchecksum 103a20f329949665145a00a92b2f0507588d3205c46b9e1e98d51f8086885da5e5a13bf86e38c221cae4886a249791105765ed18773a6d3bc4ddea4c7a95a603 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ltxfileinfo + +name ltxfileinfo.i386-solaris +category Package +revision 29005 +shortdesc i386-solaris files of ltxfileinfo +containersize 340 +containerchecksum dbb0089483f077b63b1bd76bb323005d711d9b8d88ec2cf8cda9975b55aaa75a504f95264c9ca420a0bf80c976c3ccd9e4a759523f2e52f16c10a2ef2161bc76 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ltxfileinfo + +name ltxfileinfo.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ltxfileinfo +containersize 340 +containerchecksum db5b3035cb6a18fd139105212c193f125bc8ecfdec7d24c7bf58c129ddb1d933f13616f8f03e0a9c378371aecfa11260241bf9af22501cd4f667ed1089b89669 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ltxfileinfo + +name ltxfileinfo.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ltxfileinfo +containersize 344 +containerchecksum 4e2bb3fecb3068e56fb78de0e5369a36bd2e32b842cbcbcd8a66906f3b8c286991da922ecb6b2b2db908cb71237c1a6b8651db7a769b75183cbe297ed9d9ded0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ltxfileinfo + +name ltxfileinfo.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ltxfileinfo +containersize 348 +containerchecksum ddda5dcb7651ddb1aeb0c80bff0805bc638013e12dbf9b092a1d1742a56389e0558339e92644646e62fbc8abe7ae2db49d38d91cd60c4a4b7de8d54ffcc4af42 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ltxfileinfo + +name ltxfileinfo.x86_64-linux +category Package +revision 29005 +shortdesc x86_64-linux files of ltxfileinfo +containersize 340 +containerchecksum abbc2a59304e287db2317ad375aaadce33afb258202263d49727e0b1c1d91dc7112d9ec40deed43373b8da5029719bcb8d453974b22f8eec525b19509749811f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ltxfileinfo + +name ltxfileinfo.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ltxfileinfo +containersize 344 +containerchecksum cbbb67d45a7bfe3dad5843f95d31e394cd8aee926f3ea3c680fe722797d626c6f8e9efd87c011f7dce1a65ce4946f92f6a9422f85f9467e9f907f4b504ad2fca +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ltxfileinfo + +name ltxfileinfo.x86_64-solaris +category Package +revision 29005 +shortdesc x86_64-solaris files of ltxfileinfo +containersize 340 +containerchecksum 2da7662f2f819dc7a67b882b4439a7d0ac1ce44b52a5083cea70fde9f7a2b734ba7b647d835c4eef4a52eb9eb94a2b8263503203e54998105387af03a1be5f1f +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ltxfileinfo + +name ltxguidex +category Package +revision 50992 +shortdesc An extended ltxguide class +relocated 1 +longdesc The ltxguidex document class extends ltxguide with a set of +longdesc environments and commands that make writing beautiful LaTeX +longdesc documentation easier and more natural. +containersize 2792 +containerchecksum bb808c7fc1d3fdc7a4d065822a5ff67113bd9fa47a60762b5674040c52149cad14ecd2d0612216b15bcb9684e65e9b51312f83f14030e66de37ee30dabbad434 +doccontainersize 75384 +doccontainerchecksum 534e51a54903e1bbc783b5120015178c48a1a9ff3b06b2121bc9f79c95b7fdc1bc64c374af27a357a44c67df45bb70699d788c150c625d7d949acdce5b109a3a +docfiles size=27 + RELOC/doc/latex/ltxguidex/LICENSE.txt + RELOC/doc/latex/ltxguidex/README.md details="Readme" + RELOC/doc/latex/ltxguidex/ltxguidex.pdf details="Package documentation" + RELOC/doc/latex/ltxguidex/ltxguidex.tex +runfiles size=2 + RELOC/tex/latex/ltxguidex/ltxguidex.cls +catalogue-contact-bugs https://github.com/9999years/ltxguidex/issues +catalogue-contact-home https://github.com/9999years/ltxguidex +catalogue-ctan /macros/latex/contrib/ltxguidex +catalogue-license lppl1.3c +catalogue-topics class +catalogue-version 0.2.0 + +name ltximg +category Package +revision 57521 +shortdesc Extract LaTeX environments into separate image files +longdesc ltximg is a Perl script that automates the process of +longdesc extracting and converting environments provided by TikZ, +longdesc PStricks and other packages from input file to image formats +longdesc and standalone files using ghostscript and poppler-utils. It +longdesc generates a file with only extracted environments and another +longdesc with all extracted environments converted to \includegraphics. +depend ltximg.ARCH +containersize 26344 +containerchecksum 9aa5aacc687d31bc76fd81a2c26cef98fb9328b90c1d97c439f323fe7962184eab2b571431fe208823a6e42fea6c036128414474ca815517421989916a94eeee +doccontainersize 242252 +doccontainerchecksum 5fbf8faf7bfd95b4f35e755ec1507f155647376be9311b97dd7c2924c9958fb0c42351eb43728018bc95e12cdec1b2b8ef89a7a2245e532dc8a49b4c583f54b9 +docfiles size=112 + texmf-dist/doc/support/ltximg/README.md details="Readme" + texmf-dist/doc/support/ltximg/ltximg-doc.pdf details="Package documentation" + texmf-dist/doc/support/ltximg/ltximg-doc.tex + texmf-dist/doc/support/ltximg/ltximg.1 + texmf-dist/doc/support/ltximg/ltximg.man1.pdf details="Manual page (PDF)" +runfiles size=33 + texmf-dist/scripts/ltximg/ltximg.pl +catalogue-contact-repository https://github.com/pablgonz/ltximg +catalogue-contact-support https://github.com/pablgonz/ltximg/issues +catalogue-ctan /support/ltximg +catalogue-license gpl3+ +catalogue-topics chunks graphics subdocs +catalogue-version 2.0 + +name ltximg.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ltximg +containersize 340 +containerchecksum cfec1a93aa4a23513f8e1acca4892e24c624b06ca543eba072e1be45137283359360d62ce46f649404e5c9018a0c73b2041783685648257c3ab36b9056eecec5 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ltximg + +name ltximg.amd64-freebsd +category Package +revision 32346 +shortdesc amd64-freebsd files of ltximg +containersize 340 +containerchecksum 0f29b47cb8984405c2354e9f334dbbaa7b3f50c08c62471060e7ab5bf8aedc32a7e8b37bc5bc5040926da7f7572fb3b4eabf35e118e1516a902a06b637c57ec1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ltximg + +name ltximg.amd64-netbsd +category Package +revision 32346 +shortdesc amd64-netbsd files of ltximg +containersize 340 +containerchecksum 0bd635e60b54384324cecf677972ebf027c5d1ed0cd701034b787ef2fd74dad1a52048b7e5fa347dc0d7983c07afc41985f073817f7102f00244e492daa94fec +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ltximg + +name ltximg.armhf-linux +category Package +revision 32346 +shortdesc armhf-linux files of ltximg +containersize 340 +containerchecksum 700488f3b916340e88c1743532b99a877d78f4fa42cc2c3401178c906a114ef4344f51a84fa89e1b42b9f3af7790b68f537dc1c0c65279646b85ae23251cb701 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ltximg + +name ltximg.i386-cygwin +category Package +revision 32346 +shortdesc i386-cygwin files of ltximg +containersize 340 +containerchecksum feace8a7e90a96d84869963bde27e0f4982ad8a604ec83b9d1c2886c25914fd55c380d8e5bdc968a5ba5b81b6e45adedff09f3741b33d6e8d42b4aa5f81c634d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ltximg + +name ltximg.i386-freebsd +category Package +revision 32346 +shortdesc i386-freebsd files of ltximg +containersize 340 +containerchecksum 584acccfc0166b116465f99615da5d264ec9ef548a81ca807ee090031d2607efe4fcf15e18276437716e3cf8d4230bc1f87f9020e906b345355c278cffd5ed22 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ltximg + +name ltximg.i386-linux +category Package +revision 32346 +shortdesc i386-linux files of ltximg +containersize 340 +containerchecksum f1861921acd65556a6b4780869c9f1e56817fe08b9970e0c14e92ec7c604d8e484c505b65f44daf25bb13868104d205a520115cc50bcd1e8b258369774965cb8 +binfiles arch=i386-linux size=1 + bin/i386-linux/ltximg + +name ltximg.i386-netbsd +category Package +revision 32346 +shortdesc i386-netbsd files of ltximg +containersize 340 +containerchecksum bf8e09d026e97c5c8eabd082f2002d80ef1647a5a43ab65fc4c114360400d880608430dda96bca423c2185eb59c58060b3e82df90e20bc07bcda9c3bded64d51 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ltximg + +name ltximg.i386-solaris +category Package +revision 32346 +shortdesc i386-solaris files of ltximg +containersize 340 +containerchecksum 905a20bb870fa268ce3c35ec3e375ecc561b5394d01f9c643a9cce1b72b894501ce0ae0006aa6b5f86c85ac623e5ff8b183ba098d9d6e8e0be694f6ec85aba44 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ltximg + +name ltximg.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ltximg +containersize 340 +containerchecksum 0d9beaae518d307100397c2a5eb10fc52a23b5ea3181b71d020b0efb5faff35c8dda412cd36345ee0aedf5944d5a987bc30e96054fb2454355f3407b61ae3394 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ltximg + +name ltximg.win32 +category Package +revision 32346 +shortdesc win32 files of ltximg +containersize 680 +containerchecksum 136d56035fcd5b7eb708a651709eb559f21bd926cfa115f7314ea3c2636d0d1e51c3587c7ae10c8f2448aa3c77728f628d62bf80ad6025573f676e25ad5ff7a9 +binfiles arch=win32 size=1 + bin/win32/ltximg.exe + +name ltximg.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ltximg +containersize 344 +containerchecksum 6e0d8d4b234b0fb1ea219a6bab8b5606659c541a6b2fdfae15e7b7552f61e92a8c353a13733fc42feb901f977fdf18da50120583fb5cd0cff378e2de083bc4d4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ltximg + +name ltximg.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ltximg +containersize 348 +containerchecksum 36239e69b7e9364b99ca0f7fe2bdcb8b42d9b0978e8310df0977266ec2a3659da90659c48f81deca11b83658b6c70b81de81e06a9aaa9bdb1473ee2cb3eefb3e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ltximg + +name ltximg.x86_64-linux +category Package +revision 32346 +shortdesc x86_64-linux files of ltximg +containersize 340 +containerchecksum 2ef55ccc1cf5cd9bea41f8276d9004ce2377bde570f858322af12cee0fba495f8870351d34db9a57123f5777ec09e08c0de23c1c2ec167ce6d8228108a4a7540 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ltximg + +name ltximg.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ltximg +containersize 344 +containerchecksum 8777adbca91cfe95be9841dfb24b2dc64fb820f9d26f846dfd63fbf9e655b7e9d730d1b16b8a46bc8160d60ed32b53d0a3ee562f6ccd6e59e25117d7b26bc626 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ltximg + +name ltximg.x86_64-solaris +category Package +revision 32346 +shortdesc x86_64-solaris files of ltximg +containersize 340 +containerchecksum edc764c41fda822146c93c07cd22b334dfbf66a1a1c5d7c3e1e0c49bef164c1f9ae06884a1c70b4bd5f443f5f93bdea4861f5debd379c5483c1ca9525ed5a1f4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ltximg + +name ltxkeys +category Package +revision 28332 +shortdesc A robust key parser for LaTeX +relocated 1 +longdesc The package provides facilities for creating and managing keys +longdesc in the sense of the keyval and xkeyval packages, but it is +longdesc intended to be more robust and faster. Its robustness comes +longdesc from its ability to preserve braces in key values throughout +longdesc parsing. The need to preserve braces in key values arises often +longdesc in parsing keys (for example, in the xwatermark package). The +longdesc package is faster than xkeyval package because (among other +longdesc things) it avoids character-wise parsing of key values (called +longdesc "selective sanitization" by the xkeyval package). The package +longdesc also provides functions for defining and managing keys. +containersize 25344 +containerchecksum f99008a8d6d18697d095721dfd741ed2dc48f6edad09b15d39ce2c37f05e6f9c9d613a4ca7ba7fce8755f9dc5659e21f7e7961a7e38dbe17b7114c2337103d8f +doccontainersize 722900 +doccontainerchecksum ab28eae4955de3e5a23be1d718fd1e23384ec0e4a8c4b86348bd83ff501ec2e51a3981c60babd478bca0c115ba524367f77f3cabd3f733b82a9fe4cc5fc06878 +docfiles size=351 + RELOC/doc/latex/ltxkeys/README details="Readme" + RELOC/doc/latex/ltxkeys/ltxkeys-guide-table1.tex + RELOC/doc/latex/ltxkeys/ltxkeys-guide.cfg + RELOC/doc/latex/ltxkeys/ltxkeys-guide.pdf details="Package documentation" + RELOC/doc/latex/ltxkeys/ltxkeys-guide.tex + RELOC/doc/latex/ltxkeys/ltxkeys-test-20121122.tex +runfiles size=34 + RELOC/tex/latex/ltxkeys/ltxkeys.sty +catalogue-also xkeyval +catalogue-ctan /macros/latex/contrib/ltxkeys +catalogue-license lppl +catalogue-topics keyval +catalogue-version 0.0.3c + +name ltxmisc +category Package +revision 21927 +shortdesc Miscellaneous LaTeX packages, etc +relocated 1 +containersize 15384 +containerchecksum 3433a283f52c41f198b944eaf58a961751e7fd3c0991960a2516fd72af61671e776f48c6a5e241e379b54a08af6fba732ab1c35e42b8c93a62937b5a38cdb767 +runfiles size=17 + RELOC/tex/latex/ltxmisc/abstbook.cls + RELOC/tex/latex/ltxmisc/beletter.cls + RELOC/tex/latex/ltxmisc/bibcheck.sty + RELOC/tex/latex/ltxmisc/concrete.sty + RELOC/tex/latex/ltxmisc/flashcard.cls + RELOC/tex/latex/ltxmisc/iagproc.cls + RELOC/tex/latex/ltxmisc/linsys.sty + RELOC/tex/latex/ltxmisc/mitpress.sty + RELOC/tex/latex/ltxmisc/thrmappendix.sty + RELOC/tex/latex/ltxmisc/topcapt.sty + RELOC/tex/latex/ltxmisc/vrbexin.sty +catalogue-ctan /macros/latex/contrib/misc +catalogue-license collection +catalogue-topics collection + +name ltxnew +category Package +revision 21586 +shortdesc A simple means of creating commands +relocated 1 +longdesc The package ltxnew provides \new, \renew and \provide prefixes +longdesc for checking definitions. It is designed to work with e-TeX +longdesc distributions of LaTeX and relies on the LaTeX internal macro +longdesc \@ifdefinable. Local allocation of counters, dimensions, skips, +longdesc muskips, boxes, tokens and marks are provided by the etex +longdesc package. \new and \renew as well as \provide may be used for +longdesc all kind of control sequences. Please refer to the section +longdesc "Using \new" of the PDF documentation. +containersize 2828 +containerchecksum 7dda3fd3638ddf528adda0430cbd32cd8fe410a743b7af5bf76e651ee98b10f2481723665a19fda2f2b468ca5c4a838144cbd6e9c457f50362f7b0e83106de26 +doccontainersize 153768 +doccontainerchecksum 91e07169ac377570382b9bc7044c0d66b61268fca38e2fcff4d7075322dbed0d3151976848c93b5d0a2088676e67f3a79d2a555829f170ca61a37b7c40fbdf66 +docfiles size=63 + RELOC/doc/latex/ltxnew/README details="Readme" + RELOC/doc/latex/ltxnew/ltxnew.pdf details="Package documentation" +srccontainersize 10704 +srccontainerchecksum 0718785df4355f264738d8929128e4024eae629dcc1fc51e0d408ace6be8688b9281bc0e352e401a6fba71b0a3f376610fdbea7520443233d088e93740e0dbc7 +srcfiles size=10 + RELOC/source/latex/ltxnew/ltxnew.dtx + RELOC/source/latex/ltxnew/ltxnew.ins +runfiles size=3 + RELOC/tex/latex/ltxnew/ltxnew.sty +catalogue-ctan /macros/latex/contrib/ltxnew +catalogue-license lppl1.3 +catalogue-topics macro-def +catalogue-version 1.3 + +name ltxtools +category Package +revision 24897 +shortdesc A collection of LaTeX API macros +relocated 1 +longdesc This is a bundle of macros that the author uses in the coding +longdesc of others of his macro files. +containersize 51564 +containerchecksum aed74d79bd9da7f7303cd14db5c2a74aab51de03e87a84986b294019a971eb68a445cace8af2394631fc4ec6963ad32347c47a80612f70a7427adeb689d3cf36 +doccontainersize 1024 +doccontainerchecksum e0a8b28f512a15fec379aeb3350c0611a77652531a66ee5a39010400fe5d1416c40bf6bd89d4e967851b09ad5d11b1d83ead675a0a722255a0e941980d74d1d5 +docfiles size=1 + RELOC/doc/latex/ltxtools/README details="Readme" +runfiles size=73 + RELOC/tex/latex/ltxtools/ltxtools-base.sty + RELOC/tex/latex/ltxtools/ltxtools-doc.sty + RELOC/tex/latex/ltxtools/ltxtools-environ.sty + RELOC/tex/latex/ltxtools/ltxtools-incluput.sty + RELOC/tex/latex/ltxtools/ltxtools-index.sty + RELOC/tex/latex/ltxtools/ltxtools-review.sty + RELOC/tex/latex/ltxtools/ltxtools-trace.sty + RELOC/tex/latex/ltxtools/ltxtools.sty +catalogue-ctan /macros/latex/contrib/ltxtools +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.0.1a + +name lua-alt-getopt +category Package +revision 56414 +shortdesc Process application arguments the same way as getopt_long +relocated 1 +longdesc lua_altgetopt is a MIT-licensed module for Lua, for processing +longdesc application arguments in the same way as BSD/GNU getopt_long(3) +longdesc functions do. This module is made available for lua script +longdesc writers to have consistent command line parsing routines. +containersize 2008 +containerchecksum 60ad4731ac61f9b5c4360bb3d0c6475e2abd358418e20bed29cc94761fdfb97fcf02829b9785e559ca6052a1e82ee7f0b104b166592b9fd87237679ac3caa2e6 +doccontainersize 3320 +doccontainerchecksum 5921a3fd6846b15b0564b9182fdaa5aa62ee6897f3ea55eefbfd07f30f556633668755ee6e356dac23c9b61fd7ecf4013da8f87ebe151a2bd855c36d45f60434 +docfiles size=7 + RELOC/doc/support/lua-alt-getopt/ChangeLog + RELOC/doc/support/lua-alt-getopt/Makefile + RELOC/doc/support/lua-alt-getopt/NEWS + RELOC/doc/support/lua-alt-getopt/README details="Readme" + RELOC/doc/support/lua-alt-getopt/alt_getopt + RELOC/doc/support/lua-alt-getopt/tests/test.out + RELOC/doc/support/lua-alt-getopt/tests/test.sh +runfiles size=1 + RELOC/scripts/lua-alt-getopt/alt_getopt.lua +catalogue-contact-repository https://github.com/cheusov/lua-alt-getopt +catalogue-ctan /support/lualibs/lua-alt-getopt +catalogue-license mit +catalogue-topics lua-supp +catalogue-version 0.7.0 + +name lua-check-hyphen +category Package +revision 47527 +shortdesc Mark hyphenations in a document, for checking +relocated 1 +longdesc The package looks at all hyphenation breaks in the document, +longdesc comparing them against a white-list prepared by the author. If +longdesc a hyphenation break is found, for which there is no entry in +longdesc the white-list, the package flags the line where the break +longdesc starts. The author may then either add the hyphenation to the +longdesc white-list, or adjust the document to avoid the break. +containersize 3628 +containerchecksum 89cd0a13578d386bbf584f3c74c6c3ee1a45a7c0bf40480e5396f86b2af29b26abe3ab8aac69be0f1fe23cceb6da33237ea38384854fdfc7be6939832a8cad08 +doccontainersize 116564 +doccontainerchecksum cd756e0356b36ccd26d1d78c67026f5a27272ac383bdfc6f44ddb630f58d067c05fb9152f1ed9793d71a63af6607107b8d4b5af311563e2c3d966079b2d3e0c1 +docfiles size=35 + RELOC/doc/lualatex/lua-check-hyphen/doc/README.md details="Readme" + RELOC/doc/lualatex/lua-check-hyphen/doc/luacheckhyphenmanual.pdf details="Package documentation" + RELOC/doc/lualatex/lua-check-hyphen/doc/luacheckhyphenmanual.tex + RELOC/doc/lualatex/lua-check-hyphen/doc/mit-license.txt + RELOC/doc/lualatex/lua-check-hyphen/doc/sample.pdf details="Sample of use" + RELOC/doc/lualatex/lua-check-hyphen/doc/sample.tex +runfiles size=4 + RELOC/tex/lualatex/lua-check-hyphen/lua-check-hyphen.lua + RELOC/tex/lualatex/lua-check-hyphen/lua-check-hyphen.sty +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-license mit +catalogue-topics hyphenation luatex +catalogue-version 0.7a + +name lua-physical +category Package +revision 56306 +shortdesc Functions and objects for the computation of physical quantities +relocated 1 +longdesc This is a pure Lua library, which provides functions and +longdesc objects for the computation of physical quantities. The package +longdesc provides units of the SI and the imperial system. In order to +longdesc display the numbers with measurement uncertainties, the package +longdesc is able to perform Gaussian error propagation. +containersize 359624 +containerchecksum d7118f61f0a64ccd3e67b7197240a49c841720816f9d438959413c603ecce9b332c9d253f21dbcc009839220540f046b18b4b009d3ad5f35a346d8276be47229 +doccontainersize 348632 +doccontainerchecksum e3e50f9994656b3f6049f40f0cb9ecce216869b439682560f9f51496fcb43b94f33d14e1b9f0f4a160c9af848c58bf2fa7e6d2dd1def46ea029ebfcc4410f1e5 +docfiles size=148 + RELOC/doc/lualatex/lua-physical/LICENSE + RELOC/doc/lualatex/lua-physical/README.md details="Readme" + RELOC/doc/lualatex/lua-physical/lua-physical.pdf details="Package documentation" + RELOC/doc/lualatex/lua-physical/lua-physical.tex + RELOC/doc/lualatex/lua-physical/test/luaunit.lua + RELOC/doc/lualatex/lua-physical/test/test.lua + RELOC/doc/lualatex/lua-physical/test/testData.lua + RELOC/doc/lualatex/lua-physical/test/testDefinition.lua + RELOC/doc/lualatex/lua-physical/test/testDimension.lua + RELOC/doc/lualatex/lua-physical/test/testNumber.lua + RELOC/doc/lualatex/lua-physical/test/testQuantity.lua + RELOC/doc/lualatex/lua-physical/test/testUnit.lua +runfiles size=270 + RELOC/scripts/lua-physical/physical-astronomical.lua + RELOC/scripts/lua-physical/physical-data.lua + RELOC/scripts/lua-physical/physical-definition.lua + RELOC/scripts/lua-physical/physical-dimension.lua + RELOC/scripts/lua-physical/physical-isotope.lua + RELOC/scripts/lua-physical/physical-number.lua + RELOC/scripts/lua-physical/physical-quantity.lua + RELOC/scripts/lua-physical/physical-unit.lua + RELOC/scripts/lua-physical/physical.lua +catalogue-contact-bugs https://github.com/tjenni/lua-physical/issues +catalogue-contact-home https://github.com/tjenni/lua-physical +catalogue-ctan /macros/luatex/latex/lua-physical +catalogue-license mit +catalogue-topics physics luatex +catalogue-version 1.0.3 + +name lua-typo +category Package +revision 58744 +shortdesc Highlighting typographical flaws with LuaLaTeX +relocated 1 +longdesc This package tracks common typographic flaws in LuaLaTeX +longdesc documents, especially widows, orphans, hyphenated words split +longdesc over two pages, consecutive lines ending with hyphens, +longdesc paragraphs ending on too short lines, etc. Customisable colours +longdesc are used to highlight these flaws, and the list of pages on +longdesc which typographical flaws were found is printed. +containersize 6232 +containerchecksum 940664d9898524e99966b6116056bb4f811d39c58a29926afee82846dfe6c77eadfc7e8cc37a3e417401cca1cab7f16043677d84947c51f695109e3f2eb58655 +doccontainersize 180604 +doccontainerchecksum 18485d5b079306fb6d943256453f4643f33b9b6781133a2fb0f1ecc5b87d8a755bb0c60428d565a6e42c6aedd3f23f0d03aacd3af5ac4055e1950289fc99dcec +docfiles size=53 + RELOC/doc/lualatex/lua-typo/README.md details="Readme" + RELOC/doc/lualatex/lua-typo/lua-typo-demo.pdf details="Example of use" + RELOC/doc/lualatex/lua-typo/lua-typo-demo.tex + RELOC/doc/lualatex/lua-typo/lua-typo-fr.ltx + RELOC/doc/lualatex/lua-typo/lua-typo-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/lualatex/lua-typo/lua-typo.ltx + RELOC/doc/lualatex/lua-typo/lua-typo.pdf details="Package documentation (English)" +srccontainersize 18612 +srccontainerchecksum 348aa0eb23bd9a94f50851a8e71633377347c1ce1942d4d84faa3b8d612ff26c2d0be192fa1a14097be6fb8fab3e363de0b1f77c2bba737a027e7ee279c55729 +srcfiles size=18 + RELOC/source/lualatex/lua-typo/lua-typo.dtx +runfiles size=8 + RELOC/tex/lualatex/lua-typo/lua-typo.cfg + RELOC/tex/lualatex/lua-typo/lua-typo.sty +catalogue-ctan /macros/luatex/latex/lua-typo +catalogue-license lppl1.3c +catalogue-topics luatex text-layout +catalogue-version 0.32 + +name lua-uca +category Package +revision 56414 +shortdesc Unicode Collation Algorithm library for Lua +relocated 1 +longdesc The Lua-UCA library provides basic support for Unicode +longdesc Collation Algorithm in Lua. It can be used to sort arrays of +longdesc strings according to rules of particular languages. It can be +longdesc used in other Lua projects that need to sort text in a language +longdesc dependent way, like indexing processors, bibliographic +longdesc generators, etc +containersize 70984 +containerchecksum 51223bc90b7d9c8da149133b5fc019e968da2d82c089a6e5884cd9c32b5306c3f7e575708229b1e6e77ad2840fcb0d4b01fe1d3973478385579ddc4a2d473096 +doccontainersize 58416 +doccontainerchecksum 462d46a84532e483f7d70a6b16bc9b3f7bbd7623b9fa5ec237b8e5fbf5254de69bece3d7a494e87c73ded77852b72b1b5ef43b7b5b6e02f1e181f82727069352 +docfiles size=19 + RELOC/doc/support/lua-uca/CHANGELOG.md + RELOC/doc/support/lua-uca/LICENSE + RELOC/doc/support/lua-uca/README.md details="Readme" + RELOC/doc/support/lua-uca/lua-uca-doc.pdf details="Package documentation" + RELOC/doc/support/lua-uca/lua-uca-doc.tex +runfiles size=465 + RELOC/scripts/lua-uca/lua-uca-collator.lua + RELOC/scripts/lua-uca/lua-uca-ducet.lua + RELOC/scripts/lua-uca/lua-uca-languages.lua + RELOC/scripts/lua-uca/lua-uca-reordering-table.lua + RELOC/scripts/lua-uca/lua-uca-tailoring.lua +catalogue-contact-bugs https://github.com/michal-h21/lua-uca/issues +catalogue-contact-repository https://github.com/michal-h21/lua-uca +catalogue-ctan /support/lualibs/lua-uca +catalogue-license mit +catalogue-topics typesetting luatex +catalogue-version 0.1 + +name lua-ul +category Package +revision 58988 +shortdesc Underlining for LuaLaTeX +relocated 1 +longdesc This package provides underlining, strikethough, and +longdesc highlighting using features in LuaLaTeX which avoid the +longdesc restrictions imposed by other methods. In particular, kerning +longdesc is not affected, the underlined text can use arbitrary +longdesc commands, hyphenation works etc. The package requires LuaTeX +longdesc version [?] 1.12.0. +containersize 6192 +containerchecksum 5af2e9d3a5c14321e10427de36cfc04a5f209fe2bec2e7a71704594fbdbf6ed57c36c1009b39f12f91e548d23d8202c345a3d49670e3305465ac5910f0c226e3 +doccontainersize 98028 +doccontainerchecksum 46c317b8a60050a292bd7cf9499dd4ed25384708f85b7f51457867305d417d1acf924f8d24ba93fa3ffbeffb00bc453e74c87fb3692627a7c30c872a3fc28fb4 +docfiles size=26 + RELOC/doc/lualatex/lua-ul/README details="Readme" + RELOC/doc/lualatex/lua-ul/lua-ul.pdf details="Package documentation" +srccontainersize 9836 +srccontainerchecksum 3df3e88520075d96d04826d82e83f3914d21dfaf962a42312d1b4f1c51ce01e5bbfd8a12a21df468476ff4c511cabb087ffe1de62a9b10d0a6a7b3670da596eb +srcfiles size=9 + RELOC/source/lualatex/lua-ul/lua-ul.dtx +runfiles size=7 + RELOC/tex/lualatex/lua-ul/docstrip-luacode.sty + RELOC/tex/lualatex/lua-ul/lua-ul.lua + RELOC/tex/lualatex/lua-ul/lua-ul.sty + RELOC/tex/lualatex/lua-ul/pre_append_to_vlist_filter.lua +catalogue-contact-bugs https://github.com/zauguin/luaul/issues +catalogue-contact-repository https://github.com/zauguin/luaul +catalogue-ctan /macros/luatex/latex/lua-ul +catalogue-license lppl1.3c +catalogue-topics underline luatex +catalogue-version 0.1.3 + +name lua-uni-algos +category Package +revision 55206 +shortdesc Unicode algorithms for LuaTeX +relocated 1 +longdesc Lua code working with Unicode data has to deal with quite some +longdesc challenges. For example there are many canonically equivalent +longdesc sequences which should be treated in the same way, and even +longdesc identifying a single character becomes quite different once you +longdesc have to deal with all kinds of combining characters, emoji +longdesc sequences and syllables in different scripts. Therefore +longdesc lua-uni-algos wants to build a collection of small libraries +longdesc implementing algorithms to deal with lots of the details in +longdesc Unicode, such that authors of LuaTeX packages can focus on +longdesc their actual functionality instead of having to fight against +longdesc the peculiarities of Unicode. Given that this package provides +longdesc Lua modules, it is only useful in Lua(HB)TeX. Additionally, it +longdesc expects an up-to-date version of the unicode-data package to be +longdesc present. This package is intended for package authors only; no +longdesc user-level functionality provided. +containersize 5384 +containerchecksum cdb671d19ba69f6b2c7a5f55127c8f97973c9d9c962016729dcf2ff0ee8abf649acce51bc45c5ec736f243ecb56e98de7c1d5152827023c8e19af3990ebf840a +doccontainersize 62084 +doccontainerchecksum 5ec98605457ad145e63186ae1002f6c2fffc9bba2e512a3f982540dfe27539d848cfa05a8db55f26263fbfe60521ad7795bd6b474b6d29880046e1699daca074 +docfiles size=19 + RELOC/doc/luatex/lua-uni-algos/README.md details="Readme" + RELOC/doc/luatex/lua-uni-algos/lua-uni-algos.pdf details="Package documentation" + RELOC/doc/luatex/lua-uni-algos/lua-uni-algos.tex +runfiles size=8 + RELOC/tex/luatex/lua-uni-algos/lua-uni-algos.lua + RELOC/tex/luatex/lua-uni-algos/lua-uni-case.lua + RELOC/tex/luatex/lua-uni-algos/lua-uni-graphemes.lua + RELOC/tex/luatex/lua-uni-algos/lua-uni-normalize.lua + RELOC/tex/luatex/lua-uni-algos/lua-uni-parse.lua +catalogue-contact-repository https://github.com/zauguin/lua-uni-algos +catalogue-ctan /macros/luatex/generic/lua-uni-algos +catalogue-license lppl1.3 +catalogue-topics luatex unicode +catalogue-version 0.2 + +name lua-visual-debug +category Package +revision 57349 +shortdesc Visual debugging with LuaLaTeX +relocated 1 +longdesc The package uses lua code to provide visible indications of +longdesc boxes, glues, kerns and penalties in the PDF output. The +longdesc package is known to work in LaTeX and Plain TeX documents. +containersize 3476 +containerchecksum f98f686ab3d03e48e377ebec624297f858be03097ed66b6448e82869942ce87f8d1699e4dffa9fc3294a3a8a79a2f547efe0e006eb132ba77eabb714e31d8b40 +doccontainersize 289376 +doccontainerchecksum dc1deb6a514397c745001c5635d5205f03b44cefb43d6618f83a2314453928141ed9591b5ad8539db96998901981f20ffc80f89b4b7d5532abf736cb9ae0bdb3 +docfiles size=102 + RELOC/doc/luatex/lua-visual-debug/README.md details="Readme" + RELOC/doc/luatex/lua-visual-debug/lvdebug-doc.pdf details="Package documentation" + RELOC/doc/luatex/lua-visual-debug/lvdebug-doc.tex + RELOC/doc/luatex/lua-visual-debug/lvdebugdetail1-num.png + RELOC/doc/luatex/lua-visual-debug/sample-plain.pdf + RELOC/doc/luatex/lua-visual-debug/sample-plain.tex + RELOC/doc/luatex/lua-visual-debug/sample.pdf details="Sample output" + RELOC/doc/luatex/lua-visual-debug/sample.tex + RELOC/doc/luatex/lua-visual-debug/strut.png +runfiles size=3 + RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.lua + RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.sty +catalogue-contact-repository https://github.com/pgundlach/lvdebug +catalogue-ctan /macros/luatex/generic/lua-visual-debug +catalogue-license mit +catalogue-topics debug-supp luatex macro-gen +catalogue-version 0.8 + +name luabibentry +category Package +revision 55777 +shortdesc Repeat BibTeX entries in a LuaLaTeX document body +relocated 1 +longdesc The package reimplements bibentry, for use in LuaLaTeX. +containersize 2344 +containerchecksum ea46242da727c40f24fa232e1cd1db4bdaa7391aa372ae7dcb0210e2755fdfa2155de5c80a61b0c4554ab1c23a14bf286d00f07b34aef5edf416ac6b06f031ac +doccontainersize 144332 +doccontainerchecksum 9b4954e294173699cef6ba965948bbc2518d42158c3f80cfa5bec17c5e58166240f8c8d3864f5dda94ae325aef688db7003138ccdf3d6eb249b544baa72ec13e +docfiles size=41 + RELOC/doc/lualatex/luabibentry/News + RELOC/doc/lualatex/luabibentry/README details="Readme" + RELOC/doc/lualatex/luabibentry/luabibentry.pdf details="Package documentation" +srccontainersize 5424 +srccontainerchecksum d43a9d2024e5293966335df592451e3bd44e3f3522a06163c93da3d242b3e70377dda3612333a64e57d9db8ae8052753cebe9a73e01125b41e495c7a0f3a7592 +srcfiles size=4 + RELOC/source/lualatex/luabibentry/Makefile + RELOC/source/lualatex/luabibentry/luabibentry.dtx +runfiles size=2 + RELOC/tex/lualatex/luabibentry/luabibentry.lua + RELOC/tex/lualatex/luabibentry/luabibentry.sty +catalogue-contact-bugs https://github.com/koppor/luabibentry/issues +catalogue-contact-repository https://github.com/koppor/luabibentry +catalogue-ctan /macros/luatex/latex/luabibentry +catalogue-license lppl1.3 +catalogue-topics cite-supp luatex use-lua +catalogue-version 0.1a + +name luabidi +category Package +revision 54512 +shortdesc Bidi functions for LuaTeX +relocated 1 +longdesc The package attempts to emulate the XeTeX bidi package, in the +longdesc context of LuaTeX. +containersize 2508 +containerchecksum 917d0d96748f2b70d368a2719bf6fdfaada3d24e2e60c97b6d412ba2cdd991a920d86a94d19136e075605095c19331e1dd37c3a059a9e8f772479ff5ab53550d +doccontainersize 93868 +doccontainerchecksum 92345c9f8e50eefccba39f294841a7eaff7d0328ef445106dd436ff10a994a8a9ec027c9400f8b4b1f873ba1fbd92565e21b1cf2c73d40d3468ce27ca7ae128d +docfiles size=28 + RELOC/doc/lualatex/luabidi/LICENCE.md + RELOC/doc/lualatex/luabidi/README.md details="Readme" + RELOC/doc/lualatex/luabidi/luabidi.pdf details="Package documentation" + RELOC/doc/lualatex/luabidi/luabidi.tex +runfiles size=5 + RELOC/tex/lualatex/luabidi/luabidi-arabmaths.def + RELOC/tex/lualatex/luabidi/luabidi-autofootnoterule.def + RELOC/tex/lualatex/luabidi/luabidi-footnotes.def + RELOC/tex/lualatex/luabidi/luabidi-test-arabmaths.tex + RELOC/tex/lualatex/luabidi/luabidi.sty +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-license lppl1.3c mit +catalogue-topics typesetting luatex +catalogue-version 0.5 + +name luacode +category Package +revision 25193 +shortdesc Helper for executing lua code from within TeX +relocated 1 +longdesc Executing Lua code from within TeX with directlua can sometimes +longdesc be tricky: there is no easy way to use the percent character, +longdesc counting backslashes may be hard, and Lua comments don't work +longdesc the way you expect. The package provides the \luaexec command +longdesc and the luacode(*) environments to help with these problems. +containersize 2188 +containerchecksum b107c9cf774608782c1ba1ce3ebea8d330ff9762046eaa9b9de112b704df1d0da1bd7e33b15e9d847f232b7594d53fb2678cdb78b23d87aaac73cc2517ac8e1e +doccontainersize 412328 +doccontainerchecksum 622a2417490fb818d5021bb519ea7ac8d886df5002534c4d269268ca4d2119ccc15b029111edb42d04a546e7a46a60bc8eaa6a0a108e9231cc49fc2141ed8ec7 +docfiles size=103 + RELOC/doc/lualatex/luacode/News + RELOC/doc/lualatex/luacode/README details="Readme" + RELOC/doc/lualatex/luacode/luacode.pdf details="Package documentation" +srccontainersize 9016 +srccontainerchecksum fe53aa46157e24f7f637584faa0c18de62ce3857d9841598f51e09a03354e9cd44bb8fc150e91d5b9ad6d1ca150a065fb1507847cc385ca67bf67679669d7ef0 +srcfiles size=7 + RELOC/source/lualatex/luacode/Makefile + RELOC/source/lualatex/luacode/luacode.dtx +runfiles size=2 + RELOC/tex/lualatex/luacode/luacode.sty +catalogue-ctan /macros/luatex/latex/luacode +catalogue-license lppl1.3 +catalogue-topics lua-supp luatex +catalogue-version 1.2a + +name luacolor +category Package +revision 57829 +shortdesc Color support based on LuaTeX's node attributes +relocated 1 +longdesc This package implements color support based on LuaTeX's node +longdesc attributes. +containersize 4152 +containerchecksum 39252eb36291bf6023e8ab24e7f4cbca10caa9d89204e8e80a5962b08e66c6ba5b588e98d17f9b13be3a52fb5c392499ebb73ded2e43a4ce7ccad4cf30a24302 +doccontainersize 328240 +doccontainerchecksum 4aeb524631531e6d18decde7b01acae4aaaee8f80392da87a2e7fadec9d353749b2d1dc65573ce2f184c24494ba340589fb83203ffcd49271e05dcbb79a1fd19 +docfiles size=82 + RELOC/doc/latex/luacolor/README.md details="Readme" + RELOC/doc/latex/luacolor/luacolor.pdf details="Package documentation" +srccontainersize 9244 +srccontainerchecksum 93d7f9ac094612760c7cbaa1b591dee5f31f8278f462808a484311e2ba6dd6a20671e7431e7f22985a7f77e23436eefe02484026820d4b125a7a1b4b9d6becbc +srcfiles size=9 + RELOC/source/latex/luacolor/luacolor.dtx +runfiles size=4 + RELOC/tex/latex/luacolor/luacolor.lua + RELOC/tex/latex/luacolor/luacolor.sty +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-license lppl1.3 +catalogue-topics colour luatex +catalogue-version 1.17 + +name luahbtex +category TLCore +revision 57972 +shortdesc LuaTeX with HarfBuzz library for glyph shaping +depend cm +depend etex +depend hyph-utf8 +depend hyphen-base +depend knuth-lib +depend luahbtex.ARCH +depend luatex +depend plain +depend tex-ini-files +depend unicode-data +execute AddFormat name=luahbtex engine=luahbtex patterns=language.def,language.dat.lua options="luatex.ini" fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8,luatex +containersize 460 +containerchecksum bb198606ca33912f75327b0799061a81aeb9e2315182001710929d5a7c786fc11b58a5eadcc186f2db21df01777904ada31058c0a03376c04020b213d9f7c519 +doccontainersize 30244 +doccontainerchecksum 9b7c72ad24d459b345552ee8ae05c047c61cf3e0b6eabb927e2a02bf62558f143e937463574bdb0cc60a0a4c8b2da3f86b1d9361275142519044051039275f1c +docfiles size=10 + texmf-dist/doc/man/man1/luahbtex.1 + texmf-dist/doc/man/man1/luahbtex.man1.pdf + +name luahbtex.aarch64-linux +category TLCore +revision 58876 +shortdesc aarch64-linux files of luahbtex +containersize 2117792 +containerchecksum 0fad819c02ccde3b05b6d5b506138e4dd710a70c6c4b58ee81a45e4ceb2cb1f2509549f4b80b682a7a883ab122eea78d1a108fb28b7715c37247d2bffb8617ea +binfiles arch=aarch64-linux size=2019 + bin/aarch64-linux/luahbtex + +name luahbtex.amd64-freebsd +category TLCore +revision 58850 +shortdesc amd64-freebsd files of luahbtex +containersize 2187388 +containerchecksum cdeb0a8609c884a647b18ab17ce824816aeaa2dba8d254de3a5042135db9d24bbd52aa82957d442e0f02bb5eb367a3e9c6f177a44a9510733d03dd096575704b +binfiles arch=amd64-freebsd size=1939 + bin/amd64-freebsd/luahbtex + +name luahbtex.amd64-netbsd +category TLCore +revision 58866 +shortdesc amd64-netbsd files of luahbtex +containersize 2110640 +containerchecksum c8822a2a53baa9ec2513538720f1bee01d8f7a3ef1771d7d2305aaf53669e50dcdd75d6d9b19ab358d5381db0daff0cf67bec04378f3d03fc68a988a0c0c89b7 +binfiles arch=amd64-netbsd size=2711 + bin/amd64-netbsd/luahbtex + +name luahbtex.armhf-linux +category TLCore +revision 58911 +shortdesc armhf-linux files of luahbtex +containersize 1847732 +containerchecksum 05374239fe5f4b0656e6cdc227ab63b8c8b87b5435fa840f73ad7470f6cbd5a3614c7c14719b45611955a38506648ccc939ac7f3c802716aa09ac8565d4734df +binfiles arch=armhf-linux size=1653 + bin/armhf-linux/luahbtex + +name luahbtex.i386-cygwin +category TLCore +revision 58851 +shortdesc i386-cygwin files of luahbtex +containersize 2047236 +containerchecksum 04a09df54da14bae9ef108c4592fd8e3a21dc7aca974891a0959ed37d16c9504a818f28ba5a48ed806cb8710a795b2e1b0f05f39c89b85a8eb3fcb84dbd7e590 +binfiles arch=i386-cygwin size=1884 + bin/i386-cygwin/luahbtex.exe + +name luahbtex.i386-freebsd +category TLCore +revision 58850 +shortdesc i386-freebsd files of luahbtex +containersize 2018016 +containerchecksum 6a2679762dabb8b8928af5b0fdddf2da1e69afd3d0e57e68b04decc07de87e7de4b299829eba33addce20876be21a0a06fb5a6f7f5706f09f3650d97747f66f4 +binfiles arch=i386-freebsd size=1794 + bin/i386-freebsd/luahbtex + +name luahbtex.i386-linux +category TLCore +revision 58850 +shortdesc i386-linux files of luahbtex +containersize 2294104 +containerchecksum 1c5718a35c32d296b94a8031ea6a6afb08c098c97fbd6e356540b74b27db5233569eddafbc1cd25c43df9bfae46ef629afb49618b92bbc8077527529c12597be +binfiles arch=i386-linux size=2017 + bin/i386-linux/luahbtex + +name luahbtex.i386-netbsd +category TLCore +revision 58866 +shortdesc i386-netbsd files of luahbtex +containersize 1956536 +containerchecksum 9529fc770fd68844f4779f516e686d4e102f916baafb25440125eb738fb541df593dec6f40bfec4795ff93b0faca59319c3a6559577b33b644db64a1d6ed6885 +binfiles arch=i386-netbsd size=2500 + bin/i386-netbsd/luahbtex + +name luahbtex.i386-solaris +category TLCore +revision 58850 +shortdesc i386-solaris files of luahbtex +containersize 2023452 +containerchecksum d61429fdfa108a361885ccd787980866b7cce8a47622ef8931dbcc084367c4206f2542ace5d7ee070ead92839fce2db00251f2ef8b15071faadf97841370feb8 +binfiles arch=i386-solaris size=1721 + bin/i386-solaris/luahbtex + +name luahbtex.universal-darwin +category TLCore +revision 58850 +shortdesc universal-darwin files of luahbtex +containersize 3565996 +containerchecksum cb92dcf43b638f50205787155d8ac8102735510199435b2d55ce5fa667fac55d205f63401bdd97531aa276ce210b05d642923d019c428da2c2a5dea0fd10f868 +binfiles arch=universal-darwin size=3572 + bin/universal-darwin/luahbtex + +name luahbtex.win32 +category TLCore +revision 58843 +shortdesc win32 files of luahbtex +containersize 1559428 +containerchecksum 7092193520820ce5a9622bf9ea75fd1ed568a9e73813716a45633ce2dbc9496b6e46f42547b1b39a0ab2e6f59f129b75887106e06a4b8188a7d18ffff3284846 +binfiles arch=win32 size=1447 + bin/win32/luahbtex.dll + bin/win32/luahbtex.exe + +name luahbtex.x86_64-cygwin +category TLCore +revision 58851 +shortdesc x86_64-cygwin files of luahbtex +containersize 2041268 +containerchecksum 771596387e3ce36cf9eb4a53721aa13f82db1d4ec12acc1a21efbc537eda768e496cbaf41ef9bc9bd625d3fc1f8e97f82a4b3bd3c5acf89905644932b0ae02a0 +binfiles arch=x86_64-cygwin size=1814 + bin/x86_64-cygwin/luahbtex.exe + +name luahbtex.x86_64-darwinlegacy +category TLCore +revision 58850 +shortdesc x86_64-darwinlegacy files of luahbtex +containersize 1876224 +containerchecksum d3ecbe8dd7f22ad9d1be594fd25a52c11c542d035d1e647e8cc9356f4f1861035380d81902e90beb76cf7c39f30689ed5b2f77e3ffbbd8d7cd9812aa9f2ceec3 +binfiles arch=x86_64-darwinlegacy size=1663 + bin/x86_64-darwinlegacy/luahbtex + +name luahbtex.x86_64-linux +category TLCore +revision 58872 +shortdesc x86_64-linux files of luahbtex +containersize 2222500 +containerchecksum 145821670051bc9021c05525fa045832db6be449e51453e8d2b2413f921120f08e60d042d8d371776514143a49b48657dcd0bf74aa8c61326827cb87f22711f7 +binfiles arch=x86_64-linux size=1896 + bin/x86_64-linux/luahbtex + +name luahbtex.x86_64-linuxmusl +category TLCore +revision 58850 +shortdesc x86_64-linuxmusl files of luahbtex +containersize 2306652 +containerchecksum 996644a5500226afc679f6c9c0fdba86b919d4b759843926ca004343714c9eba991033a365fc28b186ca45650d4dc5fd38fe1dbaae49310ad44e29c1adba59c9 +binfiles arch=x86_64-linuxmusl size=2039 + bin/x86_64-linuxmusl/luahbtex + +name luahbtex.x86_64-solaris +category TLCore +revision 58850 +shortdesc x86_64-solaris files of luahbtex +containersize 2242516 +containerchecksum 74c742a555821c84ffcb9ba1fd77276cd1de5dcc4e2d80a5e18fe5d4f3784e73a57e91ab086f4427c80e1654b06651241771c2a86034984a9d4fa1b2efe083b3 +binfiles arch=x86_64-solaris size=1921 + bin/x86_64-solaris/luahbtex + +name luahyphenrules +category Package +revision 56200 +shortdesc Loading patterns in LuaLaTeX with language.dat +relocated 1 +longdesc Preloading hyphenation patterns (or 'hyphen rules.) into any +longdesc format based upon LuaTeX is not required in LuaTeX and recent +longdesc releases of babel don't do it anyway. This package is addressed +longdesc to those who just want to select the languages and load their +longdesc patterns by means of `language.dat` without loading `babel`. +containersize 2368 +containerchecksum 01025f1aa9abf7fb0c06045e8bebba3572b1aad06bb6edafd916e721c8ecb295fc680bc4da968e4fb059173ed9ba8e8de72ed42923b458a8dc42de4424b6ef9c +doccontainersize 41252 +doccontainerchecksum 1487269c78bdef7aa626bee1c339358aea03af7df17cf92d48e56a1530b5e4bb7a5dd56fd7e094512fc3c149343e35e9e1683ffcdb8634042f26e86083f3ca69 +docfiles size=12 + RELOC/doc/lualatex/luahyphenrules/README.md details="Readme" + RELOC/doc/lualatex/luahyphenrules/luahyphenrules.pdf details="Package documentation" + RELOC/doc/lualatex/luahyphenrules/luahyphenrules.tex +runfiles size=2 + RELOC/tex/lualatex/luahyphenrules/luahyphenrules.sty +catalogue-ctan /macros/luatex/latex/luahyphenrules +catalogue-license lppl1.3 +catalogue-topics hyphenation luatex +catalogue-version 1.1 + +name luaimageembed +category Package +revision 50788 +shortdesc Embed images as base64-encoded strings +relocated 1 +longdesc This package allows to embed images directly as base64-encoded +longdesc strings into an LuaLaTeX document. This can be useful, e. g. to +longdesc package a document with images into a single TeX file, or with +longdesc automatically generated graphics. +containersize 1416 +containerchecksum c0ba8a3164f1a87cd12a5699e9caa23ff7a85debed9881798502436bbb594d48a2e15a135e3a18efb9f3d825af98303a46495148142c810e4601641fdf925654 +doccontainersize 1524 +doccontainerchecksum 188049c30c2c845d18e1a20af3d5ee009eab6064321b1f09aee4b77c3111317755e698e28876561440695c910cbfea6f67e41a5195a5f7b50d45831d7b78d76b +docfiles size=2 + RELOC/doc/lualatex/luaimageembed/LICENSE + RELOC/doc/lualatex/luaimageembed/README.md details="Readme" +runfiles size=1 + RELOC/tex/lualatex/luaimageembed/luaimageembed.sty +catalogue-also inline-images +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-license mit +catalogue-topics image-supp lua-supp +catalogue-version 0.1 + +name luaindex +category Package +revision 25882 +shortdesc Create index using LuaLaTeX +relocated 1 +longdesc Luaindex provides (yet another) index processor, written in +longdesc Lua. +containersize 4488 +containerchecksum baafe2dbcfcc07293ec04f775becef7b59a2349ed5c98333c5a4e680fb3f8561f8749a6abadc6901cfbeae1b6e9a47cca05e8ae76064372585b7d7f4978dc844 +doccontainersize 160892 +doccontainerchecksum c90deae24da8584170bc2247d5f6ee22ba522c21d3d0e05a6ec2b9594645a022eed1fcf12c3ffbaa03ce0d92a16f75550dc7e0694920ef58b17bdacae02d6fc7 +docfiles size=45 + RELOC/doc/lualatex/luaindex/README details="Readme" + RELOC/doc/lualatex/luaindex/luaindex-example.ldx + RELOC/doc/lualatex/luaindex/luaindex-example.ltx + RELOC/doc/lualatex/luaindex/luaindex-example.pdf + RELOC/doc/lualatex/luaindex/luaindex.ltx + RELOC/doc/lualatex/luaindex/luaindex.pdf details="Package documentation" +srccontainersize 13392 +srccontainerchecksum aa97d6618e7af11a7d5aaee332736aa60a8ba5a2cf796296368736c7d12b1e6eeccbd5c807cc2129fd3e4310617dd92e14aeac053753fe7267899b9b3459d8db +srcfiles size=15 + RELOC/source/lualatex/luaindex/luaindex.dtx +runfiles size=6 + RELOC/scripts/luaindex/luaindex.lua + RELOC/tex/lualatex/luaindex/luaindex.sty +catalogue-ctan /macros/luatex/latex/luaindex +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 0.1b + +name luainputenc +category Package +revision 20491 +shortdesc Replacing inputenc for use in LuaTeX +relocated 1 +longdesc LuaTeX operates by default in UTF-8 input; thus LaTeX documents +longdesc that need 8-bit character-sets need special treatment. (In +longdesc fact, LaTeX documents using UTF-8 with "traditional" -- +longdesc 256-glyph -- fonts also need support from this package.) The +longdesc package, therefore, replaces the LaTeX standard inputenc for +longdesc use under LuaTeX. With a current LuaTeX,the package has the +longdesc same behaviour with LuaTeX as inputenc has under pdfTeX. +containersize 5036 +containerchecksum bc3f05260800cc537436377c1f9fbcfc6a1a60a7fd892af23ab323171208b083c08c8bb2a5d299e4ce09468f66197d43f68717a57e649c50caf74b736cdb06db +doccontainersize 405692 +doccontainerchecksum 7c6093b3fa622007aa7e6cc852076090e1bcc64e9b890d1ff0cf6ae552a21e930e791d32cdc2238a0f60c605c92a2192dad7e9d423a2d6e013582926957da58f +docfiles size=103 + RELOC/doc/lualatex/luainputenc/NEWS + RELOC/doc/lualatex/luainputenc/README details="Readme" + RELOC/doc/lualatex/luainputenc/inputenc.sty.diff + RELOC/doc/lualatex/luainputenc/luainputenc.pdf details="Package documentation" + RELOC/doc/lualatex/luainputenc/test.tex +srccontainersize 12408 +srccontainerchecksum a9ae3dcacf7ed85f5ff63e32c9fd66ad6860e149c3d2737bcfad870137b242797b8a3f62e90f290931e6884c74f70a0716c72f2e5414cb8406e5ec0141f13831 +srcfiles size=12 + RELOC/source/lualatex/luainputenc/Makefile + RELOC/source/lualatex/luainputenc/luainputenc.dtx +runfiles size=8 + RELOC/tex/lualatex/luainputenc/luainputenc.lua + RELOC/tex/lualatex/luainputenc/luainputenc.sty + RELOC/tex/lualatex/luainputenc/lutf8.def + RELOC/tex/lualatex/luainputenc/lutf8x.def +catalogue-contact-repository https://github.com/lualatex/luainputenc +catalogue-ctan /macros/luatex/latex/luainputenc +catalogue-license pd +catalogue-topics inputenc luatex +catalogue-version 0.973 + +name luaintro +category Package +revision 35490 +shortdesc Examples from the book "Einfuhrung in LuaTeX und LuaLaTeX" +relocated 1 +longdesc The bundle provides source of all the examples published in the +longdesc German book "Einfuhrung in LuaTeX und LuaLaTeX", published by +longdesc Lehmans Media and DANTE, Berlin. +containersize 468 +containerchecksum 2585639b6a7b93019f8fe4dd353332dabbbfb5663b84b1c92df397e940392a1b3bb2ddcec203bbb1b0f4244ac26b62f9745fdf50cb7512f96e5c12af8c08335b +doccontainersize 30328 +doccontainerchecksum 47de79cdc637810757b7879956cf758a77cde95e77060ce74829b438d13b58e23cbc8e9b328d0850b44fd8de8da90fa9fda206ff0e206918f1bccdf5d71d2c38 +docfiles size=211 + RELOC/doc/luatex/luaintro/01-01-1.lua + RELOC/doc/luatex/luaintro/01-02-1.lualtx + RELOC/doc/luatex/luaintro/01-02-10.ltx2 + RELOC/doc/luatex/luaintro/01-02-11.ltx2 + RELOC/doc/luatex/luaintro/01-02-12.lualtx + RELOC/doc/luatex/luaintro/01-02-13.lualtx3 + RELOC/doc/luatex/luaintro/01-02-14.lualtx3 + RELOC/doc/luatex/luaintro/01-02-15.lualtx3 + RELOC/doc/luatex/luaintro/01-02-16.lualtx3 + RELOC/doc/luatex/luaintro/01-02-17.lualtx3 + RELOC/doc/luatex/luaintro/01-02-18.lualtx3 + RELOC/doc/luatex/luaintro/01-02-19.lualtx + RELOC/doc/luatex/luaintro/01-02-2.lualtx + RELOC/doc/luatex/luaintro/01-02-20.lualtx + RELOC/doc/luatex/luaintro/01-02-21.lualtx + RELOC/doc/luatex/luaintro/01-02-22.lualtx + RELOC/doc/luatex/luaintro/01-02-3.lualtx + RELOC/doc/luatex/luaintro/01-02-4.lualtx + RELOC/doc/luatex/luaintro/01-02-5.lualtx + RELOC/doc/luatex/luaintro/01-02-6.lualtx + RELOC/doc/luatex/luaintro/01-02-7.sh + RELOC/doc/luatex/luaintro/01-02-8.lualtx3 + RELOC/doc/luatex/luaintro/01-02-9.lualtx3 + RELOC/doc/luatex/luaintro/01-03-1.lualtx3 + RELOC/doc/luatex/luaintro/01-03-2.lualtx3 + RELOC/doc/luatex/luaintro/01-03-3.lualtx3 + RELOC/doc/luatex/luaintro/01-03-4.lualtx3 + RELOC/doc/luatex/luaintro/01-03-5.lualtx3 + RELOC/doc/luatex/luaintro/01-03-6.lualtx3 + RELOC/doc/luatex/luaintro/01-04-1.lualtx + RELOC/doc/luatex/luaintro/01-04-2.lualtx + RELOC/doc/luatex/luaintro/01-04-3.lualtx + RELOC/doc/luatex/luaintro/01-04-4.lualtx + RELOC/doc/luatex/luaintro/01-04-5.ctx1crop + RELOC/doc/luatex/luaintro/02-01-1.lualtx + RELOC/doc/luatex/luaintro/02-01-2.lualtx + RELOC/doc/luatex/luaintro/02-01-3.lualtx + RELOC/doc/luatex/luaintro/02-01-4.sh + RELOC/doc/luatex/luaintro/02-01-5.sh + RELOC/doc/luatex/luaintro/02-02-1.lualtx + RELOC/doc/luatex/luaintro/02-02-10.lualtx + RELOC/doc/luatex/luaintro/02-02-11.lualtx2 + RELOC/doc/luatex/luaintro/02-02-12.lualtx3 + RELOC/doc/luatex/luaintro/02-02-13.lualtx3 + RELOC/doc/luatex/luaintro/02-02-14.lualtx3 + RELOC/doc/luatex/luaintro/02-02-15.lualtx3 + RELOC/doc/luatex/luaintro/02-02-16.lualtx3 + RELOC/doc/luatex/luaintro/02-02-2.lualtx + RELOC/doc/luatex/luaintro/02-02-3.lualtx + RELOC/doc/luatex/luaintro/02-02-4.lualtx + RELOC/doc/luatex/luaintro/02-02-5.lualtx + RELOC/doc/luatex/luaintro/02-02-6.sh + RELOC/doc/luatex/luaintro/02-02-7.lualtx2 + RELOC/doc/luatex/luaintro/02-02-8.lualtx2 + RELOC/doc/luatex/luaintro/02-02-9.lualtx + RELOC/doc/luatex/luaintro/03-01-1.lualtx + RELOC/doc/luatex/luaintro/03-03-1.lualtx + RELOC/doc/luatex/luaintro/03-04-1.lualtx3 + RELOC/doc/luatex/luaintro/03-06-1.lualtx3 + RELOC/doc/luatex/luaintro/03-06-2.lualtx3 + RELOC/doc/luatex/luaintro/03-06-3.lualtx3 + RELOC/doc/luatex/luaintro/03-07-1.lualtx + RELOC/doc/luatex/luaintro/03-07-2.lualtx + RELOC/doc/luatex/luaintro/03-08-1.lualtx + RELOC/doc/luatex/luaintro/03-08-2.lualtx3 + RELOC/doc/luatex/luaintro/03-08-3.sh + RELOC/doc/luatex/luaintro/03-10-1.lualtx + RELOC/doc/luatex/luaintro/03-10-2.lualtx + RELOC/doc/luatex/luaintro/03-10-3.lualtx + RELOC/doc/luatex/luaintro/03-11-1.sh + RELOC/doc/luatex/luaintro/03-11-1.tex + RELOC/doc/luatex/luaintro/03-11-2.lualtx + RELOC/doc/luatex/luaintro/03-11-3.lualtx + RELOC/doc/luatex/luaintro/03-11-4.lualtx + RELOC/doc/luatex/luaintro/03-11-5.lualtx + RELOC/doc/luatex/luaintro/03-11-6.lualtx + RELOC/doc/luatex/luaintro/03-11-7.lualtx + RELOC/doc/luatex/luaintro/04-01-1.lualtx3 + RELOC/doc/luatex/luaintro/04-01-2.lualtx3 + RELOC/doc/luatex/luaintro/04-01-3.lualtx + RELOC/doc/luatex/luaintro/04-04-1.lualtx + RELOC/doc/luatex/luaintro/04-04-10.lualtx + RELOC/doc/luatex/luaintro/04-04-11.lualtx + RELOC/doc/luatex/luaintro/04-04-12.lualtx + RELOC/doc/luatex/luaintro/04-04-13.lualtx + RELOC/doc/luatex/luaintro/04-04-14.lualtx + RELOC/doc/luatex/luaintro/04-04-15.lualtx + RELOC/doc/luatex/luaintro/04-04-16.lualtx + RELOC/doc/luatex/luaintro/04-04-17.lualtx + RELOC/doc/luatex/luaintro/04-04-2.lualtx + RELOC/doc/luatex/luaintro/04-04-3.lualtx + RELOC/doc/luatex/luaintro/04-04-4.lualtx + RELOC/doc/luatex/luaintro/04-04-5.lualtx2 + RELOC/doc/luatex/luaintro/04-04-6.lualtx + RELOC/doc/luatex/luaintro/04-04-7.lualtx + RELOC/doc/luatex/luaintro/04-04-8.lualtx + RELOC/doc/luatex/luaintro/04-04-9.lualtx + RELOC/doc/luatex/luaintro/05-01-1.lualtx + RELOC/doc/luatex/luaintro/05-01-2.lualtx + RELOC/doc/luatex/luaintro/05-02-1.lualtx3 + RELOC/doc/luatex/luaintro/06-02-1.lualtx + RELOC/doc/luatex/luaintro/06-03-1.lualtx3 + RELOC/doc/luatex/luaintro/06-04-1.lualtx3 + RELOC/doc/luatex/luaintro/06-05-1.lualtx3 + RELOC/doc/luatex/luaintro/06-05-2.lualtx + RELOC/doc/luatex/luaintro/06-06-1.lualtx + RELOC/doc/luatex/luaintro/06-07-1.lualtx + RELOC/doc/luatex/luaintro/06-07-2.lualtx + RELOC/doc/luatex/luaintro/06-07-3.lualtx + RELOC/doc/luatex/luaintro/06-07-4.lualtx + RELOC/doc/luatex/luaintro/06-07-5.lualtx + RELOC/doc/luatex/luaintro/06-09-1.lualtx + RELOC/doc/luatex/luaintro/06-10-1.lualtx + RELOC/doc/luatex/luaintro/06-11-1.sh + RELOC/doc/luatex/luaintro/06-11-10.lualtx + RELOC/doc/luatex/luaintro/06-11-11.lualtx + RELOC/doc/luatex/luaintro/06-11-12.lualtx + RELOC/doc/luatex/luaintro/06-11-13.lualtx + RELOC/doc/luatex/luaintro/06-11-14.lualtx + RELOC/doc/luatex/luaintro/06-11-15.lualtx + RELOC/doc/luatex/luaintro/06-11-16.lualtx + RELOC/doc/luatex/luaintro/06-11-17.lualtx + RELOC/doc/luatex/luaintro/06-11-18.lualtx + RELOC/doc/luatex/luaintro/06-11-2.sh + RELOC/doc/luatex/luaintro/06-11-3.lualtx + RELOC/doc/luatex/luaintro/06-11-4.lualtx + RELOC/doc/luatex/luaintro/06-11-5.lualtx + RELOC/doc/luatex/luaintro/06-11-6.lualtx + RELOC/doc/luatex/luaintro/06-11-7.sh + RELOC/doc/luatex/luaintro/06-11-8.sh + RELOC/doc/luatex/luaintro/06-11-9.sh + RELOC/doc/luatex/luaintro/06-12-1.lualtx + RELOC/doc/luatex/luaintro/06-12-10.lualtx + RELOC/doc/luatex/luaintro/06-12-11.lualtx + RELOC/doc/luatex/luaintro/06-12-12.lualtx + RELOC/doc/luatex/luaintro/06-12-13.lualtx + RELOC/doc/luatex/luaintro/06-12-14.lualtx + RELOC/doc/luatex/luaintro/06-12-2.lualtx + RELOC/doc/luatex/luaintro/06-12-3.lualtx + RELOC/doc/luatex/luaintro/06-12-4.lualtx + RELOC/doc/luatex/luaintro/06-12-5.lualtx + RELOC/doc/luatex/luaintro/06-12-6.lualtx + RELOC/doc/luatex/luaintro/06-12-7.lualtx + RELOC/doc/luatex/luaintro/06-12-8.lualtx + RELOC/doc/luatex/luaintro/06-12-9.lualtx + RELOC/doc/luatex/luaintro/06-13-1.lualtx + RELOC/doc/luatex/luaintro/07-02-1.lualtx + RELOC/doc/luatex/luaintro/07-02-2.lualtx + RELOC/doc/luatex/luaintro/07-02-3.lualtx + RELOC/doc/luatex/luaintro/08-01-1.lua + RELOC/doc/luatex/luaintro/08-01-10.lua + RELOC/doc/luatex/luaintro/08-01-11.lua + RELOC/doc/luatex/luaintro/08-01-2.lua + RELOC/doc/luatex/luaintro/08-01-3.lua + RELOC/doc/luatex/luaintro/08-01-4.lua + RELOC/doc/luatex/luaintro/08-01-5.lua + RELOC/doc/luatex/luaintro/08-01-6.lua + RELOC/doc/luatex/luaintro/08-01-7.lua + RELOC/doc/luatex/luaintro/08-01-8.lua + RELOC/doc/luatex/luaintro/08-01-9.lua + RELOC/doc/luatex/luaintro/08-02-1.lua + RELOC/doc/luatex/luaintro/09-01-1.lualtx + RELOC/doc/luatex/luaintro/09-01-2.lualtx + RELOC/doc/luatex/luaintro/09-01-3.lualtx3 + RELOC/doc/luatex/luaintro/09-01-4.lualtx + RELOC/doc/luatex/luaintro/09-01-5.lualtx + RELOC/doc/luatex/luaintro/09-01-6.lualtx + RELOC/doc/luatex/luaintro/09-03-1.lualtx + RELOC/doc/luatex/luaintro/09-03-2.lualtx + RELOC/doc/luatex/luaintro/09-03-3.lualtx + RELOC/doc/luatex/luaintro/09-03-4.lualtx + RELOC/doc/luatex/luaintro/09-03-5.lualtx + RELOC/doc/luatex/luaintro/09-03-6.lualtx + RELOC/doc/luatex/luaintro/CTdefault.tex + RELOC/doc/luatex/luaintro/DEexa.sty + RELOC/doc/luatex/luaintro/DEoptions.sty + RELOC/doc/luatex/luaintro/Letter.ist + RELOC/doc/luatex/luaintro/LetterC.ist + RELOC/doc/luatex/luaintro/LoadFonts.tex + RELOC/doc/luatex/luaintro/README details="Readme" + RELOC/doc/luatex/luaintro/beispiel.cls + RELOC/doc/luatex/luaintro/bspcalweekly.cls + RELOC/doc/luatex/luaintro/bspdvdcoll.cls + RELOC/doc/luatex/luaintro/bspfont.cls + RELOC/doc/luatex/luaintro/bsppstricks.cls + RELOC/doc/luatex/luaintro/exa-fontconfig.tex + RELOC/doc/luatex/luaintro/exaarticle.cls + RELOC/doc/luatex/luaintro/exaarticle2.cls + RELOC/doc/luatex/luaintro/exaartplain.cls + RELOC/doc/luatex/luaintro/exabeamer.cls + RELOC/doc/luatex/luaintro/exabook.cls + RELOC/doc/luatex/luaintro/exabook2.cls + RELOC/doc/luatex/luaintro/exadante.cls + RELOC/doc/luatex/luaintro/exafoils.cls + RELOC/doc/luatex/luaintro/exafubeamer.cls + RELOC/doc/luatex/luaintro/exafupd.cls + RELOC/doc/luatex/luaintro/examargin.cls + RELOC/doc/luatex/luaintro/examemoir.cls + RELOC/doc/luatex/luaintro/examinimal-mathsymbols.cls + RELOC/doc/luatex/luaintro/examinimal.cls + RELOC/doc/luatex/luaintro/exapd.cls + RELOC/doc/luatex/luaintro/exaprosper.cls + RELOC/doc/luatex/luaintro/exareport.cls + RELOC/doc/luatex/luaintro/exaseminar.cls + RELOC/doc/luatex/luaintro/exaslidenotes.cls + RELOC/doc/luatex/luaintro/exasymbol.cls + RELOC/doc/luatex/luaintro/exaxetex.cls + RELOC/doc/luatex/luaintro/screxa.cls + RELOC/doc/luatex/luaintro/screxabook.cls + RELOC/doc/luatex/luaintro/screxareport.cls +catalogue-ctan /info/examples/luaintro +catalogue-license lppl1.3 +catalogue-topics book-ex +catalogue-version 0.03 + +name luajittex +category TLCore +revision 57972 +shortdesc LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz +depend cm +depend etex +depend hyph-utf8 +depend hyphen-base +depend knuth-lib +depend luajittex.ARCH +depend luatex +depend plain +depend tex-ini-files +depend unicode-data +execute AddFormat name=luajithbtex engine=luajithbtex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8,luatex +execute AddFormat name=luajittex engine=luajittex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8,luatex +containersize 484 +containerchecksum 01777af9a468b6216417c5158034c3dea3cfb1c3ca7d28f1c4ca2b239fe569fbde410d17662bf9a10f5fddfd1bb6541c505d772e705832b52a1c2d6225d0fc6f +doccontainersize 30360 +doccontainerchecksum a6a17f70a44655e1aba11ac1353cc13b36bee762083be76a31c04d90ae73d021659219a3a741b70f0b43888d6b6a6ab356f378fa5850a23ce7423b28a721e924 +docfiles size=20 + texmf-dist/doc/man/man1/luajithbtex.1 + texmf-dist/doc/man/man1/luajithbtex.man1.pdf + texmf-dist/doc/man/man1/luajittex.1 + texmf-dist/doc/man/man1/luajittex.man1.pdf + +name luajittex.aarch64-linux +category TLCore +revision 58876 +shortdesc aarch64-linux files of luajittex +containersize 3501672 +containerchecksum a3acdb8712494835cc2df59ab511573812573161d9c6a2bd060179c74eb482d44cef3fca3d869c5283d4c9176e620b22c45b303ee3b0bc2787e06ac5ecc705e2 +binfiles arch=aarch64-linux size=3855 + bin/aarch64-linux/luajithbtex + bin/aarch64-linux/luajittex + bin/aarch64-linux/texluajit + bin/aarch64-linux/texluajitc + +name luajittex.amd64-freebsd +category TLCore +revision 58850 +shortdesc amd64-freebsd files of luajittex +containersize 2709388 +containerchecksum dbd148f4c02ab030c356d26dbaa8aec89d381b31e77f746b9dbb256355e3b0c1d7c610eb9d66ec078f9634df28e6691b4df731d9c2dd1130c9c1ba6c410cc3e0 +binfiles arch=amd64-freebsd size=3747 + bin/amd64-freebsd/luajithbtex + bin/amd64-freebsd/luajittex + bin/amd64-freebsd/texluajit + bin/amd64-freebsd/texluajitc + +name luajittex.amd64-netbsd +category TLCore +revision 58866 +shortdesc amd64-netbsd files of luajittex +containersize 3908192 +containerchecksum 5ca6628ff1902fdb4bcfdcb96a51a5f4d39662214514b95fc0a67acccf6b45b43c8707faccbe5c2d59c7af170b77089e445c6f83fea7dd918b66f0dc3142f327 +binfiles arch=amd64-netbsd size=4877 + bin/amd64-netbsd/luajithbtex + bin/amd64-netbsd/luajittex + bin/amd64-netbsd/texluajit + bin/amd64-netbsd/texluajitc + +name luajittex.armhf-linux +category TLCore +revision 58911 +shortdesc armhf-linux files of luajittex +containersize 2124236 +containerchecksum fa97e1e66981f2e348c4476b87d91e3615a465ec0b8bb706ce6c21413c986977a88b681401bfac4ca9004ebbb73f7ae3a7b6aa37d2550587eccd1fc994bbcc82 +binfiles arch=armhf-linux size=3131 + bin/armhf-linux/luajithbtex + bin/armhf-linux/luajittex + bin/armhf-linux/texluajit + bin/armhf-linux/texluajitc + +name luajittex.i386-cygwin +category TLCore +revision 58851 +shortdesc i386-cygwin files of luajittex +containersize 2545892 +containerchecksum 0311edd2a17fc49c650801d9775869bea4da3f168aadf53a88716196ce9c4628392716ec4a3bdd71b8e9e060e9f0bf45d81be886418ed5b93567b39d65490bfe +binfiles arch=i386-cygwin size=3567 + bin/i386-cygwin/cygtexluajit-2.dll + bin/i386-cygwin/luajithbtex.exe + bin/i386-cygwin/luajittex.exe + bin/i386-cygwin/texluajit + bin/i386-cygwin/texluajitc + +name luajittex.i386-freebsd +category TLCore +revision 58850 +shortdesc i386-freebsd files of luajittex +containersize 2462536 +containerchecksum f89ad6e82f20e7df6aa488f232ed1505887341b1880459d442885101c349e9adb1e510ac1cabd6edd0b8d1989102c6e69c606b49eabbade5af06e32d36682e72 +binfiles arch=i386-freebsd size=3462 + bin/i386-freebsd/luajithbtex + bin/i386-freebsd/luajittex + bin/i386-freebsd/texluajit + bin/i386-freebsd/texluajitc + +name luajittex.i386-linux +category TLCore +revision 58850 +shortdesc i386-linux files of luajittex +containersize 2686820 +containerchecksum a4f9e96407b60cad6123dcf95c86f75f351452a0910229745376c6230f913ac69d55d51f4bb91524c919471cb77188162c20cd4a5d08a13e77d6d79a902daaa8 +binfiles arch=i386-linux size=3774 + bin/i386-linux/luajithbtex + bin/i386-linux/luajittex + bin/i386-linux/texluajit + bin/i386-linux/texluajitc + +name luajittex.i386-netbsd +category TLCore +revision 58866 +shortdesc i386-netbsd files of luajittex +containersize 3439536 +containerchecksum 5d5477b023a0cd1e6a2f4b6e7cbf6899379253f57f7efa1abd8eccf4836970d5ce35931c428852bb052beb36c0de312d7e2d60251515f5d043d0f07e6518b4bc +binfiles arch=i386-netbsd size=4464 + bin/i386-netbsd/luajithbtex + bin/i386-netbsd/luajittex + bin/i386-netbsd/texluajit + bin/i386-netbsd/texluajitc + +name luajittex.i386-solaris +category TLCore +revision 58850 +shortdesc i386-solaris files of luajittex +containersize 2417088 +containerchecksum c3f5285326c60527db1ffaede48523fd815ff310e87d0e9960861c8519ae5c15de184ed27c936dc4823d4d8a165bb673f64770a5b0400c604ebb4ba83060d3be +binfiles arch=i386-solaris size=3245 + bin/i386-solaris/luajithbtex + bin/i386-solaris/luajittex + bin/i386-solaris/texluajit + bin/i386-solaris/texluajitc + +name luajittex.universal-darwin +category TLCore +revision 58850 +shortdesc universal-darwin files of luajittex +containersize 6527340 +containerchecksum db91da103f47c3c6f09e80b88df70fe6f3690a590f212411ddc4f473a0d48e3fc32c826c6628f0fccb5f3b5323e2f3fc6a9e179741746ce38846b3c933bc4d7e +binfiles arch=universal-darwin size=6860 + bin/universal-darwin/luajithbtex + bin/universal-darwin/luajittex + bin/universal-darwin/texluajit + bin/universal-darwin/texluajitc + +name luajittex.win32 +category TLCore +revision 58843 +shortdesc win32 files of luajittex +containersize 2203984 +containerchecksum fefb913b87fa857317f9f9d3064d066ebbdf1697e77477ec1f839d66d37771390ed05f352e87b9219d954b7ef8a814cf98ecc8e0e8a072d7a21ed61df360c61b +binfiles arch=win32 size=3077 + bin/win32/luajit51.dll + bin/win32/luajithbtex.dll + bin/win32/luajithbtex.exe + bin/win32/luajittex.dll + bin/win32/luajittex.exe + bin/win32/texluajit.exe + bin/win32/texluajitc.exe + +name luajittex.x86_64-cygwin +category TLCore +revision 58851 +shortdesc x86_64-cygwin files of luajittex +containersize 2480732 +containerchecksum 6d2b6846bd276354db735e21197aa6d37df9ceedc692e953f305846292cf95187013e5868c20e16ee409f3045472abf546f6f6433d397dde6eba9d9b7ccb71f2 +binfiles arch=x86_64-cygwin size=3447 + bin/x86_64-cygwin/cygtexluajit-2.dll + bin/x86_64-cygwin/luajithbtex.exe + bin/x86_64-cygwin/luajittex.exe + bin/x86_64-cygwin/texluajit + bin/x86_64-cygwin/texluajitc + +name luajittex.x86_64-darwinlegacy +category TLCore +revision 58850 +shortdesc x86_64-darwinlegacy files of luajittex +containersize 2246548 +containerchecksum 45718ebe3f1735bc198d022e0b56f01569bd839f7913d8ae369d19106eebaa2b7b7d87eb263da658cf623e825707c580c64d613247f2e8ef8f84b2d8f59afb61 +binfiles arch=x86_64-darwinlegacy size=3204 + bin/x86_64-darwinlegacy/luajithbtex + bin/x86_64-darwinlegacy/luajittex + bin/x86_64-darwinlegacy/texluajit + bin/x86_64-darwinlegacy/texluajitc + +name luajittex.x86_64-linux +category TLCore +revision 58872 +shortdesc x86_64-linux files of luajittex +containersize 2675100 +containerchecksum 3d14866c3af00cd3ebc5485ea04038d31b08eb5af68cf06ba23b1ebd343cdbfb5b2e49851ad066c4678ad4b6351bcc952e4603fe40e0ae51d908556d2235b436 +binfiles arch=x86_64-linux size=3585 + bin/x86_64-linux/luajithbtex + bin/x86_64-linux/luajittex + bin/x86_64-linux/texluajit + bin/x86_64-linux/texluajitc + +name luajittex.x86_64-linuxmusl +category TLCore +revision 58850 +shortdesc x86_64-linuxmusl files of luajittex +containersize 3849324 +containerchecksum 18ba7afad0b839b9bdade94690f1d9813341029409d4635f48797583dae8b03b2cd3399609d8190d3fd4fe5d0df34b1cd1c4085829e1aedcb53f421f644100f5 +binfiles arch=x86_64-linuxmusl size=3871 + bin/x86_64-linuxmusl/luajithbtex + bin/x86_64-linuxmusl/luajittex + bin/x86_64-linuxmusl/texluajit + bin/x86_64-linuxmusl/texluajitc + +name luakeys +category Package +revision 57463 +shortdesc A Lua module for parsing key-value options +relocated 1 +longdesc This package provides a Lua module that can parse key-value +longdesc options like the TeX packages keyval, kvsetkeys, kvoptions, +longdesc xkeyval, pgfkeys etc. luakeys, however, accomplishes this task +longdesc entirely by using the Lua language and does not rely on TeX. +longdesc Therefore this package can only be used with the TeX engine +longdesc LuaTeX. Since luakeys uses LPeg, the parsing mechanism should +longdesc be pretty robust. +containersize 4904 +containerchecksum 873879c6495479db77cf0e7a0f5ac99ad2eb67088d1d4abaf55e4ec341c07103ced954310b67f5ee0bec6986793f9e68613b7a85c3a8fee8b5697e0a05f1e1c5 +doccontainersize 140576 +doccontainerchecksum 58b2550998915a20226ef4890255c8a90aad9faf248a0c2a880b086941af256d9f83edc2b29ed615da6355a5bb5d95605580824581ebd7ed191d82b92786e8ac +docfiles size=40 + RELOC/doc/luatex/luakeys/README.md details="Readme" + RELOC/doc/luatex/luakeys/luakeys-debug.tex + RELOC/doc/luatex/luakeys/luakeys.pdf details="Package documentation" + RELOC/doc/luatex/luakeys/luakeys.tex +runfiles size=5 + RELOC/tex/luatex/luakeys/luakeys-debug.sty + RELOC/tex/luatex/luakeys/luakeys.lua +catalogue-contact-bugs https://github.com/Josef-Friedrich/luakeys/issues +catalogue-contact-repository https://github.com/Josef-Friedrich/luakeys +catalogue-ctan /macros/luatex/generic/luakeys +catalogue-license lppl1.3c +catalogue-topics keyval luatex +catalogue-version 0.1 + +name lualatex-doc +category Package +revision 30473 +shortdesc A guide to use of LaTeX with LuaTeX +relocated 1 +longdesc The document is a map/guide to the world of LuaLaTeX. Coverage +longdesc supports both new users and package developers. Apart from the +longdesc introductory material, the document gathers information from +longdesc several sources, and offers links to others. +containersize 508 +containerchecksum a1d98422b13a26aa844213df2929629889ed6bfe3fa16c27f6376f00f038a50dd32c5128a27ecdd872d3fce8372fb93ec603c0c92edb8692325f1e76fca685d1 +doccontainersize 112928 +doccontainerchecksum 0756a0183d0b7b302f24cd16a8957915a69a3db3fe4a8a4fc301e246a0563f9fe81ce2af667b7bcfa45717b605be163cc5fd4c170d8584028f2ee7b2120390c6 +docfiles size=41 + RELOC/doc/lualatex/lualatex-doc/News + RELOC/doc/lualatex/lualatex-doc/README details="Readme" + RELOC/doc/lualatex/lualatex-doc/lualatex-doc.pdf details="The document itself" +srccontainersize 15188 +srccontainerchecksum a18a7644b50ad608dbb2bbfc15f2672fe7b9a48505c3224dcb46aa97b2d57b5a007c928dd5b76518c8963970bb1b8b56bed8e5c374ba5cb18a9521528dfdd58f +srcfiles size=12 + RELOC/source/lualatex/lualatex-doc/Makefile + RELOC/source/lualatex/lualatex-doc/lltxdoc.cls + RELOC/source/lualatex/lualatex-doc/lualatex-doc.tex +catalogue-ctan /info/luatex/lualatex-doc +catalogue-license fdl +catalogue-topics luatex-doc + +name lualatex-doc-de +category Package +revision 30474 +shortdesc Guide to LuaLaTeX (German translation) +relocated 1 +longdesc The document is a German translation of the map/guide to the +longdesc world of LuaLaTeX. Coverage supports both new users and package +longdesc developers. Apart from the introductory material, the document +longdesc gathers information from several sources, and offers links to +longdesc others. +containersize 536 +containerchecksum c1bf1c7f367e5d15cb1a5ba0878a4f02dfe25772bed22b48f7376e8448569247233ee41ee8b58c156494d9cf0c0956dc23f4576f053cc349896247de0a96444b +doccontainersize 137620 +doccontainerchecksum b615887d8b543af1c125b6e9fb9c533f52816f8087075a8bd4e6ef752ff48f51169f5945ccb067228612cbdeb10dbeb298a090bdb93d201b9629b128b0c5a466 +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-license fdl +catalogue-topics luatex-doc german +catalogue-version 1.0 + +name lualatex-math +category Package +revision 56541 +shortdesc Fixes for mathematics-related LuaLaTeX issues +relocated 1 +longdesc The package patches a few commands of the LaTeX2e kernel and +longdesc the amsmath and mathtools packages to be more compatible with +longdesc the LuaTeX engine. It is only meaningful for LuaLaTeX documents +longdesc containing mathematical formulas, and does not exhibit any new +longdesc functionality. The fixes are mostly moved from the unicode-math +longdesc package to this package since they are not directly related to +longdesc Unicode mathematics typesetting. +depend etoolbox +depend filehook +containersize 3192 +containerchecksum a5568fa178fef7d7348a8e1b72f5671a5dc00c9c8ec59dded7da3fb62105697cb09c2cdb4f0c58fd5cc16b8966a66554cd7ba0650d757cc16377406de35d1005 +doccontainersize 198344 +doccontainerchecksum 41f38f8e1bafbb63b7a83f3087bf8aa0bfd7d946206d07bba2dc93d99049ca101869c575d3f2c8b732f9beda719bdd08127a047700052ed915bffc88001299f9 +docfiles size=52 + RELOC/doc/lualatex/lualatex-math/MANIFEST + RELOC/doc/lualatex/lualatex-math/README details="Readme" + RELOC/doc/lualatex/lualatex-math/lualatex-math.pdf details="Package documentation" language="en" +srccontainersize 9236 +srccontainerchecksum c06e83d733d9d8e380b2f688c8b21db85cd3d18be8b9cf37cc0af6b9dbf279db70d2f4d12fe879c8ce2628a1966708a117be5c72bc4dd535fa8cd431f8ed88f0 +srcfiles size=8 + RELOC/source/lualatex/lualatex-math/lualatex-math.dtx + RELOC/source/lualatex/lualatex-math/lualatex-math.ins +runfiles size=3 + RELOC/tex/lualatex/lualatex-math/lualatex-math.lua + RELOC/tex/lualatex/lualatex-math/lualatex-math.sty +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-license lppl1.3c +catalogue-topics maths luatex +catalogue-version 1.9 + +name lualatex-truncate +category Package +revision 48469 +shortdesc A wrapper for using the truncate package with LuaLaTeX +relocated 1 +longdesc This package provides a wrapper for the truncate package, thus +longdesc fixing issues related to LuaTeX's hyphenation algorithm. +containersize 1932 +containerchecksum f4de38427798b565aacdb127152cd7ac8a42b441c555f742f5bf90480f7cdf8e182745a5882a9c8e0645c529d27647a056f26b7493dadb13216972794e617341 +doccontainersize 62752 +doccontainerchecksum 704b34da4b8ab787c53f2af21fd17a29d6c8e1d42024de2ff0e65d434a502b47022fa2a506e149b67ee5cb542f2f4835babda315b1dded598f63dca353aa78b1 +docfiles size=17 + RELOC/doc/lualatex/lualatex-truncate/README.md details="Readme" + RELOC/doc/lualatex/lualatex-truncate/lualatex-truncate-doc.pdf details="Package documentation" +srccontainersize 5392 +srccontainerchecksum bffd59b8b5a7d02f40f4ff2f4d028aa98ae26b3d9d9cb432f531211fbcf65d18814653fed07b68e4d34f65d514f7aacfe6bd5aea956a12f7fac2e088841ca02d +srcfiles size=6 + RELOC/source/lualatex/lualatex-truncate/lualatex-truncate-doc.dtx + RELOC/source/lualatex/lualatex-truncate/lualatex-truncate.dtx + RELOC/source/lualatex/lualatex-truncate/lualatex-truncate.ins +runfiles size=1 + RELOC/tex/lualatex/lualatex-truncate/lualatex-truncate.sty +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-license lppl1.3c +catalogue-topics layout luatex +catalogue-version 1.1 + +name lualibs +category Package +revision 57277 +shortdesc Additional Lua functions for LuaTeX macro programmers +relocated 1 +longdesc Lualibs is a collection of Lua modules useful for general +longdesc programming. The bundle is based on lua modules shipped with +longdesc ConTeXt, and made available in this bundle for use independent +longdesc of ConTeXt. +containersize 121836 +containerchecksum ccdbde1b5b9abd3478e3912ff20b1639c3504f06433eb10cb174a3a413642629ad9eb0ecb3fc7dfe3ee1e7e2dac2e552dd86de98bd89e3a65bc6736bedf181af +doccontainersize 87696 +doccontainerchecksum 4d3771a5cee5a1ef7a7a7d3d88cf44020563c8bf50328bd6cea42a8ddc731da294e6b300ed9318030b00f0ccecc0de8667382d41727dc02353e68fe635d0aa19 +docfiles size=28 + RELOC/doc/luatex/lualibs/LICENSE + RELOC/doc/luatex/lualibs/NEWS + RELOC/doc/luatex/lualibs/README.md details="Readme" + RELOC/doc/luatex/lualibs/lualibs.pdf details="Package documentation" +srccontainersize 8572 +srccontainerchecksum f504562bce245c51567eb54963de87702a4651b73bce71144d2dbd91e6f9894c5d20fc43ae7a7d68c92995f6cc077bcf76875fea7309a09b288e6bdde2d55222 +srcfiles size=7 + RELOC/source/luatex/lualibs/lualibs.dtx +runfiles size=189 + RELOC/tex/luatex/lualibs/lualibs-basic-merged.lua + RELOC/tex/luatex/lualibs/lualibs-basic.lua + RELOC/tex/luatex/lualibs/lualibs-boolean.lua + RELOC/tex/luatex/lualibs/lualibs-compat.lua + RELOC/tex/luatex/lualibs/lualibs-dir.lua + RELOC/tex/luatex/lualibs/lualibs-extended-merged.lua + RELOC/tex/luatex/lualibs/lualibs-extended.lua + RELOC/tex/luatex/lualibs/lualibs-file.lua + RELOC/tex/luatex/lualibs/lualibs-function.lua + RELOC/tex/luatex/lualibs/lualibs-gzip.lua + RELOC/tex/luatex/lualibs/lualibs-io.lua + RELOC/tex/luatex/lualibs/lualibs-lpeg.lua + RELOC/tex/luatex/lualibs/lualibs-lua.lua + RELOC/tex/luatex/lualibs/lualibs-math.lua + RELOC/tex/luatex/lualibs/lualibs-md5.lua + RELOC/tex/luatex/lualibs/lualibs-number.lua + RELOC/tex/luatex/lualibs/lualibs-os.lua + RELOC/tex/luatex/lualibs/lualibs-package.lua + RELOC/tex/luatex/lualibs/lualibs-set.lua + RELOC/tex/luatex/lualibs/lualibs-string.lua + RELOC/tex/luatex/lualibs/lualibs-table.lua + RELOC/tex/luatex/lualibs/lualibs-trac-inf.lua + RELOC/tex/luatex/lualibs/lualibs-unicode.lua + RELOC/tex/luatex/lualibs/lualibs-url.lua + RELOC/tex/luatex/lualibs/lualibs-util-deb.lua + RELOC/tex/luatex/lualibs/lualibs-util-dim.lua + RELOC/tex/luatex/lualibs/lualibs-util-fil.lua + RELOC/tex/luatex/lualibs/lualibs-util-jsn.lua + RELOC/tex/luatex/lualibs/lualibs-util-lua.lua + RELOC/tex/luatex/lualibs/lualibs-util-prs.lua + RELOC/tex/luatex/lualibs/lualibs-util-sta.lua + RELOC/tex/luatex/lualibs/lualibs-util-sto.lua + RELOC/tex/luatex/lualibs/lualibs-util-str.lua + RELOC/tex/luatex/lualibs/lualibs-util-tab.lua + RELOC/tex/luatex/lualibs/lualibs-util-tpl.lua + RELOC/tex/luatex/lualibs/lualibs.lua +catalogue-contact-repository https://github.com/latex3/lualibs +catalogue-contact-support https://github.com/latex3/lualibs/issues +catalogue-ctan /macros/luatex/generic/lualibs +catalogue-license gpl2 +catalogue-topics lua-supp luatex +catalogue-version 2.73 + +name luamesh +category Package +revision 55475 +shortdesc Computes and draws 2D Delaunay triangulation +relocated 1 +longdesc The package allows to compute and draw 2D Delaunay +longdesc triangulation. The algorithm is written with lua, and depending +longdesc upon the choice of the engine, the drawing is done by MetaPost +longdesc (with luamplib) or by TikZ. The Delaunay triangulation +longdesc algorithm is the Bowyer and Watson algorithm. Several macros +longdesc are provided to draw the global mesh, the set of points, or a +longdesc particular step of the algorithm. +containersize 12096 +containerchecksum 22938a5a3bc612727a5075dbf63ed60be78629a72a9f9c495f611b9e33e2da2e3d9a4df2f2bbe787319ce91e1312e4f7614f95fef071fc330694004d4089a085 +doccontainersize 226344 +doccontainerchecksum 22a8a27a6591cc74c0063c12a895a299a080302981d632048405a3adeadbd12e2f72e8eb58b94d72ab26c966ad68193a6f129dd65860a021d56edde89e5e4932 +docfiles size=162 + RELOC/doc/lualatex/luamesh/README details="Readme" + RELOC/doc/lualatex/luamesh/animation-crop.pdf + RELOC/doc/lualatex/luamesh/biblio.bib + RELOC/doc/lualatex/luamesh/dum.tex + RELOC/doc/lualatex/luamesh/fond.mp + RELOC/doc/lualatex/luamesh/fond.pdf + RELOC/doc/lualatex/luamesh/luamesh-doc.pdf details="Package documentation" + RELOC/doc/lualatex/luamesh/luamesh-doc.tex + RELOC/doc/lualatex/luamesh/luamesh-title.pdf + RELOC/doc/lualatex/luamesh/luameshdoc.cls + RELOC/doc/lualatex/luamesh/maillage.geo + RELOC/doc/lualatex/luamesh/maillage.msh + RELOC/doc/lualatex/luamesh/maillagev4.msh + RELOC/doc/lualatex/luamesh/mesh.txt + RELOC/doc/lualatex/luamesh/meshgarde.txt +runfiles size=27 + RELOC/scripts/luamesh/luamesh-polygon.lua + RELOC/scripts/luamesh/luamesh-tex.lua + RELOC/scripts/luamesh/luamesh.lua + RELOC/tex/lualatex/luamesh/luamesh.sty +catalogue-contact-repository https://plmlab.math.cnrs.fr/mchupin/luamesh +catalogue-ctan /macros/luatex/latex/luamesh +catalogue-license lppl1.3 +catalogue-topics graphics maths pgf-tikz graphics-mpost luatex +catalogue-version 0.6 + +name luamplib +category Package +revision 58279 +shortdesc Use LuaTeX's built-in MetaPost interpreter +relocated 1 +longdesc The package enables the user to specify MetaPost diagrams +longdesc (which may include colour specifications from the color or +longdesc xcolor packages) into a document, using LuaTeX's built-in +longdesc MetaPost library. The facility is only available in PDF mode. +containersize 11776 +containerchecksum 516d5f55c367bb2275268e4ba8bcf45cdc576986c866dbf435d3ccdba1eeef799db03d704d452fd49cef559bd5a1bc903839a0b04a926694e336a4e5652a07b8 +doccontainersize 152604 +doccontainerchecksum c503945573406c8176ce8f3461ab9b4fc07762e029104e582be2ae9cee46b4170916426d384b363bc30e12e83f39e0bfaf5f1998e8012b29c8133de23b39427a +docfiles size=43 + RELOC/doc/luatex/luamplib/NEWS + RELOC/doc/luatex/luamplib/README details="Readme" + RELOC/doc/luatex/luamplib/luamplib.pdf details="Package documentation" + RELOC/doc/luatex/luamplib/test-luamplib-latex.tex + RELOC/doc/luatex/luamplib/test-luamplib-plain.tex +srccontainersize 26644 +srccontainerchecksum f11aca288e535861c365259a1c0e1d0a42137898282d2e6027952df827f4c52ad8a5b8553fc0cd692fc0ae5d0f0c60db58a147bd30919a1d04efad4501580b08 +srcfiles size=24 + RELOC/source/luatex/luamplib/Makefile + RELOC/source/luatex/luamplib/luamplib.dtx +runfiles size=12 + RELOC/tex/luatex/luamplib/luamplib.lua + RELOC/tex/luatex/luamplib/luamplib.sty +catalogue-contact-bugs https://github.com/lualatex/luamplib/issues +catalogue-contact-repository http://github.com/lualatex/luamplib +catalogue-ctan /macros/luatex/generic/luamplib +catalogue-license gpl2 +catalogue-topics mp-use graphics-in-tex luatex +catalogue-version 2.20.7 + +name luaotfload +category Package +revision 57443 +shortdesc OpenType 'loader' for Plain TeX and LaTeX +longdesc The package adopts the TrueType/OpenType Font loader code +longdesc provided in ConTeXt, and adapts it to use in Plain TeX and +longdesc LaTeX. It works under LuaLaTeX only. +depend lm +depend lua-alt-getopt +depend lualibs +depend luaotfload.ARCH +containersize 595852 +containerchecksum 5b71f8fa12e21c16d1aaac01a2f27f3220b1da0eb6aea77ae3767e25a15d03180b7bf3587eac9aaaa61658fa7359e6fb2c28e588fea80d4f7b46150f55c2fafa +doccontainersize 627576 +doccontainerchecksum f900a29ea21b654b03671cdd6166dc353bf54eb761757849da96fb74ea398d6ed9fe33f1d602e0a8e1353395cbcaac9cffb4b26c1acebc8105f119271fe8f51b +docfiles size=274 + texmf-dist/doc/luatex/luaotfload/COPYING + texmf-dist/doc/luatex/luaotfload/NEWS + texmf-dist/doc/luatex/luaotfload/README.md details="Readme" + texmf-dist/doc/luatex/luaotfload/filegraph.pdf + texmf-dist/doc/luatex/luaotfload/filegraph.tex + texmf-dist/doc/luatex/luaotfload/luaotfload-conf.pdf + texmf-dist/doc/luatex/luaotfload/luaotfload-latex.pdf details="Package documentation" + texmf-dist/doc/luatex/luaotfload/luaotfload-latex.tex + texmf-dist/doc/luatex/luaotfload/luaotfload-main.tex + texmf-dist/doc/luatex/luaotfload/luaotfload-tool.pdf + texmf-dist/doc/luatex/luaotfload/luaotfload-tool.rst + texmf-dist/doc/luatex/luaotfload/luaotfload.conf.example + texmf-dist/doc/luatex/luaotfload/luaotfload.conf.rst + texmf-dist/doc/luatex/luaotfload/scripts-demo.pdf + texmf-dist/doc/luatex/luaotfload/scripts-demo.tex + texmf-dist/doc/luatex/luaotfload/shaper-demo-graphite.pdf + texmf-dist/doc/luatex/luaotfload/shaper-demo-graphite.tex + texmf-dist/doc/luatex/luaotfload/shaper-demo.pdf + texmf-dist/doc/luatex/luaotfload/shaper-demo.tex + texmf-dist/doc/man/man1/luaotfload-tool.1 + texmf-dist/doc/man/man1/luaotfload-tool.man1.pdf + texmf-dist/doc/man/man5/luaotfload.conf.5 + texmf-dist/doc/man/man5/luaotfload.conf.man5.pdf +srccontainersize 7292 +srccontainerchecksum d422a64b7251f566829c5603957c3b2247cf112f8c3b30951ef3e9584a78b758f38e4efd0b399f35832f5e2f8e405901a13688c6a62bd86f2892ba44a01dbce0 +srcfiles size=6 + texmf-dist/source/luatex/luaotfload/fontloader-reference-load-order.lua + texmf-dist/source/luatex/luaotfload/fontloader-reference-load-order.tex +runfiles size=1870 + texmf-dist/scripts/luaotfload/luaotfload-tool.lua + texmf-dist/tex/luatex/luaotfload/fontloader-2021-01-07.lua + texmf-dist/tex/luatex/luaotfload/fontloader-basics-chr.lua + texmf-dist/tex/luatex/luaotfload/fontloader-basics-gen.lua + texmf-dist/tex/luatex/luaotfload/fontloader-basics-nod.lua + texmf-dist/tex/luatex/luaotfload/fontloader-data-con.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-afk.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-cff.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-cid.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-con.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-def.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-dsp.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-effects.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-italics.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-ligatures.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-tex.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ini.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-lua.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-map.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ocl.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-one.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-onr.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-osd.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ota.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otc.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-oti.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otj.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otl.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-oto.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otr.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ots.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ott.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-oup.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-shp.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ttf.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-vfc.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-def.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-enc.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-ext.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-gbn.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-lig.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-mis.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-syn.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-tfm.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-boolean.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-file.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-function.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-io.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-lpeg.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-lua.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-math.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-string.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-unicode.lua + texmf-dist/tex/luatex/luaotfload/fontloader-reference.lua + texmf-dist/tex/luatex/luaotfload/fontloader-util-fil.lua + texmf-dist/tex/luatex/luaotfload/fontloader-util-str.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-blacklist.cnf + texmf-dist/tex/luatex/luaotfload/luaotfload-case-el.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-case.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-characters.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-diagnostics.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-dvi.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-embolden.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-fakesc.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-fallback.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-features.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-filelist.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-glyphlist.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-harf-define.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-harf-plug.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-init.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-letterspace.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-log.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-main.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-multiscript.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-notdef.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-parsers.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-resolvers.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-scripts.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-suppress.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-szss.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-tounicode.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-unicode.lua + texmf-dist/tex/luatex/luaotfload/luaotfload.lua + texmf-dist/tex/luatex/luaotfload/luaotfload.sty +catalogue-contact-repository https://github.com/latex3/luaotfload +catalogue-contact-support https://github.com/latex3/luaotfload/issues +catalogue-ctan /macros/luatex/generic/luaotfload +catalogue-license gpl2 +catalogue-topics font-use luatex +catalogue-version 3.17 + +name luaotfload.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of luaotfload +containersize 348 +containerchecksum 5a2141f4e940e971f11151776503faeb7834ea23fdd2600dcc0aca333854459a3a3dbcb38b4e6d0fe25a953470022958af319c170cb30ceedf1394656a447e2f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/luaotfload-tool + +name luaotfload.amd64-freebsd +category Package +revision 34647 +shortdesc amd64-freebsd files of luaotfload +containersize 352 +containerchecksum 85b1add815f50f96d6d6c3235c3c70e262a224e7b479080c21a6d14c69be124443afb1c1b7e14f8ac3ca2a0b58a89893554e4686e3757fc1a89cb1f749ec5090 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/luaotfload-tool + +name luaotfload.amd64-netbsd +category Package +revision 34647 +shortdesc amd64-netbsd files of luaotfload +containersize 348 +containerchecksum ceae21f4907dfa5b3b31f72bd2739b9ff47ee55dc144de4a71ba07a92ba58b0924eb88e61276c72b1958071d498f49efbb13b5b433cf21242f855710441b761a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/luaotfload-tool + +name luaotfload.armhf-linux +category Package +revision 34647 +shortdesc armhf-linux files of luaotfload +containersize 348 +containerchecksum d25da611b9a631404ba4a4ea4204fb693975f34239f523afcb9fe642a6632d042ca88fd97743b1baa2a6572e41b246f6cb32a3a8977d5ed6100f13dffeef8222 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/luaotfload-tool + +name luaotfload.i386-cygwin +category Package +revision 34647 +shortdesc i386-cygwin files of luaotfload +containersize 344 +containerchecksum 0fc30716362f4947447f76c33d6be39ee42323c424fec84c90e8dd41da665f14aea780d1ed93d0c3411371fce3104a2fe570fad2ba07dbc65082c93c32a68bb7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/luaotfload-tool + +name luaotfload.i386-freebsd +category Package +revision 34647 +shortdesc i386-freebsd files of luaotfload +containersize 348 +containerchecksum 32e32f5c5677b8868b420a9b3099498faa358693f38c078842d7a6c848a7035b47a33650e417c995659dab1f15f99408a02ce7b8bce5b1e1e288996a4a7bfba3 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/luaotfload-tool + +name luaotfload.i386-linux +category Package +revision 34647 +shortdesc i386-linux files of luaotfload +containersize 348 +containerchecksum 9dd324942ac4d3cb947eca41497bbb269f0551b776bed378a4b04848397330d9127cf2c9f7f860ca1b1d9aa31bb5cddba43eba5c38c09652bb45edad4eb3cabc +binfiles arch=i386-linux size=1 + bin/i386-linux/luaotfload-tool + +name luaotfload.i386-netbsd +category Package +revision 34647 +shortdesc i386-netbsd files of luaotfload +containersize 348 +containerchecksum f60f2a88256bf6ebc818abe234da60f97d17e3618f711798940cb31b48bbe6e84dd5be08869113894086b0fc6c9fc5c09b4d93101dc1156fd94f408d73128dac +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/luaotfload-tool + +name luaotfload.i386-solaris +category Package +revision 34647 +shortdesc i386-solaris files of luaotfload +containersize 348 +containerchecksum a7f29092c97e105cf453412145e4b1396e18b5609851b95c461101ceda47e0c97e1a33a11c07c23d0303b6390c65b5ed404ec3bd08917633a2bf9902eba2bb43 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/luaotfload-tool + +name luaotfload.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of luaotfload +containersize 348 +containerchecksum 4dd3c702670e73d04eea57bf563a015a719461d388c496074cbef47b1bcd728b1e33306363057f100f3d50cc29ce9d3ffa471d2948a6352ee5f6140a8b001935 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/luaotfload-tool + +name luaotfload.win32 +category Package +revision 34647 +shortdesc win32 files of luaotfload +containersize 692 +containerchecksum 63131e841af17292f1f0794688c90752864478afb827f6ce47ca11574b139b877e0f045db2bf8d25ceb4a9bb03c8228c36b81f9efae697532c01017e999d0b77 +binfiles arch=win32 size=1 + bin/win32/luaotfload-tool.exe + +name luaotfload.x86_64-cygwin +category Package +revision 34647 +shortdesc x86_64-cygwin files of luaotfload +containersize 348 +containerchecksum 7fd37caad46fd0a31bc31e1faad46a42d5475081332c4e151cdf208e1d738d039fc0acef6c2a75310e4e7d89917714207b548136a84912a9e09d553724728657 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/luaotfload-tool + +name luaotfload.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of luaotfload +containersize 356 +containerchecksum 3abb02929645129c6a25268e608ed6b57db0b4e4c387a17c862cc00f32ed8cc2a3f311200848fe5f26df2d4e733ce9f15345b9d0e801bafdf9928c7138d301d3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/luaotfload-tool + +name luaotfload.x86_64-linux +category Package +revision 34647 +shortdesc x86_64-linux files of luaotfload +containersize 348 +containerchecksum 88d1a0e7f084beab1c8d28d25ed0ce3d355619b5d33fa5e7fb312e4b689532c47ac11fb5ddb5df0790c44200b8fc1fbde72d411717183d3796bbd20158265e8d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/luaotfload-tool + +name luaotfload.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of luaotfload +containersize 352 +containerchecksum 48d897b4126b0caf93dc7d721351cfefb7f16dcc60a834c656ff90c44264193c5c95f9d621ee17cd960a8723938e09aeeae22677a3ca8b70156f949e36309e40 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/luaotfload-tool + +name luaotfload.x86_64-solaris +category Package +revision 34647 +shortdesc x86_64-solaris files of luaotfload +containersize 348 +containerchecksum 031b1d7fa386c3f51e6b3a8ad22e8996806faefbad682939a9b8c1c63b8ee2ded3ee92b052582c24cb5568b84a1935b4bf433d8bf2df13963e28edb7c41ea28a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/luaotfload-tool + +name luapackageloader +category Package +revision 54779 +shortdesc Allow LuaTeX to load external Lua packages +relocated 1 +longdesc This package allows LuaTeX to load packages from the default +longdesc package.path and package.cpath locations. This could be useful +longdesc to load external Lua modules, including modules installed via +longdesc LuaRocks. This package requires ifluatex. +depend iftex +containersize 1700 +containerchecksum 7f2558dc265746f143520c2c6f3bf2ed05ac8c54988e573519321a7fb5a2a991220d0eb8906893f77964dc01f0e3f16b783dcd20f809042a11d29cd137f557fd +doccontainersize 35324 +doccontainerchecksum 64719d715fc98bc09ab17db5f2053ea3e34d703adda6677f50ffe178a974230e8a03a9019b995238d073580e1faa745e655a7207468965ccb9f67bfccb5b5a49 +docfiles size=11 + RELOC/doc/luatex/luapackageloader/README.md details="Readme" + RELOC/doc/luatex/luapackageloader/luapackageloader.pdf details="Package documentation" + RELOC/doc/luatex/luapackageloader/luapackageloader.tex +runfiles size=2 + RELOC/tex/luatex/luapackageloader/luapackageloader.lua + RELOC/tex/luatex/luapackageloader/luapackageloader.sty +catalogue-contact-bugs https://github.com/deepakjois/luapackageloader/issues +catalogue-contact-repository https://github.com/deepakjois/luapackageloader +catalogue-ctan /macros/luatex/generic/luapackageloader +catalogue-license lppl1.3c +catalogue-topics luatex lua-supp use-lua +catalogue-version 0.2 + +name luaprogtable +category Package +revision 56113 +shortdesc Programmable table interface for LuaLaTeX +relocated 1 +longdesc This package allows you to modify a cell based on the contents +longdesc of other cells using LaTeX macros. +containersize 7092 +containerchecksum 68ed668fcc84eddad444edfdd18ede2c94ad81fd61162d62c5a052fabcda6e5bcb519d6eb473721fc2cc090bb7f642dd55ac35b9f1f0a682b2fb8c480a0a1014 +doccontainersize 442728 +doccontainerchecksum d91bb2fdf9851b1aeb3dba0b5eeb75bd1f9aa8c806fc3a99e063af7f56e0878152630aa18731c1c40aa00de72a0d192981a272d586fb25f7a19d14b4fc25b5e6 +docfiles size=114 + RELOC/doc/lualatex/luaprogtable/README.md details="Readme" + RELOC/doc/lualatex/luaprogtable/luaprogtable-doc.pdf details="Package documentation" + RELOC/doc/lualatex/luaprogtable/luaprogtable-doc.tex +runfiles size=10 + RELOC/tex/lualatex/luaprogtable/luaprogtable-parse.lua + RELOC/tex/lualatex/luaprogtable/luaprogtable-stringbuffer.lua + RELOC/tex/lualatex/luaprogtable/luaprogtable-utility.lua + RELOC/tex/lualatex/luaprogtable/luaprogtable.lua + RELOC/tex/lualatex/luaprogtable/luaprogtable.sty +catalogue-contact-repository https://github.com/xziyue/luaprogtable +catalogue-ctan /macros/luatex/latex/luaprogtable +catalogue-license mit +catalogue-topics table +catalogue-version 1.0 + +name luarandom +category Package +revision 49419 +shortdesc Create lists of random numbers +relocated 1 +longdesc This package can create lists of random numbers for any given +longdesc interval [a;b]. It is possible to get lists with or without +longdesc multiple numbers. The random generator will be initialized by +longdesc the system time. The package can only be used with LuaLaTeX! +containersize 1392 +containerchecksum 54019dd968b2cf3b6ab9a3777e609789c04a0d369b1ae938df152ded3bf54607140fe6265b81ca2a75f458e9b8144000f0bf2e9d77fb00aa923f7ce9569c423f +doccontainersize 50272 +doccontainerchecksum f7fa30cd6668674cfee8116bdacd3c457fe6e1a3ef4a1c0da603db2fbaae77d187bfc5b4867aea0410a906238769d7138672b89b51eccc9fc4d110a079784092 +docfiles size=16 + RELOC/doc/lualatex/luarandom/Changes + RELOC/doc/lualatex/luarandom/README details="Readme" + RELOC/doc/lualatex/luarandom/luarandom-doc.pdf details="Package documentation" + RELOC/doc/lualatex/luarandom/luarandom-doc.tex +runfiles size=1 + RELOC/tex/lualatex/luarandom/luarandom.sty +catalogue-ctan /macros/luatex/latex/luarandom +catalogue-license lppl1.3 +catalogue-topics luatex random calculation +catalogue-version 0.01 + +name luasseq +category Package +revision 37877 +shortdesc Drawing spectral sequences in LuaLaTeX +relocated 1 +longdesc The package is an update of the author's sseq package, for use +longdesc with LuaLaTeX. This version uses less memory, and operates +longdesc faster than the original; it also offers several enhancements. +containersize 10232 +containerchecksum 400e95fd898152e8d8e989084ca9cd115516850edb6e8d102eddaaf278f29213c8a4828dde01ca202db68d6cd2b2685bda71f63ad7a92eb586a4c303d2e9d02b +doccontainersize 224504 +doccontainerchecksum 7ac8f5df74cede5734c9c47048cbb3b079155910a89ebf0c7adb169b4b61751f6255b2c07614d44a55e8dad43bb35693bf224d0f750bff28987c7c5f1a8a5bc4 +docfiles size=56 + RELOC/doc/lualatex/luasseq/README + RELOC/doc/lualatex/luasseq/luasseq.pdf details="Package documentation" +srccontainersize 10964 +srccontainerchecksum 4946e994a3ce2712e6da73a9969cbf2634726191845332e4464ce8d446c09235e94798c878e9e060e3a7b3bc3a27c37a299b9d30f1da6368b67875b551ee9d0d +srcfiles size=11 + RELOC/source/lualatex/luasseq/luasseq.dtx + RELOC/source/lualatex/luasseq/luasseq.ins +runfiles size=11 + RELOC/scripts/luasseq/luasseq.lua + RELOC/tex/lualatex/luasseq/luasseq.sty +catalogue-ctan /macros/luatex/latex/luasseq +catalogue-license lppl +catalogue-topics maths luatex + +name luatex +category TLCore +revision 58822 +shortdesc The LuaTeX engine +longdesc LuaTeX is an extended version of pdfTeX using Lua as an +longdesc embedded scripting language. The LuaTeX project's main +longdesc objective is to provide an open and configurable variant of TeX +longdesc while at the same time offering downward compatibility. LuaTeX +longdesc uses Unicode (as UTF-8) as its default input encoding, and is +longdesc able to use modern (OpenType) fonts (for both text and +longdesc mathematics). It should be noted that LuaTeX is still under +longdesc development; its specification has been declared stable, but +longdesc absolute stability may not in practice be assumed. Source code +longdesc is available from ctan:/systems/texlive/Source/. +depend cm +depend etex +depend hyph-utf8 +depend hyphen-base +depend knuth-lib +depend luatex.ARCH +depend plain +depend tex-ini-files +depend unicode-data +execute AddFormat name=dviluatex engine=luatex options="dviluatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8 +execute AddFormat name=luatex engine=luatex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8 +containersize 12912 +containerchecksum d24bb6b9ac86d31c6b43a553f8153482f962d42dde813b41f41467ec2e7b5606f065108fda172217cee9b48e8b75237365eb6eda354d16def2bc2919cc0815a1 +doccontainersize 1880488 +doccontainerchecksum 9096aa4d630bbad43fb4eecbdcb8ceaca94709fd734fe7e9a3f09a9bc5d57209c922d1359f71e8a2d1cdbcbe127d3c09c2311b96c2d2574d5356ae9f9f6bef7e +docfiles size=698 + texmf-dist/doc/luatex/base/graphics/luaharfbuzz.pdf + texmf-dist/doc/luatex/base/luatex-backend.tex + texmf-dist/doc/luatex/base/luatex-callbacks.tex + texmf-dist/doc/luatex/base/luatex-contents.tex + texmf-dist/doc/luatex/base/luatex-enhancements.tex + texmf-dist/doc/luatex/base/luatex-export-titlepage.tex + texmf-dist/doc/luatex/base/luatex-firstpage.tex + texmf-dist/doc/luatex/base/luatex-fontloader.tex + texmf-dist/doc/luatex/base/luatex-fonts.tex + texmf-dist/doc/luatex/base/luatex-graphics.tex + texmf-dist/doc/luatex/base/luatex-harfbuzz.tex + texmf-dist/doc/luatex/base/luatex-introduction.tex + texmf-dist/doc/luatex/base/luatex-languages.tex + texmf-dist/doc/luatex/base/luatex-logos.tex + texmf-dist/doc/luatex/base/luatex-lua.tex + texmf-dist/doc/luatex/base/luatex-math.tex + texmf-dist/doc/luatex/base/luatex-modifications.tex + texmf-dist/doc/luatex/base/luatex-nodes.tex + texmf-dist/doc/luatex/base/luatex-preamble.tex + texmf-dist/doc/luatex/base/luatex-registers.tex + texmf-dist/doc/luatex/base/luatex-statistics.tex + texmf-dist/doc/luatex/base/luatex-style.tex + texmf-dist/doc/luatex/base/luatex-tex.tex + texmf-dist/doc/luatex/base/luatex-titlepage.tex + texmf-dist/doc/luatex/base/luatex.pdf details="LuaTeX Reference" + texmf-dist/doc/luatex/base/luatex.tex + texmf-dist/doc/man/man1/dviluatex.1 + texmf-dist/doc/man/man1/dviluatex.man1.pdf + texmf-dist/doc/man/man1/luatex.1 + texmf-dist/doc/man/man1/luatex.man1.pdf + texmf-dist/doc/man/man1/texlua.1 + texmf-dist/doc/man/man1/texlua.man1.pdf + texmf-dist/doc/man/man1/texluac.1 + texmf-dist/doc/man/man1/texluac.man1.pdf +runfiles size=37 + texmf-dist/tex/generic/config/luatex-unicode-letters.tex + texmf-dist/tex/generic/config/luatexiniconfig.tex + texmf-dist/web2c/texmfcnf.lua +catalogue-contact-bugs https://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 https://lists.tug.org/luatex +catalogue-license gpl2 +catalogue-topics engine + +name luatex.aarch64-linux +category TLCore +revision 58876 +shortdesc aarch64-linux files of luatex +containersize 1703364 +containerchecksum 5bd0ff539f27721a1cb8850bad1a444f346611f2f29283b9b6b7c379937bf1d3c47f991fa2897c97c5beebb767f0c6ab7a0c150ef8f29612e072fb8f7c51bcbf +binfiles arch=aarch64-linux size=1738 + bin/aarch64-linux/dviluatex + bin/aarch64-linux/luatex + bin/aarch64-linux/texlua + bin/aarch64-linux/texluac + +name luatex.amd64-freebsd +category TLCore +revision 58850 +shortdesc amd64-freebsd files of luatex +containersize 1863900 +containerchecksum ac4a735ca2791550398146a2aed5be90d76884e80d2135a90551b2c286c1285142fbe78f980731d2afbf09366edf3655e41271f4e85cf19d3053a3fd2048a079 +binfiles arch=amd64-freebsd size=1695 + bin/amd64-freebsd/dviluatex + bin/amd64-freebsd/luatex + bin/amd64-freebsd/texlua + bin/amd64-freebsd/texluac + +name luatex.amd64-netbsd +category TLCore +revision 58866 +shortdesc amd64-netbsd files of luatex +containersize 1585152 +containerchecksum b9f52544f3578062e7e9789e770837369c49fb060e32cce354e1a5b288eb8879bc2dc8e15619535f0b7230b3aab0f23c88611996416c2a920fd99b4f153f5974 +binfiles arch=amd64-netbsd size=1966 + bin/amd64-netbsd/dviluatex + bin/amd64-netbsd/luatex + bin/amd64-netbsd/texlua + bin/amd64-netbsd/texluac + +name luatex.armhf-linux +category TLCore +revision 58911 +shortdesc armhf-linux files of luatex +containersize 1470796 +containerchecksum 9c4c7fe24f79515985b6092ca6ced3b91474522eb436d5575e23bf80e77e9f9a4c1fc92e0c699a614b4b64224e48005fe1756e4354e2945bc99f06f26060da40 +binfiles arch=armhf-linux size=1398 + bin/armhf-linux/dviluatex + bin/armhf-linux/luatex + bin/armhf-linux/texlua + bin/armhf-linux/texluac + +name luatex.i386-cygwin +category TLCore +revision 58851 +shortdesc i386-cygwin files of luatex +containersize 1753312 +containerchecksum 455b4e0bfcec5d3f545cfca62c8c7be9fc6308c0e3ea68307ef272a74d2f1e1e71ec038e7ad677872cb4a4091e1d931b44cbf5ca789b2dc56515df485b147978 +binfiles arch=i386-cygwin size=1659 + bin/i386-cygwin/cygtexlua53-5.dll + bin/i386-cygwin/dviluatex + bin/i386-cygwin/luatex.exe + bin/i386-cygwin/texlua + bin/i386-cygwin/texluac + +name luatex.i386-freebsd +category TLCore +revision 58850 +shortdesc i386-freebsd files of luatex +containersize 1712168 +containerchecksum 3468336ee4db3730ac44834e9ceb2325a759c94705f36dc8ec21a9abeacd5aecd55e0aa39dd45822d8b8d82f32468d1bdbd2159488a885282129d2c57dc0c914 +binfiles arch=i386-freebsd size=1569 + bin/i386-freebsd/dviluatex + bin/i386-freebsd/luatex + bin/i386-freebsd/texlua + bin/i386-freebsd/texluac + +name luatex.i386-linux +category TLCore +revision 58850 +shortdesc i386-linux files of luatex +containersize 1857504 +containerchecksum a9d2dc819421bd045601782a466eb4178d69ccaeabfeb6f6e4545b1768131fc9f62905988cfc5e05cfe9a709feb6e0382f4a9b9e74f7552ca3bc9a530bcedc0a +binfiles arch=i386-linux size=1705 + bin/i386-linux/dviluatex + bin/i386-linux/luatex + bin/i386-linux/texlua + bin/i386-linux/texluac + +name luatex.i386-netbsd +category TLCore +revision 58866 +shortdesc i386-netbsd files of luatex +containersize 1449908 +containerchecksum a4c3b2d20ffceb9df73baf759bf26d4b823eeceb37bf96c36a17d21129035a896d6ada548591692bef9d487ffd724c61b12f8d35969f20dbd9fda9a3ec323ec3 +binfiles arch=i386-netbsd size=1807 + bin/i386-netbsd/dviluatex + bin/i386-netbsd/luatex + bin/i386-netbsd/texlua + bin/i386-netbsd/texluac + +name luatex.i386-solaris +category TLCore +revision 58850 +shortdesc i386-solaris files of luatex +containersize 1615968 +containerchecksum f064cbf4487801c49bfed01895eb489df48d3a7cddc96d0954439b62c6cd117cabf666ee0b5c5c849743106815fcd876be36985a3b174eb75d4e3bbd3a170181 +binfiles arch=i386-solaris size=1435 + bin/i386-solaris/dviluatex + bin/i386-solaris/luatex + bin/i386-solaris/texlua + bin/i386-solaris/texluac + +name luatex.universal-darwin +category TLCore +revision 58850 +shortdesc universal-darwin files of luatex +containersize 3001004 +containerchecksum 1483bfc2d3b8f3fefb971e9bb163c67027d2220e9d924e351ee4cc1011c738177773ae21058205cec770a28f71301e8686e12c0599d7cb53107262dbf7029fa1 +binfiles arch=universal-darwin size=3135 + bin/universal-darwin/dviluatex + bin/universal-darwin/luatex + bin/universal-darwin/texlua + bin/universal-darwin/texluac + +name luatex.win32 +category TLCore +revision 58843 +shortdesc win32 files of luatex +containersize 1822168 +containerchecksum 7ba65d191abcd6c6300cf4a37733776f799618bc90201d76d029898acf3d631f6d454f27aaaae2e03ef98a431f5329db9d706da7a8a5e744ad0c2596a13a35ba +binfiles arch=win32 size=1686 + bin/win32/api-ms-win-core-file-l1-2-0.dll + bin/win32/api-ms-win-core-file-l2-1-0.dll + bin/win32/api-ms-win-core-localization-l1-2-0.dll + bin/win32/api-ms-win-core-processthreads-l1-1-1.dll + bin/win32/api-ms-win-core-synch-l1-2-0.dll + bin/win32/api-ms-win-core-timezone-l1-1-0.dll + bin/win32/api-ms-win-crt-convert-l1-1-0.dll + bin/win32/api-ms-win-crt-environment-l1-1-0.dll + bin/win32/api-ms-win-crt-filesystem-l1-1-0.dll + bin/win32/api-ms-win-crt-heap-l1-1-0.dll + bin/win32/api-ms-win-crt-locale-l1-1-0.dll + bin/win32/api-ms-win-crt-math-l1-1-0.dll + bin/win32/api-ms-win-crt-multibyte-l1-1-0.dll + bin/win32/api-ms-win-crt-process-l1-1-0.dll + bin/win32/api-ms-win-crt-runtime-l1-1-0.dll + bin/win32/api-ms-win-crt-stdio-l1-1-0.dll + bin/win32/api-ms-win-crt-string-l1-1-0.dll + bin/win32/api-ms-win-crt-time-l1-1-0.dll + bin/win32/api-ms-win-crt-utility-l1-1-0.dll + bin/win32/dviluatex.exe + bin/win32/lua53.dll + bin/win32/luatex.dll + bin/win32/luatex.exe + bin/win32/pdfddeservername.txt + bin/win32/texlua.exe + bin/win32/texluac.exe + bin/win32/ucrtbase.dll + bin/win32/vcruntime140.dll + +name luatex.x86_64-cygwin +category TLCore +revision 58851 +shortdesc x86_64-cygwin files of luatex +containersize 1724596 +containerchecksum caf6bfe8307fa75e2f7a467f877b339d5ea307da9b0e1fb8f59f86c01ab4280a426eb22baaf54800632751c54518e391cf7a1b04b9847d5865f7b03b9e7b89a6 +binfiles arch=x86_64-cygwin size=1601 + bin/x86_64-cygwin/cygtexlua53-5.dll + bin/x86_64-cygwin/dviluatex + bin/x86_64-cygwin/luatex.exe + bin/x86_64-cygwin/texlua + bin/x86_64-cygwin/texluac + +name luatex.x86_64-darwinlegacy +category TLCore +revision 58850 +shortdesc x86_64-darwinlegacy files of luatex +containersize 1609560 +containerchecksum 4393d7f7cb6c005a50b2d985b623a6e1cce95833b597ff81eb5c7ae5355fb1010ffff1e340595ec1b93b4bf773263221cc1a4bbf5a8015b3cb4e47bb0ff1bf81 +binfiles arch=x86_64-darwinlegacy size=1469 + bin/x86_64-darwinlegacy/dviluatex + bin/x86_64-darwinlegacy/luatex + bin/x86_64-darwinlegacy/texlua + bin/x86_64-darwinlegacy/texluac + +name luatex.x86_64-linux +category TLCore +revision 58872 +shortdesc x86_64-linux files of luatex +containersize 1793456 +containerchecksum 1fcac1a8e873fcad2833196c1bf828a526727686c937dda479751be53081eae5fbfa9b9d41357a9a9d051439a72802151cfc37e9cee9d5fdc89314bf40f1e38f +binfiles arch=x86_64-linux size=1608 + bin/x86_64-linux/dviluatex + bin/x86_64-linux/luatex + bin/x86_64-linux/texlua + bin/x86_64-linux/texluac + +name luatex.x86_64-linuxmusl +category TLCore +revision 58850 +shortdesc x86_64-linuxmusl files of luatex +containersize 1889936 +containerchecksum a6ba5d503b50cedc1f8232c111183662457bf66d3225068387d67145725b39c541d1e6f4ff326446d3effe5660bc82c07366cdee37aeed88b0370fdd97bc6220 +binfiles arch=x86_64-linuxmusl size=2262 + bin/x86_64-linuxmusl/dviluatex + bin/x86_64-linuxmusl/luatex + bin/x86_64-linuxmusl/texlua + bin/x86_64-linuxmusl/texluac + +name luatex.x86_64-solaris +category TLCore +revision 58850 +shortdesc x86_64-solaris files of luatex +containersize 1798608 +containerchecksum 2a3f5d95bcd70c827a9783861e6490d6e7e0c4c0cdc407f6200d8080a0480247c3c61c86f4ef71762491ce2c67e191c7dc3851808aba3954b8e0d5f712210167 +binfiles arch=x86_64-solaris size=1610 + bin/x86_64-solaris/dviluatex + bin/x86_64-solaris/luatex + bin/x86_64-solaris/texlua + bin/x86_64-solaris/texluac + +name luatex85 +category Package +revision 41456 +shortdesc pdfTeX aliases for LuaTeX +relocated 1 +longdesc The package provides emulation of pdfTeX primitives for LuaTeX +longdesc v0.85+. +containersize 1740 +containerchecksum fbc1306d40e1c329a106d7ec4ef79ebb99b2869ce72c45212b87fa03f66a18b1636324dafc739a33500be77bee2c71ebeff02c97c42f85716f5bded4dcebc021 +doccontainersize 171144 +doccontainerchecksum 4bf353f60c305ea76e66848920e521dec0c66c80f71ebdfb0593acfc9e2914eac272eba3d69f63f43fe8be903cfbb2da7edd82cbc3d38a897934d91f1ac276b7 +docfiles size=43 + RELOC/doc/generic/luatex85/README.md details="Readme" + RELOC/doc/generic/luatex85/luatex85.pdf details="Package documentation" +srccontainersize 3788 +srccontainerchecksum 40f2732ba0eea372d084c7a9096e12de76a6f7c4ee2c8c9c042ae51696ca46fb527aa73dfb37b7c6a1a75f9753ed32b28fb9d3f2474cfd54528336b4a3cc95e6 +srcfiles size=4 + RELOC/source/generic/luatex85/luatex85.dtx + RELOC/source/generic/luatex85/luatex85.ins +runfiles size=2 + RELOC/tex/generic/luatex85/luatex85.sty +catalogue-ctan /macros/generic/luatex85 +catalogue-license lppl1.3 +catalogue-topics lua-supp +catalogue-version 1.4 + +name luatexbase +category Package +revision 52663 +shortdesc Basic resource management for LuaTeX code +relocated 1 +longdesc The LaTeX kernel (LaTeX2e 2015/10/01 onward) builds in support +longdesc for LuaTeX functionality, also available as ltluatex.tex for +longdesc users of plain TeX and those with older LaTeX kernel +longdesc implementations. This support is based on ideas taken from the +longdesc original luatexbase package, but there are interface +longdesc differences. This 'stub' package provides a compatibility layer +longdesc to allow existing packages to upgrade smoothly to the new +longdesc support structure. +depend ctablestack +containersize 3508 +containerchecksum cb187dcd0f9e454a3b9d021b802ac6f7d09c3eee68adb5da31035f5b7bb36d2938ca940505ee08c8410ee0e5e5c81ffdd21617ea5ba0e9ca7b58abb6ede3defb +doccontainersize 263752 +doccontainerchecksum 5dc696009e84662fc56443d7a5d61b3f30adbfeae3cf7176e81e676087d0fe580cb0575add49999ea8d5651850b7562c775b0727de01934465f3613ab7344be3 +docfiles size=66 + RELOC/doc/luatex/luatexbase/README.md details="Readme" + RELOC/doc/luatex/luatexbase/luatexbase.pdf details="Package documentation" +srccontainersize 8444 +srccontainerchecksum ebb46d5d4c3f6ccfdbc758f9dab64d7e83c2fe988f7da6852dfd5e786bc757f2438f86010a695eb2e780a02830f15dea941de7fb5bdd6e6561df0774b476dd5a +srcfiles size=9 + RELOC/source/luatex/luatexbase/luatexbase.dtx + RELOC/source/luatex/luatexbase/luatexbase.ins +runfiles size=11 + RELOC/tex/luatex/luatexbase/luatexbase-attr.sty + RELOC/tex/luatex/luatexbase/luatexbase-cctb.sty + RELOC/tex/luatex/luatexbase/luatexbase-compat.sty + RELOC/tex/luatex/luatexbase/luatexbase-loader.sty + RELOC/tex/luatex/luatexbase/luatexbase-mcb.sty + RELOC/tex/luatex/luatexbase/luatexbase-modutils.sty + RELOC/tex/luatex/luatexbase/luatexbase-regs.sty + RELOC/tex/luatex/luatexbase/luatexbase.loader.lua + RELOC/tex/luatex/luatexbase/luatexbase.sty +catalogue-ctan /macros/luatex/generic/luatexbase +catalogue-license lppl1.3 +catalogue-topics luatex +catalogue-version 1.3 + +name luatexja +category Package +revision 58542 +shortdesc Typeset Japanese with Lua(La)TeX +relocated 1 +longdesc The package offers support for typesetting Japanese documents +longdesc with LuaTeX. Either of the Plain and LaTeX2e formats may be +longdesc used with the package. +depend luatexbase +containersize 189656 +containerchecksum be42a930c9b89695ac5e69edc2ac28c8f9956f616012826932e56af54f3aada99a02de72c87f4a285e3553220be1583bb60d98e3741abd3d12d167d26b778047 +doccontainersize 3199480 +doccontainerchecksum 667bb90edc5d4f4d706e3f0ca32cecd2c3f63e5b7a10debe1adf3824ff745f743b4dabacd6eac970b328096018b03186c10789adc61daa0d91c4fd979aa5b98c +docfiles size=960 + RELOC/doc/luatex/luatexja/COPYING + RELOC/doc/luatex/luatexja/README details="Readme" + RELOC/doc/luatex/luatexja/jfm-test.lua + RELOC/doc/luatex/luatexja/jfm-testf.lua + RELOC/doc/luatex/luatexja/jfm-ujisc33.lua + RELOC/doc/luatex/luatexja/lltjp-geometry.pdf + RELOC/doc/luatex/luatexja/lltjp-geometry.tex + RELOC/doc/luatex/luatexja/ltjclasses.pdf + RELOC/doc/luatex/luatexja/ltjltxdoc.pdf + RELOC/doc/luatex/luatexja/ltjsclasses.pdf + RELOC/doc/luatex/luatexja/luatexja-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/luatex/luatexja/luatexja-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/luatex/luatexja/luatexja-ruby.pdf + RELOC/doc/luatex/luatexja/luatexja-ruby.tex + RELOC/doc/luatex/luatexja/luatexja.dtx + RELOC/doc/luatex/luatexja/luatexja.ins +srccontainersize 83292 +srccontainerchecksum 8472ba4ca610b6579549435da7bf3bee4680a2ef44ed9c2073cbbdc4112f4f1604d30d62e91a894769e98cd1c3d8baddfddf406cde79bbd8539e441c9d2b3e01 +srcfiles size=118 + RELOC/source/luatex/luatexja/ltjclasses.dtx + RELOC/source/luatex/luatexja/ltjclasses.ins + RELOC/source/luatex/luatexja/ltjltxdoc.dtx + RELOC/source/luatex/luatexja/ltjltxdoc.ins + RELOC/source/luatex/luatexja/ltjsclasses.dtx + RELOC/source/luatex/luatexja/ltjsclasses.ins + RELOC/source/luatex/luatexja/tool/blocks2defcharrange.rb + RELOC/source/luatex/luatexja/tool/chars2defcharrange.rb + RELOC/source/luatex/luatexja/tool/function_uax50.lua + RELOC/source/luatex/luatexja/tool/ivslist.tex + RELOC/source/luatex/luatexja/tool/jfm-convert.lua + RELOC/source/luatex/luatexja/tool/jfm-readable.rb + RELOC/source/luatex/luatexja/tool/kyoikukanji.txt + RELOC/source/luatex/luatexja/tool/kyoikukanjiChars.tex + RELOC/source/luatex/luatexja/tool/ltj-unicode-ccfix_make2.pl + RELOC/source/luatex/luatexja/tool/otf-AdobeMingStd-Light.txt + RELOC/source/luatex/luatexja/tool/otf-AdobeMyungjoStd-Medium.txt + RELOC/source/luatex/luatexja/tool/otf-AdobeSongStd-Light.txt + RELOC/source/luatex/luatexja/tool/otf-KozMinPr6N-Regular.txt + RELOC/source/luatex/luatexja/tool/table_ivd_aj1.lua + RELOC/source/luatex/luatexja/tool/table_jisx0208.tex + RELOC/source/luatex/luatexja/tool/unicodeBlocks.tex +runfiles size=407 + RELOC/tex/luatex/luatexja/addons/luatexja-adjust.sty + RELOC/tex/luatex/luatexja/addons/luatexja-ajmacros.sty + RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-27c.sty + RELOC/tex/luatex/luatexja/addons/luatexja-fontspec.sty + RELOC/tex/luatex/luatexja/addons/luatexja-otf.sty + RELOC/tex/luatex/luatexja/addons/luatexja-preset.sty + RELOC/tex/luatex/luatexja/addons/luatexja-ruby.sty + RELOC/tex/luatex/luatexja/addons/luatexja-zhfonts.sty + RELOC/tex/luatex/luatexja/jfm-CCT.lua + RELOC/tex/luatex/luatexja/jfm-banjiao.lua + RELOC/tex/luatex/luatexja/jfm-jis.lua + RELOC/tex/luatex/luatexja/jfm-kaiming.lua + RELOC/tex/luatex/luatexja/jfm-min.lua + RELOC/tex/luatex/luatexja/jfm-mono.lua + RELOC/tex/luatex/luatexja/jfm-prop.lua + RELOC/tex/luatex/luatexja/jfm-propv.lua + RELOC/tex/luatex/luatexja/jfm-propw.lua + RELOC/tex/luatex/luatexja/jfm-quanjiao.lua + RELOC/tex/luatex/luatexja/jfm-tmin.lua + RELOC/tex/luatex/luatexja/jfm-ujis.lua + RELOC/tex/luatex/luatexja/jfm-ujisv.lua + RELOC/tex/luatex/luatexja/lltjext.sty + RELOC/tex/luatex/luatexja/ltj-adjust.lua + RELOC/tex/luatex/luatexja/ltj-base.lua + RELOC/tex/luatex/luatexja/ltj-base.sty + RELOC/tex/luatex/luatexja/ltj-charrange.lua + RELOC/tex/luatex/luatexja/ltj-compat.lua + RELOC/tex/luatex/luatexja/ltj-debug.lua + RELOC/tex/luatex/luatexja/ltj-direction.lua + RELOC/tex/luatex/luatexja/ltj-inputbuf.lua + RELOC/tex/luatex/luatexja/ltj-ivd_aj1.lua + RELOC/tex/luatex/luatexja/ltj-jfmglue.lua + RELOC/tex/luatex/luatexja/ltj-jfont.lua + RELOC/tex/luatex/luatexja/ltj-jisx0208.lua + RELOC/tex/luatex/luatexja/ltj-kinsoku.tex + RELOC/tex/luatex/luatexja/ltj-latex.sty + RELOC/tex/luatex/luatexja/ltj-lineskip.lua + RELOC/tex/luatex/luatexja/ltj-lotf_aux.lua + RELOC/tex/luatex/luatexja/ltj-math.lua + RELOC/tex/luatex/luatexja/ltj-otf.lua + RELOC/tex/luatex/luatexja/ltj-plain.sty + RELOC/tex/luatex/luatexja/ltj-pretreat.lua + RELOC/tex/luatex/luatexja/ltj-rmlgbm.lua + RELOC/tex/luatex/luatexja/ltj-ruby.lua + RELOC/tex/luatex/luatexja/ltj-setwidth.lua + RELOC/tex/luatex/luatexja/ltj-stack.lua + RELOC/tex/luatex/luatexja/ltj-unicode-ccfix.lua + RELOC/tex/luatex/luatexja/ltjarticle.cls + RELOC/tex/luatex/luatexja/ltjbk10.clo + RELOC/tex/luatex/luatexja/ltjbk11.clo + RELOC/tex/luatex/luatexja/ltjbk12.clo + RELOC/tex/luatex/luatexja/ltjbook.cls + RELOC/tex/luatex/luatexja/ltjltxdoc.cls + RELOC/tex/luatex/luatexja/ltjreport.cls + RELOC/tex/luatex/luatexja/ltjsarticle.cls + RELOC/tex/luatex/luatexja/ltjsbook.cls + RELOC/tex/luatex/luatexja/ltjsize10.clo + RELOC/tex/luatex/luatexja/ltjsize11.clo + RELOC/tex/luatex/luatexja/ltjsize12.clo + RELOC/tex/luatex/luatexja/ltjskiyou.cls + RELOC/tex/luatex/luatexja/ltjspf.cls + RELOC/tex/luatex/luatexja/ltjsreport.cls + RELOC/tex/luatex/luatexja/ltjtarticle.cls + RELOC/tex/luatex/luatexja/ltjtbk10.clo + RELOC/tex/luatex/luatexja/ltjtbk11.clo + RELOC/tex/luatex/luatexja/ltjtbk12.clo + RELOC/tex/luatex/luatexja/ltjtbook.cls + RELOC/tex/luatex/luatexja/ltjtreport.cls + RELOC/tex/luatex/luatexja/ltjtsize10.clo + RELOC/tex/luatex/luatexja/ltjtsize11.clo + RELOC/tex/luatex/luatexja/ltjtsize12.clo + RELOC/tex/luatex/luatexja/luatexja-compat.sty + RELOC/tex/luatex/luatexja/luatexja-core.sty + RELOC/tex/luatex/luatexja/luatexja.lua + RELOC/tex/luatex/luatexja/luatexja.sty + RELOC/tex/luatex/luatexja/patches/lltjcore.sty + RELOC/tex/luatex/luatexja/patches/lltjdefs.sty + RELOC/tex/luatex/luatexja/patches/lltjfont.sty + RELOC/tex/luatex/luatexja/patches/lltjp-array.sty + RELOC/tex/luatex/luatexja/patches/lltjp-atbegshi.sty + RELOC/tex/luatex/luatexja/patches/lltjp-collcell.sty + RELOC/tex/luatex/luatexja/patches/lltjp-everyshi.sty + RELOC/tex/luatex/luatexja/patches/lltjp-fontspec.sty + RELOC/tex/luatex/luatexja/patches/lltjp-footmisc.sty + RELOC/tex/luatex/luatexja/patches/lltjp-geometry.sty + RELOC/tex/luatex/luatexja/patches/lltjp-listings.sty + RELOC/tex/luatex/luatexja/patches/lltjp-microtype.sty + RELOC/tex/luatex/luatexja/patches/lltjp-preview.sty + RELOC/tex/luatex/luatexja/patches/lltjp-siunitx.sty + RELOC/tex/luatex/luatexja/patches/lltjp-stfloats.sty + RELOC/tex/luatex/luatexja/patches/lltjp-tascmac.sty + RELOC/tex/luatex/luatexja/patches/lltjp-unicode-math.sty + RELOC/tex/luatex/luatexja/patches/lltjp-xunicode.sty +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-license bsd +catalogue-topics japanese luatex class +catalogue-version 20210319.0 + +name luatexko +category Package +revision 58928 +shortdesc Typeset Korean with Lua(La)TeX +relocated 1 +longdesc This is a Lua(La)TeX macro package that supports typesetting +longdesc Korean documents including Old Hangul texts. As LuaTeX has +longdesc opened up access to almost all the hidden routines of TeX +longdesc engine, users can obtain more beautiful outcome using this +longdesc package rather than other Hangul macros operating on other +longdesc engines. LuaTeX version 1.10+ and luaotfload version 2.96+ are +longdesc required for this package to run. This package also requires +longdesc the cjk-ko package for its full functionality. +containersize 22400 +containerchecksum be50a22424571de2bfc5ece11883903833df1bbc9c120122111900b90b47d7766fbad09a5c2307629f5b6710bee75bf30b7fb780def188fcee2e1a6d4c457dad +doccontainersize 336848 +doccontainerchecksum f0ce1f5e7444238ac33ff52e96272ea1dfa3074680b5a9ad49ed191d3972c03d1028556891149dec71a1f8393c3935ed970aed8c59152104eb459acf774ec88e +docfiles size=93 + RELOC/doc/luatex/luatexko/ChangeLog + RELOC/doc/luatex/luatexko/README details="Readme" + RELOC/doc/luatex/luatexko/luatexko-doc.pdf details="Package documentation" + RELOC/doc/luatex/luatexko/luatexko-doc.tex +runfiles size=28 + RELOC/tex/luatex/luatexko/luatexko-normalize.lua + RELOC/tex/luatex/luatexko/luatexko-uhc2utf8.lua + RELOC/tex/luatex/luatexko/luatexko.lua + RELOC/tex/luatex/luatexko/luatexko.sty +catalogue-contact-bugs https://github.com/dohyunkim/luatexko/issues +catalogue-contact-repository https://github.com/dohyunkim/luatexko +catalogue-ctan /macros/luatex/generic/luatexko +catalogue-license lppl1.3c +catalogue-topics luatex korean +catalogue-version 3.1 + +name luatextra +category Package +revision 20747 +shortdesc Additional macros for Plain TeX and LaTeX in LuaTeX +relocated 1 +longdesc The package provides a coherent extended programming +longdesc environment for use with LuaTeX. It loads packages fontspec, +longdesc luatexbase and lualibs, and provides additional user-level +longdesc features and goodies. The package is under development, and its +longdesc specification may be expected to change. +containersize 1056 +containerchecksum 03c95a5e42d8fc0ed88704799a36624ebb48b9c7606acbc09de29e5da845ede3f239a6dda43cbfb4377971cecb55b1f5280cf0ea1aae5057f3ab8df2e0870745 +doccontainersize 317312 +doccontainerchecksum f1c0d31fbd66f4e78eb638a9bb336f49de3d19b29bf276fb6fd0d976ba2f33599c1536ec82f7887af1c1ee359b48b1048d400b7faf0cd8016b914f4c5318c849 +docfiles size=80 + RELOC/doc/lualatex/luatextra/News + RELOC/doc/lualatex/luatextra/README details="Readme" + RELOC/doc/lualatex/luatextra/luatextra.pdf details="Package documentation" + RELOC/doc/lualatex/luatextra/test.tex +srccontainersize 3492 +srccontainerchecksum 2050bf6c907f6f4e210b400cc93b1786a7ea8407eb64e90054b2ac8408d31689fdb1ffcf4859f1bf6c24c298e5d07fcbd201574b9b397de192609dda504502e0 +srcfiles size=3 + RELOC/source/lualatex/luatextra/Makefile + RELOC/source/lualatex/luatextra/luatextra.dtx +runfiles size=1 + RELOC/tex/lualatex/luatextra/luatextra.sty +catalogue-contact-repository https://github.com/lualatex/luatextra +catalogue-ctan /macros/luatex/latex/luatextra +catalogue-license pd +catalogue-topics luatex +catalogue-version 1.0.1 + +name luatodonotes +category Package +revision 53825 +shortdesc Add editing annotations in a LuaLaTeX document +relocated 1 +longdesc The package allows the user to insert comments into a document +longdesc that suggest (for example) further editing that may be needed. +longdesc The comments are shown in the margins alongside the text; +longdesc different styles for the comments may be used; the styles are +longdesc selected using package options. The package is based on the +longdesc package todonotes, and depends heavily on Lua, so it can only +longdesc be used with LuaLaTeX. +containersize 26600 +containerchecksum 4cc24f72014d50179fa1cd3630a483677a98a5dedd28e94f2c7003c3c61eae66bf9b6787bcde81b654f4187d873440828655be372b4d6bbf59c802da23beaeea +doccontainersize 209076 +doccontainerchecksum 2b7298a56975f0ac71bf6c0327d95531622de23a33c4a1999cdd35ae960766342071722e388fd3d9fc10fcbd23c0752e5e5399516c8465f7e66f5ea8b952e447 +docfiles size=54 + RELOC/doc/lualatex/luatodonotes/README.md details="Readme" + RELOC/doc/lualatex/luatodonotes/luatodonotes.pdf details="Package documentation" +srccontainersize 20788 +srccontainerchecksum 0ed8cbb2160246c499ed98a7865216e8f5739a7c87a1b9a6ef8b63944a4b3f2c6a011ebb4276486d2ff8fca96428b0c25e87936fade5967cf41f7cee79307880 +srcfiles size=22 + RELOC/source/lualatex/luatodonotes/luatodonotes.dtx + RELOC/source/lualatex/luatodonotes/luatodonotes.ins +runfiles size=35 + RELOC/tex/lualatex/luatodonotes/inspect.lua + RELOC/tex/lualatex/luatodonotes/luatodonotes.lua + RELOC/tex/lualatex/luatodonotes/luatodonotes.sty + RELOC/tex/lualatex/luatodonotes/path_line.lua + RELOC/tex/lualatex/luatodonotes/path_point.lua +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-license lppl1.2 +catalogue-topics notes editorial luatex use-lua +catalogue-version 0.5 + +name luavlna +category Package +revision 58087 +shortdesc Prevent line breaks after single letter words, units, or academic titles +relocated 1 +longdesc In some languages, like Czech or Polish, there should be no +longdesc single letter words at the end of a line, according to +longdesc typographical norms. This package handles such situations using +longdesc LuaTeX's callback mechanism. In doing this, the package can +longdesc detect languages used in the text and insert spaces only in +longdesc parts of the document where languages requiring this feature +longdesc are used. Another feature of this package is the inclusion of +longdesc non-breakable space after initials (like in personal names), +longdesc after or before academic degrees, and between numbers and +longdesc units. The package supports both plain LuaTeX and LuaLaTeX. +longdesc BTW: "vlna" is the Czech word for "wave" or "curl" and also +longdesc denotes the tilde which, in TeX, is used for "unbreakable +longdesc spaces". +containersize 7628 +containerchecksum ccef03e521ab96c6ba786bc6d2651c1178935902c6889fbb98156f04105498292b500c824474551bafe23ab76967c212730cdd781d8cb7f86cf8c8aa1aa64d56 +doccontainersize 95132 +doccontainerchecksum 7f484b73c1ed198a325a7835d647b4be21db1fdbf4065988d2f45f0a07bd6ca1697509186be4b911080bc8e5e753262a2a62f1f89cbf8e95aedf3cc1e21844b9 +docfiles size=27 + RELOC/doc/luatex/luavlna/README.md details="Readme" + RELOC/doc/luatex/luavlna/luavlna-doc.pdf details="Package documentation" + RELOC/doc/luatex/luavlna/luavlna-doc.tex +runfiles size=14 + RELOC/tex/luatex/luavlna/luavlna-csplain-langs.lua + RELOC/tex/luatex/luavlna/luavlna-langno.lua + RELOC/tex/luatex/luavlna/luavlna-predegrees.lua + RELOC/tex/luatex/luavlna/luavlna-presi.lua + RELOC/tex/luatex/luavlna/luavlna-si.lua + RELOC/tex/luatex/luavlna/luavlna-sufdegrees.lua + RELOC/tex/luatex/luavlna/luavlna.4ht + RELOC/tex/luatex/luavlna/luavlna.lua + RELOC/tex/luatex/luavlna/luavlna.sty + RELOC/tex/luatex/luavlna/luavlna.tex +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-license lppl1.3 +catalogue-topics typesetting czech slovak polish luatex +catalogue-version 0.1i + +name luaxml +category Package +revision 57183 +shortdesc Lua library for reading and serialising XML files +relocated 1 +longdesc LuaXML is a pure Lua library for reading and serializing XML +longdesc files. The current release is aimed mainly at support for the +longdesc odsfile package. The documentation was created by automatic +longdesc conversion of original documentation in the source code. +containersize 30800 +containerchecksum 53c98fe9b23a51e57244d73e5a4c572a14f130da4ee34c441d953d4ec0f3f18900df9f522d7710fc2b1ad25dda672c8d4c49e29e2a0b764c8df542fac024c40a +doccontainersize 112252 +doccontainerchecksum 9985335dfb4b95482f685af3df692b8763815cf38439743dac4d993fe215a27fbbc08e1193f46a19535ef3a210540b57ba10f1a6fb0f66b4c6e5789354cfb4a0 +docfiles size=35 + RELOC/doc/luatex/luaxml/README details="Readme" + RELOC/doc/luatex/luaxml/luaxml.pdf details="Package documentation" + RELOC/doc/luatex/luaxml/luaxml.tex +runfiles size=35 + RELOC/tex/luatex/luaxml/luaxml-cssquery.lua + RELOC/tex/luatex/luaxml/luaxml-domobject.lua + RELOC/tex/luatex/luaxml/luaxml-entities.lua + RELOC/tex/luatex/luaxml/luaxml-mod-handler.lua + RELOC/tex/luatex/luaxml/luaxml-mod-xml.lua + RELOC/tex/luatex/luaxml/luaxml-namedentities.lua + RELOC/tex/luatex/luaxml/luaxml-parse-query.lua + RELOC/tex/luatex/luaxml/luaxml-pretty.lua + RELOC/tex/luatex/luaxml/luaxml-stack.lua + RELOC/tex/luatex/luaxml/luaxml-testxml.lua + RELOC/tex/luatex/luaxml/luaxml-transform.lua +catalogue-contact-repository https://github.com/michal-h21/LuaXML +catalogue-ctan /macros/luatex/generic/luaxml +catalogue-license other-free +catalogue-topics foreign-import luatex use-lua +catalogue-version 0.1n + +name lwarp +category Package +revision 58837 +shortdesc Converts LaTeX to HTML +longdesc This package converts LaTeX to HTML by using LaTeX to process +longdesc the user's document and generate HTML tags. External utility +longdesc programs are only used for the final conversion of text and +longdesc images. Math may be represented by SVG files or MathJax. +longdesc Hundreds of LaTeX packages are supported, and their load order +longdesc is automatically verified. Documents may be produced by LaTeX, +longdesc LuaLaTeX, XeLaTeX, and by several CJK engines, classes, and +longdesc packages. A texlua script automates compilation, index, +longdesc glossary, and batch image processing, and also supports +longdesc latexmk. Configuration is semi-automatic at the first manual +longdesc compile. Support files are self-generated. Print and HTML +longdesc versions of each document may coexist. Assistance is provided +longdesc for HTML import into EPUB conversion software and word +longdesc processors. Requirements include the commonly-available Poppler +longdesc utilities, and Perl. Detailed installation instructions are +longdesc included for each of the major operating systems and TeX +longdesc distributions. A quick-start tutorial is provided. +depend lwarp.ARCH +containersize 204312 +containerchecksum c56c2d5a4665ecdc95510de3408026d4566e9cffe9089b91d3ae117d723ef7d788d94b44dc9a84c7b2c39e8c09692d6a5e9a01c9ac6a0cb3f71f3247798458c4 +doccontainersize 3057740 +doccontainerchecksum 976f21f5595e4673405c27d7c6b9161691692135905c3ef07982f89917660cf04d33337e11e5906517fdc4735bb8f33c8fb455ae527ebc673c49a9d3652e83f2 +docfiles size=780 + texmf-dist/doc/latex/lwarp/README.txt details="Readme" + texmf-dist/doc/latex/lwarp/lwarp.pdf details="Package documentation" + texmf-dist/doc/latex/lwarp/lwarp_tutorial.txt details="Quick-start tutorial" +srccontainersize 439180 +srccontainerchecksum db21fa84855166d966f1c1efebe0f5ffd6c2af3afc1d07fb523f6891f851c619ebaaa090e3de7b6e964e073c0553596fdbb637df7247c1d48f7489daefaea9d3 +srcfiles size=671 + texmf-dist/source/latex/lwarp/lwarp.dtx + texmf-dist/source/latex/lwarp/lwarp.ins +runfiles size=779 + texmf-dist/scripts/lwarp/lwarpmk.lua + texmf-dist/tex/latex/lwarp/lwarp-2in1.sty + texmf-dist/tex/latex/lwarp/lwarp-2up.sty + texmf-dist/tex/latex/lwarp/lwarp-CJK.sty + texmf-dist/tex/latex/lwarp/lwarp-CJKutf8.sty + texmf-dist/tex/latex/lwarp/lwarp-DotArrow.sty + texmf-dist/tex/latex/lwarp/lwarp-SIunits.sty + texmf-dist/tex/latex/lwarp/lwarp-a4.sty + texmf-dist/tex/latex/lwarp/lwarp-a4wide.sty + texmf-dist/tex/latex/lwarp/lwarp-a5comb.sty + texmf-dist/tex/latex/lwarp/lwarp-abstract.sty + texmf-dist/tex/latex/lwarp/lwarp-academicons.sty + texmf-dist/tex/latex/lwarp/lwarp-accents.sty + texmf-dist/tex/latex/lwarp/lwarp-accessibility.sty + texmf-dist/tex/latex/lwarp/lwarp-accsupp.sty + texmf-dist/tex/latex/lwarp/lwarp-acro.sty + texmf-dist/tex/latex/lwarp/lwarp-acronym.sty + texmf-dist/tex/latex/lwarp/lwarp-addlines.sty + texmf-dist/tex/latex/lwarp/lwarp-adjmulticol.sty + texmf-dist/tex/latex/lwarp/lwarp-afterpage.sty + texmf-dist/tex/latex/lwarp/lwarp-algorithm2e.sty + texmf-dist/tex/latex/lwarp/lwarp-algorithmicx.sty + texmf-dist/tex/latex/lwarp/lwarp-alltt.sty + texmf-dist/tex/latex/lwarp/lwarp-amscdx.sty + texmf-dist/tex/latex/lwarp/lwarp-amsmath.sty + texmf-dist/tex/latex/lwarp/lwarp-amsthm.sty + texmf-dist/tex/latex/lwarp/lwarp-anonchap.sty + texmf-dist/tex/latex/lwarp/lwarp-anysize.sty + texmf-dist/tex/latex/lwarp/lwarp-appendix.sty + texmf-dist/tex/latex/lwarp/lwarp-ar.sty + texmf-dist/tex/latex/lwarp/lwarp-arabicfront.sty + texmf-dist/tex/latex/lwarp/lwarp-array.sty + texmf-dist/tex/latex/lwarp/lwarp-arydshln.sty + texmf-dist/tex/latex/lwarp/lwarp-asymptote.sty + texmf-dist/tex/latex/lwarp/lwarp-atbegshi.sty + texmf-dist/tex/latex/lwarp/lwarp-attachfile.sty + texmf-dist/tex/latex/lwarp/lwarp-attachfile2.sty + texmf-dist/tex/latex/lwarp/lwarp-authblk.sty + texmf-dist/tex/latex/lwarp/lwarp-autobreak.sty + texmf-dist/tex/latex/lwarp/lwarp-autonum.sty + texmf-dist/tex/latex/lwarp/lwarp-awesomebox.sty + texmf-dist/tex/latex/lwarp/lwarp-axessibility.sty + texmf-dist/tex/latex/lwarp/lwarp-axodraw2.sty + texmf-dist/tex/latex/lwarp/lwarp-backnaur.sty + texmf-dist/tex/latex/lwarp/lwarp-backref.sty + texmf-dist/tex/latex/lwarp/lwarp-balance.sty + texmf-dist/tex/latex/lwarp/lwarp-bbding.sty + texmf-dist/tex/latex/lwarp/lwarp-biblatex.sty + texmf-dist/tex/latex/lwarp/lwarp-bibunits.sty + texmf-dist/tex/latex/lwarp/lwarp-bigdelim.sty + texmf-dist/tex/latex/lwarp/lwarp-bigfoot.sty + texmf-dist/tex/latex/lwarp/lwarp-bigstrut.sty + texmf-dist/tex/latex/lwarp/lwarp-bitpattern.sty + texmf-dist/tex/latex/lwarp/lwarp-blowup.sty + texmf-dist/tex/latex/lwarp/lwarp-bm.sty + texmf-dist/tex/latex/lwarp/lwarp-booklet.sty + texmf-dist/tex/latex/lwarp/lwarp-bookmark.sty + texmf-dist/tex/latex/lwarp/lwarp-booktabs.sty + texmf-dist/tex/latex/lwarp/lwarp-bophook.sty + texmf-dist/tex/latex/lwarp/lwarp-bounddvi.sty + texmf-dist/tex/latex/lwarp/lwarp-boxedminipage.sty + texmf-dist/tex/latex/lwarp/lwarp-boxedminipage2e.sty + texmf-dist/tex/latex/lwarp/lwarp-braket.sty + texmf-dist/tex/latex/lwarp/lwarp-breakurl.sty + texmf-dist/tex/latex/lwarp/lwarp-breqn.sty + texmf-dist/tex/latex/lwarp/lwarp-bsheaders.sty + texmf-dist/tex/latex/lwarp/lwarp-bussproofs.sty + texmf-dist/tex/latex/lwarp/lwarp-bxpapersize.sty + texmf-dist/tex/latex/lwarp/lwarp-bytefield.sty + texmf-dist/tex/latex/lwarp/lwarp-cancel.sty + texmf-dist/tex/latex/lwarp/lwarp-canoniclayout.sty + texmf-dist/tex/latex/lwarp/lwarp-caption.sty + texmf-dist/tex/latex/lwarp/lwarp-caption3.sty + texmf-dist/tex/latex/lwarp/lwarp-cases.sty + texmf-dist/tex/latex/lwarp/lwarp-ccicons.sty + texmf-dist/tex/latex/lwarp/lwarp-centernot.sty + texmf-dist/tex/latex/lwarp/lwarp-changebar.sty + texmf-dist/tex/latex/lwarp/lwarp-changelayout.sty + texmf-dist/tex/latex/lwarp/lwarp-changepage.sty + texmf-dist/tex/latex/lwarp/lwarp-changes.sty + texmf-dist/tex/latex/lwarp/lwarp-chappg.sty + texmf-dist/tex/latex/lwarp/lwarp-chapterbib.sty + texmf-dist/tex/latex/lwarp/lwarp-chemfig.sty + texmf-dist/tex/latex/lwarp/lwarp-chemformula.sty + texmf-dist/tex/latex/lwarp/lwarp-chemgreek.sty + texmf-dist/tex/latex/lwarp/lwarp-chemmacros.sty + texmf-dist/tex/latex/lwarp/lwarp-chemnum.sty + texmf-dist/tex/latex/lwarp/lwarp-chkfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-chngpage.sty + texmf-dist/tex/latex/lwarp/lwarp-cite.sty + texmf-dist/tex/latex/lwarp/lwarp-citeref.sty + texmf-dist/tex/latex/lwarp/lwarp-classicthesis.sty + texmf-dist/tex/latex/lwarp/lwarp-cleveref.sty + texmf-dist/tex/latex/lwarp/lwarp-clrdblpg.sty + texmf-dist/tex/latex/lwarp/lwarp-cmbright.sty + texmf-dist/tex/latex/lwarp/lwarp-cmdtrack.sty + texmf-dist/tex/latex/lwarp/lwarp-colonequals.sty + texmf-dist/tex/latex/lwarp/lwarp-color.sty + texmf-dist/tex/latex/lwarp/lwarp-colortbl.sty + texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-letters.sty + texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-newpxtxmath.sty + texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-nonunicode.sty + texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-overlaysymbols.sty + texmf-dist/tex/latex/lwarp/lwarp-common-multimedia.sty + texmf-dist/tex/latex/lwarp/lwarp-continue.sty + texmf-dist/tex/latex/lwarp/lwarp-copyrightbox.sty + texmf-dist/tex/latex/lwarp/lwarp-crop.sty + texmf-dist/tex/latex/lwarp/lwarp-ctable.sty + texmf-dist/tex/latex/lwarp/lwarp-cuted.sty + texmf-dist/tex/latex/lwarp/lwarp-cutwin.sty + texmf-dist/tex/latex/lwarp/lwarp-dblfloatfix.sty + texmf-dist/tex/latex/lwarp/lwarp-dblfnote.sty + texmf-dist/tex/latex/lwarp/lwarp-dcolumn.sty + texmf-dist/tex/latex/lwarp/lwarp-decimal.sty + texmf-dist/tex/latex/lwarp/lwarp-diagbox.sty + texmf-dist/tex/latex/lwarp/lwarp-dingbat.sty + texmf-dist/tex/latex/lwarp/lwarp-dotlessi.sty + texmf-dist/tex/latex/lwarp/lwarp-dprogress.sty + texmf-dist/tex/latex/lwarp/lwarp-draftcopy.sty + texmf-dist/tex/latex/lwarp/lwarp-draftfigure.sty + texmf-dist/tex/latex/lwarp/lwarp-draftwatermark.sty + texmf-dist/tex/latex/lwarp/lwarp-drftcite.sty + texmf-dist/tex/latex/lwarp/lwarp-easy-todo.sty + texmf-dist/tex/latex/lwarp/lwarp-ebook.sty + texmf-dist/tex/latex/lwarp/lwarp-econometrics.sty + texmf-dist/tex/latex/lwarp/lwarp-ed.sty + texmf-dist/tex/latex/lwarp/lwarp-ellipsis.sty + texmf-dist/tex/latex/lwarp/lwarp-embrac.sty + texmf-dist/tex/latex/lwarp/lwarp-emptypage.sty + texmf-dist/tex/latex/lwarp/lwarp-endfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-endheads.sty + texmf-dist/tex/latex/lwarp/lwarp-endnotes.sty + texmf-dist/tex/latex/lwarp/lwarp-engtlc.sty + texmf-dist/tex/latex/lwarp/lwarp-enotez.sty + texmf-dist/tex/latex/lwarp/lwarp-enumerate.sty + texmf-dist/tex/latex/lwarp/lwarp-enumitem.sty + texmf-dist/tex/latex/lwarp/lwarp-epigraph.sty + texmf-dist/tex/latex/lwarp/lwarp-epsf.sty + texmf-dist/tex/latex/lwarp/lwarp-epsfig.sty + texmf-dist/tex/latex/lwarp/lwarp-epstopdf-base.sty + texmf-dist/tex/latex/lwarp/lwarp-epstopdf.sty + texmf-dist/tex/latex/lwarp/lwarp-eqlist.sty + texmf-dist/tex/latex/lwarp/lwarp-eqparbox.sty + texmf-dist/tex/latex/lwarp/lwarp-errata.sty + texmf-dist/tex/latex/lwarp/lwarp-eso-pic.sty + texmf-dist/tex/latex/lwarp/lwarp-esvect.sty + texmf-dist/tex/latex/lwarp/lwarp-etoc.sty + texmf-dist/tex/latex/lwarp/lwarp-eurosym.sty + texmf-dist/tex/latex/lwarp/lwarp-everypage.sty + texmf-dist/tex/latex/lwarp/lwarp-everyshi.sty + texmf-dist/tex/latex/lwarp/lwarp-extarrows.sty + texmf-dist/tex/latex/lwarp/lwarp-extramarks.sty + texmf-dist/tex/latex/lwarp/lwarp-fancybox.sty + texmf-dist/tex/latex/lwarp/lwarp-fancyhdr.sty + texmf-dist/tex/latex/lwarp/lwarp-fancyref.sty + texmf-dist/tex/latex/lwarp/lwarp-fancytabs.sty + texmf-dist/tex/latex/lwarp/lwarp-fancyvrb.sty + texmf-dist/tex/latex/lwarp/lwarp-fbox.sty + texmf-dist/tex/latex/lwarp/lwarp-fewerfloatpages.sty + texmf-dist/tex/latex/lwarp/lwarp-figcaps.sty + texmf-dist/tex/latex/lwarp/lwarp-figsize.sty + texmf-dist/tex/latex/lwarp/lwarp-fitbox.sty + texmf-dist/tex/latex/lwarp/lwarp-fix2col.sty + texmf-dist/tex/latex/lwarp/lwarp-fixmath.sty + texmf-dist/tex/latex/lwarp/lwarp-fixme.sty + texmf-dist/tex/latex/lwarp/lwarp-fixmetodonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-flafter.sty + texmf-dist/tex/latex/lwarp/lwarp-flippdf.sty + texmf-dist/tex/latex/lwarp/lwarp-float.sty + texmf-dist/tex/latex/lwarp/lwarp-floatflt.sty + texmf-dist/tex/latex/lwarp/lwarp-floatpag.sty + texmf-dist/tex/latex/lwarp/lwarp-floatrow.sty + texmf-dist/tex/latex/lwarp/lwarp-fltrace.sty + texmf-dist/tex/latex/lwarp/lwarp-flushend.sty + texmf-dist/tex/latex/lwarp/lwarp-fnbreak.sty + texmf-dist/tex/latex/lwarp/lwarp-fncychap.sty + texmf-dist/tex/latex/lwarp/lwarp-fnlineno.sty + texmf-dist/tex/latex/lwarp/lwarp-fnpara.sty + texmf-dist/tex/latex/lwarp/lwarp-fnpos.sty + texmf-dist/tex/latex/lwarp/lwarp-fontawesome.sty + texmf-dist/tex/latex/lwarp/lwarp-fontawesome5.sty + texmf-dist/tex/latex/lwarp/lwarp-fontaxes.sty + texmf-dist/tex/latex/lwarp/lwarp-fontenc.sty + texmf-dist/tex/latex/lwarp/lwarp-footmisc.sty + texmf-dist/tex/latex/lwarp/lwarp-footnote.sty + texmf-dist/tex/latex/lwarp/lwarp-footnotebackref.sty + texmf-dist/tex/latex/lwarp/lwarp-footnotehyper.sty + texmf-dist/tex/latex/lwarp/lwarp-footnoterange.sty + texmf-dist/tex/latex/lwarp/lwarp-footnpag.sty + texmf-dist/tex/latex/lwarp/lwarp-foreign.sty + texmf-dist/tex/latex/lwarp/lwarp-forest.sty + texmf-dist/tex/latex/lwarp/lwarp-fouridx.sty + texmf-dist/tex/latex/lwarp/lwarp-fourier.sty + texmf-dist/tex/latex/lwarp/lwarp-framed.sty + texmf-dist/tex/latex/lwarp/lwarp-ftcap.sty + texmf-dist/tex/latex/lwarp/lwarp-ftnright.sty + texmf-dist/tex/latex/lwarp/lwarp-fullminipage.sty + texmf-dist/tex/latex/lwarp/lwarp-fullpage.sty + texmf-dist/tex/latex/lwarp/lwarp-fullwidth.sty + texmf-dist/tex/latex/lwarp/lwarp-fvextra.sty + texmf-dist/tex/latex/lwarp/lwarp-fwlw.sty + texmf-dist/tex/latex/lwarp/lwarp-gensymb.sty + texmf-dist/tex/latex/lwarp/lwarp-gentombow.sty + texmf-dist/tex/latex/lwarp/lwarp-geometry.sty + texmf-dist/tex/latex/lwarp/lwarp-ghsystem.sty + texmf-dist/tex/latex/lwarp/lwarp-gindex.sty + texmf-dist/tex/latex/lwarp/lwarp-gloss.sty + texmf-dist/tex/latex/lwarp/lwarp-glossaries.sty + texmf-dist/tex/latex/lwarp/lwarp-gmeometric.sty + texmf-dist/tex/latex/lwarp/lwarp-graphics.sty + texmf-dist/tex/latex/lwarp/lwarp-graphicx.sty + texmf-dist/tex/latex/lwarp/lwarp-grffile.sty + texmf-dist/tex/latex/lwarp/lwarp-grid-system.sty + texmf-dist/tex/latex/lwarp/lwarp-grid.sty + texmf-dist/tex/latex/lwarp/lwarp-gridset.sty + texmf-dist/tex/latex/lwarp/lwarp-hang.sty + texmf-dist/tex/latex/lwarp/lwarp-hanging.sty + texmf-dist/tex/latex/lwarp/lwarp-hepunits.sty + texmf-dist/tex/latex/lwarp/lwarp-hhline.sty + texmf-dist/tex/latex/lwarp/lwarp-hhtensor.sty + texmf-dist/tex/latex/lwarp/lwarp-hypbmsec.sty + texmf-dist/tex/latex/lwarp/lwarp-hypcap.sty + texmf-dist/tex/latex/lwarp/lwarp-hypdestopt.sty + texmf-dist/tex/latex/lwarp/lwarp-hypernat.sty + texmf-dist/tex/latex/lwarp/lwarp-hyperref.sty + texmf-dist/tex/latex/lwarp/lwarp-hyperxmp.sty + texmf-dist/tex/latex/lwarp/lwarp-hyphenat.sty + texmf-dist/tex/latex/lwarp/lwarp-idxlayout.sty + texmf-dist/tex/latex/lwarp/lwarp-ifoddpage.sty + texmf-dist/tex/latex/lwarp/lwarp-imakeidx.sty + texmf-dist/tex/latex/lwarp/lwarp-index.sty + texmf-dist/tex/latex/lwarp/lwarp-inputtrc.sty + texmf-dist/tex/latex/lwarp/lwarp-intopdf.sty + texmf-dist/tex/latex/lwarp/lwarp-isomath.sty + texmf-dist/tex/latex/lwarp/lwarp-isotope.sty + texmf-dist/tex/latex/lwarp/lwarp-jurabib.sty + texmf-dist/tex/latex/lwarp/lwarp-karnaugh-map.sty + texmf-dist/tex/latex/lwarp/lwarp-keyfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-keystroke.sty + texmf-dist/tex/latex/lwarp/lwarp-kpfonts-otf.sty + texmf-dist/tex/latex/lwarp/lwarp-kpfonts.sty + texmf-dist/tex/latex/lwarp/lwarp-layaureo.sty + texmf-dist/tex/latex/lwarp/lwarp-layout.sty + texmf-dist/tex/latex/lwarp/lwarp-layouts.sty + texmf-dist/tex/latex/lwarp/lwarp-leading.sty + texmf-dist/tex/latex/lwarp/lwarp-leftidx.sty + texmf-dist/tex/latex/lwarp/lwarp-letterspace.sty + texmf-dist/tex/latex/lwarp/lwarp-lettrine.sty + texmf-dist/tex/latex/lwarp/lwarp-libertinust1math.sty + texmf-dist/tex/latex/lwarp/lwarp-lineno.sty + texmf-dist/tex/latex/lwarp/lwarp-lips.sty + texmf-dist/tex/latex/lwarp/lwarp-listings.sty + texmf-dist/tex/latex/lwarp/lwarp-listliketab.sty + texmf-dist/tex/latex/lwarp/lwarp-lltjext.sty + texmf-dist/tex/latex/lwarp/lwarp-longtable.sty + texmf-dist/tex/latex/lwarp/lwarp-lpic.sty + texmf-dist/tex/latex/lwarp/lwarp-lscape.sty + texmf-dist/tex/latex/lwarp/lwarp-ltablex.sty + texmf-dist/tex/latex/lwarp/lwarp-ltcaption.sty + texmf-dist/tex/latex/lwarp/lwarp-ltxgrid.sty + texmf-dist/tex/latex/lwarp/lwarp-ltxtable.sty + texmf-dist/tex/latex/lwarp/lwarp-lua-check-hyphen.sty + texmf-dist/tex/latex/lwarp/lwarp-lua-visual-debug.sty + texmf-dist/tex/latex/lwarp/lwarp-luacolor.sty + texmf-dist/tex/latex/lwarp/lwarp-luamplib.sty + texmf-dist/tex/latex/lwarp/lwarp-luatexko.sty + texmf-dist/tex/latex/lwarp/lwarp-luatodonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-luavlna.sty + texmf-dist/tex/latex/lwarp/lwarp-lyluatex.sty + texmf-dist/tex/latex/lwarp/lwarp-magaz.sty + texmf-dist/tex/latex/lwarp/lwarp-makeidx.sty + texmf-dist/tex/latex/lwarp/lwarp-manyfoot.sty + texmf-dist/tex/latex/lwarp/lwarp-marginal.sty + texmf-dist/tex/latex/lwarp/lwarp-marginfit.sty + texmf-dist/tex/latex/lwarp/lwarp-marginfix.sty + texmf-dist/tex/latex/lwarp/lwarp-marginnote.sty + texmf-dist/tex/latex/lwarp/lwarp-marvosym.sty + texmf-dist/tex/latex/lwarp/lwarp-mathalpha.sty + texmf-dist/tex/latex/lwarp/lwarp-mathastext.sty + texmf-dist/tex/latex/lwarp/lwarp-mathcomp.sty + texmf-dist/tex/latex/lwarp/lwarp-mathdesign.sty + texmf-dist/tex/latex/lwarp/lwarp-mathdots.sty + texmf-dist/tex/latex/lwarp/lwarp-mathfixs.sty + texmf-dist/tex/latex/lwarp/lwarp-mathpazo.sty + texmf-dist/tex/latex/lwarp/lwarp-mathptmx.sty + texmf-dist/tex/latex/lwarp/lwarp-mathspec.sty + texmf-dist/tex/latex/lwarp/lwarp-mathtools.sty + texmf-dist/tex/latex/lwarp/lwarp-mattens.sty + texmf-dist/tex/latex/lwarp/lwarp-maybemath.sty + texmf-dist/tex/latex/lwarp/lwarp-mcaption.sty + texmf-dist/tex/latex/lwarp/lwarp-mdframed.sty + texmf-dist/tex/latex/lwarp/lwarp-mdwmath.sty + texmf-dist/tex/latex/lwarp/lwarp-media9.sty + texmf-dist/tex/latex/lwarp/lwarp-memhfixc.sty + texmf-dist/tex/latex/lwarp/lwarp-menukeys.sty + texmf-dist/tex/latex/lwarp/lwarp-metalogo.sty + texmf-dist/tex/latex/lwarp/lwarp-metalogox.sty + texmf-dist/tex/latex/lwarp/lwarp-mhchem.sty + texmf-dist/tex/latex/lwarp/lwarp-microtype.sty + texmf-dist/tex/latex/lwarp/lwarp-midfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-midpage.sty + texmf-dist/tex/latex/lwarp/lwarp-minibox.sty + texmf-dist/tex/latex/lwarp/lwarp-minitoc.sty + texmf-dist/tex/latex/lwarp/lwarp-minted.sty + texmf-dist/tex/latex/lwarp/lwarp-mismath.sty + texmf-dist/tex/latex/lwarp/lwarp-mleftright.sty + texmf-dist/tex/latex/lwarp/lwarp-morefloats.sty + texmf-dist/tex/latex/lwarp/lwarp-moreverb.sty + texmf-dist/tex/latex/lwarp/lwarp-movie15.sty + texmf-dist/tex/latex/lwarp/lwarp-mparhack.sty + texmf-dist/tex/latex/lwarp/lwarp-multibib.sty + texmf-dist/tex/latex/lwarp/lwarp-multicap.sty + texmf-dist/tex/latex/lwarp/lwarp-multicol.sty + texmf-dist/tex/latex/lwarp/lwarp-multicolrule.sty + texmf-dist/tex/latex/lwarp/lwarp-multimedia.sty + texmf-dist/tex/latex/lwarp/lwarp-multiobjective.sty + texmf-dist/tex/latex/lwarp/lwarp-multirow.sty + texmf-dist/tex/latex/lwarp/lwarp-multitoc.sty + texmf-dist/tex/latex/lwarp/lwarp-musicography.sty + texmf-dist/tex/latex/lwarp/lwarp-nameauth.sty + texmf-dist/tex/latex/lwarp/lwarp-nameref.sty + texmf-dist/tex/latex/lwarp/lwarp-natbib.sty + texmf-dist/tex/latex/lwarp/lwarp-nccfancyhdr.sty + texmf-dist/tex/latex/lwarp/lwarp-nccfoots.sty + texmf-dist/tex/latex/lwarp/lwarp-nccmath.sty + texmf-dist/tex/latex/lwarp/lwarp-needspace.sty + texmf-dist/tex/latex/lwarp/lwarp-newpxmath.sty + texmf-dist/tex/latex/lwarp/lwarp-newtxmath.sty + texmf-dist/tex/latex/lwarp/lwarp-newtxsf.sty + texmf-dist/tex/latex/lwarp/lwarp-nextpage.sty + texmf-dist/tex/latex/lwarp/lwarp-nfssext-cfr.sty + texmf-dist/tex/latex/lwarp/lwarp-nicefrac.sty + texmf-dist/tex/latex/lwarp/lwarp-niceframe.sty + texmf-dist/tex/latex/lwarp/lwarp-nicematrix.sty + texmf-dist/tex/latex/lwarp/lwarp-noitcrul.sty + texmf-dist/tex/latex/lwarp/lwarp-nolbreaks.sty + texmf-dist/tex/latex/lwarp/lwarp-nomencl.sty + texmf-dist/tex/latex/lwarp/lwarp-nonfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-nonumonpart.sty + texmf-dist/tex/latex/lwarp/lwarp-nopageno.sty + texmf-dist/tex/latex/lwarp/lwarp-notes.sty + texmf-dist/tex/latex/lwarp/lwarp-notespages.sty + texmf-dist/tex/latex/lwarp/lwarp-nowidow.sty + texmf-dist/tex/latex/lwarp/lwarp-ntheorem.sty + texmf-dist/tex/latex/lwarp/lwarp-octave.sty + texmf-dist/tex/latex/lwarp/lwarp-orcidlink.sty + texmf-dist/tex/latex/lwarp/lwarp-overpic.sty + texmf-dist/tex/latex/lwarp/lwarp-pagegrid.sty + texmf-dist/tex/latex/lwarp/lwarp-pagenote.sty + texmf-dist/tex/latex/lwarp/lwarp-pagesel.sty + texmf-dist/tex/latex/lwarp/lwarp-paralist.sty + texmf-dist/tex/latex/lwarp/lwarp-parallel.sty + texmf-dist/tex/latex/lwarp/lwarp-parcolumns.sty + texmf-dist/tex/latex/lwarp/lwarp-parnotes.sty + texmf-dist/tex/latex/lwarp/lwarp-parskip.sty + texmf-dist/tex/latex/lwarp/lwarp-patch-komascript.sty + texmf-dist/tex/latex/lwarp/lwarp-patch-memoir.sty + texmf-dist/tex/latex/lwarp/lwarp-pbox.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcol.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcolfoot.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcolmk.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcolparallel.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcolparcolumns.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcomment.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcrypt.sty + texmf-dist/tex/latex/lwarp/lwarp-pdflscape.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfmarginpar.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfpages.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfprivacy.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfrender.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfsync.sty + texmf-dist/tex/latex/lwarp/lwarp-pdftricks.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfx.sty + texmf-dist/tex/latex/lwarp/lwarp-perpage.sty + texmf-dist/tex/latex/lwarp/lwarp-pfnote.sty + texmf-dist/tex/latex/lwarp/lwarp-phfqit.sty + texmf-dist/tex/latex/lwarp/lwarp-physics.sty + texmf-dist/tex/latex/lwarp/lwarp-physunits.sty + texmf-dist/tex/latex/lwarp/lwarp-picinpar.sty + texmf-dist/tex/latex/lwarp/lwarp-pifont.sty + texmf-dist/tex/latex/lwarp/lwarp-pinlabel.sty + texmf-dist/tex/latex/lwarp/lwarp-placeins.sty + texmf-dist/tex/latex/lwarp/lwarp-plarydshln.sty + texmf-dist/tex/latex/lwarp/lwarp-plext.sty + texmf-dist/tex/latex/lwarp/lwarp-plextarydshln.sty + texmf-dist/tex/latex/lwarp/lwarp-plextcolorbl.sty + texmf-dist/tex/latex/lwarp/lwarp-plimsoll.sty + texmf-dist/tex/latex/lwarp/lwarp-prelim2e.sty + texmf-dist/tex/latex/lwarp/lwarp-prettyref.sty + texmf-dist/tex/latex/lwarp/lwarp-preview.sty + texmf-dist/tex/latex/lwarp/lwarp-psfrag.sty + texmf-dist/tex/latex/lwarp/lwarp-psfragx.sty + texmf-dist/tex/latex/lwarp/lwarp-pst-eps.sty + texmf-dist/tex/latex/lwarp/lwarp-pstool.sty + texmf-dist/tex/latex/lwarp/lwarp-pstricks.sty + texmf-dist/tex/latex/lwarp/lwarp-pxatbegshi.sty + texmf-dist/tex/latex/lwarp/lwarp-pxeveryshi.sty + texmf-dist/tex/latex/lwarp/lwarp-pxfonts.sty + texmf-dist/tex/latex/lwarp/lwarp-pxftnright.sty + texmf-dist/tex/latex/lwarp/lwarp-pxjahyper.sty + texmf-dist/tex/latex/lwarp/lwarp-quotchap.sty + texmf-dist/tex/latex/lwarp/lwarp-quoting.sty + texmf-dist/tex/latex/lwarp/lwarp-ragged2e.sty + texmf-dist/tex/latex/lwarp/lwarp-realscripts.sty + texmf-dist/tex/latex/lwarp/lwarp-refcheck.sty + texmf-dist/tex/latex/lwarp/lwarp-register.sty + texmf-dist/tex/latex/lwarp/lwarp-relsize.sty + texmf-dist/tex/latex/lwarp/lwarp-repeatindex.sty + texmf-dist/tex/latex/lwarp/lwarp-repltext.sty + texmf-dist/tex/latex/lwarp/lwarp-resizegather.sty + texmf-dist/tex/latex/lwarp/lwarp-returntogrid.sty + texmf-dist/tex/latex/lwarp/lwarp-rlepsf.sty + texmf-dist/tex/latex/lwarp/lwarp-rmathbr.sty + texmf-dist/tex/latex/lwarp/lwarp-rmpage.sty + texmf-dist/tex/latex/lwarp/lwarp-romanbar.sty + texmf-dist/tex/latex/lwarp/lwarp-romanbarpagenumber.sty + texmf-dist/tex/latex/lwarp/lwarp-rotating.sty + texmf-dist/tex/latex/lwarp/lwarp-rotfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-rviewport.sty + texmf-dist/tex/latex/lwarp/lwarp-savetrees.sty + texmf-dist/tex/latex/lwarp/lwarp-scalefnt.sty + texmf-dist/tex/latex/lwarp/lwarp-scalerel.sty + texmf-dist/tex/latex/lwarp/lwarp-schemata.sty + texmf-dist/tex/latex/lwarp/lwarp-scrextend.sty + texmf-dist/tex/latex/lwarp/lwarp-scrhack.sty + texmf-dist/tex/latex/lwarp/lwarp-scrlayer-notecolumn.sty + texmf-dist/tex/latex/lwarp/lwarp-scrlayer-scrpage.sty + texmf-dist/tex/latex/lwarp/lwarp-scrlayer.sty + texmf-dist/tex/latex/lwarp/lwarp-scrpage2.sty + texmf-dist/tex/latex/lwarp/lwarp-section.sty + texmf-dist/tex/latex/lwarp/lwarp-sectionbreak.sty + texmf-dist/tex/latex/lwarp/lwarp-sectsty.sty + texmf-dist/tex/latex/lwarp/lwarp-selectp.sty + texmf-dist/tex/latex/lwarp/lwarp-semantic-markup.sty + texmf-dist/tex/latex/lwarp/lwarp-seqsplit.sty + texmf-dist/tex/latex/lwarp/lwarp-setspace.sty + texmf-dist/tex/latex/lwarp/lwarp-shadethm.sty + texmf-dist/tex/latex/lwarp/lwarp-shadow.sty + texmf-dist/tex/latex/lwarp/lwarp-shapepar.sty + texmf-dist/tex/latex/lwarp/lwarp-showidx.sty + texmf-dist/tex/latex/lwarp/lwarp-showkeys.sty + texmf-dist/tex/latex/lwarp/lwarp-showtags.sty + texmf-dist/tex/latex/lwarp/lwarp-shuffle.sty + texmf-dist/tex/latex/lwarp/lwarp-sidecap.sty + texmf-dist/tex/latex/lwarp/lwarp-sidenotes.sty + texmf-dist/tex/latex/lwarp/lwarp-simplebnf.sty + texmf-dist/tex/latex/lwarp/lwarp-siunitx.sty + texmf-dist/tex/latex/lwarp/lwarp-skmath.sty + texmf-dist/tex/latex/lwarp/lwarp-slantsc.sty + texmf-dist/tex/latex/lwarp/lwarp-slashed.sty + texmf-dist/tex/latex/lwarp/lwarp-soul.sty + texmf-dist/tex/latex/lwarp/lwarp-soulpos.sty + texmf-dist/tex/latex/lwarp/lwarp-soulutf8.sty + texmf-dist/tex/latex/lwarp/lwarp-splitbib.sty + texmf-dist/tex/latex/lwarp/lwarp-splitidx.sty + texmf-dist/tex/latex/lwarp/lwarp-srcltx.sty + texmf-dist/tex/latex/lwarp/lwarp-srctex.sty + texmf-dist/tex/latex/lwarp/lwarp-stabular.sty + texmf-dist/tex/latex/lwarp/lwarp-stackengine.sty + texmf-dist/tex/latex/lwarp/lwarp-stackrel.sty + texmf-dist/tex/latex/lwarp/lwarp-statex2.sty + texmf-dist/tex/latex/lwarp/lwarp-statistics.sty + texmf-dist/tex/latex/lwarp/lwarp-statmath.sty + texmf-dist/tex/latex/lwarp/lwarp-steinmetz.sty + texmf-dist/tex/latex/lwarp/lwarp-stfloats.sty + texmf-dist/tex/latex/lwarp/lwarp-struktex.sty + texmf-dist/tex/latex/lwarp/lwarp-subcaption.sty + texmf-dist/tex/latex/lwarp/lwarp-subfig.sty + texmf-dist/tex/latex/lwarp/lwarp-subfigure.sty + texmf-dist/tex/latex/lwarp/lwarp-subsupscripts.sty + texmf-dist/tex/latex/lwarp/lwarp-supertabular.sty + texmf-dist/tex/latex/lwarp/lwarp-svg.sty + texmf-dist/tex/latex/lwarp/lwarp-swfigure.sty + texmf-dist/tex/latex/lwarp/lwarp-syntonly.sty + texmf-dist/tex/latex/lwarp/lwarp-tabfigures.sty + texmf-dist/tex/latex/lwarp/lwarp-tablefootnote.sty + texmf-dist/tex/latex/lwarp/lwarp-tabls.sty + texmf-dist/tex/latex/lwarp/lwarp-tabularx.sty + texmf-dist/tex/latex/lwarp/lwarp-tabulary.sty + texmf-dist/tex/latex/lwarp/lwarp-tagpdf.sty + texmf-dist/tex/latex/lwarp/lwarp-tascmac.sty + texmf-dist/tex/latex/lwarp/lwarp-tcolorbox.sty + texmf-dist/tex/latex/lwarp/lwarp-tensor.sty + texmf-dist/tex/latex/lwarp/lwarp-termcal.sty + texmf-dist/tex/latex/lwarp/lwarp-textarea.sty + texmf-dist/tex/latex/lwarp/lwarp-textcomp.sty + texmf-dist/tex/latex/lwarp/lwarp-textfit.sty + texmf-dist/tex/latex/lwarp/lwarp-textpos.sty + texmf-dist/tex/latex/lwarp/lwarp-theorem.sty + texmf-dist/tex/latex/lwarp/lwarp-thinsp.sty + texmf-dist/tex/latex/lwarp/lwarp-thm-listof.sty + texmf-dist/tex/latex/lwarp/lwarp-thm-restate.sty + texmf-dist/tex/latex/lwarp/lwarp-thmbox.sty + texmf-dist/tex/latex/lwarp/lwarp-thmtools.sty + texmf-dist/tex/latex/lwarp/lwarp-threadcol.sty + texmf-dist/tex/latex/lwarp/lwarp-threeparttable.sty + texmf-dist/tex/latex/lwarp/lwarp-threeparttablex.sty + texmf-dist/tex/latex/lwarp/lwarp-thumb.sty + texmf-dist/tex/latex/lwarp/lwarp-thumbs.sty + texmf-dist/tex/latex/lwarp/lwarp-tikz-imagelabels.sty + texmf-dist/tex/latex/lwarp/lwarp-tikz.sty + texmf-dist/tex/latex/lwarp/lwarp-titleps.sty + texmf-dist/tex/latex/lwarp/lwarp-titleref.sty + texmf-dist/tex/latex/lwarp/lwarp-titlesec.sty + texmf-dist/tex/latex/lwarp/lwarp-titletoc.sty + texmf-dist/tex/latex/lwarp/lwarp-titling.sty + texmf-dist/tex/latex/lwarp/lwarp-tocbasic.sty + texmf-dist/tex/latex/lwarp/lwarp-tocbibind.sty + texmf-dist/tex/latex/lwarp/lwarp-tocdata.sty + texmf-dist/tex/latex/lwarp/lwarp-tocenter.sty + texmf-dist/tex/latex/lwarp/lwarp-tocloft.sty + texmf-dist/tex/latex/lwarp/lwarp-tocstyle.sty + texmf-dist/tex/latex/lwarp/lwarp-todo.sty + texmf-dist/tex/latex/lwarp/lwarp-todonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-topcapt.sty + texmf-dist/tex/latex/lwarp/lwarp-tram.sty + texmf-dist/tex/latex/lwarp/lwarp-transparent.sty + texmf-dist/tex/latex/lwarp/lwarp-trimclip.sty + texmf-dist/tex/latex/lwarp/lwarp-trivfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-truncate.sty + texmf-dist/tex/latex/lwarp/lwarp-turnthepage.sty + texmf-dist/tex/latex/lwarp/lwarp-twoup.sty + texmf-dist/tex/latex/lwarp/lwarp-txfonts.sty + texmf-dist/tex/latex/lwarp/lwarp-txgreeks.sty + texmf-dist/tex/latex/lwarp/lwarp-typearea.sty + texmf-dist/tex/latex/lwarp/lwarp-typicons.sty + texmf-dist/tex/latex/lwarp/lwarp-ulem.sty + texmf-dist/tex/latex/lwarp/lwarp-umoline.sty + texmf-dist/tex/latex/lwarp/lwarp-underscore.sty + texmf-dist/tex/latex/lwarp/lwarp-unicode-math.sty + texmf-dist/tex/latex/lwarp/lwarp-units.sty + texmf-dist/tex/latex/lwarp/lwarp-unitsdef.sty + texmf-dist/tex/latex/lwarp/lwarp-upgreek.sty + texmf-dist/tex/latex/lwarp/lwarp-upref.sty + texmf-dist/tex/latex/lwarp/lwarp-url.sty + texmf-dist/tex/latex/lwarp/lwarp-ushort.sty + texmf-dist/tex/latex/lwarp/lwarp-uspace.sty + texmf-dist/tex/latex/lwarp/lwarp-varioref.sty + texmf-dist/tex/latex/lwarp/lwarp-verse.sty + texmf-dist/tex/latex/lwarp/lwarp-versonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-vertbars.sty + texmf-dist/tex/latex/lwarp/lwarp-vmargin.sty + texmf-dist/tex/latex/lwarp/lwarp-vowel.sty + texmf-dist/tex/latex/lwarp/lwarp-vpe.sty + texmf-dist/tex/latex/lwarp/lwarp-vwcol.sty + texmf-dist/tex/latex/lwarp/lwarp-wallpaper.sty + texmf-dist/tex/latex/lwarp/lwarp-watermark.sty + texmf-dist/tex/latex/lwarp/lwarp-widetable.sty + texmf-dist/tex/latex/lwarp/lwarp-widows-and-orphans.sty + texmf-dist/tex/latex/lwarp/lwarp-witharrows.sty + texmf-dist/tex/latex/lwarp/lwarp-wrapfig.sty + texmf-dist/tex/latex/lwarp/lwarp-xbmks.sty + texmf-dist/tex/latex/lwarp/lwarp-xcolor.sty + texmf-dist/tex/latex/lwarp/lwarp-xechangebar.sty + texmf-dist/tex/latex/lwarp/lwarp-xellipsis.sty + texmf-dist/tex/latex/lwarp/lwarp-xetexko.sty + texmf-dist/tex/latex/lwarp/lwarp-xevlna.sty + texmf-dist/tex/latex/lwarp/lwarp-xfakebold.sty + texmf-dist/tex/latex/lwarp/lwarp-xfrac.sty + texmf-dist/tex/latex/lwarp/lwarp-xltabular.sty + texmf-dist/tex/latex/lwarp/lwarp-xltxtra.sty + texmf-dist/tex/latex/lwarp/lwarp-xmpincl.sty + texmf-dist/tex/latex/lwarp/lwarp-xpiano.sty + texmf-dist/tex/latex/lwarp/lwarp-xpinyin.sty + texmf-dist/tex/latex/lwarp/lwarp-xr-hyper.sty + texmf-dist/tex/latex/lwarp/lwarp-xr.sty + texmf-dist/tex/latex/lwarp/lwarp-xtab.sty + texmf-dist/tex/latex/lwarp/lwarp-xunicode.sty + texmf-dist/tex/latex/lwarp/lwarp-xurl.sty + texmf-dist/tex/latex/lwarp/lwarp-xy.sty + texmf-dist/tex/latex/lwarp/lwarp-zhlineskip.sty + texmf-dist/tex/latex/lwarp/lwarp-zwpagelayout.sty + texmf-dist/tex/latex/lwarp/lwarp.sty + texmf-dist/tex/latex/lwarp/lwarp_baseline_marker.eps + texmf-dist/tex/latex/lwarp/lwarp_baseline_marker.png +catalogue-also latex2html +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /macros/latex/contrib/lwarp +catalogue-license lppl1.3 +catalogue-topics cvt-html +catalogue-version 0.896 + +name lwarp.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of lwarp +containersize 344 +containerchecksum 39f42fa4ae9f9a88c93ad3e87ed7fd79a0f8078b830716c0a36d25b570d9a292e0c3e2a5e39ca1f3c4ee4c60672d97d397c423ef4bd270d5bf7fd382f148b95a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/lwarpmk + +name lwarp.amd64-freebsd +category Package +revision 43292 +shortdesc amd64-freebsd files of lwarp +containersize 344 +containerchecksum 4300593fc1772ca52c0b9d7574602f7372fa256fa828ade2556b2e18c4b37c289b1691e09288573e65dcc670e62100becaf442ef979967240fa8f61955ce84d4 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/lwarpmk + +name lwarp.amd64-netbsd +category Package +revision 43292 +shortdesc amd64-netbsd files of lwarp +containersize 344 +containerchecksum 4e9433ae32cae8134fdcbca351fd18d0e93970e1ef505663e28ecf8a4d4497a4890cbc7938fbb12f55bc17806250ad643527e57c0471098336e35767f5227a2f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/lwarpmk + +name lwarp.armhf-linux +category Package +revision 43292 +shortdesc armhf-linux files of lwarp +containersize 344 +containerchecksum 3a990691d24fac32523b0611350b12b10e80646a9e313ae5fb35bcf7322f9a720e329a41b91f4cb63a444113f4776fd4bc2bd0985b8786e4d09837baff3c46d8 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/lwarpmk + +name lwarp.i386-cygwin +category Package +revision 43292 +shortdesc i386-cygwin files of lwarp +containersize 340 +containerchecksum 2ef0e651a6a23f5242851471e93846135c666ad3782e6e909a6e9aac4e0a328ad10a3df0202883bd95a0fcf83af9e74824d7ca19abd28786624d20c106a4265a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/lwarpmk + +name lwarp.i386-freebsd +category Package +revision 43292 +shortdesc i386-freebsd files of lwarp +containersize 344 +containerchecksum 240e84d3a5f4b66eb4c149c8b17fde6c3006082529fe5f2ddb2ec9466c30c889d389432c89db984e8d8fb90996b50c6aa25dce427b8f0336086aa547fd9feac3 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/lwarpmk + +name lwarp.i386-linux +category Package +revision 43292 +shortdesc i386-linux files of lwarp +containersize 344 +containerchecksum 8ac301601e3c45010350eb324811f5a9ef9d8bc9aa77db425c1ba0fb09566fb9a8e3c5f92788e0e25dd1bdd765cb934db9b3b0dbd2949f790547b97d8d407d07 +binfiles arch=i386-linux size=1 + bin/i386-linux/lwarpmk + +name lwarp.i386-netbsd +category Package +revision 43292 +shortdesc i386-netbsd files of lwarp +containersize 344 +containerchecksum 2a2cd380563f5dd6703bea12c7f7e75911d729e831c09e2641a976a81db491c13551df4437d25932e6053bbc34c1e4e37cb7d29972c028e947ecdea81d7e8b7b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/lwarpmk + +name lwarp.i386-solaris +category Package +revision 43292 +shortdesc i386-solaris files of lwarp +containersize 340 +containerchecksum 5addf274d20094647bfe94519f13c54e4f9d63e33edef1074e4bf826daac0c91ad6d7753cdb76f57025004cd377d2547a3a626337b6d13a70ada8ebd94533950 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/lwarpmk + +name lwarp.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of lwarp +containersize 344 +containerchecksum 871bfa4606f0a57c88f3faddd0d3dd60d107c99e8d395b08087bf3ef44164efc3440f0132ec4e8d859d611cb6a2c3d20d9220255a7e03d83927e9746b0bbec68 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/lwarpmk + +name lwarp.win32 +category Package +revision 43292 +shortdesc win32 files of lwarp +containersize 684 +containerchecksum 2ce2508febb001d0c1a7a4c1224161b001571a6fa7145b47bf4ed9e4c1280e195c9bdd241048630ddeaaf19f6c8efc894e31b3a14cceb6a339be94590d0fe15d +binfiles arch=win32 size=1 + bin/win32/lwarpmk.exe + +name lwarp.x86_64-cygwin +category Package +revision 43292 +shortdesc x86_64-cygwin files of lwarp +containersize 344 +containerchecksum b9345083e9a2a891976a78aa3e45583ade42e0246eb238ce72a11efeeeceab85cef7bc215268785a87d5281d8f173029dbf3fb9f0fe0f84ee3a589bdafcdff49 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/lwarpmk + +name lwarp.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of lwarp +containersize 352 +containerchecksum 15261b4e3196a23d2c6a3c68ce960dd34c9b2a5a594213d5173acfa315b07372209a9efc7b9493f93c4f7d3f688a847e5e31195755bd2bcdee40eea61c9cecf0 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/lwarpmk + +name lwarp.x86_64-linux +category Package +revision 43292 +shortdesc x86_64-linux files of lwarp +containersize 344 +containerchecksum 0e66d45202b359e9e6f8b7e49eef79fd12aee54dfbc03b8d59723f7d964feaa6babd6da8b202af2226f4a596dbe40a4a9031ae8ae75f47763f8f62ae87071a92 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/lwarpmk + +name lwarp.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of lwarp +containersize 348 +containerchecksum 2d2175bfc5bf95914d724359d815827f68bba9e2f8dfdffb4e3fc12471d0877be32af5d6f4f9034a9d7c540f5ec527605ec68fd9e484bbc14c47831f2c3a19eb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/lwarpmk + +name lwarp.x86_64-solaris +category Package +revision 43292 +shortdesc x86_64-solaris files of lwarp +containersize 344 +containerchecksum b63d886b49719963d5ad7aaa7a02ed3bfb05e16429907aaffa418469b4589f82eb9686cd06925253edaf175242e981cd83043004f6378f685e61bd884267d6a1 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/lwarpmk + +name lxfonts +category Package +revision 32354 +shortdesc Set of slide fonts based on CM +relocated 1 +longdesc The bundle contains the traditional slides fonts revised to be +longdesc completely usable both as text fonts and mathematics fonts; +longdesc they are fully integrate with the new operators, letters, +longdesc symbols and extensible delimiter fonts, as well as with the AMS +longdesc fonts, all redone with the same stylistic parameters. +execute addMixedMap lxfonts.map +containersize 930860 +containerchecksum aa732f403af1adc898e6ac462412a59e4d2c8821ef47807ec5d8c1ce565a73299d472377117bca3fb30add468b546280b1603feff95d35090b338f87b279bdf4 +doccontainersize 530100 +doccontainerchecksum fed48ea91eb5ad414463d3b929dd4deb5cf433be63aa2753acc251aa1e8b85f0db7307a0ea96ea0bf9c4d9b14d0b90d26cde703bed2761a4a1b789ab3d117eba +docfiles size=139 + RELOC/doc/fonts/lxfonts/LXfonts-demo.pdf details="Package outline and samples" + RELOC/doc/fonts/lxfonts/LXfonts-demo.tex + RELOC/doc/fonts/lxfonts/LXfonts.readme details="Readme" + RELOC/doc/fonts/lxfonts/README details="Readme" + RELOC/doc/fonts/lxfonts/lxfonts.pdf + RELOC/doc/fonts/lxfonts/manifest.txt +srccontainersize 9164 +srccontainerchecksum 18da6f216135745887160dcc1df6ed72eb0e49f60a445e45326c84bed8fd98cd66316e21a6e0e7528d551917092f9715641fc68e02371b609690e00403ca5d96 +srcfiles size=8 + RELOC/source/fonts/lxfonts/lxfonts.dtx +runfiles size=397 + RELOC/fonts/map/dvips/lxfonts/lxfonts.map + RELOC/fonts/source/public/lxfonts/lamsya.mf + RELOC/fonts/source/public/lxfonts/lamsyb.mf + RELOC/fonts/source/public/lxfonts/lasymbols.mf + RELOC/fonts/source/public/lxfonts/lbigacc.mf + RELOC/fonts/source/public/lxfonts/lbigdel.mf + RELOC/fonts/source/public/lxfonts/lbigop.mf + RELOC/fonts/source/public/lxfonts/lbsymbols.mf + RELOC/fonts/source/public/lxfonts/lcmbsy8.mf + RELOC/fonts/source/public/lxfonts/lcmex8.mf + RELOC/fonts/source/public/lxfonts/lcmmi8.mf + RELOC/fonts/source/public/lxfonts/lcmmib8.mf + RELOC/fonts/source/public/lxfonts/lcmsy8.mf + RELOC/fonts/source/public/lxfonts/leclb8.mf + RELOC/fonts/source/public/lxfonts/lecli8.mf + RELOC/fonts/source/public/lxfonts/leclo8.mf + RELOC/fonts/source/public/lxfonts/leclq8.mf + RELOC/fonts/source/public/lxfonts/lexroman.mf + RELOC/fonts/source/public/lxfonts/lexslides.mf + RELOC/fonts/source/public/lxfonts/llasy.mf + RELOC/fonts/source/public/lxfonts/llasy8.mf + RELOC/fonts/source/public/lxfonts/llasyb8.mf + RELOC/fonts/source/public/lxfonts/llcmss8.mf + RELOC/fonts/source/public/lxfonts/llcmssb8.mf + RELOC/fonts/source/public/lxfonts/llcmssi8.mf + RELOC/fonts/source/public/lxfonts/llcmsso8.mf + RELOC/fonts/source/public/lxfonts/lmathex.mf + RELOC/fonts/source/public/lxfonts/lmathit.mf + RELOC/fonts/source/public/lxfonts/lmathsy.mf + RELOC/fonts/source/public/lxfonts/lmsam8.mf + RELOC/fonts/source/public/lxfonts/lmsbm8.mf + RELOC/fonts/source/public/lxfonts/lroman.mf + RELOC/fonts/source/public/lxfonts/ltclb8.mf + RELOC/fonts/source/public/lxfonts/ltcli8.mf + RELOC/fonts/source/public/lxfonts/ltclo8.mf + RELOC/fonts/source/public/lxfonts/ltclq8.mf + RELOC/fonts/source/public/lxfonts/ltxsymb.mf + RELOC/fonts/source/public/lxfonts/lxbbase.mf + RELOC/fonts/source/public/lxfonts/lxbbold.mf + RELOC/fonts/source/public/lxfonts/lxbcaps.mf + RELOC/fonts/tfm/public/lxfonts/lcmbsy8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmex8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmmi8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmmib8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmsy8.tfm + RELOC/fonts/tfm/public/lxfonts/leclb8.tfm + RELOC/fonts/tfm/public/lxfonts/lecli8.tfm + RELOC/fonts/tfm/public/lxfonts/leclo8.tfm + RELOC/fonts/tfm/public/lxfonts/leclq8.tfm + RELOC/fonts/tfm/public/lxfonts/llasy8.tfm + RELOC/fonts/tfm/public/lxfonts/llasyb8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmss8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmssb8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmssi8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmsso8.tfm + RELOC/fonts/tfm/public/lxfonts/lmsam8.tfm + RELOC/fonts/tfm/public/lxfonts/lmsbm8.tfm + RELOC/fonts/tfm/public/lxfonts/ltclb8.tfm + RELOC/fonts/tfm/public/lxfonts/ltcli8.tfm + RELOC/fonts/tfm/public/lxfonts/ltclo8.tfm + RELOC/fonts/tfm/public/lxfonts/ltclq8.tfm + RELOC/fonts/type1/public/lxfonts/lcmbsy8.pfb + RELOC/fonts/type1/public/lxfonts/lcmex8.pfb + RELOC/fonts/type1/public/lxfonts/lcmmi8.pfb + RELOC/fonts/type1/public/lxfonts/lcmmib8.pfb + RELOC/fonts/type1/public/lxfonts/lcmsy8.pfb + RELOC/fonts/type1/public/lxfonts/leclb8.pfb + RELOC/fonts/type1/public/lxfonts/lecli8.pfb + RELOC/fonts/type1/public/lxfonts/leclo8.pfb + RELOC/fonts/type1/public/lxfonts/leclq8.pfb + RELOC/fonts/type1/public/lxfonts/llasy8.pfb + RELOC/fonts/type1/public/lxfonts/llasyb8.pfb + RELOC/fonts/type1/public/lxfonts/llcmss8.pfb + RELOC/fonts/type1/public/lxfonts/llcmssb8.pfb + RELOC/fonts/type1/public/lxfonts/llcmssi8.pfb + RELOC/fonts/type1/public/lxfonts/llcmsso8.pfb + RELOC/fonts/type1/public/lxfonts/lmsam8.pfb + RELOC/fonts/type1/public/lxfonts/lmsbm8.pfb + RELOC/fonts/type1/public/lxfonts/ltclb8.pfb + RELOC/fonts/type1/public/lxfonts/ltcli8.pfb + RELOC/fonts/type1/public/lxfonts/ltclo8.pfb + RELOC/fonts/type1/public/lxfonts/ltclq8.pfb + RELOC/tex/latex/lxfonts/lgrllcmss.fd + RELOC/tex/latex/lxfonts/lgrllcmtt.fd + RELOC/tex/latex/lxfonts/lxfonts.sty + RELOC/tex/latex/lxfonts/omlllcmm.fd + RELOC/tex/latex/lxfonts/omsllcmsy.fd + RELOC/tex/latex/lxfonts/omxllcmex.fd + RELOC/tex/latex/lxfonts/ot1llcmss.fd + RELOC/tex/latex/lxfonts/ot1llcmtt.fd + RELOC/tex/latex/lxfonts/t1llcmss.fd + RELOC/tex/latex/lxfonts/t1llcmtt.fd + RELOC/tex/latex/lxfonts/ts1llcmss.fd + RELOC/tex/latex/lxfonts/ulllasy.fd + RELOC/tex/latex/lxfonts/ulmsa.fd + RELOC/tex/latex/lxfonts/ulmsb.fd +catalogue-ctan /fonts/lxfonts +catalogue-license lppl +catalogue-topics font font-mf font-type1 font-sans font-maths +catalogue-version 2.0b + +name ly1 +category Package +revision 47848 +shortdesc Support for LY1 LaTeX encoding +relocated 1 +longdesc The Y&Y 'texnansi' (TeX and ANSI, for Microsoft interpretations +longdesc of ANSI standards) encoding lives on, even after the decease of +longdesc the company; it is known in the LaTeX scheme of things as LY1 +longdesc encoding. This bundle includes metrics and LaTeX macros to use +longdesc the basic three (Times, Helvetica and Courier) Adobe Type 1 +longdesc fonts in LaTeX using LY1 encoding. +containersize 54896 +containerchecksum 8b170d04aef1c95b345440b60e5aca56442374d897e4a64ea4fefff4506e133d4c06350b5ea86a81eb9a015a1fe32b2bd8c433401a9bf6433e279cc700d0b8ae +doccontainersize 3632 +doccontainerchecksum c1bbaff6124984b0c582cb86e3e8f729e2b2c256808dc621de2c12da94c7b67c673c70fbd3d17c723292a90c60638e32fd79ece9915648347a7469caea040d7b +docfiles size=2 + RELOC/doc/fonts/ly1/README details="Outline of usage" +runfiles size=104 + RELOC/fonts/enc/dvips/ly1/texnansi.enc + RELOC/fonts/map/dvips/ly1/pag8y.map + RELOC/fonts/map/dvips/ly1/pbk8y.map + RELOC/fonts/map/dvips/ly1/pcr8y.map + RELOC/fonts/map/dvips/ly1/phv8y.map + RELOC/fonts/map/dvips/ly1/pnc8y.map + RELOC/fonts/map/dvips/ly1/ppl8y.map + RELOC/fonts/map/dvips/ly1/ptm8y.map + RELOC/fonts/map/dvips/ly1/pzc8y.map + RELOC/fonts/tfm/adobe/ly1/pagd8y.tfm + RELOC/fonts/tfm/adobe/ly1/pagdo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pagk8y.tfm + RELOC/fonts/tfm/adobe/ly1/pagko8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkd8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkdi8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkdo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkl8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkli8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbklo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrb8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrr8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrro8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvb8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvb8yn.tfm + RELOC/fonts/tfm/adobe/ly1/phvbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvbo8yn.tfm + RELOC/fonts/tfm/adobe/ly1/phvr8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvr8yn.tfm + RELOC/fonts/tfm/adobe/ly1/phvro8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvro8yn.tfm + RELOC/fonts/tfm/adobe/ly1/pncb8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncbi8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncr8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncri8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncro8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplb8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplbi8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplbu8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplr8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplr8yn.tfm + RELOC/fonts/tfm/adobe/ly1/pplri8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplro8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplrr8ye.tfm + RELOC/fonts/tfm/adobe/ly1/pplru8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmb8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmbc8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmbi8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmr8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmr8yn.tfm + RELOC/fonts/tfm/adobe/ly1/ptmrc8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmri8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmro8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmrr8ye.tfm + RELOC/fonts/tfm/adobe/ly1/pzcmi8y.tfm + RELOC/fonts/vf/adobe/ly1/ptmbc8y.vf + RELOC/fonts/vf/adobe/ly1/ptmrc8y.vf + RELOC/tex/latex/ly1/ly1enc.def + RELOC/tex/latex/ly1/ly1pag.fd + RELOC/tex/latex/ly1/ly1pbk.fd + RELOC/tex/latex/ly1/ly1pcr.fd + RELOC/tex/latex/ly1/ly1phv.fd + RELOC/tex/latex/ly1/ly1pnc.fd + RELOC/tex/latex/ly1/ly1ppl.fd + RELOC/tex/latex/ly1/ly1ptm.fd + RELOC/tex/latex/ly1/ly1pzc.fd + RELOC/tex/latex/ly1/texnansi.sty + RELOC/tex/plain/ly1/texnansi.tex +catalogue-ctan /fonts/psfonts/ly1 +catalogue-license lppl +catalogue-topics font-supp + +name lyluatex +category Package +revision 51252 +shortdesc Commands to include lilypond scores within a (Lua)LaTeX document +relocated 1 +longdesc This package provides macros for the inclusion of LilyPond +longdesc scores within LuaLaTeX. It calls LilyPond to compile scores, +longdesc then includes the produced files. Dependencies: currfile, +longdesc environ, graphicx, luaotfload, luatexbase, metalogo, minibox, +longdesc pdfpages, xkeyval. +containersize 17864 +containerchecksum 8ef105cf148927c99a20e792fb2259320d0e28f4140621561c9314afeb51f71a15013841e1497d0246df8305688e7211974bfe6a618b188d813481c9526f44ff +doccontainersize 865844 +doccontainerchecksum d8768ee9ae861477a13dd837629d870d34b0d1fc0b1f0709a90255f1ce230ceb3ebb782c9a6272f72e32c3371b2a1d16577033c53e2d6d1b1cd09adb19b62e41 +docfiles size=439 + RELOC/doc/support/lyluatex/Contributors.md + RELOC/doc/support/lyluatex/LICENSE + RELOC/doc/support/lyluatex/README.md details="Readme" + RELOC/doc/support/lyluatex/latexmkrc + RELOC/doc/support/lyluatex/ly/eight-systems.ly + RELOC/doc/support/lyluatex/ly/fonts.ly + RELOC/doc/support/lyluatex/lyluatex.pdf details="Package documentation" + RELOC/doc/support/lyluatex/lyluatex.tex + RELOC/doc/support/lyluatex/lyluatexbase.cls + RELOC/doc/support/lyluatex/lyluatexmanual.cls +runfiles size=19 + RELOC/scripts/lyluatex/lyluatex-lib.lua + RELOC/scripts/lyluatex/lyluatex-options.lua + RELOC/scripts/lyluatex/lyluatex.lua + RELOC/tex/luatex/lyluatex/lyluatex.sty +catalogue-contact-bugs https://github.com/jperon/lyluatex/issues +catalogue-contact-repository https://github.com/jperon/lyluatex +catalogue-ctan /support/lyluatex +catalogue-license mit +catalogue-topics luatex music music-extinp +catalogue-version 1.0f + +name m-tx +category Package +revision 52851 +shortdesc A preprocessor for pmx +longdesc M-Tx is a preprocessor to pmx, which is itself a preprocessor +longdesc to musixtex, a music typesetting system. The prime motivation +longdesc to the development of M-Tx was to provide lyrics for music to +longdesc be typeset. In fact, pmx now provides a lyrics interface, but +longdesc M-Tx continues in use by those who prefer its language. +depend m-tx.ARCH +containersize 4544 +containerchecksum c99b0a658d46c58e47f58c0494a4f32b5997ed304bb35b58a5732549ea17b366299aba4504982bb4a1e2743800b4bc02028e402e03cf363178bf1ac262802e9b +doccontainersize 739512 +doccontainerchecksum ebf3e4035460439abd3ac91202e28c0f6926181c34bcfd1f1b3115ff6ec90bd2d0cb9a5043d81ee8434d8b260f3a8b437585d3e81b7161b145c8c112d5643cb1 +docfiles size=259 + texmf-dist/doc/generic/m-tx/Makefile + texmf-dist/doc/generic/m-tx/README details="Readme" + texmf-dist/doc/generic/m-tx/README.documentation + texmf-dist/doc/generic/m-tx/borup.mtx + texmf-dist/doc/generic/m-tx/borup.pdf + texmf-dist/doc/generic/m-tx/buildmtxdoc.lua + texmf-dist/doc/generic/m-tx/buildzip.lua + texmf-dist/doc/generic/m-tx/chord.mtx + texmf-dist/doc/generic/m-tx/dertod.mtx + texmf-dist/doc/generic/m-tx/dona.mtx + texmf-dist/doc/generic/m-tx/dwoman.mta + texmf-dist/doc/generic/m-tx/dwoman.mtb + texmf-dist/doc/generic/m-tx/dwoman.mtx + texmf-dist/doc/generic/m-tx/halleluja.ltx + texmf-dist/doc/generic/m-tx/halleluja.pdf + texmf-dist/doc/generic/m-tx/hallelujashort.ltx + texmf-dist/doc/generic/m-tx/kanons.ltx + texmf-dist/doc/generic/m-tx/kanons.pdf + texmf-dist/doc/generic/m-tx/kroonhom.mtx + texmf-dist/doc/generic/m-tx/loofnou.mtx + texmf-dist/doc/generic/m-tx/lyrics.tex + texmf-dist/doc/generic/m-tx/macro.mtx + texmf-dist/doc/generic/m-tx/make-dvi + texmf-dist/doc/generic/m-tx/make-pdf + texmf-dist/doc/generic/m-tx/make-target + texmf-dist/doc/generic/m-tx/melisma.mta + texmf-dist/doc/generic/m-tx/melisma1.mtb + texmf-dist/doc/generic/m-tx/melisma1.mtx + texmf-dist/doc/generic/m-tx/melisma2.mtb + texmf-dist/doc/generic/m-tx/melisma2.mtx + texmf-dist/doc/generic/m-tx/melisma3.mtb + texmf-dist/doc/generic/m-tx/melisma3.mtx + texmf-dist/doc/generic/m-tx/melisma4.mtb + texmf-dist/doc/generic/m-tx/melisma4.mtx + texmf-dist/doc/generic/m-tx/melisma5.mtb + texmf-dist/doc/generic/m-tx/melisma5.mtx + texmf-dist/doc/generic/m-tx/melisma6.mtb + texmf-dist/doc/generic/m-tx/melisma6.mtx + texmf-dist/doc/generic/m-tx/meter.mtx + texmf-dist/doc/generic/m-tx/mozart.mtx + texmf-dist/doc/generic/m-tx/mozart0.mtx + texmf-dist/doc/generic/m-tx/mtx-install.pdf + texmf-dist/doc/generic/m-tx/mtx-install.tex + texmf-dist/doc/generic/m-tx/mtxdoc.ltx + texmf-dist/doc/generic/m-tx/mtxdoc.pdf details="Package documentation" + texmf-dist/doc/generic/m-tx/mtxdoc.sty + texmf-dist/doc/generic/m-tx/mtxindex.tex + texmf-dist/doc/generic/m-tx/netfirst.mtx + texmf-dist/doc/generic/m-tx/netsoos.mta + texmf-dist/doc/generic/m-tx/netsoos1.mtb + texmf-dist/doc/generic/m-tx/netsoos1.mtx + texmf-dist/doc/generic/m-tx/netsoos2.mtb + texmf-dist/doc/generic/m-tx/netsoos2.mtx + texmf-dist/doc/generic/m-tx/notes.tex + texmf-dist/doc/generic/m-tx/pdfcat + texmf-dist/doc/generic/m-tx/prepmx.pdf + texmf-dist/doc/generic/m-tx/psalm42.mtx + texmf-dist/doc/generic/m-tx/sanctus.mtx + texmf-dist/doc/generic/m-tx/title.mtx + texmf-dist/doc/generic/m-tx/title1.mtx + texmf-dist/doc/generic/m-tx/viva.mtx + texmf-dist/doc/generic/m-tx/volta.mtx + texmf-dist/doc/man/man1/prepmx.1 + texmf-dist/doc/man/man1/prepmx.man1.pdf +runfiles size=4 + texmf-dist/scripts/m-tx/m-tx.lua + texmf-dist/tex/generic/m-tx/mtx.tex + 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-license mit +catalogue-topics music +catalogue-version 0.63c + +name m-tx.aarch64-linux +category Package +revision 53999 +shortdesc aarch64-linux files of m-tx +containersize 43740 +containerchecksum 4d8f574991803b81e70bb485e9412128abfe610ced7a72763d90951fe52e901b6b3d14c0a066b27efdd8863aebe21231a98e2694dcffecbb73a83300dbf10bc8 +binfiles arch=aarch64-linux size=33 + bin/aarch64-linux/m-tx + bin/aarch64-linux/prepmx + +name m-tx.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of m-tx +containersize 42740 +containerchecksum 2a9a26fea2e021045e73b2e09aea7996af68dd69f0302621ad6ee3dfccf64ae48a482f213658c9b01d7bfe6f829d3cbf5bdc448c1262ade6fff14a48ea160abb +binfiles arch=amd64-freebsd size=32 + bin/amd64-freebsd/m-tx + bin/amd64-freebsd/prepmx + +name m-tx.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of m-tx +containersize 39828 +containerchecksum 2b7b2dad917a1aa3a68f5ea516bd041a13f1daf00189bcccfdf9da514c1b90dd797469f6b9ada4197a8ec7d2ea2b56fa8c392dbdda73e83e13386ff81e4fa39e +binfiles arch=amd64-netbsd size=37 + bin/amd64-netbsd/m-tx + bin/amd64-netbsd/prepmx + +name m-tx.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of m-tx +containersize 35448 +containerchecksum ef98797d6f27ce4e6cee21c6313ac74930ab4796df30b6d8fb023e54223a6cb9621b18366722eeee8fe379495bb3d813e934b086402f52712ad5690428cf5f35 +binfiles arch=armhf-linux size=28 + bin/armhf-linux/m-tx + bin/armhf-linux/prepmx + +name m-tx.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of m-tx +containersize 42272 +containerchecksum 1fed8ddffc011c422d3c31c12a9cbdd4e62c892b491e753a56679d885f34c7f6e5d7d9ee820f1505e4df3cd6caeea8a88cc6a6197fc06346d10a39625bf32e89 +binfiles arch=i386-cygwin size=33 + bin/i386-cygwin/m-tx + bin/i386-cygwin/prepmx.exe + +name m-tx.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of m-tx +containersize 39436 +containerchecksum 0e12e13f8072b0e0c5e8fe874cfc6a6de1ef2a4e83c39f21897432356bf94bcdfe353bfea5af9ff0231bb670f80a2cfe9a4e847655374db08f2a68df3cc8d9da +binfiles arch=i386-freebsd size=30 + bin/i386-freebsd/m-tx + bin/i386-freebsd/prepmx + +name m-tx.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of m-tx +containersize 46916 +containerchecksum 889b67c4b63b96398e4db51ec137522f873e853898503e9186b3f9af23a7cae2a4e81a22681cf99e39b47b625f0122128e83137855bb5dfe4f1d4d907d79413c +binfiles arch=i386-linux size=34 + bin/i386-linux/m-tx + bin/i386-linux/prepmx + +name m-tx.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of m-tx +containersize 37652 +containerchecksum 4fe34ebdf94164552e17e0f753a9895447fb0a3e4fc95bb1106b17bb559b221675a74b60e4e7dcf3a3190922df096c2e6e0abb9c3fc68b829b6ccfd9b8e46162 +binfiles arch=i386-netbsd size=35 + bin/i386-netbsd/m-tx + bin/i386-netbsd/prepmx + +name m-tx.i386-solaris +category Package +revision 48732 +shortdesc i386-solaris files of m-tx +containersize 42976 +containerchecksum ec7852ea1a6158f088871872f079baa5bd70e4472cc267de8bc5c7fa19d572829866e10a2a4a3578d93f05ef1b3472ca3ebc083621ea276635fbece43a7e08a1 +binfiles arch=i386-solaris size=31 + bin/i386-solaris/m-tx + bin/i386-solaris/prepmx + +name m-tx.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of m-tx +containersize 87172 +containerchecksum 4e2bd03f25c8a2ba3b4f2ecf3d6c59e72bd451432e3210da689aa794689d2e0a1a0fb650efd0d347b99ee5e0ec20d365bfdd16c8e9ef0dbf648a9f14cf7fbdb7 +binfiles arch=universal-darwin size=84 + bin/universal-darwin/m-tx + bin/universal-darwin/prepmx + +name m-tx.win32 +category Package +revision 53994 +shortdesc win32 files of m-tx +containersize 41252 +containerchecksum 5df8e5149bb8ed955f1380952a8176d38b2b9dda495afe722743ab68c7ab8346c275456df9fd4d53e655b6b48ec443eee3f424238e7bdaab49295e67cdd72d5d +binfiles arch=win32 size=29 + bin/win32/m-tx.exe + bin/win32/prepmx.exe + +name m-tx.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of m-tx +containersize 43960 +containerchecksum 5c9fc4e3d78d4325278f0fb40f3e3941c96733bda537aa37ae410ca14c0ace4c533af4b0d9949bad682d6d0b23aa06a445c7ffb21b5bcf08c4067e5c47a9016d +binfiles arch=x86_64-cygwin size=31 + bin/x86_64-cygwin/m-tx + bin/x86_64-cygwin/prepmx.exe + +name m-tx.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of m-tx +containersize 43244 +containerchecksum ecdfb017560ea32df6d1f0b0b5ebcd7f6b8ef56ee09ec31921b76c7e83412ad99d4f370d0fdbde2895ec8497ab2368662d531ac4d54ed4506a9f27d45e6b3c1f +binfiles arch=x86_64-darwinlegacy size=32 + bin/x86_64-darwinlegacy/m-tx + bin/x86_64-darwinlegacy/prepmx + +name m-tx.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of m-tx +containersize 43488 +containerchecksum 6ec3b3b05be7d8aa20b975085dc0834e0fbac26f937b03317ff39bec4928f95add0ee49a2b21ffd876e7e7d902858052d4abd5ef480d313f87739d9fd1a26ff5 +binfiles arch=x86_64-linux size=33 + bin/x86_64-linux/m-tx + bin/x86_64-linux/prepmx + +name m-tx.x86_64-linuxmusl +category Package +revision 54264 +shortdesc x86_64-linuxmusl files of m-tx +containersize 46492 +containerchecksum 270bcdd0b4f4fb4314e20d2aae075127491e65b88d8ac85fc80aea44a1ee523c0f446c18affdf0575934ee1c9b26201e62a1e69fa279d09ab9cdaa1737247d51 +binfiles arch=x86_64-linuxmusl size=33 + bin/x86_64-linuxmusl/m-tx + bin/x86_64-linuxmusl/prepmx + +name m-tx.x86_64-solaris +category Package +revision 48732 +shortdesc x86_64-solaris files of m-tx +containersize 47196 +containerchecksum 48b9e1e4709685ac7418311dece129bc47b199da1b7f634076afbb633301c23181a5ed308ce72b9237b1ef074ab6646584451c06a88b0d94e30902e47acb77ee +binfiles arch=x86_64-solaris size=35 + bin/x86_64-solaris/m-tx + bin/x86_64-solaris/prepmx + +name macros2e +category Package +revision 56291 +shortdesc A list of internal LaTeX2e macros +relocated 1 +longdesc This document lists the internal macros defined by the LaTeX2e +longdesc base files which can also be useful to package authors. The +longdesc macros are hyper-linked to their description in source2e. For +longdesc this to work both PDFs must be inside the same directory. This +longdesc document is not yet complete in content and format and may miss +longdesc some macros. +containersize 820 +containerchecksum 4e187cb2c5d6a2c165e7f74d8234dd5a609ea1462dad0a268bf17c6e21acf22d9c6f54a53930dd6678b1375cb8878fecea22f4f132a8892aed7387d29fc239c6 +doccontainersize 185624 +doccontainerchecksum ff2e1118b718e17a4716a84bea265acfe47f2178ab6c0a44d39e0320ffd6f0dcce7dffa37eddf14a7ea41dd4b3431ff7c102f6c3c6092e9562fc60de19b6d89e +docfiles size=55 + RELOC/doc/latex/macros2e/Makefile + RELOC/doc/latex/macros2e/README details="Readme" + RELOC/doc/latex/macros2e/macros2e.pdf details="The macro list itself" + RELOC/doc/latex/macros2e/macros2e.tex +runfiles size=1 + RELOC/tex/latex/macros2e/extlabels.sty +catalogue-contact-bugs https://sourceforge.net/p/macros2e/tickets/ +catalogue-contact-home https://sourceforge.net/p/macros2e/ +catalogue-contact-repository https://sourceforge.net/p/macros2e/code/ci/default/tree/ +catalogue-ctan /info/macros2e +catalogue-license lppl1.3c +catalogue-topics latex-doc +catalogue-version 0.4a + +name macroswap +category Package +revision 31498 +shortdesc Swap the definitions of two LaTeX macros +relocated 1 +longdesc The package provides simple utility methods to swap the meaning +longdesc (token expansion) of two macros by name. +containersize 1052 +containerchecksum 39af1bcf247986c1f7559e1523d1d33680270602bda1d904404db0700452d203f950eadb2d9808a1cd3098bccf070218bd791fdbe5be4a3b0f539f013ef226a6 +doccontainersize 163332 +doccontainerchecksum 4e46c824a6a5909fca7d8a4628c87cc7a372ae5eab0d2f5110dc1f205e072e53a817043cbead53dde55e71c7c1c0e23695ba963c27e46bc70e2f84d430b656d7 +docfiles size=42 + RELOC/doc/latex/macroswap/Makefile + RELOC/doc/latex/macroswap/README details="Readme" + RELOC/doc/latex/macroswap/macroswap.pdf details="Package documentation" +srccontainersize 3172 +srccontainerchecksum 43ac07d97c89b821f89f7308acc21521d025bad0dcc82f281e011254b163a54cc457db5bc0dc74419cc5bdfc4297e18cc886bbb1b22715dcb7d41e6bcc0c2374 +srcfiles size=3 + RELOC/source/latex/macroswap/macroswap.dtx + RELOC/source/latex/macroswap/macroswap.ins +runfiles size=1 + RELOC/tex/latex/macroswap/macroswap.sty +catalogue-ctan /macros/latex/contrib/macroswap +catalogue-license lppl1.2 +catalogue-topics macro-supp +catalogue-version 1.1 + +name mafr +category Package +revision 15878 +shortdesc Mathematics in accord with French usage +relocated 1 +longdesc The package provides settings and macros for typesetting +longdesc mathematics with LaTeX in compliance with French usage. It +longdesc comes with two document classes, 'fiche' and 'cours', useful to +longdesc create short high school documents such as tests or lessons. +longdesc The documentation is in French. +containersize 2196 +containerchecksum 802d108e7deaaa1a42b7f1eca5059f9547f0f4edb2eb5f8f3f0b68d03c05662f37d2bf7b25844dcec6b89d6d1f0babe93614cbc87fe1e2ca0ac2153602c0cad7 +doccontainersize 60024 +doccontainerchecksum 5e3a0c42944944fc467e09751c1881dfd16ee526c78e509acbad394725703771893770d11e5aa16b09b6b5d1059331b72ce0f1e85c6ec61677d101276398624c +docfiles size=26 + RELOC/doc/latex/mafr/ALIRE details="Package ALIRE" language="fr" + RELOC/doc/latex/mafr/COPYING + RELOC/doc/latex/mafr/README details="Package README" language="en" + RELOC/doc/latex/mafr/docmafr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/mafr/docmafr.tex + RELOC/doc/latex/mafr/triangle.eps +runfiles size=3 + RELOC/tex/latex/mafr/cours.cls + RELOC/tex/latex/mafr/fiche.cls + RELOC/tex/latex/mafr/mafr.sty +catalogue-ctan /macros/latex/contrib/mafr +catalogue-license gpl +catalogue-topics maths french exercise +catalogue-version 1.0 + +name magaz +category Package +revision 24694 +shortdesc Magazine layout +relocated 1 +longdesc The current version does special formatting for the first line +longdesc of text in a paragraph. The package is part of a larger body of +longdesc tools which remain in preparation. +containersize 4416 +containerchecksum 5c35baa39a8b26911b2c2dd875576a0f875f5edc37fb497dbd403720855861219fdced11ee3fbbdee8e63f0817b6c2ee6a20e6ec3bcc9a5183465c22caf7735d +doccontainersize 231644 +doccontainerchecksum 78c9163951f269a489f6e8a48cce7d9ca46aa5c7f2f2567f8e50627ddc32920a8a5b54bf141ae881c2863de6bad4f7a954588fef9469291f18e65b7fadbf051b +docfiles size=62 + RELOC/doc/latex/magaz/magaz.pdf details="Package documentation" + RELOC/doc/latex/magaz/magaz.tex +runfiles size=3 + RELOC/tex/latex/magaz/magaz.sty +catalogue-ctan /macros/latex/contrib/magaz +catalogue-license other-free +catalogue-topics layout typesetting +catalogue-version 0.4 + +name magicnum +category Package +revision 52983 +shortdesc Access TeX systems' "magic numbers" +relocated 1 +longdesc This package allows access to the various parameter values in +longdesc TeX (catcode values), e-TeX (group, if and node types, and +longdesc interaction mode), and LuaTeX (pdfliteral mode) by a +longdesc hierarchical name system. +containersize 4196 +containerchecksum 305d94ec07468511e7ada667ded30a1c3ba68835d5bdd03a9a32c7bb7c0d274d5ddc77a5ad02712faf10aba5eca73c6708cb2bf497bea0b73b3f99b10923a8bd +doccontainersize 322116 +doccontainerchecksum 084bdeb7d422a5e79f4a53864ea0c94b09962e159e103fe3ea77163a9a549605f7139bb2ba9d1a57877b3453162a99470f48a691ff78289a1caa5389b2a7f67d +docfiles size=82 + RELOC/doc/latex/magicnum/README.md details="Readme" + RELOC/doc/latex/magicnum/magicnum.pdf details="Package documentation" + RELOC/doc/latex/magicnum/magicnum.txt +srccontainersize 10092 +srccontainerchecksum 3bc74965fdc7ecfe7481e426e3cd2c9a27c8752fec3248e707c1f0ee1fcd03205540d6cbde05b82c9313c567b7e689acc9b1146f53962eadfef22d7006c896fb +srcfiles size=10 + RELOC/source/latex/magicnum/magicnum.dtx +runfiles size=5 + RELOC/scripts/magicnum/magicnum.lua + RELOC/tex/generic/magicnum/magicnum.sty +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-license lppl1.3c +catalogue-topics debug-supp +catalogue-version 1.7 + +name magra +category Package +revision 57373 +shortdesc The Magra font face with support for LaTeX and pdfLaTeX +relocated 1 +longdesc This package provides the Magra family of fonts designed by +longdesc FontFuror, with support for LaTeX and pdfLaTeX. +execute addMap Magra.map +containersize 179260 +containerchecksum 2b182272dcf5bf3469ccc38daf9ad24081002d118de77d2dd012b136152f2147a63c6c8fad5ffe2f758efbfbf7665ae0c61ef6281cf16112b740da95d2334b63 +doccontainersize 38364 +doccontainerchecksum 8364aaf47ee07d7462dcb13bb370c88c47556e23491233e580dee165528b417bf3dd139f0cdb3db6c565c0ffbac40ea2fb995a0dd2981dd227d1a70561f2f619 +docfiles size=13 + RELOC/doc/fonts/magra/LICENSE.TXT + RELOC/doc/fonts/magra/Magra-samples.pdf details="Font samples" + RELOC/doc/fonts/magra/Magra-samples.tex + RELOC/doc/fonts/magra/README details="Readme" +runfiles size=72 + RELOC/fonts/enc/dvips/magra/a_dip3eq.enc + RELOC/fonts/enc/dvips/magra/a_jqnft2.enc + RELOC/fonts/enc/dvips/magra/a_radyzq.enc + RELOC/fonts/enc/dvips/magra/a_va7yvq.enc + RELOC/fonts/map/dvips/magra/Magra.map + RELOC/fonts/tfm/public/magra/Magra-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/magra/Magra-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/magra/Magra-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/magra/Magra-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/magra/Magra-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/magra/Magra-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/magra/Magra-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/magra/Magra-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/magra/Magra-tlf-ly1.tfm + RELOC/fonts/tfm/public/magra/Magra-tlf-ot1.tfm + RELOC/fonts/tfm/public/magra/Magra-tlf-t1--base.tfm + RELOC/fonts/tfm/public/magra/Magra-tlf-t1.tfm + RELOC/fonts/tfm/public/magra/Magra-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/magra/Magra-tlf-ts1.tfm + RELOC/fonts/type1/public/magra/Magra-Bold.pfb + RELOC/fonts/type1/public/magra/Magra.pfb + RELOC/fonts/vf/public/magra/Magra-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/magra/Magra-Bold-tlf-t1.vf + RELOC/fonts/vf/public/magra/Magra-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/magra/Magra-tlf-ly1.vf + RELOC/fonts/vf/public/magra/Magra-tlf-t1.vf + RELOC/fonts/vf/public/magra/Magra-tlf-ts1.vf + RELOC/tex/latex/magra/LY1Magra-TLF.fd + RELOC/tex/latex/magra/Magra.sty + RELOC/tex/latex/magra/OT1Magra-TLF.fd + RELOC/tex/latex/magra/T1Magra-TLF.fd + RELOC/tex/latex/magra/TS1Magra-TLF.fd +catalogue-contact-bugs https://github.com/ccebinger/CTAN_Magra +catalogue-contact-development https://github.com/ccebinger/CTAN_Magra +catalogue-contact-home https://github.com/ccebinger/CTAN_Magra +catalogue-contact-repository https://github.com/ccebinger/CTAN_Magra +catalogue-contact-support https://github.com/ccebinger/CTAN_Magra +catalogue-ctan /fonts/magra +catalogue-license ofl lppl +catalogue-topics font font-body font-sans font-proportional font-type1 font-supp font-t1enc +catalogue-version 0.0.1 + +name mahjong +category Package +revision 58896 +shortdesc Typeset Mahjong Tiles using MPSZ Notation +relocated 1 +longdesc The mahjong package provides a LaTeX2e and LaTeX3 interface for +longdesc typesetting mahjong tiles using an extended version of MPSZ +longdesc algebraic notation. Features include spaces, rotated, blank, +longdesc and concealed tiles, as well as red fives. The size of the +longdesc mahjong tiles can be controlled using a package option and an +longdesc optional argument of \mahjong. It is primarily aimed at Riichi +longdesc (aka. Japanese) Mahjong but can be used to typeset any style of +longdesc mahjong. +containersize 95428 +containerchecksum 697c0a634304e4e94a6165fd033d906209fa6811cf6297868b76389165bf557f3b6abd419582d200bb252365f790ce53c98e1da75c8b6d3d061cb5d6b635ef38 +doccontainersize 765572 +doccontainerchecksum 622a34f880eb02813e7f4c1f6eb7199194c3ee0e62df534e7832530c34f09e2abfa7f1d491b4840310841e230e3ab5080cbfa5370e9366c0f9b8fd9000b0ef38 +docfiles size=279 + RELOC/doc/latex/mahjong/LICENSE + RELOC/doc/latex/mahjong/README.md details="Readme" + RELOC/doc/latex/mahjong/mahjong-code.pdf + RELOC/doc/latex/mahjong/mahjong-code.tex + RELOC/doc/latex/mahjong/mahjong.pdf details="Package documentation" + RELOC/doc/latex/mahjong/mahjong.tex +srccontainersize 7260 +srccontainerchecksum 6b64551b9cf9d4e79875935d2b37af602be7d3b001a3ef441003136b950741adec8d4b8521ca9a49d744d2173c0b053f025af909fe320edf08f1b3d7c131055e +srcfiles size=7 + RELOC/source/latex/mahjong/Makefile + RELOC/source/latex/mahjong/mahjong.dtx + RELOC/source/latex/mahjong/mahjong.ins +runfiles size=69 + RELOC/tex/latex/mahjong/mahjong.sty + RELOC/tex/latex/mahjong/tiles/mahjong-0m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-0p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-0s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-1m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-1p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-1s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-1z.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-2m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-2p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-2s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-2z.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-3m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-3p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-3s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-3z.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-4m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-4p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-4s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-4z.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-5m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-5p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-5s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-5z.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-6m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-6p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-6s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-6z.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-7m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-7p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-7s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-7z.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-8m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-8p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-8s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-9m.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-9p.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-9s.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-Back.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-Blank.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-Front.pdf + RELOC/tex/latex/mahjong/tiles/mahjong-Space.pdf +catalogue-contact-home https://github.com/Schmitzi/mahjong-tex +catalogue-ctan /graphics/mahjong +catalogue-license mit cc-by-1 +catalogue-topics graphics games expl3 +catalogue-version 1.0.1 + +name mailing +category Package +revision 15878 +shortdesc Macros for mail merging +relocated 1 +longdesc This package is for use when sending a large number of letters, +longdesc all with the same body text. The package's \addressfile command +longdesc is used to specify who the letter is to be sent to; the body of +longdesc the \mailingtext command specifies the text of the letters, +longdesc possibly using macros defined in the \addressfile. +containersize 1784 +containerchecksum 33fca4d77b34e3390de647e7e39d6240344f2a90c6067275bdb0e7dd1a3deaf5d5cdaa84dc4a49a0c817bc6923eb593602653b0d0ae4b794510a272b78498be9 +doccontainersize 58464 +doccontainerchecksum 2fd2d4dd5c1896d0849294a1911ae3682b7331cfa574bd46aa047f118fdcb09b4da3e29f6d5412d23ea49f776cd042694508e8b5492ec53cb44a6acafec110c5 +docfiles size=18 + RELOC/doc/latex/mailing/mailing.pdf details="Package documentation" + RELOC/doc/latex/mailing/manifest.txt +srccontainersize 3524 +srccontainerchecksum 5adf58b4bc60e939906b8ae587829937afffc54af81623e640a513ed8522984c2308d3af1631857f4469a5774a844e3655bc3a9ca8ee09445b545d10dbcfea5c +srcfiles size=4 + RELOC/source/latex/mailing/mailing.dtx + RELOC/source/latex/mailing/mailing.ins +runfiles size=1 + RELOC/tex/latex/mailing/mailing.sty +catalogue-ctan /macros/latex/contrib/mailing +catalogue-license lppl +catalogue-topics mailing + +name mailmerge +category Package +revision 15878 +shortdesc Repeating text field substitution +relocated 1 +longdesc The package mailmerge provides an interface to produce text +longdesc from a template, where fields are replaced by actual data, as +longdesc in a database. The package may be used to produce several +longdesc letters from a template, certificates or other such documents. +longdesc It allows access to the entry number, number of entries and so +longdesc on. +containersize 1928 +containerchecksum 1930b0c554dfa36514d0c0b33749d506d6e5acfcf65e3c1dde3ed75a7c45bafb74db8d83f1b286c1a623acb32b2047dcab566ad85e3676c67c0ce1f7722d24f4 +doccontainersize 91936 +doccontainerchecksum 3e8aa80211af8f59289b87dece6cc2a1c5eccf02805e3e7927c78cdac66cdb6afaacb07b1114f8c67105289e4d4f7188043cc28f00365c1f5c3f353a53f14922 +docfiles size=27 + RELOC/doc/latex/mailmerge/README details="Readme" + RELOC/doc/latex/mailmerge/mailmerge.pdf details="Package documentation" +srccontainersize 4236 +srccontainerchecksum d894133e294ea440e1916a04f28a738930ea0ae80ad96e148434c84a02a388735d00778ff4850306ba7336c915a9b2992f41c496149447e6189db82c59a66138 +srcfiles size=4 + RELOC/source/latex/mailmerge/mailmerge.dtx + RELOC/source/latex/mailmerge/mailmerge.ins +runfiles size=1 + RELOC/tex/latex/mailmerge/mailmerge.sty +catalogue-also mailing merge postcards +catalogue-ctan /macros/latex/contrib/mailmerge +catalogue-license lppl1.2 +catalogue-topics mailing +catalogue-version 1.0 + +name make4ht +category Package +revision 58563 +shortdesc A build system for tex4ht +longdesc make4ht is a simple build system for tex4ht, a TeX to XML +longdesc converter. It provides a command line tool that drives the +longdesc conversion process. It also provides a library which can be +longdesc used to create customized conversion tools. +depend make4ht.ARCH +containersize 46796 +containerchecksum dee613984e389d3d5e85c64bbe99390eb533551b3d03d3f9993cd8d92fb5dc7495456e51281ab204670a0f42139111b27b45c132075eda47c5604e50f335919a +doccontainersize 158628 +doccontainerchecksum f153c737e87821a478fbc9712b320647842b3851094c851b4619ebf1e658ca944adeb2f19d197b57aaa649be70cabab9988ba33914a10c3708c75ee5370b2eac +docfiles size=64 + texmf-dist/doc/support/make4ht/README details="Readme" + texmf-dist/doc/support/make4ht/changelog.tex + texmf-dist/doc/support/make4ht/make4ht-doc.pdf details="Package documentation" + texmf-dist/doc/support/make4ht/make4ht-doc.tex + texmf-dist/doc/support/make4ht/readme.tex +runfiles size=81 + texmf-dist/scripts/make4ht/domfilters/make4ht-aeneas.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-booktabs.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-collapsetoc.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-fixinlines.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-idcolons.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-joincharacters.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-joincolors.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-mathmlfixes.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-odtimagesize.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-odtpartable.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-t4htlinks.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-build_changed.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-common_domfilters.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-common_filters.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-detect_engine.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-dvisvgm_hashes.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-join_colors.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-latexmk_build.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-mathjaxnode.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-mjcli.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-odttemplate.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-preprocess_input.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-staticsite.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-tidy.lua + texmf-dist/scripts/make4ht/filters/make4ht-cleanspan-nat.lua + texmf-dist/scripts/make4ht/filters/make4ht-cleanspan.lua + texmf-dist/scripts/make4ht/filters/make4ht-domfilter.lua + texmf-dist/scripts/make4ht/filters/make4ht-entities-to-unicode.lua + texmf-dist/scripts/make4ht/filters/make4ht-entities.lua + texmf-dist/scripts/make4ht/filters/make4ht-filter.lua + texmf-dist/scripts/make4ht/filters/make4ht-fix-links.lua + texmf-dist/scripts/make4ht/filters/make4ht-fixligatures.lua + texmf-dist/scripts/make4ht/filters/make4ht-hruletohr.lua + texmf-dist/scripts/make4ht/filters/make4ht-mathjaxnode.lua + texmf-dist/scripts/make4ht/filters/make4ht-mjcli.lua + texmf-dist/scripts/make4ht/filters/make4ht-odttemplate.lua + texmf-dist/scripts/make4ht/filters/make4ht-staticsite.lua + texmf-dist/scripts/make4ht/filters/make4ht-svg-height.lua + texmf-dist/scripts/make4ht/formats/make4ht-docbook.lua + texmf-dist/scripts/make4ht/formats/make4ht-html5.lua + texmf-dist/scripts/make4ht/formats/make4ht-jats.lua + texmf-dist/scripts/make4ht/formats/make4ht-odt.lua + texmf-dist/scripts/make4ht/formats/make4ht-tei.lua + texmf-dist/scripts/make4ht/formats/make4ht-xhtml.lua + texmf-dist/scripts/make4ht/lapp-mk4.lua + texmf-dist/scripts/make4ht/make4ht + texmf-dist/scripts/make4ht/make4ht-aeneas-config.lua + texmf-dist/scripts/make4ht/make4ht-config.lua + texmf-dist/scripts/make4ht/make4ht-dvireader.lua + texmf-dist/scripts/make4ht/make4ht-errorlogparser.lua + texmf-dist/scripts/make4ht/make4ht-filterlib.lua + texmf-dist/scripts/make4ht/make4ht-htlatex.lua + texmf-dist/scripts/make4ht/make4ht-indexing.lua + texmf-dist/scripts/make4ht/make4ht-lib.lua + texmf-dist/scripts/make4ht/make4ht-logging.lua + texmf-dist/scripts/make4ht/make4ht-odtfilter.lua + texmf-dist/scripts/make4ht/make4ht-xtpipes.lua + texmf-dist/scripts/make4ht/mkparams.lua + texmf-dist/scripts/make4ht/mkutils.lua +catalogue-contact-repository https://github.com/michal-h21/make4ht +catalogue-ctan /support/make4ht +catalogue-license lppl1.3 +catalogue-topics cvt-html +catalogue-version 0.3g + +name make4ht.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of make4ht +containersize 340 +containerchecksum 00213df4b1b5188283a5205e2d375509cb73f2495a8c3959fc9ea4da4e86c03280cdd88314dee0be473d343ea81760289b729b6226c51b338bc2b3a74d9be3f2 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/make4ht + +name make4ht.amd64-freebsd +category Package +revision 37750 +shortdesc amd64-freebsd files of make4ht +containersize 340 +containerchecksum caa60837bf5314b44ce3da043136d770e766a924c0fac2a50d78566fae9ba36ed08101d8435406bf6ca72873a74dead99dc55385f5c659c0de15790be4e1c1d1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/make4ht + +name make4ht.amd64-netbsd +category Package +revision 37750 +shortdesc amd64-netbsd files of make4ht +containersize 340 +containerchecksum 262783e6643eefa2e6b2ee528d37cb6af18a1807b964665942475ec1e799639029957a133ed466c43a81cbb0753c0978982fda0928ff9040ac91564121fa47a4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/make4ht + +name make4ht.armhf-linux +category Package +revision 37750 +shortdesc armhf-linux files of make4ht +containersize 340 +containerchecksum 92d2ae6412b862dbf491e3790f3b5163ed18a91bf98eac1b14735e83bbfecc67d4f6bb87660cfb02323ec55ece1a39669a2dc8cd1f37e39851c340609db64052 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/make4ht + +name make4ht.i386-cygwin +category Package +revision 37750 +shortdesc i386-cygwin files of make4ht +containersize 336 +containerchecksum f45b35e91a9ab26c9b0350a81e02ec928b95e8d25aca6ed084dde6097ae89a9359fdc4d3fa24ccc82e4fdd67aa6685ffa8ea671b58d7a7e9286906e5ff8820e6 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/make4ht + +name make4ht.i386-freebsd +category Package +revision 37750 +shortdesc i386-freebsd files of make4ht +containersize 340 +containerchecksum c0e4d6147181d162827d212cae5043bd2db23de71fe2ebc7fe4db7191ba8229564eaba1211bfa84c6767fb26070cc04e53dbfad8ca5b3b0a991a511486542191 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/make4ht + +name make4ht.i386-linux +category Package +revision 37750 +shortdesc i386-linux files of make4ht +containersize 340 +containerchecksum 8c27229730bfcad799d0917f86eb8ecf9b7c6d510041319ad433a2707735286c9424e7fe29bfb122e94bea4662ab36b64f1ef701449371471d7226b3ccf7460f +binfiles arch=i386-linux size=1 + bin/i386-linux/make4ht + +name make4ht.i386-netbsd +category Package +revision 37750 +shortdesc i386-netbsd files of make4ht +containersize 336 +containerchecksum 6130dcb01f4ba01fa3d15b9b8e8f23aef34ac708ada1ca27577a00d4d4754442a6b6844e1b4f8657a7831034b0395b3ae67145e203d189750b92bd9cca4cd4be +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/make4ht + +name make4ht.i386-solaris +category Package +revision 37750 +shortdesc i386-solaris files of make4ht +containersize 340 +containerchecksum 67357edb17545347681a99e3cebc55816c161c74411c9011187e073c5d47d797202e0410971f003ca0a50dbd57b0e87336be0247684c2ec94ef21fc0cb8a7f5a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/make4ht + +name make4ht.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of make4ht +containersize 336 +containerchecksum 043055395f7c9be34b322b67fc737f7da96acddf4e45d0a3a732d4be79949eeb9a635b2e2196cc1d4b2eb777b42ced03a345eeb66b9b159fd500437fb035d803 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/make4ht + +name make4ht.win32 +category Package +revision 37750 +shortdesc win32 files of make4ht +containersize 680 +containerchecksum 33360e5e61ecfbea02edbc76021b2c74fa464cc8ab1a8af304314d95a7f3e27e6c5e74b3088162bafd76275ee29aee0bc57a17e0f5a1c8aa6774cb3e3be3ca25 +binfiles arch=win32 size=1 + bin/win32/make4ht.exe + +name make4ht.x86_64-cygwin +category Package +revision 37750 +shortdesc x86_64-cygwin files of make4ht +containersize 340 +containerchecksum 976ae0c43f307104ffb572e56b9b69fe74c7d899780af31f963c3d95dfc062ca240915c8f8c91c0d104859af25de57fcecb62b0998ba1198b9cb0fc6733da6d6 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/make4ht + +name make4ht.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of make4ht +containersize 348 +containerchecksum c0e5511da4e2da45341323de091f1b0d87697ea53496d74bd33887745cc6fd0dab3a35553023a02e578cab457d386a1cfbe617dbf07ec550cb0484b415b3a528 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/make4ht + +name make4ht.x86_64-linux +category Package +revision 37750 +shortdesc x86_64-linux files of make4ht +containersize 336 +containerchecksum 05f458a5b67c1a30e6632aa4bd5f22aa28799b73722567558715ce0da72d89b34fce923a0e28e548d09857b90f070b7c008d1409b537fe90881a7095b78f1f41 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/make4ht + +name make4ht.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of make4ht +containersize 340 +containerchecksum 7dd62bde71d9f4946d17c16ab72ba24420c46830088cbb1ae0831fcf87506c1f2da1c54995b8f80553e3194af9c2b7064f84843747ef71cac6e20aeca8ef8723 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/make4ht + +name make4ht.x86_64-solaris +category Package +revision 37750 +shortdesc x86_64-solaris files of make4ht +containersize 340 +containerchecksum 84a21e3cebf77651c82e3b2002f4ba9863f979ffb2af44d5cdf1659c5b162804230d98ef1e4f2a5cbb16cd800016a657ecb637b3b68806c8e26352a91ed61418 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/make4ht + +name makebarcode +category Package +revision 15878 +shortdesc Print various kinds 2/5 and Code 39 bar codes +relocated 1 +longdesc The package contains macros for printing various 2/5 bar codes +longdesc and Code 39 bar codes. The macros do not use fonts but create +longdesc the bar codes directly using vertical rules. It is therefore +longdesc possible to vary width to height ratio, ratio of thin and thick +longdesc bars. The package is therefore convenient for printing ITF bar +longdesc codes as well as bar codes for identification labels for HP +longdesc storage media. +containersize 4928 +containerchecksum a19268b5e63e577b4df9255e4c0eac640c73ac9e08f6d4b4baaff7920f714b7dd961f8143587b59478df2d854dc2f363312833c7636d08c2aab644a25b54bb40 +doccontainersize 272060 +doccontainerchecksum ecd0121f679d7e4ffb162c151dc4b60acc78f9297d3bf0003882b914f0b1a10a52b43e844c5bb085d73ac08f9f0aa2e768ec4fe7374067ae2fcf304e842a29e3 +docfiles size=79 + RELOC/doc/latex/makebarcode/License.txt + RELOC/doc/latex/makebarcode/README details="Readme" + RELOC/doc/latex/makebarcode/makebarcode.pdf details="Package documentation" + RELOC/doc/latex/makebarcode/makebarcode.tex +runfiles size=5 + RELOC/tex/latex/makebarcode/makebarcode.sty +catalogue-ctan /macros/latex/contrib/makebarcode +catalogue-license lppl +catalogue-topics barcode +catalogue-version 1.0 + +name makebase +category Package +revision 41012 +shortdesc Typeset counters in a different base +relocated 1 +longdesc This package typesets a LaTeX counter such as page in an +longdesc arbitrary base (default 16). It does not change font or +longdesc typeface. The package extends the functionality of the existing +longdesc hex LaTeX 2.09 package and provides documentation. However, the +longdesc author is not a mathematician, and suggestions for rewriting +longdesc the code are welcomed. Warning: this is alpha software and may +longdesc contain bugs. Please report problems to the author. +containersize 1316 +containerchecksum cf36d0bad24180f48a7cddae8fa19c6260ceb5076b21f05e48360a30ec259b342e6a17f1c5d299ce5fe02a8dc5ed7934dd55c5529118bb24dd13cd36242b0d6a +doccontainersize 450432 +doccontainerchecksum 2f7eabf88fe3777ebb1455caed5a339c3b56e0e7a97d34aac0b4c461e7ccf6450de936678ce00e64e39f308167ec55a6b3ec42f7428a7a9c87d2607570e1576b +docfiles size=114 + RELOC/doc/latex/makebase/MANIFEST + RELOC/doc/latex/makebase/README.md details="Readme" + RELOC/doc/latex/makebase/makebase-test.tex + RELOC/doc/latex/makebase/makebase.pdf details="Package documentation" +srccontainersize 15000 +srccontainerchecksum 734e05be1aa54da7bf484fb9211b1f5d6d076c9a87c3287ebd1fe0fa965f542e4e8e14a6df767ccaa23063fc263e66d52b42df54fe3c3142bcf0b3d7f7fd8de0 +srcfiles size=13 + RELOC/source/latex/makebase/makebase.dtx + RELOC/source/latex/makebase/makebase.ins +runfiles size=1 + RELOC/tex/latex/makebase/makebase.sty +catalogue-ctan /macros/latex/contrib/makebase +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 0.2 + +name makebox +category Package +revision 15878 +shortdesc Defines a \makebox* command +relocated 1 +longdesc Define a \makebox* command that does the same as a \makebox +longdesc command, except that the width is given by a sample text +longdesc instead of an explicit length measure. +containersize 952 +containerchecksum 918052ed5c358e12ac7ca7c93f25a43fcfa8f7ba261fdf652d7ccbbcc27e3e0f822813d8297d3b75450c443687bd97e93416624b51da61572557d6a337638bc7 +doccontainersize 272640 +doccontainerchecksum 807d495fdef601fff666acb79c7f3fa43d1aeebf8aed77bebc02f90dca4fb9c36ae1bc911a9af1009538f3d3e2c4c7f9ceb0111d091dd4c1691a1520e089a697 +docfiles size=74 + RELOC/doc/latex/makebox/ChangeLog + RELOC/doc/latex/makebox/README details="Package Readme" + RELOC/doc/latex/makebox/getversion.tex + RELOC/doc/latex/makebox/makebox.pdf details="Package documentation" + RELOC/doc/latex/makebox/makebox.xml + RELOC/doc/latex/makebox/testmakebox.tex +srccontainersize 2892 +srccontainerchecksum 04ab9a02882a505f4393288ae8e5d6be374bdd6aa8a4472da1fb7e2c9e3b4bfc58132921a3287a4c8fe4d8d3fb91ddc33496a088431862407988ade1f716ee85 +srcfiles size=4 + RELOC/source/latex/makebox/Makefile + RELOC/source/latex/makebox/makebox.dtx + RELOC/source/latex/makebox/makebox.ins +runfiles size=1 + RELOC/tex/latex/makebox/makebox.sty +catalogue-ctan /macros/latex/contrib/makebox +catalogue-license lppl +catalogue-topics boxing +catalogue-version 0.1 + +name makecell +category Package +revision 15878 +shortdesc Tabular column heads and multilined cells +relocated 1 +longdesc This package supports common layouts for tabular column heads +longdesc in whole documents, based on one-column tabular environment. In +longdesc addition, it can create multi-lined tabular cells. The Package +longdesc also offers: a macro which changes the vertical space around +longdesc all the cells in a tabular environment (similar to the function +longdesc of the tabls package, but using the facilities of the array) +longdesc macros for multirow cells, which use the facilities of the +longdesc multirow package; macros to number rows in tables, or to skip +longdesc cells; diagonally divided cells; horizontal lines in tabular +longdesc environments with defined thickness. +containersize 4460 +containerchecksum ba32b6a68b0a4cd6df36d460832e5cd9664a9c305c24dbca93a4fce69e97b6db3d86e3f219a0511c7d70378ddd9424d3685d60cabbc8554077c6bfbd8847789b +doccontainersize 690256 +doccontainerchecksum 7c762852f1c7b4609fa823117e765d2b42ad857e2ffa1ca84aa3df74497c88dfc0a2cf05747f11f14453873ee70c4b0f2f890112c567d04ad0d61ada37e14335 +docfiles size=209 + RELOC/doc/latex/makecell/README details="README file" + RELOC/doc/latex/makecell/makecell-rus.pdf details="Package documentation" language="ru" + RELOC/doc/latex/makecell/makecell-rus.tex + RELOC/doc/latex/makecell/makecell.pdf details="Package documentation" language="en" +srccontainersize 14792 +srccontainerchecksum bb2d33b674b612e67bbbc1bf04a68f3804fc37b9e22e19c9af05746efa869ef52db48c5828724b88de130b15120e9ae003f49ea6389f7add98c712550af87d4e +srcfiles size=17 + RELOC/source/latex/makecell/makecell.dtx +runfiles size=4 + RELOC/tex/latex/makecell/makecell.sty +catalogue-ctan /macros/latex/contrib/makecell +catalogue-license lppl +catalogue-topics table +catalogue-version 0.1e + +name makecirc +category Package +revision 15878 +shortdesc A MetaPost library for drawing electrical circuit diagrams +relocated 1 +longdesc MakeCirc is a MetaPost library that contains diverse symbols +longdesc for use in circuit diagrams. MakeCirc offers a high quality +longdesc tool, with a simple syntax. MakeCirc is completely integrated +longdesc with LaTeX documents and with other MetaPost drawing/graphic. +longdesc Its output is a PostScript file. MakeCirc only requires (La)TeX +longdesc and MetaPost to work. +containersize 12296 +containerchecksum 9bba91e5139b90201e232aa3fa21254c5bf8d989aedaec8310209ae6b772d24d7b8c3be379909f04c2c7ff079cca10f43a1f74091a77bb1b8ca637a0743a2ef2 +doccontainersize 473276 +doccontainerchecksum 25190b3a5d911de1d02fa596f604527006f3adf7512afae397e5ba15ab62d6471ab834f92437d35a9f37ed83c8b84990d79ef0fd9ce2b0edfffdfaa2ec97a345 +docfiles size=141 + RELOC/doc/metapost/makecirc/MakeCirc-en.pdf details="Package documentation in English" language="en" + RELOC/doc/metapost/makecirc/MakeCirc.pdf details="Package documentation in Spanish" language="es" + RELOC/doc/metapost/makecirc/README details="Readme" + RELOC/doc/metapost/makecirc/ejemplos.pdf +runfiles size=15 + RELOC/metapost/makecirc/ejemplos.mp + RELOC/metapost/makecirc/latex.mp + RELOC/metapost/makecirc/makecirc.mp +catalogue-ctan /graphics/metapost/contrib/macros/makecirc +catalogue-license lppl +catalogue-topics diagram-circ + +name makecmds +category Package +revision 15878 +shortdesc The new \makecommand command always (re)defines a command +relocated 1 +longdesc The package provides a \makecommand command, which is like +longdesc \(re)newcommand except it always (re)defines a command. There +longdesc is also \makeenvironment and \provideenvironment for +longdesc environments. +containersize 1340 +containerchecksum fb63fdc9cc0aaa531b25417f0c23348971c306b1a93d99e7efdbbfd7c3907b50f28c67f36a88bb2a94154bcbde937e63246ece577ee2440ad4f5c2935eb25b99 +doccontainersize 115620 +doccontainerchecksum f69dbf682df7e3089727570417be3624b496b5ad7db627b344d32b106606cab5299dd23497e137770fdfb9f940503a65e1074e06dd67e0561b36729ab6c3d428 +docfiles size=34 + RELOC/doc/latex/makecmds/README details="Readme" + RELOC/doc/latex/makecmds/makecmds.pdf +srccontainersize 5288 +srccontainerchecksum 380eca4f5fed0ae72cded8f6d3a201cacb05a57851c4c207f086dd17762689cd53a6b27daa23d8043c311adc9baed32808d2c7eb1855892f8113ec7f13c02946 +srcfiles size=5 + RELOC/source/latex/makecmds/makecmds.dtx + RELOC/source/latex/makecmds/makecmds.ins +runfiles size=1 + RELOC/tex/latex/makecmds/makecmds.sty +catalogue-ctan /macros/latex/contrib/makecmds +catalogue-license lppl +catalogue-topics macro-supp + +name makecookbook +category Package +revision 49311 +shortdesc Make a Cookbook +relocated 1 +longdesc The makecookbook bundle contains the files needed to create a +longdesc nice quality family cookbook in a form ready to submit to most +longdesc print-on-demand companies. Modifiable choices have been made +longdesc regarding standard book features such as trim size, margins, +longdesc headers/footers, chapter heading formatting, front matter +longdesc (copyright page, table of contents, etc.) and back matter +longdesc (index). Commands and environments have been created to format +longdesc the food stories and recipes. The user will need to: supply +longdesc their own food stories and recipes(!), and install the needed +longdesc fonts. We assume a LuaTeX compile. Please note that no new +longdesc document class or package is included here. Rather, we provide +longdesc a modifiable preamble and a small number of other files that, +longdesc together, fully support creation of all of the internal pages +longdesc of a cookbook (i.e., everything except the cover art). +containersize 880 +containerchecksum a4fdb7a7553a08b51d15c038187ef621ca6852c20a033b1751c544634c3092f93c3db5c1f4d744732ff6696509d8fa406251e9d14e619397ca4202b55c1b9c64 +doccontainersize 463616 +doccontainerchecksum 84c97dd438e3d3abedce031da5841f789f3b8c28672c9e3b6c53929e2e781a9d51adaec6d883d0008b42f1eae2ed5bbf992ec229bb8b2f7f510346d10dbc31fb +docfiles size=191 + RELOC/doc/lualatex/makecookbook/README.old + RELOC/doc/lualatex/makecookbook/README.txt details="Readme" + RELOC/doc/lualatex/makecookbook/makecookbook-doc.pdf details="Package documentation" + RELOC/doc/lualatex/makecookbook/makecookbook-doc.tex + RELOC/doc/lualatex/makecookbook/mycookbook/cb-idxstyle.ist + RELOC/doc/lualatex/makecookbook/mycookbook/cb-lettrine.cfl + RELOC/doc/lualatex/makecookbook/mycookbook/cb-preamble.tex + RELOC/doc/lualatex/makecookbook/mycookbook/img/image-a.jpg + RELOC/doc/lualatex/makecookbook/mycookbook/img/image-b.jpg + RELOC/doc/lualatex/makecookbook/mycookbook/makecookbook.pdf + RELOC/doc/lualatex/makecookbook/mycookbook/makecookbook.tex + RELOC/doc/lualatex/makecookbook/mycookbook/tex/cb-chapterA.tex + 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-license lppl1.3c +catalogue-topics book-pub cooking luatex +catalogue-version 0.85 + +name makedtx +category Package +revision 46702 +shortdesc Perl script to help generate dtx and ins files +longdesc The makedtx bundle is provided to help LaTeX2e developers to +longdesc write the code and documentation in separate files, and then +longdesc combine them into a single .dtx file for distribution. It +longdesc automatically generates the character table, and also writes +longdesc the associated installation (.ins) script. +depend makedtx.ARCH +containersize 7784 +containerchecksum e083fa791975cef84b2e2ba3472984e354d5ced50ae7fb96dd8239cfffd379e7a25fdab80abcb721e63dfb10d9557bce69e97c5624d1635f894bcd26e22b5f4d +doccontainersize 269240 +doccontainerchecksum 913f6f02ff478ab5edeed4792846ee6bc06d28c16fd3d7396d394f4a964d6f39a12c8163d66a50a5bf53add151317184b09a712dfd32f9ff783bda7f520c7eef +docfiles size=78 + texmf-dist/doc/support/makedtx/CHANGES.org + texmf-dist/doc/support/makedtx/README.txt details="Readme" + texmf-dist/doc/support/makedtx/latexmkrc.pl + texmf-dist/doc/support/makedtx/makedtx-version.tex + texmf-dist/doc/support/makedtx/makedtx.pdf details="Package documentation (PDF format)" +srccontainersize 16152 +srccontainerchecksum 84e12e7798c37a598a2d37fa7faa206ffb6f5c1f9c21af7130a9f05bebf9857f2a4fb7988be55a9936199694a0d74595ff75a1261187d81fd06beda5e0628931 +srcfiles size=16 + texmf-dist/source/support/makedtx/makedtx.dtx + texmf-dist/source/support/makedtx/makedtx.ins +runfiles size=8 + texmf-dist/scripts/makedtx/makedtx.pl + texmf-dist/tex/latex/makedtx/createdtx.sty +catalogue-also sty2dtx +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latex-makedtx +catalogue-contact-development https://puszcza.gnu.org.ua/project/memberlist.php?group=latex-makedtx +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-license lppl +catalogue-topics package-devel +catalogue-version 1.2 + +name makedtx.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of makedtx +containersize 340 +containerchecksum 47343181e09d6c7b5d60293984eae06c68b2670135378fbbe8ad79cf87f6b815769dbcc10c9dad868992b42f9065aa766cd3ea8c7e989f838f4ec61892d1186c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/makedtx + +name makedtx.amd64-freebsd +category Package +revision 38769 +shortdesc amd64-freebsd files of makedtx +containersize 344 +containerchecksum 17242395b75ddae478f02f0dd6f8841aafdd59b3f1f1233996d05f0e504a50015570a85a1a6b17a62460fb8f35e8fd4d89070d8453df98cf7c5209bbed6c3299 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/makedtx + +name makedtx.amd64-netbsd +category Package +revision 38769 +shortdesc amd64-netbsd files of makedtx +containersize 340 +containerchecksum e91d2b6036f96d574879017383eed865da6b9ce0e442d578c7d31bd461311ffc41c919f8dc80caf37819432fc33e74b57c032fb271570689c31543fbc1e75330 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/makedtx + +name makedtx.armhf-linux +category Package +revision 38769 +shortdesc armhf-linux files of makedtx +containersize 340 +containerchecksum f3faf72357ebd72adf7e204f03cf75ba3d9007ace1bb476de0807aa2aefbeff758d6b0aeb64ddc0e3cf560bdafe2322724daa2486472037cb2533004de9f6e45 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/makedtx + +name makedtx.i386-cygwin +category Package +revision 38769 +shortdesc i386-cygwin files of makedtx +containersize 340 +containerchecksum 946cd60df793ed893925bbc81d4f416c79ad8d11f56368f2eac94f1a41a2c6a30ecb7722f972ed05b05d4efe70ba025e7eb44bfbc50b3e3cb470f80e8fdc2bba +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/makedtx + +name makedtx.i386-freebsd +category Package +revision 38769 +shortdesc i386-freebsd files of makedtx +containersize 344 +containerchecksum c641555a900b8800cbd90332bfa48fcf11377de27e3e60f236aa97425224aa486bdb4b655ba65480944025ed0d6117b63f93963e1f4bb63f6b8e428939e08475 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/makedtx + +name makedtx.i386-linux +category Package +revision 38769 +shortdesc i386-linux files of makedtx +containersize 340 +containerchecksum cb084ba573365cbeb04f21d7f1387183a11dc795e723bc463a28942e7e6246b2c48590a03edb685b998cb8300c4e0490f46fbb29bb350f155a96c002b2a6bb6c +binfiles arch=i386-linux size=1 + bin/i386-linux/makedtx + +name makedtx.i386-netbsd +category Package +revision 38769 +shortdesc i386-netbsd files of makedtx +containersize 340 +containerchecksum 4a53a665201edc83931c568009f74762845b56f3127cdd81e1665ecfa1d4b34e6bf38d9c9366eeecbd4a2370f16c1d7d325df54a3c4b446d3c7c9867b1b55b71 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/makedtx + +name makedtx.i386-solaris +category Package +revision 38769 +shortdesc i386-solaris files of makedtx +containersize 340 +containerchecksum 6f9d12603eefae901d64de9971fb7b7ef3bb2fa476d889399bd20e9a0de21a6d7385f26e5edcc331915b907bdf7797d72b81a54d62910f016dd7d12cbb1b70e8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/makedtx + +name makedtx.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of makedtx +containersize 340 +containerchecksum 2157c4bf2d3ae32482c6418ce05aa805abc9755dee43391090023c9e54b6b93e0ddf07bfb80d0d9890638fc3ee73481119c1d2c9ac0423a972d0caa9a06dd015 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/makedtx + +name makedtx.win32 +category Package +revision 38769 +shortdesc win32 files of makedtx +containersize 684 +containerchecksum 106f9a088b5d507c8771039ef2c89fde62e404d55e417c284532a6ba5a5fe46e50a25a1237b152ef2fdf8cd8f3f1b03bd399d6dde8af3bda7c9538bf13bce62a +binfiles arch=win32 size=1 + bin/win32/makedtx.exe + +name makedtx.x86_64-cygwin +category Package +revision 38769 +shortdesc x86_64-cygwin files of makedtx +containersize 344 +containerchecksum ed5700da12eda85b45478c91f9c344dcd57f9ba522776704eaf0302cebbf99c1439137a32de4f6e6180c5a09fffc8580f3d99de92d26c492cde765effaa2055e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/makedtx + +name makedtx.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of makedtx +containersize 348 +containerchecksum 490b03c7dd126f1298cae0de1bc4376567de64c42e0e8f805e22db59a7070a893dddd15aa5c8b66950a3f5866c28fd24b1ea8ffdf746a2f25d95344063bdb133 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/makedtx + +name makedtx.x86_64-linux +category Package +revision 38769 +shortdesc x86_64-linux files of makedtx +containersize 340 +containerchecksum a34185b5a72fc5c0aa70daefc812b0622b1df310e9f6addab8825bb5b90a9cf8ba113593bd628b84926a3cbed5a9bd11df8f948ee01295e44f61bffb6ee4acbc +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/makedtx + +name makedtx.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of makedtx +containersize 344 +containerchecksum f5f49956b5c26ba5feff4c14b95c1ac2ba6899c2c1793c348b177efd934bf5616198f92754fbcb96c40c2b50bf030e3ebb3052599ab2119cb8e8cf3a4cb55b7d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/makedtx + +name makedtx.x86_64-solaris +category Package +revision 38769 +shortdesc x86_64-solaris files of makedtx +containersize 344 +containerchecksum 2050a2432b66aff927d6f7424c214d72e80be62311f4ac2d16db3950badf6307e1fc6db829a17cdc6ee1c5aa869f1c484b808b7035cfa25d75b27dca3f3d1a71 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/makedtx + +name makeglos +category Package +revision 15878 +shortdesc Include a glossary into a document +relocated 1 +longdesc The package provides the means to include a glossary into a +longdesc document. The glossary is prepared by an external program, such +longdesc as xindy or makeindex, in the same way that an index is made. +containersize 808 +containerchecksum 477523d4663e1e4a1fd6bb830e4574d6d116180b06a3199d6ba27f7cf704a1906a2812496e9a7ba8063690a2095fbd5022a5eb8c2448b1e0341c8a961cf05794 +doccontainersize 54248 +doccontainerchecksum c580a23d65422d8405ce011fb6b088f53836811e3da517423f6d0dce098ffbd64c0648318eb9fb74ab637e1796d19247ee87ca8a25c7d306e3dc35a5d6d79f99 +docfiles size=18 + RELOC/doc/latex/makeglos/README details="Readme" + RELOC/doc/latex/makeglos/makeglos.pdf details="Package documentation" + RELOC/doc/latex/makeglos/makeglos.tex + RELOC/doc/latex/makeglos/makeglos.xdy +runfiles size=1 + RELOC/tex/latex/makeglos/makeglos.sty +catalogue-also nomencl glosstex gloss +catalogue-ctan /macros/latex/contrib/makeglos +catalogue-license gpl +catalogue-topics glossary + +name makeindex +category Package +revision 52851 +catalogue makeindexk +shortdesc Makeindex development sources +longdesc The package contains the development sources of makeindex, as +longdesc derived from the texlive subversion repository. +depend makeindex.ARCH +containersize 4628 +containerchecksum 7f4df4944bc738e92ccd7fe54e1448a9ead71077d25359d6b97d18ed9df4dde2e6db31bbb183c646ea902e24b5cb15581ef12eaecfe90ba08361dd191e5220d2 +doccontainersize 466032 +doccontainerchecksum 492d0bb6f44ebc0440998f55b51ec5bce5ad564918296f85245ab10bd9ef67f8a2e441560ed7aeba8af2cdb0a923f225dd867454ee83889252da6be36f89ab16 +docfiles size=131 + texmf-dist/doc/man/man1/makeindex.1 + texmf-dist/doc/man/man1/makeindex.man1.pdf + texmf-dist/doc/man/man1/mkindex.1 + texmf-dist/doc/man/man1/mkindex.man1.pdf + texmf-dist/doc/support/makeindex/doc-src.zip + texmf-dist/doc/support/makeindex/ind.pdf + texmf-dist/doc/support/makeindex/makeindex.pdf +runfiles size=9 + texmf-dist/makeindex/base/din.ist + texmf-dist/makeindex/base/icase.ist + texmf-dist/makeindex/base/latex.ist + texmf-dist/makeindex/base/math.ist + texmf-dist/makeindex/base/mkind.ist + texmf-dist/makeindex/base/puncts.ist + texmf-dist/makeindex/base/tex.ist + texmf-dist/tex/plain/makeindex/idxmac.tex +catalogue-ctan /indexing/makeindexk +catalogue-license other-free +catalogue-topics index + +name makeindex.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of makeindex +containersize 47248 +containerchecksum 2a3915b88266bc9ec1b7772ddef055ea97088f6b70b8b71238621b683eabd6d1fe90ac80961fffbdad6759a473562637bcf73beee00478c7d5eab7a5ae1326c8 +binfiles arch=aarch64-linux size=39 + bin/aarch64-linux/makeindex + bin/aarch64-linux/mkindex + +name makeindex.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of makeindex +containersize 49052 +containerchecksum 1539d603326f9294cc1f86a543be08d6141577326ec2940def62e2fadc6a2a07ac0cf747c485432f8aaf20116590adeb9a49d16109f6fa8a6db9703c9e82de1e +binfiles arch=amd64-freebsd size=38 + bin/amd64-freebsd/makeindex + bin/amd64-freebsd/mkindex + +name makeindex.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of makeindex +containersize 44276 +containerchecksum c62fe96fde4a2941c6bf152550928bb1a845ac73059276bc2b02f575e0cebc99647ddefd9fbd5154f3059fbe0ac902beb271eba9aafd2aa6b9151815e2586375 +binfiles arch=amd64-netbsd size=43 + bin/amd64-netbsd/makeindex + bin/amd64-netbsd/mkindex + +name makeindex.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of makeindex +containersize 40056 +containerchecksum 970482c8ffbe6849188aaeff04578f93821fd8bab1d4009a1483e21a54e9c1017e0743d6e4080fb80e141796e7b5f68bd0c6387a9687aca9c51fabad7259d562 +binfiles arch=armhf-linux size=33 + bin/armhf-linux/makeindex + bin/armhf-linux/mkindex + +name makeindex.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of makeindex +containersize 19036 +containerchecksum 55e75fe0fee829041d03db21d222fd122ae58442189fa6004259b0f5442256a09beaddf34e4f175b70935cde6c66c74c159b6814215ff2e70dad8f69546c735e +binfiles arch=i386-cygwin size=21 + bin/i386-cygwin/makeindex.exe + bin/i386-cygwin/mkindex + +name makeindex.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of makeindex +containersize 41860 +containerchecksum babca9dede68889c6345a3454dffeabda56d81bfbe51778e26a7afda93d129aada0233ab8adfdf74884c0ca54801a003e81f2515395d5e3e43f413627a0840d0 +binfiles arch=i386-freebsd size=33 + bin/i386-freebsd/makeindex + bin/i386-freebsd/mkindex + +name makeindex.i386-linux +category Package +revision 57878 +shortdesc i386-linux files of makeindex +containersize 50576 +containerchecksum 07a030907cb7e4e795753e525be3699b5fff5ade2cf40178147fe23c1df2da65893bd641fbe1f3dd9daf3251525febd019653febb2991bf0fe133339827e06d2 +binfiles arch=i386-linux size=40 + bin/i386-linux/makeindex + bin/i386-linux/mkindex + +name makeindex.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of makeindex +containersize 38944 +containerchecksum b453e5302fdb34ed8ad2258ed62f1e3c970f63c1edea8e146295545cacdfd40ca6071fc6bc29c0e843852b7bf841556d9dba484dd8e71145ab7f54103a285ca9 +binfiles arch=i386-netbsd size=41 + bin/i386-netbsd/makeindex + bin/i386-netbsd/mkindex + +name makeindex.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of makeindex +containersize 45984 +containerchecksum d8cf16ab7dcd0cb73be36ec1f7b772ec13af7e33719b4588a267484f89dbaf9c083e075c5f80a3f24d004d0dd4ef912600c7709a0699b511ddbaa34b00872021 +binfiles arch=i386-solaris size=35 + bin/i386-solaris/makeindex + bin/i386-solaris/mkindex + +name makeindex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of makeindex +containersize 92848 +containerchecksum 343c2db9a3c8a17e1f009ec17833ff6fd647cf068e41558c3e40a321f0d6392f0248223b76bab9ba75a9e18f230dc783b1594abe2298f304d53ec69a53c546d1 +binfiles arch=universal-darwin size=88 + bin/universal-darwin/makeindex + bin/universal-darwin/mkindex + +name makeindex.win32 +category Package +revision 58783 +shortdesc win32 files of makeindex +containersize 18204 +containerchecksum eef29348200f32e1177f31e3689dfc912bfb8cb180a4892831b721b8006109cb354c863d0f7356e48a3a7ee9ebfd43e1c9bec09fe1ed07a122626bfd25fe7dda +binfiles arch=win32 size=21 + bin/win32/makeindex.exe + +name makeindex.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of makeindex +containersize 21556 +containerchecksum b9ffaacc974087dabe6893c2c67ac8b1f4a1be675fcef0e015236fd5090910b12ec6c9bc0e45a1b4410c56bd1fc764c818066cf8740c83c76871b26fb55acb5a +binfiles arch=x86_64-cygwin size=21 + bin/x86_64-cygwin/makeindex.exe + bin/x86_64-cygwin/mkindex + +name makeindex.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of makeindex +containersize 46448 +containerchecksum 54d4c80b93587c54d7cfa6e5789a0665d2af629a58ed0fabe958420a005c6a679f00c1b669b603d00c10360e8261daf727ec79d4b4a036ebf13ad2ba1ead075d +binfiles arch=x86_64-darwinlegacy size=35 + bin/x86_64-darwinlegacy/makeindex + bin/x86_64-darwinlegacy/mkindex + +name makeindex.x86_64-linux +category Package +revision 57878 +shortdesc x86_64-linux files of makeindex +containersize 49692 +containerchecksum ed7ef6cbba976d17d86d0650cff630633cda8f2ffcc434adf944f60b802d8a334c71eefb7a160a22e31d98df848c44989e3e09e08658f63f2727fef3da4fdeb2 +binfiles arch=x86_64-linux size=37 + bin/x86_64-linux/makeindex + bin/x86_64-linux/mkindex + +name makeindex.x86_64-linuxmusl +category Package +revision 57878 +shortdesc x86_64-linuxmusl files of makeindex +containersize 51364 +containerchecksum 2dc913ea2a2535ef51b0b250369d40f50ff74edd8220c4d486e7e93fb6a7a50105a05482a75e0cb76af7abbbba1784a5b317135692dde99eea3c1e5688b22438 +binfiles arch=x86_64-linuxmusl size=38 + bin/x86_64-linuxmusl/makeindex + bin/x86_64-linuxmusl/mkindex + +name makeindex.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of makeindex +containersize 51588 +containerchecksum 23f7c5ddecb55f41db38bbfb914447349d4b950a04576d6d08ccd54217ef74ef2d3e0a0c46830f96f73791c6e71085a5694e0ac45de4798e4aa8c3a25472772e +binfiles arch=x86_64-solaris size=39 + bin/x86_64-solaris/makeindex + bin/x86_64-solaris/mkindex + +name makeplot +category Package +revision 15878 +shortdesc Easy plots from Matlab in LaTeX +relocated 1 +longdesc Existing approaches to create EPS files from Matlab (laprint, +longdesc mma2ltx, print -eps, etc.) aren't satisfactory; makeplot aims +longdesc to resolve this problem. Makeplot is a LaTeX package that uses +longdesc the pstricks pst-plot functions to plot data that it takes from +longdesc Matlab output files. +containersize 4660 +containerchecksum 366e9ec4ce551e17ae6e77f068b0d2fb46582c033eb27781cd620a87731eba744212db8dde9ce8e50318f280dfe31e61a344ab4232c3bf26040dd7a2290d4fef +doccontainersize 129276 +doccontainerchecksum 9aa863af450a66201e7cb3d3a58d9248430aa26cca9b50de4c71c350314ac9c0f6fe54e5eb1b37917a75030a60ca18102933f154bdeb7831ca02bdaa65b3a6bf +docfiles size=40 + RELOC/doc/latex/makeplot/README details="Readme" + RELOC/doc/latex/makeplot/data1.mat + RELOC/doc/latex/makeplot/data2.mat + RELOC/doc/latex/makeplot/makeplot.pdf details="Package documentation" + RELOC/doc/latex/makeplot/mptest.tex +srccontainersize 11680 +srccontainerchecksum b4f0e0de72c005124b7e83f214111931ca2ba03ae5f1270b5d10ff790c6fd84cb02950aed7377deae2c432de55b7822ddc68b9911b608b0460c7800f375fcecb +srcfiles size=12 + RELOC/source/latex/makeplot/makeplot.dtx + RELOC/source/latex/makeplot/makeplot.ins +runfiles size=5 + RELOC/tex/latex/makeplot/makeplot.sty +catalogue-ctan /graphics/pstricks/contrib/makeplot +catalogue-license lppl +catalogue-topics graphics-plot +catalogue-version 1.0.6 + +name maker +category Package +revision 44823 +shortdesc Include Arduino or Processing code in LaTeX documents +relocated 1 +longdesc The first version of the package allows to include Arduino or +longdesc Processing code using three different forms: writing the code +longdesc directly in the LaTeX document writing Arduino or Processing +longdesc commands in line with the text calling to Arduino or Processing +longdesc files All these options support the syntax highlighting of the +longdesc oficial IDE. +containersize 4336 +containerchecksum d8cefc4d4389e4024c448400f02bc0ef0a21146c1d079f804f5e102ee3f2977be7fdd2c1011672b70192af48693ab1fcc38bc1d6f7711fce217792e82f0e5e54 +doccontainersize 692 +doccontainerchecksum fb7f68b4c48de87e6c1e380525a998bd1cf7578c2e4a51551b5ab4909481e66faf38f0a74083f25954b5d05e9eda12e56734351fab063f80955abf24eadc0e21 +docfiles size=2 + RELOC/doc/latex/maker/README details="Readme" + RELOC/doc/latex/maker/README.TEXLIVE +runfiles size=3 + RELOC/tex/latex/maker/maker.sty +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-license lppl1.3c +catalogue-topics listing synt-hlt +catalogue-version 1.0 + +name makerobust +category Package +revision 52811 +shortdesc Making a macro robust (legacy package) +relocated 1 +longdesc Heiko Oberdiek's makerobust package defined a command with name +longdesc \MakeRobustCommand that could be used to make fragile commands +longdesc robust. The LaTeX format has, since 2015, included a command +longdesc \MakeRobust with the same syntax and behaviour. Also by 2019, +longdesc almost all commands in LaTeX that may be used in a moving +longdesc argument are already robust. This package is now just a simple +longdesc one-liner defining the name \MakeRobustCommand as an alias for +longdesc \MakeRobust. This package should not be used in any new +longdesc documents. +containersize 1036 +containerchecksum 502b4dd65ae3535a2519c696b8b2ef73b3eb8f19d20af7dce94e24c8f718f827e55ddf7ff229bfc0810ab8747c94720cc7a66335a7d44065d0a0ac6b156a683e +doccontainersize 66632 +doccontainerchecksum 4503551b0085c7c829d41042083209bc02dfd2391f99cf0fabafb363e288a455e51273bf0f9d4ff5a5fe17050fb5288a7835742e06865407b8400c88244f4e6e +docfiles size=19 + RELOC/doc/latex/makerobust/README.md details="Readme" + RELOC/doc/latex/makerobust/makerobust.pdf details="Package documentation" language="en" + RELOC/doc/latex/makerobust/makerobust.tex +runfiles size=1 + RELOC/tex/latex/makerobust/makerobust.sty +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-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 2.0 + +name makeshape +category Package +revision 28973 +shortdesc Declare new PGF shapes +relocated 1 +longdesc The package simplifies production of custom shapes with correct +longdesc anchor borders, in PGF/TikZ; the only requirement is a PGF path +longdesc describing the anchor border. The package also provides macros +longdesc that help with the management of shape parameters, and the +longdesc definition of anchor points. +containersize 1888 +containerchecksum b13358696b16b41a69e5a207fcfb717b417ec191ae9f6ad4408422b1ce99c3785a3328cf9bd2e87ade3ede4998ba76ddb2f640e06ef5ce88172942e4d0cf2bfe +doccontainersize 750376 +doccontainerchecksum a249c636b414203e75225af611173add2e90af306d4a78c7d865fdd0e76b23637fb3b8eb41f127905bbd0065cc7b941d3d26e3ee73b9aad56e05ed0a44f67d57 +docfiles size=220 + RELOC/doc/latex/makeshape/README details="Readme" + RELOC/doc/latex/makeshape/makeshape.pdf details="Package documentation" + RELOC/doc/latex/makeshape/ontesting.pdf details="Package test procedure" + RELOC/doc/latex/makeshape/sampleshape.tex + RELOC/doc/latex/makeshape/testsample.pdf + RELOC/doc/latex/makeshape/testsample.tex +srccontainersize 18928 +srccontainerchecksum 43886cdf9c2da20943bcf0403e05fe19c035cd3d49af9afa52212c376a2ecae9ad963a24c257b70e3dcee448f42ee1464e63dcb0c5addd7018234658867d3179 +srcfiles size=27 + RELOC/source/latex/makeshape/makeshape.dtx + RELOC/source/latex/makeshape/makeshape.ins + RELOC/source/latex/makeshape/ontesting.dtx +runfiles size=2 + RELOC/tex/latex/makeshape/makeshape.sty +catalogue-ctan /graphics/pgf/contrib/makeshape +catalogue-license lppl1.3 +catalogue-topics pgf-tikz +catalogue-version 2.1 + +name mandi +category Package +revision 49720 +shortdesc Macros for introductory physics and astronomy +relocated 1 +longdesc The package contains commands for students and teachers of +longdesc introductory physics. Commands for physical quantities +longdesc intelligently handle SI units so the user need not do so. There +longdesc are other features that should make LaTeX easy for introductory +longdesc physics students. +containersize 15460 +containerchecksum a22c6cd667b7a256cdb0d1f975d214890811ad047d3eddc96e1289fd22a8ce9035183c5c1f6a876d7bab85bf8bba9626d36c2edbc8abbd060c0ebafca6b84932 +doccontainersize 1321444 +doccontainerchecksum 60cc9d6215525424b3e05af173a533d3781d1eed50d1e89e3d31f80274ab2b91033d45254eb419ec9a9a4e7553f50ac9c737ac82daea8dfbf29ba077d69ce5b2 +docfiles size=331 + RELOC/doc/latex/mandi/README details="Readme" + RELOC/doc/latex/mandi/mandi.pdf details="Package documentation" + RELOC/doc/latex/mandi/vdemo.py +srccontainersize 49568 +srccontainerchecksum 2b05284ec86ac90ae6e136c96b2eeb0215ce3cb7d9b9f85aa14f047c596e7b47c8c618ec5d4ee0a99d624b737fbc8a3f026895bc9a8b2d465fb3dd7fa2ea806e +srcfiles size=86 + RELOC/source/latex/mandi/mandi.dtx + RELOC/source/latex/mandi/mandi.ins +runfiles size=24 + RELOC/tex/latex/mandi/mandi.sty +catalogue-also siunitx +catalogue-ctan /macros/latex/contrib/mandi +catalogue-license lppl1.3 +catalogue-topics physics +catalogue-version 2.7.5 + +name manfnt +category Package +revision 54684 +shortdesc LaTeX support for the TeX book symbols +relocated 1 +longdesc A LaTeX package for easy access to the symbols of the Knuth's +longdesc 'manual' font, such as the Dangerous Bend and Manual-errata +longdesc Arrow. +containersize 1420 +containerchecksum 492dff2a46b9c0e89b8e29149546dfc736195f7f264b156fd91f4e8d1396f43b149948df656c7b148a2d54064fba89e033179b31eeaf03d0037875e36e9b4244 +doccontainersize 249564 +doccontainerchecksum 469280a4576d3b8396f310ba627f5a69f8fe47604f39562321d9b3b7d2f3e81f8d2c0ff7cd18ae4a93d9125df0fba79744edf0b30d036916a8259dc39adbdddc +docfiles size=61 + RELOC/doc/latex/manfnt/manfnt.pdf details="Package documentation" +srccontainersize 6648 +srccontainerchecksum c90ac97080e2c0c767673f7128e1850427218bb4b05024401fe37aae71ae65f1feae2e11301055dbe6b74fe56e7b16bee4ba1fe0f1a1defbc07763fc5f5cdeb0 +srcfiles size=7 + RELOC/source/latex/manfnt/manfnt.dtx + RELOC/source/latex/manfnt/manfnt.ins +runfiles size=1 + RELOC/tex/latex/manfnt/manfnt.sty +catalogue-ctan /macros/latex/contrib/manfnt +catalogue-license lppl +catalogue-topics font-supp + +name manfnt-font +category Package +revision 45777 +catalogue manual +shortdesc Knuth's "manual" fonts +relocated 1 +longdesc Metafont (by Donald Knuth) and Adobe Type 1 (by Taco Hoekwater) +longdesc versions of the font containing the odd symbols Knuth uses in +longdesc his books. LaTeX support is available using the manfnt package +execute addMixedMap manfnt.map +containersize 25916 +containerchecksum fe7ddf667368990f988005a44013aab80af9c097f4f824f717d84fddfd61dfc658f507d5b1bf8f7c076be1bd5a4363f117b388ecd39b0ce2b0ee5fc8aa83fd4c +runfiles size=13 + RELOC/fonts/afm/hoekwater/manfnt-font/manfnt.afm + RELOC/fonts/map/dvips/manfnt-font/manfnt.map + RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfb + RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfm +catalogue-ctan /fonts/manual +catalogue-license knuth +catalogue-topics font font-mf font-type1 font-symbol + +name manuscript +category Package +revision 36110 +shortdesc Emulate look of a document typed on a typewriter +relocated 1 +longdesc This package is designed for those who have to submit +longdesc dissertations, etc., to institutions that still maintain the +longdesc typewriter is the summit of non-professional printing. +containersize 1732 +containerchecksum 24e4c800ba6f5089ae76b6d444c81689fa696cd2fd9e62281171d771f8f9f065320b53b058cc6adf836f36d378f6f7fece98e8c09e2b655ecaa8884067bd696a +doccontainersize 53188 +doccontainerchecksum baaa102f870cc307fe96b583f74c19c7ef2c7649f01fe7985c3dcd331539bc9d839f6e34aa238354b6932d14638b77e83b7bf8e62296c36fc2dba18f776271a6 +docfiles size=15 + RELOC/doc/latex/manuscript/Makefile + RELOC/doc/latex/manuscript/README details="Readme" + RELOC/doc/latex/manuscript/manuscript.pdf details="Package documentation" +srccontainersize 5636 +srccontainerchecksum 0cc418f2b5538035123d81f6702031d97bf99fa6733d491b306981ae698f3cad9bd121a20410329b8428b5c14749e825052544cdc52b9c8457d7e302dfc64888 +srcfiles size=6 + RELOC/source/latex/manuscript/manuscript.drv + RELOC/source/latex/manuscript/manuscript.dtx + RELOC/source/latex/manuscript/manuscript.ins +runfiles size=1 + RELOC/tex/latex/manuscript/manuscript.sty +catalogue-contact-repository https://gitlab.com/mcepl/manuscript +catalogue-ctan /macros/latex/contrib/manuscript +catalogue-license lppl +catalogue-topics typesetting +catalogue-version 1.7 + +name manyind +category Package +revision 49874 +shortdesc Provides support for many indexes +relocated 1 +longdesc This package provides support for many indexes, leaving all the +longdesc bookkeeping to LaTeX and makeindex. No extra programs or files +longdesc are needed. One runs latex and makeindex as if there is just +longdesc one index. In the main file one puts commands like +longdesc \setindex{main} to steer the flow. Some features of makeindex +longdesc may no longer work. +containersize 2900 +containerchecksum e08291b4cb0d2c18e6b97cf6a287d7cf5b49eb312138910185845b6c0a075981a15548de2dded6f597605aef885e736c17b5306328574473aa56f8f11b6b8288 +doccontainersize 157580 +doccontainerchecksum e8d9c687c1b3525c5e4d218a380781f1b2e7d512b053a583b00c97f0b7eefa1202dea310454065194039841bf8763acc2b0c4712ca8d5e9d31b57cf03c50b928 +docfiles size=43 + RELOC/doc/latex/manyind/README.md details="Readme" + RELOC/doc/latex/manyind/mind.html details="Package documentation" + RELOC/doc/latex/manyind/mindsample.pdf + RELOC/doc/latex/manyind/mindsample.tex +runfiles size=2 + RELOC/tex/latex/manyind/manyind.sty +catalogue-also multind splitindex +catalogue-contact-home https://www.staff.science.uu.nl/~kalle101/mind.html +catalogue-ctan /macros/latex/contrib/manyind +catalogue-license lppl1.2 +catalogue-topics index-multi + +name marathi +category Package +revision 58760 +shortdesc Typeset Marathi language using XeLaTeX or LuaLaTeX +relocated 1 +longdesc luaa-laattek v jhii-laattek hyaaNcyaash mraatthiicaa sulbh +longdesc vaapr krnnyaasaatthii. laattek-vriil mraatthiicyaa +longdesc sthaanikiikrnnaace kaam hyaa aajnyaasNcaamaarpht kele jaaiil. +longdesc expex v blindtext hyaa aajnyaasNcaaNce sthaanikiikrnn tuurtaas +longdesc hyaa aajnyaasNcaamaarpht purvle jaat aahe. For conveniently +longdesc typesetting Marathi language with LuaLaTeX and XeLaTeX. This +longdesc package will provide localizations needed for the Marathi +longdesc language. Currently the package localizes package blindtext and +longdesc package expex. +containersize 5244 +containerchecksum d3ee0acee2b3a7f7521e3af6406ee747e1af4ccb8b4f53701d753e174f5784df6bbd64d662f25254ada8de9bbc147bedc42d332f0b1643f19cb7c914d0389000 +doccontainersize 189576 +doccontainerchecksum efd2f3ad9a08022009823700d9afd0f0928f304a363ce2ffbd5485448b40e426efaba8187a6b3cd144ba6ba82476f9efee8c71e8fe00f6c6d9d3faa405ed22ae +docfiles size=62 + RELOC/doc/latex/marathi/COPYING + RELOC/doc/latex/marathi/LICENSE.md + RELOC/doc/latex/marathi/README.txt details="Readme" + RELOC/doc/latex/marathi/marathi.pdf details="Package documentation" language="mr" +srccontainersize 17656 +srccontainerchecksum f02b1245d7ee3d5516e66f4176bb30ee44fdd47daa4189a2b8cf62359ba12d2cfde331ef901a64f54efbb739bbc9b555d7d94ff755ded64961769f63407291be +srcfiles size=19 + RELOC/source/latex/marathi/marathi.dtx + RELOC/source/latex/marathi/marathi.ins +runfiles size=15 + RELOC/tex/latex/marathi/marathi.sty + RELOC/tex/latex/marathi/namuna-article.tex + RELOC/tex/latex/marathi/namuna-beamer.tex + RELOC/tex/latex/marathi/namuna-book.tex + RELOC/tex/latex/marathi/namuna-letter.tex + RELOC/tex/latex/marathi/namuna-para.tex + RELOC/tex/latex/marathi/namuna-report.tex +catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/marathi/-/issues +catalogue-contact-repository https://gitlab.com/niranjanvikastambe/marathi/ +catalogue-ctan /language/marathi +catalogue-license gpl3+ other-free +catalogue-topics indic marathi +catalogue-version 1.6.2 + +name marcellus +category Package +revision 56016 +shortdesc Marcellus fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Marcellus family of fonts, designed by Brian J. +longdesc Bonislawsky. Marcellus is a flared-serif family, inspired by +longdesc classic Roman inscription letterforms. There is currently just +longdesc a regular weight and small-caps. The regular weight will be +longdesc silently substituted for bold. +execute addMap marcellus.map +containersize 178120 +containerchecksum 2958f2c7aaf431dd220ead4c6026ee501d46da5a98274a14b15215e00bd0d43e49bffdde0a66149c8c1d0a6535b3661d728537fd24ada2ef3e286d485856f755 +doccontainersize 19864 +doccontainerchecksum 2e28359a2e08837e2bc6c1076caf5e45b59e69bfe0d6ebf8763780642e1454a481b1cdd635f8dc804b8e75ed3251567bd895ec3eaf9d523454b65a5179393d6c +docfiles size=9 + RELOC/doc/fonts/marcellus/OFL.txt + RELOC/doc/fonts/marcellus/README details="Readme" + RELOC/doc/fonts/marcellus/marcellus-samples.pdf details="Font samples" + RELOC/doc/fonts/marcellus/marcellus-samples.tex +runfiles size=112 + RELOC/fonts/enc/dvips/marcellus/mrcls_37huou.enc + RELOC/fonts/enc/dvips/marcellus/mrcls_5az7w7.enc + RELOC/fonts/enc/dvips/marcellus/mrcls_cvodtw.enc + RELOC/fonts/enc/dvips/marcellus/mrcls_rfafok.enc + RELOC/fonts/enc/dvips/marcellus/mrcls_rwr7kk.enc + RELOC/fonts/enc/dvips/marcellus/mrcls_rzkwvt.enc + RELOC/fonts/enc/dvips/marcellus/mrcls_stzmvz.enc + RELOC/fonts/map/dvips/marcellus/marcellus.map + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/Mrcls-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-sup-sc-ly1.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-sup-sc-ot1.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-sup-sc-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/MrclsSC-Regular-sup-sc-t1.tfm + RELOC/fonts/truetype/public/marcellus/Marcellus-Regular.ttf + RELOC/fonts/truetype/public/marcellus/MarcellusSC-Regular.ttf + RELOC/fonts/type1/public/marcellus/Mrcls-Regular.pfb + RELOC/fonts/type1/public/marcellus/MrclsSC-Regular.pfb + RELOC/fonts/vf/public/marcellus/Mrcls-Regular-lf-ly1.vf + RELOC/fonts/vf/public/marcellus/Mrcls-Regular-lf-t1.vf + RELOC/fonts/vf/public/marcellus/Mrcls-Regular-lf-ts1.vf + RELOC/fonts/vf/public/marcellus/Mrcls-Regular-sup-ly1.vf + RELOC/fonts/vf/public/marcellus/Mrcls-Regular-sup-t1.vf + RELOC/fonts/vf/public/marcellus/MrclsSC-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/marcellus/MrclsSC-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/marcellus/MrclsSC-Regular-sup-sc-ly1.vf + RELOC/fonts/vf/public/marcellus/MrclsSC-Regular-sup-sc-t1.vf + RELOC/tex/latex/marcellus/LY1Mrcls-LF.fd + RELOC/tex/latex/marcellus/LY1Mrcls-Sup.fd + RELOC/tex/latex/marcellus/OT1Mrcls-LF.fd + RELOC/tex/latex/marcellus/OT1Mrcls-Sup.fd + RELOC/tex/latex/marcellus/T1Mrcls-LF.fd + RELOC/tex/latex/marcellus/T1Mrcls-Sup.fd + RELOC/tex/latex/marcellus/TS1Mrcls-LF.fd + RELOC/tex/latex/marcellus/marcellus.sty +catalogue-contact-home https://fonts.google.com/specimen/Marcellus +catalogue-ctan /fonts/marcellus +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-ttf font-type1 font-supp font-t1enc + +name margbib +category Package +revision 15878 +shortdesc Display bibitem tags in the margins +relocated 1 +longdesc The package redefines the 'thebibliography' environment to +longdesc place the citation key into the margin. +containersize 1524 +containerchecksum 7f734e46e72badf838397305ca926f4589b9aba7a0e91e21313f6a733f7cd09db959f30e3694490633713b1a77c8d11a521b2892722496fb162d7c25c7b8641a +doccontainersize 188416 +doccontainerchecksum c4f93e442d1337cb5a1825b4f7e6fe5ae0a759c32837a896852ec5592b3c31a9c473789db35c147b67360ed662b1e9ae42a59fed446dde234b174f65e358662c +docfiles size=49 + RELOC/doc/latex/margbib/margbib.pdf details="Package documentation" +srccontainersize 4220 +srccontainerchecksum 7a9aecd832d34d1225606a905558f5ae33befaaf20f8fa1e6e5263850d2c72273be5a4a05e96d15225b7a2853212e3de28455c856c17e42838406862cadcc344 +srcfiles size=3 + RELOC/source/latex/margbib/margbib.dtx + RELOC/source/latex/margbib/margbib.ins +runfiles size=1 + RELOC/tex/latex/margbib/margbib.sty +catalogue-ctan /macros/latex/contrib/margbib +catalogue-license gpl +catalogue-topics cite-supp marginal +catalogue-version 1.0c + +name marginfit +category Package +revision 48281 +shortdesc Improved margin notes +relocated 1 +longdesc This package fixes various bugs with the margin paragraph +longdesc implementation of LaTeX. Those bugs include margin notes that +longdesc are attached to the wrong side as well as those that stick out +longdesc of the bottom of the page. This package provides a drop-in +longdesc replacement solution. +containersize 1888 +containerchecksum dafe223cc6120beac7ce419c5f5eb72ece9be2a21992e829a8015f7e05ca22c40d5196d26d21d8febf3459bfa58c7defc797ce7bd4ee1e3dda28761594240b3e +doccontainersize 215180 +doccontainerchecksum fba2ff6febb4acd0dad443221c6146fc2b3818c4948827b827fe2ff2df82f4e2843520f1f4cd41fd64900012d64d973d9b649e65b1c5ee4e74757344ab423dc0 +docfiles size=55 + RELOC/doc/latex/marginfit/Makefile + RELOC/doc/latex/marginfit/README details="Readme" + RELOC/doc/latex/marginfit/marginfit.pdf details="Package documentation" +srccontainersize 5788 +srccontainerchecksum 89892d83570cad7c46b5fafcf8a7d87b660d898afde97c2fed03f82d3cbdcea9bd11baecd19d3aa958305cac0d9f7163e00fe262a0738e7f89b62f7d1bdf0df8 +srcfiles size=7 + RELOC/source/latex/marginfit/marginfit.dtx + RELOC/source/latex/marginfit/marginfit.ins +runfiles size=2 + RELOC/tex/latex/marginfit/marginfit.sty +catalogue-ctan /macros/latex/contrib/marginfit +catalogue-license lppl1.3 +catalogue-topics marginal +catalogue-version 1.1 + +name marginfix +category Package +revision 55064 +shortdesc Patch \marginpar to avoid overfull margins +relocated 1 +longdesc Authors using LaTeX to typeset books with significant margin +longdesc material often run into the problem of long notes running off +longdesc the bottom of the page. A typical workaround is to insert +longdesc \vshift commands by hand, but this is a tedious process that is +longdesc invalidated when pagination changes. Another workaround is +longdesc memoir's \sidebar function, but this can be unsatisfying for +longdesc short textual notes, and standard marginpars cannot be mixed +longdesc with sidebars. This package implements a solution to make +longdesc marginpars "just work" by keeping a list of floating inserts +longdesc and arranging them intelligently in the output routine. +containersize 3752 +containerchecksum 70dc40b9823cd82a52a7e55e5af47e5b2373fd7cf16567f6eca2bb886d3612473141435444b538f81ab9467d1b3e5ba04424b1ca47d95cc0869dea02faf82b03 +doccontainersize 243144 +doccontainerchecksum 16ab654dd8957bcf37351b7c766b787f27baddd4e73a6a4c3a07f5b1486f5ea73c9028675b5830b8dc1224eae29f50d61bb579aeecd9af4aaafaf78259bca900 +docfiles size=61 + RELOC/doc/latex/marginfix/README details="Readme" + RELOC/doc/latex/marginfix/marginfix.pdf details="Package documentation" +srccontainersize 18268 +srccontainerchecksum 5e94ffc102902ff040162f5d9fa39f1d812801d0413befa5db7cc2c23d91ce24d47317f411e64f2fb2e22fb782c9cf1f87780c2cf2eccc50214b502402032eb3 +srcfiles size=17 + RELOC/source/latex/marginfix/marginfix.dtx + RELOC/source/latex/marginfix/marginfix.ins +runfiles size=4 + RELOC/tex/latex/marginfix/marginfix.sty +catalogue-ctan /macros/latex/contrib/marginfix +catalogue-license lppl +catalogue-topics marginal +catalogue-version 1.2 + +name marginnote +category Package +revision 48383 +shortdesc Notes in the margin, even where \marginpar fails +relocated 1 +longdesc This package provides the command \marginnote that may be used +longdesc instead of \marginpar at almost every place where \marginpar +longdesc cannot be used, e.g., inside floats, footnotes, or in frames +longdesc made with the framed package. +containersize 3356 +containerchecksum db05524c613df90a75c6545dbd19bccb955d0b3c2c0312686e21ed42e4802d47105726b0e092d178bf484f1585331bf71c604c2d9f039065872e218357d0d07e +doccontainersize 317412 +doccontainerchecksum a9d6a3d7f8de332a5f77d086d552caaf91e5ab4a71288548d6d7ac3318cde208d948a668ac554d2a8f510f984dc9943bcfd0e07a70a2ee00c9bdadd3e148f550 +docfiles size=79 + RELOC/doc/latex/marginnote/README.txt details="Package README" + RELOC/doc/latex/marginnote/marginnote.pdf details="Package documentation" +srccontainersize 10216 +srccontainerchecksum fccae0e44e24059f6ff2cb61b2d52d69ece44287b4183733b37b157ff700f6f251d86d4344c3a10c1417155d6e16ff4105a77ce01a2468e5ba160ca79e25b064 +srcfiles size=10 + RELOC/source/latex/marginnote/marginnote.dtx +runfiles size=4 + RELOC/tex/latex/marginnote/marginnote.sty +catalogue-contact-home https://komascript.de/marginnote +catalogue-ctan /macros/latex/contrib/marginnote +catalogue-license lppl1.3c +catalogue-topics notes +catalogue-version 1.4b + +name markdown +category Package +revision 56414 +shortdesc A package for converting and rendering markdown documents inside TeX +relocated 1 +longdesc The package provides facilities for the conversion of markdown +longdesc markup to plain TeX. These are provided both in form of a Lua +longdesc module and in form of plain TeX, LaTeX, and ConTeXt macro +longdesc packages that enable the direct inclusion of markdown documents +longdesc inside TeX documents. Architecturally, the package consists of +longdesc the Lunamark Lua module by John MacFarlane, which was slimmed +longdesc down and rewritten for the needs of the package. Lunamark +longdesc provides speedy markdown parsing for the rest of the package. +longdesc On top of Lunamark sits code for the plain TeX, LaTeX, and +longdesc ConTeXt formats by Vit Novotny. +containersize 31764 +containerchecksum 892bdc84562db375dcd5824f43e93466ca1b833de08ffa247e5e2fc477f6f92832e51feeef8056aac2d5d895e080eb1bff674fffaa0a3d2da8aca3fcb51f0ae1 +doccontainersize 471476 +doccontainerchecksum b00203a7abce01e87a9e54b170bc68bd19bfa5ec346d37ca8805150013d1327b038be185753a0471574b88c1a4d572bfdb7e2ff6bd7cbfea74aef02b489314af +docfiles size=252 + RELOC/doc/context/third/markdown/examples/context.tex + RELOC/doc/context/third/markdown/examples/example.md + RELOC/doc/context/third/markdown/examples/scientists.csv + RELOC/doc/generic/markdown/README.md details="Readme" + RELOC/doc/generic/markdown/markdown.css + RELOC/doc/generic/markdown/markdown.html details="User Manual (HTML)" + RELOC/doc/generic/markdown/markdown.md + RELOC/doc/generic/markdown/markdown.pdf details="Technical documentation" + RELOC/doc/latex/markdown/examples/example.md + RELOC/doc/latex/markdown/examples/latex.tex + RELOC/doc/latex/markdown/examples/scientists.csv +srccontainersize 69336 +srccontainerchecksum b8936aae408dec7c7a5d286e0c0f52f8d3d36fbe6ac70da50a3921ea4338689d8f9633f9b22bef36a428ca8cbbd4fc0ecadb98ac9070f3afed02d8ee9ff67163 +srcfiles size=121 + RELOC/source/generic/markdown/docstrip.cfg + RELOC/source/generic/markdown/markdown.dtx + RELOC/source/generic/markdown/markdown.ins +runfiles size=50 + RELOC/scripts/markdown/markdown-cli.lua + RELOC/tex/context/third/markdown/t-markdown.tex + RELOC/tex/generic/markdown/markdown.tex + RELOC/tex/latex/markdown/markdown.sty + RELOC/tex/luatex/markdown/markdown.lua +catalogue-contact-announce https://github.com/Witiko/markdown/releases +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-license lppl1.3 +catalogue-topics markup +catalogue-version 2.9.0 + +name marvosym +category Package +revision 29349 +shortdesc Martin Vogel's Symbols (marvosym) font +relocated 1 +longdesc Martin Vogel's Symbol font (marvosym) contains the Euro +longdesc currency symbol as defined by the European commission, along +longdesc with symbols for structural engineering; symbols for steel +longdesc cross-sections; astronomy signs (sun, moon, planets); the 12 +longdesc signs of the zodiac; scissor symbols; CE sign and others. The +longdesc package contains both the original TrueType font and the +longdesc derived Type 1 font, together with support files for TeX +longdesc (LaTeX). +execute addMap marvosym.map +containersize 133476 +containerchecksum 64093dc5de012c6a50762ef34001ff2305e6b59b667ac7b1ef72cc53f8b0ed3852b4d307a8d421ece996e78f2e32c8871038b6b66659b0866dbdc536445dc7a3 +doccontainersize 426608 +doccontainerchecksum d6f72ee7ed64404acce5c37c216a7e23193f2053c18910d80fc6d5fde73ba86c07045102488f17f4cbeb9e1d148567973713bb4d9ce2cdd3cb166936ba5623e1 +docfiles size=127 + RELOC/doc/fonts/marvosym/FONTLOG.txt + RELOC/doc/fonts/marvosym/Makefile + RELOC/doc/fonts/marvosym/OFL-FAQ.txt + RELOC/doc/fonts/marvosym/OFL.txt + RELOC/doc/fonts/marvosym/README details="README" + RELOC/doc/fonts/marvosym/marvodoc.pdf details="Font tables, etc." + RELOC/doc/fonts/marvosym/marvodoc.tex + RELOC/doc/fonts/marvosym/marvosym-doc.pdf + RELOC/doc/fonts/marvosym/marvosym-doc.tex +srccontainersize 1256 +srccontainerchecksum c28a69567c593160c7d04b4fc0fe7f0106db12ab588d3f02139e55ad99a1b4e33f1bba92f5af103b6f2a7e720d243b919d1f39f28031ad95dde3ae7e723f6e36 +srcfiles size=3 + RELOC/source/fonts/marvosym/generate_marvosym_derivs.sh + RELOC/source/fonts/marvosym/patch_marvosym_afm.sed + RELOC/source/fonts/marvosym/patch_marvosym_pfb.sed +runfiles size=51 + RELOC/fonts/afm/public/marvosym/marvosym.afm + RELOC/fonts/map/dvips/marvosym/marvosym.map + RELOC/fonts/tfm/public/marvosym/umvs.tfm + RELOC/fonts/truetype/public/marvosym/marvosym.ttf + RELOC/fonts/type1/public/marvosym/marvosym.pfb + RELOC/tex/latex/marvosym/marvosym.sty + RELOC/tex/latex/marvosym/umvs.fd +catalogue-contact-home http://www.marvosym.de +catalogue-ctan /fonts/marvosym +catalogue-license ofl +catalogue-topics font font-mf font-ttf font-symbol font-supp +catalogue-version 2.2a + +name matapli +category Package +revision 58635 +shortdesc Class for the french journal "MATAPLI" +relocated 1 +longdesc This is a class for the french journal "MATAPLI" of the Societe +longdesc de Mathematiques Appliquees et Industrielles (SMAI). +containersize 8696 +containerchecksum 540a0ee0f38d910995437efabff5b4775a5ce496275407dadb99a24d969a90bef7127abeab535f00db5009db0e90d3ecaa85651f735db027ef87ea93051421a3 +doccontainersize 4771004 +doccontainerchecksum 907b09780665470c0055594b3908fb875a9af575195f603e343e877a47a8e8d35d492cf2e03bf1ec9f62bdbecc973384c27bad09ca0ecff5636f16c4cfdf6b2b +docfiles size=1946 + RELOC/doc/latex/matapli/README.md details="Readme" + RELOC/doc/latex/matapli/auto/bibliomatapli.el + RELOC/doc/latex/matapli/auto/matapli-doc.el + RELOC/doc/latex/matapli/bibliomatapli.bib + RELOC/doc/latex/matapli/examples/couverture/3e.pdf + RELOC/doc/latex/matapli/examples/couverture/4e.pdf + RELOC/doc/latex/matapli/examples/couverture/CIMPA.png + RELOC/doc/latex/matapli/examples/couverture/Logo.pdf + RELOC/doc/latex/matapli/examples/couverture/corona.jpg + RELOC/doc/latex/matapli/examples/couverture/couverture.jpg + RELOC/doc/latex/matapli/examples/couverture/couvertureModele.pdf details="Example of use" language="fr" + RELOC/doc/latex/matapli/examples/couverture/couvertureModele.tex + RELOC/doc/latex/matapli/examples/couverture/fond-production.svg + RELOC/doc/latex/matapli/examples/couverture/fond.pdf + RELOC/doc/latex/matapli/examples/couverture/redactionModele.tex + RELOC/doc/latex/matapli/examples/modeleauteur/chap1.bib + RELOC/doc/latex/matapli/examples/modeleauteur/modele.pdf details="Example of use" language="fr" + RELOC/doc/latex/matapli/examples/modeleauteur/modele.tex + RELOC/doc/latex/matapli/examples/modeleauteur/portrait.png + RELOC/doc/latex/matapli/fond-doc.pdf + RELOC/doc/latex/matapli/matapli-doc.fdb_latexmk + RELOC/doc/latex/matapli/matapli-doc.fls + RELOC/doc/latex/matapli/matapli-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/matapli/matapli-doc.tex + RELOC/doc/latex/matapli/matapli-title.pdf + RELOC/doc/latex/matapli/mataplidoc.cls +runfiles size=9 + RELOC/tex/latex/matapli/matapli.cls +catalogue-contact-home https://plmlab.math.cnrs.fr/mchupin/matapli +catalogue-ctan /macros/latex/contrib/matapli +catalogue-license lppl1.3 +catalogue-topics journalpub class french +catalogue-version 1.1 + +name matc3 +category Package +revision 29845 +shortdesc Commands for MatematicaC3 textbooks +relocated 1 +longdesc The package provides support for the Matematica C3 project to +longdesc produce free mathematical text books for use in Italian high +longdesc schools. +containersize 1692 +containerchecksum 19996040ec55b000d84637070a21fa9fc216eb3cf8ec75f7c408925e0d7a716a7dca0eff4887778f666be3e857b589cd033c53d3859f84226416ad069720f7be +doccontainersize 438856 +doccontainerchecksum 68f65e9171eb03fed79dc9bffadb725dc7324fd9696ff9f6f0a13233327f47474477180c6e17b5bbb9ee2ee02996ebd6213b43eeb7e9b7eb7dca2caac2db470d +docfiles size=109 + RELOC/doc/latex/matc3/Makefile + RELOC/doc/latex/matc3/README details="Readme" + RELOC/doc/latex/matc3/matc3.pdf details="Package documentation (in Italian)" language="it" +srccontainersize 5928 +srccontainerchecksum efc84a936de1ab0905e94937d00c3ab2f371412975786c3816cb3b8fdf98482943c1f18a08422ea95d7a7bda6607ffd1dcb6b5c28101c7f5348260a088cf1233 +srcfiles size=7 + RELOC/source/latex/matc3/matc3.dtx + RELOC/source/latex/matc3/matc3.ins +runfiles size=2 + RELOC/tex/latex/matc3/matc3.sty +catalogue-also matc3mem +catalogue-ctan /macros/latex/contrib/matc3 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.0.1 + +name matc3mem +category Package +revision 35773 +shortdesc Class for MatematicaC3 textbooks +relocated 1 +longdesc The class is a development of memoir, with additions +longdesc (specifically, mathematical extensions) that provide support +longdesc for writing the books for the Matematica C3 project to produce +longdesc free mathematical textbooks for use in Italian high schools. +containersize 2508 +containerchecksum e0736f75126aca9506e1cfcbd321645e731e2dec7f3ae2c045201dd8c729044689e358724b77ef9d99aaf3ff742802857d488e3f2f78e781b64af711c7fdce12 +doccontainersize 390784 +doccontainerchecksum 2038d84ab20c6763163769b62a35fa4e95dbd3e76b0e2cf1c4a25694488ddb5b9be8b40f81a1702600d918618455bcae46d22fa101a1a95978b996714de41dfe +docfiles size=98 + RELOC/doc/latex/matc3mem/Makefile + RELOC/doc/latex/matc3mem/README details="Readme" + RELOC/doc/latex/matc3mem/matc3mem.pdf details="Package documentation (in Italian)" language="it" +srccontainersize 7308 +srccontainerchecksum cd8ad4afa288ca175c06df2de15cb7ae048f3b69ff6b96225f134c022efaaa5223fdba1b2b80f75ad3ab6e3ac79d38b41794cdbfecce1ac6ffd2ed47cfb69649 +srcfiles size=7 + RELOC/source/latex/matc3mem/matc3mem.dtx + RELOC/source/latex/matc3mem/matc3mem.ins +runfiles size=2 + RELOC/tex/latex/matc3mem/matc3mem.cls +catalogue-also matc3 +catalogue-ctan /macros/latex/contrib/matc3mem +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.1 + +name match_parens +category Package +revision 36270 +shortdesc Find mismatches of parentheses, braces, (angle) brackets, in texts +longdesc Mismatches of parentheses, braces, (angle) brackets, especially +longdesc in TeX sources which may be rich in those, may be difficult to +longdesc trace. This little Ruby script helps you by writing your text +longdesc to standard output, after adding a left margin to your text, +longdesc which will normally be almost empty, but will clearly show any +longdesc mismatches. +depend match_parens.ARCH +containersize 3328 +containerchecksum 1e03e279e977af436a8f5d5c3d30f046f46f1a31a0fd3de6d8ab458a64f0634b5f3ef8a338954971a898a1c68128f60c6eabd7ca231df9f3ca8ed12e55967dad +doccontainersize 57268 +doccontainerchecksum 60428bc16f65fe820e267852c9d85a5f862c6800ac9c2aae0915a48819da381b2a311fdd3d08096d4aab7311ef86c1c89fabff3d88caf419dacbef515f4dd39a +docfiles size=15 + texmf-dist/doc/support/match_parens/README details="Readme" + texmf-dist/doc/support/match_parens/match_parens.pdf details="Package documentation" +runfiles size=2 + texmf-dist/scripts/match_parens/match_parens +catalogue-ctan /support/match_parens +catalogue-license gpl +catalogue-topics debug-supp +catalogue-version 1.43 + +name match_parens.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of match_parens +containersize 344 +containerchecksum e5c1f54440192c467dd90cfe01996b059c45cb9c8fcfd6f83f3c96881b28803c1f0b3da43b34e5b3a8fe92f644d5f4a765edd9b4b693380b1898a1064bc98fe7 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/match_parens + +name match_parens.amd64-freebsd +category Package +revision 23500 +shortdesc amd64-freebsd files of match_parens +containersize 344 +containerchecksum 49cd647b87eefc94c67367550eb656a840cadcab1ccabe3defee8ba01407072e42928030684db032be67123fa00a42889f6c6010cecdad4fcf89631fcee569fb +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/match_parens + +name match_parens.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of match_parens +containersize 344 +containerchecksum 6819d526e8e19208971f56dd0f4f22f1a389d746ce3c09a2b08b394e895b6d4351638e647025577c53da96a9ea4f5f9f6ad3e8010ef416f95b54ce35c1d8e080 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/match_parens + +name match_parens.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of match_parens +containersize 344 +containerchecksum 86b65ed214282101fb7b758c1294c443025f9cdb1dd28fbc48c6e060f49302afbfbace9addbf34252c4cbe8903f4c1b9bbb4782a0b73d274253a5d971ae3fa68 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/match_parens + +name match_parens.i386-cygwin +category Package +revision 23500 +shortdesc i386-cygwin files of match_parens +containersize 340 +containerchecksum 39d00a097e175bf590ee6cc75072dd75790f89de8066631d3999ec416b5ec6151f10c4820b6323a7c7130d06e6a116ee444565dd04a9afb3ed9ce385d72f75b2 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/match_parens + +name match_parens.i386-freebsd +category Package +revision 23500 +shortdesc i386-freebsd files of match_parens +containersize 344 +containerchecksum c1259e70e444e848748f49b77f5bcfb53f325e4699982b9201b31296537d5d9eaa9112e9fedb3826402a7bb9c7da1f1f7c237d4b05111c28ff7e04776c09038a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/match_parens + +name match_parens.i386-linux +category Package +revision 23500 +shortdesc i386-linux files of match_parens +containersize 344 +containerchecksum 322d6cb63b3c536c247e26fb585b753a03a83c5113d8899c0bc26528bf550e58b2ba782f447f0ae526266a9e170dd05b12e16d9744d1a8187d4d6c2e32d20a45 +binfiles arch=i386-linux size=1 + bin/i386-linux/match_parens + +name match_parens.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of match_parens +containersize 344 +containerchecksum 5e253bc70df984cc279488635957ab65d78d8de35050ee3b2b2f3ad399383a33bfe4a59ab17485efc45a65f582c73782060317a3333866c17b8c8bd5eabada59 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/match_parens + +name match_parens.i386-solaris +category Package +revision 23500 +shortdesc i386-solaris files of match_parens +containersize 344 +containerchecksum 1e32644c13365d5b8ed545e17feb4466b318b0bd76b0265f25b5e73b8fa17eb42cf9c2d5abce9e5767e7bf1d85daea8f75039af9deb9d1181c79d07527139ab8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/match_parens + +name match_parens.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of match_parens +containersize 344 +containerchecksum 2a2a613fcc328c18b4604a87769c16e7e02db6463bb545b89ccc58a88149ab006e09b0441522fda2949466d758aedf1982fb906572e4cfe51a90927d519f7dd3 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/match_parens + +name match_parens.win32 +category Package +revision 23500 +shortdesc win32 files of match_parens +containersize 692 +containerchecksum 20f124eca830bd518fc6c37085099f895b5f0e36ba514dfc3f51c09f1c3957f45a09dacd349a2c77712193457da475004664b8068dcdb10c7bc8e61164882f7e +binfiles arch=win32 size=1 + bin/win32/match_parens.exe + +name match_parens.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of match_parens +containersize 344 +containerchecksum ad3c5f4a191792896f4cf5c28c97b3edf0801d214cfeca8fd2ba72bf4200151b791c5970e2637244e4ac2adab0c430a34b73487aa5b4284c5188672fdba619d8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/match_parens + +name match_parens.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of match_parens +containersize 352 +containerchecksum 0c8dde4f76a2f4a041e11135ef47b529197069a974a10bea13693f3af056dd6dc003b4efb128b1ac18408f1d2501b90fa2a349fe42b2bbc0ef8edf6b6ddebd02 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/match_parens + +name match_parens.x86_64-linux +category Package +revision 23500 +shortdesc x86_64-linux files of match_parens +containersize 344 +containerchecksum 9e6b2abaa4a3abe3577c61d06277d1a295136acbeb98719f18d870dd7870525080a0e1bfe5d17f30e3ee6cd239d3a9e7d70c90a1cb278139a4e3503f6ba4a334 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/match_parens + +name match_parens.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of match_parens +containersize 348 +containerchecksum 90308f7aa8dac08a55e2250f45eafd172619683fdfb900ccd8d7cc80152f236b06ece63fe2611990b4866a9268f8a2e67c29d75e1ff40d412801f51711bbec5a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/match_parens + +name match_parens.x86_64-solaris +category Package +revision 23500 +shortdesc x86_64-solaris files of match_parens +containersize 344 +containerchecksum 51ee8be449fe77fc17fc7eed4b3629fb3de244531471f6dc3bb718b1188356c05d3f9d1b96f8b2981247deee2440a8b1c6d8fe873793d3259c29dfb69ed548f3 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/match_parens + +name math-into-latex-4 +category Package +revision 44131 +shortdesc Samples from Math into LaTeX, 4th Edition +relocated 1 +longdesc Samples for the book `(More) Math into LaTeX', 4th edition. In +longdesc addition, there are two excerpts from the book: A Short Course +longdesc to help you get started quickly with LaTeX, including detailed +longdesc instructions on how to install LaTeX on a PC or a Mac; Math and +longdesc Text Symbol Tables. +containersize 548 +containerchecksum d5739155ac3cd6a02f356bbb600f7f76022faa4a5c004a93531678ead3c2f0a9f8e1419044883306ce453ac96ab8726ee45d8e49c86b0fca6a9232010a8927e3 +doccontainersize 1650056 +doccontainerchecksum 5fee7c89fc9f273817b23fa25260733ee0552df7bed0333bbe604c17bdecfc28d7e386478f7b42d3c2aef89f80ce7a1d35215fdc386ea47e4db3a334bc6a9597 +docfiles size=965 + RELOC/doc/latex/math-into-latex-4/README details="Readme" + RELOC/doc/latex/math-into-latex-4/README.TEXLIVE + RELOC/doc/latex/math-into-latex-4/amsart.tpl + RELOC/doc/latex/math-into-latex-4/amsproc.template + RELOC/doc/latex/math-into-latex-4/babybeamer1.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer1.tex + RELOC/doc/latex/math-into-latex-4/babybeamer10.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer10.tex + RELOC/doc/latex/math-into-latex-4/babybeamer2.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer2.tex + RELOC/doc/latex/math-into-latex-4/babybeamer3.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer3.tex + RELOC/doc/latex/math-into-latex-4/babybeamer4.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer4.tex + RELOC/doc/latex/math-into-latex-4/babybeamer5.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer5.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6block.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6block.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6mod.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6mod.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6mod2.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6mod2.tex + RELOC/doc/latex/math-into-latex-4/babybeamer7.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer7.tex + RELOC/doc/latex/math-into-latex-4/babybeamer8.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer8.tex + RELOC/doc/latex/math-into-latex-4/babybeamer9.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer9.tex + RELOC/doc/latex/math-into-latex-4/basem3-1.eps + RELOC/doc/latex/math-into-latex-4/basem3-1.pdf + RELOC/doc/latex/math-into-latex-4/basem3-2.eps + RELOC/doc/latex/math-into-latex-4/basem3-2.pdf + RELOC/doc/latex/math-into-latex-4/basem3-3.eps + RELOC/doc/latex/math-into-latex-4/basem3-3.pdf + RELOC/doc/latex/math-into-latex-4/basem3-4.eps + RELOC/doc/latex/math-into-latex-4/basem3-4.pdf + RELOC/doc/latex/math-into-latex-4/beamerstructure1.pdf + RELOC/doc/latex/math-into-latex-4/beamerstructure1.tex + RELOC/doc/latex/math-into-latex-4/beamerstructure2.pdf + RELOC/doc/latex/math-into-latex-4/beamerstructure2.tex + RELOC/doc/latex/math-into-latex-4/bibl.tpl + RELOC/doc/latex/math-into-latex-4/cleardoublepage.sty + RELOC/doc/latex/math-into-latex-4/cube.eps + RELOC/doc/latex/math-into-latex-4/cube.pdf + RELOC/doc/latex/math-into-latex-4/fonttbl.tex + RELOC/doc/latex/math-into-latex-4/german.tex + RELOC/doc/latex/math-into-latex-4/gg.tex + RELOC/doc/latex/math-into-latex-4/gg2.tex + RELOC/doc/latex/math-into-latex-4/ggamsart.tpl + RELOC/doc/latex/math-into-latex-4/gratzer + RELOC/doc/latex/math-into-latex-4/inbibl.tpl + RELOC/doc/latex/math-into-latex-4/intrart.tex + RELOC/doc/latex/math-into-latex-4/intrarti.tex + RELOC/doc/latex/math-into-latex-4/intropres.tex + RELOC/doc/latex/math-into-latex-4/legacy-article.tex + RELOC/doc/latex/math-into-latex-4/letter.tex + RELOC/doc/latex/math-into-latex-4/math.tex + RELOC/doc/latex/math-into-latex-4/mathb.tex + RELOC/doc/latex/math-into-latex-4/newlattice.sty + RELOC/doc/latex/math-into-latex-4/notation.pdf + RELOC/doc/latex/math-into-latex-4/note1.tex + RELOC/doc/latex/math-into-latex-4/note1b.tex + RELOC/doc/latex/math-into-latex-4/note2.tex + RELOC/doc/latex/math-into-latex-4/noteslug.tex + RELOC/doc/latex/math-into-latex-4/products.eps + RELOC/doc/latex/math-into-latex-4/products.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer.tex + RELOC/doc/latex/math-into-latex-4/quickbeamer1.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer1.tex + RELOC/doc/latex/math-into-latex-4/quickbeamer2.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer2.tex + RELOC/doc/latex/math-into-latex-4/sampart-ref.tex + RELOC/doc/latex/math-into-latex-4/sampart.tex + RELOC/doc/latex/math-into-latex-4/sampartb.bib + RELOC/doc/latex/math-into-latex-4/sampartb.tex + RELOC/doc/latex/math-into-latex-4/sampartu.tex + RELOC/doc/latex/math-into-latex-4/sample.cls + 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-license other-free +catalogue-topics book-ex + +name mathabx +category Package +revision 15878 +shortdesc Three series of mathematical symbols +relocated 1 +longdesc Mathabx is a set of 3 mathematical symbols font series: matha, +longdesc mathb and mathx. They are defined by Metafont code and should +longdesc be of reasonable quality (bitmap output). Things change from +longdesc time to time, so there is no claim of stability (encoding, +longdesc metrics, design). The package includes Plain TeX and LaTeX +longdesc support macros. A version of the fonts, in Adobe Type 1 format, +longdesc is also available. +containersize 102916 +containerchecksum 400bb43207c43192321cfe1b658c85a07410778e7694ab1604b992025d69300bb2d4c2cb7866a255dc4988c843dd3b92c33e527c12f087bb560cba4520115643 +doccontainersize 497084 +doccontainerchecksum e1f9f96794f6d20dd75bd7ceabd40993e56d5315848bbea8a6812a16f74c0fb92ddc6356c71aaa1367c47b1dc26a3711793ec88cf0b90d391f8157fe20f77196 +docfiles size=193 + RELOC/doc/fonts/mathabx/README details="Readme" + RELOC/doc/fonts/mathabx/mathtest.pdf details="Package documentation, including font lists" + RELOC/doc/fonts/mathabx/mathtest.tex + RELOC/doc/fonts/mathabx/testmac.tex +runfiles size=215 + RELOC/fonts/source/public/mathabx/matha10.mf + RELOC/fonts/source/public/mathabx/matha12.mf + RELOC/fonts/source/public/mathabx/matha5.mf + RELOC/fonts/source/public/mathabx/matha6.mf + RELOC/fonts/source/public/mathabx/matha7.mf + RELOC/fonts/source/public/mathabx/matha8.mf + RELOC/fonts/source/public/mathabx/matha9.mf + RELOC/fonts/source/public/mathabx/mathacnt.mf + RELOC/fonts/source/public/mathabx/mathadrv.mf + RELOC/fonts/source/public/mathabx/matharrw.mf + RELOC/fonts/source/public/mathabx/mathastr.mf + RELOC/fonts/source/public/mathabx/mathastrotest10.mf + RELOC/fonts/source/public/mathabx/mathastrotestdrv.mf + RELOC/fonts/source/public/mathabx/mathasym.mf + RELOC/fonts/source/public/mathabx/mathb10.mf + RELOC/fonts/source/public/mathabx/mathb12.mf + RELOC/fonts/source/public/mathabx/mathb5.mf + RELOC/fonts/source/public/mathabx/mathb6.mf + RELOC/fonts/source/public/mathabx/mathb7.mf + RELOC/fonts/source/public/mathabx/mathb8.mf + RELOC/fonts/source/public/mathabx/mathb9.mf + RELOC/fonts/source/public/mathabx/mathbase.mf + RELOC/fonts/source/public/mathabx/mathbdel.mf + RELOC/fonts/source/public/mathabx/mathbdrv.mf + RELOC/fonts/source/public/mathabx/mathbigs.mf + RELOC/fonts/source/public/mathabx/mathbsym.mf + RELOC/fonts/source/public/mathabx/mathc10.mf + RELOC/fonts/source/public/mathabx/mathcall.mf + RELOC/fonts/source/public/mathabx/mathcallgreek.mf + RELOC/fonts/source/public/mathabx/mathcdrv.mf + RELOC/fonts/source/public/mathabx/mathfine.mf + RELOC/fonts/source/public/mathabx/mathgrey.mf + RELOC/fonts/source/public/mathabx/mathhbrw.mf + RELOC/fonts/source/public/mathabx/mathineq.mf + RELOC/fonts/source/public/mathabx/mathltlk.mf + RELOC/fonts/source/public/mathabx/mathmbcb.mf + RELOC/fonts/source/public/mathabx/mathprmt.mf + RELOC/fonts/source/public/mathabx/mathsmsy.mf + RELOC/fonts/source/public/mathabx/mathsubs.mf + RELOC/fonts/source/public/mathabx/mathsymb.mf + RELOC/fonts/source/public/mathabx/mathu10.mf + RELOC/fonts/source/public/mathabx/mathudrv.mf + RELOC/fonts/source/public/mathabx/mathusym.mf + RELOC/fonts/source/public/mathabx/mathux10.mf + RELOC/fonts/source/public/mathabx/mathuxdrv.mf + RELOC/fonts/source/public/mathabx/mathx10.mf + RELOC/fonts/source/public/mathabx/mathx12.mf + RELOC/fonts/source/public/mathabx/mathx5.mf + RELOC/fonts/source/public/mathabx/mathx6.mf + RELOC/fonts/source/public/mathabx/mathx7.mf + RELOC/fonts/source/public/mathabx/mathx8.mf + RELOC/fonts/source/public/mathabx/mathx9.mf + RELOC/fonts/source/public/mathabx/mathxdrv.mf + RELOC/fonts/source/public/mathabx/maydigit.mf + RELOC/fonts/tfm/public/mathabx/matha10.tfm + RELOC/fonts/tfm/public/mathabx/matha12.tfm + RELOC/fonts/tfm/public/mathabx/matha5.tfm + RELOC/fonts/tfm/public/mathabx/matha6.tfm + RELOC/fonts/tfm/public/mathabx/matha7.tfm + RELOC/fonts/tfm/public/mathabx/matha8.tfm + RELOC/fonts/tfm/public/mathabx/matha9.tfm + RELOC/fonts/tfm/public/mathabx/mathastrotest10.tfm + RELOC/fonts/tfm/public/mathabx/mathb10.tfm + RELOC/fonts/tfm/public/mathabx/mathb12.tfm + RELOC/fonts/tfm/public/mathabx/mathb5.tfm + RELOC/fonts/tfm/public/mathabx/mathb6.tfm + RELOC/fonts/tfm/public/mathabx/mathb7.tfm + RELOC/fonts/tfm/public/mathabx/mathb8.tfm + RELOC/fonts/tfm/public/mathabx/mathb9.tfm + RELOC/fonts/tfm/public/mathabx/mathc10.tfm + RELOC/fonts/tfm/public/mathabx/mathu10.tfm + RELOC/fonts/tfm/public/mathabx/mathux10.tfm + RELOC/fonts/tfm/public/mathabx/mathx10.tfm + RELOC/fonts/tfm/public/mathabx/mathx12.tfm + RELOC/fonts/tfm/public/mathabx/mathx5.tfm + RELOC/fonts/tfm/public/mathabx/mathx6.tfm + RELOC/fonts/tfm/public/mathabx/mathx7.tfm + RELOC/fonts/tfm/public/mathabx/mathx8.tfm + RELOC/fonts/tfm/public/mathabx/mathx9.tfm + RELOC/tex/generic/mathabx/mathabx.dcl + RELOC/tex/generic/mathabx/mathabx.sty + RELOC/tex/generic/mathabx/mathabx.tex +catalogue-contact-home http://www-math.univ-poitiers.fr/~phan/ +catalogue-ctan /fonts/mathabx +catalogue-license lppl +catalogue-topics font font-mf font-symbol-maths + +name mathabx-type1 +category Package +revision 21129 +shortdesc Outline version of the mathabx fonts +relocated 1 +longdesc This is an Adobe Type 1 outline version of the mathabx fonts. +depend mathabx +execute addMap mathabx.map +containersize 1858004 +containerchecksum ae2272ac7d79a3bb1a655000a2d5fa1c3d948363763abe194cbac4084d5ef60492648977660c3d9dfbc2c70bea3c207d031d2147097fb1d7af503aa80f257d1c +doccontainersize 916 +doccontainerchecksum 2504e85d659cba06fa25ae4e154309a6d3dcba2ac8bae0d4066b6637f19081987b0bc774902365e5b723f4b6c35cad07709e316ec1893a018baabc699d755e8b +docfiles size=1 + RELOC/doc/fonts/mathabx-type1/README details="Readme" +runfiles size=500 + RELOC/fonts/map/dvips/mathabx-type1/mathabx.map + RELOC/fonts/type1/public/mathabx-type1/matha10.pfb + RELOC/fonts/type1/public/mathabx-type1/matha12.pfb + RELOC/fonts/type1/public/mathabx-type1/matha5.pfb + RELOC/fonts/type1/public/mathabx-type1/matha6.pfb + RELOC/fonts/type1/public/mathabx-type1/matha7.pfb + RELOC/fonts/type1/public/mathabx-type1/matha8.pfb + RELOC/fonts/type1/public/mathabx-type1/matha9.pfb + RELOC/fonts/type1/public/mathabx-type1/mathastrotest10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb12.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb5.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb6.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb7.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb8.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb9.pfb + RELOC/fonts/type1/public/mathabx-type1/mathc10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathu10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathux10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx12.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx5.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx6.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx7.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx8.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx9.pfb +catalogue-also mathabx +catalogue-ctan /fonts/ps-type1/mathabx +catalogue-license lppl +catalogue-topics font font-type1 font-symbol-maths + +name mathalpha +category Package +revision 52305 +shortdesc General package for loading maths alphabets in LaTeX +relocated 1 +longdesc Package mathalfa was renamed to mathalpha. For backward +longdesc compatibility the old name will continue to be recognized in +longdesc LaTeX documents. The package provides means of loading maths +longdesc alphabets (such as are normally addressed via macros \mathcal, +longdesc \mathbb, \mathfrak and \mathscr), offering various features +longdesc normally missing in existing packages for this job. +containersize 4368 +containerchecksum c6b653e5a0b7788ac36ea9ef6ce07dd4fd19a75a82c4115cac5921849477839387b0cccac469dd74b9f4221315ca741c49304eb76213ecacb97dc7e218ac4cc9 +doccontainersize 992992 +doccontainerchecksum 5a1d993f73d3684ccd8a855cf8e016d35aa29c34fecea0f01f147a0cb108b355108faf43734c83bdb74f59287a7963b4b418894e0a5c0ec4ffd884f3f4ef1d0e +docfiles size=248 + RELOC/doc/latex/mathalpha/README details="Readme" + RELOC/doc/latex/mathalpha/mathalpha-doc.pdf details="Package documentation" + RELOC/doc/latex/mathalpha/mathalpha-doc.tex +runfiles size=8 + RELOC/tex/latex/mathalpha/mathalfa.sty + RELOC/tex/latex/mathalpha/mathalpha.sty +catalogue-alias mathalfa +catalogue-ctan /macros/latex/contrib/mathalpha +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.13 + +name mathastext +category Package +revision 52840 +shortdesc Use the text font in maths mode +relocated 1 +longdesc The package uses a text font (usually the document's text font) +longdesc for the letters of the Latin alphabet needed when typesetting +longdesc mathematics. (Optionally, other characters in the font may also +longdesc be used). This facility makes possible (for a document with +longdesc simple mathematics) a far wider choice of text font, with +longdesc little worry that no specially designed accompanying maths +longdesc fonts are available. The package also offers a simple mechanism +longdesc for using many different choices of (text hence, now, maths) +longdesc font in the same document. Of course, using one font for two +longdesc purposes helps produce smaller PDF files. The package, if +longdesc running under LuaTeX, requires the TeX live 2013 distribution +longdesc (or later). +containersize 15984 +containerchecksum a8c0ac4c041b52032e1bfba14eeb6ad42206428a8cc576597d7b509d652c818b2568f043a6edef0bd491057c661e30d9e61575d1fe0c8414e45f08d9629b4e19 +doccontainersize 530004 +doccontainerchecksum b2b1deeb2cb3a966d64a1e367de2ae6f932b5cca714a15ed113def4b00d3046fadfa4724dfe21028fe82bcd5d76a1c73196a2c599a0f6a56ec113fd4421c3456 +docfiles size=148 + RELOC/doc/latex/mathastext/ChangeLog.md + RELOC/doc/latex/mathastext/INSTALL.txt + RELOC/doc/latex/mathastext/README.md details="Readme" + RELOC/doc/latex/mathastext/mathastext.pdf details="Package documentation" + RELOC/doc/latex/mathastext/mathastext.tex + RELOC/doc/latex/mathastext/mathastexttestalphabets.pdf details="Output of test script" + RELOC/doc/latex/mathastext/mathastexttestalphabets.tex + RELOC/doc/latex/mathastext/mathastexttestmathversions.tex + RELOC/doc/latex/mathastext/mathastexttestunicodelinux.tex + RELOC/doc/latex/mathastext/mathastexttestunicodemacos.tex +srccontainersize 94384 +srccontainerchecksum f22a88f5ba02bb077fa0e3128a27e78b736e07702d611a059867646d5c6b4cbb6548c1f0f0e968735c3f887038f51c351a98aa6d60ec557c246ec523afdc735d +srcfiles size=95 + RELOC/source/latex/mathastext/mathastext.dtx +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-license lppl1.3 +catalogue-topics maths font-supp-maths font-sel +catalogue-version 1.3w + +name mathcommand +category Package +revision 53044 +shortdesc \newcommand-like commands for defining math macros +relocated 1 +longdesc This package provides functionalities for defining macros that +longdesc have different behaviors depending on whether in math or text +longdesc mode, that absorb Primes, Indices and Exponents (PIE) as extra +longdesc parameters usable in the code; and it offers some iteration +longdesc facilities for defining macros with similar code. The primary +longdesc objective of this package is to be used together with the +longdesc knowledge package for a proper handling of mathematical +longdesc notations. +containersize 4380 +containerchecksum 733c1581550772bdeda24b12154709a09f4427776392e86214d273c2eee1df7a80fea4285d21410f44195af30682aafdecff9f678ac43ad5f78a90605f76d332 +doccontainersize 453780 +doccontainerchecksum eed721d4b0da17c2ae997c7b1c46f19531108db0ecfbb334b648d5931eb2e86eb99465c52093e2adee7150dac3d5c8dc4b9df45ae68f47d0a238c875b33beed1 +docfiles size=113 + RELOC/doc/latex/mathcommand/README.md details="Readme" + RELOC/doc/latex/mathcommand/makefile + RELOC/doc/latex/mathcommand/mathcommand.pdf details="Package documentation" +srccontainersize 11588 +srccontainerchecksum 9d7b9156f28db730c20d1b0e22ea3ff5b90bf34d8d500248f67dd1ef6c12b7eae8e570db065e85f77e61e828277d202e4f73eceedfb79c756a80e2413b14f6de +srcfiles size=14 + RELOC/source/latex/mathcommand/mathcommand.dtx + RELOC/source/latex/mathcommand/mathcommand.ins +runfiles size=6 + RELOC/tex/latex/mathcommand/mathcommand.sty +catalogue-ctan /macros/latex/contrib/mathcommand +catalogue-license lppl1.2 +catalogue-topics maths macro-def macro-iterate expl3 +catalogue-version 1.03 + +name mathcomp +category Package +revision 15878 +shortdesc Text symbols in maths mode +relocated 1 +longdesc A package which provides access to some interesting characters +longdesc of the Text Companion fonts (TS1 encoding) in maths mode. +containersize 1176 +containerchecksum 7dca82aff58606afd315bc18c6908946193be75f04ec456e2cede8184867543437007b27f04f4363a026a0db83da3fdf963afecab7330e9419b1ac5376efcdd8 +doccontainersize 166132 +doccontainerchecksum 6135b3d06908c5c359cc432a7406f146ea6b0bb614ba0b983738230ca2073f4348a6ff139bdc4b43325a8b67ef59a6db8e60ecefd88af5c8ff0eddceb0f279fe +docfiles size=44 + RELOC/doc/latex/mathcomp/mathcomp.pdf details="Package documentation" +srccontainersize 3072 +srccontainerchecksum 3578e5e31ac3cfda23381e348dfa9e4da6993a9cefaa73b3746be0f2719d04dd37d04e75925414f4f0083b0971222da5eced4bd582e405031f29899faacecf57 +srcfiles size=3 + RELOC/source/latex/mathcomp/mathcomp.dtx + RELOC/source/latex/mathcomp/mathcomp.ins +runfiles size=1 + RELOC/tex/latex/mathcomp/mathcomp.sty +catalogue-also textcomp +catalogue-ctan /macros/latex/contrib/mathcomp +catalogue-license lppl +catalogue-topics font-supp-maths +catalogue-version 0.1f + +name mathdesign +category Package +revision 31639 +shortdesc Mathematical fonts to fit with particular text fonts +relocated 1 +longdesc The Math Design project offers free mathematical fonts that +longdesc match with existing text fonts. To date, three free font +longdesc families are available: Adobe Utopia, URW Garamond and +longdesc Bitstream Charter. Three commercial fonts are also supported: +longdesc Adobe Garamond Pro, Adobe UtopiaStd and ITC Charter. Mathdesign +longdesc covers the whole LaTeX glyph set, including AMS symbols and +longdesc some extra. Both roman and bold versions of these symbols can +longdesc be used. Moreover you can choose between three greek fonts (two +longdesc of them created by the Greek Font Society). +execute addMap mdbch.map +execute addMap mdgreek.map +execute addMap mdici.map +execute addMap mdpgd.map +execute addMap mdpus.map +execute addMap mdput.map +execute addMap mdugm.map +containersize 2170832 +containerchecksum cc8a1c58348f8f81417178434c9bc3d9edea79dc5d300753f41870734f8fca8f43325d56f73e3113aee8e9f38be1fbc6abd3cefe4458af1e1e22900ce889c315 +doccontainersize 587524 +doccontainerchecksum f6c0a3595beb7b25ab5ef2c8a08b3e0be90cdbfa20c946b7b3f5cfd29f5c9a38963262818990ef78be02d95c2d2a5991581be77834048fab4eb0e4c0252e6871 +docfiles size=232 + RELOC/doc/fonts/mathdesign/MD-Adobe-Adobe-Garamond-Pro-example.tex + RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-Std-example.tex + RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-example.pdf + RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-example.tex + RELOC/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.pdf + RELOC/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.tex + RELOC/doc/fonts/mathdesign/MD-itc-Charter-ITC-Std-example.tex + RELOC/doc/fonts/mathdesign/MD-urw-GaramondNo8-example.tex + RELOC/doc/fonts/mathdesign/README + RELOC/doc/fonts/mathdesign/mathdesign-doc.pdf details="Package documentation" + RELOC/doc/fonts/mathdesign/mathdesign-doc.tex +runfiles size=2805 + RELOC/dvips/mathdesign/config.mdbch + RELOC/dvips/mathdesign/config.mdici + RELOC/dvips/mathdesign/config.mdpgd + RELOC/dvips/mathdesign/config.mdpus + RELOC/dvips/mathdesign/config.mdput + RELOC/dvips/mathdesign/config.mdugm + RELOC/fonts/enc/dvips/mathdesign/a_2dncez.enc + RELOC/fonts/enc/dvips/mathdesign/a_2rwgaw.enc + RELOC/fonts/enc/dvips/mathdesign/a_42s2zl.enc + RELOC/fonts/enc/dvips/mathdesign/a_45o73x.enc + RELOC/fonts/enc/dvips/mathdesign/a_4b5i6w.enc + RELOC/fonts/enc/dvips/mathdesign/a_57soyv.enc + RELOC/fonts/enc/dvips/mathdesign/a_csqf63.enc + RELOC/fonts/enc/dvips/mathdesign/a_e65dz6.enc + RELOC/fonts/enc/dvips/mathdesign/a_g2masa.enc + RELOC/fonts/enc/dvips/mathdesign/a_g47ck7.enc + RELOC/fonts/enc/dvips/mathdesign/a_ipzj2o.enc + RELOC/fonts/enc/dvips/mathdesign/a_kld4uc.enc + RELOC/fonts/enc/dvips/mathdesign/a_mdpn2k.enc + RELOC/fonts/enc/dvips/mathdesign/a_n2elaj.enc + RELOC/fonts/enc/dvips/mathdesign/a_oxfbe4.enc + RELOC/fonts/enc/dvips/mathdesign/a_py5znv.enc + RELOC/fonts/enc/dvips/mathdesign/a_qnfjtt.enc + RELOC/fonts/enc/dvips/mathdesign/a_qzg4u4.enc + RELOC/fonts/enc/dvips/mathdesign/a_r2nxhw.enc + RELOC/fonts/enc/dvips/mathdesign/a_rl4tn2.enc + RELOC/fonts/enc/dvips/mathdesign/a_rxz3ga.enc + RELOC/fonts/enc/dvips/mathdesign/a_telfo7.enc + RELOC/fonts/enc/dvips/mathdesign/a_uwwzqd.enc + RELOC/fonts/enc/dvips/mathdesign/a_yezm6g.enc + RELOC/fonts/enc/dvips/mathdesign/md8x.enc + RELOC/fonts/map/dvips/mathdesign/mdbch.map + RELOC/fonts/map/dvips/mathdesign/mdgreek.map + RELOC/fonts/map/dvips/mathdesign/mdici.map + RELOC/fonts/map/dvips/mathdesign/mdpgd.map + RELOC/fonts/map/dvips/mathdesign/mdpus.map + RELOC/fonts/map/dvips/mathdesign/mdput.map + RELOC/fonts/map/dvips/mathdesign/mdugm.map + RELOC/fonts/tfm/public/mathdesign/mdbch/bchb8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchbc8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchbc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchbi8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchr8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchrc8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchrc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchri8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chboc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chree.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chroc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdrC7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibee.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciree.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cirma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cirmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicici8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicici8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciric8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcicc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcirc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcicc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcirc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdree.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t5.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t6.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t7.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t8.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t9.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usree.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t5.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t6.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t7.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t8.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t9.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusric8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbee.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utree.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putb8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putb8x.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putbi8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putr8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putr8x.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putri8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmree.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmm8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmmi8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmr8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmri8a.tfm + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7v.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7y.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbma.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbmb.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chree.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chrma.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdici/UtopiaStd-Regular.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7v.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7y.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibee.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibma.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibmb.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7v.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7y.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciree.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cirma.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cirmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdree.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdrma.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsma.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-utrma.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t5.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t6.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t7.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t8.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t9.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usree.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t5.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t6.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t7.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t8.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t9.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usrma.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussma.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussmb.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7v.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7y.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbee.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbma.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbmb.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utree.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utrma.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7v.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7y.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmma.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmmb.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmree.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmrma.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmrmb.pfb + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7v.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7y.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbma.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbmb.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7v.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7y.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrma.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrmb.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCr7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCri7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbr7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbri7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCri7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdr7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdrC7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdri7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7v.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibc8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibic8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibiu7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibma.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibmb.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibui7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicic8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicc8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicici8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicici8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicic8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7v.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirc8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciric8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciric8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciriu7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirma.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirmb.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirui7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcib7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcib8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibi7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibi8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcic7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcicc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcici7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcici8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcicic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcir7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcir8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcirc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxciri7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxciri8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxciric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdb8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7v.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdric8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrma.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrmb.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7v.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsma.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsmb.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdb7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdri7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgds7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgds8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusb8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7v.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusric8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrma.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrmb.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7v.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussma.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussmb.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusb7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusri7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxuss7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxuss8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussic8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7v.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7y.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbma.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbmb.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbo7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbo8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbo8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7v.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7y.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrma.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrmb.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputro7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputro8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputro8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7v.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7y.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmma.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmmb.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7v.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7y.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrma.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrmb.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrofc8t.vf + RELOC/tex/latex/mathdesign/mathdesign.sty + RELOC/tex/latex/mathdesign/mdacmr.fd + RELOC/tex/latex/mathdesign/mdbch/mdamdbch.fd + RELOC/tex/latex/mathdesign/mdbch/mdbch.cfg + RELOC/tex/latex/mathdesign/mdbch/mdbch.sty + RELOC/tex/latex/mathdesign/mdbch/mdbmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/omlmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/omsmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/omxmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/ot1mdbch.fd + RELOC/tex/latex/mathdesign/mdbch/t1mdbch.fd + RELOC/tex/latex/mathdesign/mdbch/ts1mdbch.fd + RELOC/tex/latex/mathdesign/mdbcmr.fd + RELOC/tex/latex/mathdesign/mdfont.def + RELOC/tex/latex/mathdesign/mdici/mdamdici.fd + RELOC/tex/latex/mathdesign/mdici/mdbmdici.fd + RELOC/tex/latex/mathdesign/mdici/mdici.cfg + RELOC/tex/latex/mathdesign/mdici/mdici.sty + RELOC/tex/latex/mathdesign/mdici/omlmdici.fd + RELOC/tex/latex/mathdesign/mdici/omsmdici.fd + RELOC/tex/latex/mathdesign/mdici/omxmdici.fd + RELOC/tex/latex/mathdesign/mdici/ot1mdici.fd + RELOC/tex/latex/mathdesign/mdici/t1mdici.fd + RELOC/tex/latex/mathdesign/mdici/ts1mdici.fd + RELOC/tex/latex/mathdesign/mdpgd/mdamdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/mdbmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/mdpgd.cfg + RELOC/tex/latex/mathdesign/mdpgd/mdpgd.sty + RELOC/tex/latex/mathdesign/mdpgd/omlmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/omsmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/omxmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/ot1mdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/t1mdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/ts1mdpgd.fd + RELOC/tex/latex/mathdesign/mdpus/mdamdpus.fd + RELOC/tex/latex/mathdesign/mdpus/mdbmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/mdpus.cfg + RELOC/tex/latex/mathdesign/mdpus/mdpus.sty + RELOC/tex/latex/mathdesign/mdpus/omlmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/omsmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/omxmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/ot1mdpus.fd + RELOC/tex/latex/mathdesign/mdpus/t1mdpus.fd + RELOC/tex/latex/mathdesign/mdpus/ts1mdpus.fd + RELOC/tex/latex/mathdesign/mdput/mdamdput.fd + RELOC/tex/latex/mathdesign/mdput/mdbmdput.fd + RELOC/tex/latex/mathdesign/mdput/mdput.cfg + RELOC/tex/latex/mathdesign/mdput/mdput.sty + RELOC/tex/latex/mathdesign/mdput/omlmdput.fd + RELOC/tex/latex/mathdesign/mdput/omsmdput.fd + RELOC/tex/latex/mathdesign/mdput/omxmdput.fd + RELOC/tex/latex/mathdesign/mdput/ot1mdput.fd + RELOC/tex/latex/mathdesign/mdput/t1mdput.fd + RELOC/tex/latex/mathdesign/mdput/ts1mdput.fd + RELOC/tex/latex/mathdesign/mdsffont.def + RELOC/tex/latex/mathdesign/mdttfont.def + RELOC/tex/latex/mathdesign/mdugm/mdamdugm.fd + RELOC/tex/latex/mathdesign/mdugm/mdbmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/mdugm.cfg + RELOC/tex/latex/mathdesign/mdugm/mdugm.sty + RELOC/tex/latex/mathdesign/mdugm/omlmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/omsmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/omxmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/ot1mdugm.fd + RELOC/tex/latex/mathdesign/mdugm/t1mdugm.fd + RELOC/tex/latex/mathdesign/mdugm/ts1mdugm.fd + RELOC/tex/latex/mathdesign/omlmdgrb.fd + RELOC/tex/latex/mathdesign/omlmdgrbc.fd + RELOC/tex/latex/mathdesign/omlmdgrd.fd + RELOC/tex/latex/mathdesign/omlmdgrdc.fd +catalogue-also fourier +catalogue-ctan /fonts/mathdesign +catalogue-license gpl +catalogue-topics font font-type1 font-maths font-supp-maths +catalogue-version 2.31 + +name mathdots +category Package +revision 34301 +shortdesc Commands to produce dots in math that respect font size +relocated 1 +longdesc Redefines \ddots and \vdots, and defines \iddots. The dots +longdesc produced by \iddots slant in the opposite direction to \ddots. +longdesc All the commands are designed to change size appropriately in +longdesc scripts, as well as in response to LaTeX size changing +longdesc commands. The commands may also be used in plain TeX. +containersize 2168 +containerchecksum 1235583223f831852458d53e1e8cb767495987829d4930387f4dccf7ab060b9f0af8722d6c1aaa820c1a371f8ce1c0222633e6feb064e0344e639eedbaa4129d +doccontainersize 397300 +doccontainerchecksum b1ce238b3abb3397b0085983e752dbb9eb9d9c1026046726360498d089304f7f4deecd656dceee27b63934092568f0ca46620231f03e0952c43f28ae73e97dc0 +docfiles size=106 + RELOC/doc/generic/mathdots/README details="Readme" + RELOC/doc/generic/mathdots/mathdots.pdf details="Package documentation" + RELOC/doc/generic/mathdots/mdotest.pdf + RELOC/doc/generic/mathdots/mdotest.tex + RELOC/doc/generic/mathdots/plmdotest.tex +srccontainersize 7252 +srccontainerchecksum dd590187fadbf0eb788eade245d4198a4c1075433db1a0df00ce2d5cf2b6f332e09ce995292d21ad46f13ba68284808cfea6c7818a47bf99a61ae44e5381fe55 +srcfiles size=7 + RELOC/source/generic/mathdots/mathdots.dtx + RELOC/source/generic/mathdots/mathdots.ins +runfiles size=3 + RELOC/tex/generic/mathdots/mathdots.sty + RELOC/tex/generic/mathdots/mathdots.tex +catalogue-ctan /macros/generic/mathdots +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.9 + +name mathexam +category Package +revision 15878 +shortdesc Package for typesetting exams +relocated 1 +longdesc The package can help you typeset exams (mostly in mathematics +longdesc and related disciplines where students are required to show +longdesc their calculations followed by one or more short answers). It +longdesc provides commands for inclusion of space for calculations, as +longdesc well as commands for automatic creation of "answer spaces". In +longdesc addition, the package will automatically create page headers +longdesc and footers, and will let you include instructions and space +longdesc for students to put their name. +containersize 1620 +containerchecksum 30fc0cc9c44f2b7a64860a7d8eeecd25eec7e888f4ebdafade236edebecbd79f5d832566d151243430a60c5995807ea77d34e19cfd5e0d8cb037ca67d3e933bc +doccontainersize 148812 +doccontainerchecksum 6af2944d12d09f1ab593a7002b9de71d14c5436885b79e5e495dc0ba1fdf9dc6b9080bd009bafff988b019ec3e75da934a7c8c043870fdd52a9a46b36c9d646d +docfiles size=47 + RELOC/doc/latex/mathexam/README details="Readme" + RELOC/doc/latex/mathexam/mathexam.pdf details="Package documentation" + RELOC/doc/latex/mathexam/sample.pdf details="Sample exam" + RELOC/doc/latex/mathexam/sample.tex +srccontainersize 5988 +srccontainerchecksum f2324e1f9e0fe8f259b6e1d2a1370ddfec87091c82650432e24b08c598fd6ce57334b88ab53a6049f416ff14c3ccfc7c250029767eccf05456d6c233e665f6a7 +srcfiles size=5 + RELOC/source/latex/mathexam/mathexam.dtx + RELOC/source/latex/mathexam/mathexam.ins +runfiles size=1 + RELOC/tex/latex/mathexam/mathexam.sty +catalogue-ctan /macros/latex/contrib/mathexam +catalogue-license lppl +catalogue-topics exam maths +catalogue-version 1.00 + +name mathfam256 +category Package +revision 53519 +shortdesc Extend math family up to 256 for pLaTeX/upLaTeX/Lamed +relocated 1 +longdesc This package increases the upper limit of math symbols up to +longdesc 256, using \omath... primitives. These primitives were +longdesc originally introduced in Omega and are currently available in +longdesc the following formats: pLaTeX (runs on e-pTeX), upLaTeX (runs +longdesc on e-upTeX), Lamed (runs on Aleph, successor of Omega). +containersize 4292 +containerchecksum 20912d6df0f287c14300e4598400cc2da676f7e484757e3a9a0c41ef6861d7180cf7110fbc7b5668ba8a713cb66b9120736b64a1f5098df25379ebc7b14e44f5 +doccontainersize 88088 +doccontainerchecksum 26aa672bc55de7c45a857d1ae26e156fe19f4ffa05417a7a4163526d01d5f58576f8d6db951e377b646e1ff25167571587d09f21eadecb95bc96e6b85707a9bb +docfiles size=25 + RELOC/doc/latex/mathfam256/LICENSE + RELOC/doc/latex/mathfam256/README.md details="Readme" + RELOC/doc/latex/mathfam256/mathfam256.pdf details="Package documentation" + RELOC/doc/latex/mathfam256/mathfam256.tex +runfiles size=5 + RELOC/tex/latex/mathfam256/mathfam256.sty +catalogue-contact-repository https://github.com/aminophen/mathfam256 +catalogue-ctan /macros/latex/contrib/mathfam256 +catalogue-license bsd3 +catalogue-topics maths omega japanese etex +catalogue-version 0.5 + +name mathfixs +category Package +revision 49547 +shortdesc Fix various layout issues in math mode +relocated 1 +longdesc This is a LaTeX2e package to fix some odd behaviour in math +longdesc mode such as spacing around fractions and roots, math symbols +longdesc within bold text as well as capital Greek letters. It also adds +longdesc some related macros. +containersize 2796 +containerchecksum 513e5dd9eb58ca5b1eb8daec663c48577fa2102ade0234412dbb22b6d756ad37009c689746c57c6624c731df64fa8d58eabfecbd4cdc31c576eb0ecd1e232fdf +doccontainersize 293968 +doccontainerchecksum c9ad8dda9ffaa77ba727f536016ba1dcbfb91c4d7ab98b1e4b72156591e8ff0359f623475324e57c6b22f509cdfe7e30ba67c3fb22f9dd152e59f1557c96a6a6 +docfiles size=76 + RELOC/doc/latex/mathfixs/README.txt details="Readme" + RELOC/doc/latex/mathfixs/mafxsamp.tex + RELOC/doc/latex/mathfixs/mathfixs.pdf details="Package documentation" +srccontainersize 11900 +srccontainerchecksum f08a26458ed871a11a44a1e957a1e9140b3e95c98ba1bd958cb9d63cbe483ee94e91217a5a7e54745b2cf245ee7f898fb64238941d1a8fce04699a3b8a06b7e3 +srcfiles size=13 + RELOC/source/latex/mathfixs/mathfixs.dtx + RELOC/source/latex/mathfixs/mathfixs.ins +runfiles size=3 + RELOC/tex/latex/mathfixs/mathfixs.sty +catalogue-ctan /macros/latex/contrib/mathfixs +catalogue-license lppl1.3 +catalogue-topics maths bugfix +catalogue-version 1.01 + +name mathfont +category Package +revision 53035 +shortdesc Use TrueType and OpenType fonts in math mode +relocated 1 +longdesc This package provides a flexible interface for changing the +longdesc font of math mode characters. The package allows the user to +longdesc specify a default unicode font for each of six basic classes of +longdesc Latin and Greek characters, and it provides additional support +longdesc for unicode alphanumeric symbols. Crucially, mathfont is +longdesc compatible with both LuaLaTeX and XeLaTeX, and it provides +longdesc several font-loading commands that allow the user to change +longdesc fonts locally or for individual symbols within math mode. +containersize 11396 +containerchecksum 5951daaa320cedea9d40ce0af8b13f9e15e926bcc14cc31f64bfc92bbd22e5a600e1c696f0e7bbbd1cf6a31141c6d3a985433a8000df7c0eee0139c40393667f +doccontainersize 835060 +doccontainerchecksum a09ec87af77663740e5cfcd271e7ebae1cacbee24a31093912a7ef3925827bf35800db424d3a88a40338fb1f1e63d033071b8cd3449493d6d3a64ada760289b1 +docfiles size=226 + RELOC/doc/latex/mathfont/README.txt details="Readme" + RELOC/doc/latex/mathfont/mathfont_code.pdf details="Code implementation" + RELOC/doc/latex/mathfont/mathfont_doc_patch.tex + RELOC/doc/latex/mathfont/mathfont_heading.tex + RELOC/doc/latex/mathfont/mathfont_index_warning.tex + RELOC/doc/latex/mathfont/mathfont_symbol_list.pdf details="Symbol list" + RELOC/doc/latex/mathfont/mathfont_symbol_list.tex + RELOC/doc/latex/mathfont/mathfont_user_guide.pdf details="User guide" + RELOC/doc/latex/mathfont/mathfont_user_guide.tex +srccontainersize 35344 +srccontainerchecksum 8120ed30e7911dd224586f66ac93bd96ef3b87684239a69c21868968d112532c49d2d0a356e05ec17e1fd05433898c83b20dc3e8d8a51539d46a4ae53998fba6 +srcfiles size=45 + RELOC/source/latex/mathfont/mathfont_code.dtx +runfiles size=21 + RELOC/tex/latex/mathfont/mathfont.sty +catalogue-ctan /macros/latex/contrib/mathfont +catalogue-license lppl1.3c +catalogue-topics font-mgmt font-use maths +catalogue-version 1.6 + +name mathlig +category Package +revision 54244 +shortdesc Define maths "ligatures" +relocated 1 +longdesc The package defines character sequences that "behave like" +longdesc ligatures, in maths mode. Example definitions (chosen to show +longdesc the package's flexibility, are: \mathlig{->}{\rightarrow} +longdesc \mathlig{<-}{\leftarrow} \mathlig{<->}{\leftrightarrow} +containersize 2436 +containerchecksum 1ec5761aded23b8ebd4b9afece00ab1f3f9a18886edd12ffd2a2e0b5b9fe9adc9a4ee6fb629933f36f6a161c76e85b54e3d9855871c3387cb0f70f90194b2615 +runfiles size=2 + RELOC/tex/generic/mathlig/mathlig.tex +catalogue-ctan /macros/generic/misc/mathlig.tex +catalogue-license other-free +catalogue-topics shortcut +catalogue-version 1.0 + +name mathpartir +category Package +revision 39864 +shortdesc Typesetting sequences of math formulas, e.g. type inference rules +relocated 1 +longdesc The package provides macros for typesetting math formulas in +longdesc mixed horizontal and vertical mode, automatically as best fit. +longdesc It provides an environment mathpar that behaves much as a loose +longdesc centered paragraph where words are math formulas, and spaces +longdesc between them are larger and adjustable. It also provides a +longdesc macro \inferrule for typeseting fractions where both the +longdesc numerator and denominator may be sequences of formulas that +longdesc will be also typeset in a similar way. It can typically be used +longdesc for typeseting sets of type inference rules or typing +longdesc derivations. A macro inferrule for typesetting type inference +longdesc rules. +containersize 4608 +containerchecksum 8e1c99db2d64e9c815bf8b6784d1c717969a5ecc96281df2f815ba7c0d779b53484c61ca233468de793be94cf636373f4fc0e3413c0ce32d4715db30cafe5471 +doccontainersize 271876 +doccontainerchecksum fca6b3e2650ada022617af137dc86858c83c51c55fcadf2ff21832a1fcd9fc44f371f89e8943c5e1d117a09893c3587f15a3e8021b11f7472dd3c9d37383f8a0 +docfiles size=71 + RELOC/doc/latex/mathpartir/COPYING + RELOC/doc/latex/mathpartir/README details="Readme" + RELOC/doc/latex/mathpartir/mathpartir.pdf details="Package documentation" +srccontainersize 11552 +srccontainerchecksum f5c5b328745494965d1907f6dc187859a5f9bda5a8beda164e7317dc1b8a6e886073f9d2e9b564c6aa56d55e7cb7191afeea38edc059b2dd55066e68ff826dd8 +srcfiles size=11 + RELOC/source/latex/mathpartir/mathpartir.dtx + RELOC/source/latex/mathpartir/mathpartir.ins +runfiles size=4 + RELOC/tex/latex/mathpartir/mathpartir.sty +catalogue-ctan /macros/latex/contrib/mathpartir +catalogue-license gpl2 +catalogue-topics maths +catalogue-version 1.3.2 + +name mathpazo +category Package +revision 52663 +shortdesc Fonts to typeset mathematics to match Palatino +relocated 1 +longdesc The Pazo Math fonts are a family of PostScript fonts suitable +longdesc for typesetting mathematics in combination with the Palatino +longdesc family of text fonts. The Pazo Math family is made up of five +longdesc fonts provided in Adobe Type 1 format (PazoMath, +longdesc PazoMath-Italic, PazoMath-Bold, PazoMath-BoldItalic, and +longdesc PazoMathBlackboardBold). These contain, in designs that match +longdesc Palatino, glyphs that are usually not available in Palatino and +longdesc for which Computer Modern looks odd when combined with +longdesc Palatino. These glyphs include the uppercase Greek alphabet in +longdesc upright and slanted shapes in regular and bold weights, the +longdesc lowercase Greek alphabet in slanted shape in regular and bold +longdesc weights, several mathematical glyphs (partialdiff, summation, +longdesc product, coproduct, emptyset, infinity, and proportional) in +longdesc regular and bold weights, other glyphs (Euro and dotlessj) in +longdesc upright and slanted shapes in regular and bold weights, and the +longdesc uppercase letters commonly used to represent various number +longdesc sets (C, I, N, Q, R, and Z) in blackboard bold. LaTeX macro +longdesc support (using package mathpazo.sty) is provided in psnfss (a +longdesc required part of any LaTeX distribution). +depend fpl +depend palatino +containersize 63640 +containerchecksum 72bfba52e37abd933cb7b1b19dd813c3c76438591c94f9c407cabb8a44c8c67f78fae04442027287e5bf30b7239c3703ece4271194716882773eeb50d4cb2f47 +doccontainersize 373532 +doccontainerchecksum 94e624f2cea50bf3534300d3332dd61e1bc5b4c834603356831d0f9bf4c6bdc34af5d31df002c10430d4945c2c71dbf7c156b7b05ba08c657cc2d960839c2a35 +docfiles size=109 + RELOC/doc/latex/mathpazo/README.txt + RELOC/doc/latex/mathpazo/gpl.txt + RELOC/doc/latex/mathpazo/mapfplm.tex + RELOC/doc/latex/mathpazo/mapppl.tex + RELOC/doc/latex/mathpazo/mapzplm.tex + RELOC/doc/latex/mathpazo/pazofnst.tex + RELOC/doc/latex/mathpazo/pazotest.pdf details="Font tables:" +srccontainersize 17976 +srccontainerchecksum bd6aba477ca38c9778d7d23460420f485ac5658e9514ac2260475a50b6ee7e2ff736bac81a4548fb4aebae952a406a0de1bef01bd7d8fe4984080ab835d328d4 +srcfiles size=117 + RELOC/source/latex/mathpazo/Makefile + RELOC/source/latex/mathpazo/cmbsy10.pl + RELOC/source/latex/mathpazo/cmbx10.pl + RELOC/source/latex/mathpazo/cmex10.pl + RELOC/source/latex/mathpazo/cmmi10.pl + RELOC/source/latex/mathpazo/cmmib10.pl + RELOC/source/latex/mathpazo/cmr10.pl + RELOC/source/latex/mathpazo/cmsy10.pl + RELOC/source/latex/mathpazo/fplmb.inf + RELOC/source/latex/mathpazo/fplmb.mtx + RELOC/source/latex/mathpazo/fplmb.pl + RELOC/source/latex/mathpazo/fplmbb.inf + RELOC/source/latex/mathpazo/fplmbb.mtx + RELOC/source/latex/mathpazo/fplmbb.pl + RELOC/source/latex/mathpazo/fplmbi.inf + RELOC/source/latex/mathpazo/fplmbi.mtx + RELOC/source/latex/mathpazo/fplmbi.pl + RELOC/source/latex/mathpazo/fplmr.inf + RELOC/source/latex/mathpazo/fplmr.mtx + RELOC/source/latex/mathpazo/fplmr.pl + RELOC/source/latex/mathpazo/fplmri.inf + RELOC/source/latex/mathpazo/fplmri.mtx + RELOC/source/latex/mathpazo/fplmri.pl + RELOC/source/latex/mathpazo/haxzplmb.mtx + RELOC/source/latex/mathpazo/haxzplmr.mtx + RELOC/source/latex/mathpazo/inf/fplmb.inf + RELOC/source/latex/mathpazo/inf/fplmbb.inf + RELOC/source/latex/mathpazo/inf/fplmbi.inf + RELOC/source/latex/mathpazo/inf/fplmr.inf + RELOC/source/latex/mathpazo/inf/fplmri.inf + RELOC/source/latex/mathpazo/nokernum.mtx + RELOC/source/latex/mathpazo/omsnames.mtx + RELOC/source/latex/mathpazo/pazofnst/Makefile + RELOC/source/latex/mathpazo/pazofnst/cmbsy10.pl + RELOC/source/latex/mathpazo/pazofnst/cmbx10.pl + RELOC/source/latex/mathpazo/pazofnst/cmex10.pl + RELOC/source/latex/mathpazo/pazofnst/cmmi10.pl + RELOC/source/latex/mathpazo/pazofnst/cmmib10.pl + RELOC/source/latex/mathpazo/pazofnst/cmr10.pl + RELOC/source/latex/mathpazo/pazofnst/cmsy10.pl + RELOC/source/latex/mathpazo/pazofnst/haxzplmb.mtx + RELOC/source/latex/mathpazo/pazofnst/haxzplmr.mtx + RELOC/source/latex/mathpazo/pazofnst/nokernum.mtx + RELOC/source/latex/mathpazo/pazofnst/omsnames.mtx + RELOC/source/latex/mathpazo/pazofnst/pazofnst.tex + RELOC/source/latex/mathpazo/pazofnst/unsetcm4pl.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetint.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetosf.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetpl4cm.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetpunct.mtx + RELOC/source/latex/mathpazo/pazofnst/zplmbgop.mtx + RELOC/source/latex/mathpazo/pazofnst/zplmsum.mtx + RELOC/source/latex/mathpazo/pplr8a.mtx + RELOC/source/latex/mathpazo/unsetcm4pl.mtx + RELOC/source/latex/mathpazo/unsetint.mtx + RELOC/source/latex/mathpazo/unsetosf.mtx + RELOC/source/latex/mathpazo/unsetpl4cm.mtx + RELOC/source/latex/mathpazo/unsetpunct.mtx + RELOC/source/latex/mathpazo/zplmbgop.mtx + RELOC/source/latex/mathpazo/zplmsum.mtx +runfiles size=41 + RELOC/fonts/afm/public/mathpazo/fplmb.afm + RELOC/fonts/afm/public/mathpazo/fplmbb.afm + RELOC/fonts/afm/public/mathpazo/fplmbi.afm + RELOC/fonts/afm/public/mathpazo/fplmr.afm + RELOC/fonts/afm/public/mathpazo/fplmri.afm + RELOC/fonts/tfm/public/mathpazo/fplmb.tfm + RELOC/fonts/tfm/public/mathpazo/fplmbb.tfm + RELOC/fonts/tfm/public/mathpazo/fplmbi.tfm + RELOC/fonts/tfm/public/mathpazo/fplmr.tfm + RELOC/fonts/tfm/public/mathpazo/fplmri.tfm + RELOC/fonts/tfm/public/mathpazo/zplmb7m.tfm + RELOC/fonts/tfm/public/mathpazo/zplmb7t.tfm + RELOC/fonts/tfm/public/mathpazo/zplmb7y.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7m.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7t.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7v.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7y.tfm + RELOC/fonts/type1/public/mathpazo/fplmb.pfb + RELOC/fonts/type1/public/mathpazo/fplmbb.pfb + RELOC/fonts/type1/public/mathpazo/fplmbi.pfb + RELOC/fonts/type1/public/mathpazo/fplmr.pfb + RELOC/fonts/type1/public/mathpazo/fplmri.pfb + RELOC/fonts/vf/public/mathpazo/zplmb7m.vf + RELOC/fonts/vf/public/mathpazo/zplmb7t.vf + RELOC/fonts/vf/public/mathpazo/zplmb7y.vf + RELOC/fonts/vf/public/mathpazo/zplmr7m.vf + RELOC/fonts/vf/public/mathpazo/zplmr7t.vf + RELOC/fonts/vf/public/mathpazo/zplmr7v.vf + RELOC/fonts/vf/public/mathpazo/zplmr7y.vf +catalogue-also pxfonts newpx tex-gyre-math-pagella +catalogue-ctan /fonts/mathpazo +catalogue-license gpl +catalogue-topics font font-type1 font-maths font-bbd +catalogue-version 1.003 + +name mathpunctspace +category Package +revision 46754 +shortdesc Control the space after punctuation in math expressions +relocated 1 +longdesc This package provides a mechanism to control the space after +longdesc commas and semicolons in mathematical expressions. +containersize 1356 +containerchecksum 81d1fa6ce0e96190516f2440517d554e259013869065a4242c55bcc06f2d9eab1f8102464da71fe72dd0d231248b637d54733b2a11b832d2153f151dc5513339 +doccontainersize 190188 +doccontainerchecksum ce318466af0c6690a905c92e9f24f9a7c2891c4afac7c51eead8ebf211bf13e2c20d368782ed41f20a2bb2d6f3a6cd6bf44eb6a0c848ff8006564ec98aeae2d7 +docfiles size=108 + RELOC/doc/latex/mathpunctspace/README.md details="Readme" + RELOC/doc/latex/mathpunctspace/comma0mu-semicolonnat-colonnat.pdf + RELOC/doc/latex/mathpunctspace/comma10mu-semicolon20mu-colon30mu.pdf + RELOC/doc/latex/mathpunctspace/comma5pt-semicolon5pt-colon5pt.pdf + RELOC/doc/latex/mathpunctspace/latexorg.pdf + RELOC/doc/latex/mathpunctspace/mathpunctspace.pdf details="Package documentation" + RELOC/doc/latex/mathpunctspace/mathpunctspace.tex +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-license bsd2 +catalogue-topics maths typesetting +catalogue-version 1.1 + +name maths-symbols +category Package +revision 37763 +shortdesc Summary of mathematical symbols available in LaTeX +relocated 1 +longdesc A predecessor of the comprehensive symbols list, covering +longdesc mathematical symbols available in standard LaTeX (including the +longdesc AMS symbols, if available at compile time). +containersize 520 +containerchecksum f2028a2b8dad52aee2db1fcf679647192cb926e13cca831a419d876783e492dbc590e4745302addae7d3f01eabf7eaa1fd7cc6f757eff2ab9d9b5c39a1b0b785 +doccontainersize 348784 +doccontainerchecksum b60a66b3cc67e4dde62b0fc0552233ab59b1981ab92cedbe4c0de31a4c9e9d3207cf54ec5d2361f81937867d81bd345e77c4ab3e36fcd8588851765ec3267864 +docfiles size=94 + RELOC/doc/latex/maths-symbols/README details="Readme" + RELOC/doc/latex/maths-symbols/maths-symbols.pdf details="The document itself" + RELOC/doc/latex/maths-symbols/maths-symbols.tex + RELOC/doc/latex/maths-symbols/scriptfonts.pdf + 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-license lppl1.2 +catalogue-topics font-index +catalogue-version 3.4 + +name mathspec +category Package +revision 42773 +shortdesc Specify arbitrary fonts for mathematics in XeTeX +relocated 1 +longdesc The mathspec package provides an interface to typeset +longdesc mathematics in XeLaTeX with arbitrary text fonts using fontspec +longdesc as a backend. The package is under development and later +longdesc versions might to be incompatible with this version, as this +longdesc version is incompatible with earlier versions. The package +longdesc requires at least version 0.9995 of XeTeX. +containersize 9728 +containerchecksum 7e9838ad2f212354b103b9beb61d60f124d2f47e52a04e2fad61de01e2e8220ca5f19f5b2188cbfefb379f94dc4b76573355dbde563f887beec29c57b3648ae9 +doccontainersize 172736 +doccontainerchecksum d22c19bd2114bc48f438d820177006170d52d1a261f3cfe69452148f4e11a0ddeb1bb25e1c1fa22ef8d2284c7f34f7ef41bcf9d8e90a89705b3a7515a679a922 +docfiles size=50 + RELOC/doc/xelatex/mathspec/README.txt details="Readme" + RELOC/doc/xelatex/mathspec/mathspec.pdf details="Package documentation" + RELOC/doc/xelatex/mathspec/mathspec.tex +runfiles size=11 + RELOC/tex/xelatex/mathspec/mathspec.sty +catalogue-ctan /macros/xetex/latex/mathspec +catalogue-license lppl +catalogue-topics font-maths font-sel +catalogue-version 0.2b + +name mathspic +category Package +revision 31957 +shortdesc A Perl filter program for use with PiCTeX +longdesc MathsPIC(Perl) is a development of the earlier MathsPIC(DOS) +longdesc program, now implemented as a Perl script, being much more +longdesc portable than the earlier program. MathsPIC parses a plain text +longdesc input file and generates a plain text output-file containing +longdesc commands for drawing a diagram. Version 1.0 produces output +longdesc containing PiCTeX and (La)TeX commands, which may then be +longdesc processed by plain TeX or LaTeX in the usual way. MathsPIC also +longdesc outputs a comprehensive log-file. MathsPIC facilitates creating +longdesc figures using PiCTeX by providing an environment for +longdesc manipulating named points and also allows the use of variables +longdesc and maths (advance, multiply, and divide)--in short--it takes +longdesc the pain out of PiCTeX. Both the original DOS version and the +longdesc new Perl version are available. +depend mathspic.ARCH +containersize 18060 +containerchecksum e556960f07a003e877ce678110e724ef94d34aabc0ae52c59ec2ae487fc7d3e5de169844baaefd61e467e98a7a9718d94d881c3f0d43855e133040bdbddb6a62 +doccontainersize 2460876 +doccontainerchecksum 1702071f4c26097e241ba161258a51461405954105c8a7f2d92a552d6397ef69af029652ba5528df999c569fae32955d1b194b0f7c4475b3fc870656b473386a +docfiles size=1303 + texmf-dist/doc/latex/mathspic/HELP.txt + texmf-dist/doc/latex/mathspic/MATHSPIC.BAT + texmf-dist/doc/latex/mathspic/README.txt details="Readme (Perl version)" + texmf-dist/doc/latex/mathspic/grabtexdata.tex + texmf-dist/doc/latex/mathspic/mathsPICfigures.zip + texmf-dist/doc/latex/mathspic/mathsPICmanual.pdf details="User documentation (Perl version)" + texmf-dist/doc/latex/mathspic/mathsPICmanual.zip + texmf-dist/doc/latex/mathspic/mathspic.lib + texmf-dist/doc/latex/mathspic/mathspic.sh + texmf-dist/doc/latex/mathspic/sourcecode113.html + texmf-dist/doc/latex/mathspic/sourcecode113.nw + texmf-dist/doc/latex/mathspic/sourcecode113.pdf details="Perl source listing" + texmf-dist/doc/man/man1/mathspic.1 + texmf-dist/doc/man/man1/mathspic.man1.pdf +runfiles size=33 + texmf-dist/scripts/mathspic/mathspic.pl + texmf-dist/tex/latex/mathspic/mathspic.sty +catalogue-ctan /graphics/mathspic +catalogue-license lppl +catalogue-topics graphics-prep +catalogue-version 1.13 + +name mathspic.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mathspic +containersize 340 +containerchecksum 4edf0bad1093171933233a215de5300155b6ddbf5656f4d6f59982f453b7686d161cda6fd6ee210c0492cc5b909f26278acbe6164f7d46193a56b2541190e9c0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mathspic + +name mathspic.amd64-freebsd +category Package +revision 23661 +shortdesc amd64-freebsd files of mathspic +containersize 340 +containerchecksum db9a4009beac8a198341e1478ad776e061b599cba8a178b5a56afb6f840cd83252333618463b364350580bc5c862cb4a1fca1cd356fd06f3886103f87e37882c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mathspic + +name mathspic.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mathspic +containersize 344 +containerchecksum e461e4d35f889f9ea0dcd03067815fb7d6bed8062e579e6c8afe356cee2fc73fe4ca50c15f4ac873500ed09e247b61909fe1cab492614a298b771f3e3c987ff8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mathspic + +name mathspic.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mathspic +containersize 340 +containerchecksum 2294bc1a888efa5d855dc81db3483f8dc0b646a04a8f210de889886f2d17dad211f66aa986ee19e12d05c28cee5e2773f888df484617ae882187f91dd4e5a408 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mathspic + +name mathspic.i386-cygwin +category Package +revision 23661 +shortdesc i386-cygwin files of mathspic +containersize 340 +containerchecksum d7b1d85cdb2c845c6192077e237f5a30590cc0c2eea3bc7c9a3f0f9ee49074110e84561380ecad7ba1e0e23c49ba80e581de75025e3d8ac4b6009fdd4d781c6c +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mathspic + +name mathspic.i386-freebsd +category Package +revision 23661 +shortdesc i386-freebsd files of mathspic +containersize 340 +containerchecksum 583e843950be36c7df357ee6d98f8a7ce7c6be18a624f364e346ce230fcb45f59825aefbd0c76740998e3087643004fae81a00a3cc582ee76dc2601e4228f6cf +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mathspic + +name mathspic.i386-linux +category Package +revision 23661 +shortdesc i386-linux files of mathspic +containersize 340 +containerchecksum ea345806fe7441e2b8820b8d7d2e49c5076e7c09080e544ba444da4be99d5402d21aa6aacb26a6717922d6702df3786e1716053f18cafd071dbbc3d9f61d3114 +binfiles arch=i386-linux size=1 + bin/i386-linux/mathspic + +name mathspic.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mathspic +containersize 344 +containerchecksum 21e66f1cf4e0ee8ed3f72de07c1df80ba78450d22598c0c58395e7ec852b9d25a8d3d7d9a9c1d8d07a29f1aa83cf04698f5272662029170fcfb7647f13bff852 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mathspic + +name mathspic.i386-solaris +category Package +revision 23661 +shortdesc i386-solaris files of mathspic +containersize 340 +containerchecksum b1e039b3c2699396c3f6255b4c04c7046599d447a4afbd8ca3668a630844a9cab8f0f6b53a8b6c92ae6631bcc6e3eaa66e9dc87e6d9c1f3889d800cadcac1467 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mathspic + +name mathspic.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mathspic +containersize 340 +containerchecksum 802f9cbff001050906c1e2f4bc7d99f254da1f20c40b918fa02959830ab8803d4951373abd45d20306355a43bf50f948634fc057aaf02f7938ec30069ebab418 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/mathspic + +name mathspic.win32 +category Package +revision 44131 +shortdesc win32 files of mathspic +containersize 680 +containerchecksum e593037252e9bc51914c6e7224794b929d3d70eed023ead8ba37167aab63b47b9b0ca6e18f24a85e59db0532b797813871092af3eea419f559710e273249b170 +binfiles arch=win32 size=1 + bin/win32/mathspic.exe + +name mathspic.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mathspic +containersize 344 +containerchecksum 8d715cde6124782013e2ac37ed07163b9cd3f6bb81c1117c8cb867e1d77266b691779b8784ed319ce531cd68152eadbeac0a5ae597062c07b8f72d94e8c06def +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mathspic + +name mathspic.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mathspic +containersize 348 +containerchecksum f24cacd4c081ee045f85e1f9a43dc37e48820a7119424ca053cade2f571c232bd59b4daf0c3da5165a5f943a76d070a6ad8c76c47bc23829e0b180a69c7b2005 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mathspic + +name mathspic.x86_64-linux +category Package +revision 23661 +shortdesc x86_64-linux files of mathspic +containersize 340 +containerchecksum f4081d212519716264c151fd7d10d2b2a36928c1879f31a93b00aa2ba77900dc2440329d577b75c5858e4a0110ee2e369d7b3ee9fdfea783ba367497ce61e868 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mathspic + +name mathspic.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mathspic +containersize 348 +containerchecksum f8184cdc4b6f7cba3993c109d3e3279bace1272d6203675f1d5dd392023d98d27daf41294e936f689d9e2f919f17d38c1b4a62ed8bb9d3c04a1cf829c7f7e787 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mathspic + +name mathspic.x86_64-solaris +category Package +revision 23661 +shortdesc x86_64-solaris files of mathspic +containersize 340 +containerchecksum 188b9b1f27fbb4c266f77fdbc8abec87fae2aba9f9440332238b4ba56cd91c789d900e6e89a8730406f5b0123c9c62e9adaceaee27edf27fe819ee202b999b70 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mathspic + +name mathtools +category Package +revision 58856 +shortdesc Mathematical tools to use with amsmath +relocated 1 +longdesc Mathtools provides a series of packages designed to enhance the +longdesc appearance of documents containing a lot of mathematics. The +longdesc main backbone is amsmath, so those unfamiliar with this +longdesc required part of the LaTeX system will probably not find the +longdesc packages very useful. Mathtools provides many useful tools for +longdesc mathematical typesetting. It is based on amsmath and fixes +longdesc various deficiencies of amsmath and standard LaTeX. It +longdesc provides: Extensible symbols, such as brackets, arrows, +longdesc harpoons, etc.; Various symbols such as \coloneqq (:=); Easy +longdesc creation of new tag forms; Showing equation numbers only for +longdesc referenced equations; Extensible arrows, harpoons and +longdesc hookarrows; Starred versions of the amsmath matrix environments +longdesc for specifying the column alignment; More building blocks: +longdesc multlined, cases-like environments, new gathered environments; +longdesc Maths versions of \makebox, \llap, \rlap etc.; Cramped math +longdesc styles; and more... Mathtools requires mhsetup. +containersize 20024 +containerchecksum ceb283012776179cdec04899c28cd55c76811d9ece89b3ea188ae47619296db94983f8b768dbd0cf0909c9e7da4b0f1b1bae7e3de4a96193249ed57fc987683a +doccontainersize 986072 +doccontainerchecksum c4ae884edb6c26c832d920b8f04b31641359fcba68e208b9f0eafaf37ba3ab7f465a39869b9890d0b8431861062414be52d9233836ea60a6255731a17374bc9a +docfiles size=248 + RELOC/doc/latex/mathtools/README.md details="Package README" + RELOC/doc/latex/mathtools/empheq.pdf + RELOC/doc/latex/mathtools/mathtools.pdf details="Package documentation" + RELOC/doc/latex/mathtools/mhsetup.pdf +srccontainersize 87984 +srccontainerchecksum 46a21e495a34fc85d59d7952f3089e59f28d5aaa85e980c49c6b61df49c6e7582d98c2da1092be80a2a6191f6186395ad8d7086d3638176933843a6592c2c8c2 +srcfiles size=107 + RELOC/source/latex/mathtools/empheq.dtx + RELOC/source/latex/mathtools/empheq.ins + RELOC/source/latex/mathtools/mathtools.dtx + RELOC/source/latex/mathtools/mathtools.ins + RELOC/source/latex/mathtools/mhsetup.dtx +runfiles size=29 + RELOC/tex/latex/mathtools/empheq.sty + RELOC/tex/latex/mathtools/mathtools.sty + RELOC/tex/latex/mathtools/mhsetup.sty +catalogue-also mhsetup empheq +catalogue-contact-repository https://github.com/latex3/mathtools +catalogue-ctan /macros/latex/contrib/mathtools +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 1.27 + +name matlab-prettifier +category Package +revision 34323 +shortdesc Pretty-print Matlab source code +relocated 1 +longdesc The package extends the facilities of the listings package, to +longdesc pretty-print Matlab and Octave source code. (Note that support +longdesc of Octave syntax is not complete.) +containersize 4140 +containerchecksum 840d860303925d148c10a980218018ed14e2d0ba2b1638f8328308a0400e8862ced7cd28822fd81c3c3533d2ef4cd37e1c4009065b1300011898fefb407ac202 +doccontainersize 663904 +doccontainerchecksum 22b783fbe09f661d1e5034cb623fab29e54df35b4f0379579f430b17a80236a843c15201b6583bf58f22ae39dba34d7f5a4f8482b1c6d185822940c67ac06942 +docfiles size=164 + RELOC/doc/latex/matlab-prettifier/README details="Readme" + RELOC/doc/latex/matlab-prettifier/matlab-prettifier.pdf details="Package documentation" +srccontainersize 21700 +srccontainerchecksum 25daf7d57d376a2a218a48c275b07459b512bb0e6ab95e78969883a3ca26f010c2e3204c0fe9af0922a50b48aa0f87c6b47973cc7adf9678d351faf9e263a9d3 +srcfiles size=23 + RELOC/source/latex/matlab-prettifier/matlab-prettifier.dtx + RELOC/source/latex/matlab-prettifier/matlab-prettifier.ins +runfiles size=4 + RELOC/tex/latex/matlab-prettifier/matlab-prettifier.sty +catalogue-also matlabweb +catalogue-ctan /macros/latex/contrib/matlab-prettifier +catalogue-license lppl1.3 +catalogue-topics listing +catalogue-version 0.3 + +name matrix-skeleton +category Package +revision 54080 +shortdesc A PGF/TikZ library that simplifies working with multiple matrix nodes +relocated 1 +longdesc The package provides a PGF/TikZ library that simplifies working +longdesc with multiple matrix nodes. To do so, it correctly aligns +longdesc groups of nodes with the content of the whole matrix. +longdesc Furthermore, matrix.skeleton provides rows and columns for easy +longdesc styling. +containersize 3504 +containerchecksum 19c2f1b0fedee30735177dd509d312f128f44943ff6ad15574faa9ff2a9bd0c26ba7d5cfbbd11f3caf69d8c12a4ac3adac6ff83232d2ecde6858a860e8140d47 +doccontainersize 145316 +doccontainerchecksum 645a4e02d88f9f4e6dde2bf4d8cc4d5d0cb4ad321f54089874e1dac44cbef13602356f5bcff68b982bcada21ac985abbe4a78e2d93e3053c511eba6e95569e2d +docfiles size=44 + RELOC/doc/latex/matrix-skeleton/LICENSE + RELOC/doc/latex/matrix-skeleton/README.md details="Readme" + RELOC/doc/latex/matrix-skeleton/example.pdf + RELOC/doc/latex/matrix-skeleton/example.tex + RELOC/doc/latex/matrix-skeleton/manual.pdf details="Package documentation" + RELOC/doc/latex/matrix-skeleton/manual.tex +runfiles size=7 + RELOC/tex/latex/matrix-skeleton/pgflibrarymatrix.skeleton.code.tex + RELOC/tex/latex/matrix-skeleton/tikzlibrarymatrix.skeleton.code.tex +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-license isc +catalogue-topics pgf-tikz maths +catalogue-version 1.0 + +name mattens +category Package +revision 17582 +shortdesc Matrices/tensor typesetting +relocated 1 +longdesc The mattens package contains the definitions to typeset +longdesc matrices, vectors and tensors as used in the engineering +longdesc community for the representation of common vectors and tensors +longdesc such as forces, velocities, moments of inertia, etc. +containersize 2844 +containerchecksum 9ae7b4d3e3386a5c9b94a30eafc02d00c9a6376ed356755ba283f7b9b43fc27d3b9dc2994d808360b77d23f39014e230434f404bcf6dc20bc974d9efae97a3dc +doccontainersize 708948 +doccontainerchecksum d67ce30be2e20c5182460b8e567d955c41b364383acd350cba1c07b52576d78016a865148ed871ce7ef3f937eb045201e64e5d5f52fd5b173fe93cf84def2119 +docfiles size=191 + RELOC/doc/latex/mattens/README details="Readme" + RELOC/doc/latex/mattens/mattens.pdf details="Package documentation" + RELOC/doc/latex/mattens/mattens_sample.pdf details="Sample of use" + RELOC/doc/latex/mattens/mattens_sample_src.zip +srccontainersize 14384 +srccontainerchecksum d199c5fe62172d98e7184a2689c3415944128251b75ee45e0629da5200cbb7b954cef1243a165ce2713582afcdac30dcd9f1445ffcaa18a69ece0aa79391d852 +srcfiles size=15 + RELOC/source/latex/mattens/mattens.dtx + RELOC/source/latex/mattens/mattens.ins +runfiles size=3 + RELOC/tex/latex/mattens/mattens.sty +catalogue-ctan /macros/latex/contrib/mattens +catalogue-license lppl +catalogue-topics maths engineering +catalogue-version 1.3 + +name maybemath +category Package +revision 15878 +shortdesc Make math bold or italic according to context +relocated 1 +longdesc The \maybebm and \maybeit macros can be used in maths +longdesc expressions to make the arguments typeset as bold or italic +longdesc respectively if the surrounding context is appropriate. They +longdesc are useful for writing user macros for use in general contexts. +longdesc \maybebm is especially appropriate when section titles contain +longdesc math expressions, since the title will appear bold but the +longdesc header and table of contents usually replicate the title in +longdesc normal width. It uses the bm package to make things bold +longdesc \maybeit performs a similar role to \mathrm{} but the maths +longdesc expression will be italicised if the surrounding text is. +longdesc \maybeitsubscript is provided to shift subscripts to the left +longdesc if the expression is italicised. +containersize 1520 +containerchecksum 32520ff01d76e11bd70694a07b86272425680ca8bf21b6da9412c133836f9ecbc9a9537377ee67cf9292e33dedaa1d33e906b4f681b89f075d1fcbbbbdc989dd +doccontainersize 60212 +doccontainerchecksum b0f978f89ebb7f681e7b045d03a9a6e7e9083d7c468c91d52ef417c85d707243fa0ef253b3e2d1f1737a9c7235fefae06c4a8fe2975cf2c13f7f09ada7752f26 +docfiles size=20 + RELOC/doc/latex/maybemath/README details="Package README" + RELOC/doc/latex/maybemath/maybemath.pdf details="Package documentation" + RELOC/doc/latex/maybemath/maybemath.tex +runfiles size=1 + RELOC/tex/latex/maybemath/maybemath.sty +catalogue-ctan /macros/latex/contrib/maybemath +catalogue-license lppl +catalogue-topics maths font-sel + +name mcaption +category Package +revision 15878 +shortdesc Put captions in the margin +relocated 1 +longdesc The mcaption package provides an mcaption environment which +longdesc puts figure or table captions in the margin. The package works +longdesc with the standard classes and with the KOMA-Script document +longdesc classes scrartcl, scrreprt and scrbook. The package requires +longdesc the changepage package. +containersize 1744 +containerchecksum c3e1c2948e2687bf720dc05dfa1ed6140a1ea55de3cad7ebcfe518d720ed96793b6bde32fb0882cae773f986b11150482fdfb382391650a8c513131b7041555a +doccontainersize 121432 +doccontainerchecksum e803f5731e6ac1c299bc3a42666acb81a75a3f110be729639357a15633e0e7b8ad0a244820b96ae9f8b435d9d1fea54a0b7f14c5db02799b3a632b2f0c5cb4b9 +docfiles size=37 + RELOC/doc/latex/mcaption/CHANGES + RELOC/doc/latex/mcaption/README details="Readme" + RELOC/doc/latex/mcaption/example.tex + RELOC/doc/latex/mcaption/mcaption.pdf details="Package documentation" +srccontainersize 6548 +srccontainerchecksum e859c83efb88fa03790b2ddbe18cea57ee489dd59679559f8d7f3b93a0804d93478412414e131f39bece090ed5b3433e2784facbff9b3ad705a81d1adc542e77 +srcfiles size=7 + RELOC/source/latex/mcaption/mcaption.dtx + RELOC/source/latex/mcaption/mcaption.ins +runfiles size=2 + RELOC/tex/latex/mcaption/mcaption.sty +catalogue-ctan /macros/latex/contrib/mcaption +catalogue-license lppl +catalogue-topics caption +catalogue-version 3.0 + +name mceinleger +category Package +revision 15878 +shortdesc Creating covers for music cassettes +relocated 1 +longdesc A package for creating MC-covers on your own. It allows the +longdesc creation of simple covers as well as covers with an additional +longdesc page for more information about the cassette (table of contents +longdesc e.g.). The rotating package is required. +containersize 1092 +containerchecksum 0792d7a5289965b2379001a54177e1aed4a3356d8611e52ef77f5097bed1918dac324bdf5c618ca76d2925d11539b623cd9d4016ff0f4d1f9283137816ec145d +doccontainersize 43372 +doccontainerchecksum 2dab78fd096927e3958d7270ddf15de9350ec30d1d000e7cf92be3b249ccf70e6faa1dce482a07995e65b4a4549693ce3b34d1a63bcc403ebe81f3d1887ecf90 +docfiles size=15 + RELOC/doc/latex/mceinleger/mceinleger.pdf details="Package documentation" + RELOC/doc/latex/mceinleger/mceinleger.tex +runfiles size=1 + RELOC/tex/latex/mceinleger/mceinleger.sty +catalogue-also cdcover +catalogue-ctan /macros/latex/contrib/mceinleger +catalogue-license gpl +catalogue-topics covers + +name mcexam +category Package +revision 46155 +shortdesc Create randomized Multiple Choice questions +relocated 1 +longdesc This LaTeX package automatically randomly permutes the order of +longdesc questions as well as the answer options in different versions +longdesc of a multiple choice exam/test. Next to the exam versions +longdesc themselves, the package also allows printing a concept version +longdesc of the exam, a key table with the correct answers or points, +longdesc and a document with solutions and explanations per exam +longdesc version. The package also allows writing an R code which +longdesc processes the results of the exam and calculates the grades. +longdesc The following other LaTeX packages are required: enumitem, +longdesc environ, etoolbox, longtable, newfile, pgffor (from the +longdesc PGF/TikZ bundle), xkeyval, and xstring. +containersize 11424 +containerchecksum 37637616c9ccbe4e20ebae6b479e076fe87b6bd5f3bbf9124c79b93cef6e992d82bbb4fcfbbec3e4a7dcc187d66742c410c4a6280328c80765495685b4fa2cac +doccontainersize 241840 +doccontainerchecksum 5d1eddfdca3ebb7fbe28d93ed6e7332147857d7523d3b64e908aa56ef71d9bb2546d05c150737a3401b5ac7f76110a421513db2d8fba906173afbde9e012f7f8 +docfiles size=71 + RELOC/doc/latex/mcexam/README.md details="Readme" + RELOC/doc/latex/mcexam/mcexam.pdf details="Package documentation" + RELOC/doc/latex/mcexam/mcexam.tex + RELOC/doc/latex/mcexam/mcexam_example.r + RELOC/doc/latex/mcexam/mcexam_example.tex +runfiles size=18 + RELOC/tex/latex/mcexam/mcexam.sty +catalogue-also esami +catalogue-ctan /macros/latex/contrib/mcexam +catalogue-license lppl1.3c +catalogue-topics exam +catalogue-version 0.4 + +name mcf2graph +category Package +revision 59086 +shortdesc Draw chemical structure diagrams with Metafont/MetaPost +relocated 1 +longdesc The Molecular Coding Format (MCF) is a linear notation for +longdesc describing chemical structure diagrams. This package converts +longdesc MCF to graphic files using Metafont / MetaPost. +containersize 23336 +containerchecksum 117e5b4e716ff374220c58c940577790c9275be0261bb9423e34a88ae1089f8d6e78aea16e9ee35f9a3d29d21662a4319fd45bd54b0382877b795b2222e7f8b5 +doccontainersize 909748 +doccontainerchecksum d468ca257179f947831ee70e9575de2f7d750cc358ce103b22b2e2eed1725de1d6c1991f5e51be904c690f0b241761d6e7829c3ec171edb767d5525500231264 +docfiles size=265 + RELOC/doc/metapost/mcf2graph/CHANGELOG + RELOC/doc/metapost/mcf2graph/README details="Readme" + RELOC/doc/metapost/mcf2graph/mcf_data_base.mcf + RELOC/doc/metapost/mcf2graph/mcf_exa_soc.mf + RELOC/doc/metapost/mcf2graph/mcf_example.pdf details="Molecular Coding Format Examples" + RELOC/doc/metapost/mcf2graph/mcf_example.tex + RELOC/doc/metapost/mcf2graph/mcf_man_soc.mf + RELOC/doc/metapost/mcf2graph/mcf_manual.pdf details="Package documentation" + RELOC/doc/metapost/mcf2graph/mcf_manual.tex + RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.pdf details="MCF Example for LuaLaTeX" + RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.tex +runfiles size=27 + RELOC/metapost/mcf2graph/mcf2graph.mf + RELOC/tex/latex/mcf2graph/mcf_setup.sty +catalogue-ctan /graphics/mcf2graph +catalogue-license mit +catalogue-topics graphics graphics-mpost chemistry +catalogue-version 4.64 + +name mcite +category Package +revision 18173 +shortdesc Multiple items in a single citation +relocated 1 +longdesc The mcite package allows the user to collapse multiple +longdesc citations into one, as is customary in physics journals. The +longdesc package requires a customised BibTeX style for its work; the +longdesc documentation explains how to do that customisation. +containersize 2656 +containerchecksum 71276681ec29d3d77450a8c343d64a1ea734bb48de0d693a4e9ca795e4a4c9a3d5f4103b5641c8684d49b5c95f56bfd08bd12e1d7e37d06f9170008b51804897 +doccontainersize 138716 +doccontainerchecksum 8c5ae4b1beb334ecba3294108345bd616746ee651f03d39a7bd5f5cac97f671a861fb046e29ae7565863aecf4b043ebe25bf9a4180889c39e48735251e430004 +docfiles size=45 + RELOC/doc/latex/mcite/COPYING + RELOC/doc/latex/mcite/README details="Readme" + RELOC/doc/latex/mcite/mcite.bib + RELOC/doc/latex/mcite/mcite.pdf details="Package documentation" +srccontainersize 7060 +srccontainerchecksum 9f6e6edf49906bf3300123f8fe265ac8f8580c6838d59f7147e9337e67bff71325ee41a3993b3d1cdc9c036b5d519834261fb0a2a9cfe4d3afdbe070b454af8f +srcfiles size=7 + RELOC/source/latex/mcite/Makefile + RELOC/source/latex/mcite/mcite.drv + RELOC/source/latex/mcite/mcite.dtx + RELOC/source/latex/mcite/mcite.ins +runfiles size=2 + RELOC/tex/latex/mcite/mcite.sty +catalogue-ctan /macros/latex/contrib/mcite +catalogue-license gpl +catalogue-topics cite-supp +catalogue-version 1.6 + +name mciteplus +category Package +revision 31648 +shortdesc Enhanced multiple citations +relocated 1 +longdesc The mciteplus LaTeX package is an enhanced reimplementation of +longdesc Thorsten Ohl's mcite package which provides support for the +longdesc grouping of multiple citations together as is often done in +longdesc physics journals. An extensive set of features provide for +longdesc other applications such as reference sublisting. +containersize 34344 +containerchecksum 5be1980964ea8342321964f0db1c750c33fee9f21724608a260ebed22500d1fcfb0fcb7e588a0dd030a6c534b0da904b8bfc3eb0da7b2df34c0b3f2b1b8fb637 +doccontainersize 391980 +doccontainerchecksum 5e720fc2b32ca00d71ade77fd0a47c6ef44d9b7692a8160ddc55a5f60495a40272a7a0c6c2f5bed923ea10703654f155701d4571d72805c1ef900780a209a0a4 +docfiles size=138 + RELOC/doc/latex/mciteplus/README details="Readme" + RELOC/doc/latex/mciteplus/changelog.txt + RELOC/doc/latex/mciteplus/mciteplus_code.txt details="Details for modifying .bst code" + RELOC/doc/latex/mciteplus/mciteplus_doc.pdf details="Package documentation" + RELOC/doc/latex/mciteplus/mciteplus_doc.tex +runfiles size=70 + RELOC/bibtex/bst/mciteplus/IEEEtranM.bst + RELOC/bibtex/bst/mciteplus/IEEEtranMN.bst + RELOC/bibtex/bst/mciteplus/apsrevM.bst + RELOC/bibtex/bst/mciteplus/apsrmpM.bst + RELOC/tex/latex/mciteplus/mciteplus.sty +catalogue-contact-home http://www.michaelshell.org/tex/mciteplus/ +catalogue-ctan /macros/latex/contrib/mciteplus +catalogue-license lppl +catalogue-topics cite-supp +catalogue-version 1.2 + +name mcmthesis +category Package +revision 57333 +shortdesc Template designed for MCM/ICM +relocated 1 +longdesc The package offers a template for MCM (The Mathematical Contest +longdesc in Modeling) and ICM (The Interdisciplinary Contest in +longdesc Modeling) for typesetting the submitted paper. +containersize 3640 +containerchecksum 128de0bf3c8f5ddd7ad5b456d92ee434573bee9e7df028799991068802c0997330ad6a3c8b0d295db7d9eac9e7540d5159cf5ef037ccb1e54cf95dc31c8cceec +doccontainersize 509152 +doccontainerchecksum d93bc6ec219a32ec688933f598042a04f0f7642dc875291ba2437085349e4e697107d2a4bed2c22b2abd3f00009d92fcc01930060ba38aef3444fdbbfed811d1 +docfiles size=138 + RELOC/doc/latex/mcmthesis/LICENSE + RELOC/doc/latex/mcmthesis/LICENSE.tex + RELOC/doc/latex/mcmthesis/README.md details="Readme" + RELOC/doc/latex/mcmthesis/README.tex + RELOC/doc/latex/mcmthesis/code/mcmthesis-matlab1.m + RELOC/doc/latex/mcmthesis/code/mcmthesis-sudoku.cpp + RELOC/doc/latex/mcmthesis/figures/example-image-a.pdf + RELOC/doc/latex/mcmthesis/figures/example-image-b.pdf + RELOC/doc/latex/mcmthesis/figures/example-image-c.pdf + RELOC/doc/latex/mcmthesis/figures/mcmthesis-logo.pdf + RELOC/doc/latex/mcmthesis/mcmthesis-demo.pdf details="Example of use" + RELOC/doc/latex/mcmthesis/mcmthesis-demo.tex + RELOC/doc/latex/mcmthesis/mcmthesis.pdf details="Package documentation" language="zh,en" +srccontainersize 13928 +srccontainerchecksum dc9cb93c8975fa3e7d50e9067dc39c29875f6086a4dbfe657ca77e38feca4af419eac429ed97df41d442ee016f7f6205cbd1aaefd2a2e734af7ca2ea4c79344d +srcfiles size=12 + RELOC/source/latex/mcmthesis/mcmthesis.dtx +runfiles size=3 + RELOC/tex/latex/mcmthesis/mcmthesis.cls +catalogue-contact-repository https://github.com/latexstudio-org/mcmthesis +catalogue-ctan /macros/latex/contrib/mcmthesis +catalogue-license lppl1.3c +catalogue-topics dissertation class +catalogue-version 6.3.1 + +name mdframed +category Package +revision 31075 +shortdesc Framed environments that can split at page boundaries +relocated 1 +longdesc The package develops the facilities of framed in providing +longdesc breakable framed and coloured boxes. The user may instruct the +longdesc package to perform its operations using default LaTeX commands, +longdesc PStricks or TikZ. +containersize 21404 +containerchecksum 0cff0945adc04102e0b0a154cac1f78e9ea903b29e3f880156b888abeb4ca23565d39a7b66d8097c35534baebdf6af152c5b3830d08e1287e8e8d18e8f6344d0 +doccontainersize 1396108 +doccontainerchecksum 06822404872899d6f509fa94f69cdcb81dd69866fbc5a82fd54ca361aaf27133140290cec2d08800dbb39c896ebb7cc19dc4cce38d2a0e45de9c658bbadf3352 +docfiles size=470 + RELOC/doc/latex/mdframed/README.txt + RELOC/doc/latex/mdframed/ctan-lion.png + RELOC/doc/latex/mdframed/mdframed-example-default.pdf + RELOC/doc/latex/mdframed/mdframed-example-default.tex + RELOC/doc/latex/mdframed/mdframed-example-pstricks.pdf + RELOC/doc/latex/mdframed/mdframed-example-pstricks.tex + RELOC/doc/latex/mdframed/mdframed-example-texsx.pdf + RELOC/doc/latex/mdframed/mdframed-example-texsx.tex + RELOC/doc/latex/mdframed/mdframed-example-tikz.pdf + RELOC/doc/latex/mdframed/mdframed-example-tikz.tex + RELOC/doc/latex/mdframed/mdframed.pdf details="Package documentation" +srccontainersize 41792 +srccontainerchecksum 04fa6379f9840676b4fbc31029f091d9112524f8450747ce31687c9ba77a02e41c25ff51676424e97b788c48bf0bbab690459b6b84e128514cda8efd459255d4 +srcfiles size=71 + RELOC/source/latex/mdframed/Makefile + RELOC/source/latex/mdframed/mdframed.dtx + RELOC/source/latex/mdframed/mdframed.ins + RELOC/source/latex/mdframed/mdframedmake.bat +runfiles size=54 + RELOC/tex/latex/mdframed/ltxmdf.cls + RELOC/tex/latex/mdframed/md-frame-0.mdf + RELOC/tex/latex/mdframed/md-frame-1.mdf + RELOC/tex/latex/mdframed/md-frame-2.mdf + RELOC/tex/latex/mdframed/md-frame-3.mdf + RELOC/tex/latex/mdframed/mdframed.sty +catalogue-also framed +catalogue-contact-repository https://github.com/marcodaniel/mdframed +catalogue-ctan /macros/latex/contrib/mdframed +catalogue-license lppl +catalogue-topics boxing box-breaking decoration +catalogue-version 1.9b + +name mdputu +category Package +revision 20298 +shortdesc Upright digits in Adobe Utopia Italic +relocated 1 +longdesc The Annals of Mathematics uses italics for theorems. However, +longdesc slanted digits and parentheses look disturbing when surrounded +longdesc by (upright) mathematics. This package provides virtual fonts +longdesc with italics and upright digits and punctuation, as an +longdesc extension to Mathdesign's Utopia bundle. +containersize 16964 +containerchecksum 2720c63845939d2befea3af157eae95d2550a216cd22634ab0a923a06d50b48e7133e914d210c5d3aaae6fd620312d23d2e55a015c2a24ee1881bc7ed4868778 +doccontainersize 196940 +doccontainerchecksum 8c8097552ffa1f11944203e818742bec244abc5a7708207cbb69c46ffc64acaac28ca390c1ee256cd1cf2af093e39189cc9bcf655e948062cd217b58acee7628 +docfiles size=61 + RELOC/doc/latex/mdputu/README details="Readme" + RELOC/doc/latex/mdputu/mdputu.dtx + RELOC/doc/latex/mdputu/mdputu.ins + RELOC/doc/latex/mdputu/mdputu.pdf details="Package documentation" + RELOC/doc/latex/mdputu/sample.pdf + RELOC/doc/latex/mdputu/sample.tex +runfiles size=29 + RELOC/fonts/tfm/public/mdputu/mdputubi7t.tfm + RELOC/fonts/tfm/public/mdputu/mdputubi8t.tfm + RELOC/fonts/tfm/public/mdputu/mdputuri7t.tfm + RELOC/fonts/tfm/public/mdputu/mdputuri8t.tfm + RELOC/fonts/vf/public/mdputu/mdputubi7t.vf + RELOC/fonts/vf/public/mdputu/mdputubi8t.vf + RELOC/fonts/vf/public/mdputu/mdputuri7t.vf + RELOC/fonts/vf/public/mdputu/mdputuri8t.vf + RELOC/tex/latex/mdputu/mdputu.sty + RELOC/tex/latex/mdputu/ot1mdputu.fd + RELOC/tex/latex/mdputu/t1mdputu.fd +catalogue-ctan /fonts/mdputu +catalogue-license other-free +catalogue-topics font-maths font-virtual +catalogue-version 1.2 + +name mdsymbol +category Package +revision 28399 +shortdesc Symbol fonts to match Adobe Myriad Pro +relocated 1 +longdesc The package provides a font of mathematical symbols, MyriadPro +longdesc The font is designed as a companion to Adobe Myriad Pro, but it +longdesc might also fit well with other contemporary typefaces. +execute addMap mdsymbol.map +containersize 905656 +containerchecksum 49b52141928fedfdf5fdd63251de182761825a6cdcbf423bff562a863df159ac0d1c001239f777e7aef68ddce23c52407758c70f7da42f066775e204ac8c841d +doccontainersize 392096 +doccontainerchecksum ea4ddd0fd65204ec0ed980108d86e97be267ba46c1cf45711c36721bfab9302766ec1d0849b38de75003af564a797f8566def377d8d947d464367bfa40b91399 +docfiles size=100 + RELOC/doc/fonts/mdsymbol/FONTLOG.txt + RELOC/doc/fonts/mdsymbol/OFL.txt + RELOC/doc/latex/mdsymbol/mdsymbol.pdf details="Package documentation, including font tables" +srccontainersize 20092 +srccontainerchecksum 0b649eba13871f6da834bbfb2c6523db6d50bd6a491b042a19f0e061ce9794d2ca03c39d277669b6698b48806fd0b705f322a69743c4fc50233559fd10406280 +srcfiles size=41 + RELOC/source/latex/mdsymbol/mdsymbol.dtx + RELOC/source/latex/mdsymbol/mdsymbol.ins +runfiles size=469 + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-a.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-b.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-c.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-d.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-e.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-f.enc + RELOC/fonts/map/dvips/mdsymbol/mdsymbol.map + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Bold.otf + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Light.otf + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Regular.otf + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Semibold.otf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF.mf + RELOC/fonts/source/public/mdsymbol/mdaccents.mf + RELOC/fonts/source/public/mdsymbol/mdarrows.mf + RELOC/fonts/source/public/mdsymbol/mdbase.mf + RELOC/fonts/source/public/mdsymbol/mddelims.mf + RELOC/fonts/source/public/mdsymbol/mdgeometric.mf + RELOC/fonts/source/public/mdsymbol/mdoperators.mf + RELOC/fonts/source/public/mdsymbol/mdrelations.mf + RELOC/fonts/source/public/mdsymbol/mdturnstile.mf + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Semibold.tfm + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Semibold.pfb + RELOC/tex/latex/mdsymbol/mdsymbol.sty +catalogue-ctan /fonts/mdsymbol +catalogue-license ofl +catalogue-topics font-symbol font-symbol-maths font-mf font-type1 font-otf +catalogue-version 0.5 + +name mdwtools +category Package +revision 15878 +shortdesc Miscellaneous tools by Mark Wooding +relocated 1 +longdesc This collection of tools includes: support for short commands +longdesc starting with @, macros to sanitise the OT1 encoding of the +longdesc cmtt fonts; a 'do after' command; improved footnote support; +longdesc mathenv for various alignment in maths; list handling; mdwmath +longdesc which adds some minor changes to LaTeX maths; a rewrite of +longdesc LaTeX's tabular and array environments; verbatim handling; and +longdesc syntax diagrams. +containersize 19108 +containerchecksum bd78773e42fe20cce637a8fbc7c0e3f4f37ed50810190ffcc035a20c83508b6b7de7f7432b7bba8fbd039ba62f43a5b5e1f4839acb3fe62b425b650f23ff71bd +doccontainersize 1605404 +doccontainerchecksum 06c8619d8bcce2c5cf9f5fce65318521bbb0c2ce53acd6b1793d0fe19a8f7a32c36ff68f355b6809491cec365d09f5f14b0589ddcbea6c5b48900d11fda4867f +docfiles size=514 + RELOC/doc/latex/mdwtools/COPYING + RELOC/doc/latex/mdwtools/README details="Bundle readme" + RELOC/doc/latex/mdwtools/at.pdf + RELOC/doc/latex/mdwtools/cmtt.pdf + RELOC/doc/latex/mdwtools/doafter.pdf + RELOC/doc/latex/mdwtools/doafter.tex + RELOC/doc/latex/mdwtools/footnote.pdf + RELOC/doc/latex/mdwtools/gpl.tex + RELOC/doc/latex/mdwtools/mathenv.tex + RELOC/doc/latex/mdwtools/mdwlist.pdf + RELOC/doc/latex/mdwtools/mdwmath.pdf + RELOC/doc/latex/mdwtools/mdwtab.pdf + RELOC/doc/latex/mdwtools/mdwtools.tex + RELOC/doc/latex/mdwtools/sverb.pdf + RELOC/doc/latex/mdwtools/syntax.pdf +srccontainersize 104804 +srccontainerchecksum b3e6ba09116dd83187a55f205527c318d9afb4742404bc21b12e0be3b754140ecba82642154d92947cbc0706f0f9d3e6d876bc27108f13373d3c9d6ede4d7f5c +srcfiles size=112 + RELOC/source/latex/mdwtools/at.dtx + RELOC/source/latex/mdwtools/cmtt.dtx + RELOC/source/latex/mdwtools/doafter.dtx + RELOC/source/latex/mdwtools/footnote.dtx + RELOC/source/latex/mdwtools/mdwlist.dtx + RELOC/source/latex/mdwtools/mdwmath.dtx + RELOC/source/latex/mdwtools/mdwtab.dtx + RELOC/source/latex/mdwtools/mdwtools.ins + RELOC/source/latex/mdwtools/sverb.dtx + RELOC/source/latex/mdwtools/syntax.dtx +runfiles size=31 + RELOC/tex/latex/mdwtools/at.sty + RELOC/tex/latex/mdwtools/cmtt.sty + RELOC/tex/latex/mdwtools/doafter.sty + RELOC/tex/latex/mdwtools/footnote.sty + RELOC/tex/latex/mdwtools/mTTcmtt.fd + RELOC/tex/latex/mdwtools/mTTenc.def + RELOC/tex/latex/mdwtools/mathenv.sty + RELOC/tex/latex/mdwtools/mdwlist.sty + RELOC/tex/latex/mdwtools/mdwmath.sty + RELOC/tex/latex/mdwtools/mdwtab.sty + RELOC/tex/latex/mdwtools/sverb.sty + RELOC/tex/latex/mdwtools/syntax.sty +catalogue-ctan /macros/latex/contrib/mdwtools +catalogue-license gpl +catalogue-topics list-supp notes footnote syntax maths macro-supp table verbatim +catalogue-version 1.05.4 + +name media4svg +category Package +revision 57528 +shortdesc Multimedia inclusion for the dvisvgm backend +relocated 1 +longdesc This package implements an interface for embedding video and +longdesc audio files in SVG (Scalable Vector Graphics) output. SVG with +longdesc embedded media is very portable, as it is supported by all +longdesc modern Web browsers across a variety of operating systems and +longdesc platforms, including portable devices. All DVI producing TeX +longdesc engines can be used. The dvisvgm utility, which is part of all +longdesc major TeX distributions, converts the intermediate DVI to SVG. +longdesc By default, media files are embedded into the SVG output to +longdesc make self-sufficient SVG files. +containersize 7648 +containerchecksum 8d8d7ec31396da81dec9b089c02fa496cb1d07106bbe96e78c762b83f27b7109d6517b85250d7d8440b1f169d1b1bc2f3d64cf56723e20da9af72f6573740158 +doccontainersize 125992 +doccontainerchecksum ebbee7e14288fa3ac50d77e40056cbcdf53d5228e2accbea579cbd004508b12e562a3a1d2e6e6c5b20b42267335c9ba6d81a34a04a5f2fe8e9826f93de97e298 +docfiles size=95 + RELOC/doc/latex/media4svg/ChangeLog + RELOC/doc/latex/media4svg/README.txt + RELOC/doc/latex/media4svg/example/beamer-example-1.svg details="Example of use" + RELOC/doc/latex/media4svg/example/beamer-example-2.svg + RELOC/doc/latex/media4svg/example/beamer-example-3.svg + RELOC/doc/latex/media4svg/example/beamer-example-4.svg + RELOC/doc/latex/media4svg/example/beamer-example.tex +runfiles size=8 + RELOC/tex/latex/media4svg/media4svg.lua + RELOC/tex/latex/media4svg/media4svg.sty +catalogue-contact-repository https://gitlab.com/agrahn/media4svg +catalogue-ctan /macros/latex/contrib/media4svg +catalogue-license lppl +catalogue-topics multimedia expl3 +catalogue-version 0.5 + +name media9 +category Package +revision 58025 +shortdesc Multimedia inclusion package with Adobe Reader-9/X compatibility +relocated 1 +longdesc The package provides an interface to embed interactive Flash +longdesc (SWF) and 3D objects (Adobe U3D & PRC), as well as video and +longdesc sound files or streams in the popular MP4, FLV and MP3 formats +longdesc into PDF documents with Acrobat-9/X compatibility. Playback of +longdesc multimedia files uses the built-in Flash Player of Adobe Reader +longdesc and does, therefore, not depend on external plug-ins. Flash +longdesc Player supports the efficient H.264 codec for video +longdesc compression. The package is based on the RichMedia Annotation, +longdesc an Adobe addition to the PDF specification. It replaces the now +longdesc obsolete movie15 package. +containersize 1894400 +containerchecksum 8074b787eb47d82d9ea38ec1e3261deca554902fdc4acfa140de33db4ed2b6de1b0f9af761f27cfcb1ad90df6a02e6b0e697e2ebcebe718eed6d95ed1c296ba1 +doccontainersize 3717032 +doccontainerchecksum 2a28cb6f7b10eb19767ca75e51d16406319fc22967af38b170669f46627d0978065917a028d1f0ac480680175ba0464e27c367fe2181ad36c0cd057cb1beb286 +docfiles size=918 + RELOC/doc/latex/media9/ChangeLog + RELOC/doc/latex/media9/README.txt + RELOC/doc/latex/media9/media9.pdf details="Package documentation" +srccontainersize 1776784 +srccontainerchecksum 954dac82dc95330b16055b5096b03c784363f34833b6a30d19b785b621289408b8dbd574e8d77e59ad57216af20b65071e55e1c228ee1dbdfcb1d5fb2b9d0410 +srcfiles size=555 + RELOC/source/latex/media9/files/3dsystem.fig + RELOC/source/latex/media9/files/3dsystem.pdf + RELOC/source/latex/media9/files/3dsystem.tex + RELOC/source/latex/media9/files/bird.mp3 + RELOC/source/latex/media9/files/boutona.pdf + RELOC/source/latex/media9/files/boutonb.pdf + RELOC/source/latex/media9/files/boutonc.pdf + RELOC/source/latex/media9/files/boutond.pdf + RELOC/source/latex/media9/files/boutone.pdf + RELOC/source/latex/media9/files/boutonf.pdf + RELOC/source/latex/media9/files/config.xml + RELOC/source/latex/media9/files/ctan_lion_1200.png + RELOC/source/latex/media9/files/ctan_lion_200.png + RELOC/source/latex/media9/files/ctan_lion_400.png + RELOC/source/latex/media9/files/ctan_lion_800.png + RELOC/source/latex/media9/files/cube.asy + RELOC/source/latex/media9/files/cube.mp4 + RELOC/source/latex/media9/files/cubeposter.png + RELOC/source/latex/media9/files/dice.u3d + RELOC/source/latex/media9/files/dice.vws + RELOC/source/latex/media9/files/dice.wrl + RELOC/source/latex/media9/files/epix.asy + RELOC/source/latex/media9/files/epix.prc + RELOC/source/latex/media9/files/epixposter.pdf + RELOC/source/latex/media9/files/malte.js + RELOC/source/latex/media9/files/malte.u3d + RELOC/source/latex/media9/files/random.mp4 + RELOC/source/latex/media9/media9.tex + RELOC/source/latex/media9/players/APlayer.mxml + RELOC/source/latex/media9/players/APlayer9.mxml + RELOC/source/latex/media9/players/BSD-License + RELOC/source/latex/media9/players/SMPfixes.patch + RELOC/source/latex/media9/players/SlideShow.mxml + RELOC/source/latex/media9/players/StrobeMediaPlayback-license + RELOC/source/latex/media9/players/VPlayer.mxml + RELOC/source/latex/media9/players/VPlayer9.mxml +runfiles size=503 + RELOC/tex/latex/media9/javascript/3Dmenu.js + RELOC/tex/latex/media9/javascript/3Dspintool.js + RELOC/tex/latex/media9/javascript/animation.js + RELOC/tex/latex/media9/javascript/asylabels.js + RELOC/tex/latex/media9/media9.sty + RELOC/tex/latex/media9/pdfbase.sty + RELOC/tex/latex/media9/players/APlayer.swf + RELOC/tex/latex/media9/players/APlayer9.swf + RELOC/tex/latex/media9/players/SlideShow.swf + RELOC/tex/latex/media9/players/StrobeMediaPlayback.swf + RELOC/tex/latex/media9/players/VPlayer.swf + RELOC/tex/latex/media9/players/VPlayer9.swf +catalogue-contact-repository https://gitlab.com/agrahn/media9 +catalogue-ctan /macros/latex/contrib/media9 +catalogue-license lppl +catalogue-topics multimedia +catalogue-version 1.15 + +name medstarbeamer +category Package +revision 38828 +shortdesc Beamer document class for MedStar Health Research Institute +relocated 1 +longdesc This is a beamer template for MedStar Health presentations. It +longdesc includes sample presentations using both .tex files and .rnw +longdesc files. The document class is obviously compatible with both. +longdesc The advantage of the .rnw file is that it can be used with +longdesc knitr such that you can weave your R code with your +longdesc presentation. +containersize 2228 +containerchecksum 731eb6f78875aa38a90a228626d7cb5b7129c60085418d7ddadff056c9b82f8db95ee17f20ec8cd4611aa90bec391868f6b0b16fa0eae518358a869b576c150b +doccontainersize 1496 +doccontainerchecksum 1605cf9ac4eba56059b6e90e6a6e7f3cba9a924df1cf3dcfed300e218bbb71d79bd69b47a5e376da209490a8869061d6de8415e1670b4ac5b0fa977f74d7c035 +docfiles size=2 + RELOC/doc/latex/medstarbeamer/README.txt details="Readme" + RELOC/doc/latex/medstarbeamer/example.tex +runfiles size=2 + RELOC/tex/latex/medstarbeamer/beamercolorthemeMedStarColors.sty + RELOC/tex/latex/medstarbeamer/medstarbeamer.cls +catalogue-ctan /macros/latex/contrib/medstarbeamer +catalogue-license lppl1.3 +catalogue-topics presentation statistics + +name meetingmins +category Package +revision 31878 +shortdesc Format written minutes of meetings +relocated 1 +longdesc The class allows formatting of meeting minutes using \section +longdesc commands (which provide hierarchical structure). An agenda can +longdesc also be produced for distribution prior to the meeting, with +longdesc user-selected portions suppressed from printing. +containersize 2484 +containerchecksum 315897eff4ae50257057f8191ff92535b669fb174a2eca5c368a9a4b9f75cd71ad745f3feff1c6863705b3e9e4a954afa449cf56f86bf60c389250842aef5215 +doccontainersize 599084 +doccontainerchecksum 6afbfe02ee39e26e2f38ce462affa66e7e0acf5f26534ff9ace0b26b4e63514a3b1702e34bf478988a50c55fbb09b7d9421a8e79da6a6c46de88c6a958afa874 +docfiles size=199 + RELOC/doc/latex/meetingmins/README details="Readme" + RELOC/doc/latex/meetingmins/meetingmins.pdf details="Package documentation" + RELOC/doc/latex/meetingmins/samples/agenda.pdf + RELOC/doc/latex/meetingmins/samples/agenda.tex + RELOC/doc/latex/meetingmins/samples/chair.pdf + RELOC/doc/latex/meetingmins/samples/chair.tex + RELOC/doc/latex/meetingmins/samples/department.min + RELOC/doc/latex/meetingmins/samples/minutes.pdf + RELOC/doc/latex/meetingmins/samples/minutes.tex +srccontainersize 6908 +srccontainerchecksum 3f4a274000889e9160943ca0b7a7af30bdbf7aa9a33c8cccd0e938ad3ab94ad8f24a6685bc99596a1046a22d32855061a7c511046dd6c306353c4f5979e1f230 +srcfiles size=8 + RELOC/source/latex/meetingmins/meetingmins.dtx + RELOC/source/latex/meetingmins/meetingmins.ins +runfiles size=2 + RELOC/tex/latex/meetingmins/meetingmins.cls +catalogue-ctan /macros/latex/contrib/meetingmins +catalogue-license lppl1.3 +catalogue-topics meeting-admin +catalogue-version 1.6 + +name membranecomputing +category Package +revision 55918 +shortdesc Membrane Computing notation +relocated 1 +longdesc This is a LaTeX package for the Membrane Computing community. +longdesc It comprises the definition of P systems, rules and some +longdesc concepts related to languages and computational complexity +longdesc usually needed for Membrane Computing research. The package +longdesc depends on ifthen and xstring. +containersize 4576 +containerchecksum 78cca23fdfcbce0fb0105559966c88fe9337148035721c803174c828b94a11ca74978125f94e06904e293d680e071a97c48405d490d785a155aba98be71a5dc2 +doccontainersize 273336 +doccontainerchecksum b41ea7869fa0c1bcd2bcb4ccc305b6af1ba3c8dc539cf5d21bc48fc7123d70e1c6945ef06f18eb8b64d01748bffb64fda0f6596e7683104692698fab496fcff1 +docfiles size=73 + RELOC/doc/latex/membranecomputing/README.md details="Readme" + RELOC/doc/latex/membranecomputing/membranecomputing.pdf details="Package documentation" + RELOC/doc/latex/membranecomputing/membranecomputing.tex +runfiles size=7 + RELOC/tex/latex/membranecomputing/membranecomputing.sty +catalogue-ctan /macros/latex/contrib/membranecomputing +catalogue-license lppl1.3 +catalogue-topics comp-sci comp-theory +catalogue-version 0.1 + +name memdesign +category Package +revision 48664 +shortdesc Notes on book design +relocated 1 +longdesc "A Few Notes on Book Design" provides an introduction to the +longdesc business of book design. It is an extended version of what used +longdesc to be the first part of the memoir users' manual. Please note +longdesc that the compiled copy, supplied in the package, uses +longdesc commercial fonts; the README file contains instructions on how +longdesc to compile the document without these fonts. +containersize 564 +containerchecksum 42949db3193952d1ae75855110ed40a1ff467b3cef0bb6d43195bac960a0873a47fad002695ad1376da2d4a1df5e1e05f89289102780d27b173da2e852b53cdc +doccontainersize 1785516 +doccontainerchecksum f4dfa00676379ce33857cc0fdeae867d1ae5c99e6767884a029285a94d2197926a68cd85c574bd876a2eeb85f0453520ef5efcb7f2a71a77c725f8066e7adf8d +docfiles size=507 + RELOC/doc/fonts/memdesign/README details="Readme" + RELOC/doc/fonts/memdesign/memdesign.pdf details="The document itself" + RELOC/doc/fonts/memdesign/memdesign.tex + RELOC/doc/fonts/memdesign/memetc.bib +catalogue-ctan /info/memdesign +catalogue-license lppl1.3 +catalogue-topics review-document + +name memexsupp +category Package +revision 15878 +shortdesc Experimental memoir support +relocated 1 +longdesc A package of code proposed as supporting material for memoir. +longdesc The package is intended as a test bed for such code, which may +longdesc in the fullness of time be adopted into the main memoir +longdesc release. +containersize 1836 +containerchecksum 74931ebb1a146edadcde19d8c404ff8df750c4eb8f2f59fa83e6da9f8dc6567005d51f58e4b7bd2cdfa6b960adb072e9fee7b1842142076df88887c3c2b41051 +doccontainersize 121636 +doccontainerchecksum 645bb189fca1c74e249745ad42c470dcd5d9fa4412a6dfefbcb6377555047bdbcf005f1c07977762e0026e8a4f8ea49e6965a7d50b0d5d5e7efd0228ac2141a0 +docfiles size=35 + RELOC/doc/latex/memexsupp/README details="Readme" + RELOC/doc/latex/memexsupp/memexsupp.pdf details="Package documentation" + RELOC/doc/latex/memexsupp/memexsupp.tex +runfiles size=1 + RELOC/tex/latex/memexsupp/memexsupp.sty +catalogue-ctan /macros/latex/contrib/memexsupp +catalogue-license lppl +catalogue-topics test-dist +catalogue-version 0.1 + +name memoir +category Package +revision 58666 +shortdesc Typeset fiction, non-fiction and mathematical books +relocated 1 +longdesc The memoir class is for typesetting poetry, fiction, +longdesc non-fiction, and mathematical works. Permissible document +longdesc 'base' font sizes range from 9 to 60pt. There is a range of +longdesc page-styles and well over a dozen chapter-styles to choose +longdesc from, as well as methods for specifying your own layouts and +longdesc designs. The class also provides the functionality of over +longdesc thirty of the more popular packages, thus simplifying document +longdesc sources. Users who wish to use the hyperref package, in a +longdesc document written with the memoir class, should also use the +longdesc memhfixc package (part of this bundle). Note, however, that any +longdesc current version of hyperref actually loads the package +longdesc automatically if it detects that it is running under memoir. +containersize 74988 +containerchecksum a09bd87ce8253d6af82c0e8816635c1c1b4986ef51f72f671cdc9a74b7088b41889039b9af174620013d8ef2017a3db660c9fde7c56c0fcf4618bb419ea6e220 +doccontainersize 3108176 +doccontainerchecksum f17446fad66433a0e10287c5c040e6ecb45222c3061dab28d4b2a5541ba1527673e0040e267c8af0bf0e63c45d1d42ebe0e336411e11b8b963caf1147cb5829f +docfiles size=1142 + RELOC/doc/latex/memoir/Makeidxglo + RELOC/doc/latex/memoir/README details="Readme" + RELOC/doc/latex/memoir/anvil2.mps + RELOC/doc/latex/memoir/memfonts.sty + RELOC/doc/latex/memoir/memlays.sty + RELOC/doc/latex/memoir/memman.gst + RELOC/doc/latex/memoir/memman.ist + RELOC/doc/latex/memoir/memman.pdf details="Basic user manual" + RELOC/doc/latex/memoir/memman.tex + RELOC/doc/latex/memoir/memnoidxnum.tex + RELOC/doc/latex/memoir/memsty.sty + RELOC/doc/latex/memoir/setpage-example.pdf + RELOC/doc/latex/memoir/titlepages.sty + RELOC/doc/latex/memoir/trims-example.tex +srccontainersize 241692 +srccontainerchecksum 60415bbbbb1e3a42227b24f74617d0a572346ef30cacc366ae07dd887eb8606636e25f6a3ef8ada6f35fc3e5aa7c5e2f57e383d0f6578044cbaf2688daac9576 +srcfiles size=319 + RELOC/source/latex/memoir/memoir.dtx + RELOC/source/latex/memoir/memoir.ins + RELOC/source/latex/memoir/mempatch.dtx + RELOC/source/latex/memoir/mempatch.ins +runfiles size=120 + RELOC/makeindex/memoir/basic.gst + RELOC/tex/latex/memoir/mem10.clo + RELOC/tex/latex/memoir/mem11.clo + RELOC/tex/latex/memoir/mem12.clo + RELOC/tex/latex/memoir/mem14.clo + RELOC/tex/latex/memoir/mem17.clo + RELOC/tex/latex/memoir/mem20.clo + RELOC/tex/latex/memoir/mem25.clo + RELOC/tex/latex/memoir/mem30.clo + RELOC/tex/latex/memoir/mem36.clo + RELOC/tex/latex/memoir/mem48.clo + RELOC/tex/latex/memoir/mem60.clo + RELOC/tex/latex/memoir/mem9.clo + RELOC/tex/latex/memoir/memhfixc.sty + RELOC/tex/latex/memoir/memoir.cls +catalogue-also memdesign +catalogue-ctan /macros/latex/contrib/memoir +catalogue-license lppl1.3 +catalogue-topics book-pub class +catalogue-version 3.7o + +name memory +category Package +revision 30452 +shortdesc Containers for data in LaTeX +relocated 1 +longdesc The package allows the user to declare single object or array +longdesc containers. +containersize 1168 +containerchecksum 9b760613dc36895edf50a592aa5ef994a30117cc9da6ea256835cd3ad9ed62ab8d8c39de95bda5058d1bd3f06451d1c79d78d52ff6d068c28d75410c5ad98516 +doccontainersize 29908 +doccontainerchecksum 479428f1af468d909fa291388cde319aff1ac9ef6d7c0168577c5f6978c0fa7e6b23f8f81dedaf746b7e394c92d51d5799bd17aa3488207be494621b77220cd3 +docfiles size=9 + RELOC/doc/latex/memory/README details="Readme" + RELOC/doc/latex/memory/memory.pdf details="Package documentation" +srccontainersize 2768 +srccontainerchecksum 731d4e4c874a58c2c1ddf6a394dd9eb67e557608b0d2a736cb500e4e299be2a726d4312d2eb4a05008684cf5fe14d458a7c020bd31fe134f8208d9fb618b312b +srcfiles size=3 + RELOC/source/latex/memory/memory.dtx + RELOC/source/latex/memory/memory.ins +runfiles size=1 + RELOC/tex/latex/memory/memory.sty +catalogue-ctan /macros/latex/contrib/memory +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.2 + +name memorygraphs +category Package +revision 49631 +shortdesc TikZ styles to typeset graphs of program memory +relocated 1 +longdesc This package defines some TikZ styles and adds anchors to +longdesc existing styles that ease the declaration of "memory graphs". +longdesc It is intended for graphs that represent the memory of a +longdesc computer program during its execution. +containersize 2048 +containerchecksum e35c7e727cf5d6e496c9c0e52252b5169670006b9bc9e96b1c95584085d57a3f25cb9464bb55fc4138640ebb6fdb079908cc49c0f1bfff130a509b6866d3eec1 +doccontainersize 191084 +doccontainerchecksum 1c04e25d1c16348e594191c17f9f104e9388bb608b10783927ab3412f2f316138d6b41242046f12853b37560873bb61e0a0ec3f884cf8fc26ae2ba5809b094c0 +docfiles size=50 + RELOC/doc/latex/memorygraphs/README.md details="Readme" + RELOC/doc/latex/memorygraphs/memorygraphs.pdf details="Package documentation" + RELOC/doc/latex/memorygraphs/memorygraphs.tex +runfiles size=2 + RELOC/tex/latex/memorygraphs/memorygraphs.sty +catalogue-contact-bugs https://gitlab.science.ru.nl/cstaps/memorygraphs/issues +catalogue-contact-development https://gitlab.science.ru.nl/cstaps/memorygraphs +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-license lppl1.3 +catalogue-topics graphics pgf-tikz +catalogue-version 0.1.1 + +name mendex-doc +category Package +revision 50268 +shortdesc Documentation for Mendex index processor +relocated 1 +longdesc This package provides documentation for Mendex (Japanese index +longdesc processor). The source code of the program is not included, it +longdesc can be obtained from TeX Live subversion repository. +containersize 492 +containerchecksum 2a4b24f7340194fa80160681fb038369e45c1e6783765860d3f57be944c4b79533febc82cdbc65f89b9ad99308cb4ecae4baad37205d0f375f244e5211a87df6 +doccontainersize 184476 +doccontainerchecksum e8c8e773169a262e9f19bb9ab704c05968440aa0ea5928e329c79851e9e23fec5f78a108188fd2512becf7d78ea1e9f388ffa80b0795bbb4ff8cb81893b4e869 +docfiles size=51 + RELOC/doc/support/mendex-doc/LICENSE + RELOC/doc/support/mendex-doc/README.md details="Readme" + RELOC/doc/support/mendex-doc/mendex.pdf details="Package documentation" language="ja" + RELOC/doc/support/mendex-doc/mendex.tex +srccontainersize 644 +srccontainerchecksum b526ed09c503619dc128721e9ae439b89b5b143ae18d388fa387cb7407533e47f0bcaecb6967380f3ebc067f9e310f596f0302fca5438212734730d3ca7931cf +srcfiles size=1 + RELOC/source/latex/mendex-doc/Makefile +catalogue-contact-repository https://github.com/texjporg/mendex-doc +catalogue-ctan /info/mendex-doc +catalogue-license bsd3 +catalogue-topics index documentation + +name mensa-tex +category Package +revision 45997 +shortdesc Typeset simple school cafeteria menus +relocated 1 +longdesc This package provides a flexible LaTeX2e class for typesetting +longdesc school cafeteria menus consisting of two lunches (with +longdesc dessert), and dinner. It supports two different layouts: The +longdesc first layout is optimized for printing the menu on A4 paper. +longdesc The second layout is optimized for smartphone screens and uses +longdesc one (A6 sized) page per day. Supported localizations are +longdesc English (GB/US) and German. A way of defining additional +longdesc localizations is described in the documentation. The package +longdesc requires array, colortbl, datetime2, datetime2-calc, geometry, +longdesc graphicx, lmodern, textcomp, and xcolor. +containersize 3996 +containerchecksum c453044a7f744cf89605996d0b913c56208f10c46e26e0ba37a85bb1d63ed08426a18d87cc7841aabcf44231c71dc33a5c858de482c6d48759893066168d5fc8 +doccontainersize 168228 +doccontainerchecksum 8297e3f69517f3bace8f509dfb42616e223073f5d428c2269d9dbeeb53579f105fb65755b22ab552e5635f1267e437c4aaeda284a8325b2d95717cf7adc2de01 +docfiles size=70 + RELOC/doc/latex/mensa-tex/README.md details="Readme" + RELOC/doc/latex/mensa-tex/doc/cafe-logo.png + RELOC/doc/latex/mensa-tex/doc/mensa-tex-doc.pdf details="Package documentation" + RELOC/doc/latex/mensa-tex/doc/mensa-tex-doc.tex + RELOC/doc/latex/mensa-tex/doc/mensa-tex-example.pdf + RELOC/doc/latex/mensa-tex/doc/mensa-tex-example.tex +runfiles size=4 + RELOC/tex/latex/mensa-tex/mensa-tex.cls +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-license lppl1.3c +catalogue-topics class cooking + +name mentis +category Package +revision 15878 +shortdesc A basis for books to be published by Mentis publishers +relocated 1 +longdesc This LaTeX class loads scrbook and provides changes necessary +longdesc for publishing at Mentis publishers in Paderborn, Germany. It +longdesc is not an official Mentis class, merely one developed by an +longdesc author in close co-operation with Mentis. +containersize 4180 +containerchecksum ee03fae28adbf147945a88548e8223bfe8c8ce220a61726bc6738f34cc90ec776aa468a1cf7fc862d1f7f091cf87964cf665839922819130f3575d56301a5d26 +doccontainersize 137680 +doccontainerchecksum 2e869d1368b807a70f3de5550d2c79f229dbeb8d888a927005fcc43c70644da0ccd36eb2464fa6437c9947c78d59e77c4013824b1e8d5a4bb517b80f1cfb5a8e +docfiles size=40 + RELOC/doc/latex/mentis/README details="Readme" + RELOC/doc/latex/mentis/mentis.pdf details="Package documentation" +srccontainersize 16980 +srccontainerchecksum 10858cb9cb2db0f7db31d371e42436ca001ef20fede5f6b34dca61fa48248383e32547576a2dd3a4a98acddfcaf9e1d3fec89183c48ae76d5b3b677fabda7549 +srcfiles size=14 + RELOC/source/latex/mentis/mentis.dtx + RELOC/source/latex/mentis/mentis.ins +runfiles size=4 + RELOC/tex/latex/mentis/mentis.cls +catalogue-ctan /macros/latex/contrib/mentis +catalogue-license lppl +catalogue-topics class book-pub publisher +catalogue-version 1.5 + +name menu +category Package +revision 15878 +shortdesc Typesetting menus +relocated 1 +longdesc The package defines command \menu which assists typesetting of +longdesc a path through a program's menu. +containersize 2132 +containerchecksum 2b2560a1df5091d19ff37bcbac1465fbfc54a848e4d19782602d656bf42abe47bd2bb1946f87a127c70725cf508ff9712337f3a8719d1fc0bcd4dab4473c7bc4 +doccontainersize 115344 +doccontainerchecksum ce8ddeed4e1bd859865f548d8ffc6978a620d9003f908d360e656085f6010a0f179218cc8b2bda4f754685369b53ad59245fef8d8f8a766b241f092162bb76b5 +docfiles size=34 + RELOC/doc/latex/menu/README details="Readme" + RELOC/doc/latex/menu/menu.pdf details="Package documentation" +srccontainersize 5648 +srccontainerchecksum 6c96cb64584802af2248bf43ccb7cc5215d8a2d2c13f1d6cf8567934938979095bbd51760bad7892a6d894a9651304dc9f5e4ed038f68ba0af087567de0777ad +srcfiles size=6 + RELOC/source/latex/menu/menu.dtx + RELOC/source/latex/menu/menu.ins +runfiles size=2 + RELOC/tex/latex/menu/menu.sty +catalogue-ctan /macros/latex/contrib/menu +catalogue-license other-free +catalogue-topics doc-supp +catalogue-version 0.994 + +name menucard +category Package +revision 55643 +shortdesc Typesetting menu cards with LaTeX +relocated 1 +longdesc This LaTeX package can be used for typesetting simple +longdesc restaurant menus. +containersize 1348 +containerchecksum 2cdbe2b8acdc12e4fc0b7d8a93afacd30ea2a8bef6a3f1766d219227e77cf06d26f1fe24206f15dbfd6d0a7507780955060df1056f14cc546e9a3c781c36f307 +doccontainersize 176668 +doccontainerchecksum 0133f249cdaed1bd565047974868953dce96c4b9ce143cb8c1170194d0ef1b1e6d2e4088004edd831ae0ee1f5e736a1a297bfce75c1bd4b600b3b14a270e746c +docfiles size=45 + RELOC/doc/latex/menucard/README details="Readme" + RELOC/doc/latex/menucard/menucard.pdf details="Package documentation" +srccontainersize 3764 +srccontainerchecksum d493d78656919b30822bf5e95024b3a85c8912936d2c7835af1ecf50eeb04c81e6262da230241c9bd78f0ca5073a1a4cfca4bcb43ef528b8623f0fc21671d38f +srcfiles size=4 + RELOC/source/latex/menucard/menucard.dtx + RELOC/source/latex/menucard/menucard.ins +runfiles size=1 + RELOC/tex/latex/menucard/menucard.sty +catalogue-ctan /macros/latex/contrib/menucard +catalogue-license lppl1.3 +catalogue-topics doc-supp cooking +catalogue-version 0.1 + +name menukeys +category Package +revision 57172 +shortdesc Format menu sequences, paths and keystrokes from lists +relocated 1 +longdesc This package is designed to format menu sequences, paths and +longdesc keyboard shortcuts automatically. There are several predefined +longdesc styles and one can define one's own styles in a flexible way. +containersize 6072 +containerchecksum 4e046853dcf7daa04a1375e19f35219b65177479807420d8bdb2e4449324b9fd38a17535e170b46a64de7a975fd0ca39c3150014ccfcc80f544f57475483727e +doccontainersize 573880 +doccontainerchecksum 9ee80a77fabaabb1b29826e2d54dfcacdff7b758bcda83559d694a76cee579d4815e346c314d224001844c64cad40f04980d7dc09a45918a664f8cf76723b91d +docfiles size=143 + RELOC/doc/latex/menukeys/README details="Readme" + RELOC/doc/latex/menukeys/menukeys.pdf details="Package documentation" +srccontainersize 18496 +srccontainerchecksum e4c6817611e5dd8f33e0e9f5771ae6f7c04b76d49002e6fcc466090cf5423ad4335d2d5d144817c6a03518f338256ca383e0b0df88947087c98f60f07f3dbe6e +srcfiles size=21 + RELOC/source/latex/menukeys/menukeys.dtx + RELOC/source/latex/menukeys/menukeys.ins +runfiles size=8 + RELOC/tex/latex/menukeys/menukeys.sty +catalogue-contact-bugs https://github.com/tweh/menukeys/issues +catalogue-contact-repository https://github.com/tweh/menukeys +catalogue-ctan /macros/latex/contrib/menukeys +catalogue-license lppl1.3c +catalogue-topics doc-supp +catalogue-version 1.6.1 + +name mercatormap +category Package +revision 56060 +shortdesc Spherical Mercator coordinate systems and Web Mercator tile integration +relocated 1 +longdesc This package extends TikZ with tools to create map graphics. +longdesc The provided coordinate system relies on the Web Mercator +longdesc projection used on the Web by OpenStreetMap and others. The +longdesc package supports the seamless integration of graphics from +longdesc public map tile servers by a Python script. Also, common map +longdesc elements like markers, geodetic networks, bar scales, routes, +longdesc orthodrome pieces, and more are part of the package. +containersize 19180 +containerchecksum 552c0fcb0eb72d55c51a2e9e4d055cefa27859d8e1a4410934fbbe6c139b4ddbad7e2444974acf4035fb29cc4bc8c3f76d33ef6c6e73e91e57e4225c102afd9f +doccontainersize 24311052 +doccontainerchecksum 446be6f13150ba3490890b528fe04c8a8080213aa6a5b66fe61e3e58ea4fc0bd03581aa96b0ec355c5ec725187b7b681507f961a9b29350cf07bc19bd2c0fdf1 +docfiles size=6125 + RELOC/doc/latex/mercatormap/README details="Readme" + RELOC/doc/latex/mercatormap/mercatormap-example.tex + RELOC/doc/latex/mercatormap/mercatormap.bib + RELOC/doc/latex/mercatormap/mercatormap.doc.abstract.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.definition.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.drawing.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.examples.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.intro.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.limitations.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.maptiles.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.marker.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.orthodromes.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.routes.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.scales.tex + RELOC/doc/latex/mercatormap/mercatormap.doc.sty + RELOC/doc/latex/mercatormap/mercatormap.doc.versionhistory.tex + RELOC/doc/latex/mercatormap/mercatormap.pdf details="Package documentation" + RELOC/doc/latex/mercatormap/mercatormap.tex +runfiles size=30 + RELOC/tex/latex/mercatormap/mercatormap.sty + RELOC/tex/latex/mercatormap/mercatorpy.def + RELOC/tex/latex/mercatormap/mercatorsupplier.def +catalogue-contact-bugs https://github.com/T-F-S/mercatormap/issues +catalogue-contact-home https://github.com/T-F-S/mercatormap +catalogue-ctan /macros/latex/contrib/mercatormap +catalogue-license lppl1.3 +catalogue-topics cartography pgf-tikz graphics expl3 +catalogue-version 1.02 + +name merriweather +category Package +revision 56365 +shortdesc Merriweather and MerriweatherSans fonts, with LaTeX support +relocated 1 +longdesc This package provides the Merriweather and MerriweatherSans +longdesc families of fonts, designed by Eben Sorkin, with support for +longdesc LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX. Merriweather features a +longdesc very large x height, slightly condensed letterforms, a mild +longdesc diagonal stress, sturdy serifs and open forms. The Sans family +longdesc closely harmonizes with the weights and styles of the serif +longdesc family. There are four weights and italics for each. +execute addMap merriweather.map +containersize 5423704 +containerchecksum 72f7dd8c8a8055a4ef953e459188bf2385e6e63943d425bbb69b128e3c0a5277362bb3ebddf38225c20e480ab2a6d8d7b413a0db1d4ad7003f855ee6430266e4 +doccontainersize 75472 +doccontainerchecksum d67a277eaa4e4783d9014ce5d8fe67f7c7cc17e04474150b1c5a9df13d894ef7ddecd599464a68aad95ac17393b1a3ed0bec6fcab5aee0b7c53c89c8674032fd +docfiles size=23 + RELOC/doc/fonts/merriweather/OFL.txt + RELOC/doc/fonts/merriweather/README details="Readme" + RELOC/doc/fonts/merriweather/merriweather-samples.pdf details="Font samples" + RELOC/doc/fonts/merriweather/merriweather-samples.tex +runfiles size=5171 + RELOC/fonts/enc/dvips/merriweather/merriwthr_27vehb.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_2hyv6t.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_2j7grf.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_2r7lb2.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_4ylisx.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_5lck5z.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_5xld5w.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_6qeh6o.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_7bivwm.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_7jdyhk.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_7npxgm.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_7t3tp2.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_7tayun.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_abao47.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_adz5lu.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_afua2j.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_ags7qn.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_ah5y5a.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_b6rchs.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_btdrxl.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_c4h6ot.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_cc6s4l.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_ckyw6q.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_cqy4t2.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_cvdnuw.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_cy3ufi.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_diijaa.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_dl4a4c.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_dx3n55.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_e2idhw.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_e5zf5y.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_f5n6m3.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_fs3efe.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_gbcczm.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_gdbfjs.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_gldhmf.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_gmchnq.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_h6z4fc.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_h7gtfv.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_hwcxwn.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_hz3jhh.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_ibepov.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_igdvgb.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_jjwbah.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_k4bbiq.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_lkhefy.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_lm56sz.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_mb4bqm.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_me3dx7.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_mgprdv.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_mr3nck.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_mx2b4h.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_nszfm3.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_o43b2q.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_ob5vn4.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_okb76x.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_owzwzj.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_p242jx.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_posqbl.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_qfmkcs.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_qndjqi.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_rzflsg.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_s56ilq.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_stxeas.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_ttjzpe.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_u2frii.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_uduhhn.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_urus45.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_vvhkhe.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_w4rwtq.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_wlsyn3.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_wppmfi.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_x754fd.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_xfdjpz.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_xys2i2.enc + RELOC/fonts/enc/dvips/merriweather/merriwthr_ynquvw.enc + RELOC/fonts/map/dvips/merriweather/merriweather.map + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-Black.otf + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-BlackItalic.otf + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-Bold.otf + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-BoldItalic.otf + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-Italic.otf + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-Light.otf + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-LightItalic.otf + RELOC/fonts/opentype/sorkin/merriweather/Merriweather-Regular.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-Bold.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-BoldItalic.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-ExtraBold.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-Italic.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-Light.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-LightItalic.otf + RELOC/fonts/opentype/sorkin/merriweather/MerriweatherSans-Regular.otf + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Black-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Light-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriwthr-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriwthrSans-Regular-tosf-ts1.tfm + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-Black.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-BlackItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-Bold.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-BoldItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-Italic.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-Light.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-LightItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriwthr-Regular.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-Bold.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-BoldItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-ExtraBold.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-Italic.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-Light.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-LightItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriwthrSans-Regular.pfb + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Black-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Bold-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Italic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Light-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriwthr-Regular-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Light-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-lf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-lf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-sup-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tosf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriwthrSans-Regular-tosf-ts1.vf + RELOC/tex/latex/merriweather/LY1Merriwthr-LF.fd + RELOC/tex/latex/merriweather/LY1Merriwthr-OsF.fd + RELOC/tex/latex/merriweather/LY1Merriwthr-Sup.fd + RELOC/tex/latex/merriweather/LY1Merriwthr-TLF.fd + RELOC/tex/latex/merriweather/LY1Merriwthr-TOsF.fd + RELOC/tex/latex/merriweather/LY1MerriwthrSans-LF.fd + RELOC/tex/latex/merriweather/LY1MerriwthrSans-OsF.fd + RELOC/tex/latex/merriweather/LY1MerriwthrSans-Sup.fd + RELOC/tex/latex/merriweather/LY1MerriwthrSans-TLF.fd + RELOC/tex/latex/merriweather/LY1MerriwthrSans-TOsF.fd + RELOC/tex/latex/merriweather/OT1Merriwthr-LF.fd + RELOC/tex/latex/merriweather/OT1Merriwthr-OsF.fd + RELOC/tex/latex/merriweather/OT1Merriwthr-Sup.fd + RELOC/tex/latex/merriweather/OT1Merriwthr-TLF.fd + RELOC/tex/latex/merriweather/OT1Merriwthr-TOsF.fd + RELOC/tex/latex/merriweather/OT1MerriwthrSans-LF.fd + RELOC/tex/latex/merriweather/OT1MerriwthrSans-OsF.fd + RELOC/tex/latex/merriweather/OT1MerriwthrSans-Sup.fd + RELOC/tex/latex/merriweather/OT1MerriwthrSans-TLF.fd + RELOC/tex/latex/merriweather/OT1MerriwthrSans-TOsF.fd + RELOC/tex/latex/merriweather/T1Merriwthr-LF.fd + RELOC/tex/latex/merriweather/T1Merriwthr-OsF.fd + RELOC/tex/latex/merriweather/T1Merriwthr-Sup.fd + RELOC/tex/latex/merriweather/T1Merriwthr-TLF.fd + RELOC/tex/latex/merriweather/T1Merriwthr-TOsF.fd + RELOC/tex/latex/merriweather/T1MerriwthrSans-LF.fd + RELOC/tex/latex/merriweather/T1MerriwthrSans-OsF.fd + RELOC/tex/latex/merriweather/T1MerriwthrSans-Sup.fd + RELOC/tex/latex/merriweather/T1MerriwthrSans-TLF.fd + RELOC/tex/latex/merriweather/T1MerriwthrSans-TOsF.fd + RELOC/tex/latex/merriweather/TS1Merriwthr-LF.fd + RELOC/tex/latex/merriweather/TS1Merriwthr-OsF.fd + RELOC/tex/latex/merriweather/TS1Merriwthr-TLF.fd + RELOC/tex/latex/merriweather/TS1Merriwthr-TOsF.fd + RELOC/tex/latex/merriweather/TS1MerriwthrSans-LF.fd + RELOC/tex/latex/merriweather/TS1MerriwthrSans-OsF.fd + RELOC/tex/latex/merriweather/TS1MerriwthrSans-TLF.fd + RELOC/tex/latex/merriweather/TS1MerriwthrSans-TOsF.fd + RELOC/tex/latex/merriweather/merriweather.sty +catalogue-contact-home http://www.google.com/webfonts +catalogue-ctan /fonts/merriweather +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-serif font-sans font-ttf font-type1 font-supp font-t1enc + +name metafont +category Package +revision 57972 +shortdesc A system for specifying fonts +longdesc The program takes a semi-algorithmic specification of a font, +longdesc and produces a bitmap font (whose properties are defined by a +longdesc set of parameters of the target device), and a set metrics for +longdesc use by TeX. The bitmap output may be converted into a format +longdesc directly usable by a device driver, etc., by the tools provided +longdesc in the parallel mfware distribution. (Third parties have +longdesc developed tools to convert the bitmap output to outline fonts.) +longdesc The distribution includes the source of Knuth's Metafont book; +longdesc this source is there to read, as an example of writing TeX -- +longdesc it should not be processed without Knuth's direct permission. +depend kpathsea +depend metafont.ARCH +depend modes +execute AddFormat name=mf engine=mf-nowin options="-translate-file=cp227.tcx mf.ini" fmttriggers=modes +containersize 8756 +containerchecksum 7ea3271c2a9682ae5ee29a05a95e794f4a6dc5a6244a6c243e856aaa857310127d5593b0643d4ca53eae7feb9c205574f5ea216b7c3c0b731e7f98be99bf1588 +doccontainersize 53068 +doccontainerchecksum 95e7221ac9e3438d4cae336296e7db855df9a7e49ebaaec5dfea294565824938f3d6544459cee9ecbf17312daad4e44c92a7a9a65269feebd2b819f226f305bc +docfiles size=36 + texmf-dist/doc/man/man1/inimf.1 + texmf-dist/doc/man/man1/inimf.man1.pdf + texmf-dist/doc/man/man1/mf-nowin.1 + texmf-dist/doc/man/man1/mf-nowin.man1.pdf + texmf-dist/doc/man/man1/mf.1 + texmf-dist/doc/man/man1/mf.man1.pdf +runfiles size=13 + texmf-dist/metafont/base/mf.mf + texmf-dist/metafont/base/plain.mf + texmf-dist/metafont/config/cmmf.ini + texmf-dist/metafont/config/mf.ini + texmf-dist/metafont/misc/mode2dpi.mf + texmf-dist/metafont/misc/mode2dpixy.mf + texmf-dist/metafont/misc/modename.mf + texmf-dist/metafont/misc/ps2mfbas.mf +catalogue-alias mf +catalogue-also metapost +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/mf +catalogue-license knuth +catalogue-topics font-devel font-proc +catalogue-version 2.71828182 + +name metafont-beginners +category Package +revision 29803 +shortdesc An introductory tutorial for Metafont +relocated 1 +longdesc An old introduction to the use of Metafont, that has stood the +longdesc test of time. It focuses on using the program, rather than +longdesc designing fonts, but does offer advice about understanding +longdesc errors in other people's fonts. +containersize 496 +containerchecksum 39352d8b181f3010fd4dbfbfad18a8cd3f68f0c38bdb89996ea4c77a649acbbd15e9a7fa318193db08733b3722a07a8ebfb17a6430bcc9af8101dc444608d75b +doccontainersize 178916 +doccontainerchecksum 4fb7148b0668845447fd38411df0288972312a56897b1d5bce69a7e57ae632aacd12c273a911045204705a5534ac1d1c290af08a7057bd62184a59eb7146feb6 +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-license pd +catalogue-topics mf-doc + +name metafont.aarch64-linux +category Package +revision 58389 +shortdesc aarch64-linux files of metafont +containersize 186824 +containerchecksum 01d0faaa24ac5eb640eeda8dbe22aad78d1f8c9aa597db6db3f8ef63f570d1efdfadec9e79bbd2ae957fd09be0b87ae2321f5b775887502e2d13306101e94b02 +binfiles arch=aarch64-linux size=204 + bin/aarch64-linux/inimf + bin/aarch64-linux/mf + bin/aarch64-linux/mf-nowin + +name metafont.amd64-freebsd +category Package +revision 58388 +shortdesc amd64-freebsd files of metafont +containersize 261676 +containerchecksum 68e8bd012cdae17df637fe68bda9a6f49d185d0befa3ea9a3c4082afe1092df67e95bb6d20463189ebd51de24ea6486ddb670b957dc3ab46096344f360a360e3 +binfiles arch=amd64-freebsd size=259 + bin/amd64-freebsd/inimf + bin/amd64-freebsd/mf + bin/amd64-freebsd/mf-nowin + +name metafont.amd64-netbsd +category Package +revision 58386 +shortdesc amd64-netbsd files of metafont +containersize 196360 +containerchecksum b5aec84ed3060d4a1c00499c9c7e20b46eb7ba5fa60b5b2d2f4daa32f1ad773d8aaa5606d5cc5fd82808f5d12f388d23a11046e6d36bea6c52f9800aa699ac6d +binfiles arch=amd64-netbsd size=225 + bin/amd64-netbsd/inimf + bin/amd64-netbsd/mf + bin/amd64-netbsd/mf-nowin + +name metafont.armhf-linux +category Package +revision 58428 +shortdesc armhf-linux files of metafont +containersize 146644 +containerchecksum 509bcf02ab3b32f96c0ea7eb073c2d00d2b45e19e814b916be0e2f6fe4a30a91025bc7cf5667053ba77628904b65306a3f5fc13ec7cadab5b8625d223413bd2c +binfiles arch=armhf-linux size=154 + bin/armhf-linux/inimf + bin/armhf-linux/mf + bin/armhf-linux/mf-nowin + +name metafont.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of metafont +containersize 151520 +containerchecksum 43ac81eb202806a33941b61c03d7ce46a12b9fe56aaeb28f04c24a9a0edfd087def951ecdbf63456847f8e3eb62fcdf685e40ab2fbe7ebbdfe96b63a164e3455 +binfiles arch=i386-cygwin size=183 + bin/i386-cygwin/inimf + bin/i386-cygwin/mf-nowin.exe + bin/i386-cygwin/mf.exe + +name metafont.i386-freebsd +category Package +revision 58388 +shortdesc i386-freebsd files of metafont +containersize 194796 +containerchecksum a002b74e97c4370718923872990916c292d0b8c17bdf149b90950af06bc419caa04f5785a80f77101492fb59b9fc27f42a3979d670b1ebd1e32b4e45f1054f6b +binfiles arch=i386-freebsd size=229 + bin/i386-freebsd/inimf + bin/i386-freebsd/mf + bin/i386-freebsd/mf-nowin + +name metafont.i386-linux +category Package +revision 58378 +shortdesc i386-linux files of metafont +containersize 184444 +containerchecksum 5859719634bf2e86978239f33f2540ccd6eba039406772aebcd6ef6624add38a357af35f4241a747f36935d1e984bb539af42f54fd62b741a5947d16a59924b6 +binfiles arch=i386-linux size=188 + bin/i386-linux/inimf + bin/i386-linux/mf + bin/i386-linux/mf-nowin + +name metafont.i386-netbsd +category Package +revision 58386 +shortdesc i386-netbsd files of metafont +containersize 150540 +containerchecksum 605d5e82beafc5367cb218efd0a7252c8c9e8e2cb367021f9c9cdb71030aac6148ccc7819969c885278f09bdd92eae23abffbadba19188501f2bea9745504ac3 +binfiles arch=i386-netbsd size=203 + bin/i386-netbsd/inimf + bin/i386-netbsd/mf + bin/i386-netbsd/mf-nowin + +name metafont.i386-solaris +category Package +revision 58388 +shortdesc i386-solaris files of metafont +containersize 184368 +containerchecksum bc2266b6f6ed701b36cf4dc2cb718f5b7ad4cd47275376ad47f4656ad4b4497915644d0dc9234cb42cb618e254a64167147932f2911fbf56b1be49a6dab2ad18 +binfiles arch=i386-solaris size=170 + bin/i386-solaris/inimf + bin/i386-solaris/mf + bin/i386-solaris/mf-nowin + +name metafont.universal-darwin +category Package +revision 58418 +shortdesc universal-darwin files of metafont +containersize 470728 +containerchecksum 13c0eac887c148626767b2883ba0fe2092fb1131ca13d350387ffed26519522774643e7fb4dc0383042bca1396fcd0b652414923e74d582308646d8a269a0acb +binfiles arch=universal-darwin size=559 + bin/universal-darwin/inimf + bin/universal-darwin/mf + bin/universal-darwin/mf-nowin + +name metafont.win32 +category Package +revision 59028 +shortdesc win32 files of metafont +containersize 145580 +containerchecksum 02f3040ba336fff7fb78870c6557174932b1d1104f6e5b7c62bed67f5e27192010c50b8e277e8b4f500857102963d6fbc103d026f0612fdaf4d8162008b88994 +binfiles arch=win32 size=138 + bin/win32/inimf.exe + bin/win32/mf-nowin.exe + bin/win32/mf.exe + +name metafont.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of metafont +containersize 179188 +containerchecksum 621651ef4c7c688abbb8bc2ce7d516248f1d0fdbaed7eb5cbe5aebe20a6719addb700ea9a5562ab65d2920d650701ed2b5b868fa7205d6d7113d4d94689a85f8 +binfiles arch=x86_64-cygwin size=187 + bin/x86_64-cygwin/inimf + bin/x86_64-cygwin/mf-nowin.exe + bin/x86_64-cygwin/mf.exe + +name metafont.x86_64-darwinlegacy +category Package +revision 58388 +shortdesc x86_64-darwinlegacy files of metafont +containersize 154696 +containerchecksum d0a74b1a7ac5ea554fda3d2b15349ff1b8eadcfd820ca22bf4628afcc3235c3b896e74ca838c73f332edcbb7a083db2bca87f1c582267e20a45aeec15f4ac037 +binfiles arch=x86_64-darwinlegacy size=167 + bin/x86_64-darwinlegacy/inimf + bin/x86_64-darwinlegacy/mf + bin/x86_64-darwinlegacy/mf-nowin + +name metafont.x86_64-linux +category Package +revision 58378 +shortdesc x86_64-linux files of metafont +containersize 194472 +containerchecksum caae8df4c587d0ec9585f295af4f390d6847624503ca1e6470b8ea6af6500ec5e80e6012e6ce84be658ac70a97c80daf7f3500f0500b66ab72afc760cab99037 +binfiles arch=x86_64-linux size=171 + bin/x86_64-linux/inimf + bin/x86_64-linux/mf + bin/x86_64-linux/mf-nowin + +name metafont.x86_64-linuxmusl +category Package +revision 58378 +shortdesc x86_64-linuxmusl files of metafont +containersize 202044 +containerchecksum 5a3183389d6bda39b500179e93daafe8ada82d9f8e2b25bd356568b47e03cd870909e57de6c9e5d75a6ae12e253e722eae8b30e1102b2ad141bdc3a9821fdf72 +binfiles arch=x86_64-linuxmusl size=191 + bin/x86_64-linuxmusl/inimf + bin/x86_64-linuxmusl/mf + bin/x86_64-linuxmusl/mf-nowin + +name metafont.x86_64-solaris +category Package +revision 58388 +shortdesc x86_64-solaris files of metafont +containersize 219420 +containerchecksum d7a5245fe82d4b63a86f85a8012ed7e62d60569207dafe6fa6f25a27d66ff463ba69f6ea81fc9b4df31a83e83a2cf1e15fc0ebc03819a20c33e71444ce09e9a3 +binfiles arch=x86_64-solaris size=194 + bin/x86_64-solaris/inimf + bin/x86_64-solaris/mf + bin/x86_64-solaris/mf-nowin + +name metago +category Package +revision 15878 +shortdesc MetaPost output of Go positions +relocated 1 +longdesc The package allows you to draw Go game positions with MetaPost. +longdesc Two methods of usage are provided, either using the package +longdesc programmatically, or using the package via a script (which may +longdesc produce several images). +containersize 5048 +containerchecksum e7b3661d99ea50f7b20fe3af370e59e960fc0599409b5c11bfc9618c12c38e44b89e4e81d69ae7ba5e2565e46078ee52ed0bef46aa619408b386bb73926caeb7 +doccontainersize 27136 +doccontainerchecksum 8396725c0afc87c63d16256d5ab0d575a19f05d78ed245099a60785f0810a012e8c0026cf13d03781d09d7c0007bb9ed9b87072ed732ba706c893e5465461052 +docfiles size=24 + RELOC/doc/metapost/metago/README details="Readme" + RELOC/doc/metapost/metago/example-program.mp + RELOC/doc/metapost/metago/example-program.pdf + RELOC/doc/metapost/metago/example-script-1.pdf + RELOC/doc/metapost/metago/example-script-2.pdf + RELOC/doc/metapost/metago/example-script-3.pdf + RELOC/doc/metapost/metago/example-script-4.pdf + RELOC/doc/metapost/metago/example-script-5.pdf + RELOC/doc/metapost/metago/example-script-6.pdf + RELOC/doc/metapost/metago/example-script-7.pdf + RELOC/doc/metapost/metago/example-script-8.pdf + RELOC/doc/metapost/metago/example-script.mp + RELOC/doc/metapost/metago/script.go +runfiles size=5 + RELOC/metapost/metago/metago.mp +catalogue-also go igo +catalogue-ctan /graphics/metapost/contrib/macros/metago +catalogue-license lppl +catalogue-topics mp-use games +catalogue-version 0.9 + +name metalogo +category Package +revision 18611 +shortdesc Extended TeX logo macros +relocated 1 +longdesc This package exposes spacing parameters for various TeX logos +longdesc to the end user, to optimise the logos for different fonts. +longdesc Written especially for XeLaTeX users. +containersize 2228 +containerchecksum 20d5a9b8454166535aa3aa80da7d2931937fc6a4d730c1ab70c856311c223d466e9fce2ed6e3b2fbf4b4fc75778d7d4c2649111df5f92dd58b6fc42b3ec72696 +doccontainersize 77852 +doccontainerchecksum 48318b396e4e227dc1b80e21474a296ba4dfd37e81b95f9669dd8c96ca7318abd8a1e21ceb95e0ca7832ed64a85ede985fae7e2e52b3aa742c64b86e54fc563c +docfiles size=26 + RELOC/doc/latex/metalogo/README details="Readme" + RELOC/doc/latex/metalogo/TeXoutline.pdf + RELOC/doc/latex/metalogo/eLaToutline.pdf + RELOC/doc/latex/metalogo/metalogo.pdf details="Package documentation" +srccontainersize 7148 +srccontainerchecksum bf240b77ef00d5351218674baf851b0eabcb22257fd6ce9dbd6b66afec5323a730df7b27d522f5130830ecf92af377edb3ec7906be206e760971dbe8f6266942 +srcfiles size=7 + RELOC/source/latex/metalogo/metalogo.dtx + RELOC/source/latex/metalogo/metalogo.ins +runfiles size=2 + RELOC/tex/latex/metalogo/metalogo.sty +catalogue-also metalogox +catalogue-ctan /macros/latex/contrib/metalogo +catalogue-license lppl +catalogue-topics logo +catalogue-version 0.12 + +name metalogox +category Package +revision 49774 +shortdesc Adjust TeX logos, with font detection +relocated 1 +longdesc This package extends the metalogo package to automatically +longdesc adjust the appearance of the logos TeX, LaTeX, LaTeX2e, +longdesc XeLaTeX, and LuaLaTeX, depending on the font detected or the +longdesc option given to metalogox. Most of the serif and sans fonts +longdesc listed at The LaTeX Font Catalogue are supported. The package +longdesc depends on metalogo, xparse, and etoolbox. +containersize 4232 +containerchecksum d2f6bb89071ae56b0083e5b38a629e6089d5d2c73fc9206181b2aa3071e0a4a350a3f5266997063a011d41e4d369745ec5f246d8f3b723c00c8dfa84452e7cea +doccontainersize 426460 +doccontainerchecksum d55aa00226b6c7773cb275d33ed698e2617b82af5a2b060b58af7468e8be2d9c65bb8b052b66c28a94551fd51867a34e2c6b9d0147161e3df9cd05a03567a59f +docfiles size=106 + RELOC/doc/latex/metalogox/README.txt details="Readme" + RELOC/doc/latex/metalogox/metalogox.pdf details="Package documentation" +srccontainersize 8896 +srccontainerchecksum b6354ba439f3514a491c271294436f01aac26f77225455d1fb1a91d55a5353d63f2de6d3814bec21c0f043c95186411353c87992387f2e174d9cb03057ef0560 +srcfiles size=12 + RELOC/source/latex/metalogox/metalogox.dtx + RELOC/source/latex/metalogox/metalogox.ins +runfiles size=7 + RELOC/tex/latex/metalogox/metalogox.sty +catalogue-also metalogo +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /macros/latex/contrib/metalogox +catalogue-license lppl1.3 +catalogue-topics logo +catalogue-version 1.00 + +name metanorma +category Package +revision 55010 +shortdesc Write Metanorma standardization documents using LaTe +relocated 1 +longdesc metanorma This work includes a LaTeX document class, a +longdesc `latexml` script and a `latexmlpost` stylesheet which allow you +longdesc to write a LaTeX document and transcode it into Metanorma's +longdesc `ADOC` format. This work is sponsored by Ribose Inc. +longdesc (<https://www.ribose.com>). This work is maintained by Ribose +longdesc Inc. (<open.source@ribose.com>). +containersize 7536 +containerchecksum e9ca6b583cfc64ee78abdfca2520083dc231afd7bcc0b1b8373273c23da3f3bb961bad04d752cca38113d3a4d8e1ce54b401b96ea29e00e78be97d73bc528b4f +doccontainersize 84860 +doccontainerchecksum 3750e580e3d7d0d69515e0de7a88a161cd8e7092af41be10fb4092cb519ecfebfef900e691d0c92ceb95df236cf040b2a314d54bfd8a6f7a09cb3c9585f15a32 +docfiles size=124 + RELOC/doc/latex/metanorma/README.md details="Readme" + RELOC/doc/latex/metanorma/metanorma.adoc + RELOC/doc/latex/metanorma/metanorma.pdf details="Package documentation" +runfiles size=11 + RELOC/tex/latex/metanorma/metanorma.cls + RELOC/tex/latex/metanorma/metanorma.cls.ltxml + RELOC/tex/latex/metanorma/metanorma.xsl +catalogue-contact-announce https://github.com/metanorma/tex2mn/releases +catalogue-contact-bugs https://github.com/metanorma/tex2mn/issues +catalogue-contact-development https://github.com/metanorma/tex2mn +catalogue-contact-home https://github.com/metanorma/tex2mn +catalogue-contact-repository https://github.com/metanorma/tex2mn +catalogue-contact-support https://github.com/metanorma/tex2mn/issues +catalogue-ctan /macros/latex/contrib/metanorma +catalogue-license mit +catalogue-topics class cvt-other format-cvt scientific-docs std-conform scientific-docs +catalogue-version 0.5.0 + +name metaobj +category Package +revision 15878 +shortdesc MetaPost package providing high-level objects +relocated 1 +longdesc METAOBJ is a large MetaPost package providing high-level +longdesc objects. It implements many of PSTricks' features for node +longdesc connections, but also trees, matrices, and many other things. +longdesc It more or less contains boxes.mp and rboxes.mp. There is a +longdesc large (albeit not complete) documentation distributed with the +longdesc package. It is easily extensible with new objects. +containersize 57644 +containerchecksum cf587c174e44da9496ece876bfcb8330bc52173cc3bd6d1b1351efc75a7c333ed8c7cbd41c079d492947a1ee43d8043fabebc80b4c7a5d348eb054e82c704e3b +doccontainersize 585804 +doccontainerchecksum 0bfe1fa6a4b3a8923cfbe9bdc4fa1b27567df66365db447346fdcc739675d1d815515e09fbe96f44369643c38e6a8007a0f8d089ed8504020fe0a0e2a795ea9a +docfiles size=247 + RELOC/doc/metapost/metaobj/README details="Readme" + RELOC/doc/metapost/metaobj/license.txt + RELOC/doc/metapost/metaobj/momanual.pdf details="Package documentation" +runfiles size=82 + RELOC/metapost/metaobj/connections.mp + RELOC/metapost/metaobj/metaobj.mp + RELOC/metapost/metaobj/mobjstandard.mp + RELOC/metapost/metaobj/proofex.mp + RELOC/metapost/metaobj/pstricksex1.mp + RELOC/metapost/metaobj/pstricksex2.mp + RELOC/metapost/metaobj/pstricksex3.mp + RELOC/metapost/metaobj/pstricksex4.mp +catalogue-ctan /graphics/metapost/contrib/macros/metaobj +catalogue-license lppl +catalogue-topics graphics-engn +catalogue-version 0.93 + +name metaplot +category Package +revision 15878 +shortdesc Plot-manipulation macros for use in MetaPost +relocated 1 +longdesc MetaPlot is a set of MetaPost macros for manipulating +longdesc pre-generated plots (and similar objects), and formatting them +longdesc for inclusion in a MetaPost figure. The intent is that the +longdesc plots can be generated by some outside program, in an abstract +longdesc manner that does not require making decisions about on-page +longdesc sizing and layout, and then they can be imported into MetaPlot +longdesc and arranged using the full capabilities of MetaPost. Metaplot +longdesc also includes a very flexible set of macros for generating plot +longdesc axes, which may be useful in other contexts as well. Presently, +longdesc MetaPlot is in something of a pre-release beta state; it is +longdesc quite functional, but the syntax of the commands is still +longdesc potentially in flux. +containersize 3884 +containerchecksum eb083316720a5d7379c0ef7c1afa0e82ea5df63a3a98200b7041637a6fa47aa33dc20a265e05bdbc63abfc375e6b59fa199d4091875c057a044821c557963dab +doccontainersize 289128 +doccontainerchecksum 1732b5a572a3d4c0a646308d3c102be29de845030a624763dd6075a44a739a29e65fd9f224229eed6dbe8dfc6b590a3df1cc07c184881dcd2f3dc5b0642a48dd +docfiles size=141 + RELOC/doc/latex/metaplot/README details="Readme" + RELOC/doc/latex/metaplot/examples/cap1.cc + RELOC/doc/latex/metaplot/examples/cap1.mp + RELOC/doc/latex/metaplot/examples/capillary.cc + RELOC/doc/latex/metaplot/examples/cpoint.cc + RELOC/doc/latex/metaplot/examples/cpoint.h + RELOC/doc/latex/metaplot/examples/figure_1.mp + RELOC/doc/latex/metaplot/examples/figures_2-7.mp + RELOC/doc/latex/metaplot/examples/figures_8-9.mp + RELOC/doc/latex/metaplot/examples/gpl.txt + RELOC/doc/latex/metaplot/examples/mc2.mp + RELOC/doc/latex/metaplot/examples/metacontour.cc + RELOC/doc/latex/metaplot/examples/metacontour.h + RELOC/doc/latex/metaplot/examples/metacontour_main.cc + RELOC/doc/latex/metaplot/metaplot_preprint.pdf +runfiles size=5 + RELOC/metapost/metaplot/axes.mp + RELOC/metapost/metaplot/metaplot.mp +catalogue-ctan /graphics/metaplot +catalogue-license lppl +catalogue-topics graphics-plot +catalogue-version 0.91 + +name metapost +category Package +revision 57972 +shortdesc A development of Metafont for creating graphics +longdesc MetaPost uses a language based on that of Metafont to produce +longdesc precise technical illustrations. Its output is scalable +longdesc PostScript or SVG, rather than the bitmaps Metafont creates. +depend kpathsea +depend metapost.ARCH +execute addMap troff-updmap.map +containersize 73764 +containerchecksum 3a3e14f2be0ff7eefe322d4cbf961e62376ec1815a5aece95dc028ce6e75978d272ae04f972aa686ffc7eda27a9c1978f9d4201d33e143fa3cb657f57b260d47 +doccontainersize 2436544 +doccontainerchecksum a0962cc5094703f577bff3c1b93592d93684f9b3b3045356db3461cbf52ba853608dd3af1432d42e55e2f13cf7ad98c41232f06556f42006c3498e23c87b7f82 +docfiles size=829 + texmf-dist/doc/man/man1/dvitomp.1 + texmf-dist/doc/man/man1/dvitomp.man1.pdf + texmf-dist/doc/man/man1/mpost.1 + texmf-dist/doc/man/man1/mpost.man1.pdf + texmf-dist/doc/metapost/base/CHANGES + texmf-dist/doc/metapost/base/grdemo-doc.pdf + texmf-dist/doc/metapost/base/grdemo.pdf + texmf-dist/doc/metapost/base/mpboxes.pdf + texmf-dist/doc/metapost/base/mpgraph.pdf + texmf-dist/doc/metapost/base/mpintro.pdf + texmf-dist/doc/metapost/base/mplibapi.pdf + texmf-dist/doc/metapost/base/mpman.pdf details="METAPOST Users Manual" + texmf-dist/doc/metapost/base/source-manual/Makefile + texmf-dist/doc/metapost/base/source-manual/README + texmf-dist/doc/metapost/base/source-manual/TODO + texmf-dist/doc/metapost/base/source-manual/agepop91.d + texmf-dist/doc/metapost/base/source-manual/agepopm.d + texmf-dist/doc/metapost/base/source-manual/charts.mp + texmf-dist/doc/metapost/base/source-manual/cm2lm.map + texmf-dist/doc/metapost/base/source-manual/countries.d + texmf-dist/doc/metapost/base/source-manual/ctabbing.sty + texmf-dist/doc/metapost/base/source-manual/demo.ms + texmf-dist/doc/metapost/base/source-manual/energy.d + texmf-dist/doc/metapost/base/source-manual/figs.1 + texmf-dist/doc/metapost/base/source-manual/figs.mp + texmf-dist/doc/metapost/base/source-manual/grdemo-doc.ms + texmf-dist/doc/metapost/base/source-manual/grdemo-doc.ps + texmf-dist/doc/metapost/base/source-manual/grdemo.eps + texmf-dist/doc/metapost/base/source-manual/grdemo.mp + texmf-dist/doc/metapost/base/source-manual/grdemo.ms + texmf-dist/doc/metapost/base/source-manual/lead.d + texmf-dist/doc/metapost/base/source-manual/matmul.d + texmf-dist/doc/metapost/base/source-manual/mpboxes.bib + texmf-dist/doc/metapost/base/source-manual/mpboxes.mp + texmf-dist/doc/metapost/base/source-manual/mpboxes.tex + texmf-dist/doc/metapost/base/source-manual/mpgraph.bib + texmf-dist/doc/metapost/base/source-manual/mpgraph.mp + texmf-dist/doc/metapost/base/source-manual/mpgraph.tex + texmf-dist/doc/metapost/base/source-manual/mplibapi.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex + texmf-dist/doc/metapost/base/source-manual/mpman-charts.mp + texmf-dist/doc/metapost/base/source-manual/mpman.bib + texmf-dist/doc/metapost/base/source-manual/mpman.ist + texmf-dist/doc/metapost/base/source-manual/mpman.mp + texmf-dist/doc/metapost/base/source-manual/mpman.tex + texmf-dist/doc/metapost/base/source-manual/timepop.d + texmf-dist/doc/metapost/base/source-tutorial/Makefile + texmf-dist/doc/metapost/base/source-tutorial/abstract.tex + texmf-dist/doc/metapost/base/source-tutorial/annulus.mp + texmf-dist/doc/metapost/base/source-tutorial/arrows.tex + texmf-dist/doc/metapost/base/source-tutorial/biblio.tex + texmf-dist/doc/metapost/base/source-tutorial/circles.mp + texmf-dist/doc/metapost/base/source-tutorial/commands.tex + texmf-dist/doc/metapost/base/source-tutorial/compilation.tex + texmf-dist/doc/metapost/base/source-tutorial/conclusion.tex + texmf-dist/doc/metapost/base/source-tutorial/data.d + texmf-dist/doc/metapost/base/source-tutorial/data.mp + texmf-dist/doc/metapost/base/source-tutorial/data.tex + texmf-dist/doc/metapost/base/source-tutorial/draw.mp + texmf-dist/doc/metapost/base/source-tutorial/draw.tex + texmf-dist/doc/metapost/base/source-tutorial/fill.mp + texmf-dist/doc/metapost/base/source-tutorial/fill.tex + texmf-dist/doc/metapost/base/source-tutorial/graph.tex + texmf-dist/doc/metapost/base/source-tutorial/inclusion.tex + texmf-dist/doc/metapost/base/source-tutorial/intro.tex + texmf-dist/doc/metapost/base/source-tutorial/label.mp + texmf-dist/doc/metapost/base/source-tutorial/label.tex + texmf-dist/doc/metapost/base/source-tutorial/mpintro.bib + texmf-dist/doc/metapost/base/source-tutorial/mpintro.ltx + texmf-dist/doc/metapost/base/source-tutorial/paperclip.mp + texmf-dist/doc/metapost/base/source-tutorial/parabola.mp + texmf-dist/doc/metapost/base/source-tutorial/previewer.eps + texmf-dist/doc/metapost/base/source-tutorial/previewer.pdf + texmf-dist/doc/metapost/base/source-tutorial/previewer.png +runfiles size=112 + texmf-dist/fonts/afm/metapost/freeeuro.afm + texmf-dist/fonts/afm/metapost/psyrgo.afm + texmf-dist/fonts/afm/metapost/zpzdr-reversed.afm + texmf-dist/fonts/enc/dvips/metapost/groff.enc + texmf-dist/fonts/map/dvips/metapost/troff-updmap.map + texmf-dist/fonts/map/dvips/metapost/troff.map + texmf-dist/fonts/tfm/metapost/freeeuro.tfm + texmf-dist/fonts/tfm/metapost/pagd8g.tfm + texmf-dist/fonts/tfm/metapost/pagdo8g.tfm + texmf-dist/fonts/tfm/metapost/pagk8g.tfm + texmf-dist/fonts/tfm/metapost/pagko8g.tfm + texmf-dist/fonts/tfm/metapost/pbkd8g.tfm + texmf-dist/fonts/tfm/metapost/pbkdi8g.tfm + texmf-dist/fonts/tfm/metapost/pbkl8g.tfm + texmf-dist/fonts/tfm/metapost/pbkli8g.tfm + texmf-dist/fonts/tfm/metapost/pcrb8g.tfm + texmf-dist/fonts/tfm/metapost/pcrbo8g.tfm + texmf-dist/fonts/tfm/metapost/pcrr8g.tfm + texmf-dist/fonts/tfm/metapost/pcrro8g.tfm + texmf-dist/fonts/tfm/metapost/phvb8g.tfm + texmf-dist/fonts/tfm/metapost/phvb8gn.tfm + texmf-dist/fonts/tfm/metapost/phvbo8g.tfm + texmf-dist/fonts/tfm/metapost/phvbo8gn.tfm + texmf-dist/fonts/tfm/metapost/phvr8g.tfm + texmf-dist/fonts/tfm/metapost/phvr8gn.tfm + texmf-dist/fonts/tfm/metapost/phvro8g.tfm + texmf-dist/fonts/tfm/metapost/phvro8gn.tfm + texmf-dist/fonts/tfm/metapost/pncb8g.tfm + texmf-dist/fonts/tfm/metapost/pncbi8g.tfm + texmf-dist/fonts/tfm/metapost/pncr8g.tfm + texmf-dist/fonts/tfm/metapost/pncri8g.tfm + texmf-dist/fonts/tfm/metapost/pplb8g.tfm + texmf-dist/fonts/tfm/metapost/pplbi8g.tfm + texmf-dist/fonts/tfm/metapost/pplr8g.tfm + texmf-dist/fonts/tfm/metapost/pplri8g.tfm + texmf-dist/fonts/tfm/metapost/psyrgo.tfm + texmf-dist/fonts/tfm/metapost/ptmb8g.tfm + texmf-dist/fonts/tfm/metapost/ptmbi8g.tfm + texmf-dist/fonts/tfm/metapost/ptmr8g.tfm + texmf-dist/fonts/tfm/metapost/ptmri8g.tfm + texmf-dist/fonts/tfm/metapost/pzcmi8g.tfm + texmf-dist/fonts/tfm/metapost/zpzdr-reversed.tfm + texmf-dist/fonts/type1/metapost/freeeuro.pfa + texmf-dist/metapost/base/TEX.mp + texmf-dist/metapost/base/boxes.mp + texmf-dist/metapost/base/format.mp + texmf-dist/metapost/base/graph.mp + texmf-dist/metapost/base/marith.mp + texmf-dist/metapost/base/mfplain.mp + texmf-dist/metapost/base/mpost.mp + texmf-dist/metapost/base/plain.mp + texmf-dist/metapost/base/pmpost.mp + texmf-dist/metapost/base/rboxes.mp + texmf-dist/metapost/base/sarith.mp + texmf-dist/metapost/base/string.mp + texmf-dist/metapost/base/texnum.mp + texmf-dist/metapost/base/troffnum.mp + texmf-dist/metapost/base/upmpost.mp + texmf-dist/metapost/config/mfplain.ini + texmf-dist/metapost/misc/null.mp + texmf-dist/metapost/support/charlib/12 + texmf-dist/metapost/support/charlib/14 + texmf-dist/metapost/support/charlib/34 + texmf-dist/metapost/support/charlib/Ao + texmf-dist/metapost/support/charlib/Fi + texmf-dist/metapost/support/charlib/Fl + texmf-dist/metapost/support/charlib/L1 + texmf-dist/metapost/support/charlib/LH + texmf-dist/metapost/support/charlib/Lb + texmf-dist/metapost/support/charlib/Sl + texmf-dist/metapost/support/charlib/ao.x + texmf-dist/metapost/support/charlib/bx + texmf-dist/metapost/support/charlib/ci + texmf-dist/metapost/support/charlib/ff + texmf-dist/metapost/support/charlib/lh.x + texmf-dist/metapost/support/charlib/ob + texmf-dist/metapost/support/charlib/rh + texmf-dist/metapost/support/charlib/sq + texmf-dist/metapost/support/charlib/twiddle + texmf-dist/metapost/support/trchars.adj + texmf-dist/metapost/support/trfonts.map + texmf-dist/tex/generic/metapost/mproof.tex + texmf-dist/tex/generic/metapost/mpsproof.tex +catalogue-alias mp mpost +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 https://lists.tug.org/metapost +catalogue-license lgpl +catalogue-topics graphics-engn + +name metapost-colorbrewer +category Package +revision 48753 +shortdesc An implementation of the colorbrewer2.org colours for MetaPost +relocated 1 +longdesc This package provides two MetaPost include files that define +longdesc all the colorbrewer2.org colours: colorbrewer-cmyk.mp +longdesc colorbrewer-rgb.mp The first defines all the colours as CMYK, +longdesc the second as RGB. Use whichever one you prefer. For an example +longdesc of what you can do, and a list of all the names, have a look at +longdesc colorbrewer-sampler.mp. You can also see the names on +longdesc http://colorbrewer2.org. The package also includes the Python +longdesc script used to generate the MP source from the colorbrewer +longdesc project. +containersize 11784 +containerchecksum e59dd121f9a176e628697e31b720507723867a0b7b68b73531aa825bb02b07d04ff705bdfbeb369fe3a2d304f4c6c5aad3f823aaa4c82257540f1459cf099cb1 +doccontainersize 219680 +doccontainerchecksum 59f17d78ef78a142bde5783996f149b3a7c740c2b3ec6f90133115ebddcf6c460dada543482f5379872054a74eb772bab8afd96fa48b2484f7932a478b8bde2d +docfiles size=66 + RELOC/doc/metapost/metapost-colorbrewer/README.md details="Readme" + RELOC/doc/metapost/metapost-colorbrewer/colorbrewer-sampler.mp + RELOC/doc/metapost/metapost-colorbrewer/colorbrewer-sampler.pdf + RELOC/doc/metapost/metapost-colorbrewer/colorbrewer-sampler.png + RELOC/doc/metapost/metapost-colorbrewer/make_mp_colorbrewer.py +runfiles size=30 + RELOC/metapost/metapost-colorbrewer/colorbrewer-cmyk.mp + 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-license gpl3+ +catalogue-topics mp-supp mp-use + +name metapost-examples +category Package +revision 15878 +shortdesc Example drawings using MetaPost +relocated 1 +longdesc These are a few (hundred) example pictures drawn with MetaPost, +longdesc ranging from very simple (lines and circles) to rather +longdesc intricate (uncommon geometric transformations, fractals, +longdesc bitmap, etc). +containersize 488 +containerchecksum 95942b1b110e65274839ba01c16fed3e63a0ac99aa564d7a000bc9d9a0f5625ddc1dca13e786d0721bf93e76410722d4d76c86a05297bc39cd9af6dc91c2e6f8 +doccontainersize 21248 +doccontainerchecksum 2a3aec80b511864878e07ff973e17ed4fe1aec692c7e6983b57dde586aa19500cdd373687b0e081dc80c8584f116f0fa3de7ed4f09ba232eee8adce5e998c954 +docfiles size=37 + RELOC/doc/metapost/metapost-examples/Makefile + RELOC/doc/metapost/metapost-examples/README details="Readme" + RELOC/doc/metapost/metapost-examples/data1 + RELOC/doc/metapost/metapost-examples/data2 + RELOC/doc/metapost/metapost-examples/data3 + RELOC/doc/metapost/metapost-examples/examples.mp + RELOC/doc/metapost/metapost-examples/mp2html.pl +catalogue-ctan /info/metapost/examples +catalogue-license other-free +catalogue-topics demo-code + +name metapost.aarch64-linux +category Package +revision 58876 +shortdesc aarch64-linux files of metapost +containersize 831884 +containerchecksum 29fb7c01eece6d47bef6f777105fb6474ba2e98deaa51c7307525f35d76922875942b4cb36582060ff544d104f28290164de64b3af50b406d4a9fa9349458a38 +binfiles arch=aarch64-linux size=551 + bin/aarch64-linux/dvitomp + bin/aarch64-linux/mfplain + bin/aarch64-linux/mpost + bin/aarch64-linux/r-mpost + +name metapost.amd64-freebsd +category Package +revision 58850 +shortdesc amd64-freebsd files of metapost +containersize 987556 +containerchecksum cfd8230fdb6fbfddd348065cf020e2b54f07b2a485fcf8092b9fae5666551e3e8c70bfe60c8f2bd76c42c64f2650d3696a0825db8676847012d7303a46a7eb0a +binfiles arch=amd64-freebsd size=680 + bin/amd64-freebsd/dvitomp + bin/amd64-freebsd/mfplain + bin/amd64-freebsd/mpost + bin/amd64-freebsd/r-mpost + +name metapost.amd64-netbsd +category Package +revision 58866 +shortdesc amd64-netbsd files of metapost +containersize 780768 +containerchecksum 404defab0b99f028135ff18b5291a8183149a9c1799abf627b3fddc3cfb412957bf2a0c4b6150064c6451aebcb989d03f206b89ac896fdd69b4faa6f399458a9 +binfiles arch=amd64-netbsd size=1297 + bin/amd64-netbsd/dvitomp + bin/amd64-netbsd/mfplain + bin/amd64-netbsd/mpost + bin/amd64-netbsd/r-mpost + +name metapost.armhf-linux +category Package +revision 58911 +shortdesc armhf-linux files of metapost +containersize 729772 +containerchecksum 13e6f079bfc7616c5433b8e36a9a492231459cf066d690f71bd237d6a756b06aff78803ca45845086ce754283f087b1bf070e28a499615e8d2ec10051745f3c7 +binfiles arch=armhf-linux size=478 + bin/armhf-linux/dvitomp + bin/armhf-linux/mfplain + bin/armhf-linux/mpost + bin/armhf-linux/r-mpost + +name metapost.i386-cygwin +category Package +revision 58851 +shortdesc i386-cygwin files of metapost +containersize 871516 +containerchecksum c34747038a074674de93516df1dcef5b712ecbbc6e36af0c6c56a31ac9de4f88fac0f92ad36332d25f890622b72baa080639a0a120925296e7fb2dede973d2a9 +binfiles arch=i386-cygwin size=621 + bin/i386-cygwin/dvitomp + bin/i386-cygwin/mfplain + bin/i386-cygwin/mpost.exe + bin/i386-cygwin/r-mpost + +name metapost.i386-freebsd +category Package +revision 58850 +shortdesc i386-freebsd files of metapost +containersize 863876 +containerchecksum a744a84c3cf5a6270d915b2da2d7c7254d07d9ef4fb791f6b01942f58b58688ac694c4c2c0c75b6b5a3b8bcdee682e3420f93764725212e96a79db00cf01a314 +binfiles arch=i386-freebsd size=582 + bin/i386-freebsd/dvitomp + bin/i386-freebsd/mfplain + bin/i386-freebsd/mpost + bin/i386-freebsd/r-mpost + +name metapost.i386-linux +category Package +revision 58850 +shortdesc i386-linux files of metapost +containersize 966164 +containerchecksum 1d9e2ce8977239125da8d9561caa096918d757dac51f86687ff42fe92fedfebd3f1e6b995af8ef1caff0fc9ff16fd6870eadfb779dee5aaf0d6522058b77b91c +binfiles arch=i386-linux size=675 + bin/i386-linux/dvitomp + bin/i386-linux/mfplain + bin/i386-linux/mpost + bin/i386-linux/r-mpost + +name metapost.i386-netbsd +category Package +revision 58866 +shortdesc i386-netbsd files of metapost +containersize 702696 +containerchecksum 4394f3f772507d89eed3441ddd6e0a8d1b3967386d6255adb50a2d18ff912f06e9de38fd755c5a8d2d084fbbcb4a5bc7b435e0678c16d1b6de5c471d81e300a9 +binfiles arch=i386-netbsd size=1146 + bin/i386-netbsd/dvitomp + bin/i386-netbsd/mfplain + bin/i386-netbsd/mpost + bin/i386-netbsd/r-mpost + +name metapost.i386-solaris +category Package +revision 58850 +shortdesc i386-solaris files of metapost +containersize 842504 +containerchecksum 83f89de73e0be66d0d92a25185704563e718f3ecdd3afedbd9810cef58a2dbd90f61cd0c528acc7009232d06e4d8331a47656cbc22b5fab648587372ca0c3a99 +binfiles arch=i386-solaris size=520 + bin/i386-solaris/dvitomp + bin/i386-solaris/mfplain + bin/i386-solaris/mpost + bin/i386-solaris/r-mpost + +name metapost.universal-darwin +category Package +revision 58850 +shortdesc universal-darwin files of metapost +containersize 1699136 +containerchecksum da40f655c07d0337b4638e9c46d34cd28907080fd8f0a47e396d71b6b377163fed0354400ef31434db533012d0d6468313db52f646f9c187ba2e7ac0dee52d99 +binfiles arch=universal-darwin size=1206 + bin/universal-darwin/dvitomp + bin/universal-darwin/mfplain + bin/universal-darwin/mpost + bin/universal-darwin/r-mpost + +name metapost.win32 +category Package +revision 58843 +shortdesc win32 files of metapost +containersize 820588 +containerchecksum 2c4b82447244533009e26e2de54cb04cd8688d541579b1b3e04d16924c4dbc56a93b3bd42b95f0b540bbb93f67bc3f36a690e52ee9b1794c9f57fea7ec1fc675 +binfiles arch=win32 size=518 + bin/win32/dvitomp.exe + bin/win32/mfplain.exe + bin/win32/mpost.dll + bin/win32/mpost.exe + bin/win32/r-mpost.exe + +name metapost.x86_64-cygwin +category Package +revision 58851 +shortdesc x86_64-cygwin files of metapost +containersize 893304 +containerchecksum a5a633a321164a7dd6ad7f0bc8992ba628f6b3502c934fc04c36bf06c45fd2445aacba02f4b36c4145ce2795ddbaf3bc2c42e9cfa974ee242f8935af537a4342 +binfiles arch=x86_64-cygwin size=584 + bin/x86_64-cygwin/dvitomp + bin/x86_64-cygwin/mfplain + bin/x86_64-cygwin/mpost.exe + bin/x86_64-cygwin/r-mpost + +name metapost.x86_64-darwinlegacy +category Package +revision 58850 +shortdesc x86_64-darwinlegacy files of metapost +containersize 828068 +containerchecksum 0ee0e3e2e1901e062fff74b16ad70e39641b919ba084862a0d91fb1c841d833788a16113860e0b1d7c07c8a8dd6a35d026eb04a0dcdb46b974a6d52022fd45d9 +binfiles arch=x86_64-darwinlegacy size=528 + bin/x86_64-darwinlegacy/dvitomp + bin/x86_64-darwinlegacy/mfplain + bin/x86_64-darwinlegacy/mpost + bin/x86_64-darwinlegacy/r-mpost + +name metapost.x86_64-linux +category Package +revision 58872 +shortdesc x86_64-linux files of metapost +containersize 922688 +containerchecksum 4670a71a3d5a60865b6269f6a468a0d2280292faea9d115195cfbc32a677dad231d61200c5713420588b35549de8b2d542ce41c352f6f26303e44ecc48a90a90 +binfiles arch=x86_64-linux size=597 + bin/x86_64-linux/dvitomp + bin/x86_64-linux/mfplain + bin/x86_64-linux/mpost + bin/x86_64-linux/r-mpost + +name metapost.x86_64-linuxmusl +category Package +revision 58850 +shortdesc x86_64-linuxmusl files of metapost +containersize 958152 +containerchecksum 88dbc693904da380426bfc94c3e289aba2dd8927a1d6fd2d2ba5f65ebae7f4283150fa52547143ff3b85efc09863878d4bce3c5482f32fc49082dce481dae3af +binfiles arch=x86_64-linuxmusl size=623 + bin/x86_64-linuxmusl/dvitomp + bin/x86_64-linuxmusl/mfplain + bin/x86_64-linuxmusl/mpost + bin/x86_64-linuxmusl/r-mpost + +name metapost.x86_64-solaris +category Package +revision 58850 +shortdesc x86_64-solaris files of metapost +containersize 930088 +containerchecksum 6307988d06e5d794e6a4ceba2c48149fda6f6b72724f46f7d6f86627324d06f6d69148e3abedc0730a83d8266dad935138af201a5d3786dc5235e2a7922eea50 +binfiles arch=x86_64-solaris size=599 + bin/x86_64-solaris/dvitomp + bin/x86_64-solaris/mfplain + bin/x86_64-solaris/mpost + bin/x86_64-solaris/r-mpost + +name metastr +category Package +revision 56246 +shortdesc Store and compose strings +relocated 1 +longdesc This is a package to store and compose strings in a structured +longdesc way. This can serve various purposes, for example: manage and +longdesc write document metadata; use templates for formatting document +longdesc data; assist in assembling and displaying document license +longdesc information; facilitate basic internationalisation and +longdesc localisation. +containersize 7516 +containerchecksum fb3a0484636e17b763c1229eee4736a13820a852d977b11d9e8672e08a8ab2f9438bba0ed53286dfc5b1422adef1cfc1c393d1eeda5d3172848c051d6aacd211 +doccontainersize 328460 +doccontainerchecksum 367ccc05eb31c50519e7324093759d6452081075d7e9435cb9e37e9787fd35666c1c18c822bfbff2b6dba0b312cee727ce8b7fa94ed627eb439c3c00e5b3d4e6 +docfiles size=87 + RELOC/doc/latex/metastr/README.txt details="Readme" + RELOC/doc/latex/metastr/metasamp.tex + RELOC/doc/latex/metastr/metastr.pdf details="Package documentation" +srccontainersize 23336 +srccontainerchecksum 904c3cdfcade4637a16366bf511094f4a33cd2614ee3f47bcf4cae7c2ffc0d0758633a8ff556ef9494eddf76969b235ae599e1df28bf9cc7537ddddfe33db157 +srcfiles size=29 + RELOC/source/latex/metastr/metastr.dtx + RELOC/source/latex/metastr/metastr.ins +runfiles size=9 + RELOC/tex/latex/metastr/metastr.sty +catalogue-ctan /macros/latex/contrib/metastr +catalogue-license lppl1.3 +catalogue-topics metadata string licence-mgmt +catalogue-version 1.1.2 + +name metatex +category Package +revision 15878 +shortdesc Incorporate Metafont pictures in TeX source +relocated 1 +longdesc METATeX is a set of plain TeX and Metafont macros that you can +longdesc use to define both the text and the figures in a single source +longdesc file. Because METATeX sets up two way communication, from TeX +longdesc to Metafont and back from Metafont to TeX, drawing dimensions +longdesc can be controlled by TeX and labels can be located by Metafont. +longdesc Only standard features of TeX and Metafont are used, but two +longdesc runs of TeX and one of Metafont are needed. +containersize 3388 +containerchecksum 8d438cf0f3bd375c169681b242b7f00dca96cd3bcfb167c6aa664e27dba59eefb53a6d28ef537802d584b17bc578b1d63ca25799146ee6d986bc647ae1b0af2d +doccontainersize 137060 +doccontainerchecksum 3c2918a3bbb30b4abe2395baf32ed2fd5fb1ce3541f86250f0c4037aeb127fe7e90cfced87144d564813a437b39b184503ea9a2c0c61b979907db74d91860677 +docfiles size=55 + RELOC/doc/plain/metatex/README details="Readme" + RELOC/doc/plain/metatex/gpl.txt + RELOC/doc/plain/metatex/mtmp2pdf.tex + RELOC/doc/plain/metatex/mtpaper.pdf details="Package documentation" + RELOC/doc/plain/metatex/mtpaper/delay.mf + RELOC/doc/plain/metatex/mtpaper/diagram.tex + RELOC/doc/plain/metatex/mtpaper/frame.tex + RELOC/doc/plain/metatex/mtpaper/mtpaper.tex + RELOC/doc/plain/metatex/mtpaper/shadow.tex +runfiles size=2 + RELOC/tex/plain/metatex/metatex.tex +catalogue-also emp +catalogue-ctan /macros/plain/contrib/metatex +catalogue-license gpl +catalogue-topics graphics-inline +catalogue-version 1.1 + +name metatype1 +category Package +revision 37105 +shortdesc Generate Type 1 fonts from MetaPost +relocated 1 +longdesc The system employs scripts, common utility programs, and a set +longdesc of MetaPost macros to provide a means of expressing the details +longdesc outline fonts directly in the MetaPost language. The system was +longdesc employed to generate the Latin Modern fonts, and the +longdesc distribution includes an example development of Knuth's logo +longdesc fonts. +containersize 560 +containerchecksum 1dc34e3f826ebf09c6f3baf358aa0e5ee4ecbe86e2f82a7da12c706f443f5eba7fd8582bf46612b2fa3588515dac34c49d47cfa2b9c3ae905cc51dbe7779eb28 +srccontainersize 235276 +srccontainerchecksum 26f891bb5a62da78763df29f1d9caf26588c6dff57e063eb445ae23a5dfd7108956068de991bbb514ee394c49d4ad119d4a0fdb5398aad48d9be223b8f13d388 +srcfiles size=65 + RELOC/source/metapost/metatype1/README + RELOC/source/metapost/metatype1/logomp03.zip + RELOC/source/metapost/metatype1/metatype1-ver056.inf + RELOC/source/metapost/metatype1/metatype1-ver056.zip +catalogue-ctan /fonts/utilities/metatype1 +catalogue-license pd +catalogue-topics font-devel +catalogue-version 0.56 + +name metauml +category Package +revision 49923 +shortdesc MetaPost library for typesetting UML diagrams +relocated 1 +longdesc MetaUML is a MetaPost library for typesetting UML diagrams, +longdesc which provides a usable, human-friendly textual notation for +longdesc UML, offering now support for class, package, activity, state, +longdesc and use case diagrams. +containersize 20596 +containerchecksum 96773f0d0e2788d13738930fa1aa727c7ca2edee020f3848326d7be3533c177ac977564aed533c59695b1e6c4c65e191784cbc3e7e70becdd651cd702b462ef5 +doccontainersize 444408 +doccontainerchecksum 6c649c32111a6350d36c69405fc272a917144be429bd84c0f118a74e1232c06744e66fb6647c5a742f58c6c78b46830a1484bbed3a9a962380ece6b16c555169 +docfiles size=175 + RELOC/doc/metapost/metauml/README details="Readme" + RELOC/doc/metapost/metauml/manual/fig/activity.mp + RELOC/doc/metapost/metauml/manual/fig/activity_diagrams.mp + RELOC/doc/metapost/metauml/manual/fig/appetizer.mp + RELOC/doc/metapost/metauml/manual/fig/boxes_vs_util.mp + RELOC/doc/metapost/metauml/manual/fig/class.mp + RELOC/doc/metapost/metauml/manual/fig/class_association.mp + RELOC/doc/metapost/metauml/manual/fig/class_customization.mp + RELOC/doc/metapost/metauml/manual/fig/class_customization2.mp + RELOC/doc/metapost/metauml/manual/fig/class_diagrams.mp + RELOC/doc/metapost/metauml/manual/fig/class_templates.mp + RELOC/doc/metapost/metauml/manual/fig/component.mp + RELOC/doc/metapost/metauml/manual/fig/group.mp + RELOC/doc/metapost/metauml/manual/fig/how-links-work.mp + RELOC/doc/metapost/metauml/manual/fig/instance.mp + RELOC/doc/metapost/metauml/manual/fig/mptextmp.mp + RELOC/doc/metapost/metauml/manual/fig/note.mp + RELOC/doc/metapost/metauml/manual/fig/object_stack.mp + RELOC/doc/metapost/metauml/manual/fig/package.mp + RELOC/doc/metapost/metauml/manual/fig/paths.mp + RELOC/doc/metapost/metauml/manual/fig/paths_man.mp + RELOC/doc/metapost/metauml/manual/fig/picture_info.mp + RELOC/doc/metapost/metauml/manual/fig/picture_stack.mp + RELOC/doc/metapost/metauml/manual/fig/positioning.mp + RELOC/doc/metapost/metauml/manual/fig/properties.mp + RELOC/doc/metapost/metauml/manual/fig/state.mp + RELOC/doc/metapost/metauml/manual/fig/statemachine_diagrams.mp + RELOC/doc/metapost/metauml/manual/fig/test_activity.mp + RELOC/doc/metapost/metauml/manual/fig/test_class.mp + RELOC/doc/metapost/metauml/manual/fig/test_class_feature_types.mp + RELOC/doc/metapost/metauml/manual/fig/test_class_qual_assoc.mp + RELOC/doc/metapost/metauml/manual/fig/test_class_templates.mp + RELOC/doc/metapost/metauml/manual/fig/test_component.mp + RELOC/doc/metapost/metauml/manual/fig/test_font.mp + RELOC/doc/metapost/metauml/manual/fig/test_group.mp + RELOC/doc/metapost/metauml/manual/fig/test_instance.mp + RELOC/doc/metapost/metauml/manual/fig/test_lars_issues.mp + RELOC/doc/metapost/metauml/manual/fig/test_lowlevel.mp + RELOC/doc/metapost/metauml/manual/fig/test_note.mp + RELOC/doc/metapost/metauml/manual/fig/test_package.mp + RELOC/doc/metapost/metauml/manual/fig/test_paths.mp + RELOC/doc/metapost/metauml/manual/fig/test_picture.mp + RELOC/doc/metapost/metauml/manual/fig/test_picture_stack.mp + RELOC/doc/metapost/metauml/manual/fig/test_picture_tex_rendering.mp + RELOC/doc/metapost/metauml/manual/fig/test_positioning.mp + RELOC/doc/metapost/metauml/manual/fig/test_skins.mp + RELOC/doc/metapost/metauml/manual/fig/test_skins_global_defaults.mp + RELOC/doc/metapost/metauml/manual/fig/test_state.mp + RELOC/doc/metapost/metauml/manual/fig/test_usecase.mp + RELOC/doc/metapost/metauml/manual/fig/usecase.mp + RELOC/doc/metapost/metauml/manual/fig/usecase_diagrams.mp + RELOC/doc/metapost/metauml/manual/metauml-manual.bib + RELOC/doc/metapost/metauml/manual/metauml-manual.tex + RELOC/doc/metapost/metauml/manual/test-suite.tex + RELOC/doc/metapost/metauml/metauml-manual-v0.2.6-19d34de3da75cbd9f814f0a9ec03b4e0861b1541.pdf details="Package documentation" +runfiles size=49 + RELOC/metapost/metauml/metauml.mp + RELOC/metapost/metauml/metauml_activity.mp + RELOC/metapost/metauml/metauml_base.mp + RELOC/metapost/metauml/metauml_behavioral_common.mp + RELOC/metapost/metauml/metauml_class.mp + RELOC/metapost/metauml/metauml_class_assoc.mp + RELOC/metapost/metauml/metauml_class_relations.mp + RELOC/metapost/metauml/metauml_component.mp + RELOC/metapost/metauml/metauml_component_relations.mp + RELOC/metapost/metauml/metauml_defaults.mp + RELOC/metapost/metauml/metauml_instance.mp + RELOC/metapost/metauml/metauml_links.mp + RELOC/metapost/metauml/metauml_note.mp + RELOC/metapost/metauml/metauml_package.mp + RELOC/metapost/metauml/metauml_package_relations.mp + RELOC/metapost/metauml/metauml_paths.mp + RELOC/metapost/metauml/metauml_skin_simple.mp + RELOC/metapost/metauml/metauml_state.mp + RELOC/metapost/metauml/metauml_stereotype.mp + RELOC/metapost/metauml/metauml_templates.mp + RELOC/metapost/metauml/metauml_usecase.mp + RELOC/metapost/metauml/metauml_usecase_clipart.mp + RELOC/metapost/metauml/util_commons.mp + RELOC/metapost/metauml/util_group.mp + RELOC/metapost/metauml/util_infrastructure.mp + RELOC/metapost/metauml/util_log.mp + RELOC/metapost/metauml/util_margins.mp + RELOC/metapost/metauml/util_object.mp + RELOC/metapost/metauml/util_picture.mp + RELOC/metapost/metauml/util_picture_stack.mp + RELOC/metapost/metauml/util_positioning.mp + RELOC/metapost/metauml/util_shade.mp +catalogue-also expressg pst-uml uml +catalogue-contact-repository https://github.com/ogheorghies/MetaUML +catalogue-ctan /graphics/metapost/contrib/macros/metauml +catalogue-license gpl +catalogue-topics uml mp-use +catalogue-version 0.2.6 + +name method +category Package +revision 17485 +shortdesc Typeset method and variable declarations +relocated 1 +longdesc The package supports typesetting of programming language method +longdesc and variable declarations. It supports declarations in German, +longdesc French and English. +containersize 2792 +containerchecksum 9b71ed52073f831431ef6a3a81afe7efac97a6dd39d772b8f48cfa639dfec01411a5654830fcbaef6a3bef7aeb718bbbc38cbd18c592a080e67175dabc7e9919 +doccontainersize 339016 +doccontainerchecksum 2a211d1325322bfaf57c81a534f29fde51ef2e0dad8d7697c3af9fe10745c5f6245bb689b65d54c39a66b34ccec69d055f201aba34b2a4957ce2fea0827eab45 +docfiles size=89 + RELOC/doc/latex/method/README details="Readme" + RELOC/doc/latex/method/method.pdf details="Package documentation" + RELOC/doc/latex/method/methtest.tex +srccontainersize 7108 +srccontainerchecksum ba90537e63493073509e9407aeecb28797370d75aada1835d5fbbbf991ea9b933226950765b61ab831a708d5fddc10c2fccd624d2872148bb77759a3595cd275 +srcfiles size=9 + RELOC/source/latex/method/Makefile + RELOC/source/latex/method/method.dtx + RELOC/source/latex/method/method.ins +runfiles size=3 + RELOC/tex/latex/method/method.sty +catalogue-ctan /macros/latex/contrib/method +catalogue-license lppl +catalogue-topics listing +catalogue-version 2.0b + +name metre +category Package +revision 18489 +shortdesc Support for the work of classicists +relocated 1 +longdesc The package provides classicists with some of the tools that +longdesc are needed for typesetting scholarly publications dealing with +longdesc Greek and Latin texts, with special emphasis on Greek verse. As +longdesc the package's name suggests, its core is a comprehensive set of +longdesc commands for generating metrical schemes and for placing +longdesc prosodical marks on text set in the Latin or the Greek +longdesc alphabet. The rest of the package provides a miscellany of +longdesc commands for symbols (most of them not directly related to +longdesc metre) that are often used in critical editions of classical +longdesc texts. The package does not require any special font: all +longdesc symbols are taken from the Computer Modern fonts (which are +longdesc included in all TeX distributions) and the package's commands +longdesc are based on TeX primitives. +containersize 10756 +containerchecksum 29d99fe061c828b4eef12047215451eaf6d603106b0ebb0b7c83c8f8b5ffd360160e29a0c86bc0cd329e6f694efae695ef03282885e872cf26c8177f951b705b +doccontainersize 135120 +doccontainerchecksum 73ca10e1d2b32d4f7b37de6c409b68dc38b3dd165f47f52714c3a17e7a5dc6c1562928e7a7f8c5a3ed9aadfe1324e451baf6cda5dce69043fef3811cb6ff8cf7 +docfiles size=99 + RELOC/doc/latex/metre/README details="Readme" + RELOC/doc/latex/metre/demo.pdf details="Example of usage" + RELOC/doc/latex/metre/demo.tex + RELOC/doc/latex/metre/greek1.tex + RELOC/doc/latex/metre/greek2.tex + RELOC/doc/latex/metre/greek3.tex + RELOC/doc/latex/metre/igreek1.tex + RELOC/doc/latex/metre/igreek2.tex + RELOC/doc/latex/metre/igreek3.tex + RELOC/doc/latex/metre/metre.pdf details="Package documentation" +srccontainersize 25376 +srccontainerchecksum d11bfb161dd68208b4f4e29b67131618a02cb60f4e87c3f2809759ab42c44603e790876ea84c6c9f4f053c3cac1bf189344110ff5b4acdc97d7ddfe4c466c977 +srcfiles size=31 + RELOC/source/latex/metre/metre.dtx + RELOC/source/latex/metre/metre.ins +runfiles size=15 + RELOC/tex/latex/metre/metre.sty +catalogue-ctan /macros/latex/contrib/metre +catalogue-license lppl +catalogue-topics crit-ed linguistic +catalogue-version 1.0 + +name metrix +category Package +revision 52323 +shortdesc Typeset metric marks for Latin text +relocated 1 +longdesc The package may be used to type the prosodics/metrics of +longdesc (latin) verse; it provides macros to typeset the symbols +longdesc standing alone, and in combination with symbols, giving +longdesc automatic alignment. The package requires TikZ (including the +longdesc calc library), xpatch, and xparse (thus also requiring the +longdesc experimental LaTeX3 environment). +containersize 5528 +containerchecksum 00cbb4d0cd9417c57ae2cf701f0a485d296e17b95eb56a7a3b0acf328c4eadf3d8ddb7d4c3442ea26ef019dd4a6b5c95af9f718cd4e31b5e5d29301ce8e82edc +doccontainersize 619964 +doccontainerchecksum e5f8654272e8a85366c226113d3815ffb1e539237bdace71da55e30864f8c746162ce1b3f3023e3e62616b286145157816aedc871c6c42dcd3d4b76092d8ea46 +docfiles size=154 + RELOC/doc/latex/metrix/README details="Readme" + RELOC/doc/latex/metrix/metrix.pdf details="Package documentation" +srccontainersize 17688 +srccontainerchecksum 51a355ceccac5ff53cc98baf6d8fb3c36949f620a51191899d272ecca9671819c740703af1c47856b4c171757de68df839959388c2d87b2f43f54aaaf219b7a2 +srcfiles size=24 + RELOC/source/latex/metrix/metrix.dtx + RELOC/source/latex/metrix/metrix.ins +runfiles size=8 + RELOC/tex/latex/metrix/metrix.sty +catalogue-contact-bugs https://github.com/tweh/metrix/issues +catalogue-contact-repository https://github.com/tweh/metrix +catalogue-ctan /macros/latex/contrib/metrix +catalogue-license lppl1.3c +catalogue-topics latin verse expl3 +catalogue-version 1.5 + +name mex +category Package +revision 58661 +shortdesc Polish formats for TeX +longdesc MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX) +longdesc formats to the Polish language and to Polish printing customs. +longdesc It contains a complete set of Metafont sources of Polish fonts, +longdesc hyphenation rules for the Polish language and sources of +longdesc formats. +depend enctex +depend hyph-utf8 +depend hyphen-base +depend hyphen-polish +depend knuth-lib +depend mex.ARCH +depend pdftex +depend pl +depend plain +depend tex +depend tex-ini-files +depend utf8mex +execute AddFormat name=mex engine=pdftex patterns=mexconf.tex options="-translate-file=cp227.tcx *mex.ini" fmttriggers=hyph-utf8,hyphen-base,hyphen-polish,knuth-lib,pl,plain,tex-ini-files +execute AddFormat name=pdfmex engine=pdftex patterns=mexconf.tex options="-translate-file=cp227.tcx *pdfmex.ini" fmttriggers=hyph-utf8,hyphen-base,hyphen-polish,knuth-lib,pl,plain,tex-ini-files +execute AddFormat name=utf8mex engine=pdftex patterns=mexconf.tex options="-enc *utf8mex.ini" fmttriggers=hyph-utf8,hyphen-base,hyphen-polish,knuth-lib,pl,plain,tex-ini-files,enctex,utf8mex +containersize 11468 +containerchecksum a79d6a1ecb15f7962826773d7eab4b1ffd86a5c15f8076f096fecf63df1bd661449eb7d14251a57a1eb2bede030ddf93aac170fc3c59ae0a124da6cef69e55be +doccontainersize 35540 +doccontainerchecksum 091f2825376718d8c2190555af7ef54d0ae5202425d57b986fba861df2f8604301df5a121ccfcfcdc91032d07dcda8289fb8de5d81c487b93b0e202a2a5a658e +docfiles size=31 + texmf-dist/doc/mex/base/00readme + texmf-dist/doc/mex/base/mex.html + texmf-dist/doc/mex/base/mexinfo.eng + texmf-dist/doc/mex/base/mexinfo.pol + texmf-dist/doc/mex/base/qq.eps + texmf-dist/doc/mex/base/tstmex.tex +srccontainersize 38840 +srccontainerchecksum 6f20a7e4f80670f7dfe5b2cfe3357a5d16b0f627b5e9e95c2d7d46598e00b989d5ae8c797589c56c594b7d3610f5f79cad42f3bb64a628be968e4e9e5d541e98 +srcfiles size=12 + texmf-dist/source/mex/base/eminst.zip + texmf-dist/source/mex/base/istyles.zip +runfiles size=13 + texmf-dist/tex/mex/base/lamex.tex + texmf-dist/tex/mex/base/mex.tex + texmf-dist/tex/mex/base/mex1.tex + texmf-dist/tex/mex/base/mex2.tex + texmf-dist/tex/mex/base/mexconf.tex + texmf-dist/tex/mex/config/mex.ini + texmf-dist/tex/mex/config/pdfmex.ini +catalogue-ctan /language/polish/mex105a.zip +catalogue-license knuth +catalogue-topics format polish +catalogue-version 1.05a + +name mex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mex +containersize 356 +containerchecksum 2e3d1f00afad8ab58fcef9011ebbedcaa4f7be1182f657ba418f399db1be20bf32665c9ec0e92347b1c397bfc9b8a34a335421780752dc5f60ad2e0ee7e20f96 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/mex + bin/aarch64-linux/pdfmex + bin/aarch64-linux/utf8mex + +name mex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mex +containersize 356 +containerchecksum 43f1d6a7024cbc267bca97c7f31a3baeb3fd299f33fd3aff80d5eaeb22183655c9602eacef073a2bf6bc1d843165e25bd1211b3ce110216dbdd057c9a00a3e3a +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/mex + bin/amd64-freebsd/pdfmex + bin/amd64-freebsd/utf8mex + +name mex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mex +containersize 352 +containerchecksum b5c682f18af68c0d30e737e64f81e84cadcb69870188aa15012290d1daa18acc350db88a52837e1e59d99c40250b0dd3043b8597e7780671982fbc9d1b5a36cb +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/mex + bin/amd64-netbsd/pdfmex + bin/amd64-netbsd/utf8mex + +name mex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mex +containersize 356 +containerchecksum b38edde7952c7310a2b24a8d3f93edf3930cd43125f9d54a665f61cc532958145fd44b53d01410da4f87a600a97e266410e82ea3a806e9152d352d348e8f7851 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/mex + bin/armhf-linux/pdfmex + bin/armhf-linux/utf8mex + +name mex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of mex +containersize 356 +containerchecksum da498969dd082b214abd76c6bce40e7613786a0e3f759862653600739cec2dbb49dc63f673ac796dd1c2a54ce89b1edb1c17e76c9ced48f135273e25ee6ecbe1 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/mex + bin/i386-cygwin/pdfmex + bin/i386-cygwin/utf8mex + +name mex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mex +containersize 356 +containerchecksum 25103cd8be4527230b630bf3cdf787be7606e6516d4f7e7c5813db6e6e5cd2cd5574f057a61b5e7c92a6264ea2e5eb73f0c393f808fdaf4929ae7b029a3771be +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/mex + bin/i386-freebsd/pdfmex + bin/i386-freebsd/utf8mex + +name mex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of mex +containersize 352 +containerchecksum 3c04b2d069e858a24c01d41fca557b54311e81764cf57b5e34aaaa4c89be1700f65a9e7464f5e905bb0432adfe9b4d6132ac9c98278f55d5d8b79d3343c90497 +binfiles arch=i386-linux size=3 + bin/i386-linux/mex + bin/i386-linux/pdfmex + bin/i386-linux/utf8mex + +name mex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mex +containersize 356 +containerchecksum 71a805b3c6ca50da4452e6ad7e5b602fdda610e4b05b74f4ff36a0549238343088c9bccd3b908571517ce851ee693275df11f253802d9dc84c5c92eda66986a4 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/mex + bin/i386-netbsd/pdfmex + bin/i386-netbsd/utf8mex + +name mex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of mex +containersize 356 +containerchecksum 0680ba5c75996c7ac174b2dcbdf640a7516d4ad4170809ed9d2e11f593b8b0b654a7d7992d0a86da45a3f6e9705e62b68d42c72385d707ab5086c41bd2ad1194 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/mex + bin/i386-solaris/pdfmex + bin/i386-solaris/utf8mex + +name mex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mex +containersize 356 +containerchecksum 3babf203d7f3b9d2bfd869396d639749ba0cfb93a5b51108a8491ed560d01b30e0befef707e31eae18c5d6db9f49270f93951f756172b144ee1973a66b74ee8e +binfiles arch=universal-darwin size=3 + bin/universal-darwin/mex + bin/universal-darwin/pdfmex + bin/universal-darwin/utf8mex + +name mex.win32 +category Package +revision 57883 +shortdesc win32 files of mex +containersize 896 +containerchecksum fc68398cd6c2f50674d961ff4f39071c22cc74f73b7002c075ceead17e3e6c89bdb95f1bbeb1aa389384f871430073362fa1a2cf2c8fd7a10a5ddc69d57a75b9 +binfiles arch=win32 size=3 + bin/win32/mex.exe + bin/win32/pdfmex.exe + bin/win32/utf8mex.exe + +name mex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mex +containersize 360 +containerchecksum f305134997e3d4f8dcbf563edf44217dbb8f625b8fb8952ade78f8d7bb7204e17fb3f5612ef3be6049c9a74dd017c6198d5f2dfb23438daa8fc6df543d74e2ab +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/mex + bin/x86_64-cygwin/pdfmex + bin/x86_64-cygwin/utf8mex + +name mex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mex +containersize 364 +containerchecksum ee9c17e0a9c0158bde7f04901cd01c6ef0ed9f02308273c376d83beca5670029d704db8b0d9c07d3e9c5ee58ed7f533d07e66b058744fd4dc87dad80470c975d +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/mex + bin/x86_64-darwinlegacy/pdfmex + bin/x86_64-darwinlegacy/utf8mex + +name mex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of mex +containersize 352 +containerchecksum 5a09d493c0a0eaeda5e7910499abb9bb0ad0eb1199f03b6352fc958e282ad5f77a865414a8ec2dbe344024aed62394d0637b15bc7914f333accd10cb67d6c4ce +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/mex + bin/x86_64-linux/pdfmex + bin/x86_64-linux/utf8mex + +name mex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mex +containersize 360 +containerchecksum 21850fa1851597edc85295392ac7877a35989eac61ac852611f25d3ee3c831aeee1b11a5b205d6f8ce2dcb46f0f446754513b660137628dcc77c1f57f58f0290 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/mex + bin/x86_64-linuxmusl/pdfmex + bin/x86_64-linuxmusl/utf8mex + +name mex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mex +containersize 356 +containerchecksum 867081ee0d83bc3e60e9accd91cfaaabfa4369358ee53b15e1192c0309af9643f71b30af9a5c51e0fcffd36f1aa9d345f6952a5af75814f143238eb7fb64584a +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/mex + bin/x86_64-solaris/pdfmex + bin/x86_64-solaris/utf8mex + +name mf2pt1 +category Package +revision 57018 +shortdesc Convert stylized Metafont to PostScript Type 1 +longdesc mf2pt1 is a Perl script that facilitates producing PostScript +longdesc Type 1 fonts from a Metafont source file. It is not, as the +longdesc name may imply, an automatic converter of arbitrary Metafont +longdesc fonts to Type 1 format. mf2pt1 imposes a number of restrictions +longdesc on the Metafont input. If these restrictions are met, mf2pt1 +longdesc will produce valid Type 1 output with more accurate control +longdesc points than can be reverse-engineered by TeXtrace, mftrace, and +longdesc other programs which convert bitmaps to outline fonts. +depend mf2pt1.ARCH +containersize 14288 +containerchecksum 87df5858f4a383f4915d469479460d55a6975a841d31b9993c9e3c9af422965d5eb869eac82c2dda968c17160e96c794ce85760c56d3d931d09fd13425d3c508 +doccontainersize 198696 +doccontainerchecksum 5320e1d724fde19f8c0c1b85902e57609e938243baadd00edb8294867a1df792ac2f72bcd1bf7350f4a9efab1563c9fea4361e423079b1f75ab9ecdbf2da4b90 +docfiles size=67 + texmf-dist/doc/info/mf2pt1.info + texmf-dist/doc/support/mf2pt1/ChangeLog + texmf-dist/doc/support/mf2pt1/README details="Readme" + texmf-dist/doc/support/mf2pt1/mf2pt1.pdf details="Package documentation" + texmf-dist/doc/support/mf2pt1/mf2pt1.texi +runfiles size=14 + texmf-dist/metapost/mf2pt1/mf2pt1.mp + texmf-dist/scripts/mf2pt1/mf2pt1.pl +catalogue-also metatype1 +catalogue-ctan /support/mf2pt1 +catalogue-license lppl1.3c +catalogue-topics font-proc +catalogue-version 2.6 + +name mf2pt1.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mf2pt1 +containersize 340 +containerchecksum c197ea4143b913d08fae0407b48366550e2ea0af0a7476959d1821c61c815feba38b2e0b26151e050d12081aeba37b3c33574f4b65fcb52903ec7c615a9da6b2 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mf2pt1 + +name mf2pt1.amd64-freebsd +category Package +revision 23406 +shortdesc amd64-freebsd files of mf2pt1 +containersize 344 +containerchecksum ccd1e101bbaf34909c9ca01971a26a23ad9e9aee7aa7f4a5c91cbbe91f46f9f9aabb82c42e5da7541f56e7efcfce21887d6558eb52b0e7f43ef41c89524e9622 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mf2pt1 + +name mf2pt1.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mf2pt1 +containersize 340 +containerchecksum ea6a9391ce2917a465cfc29fe8bb0b07772f62e464b0b56f50a1cb73bfd854925cc853397c37769273413c4a7e9e2750f82435d62e80792d6f74302187edc48b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mf2pt1 + +name mf2pt1.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mf2pt1 +containersize 340 +containerchecksum efd149c6640881e5c07e22fd3f3690a742a607ccc1d59fd193858bfd9eee3f1ef08715e38f497a37451e563cad71985b79af338983332b167eadad9c3780968e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mf2pt1 + +name mf2pt1.i386-cygwin +category Package +revision 23406 +shortdesc i386-cygwin files of mf2pt1 +containersize 340 +containerchecksum fc4327f7979a5d66765f0d4d8dbbb29adc053b525b6cee79e461379302b0cddcce4508dca032b114da9ea7041c37fa8d1d46341d2b63acda58074591e5266069 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mf2pt1 + +name mf2pt1.i386-freebsd +category Package +revision 23406 +shortdesc i386-freebsd files of mf2pt1 +containersize 344 +containerchecksum 902b8bd700e607b8c63eb23ab2164c16457024e549d8328f4910ac73ed00efb2131389b9b029fa269cc8c3efcf65e32cbeb821db3a691959ef29e63be7707773 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mf2pt1 + +name mf2pt1.i386-linux +category Package +revision 23406 +shortdesc i386-linux files of mf2pt1 +containersize 340 +containerchecksum 4c8ebde75e865079573c7ed719cdbfa39d736ce420c7d7777a167e5bc9baca2d2c41ced430e97f38f58a5e8c6afbf7bb4da87be6ca277db71b7eae57e66ff308 +binfiles arch=i386-linux size=1 + bin/i386-linux/mf2pt1 + +name mf2pt1.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mf2pt1 +containersize 344 +containerchecksum ebfa26098006f8e6e56590d90726718746fe9fca31ed69f8ec304e9e9b9033dae39ef4f204262e12d6b22ebc8a7d4d88229b503168c314a7731fa7366be22d0e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mf2pt1 + +name mf2pt1.i386-solaris +category Package +revision 23406 +shortdesc i386-solaris files of mf2pt1 +containersize 340 +containerchecksum db23a1b9d0c1d3ff680cd763db4cfe2fb7584cfdb27a9581dcfd3f360adccd50f529bae27fda8884fdc7258de763d1476031db2df28bc1dd970f88f42591a197 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mf2pt1 + +name mf2pt1.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mf2pt1 +containersize 340 +containerchecksum c261262f8bed37cc1a0414251ce3231b98979ff8d47c8e715e17ba723c6f8d28e292472c2ee1cd473b1062cb1f37c3062331fd1f88ea6f883e673c2bbbad7a38 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/mf2pt1 + +name mf2pt1.win32 +category Package +revision 23406 +shortdesc win32 files of mf2pt1 +containersize 680 +containerchecksum 8ee608dab95f6167950f745c50c158052ba747176db263ce83c9769c1179bb7d1b70ae6a8b172d7289904bbe73a13502ff0795082bad42448675776f8552e5c6 +binfiles arch=win32 size=1 + bin/win32/mf2pt1.exe + +name mf2pt1.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mf2pt1 +containersize 340 +containerchecksum e20de1e38a228500e4c071be13581fef51c44a4f5a3f6a6feaa8f6a34f8f0fcda618777c9d97bc258bf14b953d5f68800d6ad15eba8695f8362ee8cb7565d5bf +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mf2pt1 + +name mf2pt1.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mf2pt1 +containersize 348 +containerchecksum 258712e6008bb53a40858a1165d93e7177ddafe920f45170131fb1d26272f0b356a34e3768e2226f3971de2428d9f36c205255f6c46c19ab7ac9525bdb1058fe +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mf2pt1 + +name mf2pt1.x86_64-linux +category Package +revision 23406 +shortdesc x86_64-linux files of mf2pt1 +containersize 340 +containerchecksum 18e8735c286b090b6c6a10e87c18588a489a402bc11665eabda446fad72dd874ae8dde287c15a13601bfa38c347245a5d78a839c2fd0d435aac56f4aee85a93f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mf2pt1 + +name mf2pt1.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mf2pt1 +containersize 344 +containerchecksum 5db667dc317340884b25eacf5487f24fb24e617e8d53cf6ea3991a150be857322049a51c7246bb1577b41e3639cb24adb3d4440cdc70282b8b1050852e7b005c +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mf2pt1 + +name mf2pt1.x86_64-solaris +category Package +revision 23406 +shortdesc x86_64-solaris files of mf2pt1 +containersize 344 +containerchecksum 4ac6e338cab96aa70ca3941f72eccd534e8c210b9836c934fbfbb154fc67ad66c4408a2987699531e9b69594eba648f6fc5e41fadb6949ae778d7cb35d21c04d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mf2pt1 + +name mfirstuc +category Package +revision 45803 +shortdesc Uppercase the first letter of a word +relocated 1 +longdesc The package provides commands \makefirstuc that uppercases the +longdesc first letter in its argument (with a check for a semantic +longdesc markup command at the start of the argument), and \xmakefirstuc +longdesc which expands the argument before uppercasing. It also provides +longdesc \capitalisewords{phrase} which applies \makefirstuc to each +longdesc word in the phrase, where the words are separated by regular +longdesc spaces. (Exceptions can be made for words that shouldn't be +longdesc converted.) +containersize 4316 +containerchecksum de7ca64b5a32f697ec1efb477c2230ac418799e72f298ee6ac80409952affb35ef6152fb366e822ba1b01e39afe4483d5437c4e9aa22130a90bef79f87ab77a5 +doccontainersize 661840 +doccontainerchecksum 1a2705a13325a97199095fbdb900b94e94f308311d7609ddfbb75efb7afeb1a2634a0f543da517a03d68e974d2b917f94a1b6a7b3d31965d7087ac585b6b0df5 +docfiles size=195 + RELOC/doc/latex/mfirstuc/CHANGES + RELOC/doc/latex/mfirstuc/README details="Readme" + RELOC/doc/latex/mfirstuc/mfirstuc-code.pdf details="Package code and documentation (PDF)" + RELOC/doc/latex/mfirstuc/mfirstuc-manual.html details="Package documentation (HTML)" + RELOC/doc/latex/mfirstuc/mfirstuc-manual.pdf details="User manual (PDF)" + RELOC/doc/latex/mfirstuc/mfirstuc-manual.tex + RELOC/doc/latex/mfirstuc/sample-mfirstuc.pdf + RELOC/doc/latex/mfirstuc/sample-mfirstuc.tex +srccontainersize 8392 +srccontainerchecksum 021d1e945d7033ed18d3df4a3a0756c9048e7a576bd5d64f1fa2f963292a9aadf0c5bea95b29e3468117ea4f02e4b83785517516d87a31bd85bfb6fa0133e734 +srcfiles size=10 + RELOC/source/latex/mfirstuc/mfirstuc.dtx + RELOC/source/latex/mfirstuc/mfirstuc.ins +runfiles size=6 + RELOC/scripts/mfirstuc/mfirstuc.perl + RELOC/tex/latex/mfirstuc/mfirstuc-english.sty + RELOC/tex/latex/mfirstuc/mfirstuc.sty +catalogue-ctan /macros/latex/contrib/mfirstuc +catalogue-license lppl1.3 +catalogue-topics text-manip macro-supp +catalogue-version 2.06 + +name mflogo +category Package +revision 42428 +shortdesc LaTeX support for Metafont logo fonts +relocated 1 +longdesc LaTeX package and font definition file to access the Knuthian +longdesc mflogo fonts described in 'The Metafontbook' and to typeset +longdesc Metafont logos in LaTeX documents. +containersize 1604 +containerchecksum a1c5168e37fd9cbe5fc2714ee43143f36cec662441a7a9d33085652a5d6f769838d351faf416df6fda78529b5f8712f1a056afa47577fe925dcca5249f1fda38 +doccontainersize 239476 +doccontainerchecksum 6d1dabc636d22c824838a82da83a4676b20bb8a55dd1ab5628d00b4543096f91d234a51a312eb83544891910d923650f09e8911ec9db668f411735de6ef5bf3f +docfiles size=66 + RELOC/doc/latex/mflogo/CATALOGUE + RELOC/doc/latex/mflogo/Makefile + RELOC/doc/latex/mflogo/README details="Readme" + RELOC/doc/latex/mflogo/mflogo.pdf details="Package documentation" +srccontainersize 5728 +srccontainerchecksum 7078092cdbcba668ebb440ca6214eb155221427ceaf4d1f574d1055d2f1f52d288cfc0f1d2212f2a62903e447c4aeb378fade068ab901833ab9c251b1890e15a +srcfiles size=5 + RELOC/source/latex/mflogo/mflogo.dtx + RELOC/source/latex/mflogo/mflogo.ins +runfiles size=4 + RELOC/fonts/source/public/mflogo/logosl8.mf + RELOC/fonts/tfm/public/mflogo/logosl8.tfm + RELOC/tex/latex/mflogo/mflogo.sty + RELOC/tex/latex/mflogo/ulogo.fd +catalogue-ctan /macros/latex/contrib/mflogo +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 2.0 + +name mflogo-font +category Package +revision 54512 +shortdesc Metafont logo font +relocated 1 +longdesc These fonts were created in Metafont by Knuth, for his own +longdesc publications. At some stage, the letters 'P' and 'S' were +longdesc added, so that the MetaPost logo could also be expressed. The +longdesc fonts were originally issued (of course) as Metafont source; +longdesc they have since been autotraced and reissued in Adobe Type 1 +longdesc format by Taco Hoekwater. +execute addMixedMap mflogo.map +containersize 18124 +containerchecksum 4b2552a2f38c68c755f3966aedee8e054af48e0b0a61267d7a4b1a29a4bd6be15c8754d657a2f08d88dcd42a03ed768d336747d2c35107b4dd2d5bb0e1f649aa +doccontainersize 1072 +doccontainerchecksum 8ce49b7bf7bdbc46589da02c461f98746e13e13f19eb79af1c2ede084174204c128b27f88e164d5192415b6f464238e7f04fe95fe8e0873ce8aac84bc1e56713 +docfiles size=1 + RELOC/doc/fonts/mflogo-font/README details="Readme" +runfiles size=17 + RELOC/fonts/afm/hoekwater/mflogo-font/logo10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logo8.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logo9.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logobf10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logod10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logosl10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logosl8.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logosl9.afm + RELOC/fonts/map/dvips/mflogo-font/mflogo.map + RELOC/fonts/type1/hoekwater/mflogo-font/logo10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logo8.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logo9.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logobf10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logod10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logosl10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logosl8.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logosl9.pfb +catalogue-ctan /fonts/mflogo +catalogue-license knuth +catalogue-topics font font-mf font-type1 +catalogue-version 1.002 + +name mflua +category TLCore +revision 54074 +shortdesc configuration and base files for MFLua +longdesc For information on this Lua-enabled Metafont, see, for example: +longdesc tug.org/TUGboat/tb32-2/tb101scarso.pdf. +depend luatex +depend metafont +depend mflua.ARCH +execute AddFormat name=mflua engine=mflua-nowin options="mf.ini" fmttriggers=luatex,metafont mode=disabled +containersize 31672 +containerchecksum ec89212e9a1518f5502f93114377f07e88af787f15c64fc61f40f22a679384f8825384c694dd365d5a74bc5d9417dcf3932c634279550603374bb43df1a7a0e6 +runfiles size=48 + texmf-dist/metafont/mflua/mflua.ini + texmf-dist/metafont/mflua/mfluajit.ini + texmf-dist/metafont/mflua/mfluamodes.mf + texmf-dist/metafont/mflua/mfluaplain.mf + texmf-dist/scripts/mflua/end_program.lua + texmf-dist/scripts/mflua/mflua.lua + texmf-dist/scripts/mflua/mflua_svg_backend.lua + texmf-dist/scripts/mflua/mflua_ttx_backend.lua + +name mflua.aarch64-linux +category TLCore +revision 58389 +shortdesc aarch64-linux files of mflua +containersize 786332 +containerchecksum e5aa57daa1bd8cefe075ce2ca0d232c959d18ffac360e6bd95e151ca1ccf7839eb2d1e608ad2473afeb2b27d033bb819d285a4e2a58d22f8503f2a87a189c86d +binfiles arch=aarch64-linux size=825 + bin/aarch64-linux/mflua + bin/aarch64-linux/mflua-nowin + bin/aarch64-linux/mfluajit + bin/aarch64-linux/mfluajit-nowin + +name mflua.amd64-freebsd +category TLCore +revision 58388 +shortdesc amd64-freebsd files of mflua +containersize 913488 +containerchecksum 5d4ba9fc28b102835ffb676aa101a3f36cdcd09a476b107f9a39a74de37e39faad1685dc9ebdec9633629fe709c3e9ed452cc32fd4658a5390606ee6bcfa3c74 +binfiles arch=amd64-freebsd size=867 + bin/amd64-freebsd/mflua + bin/amd64-freebsd/mflua-nowin + bin/amd64-freebsd/mfluajit + bin/amd64-freebsd/mfluajit-nowin + +name mflua.amd64-netbsd +category TLCore +revision 58386 +shortdesc amd64-netbsd files of mflua +containersize 753884 +containerchecksum 409b77824ca85bf35963120befa7a1c6597a9929390161dfc40b123c26c02f40625de8f32a39f31a4fadbabadec55c7df64280b57b35fd2f418418da8a7ebcff +binfiles arch=amd64-netbsd size=1024 + bin/amd64-netbsd/mflua + bin/amd64-netbsd/mflua-nowin + bin/amd64-netbsd/mfluajit + bin/amd64-netbsd/mfluajit-nowin + +name mflua.armhf-linux +category TLCore +revision 58502 +shortdesc armhf-linux files of mflua +containersize 639464 +containerchecksum 0a999e5724a0d75805ecb8497ba8aa07672b81dc8c2e67aa9191b73aecfd9740b7eec2a275ae13e3e6b57ec86813ac3e9e730763dd26278fea797e7771f0fc6d +binfiles arch=armhf-linux size=637 + bin/armhf-linux/mflua + bin/armhf-linux/mflua-nowin + bin/armhf-linux/mfluajit + bin/armhf-linux/mfluajit-nowin + +name mflua.i386-cygwin +category TLCore +revision 58498 +shortdesc i386-cygwin files of mflua +containersize 460172 +containerchecksum 1112fab77d8d7489d5c71f1ec1c602f4525cd82addce4a595ad14a97653c736e03c2e0d06d48da5a4fe4c51c9b0173c75704c88cad882f426c7ebf27a0285b36 +binfiles arch=i386-cygwin size=616 + bin/i386-cygwin/mflua-nowin + bin/i386-cygwin/mflua.exe + bin/i386-cygwin/mfluajit-nowin + bin/i386-cygwin/mfluajit.exe + +name mflua.i386-freebsd +category TLCore +revision 58388 +shortdesc i386-freebsd files of mflua +containersize 819272 +containerchecksum 32a4ee7a74cef3d43ea50f56c4da81de2446438d7fee8c2b995dc946c30a4b69f182662e473c55a642aa2f533f348ac59b2b356fd3a77c55d93cd460d277c2ab +binfiles arch=i386-freebsd size=780 + bin/i386-freebsd/mflua + bin/i386-freebsd/mflua-nowin + bin/i386-freebsd/mfluajit + bin/i386-freebsd/mfluajit-nowin + +name mflua.i386-linux +category TLCore +revision 58535 +shortdesc i386-linux files of mflua +containersize 852200 +containerchecksum 824c0e3953e70b0371c3166093630e8914019fa6bbd0a99027e900996b43934a70ffa6fe32c4ee08e3e93e592b3c198b87d9f9f62cb3032baffdf65a0137e552 +binfiles arch=i386-linux size=823 + bin/i386-linux/mflua + bin/i386-linux/mflua-nowin + bin/i386-linux/mfluajit + bin/i386-linux/mfluajit-nowin + +name mflua.i386-netbsd +category TLCore +revision 58386 +shortdesc i386-netbsd files of mflua +containersize 694840 +containerchecksum 31012c59e1099ae530c8fbfe8f4e86819b8adb1c1ed7e33a1615b4033eb6fbfb63163e58be582129d5927f41fa2f22c99da40b751efd0d0b0aca734363e95d7c +binfiles arch=i386-netbsd size=922 + bin/i386-netbsd/mflua + bin/i386-netbsd/mflua-nowin + bin/i386-netbsd/mfluajit + bin/i386-netbsd/mfluajit-nowin + +name mflua.i386-solaris +category TLCore +revision 58388 +shortdesc i386-solaris files of mflua +containersize 741596 +containerchecksum 14163c729653855b98360a993e3d4c261884e1db119b0a9302b2e7f6015cff27169eac05252756df9abd2a9700426ad3c5710bbd08c84e8c0a9fa18a96e5ce9a +binfiles arch=i386-solaris size=657 + bin/i386-solaris/mflua + bin/i386-solaris/mflua-nowin + bin/i386-solaris/mfluajit + bin/i386-solaris/mfluajit-nowin + +name mflua.universal-darwin +category TLCore +revision 58418 +shortdesc universal-darwin files of mflua +containersize 1480588 +containerchecksum a38c0943b6188548281af5f25a90b5b4f65f26c36cc9ce5aa64ae3ee8a2645c942982b43ff744f7e10c60784d67a161100c2a4d73844f9de71fb4263446e66a5 +binfiles arch=universal-darwin size=1539 + bin/universal-darwin/mflua + bin/universal-darwin/mflua-nowin + bin/universal-darwin/mfluajit + bin/universal-darwin/mfluajit-nowin + +name mflua.win32 +category TLCore +revision 59028 +shortdesc win32 files of mflua +containersize 1040948 +containerchecksum db35f4dd287edfc167a6977011de82462004e1c4d044c22e5a2d93490f78493a854b7e9576b4df5c48969fdd4c87180df2140c27cb961aec4aed7404f0b89850 +binfiles arch=win32 size=1410 + bin/win32/mflua-nowin.exe + bin/win32/mflua.exe + bin/win32/mfluajit-nowin.exe + bin/win32/mfluajit.exe + +name mflua.x86_64-cygwin +category TLCore +revision 58498 +shortdesc x86_64-cygwin files of mflua +containersize 485588 +containerchecksum 8afa5ee07b5de0913be34f7b4d127ef097288a90e3eb314ca57266d626d9601dfdaea589947cafe31748bc9646e694d9d482e917118946adb6cfe09bb50a39fd +binfiles arch=x86_64-cygwin size=582 + bin/x86_64-cygwin/mflua-nowin + bin/x86_64-cygwin/mflua.exe + bin/x86_64-cygwin/mfluajit-nowin + bin/x86_64-cygwin/mfluajit.exe + +name mflua.x86_64-darwinlegacy +category TLCore +revision 58388 +shortdesc x86_64-darwinlegacy files of mflua +containersize 722036 +containerchecksum 6c9a5e44449f195c20c6de51158ef806064f6d0288562d9829bc22830cef8371be4ffcfb9513d1053344c746a8b5d774a0816a50637c87914126cfb5deeda82b +binfiles arch=x86_64-darwinlegacy size=664 + bin/x86_64-darwinlegacy/mflua + bin/x86_64-darwinlegacy/mflua-nowin + bin/x86_64-darwinlegacy/mfluajit + bin/x86_64-darwinlegacy/mfluajit-nowin + +name mflua.x86_64-linux +category TLCore +revision 58535 +shortdesc x86_64-linux files of mflua +containersize 835968 +containerchecksum 1d4568f0b1de06afaa9312c4e189771104821c26f0e04bf75511e222958f21aade2181f9dc91788da874d41a45d9a79e7c49686a2f6a9b8d30d49b62a15239fb +binfiles arch=x86_64-linux size=771 + bin/x86_64-linux/mflua + bin/x86_64-linux/mflua-nowin + bin/x86_64-linux/mfluajit + bin/x86_64-linux/mfluajit-nowin + +name mflua.x86_64-linuxmusl +category TLCore +revision 58378 +shortdesc x86_64-linuxmusl files of mflua +containersize 868284 +containerchecksum 398dc1552d3e9f1efba3d277b610fa4cdefb8cd7d6054addff4c8c848dfe721819bd4687c4c67f3e97eacd35843863ffb46cdf000355deb942e3ca2022a66686 +binfiles arch=x86_64-linuxmusl size=839 + bin/x86_64-linuxmusl/mflua + bin/x86_64-linuxmusl/mflua-nowin + bin/x86_64-linuxmusl/mfluajit + bin/x86_64-linuxmusl/mfluajit-nowin + +name mflua.x86_64-solaris +category TLCore +revision 58388 +shortdesc x86_64-solaris files of mflua +containersize 524852 +containerchecksum fc89d33e029b2b487ff277e9d536b12b90b22bd0a80921912bea33aaf6f403148297b2af7361a167662d203e4350c83f25d54fbdf9868b5fb1a67b4ed696ffc1 +binfiles arch=x86_64-solaris size=349 + bin/x86_64-solaris/mflua + bin/x86_64-solaris/mflua-nowin + +name mfnfss +category Package +revision 46036 +shortdesc Packages to typeset oldgerman and pandora fonts in LaTeX +relocated 1 +longdesc This bundle contains two packages: - oldgerm, a package to +longdesc typeset with old german fonts designed by Yannis Haralambous. - +longdesc pandora, a package to typeset with Pandora fonts designed by +longdesc Neena Billawala. Note that support for the Pandora fonts is +longdesc also available via the pandora-latex package. +containersize 2140 +containerchecksum 33206fb4cb7ce8f18050d713be415abb95323599270b2b91c886e2ac3f24a58786a480e5d4d1ad6ad2083456231eacf94dc769b26e6cae7288e996c6e14bea29 +doccontainersize 448320 +doccontainerchecksum f8421e58ede77c8817679fcdcb43fecfc519427b3cb93ed2594fef5c8ac8124e0563a2182803a2a6bc417982df298abc7fe092f1cae5ed7583e2fa6fe94c8345 +docfiles size=121 + RELOC/doc/latex/mfnfss/README.md + RELOC/doc/latex/mfnfss/changes.txt + RELOC/doc/latex/mfnfss/manifest.txt + RELOC/doc/latex/mfnfss/oldgerm.pdf details="Documentation of the Old German support" + RELOC/doc/latex/mfnfss/pandora.pdf +srccontainersize 17544 +srccontainerchecksum 2bd5aee80abf38884cc4a3ad6d6226243a6ffe0d2e879101aee56168a10cd0c7293eec7ccf53c7a7e8087ca94398e3f4ef38d71ccbbfe48677ffee3f8b813bc9 +srcfiles size=16 + RELOC/source/latex/mfnfss/oldgerm.dtx + RELOC/source/latex/mfnfss/oldgerm.ins + RELOC/source/latex/mfnfss/pandora.dtx + RELOC/source/latex/mfnfss/pandora.ins +runfiles size=8 + RELOC/tex/latex/mfnfss/oldgerm.sty + RELOC/tex/latex/mfnfss/ot1panr.fd + RELOC/tex/latex/mfnfss/ot1pss.fd + RELOC/tex/latex/mfnfss/pandora.sty + RELOC/tex/latex/mfnfss/uyfrak.fd + RELOC/tex/latex/mfnfss/uygoth.fd + RELOC/tex/latex/mfnfss/uyinit.fd + RELOC/tex/latex/mfnfss/uyswab.fd +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-license lppl +catalogue-topics font-supp + +name mfpic +category Package +revision 28444 +shortdesc Draw Metafont/post pictures from (La)TeX commands +relocated 1 +longdesc Mfpic is a scheme for producing pictures from (La)TeX commands. +longdesc Commands \mfpic and \endmfpic (in LaTeX, the mfpic environment) +longdesc enclose a group in which drawing commands may be placed. The +longdesc commands generate a Meta-language file, which may be processed +longdesc by MetaPost (or even Metafont). The resulting image file will +longdesc be read back in to the document to place the picture at the +longdesc point where the original (La)TeX commands appeared. Note that +longdesc the ability to use MetaPost here means that the package works +longdesc equally well in LaTeX and pdfLaTeX. +containersize 47052 +containerchecksum 361983a020165d094bcd0fc9616be74bd2b5c72542b1e1b257b5ec42ac6be1175caf59c79e156da2bf6fecfe3746b4e33a4a8fc978eb124939ce0ffd2c383081 +doccontainersize 1174196 +doccontainerchecksum 97ec26cc1ed8e181c7d69af264204772c9075e3650044b58cad938fd6918f9cbf5c849699e31846f437e41410492b67668a7ec33e848cf6b5fb9c2d52d7a7947 +docfiles size=389 + RELOC/doc/generic/mfpic/README details="Readme" + RELOC/doc/generic/mfpic/changes.txt + RELOC/doc/generic/mfpic/coil.mps + RELOC/doc/generic/mfpic/examples/data.dat + RELOC/doc/generic/mfpic/examples/forfun.tex + RELOC/doc/generic/mfpic/examples/lapictures.tex + RELOC/doc/generic/mfpic/examples/pictures.tex + RELOC/doc/generic/mfpic/install.txt + RELOC/doc/generic/mfpic/lcheadings.ist + RELOC/doc/generic/mfpic/mfpcard.pdf details="Quick reference" language="en" + RELOC/doc/generic/mfpic/mfpcard.tex + RELOC/doc/generic/mfpic/mfpdoc.sty + RELOC/doc/generic/mfpic/mfpguide.pdf details="Short introduction" language="en" + RELOC/doc/generic/mfpic/mfpguide.tex + RELOC/doc/generic/mfpic/mfpic-doc.pdf details="Mfpic manual" language="en" + RELOC/doc/generic/mfpic/mfpic-doc.tex +srccontainersize 166720 +srccontainerchecksum 609b960a70d47edbb814c981c5cb03b91fd19e905f8caed599be2488e0ed9ef0bfe01af79353015e0d6dd2fcda6810bde10ec4d8e993356bb7371ed2805988c8 +srcfiles size=163 + RELOC/source/generic/mfpic/grafbase.dtx + RELOC/source/generic/mfpic/mfpic.dtx + RELOC/source/generic/mfpic/mfpic.ins +runfiles size=76 + RELOC/metafont/mfpic/grafbase.mf + RELOC/metapost/mfpic/dvipsnam.mp + RELOC/metapost/mfpic/grafbase.mp + RELOC/tex/generic/mfpic/mfpic.sty + RELOC/tex/generic/mfpic/mfpic.tex + RELOC/tex/generic/mfpic/mfpicdef.tex +catalogue-also mkpic +catalogue-ctan /graphics/mfpic +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex +catalogue-version 1.10 + +name mfpic4ode +category Package +revision 17745 +shortdesc Macros to draw direction fields and solutions of ODEs +relocated 1 +longdesc The package is a small set of macros for drawing direction +longdesc fields, phase portraits and trajectories of differential +longdesc equations and two dimensional autonomous systems. The Euler, +longdesc Runge-Kutta and 4th order Runge-Kutta algorithms are available +longdesc to solve the ODEs. The picture is translated into mfpic macros +longdesc and MetaPost is used to create the final drawing. The package +longdesc is was designed for use with LaTeX, but it can be used in plain +longdesc TeX as well. Online demonstration of the mfpic4ode macros is +longdesc available on the Mfpic Previewer as Example 6. +containersize 2408 +containerchecksum 4f3a314afb6b1f8c4fb07421244f2a05747f5d24194659053c561ba24ed90f325e82ab9d97981af6455081580f75e9e8f75d11f06aef9e1c027ed0f9bf17696b +doccontainersize 629724 +doccontainerchecksum 9d5f38873cd94fc3248b619f68e04bdb1824eb1249cf02e555a60c3e84dcab78d3e04f9451e1803943e898ed7f55e33615f673da8c58569219650976c25f0ae4 +docfiles size=172 + RELOC/doc/latex/mfpic4ode/README details="Readme" + RELOC/doc/latex/mfpic4ode/demo/demo-plain.pdf + RELOC/doc/latex/mfpic4ode/demo/demo-plain.tex + RELOC/doc/latex/mfpic4ode/demo/demo.pdf details="Examples of use" + RELOC/doc/latex/mfpic4ode/demo/demo.tex + RELOC/doc/latex/mfpic4ode/mfpic4ode.pdf details="Package documentation" +srccontainersize 5680 +srccontainerchecksum b5de6dee490578bc460f76ccb606b5d62d4f6f2c43e2f9967085f1a323ba287cfc596da70905a40e1ac602074323940a9e42ba8096a9a35190ca280217b2e10e +srcfiles size=5 + RELOC/source/latex/mfpic4ode/mfpic4ode.dtx + RELOC/source/latex/mfpic4ode/mfpic4ode.ins +runfiles size=3 + RELOC/tex/latex/mfpic4ode/mfpic4ode.sty + RELOC/tex/latex/mfpic4ode/mfpic4ode.tex +catalogue-ctan /macros/latex/contrib/mfpic4ode +catalogue-license lppl +catalogue-topics graphics-plotfn maths +catalogue-version 0.4 + +name mftinc +category Package +revision 15878 +shortdesc Pretty-print Metafont source +relocated 1 +longdesc The mft program pretty-prints Metafont source code into a TeX +longdesc file. The mftinc package facilitates incorporating such files +longdesc into a LaTeX2e document. In addition, mftinc provides routines +longdesc for improved comment formatting and for typesetting font +longdesc tables. +containersize 2936 +containerchecksum 64fa5f38398a626d5a351be7ad866c75feb4549f836932dc936cb99f921e7b8abe5b3d6fc1e1e6c427344606ee5dacaf067d8678e7b199fa1ff8d5c94cbffa49 +doccontainersize 251032 +doccontainerchecksum 0846744cfd86bbcd8b6ad90d58bfe5788a79f43d05f3cf6f438fdef50cc4872ad8ec4d32005ced9ea9c424f3e86a799d79b0baf2a9544a3018531a99cd81fd5e +docfiles size=72 + RELOC/doc/latex/mftinc/README details="Readme" + RELOC/doc/latex/mftinc/mftinc.pdf details="Package documentation" +srccontainersize 17248 +srccontainerchecksum 50ca90a2f48970b3cca5552a361337ed138b4a9e31bca2766eb429cdceac2a09adc1cafa6c444c514fabe71c38ed82a63b847e1da014f2c131a15c362efaf09f +srcfiles size=16 + RELOC/source/latex/mftinc/mftinc.dtx + RELOC/source/latex/mftinc/mftinc.ins +runfiles size=2 + RELOC/tex/latex/mftinc/mftinc.sty +catalogue-also docmfp +catalogue-ctan /macros/latex/contrib/mftinc +catalogue-license lppl +catalogue-topics listing +catalogue-version 1.0a + +name mfware +category TLCore +revision 57972 +shortdesc Supporting tools for use with Metafont +longdesc A collection of programs (as web source) for processing the +longdesc output of Metafont. +depend mfware.ARCH +containersize 3184 +containerchecksum 77b679b6b81515451da4b6068b5e7ee793faf8bb209b3a68356aa131e0fcf27ffed912ee72a3bb8f347e7db2893115de5843351dcdcb6a3ac49a7e88eacacd56 +doccontainersize 100704 +doccontainerchecksum 3655d6796318db16f26dfa3031a0339608cc9e6d7d18698628be0ff1cc9234c95d4914a2fd047d775b83bfb9fe3a2091e52e4a8b96dbca86ee901fce0e99fd5b +docfiles size=42 + texmf-dist/doc/man/man1/gftodvi.1 + texmf-dist/doc/man/man1/gftodvi.man1.pdf + texmf-dist/doc/man/man1/gftopk.1 + texmf-dist/doc/man/man1/gftopk.man1.pdf + texmf-dist/doc/man/man1/gftype.1 + texmf-dist/doc/man/man1/gftype.man1.pdf + texmf-dist/doc/man/man1/mft.1 + texmf-dist/doc/man/man1/mft.man1.pdf + texmf-dist/doc/man/man1/pktogf.1 + texmf-dist/doc/man/man1/pktogf.man1.pdf + texmf-dist/doc/man/man1/pktype.1 + texmf-dist/doc/man/man1/pktype.man1.pdf +runfiles size=4 + texmf-dist/mft/base/README + texmf-dist/mft/base/cmbase.mft + texmf-dist/mft/base/mplain.mft + texmf-dist/mft/base/plain.mft +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/mfware +catalogue-license pd +catalogue-topics collection + +name mfware.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of mfware +containersize 119088 +containerchecksum afae28685f8a18d32ba28ecbf670a59ccfbaca49b06fa25a6b9b4522c7f7ee7bba66047746a1fea77fa73cc005e0012d6b8d528bc8e2989639fa97278a9bde39 +binfiles arch=aarch64-linux size=159 + bin/aarch64-linux/gftodvi + bin/aarch64-linux/gftopk + bin/aarch64-linux/gftype + bin/aarch64-linux/mft + bin/aarch64-linux/pktogf + bin/aarch64-linux/pktype + +name mfware.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of mfware +containersize 135224 +containerchecksum a70189597a637305dbbee42507988ef3e4f8c2c737b9b94d35b0b020803268784839629b1176b55d94cd8f082d04eeca1197234835e59e1154aa99a2c142f062 +binfiles arch=amd64-freebsd size=161 + bin/amd64-freebsd/gftodvi + bin/amd64-freebsd/gftopk + bin/amd64-freebsd/gftype + bin/amd64-freebsd/mft + bin/amd64-freebsd/pktogf + bin/amd64-freebsd/pktype + +name mfware.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of mfware +containersize 120460 +containerchecksum cd019748ce1177f92c0e0fce81831b0e3ce4c3097ba4e8d523b74938f26cd5efb982f4ff858c3078e2679126d821d31f5f24c6ebcedd186ca87aadc28f0f5df2 +binfiles arch=amd64-netbsd size=187 + bin/amd64-netbsd/gftodvi + bin/amd64-netbsd/gftopk + bin/amd64-netbsd/gftype + bin/amd64-netbsd/mft + bin/amd64-netbsd/pktogf + bin/amd64-netbsd/pktype + +name mfware.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of mfware +containersize 90996 +containerchecksum 6c762c8b1a9ff99c0c8859a7f4c8a352168dbe770e371cb362ecc5626cd22b11826cabc5cc9936bfa41e9e42b24c8a327fd0a3d0db7023b5f82c8dfb87929241 +binfiles arch=armhf-linux size=126 + bin/armhf-linux/gftodvi + bin/armhf-linux/gftopk + bin/armhf-linux/gftype + bin/armhf-linux/mft + bin/armhf-linux/pktogf + bin/armhf-linux/pktype + +name mfware.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of mfware +containersize 52664 +containerchecksum f5fd6672ba075ade21dc61991620120f8e2223df4097bae5307ac28e4f95fa7b1691a5714a0f270e5d59e4fcb767c4e5af05636340f9790bc87da2eff96fd8ad +binfiles arch=i386-cygwin size=49 + bin/i386-cygwin/gftodvi.exe + bin/i386-cygwin/gftopk.exe + bin/i386-cygwin/gftype.exe + bin/i386-cygwin/mft.exe + bin/i386-cygwin/pktogf.exe + bin/i386-cygwin/pktype.exe + +name mfware.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of mfware +containersize 114768 +containerchecksum 1d972b87753a78079e9c6735598b0e02c92fffe905d8e76b57f2c3a4e07162589836b2ef08bbe7a963195113456c70ab7719e70180bd55cf021874f60f45b601 +binfiles arch=i386-freebsd size=141 + bin/i386-freebsd/gftodvi + bin/i386-freebsd/gftopk + bin/i386-freebsd/gftype + bin/i386-freebsd/mft + bin/i386-freebsd/pktogf + bin/i386-freebsd/pktype + +name mfware.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of mfware +containersize 115812 +containerchecksum f00307746010afda98e58c617da7fa09cab27618c83f89addefeb338fbe006db4d619e6cefd726a563a0670d78a98393381ce563f9744e0007e88a7dd421b94f +binfiles arch=i386-linux size=165 + bin/i386-linux/gftodvi + bin/i386-linux/gftopk + bin/i386-linux/gftype + bin/i386-linux/mft + bin/i386-linux/pktogf + bin/i386-linux/pktype + +name mfware.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of mfware +containersize 104948 +containerchecksum 91cfa310c949ef6722f9fafeb88b68d1946acc9bfd51550a7de734459f17fee045c168b56eb98c09bc4f9fec3f3cd539d7495fe2264eeccbea17f854ddff6b1b +binfiles arch=i386-netbsd size=172 + bin/i386-netbsd/gftodvi + bin/i386-netbsd/gftopk + bin/i386-netbsd/gftype + bin/i386-netbsd/mft + bin/i386-netbsd/pktogf + bin/i386-netbsd/pktype + +name mfware.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of mfware +containersize 124616 +containerchecksum 7ab7eb4b878213da4d6827d9f1b6113152f487ce12a5f6c7f5b98895773da1249c34001e10d80fd806701461f230db6d8c85de79577fe021b996dd4a1de00eb4 +binfiles arch=i386-solaris size=147 + bin/i386-solaris/gftodvi + bin/i386-solaris/gftopk + bin/i386-solaris/gftype + bin/i386-solaris/mft + bin/i386-solaris/pktogf + bin/i386-solaris/pktype + +name mfware.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of mfware +containersize 247192 +containerchecksum e13417063ef5cc0c5d195679a12d4d272da0b7ca28695efea31518b189b9ddffbd66dd21a730d274b6766201fcd76315b7635fc99bf1bac4bf4095b0877ce297 +binfiles arch=universal-darwin size=423 + bin/universal-darwin/gftodvi + bin/universal-darwin/gftopk + bin/universal-darwin/gftype + bin/universal-darwin/mft + bin/universal-darwin/pktogf + bin/universal-darwin/pktype + +name mfware.win32 +category TLCore +revision 58783 +shortdesc win32 files of mfware +containersize 58956 +containerchecksum 773d29f9c0c09e2d05aaf4588aa56da6a7cee9210bb952a6477d7ac3b40549df25af8d42f6807d508ce4242811b3dad04cad9f3d164678741dc140f2e3f96c54 +binfiles arch=win32 size=45 + bin/win32/gftodvi.exe + bin/win32/gftopk.exe + bin/win32/gftype.exe + bin/win32/mft.exe + bin/win32/pktogf.exe + bin/win32/pktype.exe + +name mfware.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of mfware +containersize 63536 +containerchecksum 3310945a93bedf353071895df91c22ec620a1cf62299cc84bf77cfff09d7ca4a234d27f3b5101078ca42a1a956b924b71b329cf2c6b021d5a8464fbd61d1eb26 +binfiles arch=x86_64-cygwin size=49 + bin/x86_64-cygwin/gftodvi.exe + bin/x86_64-cygwin/gftopk.exe + bin/x86_64-cygwin/gftype.exe + bin/x86_64-cygwin/mft.exe + bin/x86_64-cygwin/pktogf.exe + bin/x86_64-cygwin/pktype.exe + +name mfware.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of mfware +containersize 116748 +containerchecksum bfcaa691b101d693c7181bee1b4533a28e47b8198e590000af779a39a013492daad216fb164a83aaa4e65119804ba3b9b2d5ad4a19704069a7d2fe2ac307f8ea +binfiles arch=x86_64-darwinlegacy size=150 + bin/x86_64-darwinlegacy/gftodvi + bin/x86_64-darwinlegacy/gftopk + bin/x86_64-darwinlegacy/gftype + bin/x86_64-darwinlegacy/mft + bin/x86_64-darwinlegacy/pktogf + bin/x86_64-darwinlegacy/pktype + +name mfware.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of mfware +containersize 123480 +containerchecksum 0e9c681da6fba2cc456d9ba30dd90065307434657a9728f467677d4d142dbd7efc24a9432c00511bb782955cf09c71589f85dcd1ae018da3910cbc1c635bb807 +binfiles arch=x86_64-linux size=146 + bin/x86_64-linux/gftodvi + bin/x86_64-linux/gftopk + bin/x86_64-linux/gftype + bin/x86_64-linux/mft + bin/x86_64-linux/pktogf + bin/x86_64-linux/pktype + +name mfware.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of mfware +containersize 127072 +containerchecksum e158c6346fb8ebb5e9b44206740b033c530c130dd2fd60f072cf8373fd8e3fb99061e71ecb1ac5517e235fb831ee531afca116d14e7525bef1675e207f26c4ed +binfiles arch=x86_64-linuxmusl size=161 + bin/x86_64-linuxmusl/gftodvi + bin/x86_64-linuxmusl/gftopk + bin/x86_64-linuxmusl/gftype + bin/x86_64-linuxmusl/mft + bin/x86_64-linuxmusl/pktogf + bin/x86_64-linuxmusl/pktype + +name mfware.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of mfware +containersize 143948 +containerchecksum 0bbd4fefdf8aaaaa6f177b6d1014014d8c03bb7fe9be888b959f831f338217c8b7997220bda9b73bf659e1f9a5a9b8ae4bf6695d208b524aa78d139171115583 +binfiles arch=x86_64-solaris size=171 + bin/x86_64-solaris/gftodvi + bin/x86_64-solaris/gftopk + bin/x86_64-solaris/gftype + bin/x86_64-solaris/mft + bin/x86_64-solaris/pktogf + bin/x86_64-solaris/pktype + +name mgltex +category Package +revision 41676 +shortdesc High-quality graphics from MGL scripts embedded in LaTeX documents +relocated 1 +longdesc This package allows you to create high-quality +longdesc publication-ready graphics directly from MGL scripts embedded +longdesc into your LaTeX document, using the MathGL library. Besides +longdesc following the LaTeX philosophy of allowing you to concentrate +longdesc on content rather than output (mglTeX takes care of producing +longdesc the output), mglTeX facilitates the maintenance of your +longdesc document, since both code for text and code for plots are +longdesc contained in a single file. MathGL. is a fast and efficient +longdesc library by Alexey Balakin for the creation of high-quality +longdesc publication-ready scientific graphics. Although it defines +longdesc interfaces for many programming languages, it also implements +longdesc its own scripting language, called MGL, which can be used +longdesc independently. +containersize 6364 +containerchecksum f9d98f3e964ecefaf420ecdbdf7187300613bd22df092714ba5b5e945b47c2b24b95dbdb22abb92725a7fdc1ca1fcc88cd14cef1cd1f241c02ce26328951d751 +doccontainersize 1747732 +doccontainerchecksum 3a987e0ac6ad678887e9a2aabb18d772a3bbe4d1d10d53184887f95191961b692d231c1a7942c3383a5468098432807030a0d3877c5f3b0e271d8b7efb1366df +docfiles size=521 + RELOC/doc/latex/mgltex/README details="Readme" + RELOC/doc/latex/mgltex/Recompilation_decision.eps + RELOC/doc/latex/mgltex/Recompilation_decision.pdf + RELOC/doc/latex/mgltex/Recompilation_decision.svg + RELOC/doc/latex/mgltex/mgltex.pdf details="Package documentation" + RELOC/doc/latex/mgltex/sample.pdf + RELOC/doc/latex/mgltex/sample.tex +srccontainersize 31240 +srccontainerchecksum 3467c64e09fd1d988619e93df1e2313639d2b8c95faac62db5d17d615d56e868c06be917624957efd7528b50cd16cdabeea1cf0647c347061632c57fe99543b9 +srcfiles size=40 + RELOC/source/latex/mgltex/mgltex.dtx + RELOC/source/latex/mgltex/mgltex.ins +runfiles size=7 + RELOC/tex/latex/mgltex/mgltex.sty +catalogue-ctan /graphics/mgltex +catalogue-license gpl3 +catalogue-topics maths graphics-plot graphics-plotfn +catalogue-version 4.2 + +name mhchem +category Package +revision 52662 +shortdesc Typeset chemical formulae/equations and Risk and Safety phrases +relocated 1 +longdesc The bundle provides three packages: The mhchem package provides +longdesc commands for typesetting chemical molecular formulae and +longdesc equations. The hpstatement package provides commands for the +longdesc official hazard statements and precautionary statements (H and +longdesc P statements) that are used to label chemicals. The rsphrase +longdesc package provides commands for the official Risk and Safety (R +longdesc and S) Phrases that are used to label chemicals. The package +longdesc requires the expl3 bundle. +depend amsmath +depend chemgreek +depend graphics +depend l3kernel +depend l3packages +depend tools +containersize 51516 +containerchecksum 32c9a82b2c4f6c2ca5a48d3f781206e4384df91a13d2ee8f7f5ad0ee5ff454e6c70c545eb576b4d8431cda581ed1f8ccd57dbd22d281d764c4872fef28c6626f +doccontainersize 285504 +doccontainerchecksum 5911b5548fa03abf787ca009b08553e3e575bb0d6601f36d878d7541e5e5cea0fcfceb5c3c69e6459f3aa6b791f8090bc244edb35c116112230bc5928b15f901 +docfiles size=88 + RELOC/doc/latex/mhchem/README details="Readme" + RELOC/doc/latex/mhchem/lppl-1-3c.txt + RELOC/doc/latex/mhchem/manifest.txt + RELOC/doc/latex/mhchem/mhchem.pdf details="Package documentation" + RELOC/doc/latex/mhchem/mhchem.tex +runfiles size=109 + RELOC/tex/latex/mhchem/hpstatement.sty + RELOC/tex/latex/mhchem/mhchem.sty + RELOC/tex/latex/mhchem/rsphrase.sty +catalogue-also r-und-s +catalogue-ctan /macros/latex/contrib/mhchem +catalogue-license lppl1.3c +catalogue-topics safety-notice chemistry + +name mhequ +category Package +revision 38224 +shortdesc Multicolumn equations, tags, labels, sub-numbering +relocated 1 +longdesc MHequ simplifies creating multi-column equation environments, +longdesc and tagging the equations therein. It supports sub-numbers of +longdesc blocks of equations (like (1.2a), (1.2b), etc) and references +longdesc to each equation individually (1.2a) or to the whole block +longdesc (1.2). The labels can be shown in draft mode. Comments in the +longdesc package itself describe usage. +containersize 4264 +containerchecksum 90f7dabe6486f6566ad6f835838ddf58a6568364ca2b5a82ea9cb96f283c5025c1f93fb50bac98405e8200de32b2c27e592e401a44fab691331fe4f77d27a202 +doccontainersize 100304 +doccontainerchecksum 0d7a258a96604328231c1784f218ef3351f9ef02a0a9a9da42db36c89324ab5f74559f3ea91c12553ec5a39d14b3a5f282f61ab9e001994e22e266ce394df26c +docfiles size=27 + RELOC/doc/latex/mhequ/README details="Readme" + RELOC/doc/latex/mhequ/example.pdf details="Examples of package use" + RELOC/doc/latex/mhequ/example.tex +runfiles size=3 + RELOC/tex/latex/mhequ/mhequ.sty +catalogue-ctan /macros/latex/contrib/mhequ +catalogue-license pd +catalogue-topics maths +catalogue-version 1.7 + +name mi-solns +category Package +revision 49651 +shortdesc Extract solutions from exercises and quizzes +relocated 1 +longdesc This package is designed to mark a solution environment of an +longdesc exercise or quiz and insert it into the same or a different +longdesc document. Solutions are ones created by either the exerquiz or +longdesc eqexam package. All PDF creators are supported. +containersize 2296 +containerchecksum ac5beb872c78675bc9df379f8a2afe533647a1c39781c57fed2cec6e610cafbbb45a4fdcbd9826cb123a584e121ff752633d6c990109bb1f619b1d9fac6906de +doccontainersize 459540 +doccontainerchecksum cfd36e0a1476e0d148fb36f350ec236d57beb2c0b27f08eb56f69683790b16425a6f95b4f93a010fe0d450863fb34a7eb31b1c8e40fbe5319df128439dfa5372 +docfiles size=135 + RELOC/doc/latex/mi-solns/README.md details="Readme" + RELOC/doc/latex/mi-solns/docs/mi-solns.pdf details="Package documentation" + RELOC/doc/latex/mi-solns/docs/mi-solnsman.pdf details="User manual" + RELOC/doc/latex/mi-solns/docs/mi-solnsman.tex + RELOC/doc/latex/mi-solns/examples/create-db.tex + RELOC/doc/latex/mi-solns/examples/mi-solns-eq.tex + RELOC/doc/latex/mi-solns/examples/mi-solns-eqe.tex + RELOC/doc/latex/mi-solns/examples/use-db.tex +srccontainersize 6528 +srccontainerchecksum cf41fb6338270f2fbf56b33b9d0b3b6904f06a84b99dc8fc0613e10644b3f198b22634cd82b78bd50b236415ec6b8d46c9d0d99728480782459f514d2086426c +srcfiles size=6 + RELOC/source/latex/mi-solns/mi-solns.dtx + RELOC/source/latex/mi-solns/mi-solns.ins +runfiles size=2 + RELOC/tex/latex/mi-solns/mi-solns.sty +catalogue-ctan /macros/latex/contrib/mi-solns +catalogue-license lppl1.2 +catalogue-topics exercise exam +catalogue-version 0.6 + +name miama +category Package +revision 54512 +shortdesc The Miama Nueva handwriting font with LaTeX support +relocated 1 +longdesc Miama Nueva is a handwriting / script font with over 1300 +longdesc glyphs that supports latin, cyrillic, and greek. It comes +longdesc complete with LaTeX support. +execute addMap miama.map +containersize 518752 +containerchecksum b9a5416b1de4cb487575894f3dacac8b07eda2b37b90fa0c5ca0ebc5d9d412c896fb7cd028c6af5627368c44d442670990949c9ceb9fe3a60179d3f70874135a +doccontainersize 332156 +doccontainerchecksum a76db9f49bcdc225d9206ebaa3b7ca42bc7148a44d1d66b72d2033b68fe9a1137eec265316d3a24077e3e3712687e80ea948d4f1c9cd819e6a4afb8c9bbf91df +docfiles size=96 + RELOC/doc/fonts/miama/README details="Readme" + RELOC/doc/fonts/miama/miama.pdf details="Package documentation" +srccontainersize 5912 +srccontainerchecksum 2b9e1a649f944ce6b36b1dc09d28112f7d5ea3c0a26a1f292576448171aa2f51449988ce85703ba7c2098f6dce62093ccf5af256bff1993268f31dc884bd3b63 +srcfiles size=7 + RELOC/source/fonts/miama/miama.dtx + RELOC/source/fonts/miama/miama.ins +runfiles size=323 + RELOC/fonts/afm/public/miama/miama.afm + RELOC/fonts/enc/dvips/miama/lgr-miama.enc + RELOC/fonts/enc/dvips/miama/ot1-miama.enc + RELOC/fonts/enc/dvips/miama/qx-miama.enc + RELOC/fonts/enc/dvips/miama/t1-miama.enc + RELOC/fonts/enc/dvips/miama/t2a-miama.enc + RELOC/fonts/enc/dvips/miama/t2b-miama.enc + RELOC/fonts/enc/dvips/miama/t2c-miama.enc + RELOC/fonts/enc/dvips/miama/t5-miama.enc + RELOC/fonts/enc/dvips/miama/x2-miama.enc + RELOC/fonts/map/dvips/miama/miama.map + RELOC/fonts/opentype/public/miama/miama.otf + RELOC/fonts/tfm/public/miama/miama-lgr.tfm + RELOC/fonts/tfm/public/miama/miama-ot1.tfm + RELOC/fonts/tfm/public/miama/miama-qx.tfm + RELOC/fonts/tfm/public/miama/miama-t1.tfm + RELOC/fonts/tfm/public/miama/miama-t2a.tfm + RELOC/fonts/tfm/public/miama/miama-t2b.tfm + RELOC/fonts/tfm/public/miama/miama-t2c.tfm + RELOC/fonts/tfm/public/miama/miama-t5.tfm + RELOC/fonts/tfm/public/miama/miama-x2.tfm + RELOC/fonts/type1/public/miama/miama.pfb + RELOC/tex/latex/miama/lgrfmm.fd + RELOC/tex/latex/miama/miama.sty + RELOC/tex/latex/miama/ot1fmm.fd + RELOC/tex/latex/miama/qxfmm.fd + RELOC/tex/latex/miama/t1fmm.fd + RELOC/tex/latex/miama/t2afmm.fd + RELOC/tex/latex/miama/t2bfmm.fd + RELOC/tex/latex/miama/t2cfmm.fd + RELOC/tex/latex/miama/t5fmm.fd + RELOC/tex/latex/miama/x2fmm.fd +catalogue-ctan /fonts/miama +catalogue-license ofl lppl1.3 +catalogue-topics font font-calligraphic font-cyrillic font-greek font-multilingual font-otf font-type1 font-t1enc font-supp +catalogue-version 1.1 + +name microtype +category Package +revision 58394 +shortdesc Subliminal refinements towards typographical perfection +relocated 1 +longdesc The package provides a LaTeX interface to the micro-typographic +longdesc extensions that were introduced by pdfTeX and have since also +longdesc propagated to XeTeX and LuaTeX: most prominently, character +longdesc protrusion and font expansion, furthermore the adjustment of +longdesc interword spacing and additional kerning, as well as +longdesc hyphenatable letterspacing (tracking) and the possibility to +longdesc disable all or selected ligatures. These features may be +longdesc applied to customisable sets of fonts, and all +longdesc micro-typographic aspects of the fonts can be configured in a +longdesc straight-forward and flexible way. Settings for various fonts +longdesc are provided. Note that character protrusion requires pdfTeX, +longdesc LuaTeX, or XeTeX. Font expansion works with pdfTeX or LuaTeX. +longdesc The package will by default enable protrusion and expansion if +longdesc they can safely be assumed to work. Disabling ligatures +longdesc requires pdfTeX or LuaTeX, while the adjustment of interword +longdesc spacing and of kerning only works with pdfTeX. Letterspacing is +longdesc available with pdfTeX or LuaTeX. The alternative package +longdesc 'letterspace', which also works with plain TeX, provides the +longdesc user commands for letterspacing only, omitting support for all +longdesc other extensions. +containersize 46524 +containerchecksum 07f2e8f56fe2d18efc0b07fd1493303ac3f3f347550bf8644c2c6782f510eb57683a313bebcf63647664bf3dde6a7ecb1127a14d79d1ed3d0ff9f4d7651cdc76 +doccontainersize 1753892 +doccontainerchecksum 7804243348e470dd5fc5bf087daf8292664e378161faabef20d1be8dfbd461b7654fc55fbdba7674d18d4a4d058572968fc3ee05e036b68a67a43d366923cfc3 +docfiles size=446 + RELOC/doc/latex/microtype/README.md details="Package README" + RELOC/doc/latex/microtype/microtype.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/microtype/test-microtype.tex +srccontainersize 145968 +srccontainerchecksum e7dbf9965a74255e64c8e1f4743fb6acb66ea19b493fc3ae095932bc66ab71e75f090c74a800b4b05c6cc6d20bbfb07376812f3782697737d7166607aa70a347 +srcfiles size=176 + RELOC/source/latex/microtype/microtype-utf.dtx + RELOC/source/latex/microtype/microtype.dtx + RELOC/source/latex/microtype/microtype.ins +runfiles size=107 + RELOC/tex/latex/microtype/letterspace.sty + RELOC/tex/latex/microtype/microtype-luatex.def + RELOC/tex/latex/microtype/microtype-pdftex.def + RELOC/tex/latex/microtype/microtype-xetex.def + RELOC/tex/latex/microtype/microtype.cfg + RELOC/tex/latex/microtype/microtype.lua + RELOC/tex/latex/microtype/microtype.sty + RELOC/tex/latex/microtype/mt-CharisSIL.cfg + RELOC/tex/latex/microtype/mt-EBGaramond.cfg + RELOC/tex/latex/microtype/mt-FontAwesome.cfg + RELOC/tex/latex/microtype/mt-LatinModernRoman.cfg + RELOC/tex/latex/microtype/mt-Lato.cfg + RELOC/tex/latex/microtype/mt-Palatino.cfg + RELOC/tex/latex/microtype/mt-bch.cfg + RELOC/tex/latex/microtype/mt-blg.cfg + RELOC/tex/latex/microtype/mt-cmr.cfg + RELOC/tex/latex/microtype/mt-euf.cfg + RELOC/tex/latex/microtype/mt-eur.cfg + RELOC/tex/latex/microtype/mt-eus.cfg + RELOC/tex/latex/microtype/mt-msa.cfg + RELOC/tex/latex/microtype/mt-msb.cfg + RELOC/tex/latex/microtype/mt-mvs.cfg + RELOC/tex/latex/microtype/mt-pmn.cfg + RELOC/tex/latex/microtype/mt-ppl.cfg + RELOC/tex/latex/microtype/mt-ptm.cfg + RELOC/tex/latex/microtype/mt-ugm.cfg + RELOC/tex/latex/microtype/mt-zpeu.cfg +catalogue-also pdfcprot +catalogue-ctan /macros/latex/contrib/microtype +catalogue-license lppl1.3c +catalogue-topics micro-layout letterspace +catalogue-version 2.8c + +name microtype-de +category Package +revision 54080 +shortdesc Translation into German of the documentation of microtype +relocated 1 +containersize 376 +containerchecksum cde294b4dd73d5948ef16b314e70745eb98bed30b4343c04885686533e2457a4aee07616e84eba6b0a552fb342331114de835d777d882308bdc1dba75927b17f +doccontainersize 1378208 +doccontainerchecksum fa524a0225a57fc60bbad95cdd7855f4ba73691a6787c906ef5091183425a650f583340d65ce8b11792046c767b0b31e5131c62dcc281898457234134aec291b +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 /obsolete/info/translations/microtype/de +catalogue-license lppl1.3 +catalogue-topics translation german-doc typesetting obsolete +catalogue-version 2.4 + +name midnight +category Package +revision 15878 +shortdesc A set of useful macro tools +relocated 1 +longdesc Included are: quire: making booklets, etc.; gloss: vertically +longdesc align words in consecutive sentences; loop: a looping +longdesc construct; dolines: 'meta'-macros to separate arguments by +longdesc newlines; labels: address labels and bulk mail letters; +longdesc styledef: selectively input part of a file; and border: borders +longdesc around boxes. +containersize 16348 +containerchecksum 8f8bf1d8d3c5c12147dd61a4d65d311552877a9f5eb7ebcce71602dc69ed5459187134d3a1e346a15255f2c4ba57f054c3d020817df0d5d89c7fc2f216b19cc3 +doccontainersize 330504 +doccontainerchecksum 0c594cac3c7e8d3064145f1b2b088d74a5445b7a7506fc2629b3df6f63419b025779e348116f7dbc859d7c406d87e5b5988d529e5da61d01b0759b0f0fec2382 +docfiles size=122 + RELOC/doc/generic/midnight/README details="Package Readme" + RELOC/doc/generic/midnight/border.doc + RELOC/doc/generic/midnight/dolines.doc + RELOC/doc/generic/midnight/gloss.doc + RELOC/doc/generic/midnight/labels.doc + RELOC/doc/generic/midnight/loop.doc + RELOC/doc/generic/midnight/midnight.pdf details="Package documentation" + RELOC/doc/generic/midnight/quire.doc + RELOC/doc/generic/midnight/styledef.doc +runfiles size=17 + RELOC/tex/generic/midnight/border.tex + RELOC/tex/generic/midnight/dolines.tex + RELOC/tex/generic/midnight/gloss.tex + RELOC/tex/generic/midnight/labels.tex + RELOC/tex/generic/midnight/loop.tex + RELOC/tex/generic/midnight/quire.tex + RELOC/tex/generic/midnight/styledef.tex +catalogue-ctan /macros/generic/midnight +catalogue-license other-free +catalogue-topics linguistic macro-supp letter + +name midpage +category Package +revision 17484 +shortdesc Environment for vertical centring +relocated 1 +longdesc The environment will centre text, if immediately preceded and +longdesc followed by \clearpage. +containersize 788 +containerchecksum 9a13760b776cdce28cf3eb1e28e957265d7d4e83b23234f1590285bc83409f1d5b09040fc6cacd3b9f7a5ec2f61a4e5431fea92a5fcf20032c7bb919ed59612b +doccontainersize 189016 +doccontainerchecksum 25f41bb8cb12c6d310da66d36032eb4933248f0c84a67216cd0981fda7e61343c0dee03e96f522bddf969e925e6cf495754e52e863672f1cab4e94ae3b0400cd +docfiles size=49 + RELOC/doc/latex/midpage/midpage.pdf details="Package documentation" + RELOC/doc/latex/midpage/midpage.tex +runfiles size=1 + RELOC/tex/latex/midpage/midpage.sty +catalogue-ctan /macros/latex/contrib/midpage +catalogue-license lppl +catalogue-topics layout +catalogue-version 1.1a + +name miller +category Package +revision 18789 +shortdesc Typeset miller indices +relocated 1 +longdesc Typeset miller indices, e.g., <1-20>, that are used in material +longdesc science with an easy syntax. Minus signs are printed as bar +longdesc above the corresponding number. +containersize 1456 +containerchecksum a1415d82a2a81c3dccdea1b59c4c0e8d2cb3902dbc6816cf7615fa3e571de26168a6a066f52bad94c38595102afcd1447721095bd084befc20b3fb3ad420e129 +doccontainersize 260992 +doccontainerchecksum 3f888fed2b909c269ead9e5191a788828048a21103c881a9b769fb0e8a3c0f3e6c41467827143f6b79a45d2497e3ac21d5c6da8727be3c987ab8a1fdbcec59ca +docfiles size=73 + RELOC/doc/latex/miller/ChangeLog + RELOC/doc/latex/miller/Makefile + RELOC/doc/latex/miller/README details="Readme" + RELOC/doc/latex/miller/miller-v.tex + RELOC/doc/latex/miller/miller.pdf details="Package documentation" + RELOC/doc/latex/miller/millertest.tex +srccontainersize 2884 +srccontainerchecksum 06e15ff6c146685a8b4d13c5d4e23de4ea343afe684924694f86104f362df7dfaa975b25e850b685e05efeeddf2ed079038cafff8a495116f27dd756e4dceab3 +srcfiles size=3 + RELOC/source/latex/miller/miller.dtx + RELOC/source/latex/miller/miller.ins +runfiles size=1 + RELOC/tex/latex/miller/miller.sty +catalogue-ctan /macros/latex/contrib/miller +catalogue-license lppl +catalogue-topics mat-sci +catalogue-version 1.2 + +name milog +category Package +revision 41610 +shortdesc A LaTeX class for fulfilling the documentation duties according to the German minimum wage law MiLoG +relocated 1 +longdesc Seit dem 1. Januar 2015 gilt in Deutschland grundsatzlich fur +longdesc alle Arbeitnehmer ein flachendeckender gesetzlicher Mindestlohn +longdesc in Hohe von derzeit 8,50EUR pro Stunde. Mit Wirkung ab 1. +longdesc August 2015 wurden die Dokumentations- und +longdesc Aufzeichnungspflichten gelockert. Nach SS17 MiLoG, muss Beginn, +longdesc Ende und Dauer der taglichen Arbeitszeit der in SS22 MiLoG +longdesc definierten Arbeitnehmern (formlos) aufgezeichnet werden. +longdesc Zusatzlich ermoglicht milog.cls aus praktischen Grunden die +longdesc Aufzeichnug von unbezahlten Pausen und Bemerkungen (Ruhetag, +longdesc Urlaub, krank, ...). Die Erfassung der Arbeitszeiten erfolgt in +longdesc einer simplen CSV-Datei, aus der die Klasse automatisch einen +longdesc Arbeitszeitnachweis erstellt. Alternativ konnen die Daten auch +longdesc durch einen CSV-Export - mit eventueller Nachbearbeitung - +longdesc einer geeigneteten App erhoben werden. The milog.cls class +longdesc provides means to fulfill the documentation duties by the +longdesc German minimum wage law MiLoG. The recording of working hours +longdesc is carried out in a simple CSV file from which the class will +longdesc automatically create a time sheet. Alternatively, data can also +longdesc be collected by a CSV export of a suitable app. +containersize 3124 +containerchecksum 126942c7be2217843d5dd0a6a927d1a47537ced3b1a083caa54b4905625b57238cc0a3a8d1652da076144b8c2469f418077eb4051527e5d351c2d95f3d3a5f79 +doccontainersize 404068 +doccontainerchecksum 251b73ab0f52ff2672733c3855289e012965151e07ff447da373bea083b1ff6bfeff38adef72419f03ca153545fdb90bb18f3aa254fa7b59d3c5c061ec5d15ea +docfiles size=138 + RELOC/doc/latex/milog/201605.csv + RELOC/doc/latex/milog/201605.dat + RELOC/doc/latex/milog/README.md details="Readme" + RELOC/doc/latex/milog/makefile + RELOC/doc/latex/milog/manifest.txt + RELOC/doc/latex/milog/milog + RELOC/doc/latex/milog/milog-example.pdf details="Example" + RELOC/doc/latex/milog/milog-example.tex + RELOC/doc/latex/milog/milog-formular.pdf details="Example" + RELOC/doc/latex/milog/milog-formular.tex + RELOC/doc/latex/milog/milog.cfg + RELOC/doc/latex/milog/milog.dtx + RELOC/doc/latex/milog/milog.pdf details="Package documentation" language="de" +runfiles size=2 + RELOC/tex/latex/milog/milog.cls +catalogue-contact-home http://milog.jklatex.de/ +catalogue-ctan /macros/latex/contrib/milog +catalogue-license lppl +catalogue-topics legal +catalogue-version 1.0 + +name milsymb +category Package +revision 54361 +shortdesc LaTeX package for TikZ based drawing of military symbols as per NATO APP-6(C) +relocated 1 +longdesc The package offers commands to draw military symbols as per +longdesc NATO APP-6(C) https://www.awl.edu.pl/images/en/APP_6_C.pdf. It +longdesc has a set of commands for drawing all symbols found in the +longdesc document up to the control measures, as well as support for +longdesc custom non-standard symbols. Control measures are planned to be +longdesc included in a future release. +containersize 22172 +containerchecksum 51dbdca0783519a3f7cd5ce78cd3c8e0b36c79d24781015a71e1c26a3d9a98e549f50d6d8c6044be0fd32642a3cf91e4a80009dc237b6eb5dcb1c4ac055d0732 +doccontainersize 1565768 +doccontainerchecksum cad4940b3bd462401ddd31b7125924e4b25b02d46dc360e7e4f3f027ec9bd905ea7c1a1cbb26f7a40a247aaa45e0b685d8fb4aa4caf01fed6d0a0c9c1c032471 +docfiles size=545 + RELOC/doc/latex/milsymb/LICENCE.md + RELOC/doc/latex/milsymb/README.md details="Readme" + RELOC/doc/latex/milsymb/manual_examples/772px-1st_Marine_Division_insignia.png + RELOC/doc/latex/milsymb/manual_examples/mef.tex + RELOC/doc/latex/milsymb/manual_scripts/Activity_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Activity_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Air_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Air_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Air_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Equipment_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Equipment_mobility_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Installation_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Installation_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Land_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Land_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Land_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Missile_left_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Missile_right_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSubsurface_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSubsurface_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSubsurface_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSurface_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSurface_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSurface_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Space_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Space_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Space_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/gen_hidden.py + RELOC/doc/latex/milsymb/manual_scripts/gen_symbol_tables.py + RELOC/doc/latex/milsymb/milsymb.pdf details="Package documentation" + RELOC/doc/latex/milsymb/milsymb.tex +runfiles size=46 + RELOC/tex/latex/milsymb/milsymb.sty +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-license cc-by-sa-4 +catalogue-topics graphics pgf-tikz symbol-supp +catalogue-version 1.02 + +name mindflow +category Package +revision 58475 +shortdesc Write your ideas in a clear way +relocated 1 +longdesc This package provides an environment that is separated from the +longdesc main text and has its own line numbers, for writing ideas or +longdesc annotations. +containersize 1840 +containerchecksum 05338ac445658a80d5e204b742f3eca75fc460db578227c2418bbd5382fb23afc1fa8ba8658578659a2a617f8c843a4c116cd6159ab05bf6c7fc7283492e9c95 +doccontainersize 204960 +doccontainerchecksum d887f56208e8ad5c79223a607c48f5deafe8578cde6aaee46761424f251f066d0b9ad59a8a0f073965d418c0a43d08ad5a5a5f10efd9007e9d16d1080ec2ae4b +docfiles size=55 + RELOC/doc/latex/mindflow/LICENSE + RELOC/doc/latex/mindflow/README.md details="Readme" + RELOC/doc/latex/mindflow/mindflow.pdf details="Package documentation" +srccontainersize 3712 +srccontainerchecksum 68b7ac026334ec4fd095476bae34fa6c8f91ccd3c1c7b3faa80026d6baa78559ee50cad511e059897d753311ff469d8592ea04bed9674c3b15382ad066d10ff7 +srcfiles size=4 + RELOC/source/latex/mindflow/mindflow.dtx + RELOC/source/latex/mindflow/mindflow.ins +runfiles size=2 + RELOC/tex/latex/mindflow/mindflow.sty +catalogue-contact-repository https://github.com/Jinwen-XU/mindflow +catalogue-ctan /macros/latex/contrib/mindflow +catalogue-license lppl1.3c +catalogue-topics notes + +name minibox +category Package +revision 30914 +shortdesc A simple type of box for LaTeX +relocated 1 +longdesc This small package provides a convenient input syntax for boxes +longdesc that don't break their text over lines automatically, but do +longdesc allow manual line breaks. The boxes shrink to the natural width +longdesc of the longest line they contain. +containersize 1052 +containerchecksum 18d409728f57cc2e423b5c74ad7ff4a9e93f2405497a96024769fb01f7604e019d914365f82fa5908bb679ce4a48cab64fd4435b531ef72235067481b8dbc96b +doccontainersize 281540 +doccontainerchecksum 0404b375fb0ef258d0e5acb8e7a78a60a55d08ce7339b9b63b1711dcc6d40b6f302b0f35f7d1fc8bfbf431b66bb5aaa2c94e92ee8e788a5f2156031425c0c4a3 +docfiles size=70 + RELOC/doc/latex/minibox/README details="Readme" + RELOC/doc/latex/minibox/minibox.pdf details="Package documentation" +srccontainersize 3056 +srccontainerchecksum 6aafb14003afb2ee18390391e15fb00f73a16f568158d72fea348e7052bf1ec5f25cd446569bb3c6dd815577fca7b2522d4474681b560ee3ea65b6053509df92 +srcfiles size=3 + RELOC/source/latex/minibox/minibox.ins + RELOC/source/latex/minibox/minibox.tex +runfiles size=1 + RELOC/tex/latex/minibox/minibox.sty +catalogue-ctan /macros/latex/contrib/minibox +catalogue-license lppl +catalogue-topics boxing +catalogue-version 0.2a + +name minidocument +category Package +revision 43752 +shortdesc Creates miniature documents inside other LaTeX documents +relocated 1 +longdesc This package can be used to create miniature documents inside +longdesc other LaTeX documents. Inside the minidocument all features of +longdesc the outer vertical mode like page breaking, floats, marginpars, +longdesc etc. are available. +containersize 1464 +containerchecksum 33a7938dc25833faef05245d00219ad4d94902d1b5a8f63de8c08448da1f4ddd8e305cd261a3051df919b097f0b3b82081b57fa420e773dc89a1c8cb801ba463 +doccontainersize 188224 +doccontainerchecksum 03ac398f6f8e79003b155434992a53b1485032ef779e5fa05a43adf7528fec1966ba94731ab2fc11cdfadce51bfca6ca9d1a88f882ca87f08d8e4077896af4c3 +docfiles size=48 + RELOC/doc/latex/minidocument/Makefile + RELOC/doc/latex/minidocument/README details="Readme" + RELOC/doc/latex/minidocument/minidocument.pdf details="Package documentation" +srccontainersize 3616 +srccontainerchecksum 556f1c482366f1bf2bd6e2f4e92f0fb811d97e91e057994605a2794f9441f2df35bcd2e2dc4d6218e980e921b7d7a03e5ea2613b6d27d8258985521ecde2dbf0 +srcfiles size=4 + RELOC/source/latex/minidocument/minidocument.dtx + RELOC/source/latex/minidocument/minidocument.ins +runfiles size=1 + RELOC/tex/latex/minidocument/minidocument.sty +catalogue-also subfiles +catalogue-ctan /macros/latex/contrib/minidocument +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 1.0 + +name minifp +category Package +revision 32559 +shortdesc Fixed-point real computations to 8 decimals +relocated 1 +longdesc The package provides basic arithmetic operations to 8 decimal +longdesc places for plain TeX or LaTeX. Results are exact when they fit +longdesc within the digit limits. Along with the basic package is an +longdesc optional extension that adds computation of sin, cos, log, +longdesc sqrt, exp, powers and angles. These are also exact when +longdesc theoretically possible and are otherwise accurate to at least 7 +longdesc decimal places. In addition, the package provides a stack-based +longdesc programing environment. +containersize 10000 +containerchecksum 412bbd3466eee82a99b43d6f4a5998a0a22b20c2d51621368ecba1084010a5333bda9e221b07dcfc6ddea8810edd0dcf60c2be6f926ca0da33071e6a812108d9 +doccontainersize 435560 +doccontainerchecksum 56e1b71f8289c126df12091cf155c8c05f05a391abd40ff6ce0b84bb7620630a80747e23c25bbb4276aa5d110314076f61da72683b6846a44a53ad3515b91670 +docfiles size=116 + RELOC/doc/generic/minifp/README details="Readme" + RELOC/doc/generic/minifp/minifp.pdf details="Package documentation" + RELOC/doc/generic/minifp/test1.tex + RELOC/doc/generic/minifp/test2.tex +srccontainersize 43836 +srccontainerchecksum 32cd837a6c750ae92f9662db289a5479a102d09058bb4c85605820d6ced83f237d684fb07c9ba59f76062d6d383d1b45485ac2f2ec4e5bd43f780254facac1e5 +srcfiles size=42 + RELOC/source/generic/minifp/minifp.dtx + RELOC/source/generic/minifp/minifp.ins +runfiles size=13 + RELOC/tex/generic/minifp/mfpextra.tex + RELOC/tex/generic/minifp/minifp.sty +catalogue-ctan /macros/generic/minifp +catalogue-license lppl1.3 +catalogue-topics arithmetic calculation random +catalogue-version 0.96 + +name minimalist +category Package +revision 58395 +shortdesc Write your articles or books in a simple and clear way +relocated 1 +longdesc This package offers you a LaTeX style file and two classes to +longdesc typeset articles or books in a simple and clear way. These +longdesc classes currently have native support for English and French +longdesc typesetting. They compile with any major TeX engine. You may +longdesc also wish to consider the packages einfart and simplivre, which +longdesc are enhanced versions of the classes provided here. They have +longdesc unicode support, thus can only be used with either XeLaTeX or +longdesc LuaLaTeX. Currently they have native support for English, +longdesc French, and Chinese typesetting, and also use more beautiful +longdesc fonts. +containersize 6420 +containerchecksum 4ce14a43f724cb6dea4106e6a25b345cca94208724828383add74386943a1769bb5fb756424290cf2b49baeb4cb93658982d38c43ecbe6fc338bdf534905f4c5 +doccontainersize 53552 +doccontainerchecksum d10d1a10e2bf8bcc6cde857af2e94a0dfe7edc4c1c1013646273f0add9cae841b92a47313dfe6ebbaabf70132ddd9ee67c3588a606d084357ca937031289df7f +docfiles size=21 + RELOC/doc/latex/minimalist/LICENSE + RELOC/doc/latex/minimalist/README.md details="Readme" + RELOC/doc/latex/minimalist/minimalist-doc.pdf details="Package documentation" + RELOC/doc/latex/minimalist/minimalist-doc.tex +runfiles size=8 + RELOC/tex/latex/minimalist/minimalist.sty + RELOC/tex/latex/minimalist/minimart.cls + RELOC/tex/latex/minimalist/minimbook.cls +catalogue-also einfart simplivre +catalogue-contact-repository https://github.com/Jinwen-XU/minimalist +catalogue-ctan /macros/latex/contrib/minimalist +catalogue-license lppl1.3c +catalogue-topics class article-like book-pub + +name minipage-marginpar +category Package +revision 15878 +shortdesc Minipages with marginal notes +relocated 1 +longdesc This package allows \marginpar-commands inside of minipages and +longdesc other boxes. (It takes another approach than marginnote by +longdesc Markus Kohm: it saves all \marginpar-commands and typesets them +longdesc outside (i.e., after) the box.) The package defines an +longdesc environment minipagewithmarginpars (to be used like +longdesc minipage)--and the internal commands may be used by other +longdesc packages to define similar environments or commands. +containersize 1588 +containerchecksum acf33aac7dea3c20986a9ed1f76efbb470d9fa1cbd31f29ed4fddd0e16835ace1946278fcfd04ea179122e603f63b269872953e40f8a64843ae8e60ded769356 +doccontainersize 72252 +doccontainerchecksum 20d503697a246b8b56a71cf324e4daaec436b62e9c3b9556095670c2b461d273e8b77e24da3cada37106c350304827a37bd6f658727373e384f11fe064e07992 +docfiles size=51 + RELOC/doc/latex/minipage-marginpar/README details="README file" + RELOC/doc/latex/minipage-marginpar/minipage-marginpar.pdf details="Package documentation" language="de" +srccontainersize 6140 +srccontainerchecksum 1050833e51b5a00963b616b496d9b18e49cc8ded901ccdffbaf949eac12fe8d31219c650936c083767e39a39dcd08686ef049ce11abbaad5daa998f4e9c1b7c6 +srcfiles size=5 + RELOC/source/latex/minipage-marginpar/minipage-marginpar.dtx + RELOC/source/latex/minipage-marginpar/minipage-marginpar.ins +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-license lppl +catalogue-topics notes boxing +catalogue-version 0.2 + +name miniplot +category Package +revision 17483 +shortdesc A package for easy figure arrangement +relocated 1 +longdesc MiniPlot is a package to help the LaTeX user typeset EPS +longdesc figures using an easy-to-use interface. Figures can be arranged +longdesc as one-figure-only or as a collection of figures in columns and +longdesc rows which can itself contain sub-figures in columns and rows. +longdesc Wrapped figures are also supported. This package provides +longdesc commands to display a framebox instead of the figure as the +longdesc graphics package does already but additionally it writes useful +longdesc information such as the label and scaling factor into these +longdesc boxes. +containersize 6248 +containerchecksum 2c5d08c2476871dd182bb320c50ec96f202ef65a417e65d1de8aec391fb60dc66c1e9e4642ad2207f7f4bfdd12e83bfe2cf75e9fa4f0fff0f4ee72769f7ca84f +doccontainersize 166228 +doccontainerchecksum 6ae8000b3d0ef50e37dfbda399396a42bd348d6ed9ee485ff01ded9d850693f43b0c1945dfde93d9ea0f17494ac2e03391824f2f0c0eff67355c3d3f3ad6cccf +docfiles size=68 + RELOC/doc/latex/miniplot/disclaimer.txt + RELOC/doc/latex/miniplot/documentation.zip + RELOC/doc/latex/miniplot/miniplot.pdf details="Package documentation" + RELOC/doc/latex/miniplot/miniplot.tex +runfiles size=11 + RELOC/tex/latex/miniplot/miniplot.sty +catalogue-ctan /macros/latex/contrib/miniplot +catalogue-license lppl +catalogue-topics graphics-use + +name minitoc +category Package +revision 48196 +shortdesc Produce a table of contents for each chapter, part or section +relocated 1 +longdesc The minitoc package allows you to add mini-tables-of-contents +longdesc (minitocs) at the beginning of every chapter, part or section. +longdesc There is also provision for mini-lists of figures and of +longdesc tables. At the part level, they are parttocs, partlofs and +longdesc partlots. If the type of document does not use chapters, the +longdesc basic provision is section level secttocs, sectlofs and +longdesc sectlots. The package has provision for language-specific +longdesc configuration of its own "fixed names", using .mld files +longdesc (analagous to babel .ldf files that do that job for LaTeX"s own +longdesc fixed names). +containersize 41924 +containerchecksum c5af65f4c1d7c19ac5bca84a6a8b465a6d00805164e0224ad3adfa473dbff8604d1ec39958568b3ab611364bf09aa671d277a7458595eac130b121b0972ee32c +doccontainersize 6354096 +doccontainerchecksum c193a77791f3304b09ae58faf19490bd68bf129c8ec435c378d3ebce6ecb47c284ab1e1412d10e43dd2e4d5ef60a9fc26088d8c35054f6099fa2675076adb6ce +docfiles size=2364 + RELOC/doc/latex/minitoc/INSTALL + RELOC/doc/latex/minitoc/README.md details="Readme" language="en" + RELOC/doc/latex/minitoc/TODO + RELOC/doc/latex/minitoc/boldsc.sty + RELOC/doc/latex/minitoc/cmk + RELOC/doc/latex/minitoc/dblaccnt.sty + RELOC/doc/latex/minitoc/emk + RELOC/doc/latex/minitoc/en-mtc.bst + RELOC/doc/latex/minitoc/examples/mtc-2c.pdf + RELOC/doc/latex/minitoc/examples/mtc-2c.tex + RELOC/doc/latex/minitoc/examples/mtc-2nd.pdf + RELOC/doc/latex/minitoc/examples/mtc-2nd.tex + RELOC/doc/latex/minitoc/examples/mtc-3co.pdf + RELOC/doc/latex/minitoc/examples/mtc-3co.tex + RELOC/doc/latex/minitoc/examples/mtc-add.bib + RELOC/doc/latex/minitoc/examples/mtc-add.pdf + RELOC/doc/latex/minitoc/examples/mtc-add.tex + RELOC/doc/latex/minitoc/examples/mtc-ads.pdf + RELOC/doc/latex/minitoc/examples/mtc-ads.tex + RELOC/doc/latex/minitoc/examples/mtc-amm.pdf + RELOC/doc/latex/minitoc/examples/mtc-amm.tex + RELOC/doc/latex/minitoc/examples/mtc-apx.pdf + RELOC/doc/latex/minitoc/examples/mtc-apx.tex + RELOC/doc/latex/minitoc/examples/mtc-art.pdf + RELOC/doc/latex/minitoc/examples/mtc-art.tex + RELOC/doc/latex/minitoc/examples/mtc-bk.pdf + RELOC/doc/latex/minitoc/examples/mtc-bk.tex + RELOC/doc/latex/minitoc/examples/mtc-bo.pdf + RELOC/doc/latex/minitoc/examples/mtc-bo.tex + RELOC/doc/latex/minitoc/examples/mtc-ch0.pdf + RELOC/doc/latex/minitoc/examples/mtc-ch0.tex + RELOC/doc/latex/minitoc/examples/mtc-cri.pdf + RELOC/doc/latex/minitoc/examples/mtc-cri.tex + RELOC/doc/latex/minitoc/examples/mtc-fko.pdf + RELOC/doc/latex/minitoc/examples/mtc-fko.tex + RELOC/doc/latex/minitoc/examples/mtc-fo1.pdf + RELOC/doc/latex/minitoc/examples/mtc-fo1.tex + RELOC/doc/latex/minitoc/examples/mtc-fo2.pdf + RELOC/doc/latex/minitoc/examples/mtc-fo2.tex + RELOC/doc/latex/minitoc/examples/mtc-gap.pdf + RELOC/doc/latex/minitoc/examples/mtc-gap.tex + RELOC/doc/latex/minitoc/examples/mtc-hi1.pdf + RELOC/doc/latex/minitoc/examples/mtc-hi1.tex + RELOC/doc/latex/minitoc/examples/mtc-hi2.pdf + RELOC/doc/latex/minitoc/examples/mtc-hi2.tex + RELOC/doc/latex/minitoc/examples/mtc-hia.pdf + RELOC/doc/latex/minitoc/examples/mtc-hia.tex + RELOC/doc/latex/minitoc/examples/mtc-hir.pdf + RELOC/doc/latex/minitoc/examples/mtc-hir.tex + RELOC/doc/latex/minitoc/examples/mtc-hop.pdf + RELOC/doc/latex/minitoc/examples/mtc-hop.tex + RELOC/doc/latex/minitoc/examples/mtc-liv.pdf + RELOC/doc/latex/minitoc/examples/mtc-liv.tex + RELOC/doc/latex/minitoc/examples/mtc-mem.pdf + RELOC/doc/latex/minitoc/examples/mtc-mem.tex + RELOC/doc/latex/minitoc/examples/mtc-mm1.pdf + RELOC/doc/latex/minitoc/examples/mtc-mm1.tex + RELOC/doc/latex/minitoc/examples/mtc-mu.pdf + RELOC/doc/latex/minitoc/examples/mtc-mu.tex + RELOC/doc/latex/minitoc/examples/mtc-nom.pdf + RELOC/doc/latex/minitoc/examples/mtc-nom.tex + RELOC/doc/latex/minitoc/examples/mtc-ocf.pdf + RELOC/doc/latex/minitoc/examples/mtc-ocf.tex + RELOC/doc/latex/minitoc/examples/mtc-ofs.pdf + RELOC/doc/latex/minitoc/examples/mtc-ofs.tex + RELOC/doc/latex/minitoc/examples/mtc-sbf.pdf + RELOC/doc/latex/minitoc/examples/mtc-sbf.tex + RELOC/doc/latex/minitoc/examples/mtc-scr.pdf + RELOC/doc/latex/minitoc/examples/mtc-scr.tex + RELOC/doc/latex/minitoc/examples/mtc-syn.pdf + RELOC/doc/latex/minitoc/examples/mtc-syn.tex + RELOC/doc/latex/minitoc/examples/mtc-tbi.pdf + RELOC/doc/latex/minitoc/examples/mtc-tbi.tex + RELOC/doc/latex/minitoc/examples/mtc-tlc.pdf + RELOC/doc/latex/minitoc/examples/mtc-tlc.tex + RELOC/doc/latex/minitoc/examples/mtc-tsf.pdf + RELOC/doc/latex/minitoc/examples/mtc-tsf.tex + RELOC/doc/latex/minitoc/examples/mtc-vti.pdf + RELOC/doc/latex/minitoc/examples/mtc-vti.tex + RELOC/doc/latex/minitoc/fmk + RELOC/doc/latex/minitoc/fr-mtc.bst + RELOC/doc/latex/minitoc/franc.sty + RELOC/doc/latex/minitoc/frbib.sty + RELOC/doc/latex/minitoc/frnew.sty + RELOC/doc/latex/minitoc/images/lamed3.png + RELOC/doc/latex/minitoc/imk + RELOC/doc/latex/minitoc/minitoc-fr.bib + RELOC/doc/latex/minitoc/minitoc-fr.dtx + RELOC/doc/latex/minitoc/minitoc-fr.ist + RELOC/doc/latex/minitoc/minitoc-fr.lan + RELOC/doc/latex/minitoc/minitoc-fr.pdf + RELOC/doc/latex/minitoc/minitoc.bib + RELOC/doc/latex/minitoc/minitoc.bug + RELOC/doc/latex/minitoc/minitoc.dtx + RELOC/doc/latex/minitoc/minitoc.ins + RELOC/doc/latex/minitoc/minitoc.ist + RELOC/doc/latex/minitoc/minitoc.l + RELOC/doc/latex/minitoc/minitoc.lan + RELOC/doc/latex/minitoc/minitoc.pdf details="Package documentation" + RELOC/doc/latex/minitoc/minitoc.pre + RELOC/doc/latex/minitoc/minitoc.sum + RELOC/doc/latex/minitoc/mypatches.sty + RELOC/doc/latex/minitoc/pmk + RELOC/doc/latex/minitoc/rmk + RELOC/doc/latex/minitoc/tmk + RELOC/doc/latex/minitoc/xmk +runfiles size=267 + RELOC/tex/latex/minitoc/UKenglish.mld + RELOC/tex/latex/minitoc/USenglish.mld + RELOC/tex/latex/minitoc/acadian.mld + RELOC/tex/latex/minitoc/acadien.mld + RELOC/tex/latex/minitoc/afrikaan.mld + RELOC/tex/latex/minitoc/afrikaans.mld + RELOC/tex/latex/minitoc/albanian.mld + RELOC/tex/latex/minitoc/american.mld + RELOC/tex/latex/minitoc/arab.mld + RELOC/tex/latex/minitoc/arab2.mld + RELOC/tex/latex/minitoc/arabi.mld + RELOC/tex/latex/minitoc/arabic.mld + RELOC/tex/latex/minitoc/armenian.mld + RELOC/tex/latex/minitoc/australian.mld + RELOC/tex/latex/minitoc/austrian.mld + RELOC/tex/latex/minitoc/bahasa.mld + RELOC/tex/latex/minitoc/bahasai.mld + RELOC/tex/latex/minitoc/bahasam.mld + RELOC/tex/latex/minitoc/bangla.mld + RELOC/tex/latex/minitoc/basque.mld + RELOC/tex/latex/minitoc/bengali.mld + RELOC/tex/latex/minitoc/bicig.mld + RELOC/tex/latex/minitoc/bicig2.mld + RELOC/tex/latex/minitoc/bicig3.mld + RELOC/tex/latex/minitoc/bithe.mld + RELOC/tex/latex/minitoc/brazil.mld + RELOC/tex/latex/minitoc/brazilian.mld + RELOC/tex/latex/minitoc/breton.mld + RELOC/tex/latex/minitoc/british.mld + RELOC/tex/latex/minitoc/bulgarian.mld + RELOC/tex/latex/minitoc/bulgarianb.mld + RELOC/tex/latex/minitoc/buryat.mld + RELOC/tex/latex/minitoc/buryat2.mld + RELOC/tex/latex/minitoc/canadian.mld + RELOC/tex/latex/minitoc/canadien.mld + RELOC/tex/latex/minitoc/castillan.mld + RELOC/tex/latex/minitoc/castillian.mld + RELOC/tex/latex/minitoc/catalan.mld + RELOC/tex/latex/minitoc/chinese1.mld + RELOC/tex/latex/minitoc/chinese1.mlo + RELOC/tex/latex/minitoc/chinese2.mld + RELOC/tex/latex/minitoc/chinese2.mlo + RELOC/tex/latex/minitoc/croatian.mld + RELOC/tex/latex/minitoc/czech.mld + RELOC/tex/latex/minitoc/danish.mld + RELOC/tex/latex/minitoc/devanagari.mld + RELOC/tex/latex/minitoc/dutch.mld + RELOC/tex/latex/minitoc/english.mld + RELOC/tex/latex/minitoc/english1.mld + RELOC/tex/latex/minitoc/english2.mld + RELOC/tex/latex/minitoc/esperant.mld + RELOC/tex/latex/minitoc/esperanto.mld + RELOC/tex/latex/minitoc/estonian.mld + RELOC/tex/latex/minitoc/ethiopia.mld + RELOC/tex/latex/minitoc/ethiopian.mld + RELOC/tex/latex/minitoc/ethiopian2.mld + RELOC/tex/latex/minitoc/farsi1.mld + RELOC/tex/latex/minitoc/farsi1.mlo + RELOC/tex/latex/minitoc/farsi2.mld + RELOC/tex/latex/minitoc/farsi2.mlo + RELOC/tex/latex/minitoc/farsi3.mld + RELOC/tex/latex/minitoc/finnish.mld + RELOC/tex/latex/minitoc/finnish2.mld + RELOC/tex/latex/minitoc/francais.mld + RELOC/tex/latex/minitoc/french.mld + RELOC/tex/latex/minitoc/french1.mld + RELOC/tex/latex/minitoc/french2.mld + RELOC/tex/latex/minitoc/frenchb.mld + RELOC/tex/latex/minitoc/frenchle.mld + RELOC/tex/latex/minitoc/frenchpro.mld + RELOC/tex/latex/minitoc/galician.mld + RELOC/tex/latex/minitoc/german.mld + RELOC/tex/latex/minitoc/germanb.mld + RELOC/tex/latex/minitoc/germanb2.mld + RELOC/tex/latex/minitoc/greek-mono.mld + RELOC/tex/latex/minitoc/greek-polydemo.mld + RELOC/tex/latex/minitoc/greek-polykatha.mld + RELOC/tex/latex/minitoc/greek.mld + RELOC/tex/latex/minitoc/guarani.mld + RELOC/tex/latex/minitoc/hangul-u8.mld + RELOC/tex/latex/minitoc/hangul-u8.mlo + RELOC/tex/latex/minitoc/hangul1.mld + RELOC/tex/latex/minitoc/hangul1.mlo + RELOC/tex/latex/minitoc/hangul2.mld + RELOC/tex/latex/minitoc/hangul2.mlo + RELOC/tex/latex/minitoc/hangul3.mld + RELOC/tex/latex/minitoc/hangul3.mlo + RELOC/tex/latex/minitoc/hangul4.mld + RELOC/tex/latex/minitoc/hangul4.mlo + RELOC/tex/latex/minitoc/hanja-u8.mld + RELOC/tex/latex/minitoc/hanja-u8.mlo + RELOC/tex/latex/minitoc/hanja1.mld + RELOC/tex/latex/minitoc/hanja1.mlo + RELOC/tex/latex/minitoc/hanja2.mld + RELOC/tex/latex/minitoc/hanja2.mlo + RELOC/tex/latex/minitoc/hebrew.mld + RELOC/tex/latex/minitoc/hebrew2.mld + RELOC/tex/latex/minitoc/hindi-modern.mld + RELOC/tex/latex/minitoc/hindi.mld + RELOC/tex/latex/minitoc/hungarian.mld + RELOC/tex/latex/minitoc/icelandic.mld + RELOC/tex/latex/minitoc/indon.mld + RELOC/tex/latex/minitoc/indonesian.mld + RELOC/tex/latex/minitoc/interlingua.mld + RELOC/tex/latex/minitoc/irish.mld + RELOC/tex/latex/minitoc/italian.mld + RELOC/tex/latex/minitoc/italian2.mld + RELOC/tex/latex/minitoc/japanese.mld + RELOC/tex/latex/minitoc/japanese.mlo + RELOC/tex/latex/minitoc/japanese2.mld + RELOC/tex/latex/minitoc/japanese2.mlo + RELOC/tex/latex/minitoc/japanese3.mld + RELOC/tex/latex/minitoc/japanese3.mlo + RELOC/tex/latex/minitoc/japanese4.mld + RELOC/tex/latex/minitoc/japanese4.mlo + RELOC/tex/latex/minitoc/japanese5.mld + RELOC/tex/latex/minitoc/japanese5.mlo + RELOC/tex/latex/minitoc/japanese6.mld + RELOC/tex/latex/minitoc/japanese6.mlo + RELOC/tex/latex/minitoc/kannada.mld + RELOC/tex/latex/minitoc/khalkha.mld + RELOC/tex/latex/minitoc/latin.mld + RELOC/tex/latex/minitoc/latin2.mld + RELOC/tex/latex/minitoc/latinc.mld + RELOC/tex/latex/minitoc/latinc2.mld + RELOC/tex/latex/minitoc/latvian.mld + RELOC/tex/latex/minitoc/latvian2.mld + RELOC/tex/latex/minitoc/letton.mld + RELOC/tex/latex/minitoc/letton2.mld + RELOC/tex/latex/minitoc/lithuanian.mld + RELOC/tex/latex/minitoc/lithuanian2.mld + RELOC/tex/latex/minitoc/lowersorbian.mld + RELOC/tex/latex/minitoc/lsorbian.mld + RELOC/tex/latex/minitoc/magyar.mld + RELOC/tex/latex/minitoc/magyar2.mld + RELOC/tex/latex/minitoc/magyar3.mld + RELOC/tex/latex/minitoc/malay.mld + RELOC/tex/latex/minitoc/malayalam-b.mld + RELOC/tex/latex/minitoc/malayalam-keli.mld + RELOC/tex/latex/minitoc/malayalam-keli2.mld + RELOC/tex/latex/minitoc/malayalam-mr.mld + RELOC/tex/latex/minitoc/malayalam-omega.mld + RELOC/tex/latex/minitoc/malayalam-omega.mlo + RELOC/tex/latex/minitoc/malayalam-rachana.mld + RELOC/tex/latex/minitoc/malayalam-rachana2.mld + RELOC/tex/latex/minitoc/malayalam-rachana3.mld + RELOC/tex/latex/minitoc/manju.mld + RELOC/tex/latex/minitoc/mexican.mld + RELOC/tex/latex/minitoc/meyalu.mld + RELOC/tex/latex/minitoc/minitoc.sty + RELOC/tex/latex/minitoc/mongol.mld + RELOC/tex/latex/minitoc/mongolb.mld + RELOC/tex/latex/minitoc/mongolian.mld + RELOC/tex/latex/minitoc/mtcmess.sty + RELOC/tex/latex/minitoc/mtcoff.sty + RELOC/tex/latex/minitoc/mtcpatchmem.sty + RELOC/tex/latex/minitoc/naustrian.mld + RELOC/tex/latex/minitoc/newzealand.mld + RELOC/tex/latex/minitoc/ngerman.mld + RELOC/tex/latex/minitoc/ngermanb.mld + RELOC/tex/latex/minitoc/ngermanb2.mld + RELOC/tex/latex/minitoc/norsk.mld + RELOC/tex/latex/minitoc/norsk2.mld + RELOC/tex/latex/minitoc/nynorsk.mld + RELOC/tex/latex/minitoc/nynorsk2.mld + RELOC/tex/latex/minitoc/occitan.mld + RELOC/tex/latex/minitoc/occitan2.mld + RELOC/tex/latex/minitoc/polish.mld + RELOC/tex/latex/minitoc/polish2.mld + RELOC/tex/latex/minitoc/polski.mld + RELOC/tex/latex/minitoc/portuges.mld + RELOC/tex/latex/minitoc/portuguese.mld + RELOC/tex/latex/minitoc/romanian.mld + RELOC/tex/latex/minitoc/romanian2.mld + RELOC/tex/latex/minitoc/romanian3.mld + RELOC/tex/latex/minitoc/russian-cca.mld + RELOC/tex/latex/minitoc/russian-cca.mlo + RELOC/tex/latex/minitoc/russian-cca1.mld + RELOC/tex/latex/minitoc/russian-cca1.mlo + RELOC/tex/latex/minitoc/russian-lh.mld + RELOC/tex/latex/minitoc/russian-lh.mlo + RELOC/tex/latex/minitoc/russian-lhcyralt.mld + RELOC/tex/latex/minitoc/russian-lhcyralt.mlo + RELOC/tex/latex/minitoc/russian-lhcyrkoi.mld + RELOC/tex/latex/minitoc/russian-lhcyrkoi.mlo + RELOC/tex/latex/minitoc/russian-lhcyrwin.mld + RELOC/tex/latex/minitoc/russian-lhcyrwin.mlo + RELOC/tex/latex/minitoc/russian.mld + RELOC/tex/latex/minitoc/russian2m.mld + RELOC/tex/latex/minitoc/russian2o.mld + RELOC/tex/latex/minitoc/russianb.mld + RELOC/tex/latex/minitoc/russianc.mld + RELOC/tex/latex/minitoc/samin.mld + RELOC/tex/latex/minitoc/scottish.mld + RELOC/tex/latex/minitoc/serbian.mld + RELOC/tex/latex/minitoc/serbianc.mld + RELOC/tex/latex/minitoc/slovak.mld + RELOC/tex/latex/minitoc/slovene.mld + RELOC/tex/latex/minitoc/spanish.mld + RELOC/tex/latex/minitoc/spanish2.mld + RELOC/tex/latex/minitoc/spanish3.mld + RELOC/tex/latex/minitoc/spanish4.mld + RELOC/tex/latex/minitoc/swahili.mld + RELOC/tex/latex/minitoc/swedish.mld + RELOC/tex/latex/minitoc/swedish2.mld + RELOC/tex/latex/minitoc/thai.mld + RELOC/tex/latex/minitoc/thai.mlo + RELOC/tex/latex/minitoc/turkish.mld + RELOC/tex/latex/minitoc/uighur.mld + RELOC/tex/latex/minitoc/uighur2.mld + RELOC/tex/latex/minitoc/uighur3.mld + RELOC/tex/latex/minitoc/ukraineb.mld + RELOC/tex/latex/minitoc/ukrainian.mld + RELOC/tex/latex/minitoc/uppersorbian.mld + RELOC/tex/latex/minitoc/usorbian.mld + RELOC/tex/latex/minitoc/vietnam.mld + RELOC/tex/latex/minitoc/vietnamese.mld + RELOC/tex/latex/minitoc/welsh.mld + RELOC/tex/latex/minitoc/xalx.mld + RELOC/tex/latex/minitoc/xalx2.mld + RELOC/tex/latex/minitoc/xalx3.mld +catalogue-contact-repository https://github.com/minitoc/minitoc +catalogue-contact-support https://github.com/minitoc/minitoc/issues +catalogue-ctan /macros/latex/contrib/minitoc +catalogue-license lppl1.3 +catalogue-topics toc-etc +catalogue-version 62 + +name minorrevision +category Package +revision 32165 +shortdesc Quote and refer to a manuscript for minor revisions +relocated 1 +longdesc The package supports those who publish articles in +longdesc peer-reviewed journals. In the final stages of the review +longdesc process, the authors typically have to provide an additional +longdesc document (such as a letter to the editors), in which they +longdesc provide a list of modifications that they made to the +longdesc manuscript. The package automatically provides line numbers and +longdesc quotations from the manuscript, for this letter. The package +longdesc loads the package lineno, so (in effect) shares lineno's +longdesc incompatibilities. +containersize 1584 +containerchecksum d76224254aa18dd80f9bab56f055fde5bb7ee6b5c3dd88e6ce19667c939fb2dbd1e5cb987522a3f1c50082f46ee20cf918f1e01fb00f588ce11d30d300fcf574 +doccontainersize 166396 +doccontainerchecksum ab1484f7ec214d43b95a8bd5cd78ee28bf0055d99d8c63c424c5c1db1c77b41a8631ea35bef745ab0399dd1c8dd9c9ab66b60033bb151f46afb023b6b5e1ab44 +docfiles size=44 + RELOC/doc/latex/minorrevision/README details="Readme" + RELOC/doc/latex/minorrevision/minorrevision.pdf details="Package documentation" + RELOC/doc/latex/minorrevision/minorrevision.tex +runfiles size=1 + RELOC/tex/latex/minorrevision/minorrevision.sty +catalogue-ctan /macros/latex/contrib/minorrevision +catalogue-license lppl1.2 +catalogue-topics editorial +catalogue-version 1.1 + +name minted +category Package +revision 44855 +shortdesc Highlighted source code for LaTeX +relocated 1 +longdesc The package that facilitates expressive syntax highlighting in +longdesc LaTeX using the powerful Pygments library. The package also +longdesc provides options to customize the highlighted source code +longdesc output using fancyvrb. +containersize 9496 +containerchecksum 5923b5e87e8bb2cf148a480035b906aab4b03b903308e8e9609f98376f82e23fedd529abca37bb4e9211719160abd9d4488f5c73a0283f67c7f11ee3e1f1d5fb +doccontainersize 803632 +doccontainerchecksum 0187a04f9e42c1bf3e5d961c28b977e527dfc1b57c0f823eda047d5e6c888f3f8da1fed691c8e3128d09b3740deb1b324baa607b9abc20a4fe47ea0a29915e90 +docfiles size=200 + RELOC/doc/latex/minted/Makefile + RELOC/doc/latex/minted/README details="Readme" + RELOC/doc/latex/minted/minted.pdf details="Package documentation" +srccontainersize 44376 +srccontainerchecksum 1595aac2da1fc9c7b9e50c92fd12eda866fc35e884e335b1f4883188a4b0f9603a39cffa252cc1bb11ffd4a67e16a80b05c5ecf2cd7440c50f0605e5fc44e302 +srcfiles size=49 + RELOC/source/latex/minted/minted.dtx + RELOC/source/latex/minted/minted.ins +runfiles size=15 + RELOC/tex/latex/minted/minted.sty + RELOC/tex/latex/minted/minted1.sty +catalogue-also texments verbments +catalogue-contact-repository https://github.com/gpoore/minted +catalogue-ctan /macros/latex/contrib/minted +catalogue-license lppl1.3 +catalogue-topics listing +catalogue-version 2.5 + +name mintspirit +category Package +revision 32069 +shortdesc LaTeX support for MintSpirit font families +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the MintSpirit and MintSpiritNo2 families of fonts, +longdesc designed by Hirwen Harendal. MintSpirit was originally designed +longdesc for use as a system font on a Linux Mint system. The No. 2 +longdesc variant provides more conventional shapes for some glyphs. +execute addMap mintspirit.map +containersize 1105488 +containerchecksum 0155fde1eddb9558959c260334ab1d5489ca5415b1f7afb687308feb67f6951932bdfcc2e59e6cd3a4b34449f129dc1eb53730b75d60347bf7e2647a18cbadb1 +doccontainersize 308404 +doccontainerchecksum 54211f0e40fcd0e3c248be16b647462cbe3e3953fbc6ab050634e6a9455b5d52157b77a49fa96c707e3a65c088a92e7e24e86359cfdfa141d48a0ba5b2bfb682 +docfiles size=84 + RELOC/doc/fonts/mintspirit/MintSpirit-Cat.pdf + RELOC/doc/fonts/mintspirit/OFL.txt + RELOC/doc/fonts/mintspirit/README details="Readme" + RELOC/doc/fonts/mintspirit/mintspirit-samples.pdf details="MintSpirit samples" + RELOC/doc/fonts/mintspirit/mintspirit-samples.tex + RELOC/doc/fonts/mintspirit/mintspirit2-samples.pdf details="MintSpirit2 samples" + RELOC/doc/fonts/mintspirit/mintspirit2-samples.tex +runfiles size=1255 + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_24uybq.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_2dxuba.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_3vy5j3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_5cazkt.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_63vcua.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_6x4rw3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_7ayy44.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_7u5374.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_amdskp.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_biiinc.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_bkoczj.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_dnk3mn.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eex3ia.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eqihrw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eqrkmo.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_fizmng.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_fm3wlu.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_j4bodc.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_k4fv75.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_l3e5vj.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_lm7mhw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_lwraz3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_me5dp6.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_oe76kg.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_ref42g.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_s7rd6p.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_taixll.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_tmtdfz.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_ywkmiw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_2isll4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_3sm7wd.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_3y5hmb.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_5lbatd.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_5yvi6n.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_675dmr.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_7enqs3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_bjjcsi.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_f4utek.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_gcdgcc.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_gdx47l.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_girsvq.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_gr6qqq.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_imdxi4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_lvhuc6.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_lzc2o4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_oj7rfe.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_opresw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_pulfbi.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_swumq4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_v6lq4b.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_wk34ig.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_y4xqha.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_zt2pqo.enc + RELOC/fonts/map/dvips/mintspirit/mintspirit.map + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Bold.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-BoldItalic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Italic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Regular.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Bold.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-BoldItalic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Italic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Regular.otf + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.tfm + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Bold.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-BoldItalic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Italic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Regular.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Bold.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-BoldItalic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Italic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Regular.pfb + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.vf + RELOC/tex/latex/mintspirit/LY1MintSpirit-Inf.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-Sup.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-Inf.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-Sup.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-Inf.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-Sup.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-Inf.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-Sup.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-Inf.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-Sup.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-Inf.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-Sup.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/mintspirit.sty + RELOC/tex/latex/mintspirit/mintspirit2.sty +catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html +catalogue-ctan /fonts/mintspirit +catalogue-license ofl +catalogue-topics font font-sans font-otf font-type1 + +name minutes +category Package +revision 42186 +shortdesc Typeset the minutes of meetings +relocated 1 +longdesc Supports the creation of a collection of minutes. Features +longdesc include: Support of tasks (who, schedule, what, time of +longdesc finishing; possibility of creating a list of open tasks; +longdesc inclusion of open tasks from other minutes; Support for +longdesc attachments; Support of schedule dates (in planning: support +longdesc for the calendar package); Different versions ('secret parts'); +longdesc and Macros for votes and decisions (list of decisions). Support +longdesc for minutes in German, Dutch and English is provided. +containersize 9028 +containerchecksum 3abd6c4963ceec3cf073048c21d2abc236d58f522000195fd459c554c10d2af9afaf772b0fd1545fdf72decbc7e1c62a0bb12d7bc1dfd9d5b025f5131ca5f145 +doccontainersize 393404 +doccontainerchecksum a069ea537eb1fc572c842a26dd406b1ef2f1343ef6066d266642dfe37515a3679c3a9e64eb37e1e992fc40281d855b817edf9116aae3922abc60e3c01106e3da +docfiles size=110 + RELOC/doc/latex/minutes/MinStyGd.tex + RELOC/doc/latex/minutes/Overview.tex + RELOC/doc/latex/minutes/Protokol.tex + RELOC/doc/latex/minutes/README.md details="Readme" + RELOC/doc/latex/minutes/Sample.tex + RELOC/doc/latex/minutes/SampleDE.tex + RELOC/doc/latex/minutes/SampleEN.tex + RELOC/doc/latex/minutes/SampleNL.tex + RELOC/doc/latex/minutes/minutes.pdf details="Package documentation" +srccontainersize 24608 +srccontainerchecksum 09b6260de696981f020835c61e20f23bfb81404df44af477f62341b9b07c65a1be58098d33dc876d6f07f3a5aaf6df25c8e3e7707c0f238ae76094ff0bfe5a2e +srcfiles size=24 + RELOC/source/latex/minutes/minutes.dtx + RELOC/source/latex/minutes/minutes.ins +runfiles size=9 + RELOC/tex/latex/minutes/minutes.sty +catalogue-ctan /macros/latex/contrib/minutes +catalogue-license lppl +catalogue-topics meeting-admin +catalogue-version 1.8f + +name mismath +category Package +revision 56949 +shortdesc Miscellaneous mathematical macros +relocated 1 +longdesc The package provides some mathematical macros to typeset: +longdesc mathematical constants e, i, pi in upright shape +longdesc (automatically) as recommended by ISO 80000-2, vectors with +longdesc beautiful arrows and adjusted norm, some standard operator +longdesc names, improved spacings in mathematical formulas, systems of +longdesc equations and small matrices, displaymath in double columns for +longdesc long calculations. +containersize 2784 +containerchecksum 68bfec9f2b2d88d248416c43368831f76a8b5700252cd2adb4b7dbc0ca05d66243d1e8c8f587bc39da32f3f0db00be60a7f07047af2484ec9227055325a62922 +doccontainersize 531316 +doccontainerchecksum 70d308ce935a64573b9b9e96b0cb158518a61748c05ab79d9abb0445043ee3343b18d5babe5c3436f42d1e277cb374fbf40c470e85ab99dcf8da841bf0918bd8 +docfiles size=131 + RELOC/doc/latex/mismath/README.md details="Readme" + RELOC/doc/latex/mismath/mismath.pdf details="Package documentation" +srccontainersize 14616 +srccontainerchecksum 938131fb63838e1ab7e2cae20d037c3cc24d22e152cad295c227e7fe12a3b4cfb2ccdaa0a1b3753c63071d253ebbb8f26c2ed7fa1056d4de517317c3fb3bee34 +srcfiles size=12 + RELOC/source/latex/mismath/mismath.dtx + RELOC/source/latex/mismath/mismath.ins +runfiles size=2 + RELOC/tex/latex/mismath/mismath.sty +catalogue-ctan /macros/latex/contrib/mismath +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.8 + +name missaali +category Package +revision 58771 +shortdesc A late medieval OpenType textura font +relocated 1 +longdesc This package contains the free OpenType Textura font Missaali +longdesc and a style file for using it with XeLaTeX. Textura is a +longdesc typeface based on the textus quadratus form of the textualis +longdesc formata that late medieval scribes used for the most valuable +longdesc manuscripts. The font Missaali is based on Textura that German +longdesc printer Bartholomew Ghotan used for printing missals and +longdesc psalters in the 1480s. This font has two intended use cases: as +longdesc a Gothic display font; and for emulating late-medieval +longdesc manuscripts. In addition to the basic textura letters, the font +longdesc contains a large number of abbreviation sigla as well as a set +longdesc of Lombardic initials. As modern typesetting algorithms are not +longdesc intended for creating 15th century style layout, the package +longdesc contains a XeLaTeX style file that makes it easier to achieve +longdesc the classic incunabula look. +containersize 85812 +containerchecksum a077053382e5ea428b274239732f8bac2a4b943e19d40110df76d19499768e12f47c37f7b9d132cbe2023821fe82d4667b414b9114cdfb23df9534bdab2b5214 +doccontainersize 14130560 +doccontainerchecksum 2ba1713de8741c0c01eac1e35ebfbf544baeb2e92ffc587960c969e0ca01a141fcf983e99796e239cfe639ab4ab686875393f12649f0528024c0779a8f549893 +docfiles size=3752 + RELOC/doc/fonts/missaali/MANIFEST-Missaali.txt + RELOC/doc/fonts/missaali/Missaali.glyphs + RELOC/doc/fonts/missaali/OFL.txt + RELOC/doc/fonts/missaali/README details="Readme" + RELOC/doc/fonts/missaali/lppl.txt + RELOC/doc/fonts/missaali/missaali.bib + RELOC/doc/fonts/missaali/missaali.pdf details="Package documentation" + RELOC/doc/fonts/missaali/missaali.tex + RELOC/doc/fonts/missaali/missale-largefont.png + RELOC/doc/fonts/missaali/missale-normal.png + RELOC/doc/fonts/missaali/missale-preface.png + RELOC/doc/fonts/missaali/missale-tinyfont.png + RELOC/doc/fonts/missaali/pic-1.png + RELOC/doc/fonts/missaali/pic-2.png + RELOC/doc/fonts/missaali/symbols.tex + RELOC/doc/fonts/missaali/word_features.png +runfiles size=39 + RELOC/fonts/opentype/public/missaali/Missaali-Regular.otf + RELOC/tex/latex/missaali/missaali.sty +catalogue-ctan /fonts/missaali +catalogue-license ofl lppl1.3 +catalogue-topics font-otf font-archaic +catalogue-version 2.0 + +name mkgrkindex +category Package +revision 26313 +catalogue greek-makeindex +shortdesc Makeindex working with Greek +longdesc Makeindex is resolutely stuck with Latin-based alphabets, so +longdesc will not deal with Greek indexes, unaided. This package +longdesc provides a Perl script that will transmute the index of a Greek +longdesc document in such a way that makeindex will sort the entries +longdesc according to the rules of the Greek alphabet. +depend mkgrkindex.ARCH +containersize 2892 +containerchecksum bbb0b306f30b4fe898f5d5bfdcb1eaa4d2d88a95cfa1ea0da51957aad1de028928562c930180f6c0a7d66b5cdfd804d52afbd229e7ca43173477a229cefff192 +doccontainersize 91480 +doccontainerchecksum 5a5b14d4282e97420f796456155a71c23a44d4197d4d92bfea1f0f20e95b42e506c7be3f2b0aba37508415341e999522bd823c649cc6259a6e26d42399c6b8cf +docfiles size=28 + texmf-dist/doc/support/mkgrkindex/mkgrkindex.nw + texmf-dist/doc/support/mkgrkindex/mkgrkindex.pdf details="Package documentation" +runfiles size=4 + texmf-dist/makeindex/mkgrkindex/lowercase-headers.ist + texmf-dist/makeindex/mkgrkindex/uppercase-headers.ist + texmf-dist/scripts/mkgrkindex/mkgrkindex +catalogue-ctan /language/greek/mkgrkindex +catalogue-license other-free +catalogue-topics index-proc greek +catalogue-version 2.0 + +name mkgrkindex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mkgrkindex +containersize 340 +containerchecksum 3e612f75feb96af6329b1a79628fe8f0d3191f958b1fda624c3fba68c67cf883b242d0b9e49a57f7d4902358de9994d3c57507a5ef6f9a27b463f85f73ff6e58 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mkgrkindex + +name mkgrkindex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mkgrkindex +containersize 340 +containerchecksum 5ae4de30084c552bd31829f7eacc53e3e26c8bcf37141ca9be8a90824f5632394ceb1eea40fa4b7b4ad1a15d694786ab551dcfde067104e05b4d9c1fca202b17 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mkgrkindex + +name mkgrkindex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mkgrkindex +containersize 340 +containerchecksum de97a0fe79b3999b657404babdfd16b3e9791618f7bb6774e9bbb7284470d72ea1cb2011fd6e4e9c20312d5572f69625548ca2ab07cce07755b30bb355008551 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mkgrkindex + +name mkgrkindex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mkgrkindex +containersize 340 +containerchecksum 8856521f8102263a9ab485ce3f9397752576780ee50f466f4d9690cecefc3b70885486a1a5c9fc72ded0a2e7c40ee47d46b18caf5f6405eb89e1b236de003b6e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mkgrkindex + +name mkgrkindex.i386-cygwin +category Package +revision 14431 +shortdesc i386-cygwin files of mkgrkindex +containersize 340 +containerchecksum 1b49e4391a305be8be23e101931d1e09a6c81e1540075c30defd0b1c75515c10109ecba1f70c21da385d1fa4aa63da6b82c19409dc51b30dd4b146a405d0f35b +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mkgrkindex + +name mkgrkindex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mkgrkindex +containersize 344 +containerchecksum 01ebcc4da28b0880e1bb1eafafd59676b696727c7f687fe9d19b0aaffdfb7de0aa1021d3af5064e193b0a293bb28cca2827d18aaacd218b4620af32abb109276 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mkgrkindex + +name mkgrkindex.i386-linux +category Package +revision 14428 +shortdesc i386-linux files of mkgrkindex +containersize 340 +containerchecksum 830052f8ac3738f3f68f402124cebc24729537d42e4750bfd270fc21d4dbb1cf433d8d265e32ea541cfd5dc9762caca9e9369d8f36f10fb137a6daaf59646b8b +binfiles arch=i386-linux size=1 + bin/i386-linux/mkgrkindex + +name mkgrkindex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mkgrkindex +containersize 340 +containerchecksum df4ff921865d86e3f225c10645fcafb0d2ec9cc7872ce5a7866afa480cc6c4ecd185f14811d0b74bd7fcc4b467c71ffbb8649b613da6b31fbc62e39298d2cf61 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mkgrkindex + +name mkgrkindex.i386-solaris +category Package +revision 14428 +shortdesc i386-solaris files of mkgrkindex +containersize 340 +containerchecksum b63e38774177dcb3d83473100e26a1f8b7af53e195b63e238e51eaf73d56a6cf76b97143c71e14babd119f1f1348a0462f7fe2ab668d251fc31067a691a36792 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mkgrkindex + +name mkgrkindex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mkgrkindex +containersize 340 +containerchecksum dd98579cffdabe6cb99aea06e3fcd1471b7fc87f75626f19e08c83797486ed7573bd2d4706f2ec25c9774e31eb6adc0b4ae3e4e428125e39cd8d15b7ace0f498 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/mkgrkindex + +name mkgrkindex.win32 +category Package +revision 15404 +shortdesc win32 files of mkgrkindex +containersize 688 +containerchecksum 4734cda199a26b57fc7a34e677fb2f77d9cfb5df82a6bbf6f8d3aa1ccda733c5c7895ada151d79162bf8d851e6f6d24088d82e6b5f975fb43889d66547b7d4ae +binfiles arch=win32 size=1 + bin/win32/mkgrkindex.exe + +name mkgrkindex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mkgrkindex +containersize 344 +containerchecksum 636626d4c6bd180c5540e83d02bdd35b3abb26cf99028dc00fc961aa3b7ce62db7bb0494f5fa19b8d0bb51518d8479b3bef77f157036a3efc94206e32da4bb72 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mkgrkindex + +name mkgrkindex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mkgrkindex +containersize 352 +containerchecksum 310239d49b9088ffffc53e5dec419a3b8b64f04ccf6ad158fb3440d88158c2d581d9210565a7268f1952dd5eff2c61cac955e118859db1984e0ca6ecbdba45c3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mkgrkindex + +name mkgrkindex.x86_64-linux +category Package +revision 14428 +shortdesc x86_64-linux files of mkgrkindex +containersize 340 +containerchecksum 1f963a4f7f87de3e7c44831b7772f28bb62afee2a8d5d851bcc5de1b34466697e0d3689e9b471642ec6c32d24369f8c283a17c073fd1ed7ababbcd2aab347c6f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mkgrkindex + +name mkgrkindex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mkgrkindex +containersize 344 +containerchecksum a15379ecb5cebb01eeb90c6cdcb16e5dcfb152fa88e4e2111b51856fd4dec30883abd96dd53fd9bb89318427cfb5fc0a95dc170e172e9fe14af3fb603f465fd7 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mkgrkindex + +name mkgrkindex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mkgrkindex +containersize 340 +containerchecksum 9b4d190462e6c0eaa9ddda7033e9edc8a9ec3a005486f21e6f267770fa1df30cc876598b48cca109d07108f85598b0c699bf565c4ea8d13830869662886b0a2c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mkgrkindex + +name mkjobtexmf +category Package +revision 29725 +shortdesc Generate a texmf tree for a particular job +longdesc The package provides a Perl script, which runs a program and +longdesc tries to find the names of file used. Two methods are +longdesc available, option -recorder of (Web2C) TeX and the program +longdesc strace. Then it generates a directory with a texmf tree. It +longdesc checks the found files and tries sort them in this texmf tree. +longdesc The script may be used for archiving purposes or to speed up +longdesc later TeX runs. +depend mkjobtexmf.ARCH +containersize 7444 +containerchecksum c0dffdb276141b78bd2c47e6d2bfddcd13c1800d3a0806a05ca1fba72a91621364b827801430bc757601e07f2a5130366ade49d7ac1df27901fbec29827739c3 +doccontainersize 80276 +doccontainerchecksum 3ef5c333cedd5104b63c1457fff2eee40aea7d1f1b187d34ce4cfccd5b6bd38809b7686dc7b41a147fbee2ae0e951470f3ae574bd3c10a5f9b6fb76b686ce4f5 +docfiles size=37 + texmf-dist/doc/generic/mkjobtexmf/README + texmf-dist/doc/generic/mkjobtexmf/clean-case.pl + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.html + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.ltx + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.pdf details="Package documentation (PDF format)" + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.txt details="Package documentation (text format)" + texmf-dist/doc/generic/mkjobtexmf/version.pl + texmf-dist/doc/man/man1/mkjobtexmf.1 + texmf-dist/doc/man/man1/mkjobtexmf.man1.pdf +srccontainersize 19828 +srccontainerchecksum 7f9de9bafb890d12ef2f07d3b8596dc31c4bb97079f826c9efd4f318383f64d8250099a937d8d692fecf703e626b42f942962f4d906e705cf4b0155e354bff0f +srcfiles size=21 + texmf-dist/source/generic/mkjobtexmf/Makefile.in + texmf-dist/source/generic/mkjobtexmf/configure + texmf-dist/source/generic/mkjobtexmf/configure.ac + texmf-dist/source/generic/mkjobtexmf/install-sh +runfiles size=6 + texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl +catalogue-ctan /support/mkjobtexmf +catalogue-license artistic +catalogue-topics archival +catalogue-version 0.8 + +name mkjobtexmf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mkjobtexmf +containersize 340 +containerchecksum f4d1189556e62ac87c6b92b248251389f1bc863e3272571747a961007e4addf4347d15bfd738c2c53199222e5b5a3ce350cf88e1088591f8c42ad1b6ed3b0eae +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mkjobtexmf + +name mkjobtexmf.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mkjobtexmf +containersize 344 +containerchecksum 87941c9d1b4bbcd9b1b4a680e52ff872511a61fc5493267da84803e0b8b630b4781457a66350d3c4ec7f249f3614824b68d6ee09108d36165e4b6504e4cc6046 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mkjobtexmf + +name mkjobtexmf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mkjobtexmf +containersize 344 +containerchecksum 9b04ec2c4133355e4f9e606940db2ef84d8b949f9cec5d919ad820a6ef856b32d8c2cd1d473bfce4c9ccfb079a5dc991254bd467bbc7da2265bd193c915c6738 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mkjobtexmf + +name mkjobtexmf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mkjobtexmf +containersize 340 +containerchecksum 2378ecad1af32d83af57b71ee47235bf954d2185d44c0575f411939afc770a36656849d11026cad2e45bbb68b5858a6d0894924303f029f9df13d4a9ca9ee7b0 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mkjobtexmf + +name mkjobtexmf.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of mkjobtexmf +containersize 340 +containerchecksum d33a99fc7b4ec27d5436b40df185fed95e8d0d465ad5f414d4ac9e1c9f2f34c3653077c09b391b3135a5f75d9da44ea4c5177b965b81bbc57d89c415732cdf1d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mkjobtexmf + +name mkjobtexmf.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mkjobtexmf +containersize 340 +containerchecksum 48724f1b5d8e76a6f053b80f98e54edbb37755c95c40a8b0e508a2fb1d96865ad779545b1d2b8288584a50672063642cf58d9ed03c54be3a74dabdf627e269bc +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mkjobtexmf + +name mkjobtexmf.i386-linux +category Package +revision 8457 +shortdesc i386-linux files of mkjobtexmf +containersize 340 +containerchecksum 4f23714bb31b36a73b431cc0dce593ad532db75c3e7069ad24567ab5d2bd1004b042cad7ebae28e5ba061d5dbf841dfd4a237dd86bb3043d6abe532571b3af02 +binfiles arch=i386-linux size=1 + bin/i386-linux/mkjobtexmf + +name mkjobtexmf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mkjobtexmf +containersize 340 +containerchecksum e5ab05c45b1077dd7c0d50761d54c7fcb2d12010c3a94ae5471f666afad6017a3a7fdbd51ef369fbc6313718fd9b942c3f988beaad2706f1a57fbe6c73e4e015 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mkjobtexmf + +name mkjobtexmf.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of mkjobtexmf +containersize 340 +containerchecksum d3d35af667b40f6fb815008709bcc16dfb4560e7c0c99e8f39e63ac884e62974d94b45557f9a15adf81ddbbf1c80a92d89afe595631e7902b9e613ddd76f8fc0 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mkjobtexmf + +name mkjobtexmf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mkjobtexmf +containersize 340 +containerchecksum 4365332ed54bd84874ff467c567d931e2b0de3fc20c358e5d57d966d8fcaa612f9936e74321f5cd8cbedc2dbf63def131ef876b33e463337c5237a89d6581469 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/mkjobtexmf + +name mkjobtexmf.win32 +category Package +revision 15404 +shortdesc win32 files of mkjobtexmf +containersize 688 +containerchecksum 5daa699bb75b1b46da97c415dc57b7999a9f3e6e7f1abe2c3e7a9d254a604368dba8ff7b2b69dc91fa12777fdc3f4f2c1da2b426d535137109b26816f5dd6c6b +binfiles arch=win32 size=1 + bin/win32/mkjobtexmf.exe + +name mkjobtexmf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mkjobtexmf +containersize 340 +containerchecksum e764c2174e548170cdc63a319760bb3424ff851d1d3c7b4aaff8ec924f89fed422ea1a9a97c45f8eb551de954dfe41793693c65f2bbe9b19ec97bb4f13fdfec5 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mkjobtexmf + +name mkjobtexmf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mkjobtexmf +containersize 348 +containerchecksum 04df7ef69e25faaf5066d894e41818c343fa2baad2d174b0659d58862c3f7b4dd0ab28518201b1a05b7d42dabaeaa00cd642a937048b0bd07d8b15fe49449bb2 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mkjobtexmf + +name mkjobtexmf.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of mkjobtexmf +containersize 340 +containerchecksum 6738365c83a915ec8e3c8d06e2871ebf5426b19873981efe49e0a78241eae5d4d4329f319b6cf53332ecf4ed46586ca438c8017f33d4e7cdb80c446e3dcf3d3d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mkjobtexmf + +name mkjobtexmf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mkjobtexmf +containersize 348 +containerchecksum a84b56bcbcde4a3843fbace344c2b76926011d69b4944946aa861410d7af8567376ca925d04ea03a7ee7f8704d7286e4867d7aa7e37fae0f3921d1ef865afe09 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mkjobtexmf + +name mkjobtexmf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mkjobtexmf +containersize 340 +containerchecksum 7b89427a0eba5820a61f4c130648f5e25d91ae49c1809593d697f020f922345cd3df357b707345f5519b097c7ee8d15e193fcd6fccc651db5f0ca8045a6373e1 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mkjobtexmf + +name mkpattern +category Package +revision 15878 +shortdesc A utility for making hyphenation patterns +relocated 1 +longdesc Mkpattern is a general purpose program for the generation of +longdesc hyphenation patterns, with definition of letter sets and +longdesc template-like constructions. It also provides an easy way to +longdesc handle different input and output encodings, and featgures +longdesc generation of clean UTF-8 patterns. The package was used for +longdesc the creation of the Galician patterns. +containersize 4924 +containerchecksum 0395c9258e6c4a8459e69ff2fbdfe511b0c6863e02333d9481a8a1e82362cf9e1be7e89e7447bda497e7ed2bc18e1986e0a5461e9f49c63ff869f39a4da4f007 +doccontainersize 82968 +doccontainerchecksum 8232866143444fab1ed1f15255dc5f8c1c5050812e2882d2e20636bfd300216815a53aa03cd4f69ed7f45aab255a8efae9bfdc10df6b7a246d36d4db075204ef +docfiles size=28 + RELOC/doc/plain/mkpattern/README details="Package README" + RELOC/doc/plain/mkpattern/mkpatdoc.tex + RELOC/doc/plain/mkpattern/mkpatter.pdf details="Package documentation" + RELOC/doc/plain/mkpattern/mkpattern-exmpl.tex +runfiles size=4 + RELOC/tex/plain/mkpattern/mkpatter.tex +catalogue-ctan /language/hyphenation/utils/mkpattern +catalogue-license lppl +catalogue-topics hyphenation +catalogue-version 1.2 + +name mkpic +category Package +revision 33700 +shortdesc Perl interface to mfpic +longdesc mkpic provides an easy interface for making small pictures with +longdesc mfpic. To this end you create an input file consisting of +longdesc commands, one per line, with space separated parameters (or you +longdesc modify the DATA section of the mkpic script, which is used if +longdesc you run it without an input file). For an extensive description +longdesc see the file mkpicdoc.pdf, which is part of the distribution. +depend mkpic.ARCH +containersize 9264 +containerchecksum 7814f14293e10a23bc9348dcaea9af326ab4dd93cc55865320706984e50883742381b5df3e77774e7a63fbba7ebcbe0fae7268a3d1a34ebb2d8a0303f5b53034 +doccontainersize 200688 +doccontainerchecksum bfaf4232fc39c13fefd86c21b2f9f76cd93761c58e39c1420c601627e95adf9e6c5c06db73a0afda6621acef374089dd93afbd2a3bd761cf5aa8db29883375e2 +docfiles size=57 + texmf-dist/doc/support/mkpic/README details="Readme" + texmf-dist/doc/support/mkpic/mkpic.pdf details="Package manual page" + texmf-dist/doc/support/mkpic/mkpicdoc.pdf details="Package documentation" + texmf-dist/doc/support/mkpic/mkpicdoc.tex +runfiles size=7 + texmf-dist/scripts/mkpic/mkpic +catalogue-ctan /support/mkpic +catalogue-license gpl +catalogue-topics graphics +catalogue-version 1.02 + +name mkpic.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mkpic +containersize 336 +containerchecksum 178789160b631972ff3a6eddbcfb89b4c11ea32e44c81b89e0441cb91b6444a8013cc8c727a050c051205e1660dc4ea501839f7c8aea0f9049d7e14f8e8270d9 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mkpic + +name mkpic.amd64-freebsd +category Package +revision 33688 +shortdesc amd64-freebsd files of mkpic +containersize 340 +containerchecksum fe25815dce769020b5d8a125dc3a52c245bdf4f8d8eb5a2ce5f970aa16e2b4a9e737d5a250d20f9af589bf6f9079f1d7d2061502a242fc5daced5dd30884cef7 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mkpic + +name mkpic.amd64-netbsd +category Package +revision 33688 +shortdesc amd64-netbsd files of mkpic +containersize 336 +containerchecksum 580a4946fc54fe865c705fd8e3314194d4f3d59f71cd42075c4eb180da3292d404cb16b5d580385b4080f85776c6776576c859a10ac9391d1630b6f0a6e38e5f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mkpic + +name mkpic.armhf-linux +category Package +revision 33688 +shortdesc armhf-linux files of mkpic +containersize 336 +containerchecksum 0e5cbe8de9409ab34e5d7d72cd1a92def6ca2088b14d0bc759a4db7b3051039bfb6df8dc56c26a638ec28dc25bf7d20107abe990a85492c4f2792583d4748ee4 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mkpic + +name mkpic.i386-cygwin +category Package +revision 33688 +shortdesc i386-cygwin files of mkpic +containersize 336 +containerchecksum b429cd618fc1c9ad1578765a14569ddef5c5e03873a0ad81a95af9c41edc4352e1657a709a53fa540b863489c4ba6d5dc6426fc2a4adaffa01c8e15a5a9ca490 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mkpic + +name mkpic.i386-freebsd +category Package +revision 33688 +shortdesc i386-freebsd files of mkpic +containersize 336 +containerchecksum ca2cd973c382ee87f1200954bc283fb86a575b925d470c4551470cf0217445abdb3cba8b1119134a5a683ee82b5a39daa6d46b5db683cf2d5c512d1cde92c718 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mkpic + +name mkpic.i386-linux +category Package +revision 33688 +shortdesc i386-linux files of mkpic +containersize 336 +containerchecksum 8e27737dbf5d1cb0274408172ce49591cb0ccfcd1c9132880dc42f0ae6474d09e94426c9d7ae86946ad1efe0fcb3a4cfdfb7c298d925e4319b9d62b18cd9d5c9 +binfiles arch=i386-linux size=1 + bin/i386-linux/mkpic + +name mkpic.i386-netbsd +category Package +revision 33688 +shortdesc i386-netbsd files of mkpic +containersize 336 +containerchecksum 908f5ed5f0528a24075fa89394e9b9aead3a4cc1d0e9f702399d39eb1d1bcbaa82c467f9c8f96fe2567a2bbf56d967dd40c8f09fa1a2dbb5017726cc4f07ba6d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mkpic + +name mkpic.i386-solaris +category Package +revision 33688 +shortdesc i386-solaris files of mkpic +containersize 336 +containerchecksum af75b5daf0319a142d8e1e1f13d482d79a827c7c5964b203f23e65f634da076ab0b2b7ebc49251c6cddbe1fdf02db66ce2e2d0da0ec5bdee287028a4b4fe636f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mkpic + +name mkpic.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mkpic +containersize 336 +containerchecksum c1319ed3dc6bd9fa6fad24ae78b4163e327ac6ec4aed22bb62f8a717f1382e26606d8b8fbeaeaa2294f785c93e56ff9e71f6711745643aa21b958913a48ac5e6 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/mkpic + +name mkpic.win32 +category Package +revision 33688 +shortdesc win32 files of mkpic +containersize 680 +containerchecksum 5116dc2bb077972e22e517f967b44290161fe08957f4948d202b6d530d08f4d3a19e20998ff150af7510c1f830c64f497353daf095d8d2de5437b0eb1397f8e2 +binfiles arch=win32 size=1 + bin/win32/mkpic.exe + +name mkpic.x86_64-cygwin +category Package +revision 33688 +shortdesc x86_64-cygwin files of mkpic +containersize 340 +containerchecksum dae750dbb05a7f7d4d85c173bebd460cb7bef4e1311360d466a500e8b173a743de2556e42c32b59ae3b9d454d0dafd1041f160ceecc5a5fb104aec5c631b6564 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mkpic + +name mkpic.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mkpic +containersize 348 +containerchecksum 9f0d535967256b072640f50b3dd52ba0bb020377a10ef19a253659e254a897d45d97fa4e084ad751aedd0fb81d9ae3e99f22c49a2aee0bdd83b1034455fb0309 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mkpic + +name mkpic.x86_64-linux +category Package +revision 33688 +shortdesc x86_64-linux files of mkpic +containersize 336 +containerchecksum a0e7c0cc7f8ec5f579d7195b772f416650b65792450e0f04e466d3abfad62801201de49c2b557e98eac1f51627366b92d303e2eea8426f10a76fa989226cedcb +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mkpic + +name mkpic.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mkpic +containersize 340 +containerchecksum 89eb01f41a3e1a4327f8161bc992503d4f84c87c94d12e13d92c80e3d5e65ea76dd9c914f921344a9b9533626e830139180b2ed02f8b670839b33bb52dba1264 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mkpic + +name mkpic.x86_64-solaris +category Package +revision 33688 +shortdesc x86_64-solaris files of mkpic +containersize 336 +containerchecksum 0cd3b4c291972e65175cba35559e9b2cef02121d037aa6e9096d8643cba9e79887bde054bc6e2b4cf69658d486b4721bdf95d83a24c32c4a181ec27a0df775f1 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mkpic + +name mla-paper +category Package +revision 54080 +shortdesc Proper MLA formatting +relocated 1 +longdesc The package formats articles using the MLA style ("MLA" = +longdesc "Modern Language Association"). The aim is that students and +longdesc other academics in the humanities should be able to typeset +longdesc their materials, properly, with minimal effort on their part. +containersize 2316 +containerchecksum e82a0f04441b08a8f5b2dc0bac9480ae9ae8c169c7e5a1d1795315d3e103cbf3a07f726eb41d7dd7b1ffd1443fe00bc686b37c62edb59481a110bfd34944daeb +doccontainersize 2004 +doccontainerchecksum 6bf3856fced879c5dce5cf1442ed0302453f7a02ec30b4d1a2cd63228baeef58d11999d56f505c1aab6a78eff1e4671665da381b7e319a467e42f70c56cfc89e +docfiles size=1 + RELOC/doc/latex/mla-paper/README details="Readme (with package use details)" +runfiles size=2 + RELOC/tex/latex/mla-paper/mla.sty +catalogue-also mlacls +catalogue-ctan /macros/latex/contrib/mla-paper +catalogue-license lppl +catalogue-topics gen-paper humanities + +name mlacls +category Package +revision 56878 +shortdesc LaTeX class for MLA papers +relocated 1 +longdesc In the United States, secondary and undergraduate students are +longdesc generally expected to adhere to the format prescribed by the +longdesc Modern Language Association (MLA) for typewritten essays, +longdesc research papers and writings. This package provides a simple, +longdesc straightforward LaTeX class for composing papers almost +longdesc perfectly adherent to the MLA style guide. +containersize 2940 +containerchecksum 08ca934862fed7674f4b8a77ffbc1e42a043777e6baf8b1cf52ce6cde912899bf92d74df52bb35dc6cde64711b8d375266695d1eb4cb301204d90ad27fbc2a86 +doccontainersize 3028736 +doccontainerchecksum 687c4beca93574ee7687d7586eda818d94538782acb9b7cca98ddfae6921af5c53ade7b87a72006d8271bb517d02c7a5575043ad8c94e4894d53c58e2c6f6d0f +docfiles size=1381 + RELOC/doc/latex/mlacls/BUGS.md + RELOC/doc/latex/mlacls/LICENSE + RELOC/doc/latex/mlacls/README.md details="Readme" + RELOC/doc/latex/mlacls/mla-example-image.jpg + RELOC/doc/latex/mlacls/mla-example.bib + RELOC/doc/latex/mlacls/mla-example.pdf + RELOC/doc/latex/mlacls/mla-example.tex + RELOC/doc/latex/mlacls/mla.pdf details="Package documentation" +srccontainersize 10056 +srccontainerchecksum 46d2f1929f334932409e3a9e04a698424ebba99337c4ce48d4dd2c8d63f828ad9c7b81dc4e550e69ef5ba2d17d359a0e1e4360db7175ecca63456aa1c1213c56 +srcfiles size=10 + RELOC/source/latex/mlacls/mla.dtx + RELOC/source/latex/mlacls/mla.ins +runfiles size=2 + RELOC/tex/latex/mlacls/mla.cls +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-license lppl1.3c +catalogue-topics class gen-paper humanities +catalogue-version 0.9 + +name mleftright +category Package +revision 53021 +shortdesc Variants of delimiters that act as maths open/close +relocated 1 +longdesc The package defines variants \mleft and \mright of \left and +longdesc \right, that make the delimiters act as \mathopen and +longdesc \mathclose. These commands address spacing difficulties in +longdesc subformulas. +containersize 2644 +containerchecksum d1423d7e794ff011e6bf436d85bc3d2d933263bee059cac910e1a3375140d0eb0f1682e38c675afe17607d71d253b656a81cc927d22f54a8add2df01571a5e95 +doccontainersize 308648 +doccontainerchecksum 193d3fa473d136c11ad8a1b4f707d286cb0243bd32c020c1c5343c23a5d6347c2ba2ccc5c11e5bf835b4666c8e4a0ca2d234661e155c0f5fdc32e7b85cf2d253 +docfiles size=77 + RELOC/doc/latex/mleftright/README.md + RELOC/doc/latex/mleftright/mleftright.pdf details="Package documentation" +srccontainersize 6548 +srccontainerchecksum 365cdce5350ecad7f1ea2fe478ac4c7414c9e8c5053c480229cfed7a478f135cb033e67070f327956cb5aadf862762e270726bbeaf8e511b10fc96e996e06d64 +srcfiles size=6 + RELOC/source/latex/mleftright/mleftright.dtx +runfiles size=2 + RELOC/tex/generic/mleftright/mleftright.sty +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-license lppl1.3 +catalogue-topics maths +catalogue-version 1.2 + +name mlist +category Package +revision 15878 +shortdesc Logical markup for lists +relocated 1 +longdesc The package defines commands that create macros for typesetting +longdesc vectors, matrices and functions, in a logical way. For example, +longdesc logical indexing can then be used to refer to elements or +longdesc arguments without hard-coding the symbols in the document. +containersize 3068 +containerchecksum 23466ef3b73d8476c69632fe0c701f3ec675250b534fb4451cb0dcaf93c30a649ca07bb58cfbac89054cc31cc1219daaa1e7f746e6689927573175d42f78bfc0 +doccontainersize 186980 +doccontainerchecksum 771f51f52e47aceb7da064a0bf8ba4b19f0255fbd14d3b6d301457ad0dea80836f3e4c449611f5574c12e87185ab5ac9668404c5f1f97100971293425c7ecd13 +docfiles size=53 + RELOC/doc/latex/mlist/README details="Readme" + RELOC/doc/latex/mlist/mlist.pdf details="Package documentation" +srccontainersize 15480 +srccontainerchecksum 6112422b62304d0dafb8e4fa43239dd0899327dc952db6d1179af684049b46482a30675b8c44be534213d9b2fd9ff6bab267997bb0b08102e35e1ebdeca9956b +srcfiles size=13 + RELOC/source/latex/mlist/mlist.dtx + RELOC/source/latex/mlist/mlist.ins +runfiles size=4 + RELOC/tex/latex/mlist/mlist.cfg + RELOC/tex/latex/mlist/mlist.sty +catalogue-ctan /macros/latex/contrib/mlist +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.6a + +name mlmodern +category Package +revision 57458 +shortdesc A blacker Type 1 version of Computer Modern, with multilingual support +relocated 1 +longdesc MLModern is a text and math font family with (La)TeX support, +longdesc based on the design of Donald Knuth's Computer Modern and the +longdesc Latin Modern project. It avoids the spindliness of most other +longdesc Type 1 versions of Computer Modern. +execute addMap mlm.map +containersize 7595924 +containerchecksum 6fe8c67f768cde92e38741885c336786f65f9793fce0027b0476a8e45366e33c4a559c3bb6367014646e89f0ac39bd92219bc59921c3b3e0fa3a9c4314f2a632 +doccontainersize 46740 +doccontainerchecksum bd5ac414d3b3ff53b059543d25cf0296d59365dc219748d849f89a085225d864361923b4220a0a989585d99e9dc221f9a4209b622be5f279e0f02e5e1cc2d966 +docfiles size=19 + RELOC/doc/fonts/mlmodern/LICENSE + RELOC/doc/fonts/mlmodern/README details="Readme" + RELOC/doc/fonts/mlmodern/mlmodern.pdf details="Package documentation" + RELOC/doc/fonts/mlmodern/mlmodern.tex +runfiles size=3583 + RELOC/fonts/map/dvips/mlmodern/mlm-substitute.map + RELOC/fonts/map/dvips/mlmodern/mlm.map + RELOC/fonts/tfm/public/mlmodern/cs-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/cs-mlmvtto10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/ec-mlmvtto10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/l7x-mlmvtto10.tfm + RELOC/fonts/tfm/public/mlmodern/mlmbsy10.tfm + RELOC/fonts/tfm/public/mlmodern/mlmbsy5.tfm + RELOC/fonts/tfm/public/mlmodern/mlmbsy7.tfm + RELOC/fonts/tfm/public/mlmodern/mlmex10.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmi10.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmi12.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmi5.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmi6.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmi7.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmi8.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmi9.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmib10.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmib5.tfm + RELOC/fonts/tfm/public/mlmodern/mlmmib7.tfm + RELOC/fonts/tfm/public/mlmodern/mlmsy10.tfm + RELOC/fonts/tfm/public/mlmodern/mlmsy5.tfm + RELOC/fonts/tfm/public/mlmodern/mlmsy6.tfm + RELOC/fonts/tfm/public/mlmodern/mlmsy7.tfm + RELOC/fonts/tfm/public/mlmodern/mlmsy8.tfm + RELOC/fonts/tfm/public/mlmodern/mlmsy9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/qx-mlmvtto10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/rm-mlmvtto10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/t5-mlmvtto10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/texnansi-mlmvtto10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmb10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbo10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbx10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbx12.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbx5.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbx6.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbx7.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbx8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbx9.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbxi10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmbxo10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmcsco10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmdunh10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmduno10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr12.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr17.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr5.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr6.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr7.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmr9.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmri10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmri12.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmri7.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmri8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmri9.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmro10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmro12.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmro17.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmro8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmro9.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmss10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmss12.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmss17.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmss8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmss9.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssbo10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssbx10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssdc10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssdo10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmsso10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmsso12.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmsso17.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmsso8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmsso9.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssq8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssqbo8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssqbx8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmssqo8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtcsc10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtcso10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtk10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtko10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtl10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtlc10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtlco10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtt10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtt12.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtt8.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtt9.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtti10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmtto10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmu10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmvtk10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmvtko10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmvtl10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmvtlo10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmvtt10.tfm + RELOC/fonts/tfm/public/mlmodern/ts1-mlmvtto10.tfm + RELOC/fonts/type1/public/mlmodern/mlmb10.pfb + RELOC/fonts/type1/public/mlmodern/mlmbo10.pfb + RELOC/fonts/type1/public/mlmodern/mlmbsy10.pfb + RELOC/fonts/type1/public/mlmodern/mlmbsy5.pfb + RELOC/fonts/type1/public/mlmodern/mlmbsy7.pfb + RELOC/fonts/type1/public/mlmodern/mlmbx10.pfb + RELOC/fonts/type1/public/mlmodern/mlmbx12.pfb + RELOC/fonts/type1/public/mlmodern/mlmbx5.pfb + RELOC/fonts/type1/public/mlmodern/mlmbx6.pfb + RELOC/fonts/type1/public/mlmodern/mlmbx7.pfb + RELOC/fonts/type1/public/mlmodern/mlmbx8.pfb + RELOC/fonts/type1/public/mlmodern/mlmbx9.pfb + RELOC/fonts/type1/public/mlmodern/mlmbxi10.pfb + RELOC/fonts/type1/public/mlmodern/mlmbxo10.pfb + RELOC/fonts/type1/public/mlmodern/mlmcsc10.pfb + RELOC/fonts/type1/public/mlmodern/mlmcsco10.pfb + RELOC/fonts/type1/public/mlmodern/mlmdunh10.pfb + RELOC/fonts/type1/public/mlmodern/mlmduno10.pfb + RELOC/fonts/type1/public/mlmodern/mlmex10.pfb + RELOC/fonts/type1/public/mlmodern/mlmmi10.pfb + RELOC/fonts/type1/public/mlmodern/mlmmi12.pfb + RELOC/fonts/type1/public/mlmodern/mlmmi5.pfb + RELOC/fonts/type1/public/mlmodern/mlmmi6.pfb + RELOC/fonts/type1/public/mlmodern/mlmmi7.pfb + RELOC/fonts/type1/public/mlmodern/mlmmi8.pfb + RELOC/fonts/type1/public/mlmodern/mlmmi9.pfb + RELOC/fonts/type1/public/mlmodern/mlmmib10.pfb + RELOC/fonts/type1/public/mlmodern/mlmmib5.pfb + RELOC/fonts/type1/public/mlmodern/mlmmib7.pfb + RELOC/fonts/type1/public/mlmodern/mlmr10.pfb + RELOC/fonts/type1/public/mlmodern/mlmr12.pfb + RELOC/fonts/type1/public/mlmodern/mlmr17.pfb + RELOC/fonts/type1/public/mlmodern/mlmr5.pfb + RELOC/fonts/type1/public/mlmodern/mlmr6.pfb + RELOC/fonts/type1/public/mlmodern/mlmr7.pfb + RELOC/fonts/type1/public/mlmodern/mlmr8.pfb + RELOC/fonts/type1/public/mlmodern/mlmr9.pfb + RELOC/fonts/type1/public/mlmodern/mlmri10.pfb + RELOC/fonts/type1/public/mlmodern/mlmri12.pfb + RELOC/fonts/type1/public/mlmodern/mlmri7.pfb + RELOC/fonts/type1/public/mlmodern/mlmri8.pfb + RELOC/fonts/type1/public/mlmodern/mlmri9.pfb + RELOC/fonts/type1/public/mlmodern/mlmro10.pfb + RELOC/fonts/type1/public/mlmodern/mlmro12.pfb + RELOC/fonts/type1/public/mlmodern/mlmro17.pfb + RELOC/fonts/type1/public/mlmodern/mlmro8.pfb + RELOC/fonts/type1/public/mlmodern/mlmro9.pfb + RELOC/fonts/type1/public/mlmodern/mlmss10.pfb + RELOC/fonts/type1/public/mlmodern/mlmss12.pfb + RELOC/fonts/type1/public/mlmodern/mlmss17.pfb + RELOC/fonts/type1/public/mlmodern/mlmss8.pfb + RELOC/fonts/type1/public/mlmodern/mlmss9.pfb + RELOC/fonts/type1/public/mlmodern/mlmssbo10.pfb + RELOC/fonts/type1/public/mlmodern/mlmssbx10.pfb + RELOC/fonts/type1/public/mlmodern/mlmssdc10.pfb + RELOC/fonts/type1/public/mlmodern/mlmssdo10.pfb + RELOC/fonts/type1/public/mlmodern/mlmsso10.pfb + RELOC/fonts/type1/public/mlmodern/mlmsso12.pfb + RELOC/fonts/type1/public/mlmodern/mlmsso17.pfb + RELOC/fonts/type1/public/mlmodern/mlmsso8.pfb + RELOC/fonts/type1/public/mlmodern/mlmsso9.pfb + RELOC/fonts/type1/public/mlmodern/mlmssq8.pfb + RELOC/fonts/type1/public/mlmodern/mlmssqbo8.pfb + RELOC/fonts/type1/public/mlmodern/mlmssqbx8.pfb + RELOC/fonts/type1/public/mlmodern/mlmssqo8.pfb + RELOC/fonts/type1/public/mlmodern/mlmsy10.pfb + RELOC/fonts/type1/public/mlmodern/mlmsy5.pfb + RELOC/fonts/type1/public/mlmodern/mlmsy6.pfb + RELOC/fonts/type1/public/mlmodern/mlmsy7.pfb + RELOC/fonts/type1/public/mlmodern/mlmsy8.pfb + RELOC/fonts/type1/public/mlmodern/mlmsy9.pfb + RELOC/fonts/type1/public/mlmodern/mlmtcsc10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtcso10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtk10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtko10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtl10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtlc10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtlco10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtlo10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtt10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtt12.pfb + RELOC/fonts/type1/public/mlmodern/mlmtt8.pfb + RELOC/fonts/type1/public/mlmodern/mlmtt9.pfb + RELOC/fonts/type1/public/mlmodern/mlmtti10.pfb + RELOC/fonts/type1/public/mlmodern/mlmtto10.pfb + RELOC/fonts/type1/public/mlmodern/mlmu10.pfb + RELOC/fonts/type1/public/mlmodern/mlmvtk10.pfb + RELOC/fonts/type1/public/mlmodern/mlmvtko10.pfb + RELOC/fonts/type1/public/mlmodern/mlmvtl10.pfb + RELOC/fonts/type1/public/mlmodern/mlmvtlo10.pfb + RELOC/fonts/type1/public/mlmodern/mlmvtt10.pfb + RELOC/fonts/type1/public/mlmodern/mlmvtto10.pfb + RELOC/tex/latex/mlmodern/il2mlmdh.fd + RELOC/tex/latex/mlmodern/il2mlmr.fd + RELOC/tex/latex/mlmodern/il2mlmss.fd + RELOC/tex/latex/mlmodern/il2mlmssq.fd + RELOC/tex/latex/mlmodern/il2mlmtt.fd + RELOC/tex/latex/mlmodern/il2mlmvtt.fd + RELOC/tex/latex/mlmodern/l7xmlmdh.fd + RELOC/tex/latex/mlmodern/l7xmlmr.fd + RELOC/tex/latex/mlmodern/l7xmlmss.fd + RELOC/tex/latex/mlmodern/l7xmlmssq.fd + RELOC/tex/latex/mlmodern/l7xmlmtt.fd + RELOC/tex/latex/mlmodern/l7xmlmvtt.fd + RELOC/tex/latex/mlmodern/ly1mlmdh.fd + RELOC/tex/latex/mlmodern/ly1mlmr.fd + RELOC/tex/latex/mlmodern/ly1mlmss.fd + RELOC/tex/latex/mlmodern/ly1mlmssq.fd + RELOC/tex/latex/mlmodern/ly1mlmtt.fd + RELOC/tex/latex/mlmodern/ly1mlmvtt.fd + RELOC/tex/latex/mlmodern/mlmodern.sty + RELOC/tex/latex/mlmodern/omlmlmm.fd + RELOC/tex/latex/mlmodern/omlmlmr.fd + RELOC/tex/latex/mlmodern/omsmlmr.fd + RELOC/tex/latex/mlmodern/omsmlmsy.fd + RELOC/tex/latex/mlmodern/omxmlmex.fd + RELOC/tex/latex/mlmodern/ot1mlmdh.fd + RELOC/tex/latex/mlmodern/ot1mlmr.fd + RELOC/tex/latex/mlmodern/ot1mlmss.fd + RELOC/tex/latex/mlmodern/ot1mlmssq.fd + RELOC/tex/latex/mlmodern/ot1mlmtt.fd + RELOC/tex/latex/mlmodern/ot1mlmvtt.fd + RELOC/tex/latex/mlmodern/ot4mlmdh.fd + RELOC/tex/latex/mlmodern/ot4mlmr.fd + RELOC/tex/latex/mlmodern/ot4mlmss.fd + RELOC/tex/latex/mlmodern/ot4mlmssq.fd + RELOC/tex/latex/mlmodern/ot4mlmtt.fd + RELOC/tex/latex/mlmodern/ot4mlmvtt.fd + RELOC/tex/latex/mlmodern/qxmlmdh.fd + RELOC/tex/latex/mlmodern/qxmlmr.fd + RELOC/tex/latex/mlmodern/qxmlmss.fd + RELOC/tex/latex/mlmodern/qxmlmssq.fd + RELOC/tex/latex/mlmodern/qxmlmtt.fd + RELOC/tex/latex/mlmodern/qxmlmvtt.fd + RELOC/tex/latex/mlmodern/t1mlmdh.fd + RELOC/tex/latex/mlmodern/t1mlmr.fd + RELOC/tex/latex/mlmodern/t1mlmss.fd + RELOC/tex/latex/mlmodern/t1mlmssq.fd + RELOC/tex/latex/mlmodern/t1mlmtt.fd + RELOC/tex/latex/mlmodern/t1mlmvtt.fd + RELOC/tex/latex/mlmodern/t5mlmdh.fd + RELOC/tex/latex/mlmodern/t5mlmr.fd + RELOC/tex/latex/mlmodern/t5mlmss.fd + RELOC/tex/latex/mlmodern/t5mlmssq.fd + RELOC/tex/latex/mlmodern/t5mlmtt.fd + RELOC/tex/latex/mlmodern/t5mlmvtt.fd + RELOC/tex/latex/mlmodern/ts1mlmdh.fd + RELOC/tex/latex/mlmodern/ts1mlmr.fd + RELOC/tex/latex/mlmodern/ts1mlmss.fd + RELOC/tex/latex/mlmodern/ts1mlmssq.fd + RELOC/tex/latex/mlmodern/ts1mlmtt.fd + RELOC/tex/latex/mlmodern/ts1mlmvtt.fd +catalogue-ctan /fonts/mlmodern +catalogue-license lppl1.3c +catalogue-topics font font-cm font-body font-proportional font-mono font-serif font-sans font-maths font-type1 font-supp font-t1enc +catalogue-version 1.2 + +name mltex +category Package +revision 57186 +shortdesc The MLTeX system +longdesc MLTeX is a modification of TeX version >=3.0 that allows the +longdesc hyphenation of words with accented letters using ordinary +longdesc Computer Modern (CM) fonts. The system is distributed as a TeX +longdesc change file. +depend atbegshi +depend atveryend +depend babel +depend cm +depend dehyph +depend everyshi +depend firstaid +depend hyph-utf8 +depend hyphen-base +depend knuth-lib +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-fonts +depend latexconfig +depend mltex.ARCH +depend plain +depend tex-ini-files +depend unicode-data +execute AddFormat name=mllatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx -mltex *mllatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,latex,latexconfig +execute AddFormat name=mltex engine=pdftex options="-translate-file=cp227.tcx -mltex mltex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain +containersize 6448 +containerchecksum 0b3fe440055cc4c943fe8cdee93997718a3625782c5b2962cb514011f2038ad14518f7cffc55dee41f0a57f7401b8f2f493631a2b9cbeb806ae75ae80269f3b5 +doccontainersize 8676 +doccontainerchecksum a3b962871878f3f34c2d419fa9ae1c27518f3901212796d32649b5524f49fa103a71f46403726b9568ac358ab98afe7b23356a0f2d2d8592c0b84cfc186d5f53 +docfiles size=9 + texmf-dist/doc/latex/mltex/README + texmf-dist/doc/latex/mltex/mltex.txt + texmf-dist/doc/latex/mltex/testmlft.dvi + texmf-dist/doc/latex/mltex/testmlft.tex + texmf-dist/doc/latex/mltex/testmlsw.dvi + texmf-dist/doc/latex/mltex/testmlsw.tex +runfiles size=8 + texmf-dist/tex/latex/mltex/lo1enc.def + texmf-dist/tex/latex/mltex/mlltxchg.def + texmf-dist/tex/latex/mltex/mltex.sty + texmf-dist/tex/mltex/config/mltex.ini +catalogue-ctan /systems/generic/mltex +catalogue-license knuth +catalogue-topics engine multilingual +catalogue-version 2.2 + +name mltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mltex +containersize 340 +containerchecksum 6efdea87dc9ebfa5a88cb2c5453beff6749329dd0bd04a09ae1f5ed01f4a83fdd4b5abc24bb01f0ed5579bf8d99e33e9acb5c0af0d08fee035bf18d5e3f26bc3 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/mllatex + bin/aarch64-linux/mltex + +name mltex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mltex +containersize 340 +containerchecksum 7a387e33ab904fd49096ede3a9b1f3de5eea101f5dcb0927ff6177ac7e1da7cc47786f757a1a364bf61eea4b7d14eaaa08e21722214cbd935754b94f74dfb9ea +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/mllatex + bin/amd64-freebsd/mltex + +name mltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mltex +containersize 336 +containerchecksum 640e23f173d95e88a65e732db0cf74f45915e1891cfb9526b6335b93f1ebf55748585e4ca8687a3e6733b43ef3fa3b8003c2cfcd20878bb29829ba6dbaf41948 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/mllatex + bin/amd64-netbsd/mltex + +name mltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mltex +containersize 336 +containerchecksum c2291c293827058b41354d7fcf868fee2186f20070067a0059a3e9c616658949dee85e886a8f42ef4e36d9fb3d9a87345c3f25cc789527c586bc5c761b3d8024 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/mllatex + bin/armhf-linux/mltex + +name mltex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of mltex +containersize 340 +containerchecksum a103fdc8ab5c92ee88226a6d659a9c80fffde6e57bc1e584964c5f1211675da49139b60d27ac3e7113afad8c33af59e7948dbbd809264a237095e85cfba2bb44 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/mllatex + bin/i386-cygwin/mltex + +name mltex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mltex +containersize 340 +containerchecksum ace25eb01575a883bf6acf712c77a62786f97e8cd19fc7f4c7a7484bc744e16e132e54e625ac365614e772d5ca03f2458493dea7fb257356152324259f0047b0 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/mllatex + bin/i386-freebsd/mltex + +name mltex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of mltex +containersize 336 +containerchecksum 7f51ca8a1558b5c97d35e0c1f059f6023fbe27a00fabb223999836454f93bdf663e3289e4b728cbcbcf218fafbc66c6553b24b605759a244e1aba0ced46d1b4a +binfiles arch=i386-linux size=2 + bin/i386-linux/mllatex + bin/i386-linux/mltex + +name mltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mltex +containersize 336 +containerchecksum 0316e2eaed69ac91d99389b97114529690cad6898fb22ed8ccc0f898e1058e578c3570676ab0fa084185e96047e1d6f12daea7adef3e534b59158304c7c2dbd8 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/mllatex + bin/i386-netbsd/mltex + +name mltex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of mltex +containersize 336 +containerchecksum aab0f9dde0eb3eac27c83579b3f0042f28c1a221ca64a6a720f0b6401aa2bc3fe59c5f6d91178217b7b109a86b5263fd55ae728af20703aff22ec400a0387206 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/mllatex + bin/i386-solaris/mltex + +name mltex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mltex +containersize 336 +containerchecksum 663c679f9c4128bca393f403e25ed4a521079a92a580681238597e8255052cd0b8ed2a7daa960105448a9a02cfcd8d8b9429e80e684d8c61205b623b7f5796ae +binfiles arch=universal-darwin size=2 + bin/universal-darwin/mllatex + bin/universal-darwin/mltex + +name mltex.win32 +category Package +revision 57883 +shortdesc win32 files of mltex +containersize 884 +containerchecksum ba207d5305ff301280f82b826b6a91f58cbf59a64276a141961c07c69363dbe5935e63912a72cfd39ff7fe32b96efd24f0116943331b6f52ef1c5f4d945dbb6f +binfiles arch=win32 size=2 + bin/win32/mllatex.exe + bin/win32/mltex.exe + +name mltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mltex +containersize 344 +containerchecksum daa6398fcef22f2e602f8b048b8d70ba0a82d8837e7ffbf830be27f1e7114bc85943e5253bf79a4a1855101595ea7865df9f64c0a036692d08ccd0a04fcf5a9f +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/mllatex + bin/x86_64-cygwin/mltex + +name mltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mltex +containersize 348 +containerchecksum 2cd479acfa750bc94c62db1a74eaf32103e6d4585fe842b35943e6ec1042f6cdc8bdc73759ea46264a98eb484a149d3c972b38a1989d8066ef54b107d7cf793f +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/mllatex + bin/x86_64-darwinlegacy/mltex + +name mltex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of mltex +containersize 336 +containerchecksum c16f85e5f863befe32f24f46589edbcef130e0be1462947f98f11f7bdd94fd8d703060b38f18a05a7abe11ec7604eb0cc4eb3b901c06d10f8d244c75b8548b91 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/mllatex + bin/x86_64-linux/mltex + +name mltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mltex +containersize 340 +containerchecksum a5ab1a196706a4ae5e89595ffaf65091329a633ad27e734ebb5eb0260c9864e7c28d3bbcfe55663971d5047267c24e1b06ec66a9bacad861fbbf2a49d09aba46 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/mllatex + bin/x86_64-linuxmusl/mltex + +name mltex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mltex +containersize 340 +containerchecksum c69b68647fdbe36a5177d665593c99d0a99252f7f056ad8781926bf2967bab4a79031b65b0a9b1ac72ae8f88e6d22d887da9c88fa95ed5d14dcb2c11479bf2ed +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/mllatex + bin/x86_64-solaris/mltex + +name mluexercise +category Package +revision 56927 +shortdesc Exercises/homework at the Martin Luther University Halle-Wittenberg +relocated 1 +longdesc This package provides a template class for solving weekly +longdesc exercises at the Institute for Computer Science of Martin +longdesc Luther University Halle-Wittenberg. The class can be used by +longdesc all students--especially first semesters--to typeset their +longdesc exercises with low effort in beautiful LaTeX. A bunch of handy +longdesc macros are included that are used throughout many lectures +longdesc during the bachelor's degree program. The class is maintained +longdesc by the students' council of the university. The focus is on +longdesc encouraging first semester students to use LaTeX for +longdesc typesetting, thus the package has been kept as simple as +longdesc possible. +containersize 4784 +containerchecksum 9af80a432fdcafefdabe9697cdfc16dcdee9f6a15d85d3e15774860e94bd579ad523c370b289e823f82372dfaead086ae0ed175fcdc51cafa53bd98076a8664c +doccontainersize 455480 +doccontainerchecksum bafd00d7a14ddafeccdfb2bb4df613dc0ad6428445722b29ba6875d0dbc3feea9ab5ff86d8e7799f4a907840c584c2e37cb54e89b5d978e67b8f7e4b7fc7ef51 +docfiles size=113 + RELOC/doc/latex/mluexercise/README.md details="Readme" + RELOC/doc/latex/mluexercise/mluexercise.pdf details="Package documentation" +srccontainersize 9764 +srccontainerchecksum aebb67b8257f675b1237a362ae5ddb523d983717056915db5e482da90fd5674d7620aadc9b81b2667c9e78ad590b2cf670463eada81154f379e5693f411bc3a6 +srcfiles size=9 + RELOC/source/latex/mluexercise/mluexercise.dtx + RELOC/source/latex/mluexercise/mluexercise.ins +runfiles size=3 + RELOC/tex/latex/mluexercise/mluexercise.cls +catalogue-contact-announce https://github.com/fsrmatheinfo/mluexercise/releases +catalogue-contact-bugs https://github.com/fsrmatheinfo/mluexercise/issues +catalogue-contact-home https://fachschaft.mathinf.uni-halle.de/ +catalogue-contact-repository https://github.com/fsrmatheinfo/mluexercise +catalogue-ctan /macros/latex/contrib/mluexercise +catalogue-license mit +catalogue-topics class exercise +catalogue-version 2.0 + +name mmap +category Package +revision 15878 +shortdesc Include CMap resources in PDF files from pdfTeX +relocated 1 +longdesc The package is an extension of cmap with improved flexibility +longdesc and coverage, including the ability to re-encode Knuth's basic +longdesc mathematics fonts. +containersize 19252 +containerchecksum a2427b9863ef37385507783dba7bdfd65bf022d1c7322e7560b78222c3d4e0ddfccfc70aa927196e64ca1a520e985eea8cb78a4129a39e73a8410bc210b801bb +doccontainersize 1040 +doccontainerchecksum 95a71c9a9b9cd46c1723c986ba41c29a7204fada2cd7bdd14ebfe5e0c4e1b06106f9c13469edd9caf0b94615bfbea9cc8a1f56a4f83cec37de481b39d2b4bd91 +docfiles size=1 + RELOC/doc/latex/mmap/README details="Readme" +runfiles size=74 + RELOC/tex/latex/mmap/lmr-m.cmap + RELOC/tex/latex/mmap/lmr.cmap + RELOC/tex/latex/mmap/ly1.cmap + RELOC/tex/latex/mmap/mmap.sty + RELOC/tex/latex/mmap/oml-m.cmap + RELOC/tex/latex/mmap/oml.cmap + RELOC/tex/latex/mmap/omlbit-m.cmap + RELOC/tex/latex/mmap/omlbit.cmap + RELOC/tex/latex/mmap/omlmit-m.cmap + RELOC/tex/latex/mmap/omlmit.cmap + RELOC/tex/latex/mmap/oms-m.cmap + RELOC/tex/latex/mmap/oms.cmap + RELOC/tex/latex/mmap/omsb-m.cmap + RELOC/tex/latex/mmap/omx-m.cmap + RELOC/tex/latex/mmap/omx.cmap + RELOC/tex/latex/mmap/ot1-m.cmap + RELOC/tex/latex/mmap/ot1.cmap + RELOC/tex/latex/mmap/ot1rbxit-m.cmap + RELOC/tex/latex/mmap/ot1rbxit.cmap + RELOC/tex/latex/mmap/ot1rbxn-m.cmap + RELOC/tex/latex/mmap/ot1rbxn.cmap + RELOC/tex/latex/mmap/ot1rmit-m.cmap + RELOC/tex/latex/mmap/ot1rmit.cmap + RELOC/tex/latex/mmap/ot1rmn-m.cmap + RELOC/tex/latex/mmap/ot1rmn.cmap + RELOC/tex/latex/mmap/ot1ssbxn-m.cmap + RELOC/tex/latex/mmap/ot1ssbxn.cmap + RELOC/tex/latex/mmap/ot1ssmn-m.cmap + RELOC/tex/latex/mmap/ot1ssmn.cmap + RELOC/tex/latex/mmap/ot1ttmn-m.cmap + RELOC/tex/latex/mmap/ot1ttmn.cmap + RELOC/tex/latex/mmap/ot1xxx-m.cmap + RELOC/tex/latex/mmap/t1-m.cmap + RELOC/tex/latex/mmap/t1.cmap + RELOC/tex/latex/mmap/ueuf-m.cmap + RELOC/tex/latex/mmap/ueufb-m.cmap + RELOC/tex/latex/mmap/ulasy-m.cmap + RELOC/tex/latex/mmap/ulasy.cmap + RELOC/tex/latex/mmap/umsa-m.cmap + RELOC/tex/latex/mmap/umsa.cmap + RELOC/tex/latex/mmap/umsb-m.cmap + RELOC/tex/latex/mmap/umsb.cmap + RELOC/tex/latex/mmap/upsy-m.cmap + RELOC/tex/latex/mmap/upsy.cmap + RELOC/tex/latex/mmap/upzd-m.cmap + RELOC/tex/latex/mmap/upzd.cmap +catalogue-also cmap +catalogue-ctan /macros/latex/contrib/mmap +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 1.03 + +name mnotes +category Package +revision 35521 +shortdesc Margin annotation for collaborative writing +relocated 1 +longdesc The package provides a flexible mechanism for annotating, and +longdesc commenting upon, collaboratively-written documents. +containersize 2008 +containerchecksum f95e4cbe33ec00e62aab2b3b9cdddaeceb762ccc34b736b8e2c0d658b3e871134d0a0b8805470f8c4e148057c513dad9cbbf6c1d5076843b2b2fdce03c84dd09 +doccontainersize 211560 +doccontainerchecksum 58c3d8def0ee368f1cb87567aab160b4af10de7137de1901f4c6428531f1d080146ee5cb7f0be73a09216d0aa5580bf4baa8cbcca4c7801a322731f88cadf2ec +docfiles size=54 + RELOC/doc/latex/mnotes/Makefile + RELOC/doc/latex/mnotes/README details="Readme" + RELOC/doc/latex/mnotes/mnotes.pdf details="Readme" +srccontainersize 5448 +srccontainerchecksum 4c0a9077711c44601ab9933cfd46b1ed8c5bb1866fb40ac0707100ed9173bdc67d59f7aab91972e6150ed65e385583dfd9851479c8f0cd651f61a6ab6fe39946 +srcfiles size=5 + RELOC/source/latex/mnotes/mnotes.dtx + RELOC/source/latex/mnotes/mnotes.ins +runfiles size=2 + RELOC/tex/latex/mnotes/mnotes.sty +catalogue-ctan /macros/latex/contrib/mnotes +catalogue-license lppl1.3 +catalogue-topics marginal +catalogue-version 0.8 + +name mnras +category Package +revision 55729 +shortdesc Monthly Notices of the Royal Astronomical Society +relocated 1 +longdesc Package for preparing papers in the journal "Monthly Notices of +longdesc the Royal Astronomical Society". +containersize 25980 +containerchecksum dc964c48272c36f81e1370ac3df6fb3b4e873294f69a565ba240a7c61a5f78fa6b493beae8e78c1ed469c4f34c325af3e53739f1aab5a68e9af356fe6945fdbc +doccontainersize 328176 +doccontainerchecksum 5a6f55ad7e0cdf270856a5efdb6891e2da00d813b2a4279e323dca188d3b3ee43f89ed3fc44452583d45ad83b7c63cf2470371c7975aa068d2595740d31163cb +docfiles size=118 + RELOC/doc/latex/mnras/README.txt details="Readme" + RELOC/doc/latex/mnras/example.bib + RELOC/doc/latex/mnras/example.eps + RELOC/doc/latex/mnras/example.png + RELOC/doc/latex/mnras/example.ps + RELOC/doc/latex/mnras/legacy/legacy.txt + RELOC/doc/latex/mnras/legacy/mn2e.bst + RELOC/doc/latex/mnras/legacy/mn2e.cls + RELOC/doc/latex/mnras/mnras_guide.pdf details="Package documentation" + RELOC/doc/latex/mnras/mnras_guide.tex + RELOC/doc/latex/mnras/mnras_template.tex +runfiles size=27 + RELOC/bibtex/bst/mnras/mnras.bst + RELOC/tex/latex/mnras/mnras.cls +catalogue-ctan /macros/latex/contrib/mnras +catalogue-license lppl1.3 +catalogue-topics journalpub +catalogue-version 3.1 + +name mnsymbol +category Package +revision 18651 +shortdesc Mathematical symbol font for Adobe MinionPro +relocated 1 +longdesc MnSymbol is a symbol font family, designed to be used in +longdesc conjunction with Adobe Minion Pro (via the MinionPro package). +longdesc Almost all of LaTeX and AMS mathematical symbols are provided; +longdesc remaining coverage is available from the MinionPro font with +longdesc the MinionPro package. The fonts are available both as Metafont +longdesc source and as Adobe Type 1 format, and a comprehensive support +longdesc package is provided. While the fonts were designed to fit with +longdesc Minon Pro, the design should fit well with other renaissance or +longdesc baroque faces: indeed, it will probably work with most fonts +longdesc that are neither too wide nor too thin, for example Palatino or +longdesc Times; it is known to look good with Sabon. There is no package +longdesc designed to configure its use with any font other than Minion +longdesc Pro, but (for example) simply loading mnsymbol after mathpazo +longdesc will probably do what is needed. +execute addMap MnSymbol.map +containersize 4426364 +containerchecksum 68df6dcaca1d2f3b743c62e205a22427152ec6ac1deaa126e7511842ad7817ba4a7a232b72b45c6dae88d930837f46597c5f89e50b1057ba313a590157342ff5 +doccontainersize 239032 +doccontainerchecksum bf06a1534665ad50d33073e5d7332337c05f5d5315ba41af399f73f98d54b22a0610c65fa0e96b311925f40bebc1458fd0f0fa9c5fb41330f6d0b9b49aa12aba +docfiles size=76 + RELOC/doc/latex/mnsymbol/MnSymbol.pdf details="Package documentation" + RELOC/doc/latex/mnsymbol/README details="Readme" +srccontainersize 14064 +srccontainerchecksum 1d622e81bfa0c2e61ab64f058a356e66c98f75a2511728bc49c6cb3d998caf132def2f092db7ff18b4283829e7c118368fb09a39ba2e9c05b0a0be5e4cada210 +srcfiles size=35 + RELOC/source/latex/mnsymbol/MnSymbol.drv + RELOC/source/latex/mnsymbol/MnSymbol.dtx + RELOC/source/latex/mnsymbol/MnSymbol.ins +runfiles size=1656 + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolA.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolB.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolC.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolD.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolE.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolF.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolS.enc + RELOC/fonts/map/dvips/mnsymbol/MnSymbol.map + RELOC/fonts/map/vtex/mnsymbol/MnSymbol.ali + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold10.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold12.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold5.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold6.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold7.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold8.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold9.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol10.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol12.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol5.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol6.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol7.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol8.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol9.otf + RELOC/fonts/source/public/mnsymbol/MnSymbol-Parameter.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS9.mf + RELOC/fonts/source/public/mnsymbol/Sym-Accent.mf + RELOC/fonts/source/public/mnsymbol/Sym-Arrows.mf + RELOC/fonts/source/public/mnsymbol/Sym-Base.mf + RELOC/fonts/source/public/mnsymbol/Sym-Delim.mf + RELOC/fonts/source/public/mnsymbol/Sym-Geometric.mf + RELOC/fonts/source/public/mnsymbol/Sym-Init.mf + RELOC/fonts/source/public/mnsymbol/Sym-Operators.mf + RELOC/fonts/source/public/mnsymbol/Sym-Order.mf + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS9.tfm + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold10.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold12.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold5.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold6.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold7.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold8.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold9.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol10.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol12.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol5.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol6.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol7.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol8.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol9.pfb + RELOC/tex/latex/mnsymbol/MnSymbol.sty +catalogue-ctan /fonts/mnsymbol +catalogue-license pd +catalogue-topics font font-mf font-type1 font-symbol-maths +catalogue-version 1.4 + +name modeles-factures-belges-assocs +category Package +revision 50010 +shortdesc Generate invoices for Belgian non-profit organizations +relocated 1 +longdesc This package provides templates and a sty file for generating +longdesc invoices for Belgian non-profit organizations. +containersize 3096 +containerchecksum 870cd893fbb3bd36d9af8a35487fb47f9afeee75c6093fe3fe9167c4db4f0365499e0fd87b4b3debb0212076d1248902014fa374df3fca79108965bf0c3bb07b +doccontainersize 260136 +doccontainerchecksum f879904a96322990beafd7e444040b11fb9d69e93d73df5e5a159d70fd8e033d9a137e1bb4c54e4bbc4f8e5b04151336bed77aab0b46fcbeb531b346855df920 +docfiles size=88 + RELOC/doc/latex/modeles-factures-belges-assocs/LICENSE + RELOC/doc/latex/modeles-factures-belges-assocs/README-facture-banlieues.md + RELOC/doc/latex/modeles-factures-belges-assocs/README-facture-basique.md + RELOC/doc/latex/modeles-factures-belges-assocs/README.md details="Readme" + RELOC/doc/latex/modeles-factures-belges-assocs/doc-modeles-factures-belges-assocs.pdf details="Package documentation" + RELOC/doc/latex/modeles-factures-belges-assocs/doc-modeles-factures-belges-assocs.tex + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues-logo.png + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues-sponsors.png + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues.pdf + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues.tex + RELOC/doc/latex/modeles-factures-belges-assocs/facture-basique.pdf + RELOC/doc/latex/modeles-factures-belges-assocs/facture-basique.tex + RELOC/doc/latex/modeles-factures-belges-assocs/line_bas.png + RELOC/doc/latex/modeles-factures-belges-assocs/line_haut.png +runfiles size=3 + RELOC/tex/latex/modeles-factures-belges-assocs/modeles-factures-belges-associations.sty +catalogue-contact-announce https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/wikis/annonces +catalogue-contact-bugs https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/issues +catalogue-contact-development https://myblog.robert.sebille.name/spip.php?page=contact +catalogue-contact-home https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/wikis/home +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-license lppl1.3c +catalogue-topics invoice +catalogue-version 1.0.1 + +name moderncv +category Package +revision 57496 +shortdesc A modern curriculum vitae class +relocated 1 +longdesc The class provides facilities for typesetting modern +longdesc curriculums vitae, both in a classic and in a casual style. It +longdesc is fairly customizable, allowing you to define your own style +longdesc by changing the colours, the fonts, etc. The template.tex file +longdesc can be used as an example. +depend etoolbox +depend fancyhdr +depend graphics +depend hyperref +depend iftex +depend l3packages +depend microtype +depend tools +depend url +depend xcolor +containersize 30884 +containerchecksum 5afe854478a689c648695480bcece97a3c940e1be7cd0e32f3e1ddb1240e823ffae82f53a5b6a127c62f30a1e339f5dcaf9f7ac8b5da361fd3de80feca719614 +doccontainersize 245668 +doccontainerchecksum 032a9ccb6e91fea7db129146292f3e59866019729f056e4f9e6bcf8db42a0d81a181b214240689fc6643d49a63580e2e8c61e0b9a47562f04af0d24f14bd37b3 +docfiles size=116 + RELOC/doc/latex/moderncv/CHANGELOG + RELOC/doc/latex/moderncv/KNOWN_BUGS + RELOC/doc/latex/moderncv/LICENSE.txt + RELOC/doc/latex/moderncv/README.md details="Readme" + RELOC/doc/latex/moderncv/manual/moderncv_userguide.pdf details="Package documentation" + RELOC/doc/latex/moderncv/manual/moderncv_userguide.tex + RELOC/doc/latex/moderncv/picture.eps + RELOC/doc/latex/moderncv/picture.jpg + RELOC/doc/latex/moderncv/publications.bib + RELOC/doc/latex/moderncv/template.tex +runfiles size=81 + RELOC/tex/latex/moderncv/moderncv.cls + RELOC/tex/latex/moderncv/moderncvbodyi.sty + RELOC/tex/latex/moderncv/moderncvbodyii.sty + RELOC/tex/latex/moderncv/moderncvbodyiii.sty + RELOC/tex/latex/moderncv/moderncvbodyiv.sty + RELOC/tex/latex/moderncv/moderncvbodyv.sty + RELOC/tex/latex/moderncv/moderncvcollection.sty + RELOC/tex/latex/moderncv/moderncvcolorblack.sty + RELOC/tex/latex/moderncv/moderncvcolorblue.sty + RELOC/tex/latex/moderncv/moderncvcolorburgundy.sty + RELOC/tex/latex/moderncv/moderncvcolorgreen.sty + RELOC/tex/latex/moderncv/moderncvcolorgrey.sty + RELOC/tex/latex/moderncv/moderncvcolororange.sty + RELOC/tex/latex/moderncv/moderncvcolorpurple.sty + RELOC/tex/latex/moderncv/moderncvcolorred.sty + RELOC/tex/latex/moderncv/moderncvcompatibility.sty + RELOC/tex/latex/moderncv/moderncvdebugtools.sty + RELOC/tex/latex/moderncv/moderncvfooti.sty + RELOC/tex/latex/moderncv/moderncvheadi.sty + RELOC/tex/latex/moderncv/moderncvheadii.sty + RELOC/tex/latex/moderncv/moderncvheadiii.sty + RELOC/tex/latex/moderncv/moderncvheadiv.sty + RELOC/tex/latex/moderncv/moderncvheadv.sty + RELOC/tex/latex/moderncv/moderncvheadvi.sty + RELOC/tex/latex/moderncv/moderncviconsawesome.sty + RELOC/tex/latex/moderncv/moderncviconsletters.sty + RELOC/tex/latex/moderncv/moderncviconsmarvosym.sty + RELOC/tex/latex/moderncv/moderncvskillmatrix.sty + RELOC/tex/latex/moderncv/moderncvstylebanking.sty + RELOC/tex/latex/moderncv/moderncvstylecasual.sty + RELOC/tex/latex/moderncv/moderncvstyleclassic.sty + RELOC/tex/latex/moderncv/moderncvstyleempty.sty + RELOC/tex/latex/moderncv/moderncvstylefancy.sty + RELOC/tex/latex/moderncv/moderncvstyleoldstyle.sty + RELOC/tex/latex/moderncv/tweaklist.sty +catalogue-contact-bugs https://github.com/moderncv/moderncv/issues +catalogue-contact-development https://github.com/moderncv +catalogue-contact-home https://github.com/moderncv/moderncv +catalogue-contact-repository https://github.com/moderncv/moderncv.git +catalogue-ctan /macros/latex/contrib/moderncv +catalogue-license lppl1.3c +catalogue-topics cv class +catalogue-version 2.1.0 + +name modernposter +category Package +revision 47269 +shortdesc A modern LaTeX poster theme +relocated 1 +longdesc This class extends the a0poster class in that it adds support +longdesc to easily create posters without the need for taking care of +longdesc the layout at all. It allows to use \maketitle to generate a +longdesc fancy header containing the title information and also provides +longdesc macros to position various different types of text boxes in a +longdesc two-column layout. The color scheme is inspired by the +longdesc metropolis beamer theme. +containersize 2552 +containerchecksum d631f058a0a17a841d4026c43fd086cbefd50d0ece85563ee81e34440650bdd7d3db6dd6f49d5e74278872961300bbd443b896586f5c7ea00a9ff816ef20b7a9 +doccontainersize 391208 +doccontainerchecksum 385c8b97c57053d861d72b4f10134cbf2d943e4bcedb55ec42bff51000843db3fe30737f7ada3ce569c1d96584ec0df80afadc39be98c16950828647165f6801 +docfiles size=101 + RELOC/doc/latex/modernposter/README.md details="Readme" + RELOC/doc/latex/modernposter/demo.pdf details="Example of use" + RELOC/doc/latex/modernposter/demo.tex + RELOC/doc/latex/modernposter/modernposter.pdf details="Package documentation" + RELOC/doc/latex/modernposter/modernposter.tex +runfiles size=2 + RELOC/tex/latex/modernposter/modernposter.cls +catalogue-also beamerposter +catalogue-contact-repository https://github.com/derlerd/modernposter +catalogue-ctan /macros/latex/contrib/modernposter +catalogue-license cc-by-sa-4 +catalogue-topics poster class +catalogue-version 1.03.1 + +name moderntimeline +category Package +revision 55518 +shortdesc Timelines for use with moderncv +relocated 1 +longdesc The package provides commands to configure and to draw time +longdesc line diagrams; such diagrams are designed to fit into +longdesc Curriculum Vitae documents written using the moderncv class. +containersize 2516 +containerchecksum 3e32e360bd8249cded439fc563c8fd38e53314fb468251368aa5311463665771748b605c247c63e8e5aea2654dd05c4b12aafa073190b883d21469bb14333de5 +doccontainersize 186684 +doccontainerchecksum 018ad6b095dca602021c45e04a526597ca61f5bb6ec7adb52d86c221649c4b3be94761e826d09ed9772c0628bd9d719f6a4db6ea1411e6d34f94f8c049130855 +docfiles size=47 + RELOC/doc/latex/moderntimeline/README.md details="Readme" + RELOC/doc/latex/moderntimeline/moderntimeline.pdf details="Package documentation" +srccontainersize 6460 +srccontainerchecksum e86a6e1175c1d86e5c0b035ff925107ad0dc80e00f1815161348608e90a7ed5bc9828f896c0d072c386cf695a5f9d1b894eef2c864d403b74a75bc89a9910510 +srcfiles size=7 + RELOC/source/latex/moderntimeline/moderntimeline.dtx + RELOC/source/latex/moderntimeline/moderntimeline.ins +runfiles size=3 + RELOC/tex/latex/moderntimeline/moderntimeline.sty +catalogue-contact-bugs https://github.com/raphink/moderntimeline/issues +catalogue-contact-repository https://github.com/raphink/moderntimeline +catalogue-ctan /macros/latex/contrib/moderntimeline +catalogue-license lppl1.3 +catalogue-topics cv diagram +catalogue-version 0.11 + +name modes +category Package +revision 56303 +shortdesc A collection of Metafont mode_def's +relocated 1 +longdesc The modes file collects all known Metafont modes for printing +longdesc or display devices, of whatever printing technology. Special +longdesc provision is made for write-white printers, and a 'landscape' +longdesc mode is available, for making suitable fonts for printers with +longdesc pixels whose aspect is non-square. The file also provides +longdesc definitions that make \specials identifying the mode in +longdesc Metafont's GF output, and put coding information and other +longdesc Xerox-world information in the TFM file. +containersize 27320 +containerchecksum 09318fcdb58e5175882fd7a2750ae71322d0be227a2131e05c8b9d20879260c9ac906a735582c1fc8229f3ad4e7df7b71d6a2a6ba9b82c653463947d59f9116f +doccontainersize 275948 +doccontainerchecksum dd7d78b8b355d7d056d288c0026d83115878abf91ceb183b48a3505620f0be4c8ef04ed0259a8f5a079c6191f33fc1331e9a3b1660b9312d165914b9176524e8 +docfiles size=78 + RELOC/doc/fonts/modes/ChangeLog + RELOC/doc/fonts/modes/GNUmakefile + RELOC/doc/fonts/modes/README details="Readme" + RELOC/doc/fonts/modes/modedpicheck + RELOC/doc/fonts/modes/modelist.txt + RELOC/doc/fonts/modes/modenames.txt + RELOC/doc/fonts/modes/modes.pdf details="Package documentation" +runfiles size=24 + RELOC/fonts/source/public/modes/modes.mf +catalogue-contact-support https://mail.math.utah.edu/mailman/listinfo/tex-fonts +catalogue-ctan /fonts/modes +catalogue-license pd +catalogue-topics font-devel +catalogue-version 4.2 + +name modiagram +category Package +revision 56886 +shortdesc Drawing molecular orbital diagrams +relocated 1 +longdesc The package provides an environment MOdiagram and some +longdesc commands, to create molecular orbital diagrams using TikZ. For +longdesc example, the MO diagram of dihydrogen would be written as: +longdesc \begin{MOdiagram} \atom{left}{ 1s = {0;up} } \atom{right}{ 1s = +longdesc {0;up} } \molecule{ 1sMO = {1;pair, } } \end{MOdiagram} The +longdesc package also needs the l3kernel and l3packages bundles from the +longdesc LaTeX 3 experimental distribution. +containersize 8876 +containerchecksum 3da30c6f2759d1beebc0f33c61846343b505da9527f2a34ad7e622958802cfd08e1da9ca297003330451aa913b45c872b4eed4cad3f5bf5f8e597a2b0800a09f +doccontainersize 546580 +doccontainerchecksum cc0513fdca073761b8f6f9e34c826af2de587c9c6ef47bbe54b45e60427c5536a2c4743e2c187a9b089eeefe82359962d1081f5dd66fad9072e4c7adcb580763 +docfiles size=145 + RELOC/doc/latex/modiagram/README details="Readme" + RELOC/doc/latex/modiagram/modiagram_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/modiagram/modiagram_en.tex +runfiles size=20 + RELOC/tex/latex/modiagram/modiagram.sty +catalogue-contact-bugs https://bitbucket.org/cgnieder/modiagram/issues +catalogue-contact-repository https://bitbucket.org/cgnieder/modiagram/ +catalogue-ctan /macros/latex/contrib/modiagram +catalogue-license lppl1.3c +catalogue-topics chemistry diagram expl3 +catalogue-version 0.3a + +name modref +category Package +revision 15878 +shortdesc Customisation of cross-references in LaTeX +relocated 1 +longdesc The package contains macros which allow authors to easily +longdesc customise how cross-references appear in their document, both +longdesc in general (across all cross-references) and for particular +longdesc types of references (identified by a prefix in the reference +longdesc label), in a very generic manner. +containersize 2604 +containerchecksum ef5d822fedbd5026903fb7d2630a837a3a1b0222150ee1a9f72a54e13d626a0387abd1fc20b18a257714c63cb65868ac885f8340d35c5453b42323da3b9b0782 +doccontainersize 148376 +doccontainerchecksum f7539376630672b6fc67821045eb8c891b4781d233e1b914f8fc5c255fdcc57ecb6e5ef4d36ae72ceac185e8d2e4aee42741538f27fb3ab1f5160855cfbc8def +docfiles size=42 + RELOC/doc/latex/modref/README details="Readme" + RELOC/doc/latex/modref/modref.pdf details="Package documentation" +srccontainersize 14244 +srccontainerchecksum 370a7287ed60084ce3d92ef722bb1b1c5f49faf6563a154dc2fa2442a60eb2ab06ea1c82d63e5c887b8aea859f9e647a5d80455f9cc87746d2c9be25f4920b47 +srcfiles size=15 + RELOC/source/latex/modref/modref.drv + RELOC/source/latex/modref/modref.dtx + RELOC/source/latex/modref/modref.ins +runfiles size=2 + RELOC/tex/latex/modref/modref.sty +catalogue-also refstyle +catalogue-ctan /macros/latex/contrib/modref +catalogue-license lppl +catalogue-topics label-ref +catalogue-version 1.0 + +name modroman +category Package +revision 29803 +shortdesc Write numbers in lower case roman numerals +relocated 1 +longdesc This package provides only two macros viz. \modromannumeral +longdesc which writes the number given as argument in lower case roman +longdesc numeral with a 'j' instead of a 'i' as the final letter of +longdesc numbers greater than 1 and \modroman{MyCounter} which writes +longdesc the value of a counter in the same way. You use the first in +longdesc the same way as the TeX primitive \romannumeral and the second +longdesc as LaTeX command \roman. The default option is 'vpourv' with +longdesc which 5 is 'translated' as 'v' and option 'upourv' whith which +longdesc the same 5 is given as 'u'. +containersize 2444 +containerchecksum 3314a474cdb88e517fd16943b8f1f1da252608bc5505bd91581e87bca19ea317718d36694abc670d471d0028dcb5fe502a3be1b1294604cecf619de235fe63c8 +doccontainersize 1300104 +doccontainerchecksum 5c6ad1cdad66a5a7285b7c51074f724670880d4417df45cae51e5b3b35bf5cf99f374f7abca73c7ae68d12f626e4b9bf0dddd6b2bc94250c4e6146598d4c5ac6 +docfiles size=427 + RELOC/doc/latex/modroman/MODRdoctools.sty + RELOC/doc/latex/modroman/modroman-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/modroman/modroman-en.tex + RELOC/doc/latex/modroman/modroman-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/modroman/modroman-fr.tex + RELOC/doc/latex/modroman/modroman.dtx + RELOC/doc/latex/modroman/modroman.pdf details="Documentated source (bilingual)" +srccontainersize 18772 +srccontainerchecksum 21e8a2bf6f1d58800452dee77d7a7dc89bd8c952ced6f485b42a2e0b6300df9c823c23f4ab3327d9a367ef8e8d6ba1bae27d3c9bcf875270053c7fa65bcf9f70 +srcfiles size=19 + RELOC/source/latex/modroman/LISEZMOI + RELOC/source/latex/modroman/Makefile + RELOC/source/latex/modroman/README + RELOC/source/latex/modroman/modroman.dtx + RELOC/source/latex/modroman/modroman.ins +runfiles size=2 + RELOC/tex/latex/modroman/modroman.sty +catalogue-ctan /macros/latex/contrib/modroman +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1 + +name modular +category Package +revision 44142 +shortdesc Relative section headings for modular documents +relocated 1 +longdesc LaTeX sections have absolute depth, e.g. \section, \subsection, +longdesc etc. When composing modular documents, we want relative depths. +longdesc The coseoul package provides relative headings, but does not +longdesc get things right when composing a document modularly from +longdesc multiple parts. This package provides the missing piece. +longdesc modular relies on coseoul, import, and ifthen. +containersize 1004 +containerchecksum 13d80f572497551551151c35ac32c09cec70cd40c6d99d36c22ed84bcef509cbfafd511a8e2e284cd06ab1a57f4be7fe556d7e390f9d30135bd20cd49acf362a +doccontainersize 145240 +doccontainerchecksum 7d7201db0a2791700748d440fdc5cca9d8d274ceeacddb3715d99b68b4c04f52949e8b9897377168463059deec86177470a997bfea7a32a2765afda713aed499 +docfiles size=49 + RELOC/doc/latex/modular/README-doc.md + RELOC/doc/latex/modular/README.md details="Readme" + RELOC/doc/latex/modular/article.tex + RELOC/doc/latex/modular/article_fail.tex + RELOC/doc/latex/modular/content.tex + RELOC/doc/latex/modular/coseoul_limitations.tex + RELOC/doc/latex/modular/doc/content.tex + RELOC/doc/latex/modular/doc/example/octopus/article.tex + RELOC/doc/latex/modular/habitat.tex + RELOC/doc/latex/modular/introduction.tex + RELOC/doc/latex/modular/lifecycle.tex + RELOC/doc/latex/modular/modular.pdf details="Package documentation" + RELOC/doc/latex/modular/modular.tex + RELOC/doc/latex/modular/modular_to_the_rescue.tex + RELOC/doc/latex/modular/prerequisites.tex +runfiles size=1 + RELOC/tex/latex/modular/modular.sty +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-license lppl1.3 +catalogue-topics headings file-control + +name modulus +category Package +revision 47599 +shortdesc A non-destructive modulus and integer quotient operator for TeX +relocated 1 +longdesc The package provides an easy way to take the remainder of a +longdesc division operation without destroying the values of the +longdesc counters containing the dividend and divisor. Also provides a +longdesc way to take the integer quotient of a division operation +longdesc without destroying the values of the counters containing the +longdesc dividend and divisor. A tiny but occasionally useful package, +longdesc when doing heavy TeX programming. +containersize 1212 +containerchecksum e5dde62c2e0730befb63612bfd6ea3626463db85b74291df5937d8f7e1995f6b63c8bc6d7e08536ae761457ab1e9a0ddeccf11afa4108910561075dcc03201f6 +doccontainersize 174792 +doccontainerchecksum 965d03005ef257526ffa6667d889a4b238ca5314f4fe8714bc8219ace1e909eb5765da6c0dc94e9b312635e0f9ca096f1d14364effb0045ed467da7c1d735474 +docfiles size=49 + RELOC/doc/generic/modulus/CHANGES + RELOC/doc/generic/modulus/README details="Readme" + RELOC/doc/generic/modulus/lppl.txt + RELOC/doc/generic/modulus/modulus.pdf details="Package documentation" +srccontainersize 3136 +srccontainerchecksum 0f33d1d241e0155eae39875b0ce72019740771c2e36b337255a0865cabeae78c93e24d7f7eddbe7cba9ce312090b251b26a632c260e097a2619d35b47fb050bb +srcfiles size=3 + RELOC/source/generic/modulus/modulus.dtx + RELOC/source/generic/modulus/modulus.ins +runfiles size=1 + RELOC/tex/generic/modulus/modulus.sty +catalogue-ctan /macros/generic/modulus +catalogue-license lppl1.3c +catalogue-topics calculation +catalogue-version 1.0 + +name mongolian-babel +category Package +revision 15878 +shortdesc A language definition file for Mongolian in Babel +relocated 1 +longdesc This package provides support for Mongolian in a Cyrillic +longdesc alphabet. (The work derives from the earlier Russian work for +longdesc babel.) +containersize 5300 +containerchecksum a4e7abdc0b5817d88ad442e693fefe79df224a74f37d09b630fd7ded16e1335f563ca00a26aee8ba4b46b7516c0fa2f5dc9d37ec00455b11223e46a6e289cc01 +doccontainersize 89416 +doccontainerchecksum d0aa4f4a7f1b22d3d3a6a96b85d4d72acb71ee6b1374b70008b966ca2401b7b9434bca675601cc1cdf2f013520eb82c2cb193634b3ac9f9b9d40a201d10dbd58 +docfiles size=28 + RELOC/doc/latex/mongolian-babel/README + RELOC/doc/latex/mongolian-babel/mongolian.pdf details="Package documentation" +srccontainersize 12068 +srccontainerchecksum 07e75b2c9bb6c7596d698e0f31d8194ab5cc4e06f5ca472cc706214c342960378376406bdc0eef0940ac0179e989a92af496069ffb25ed75f5b3a0d5fe639517 +srcfiles size=12 + RELOC/source/latex/mongolian-babel/mongolian.dtx + RELOC/source/latex/mongolian-babel/mongolian.ins +runfiles size=6 + RELOC/tex/latex/mongolian-babel/mn.def + RELOC/tex/latex/mongolian-babel/mongolian.ldf + RELOC/tex/latex/mongolian-babel/mongolian.sty +catalogue-ctan /language/mongolian/babel +catalogue-license lppl +catalogue-topics mongolian multilingual-addon +catalogue-version 1.2 + +name monofill +category Package +revision 28140 +shortdesc Alignment of plain text +relocated 1 +longdesc The package provides horizontal alignment, as in the LaTeX +longdesc command \listfiles (or the author's longnamefilelist package). +longdesc Uses may include in-text tables, or even code listings. +containersize 4116 +containerchecksum 6b9a45c32bd44aa01119c7bd8304ba8e5953422c14bfeaacad20f012188f9204c19f432719c74d9481a00611a18d4ef1ba2c1dc858b83b8a25205d40568e5fa3 +doccontainersize 290600 +doccontainerchecksum edb00621e74238c09d0ca0c04e5c57589012ef2272f0b470345845ddedd647c73fffc0fcaf4741726214b2419e9581127375ba2b36948ec73f4caef561c3e57c +docfiles size=83 + RELOC/doc/latex/monofill/Announce.txt + RELOC/doc/latex/monofill/README details="Readme" + RELOC/doc/latex/monofill/SrcFILEs.txt + RELOC/doc/latex/monofill/monofill.pdf details="Package documentation" +srccontainersize 3000 +srccontainerchecksum fba90d74e9b12086fb4dd431eba4bb3349a83a2b839db1f1a1f7f076e3568cdada03de56570bd38e937eb51a76990ab39778a1832ad233067025ae24877b279d +srcfiles size=3 + RELOC/source/latex/monofill/monofill.tex + RELOC/source/latex/monofill/srcfiles.tex +runfiles size=4 + RELOC/tex/latex/monofill/monofill.RLS + 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-license lppl1.3 +catalogue-topics alignment +catalogue-version 0.2 + +name montex +category Package +revision 29349 +shortdesc Mongolian LaTeX +relocated 1 +longdesc MonTeX provides Mongolian and Manju support for the TeX/LaTeX +longdesc community. Mongolian is a language spoken in North East Asia, +longdesc namely Mongolia and the Inner Mongol Autonomous Region of +longdesc China. Today, it is written in an extended Cyrillic alphabet in +longdesc Mongolia whereas the Uighur writing continues to be in use in +longdesc Inner Mongolia, though it is also, legally speaking, the +longdesc official writing system of Mongolia. Manju is another language +longdesc of North East Asia, belonging to the Tungusic branch of the +longdesc Altaic languages. Though it is hardly spoken nowadays, it +longdesc survives in written form as Manju was the native language of +longdesc the rulers of the Qing dynasty (1644-1911) in China. Large +longdesc quantities of documents of the Imperial Archives survive, as +longdesc well as some of the finest dictionaries ever compiled in Asia, +longdesc like the Pentaglot, a dictionary comprising Manju, Tibetan, +longdesc Mongolian, Uighur and Chinese. MonTeX provides all necessary +longdesc characters for writing standard Mongolian in Cyrillic and +longdesc Classical (aka Traditional or Uighur) writing, and Manju as +longdesc well as transliterated Tibetan texts, for which purpose a +longdesc number of additional characters was created. In MonTeX, both +longdesc Mongolian and Manju are entered in romanized form. The +longdesc retransliteration (from Latin input to Mongolian and Manju +longdesc output) is completely realized in TeX/Metafont so that no +longdesc external preprocessor is required. Please note that most of the +longdesc enhanced functions of MonTeX require a working e-LaTeX +longdesc environment. This is especially true when compiling documents +longdesc with Mongolian or Manju as the main document language. It is +longdesc recommended to choose pdfelatex as the resulting PDF files are +longdesc truly portable. Vertical text generated by MonTeX is not +longdesc supported in DVI. +depend cbfonts +execute addMixedMap mongolian.map +containersize 1612052 +containerchecksum 9676cef9e0fbe7a0196b1ea0fb3ea4f0399a3ee8ed76ef06e824848a57922dc4f7cc1f50a1fcea47fc265465407653447ab80e80dbac3c4bc00488d0929f87bc +doccontainersize 721228 +doccontainerchecksum 1965f31e28a9f54d86a495b4b8cea50dc59f409d066918dedf77f86448b60ea547565dcf2069ee0e0a646d53f34d244868600951c4b1a4d4e099fe50e3c2b477 +docfiles size=504 + RELOC/doc/latex/montex/00README + RELOC/doc/latex/montex/00readme.mfinput.km + RELOC/doc/latex/montex/ANNOUNCE + RELOC/doc/latex/montex/EMTEX + RELOC/doc/latex/montex/HISTORY + RELOC/doc/latex/montex/INSTALL + RELOC/doc/latex/montex/MIKTEX + RELOC/doc/latex/montex/TODO + RELOC/doc/latex/montex/UPDATE + RELOC/doc/latex/montex/cyrename.pl + RELOC/doc/latex/montex/fontlist.tex + RELOC/doc/latex/montex/mfinput/bithe/testfont.input + RELOC/doc/latex/montex/mfinput/bithe/testfont.sh + RELOC/doc/latex/montex/mkmlsmf.pl + RELOC/doc/latex/montex/mls-diag.tex + RELOC/doc/latex/montex/mlsquick.pdf + RELOC/doc/latex/montex/mlsquick.tex + RELOC/doc/latex/montex/mnhyphen.tex + RELOC/doc/latex/montex/montex.pdf details="Package documentation" + RELOC/doc/latex/montex/montex.tex + RELOC/doc/latex/montex/montex.xml + RELOC/doc/latex/montex/mtdocmac.tex + RELOC/doc/latex/montex/testfont.input + RELOC/doc/latex/montex/testfont.sh + RELOC/doc/latex/montex/zanabazr.pdf + RELOC/doc/latex/montex/zanabazr.tex +runfiles size=848 + RELOC/fonts/map/dvips/montex/mongolian.map + RELOC/fonts/source/public/montex/bcghsb.mf + RELOC/fonts/source/public/montex/bcghsm.mf + RELOC/fonts/source/public/montex/bcghwb.mf + RELOC/fonts/source/public/montex/bcghwm.mf + RELOC/fonts/source/public/montex/bcgvsb.mf + RELOC/fonts/source/public/montex/bcgvsm.mf + RELOC/fonts/source/public/montex/bcgvwb.mf + RELOC/fonts/source/public/montex/bcgvwm.mf + RELOC/fonts/source/public/montex/bicighb.mf + RELOC/fonts/source/public/montex/bicighm.mf + RELOC/fonts/source/public/montex/bicigvb.mf + RELOC/fonts/source/public/montex/bicigvm.mf + RELOC/fonts/source/public/montex/bthhsb.mf + RELOC/fonts/source/public/montex/bthhsm.mf + RELOC/fonts/source/public/montex/bthhwb.mf + RELOC/fonts/source/public/montex/bthhwm.mf + RELOC/fonts/source/public/montex/bthvsb.mf + RELOC/fonts/source/public/montex/bthvsm.mf + RELOC/fonts/source/public/montex/bthvwb.mf + RELOC/fonts/source/public/montex/bthvwm.mf + RELOC/fonts/source/public/montex/bxghsb.mf + RELOC/fonts/source/public/montex/bxghsm.mf + RELOC/fonts/source/public/montex/bxghwb.mf + RELOC/fonts/source/public/montex/bxghwm.mf + RELOC/fonts/source/public/montex/bxgvsb.mf + RELOC/fonts/source/public/montex/bxgvsm.mf + RELOC/fonts/source/public/montex/bxgvwb.mf + RELOC/fonts/source/public/montex/bxgvwm.mf + RELOC/fonts/source/public/montex/cyrmorec.mf + RELOC/fonts/source/public/montex/cyrmorei.mf + RELOC/fonts/source/public/montex/cyrmorel.mf + RELOC/fonts/source/public/montex/cyrmoreu.mf + RELOC/fonts/source/public/montex/kmb10.mf + RELOC/fonts/source/public/montex/kmbx10.mf + RELOC/fonts/source/public/montex/kmbx12.mf + RELOC/fonts/source/public/montex/kmbx5.mf + RELOC/fonts/source/public/montex/kmbx6.mf + RELOC/fonts/source/public/montex/kmbx7.mf + RELOC/fonts/source/public/montex/kmbx8.mf + RELOC/fonts/source/public/montex/kmbx9.mf + RELOC/fonts/source/public/montex/kmbxsl10.mf + RELOC/fonts/source/public/montex/kmbxti10.mf + RELOC/fonts/source/public/montex/kmcsc10.mf + RELOC/fonts/source/public/montex/kmcsc8.mf + RELOC/fonts/source/public/montex/kmcsc9.mf + RELOC/fonts/source/public/montex/kmdunh10.mf + RELOC/fonts/source/public/montex/kmff10.mf + RELOC/fonts/source/public/montex/kmfi10.mf + RELOC/fonts/source/public/montex/kmfib8.mf + RELOC/fonts/source/public/montex/kminch.mf + RELOC/fonts/source/public/montex/kmitt10.mf + RELOC/fonts/source/public/montex/kmr10.mf + RELOC/fonts/source/public/montex/kmr12.mf + RELOC/fonts/source/public/montex/kmr17.mf + RELOC/fonts/source/public/montex/kmr5.mf + RELOC/fonts/source/public/montex/kmr6.mf + RELOC/fonts/source/public/montex/kmr7.mf + RELOC/fonts/source/public/montex/kmr8.mf + RELOC/fonts/source/public/montex/kmr9.mf + RELOC/fonts/source/public/montex/kmsl10.mf + RELOC/fonts/source/public/montex/kmsl12.mf + RELOC/fonts/source/public/montex/kmsl8.mf + RELOC/fonts/source/public/montex/kmsl9.mf + RELOC/fonts/source/public/montex/kmsltt10.mf + RELOC/fonts/source/public/montex/kmss10.mf + RELOC/fonts/source/public/montex/kmss12.mf + RELOC/fonts/source/public/montex/kmss17.mf + RELOC/fonts/source/public/montex/kmss8.mf + RELOC/fonts/source/public/montex/kmss9.mf + RELOC/fonts/source/public/montex/kmssbx10.mf + RELOC/fonts/source/public/montex/kmssdc10.mf + RELOC/fonts/source/public/montex/kmssi10.mf + RELOC/fonts/source/public/montex/kmssi12.mf + RELOC/fonts/source/public/montex/kmssi17.mf + RELOC/fonts/source/public/montex/kmssi8.mf + RELOC/fonts/source/public/montex/kmssi9.mf + RELOC/fonts/source/public/montex/kmssq8.mf + RELOC/fonts/source/public/montex/kmssqi8.mf + RELOC/fonts/source/public/montex/kmtcsc10.mf + RELOC/fonts/source/public/montex/kmti10.mf + RELOC/fonts/source/public/montex/kmti12.mf + RELOC/fonts/source/public/montex/kmti7.mf + RELOC/fonts/source/public/montex/kmti8.mf + RELOC/fonts/source/public/montex/kmti9.mf + RELOC/fonts/source/public/montex/kmtt10.mf + RELOC/fonts/source/public/montex/kmtt12.mf + RELOC/fonts/source/public/montex/kmtt8.mf + RELOC/fonts/source/public/montex/kmtt9.mf + RELOC/fonts/source/public/montex/kmu10.mf + RELOC/fonts/source/public/montex/kmvtt10.mf + RELOC/fonts/source/public/montex/kmvtti10.mf + RELOC/fonts/source/public/montex/lmligs.mf + RELOC/fonts/source/public/montex/macodes.mf + RELOC/fonts/source/public/montex/maglyphs.mf + RELOC/fonts/source/public/montex/mantrlig.mf + RELOC/fonts/source/public/montex/mbatoms.mf + RELOC/fonts/source/public/montex/mbcodes.mf + RELOC/fonts/source/public/montex/mbglyphs.mf + RELOC/fonts/source/public/montex/mbligtbl.mf + RELOC/fonts/source/public/montex/mbnums.mf + RELOC/fonts/source/public/montex/mbparmb.mf + RELOC/fonts/source/public/montex/mbparmm.mf + RELOC/fonts/source/public/montex/mbparms.mf + RELOC/fonts/source/public/montex/mbpunc.mf + RELOC/fonts/source/public/montex/mcccscco.mf + RELOC/fonts/source/public/montex/mccoding.mf + RELOC/fonts/source/public/montex/mctextit.mf + RELOC/fonts/source/public/montex/mcyccsc.mf + RELOC/fonts/source/public/montex/mcyitall.mf + RELOC/fonts/source/public/montex/mcyrill.mf + RELOC/fonts/source/public/montex/mcyrl.mf + RELOC/fonts/source/public/montex/mcyrligs.mf + RELOC/fonts/source/public/montex/mcyrsymb.mf + RELOC/fonts/source/public/montex/mcyru.mf + RELOC/fonts/source/public/montex/mcytitle.mf + RELOC/fonts/source/public/montex/mlscodes.mf + RELOC/fonts/source/public/montex/mocodes.mf + RELOC/fonts/source/public/montex/moglyphs.mf + RELOC/fonts/source/public/montex/montrlig.mf + RELOC/fonts/source/public/montex/mxcodes.mf + RELOC/fonts/source/public/montex/mxglyphs.mf + RELOC/fonts/source/public/montex/mxntrlig.mf + RELOC/fonts/tfm/public/montex/bcghsb.tfm + RELOC/fonts/tfm/public/montex/bcghsm.tfm + RELOC/fonts/tfm/public/montex/bcghwb.tfm + RELOC/fonts/tfm/public/montex/bcghwm.tfm + RELOC/fonts/tfm/public/montex/bcgvsb.tfm + RELOC/fonts/tfm/public/montex/bcgvsm.tfm + RELOC/fonts/tfm/public/montex/bcgvwb.tfm + RELOC/fonts/tfm/public/montex/bcgvwm.tfm + RELOC/fonts/tfm/public/montex/bicighb.tfm + RELOC/fonts/tfm/public/montex/bicighm.tfm + RELOC/fonts/tfm/public/montex/bicigvb.tfm + RELOC/fonts/tfm/public/montex/bicigvm.tfm + RELOC/fonts/tfm/public/montex/bthhsb.tfm + RELOC/fonts/tfm/public/montex/bthhsm.tfm + RELOC/fonts/tfm/public/montex/bthhwb.tfm + RELOC/fonts/tfm/public/montex/bthhwm.tfm + RELOC/fonts/tfm/public/montex/bthvsb.tfm + RELOC/fonts/tfm/public/montex/bthvsm.tfm + RELOC/fonts/tfm/public/montex/bthvwb.tfm + RELOC/fonts/tfm/public/montex/bthvwm.tfm + RELOC/fonts/tfm/public/montex/bxghsb.tfm + RELOC/fonts/tfm/public/montex/bxghsm.tfm + RELOC/fonts/tfm/public/montex/bxghwb.tfm + RELOC/fonts/tfm/public/montex/bxghwm.tfm + RELOC/fonts/tfm/public/montex/bxgvsb.tfm + RELOC/fonts/tfm/public/montex/bxgvsm.tfm + RELOC/fonts/tfm/public/montex/bxgvwb.tfm + RELOC/fonts/tfm/public/montex/bxgvwm.tfm + RELOC/fonts/tfm/public/montex/kmb10.tfm + RELOC/fonts/tfm/public/montex/kmbx10.tfm + RELOC/fonts/tfm/public/montex/kmbx12.tfm + RELOC/fonts/tfm/public/montex/kmbx5.tfm + RELOC/fonts/tfm/public/montex/kmbx6.tfm + RELOC/fonts/tfm/public/montex/kmbx7.tfm + RELOC/fonts/tfm/public/montex/kmbx8.tfm + RELOC/fonts/tfm/public/montex/kmbx9.tfm + RELOC/fonts/tfm/public/montex/kmbxsl10.tfm + RELOC/fonts/tfm/public/montex/kmbxti10.tfm + RELOC/fonts/tfm/public/montex/kmcsc10.tfm + RELOC/fonts/tfm/public/montex/kmcsc8.tfm + RELOC/fonts/tfm/public/montex/kmcsc9.tfm + RELOC/fonts/tfm/public/montex/kmdunh10.tfm + RELOC/fonts/tfm/public/montex/kmff10.tfm + RELOC/fonts/tfm/public/montex/kmfi10.tfm + RELOC/fonts/tfm/public/montex/kmfib8.tfm + RELOC/fonts/tfm/public/montex/kminch.tfm + RELOC/fonts/tfm/public/montex/kmitt10.tfm + RELOC/fonts/tfm/public/montex/kmr10.tfm + RELOC/fonts/tfm/public/montex/kmr12.tfm + RELOC/fonts/tfm/public/montex/kmr17.tfm + RELOC/fonts/tfm/public/montex/kmr5.tfm + RELOC/fonts/tfm/public/montex/kmr6.tfm + RELOC/fonts/tfm/public/montex/kmr7.tfm + RELOC/fonts/tfm/public/montex/kmr8.tfm + RELOC/fonts/tfm/public/montex/kmr9.tfm + RELOC/fonts/tfm/public/montex/kmsl10.tfm + RELOC/fonts/tfm/public/montex/kmsl12.tfm + RELOC/fonts/tfm/public/montex/kmsl8.tfm + RELOC/fonts/tfm/public/montex/kmsl9.tfm + RELOC/fonts/tfm/public/montex/kmsltt10.tfm + RELOC/fonts/tfm/public/montex/kmss10.tfm + RELOC/fonts/tfm/public/montex/kmss12.tfm + RELOC/fonts/tfm/public/montex/kmss17.tfm + RELOC/fonts/tfm/public/montex/kmss8.tfm + RELOC/fonts/tfm/public/montex/kmss9.tfm + RELOC/fonts/tfm/public/montex/kmssbx10.tfm + RELOC/fonts/tfm/public/montex/kmssdc10.tfm + RELOC/fonts/tfm/public/montex/kmssi10.tfm + RELOC/fonts/tfm/public/montex/kmssi12.tfm + RELOC/fonts/tfm/public/montex/kmssi17.tfm + RELOC/fonts/tfm/public/montex/kmssi8.tfm + RELOC/fonts/tfm/public/montex/kmssi9.tfm + RELOC/fonts/tfm/public/montex/kmssq8.tfm + RELOC/fonts/tfm/public/montex/kmssqi8.tfm + RELOC/fonts/tfm/public/montex/kmtcsc10.tfm + RELOC/fonts/tfm/public/montex/kmti10.tfm + RELOC/fonts/tfm/public/montex/kmti12.tfm + RELOC/fonts/tfm/public/montex/kmti7.tfm + RELOC/fonts/tfm/public/montex/kmti8.tfm + RELOC/fonts/tfm/public/montex/kmti9.tfm + RELOC/fonts/tfm/public/montex/kmtt10.tfm + RELOC/fonts/tfm/public/montex/kmtt12.tfm + RELOC/fonts/tfm/public/montex/kmtt8.tfm + RELOC/fonts/tfm/public/montex/kmtt9.tfm + RELOC/fonts/tfm/public/montex/kmu10.tfm + RELOC/fonts/tfm/public/montex/kmvtt10.tfm + RELOC/fonts/tfm/public/montex/kmvtti10.tfm + RELOC/fonts/type1/public/montex/bcghsb.pfb + RELOC/fonts/type1/public/montex/bcghsm.pfb + RELOC/fonts/type1/public/montex/bcghwb.pfb + RELOC/fonts/type1/public/montex/bcghwm.pfb + RELOC/fonts/type1/public/montex/bcgvsb.pfb + RELOC/fonts/type1/public/montex/bcgvsm.pfb + RELOC/fonts/type1/public/montex/bcgvwb.pfb + RELOC/fonts/type1/public/montex/bcgvwm.pfb + RELOC/fonts/type1/public/montex/bicighb.pfb + RELOC/fonts/type1/public/montex/bicighm.pfb + RELOC/fonts/type1/public/montex/bicigvb.pfb + RELOC/fonts/type1/public/montex/bicigvm.pfb + RELOC/fonts/type1/public/montex/bthhsb.pfb + RELOC/fonts/type1/public/montex/bthhsm.pfb + RELOC/fonts/type1/public/montex/bthhwb.pfb + RELOC/fonts/type1/public/montex/bthhwm.pfb + RELOC/fonts/type1/public/montex/bthvsb.pfb + RELOC/fonts/type1/public/montex/bthvsm.pfb + RELOC/fonts/type1/public/montex/bthvwb.pfb + RELOC/fonts/type1/public/montex/bthvwm.pfb + RELOC/fonts/type1/public/montex/bxghsb.pfb + RELOC/fonts/type1/public/montex/bxghsm.pfb + RELOC/fonts/type1/public/montex/bxghwb.pfb + RELOC/fonts/type1/public/montex/bxghwm.pfb + RELOC/fonts/type1/public/montex/bxgvsb.pfb + RELOC/fonts/type1/public/montex/bxgvsm.pfb + RELOC/fonts/type1/public/montex/bxgvwb.pfb + RELOC/fonts/type1/public/montex/bxgvwm.pfb + RELOC/fonts/type1/public/montex/kmbx10.pfb + RELOC/fonts/type1/public/montex/kmr10.pfb + RELOC/fonts/type1/public/montex/kmss10.pfb + RELOC/tex/latex/montex/bicig.def + RELOC/tex/latex/montex/bithe.def + RELOC/tex/latex/montex/buryat.def + RELOC/tex/latex/montex/cpctt.def + RELOC/tex/latex/montex/cpdbk.def + RELOC/tex/latex/montex/cpibmrus.def + RELOC/tex/latex/montex/cpkoi.def + RELOC/tex/latex/montex/cpmls.def + RELOC/tex/latex/montex/cpmnk.def + RELOC/tex/latex/montex/cpmos.def + RELOC/tex/latex/montex/cpncc.def + RELOC/tex/latex/montex/english.def + RELOC/tex/latex/montex/kazakh.def + RELOC/tex/latex/montex/lmabthhs.fd + RELOC/tex/latex/montex/lmabthhw.fd + RELOC/tex/latex/montex/lmabthvs.fd + RELOC/tex/latex/montex/lmabthvw.fd + RELOC/tex/latex/montex/lmaenc.def + RELOC/tex/latex/montex/lmccmdh.fd + RELOC/tex/latex/montex/lmccmfib.fd + RELOC/tex/latex/montex/lmccmfr.fd + RELOC/tex/latex/montex/lmccmiss.fd + RELOC/tex/latex/montex/lmccmr.fd + RELOC/tex/latex/montex/lmccmss.fd + RELOC/tex/latex/montex/lmccmssq.fd + RELOC/tex/latex/montex/lmccmtt.fd + RELOC/tex/latex/montex/lmccmvtt.fd + RELOC/tex/latex/montex/lmcenc.def + RELOC/tex/latex/montex/lmclcmss.fd + RELOC/tex/latex/montex/lmobcghs.fd + RELOC/tex/latex/montex/lmobcghw.fd + RELOC/tex/latex/montex/lmobcgvs.fd + RELOC/tex/latex/montex/lmobcgvw.fd + RELOC/tex/latex/montex/lmoenc.def + RELOC/tex/latex/montex/lmsbcgh.fd + RELOC/tex/latex/montex/lmsbcgv.fd + RELOC/tex/latex/montex/lmsenc.def + RELOC/tex/latex/montex/lmubxghs.fd + RELOC/tex/latex/montex/lmubxghw.fd + RELOC/tex/latex/montex/lmubxgvs.fd + RELOC/tex/latex/montex/lmubxgvw.fd + RELOC/tex/latex/montex/lmuenc.def + RELOC/tex/latex/montex/mls.sty + RELOC/tex/latex/montex/mlsgalig.tex + RELOC/tex/latex/montex/mlstrans.tex + RELOC/tex/latex/montex/mnhyphex.tex + RELOC/tex/latex/montex/rlbicig.sty + RELOC/tex/latex/montex/russian.def + RELOC/tex/latex/montex/xalx.def +catalogue-ctan /language/mongolian/montex +catalogue-license gpl +catalogue-topics mongolian font font-mf +catalogue-version IVu.04.092 + +name montserrat +category Package +revision 54512 +shortdesc Montserrat sans serif, otf and pfb, with LaTeX support files +relocated 1 +longdesc Montserrat is a geometric sans-serif typeface designed by +longdesc Julieta Ulanovsky, inspired by posters and signage from her +longdesc historical Buenos Aires neighborhood of the same name. It is +longdesc rather close in spirit to Gotham and Proxima Nova, but has its +longdesc own individual appearance -- more informal, less extended, and +longdesc more idiosyncratic. It is provided in a total of nine different +longdesc weights, each having eight figure styles and small caps in both +longdesc upright and italic shapes. There are two quite different +longdesc versions that don't fit into the usual LaTeX classifications. +longdesc The version having the appellation "Alternates" has letter +longdesc shapes that are much more rounded than the default version, +longdesc reflecting the signage in the neighborhood of Montserrat. +execute addMap Montserrat.map +containersize 13215444 +containerchecksum 58c8b4a1f6eceb10c7fef8e6dd951985ae6108cb3f93eedf20949923237cb8af6a834674dcea48b1c68b51284ef37fe2d4120d52fee82753fd873f60b585e685 +doccontainersize 490212 +doccontainerchecksum 694ee7f51b0fe1622981bfa636263bbe18f89ec481071af587a683648f4ee900d9100864e51669d65b9952e6acf64794b5610989d2bd86f6e4701e1e41193242 +docfiles size=132 + RELOC/doc/fonts/montserrat/FONTLOG.txt + RELOC/doc/fonts/montserrat/OFL-FAQ.txt + RELOC/doc/fonts/montserrat/OFL.txt + RELOC/doc/fonts/montserrat/README details="Readme" + RELOC/doc/fonts/montserrat/montserrat-doc.pdf details="Package documentation" + RELOC/doc/fonts/montserrat/montserrat-doc.tex +runfiles size=15341 + RELOC/fonts/enc/dvips/montserrat/zmo_2lqlus.enc + RELOC/fonts/enc/dvips/montserrat/zmo_2sgwql.enc + RELOC/fonts/enc/dvips/montserrat/zmo_35ovjx.enc + RELOC/fonts/enc/dvips/montserrat/zmo_46isxp.enc + RELOC/fonts/enc/dvips/montserrat/zmo_5xld5w.enc + RELOC/fonts/enc/dvips/montserrat/zmo_75k7z2.enc + RELOC/fonts/enc/dvips/montserrat/zmo_7l4c7j.enc + RELOC/fonts/enc/dvips/montserrat/zmo_7l6pgo.enc + RELOC/fonts/enc/dvips/montserrat/zmo_7sawpm.enc + RELOC/fonts/enc/dvips/montserrat/zmo_7yzfgj.enc + RELOC/fonts/enc/dvips/montserrat/zmo_b4nxop.enc + RELOC/fonts/enc/dvips/montserrat/zmo_b657mx.enc + RELOC/fonts/enc/dvips/montserrat/zmo_bapnwu.enc + RELOC/fonts/enc/dvips/montserrat/zmo_bhkf55.enc + RELOC/fonts/enc/dvips/montserrat/zmo_blyc36.enc + RELOC/fonts/enc/dvips/montserrat/zmo_c4h6ot.enc + RELOC/fonts/enc/dvips/montserrat/zmo_cm3oqe.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ctxcke.enc + RELOC/fonts/enc/dvips/montserrat/zmo_drbxok.enc + RELOC/fonts/enc/dvips/montserrat/zmo_dvhcr3.enc + RELOC/fonts/enc/dvips/montserrat/zmo_each7f.enc + RELOC/fonts/enc/dvips/montserrat/zmo_f6ejpj.enc + RELOC/fonts/enc/dvips/montserrat/zmo_fbdit4.enc + RELOC/fonts/enc/dvips/montserrat/zmo_fkzqgd.enc + RELOC/fonts/enc/dvips/montserrat/zmo_fmi5lv.enc + RELOC/fonts/enc/dvips/montserrat/zmo_gcixud.enc + RELOC/fonts/enc/dvips/montserrat/zmo_h6jra2.enc + RELOC/fonts/enc/dvips/montserrat/zmo_hlvv6p.enc + RELOC/fonts/enc/dvips/montserrat/zmo_jb2i34.enc + RELOC/fonts/enc/dvips/montserrat/zmo_jhzg4t.enc + RELOC/fonts/enc/dvips/montserrat/zmo_jjp77t.enc + RELOC/fonts/enc/dvips/montserrat/zmo_jjwbah.enc + RELOC/fonts/enc/dvips/montserrat/zmo_jo7tnr.enc + RELOC/fonts/enc/dvips/montserrat/zmo_k7iqhv.enc + RELOC/fonts/enc/dvips/montserrat/zmo_li2ufe.enc + RELOC/fonts/enc/dvips/montserrat/zmo_lzhlbi.enc + RELOC/fonts/enc/dvips/montserrat/zmo_mp47y7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_mwlday.enc + RELOC/fonts/enc/dvips/montserrat/zmo_n2k42m.enc + RELOC/fonts/enc/dvips/montserrat/zmo_nszfm3.enc + RELOC/fonts/enc/dvips/montserrat/zmo_nwaz6g.enc + RELOC/fonts/enc/dvips/montserrat/zmo_pdf5b7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_poz7al.enc + RELOC/fonts/enc/dvips/montserrat/zmo_q22ex3.enc + RELOC/fonts/enc/dvips/montserrat/zmo_qex2f4.enc + RELOC/fonts/enc/dvips/montserrat/zmo_qs57ix.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ro7vi7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_rrs54x.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ssrkmg.enc + RELOC/fonts/enc/dvips/montserrat/zmo_t44pvm.enc + RELOC/fonts/enc/dvips/montserrat/zmo_tq4ocg.enc + RELOC/fonts/enc/dvips/montserrat/zmo_tti6co.enc + RELOC/fonts/enc/dvips/montserrat/zmo_tygrj7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_umrhwx.enc + RELOC/fonts/enc/dvips/montserrat/zmo_upca4a.enc + RELOC/fonts/enc/dvips/montserrat/zmo_w4rwtq.enc + RELOC/fonts/enc/dvips/montserrat/zmo_wxmaut.enc + RELOC/fonts/enc/dvips/montserrat/zmo_wzhhkn.enc + RELOC/fonts/enc/dvips/montserrat/zmo_x2ovsi.enc + RELOC/fonts/enc/dvips/montserrat/zmo_xcjjqo.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ylc3fo.enc + RELOC/fonts/enc/dvips/montserrat/zmo_zmgh2c.enc + RELOC/fonts/enc/dvips/montserrat/zmo_znhcko.enc + RELOC/fonts/enc/dvips/montserrat/zmo_zrxj4s.enc + RELOC/fonts/map/dvips/montserrat/Montserrat.map + RELOC/fonts/opentype/public/montserrat/Montserrat-Black.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-BlackItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Bold.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-BoldItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraBold.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraLight.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraLightItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Italic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Light.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-LightItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Medium.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-MediumItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Regular.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-SemiBold.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-SemiBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Thin.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ThinItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Black.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-BlackItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Bold.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-BoldItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraBold.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraLight.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraLightItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Italic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Light.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-LightItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Medium.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-MediumItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Regular.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-SemiBold.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-SemiBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Thin.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ThinItalic.otf + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/montserrat/Montserrat-Black.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-BlackItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Bold.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-BoldItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraBold.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraLight.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraLightItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Italic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Light.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-LightItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Medium.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-MediumItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Regular.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-SemiBold.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-SemiBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Thin.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ThinItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Black.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-BlackItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Bold.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-BoldItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraBold.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraLight.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraLightItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Italic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Light.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-LightItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Medium.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-MediumItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Regular.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-SemiBold.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-SemiBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Thin.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ThinItalic.pfb + RELOC/fonts/vf/public/montserrat/Montserrat-Black-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-ts1.vf + RELOC/tex/latex/montserrat/LY1Montserrat-Dnom.fd + RELOC/tex/latex/montserrat/LY1Montserrat-Inf.fd + RELOC/tex/latex/montserrat/LY1Montserrat-LF.fd + RELOC/tex/latex/montserrat/LY1Montserrat-Numr.fd + RELOC/tex/latex/montserrat/LY1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/LY1Montserrat-Sup.fd + RELOC/tex/latex/montserrat/LY1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/LY1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Dnom.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Inf.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Numr.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Sup.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Dnom.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Inf.fd + RELOC/tex/latex/montserrat/OT1Montserrat-LF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Numr.fd + RELOC/tex/latex/montserrat/OT1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Sup.fd + RELOC/tex/latex/montserrat/OT1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Dnom.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Inf.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Numr.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Sup.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/T1Montserrat-Dnom.fd + RELOC/tex/latex/montserrat/T1Montserrat-Inf.fd + RELOC/tex/latex/montserrat/T1Montserrat-LF.fd + RELOC/tex/latex/montserrat/T1Montserrat-Numr.fd + RELOC/tex/latex/montserrat/T1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/T1Montserrat-Sup.fd + RELOC/tex/latex/montserrat/T1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/T1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Dnom.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Inf.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Numr.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Sup.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-LF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/montserrat.fontspec + RELOC/tex/latex/montserrat/montserrat.sty + RELOC/tex/latex/montserrat/montserratalternates.fontspec +catalogue-ctan /fonts/montserrat +catalogue-license ofl lppl1.3 +catalogue-topics font font-sans font-otf font-type1 font-t1enc +catalogue-version 1.03 + +name moodle +category Package +revision 57683 +shortdesc Generating Moodle quizzes via LaTeX +relocated 1 +longdesc A package for writing Moodle quizzes in LaTeX. In addition to +longdesc typesetting the quizzes for proofreading, the package compiles +longdesc an XML file to be uploaded to a Moodle server. +containersize 29392 +containerchecksum b2f992d02b16711eb5a79247d0f0b7b590ab21f419f181dcfec33006e08181f035c502f3a4d473fd211ed391f5d6225f2a91946649911db7af851f97d1ba2da3 +doccontainersize 313796 +doccontainerchecksum 9c609a686d13a8577f672988fa037ec48cc46b4006f7d42070c1411978cce615ace296a10d9a1140671c9972362a4ddcda5ceb80ab35e8b9c0628d90032b53a7 +docfiles size=287 + RELOC/doc/latex/moodle/LICENSE + RELOC/doc/latex/moodle/README.md details="Readme" + RELOC/doc/latex/moodle/moodle.pdf details="Package documentation" + RELOC/doc/latex/moodle/test/fig/11.PNG + RELOC/doc/latex/moodle/test/fig/22.pdf + RELOC/doc/latex/moodle/test/fig/3.gif + RELOC/doc/latex/moodle/test/fig/4.jpg + RELOC/doc/latex/moodle/test/fig/5.jpeg + RELOC/doc/latex/moodle/test/fig/MoodlE_logo.SVG + RELOC/doc/latex/moodle/test/fig/NoodlE_logo.png + RELOC/doc/latex/moodle/test/fig/NoodlE_logo.svg + RELOC/doc/latex/moodle/test/latin1ref/test_allornothing-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_autopoints-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_calculated_python-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_categories-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_circuitikz-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_cloze_multi-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_cloze_numerical-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_cloze_shortanswer-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_commands-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_description-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_environments-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_escaping_right_braces_in_cloze-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_essay-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_expandnewcommands-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_fancyvrb-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_fractions-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_french-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_generalfeedback-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_german-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_handout-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_htmlonly-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics_via_tikz-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics_via_tikz_and_svg-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics_with_svg-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_macros-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_matching-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_math-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_mathenv-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_minted-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_multi-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_multiple_categories-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_paragraph_breaks-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_penalty-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_point_points-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_shortanswer-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_special_characters-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_tags-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_tikz-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_tikz_with_svg-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_tolerance-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_truefalse-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_verbatim-moodle.ref + RELOC/doc/latex/moodle/test/makefile + RELOC/doc/latex/moodle/test/test_allornothing.tex + RELOC/doc/latex/moodle/test/test_autopoints.tex + RELOC/doc/latex/moodle/test/test_calculated_lua.tex + RELOC/doc/latex/moodle/test/test_calculated_python.tex + RELOC/doc/latex/moodle/test/test_categories.tex + RELOC/doc/latex/moodle/test/test_circuitikz.tex + RELOC/doc/latex/moodle/test/test_cloze_multi.tex + RELOC/doc/latex/moodle/test/test_cloze_numerical.tex + RELOC/doc/latex/moodle/test/test_cloze_shortanswer.tex + RELOC/doc/latex/moodle/test/test_commands.tex + RELOC/doc/latex/moodle/test/test_description.tex + RELOC/doc/latex/moodle/test/test_environments.tex + RELOC/doc/latex/moodle/test/test_escaping_right_braces_in_cloze.tex + RELOC/doc/latex/moodle/test/test_essay.tex + RELOC/doc/latex/moodle/test/test_expandnewcommands.tex + RELOC/doc/latex/moodle/test/test_fancyvrb.tex + RELOC/doc/latex/moodle/test/test_fractions.tex + RELOC/doc/latex/moodle/test/test_french.tex + RELOC/doc/latex/moodle/test/test_generalfeedback.tex + RELOC/doc/latex/moodle/test/test_german.tex + RELOC/doc/latex/moodle/test/test_handout.tex + RELOC/doc/latex/moodle/test/test_htmlonly.tex + RELOC/doc/latex/moodle/test/test_includegraphics.tex + RELOC/doc/latex/moodle/test/test_includegraphics_via_tikz.tex + RELOC/doc/latex/moodle/test/test_includegraphics_via_tikz_and_svg.tex + RELOC/doc/latex/moodle/test/test_includegraphics_with_svg.tex + RELOC/doc/latex/moodle/test/test_macros.tex + RELOC/doc/latex/moodle/test/test_matching.tex + RELOC/doc/latex/moodle/test/test_math.tex + RELOC/doc/latex/moodle/test/test_mathenv.tex + RELOC/doc/latex/moodle/test/test_minted.tex + RELOC/doc/latex/moodle/test/test_multi.tex + RELOC/doc/latex/moodle/test/test_multiple_categories.tex + RELOC/doc/latex/moodle/test/test_paragraph_breaks.tex + RELOC/doc/latex/moodle/test/test_penalty.tex + RELOC/doc/latex/moodle/test/test_point_points.tex + RELOC/doc/latex/moodle/test/test_shortanswer.tex + RELOC/doc/latex/moodle/test/test_special_characters.tex + RELOC/doc/latex/moodle/test/test_tags.tex + RELOC/doc/latex/moodle/test/test_tikz.tex + RELOC/doc/latex/moodle/test/test_tikz_with_svg.tex + RELOC/doc/latex/moodle/test/test_tolerance.tex + RELOC/doc/latex/moodle/test/test_truefalse.tex + RELOC/doc/latex/moodle/test/test_verbatim.tex + RELOC/doc/latex/moodle/test/utf8ref/test_allornothing-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_autopoints-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_calculated_lua-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_calculated_python-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_categories-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_circuitikz-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_cloze_multi-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_cloze_numerical-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_cloze_shortanswer-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_commands-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_description-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_environments-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_escaping_right_braces_in_cloze-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_essay-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_expandnewcommands-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_fancyvrb-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_fractions-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_french-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_generalfeedback-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_german-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_handout-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_htmlonly-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics_via_tikz-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics_via_tikz_and_svg-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics_with_svg-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_macros-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_matching-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_math-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_mathenv-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_minted-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_multi-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_multiple_categories-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_paragraph_breaks-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_penalty-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_point_points-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_shortanswer-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_special_characters-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_tags-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_tikz-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_tikz_with_svg-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_tolerance-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_truefalse-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_verbatim-moodle.ref +srccontainersize 60312 +srccontainerchecksum 3dde72eb7b513695ad3d59dc51bb8f5ba93ed3c2d6d8e90bcbd65e6ec3f86c3ef392eda8537f7a096badf0fa97080b5fb2d61831b38339946b0f4b734ac419b5 +srcfiles size=70 + RELOC/source/latex/moodle/makefile + RELOC/source/latex/moodle/moodle.dtx + RELOC/source/latex/moodle/moodle.ins +runfiles size=39 + RELOC/tex/latex/moodle/moodle.sty +catalogue-contact-bugs https://framagit.org/mattgk/moodle/-/issues +catalogue-contact-development https://framagit.org/mattgk/moodle +catalogue-contact-repository https://framagit.org/mattgk/moodle/-/tree/master +catalogue-ctan /macros/latex/contrib/moodle +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 0.9 + +name moreenum +category Package +revision 24479 +shortdesc More enumeration options +relocated 1 +longdesc The package provides the following new enumerate styles: \greek +longdesc for lowercase Greek letters; \Greek for uppercase Greek +longdesc letters; \enumHex for uppercase hexadecimal enumeration; +longdesc \enumhex for lowercase hexadecimal enumeration; \enumbinary for +longdesc binary enumeration; \enumoctal for octal enumeration; \levelnth +longdesc for "1st", "2nd", "3rd" etc., with the "nth"s on the baseline; +longdesc raisenth for "1st", "2nd", "3rd" etc., with the "nth"s raised; +longdesc \nthwords for "first", "second", "third" etc.; \Nthwords for +longdesc "First", "Second", "Third" etc.; \NTHWORDS for "FIRST", +longdesc "SECOND", "THIRD" etc.; \nwords for "one", "two", "three" etc.; +longdesc \Nwords for "One", "Two", "Three" etc.; and \NWORDS for "ONE", +longdesc "TWO", "THREE" etc. Each of these works with enumitem's +longdesc "starred variant" feature. So +longdesc \begin{enumerate}[label=\enumhex*] will output a hex enumerated +longdesc list. Enumitem provides a start=0 option for starting your +longdesc enumerations at 0. The package requires amsmath, alphalph, +longdesc enumitem (of course), binhex and nth, all of which are widely +longdesc available. +containersize 2708 +containerchecksum 069ef44faaa8847a07ad00dae31c1b63278d59a560ed90823100cd601850a798f574d8210c07854a8b1a90165efb3bba852e100e53aee496f78395e3d6defade +doccontainersize 220832 +doccontainerchecksum 987a1dd96669b9202846fc604fbcfb935b68c79d13bbe4599f32fab9e869ca5b60f3b4bdfcf78d3b3f5102db9ab16955ec13958c4cf3df7ec64649268c226d1c +docfiles size=56 + RELOC/doc/latex/moreenum/README details="Readme" + RELOC/doc/latex/moreenum/moreenum-doc.pdf details="Package documentation" + RELOC/doc/latex/moreenum/moreenum-doc.tex +runfiles size=2 + RELOC/tex/latex/moreenum/moreenum.sty +catalogue-ctan /macros/latex/contrib/moreenum +catalogue-license lppl1.3 +catalogue-topics list-enum numbers +catalogue-version 1.03 + +name morefloats +category Package +revision 37927 +shortdesc Increase the number of simultaneous LaTeX floats +relocated 1 +longdesc LaTeX can, by default, only cope with 18 outstanding floats; +longdesc any more, and you get the error "too many unprocessed floats". +longdesc This package releases the limit; TeX itself imposes limits +longdesc (which are independent of the help offered by e-TeX). However, +longdesc if your floats can't be placed anywhere, extending the number +longdesc of floats merely delays the arrival of the inevitable error +longdesc message. +containersize 4456 +containerchecksum 28fd471aa854852cc2a48597dda19cadda3c92c589d0419b8d36e044f9c04e406037f162e1d02c1f4b20a6288efe4a689fe4e03aafbfc6b06cf14019f7e880f0 +doccontainersize 555528 +doccontainerchecksum f542aecb6d3868559cee66a7c153dc80cb6aacebae40c0cd0dd120c4230cd358b4d2787286cb3e7bdfb5565949861a35af65ca616369585b8f28462a2b1dbcf6 +docfiles size=140 + RELOC/doc/latex/morefloats/README details="Readme" + RELOC/doc/latex/morefloats/morefloats-example.pdf + RELOC/doc/latex/morefloats/morefloats-example.tex + RELOC/doc/latex/morefloats/morefloats.pdf details="Package documentation" +srccontainersize 14488 +srccontainerchecksum 7f527c20294826a6d7e1c3ff390ca02f521e9b6824db41d078b4132201d1d7575cb43eebda9e66e8226ba2a641db692ae2d1f1ccac5c4f027851b75100e261db +srcfiles size=23 + RELOC/source/latex/morefloats/morefloats.drv + RELOC/source/latex/morefloats/morefloats.dtx + RELOC/source/latex/morefloats/morefloats.ins +runfiles size=10 + RELOC/tex/latex/morefloats/morefloats.sty +catalogue-ctan /macros/latex/contrib/morefloats +catalogue-license lppl1.3 +catalogue-topics float +catalogue-version 1.0h + +name morehype +category Package +revision 38815 +shortdesc Hypertext tools for use with LaTeX +relocated 1 +longdesc The bundle provides three packages: texlinks: shorthand macros +longdesc for TeX-related external hyperlinks with hyperref, the blog +longdesc package in the present bundle, etc; hypertoc: adjust the +longdesc presentation of coloured frames in hyperref tables of contents +longdesc (article class only); blog: fast generation of simple HTML by +longdesc expanding LaTeX macros, using the fifinddo package. +containersize 62492 +containerchecksum 698ec10d9e70dc1b89ed5094369359fdeffb663ca95513b7207aed065515a66dd2c82b4e43d14fe271c9851e72a44e9c2f6e3baa177ed9430f89e88bdd692172 +doccontainersize 2321852 +doccontainerchecksum 2600045257c75dd15320a2f188f5b043358bfdb21ce4a19af2d1a696141a2f553da42c13143d14c8ba136fb1ef7a560684ac47c5274738c747f729a00b02a099 +docfiles size=666 + RELOC/doc/latex/morehype/README details="Readme" + RELOC/doc/latex/morehype/README.pdf + RELOC/doc/latex/morehype/RELEASEs.txt + RELOC/doc/latex/morehype/SrcFILEs.txt + RELOC/doc/latex/morehype/blog.pdf details="Package documentation: blog" + RELOC/doc/latex/morehype/blogdemo/hellowor/hellowor.htm + RELOC/doc/latex/morehype/blogdemo/hellowor/hellowor.tex + RELOC/doc/latex/morehype/blogdemo/hellowor/mkhellow.tex + RELOC/doc/latex/morehype/blogdemo/writings/makehtml.tex + RELOC/doc/latex/morehype/blogdemo/writings/schreibt.tex + RELOC/doc/latex/morehype/blogdemo/writings/writings.fdf + RELOC/doc/latex/morehype/blogexec.pdf + RELOC/doc/latex/morehype/hypertoc.pdf details="Package documentation: hypertoc" + RELOC/doc/latex/morehype/markblog.htm + RELOC/doc/latex/morehype/ref_alts.tex + RELOC/doc/latex/morehype/texlinks.pdf details="Package documentation: texlinks" + RELOC/doc/latex/morehype/wiki_mwe.pdf + RELOC/doc/latex/morehype/wiki_mwe.tex +srccontainersize 14396 +srccontainerchecksum f710fd59d5c99d7df8b84a365a8f8c110ac7086699f36d1851eb7fdd27ed43212c403c14d9f9105c78402b278d66fa77ca2f50a0253073f55842a60fb19b4c1f +srcfiles size=16 + RELOC/source/latex/morehype/README.tex + RELOC/source/latex/morehype/blog.tex + RELOC/source/latex/morehype/blogdot.css + RELOC/source/latex/morehype/blogexec.tex + RELOC/source/latex/morehype/fdatechk.tex + RELOC/source/latex/morehype/hypertoc.tex + RELOC/source/latex/morehype/markblog.tex + RELOC/source/latex/morehype/srcfiles.tex + RELOC/source/latex/morehype/texlinks.tex +runfiles size=64 + RELOC/tex/latex/morehype/atari_ht.fdf + RELOC/tex/latex/morehype/blog.sty + RELOC/tex/latex/morehype/blogdot.cfg + RELOC/tex/latex/morehype/blogdot.sty + RELOC/tex/latex/morehype/blogexec.sty + RELOC/tex/latex/morehype/blogligs.sty + RELOC/tex/latex/morehype/hypertoc.sty + RELOC/tex/latex/morehype/lnavicol.sty + RELOC/tex/latex/morehype/markblog.sty + RELOC/tex/latex/morehype/morehype.RLS + RELOC/tex/latex/morehype/texblog.fdf + 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-license lppl1.3 +catalogue-topics hyper +catalogue-version r0.83 + +name moresize +category Package +revision 17513 +shortdesc Allows font sizes up to 35.83pt +relocated 1 +longdesc A package for using font sizes up to 35.88pt, for example with +longdesc the EC fonts. New commands \HUGE and \ssmall for selecting font +longdesc sizes are provided together with some options working around +longdesc current LaTeX2e shortcomings in using big font sizes. The +longdesc package also provides options for improving the typesetting of +longdesc paragraphs (or headlines) with embedded math expressions at +longdesc font sizes above 17.28pt. +containersize 1532 +containerchecksum 92f67234dd9c0429798f9e8001a2d4b7004e11f2fa90130b738670e6228f45ebca3ba26ed98616e3af5c86148992f9915e3e6a1cfeb4c875fbd20fd818743525 +doccontainersize 248052 +doccontainerchecksum 3c1ed984163e2adbdaa7e94439e160327515f1c6999e40114819d8e5250e090c932909217d37d1d07fcb108c56ec50f294324c32523995f68f57fd918983a412 +docfiles size=68 + RELOC/doc/latex/moresize/moresize.pdf details="Package documentation" + RELOC/doc/latex/moresize/moresize.upl + RELOC/doc/latex/moresize/msizetst.tex +srccontainersize 9448 +srccontainerchecksum 701a2ba72c22bed8397350f92023b0b1d1587b837c4fd247dabe5860cc32e58499e8803a0286aa9f9e3831faff8b9ce0e74ac1a0f82d798a2f7f461b015b5809 +srcfiles size=8 + RELOC/source/latex/moresize/moresize.dtx + RELOC/source/latex/moresize/moresize.ins +runfiles size=1 + RELOC/tex/latex/moresize/moresize.sty +catalogue-ctan /macros/latex/contrib/moresize +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 1.9 + +name moreverb +category Package +revision 22126 +shortdesc Extended verbatim +relocated 1 +longdesc A collection of verbatim facilities that provide line-numbered +longdesc verbatim, verbatim that obeys TAB characters, verbatim input +longdesc and verbatim output to file. The package makes use of the LaTeX +longdesc required verbatim package. The package is formed from a series +longdesc of small pieces, and is somewhat unstructured. The user who +longdesc looks for thought-through verbatim facilities is advised to +longdesc consider using the fancyvrb package in place of moreverb. +containersize 2324 +containerchecksum 673b7ab5951e418fe10622fb1a4b4a420c4c436684afbb1474c58b7aa7b235f7063555a220133257b351b5847be5e880714e44ca49bd9198a4306c0e821dcdde +doccontainersize 114952 +doccontainerchecksum 27e4f361f5d7193c97629debec048168045bc38e353f677829677cb5ce5c0a9ad8f5b2576bd9f870da8dfbf16d745e489ba79e3dfe6aa1da8a9cab1ad72ace06 +docfiles size=34 + RELOC/doc/latex/moreverb/README details="Package Readme" + RELOC/doc/latex/moreverb/moreverb.pdf details="Package documentation" +srccontainersize 7080 +srccontainerchecksum 55ec67b5b9616459a776b0ca386be19cb6ae57fa2a7bde1f6a1896233f4f303277474d629c884e40bcd8d076522ab4e41fbe8850304dbd33469a1f21750c81ef +srcfiles size=6 + RELOC/source/latex/moreverb/moreverb.dtx + RELOC/source/latex/moreverb/moreverb.ins +runfiles size=2 + RELOC/tex/latex/moreverb/moreverb.sty +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-license lppl +catalogue-topics verbatim +catalogue-version 2.3a + +name morewrites +category Package +revision 49531 +shortdesc Always room for a new write stream +relocated 1 +longdesc The package aims to solve the error "No room for a new \write", +longdesc which occurs when the user, or when the user's packages have +longdesc 'allocated too many streams' using \newwrite (TeX has a fixed +longdesc maximum number - 16 - such streams built-in to its code). The +longdesc package hooks into TeX primitive commands associated with +longdesc writing to files; it should be loaded near the beginning of the +longdesc sequence of loading packages for a document. The package uses +longdesc the l3kernel bundle. +containersize 5460 +containerchecksum fb1f515fa834c422f628464467411a51c8c9a99f353ab297ca0ac0b63d65a7f2e05ec3e6a649fa35260a6bedb91dedda594654e83e94a28baa62764a38d9ca8c +doccontainersize 1234300 +doccontainerchecksum 9f4bad59ec0f024d24956481d2f70baa56748c9deb000979490c001cd671dd07fc3712eca1917713775d6b879169050786b22a76e2ce1d8d57a99cd76487d167 +docfiles size=323 + RELOC/doc/latex/morewrites/README.md details="Readme" + RELOC/doc/latex/morewrites/morewrites.pdf details="Package documentation" + RELOC/doc/latex/morewrites/primargs.pdf +srccontainersize 19712 +srccontainerchecksum 21a6606687ac53e218408cc5790c1b93c9db3cef7b1f17fbfe574ee2f1a1c48e5c21a00d7b4f44f6fc1b98bd77af032be97c1cf48571bc439ee20fa6367d3bf1 +srcfiles size=22 + RELOC/source/latex/morewrites/morewrites.dtx + RELOC/source/latex/morewrites/morewrites.ins + RELOC/source/latex/morewrites/primargs.dtx +runfiles size=8 + RELOC/tex/latex/morewrites/morewrites.sty + RELOC/tex/latex/morewrites/primargs.sty +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-license lppl1.3c +catalogue-topics io-mgmt + +name morisawa +category Package +revision 46946 +shortdesc Enables selection of 5 standard Japanese fonts for pLaTeX + dvips +relocated 1 +longdesc The package enables selection of 5 standard Japanese fonts for +longdesc pLaTeX + dvips. It was originally written by Haruhiko Okumura +longdesc as part of jsclasses bundle, and the TFM/VF files were +longdesc previously distributed as part of the ptex-fonts package. +execute addKanjiMap morisawa5.map +containersize 8564 +containerchecksum 7f149fab67905d6b21670becb1c3e3afbc8fb4c45fa3c376960e5a87d7fe17abe091af63930a8385b5bcb63e550fc0b9bb16d522f50f90b911b09599dc5ccafa +doccontainersize 95032 +doccontainerchecksum 7af68b3a8233cec22efb49e8131c65e33db4076ed4f254f2d62f629c03d0122e8dddc3ba68d283affb5ca663d3b1f744780dc98c14eadfa1a69028df281e5bb2 +docfiles size=26 + RELOC/doc/fonts/morisawa/LICENSE + RELOC/doc/fonts/morisawa/Makefile + RELOC/doc/fonts/morisawa/README.md details="Readme" + RELOC/doc/fonts/morisawa/morisawa.pdf details="Package documentation" language="ja" +srccontainersize 3452 +srccontainerchecksum 7e3821bc1f5dad076307ebf00cacb68cdeb9e18a060c9c024c0fea85c558f7373f214f16952fa643f8b832376101ec8c8bb839a902e6e8213912a4cbc10862ad +srcfiles size=4 + RELOC/source/fonts/morisawa/morisawa.dtx + RELOC/source/fonts/morisawa/morisawa.ins +runfiles size=552 + RELOC/fonts/map/dvipdfmx/morisawa/morisawa5.map + RELOC/fonts/tfm/public/morisawa/FutoGoB101-Bold-H.tfm + RELOC/fonts/tfm/public/morisawa/FutoGoB101-Bold-J.tfm + RELOC/fonts/tfm/public/morisawa/FutoGoB101-Bold-V.tfm + RELOC/fonts/tfm/public/morisawa/FutoMinA101-Bold-H.tfm + RELOC/fonts/tfm/public/morisawa/FutoMinA101-Bold-J.tfm + RELOC/fonts/tfm/public/morisawa/FutoMinA101-Bold-V.tfm + RELOC/fonts/tfm/public/morisawa/GothicBBB-Medium-H.tfm + RELOC/fonts/tfm/public/morisawa/GothicBBB-Medium-J.tfm + RELOC/fonts/tfm/public/morisawa/GothicBBB-Medium-V.tfm + RELOC/fonts/tfm/public/morisawa/Jun101-Light-H.tfm + RELOC/fonts/tfm/public/morisawa/Jun101-Light-J.tfm + RELOC/fonts/tfm/public/morisawa/Jun101-Light-V.tfm + RELOC/fonts/tfm/public/morisawa/Ryumin-Light-H.tfm + RELOC/fonts/tfm/public/morisawa/Ryumin-Light-J.tfm + RELOC/fonts/tfm/public/morisawa/Ryumin-Light-V.tfm + RELOC/fonts/tfm/public/morisawa/futogo-b-v.tfm + RELOC/fonts/tfm/public/morisawa/futogo-b.tfm + RELOC/fonts/tfm/public/morisawa/futomin-b-v.tfm + RELOC/fonts/tfm/public/morisawa/futomin-b.tfm + RELOC/fonts/tfm/public/morisawa/gtbbb-m-v.tfm + RELOC/fonts/tfm/public/morisawa/gtbbb-m.tfm + RELOC/fonts/tfm/public/morisawa/jun101-l-v.tfm + RELOC/fonts/tfm/public/morisawa/jun101-l.tfm + RELOC/fonts/tfm/public/morisawa/ryumin-l-v.tfm + RELOC/fonts/tfm/public/morisawa/ryumin-l.tfm + RELOC/fonts/vf/public/morisawa/FutoGoB101-Bold-H.vf + RELOC/fonts/vf/public/morisawa/FutoGoB101-Bold-J.vf + RELOC/fonts/vf/public/morisawa/FutoGoB101-Bold-V.vf + RELOC/fonts/vf/public/morisawa/FutoMinA101-Bold-H.vf + RELOC/fonts/vf/public/morisawa/FutoMinA101-Bold-J.vf + RELOC/fonts/vf/public/morisawa/FutoMinA101-Bold-V.vf + RELOC/fonts/vf/public/morisawa/GothicBBB-Medium-H.vf + RELOC/fonts/vf/public/morisawa/GothicBBB-Medium-J.vf + RELOC/fonts/vf/public/morisawa/GothicBBB-Medium-V.vf + RELOC/fonts/vf/public/morisawa/Jun101-Light-H.vf + RELOC/fonts/vf/public/morisawa/Jun101-Light-J.vf + RELOC/fonts/vf/public/morisawa/Jun101-Light-V.vf + RELOC/fonts/vf/public/morisawa/Ryumin-Light-H.vf + RELOC/fonts/vf/public/morisawa/Ryumin-Light-J.vf + RELOC/fonts/vf/public/morisawa/Ryumin-Light-V.vf + RELOC/tex/latex/morisawa/morisawa.sty +catalogue-also jsclasses ptex-fonts +catalogue-contact-repository https://github.com/texjporg/morisawa +catalogue-ctan /fonts/morisawa +catalogue-license bsd +catalogue-topics font-cjk + +name movie15 +category Package +revision 26473 +shortdesc Multimedia inclusion package +relocated 1 +longdesc The package provides an interface to embed movies, sounds and +longdesc 3D objects into PDF documents for use with LaTeX as well as +longdesc pdfLaTeX. The package defines a command \includemovie with +longdesc PDF-1.5 compatibility. Option 'autoplay' causes the media clip +longdesc to be started right after the page has loaded. This is useful +longdesc for side by side movie clips to be played back synchronously. +longdesc The package is now superseded by media9 +containersize 23660 +containerchecksum a45726b24f76683c44b0f006d720695c14ef51a260fa00f3223a075e48173638dbc9d9d361fb4e1f8f567cbe80f65d990aae485b669901a50d5b18750640b103 +doccontainersize 484140 +doccontainerchecksum 4df2fec7f0abac6ef4d948285b3156bb9489a3b7b18939fa109abcd9c537e383d505e308516e1bc852aa5c5bdd6b8825e8f7e887c9787d7c2d337124942cc9e5 +docfiles size=196 + RELOC/doc/latex/movie15/README details="README file" + RELOC/doc/latex/movie15/files/3dsystem.fig + RELOC/doc/latex/movie15/files/3dsystem.pdf + RELOC/doc/latex/movie15/files/3dsystem.tex + RELOC/doc/latex/movie15/files/dice.u3d + RELOC/doc/latex/movie15/files/dice.vws + RELOC/doc/latex/movie15/files/dice.wrl + RELOC/doc/latex/movie15/files/mailto.png + RELOC/doc/latex/movie15/files/random.mpg + RELOC/doc/latex/movie15/javascript/animation.js + RELOC/doc/latex/movie15/javascript/lights.js + RELOC/doc/latex/movie15/javascript/turntable.js + RELOC/doc/latex/movie15/movie15.pdf details="Package Documentation" + RELOC/doc/latex/movie15/movie15.tex + RELOC/doc/latex/movie15/overlay-example.pdf details="Overlay example" + RELOC/doc/latex/movie15/overlay-example.tex +runfiles size=39 + RELOC/tex/latex/movie15/movie15.sty +catalogue-also flashmovie +catalogue-ctan /macros/latex/contrib/movie15 +catalogue-license lppl +catalogue-topics multimedia obsolete + +name mp3d +category Package +revision 29349 +shortdesc 3D animations +relocated 1 +longdesc Create animations of 3-dimensional objects (such as polyhedra) +longdesc in MetaPost. +containersize 22956 +containerchecksum e5899aace25cef3a690150cf09e76bddc008f426800588ef7d21361229b0040dff74af7b43d563b05d8c3d16166e34b5a21e8e25ae3e97ca80e5ffe5c4925392 +doccontainersize 728740 +doccontainerchecksum 2b64199f50ae5b0e6528bf041ac2422574f9adf467183f3ee3d58ebd91317ce25937699be29d0a5954565a4fd326719f11bc04a35cb4938489696ae479d5d7f5 +docfiles size=243 + RELOC/doc/metapost/mp3d/README details="Readme" + RELOC/doc/metapost/mp3d/README.doc + RELOC/doc/metapost/mp3d/create_animation.sh + RELOC/doc/metapost/mp3d/cube10.mp + RELOC/doc/metapost/mp3d/cube4-eng.mp + RELOC/doc/metapost/mp3d/cube5.mp + RELOC/doc/metapost/mp3d/cube6.mp + RELOC/doc/metapost/mp3d/cube7.mp + RELOC/doc/metapost/mp3d/cube8.mp + RELOC/doc/metapost/mp3d/cube9.mp + RELOC/doc/metapost/mp3d/gut2001.pdf details="Paper on geometry, for Cahiers Gutenberg" language="fr" + RELOC/doc/metapost/mp3d/gutmp1-eng.mp + RELOC/doc/metapost/mp3d/gutmp1.mp + RELOC/doc/metapost/mp3d/gutmp2-eng.mp + RELOC/doc/metapost/mp3d/gutmp2.mp + RELOC/doc/metapost/mp3d/gutmp3-eng.mp + RELOC/doc/metapost/mp3d/gutmp3.mp + RELOC/doc/metapost/mp3d/gutmp4-eng.mp + RELOC/doc/metapost/mp3d/gutmp4.mp + RELOC/doc/metapost/mp3d/gutmp5-eng.mp + RELOC/doc/metapost/mp3d/gutmp5.mp + RELOC/doc/metapost/mp3d/gutmp6-eng.mp + RELOC/doc/metapost/mp3d/gutmp6.mp + RELOC/doc/metapost/mp3d/gutmp7-eng.mp + RELOC/doc/metapost/mp3d/gutmp7.mp + RELOC/doc/metapost/mp3d/gutmp8-eng.mp + RELOC/doc/metapost/mp3d/gutmp8.mp + RELOC/doc/metapost/mp3d/gutmp9.mp + RELOC/doc/metapost/mp3d/monge-eng.mp + RELOC/doc/metapost/mp3d/monge.mp + RELOC/doc/metapost/mp3d/paper1997corrected.pdf details="Corrected TUGboat paper" language="en" + RELOC/doc/metapost/mp3d/tb57roeg.pdf + RELOC/doc/metapost/mp3d/tb57roegel.ltx + RELOC/doc/metapost/mp3d/tugboat-geometry-space.pdf details="Paper on geometry, for TUGboat" language="en" +runfiles size=26 + RELOC/metapost/mp3d/3d.mp + RELOC/metapost/mp3d/3danim.mp + RELOC/metapost/mp3d/3dgeom.mp + RELOC/metapost/mp3d/3dpoly.mp + RELOC/metapost/mp3d/3dutil.mp + RELOC/metapost/mp3d/animpoly.mp +catalogue-ctan /graphics/metapost/contrib/macros/mp3d +catalogue-license lppl +catalogue-topics mp-use graphics-3d +catalogue-version 1.34 + +name mparhack +category Package +revision 59066 +shortdesc Work around a LaTeX bug in marginpars +relocated 1 +longdesc Works around the LaTeX bug that marginpars will sometimes come +longdesc out at the wrong margin. +containersize 2804 +containerchecksum 9a4e5a08320095095538eea8c5c5db5dc6d6c99ca3e3a3f5568228b8b52a4b1de98c1118b09626b58ef897f6810d2b43d2b5b416b3687e1bfd3a01506460bce5 +doccontainersize 308392 +doccontainerchecksum fc4cff80bbf20460e28f8d5a142e8994cea7e017391b147a47332b444fad0ff8cde1e7bb29159e39f8c14f4c9881ab91dcc0e2f108cca1534d4335f5b6b32a1a +docfiles size=77 + RELOC/doc/latex/mparhack/README.md details="Package README" + RELOC/doc/latex/mparhack/mparhack.pdf details="Package documentation" +srccontainersize 10192 +srccontainerchecksum 1eda2d1f370141d0a5b0bc15f68dd40b9dd72017e8cfc75c71b19e2fa2ccfef7b1652d5c035c8ab6120e12089bf469b6e6edadd7997329da6409e6248bccc5a2 +srcfiles size=10 + RELOC/source/latex/mparhack/mparhack.dtx + RELOC/source/latex/mparhack/mparhack.ins +runfiles size=2 + RELOC/tex/latex/mparhack/mparhack.sty +catalogue-contact-bugs https://github.com/u-fischer/mparhack/issues +catalogue-contact-repository https://github.com/u-fischer/mparhack +catalogue-ctan /macros/latex/contrib/mparhack +catalogue-license gpl2+ +catalogue-topics marginal +catalogue-version 1.5 + +name mparrows +category Package +revision 39729 +shortdesc MetaPost module with different types of arrow heads +relocated 1 +longdesc A package to provide different types of arrow heads to be used +longdesc with MetaPost commands drawarrow and drawdblarrow commands. +containersize 1348 +containerchecksum 58e4a909374486cd2d4313d62a49e4e30a5e85f8ef2cc0d9a7e734b546ad8b36e3bbfb96f3eecaa9c10b8d7b3b1557aa9e0b5dae5b4547d42cabc64d2f2949d3 +doccontainersize 114292 +doccontainerchecksum d1ca204228c1bc76d4f15257687a865c650fa83742dd126b3d7cd5e93e725b2da31eedfbca9a86e93eaa08df487b0432cc41f0d4fd2f99951f874691acf47016 +docfiles size=39 + RELOC/doc/metapost/mparrows/LICENSE + RELOC/doc/metapost/mparrows/README details="Readme" + RELOC/doc/metapost/mparrows/mparrows.pdf details="Package documentation" + RELOC/doc/metapost/mparrows/mparrows.tex + RELOC/doc/metapost/mparrows/mparrowsexamples.mp +runfiles size=2 + RELOC/metapost/mparrows/mparrows.mp +catalogue-ctan /graphics/metapost/contrib/macros/mparrows +catalogue-license pd +catalogue-topics mp-supp +catalogue-version 0.1 + +name mpattern +category Package +revision 15878 +shortdesc Patterns in MetaPost +relocated 1 +longdesc A package for defining and using patterns in MetaPost, using +longdesc the Pattern Color Space available in PostScript Level 2. +containersize 2752 +containerchecksum 1efc3f1f1c93456a3038ae5037ad5dcc4b177c57852f7db475a7ce6d2002559b370ba22dcc6d312c68ba75c03523cdf0df8546fff8dab032832d3ff3148b5d65 +doccontainersize 11328 +doccontainerchecksum 4ec7cadd89449ca049fdd723de9e29f20199a630fc28585a4802e3ce3666783822e4f0769907cafbfb0fe097b1da4a08d3e5e5f4038ecebbe9fe3543dd3413d6 +docfiles size=8 + RELOC/doc/metapost/mpattern/README details="Package Readme (English)" language="en" + RELOC/doc/metapost/mpattern/README.PL details="Package Readme (Polish)" language="pl" + RELOC/doc/metapost/mpattern/mpattern_test.pdf details="Package test output" + RELOC/doc/metapost/mpattern/mpattern_test.tex + RELOC/doc/metapost/mpattern/test.mp +runfiles size=2 + RELOC/metapost/mpattern/mpattern.mp +catalogue-ctan /graphics/metapost/contrib/macros/mpattern +catalogue-license pd +catalogue-topics graphics-use + +name mpcolornames +category Package +revision 23252 +shortdesc Extend list of predefined colour names for MetaPost +relocated 1 +longdesc The MetaPost format plain.mp provides only five built-in colour +longdesc names (variables), all of which are defined in the RGB model: +longdesc red, green and blue for the primary colours and black and +longdesc white. The package makes more than 500 colour names from +longdesc different colour sets in different colour models available to +longdesc MetaPost. Colour sets include X11, SVG, DVIPS and xcolor +longdesc specifications. +containersize 6792 +containerchecksum 9808706010059e8d2683f88a47535b8039049681e5a9fdc013cc384bcacb1910cc7ab2f7614d35ed964c28507bf5fc062fe4db852afa45f9d9383c367838eeba +doccontainersize 108768 +doccontainerchecksum bfb9ce4c85de655b890948897deba96a5ff60cb7518b3e198cd0b088b63670531f29bd84dbde4837298a24f36dac0652f2d2d3491dbcd7ac8f9e57de6500c6dd +docfiles size=50 + RELOC/doc/metapost/mpcolornames/CHANGES + RELOC/doc/metapost/mpcolornames/LICENSE + RELOC/doc/metapost/mpcolornames/README details="Readme" + RELOC/doc/metapost/mpcolornames/expl-array-index.mp + RELOC/doc/metapost/mpcolornames/fig-clash-svg-dvips.mp + RELOC/doc/metapost/mpcolornames/mpcolornames.pdf details="Package documentation" + RELOC/doc/metapost/mpcolornames/mpcolornames.tex + RELOC/doc/metapost/mpcolornames/proof-mpcolornames.mp + RELOC/doc/metapost/mpcolornames/proof-spec-dvipsnam-def.mp + RELOC/doc/metapost/mpcolornames/proof-spec-plain-mp.mp + RELOC/doc/metapost/mpcolornames/proof-spec-svgnam-def.mp + RELOC/doc/metapost/mpcolornames/proof-spec-x11nam-def.mp + RELOC/doc/metapost/mpcolornames/proof-spec-xcolor-sty.mp + RELOC/doc/metapost/mpcolornames/tab-clash-svg-dvips.tex + RELOC/doc/metapost/mpcolornames/tab-spec-dvipsnam-def.tex + RELOC/doc/metapost/mpcolornames/tab-spec-plain-mp.tex + RELOC/doc/metapost/mpcolornames/tab-spec-svgnam-def.tex + RELOC/doc/metapost/mpcolornames/tab-spec-x11nam-def.tex + RELOC/doc/metapost/mpcolornames/tab-spec-xcolor-sty.tex +srccontainersize 3364 +srccontainerchecksum ec29085382f6464b10323680488140b483aa09c9df050806a154fce60bf92feb7d4e04de444d0fb4b1623c6ea3506ba619bf0fb2477f048fd4c5f2f0be9f272c +srcfiles size=8 + RELOC/source/metapost/mpcolornames/Makefile + RELOC/source/metapost/mpcolornames/spec-dvipsnam-def.awk + RELOC/source/metapost/mpcolornames/spec-plain-mp.awk + RELOC/source/metapost/mpcolornames/spec-svgnam-def.awk + RELOC/source/metapost/mpcolornames/spec-x11nam-def.awk + RELOC/source/metapost/mpcolornames/spec-xcolor-sty.awk + RELOC/source/metapost/mpcolornames/tab-clash-svg-dvips.awk +runfiles size=9 + RELOC/metapost/mpcolornames/mpcolornames-spec-dvipsnam-def.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-plain-mp.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-svgnam-def.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-x11nam-def.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-xcolor-sty.mp + RELOC/metapost/mpcolornames/mpcolornames.mp +catalogue-ctan /graphics/metapost/contrib/macros/mpcolornames +catalogue-license lppl +catalogue-topics colour +catalogue-version 0.20 + +name mpfonts +category Package +revision 54512 +shortdesc Computer Modern Type 3 fonts converted using MetaPost +relocated 1 +longdesc The Computer Modern fonts are available in Type 1 format, but +longdesc these renditions are somewhat thin and spindly, and produce +longdesc much lighter results than the originals. It is alternatively +longdesc possible to use Metafont bitmaps, but this has its +longdesc disadvantages in comparison with vector fonts. These fonts are +longdesc conversions to Type 3 fonts, done entirely in MetaPost; they +longdesc are vector fonts which are a direct conversion from the +longdesc original Metafont files, so they are the design most authentic +longdesc to the originals. However, these fonts, because they are +longdesc PostScript Type 3 fonts, are not suitable for on-screen +longdesc reading, and should probably only be used for printing. Note: +longdesc do NOT add the map file to updmap! +containersize 5977528 +containerchecksum 7d602bca0f33f83033cbe15cb2376d0ae023a4d02218f10b64965580842f269a7065e6c2154bf78c7a72a46abd0e41214dea4d2f012f1945a17fb5b8cf0fa832 +doccontainersize 9472 +doccontainerchecksum 4aa1296012f4ed3483f444320d7d28d942823da0cd58c1350dc4a90da1fa5e51cd5bac86f257290c720f9808b74c2cc87c49f18882073ac44ef7f577248f57be +docfiles size=8 + RELOC/doc/fonts/mpfonts/COPYING + RELOC/doc/fonts/mpfonts/README details="Readme" +runfiles size=9355 + RELOC/fonts/map/dvips/mpfonts/mpfonts.map + RELOC/fonts/type3/mpfonts/amsya.t3 + RELOC/fonts/type3/mpfonts/amsyb.t3 + RELOC/fonts/type3/mpfonts/cmb10.t3 + RELOC/fonts/type3/mpfonts/cmbsy10.t3 + RELOC/fonts/type3/mpfonts/cmbsy5.t3 + RELOC/fonts/type3/mpfonts/cmbsy6.t3 + RELOC/fonts/type3/mpfonts/cmbsy7.t3 + RELOC/fonts/type3/mpfonts/cmbsy8.t3 + RELOC/fonts/type3/mpfonts/cmbsy9.t3 + RELOC/fonts/type3/mpfonts/cmbx10.t3 + RELOC/fonts/type3/mpfonts/cmbx12.t3 + RELOC/fonts/type3/mpfonts/cmbx5.t3 + RELOC/fonts/type3/mpfonts/cmbx6.t3 + RELOC/fonts/type3/mpfonts/cmbx7.t3 + RELOC/fonts/type3/mpfonts/cmbx8.t3 + RELOC/fonts/type3/mpfonts/cmbx9.t3 + RELOC/fonts/type3/mpfonts/cmbxsl10.t3 + RELOC/fonts/type3/mpfonts/cmbxti10.t3 + RELOC/fonts/type3/mpfonts/cmcsc10.t3 + RELOC/fonts/type3/mpfonts/cmcsc8.t3 + RELOC/fonts/type3/mpfonts/cmcsc9.t3 + RELOC/fonts/type3/mpfonts/cmdunh10.t3 + RELOC/fonts/type3/mpfonts/cmex10.t3 + RELOC/fonts/type3/mpfonts/cmex7.t3 + RELOC/fonts/type3/mpfonts/cmex8.t3 + RELOC/fonts/type3/mpfonts/cmex9.t3 + RELOC/fonts/type3/mpfonts/cmff10.t3 + RELOC/fonts/type3/mpfonts/cmfi10.t3 + RELOC/fonts/type3/mpfonts/cmfib8.t3 + RELOC/fonts/type3/mpfonts/cmfrak.t3 + RELOC/fonts/type3/mpfonts/cminch.t3 + RELOC/fonts/type3/mpfonts/cmitt10.t3 + RELOC/fonts/type3/mpfonts/cmllbx10.t3 + RELOC/fonts/type3/mpfonts/cmllbx12.t3 + RELOC/fonts/type3/mpfonts/cmllbx5.t3 + RELOC/fonts/type3/mpfonts/cmllbx6.t3 + RELOC/fonts/type3/mpfonts/cmllbx7.t3 + RELOC/fonts/type3/mpfonts/cmllbx8.t3 + RELOC/fonts/type3/mpfonts/cmllbx9.t3 + RELOC/fonts/type3/mpfonts/cmllr10.t3 + RELOC/fonts/type3/mpfonts/cmllr12.t3 + RELOC/fonts/type3/mpfonts/cmllr17.t3 + RELOC/fonts/type3/mpfonts/cmllr5.t3 + RELOC/fonts/type3/mpfonts/cmllr6.t3 + RELOC/fonts/type3/mpfonts/cmllr7.t3 + RELOC/fonts/type3/mpfonts/cmllr8.t3 + RELOC/fonts/type3/mpfonts/cmllr9.t3 + RELOC/fonts/type3/mpfonts/cmllss10.t3 + RELOC/fonts/type3/mpfonts/cmllss12.t3 + RELOC/fonts/type3/mpfonts/cmllss17.t3 + RELOC/fonts/type3/mpfonts/cmllss8.t3 + RELOC/fonts/type3/mpfonts/cmllss9.t3 + RELOC/fonts/type3/mpfonts/cmllssbx10.t3 + RELOC/fonts/type3/mpfonts/cmmi10.t3 + RELOC/fonts/type3/mpfonts/cmmi12.t3 + RELOC/fonts/type3/mpfonts/cmmi5.t3 + RELOC/fonts/type3/mpfonts/cmmi6.t3 + RELOC/fonts/type3/mpfonts/cmmi7.t3 + RELOC/fonts/type3/mpfonts/cmmi8.t3 + RELOC/fonts/type3/mpfonts/cmmi9.t3 + RELOC/fonts/type3/mpfonts/cmmib10.t3 + RELOC/fonts/type3/mpfonts/cmmib5.t3 + RELOC/fonts/type3/mpfonts/cmmib6.t3 + RELOC/fonts/type3/mpfonts/cmmib7.t3 + RELOC/fonts/type3/mpfonts/cmmib8.t3 + RELOC/fonts/type3/mpfonts/cmmib9.t3 + RELOC/fonts/type3/mpfonts/cmr10.t3 + RELOC/fonts/type3/mpfonts/cmr12.t3 + RELOC/fonts/type3/mpfonts/cmr17.t3 + RELOC/fonts/type3/mpfonts/cmr5.t3 + RELOC/fonts/type3/mpfonts/cmr6.t3 + RELOC/fonts/type3/mpfonts/cmr7.t3 + RELOC/fonts/type3/mpfonts/cmr8.t3 + RELOC/fonts/type3/mpfonts/cmr9.t3 + RELOC/fonts/type3/mpfonts/cmsl10.t3 + RELOC/fonts/type3/mpfonts/cmsl12.t3 + RELOC/fonts/type3/mpfonts/cmsl8.t3 + RELOC/fonts/type3/mpfonts/cmsl9.t3 + RELOC/fonts/type3/mpfonts/cmsltt10.t3 + RELOC/fonts/type3/mpfonts/cmss10.t3 + RELOC/fonts/type3/mpfonts/cmss12.t3 + RELOC/fonts/type3/mpfonts/cmss17.t3 + RELOC/fonts/type3/mpfonts/cmss8.t3 + RELOC/fonts/type3/mpfonts/cmss9.t3 + RELOC/fonts/type3/mpfonts/cmssbx10.t3 + RELOC/fonts/type3/mpfonts/cmssdc10.t3 + RELOC/fonts/type3/mpfonts/cmssi10.t3 + RELOC/fonts/type3/mpfonts/cmssi12.t3 + RELOC/fonts/type3/mpfonts/cmssi17.t3 + RELOC/fonts/type3/mpfonts/cmssi8.t3 + RELOC/fonts/type3/mpfonts/cmssi9.t3 + RELOC/fonts/type3/mpfonts/cmssq8.t3 + RELOC/fonts/type3/mpfonts/cmssqi8.t3 + RELOC/fonts/type3/mpfonts/cmsy10.t3 + RELOC/fonts/type3/mpfonts/cmsy5.t3 + RELOC/fonts/type3/mpfonts/cmsy6.t3 + RELOC/fonts/type3/mpfonts/cmsy7.t3 + RELOC/fonts/type3/mpfonts/cmsy8.t3 + RELOC/fonts/type3/mpfonts/cmsy9.t3 + RELOC/fonts/type3/mpfonts/cmtcsc10.t3 + RELOC/fonts/type3/mpfonts/cmtex10.t3 + RELOC/fonts/type3/mpfonts/cmtex8.t3 + RELOC/fonts/type3/mpfonts/cmtex9.t3 + RELOC/fonts/type3/mpfonts/cmti10.t3 + RELOC/fonts/type3/mpfonts/cmti12.t3 + RELOC/fonts/type3/mpfonts/cmti7.t3 + RELOC/fonts/type3/mpfonts/cmti8.t3 + RELOC/fonts/type3/mpfonts/cmti9.t3 + RELOC/fonts/type3/mpfonts/cmtt10.t3 + RELOC/fonts/type3/mpfonts/cmtt12.t3 + RELOC/fonts/type3/mpfonts/cmtt8.t3 + RELOC/fonts/type3/mpfonts/cmtt9.t3 + RELOC/fonts/type3/mpfonts/cmu10.t3 + RELOC/fonts/type3/mpfonts/cmvtt10.t3 + RELOC/fonts/type3/mpfonts/csc.t3 + RELOC/fonts/type3/mpfonts/cyrcsc.t3 + RELOC/fonts/type3/mpfonts/cyrfont.t3 + RELOC/fonts/type3/mpfonts/cyrital.t3 + RELOC/fonts/type3/mpfonts/dcfrak.t3 + RELOC/fonts/type3/mpfonts/dummy.t3 + RELOC/fonts/type3/mpfonts/eullbx10.t3 + RELOC/fonts/type3/mpfonts/eullbx5.t3 + RELOC/fonts/type3/mpfonts/eullbx6.t3 + RELOC/fonts/type3/mpfonts/eullbx7.t3 + RELOC/fonts/type3/mpfonts/eullbx8.t3 + RELOC/fonts/type3/mpfonts/eullbx9.t3 + RELOC/fonts/type3/mpfonts/eullr10.t3 + RELOC/fonts/type3/mpfonts/eullr5.t3 + RELOC/fonts/type3/mpfonts/eullr6.t3 + RELOC/fonts/type3/mpfonts/eullr7.t3 + RELOC/fonts/type3/mpfonts/eullr8.t3 + RELOC/fonts/type3/mpfonts/eullr9.t3 + RELOC/fonts/type3/mpfonts/fgeit.t3 + RELOC/fonts/type3/mpfonts/fgeit10.t3 + RELOC/fonts/type3/mpfonts/fgerm.t3 + RELOC/fonts/type3/mpfonts/fgerm10.t3 + RELOC/fonts/type3/mpfonts/icmcsc10.t3 + RELOC/fonts/type3/mpfonts/icmex10.t3 + RELOC/fonts/type3/mpfonts/icmmi8.t3 + RELOC/fonts/type3/mpfonts/icmsy8.t3 + RELOC/fonts/type3/mpfonts/icmtt8.t3 + RELOC/fonts/type3/mpfonts/ilasy8.t3 + RELOC/fonts/type3/mpfonts/ilcmss8.t3 + RELOC/fonts/type3/mpfonts/ilcmssb8.t3 + RELOC/fonts/type3/mpfonts/ilcmssi8.t3 + RELOC/fonts/type3/mpfonts/lasy.t3 + RELOC/fonts/type3/mpfonts/lasy10.t3 + RELOC/fonts/type3/mpfonts/lasy5.t3 + RELOC/fonts/type3/mpfonts/lasy6.t3 + RELOC/fonts/type3/mpfonts/lasy7.t3 + RELOC/fonts/type3/mpfonts/lasy8.t3 + RELOC/fonts/type3/mpfonts/lasy9.t3 + RELOC/fonts/type3/mpfonts/lasyb10.t3 + RELOC/fonts/type3/mpfonts/lcircle10.t3 + RELOC/fonts/type3/mpfonts/lcirclew10.t3 + RELOC/fonts/type3/mpfonts/lcmss8.t3 + RELOC/fonts/type3/mpfonts/lcmssb8.t3 + RELOC/fonts/type3/mpfonts/lcmssi8.t3 + RELOC/fonts/type3/mpfonts/line10.t3 + RELOC/fonts/type3/mpfonts/linew10.t3 + RELOC/fonts/type3/mpfonts/lleusym.t3 + RELOC/fonts/type3/mpfonts/llsymbols.t3 + RELOC/fonts/type3/mpfonts/mathex.t3 + RELOC/fonts/type3/mpfonts/mathit.t3 + RELOC/fonts/type3/mpfonts/mathsy.t3 + RELOC/fonts/type3/mpfonts/msam10.t3 + RELOC/fonts/type3/mpfonts/msam5.t3 + RELOC/fonts/type3/mpfonts/msam6.t3 + RELOC/fonts/type3/mpfonts/msam7.t3 + RELOC/fonts/type3/mpfonts/msam8.t3 + RELOC/fonts/type3/mpfonts/msam9.t3 + RELOC/fonts/type3/mpfonts/msbm10.t3 + RELOC/fonts/type3/mpfonts/msbm5.t3 + RELOC/fonts/type3/mpfonts/msbm6.t3 + RELOC/fonts/type3/mpfonts/msbm7.t3 + RELOC/fonts/type3/mpfonts/msbm8.t3 + RELOC/fonts/type3/mpfonts/msbm9.t3 + RELOC/fonts/type3/mpfonts/roman.t3 + RELOC/fonts/type3/mpfonts/sroman.t3 + RELOC/fonts/type3/mpfonts/texset.t3 + RELOC/fonts/type3/mpfonts/textit.t3 + RELOC/fonts/type3/mpfonts/tipa.t3 + RELOC/fonts/type3/mpfonts/tipa10.t3 + RELOC/fonts/type3/mpfonts/tipa12.t3 + RELOC/fonts/type3/mpfonts/tipa17.t3 + RELOC/fonts/type3/mpfonts/tipa8.t3 + RELOC/fonts/type3/mpfonts/tipa9.t3 + RELOC/fonts/type3/mpfonts/tipab10.t3 + RELOC/fonts/type3/mpfonts/tipabs10.t3 + RELOC/fonts/type3/mpfonts/tipabx10.t3 + RELOC/fonts/type3/mpfonts/tipabx12.t3 + RELOC/fonts/type3/mpfonts/tipabx8.t3 + RELOC/fonts/type3/mpfonts/tipabx9.t3 + RELOC/fonts/type3/mpfonts/tipasb10.t3 + RELOC/fonts/type3/mpfonts/tipasi10.t3 + RELOC/fonts/type3/mpfonts/tipasl10.t3 + RELOC/fonts/type3/mpfonts/tipasl12.t3 + RELOC/fonts/type3/mpfonts/tipasl8.t3 + RELOC/fonts/type3/mpfonts/tipasl9.t3 + RELOC/fonts/type3/mpfonts/tipass10.t3 + RELOC/fonts/type3/mpfonts/tipass12.t3 + RELOC/fonts/type3/mpfonts/tipass17.t3 + RELOC/fonts/type3/mpfonts/tipass8.t3 + RELOC/fonts/type3/mpfonts/tipass9.t3 + RELOC/fonts/type3/mpfonts/tipats10.t3 + RELOC/fonts/type3/mpfonts/tipatt10.t3 + RELOC/fonts/type3/mpfonts/tipatt12.t3 + RELOC/fonts/type3/mpfonts/tipatt8.t3 + RELOC/fonts/type3/mpfonts/tipatt9.t3 + RELOC/fonts/type3/mpfonts/tipx.t3 + RELOC/fonts/type3/mpfonts/tipx10.t3 + RELOC/fonts/type3/mpfonts/tipx12.t3 + RELOC/fonts/type3/mpfonts/tipx17.t3 + RELOC/fonts/type3/mpfonts/tipx8.t3 + RELOC/fonts/type3/mpfonts/tipx9.t3 + RELOC/fonts/type3/mpfonts/tipxb10.t3 + RELOC/fonts/type3/mpfonts/tipxbs10.t3 + RELOC/fonts/type3/mpfonts/tipxbx10.t3 + RELOC/fonts/type3/mpfonts/tipxbx12.t3 + RELOC/fonts/type3/mpfonts/tipxbx8.t3 + RELOC/fonts/type3/mpfonts/tipxbx9.t3 + RELOC/fonts/type3/mpfonts/tipxsb10.t3 + RELOC/fonts/type3/mpfonts/tipxsi10.t3 + RELOC/fonts/type3/mpfonts/tipxsl10.t3 + RELOC/fonts/type3/mpfonts/tipxsl12.t3 + RELOC/fonts/type3/mpfonts/tipxsl8.t3 + RELOC/fonts/type3/mpfonts/tipxsl9.t3 + RELOC/fonts/type3/mpfonts/tipxss10.t3 + RELOC/fonts/type3/mpfonts/tipxss12.t3 + RELOC/fonts/type3/mpfonts/tipxss17.t3 + RELOC/fonts/type3/mpfonts/tipxss8.t3 + RELOC/fonts/type3/mpfonts/tipxss9.t3 + RELOC/fonts/type3/mpfonts/tipxts10.t3 + RELOC/fonts/type3/mpfonts/tipxtt10.t3 + RELOC/fonts/type3/mpfonts/tipxtt12.t3 + RELOC/fonts/type3/mpfonts/tipxtt8.t3 + RELOC/fonts/type3/mpfonts/tipxtt9.t3 + RELOC/fonts/type3/mpfonts/title.t3 + RELOC/fonts/type3/mpfonts/wncyb10.t3 + RELOC/fonts/type3/mpfonts/wncyb5.t3 + RELOC/fonts/type3/mpfonts/wncyb6.t3 + RELOC/fonts/type3/mpfonts/wncyb7.t3 + RELOC/fonts/type3/mpfonts/wncyb8.t3 + RELOC/fonts/type3/mpfonts/wncyb9.t3 + RELOC/fonts/type3/mpfonts/wncyi10.t3 + RELOC/fonts/type3/mpfonts/wncyi5.t3 + RELOC/fonts/type3/mpfonts/wncyi6.t3 + RELOC/fonts/type3/mpfonts/wncyi7.t3 + RELOC/fonts/type3/mpfonts/wncyi8.t3 + RELOC/fonts/type3/mpfonts/wncyi9.t3 + RELOC/fonts/type3/mpfonts/wncyr10.t3 + RELOC/fonts/type3/mpfonts/wncyr5.t3 + RELOC/fonts/type3/mpfonts/wncyr6.t3 + RELOC/fonts/type3/mpfonts/wncyr7.t3 + RELOC/fonts/type3/mpfonts/wncyr8.t3 + RELOC/fonts/type3/mpfonts/wncyr9.t3 + RELOC/fonts/type3/mpfonts/wncysc10.t3 + RELOC/fonts/type3/mpfonts/wncyss10.t3 + RELOC/fonts/type3/mpfonts/wncyss8.t3 + RELOC/fonts/type3/mpfonts/wncyss9.t3 + RELOC/fonts/type3/mpfonts/xipa10.t3 + RELOC/fonts/type3/mpfonts/xipab10.t3 + RELOC/fonts/type3/mpfonts/xipabs10.t3 + RELOC/fonts/type3/mpfonts/xipasb10.t3 + RELOC/fonts/type3/mpfonts/xipasi10.t3 + RELOC/fonts/type3/mpfonts/xipasl10.t3 + RELOC/fonts/type3/mpfonts/xipass10.t3 + RELOC/fonts/type3/mpfonts/xipx10.t3 + RELOC/fonts/type3/mpfonts/xipxb10.t3 + RELOC/fonts/type3/mpfonts/xipxbs10.t3 + RELOC/fonts/type3/mpfonts/xipxsb10.t3 + RELOC/fonts/type3/mpfonts/xipxsi10.t3 + RELOC/fonts/type3/mpfonts/xipxsl10.t3 + RELOC/fonts/type3/mpfonts/xipxss10.t3 + RELOC/fonts/type3/mpfonts/xxfrak.t3 +catalogue-ctan /fonts/mpfonts +catalogue-license knuth lppl1.3c ofl other-free pd +catalogue-topics font font-body font-cm font-serif font-sans font-proportional font-mono font-maths font-symbol-maths + +name mpgraphics +category Package +revision 29776 +shortdesc Process and display MetaPost figures inline +relocated 1 +longdesc The package allows LaTeX users to typeset MetaPost code inline +longdesc and display figures in their documents with only and only one +longdesc run of LaTeX, pdfLaTeX or XeLaTeX (no separate runs of mpost). +longdesc Mpgraphics achieves this by using the shell escape (\write 18) +longdesc feature of current TeX distributions, so that the whole process +longdesc is automatic and the end user is saved the tiresome processing. +containersize 4340 +containerchecksum 5d711f7a981f701e11874916fe8d22fa237404dc119fc2d5c8f8e9b3eaf8feb59a63023ec30f0c67d304839e4971288a669d70a697260af35e401edf00673adb +doccontainersize 182260 +doccontainerchecksum 954c8e3a8a0deafea163c9bea9da6bd1c27fcc9b5270408fdd29f0051ece1f4138a0af99808cf85279823cb48475b8e21b3a450f021d678fc5b2fbdf28e55320 +docfiles size=49 + RELOC/doc/latex/mpgraphics/README details="Readme" + RELOC/doc/latex/mpgraphics/mpgraphics-example.ltx + RELOC/doc/latex/mpgraphics/mpgraphics.pdf details="Package documentation" +srccontainersize 9484 +srccontainerchecksum 30e7324760efabffddf6920362ba213eb05fce2658d9a442677a2f8f322695d5a361b1d183c4f775b289ac116d586e2466be46d4ea1798cde251132b95a98bdd +srcfiles size=10 + RELOC/source/latex/mpgraphics/mpgraphics.dtx + RELOC/source/latex/mpgraphics/mpgraphics.ins +runfiles size=4 + RELOC/tex/latex/mpgraphics/mpgraphics.sty +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-license lppl1.3 +catalogue-topics graphics-inline +catalogue-version 0.3 + +name mpman-ru +category Package +revision 15878 +shortdesc A Russian translation of the MetaPost manual +relocated 1 +longdesc A translation of the user manual, as distributed with MetaPost +longdesc itself. +containersize 428 +containerchecksum e234fc25e9d8e5aa89a59e21186a16de3c695ce45c9ee8d132546381cb18e9be681bd4ee9c70bb10b4769ada5e5874b500d2a3cd7d264d89610dcda35fcba9a1 +doccontainersize 864700 +doccontainerchecksum 57f2449eaed3651b808095348f056fdfa90b00979ba2e21fad120efe096dca9a9e48474e9dbb539f347ffe20ccd5582f4815ff4552c54e9ea5f9df391dd75edb +docfiles size=338 + RELOC/doc/metapost/mpman-ru/Makefile + RELOC/doc/metapost/mpman-ru/README details="Readme (English)" language="en" + RELOC/doc/metapost/mpman-ru/README.ru.koi8-r details="Readme (Russian, KOI-8 encoded)" language="ru" + RELOC/doc/metapost/mpman-ru/bm-to-utf16be.awk + RELOC/doc/metapost/mpman-ru/ctabbing.sty + RELOC/doc/metapost/mpman-ru/extract-bm.awk + RELOC/doc/metapost/mpman-ru/idx1.awk + RELOC/doc/metapost/mpman-ru/idx2.awk + RELOC/doc/metapost/mpman-ru/idx3.awk + RELOC/doc/metapost/mpman-ru/manfig-ru.mp + RELOC/doc/metapost/mpman-ru/mpman-optab-ru.tex + RELOC/doc/metapost/mpman-ru/mpman-ru.pdf details="The document itself" + RELOC/doc/metapost/mpman-ru/mpman-ru.tex + RELOC/doc/metapost/mpman-ru/mpman.ist +catalogue-ctan /info/metapost/doc/russian/mpman-ru +catalogue-license other-free +catalogue-topics mp-doc russian-doc translation +catalogue-version 1.004 + +name mpostinl +category Package +revision 49559 +shortdesc Embed MetaPost figures within LaTeX documents +relocated 1 +longdesc This LaTeX2e package enables the embedding of MetaPost figures +longdesc within LaTeX documents. The package automatically collects the +longdesc embedded definitions and figures in a .mp file, adds an +longdesc appropriate LaTeX document structure, and compiles it to .mps +longdesc files. It also allows for various configuration options to +longdesc manage the generation of files and compilation. +containersize 5072 +containerchecksum 0749fdf4c54efe9b8c9ed9f735a851a0c0b08a9092679bbb80eb32a80ed6e7284094a043e27721dacf8112b6898a8c5f47bf0b0dea4af9082a40bead0599ee76 +doccontainersize 330676 +doccontainerchecksum ad639ec50e5b71a1ef02bcc04cb1c0b195e9ed2cdef9ff8e145d17cfb34dd853d96449620f5d0eba614154cdf6291902316f4fdfbd179a112cebbe2a059acc70 +docfiles size=86 + RELOC/doc/latex/mpostinl/README.txt details="Readme" + RELOC/doc/latex/mpostinl/mpinlsmp.tex + RELOC/doc/latex/mpostinl/mpostinl.pdf details="Package documentation" +srccontainersize 22036 +srccontainerchecksum 44ff22f1fb0496422dd760b786174e520643ae9c2b8d3b922a08f9e065708fb4c292169e58cd328381c29672d0526c13506429c55eb57100e96f876324e6fbb6 +srcfiles size=25 + RELOC/source/latex/mpostinl/mpostinl.dtx + RELOC/source/latex/mpostinl/mpostinl.ins +runfiles size=5 + RELOC/tex/latex/mpostinl/mpostinl.sty +catalogue-ctan /macros/latex/contrib/mpostinl +catalogue-license lppl1.3 +catalogue-topics mp-supp graphics-inline graphics comp-mgmt +catalogue-version 1.5 + +name mptopdf +category Package +revision 57347 +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 +longdesc MetaPost graphics inclusion in LaTeX (via pdftex.def) and +longdesc ConTeXt. They can be used independently of the rest of ConTeXt, +longdesc yet are maintained as part of it. So in TeX Live we pull them +longdesc out to this separate package for the benefit of LaTeX users who +longdesc do not install the rest of ConTeXt. This can be found on CTAN +longdesc in macros/pdftex/graphics. +depend mptopdf.ARCH +depend plain +execute AddFormat name=mptopdf engine=pdftex options="-translate-file=cp227.tcx mptopdf.tex" fmttriggers=plain +containersize 38596 +containerchecksum 69181f1facef413b4e2317180f8dba551fe40bb06e6af8d9378319d8cd3fdec985241e632f19888f32b70f16a40d11c66581f7e3c409bc38b7cfad3733cba2fd +doccontainersize 13628 +doccontainerchecksum f0cbd95500324a6b5ca835d62065c83028241e0ce5fa35a313458dc30e6726a21a6d1c267669627061d23f2dd7d7397f471581021e03c817c281cb6efa1d2769 +docfiles size=6 + texmf-dist/doc/context/scripts/mkii/mptopdf.man + texmf-dist/doc/man/man1/mptopdf.1 + texmf-dist/doc/man/man1/mptopdf.man1.pdf +runfiles size=43 + texmf-dist/scripts/context/perl/mptopdf.pl + texmf-dist/scripts/context/stubs/mswin/mptopdf.exe + texmf-dist/tex/context/base/mkii/supp-mis.mkii + texmf-dist/tex/context/base/mkii/supp-mpe.mkii + texmf-dist/tex/context/base/mkii/supp-pdf.mkii + texmf-dist/tex/context/base/mkii/syst-tex.mkii + texmf-dist/tex/generic/context/mptopdf/mptopdf.tex + +name mptopdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mptopdf +containersize 348 +containerchecksum 72ea8cffb4f65ae08f8737f0db464f29bd3cd8fada591704d1a4dc1a0c40a22b204b3731366c7a2b2bec0c3d9331e2596a02266bcda0acb69ab8e96cd593c4aa +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mptopdf + +name mptopdf.amd64-freebsd +category Package +revision 18674 +shortdesc amd64-freebsd files of mptopdf +containersize 352 +containerchecksum 9a6ff4b3d2df26124567c0037db23d0b27e0844e0d75ae37f9bfb33679573e637752e13ef296f3e655e530c269a2c9adda2a0011109f3467605ff5827c28d454 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mptopdf + +name mptopdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mptopdf +containersize 348 +containerchecksum ea224b867825c91334f858dfb2048386ec492dbe29efc7236db68b2c37c16539751db79b029b4250a86842103ef5c073b06f2f3be1b6f6e05313412c981f7e51 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mptopdf + +name mptopdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mptopdf +containersize 348 +containerchecksum 100e4342c0287220352c5017750a63a1e225f58ba95dc166ea5d52fcdad04ba2ad34a6b5b4e4fb1ea6d7a520f21aa6f6ac83fa84689de57f95fa9ddca58b2258 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mptopdf + +name mptopdf.i386-cygwin +category Package +revision 18674 +shortdesc i386-cygwin files of mptopdf +containersize 348 +containerchecksum 8cdcccc74b9d816f9089d58f1a51ceba6b452619ca267d0491604b1e50fb06c09d6e7aa618b6dd4f39d2ec2b20239b0551c6f4e9941935ebeaa15493bf2aeb0a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mptopdf + +name mptopdf.i386-freebsd +category Package +revision 18674 +shortdesc i386-freebsd files of mptopdf +containersize 352 +containerchecksum 6369430e12b325b4ce26d99e0fedf693e523fa35e5fcadd0ab64567cf648b9b913666415620bbb108ef821208fda12951c339ec96a7f7f5b10d2e34623252923 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mptopdf + +name mptopdf.i386-linux +category Package +revision 18674 +shortdesc i386-linux files of mptopdf +containersize 348 +containerchecksum eeb042c69a2e3db47df6c8860ef7f9631547b12710147e8d1462f4ca85a796540265a25afa712755cf2ca2bd81ea276211c851658f57ece8057103f6b9457ef1 +binfiles arch=i386-linux size=1 + bin/i386-linux/mptopdf + +name mptopdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mptopdf +containersize 348 +containerchecksum 78cac478608da3cf6b62e8654425f55e63df8bc7294fb45d55c6182f2081582a624080804f04f614f008617766eb92779d26c804d74a2ec897985f27f4d28443 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mptopdf + +name mptopdf.i386-solaris +category Package +revision 18674 +shortdesc i386-solaris files of mptopdf +containersize 348 +containerchecksum 20f66ff309ca8afd2b01bef98cf8f60ac96921cb5198f2fa704a9f01f5c97c00849c786741292f20f54f147304423b8cbb03dd21f19c32c5744c3243c0c39d20 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mptopdf + +name mptopdf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of mptopdf +containersize 348 +containerchecksum e1db87239f7a3bb48c7c65646f4a0da75c369c402a29ba28441eb35610a0a150c8bb2606a9f9273023870838480e6ac1c1469b5d3cf9436f3f2b00704f995453 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/mptopdf + +name mptopdf.win32 +category Package +revision 29958 +shortdesc win32 files of mptopdf +containersize 684 +containerchecksum c9084f24dd7e08d0e78a86baf006df23ff668a046b26d8a68971f561e677b7bbffeffb5a0f21a6ac248b87b65bef758f87ba27f803a7a53e1d1de6bbb88729a2 +binfiles arch=win32 size=1 + bin/win32/mptopdf.exe + +name mptopdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mptopdf +containersize 352 +containerchecksum be4ffd9729cfe1a190092af2065b0d1ed53e05c7dc6b9a7efd86e94a4a8b5a690e1221e58692430e5dd454e3812cf8e9af6f92fc6b86909fe11f9dd8a86e5591 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mptopdf + +name mptopdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mptopdf +containersize 356 +containerchecksum aaa553b4d37bafc7a7b7ddcd09853457ce8fb28e6c22949d9afca44e5ca224430fd93424b858d55384b50d315a1d7bb73694290b15c31d122deb368ba9cc1bfb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mptopdf + +name mptopdf.x86_64-linux +category Package +revision 18674 +shortdesc x86_64-linux files of mptopdf +containersize 348 +containerchecksum 5ce7fd8d447ae76a3ab4af367e4ae6ca47669185c89cd5425d2d59d8110997a378521f420e5c763ff73c186e12e34831eff981619391fb17fa4378d982fb893a +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mptopdf + +name mptopdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mptopdf +containersize 352 +containerchecksum 7c8b69084389df32612c9b5bd7daa238ac7f2520c63588efb872f9c3f177ea8babe1ca2857491a200ad96bdc85a1f3b5d6a11c8387266bcb641a36c0dc0c2713 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mptopdf + +name mptopdf.x86_64-solaris +category Package +revision 18674 +shortdesc x86_64-solaris files of mptopdf +containersize 352 +containerchecksum c02ec0ff18c36d1c2e81cdedcdd0623ed469417a004acf150aa47411acc4467508fb751ae14e470ecd1b6c86a83f8d9e4ab32dd1c40e2f6054d580b7e5d43846 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mptopdf + +name mptrees +category Package +revision 44453 +shortdesc Probability trees with MetaPost +relocated 1 +longdesc This package provides MetaPost tools for drawing simple +longdesc probability trees. One command and several parameters to +longdesc control the output are provided. +containersize 3572 +containerchecksum c495bed58639226b0552dff1d2e7c5e97a60ad4fb20cef65cfd873feaeffef4e0b7672a33d310576c042a94d6d27141056e8a56c0bd5d648841b860a3c1919de +doccontainersize 434004 +doccontainerchecksum 38935dd6694e4c731e6ea8e8a1575ac5985a24ad5d1e05d5766168d3b6f82be6e3bde8c57601565be67ebd0d1232191779f973adf5bcb7851154aab3bd6472a6 +docfiles size=112 + RELOC/doc/metapost/mptrees/README.md details="Readme" + RELOC/doc/metapost/mptrees/mptrees-doc.pdf details="Package documentation" + RELOC/doc/metapost/mptrees/mptrees-doc.tex +runfiles size=3 + RELOC/metapost/mptrees/mptrees.mp +catalogue-ctan /graphics/metapost/contrib/macros/mptrees +catalogue-license lppl1.3 +catalogue-topics diagram-maths maths probability +catalogue-version 17.06 + +name ms +category Package +revision 57473 +shortdesc Various LaTeX packages by Martin Schroder +relocated 1 +longdesc The remains of a bundle of LaTeX packages by Martin Schroder; +longdesc the collection still comprises: count1to, make use of TeX +longdesc counters; and multitoc, typeset the table of contents in +longdesc multiple columns. ragged2e, prelim2e, everyshi (obsolete), and +longdesc everysel (obsolete), which used to be part of this bundle, have +longdesc become independent packages. +containersize 3064 +containerchecksum 73d46ed7ba85773f4ba7c261ff0ea8f2e751e53659fc19686bddd9523b160dba5e367c8fcb30a20678e4a3df26c0812a6b771736eef8616e112cbac3a25e7b48 +doccontainersize 573400 +doccontainerchecksum d112ff182da85ee8d84d8e7cfc50e5c13ad2e555ffe4dd2867a3439d69193ec7bc24fa87d2527936a57dbdc8e98df8d2862a740f91d497a8eba7108973a637aa +docfiles size=164 + RELOC/doc/latex/ms/README.md + RELOC/doc/latex/ms/count1to.pdf + RELOC/doc/latex/ms/multitoc.asc + RELOC/doc/latex/ms/multitoc.bug + RELOC/doc/latex/ms/multitoc.pdf +srccontainersize 10948 +srccontainerchecksum b03f9ac6bc7ab56bacac4053d278d0c826925f4f81df80e73ee2a48209e1e51c48b0706dbd0d69ec9a068e4a59a12df104b8e7dfd60cd0cd5c6210f43d528ce7 +srcfiles size=14 + RELOC/source/latex/ms/count1to.drv + RELOC/source/latex/ms/count1to.dtx + RELOC/source/latex/ms/count1to.ins + RELOC/source/latex/ms/multitoc.drv + RELOC/source/latex/ms/multitoc.dtx + RELOC/source/latex/ms/multitoc.ins +runfiles size=4 + RELOC/tex/latex/ms/count1to.sty + RELOC/tex/latex/ms/multitoc.sty +catalogue-ctan /macros/latex/contrib/ms +catalogue-license lppl +catalogue-topics collection + +name msc +category Package +revision 15878 +shortdesc Draw MSC diagrams +relocated 1 +longdesc The package should be useful to all people that prepare their +longdesc texts with LaTeX and want to draw Message Sequence Charts in +longdesc their texts. The package is not an MSC editor; it simply takes +longdesc a textual description of an MSC and draws the corresponding +longdesc MSC. The current version of the MSC macro package supports the +longdesc full MSC2000 language. +containersize 17840 +containerchecksum cfd66ed08d144698d11905ddf987f44782752e412d5ecb0a85fc27e569cedd4918ac05f19d986e0fa6e17065bf871e805094251eebd5d27653047d436541600d +doccontainersize 413856 +doccontainerchecksum 9485a70d19aa2754ae4e12e4311d4a03367c57a7bbba69cfc50a38aa50d6d9160aeb812c4a63b23f7da0e726b07cf836ac9df7b66b4c847b9cad0e7d66aff23b +docfiles size=151 + RELOC/doc/latex/msc/COPYRIGHT.txt + RELOC/doc/latex/msc/README details="Package Readme" + RELOC/doc/latex/msc/maintenance.pdf details="Maintenance manual" + RELOC/doc/latex/msc/maintenance.tex + RELOC/doc/latex/msc/manual.pdf details="User manual" + RELOC/doc/latex/msc/manual.tex + RELOC/doc/latex/msc/refman.pdf details="Reference manual" + RELOC/doc/latex/msc/refman.tex +runfiles size=29 + RELOC/bibtex/bib/msc/biblio.bib + RELOC/tex/latex/msc/msc.sty +catalogue-contact-home http://satoss.uni.lu/mscpackage/ +catalogue-ctan /macros/latex/contrib/msc +catalogue-license lppl +catalogue-topics comp-net +catalogue-version 1.16 + +name msg +category Package +revision 49578 +shortdesc A package for LaTeX localisation +relocated 1 +longdesc The package is designed to localise any document class or +longdesc package. This should be very useful for end-users who could +longdesc obtain messages in their own preferred language. It is really +longdesc easy to use by writers of other classes and packages. +longdesc Volunteers are urged to test the package, report, and even to +longdesc localise the message file to their own language. Documentation +longdesc is provided in English. +containersize 7808 +containerchecksum 9419f306ccde237320abe22fe192a2473785244fd337063332a242e029b8650404df7f7d150b196d3bccb0e10e58e25e2b8aefb15627e89eda8636ddc50599e1 +doccontainersize 763960 +doccontainerchecksum 85db0022daca5aeeb50e2eded6214a3b144012bfd0bd433b4f9474307c2a37e57c7a311385b8de4efcdc4e462f39c53f6a5fcfac2eae7263e2d1583b0ba584df +docfiles size=288 + RELOC/doc/latex/msg/CHANGES + RELOC/doc/latex/msg/README details="Readme" + RELOC/doc/latex/msg/README_msg_doc.txt + RELOC/doc/latex/msg/msg.pdf details="Package documentation" + RELOC/doc/latex/msg/msgguide.pdf details="User guide" + RELOC/doc/latex/msg/msgguide.tex + RELOC/doc/latex/msg/msgtest.tex +srccontainersize 18688 +srccontainerchecksum 988d410412b2e7b3617678d0cdb2e8059f7261d48b942eff588c472ccb29e022a3e10ae2302268789331c20705ce062f0930ef53bb785245923ba199ed71b15f +srcfiles size=21 + RELOC/source/latex/msg/Makefile + RELOC/source/latex/msg/msg.dtx + RELOC/source/latex/msg/msg.ins + RELOC/source/latex/msg/msgfiles.dtx +runfiles size=10 + RELOC/tex/latex/msg/french_msg-msg.tex + RELOC/tex/latex/msg/german_msg-msg.tex + RELOC/tex/latex/msg/msg-msg.tex + RELOC/tex/latex/msg/msg.sty + RELOC/tex/latex/msg/norsk_msg-msg.tex +catalogue-ctan /macros/latex/contrib/msg +catalogue-license lppl +catalogue-topics multilingual +catalogue-version 0.51 + +name mslapa +category Package +revision 54080 +shortdesc Michael Landy's APA citation style +relocated 1 +longdesc LaTeX and BibTeX style files for a respectably close +longdesc approximation to APA (American Psychological Association) +longdesc citation and reference style. +containersize 8972 +containerchecksum 28a13eda4b10f25e4887feb44f64e23cfa683d28e57b66a64d2a15c627e5f7aaef36e9fbbbf3c2320891a0bb9a5270fb59ca9044f1822402d82bc494f41dc3a9 +doccontainersize 277424 +doccontainerchecksum b53311156cb6872ec996130474f18d8735f9fbba8d53258638f78d498b3cb294eb490b6eb1460546dcec39258e0785401dad5ecb66c82e2cfd7814bfa852908b +docfiles size=75 + RELOC/doc/latex/mslapa/README details="Readme" + RELOC/doc/latex/mslapa/bibfile.bib + RELOC/doc/latex/mslapa/examp.tex + RELOC/doc/latex/mslapa/mslapa.pdf details="Package documentation" + RELOC/doc/latex/mslapa/mslapa.tex +runfiles size=10 + RELOC/bibtex/bst/mslapa/mslapa.bst + RELOC/tex/latex/mslapa/mslapa.sty +catalogue-also apacite apa +catalogue-ctan /macros/latex/contrib/mslapa +catalogue-license other-free +catalogue-topics psychology journalpub bibtex-sty apa + +name msu-thesis +category Package +revision 46106 +shortdesc Class for Michigan State University Master's and PhD theses +relocated 1 +longdesc This is a class file for producing dissertations and theses +longdesc according to the Michigan State University Graduate School +longdesc Guidelines for Electronic Submission of Master's Theses and +longdesc Dissertations. The class should meet all current requirements +longdesc and is updated whenever the university guidelines change. The +longdesc class is based on the memoir document class, and inherits the +longdesc functionality of that class. +containersize 8512 +containerchecksum e05cdf909d11616692cb175b117a134f1eeae10cd9c62058847cca383b86eb99de675f4e534c3b9d378dbebef10312b773f111de46becf8e4f3c840faaf5555c +doccontainersize 433408 +doccontainerchecksum 1b3c8266ff9dbd2c757365d30772057433e1ddcb04c83a9f98e55c9c4707a380e5d289496887da9adb922f96e7f4c64b9d3828e2a758aa38fba31e59c39c7d1c +docfiles size=126 + RELOC/doc/latex/msu-thesis/README details="Readme" + RELOC/doc/latex/msu-thesis/msu-thesis.pdf details="Package documentation" + RELOC/doc/latex/msu-thesis/msu-thesis.tex + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.tex + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.bib + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex + RELOC/doc/latex/msu-thesis/samples/unified.bst +runfiles size=7 + RELOC/tex/latex/msu-thesis/msu-thesis.cls +catalogue-ctan /macros/latex/contrib/msu-thesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 2.8 + +name mtgreek +category Package +revision 17967 +shortdesc Use italic and upright greek letters with mathtime +relocated 1 +longdesc This package is an add-on to the MathTime a style to provide +longdesc TeX support for the use of the MathTime(tm) fonts (formerly +longdesc distributed by YandY, Inc.). The MathTime package has uppercase +longdesc Greek letters hardwired to be upright and only upright; this +longdesc package provides a switch to choose between the two kinds of +longdesc Greek uppercase letters. +containersize 1744 +containerchecksum fbc20f61e1d4e9d3ebf4a92216c7c007f2aec2b2cac0aca6e08f0e1ea5f6f405a32d947efcea0057a025a138afc85e0d1486191ee82fa9a0e9f2f6e2542a9e11 +doccontainersize 160144 +doccontainerchecksum 49631058e9bfc59dd38a7e0e2134f6d9ddf68779a6f8087a056a89fef975154510496415b782102dfeae6b5563527fb6178ce301b004fe33a4dfa8dbeb4474ac +docfiles size=44 + RELOC/doc/latex/mtgreek/mtgreek.pdf details="Package documentation" + RELOC/doc/latex/mtgreek/mtgreek.tex + RELOC/doc/latex/mtgreek/mtgtest.tex +srccontainersize 2800 +srccontainerchecksum d69c6248a4d8fbb9a64cd539e7f66db5373f9551d27c98b755377594f9b1680a323719599f5963972d169399a0686b5e6f500148cc54881d23d8adb3b91bf4f9 +srcfiles size=3 + RELOC/source/latex/mtgreek/mtgreek.dtx + RELOC/source/latex/mtgreek/mtgreek.ins +runfiles size=1 + RELOC/tex/latex/mtgreek/mtgreek.sty +catalogue-ctan /macros/latex/contrib/mtgreek +catalogue-license lppl +catalogue-topics font-supp greek +catalogue-version 1.1+ + +name mucproc +category Package +revision 43445 +shortdesc Conference proceedings for the German MuC-conference +relocated 1 +longdesc The mucproc.cls is a document class to support the formatting +longdesc guidelines for submissions to the German Mensch und Computer +longdesc conference. This work consists of the files mucproc.dtx and +longdesc mucproc.ins and the derived files mucproc.cls, +longdesc mucfontsize10pt.clo. A compilable demonstration file using the +longdesc mucproc class can be found on +longdesc https://github.com/Blubu/mucproc/. This example fulfills the +longdesc formatting guidelines for MuC 2017. +containersize 5280 +containerchecksum 02ee23aa25152e80e8dc2c57f14b99c70ff57c38175498c179e505a76d967f826acf076cae2085d305cde93964f03134fc6d1027e0669acdbaba5ed5ff6efa8e +doccontainersize 334012 +doccontainerchecksum 01d154fab3c0ad8db790b5a22fcc4cae7a5beea1a2850f5e9d6fb1fcdc6c1071c2dc294568451f40db5455826f78ae910be9572de5a4a7d870e3a18a74fc0082 +docfiles size=83 + RELOC/doc/latex/mucproc/README.md details="Readme" + RELOC/doc/latex/mucproc/mucproc.pdf details="Package documentation" +srccontainersize 10308 +srccontainerchecksum f1ce5b80ed1c79cdb5939fda97b18bd263b313496a98cd7940e990ff719dff9e633d636505c0d538f37ff26a81c33d6f625f51a479e5ed6f949f7b3ebd845917 +srcfiles size=9 + RELOC/source/latex/mucproc/mucproc.dtx + RELOC/source/latex/mucproc/mucproc.ins +runfiles size=6 + RELOC/tex/latex/mucproc/mucfontsize10pt.clo + RELOC/tex/latex/mucproc/mucproc.cls +catalogue-contact-repository https://github.com/Blubu/mucproc/ +catalogue-ctan /macros/latex/contrib/mucproc +catalogue-license lppl1.3 +catalogue-topics confproc class +catalogue-version 1.02 + +name mugsthesis +category Package +revision 34878 +shortdesc Thesis class complying with Marquette University Graduate School requirements +relocated 1 +longdesc The bundle offers a thesis class, based on memoir, that +longdesc complies with Marquette University Graduate School +longdesc requirements. +containersize 2988 +containerchecksum 26a40992f66bead658130b6a649e7da550c85a92dbf9bf5778d4987e06f3a5f7d168eeb77dab3e81c5f328d252be345265c2326760d861fff35fb4ffd1e3a4b0 +doccontainersize 357356 +doccontainerchecksum 2f9d069468c3ea0b420465200abafade7ec7c52cb22bee74865da5fb06064eeae47709a1ff60868bfbf675a4397d828e02581defd338ef3e79e179c0ae7cf7ef +docfiles size=103 + RELOC/doc/latex/mugsthesis/README details="Readme" + RELOC/doc/latex/mugsthesis/mugsthesis.pdf details="Package documentation" + RELOC/doc/latex/mugsthesis/sample/abstract.tex + RELOC/doc/latex/mugsthesis/sample/acknowledgments.tex + RELOC/doc/latex/mugsthesis/sample/appendix1.tex + RELOC/doc/latex/mugsthesis/sample/ch01.tex + RELOC/doc/latex/mugsthesis/sample/ch02.tex + RELOC/doc/latex/mugsthesis/sample/dedication.tex + RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.pdf + RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.tex + RELOC/doc/latex/mugsthesis/sample/refs.bib +srccontainersize 7696 +srccontainerchecksum bbbd79aef8db604e5349cfcac7fceed96d8b2570cbdb455b36f96d99e52660562b6d84bdb5a9e1a4c9ff32c9199867f491e91f96758635ca800ad5b69039b120 +srcfiles size=7 + RELOC/source/latex/mugsthesis/mugsthesis.dtx + RELOC/source/latex/mugsthesis/mugsthesis.ins +runfiles size=2 + RELOC/tex/latex/mugsthesis/mugsthesis.cls +catalogue-contact-repository https://github.com/pdgessler/mugsthesis +catalogue-ctan /macros/latex/contrib/mugsthesis +catalogue-license lppl1.3 +catalogue-topics dissertation + +name muling +category Package +revision 56991 +shortdesc MA Thesis class for the Department of Linguistics, University of Mumbai +relocated 1 +longdesc This is a class file for writing MA thesis as required by the +longdesc Department of Linguistics at the University of Mumbai. +containersize 2252 +containerchecksum d5b89d93bb67e46618a30e5bdbc988a6849a7cbfee84f4486cf4557e750ae53f64aad188f74b1a96b1dfbaddfaea3a6a0380bd955ce79ebeb095fe1a54194e5a +doccontainersize 390184 +doccontainerchecksum ce1e2ac1e50e164bba6ff3911fe9ecb8f85ff2930f21f21e6721e153ffdc9c81798857cfe73c62f783f8909a644efd9f5a048565e054b0543973c4625d96976f +docfiles size=97 + RELOC/doc/latex/muling/README.txt details="Readme" + RELOC/doc/latex/muling/muling.pdf details="Package documentation" +srccontainersize 3824 +srccontainerchecksum 877f34b070dd1549f649ce99a322f7221c9dcdaae5aa80ab36c6e340285ac9ebea09e9496ec87e6d881608f30d9d7b24faff6f8671f57a2b18ff96a127a30311 +srcfiles size=4 + RELOC/source/latex/muling/muling.dtx + RELOC/source/latex/muling/muling.ins +runfiles size=2 + RELOC/tex/latex/muling/muling.cls +catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/muling/-/issues +catalogue-contact-home https://gitlab.com/niranjanvikastambe/muling +catalogue-ctan /macros/latex/contrib/muling +catalogue-license lppl1.3c +catalogue-topics linguistic class +catalogue-version 0.2 + +name multenum +category Package +revision 21775 +shortdesc Multi-column enumerated lists +relocated 1 +longdesc Defines an environment multienumerate, that produces an +longdesc enumerated array in which columns are vertically aligned on the +longdesc counter. The motivation was lists of answers for a text book, +longdesc where there are many rather small items; the multienumerate +longdesc environment goes some way to making such lists look neater. +containersize 1664 +containerchecksum e73e2d3fe45f562398de752520628032fea310e5345a247472a2807618b72467b245995f32f21474dcb5702106bf32d6394508a96c4aeae4dbeaf6fdda7bdf4e +doccontainersize 107660 +doccontainerchecksum 889ffbce149b1f0a98e22a1ebcafc60e29858d08b57e2e567956830c679515759a6c8209901641e3d77ded31238e8fe93f7e4cdff95d1be925e3972c9005f4a7 +docfiles size=37 + RELOC/doc/latex/multenum/README details="Readme" + RELOC/doc/latex/multenum/multienum.article + RELOC/doc/latex/multenum/multienum.pdf details="Package documentation" + RELOC/doc/latex/multenum/multienum.sample +runfiles size=2 + RELOC/tex/latex/multenum/multienum.sty +catalogue-also shortlst paralist +catalogue-ctan /macros/latex/contrib/multenum +catalogue-license lppl1 +catalogue-topics list list-enum + +name multiaudience +category Package +revision 38035 +shortdesc Several versions of output from the same source +relocated 1 +longdesc This package allows to generate several versions of the same +longdesc document for different audiences. +containersize 1520 +containerchecksum 58610f5b5138f7713fcd3e21fac721d0cc0a796e928bd5bd89e5981e08a0d4d6888f6f4f2dc2c6b9afecfbf0366462109be7a497ff6017e3b76ba83b361fe2f1 +doccontainersize 488772 +doccontainerchecksum 5db8176fc1c40091db428b73bbb8bb3eb2e7b14b8c8a681e7d5dcf04d990873fbe456d389e468456650faae3939e38d1217057485d60750cb29aef89e8e15b69 +docfiles size=181 + RELOC/doc/latex/multiaudience/Makefile + RELOC/doc/latex/multiaudience/README details="Readme" + RELOC/doc/latex/multiaudience/multiaudience.pdf details="Package documentation" + RELOC/doc/latex/multiaudience/sample-admins.pdf + RELOC/doc/latex/multiaudience/sample-devs.pdf + RELOC/doc/latex/multiaudience/sample-execs.pdf + RELOC/doc/latex/multiaudience/sample.tex + RELOC/doc/latex/multiaudience/verbatim.tex +srccontainersize 5124 +srccontainerchecksum acb69d29f8f12a205b4560700330d0a94593595056784275a79531351c674ecb560cb453956a5eb088f09a666ba4c72a2bc64a79b954d13263559093d06d33a7 +srcfiles size=5 + RELOC/source/latex/multiaudience/multiaudience.dtx + RELOC/source/latex/multiaudience/multiaudience.ins +runfiles size=1 + RELOC/tex/latex/multiaudience/multiaudience.sty +catalogue-ctan /macros/latex/contrib/multiaudience +catalogue-license lppl1.3 +catalogue-topics cond-comp +catalogue-version 1.03 + +name multibbl +category Package +revision 15878 +shortdesc Multiple bibliographies +relocated 1 +longdesc The package multibbl redefines the standard bibliographic +longdesc commands so that one can generate multiple reference sections. +longdesc Each section has it own auxiliary file (for use with BibTeX) +longdesc and title. +containersize 1936 +containerchecksum 419f7bcf8f2226cf8c60119e30da278bf6138f4e1903dc322da33ca2b22120e50b205dc0bb01b46cab0c93fdaacc37b823a812121a731fdea4cf03354d1b0690 +doccontainersize 77252 +doccontainerchecksum 68a3f99cbde27d15fa8b56730f4e9f7587bcecfc9a6ebe19a7811a29278cbe21f214465942bd4ee6cc28833b9614dfef14714dceddcdb041d5676ee7ead810bb +docfiles size=28 + RELOC/doc/latex/multibbl/multibbl.pdf details="Package documentation" +srccontainersize 3840 +srccontainerchecksum be2bb39e0267d6a008dd3dab1d1fbfc22e38017656f6fd717e35d3252def115d451a1eddadc6fbb3787bee901b43b09327ebb0f676ee452db71196cd2299778c +srcfiles size=3 + RELOC/source/latex/multibbl/multibbl.dtx + RELOC/source/latex/multibbl/multibbl.ins +runfiles size=1 + RELOC/tex/latex/multibbl/multibbl.sty +catalogue-ctan /macros/latex/contrib/multibbl +catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 1.1 + +name multibib +category Package +revision 15878 +shortdesc Multiple bibliographies within one document +relocated 1 +longdesc The package the creation of references to multiple +longdesc bibliographies within one document. It thus provides +longdesc complementary functionality to packages like bibunits and +longdesc chapterbib, which allow the creation of one bibliography for +longdesc multiple, but different parts of the document. Multibib is +longdesc compatible with inlinebib, natbib, and koma-script. +containersize 16576 +containerchecksum 82cd48cf9097b36664d4dcfb5d73dbd6e961c2f0a8bf7816d1bc59a33cb6d2c65e0f63a9d1d596dc9faa4339536746089e34bd1b510e1b2c0ea272df5840e396 +doccontainersize 188844 +doccontainerchecksum 1d4536094c09755fc91b2657cc0eb0b0b2fd8d1c5ca37bf2f046b62a4b0be6f83a93debac8be3c5481651dc75cac2066962556370bd84face6b03aaba24bbcc6 +docfiles size=55 + RELOC/doc/latex/multibib/README details="Package Readme" + RELOC/doc/latex/multibib/bibtexall + RELOC/doc/latex/multibib/multibib.pdf details="Package documentation" +srccontainersize 12980 +srccontainerchecksum c7777e3c32833538893ae463d8396f894b390f642fa697b8ba237cd7183e2bc7cb86a9773530962f41372e4ec016eb96c7a060dc63081b2faf29248a65f14a1f +srcfiles size=13 + RELOC/source/latex/multibib/multibib.dtx + RELOC/source/latex/multibib/multibib.ins +runfiles size=20 + RELOC/bibtex/bst/multibib/mbplain.bst + RELOC/bibtex/bst/multibib/mbunsrtdin.bst + RELOC/makeindex/multibib/mbgglo.ist + RELOC/makeindex/multibib/mbgind.ist + RELOC/tex/latex/multibib/multibib.sty +catalogue-ctan /macros/latex/contrib/multibib +catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 1.4 + +name multibibliography +category Package +revision 30939 +shortdesc Multiple versions of a bibliography, with different sort orders +longdesc Conventional standards for bibliography styles impose a forced +longdesc choice between index and name/year citations, and corresponding +longdesc references. The package avoids this choice, by providing +longdesc alphabetic, sequenced, and even chronological orderings of +longdesc references. Inline citations, that integrate these +longdesc heterogeneous styles, are also supported (and work with other +longdesc bibliography packages). +depend multibibliography.ARCH +containersize 8300 +containerchecksum faa2e16b8bdb9309e2f16cdb2c717b59c8ecd5d73e4819d72ee3226a80fe0c0ff6b4d686d0f1d009601e0d6dea140cd4812c2f4cb94f37b5bd9cc1bd19137965 +doccontainersize 456972 +doccontainerchecksum 3e13c8c60ab8091a363b63a63259e53e3c5076feb224a6f426e55a351141f007ea8bf7526b0f80684c83e4e97b43f5f05217e254f978e8b69665c736efbe8512 +docfiles size=131 + texmf-dist/doc/latex/multibibliography/Makefile + texmf-dist/doc/latex/multibibliography/README details="Readme" + texmf-dist/doc/latex/multibibliography/figure.pdf + texmf-dist/doc/latex/multibibliography/multibibliography.bib + texmf-dist/doc/latex/multibibliography/multibibliography.pdf details="Package documentation" + texmf-dist/doc/latex/multibibliography/tug-paper.pdf details="TUGboat paper" + texmf-dist/doc/latex/multibibliography/tug-paper.tex + texmf-dist/doc/latex/multibibliography/type.bib +srccontainersize 4724 +srccontainerchecksum 544b3778bd0a51e99e89e18e606d37551576d655a01b46523786d6f910cf84b3886a8b29c72b9e0c25b3ae629045470b24e2741d7894f867437ca069cd692cb4 +srcfiles size=5 + texmf-dist/source/latex/multibibliography/multibibliography.dtx + texmf-dist/source/latex/multibibliography/multibibliography.ins +runfiles size=10 + texmf-dist/bibtex/bst/multibibliography/chronological.bst + texmf-dist/scripts/multibibliography/multibibliography.pl + texmf-dist/tex/latex/multibibliography/multibibliography.sty +catalogue-also nmbib +catalogue-ctan /macros/latex/contrib/multibibliography +catalogue-license lppl1.3 +catalogue-topics bibtex-supp +catalogue-version 1.03 + +name multibibliography.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of multibibliography +containersize 352 +containerchecksum cda45045120aa92962bb9b863e3a2db323df5c6ee7aeae55eef58c2339d93164805fda91fea9190bab7e2a5cdcb223a5955dd253562851ecaf72cfcde6de54ae +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/multibibliography + +name multibibliography.amd64-freebsd +category Package +revision 30534 +shortdesc amd64-freebsd files of multibibliography +containersize 348 +containerchecksum 9888d3f0b944fcd9e5a764b61175d314b40ca5e4e8134ac6cda6fccbc029834c49bbfea03df6aa34781e95b506c5214e96fd2cda2d008adad379119d08d84100 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/multibibliography + +name multibibliography.amd64-netbsd +category Package +revision 30534 +shortdesc amd64-netbsd files of multibibliography +containersize 348 +containerchecksum 57d4b4d95be88d317cf0f9a6ea434755d7fc3bd6ef765abeadcbb6a1b9a8a292b2e51ecae20523e3ea48440617ee453e4b94fb7525d3b20ee124cde0012f5078 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/multibibliography + +name multibibliography.armhf-linux +category Package +revision 30534 +shortdesc armhf-linux files of multibibliography +containersize 348 +containerchecksum ba4950ecc9262c46a2970f88a67fcc270c21e2498f4c52ca7438930c232ed760f95ea8269b84f4075d868395df3427a1d43ecb91df1d3de120d340d62004fd03 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/multibibliography + +name multibibliography.i386-cygwin +category Package +revision 30526 +shortdesc i386-cygwin files of multibibliography +containersize 348 +containerchecksum 263e13412f85dab071e561e000f72595604674607159bb282bbedb0bb121a1dd469cd80064da7920f011c3d2d9b0b72cb567c796158863fd697570c834b33a5c +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/multibibliography + +name multibibliography.i386-freebsd +category Package +revision 30534 +shortdesc i386-freebsd files of multibibliography +containersize 352 +containerchecksum 6adbf081a55fb8198d8c1a1268de4ed5378b5a857d2a4b6cc02176ed55ba9dabf595a7be566a8e4faeb45a4deabe0607666d27f534c35d42eb52284071d87b1a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/multibibliography + +name multibibliography.i386-linux +category Package +revision 30534 +shortdesc i386-linux files of multibibliography +containersize 352 +containerchecksum 53c1797ff1451f1e8b9984218d00b142ba266432c93ce23a73ff532701a53618cabcdd4ba432049a92d29b63f3b6f8c8e6a0c9b64d91c16ce678fa3bf9c31ee5 +binfiles arch=i386-linux size=1 + bin/i386-linux/multibibliography + +name multibibliography.i386-netbsd +category Package +revision 30534 +shortdesc i386-netbsd files of multibibliography +containersize 348 +containerchecksum 8852ae078678ed13e0ec7bb456590c2e5e74dae4b464a9b3fae73b932818cd9eaa432115e6ed2bf3ca160ee0d707fc1182cb78118d0665959ef1f67010fd6206 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/multibibliography + +name multibibliography.i386-solaris +category Package +revision 30534 +shortdesc i386-solaris files of multibibliography +containersize 352 +containerchecksum 8c0a5409a7ef4b1505c482fe13953212c498dcbbdcf6ed79649329069aa134425df837ee2819512fb60c8a8636776697351ddde1c2a1c8e3221899a77f42a783 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/multibibliography + +name multibibliography.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of multibibliography +containersize 348 +containerchecksum 98e02a9b50c28e799e40b9ff057e5e25323b1af415c08a54da50d67a52c193ee2f3e7a584311ca624fa9a6328d839dfcf9a9e1f391be1f46cb20b8d147fc520b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/multibibliography + +name multibibliography.win32 +category Package +revision 30534 +shortdesc win32 files of multibibliography +containersize 696 +containerchecksum 5d76e788b9585b7bf6c59748486bed4d5bf8fad2a8772eb0adcf9a3f31024f766d824b6aca12e5c779ce21c9b519a03211083680faf2610a77bed12907182405 +binfiles arch=win32 size=1 + bin/win32/multibibliography.exe + +name multibibliography.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of multibibliography +containersize 348 +containerchecksum 1f7b0ef985490c14ded4282a6361125c43e49438671e3242284c3aa7d540217a1a5acbc448a59174f9b49d87bb3971e2c3837fd5634f78d8aa3dc1893d6467ee +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/multibibliography + +name multibibliography.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of multibibliography +containersize 356 +containerchecksum 7560dff7b3b516ed0cdede0a39586cf358b3f182698d55cb7fa0a35ebe833acfdfc735955c85abbcefc66417b63bb85d6145d60af699a60267234c1eb0e9e9b9 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/multibibliography + +name multibibliography.x86_64-linux +category Package +revision 30534 +shortdesc x86_64-linux files of multibibliography +containersize 348 +containerchecksum 91b22db3304a5ab30e155490cde40907971e986d6c427b88b2043373e35e5bc3a453f026c4504bd5da2cdac5ce583be43590a9c7c0968a9501e20f7b78e1eef0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/multibibliography + +name multibibliography.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of multibibliography +containersize 356 +containerchecksum 753430befaec3e43500466f3cafbe780b865aeb6924cb7e9d2e5a69ca8ad8e1302f191f02a8bbbd36102adc005373275b5502ce9b72d8a047d80f17a56ee6d58 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/multibibliography + +name multibibliography.x86_64-solaris +category Package +revision 30534 +shortdesc x86_64-solaris files of multibibliography +containersize 348 +containerchecksum 9dc4c387adb446df5cdfc3901afcba9c13a9c233789b123d292c2788dab8a27ef37b72c0bc38320a7f6778ae6256387e718fe4d63d4dd4a4b3714737e0404d12 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/multibibliography + +name multicap +category Package +revision 15878 +shortdesc Format captions inside multicols +relocated 1 +longdesc This is a package for formatting captions of column figures and +longdesc column tabular material, which cannot be standard floats in a +longdesc multicols environment. The package also provides a convenient +longdesc way to customise your captions, whether they be in multicols or +longdesc not. +containersize 1708 +containerchecksum 5e4a4eebd7560d4aebdaf7035b9bc14116a32cb2e043aa93afb9f95eaf271fdd75fe7d2b6296d36327d7aa5b14b52046b0c941ae949584ad27a2b89ebe54b6de +doccontainersize 91288 +doccontainerchecksum 644f46fa6431f0f7bbbdfed8a346887d107c8ff7c8d5b2c826b16994faa48d83ca59cd139c16fa144122e0425e6a2c592762b86568f17fb914dd943cdb7eb808 +docfiles size=28 + RELOC/doc/latex/multicap/multicap.pdf details="Package documentation" +srccontainersize 6924 +srccontainerchecksum 95df0571a8741db7d0b4d3ab0fd0d1469c531a00e3cf524977fe2cec57c3cb9ce9cf3c3136b42a8d0fb8f9dea2e8f4cc6f07fa48490167094e04c0e688d45527 +srcfiles size=6 + RELOC/source/latex/multicap/multicap.dtx +runfiles size=1 + RELOC/tex/latex/multicap/multicap.sty +catalogue-also caption +catalogue-ctan /macros/latex/contrib/multicap +catalogue-license lppl +catalogue-topics caption + +name multicolrule +category Package +revision 56366 +shortdesc Decorative rules between columns +relocated 1 +longdesc This package lets you customize the appearance of the vertical +longdesc rule that appears between columns of multicolumn text. It is +longdesc primarily intended to work with the multicol package, hence its +longdesc name, but also supports the twocolumn option and \twocolumn +longdesc macro provided by the standard classes (and related classes +longdesc such as the KOMA-Script equivalents). The package depends on +longdesc expl3 and xparse. +containersize 3964 +containerchecksum 46c8745965a2863f3ded3aff6a910e1971d9aa3127a33c36431d68d1150075f52444495c0fd16fa1b737d2f1dfe7058879f7a50003f763cd0d28781f62bfea0e +doccontainersize 580704 +doccontainerchecksum 42d7798d38abce4454a726dd2998b94e4171bf963108a8ed18b05b5acae739e19e8e1189e74cfaad02f4ca92b32e7fd0afe9496fbd35983574da8607441a2295 +docfiles size=146 + RELOC/doc/latex/multicolrule/README.md details="Readme" + RELOC/doc/latex/multicolrule/mcrule-examples.pdf + RELOC/doc/latex/multicolrule/mcrule-examples.tex + RELOC/doc/latex/multicolrule/multicolrule.pdf details="Package documentation" +srccontainersize 19068 +srccontainerchecksum 53c008ef7b7b6505a592ac3684ae51224e9a1d7def82822a376b7b4b6e6f1ccfe3cb2e2dc677efce6ac3807b5ac7424c34003df2006b8682c89ea78a060178b0 +srcfiles size=18 + RELOC/source/latex/multicolrule/multicolrule.dtx +runfiles size=5 + RELOC/tex/latex/multicolrule/multicolrule.sty +catalogue-contact-bugs https://github.com/polysyllabic/multicolrule/issues +catalogue-contact-repository https://github.com/polysyllabic/multicolrule +catalogue-ctan /macros/latex/contrib/multicolrule +catalogue-license lppl1.3c +catalogue-topics decoration rule line-patt line-weight expl3 +catalogue-version 1.3a + +name multidef +category Package +revision 40637 +shortdesc Quickly define several similar macros +relocated 1 +longdesc Multidef provides a simple way of defining several macros +longdesc having similar definitions. +containersize 2544 +containerchecksum 2d15975c8a191cc08925cc8cd74b982af909a7488a68e4b6f5eb4c2ba0dc94dbcb40c4347c5c4774fda24f98efff52131f6a243e1e6bdcb4dde7e683e408d6a9 +doccontainersize 196512 +doccontainerchecksum 50b26f8fcfde20dd04f3e3701d611631c8914e9488a3f87d25e0c60803090133f9abe889b449c67a09ccd5053c67c4a3ea699d52d44480051391edaaa7ff9ef7 +docfiles size=50 + RELOC/doc/latex/multidef/README details="Readme" + RELOC/doc/latex/multidef/multidef-test.tex + RELOC/doc/latex/multidef/multidef.pdf details="Package documentation" +srccontainersize 4944 +srccontainerchecksum 4f506eef5dc2bbb8c740d3b25c00e21a56ccb02410adc85788f2cf2ec7da81531ec5843d0a29931ab1aea0b4e8280eeb235b6a97505fb777068d902199cfd084 +srcfiles size=5 + RELOC/source/latex/multidef/multidef.dtx + RELOC/source/latex/multidef/multidef.ins +runfiles size=2 + RELOC/tex/latex/multidef/multidef.sty +catalogue-ctan /macros/latex/contrib/multidef +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.10 + +name multido +category Package +revision 18302 +shortdesc A loop facility for Generic TeX +relocated 1 +longdesc The package provides the \multido command, which was originally +longdesc designed for use with PSTricks. Fixed-point arithmetic is used +longdesc when working on the loop variable, so that the package is +longdesc equally applicable in graphics applications like PSTricks as it +longdesc is with the more common integer loops. +containersize 3684 +containerchecksum 5c861bddcb8b2bdb654dc4438621834a68b2bca102799317c9a220f9bc9bc4c9d70775375302a85736f8706bb7fbfc1a4c24fae2f850237e8f54ad521b1cef83 +doccontainersize 106732 +doccontainerchecksum 8cef36438fbe57c54f625b178331f7a6ca19854abcddb475283fc0cb4a362764c443de05989245e962dba9e2e4f17734533502fbd4b2ef4fc8e8c36b96bc68ab +docfiles size=36 + RELOC/doc/generic/multido/Changes + RELOC/doc/generic/multido/multido-doc.pdf details="Package documentation" + RELOC/doc/generic/multido/multido-doc.tex + RELOC/doc/generic/multido/multido.pdf +srccontainersize 976 +srccontainerchecksum 3f3f6f5813ab1da542ebc9c4837da72339804866875bf225292d8a36ebf54b33f12d3e84de9d0b5027d3e8889e10180649a19e25c7ec6bb532296e9e204e25e5 +srcfiles size=1 + RELOC/source/generic/multido/Makefile +runfiles size=4 + RELOC/tex/generic/multido/multido.tex + RELOC/tex/latex/multido/multido.sty +catalogue-ctan /macros/generic/multido +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.42 + +name multienv +category Package +revision 56291 +shortdesc Multiple environments using a "key=value" syntax +relocated 1 +longdesc The package provides a multienv environment which permits easy +longdesc addition of multiple environments using a key=value syntax. +longdesc Macros to define environments using this syntax are also +longdesc provided. +containersize 1896 +containerchecksum 61ebdecdbe9d1fc963a9625ab1d2811c967094f3aa983a08ff20d5ae1a7e6d87290981c4063ded7edb87ff248fe9f5499880ad5e602949f18ab3419c074e775d +doccontainersize 208908 +doccontainerchecksum ee1cda148f6f1f7998b86b6f36256c69ac399d32f6bf5443aba242ce93de8c0a64d43eeda32287dca7d7e83498fc26253be724b1231dd399b903908f4acf7430 +docfiles size=52 + RELOC/doc/latex/multienv/README details="Readme" + RELOC/doc/latex/multienv/multienv.pdf details="Package documentation" +srccontainersize 4584 +srccontainerchecksum bbd36e000e4533f3fb423d6d758fc7fb4e210868a695bf13e7ef8cc266c2875719c85c57aec0fa27bb4e174291321452a88bfda18004136e5bf4a99154bf26f8 +srcfiles size=6 + RELOC/source/latex/multienv/multienv.dtx + RELOC/source/latex/multienv/multienv.ins +runfiles size=2 + RELOC/tex/latex/multienv/multienv.sty +catalogue-contact-bugs https://sourceforge.net/p/multienv/tickets/ +catalogue-contact-home https://sourceforge.net/p/multienv/ +catalogue-contact-repository https://sourceforge.net/p/multienv/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/multienv +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.0 + +name multiexpand +category Package +revision 45943 +shortdesc Variations on the primitive command \expandafter +relocated 1 +longdesc The package provides two user commands; one that performs +longdesc multiple expansions, and one that does multiple \expandafter +longdesc operations, in a single macro call. The author suggests that +longdesc the same effect could be provided by use of the command variant +longdesc mechanisms of LaTeX 3 (see, for example, the interface +longdesc documentation of the experimental LaTeX 3 kernel). +containersize 1572 +containerchecksum 63f512ca5b9649c86a6936cc2407737e41afd6c6a3b4810fe81155a5b4127aecc538303e26b91f53decee900fba7946e90a46a545b3c9caafb3e0863940e0009 +doccontainersize 378352 +doccontainerchecksum 6b8a727aae2d314877df551ca5804e84be0bc530b4f09d8bfe6a9c1a4c1eb98647257beeb1813a183f0aa5422b0041443e817ce11b6db70e4129e3edc664e788 +docfiles size=97 + RELOC/doc/generic/multiexpand/README.md details="Readme" + RELOC/doc/generic/multiexpand/multiexpand.pdf details="Package documentation" + RELOC/doc/generic/multiexpand/multiexpand001.lvt + RELOC/doc/generic/multiexpand/multiexpand001.tlg + RELOC/doc/generic/multiexpand/multiexpand002.lvt + RELOC/doc/generic/multiexpand/multiexpand002.tlg +srccontainersize 5932 +srccontainerchecksum 197ad74e02212405fee0c79ea03021172e7ac5a99222e0c0d300da6a141bc694a2957c544bd357fb67fcac24acbbb4059041bd37f607b29f5f763b59b70613f9 +srcfiles size=6 + RELOC/source/generic/multiexpand/multiexpand.dtx + RELOC/source/generic/multiexpand/multiexpand.ins +runfiles size=1 + RELOC/tex/generic/multiexpand/multiexpand.sty +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-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 1.5 + +name multilang +category Package +revision 49065 +shortdesc A LaTeX package for maintaining multiple translations of a document +relocated 1 +longdesc Maintaining a LaTeX document with translations for multiple +longdesc languages can be cumbersome and error-prone. This package +longdesc provides a set of macros for defining macros and environments +longdesc as wrappers around existing macros and environments. These +longdesc wrappers allow one to clearly specify multiple translations for +longdesc the arguments to the wrapped macros and environments while only +longdesc the translation of the document's language is actually shown. +longdesc Choosing a translation then is as simple as choosing the +longdesc document's language via babel or polyglossia. +containersize 3436 +containerchecksum 57f9829b100068a84feb8a09a94066b93ec5fe70daf831ea99604089a4fc2f67af76f79505a2eab6dbc8f2b025feed6d908a1f24630e27e0f7606c4a3ebb71ca +doccontainersize 414176 +doccontainerchecksum e611f2195fc4f7083d6343eb3554a2e786fd6522383456544e45346481cd57d54b0899cdc6ffd9edc4b75567b1e092ecc597bff660d849e0ce2b3e2d1bd55507 +docfiles size=103 + RELOC/doc/latex/multilang/README.md details="Readme" + RELOC/doc/latex/multilang/multilang.pdf details="Package documentation" +srccontainersize 17232 +srccontainerchecksum 1e52e9c740d0eae4f89eb4a65e1d12b3d5f159cd6c938f729bdd019ccb8bcf98300a544fa7131fe214cde9b7b58f9b64a771a49513f45943c681893fbfc78b6e +srcfiles size=18 + RELOC/source/latex/multilang/multilang.dtx + RELOC/source/latex/multilang/multilang.ins +runfiles size=5 + RELOC/tex/latex/multilang/multilang-sect.sty + RELOC/tex/latex/multilang/multilang-tags.sty + RELOC/tex/latex/multilang/multilang.sty +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-license lppl1.2 +catalogue-topics multilingual +catalogue-version 0.9b + +name multiobjective +category Package +revision 15878 +shortdesc Symbols for multiobjective optimisation etc +relocated 1 +longdesc The package provides a series of operators commonly used in +longdesc papers related to multiobjective optimisation, multiobjective +longdesc evolutionary algorithms, multicriteria decision making and +longdesc similar fields. +containersize 1436 +containerchecksum 80b0f340f19dff329cd9f0fc32cbb9a8cf690243aa925d6687b9da345984f9eba9c0db7b62fedd2a54f077d841b9cbe91e47c98140f1cfeebdb16fc05408898d +doccontainersize 95288 +doccontainerchecksum 3a7c68054a85bbad36b6516c52ea74c35ce11c5ffd6f3d1f235ecc2ea55209343a4ff609857877094fb7f8861e8b7c54c8c979d06cc3b3583fb64e997372ae9c +docfiles size=29 + RELOC/doc/latex/multiobjective/README details="Readme" + RELOC/doc/latex/multiobjective/multiobjective.pdf details="Package documentation" +srccontainersize 2968 +srccontainerchecksum 99b9d17438d9f3f8a6ac40d0e705371d255af957fa5dc78dd6d98c89b515cb5af7377b5ac11558c84c7908b7efc7faadc9be83b86c2a255ba8c4033a69be3f4c +srcfiles size=3 + RELOC/source/latex/multiobjective/multiobjective.dtx + RELOC/source/latex/multiobjective/multiobjective.ins +runfiles size=1 + RELOC/tex/latex/multiobjective/multiobjective.sty +catalogue-ctan /macros/latex/contrib/multiobjective +catalogue-license lppl +catalogue-topics maths-symbol +catalogue-version 1.0 + +name multirow +category Package +revision 58396 +shortdesc Create tabular cells spanning multiple rows +relocated 1 +longdesc The package has a lot of flexibility, including an option for +longdesc specifying an entry at the "natural" width of its text. The +longdesc package is distributed with the bigdelim and bigstrut packages, +longdesc which can be used to advantage with \multirow cells. +containersize 2796 +containerchecksum 7591c7994fcac6fe351189c1364b448ac8b82e88bdaa50ec87c72123961a1bddfc02b397d5955eb96b9d47b4bcc9b6c1352eab0016b1dec24e034a95c53323fd +doccontainersize 600192 +doccontainerchecksum c02af3deb73b076662da0f45769dc57a7e11546e225f0df76f1fb163251e070b09203c4434382b7d4c3ad110460d0a1b6b0b384079b4a7cb54d105173fc7c575 +docfiles size=148 + RELOC/doc/latex/multirow/README details="Readme" + RELOC/doc/latex/multirow/multirow.pdf details="Package documentation" +srccontainersize 20244 +srccontainerchecksum 0b6880a377534734eec1945b91a8479bbbaccb61c3da5b4986e53ed0d9e0837f88ddc6c1718a36482070a12dfb490c0295123684707ad531213b219f314d2d1d +srcfiles size=23 + RELOC/source/latex/multirow/multirow.dtx + RELOC/source/latex/multirow/multirow.ins +runfiles size=4 + RELOC/tex/latex/multirow/bigdelim.sty + RELOC/tex/latex/multirow/bigstrut.sty + RELOC/tex/latex/multirow/multirow.sty +catalogue-also bigstrut bigdelim +catalogue-contact-bugs https://github.com/pietvo/multirow/issues +catalogue-contact-repository https://github.com/pietvo/multirow +catalogue-ctan /macros/latex/contrib/multirow +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 2.8 + +name munich +category Package +revision 15878 +shortdesc An alternative authordate bibliography style +relocated 1 +longdesc The Munich BibTeX style is produced with custom-bib, as a +longdesc German (and, more generally, Continental European) alternative +longdesc to such author-date styles as harvard and oxford. +containersize 6916 +containerchecksum d8d2de2245f24c6993fcd178e2a21891e66b5b99039e8969639d2a9cba15abc6c3c50374db61c8082695a969a69ddce902ff8b5fb8104fe66ba1384ef99b93f2 +doccontainersize 276956 +doccontainerchecksum ed2dc99df090a012f1b1b922659eebe4c2d8523127e17341b9c4b66413acfc89f8b64ed639c8fd40ace0f4fddc8662f42630411c67026311a26fed436a363b78 +docfiles size=75 + RELOC/doc/latex/munich/README details="Readme" + RELOC/doc/latex/munich/documenation_munich_Bibtex_style.pdf details="Package documentation" + RELOC/doc/latex/munich/documenation_munich_Bibtex_style.tex + RELOC/doc/latex/munich/example_DB.bib + RELOC/doc/latex/munich/example_munich_Bibtex_style.pdf details="Usage example" + RELOC/doc/latex/munich/example_munich_Bibtex_style.tex +runfiles size=8 + RELOC/bibtex/bst/munich/munich.bst +catalogue-ctan /biblio/bibtex/contrib/munich +catalogue-license lppl +catalogue-topics bibtex-sty + +name musical +category Package +revision 54758 +shortdesc Typeset (musical) theatre scripts +relocated 1 +longdesc This package is designed to simplify the development and +longdesc distribution of scripts for theatrical musicals, especially +longdesc ones under development. The output is formatted to follow +longdesc generally accepted script style[1] while also maintaining a +longdesc high level of typographic integrity, and includes commands for +longdesc dialog, lyrics, stage directions, music and dance cues, +longdesc rehearsal marks, and more. It gracefully handles dialog that +longdesc crosses page breaks, and can generate lists of songs and lists +longdesc of dances in the show. [1] There are lots of references for the +longdesc One True Way to format a script. Naturally, none of them agree. +containersize 5632 +containerchecksum 4bb8bd0781cd49950f2a80ed9527de1b0e49ef6eefea5787d1d13efa3893d57b48a9b69ddf0f62bd2695a61d9b785cfa1dfad2217f8cd97929e1dfefac9333c6 +doccontainersize 80296 +doccontainerchecksum c06f45815ff65fa7c492575731bf1aec0e774cf5a81907d1e381ac8ab366c167ada688b8c8fc82293c96980c5361a688eda666b130c1ac3f39976d49bf78f60c +docfiles size=24 + RELOC/doc/latex/musical/README.md details="Readme" + RELOC/doc/latex/musical/musical.pdf details="Package documentation" + RELOC/doc/latex/musical/musical.tex +runfiles size=4 + RELOC/tex/latex/musical/musical.sty +catalogue-ctan /macros/latex/contrib/musical +catalogue-license lppl1.3 +catalogue-topics drama-script music +catalogue-version 3.1 + +name musicography +category Package +revision 53596 +shortdesc Accessing symbols for music writing with pdfLaTeX +relocated 1 +longdesc This package makes available the most commonly used symbols in +longdesc writing about music in a way that can be used with pdfLaTeX and +longdesc looks consistent and attractive. It includes accidentals, +longdesc meters, and notes of different rhythmic values. The package +longdesc builds on the approach used in the harmony package, where the +longdesc symbols are taken from the MusiXTeX fonts. But it provides a +longdesc larger range of symbols and a more flexible, user-friendly +longdesc interface written using xparse and stackengine. +containersize 3112 +containerchecksum 062bd689224a432188b10d53f1224cf915432147db66d93d944fd9fbe9e0ea8928562fb19a6b5f94373db7c6fcc2c23daf7a7fa338f5b9dab53e9eee2a78db35 +doccontainersize 353768 +doccontainerchecksum 9dda39b912cc766aa619254eba7a7d3d90bab3a24668d82e2d4c9c18fff1bfeb7a09e549774aac6d654da1108378f1867ad1d8e84464f8672b3f5ddf445d5e47 +docfiles size=90 + RELOC/doc/latex/musicography/README.md details="Readme" + RELOC/doc/latex/musicography/musicography.pdf details="Package documentation" + RELOC/doc/latex/musicography/musicography.tex +runfiles size=2 + RELOC/tex/latex/musicography/musicography.sty +catalogue-contact-repository https://bitbucket.org/andrewacashner/musicography +catalogue-ctan /macros/latex/contrib/musicography +catalogue-license lppl1.3 +catalogue-topics music font-supp-symbol + +name musikui +category Package +revision 47472 +shortdesc Easy creation of "arithmetical restoration" puzzles +relocated 1 +longdesc This package permits to easily typeset arithmetical +longdesc restorations using LaTeX. This package requires the graphicx +longdesc package. +containersize 2392 +containerchecksum 602132bc51f1ed20f045bf0c822f201f7bbf3386f9181599894e66cb3c59f4ed15364013a5e30bfc59b22ab3fe4931872b779d1e7f34b8dbcd1eabe058b1f5e3 +doccontainersize 430404 +doccontainerchecksum 29cc8526543698f218e8c9c20b424fb2b05d3ee0a67c70a2afadd33dc49f0030ceb440b349898b8bd66a53a5682aa8289d081e4502fa5ccdfe481b4e2430de03 +docfiles size=209 + RELOC/doc/latex/musikui/README.txt details="Readme" + RELOC/doc/latex/musikui/kake.pdf + RELOC/doc/latex/musikui/musikui.pdf details="Package documentation" + RELOC/doc/latex/musikui/musikui.tex + RELOC/doc/latex/musikui/wari.pdf +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-license lppl +catalogue-topics puzzle maths +catalogue-version 1 + +name musixguit +category Package +revision 21649 +shortdesc Easy notation for guitar music, in MusixTeX +relocated 1 +longdesc The package provides commands for typesetting notes for guitar, +longdesc especially for simplifying guitar notation with MusixTeX. +containersize 2796 +containerchecksum 6262e1b447f517680ddfd9e5e076ea384dfa7fc8d219e7a2613a80ba66a0f0435d9dc31502f6abbfc150fa1e2de001afbdec25dd5778e3ffe559ea389d57208a +doccontainersize 159672 +doccontainerchecksum 8a6c9a42383d6b35c1300b958a7629306a6883bec1bd68751165eb3514f8f069c9995247142bad459e06fa42378a9ddd23093cb749bb2ccd58743312f83425dd +docfiles size=57 + RELOC/doc/latex/musixguit/README details="Readme" + RELOC/doc/latex/musixguit/musixguit_de.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/musixguit/musixguit_de.tex +runfiles size=3 + RELOC/tex/latex/musixguit/musixguit.sty +catalogue-ctan /macros/latex/contrib/musixguit +catalogue-license lppl1.3 +catalogue-topics music +catalogue-version 1.2.2 + +name musixtex +category Package +revision 57353 +shortdesc Sophisticated music typesetting +longdesc MusiXTeX provides a set of macros, based on the earlier +longdesc MusicTeX, for typesetting music with TeX. To produce optimal +longdesc spacing, MusiXTeX is a three-pass system: etex, musixflx, and +longdesc etex again. (Musixflx is a lua script that is provided in the +longdesc bundle.) The three-pass process, optionally followed by +longdesc processing for printed output, is automated by the musixtex +longdesc wrapper script. The package uses its own specialised fonts, +longdesc which must be available on the system for musixtex to run. This +longdesc version of MusiXTeX builds upon work by Andreas Egler, whose +longdesc own version is no longer being developed. The MusiXTeX macros +longdesc are universally acknowledged to be challenging to use directly: +longdesc the pmx preprocessor compiles a simpler input language to +longdesc MusiXTeX macros.. +depend musixtex.ARCH +containersize 101288 +containerchecksum 890faab60e994520b74081e0709217549d4d91bf0d9cd28bf8b08d33b474edd584b1af8810bd9e8f1899e9de9ab88f4091594ce3ad25671312856b1870711a51 +doccontainersize 2057608 +doccontainerchecksum 65380d56ef9403c633f3459192f21191912065d2a6b34efcba1c002dcf836353be7a6c532f66a11478002f34e2f53c35ae9e7d705ff716fb9c4f929dbbd82490 +docfiles size=1078 + texmf-dist/doc/generic/musixtex/ChangeLog-114.txt + texmf-dist/doc/generic/musixtex/ChangeLog-115.txt + texmf-dist/doc/generic/musixtex/ChangeLog-116.txt + texmf-dist/doc/generic/musixtex/ChangeLog-117.txt + texmf-dist/doc/generic/musixtex/ChangeLog-118.txt + texmf-dist/doc/generic/musixtex/ChangeLog-119.txt + texmf-dist/doc/generic/musixtex/ChangeLog-120.txt + texmf-dist/doc/generic/musixtex/ChangeLog-121.txt + texmf-dist/doc/generic/musixtex/ChangeLog-122.txt + texmf-dist/doc/generic/musixtex/ChangeLog-123.txt + texmf-dist/doc/generic/musixtex/ChangeLog-124.txt + texmf-dist/doc/generic/musixtex/ChangeLog-125.txt + texmf-dist/doc/generic/musixtex/ChangeLog-126.txt + texmf-dist/doc/generic/musixtex/ChangeLog-127.txt + texmf-dist/doc/generic/musixtex/ChangeLog-128.txt + texmf-dist/doc/generic/musixtex/ChangeLog-129.txt + texmf-dist/doc/generic/musixtex/ChangeLog-130.txt + texmf-dist/doc/generic/musixtex/ChangeLog-131.txt + texmf-dist/doc/generic/musixtex/ChangeLog-musixdoc.txt + texmf-dist/doc/generic/musixtex/README details="Readme" + texmf-dist/doc/generic/musixtex/examples/adagio.tex + texmf-dist/doc/generic/musixtex/examples/albinoni.tex + texmf-dist/doc/generic/musixtex/examples/angescam.tex + texmf-dist/doc/generic/musixtex/examples/angescao.tex + texmf-dist/doc/generic/musixtex/examples/angescax.tex + texmf-dist/doc/generic/musixtex/examples/avemaria.tex + texmf-dist/doc/generic/musixtex/examples/avemarid.tex + texmf-dist/doc/generic/musixtex/examples/avemaril.tex + texmf-dist/doc/generic/musixtex/examples/avemario.tex + texmf-dist/doc/generic/musixtex/examples/avemarix.tex + texmf-dist/doc/generic/musixtex/examples/avemaroo.tex + texmf-dist/doc/generic/musixtex/examples/aveverch.tex + texmf-dist/doc/generic/musixtex/examples/aveverdd.tex + texmf-dist/doc/generic/musixtex/examples/aveveruc.tex + texmf-dist/doc/generic/musixtex/examples/aveverud.tex + texmf-dist/doc/generic/musixtex/examples/aveverum.tex + texmf-dist/doc/generic/musixtex/examples/changecontext.tex + texmf-dist/doc/generic/musixtex/examples/chanson.tex + texmf-dist/doc/generic/musixtex/examples/dissonan.tex + texmf-dist/doc/generic/musixtex/examples/eightbitchar.tex + texmf-dist/doc/generic/musixtex/examples/fantaisc.tex + texmf-dist/doc/generic/musixtex/examples/fantaisd.tex + texmf-dist/doc/generic/musixtex/examples/fantaisi.tex + texmf-dist/doc/generic/musixtex/examples/fantcmol.tex + texmf-dist/doc/generic/musixtex/examples/fantfuga.tex + texmf-dist/doc/generic/musixtex/examples/fugcmoll.tex + texmf-dist/doc/generic/musixtex/examples/fugue.tex + texmf-dist/doc/generic/musixtex/examples/gloriab.tex + texmf-dist/doc/generic/musixtex/examples/glorias.tex + texmf-dist/doc/generic/musixtex/examples/gloriax.tex + texmf-dist/doc/generic/musixtex/examples/gymnoman.tex + texmf-dist/doc/generic/musixtex/examples/ilestne.tex + texmf-dist/doc/generic/musixtex/examples/ilestnex.tex + texmf-dist/doc/generic/musixtex/examples/ilfaitda.tex + texmf-dist/doc/generic/musixtex/examples/ilfaitdx.tex + texmf-dist/doc/generic/musixtex/examples/kinder.tex + texmf-dist/doc/generic/musixtex/examples/kv315.tex + texmf-dist/doc/generic/musixtex/examples/kv315f.tex + texmf-dist/doc/generic/musixtex/examples/kv315h.tex + texmf-dist/doc/generic/musixtex/examples/kv315o.tex + texmf-dist/doc/generic/musixtex/examples/kv315org.tex + texmf-dist/doc/generic/musixtex/examples/marcello.tex + texmf-dist/doc/generic/musixtex/examples/marcon1.tex + texmf-dist/doc/generic/musixtex/examples/marcon2.tex + texmf-dist/doc/generic/musixtex/examples/marcon3.tex + texmf-dist/doc/generic/musixtex/examples/marconf.tex + texmf-dist/doc/generic/musixtex/examples/marconh.tex + texmf-dist/doc/generic/musixtex/examples/marcono.tex + texmf-dist/doc/generic/musixtex/examples/musixdbrexample.tex + texmf-dist/doc/generic/musixtex/examples/onuitbri.tex + texmf-dist/doc/generic/musixtex/examples/onuitbrr.tex + texmf-dist/doc/generic/musixtex/examples/onuitbrx.tex + texmf-dist/doc/generic/musixtex/examples/ossiaexa.tex + texmf-dist/doc/generic/musixtex/examples/ostinato.tex + texmf-dist/doc/generic/musixtex/examples/pacifiqb.tex + texmf-dist/doc/generic/musixtex/examples/pacifiqn.tex + texmf-dist/doc/generic/musixtex/examples/pacifiqt.tex + texmf-dist/doc/generic/musixtex/examples/parnasum.tex + texmf-dist/doc/generic/musixtex/examples/partitur.tex + texmf-dist/doc/generic/musixtex/examples/pedal.tex + texmf-dist/doc/generic/musixtex/examples/prelfug.tex + texmf-dist/doc/generic/musixtex/examples/prelude.tex + texmf-dist/doc/generic/musixtex/examples/pslurvgap.tex + texmf-dist/doc/generic/musixtex/examples/quod.tex + texmf-dist/doc/generic/musixtex/examples/racine.tex + texmf-dist/doc/generic/musixtex/examples/recit.tex + texmf-dist/doc/generic/musixtex/examples/recueil.tex + texmf-dist/doc/generic/musixtex/examples/rests.tex + texmf-dist/doc/generic/musixtex/examples/reves.tex + texmf-dist/doc/generic/musixtex/examples/romances.tex + texmf-dist/doc/generic/musixtex/examples/scale.tex + texmf-dist/doc/generic/musixtex/examples/souvenir.tex + texmf-dist/doc/generic/musixtex/examples/souvenix.tex + texmf-dist/doc/generic/musixtex/examples/tierce.tex + texmf-dist/doc/generic/musixtex/examples/traeumer.tex + texmf-dist/doc/generic/musixtex/examples/widor.tex + texmf-dist/doc/generic/musixtex/examples/widor_16.tex + texmf-dist/doc/generic/musixtex/examples/widor_20.tex + texmf-dist/doc/generic/musixtex/musixcrd/doc.pdf + texmf-dist/doc/generic/musixtex/musixdoc.pdf details="Package documentation" + texmf-dist/doc/generic/musixtex/musixdoc/accidentals.tex + texmf-dist/doc/generic/musixtex/musixdoc/barlines.tex + texmf-dist/doc/generic/musixtex/musixdoc/barnumbering.tex + texmf-dist/doc/generic/musixtex/musixdoc/beams.tex + texmf-dist/doc/generic/musixtex/musixdoc/changing.tex + texmf-dist/doc/generic/musixtex/musixdoc/embedding.tex + texmf-dist/doc/generic/musixtex/musixdoc/examples.tex + texmf-dist/doc/generic/musixtex/musixdoc/extensions.tex + texmf-dist/doc/generic/musixtex/musixdoc/extracting.tex + texmf-dist/doc/generic/musixtex/musixdoc/fonts.tex + texmf-dist/doc/generic/musixtex/musixdoc/frontmatter.tex + texmf-dist/doc/generic/musixtex/musixdoc/index.tex + texmf-dist/doc/generic/musixtex/musixdoc/introduction.tex + texmf-dist/doc/generic/musixtex/musixdoc/layout.tex + texmf-dist/doc/generic/musixtex/musixdoc/lyrics.tex + texmf-dist/doc/generic/musixtex/musixdoc/miscellaneous.tex + texmf-dist/doc/generic/musixtex/musixdoc/musixdoc.ltx + texmf-dist/doc/generic/musixtex/musixdoc/musixdoc.sty + texmf-dist/doc/generic/musixtex/musixdoc/parameters.tex + texmf-dist/doc/generic/musixtex/musixdoc/preparing.tex + texmf-dist/doc/generic/musixtex/musixdoc/repeats.tex + texmf-dist/doc/generic/musixtex/musixdoc/restsdoc.tex + texmf-dist/doc/generic/musixtex/musixdoc/settingup.tex + texmf-dist/doc/generic/musixtex/musixdoc/slurstiesTypeK.tex + texmf-dist/doc/generic/musixtex/musixdoc/slurstiesfont.tex + texmf-dist/doc/generic/musixtex/musixdoc/smaller.tex + texmf-dist/doc/generic/musixtex/musixdoc/spacing.tex + texmf-dist/doc/generic/musixtex/musixdoc/staffsize.tex + texmf-dist/doc/generic/musixtex/musixdoc/summary.tex + texmf-dist/doc/generic/musixtex/musixdoc/transposition.tex + texmf-dist/doc/generic/musixtex/musixdoc/writingnotes.tex + texmf-dist/doc/generic/musixtex/musixlyr/README.musixlyr + texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.pdf + texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.tex + texmf-dist/doc/generic/musixtex/musixlyr/mxlyrdoc.pdf + texmf-dist/doc/generic/musixtex/musixlyr/mxlyrdoc.tex + texmf-dist/doc/generic/musixtex/musixtex-install.pdf details="Package installation notes" + texmf-dist/doc/generic/musixtex/musixtex-install.tex + texmf-dist/doc/generic/musixtex/notationMistakes/coulhack.tex + texmf-dist/doc/generic/musixtex/notationMistakes/sottieng.pdf + texmf-dist/doc/generic/musixtex/notationMistakes/sottieng.tex + texmf-dist/doc/generic/musixtex/notationMistakes/sottiger.pdf + texmf-dist/doc/generic/musixtex/notationMistakes/sottiger.tex + texmf-dist/doc/generic/musixtex/notationMistakes/sottigra.pdf + texmf-dist/doc/generic/musixtex/notationMistakes/sottigra.tex + texmf-dist/doc/generic/musixtex/psslurs/README.psslurs + texmf-dist/doc/generic/musixtex/psslurs/slurs.pdf + texmf-dist/doc/generic/musixtex/psslurs/slurs.tex + texmf-dist/doc/generic/musixtex/reference/musixre1.pdf + texmf-dist/doc/generic/musixtex/scripts/musixflx.pdf + texmf-dist/doc/generic/musixtex/scripts/musixtex.pdf + texmf-dist/doc/man/man1/musixflx.1 + texmf-dist/doc/man/man1/musixflx.man1.pdf + texmf-dist/doc/man/man1/musixtex.1 + texmf-dist/doc/man/man1/musixtex.man1.pdf +srccontainersize 9012 +srccontainerchecksum bc2d254ec56217edc6f5fb75229f0484ed8ae494da9dace2e86f494670e49bbc60b962d59397c0dc1ef40e7633cc97c9f75b4ab26ee7ff528fb8169b4e625660 +srcfiles size=12 + texmf-dist/source/generic/musixtex/musixcrd/doc.tex + texmf-dist/source/generic/musixtex/musixcrd/makefile + texmf-dist/source/generic/musixtex/musixcrd/musixcrd.dtx + texmf-dist/source/generic/musixtex/musixcrd/readme + texmf-dist/source/generic/musixtex/musixcrd/strip.tex +runfiles size=149 + texmf-dist/dvips/musixtex/psslurs.pro + texmf-dist/scripts/musixtex/musixflx.lua + texmf-dist/scripts/musixtex/musixtex.lua + texmf-dist/tex/generic/musixtex/musixadd.tex + texmf-dist/tex/generic/musixtex/musixadf.tex + texmf-dist/tex/generic/musixtex/musixbar.tex + texmf-dist/tex/generic/musixtex/musixbbm.tex + texmf-dist/tex/generic/musixtex/musixblx.tex + texmf-dist/tex/generic/musixtex/musixbm.tex + texmf-dist/tex/generic/musixtex/musixcho.tex + texmf-dist/tex/generic/musixtex/musixcpt.tex + texmf-dist/tex/generic/musixtex/musixcrd.tex + texmf-dist/tex/generic/musixtex/musixdat.tex + texmf-dist/tex/generic/musixtex/musixdbr.tex + texmf-dist/tex/generic/musixtex/musixdia.tex + texmf-dist/tex/generic/musixtex/musixec.tex + texmf-dist/tex/generic/musixtex/musixeng.tex + texmf-dist/tex/generic/musixtex/musixesf.tex + texmf-dist/tex/generic/musixtex/musixevo.tex + texmf-dist/tex/generic/musixtex/musixext.tex + texmf-dist/tex/generic/musixtex/musixfll.tex + texmf-dist/tex/generic/musixtex/musixgre.tex + texmf-dist/tex/generic/musixtex/musixgui.tex + texmf-dist/tex/generic/musixtex/musixhor.tex + texmf-dist/tex/generic/musixtex/musixhou.tex + texmf-dist/tex/generic/musixtex/musixhv.tex + texmf-dist/tex/generic/musixtex/musixinv.tex + texmf-dist/tex/generic/musixtex/musixlit.tex + texmf-dist/tex/generic/musixtex/musixlyr.tex + texmf-dist/tex/generic/musixtex/musixmad.tex + texmf-dist/tex/generic/musixtex/musixper.tex + texmf-dist/tex/generic/musixtex/musixplt.tex + texmf-dist/tex/generic/musixtex/musixpoi.tex + texmf-dist/tex/generic/musixtex/musixppff.tex + texmf-dist/tex/generic/musixtex/musixps.tex + texmf-dist/tex/generic/musixtex/musixref.tex + texmf-dist/tex/generic/musixtex/musixslu.tex + texmf-dist/tex/generic/musixtex/musixsqr.tex + texmf-dist/tex/generic/musixtex/musixste.tex + texmf-dist/tex/generic/musixtex/musixstf.tex + texmf-dist/tex/generic/musixtex/musixstr.tex + texmf-dist/tex/generic/musixtex/musixsty.tex + texmf-dist/tex/generic/musixtex/musixtex.tex + texmf-dist/tex/generic/musixtex/musixtmr.tex + texmf-dist/tex/generic/musixtex/musixtri.tex + texmf-dist/tex/generic/musixtex/tuplet.tex + texmf-dist/tex/latex/musixtex/musixcpt.sty + texmf-dist/tex/latex/musixtex/musixcrd.sty + texmf-dist/tex/latex/musixtex/musixfll.sty + texmf-dist/tex/latex/musixtex/musixltx.tex + texmf-dist/tex/latex/musixtex/musixtex.sty +catalogue-also pmx +catalogue-contact-home http://icking-music-archive.org/software/htdocs +catalogue-ctan /macros/musixtex +catalogue-license gpl2+ +catalogue-topics music +catalogue-version 1.31 + +name musixtex-fonts +category Package +revision 37762 +shortdesc Fonts used by MusixTeX +relocated 1 +longdesc These are fonts for use with MusixTeX; they are provided both +longdesc as original Metafont source, and as converted Adobe Type 1. The +longdesc bundle renders the older (Type 1 fonts only) bundle +longdesc musixtex-t1fonts obsolete. +execute addMixedMap musix.map +containersize 4183304 +containerchecksum 9cb72eba919842dcd8f892562a9f6f2c4638a46b4152509ffce1666e3e4243a2686b4feff3d9d68ac3c70c755606cda7b8659ceb1d8347b49bdfc4c0c7f35eda +doccontainersize 78176 +doccontainerchecksum 6fbc429483bbb7e1382d72622168d692dc5686ee21b9172ddd3a14df04397cdb9a3b45bae57b2ba2851aff401a5819d81894354e2e942d41812ebede75c45164 +docfiles size=24 + RELOC/doc/fonts/musixtex-fonts/CHANGES.psfonts + RELOC/doc/fonts/musixtex-fonts/README details="Readme" + RELOC/doc/fonts/musixtex-fonts/README.psfonts + RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.pdf details="Installation details" + RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.tex +runfiles size=1361 + RELOC/fonts/map/dvips/musixtex-fonts/musix.map + RELOC/fonts/source/public/musixtex-fonts/musexgen.mf + RELOC/fonts/source/public/musixtex-fonts/musix11.mf + RELOC/fonts/source/public/musixtex-fonts/musix13.mf + RELOC/fonts/source/public/musixtex-fonts/musix16.mf + RELOC/fonts/source/public/musixtex-fonts/musix20.mf + RELOC/fonts/source/public/musixtex-fonts/musix24.mf + RELOC/fonts/source/public/musixtex-fonts/musix25.mf + RELOC/fonts/source/public/musixtex-fonts/musix29.mf + RELOC/fonts/source/public/musixtex-fonts/musixgen.mf + RELOC/fonts/source/public/musixtex-fonts/musixsps.mf + RELOC/fonts/source/public/musixtex-fonts/musixspx.mf + RELOC/fonts/source/public/musixtex-fonts/mxsk.mf + RELOC/fonts/source/public/musixtex-fonts/xadf11.mf + RELOC/fonts/source/public/musixtex-fonts/xadf13.mf + RELOC/fonts/source/public/musixtex-fonts/xadf16.mf + RELOC/fonts/source/public/musixtex-fonts/xadf20.mf + RELOC/fonts/source/public/musixtex-fonts/xadf24.mf + RELOC/fonts/source/public/musixtex-fonts/xadf29.mf + RELOC/fonts/source/public/musixtex-fonts/xadfgen.mf + RELOC/fonts/source/public/musixtex-fonts/xdrawsl.mf + RELOC/fonts/source/public/musixtex-fonts/xdrawzl.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg11.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg13.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg16.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg20.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg24.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg25.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg29.mf + RELOC/fonts/source/public/musixtex-fonts/xgreggen.mf + RELOC/fonts/source/public/musixtex-fonts/xppff10.mf + RELOC/fonts/source/public/musixtex-fonts/xppffgen.mf + RELOC/fonts/source/public/musixtex-fonts/xsld11.mf + RELOC/fonts/source/public/musixtex-fonts/xsld11d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld13.mf + RELOC/fonts/source/public/musixtex-fonts/xsld13d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld16.mf + RELOC/fonts/source/public/musixtex-fonts/xsld16d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld20.mf + RELOC/fonts/source/public/musixtex-fonts/xsld20d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld24.mf + RELOC/fonts/source/public/musixtex-fonts/xsld24d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld29.mf + RELOC/fonts/source/public/musixtex-fonts/xsld29d.mf + RELOC/fonts/source/public/musixtex-fonts/xsldd20.mf + RELOC/fonts/source/public/musixtex-fonts/xsldu20.mf + RELOC/fonts/source/public/musixtex-fonts/xslgen.mf + RELOC/fonts/source/public/musixtex-fonts/xslgend.mf + RELOC/fonts/source/public/musixtex-fonts/xslgenu.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd11.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd11d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd13.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd13d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd16.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd16d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd20.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd24.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd24d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd29.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd29d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu11.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu11d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu13.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu13d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu16.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu16d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu20.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu24.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu24d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu29.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu29d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz-o.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz20.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu11.mf + RELOC/fonts/source/public/musixtex-fonts/xslu11d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu13.mf + RELOC/fonts/source/public/musixtex-fonts/xslu13d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu16.mf + RELOC/fonts/source/public/musixtex-fonts/xslu16d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu20.mf + RELOC/fonts/source/public/musixtex-fonts/xslu20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu24.mf + RELOC/fonts/source/public/musixtex-fonts/xslu24d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu29.mf + RELOC/fonts/source/public/musixtex-fonts/xslu29d.mf + RELOC/fonts/source/public/musixtex-fonts/xslud20.mf + RELOC/fonts/source/public/musixtex-fonts/xslup20.mf + RELOC/fonts/source/public/musixtex-fonts/xslz.mf + RELOC/fonts/source/public/musixtex-fonts/xslz20.mf + RELOC/fonts/source/public/musixtex-fonts/xslz20d.mf + RELOC/fonts/source/public/musixtex-fonts/xtie20.mf + RELOC/fonts/tfm/public/musixtex-fonts/musix11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix25.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musixsps.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musixspx.tfm + RELOC/fonts/tfm/public/musixtex-fonts/mxsk.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xppff10.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsldd20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsldu20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu20m.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhz20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhz20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslud20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslup20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslz20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslz20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xtie20.tfm + RELOC/fonts/type1/public/musixtex-fonts/musix11.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix13.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix16.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix20.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix24.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix29.pfb + RELOC/fonts/type1/public/musixtex-fonts/musixsps.pfb + RELOC/fonts/type1/public/musixtex-fonts/musixspx.pfb + RELOC/fonts/type1/public/musixtex-fonts/mxsk.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xppff10.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsldd20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsldu20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhz20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhz20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslud20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslup20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslz20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslz20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xtie20.pfb +catalogue-ctan /fonts/musixtex-fonts +catalogue-license gpl +catalogue-topics font font-mf font-type1 font-music + +name musixtex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of musixtex +containersize 364 +containerchecksum e2d5a9e6b501cd56e1cc5b15a14dfefeb6decdef59f591a5ca19517162d259b1bd1997b68886456baf43abd0f865de8ec5191615bb511b14dd10fc806fe24211 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/musixflx + bin/aarch64-linux/musixtex + +name musixtex.amd64-freebsd +category Package +revision 37026 +shortdesc amd64-freebsd files of musixtex +containersize 364 +containerchecksum 4112f0b6650dac57f41d5c758e755bd7b3a4d195c6fb3bbbf89ef88e9fddfe49ef330fbd5396fefa8dcd20bdbb6c3e21a4c4f231859066454ec8f356c20773a5 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/musixflx + bin/amd64-freebsd/musixtex + +name musixtex.amd64-netbsd +category Package +revision 37026 +shortdesc amd64-netbsd files of musixtex +containersize 364 +containerchecksum 1ee42539e698161627641cf66844715ae8bdcaae0d967fd6265bb27eb6b5e93bd9ba0ea021000195c45a12c25f6fded8c27fc63ee34ac97ba60d423f6ca2901a +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/musixflx + bin/amd64-netbsd/musixtex + +name musixtex.armhf-linux +category Package +revision 37026 +shortdesc armhf-linux files of musixtex +containersize 364 +containerchecksum bd58347c0b626c451dabd7eaed5289eaea8980bd7f50a32e2f26f42044b8c79abb25d0e82aa9a318cf921311cea33b1df18a46ddf859fc4df0f5947f4fd53d74 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/musixflx + bin/armhf-linux/musixtex + +name musixtex.i386-cygwin +category Package +revision 37026 +shortdesc i386-cygwin files of musixtex +containersize 360 +containerchecksum a2ae36151da6e84a2d4d5bac9a1c6320e4a27555abd3f6aa929e015bb86fa82e49a81cf48e4d52a8942e1afe394980e0f5b4b988e1cd0e27af0c2b39b079acc8 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/musixflx + bin/i386-cygwin/musixtex + +name musixtex.i386-freebsd +category Package +revision 37026 +shortdesc i386-freebsd files of musixtex +containersize 364 +containerchecksum 5655e1f0fbe79fff97ebfeb984102d3588a412a74708b0e4e9df1f059b4d4e04a7ace07347e8ca4fc4bbc486f4769897d0a697d055c10401567a78e61ca8fc9b +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/musixflx + bin/i386-freebsd/musixtex + +name musixtex.i386-linux +category Package +revision 37026 +shortdesc i386-linux files of musixtex +containersize 360 +containerchecksum b11d2a78da7ebfd221b4a24a864f85e10464db3e44ae05c82f52a8ba8e31080f0d05b648d301b9ee40772db9e7e44960d9d3b25eadd27c7e095b7de036620259 +binfiles arch=i386-linux size=2 + bin/i386-linux/musixflx + bin/i386-linux/musixtex + +name musixtex.i386-netbsd +category Package +revision 37026 +shortdesc i386-netbsd files of musixtex +containersize 360 +containerchecksum 83380646c4f9ba5bb038df208ce898773968c5e7dd97aa3bce754ce4a1a58a3615318ee3a008063606d73149558a3dc870973979ba2cd6c10f5a9e9f185cda62 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/musixflx + bin/i386-netbsd/musixtex + +name musixtex.i386-solaris +category Package +revision 22187 +shortdesc i386-solaris files of musixtex +containersize 364 +containerchecksum 7f4d34863adef1d2bada737fd798626ba9757b219f13438658924d0a34a7a55e68a0eba1d96c131bc6f8993d0081884fc6c125676618bc10c9c27f8050c3ed81 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/musixflx + bin/i386-solaris/musixtex + +name musixtex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of musixtex +containersize 360 +containerchecksum 1c31c86926518c97c7fd1ca53ef1ccd794e513e8a19dcf44dec7e8055e3303e1af7c6365567acc3cfe67f21e35dc303c4c6981c0c277da852892d24fa6effc90 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/musixflx + bin/universal-darwin/musixtex + +name musixtex.win32 +category Package +revision 37026 +shortdesc win32 files of musixtex +containersize 704 +containerchecksum 71cb98f76e93dbad0fea47ef0f1ef0b5abb37ae8def405c99e72ea9b28fe25ed7279a06ed99c327fdfe36767010fb9b5ec8f6506aebabc94d88a9fdd41b6e957 +binfiles arch=win32 size=2 + bin/win32/musixflx.exe + bin/win32/musixtex.exe + +name musixtex.x86_64-cygwin +category Package +revision 37026 +shortdesc x86_64-cygwin files of musixtex +containersize 364 +containerchecksum 39efb690cddb97e951f4603f9234b6427fe3ba71411fda595b4b36d932918aa9cd219a1e5143c21a2c5e1fbc748b2f53abe18f760edf4e23c4eab907d9fc871a +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/musixflx + bin/x86_64-cygwin/musixtex + +name musixtex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of musixtex +containersize 372 +containerchecksum 3f5b13e942f805fec013d80c8476672ab084c2ced8985c4ba48b4d2c28c3db51027e1ce7e0eb83d12f9b51433ce81b8036ce59e930fe273501e475a562bee873 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/musixflx + bin/x86_64-darwinlegacy/musixtex + +name musixtex.x86_64-linux +category Package +revision 37026 +shortdesc x86_64-linux files of musixtex +containersize 360 +containerchecksum 57dee9581407233fb989d0a260248f9fbe0771fbf8742f3cd9d47abaaab08257146d681704601b32da35da97d927360ceec9a6103088d15e56630d853bb3a2c1 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/musixflx + bin/x86_64-linux/musixtex + +name musixtex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of musixtex +containersize 368 +containerchecksum e43882a00a8f175eee2e463154828995e508028034d9d29725bbcbfaf2586f640710626e7b8fc62980a98c758fbdb0e37b3ccb6c7387654a960e9c0fe1d1a1f5 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/musixflx + bin/x86_64-linuxmusl/musixtex + +name musixtex.x86_64-solaris +category Package +revision 22187 +shortdesc x86_64-solaris files of musixtex +containersize 364 +containerchecksum a1a3edc6dde599748759f70f9aa70e5030b39ddf0570c04eda245335c0f9623190cccbb8f7d6c7346a8204473f0f3a77e61327817b90aaa45d41b8e6c126bc8e +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/musixflx + bin/x86_64-solaris/musixtex + +name musixtnt +category Package +revision 40307 +shortdesc A MusiXTeX extension library that enables transformations of the effect of notes commands +longdesc The package includes an archive containing a MusiXTeX extension +longdesc library musixtnt and C source code, binaries for Windows (32 +longdesc bit and 64 bit) and MacOSX, and documentation for two programs: +longdesc fixmsxpart and msxlint. musixtnt.tex provides a macro +longdesc \TransformNotes that enables transformations of the effect of +longdesc notes commands such as \notes. In general, the effect of +longdesc \TransformNotes{input}{output} is that notes commands in the +longdesc source will expect their arguments to match the input pattern, +longdesc but the notes will be typeset according to the output pattern. +longdesc An example is extracting single-instrument parts from a +longdesc multi-instrument score. fixmsxpart corrects note spacing in a +longdesc single-part MusiXTeX source (possibly derived from a +longdesc multi-instrument score and as a result having irregular note +longdesc spacing). msxlint detects incorrectly formatted notes lines in +longdesc a MusiXTeX source file. This should be used before using +longdesc \TransformNotes. +depend musixtex +depend musixtnt.ARCH +containersize 1480 +containerchecksum eab6332d626f199e46dcd03ea546abbc4446b41c4b0354c066790ebfde154c6fa90f861dcff77206318b58a31565d884576899629520e78b3285bac673d1f4bf +doccontainersize 119400 +doccontainerchecksum 2da473ad2425064747187da005e01d6844731c536b75095828a85d358ffb1344331ef483c0cebe79b346b4fa96a358a1e416cce7d7cfcce6b1242cf3c0a3645e +docfiles size=36 + texmf-dist/doc/generic/musixtnt/README details="Readme" + texmf-dist/doc/generic/musixtnt/TransformNotes.3 + texmf-dist/doc/generic/musixtnt/TransformNotes.pdf + texmf-dist/doc/generic/musixtnt/msxlint.pdf details="Package documentation" + texmf-dist/doc/generic/musixtnt/musixtnt-2016-01-30.tar.gz + texmf-dist/doc/man/man1/msxlint.1 + texmf-dist/doc/man/man1/msxlint.man1.pdf +runfiles size=1 + texmf-dist/tex/generic/musixtnt/musixtnt.tex +catalogue-ctan /macros/musixtnt +catalogue-license gpl2 +catalogue-topics music + +name musixtnt.aarch64-linux +category Package +revision 53999 +shortdesc aarch64-linux files of musixtnt +containersize 5620 +containerchecksum b1b604c0ab7886fe5e6242fc130a4f7d93d4bf8bdd1ed04ae0f264405611f51c7451fa1edf5c9c5287278ac03b6f968e09e53655ca46de01ceb8d4f9a208f87a +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/msxlint + +name musixtnt.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of musixtnt +containersize 9124 +containerchecksum 9d5e5d14f8cfc49ff7b160c4997b8599f95e33a756363449837bbe31e7e076cde3b94a326a4cd99b597ef1ea44e0c214dda7a473dbc2785c8dbf1e73b73bd406 +binfiles arch=amd64-freebsd size=5 + bin/amd64-freebsd/msxlint + +name musixtnt.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of musixtnt +containersize 8180 +containerchecksum e9b5e80398dbfb4657786f77989401e307a0b76b447f13cb78f816513e7816606e96e1189397bbc8f682c89c6ef0e55120d0daafb5b4c7b8791f926412458c45 +binfiles arch=amd64-netbsd size=6 + bin/amd64-netbsd/msxlint + +name musixtnt.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of musixtnt +containersize 4900 +containerchecksum 3ebb9868011cc6814b1014bc3a4df8feb78a714f935ca587ed4fd9565759c68fc351550541e86883e8585c8e94e4bf4fc8fde53a9328d1865689140afa318d44 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/msxlint + +name musixtnt.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of musixtnt +containersize 6036 +containerchecksum 9680517768ea049c1e6495afe4eecc312e6006106f8cb9ba1348e5bb59a7628a9ea4feb3245e357a58020cc1a087c93c73a9dc751e2bc41d603a29184874294c +binfiles arch=i386-cygwin size=5 + bin/i386-cygwin/msxlint.exe + +name musixtnt.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of musixtnt +containersize 7504 +containerchecksum 6ea3dc5e20f59a1573612dfd4192126e41396df08b84c0072d785887a55203febde0980d0dd67dc3f7d0e969b1ae0424049145dd9c38ffc021c23f8e42b4ad00 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/msxlint + +name musixtnt.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of musixtnt +containersize 5676 +containerchecksum 7456747da6fe52677ea3349b3c5e5675a885e7b51eded9f7753ab46a8d4e1b98e07e4e594ed139e00893d1bbccdec366195cd26b84e71d95d1b09822f535b28d +binfiles arch=i386-linux size=4 + bin/i386-linux/msxlint + +name musixtnt.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of musixtnt +containersize 7416 +containerchecksum acf40a8026cbe08f4d9f84e9d87f31352b6848f5d7d24718d0136ae8e4dd6304454ad0945c0c0c954e4b0bfba8c02e71d88b218d8f9dfb36a009b58af403d01f +binfiles arch=i386-netbsd size=5 + bin/i386-netbsd/msxlint + +name musixtnt.i386-solaris +category Package +revision 46829 +shortdesc i386-solaris files of musixtnt +containersize 8032 +containerchecksum 5d2b47e3914b010f138a3bee7dd3dd8e3db014fc3f61bc4550076e02e5e302d21bca0fb4f2e063acdb344332abde0eef7991b62fae6c3f6b063af5fefec89d2a +binfiles arch=i386-solaris size=5 + bin/i386-solaris/msxlint + +name musixtnt.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of musixtnt +containersize 19960 +containerchecksum f64d962cb189154ee83d28af07ba155b3f4a80ad734f8d0d5b202253f7508df989450befa121a2203e5af2d00482452414e32b4f9fbb0f61bfe4575941f4549c +binfiles arch=universal-darwin size=30 + bin/universal-darwin/msxlint + +name musixtnt.win32 +category Package +revision 58783 +shortdesc win32 files of musixtnt +containersize 6384 +containerchecksum 63b1f4ebb25bbd20121cf60889c991a5d5b0690b9956b03992386d949f1d815b47e7515c91c1c0dd6e34889d54c4dd9135fe07be98889bc656ecd30eb7709e4d +binfiles arch=win32 size=4 + bin/win32/msxlint.exe + +name musixtnt.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of musixtnt +containersize 6060 +containerchecksum 084ccd6c5156f3aca37af545bc69c17630d1774d831dfa3c7d2dae10573a961424d03fa09d8333dc177ceb665884f8dc6def556bdbc0257263d0f86c5bf2578f +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/msxlint.exe + +name musixtnt.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of musixtnt +containersize 7220 +containerchecksum 575f63eebeec0310a0681f28df32347bcc8758ccb02556cf80504e9dc0092af21ec76ce294a4d18a605271d7373146d540ce11f0f33ea12b76adaee21f210b25 +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/msxlint + +name musixtnt.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of musixtnt +containersize 5492 +containerchecksum 622d214c5a70916dd166db34e52f601a896a23943893cf4d3187db4d2f948b8ef36536e4421a4bdb4f11d9520f6ec7e6511e61f207753d45f792d5b7289c6985 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/msxlint + +name musixtnt.x86_64-linuxmusl +category Package +revision 54264 +shortdesc x86_64-linuxmusl files of musixtnt +containersize 8164 +containerchecksum ef1910f2bbf9a3a245deec962eaa416bf416c47a1751715a153ce4bef48c035faa025f2d0534a31e70d47ffdf509675c5dbd485b5a0c904cf4e89c5ae12aef7d +binfiles arch=x86_64-linuxmusl size=5 + bin/x86_64-linuxmusl/msxlint + +name musixtnt.x86_64-solaris +category Package +revision 46829 +shortdesc x86_64-solaris files of musixtnt +containersize 8732 +containerchecksum c1472477de0d8bcc009df2dbe361043fa4f035809a8309545a75c07a248a3c83fd072cd106f1eb2b8063d76159314b27f3271717f55e625d20c735fbf86bb8c8 +binfiles arch=x86_64-solaris size=5 + bin/x86_64-solaris/msxlint + +name musuos +category Package +revision 24857 +shortdesc Typeset papers for the department of music, Osnabruck +relocated 1 +longdesc The package provides a LaTeX class for typesetting term papers +longdesc at the institute of music and musicology of the University of +longdesc Osnabruck, Germany, according to the specifications of Prof. +longdesc Stefan Hahnheide. A BibLaTeX style is provided. +containersize 3756 +containerchecksum 3ad7bc18f20b0df70f6c92f7816d4e5bc90070a392788d93caffaba39f25e516a1ca4a6ef5438dbe55b514822d2882e7dfb809eaa4fb1380475fd624ec3efb9f +doccontainersize 509936 +doccontainerchecksum a2bc27d789cbd6833961d41ee6d697004fa7539810aafa8749af918572dbd20e2f267bb7435c068fd604540d0a75d1a558fea38a8cc7748c9dcf087c17469a61 +docfiles size=127 + RELOC/doc/latex/musuos/README details="Readme" + RELOC/doc/latex/musuos/musuos-doc.ist + RELOC/doc/latex/musuos/musuos.pdf details="Package documentation" +srccontainersize 15972 +srccontainerchecksum 55cbd375a48388b310c52e26b02b6dcd56f7d50761addaf275de656a2668bbb0c436c742649cfa07355e626c3ee01572960fc0177ce4226f764db2b5c3e04598 +srcfiles size=14 + RELOC/source/latex/musuos/musuos.dtx + RELOC/source/latex/musuos/musuos.ins +runfiles size=3 + RELOC/tex/latex/musuos/musuos.cls +catalogue-also biblatex-musuos +catalogue-ctan /macros/latex/contrib/musuos +catalogue-license lppl +catalogue-topics dissertation music +catalogue-version 1.1d + +name muthesis +category Package +revision 23861 +shortdesc Classes for University of Manchester Dept of Computer Science +relocated 1 +longdesc The bundle provides thesis and project report document classes +longdesc from the University of Manchester's Department of Computer +longdesc Science. +containersize 8164 +containerchecksum 66345512d1713dcd352feeb46d8ad9c609d4c9364a37b47b5fc0207800f6576831e15d7be59ce13f560ebedaeac9a595f2bd7045b621fbdc8e20a3b3c553524d +doccontainersize 628 +doccontainerchecksum 5ed08b459ffdc954f5857be1a1970e9a23d2cfc23cbb04e820b82368b1febb9bf04811e53ce6fd05cc12da302d182179d29b278fb99157e801afd05db15cbaa1 +docfiles size=1 + RELOC/doc/latex/muthesis/README details="Readme" +runfiles size=6 + RELOC/tex/latex/muthesis/muthesis.cls + RELOC/tex/latex/muthesis/third-rep.cls +catalogue-ctan /macros/latex/contrib/muthesis +catalogue-license lppl +catalogue-topics dissertation + +name mversion +category Package +revision 29370 +shortdesc Keeping track of document versions +relocated 1 +longdesc The package enables the user to keep track of different +longdesc versions of a LaTeX document. The command \version prints the +longdesc version and build numbers; each time you compile your document, +longdesc the build number is increased by one. By placing \version in +longdesc the header or footer, each page can be marked with the unique +longdesc build number describing the progress of your document. +containersize 1288 +containerchecksum 3031b6aa9408bfb0994ff23c36f6b3f770aa8beac0e94bfe1361dc2ec6ac47859a996ddea9f5283833e5711d0308ebfe5aae91bc0ab564c6e83056d7394f14f5 +doccontainersize 153968 +doccontainerchecksum bf7639f024b214c2b8b73cbe4f87848f390d106f46afff6f6a1257d80b37a6b7b02d8d9224580d945b93b3f86a43495d00c5c07d22e8428703036dc43273ad41 +docfiles size=41 + RELOC/doc/latex/mversion/README details="Readme" + RELOC/doc/latex/mversion/mVersion.pdf details="Package documentation" +srccontainersize 3072 +srccontainerchecksum 22ea633c451f88302061c2d3427ed52e561bf31bde30456e632f3abbca918a329c40e239ecf0a2f2b219a23da063101ebc9a23ea5fa355e479ee28a9404d50b7 +srcfiles size=3 + RELOC/source/latex/mversion/mVersion.dtx + RELOC/source/latex/mversion/mVersion.ins +runfiles size=1 + RELOC/tex/latex/mversion/mVersion.sty +catalogue-ctan /macros/latex/contrib/mversion +catalogue-license lppl1.2 +catalogue-topics doc-mgmt doc-tool +catalogue-version 1.0.1 + +name mwcls +category Package +revision 44352 +shortdesc Polish-oriented document classes +relocated 1 +longdesc mwcls is a set of document classes for LaTeX 2e designed with +longdesc Polish typographical tradition in mind. Classes include: +longdesc 'mwart' (which is a replacement for 'article'), 'mwrep' +longdesc (replacing 'report'), and 'mwbk' (replacing 'book'). Most +longdesc features present in standard classes work with mwcls classes. +longdesc Some extensions/exceptions include: sectioning commands allow +longdesc for second optional argument (it is possible to state different +longdesc texts for running head and for TOC), new environments +longdesc 'itemize*' and 'enumerate*' for lists with long items, page +longdesc styles have variants for normal, opening, closing, and blank +longdesc pages. +containersize 11340 +containerchecksum 045fbe4985684ff7bad3a7c493fa0b37e412e698ee5eaf31b4ccdf3e185433d185faeb78bbbae7e11b84354e4dcbc24c8f2cf549a64b81ed0b6adfceb4bc8d8a +doccontainersize 138172 +doccontainerchecksum 17b548e9db8a842c16367cd27b3f5639fdaf418f1967155a72c90e3e91d47a121c87dcf2bf0c6eb9042005d54e04ee40b367e0d81c7e2ff57de04da617f8b1b2 +docfiles size=44 + RELOC/doc/latex/mwcls/CZYTAJ details="Package README" language="pl" + RELOC/doc/latex/mwcls/ChangeLog + RELOC/doc/latex/mwcls/README details="Package README" language="en" + RELOC/doc/latex/mwcls/mwclsdoc.pdf details="Package documentation" language="pl" +srccontainersize 35232 +srccontainerchecksum aff2829633113538493a5634fa11d11a65d643e65afe74255ab31141ddd5fb39f6da59764507af10314b1d458c5c75b1f970b808b1e90c53d211cb4bc11f3b55 +srcfiles size=37 + RELOC/source/latex/mwcls/mwcls.dtx + RELOC/source/latex/mwcls/mwcls.ins +runfiles size=42 + RELOC/tex/latex/mwcls/mw10.clo + RELOC/tex/latex/mwcls/mw11.clo + RELOC/tex/latex/mwcls/mw12.clo + RELOC/tex/latex/mwcls/mwart.cls + RELOC/tex/latex/mwcls/mwbk.cls + RELOC/tex/latex/mwcls/mwbk10.clo + RELOC/tex/latex/mwcls/mwbk11.clo + RELOC/tex/latex/mwcls/mwbk12.clo + RELOC/tex/latex/mwcls/mwrep.cls +catalogue-ctan /macros/latex/contrib/mwcls +catalogue-license lppl1.2 +catalogue-topics book-pub class +catalogue-version 0.75 + +name mwe +category Package +revision 56291 +shortdesc Packages and image files for MWEs +relocated 1 +longdesc The bundle provides several files useful when creating a +longdesc minimal working example (MWE). The package itself loads a small +longdesc set of packages often used when creating MWEs. In addition, a +longdesc range of images are provided, which will be installed in the +longdesc TEXMF tree, so that they may be used in any (La)TeX document. +longdesc This allows different users to share MWEs which include image +longdesc commands, without the need to share image files or to use +longdesc replacement code. +containersize 807108 +containerchecksum cca88398d3410ae13cd555f77f050c8091cab1aa4f5baf3f1dd277aecc3634ec63077e836b0bd9a3ef987fc508220202c16ee805667d0b97f33d3e2a8676941b +doccontainersize 308884 +doccontainerchecksum 1db294e9e28e08d9a91462b2f5b8e368b340f5fe54193de97c7fc4b76287ffad3b72ee41fbd644f27a495d35f87b430181ad776891043838952d13c4511ee56a +docfiles size=82 + RELOC/doc/latex/mwe/INSTALL + RELOC/doc/latex/mwe/README details="Readme" + RELOC/doc/latex/mwe/mwe.pdf details="Package documentation" +srccontainersize 8440 +srccontainerchecksum 0ad6b31acabefc9ab8ae66b5c8962de6a4de7692021c2ae35ad488a73d44e57bfb97a54ffce1a4c1d8dd6cea054029a4d82d5fd788b7a9d52f509d72952e36fd +srcfiles size=12 + RELOC/source/latex/mwe/mwe.dtx + RELOC/source/latex/mwe/mwe.ins +runfiles size=513 + RELOC/tex/latex/mwe/example-grid-100x100bp.eps + RELOC/tex/latex/mwe/example-grid-100x100bp.jpg + RELOC/tex/latex/mwe/example-grid-100x100bp.pdf + RELOC/tex/latex/mwe/example-grid-100x100bp.png + RELOC/tex/latex/mwe/example-grid-100x100bp.tex + RELOC/tex/latex/mwe/example-grid-100x100pt.eps + RELOC/tex/latex/mwe/example-grid-100x100pt.jpg + RELOC/tex/latex/mwe/example-grid-100x100pt.pdf + RELOC/tex/latex/mwe/example-grid-100x100pt.png + RELOC/tex/latex/mwe/example-grid-100x100pt.tex + RELOC/tex/latex/mwe/example-image-10x16.eps + RELOC/tex/latex/mwe/example-image-10x16.jpg + RELOC/tex/latex/mwe/example-image-10x16.pdf + RELOC/tex/latex/mwe/example-image-10x16.png + RELOC/tex/latex/mwe/example-image-10x16.tex + RELOC/tex/latex/mwe/example-image-16x10.eps + RELOC/tex/latex/mwe/example-image-16x10.jpg + RELOC/tex/latex/mwe/example-image-16x10.pdf + RELOC/tex/latex/mwe/example-image-16x10.png + RELOC/tex/latex/mwe/example-image-16x10.tex + RELOC/tex/latex/mwe/example-image-16x9.eps + RELOC/tex/latex/mwe/example-image-16x9.jpg + RELOC/tex/latex/mwe/example-image-16x9.pdf + RELOC/tex/latex/mwe/example-image-16x9.png + RELOC/tex/latex/mwe/example-image-16x9.tex + RELOC/tex/latex/mwe/example-image-1x1.eps + RELOC/tex/latex/mwe/example-image-1x1.jpg + RELOC/tex/latex/mwe/example-image-1x1.pdf + RELOC/tex/latex/mwe/example-image-1x1.png + RELOC/tex/latex/mwe/example-image-1x1.tex + RELOC/tex/latex/mwe/example-image-4x3.eps + RELOC/tex/latex/mwe/example-image-4x3.jpg + RELOC/tex/latex/mwe/example-image-4x3.pdf + RELOC/tex/latex/mwe/example-image-4x3.png + RELOC/tex/latex/mwe/example-image-4x3.tex + RELOC/tex/latex/mwe/example-image-9x16.eps + RELOC/tex/latex/mwe/example-image-9x16.jpg + RELOC/tex/latex/mwe/example-image-9x16.pdf + RELOC/tex/latex/mwe/example-image-9x16.png + RELOC/tex/latex/mwe/example-image-9x16.tex + RELOC/tex/latex/mwe/example-image-a.eps + RELOC/tex/latex/mwe/example-image-a.jpg + RELOC/tex/latex/mwe/example-image-a.pdf + RELOC/tex/latex/mwe/example-image-a.png + RELOC/tex/latex/mwe/example-image-a.tex + RELOC/tex/latex/mwe/example-image-a3-landscape.pdf + RELOC/tex/latex/mwe/example-image-a3-landscape.tex + RELOC/tex/latex/mwe/example-image-a3.pdf + RELOC/tex/latex/mwe/example-image-a3.tex + RELOC/tex/latex/mwe/example-image-a4-landscape.pdf + RELOC/tex/latex/mwe/example-image-a4-landscape.tex + RELOC/tex/latex/mwe/example-image-a4-numbered.pdf + RELOC/tex/latex/mwe/example-image-a4-numbered.tex + RELOC/tex/latex/mwe/example-image-a4.pdf + RELOC/tex/latex/mwe/example-image-a4.tex + RELOC/tex/latex/mwe/example-image-a5-landscape.pdf + RELOC/tex/latex/mwe/example-image-a5-landscape.tex + RELOC/tex/latex/mwe/example-image-a5.pdf + RELOC/tex/latex/mwe/example-image-a5.tex + RELOC/tex/latex/mwe/example-image-b.eps + RELOC/tex/latex/mwe/example-image-b.jpg + RELOC/tex/latex/mwe/example-image-b.pdf + RELOC/tex/latex/mwe/example-image-b.png + RELOC/tex/latex/mwe/example-image-b.tex + RELOC/tex/latex/mwe/example-image-c.eps + RELOC/tex/latex/mwe/example-image-c.jpg + RELOC/tex/latex/mwe/example-image-c.pdf + RELOC/tex/latex/mwe/example-image-c.png + RELOC/tex/latex/mwe/example-image-c.tex + RELOC/tex/latex/mwe/example-image-empty.pdf + RELOC/tex/latex/mwe/example-image-empty.tex + RELOC/tex/latex/mwe/example-image-golden-upright.pdf + RELOC/tex/latex/mwe/example-image-golden-upright.tex + RELOC/tex/latex/mwe/example-image-golden.pdf + RELOC/tex/latex/mwe/example-image-golden.tex + RELOC/tex/latex/mwe/example-image-letter-landscape.pdf + RELOC/tex/latex/mwe/example-image-letter-landscape.tex + RELOC/tex/latex/mwe/example-image-letter-numbered.pdf + RELOC/tex/latex/mwe/example-image-letter-numbered.tex + RELOC/tex/latex/mwe/example-image-letter.pdf + RELOC/tex/latex/mwe/example-image-letter.tex + RELOC/tex/latex/mwe/example-image-plain.pdf + RELOC/tex/latex/mwe/example-image-plain.tex + RELOC/tex/latex/mwe/example-image.eps + RELOC/tex/latex/mwe/example-image.jpg + RELOC/tex/latex/mwe/example-image.pdf + RELOC/tex/latex/mwe/example-image.png + RELOC/tex/latex/mwe/example-image.tex + RELOC/tex/latex/mwe/example-movie.mp4 + RELOC/tex/latex/mwe/example-movie.pdf + RELOC/tex/latex/mwe/example-movie.tex + RELOC/tex/latex/mwe/mwe.sty +catalogue-contact-bugs https://sourceforge.net/p/latex-mwe/tickets/ +catalogue-contact-home https://sourceforge.net/p/latex-mwe/ +catalogue-contact-repository https://sourceforge.net/p/latex-mwe/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/mwe +catalogue-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 0.5 + +name mweights +category Package +revision 53520 +shortdesc Support for multiple-weight font packages +relocated 1 +longdesc Many font families available for use with LaTeX are available +longdesc at multiple weights. Many Type 1-oriented support packages for +longdesc such fonts re-define the standard \mddefault or \bfdefault +longdesc macros. This can create difficulties if the weight desired for +longdesc one font family isn't available for another font family, or if +longdesc it differs from the weight desired for another font family. The +longdesc package provides a solution to these difficulties. +containersize 1236 +containerchecksum 50d675bdee00625b5fbdcc1ef923a48abc19af890faab90ddde4893081dd2a5de6b5ce9165a4bece512c885ba3f3990d8dc300a873177c725a5aa16b434d4e77 +doccontainersize 1336 +doccontainerchecksum b103ae1a7e4072e646aa70ccd660cef52b6954deec6425fe2007c15a1f56fb45d43d276449e436f188e52192609766237ec22b69c7782af5c0e3f15081989dc1 +docfiles size=1 + RELOC/doc/latex/mweights/README details="Readme" +runfiles size=2 + RELOC/tex/latex/mweights/mweights.sty +catalogue-ctan /macros/latex/contrib/mweights +catalogue-license lppl +catalogue-topics font-use font-supp + +name mxedruli +category Package +revision 30021 +shortdesc A pair of fonts for different Georgian alphabets +relocated 1 +longdesc Two Georgian fonts, in both Metafont and Type 1 formats, which +longdesc cover the Mxedruli and the Xucuri alphabets. +execute addMap mxedruli.map +containersize 138692 +containerchecksum f721b48b71ae2eb74104e23989cae84d3316b322ebff4703d9bddf74e0ddacf742e279813977bf29883fd17f01049112169d02aa3e4a9be887c049f8484ca0fe +doccontainersize 308524 +doccontainerchecksum ea9de17ac138af2fdfbd624e0c516faa2eca674ae1c423cc7f972f87c1bfbd37812e199f68b463c07213fa263636490b7207baf68506514f73fdef1d6c041a49 +docfiles size=95 + RELOC/doc/fonts/mxedruli/README details="Readme" + RELOC/doc/fonts/mxedruli/alphabets.tex + RELOC/doc/fonts/mxedruli/mxeddoc.pdf details="Package documentation" + RELOC/doc/fonts/mxedruli/mxeddoc.tex + RELOC/doc/fonts/mxedruli/ossetic.tex + RELOC/doc/fonts/mxedruli/vepxis.tex +runfiles size=112 + RELOC/fonts/afm/public/mxedruli/mxed10.afm + RELOC/fonts/afm/public/mxedruli/mxedbf10.afm + RELOC/fonts/afm/public/mxedruli/mxedc10.afm + RELOC/fonts/afm/public/mxedruli/mxedi10.afm + RELOC/fonts/afm/public/mxedruli/xuc10.afm + RELOC/fonts/map/dvips/mxedruli/mxedruli.map + RELOC/fonts/source/public/mxedruli/mxed.mf + RELOC/fonts/source/public/mxedruli/mxed10.mf + RELOC/fonts/source/public/mxedruli/mxedacc.mf + RELOC/fonts/source/public/mxedruli/mxedbase.mf + RELOC/fonts/source/public/mxedruli/mxedbf10.mf + RELOC/fonts/source/public/mxedruli/mxedc10.mf + RELOC/fonts/source/public/mxedruli/mxedcaps.mf + RELOC/fonts/source/public/mxedruli/mxedd.mf + RELOC/fonts/source/public/mxedruli/mxedfont.mf + RELOC/fonts/source/public/mxedruli/mxedi10.mf + RELOC/fonts/source/public/mxedruli/mxedp.mf + RELOC/fonts/source/public/mxedruli/xuc.mf + RELOC/fonts/source/public/mxedruli/xuc10.mf + RELOC/fonts/source/public/mxedruli/xucbase.mf + RELOC/fonts/source/public/mxedruli/xucd.mf + RELOC/fonts/source/public/mxedruli/xucfont.mf + RELOC/fonts/source/public/mxedruli/xucl.mf + RELOC/fonts/source/public/mxedruli/xucp.mf + RELOC/fonts/tfm/public/mxedruli/mxed10.tfm + RELOC/fonts/tfm/public/mxedruli/mxedbf10.tfm + RELOC/fonts/tfm/public/mxedruli/mxedc10.tfm + RELOC/fonts/tfm/public/mxedruli/mxedi10.tfm + RELOC/fonts/tfm/public/mxedruli/xuc10.tfm + RELOC/fonts/type1/public/mxedruli/mxed10.pfb + RELOC/fonts/type1/public/mxedruli/mxedbf10.pfb + RELOC/fonts/type1/public/mxedruli/mxedc10.pfb + RELOC/fonts/type1/public/mxedruli/mxedi10.pfb + RELOC/fonts/type1/public/mxedruli/xuc10.pfb + RELOC/tex/latex/mxedruli/mxedruli.sty + RELOC/tex/latex/mxedruli/umxed.fd + RELOC/tex/latex/mxedruli/uxuc.fd + RELOC/tex/latex/mxedruli/xucuri.sty +catalogue-also georgian-stanier +catalogue-contact-home http://heinecke.pagesperso-orange.fr/mxedruli/ +catalogue-ctan /fonts/georgian/mxedruli +catalogue-license lppl +catalogue-topics georgian font font-type1 font-mf +catalogue-version 3.3c + +name mycv +category Package +revision 26807 +shortdesc A list-driven CV class, allowing TikZ decorations +relocated 1 +longdesc The class provides a set of functionality for writing +longdesc "curriculum vitae" with different layouts. The idea is that a +longdesc user can write some custom configuration directives, by means +longdesc of which is possible both to produce different c.v. layouts and +longdesc quickly switch among them. In order to process such directives, +longdesc the class uses a set of lists, provided by the package +longdesc etextools. Basic support for using TikZ decorations is also +longdesc provided. +containersize 8084 +containerchecksum 72e74c30c994441aac708e719e894d01bc3d1a6570863a589dbacae8e3c69f70d192abf7473b58a026b2859f7f10dfd1e56827cc759898248e3cfc9d36f37583 +doccontainersize 512164 +doccontainerchecksum 892d0c10fb8a2dd9a65bb6fa4dd48fc3ea49803a7e633cd390427bfbcc8f16f6d213f9ef511c7202521b518db4c94bfdad5197c30b2c8786bbbb6c6f188293a7 +docfiles size=183 + RELOC/doc/latex/mycv/CHANGELOG + RELOC/doc/latex/mycv/Doc/Images/logo-1.png + RELOC/doc/latex/mycv/Doc/mycv.tex + RELOC/doc/latex/mycv/Examples/Notes.txt + RELOC/doc/latex/mycv/Examples/mycv-example-dpl.pdf + RELOC/doc/latex/mycv/Examples/mycv-example-dpl2.pdf + RELOC/doc/latex/mycv/Examples/mycv-example-spl.pdf + RELOC/doc/latex/mycv/Examples/mycv-example-spl2.pdf + RELOC/doc/latex/mycv/Examples/mycv-examples.dtx + RELOC/doc/latex/mycv/README details="Readme" + RELOC/doc/latex/mycv/checksum.pl + RELOC/doc/latex/mycv/mycv.pdf details="Package documentation" +srccontainersize 8664 +srccontainerchecksum 56901df8931579aae3cc8f51e7c6c6542cca3b1b231512e6cc27b88104c39dea50026f0cf21b2b4251f4e1ddfe4119de7ddbde6f50bde743296bb84195fb5f05 +srcfiles size=10 + RELOC/source/latex/mycv/mycv.dtx + RELOC/source/latex/mycv/mycv.ins +runfiles size=11 + RELOC/scripts/mycv/mycv_split_contents.pl + RELOC/tex/latex/mycv/mycv.cls + RELOC/tex/latex/mycv/mycv_base.def + RELOC/tex/latex/mycv/mycv_dec.sty + RELOC/tex/latex/mycv/mycv_misc.def + RELOC/tex/latex/mycv/mycv_style.sty + RELOC/tex/latex/mycv/mycv_version.def +catalogue-ctan /macros/latex/contrib/mycv +catalogue-license lppl1.3 +catalogue-topics cv class +catalogue-version 1.5.6 + +name mylatex +category Package +revision 56751 +shortdesc Make a format containing a document's preamble +relocated 1 +longdesc The file mylatex.ltx permits you to create a format that +longdesc pre-loads a set of package files (and/or other macros) that you +longdesc regularly use. In some circumstances, this can be a great +longdesc advantage (though on an ordinarily fast modern computer on the +longdesc desktop, gains will be limited). The general scheme is to +longdesc initialise your usage by a command of the form: latex -ini +longdesc mylatex.ltx <document> whick will create a format file +longdesc mylatex.fmt, which you then use as: latex -fmt=mylatex +longdesc <document> +containersize 3976 +containerchecksum b7ffebb46952c41818081cc14545d429fa65e376a2214d0ed41b56cea05cb1d3146d87513b4a701825b01bcf1ab268cefe6e9d709cb627dbe7b95daaf439d509 +doccontainersize 728 +doccontainerchecksum 791cce1eb8370e62642b64389b26a91af563ca875268039ffa978cd07a743b999573199f1a3851ee65f8118cb462ab5d5c658118a735875db90eb8482246e889 +docfiles size=1 + RELOC/doc/latex/mylatex/README.txt details="Readme" +runfiles size=3 + RELOC/tex/latex/mylatex/mylatex.ltx +catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues +catalogue-contact-repository https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/latex/contrib/mylatex +catalogue-license lppl +catalogue-topics format + +name mylatexformat +category Package +revision 21392 +shortdesc Build a format based on the preamble of a LaTeX file +relocated 1 +longdesc The use of formats helps to speed up compilations: packages +longdesc which have been dumped in the format are loaded at very high +longdesc speed. This is useful when a document loads many packages +longdesc (including large packages such as pgf-TikZ). The package was +longdesc developed from the work in mylatex, and eliminates many of the +longdesc limitations and problems of that package. +containersize 4628 +containerchecksum 476e2c739c9a99a53a9f6bb7eb32e6122c149fe224497cd8e777af0ebd139ffadfa792090d8673ff96b4e17466e918f9af4ecb7a12c608d4c33d4e17f2b26f0a +doccontainersize 141756 +doccontainerchecksum c0754ef147a457e7c91b16a50dab2220fbf2f5385e126e796b1c65025f0fd998371b4e58d96ae72b8c6eb21b2030906729270c88c0914b1748714455e78d1bbb +docfiles size=51 + RELOC/doc/latex/mylatexformat/README details="Readme" + RELOC/doc/latex/mylatexformat/mylatexformat.pdf details="Package documentation" +srccontainersize 12888 +srccontainerchecksum 4f172517cd3e0bec77bc9003201a4488acfedcbddbca217ecac4878d3df9ab86719c5d9fc645671bbf3a5d5b66a1c4e80f9acc01ef27c82a3eaf13aeed45f857 +srcfiles size=13 + RELOC/source/latex/mylatexformat/mylatexformat.drv + RELOC/source/latex/mylatexformat/mylatexformat.dtx + RELOC/source/latex/mylatexformat/mylatexformat.ins +runfiles size=4 + RELOC/tex/latex/mylatexformat/mylatexformat.ltx +catalogue-ctan /macros/latex/contrib/mylatexformat +catalogue-license lppl1.3 +catalogue-topics format +catalogue-version 3.4 + +name mynsfc +category Package +revision 41996 +shortdesc XeLaTeX template for writing the main body of NSFC proposals +relocated 1 +longdesc The package provides a XeLaTeX template for writing the main +longdesc body of National Natural Science Foundation of China (NSFC) +longdesc proposals, which are allowed to apply online. The package +longdesc defines styles of the outlines and uses BibLaTeX/biber for the +longdesc management of references. +containersize 3420 +containerchecksum fbf6a66d9e4f7863b380f6cea43c58bcfb54e458d56fe2867b3e1354cb2489d4a0576e6c392e4825023db33465176161e226d954bc12080722317e92edfb3d0b +doccontainersize 225920 +doccontainerchecksum 11b2d4647cac4aa2280aeac24abca47b9d92680845eba5a99fdf05fbcd4590760927495ef87b04900084ec64652a8b2e28263d4d1a26765cd3e027393f2d7417 +docfiles size=60 + RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.bib + RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.pdf + RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.tex + RELOC/doc/xelatex/mynsfc/mynsfc.pdf details="Package documentation" +srccontainersize 4404 +srccontainerchecksum 4ca3be26449fb263e32a0302f5b85194e29b1c4e55012881a60f84a81a3498d82447934e60df522aa1b3e20ffc746bc78cba535e7208f88ddc46aa9831ffaf81 +srcfiles size=4 + RELOC/source/xelatex/mynsfc/mynsfc.dtx +runfiles size=3 + RELOC/tex/xelatex/mynsfc/mynsfc.cls +catalogue-ctan /macros/xetex/latex/mynsfc +catalogue-license lppl1.3 +catalogue-topics proposal +catalogue-version 1.01 + +name na-box +category Package +revision 45130 +shortdesc Arabic-aware version of pas-cours package +relocated 1 +longdesc This is a modified version of the pas-cours package made +longdesc compatible with XeLaTeX/polyglossia to write arabic documents +longdesc with fancy boxed theorem-alike environments. +containersize 2952 +containerchecksum 8b0659454d8324ca51c9e97f7957a3c14230dca0b4b8e047b961bad1b81d2a8b0220cf275bf84e9aae6a3d601fe93df3de94f603a198f6bea716064ae8675d0f +doccontainersize 978596 +doccontainerchecksum 2c78a71155eab3cfdf551830051dd360f6e9fc8085ebe364c13a79a1ebda0693d633e7ba08e31c356e46140c33bf3b190365cb88d944d2b3e8c0799ff68cdc8f +docfiles size=264 + RELOC/doc/xelatex/na-box/29.png + RELOC/doc/xelatex/na-box/30.png + RELOC/doc/xelatex/na-box/31.png + RELOC/doc/xelatex/na-box/README details="Readme" + RELOC/doc/xelatex/na-box/na-box_doc-back.pdf + RELOC/doc/xelatex/na-box/na-box_doc.listing + RELOC/doc/xelatex/na-box/na-box_doc.pdf details="Package documentation (in Arabic)" language="ar" + RELOC/doc/xelatex/na-box/na-box_doc.tex + RELOC/doc/xelatex/na-box/naammoh.tex + RELOC/doc/xelatex/na-box/nabox.png +runfiles size=3 + RELOC/tex/xelatex/na-box/na-box.sty +catalogue-also pas-cours +catalogue-ctan /macros/xetex/latex/na-box +catalogue-license lppl +catalogue-topics teaching +catalogue-version 1.0 + +name na-position +category Package +revision 55559 +shortdesc Tables of relative positions of curves and asymptotes or tangents in Arabic documents +relocated 1 +longdesc This package facilitates, in most cases, the creation of tables +longdesc of relative positions of a curve and its asymptote, or a curve +longdesc and a tangent in one of its points. It depends on tkz-tab and +longdesc listofitems, as well as amsmath, amsfonts, mathrsfs, and +longdesc amssymb. This package has to be used with polyglossia and +longdesc XeLaTeX to produce documents in Arabic. +containersize 1900 +containerchecksum fb88693c5d626331b9deab494bdb0fececfcb3d6f76e91f76f467ab8f152fe857e4ef41f87b38092118646961c0f64f82501f0f75f5610d793b8158d77bbbf9e +doccontainersize 84476 +doccontainerchecksum abe7a0a765cfdd1d4ff454180b32d4153cd715d9af333221ed3213082dfbcf5ae0562617a2b30835a8aaf2a65c166e6fb3941d3bd6c781d83d65e971bd53f356 +docfiles size=25 + RELOC/doc/xelatex/na-position/README details="Readme" + RELOC/doc/xelatex/na-position/na-positiondocAR.pdf details="Package documentation (Arabic)" language="ar" + RELOC/doc/xelatex/na-position/na-positiondocAR.tex +runfiles size=2 + RELOC/tex/xelatex/na-position/na-position.sty +catalogue-ctan /macros/xetex/latex/na-position +catalogue-license lppl +catalogue-topics maths arabic xetex +catalogue-version 1.2 + +name nag +category Package +revision 24741 +shortdesc Detecting and warning about obsolete LaTeX commands +relocated 1 +longdesc Old habits die hard. All the same, there are commands, classes +longdesc and packages which are outdated and superseded. The nag package +longdesc provides routines to warn the user about the use of such +longdesc obsolete things. As an example, we provide an extension that +longdesc detects many of the "sins" described in l2tabu. +containersize 7800 +containerchecksum a2d239ed1e12fd1b082c8df5531c9b83cf55c39b13781aa01848f3fd06136a9522598abf9e63580a93fb12ad7c392061b14d5e96b4d4f4dcf8180180280224a0 +doccontainersize 438652 +doccontainerchecksum 9a4859b67182b40428f720e2e955b591fd3fdf30acbe7c3214548766312833b3ebd5a046d1ca2e2b824e3bad95bde635a1cd112e8023395333cdcdb9cdf55ba9 +docfiles size=110 + RELOC/doc/latex/nag/README details="Readme" + RELOC/doc/latex/nag/nag.pdf details="Package documentation" + RELOC/doc/latex/nag/nagdemo.tex +srccontainersize 17648 +srccontainerchecksum 969b7e463e6e8eca51af114ba51d538d0a1f7b9ed3cb5dfecab92ec7eb913a872b740b2f434e854a7c11b31c7b3364120379a5732220833235912e73ee202878 +srcfiles size=15 + RELOC/source/latex/nag/nag.dtx + RELOC/source/latex/nag/nag.ins +runfiles size=10 + RELOC/tex/latex/nag/nag-abort.cfg + RELOC/tex/latex/nag/nag-experimental.cfg + RELOC/tex/latex/nag/nag-l2tabu.cfg + RELOC/tex/latex/nag/nag-orthodox.cfg + RELOC/tex/latex/nag/nag.sty +catalogue-ctan /macros/latex/contrib/nag +catalogue-license lppl +catalogue-topics latex-qual +catalogue-version 0.7 + +name nameauth +category Package +revision 58026 +shortdesc Name authority mechanism for consistency in body text and index +relocated 1 +longdesc Publications, that reference many names, require editors and +longdesc proofreaders to track those names in the text and index. The +longdesc package offers name authority macros that allow authors and +longdesc compilers to normalize occurrences of names, variant name +longdesc forms, and pen names in the text and index. This may help +longdesc minimize writing and production time and cost. +containersize 6868 +containerchecksum 7557d11e5f8c46aeab49e45d0a52c0bfe4b8754e4d24b4490a4912bbb7208a4f178320fd40530eb79e251c493129f2936982e3cee4212c05c295f4346b43b091 +doccontainersize 1149712 +doccontainerchecksum 1b22c9593ba4eaec9113d4fa7164a14d130a4b436ae082c9b9e5fef523df2b1a26f27f15d503e956ab75f5d75b5d7a33a4ddb27c90c79398195126bf54fb1131 +docfiles size=296 + RELOC/doc/latex/nameauth/README.md details="Readme" + RELOC/doc/latex/nameauth/examples.tex + RELOC/doc/latex/nameauth/nameauth.pdf details="Package documentation" +srccontainersize 91272 +srccontainerchecksum 363d6cc0cb052a3fd6e5c2df1725210b1a0dcadff08c272764e32d3125fb29c02321b388c43e1cf520f6362a2ba92d26e780b5e1beb3a99014ba053af94d95f7 +srcfiles size=130 + RELOC/source/latex/nameauth/Makefile + RELOC/source/latex/nameauth/nameauth.dtx +runfiles size=14 + RELOC/tex/latex/nameauth/nameauth.sty +catalogue-ctan /macros/latex/contrib/nameauth +catalogue-license lppl1.3 +catalogue-topics editorial editorial-consistency +catalogue-version 3.6 + +name namedef +category Package +revision 55881 +shortdesc TeX definitions with named parameters +relocated 1 +longdesc This package provides a prefix \named to be used in TeX +longdesc definitions so that parameters can be identified by their name +longdesc rather than by number, giving parameters a semantic rather than +longdesc syntactic meaning, making it easy to understand long +longdesc definitions. A usual definition reads: \def\SayHello#1{Hello, +longdesc #1!} but with namedef you can replace #1 by, say, #[person]: +longdesc \named\def\SayHello#[person]{Hello, #[person]!} and \named will +longdesc figure out the numbering of the parameters for you. +depend l3kernel +containersize 3564 +containerchecksum c413d600911ab1107554ec2aacadc80fad12a95e7486817c002274f282e047915d06f4878e68e423af649569752cd27d7c1b3a802a9abff68e91038719b2fd28 +doccontainersize 631916 +doccontainerchecksum 72031cf2858a3b68092c852c216f96aaea212c721e47d90e870c8153f83db921590246fb11b59009d431754720791e3c625fb3abd7bdd9010cd1a49894023ebb +docfiles size=157 + RELOC/doc/generic/namedef/DEPENDS.txt + RELOC/doc/generic/namedef/README.md details="Readme" + RELOC/doc/generic/namedef/namedef.pdf details="Package documentation" +srccontainersize 15372 +srccontainerchecksum adff08a774126c8faff52ba14044a8e2140f9586358dab6ce95e7a941706bf57c32acf0ad75282bd3b01dec8a73fea105c0c65a1453f5903d5eaeb3fe0349b15 +srcfiles size=14 + RELOC/source/generic/namedef/namedef.dtx + RELOC/source/generic/namedef/namedef.ins +runfiles size=4 + RELOC/tex/generic/namedef/namedef.sty +catalogue-contact-bugs https://github.com/PhelypeOleinik/namedef/issues +catalogue-contact-repository https://github.com/PhelypeOleinik/namedef +catalogue-ctan /macros/generic/namedef +catalogue-license lppl1.3c +catalogue-topics macro-def macro-gen expl3 +catalogue-version 1.0 + +name namespc +category Package +revision 15878 +shortdesc Rudimentary C++-like namespaces in LaTeX +relocated 1 +longdesc The namespc package adds rudimentary C++-like namespace +longdesc functionality to LaTeX. It may be used to declare local LaTeX +longdesc commands, which can be made accessible in a later contexts +longdesc without defining them globally. +containersize 976 +containerchecksum 71ec09a2aee5f299e9620b9b90558bca11415cdbf4304d0e5777896f85cf4e30cc39508fd69ff831a86707e230cfca1773fd9a8bc50c37f310f8bfeff629d2d6 +doccontainersize 82880 +doccontainerchecksum 4bd240f3ce155ea517fc267af1925f2e84f7af694a1ee4a068a2679d97cb6f97fd77f8812017e05f33c935bb54a34459a9deeaaf43cdb4ed69d792676316734f +docfiles size=35 + RELOC/doc/latex/namespc/README details="Readme" + RELOC/doc/latex/namespc/namespc.pdf details="Package documentation" +srccontainersize 3492 +srccontainerchecksum 33579dd40ba708e2e8a727f923f727f893f2f8e9562d369b1e025b50300250010d2829217a7aa72c1ee5781f3ed501e60b010cfc3cf3211b4bed1168494fa4ab +srcfiles size=3 + RELOC/source/latex/namespc/namespc.dtx +runfiles size=1 + RELOC/tex/latex/namespc/namespc.sty +catalogue-ctan /macros/latex/contrib/namespc +catalogue-license lppl +catalogue-topics latex-devel + +name nanicolle +category Package +revision 56224 +shortdesc Typesetting herbarium specimen labels +relocated 1 +longdesc This package provides a LaTeX class nanicolle.cls for +longdesc typesetting collection labels and identification labels in +longdesc Chinese style or in western style for plant herbarium +longdesc specimens. So far, documents using this class can only be +longdesc compiled with XeLaTeX. Note: The name of the package is a +longdesc compound of the Japanese "nani" (meaning "what") and a +longdesc truncated form of the English "collect", thus expressing the +longdesc ideas of identification/classification (taxonomy) and +longdesc collection. +containersize 5484 +containerchecksum e9f90cb21730e34fe03961281527cfdea0f7c15e349b9d441747be7ba591c40ac876ebed92f884bd502c3cf7a99f2f6f6328bce515680100c2f9a3d7e04a4aa4 +doccontainersize 573728 +doccontainerchecksum 3d159eb9fd84aa8bc6c183ae6a42aefc331b9bd606abbc1b2c3c53776d5b8f1554a4ad304d0555b8d2c95be2e8000eab0a3ec6a167e089292099bac6751782d2 +docfiles size=300 + RELOC/doc/xelatex/nanicolle/ChinaMainland.pdf + RELOC/doc/xelatex/nanicolle/Dongguan.pdf + RELOC/doc/xelatex/nanicolle/README.md details="Readme" + RELOC/doc/xelatex/nanicolle/nanicolle-doc-en.pdf details="Package documentation (English)" + RELOC/doc/xelatex/nanicolle/nanicolle-doc-en.tex + RELOC/doc/xelatex/nanicolle/nanicolle-doc-zh.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/xelatex/nanicolle/nanicolle-doc-zh.tex + RELOC/doc/xelatex/nanicolle/nanicolle-ex-en.pdf details="Example of use (English)" + RELOC/doc/xelatex/nanicolle/nanicolle-ex-en.tex + RELOC/doc/xelatex/nanicolle/nanicolle-ex-zh.pdf details="Example of use (Chinese)" language="zh" + RELOC/doc/xelatex/nanicolle/nanicolle-ex-zh.tex + RELOC/doc/xelatex/nanicolle/point.pdf +runfiles size=4 + RELOC/tex/xelatex/nanicolle/nanicolle.cls +catalogue-contact-bugs https://github.com/Mikumikunisiteageru/nanicolle/issues +catalogue-contact-repository https://github.com/Mikumikunisiteageru/nanicolle +catalogue-ctan /macros/xetex/latex/nanicolle +catalogue-license lppl1.3c +catalogue-topics class biology covers labels chinese xetex +catalogue-version 2.03y + +name nanumtype1 +category Package +revision 29558 +shortdesc Type1 subfonts of Nanum Korean fonts +relocated 1 +longdesc Nanum is a unicode font designed especially for Korean-language +longdesc script. The font was designed by Sandoll Communication and +longdesc Fontrix; it includes the sans serif (gothic), serif (myeongjo), +longdesc pen script and brush script typefaces. The package provides +longdesc Type1 subfonts converted from Nanum Myeongjo (Regular and +longdesc ExtraBold) and Nanum Gothic (Regular and Bold) OTFs. C70, LUC, +longdesc T1, and TS1 font definition files are also provided. (The +longdesc package does not include OpenType/TrueType files, which are +longdesc available from Naver) +execute addMap nanumfonts.map +containersize 28242732 +containerchecksum fc775dae204d8f1ca7e05005ccba0bd568f00819519d34b2282028d7f2b89b9c1f9a091ed192def7281de97ea97c75b9327727489e8ff88585bb97cf5e8b8f10 +doccontainersize 78704 +doccontainerchecksum ff0bd0bcc32eb8166e7bff9d440692a3c21c5cc7fd7b8139b472fbc2e079cba0591d162e2a81090919990dba31d1e04b57d50c35ac1d0670ef9102c64abc88ad +docfiles size=29 + RELOC/doc/fonts/nanumtype1/COPYING + RELOC/doc/fonts/nanumtype1/README details="Readme" + RELOC/doc/fonts/nanumtype1/nanum-sampler.pdf details="Font sampler" + RELOC/doc/fonts/nanumtype1/nanum-sampler.tex +runfiles size=9476 + RELOC/fonts/afm/public/nanumtype1/nanumgtb00.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb01.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb02.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb03.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb04.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb11.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb20.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb21.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb22.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb23.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb24.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb25.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb26.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb27.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb2a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb30.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb31.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb32.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb33.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb4e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb4f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb50.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb51.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb52.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb53.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb54.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb55.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb56.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb57.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb58.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb59.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb60.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb61.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb62.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb63.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb64.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb65.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb66.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb67.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb68.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb69.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb70.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb71.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb72.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb73.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb74.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb75.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb76.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb77.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb78.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb79.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb80.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb81.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb82.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb83.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb84.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb85.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb86.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb87.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb88.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb89.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb90.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb91.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb92.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb93.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb94.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb95.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb96.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb97.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb98.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb99.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbac.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbad.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbae.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbaf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbba.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbe.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbca.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbce.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbf9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbfa.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbff.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm00.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm01.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm02.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm03.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm04.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm11.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm20.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm21.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm22.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm23.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm24.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm25.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm26.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm27.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm2a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm30.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm31.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm32.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm33.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm4e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm4f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm50.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm51.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm52.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm53.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm54.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm55.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm56.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm57.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm58.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm59.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm60.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm61.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm62.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm63.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm64.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm65.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm66.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm67.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm68.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm69.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm70.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm71.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm72.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm73.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm74.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm75.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm76.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm77.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm78.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm79.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm80.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm81.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm82.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm83.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm84.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm85.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm86.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm87.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm88.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm89.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm90.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm91.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm92.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm93.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm94.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm95.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm96.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm97.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm98.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm99.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmac.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmad.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmae.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmaf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmba.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbe.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmca.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmce.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmf9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmfa.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmff.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb00.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb01.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb02.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb03.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb04.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb20.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb21.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb22.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb23.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb24.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb25.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb26.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb27.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb2a.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb30.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb31.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb32.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb33.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbac.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbad.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbae.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbaf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbba.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbe.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbca.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbce.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbff.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm00.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm01.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm02.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm03.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm04.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm20.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm21.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm22.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm23.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm24.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm25.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm26.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm27.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm30.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm31.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm32.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm33.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmac.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmad.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmae.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmaf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmba.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbe.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmca.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmce.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmff.afm + RELOC/fonts/afm/public/nanumtype1/t1nanumgtb.afm + RELOC/fonts/afm/public/nanumtype1/t1nanumgtm.afm + RELOC/fonts/afm/public/nanumtype1/t1nanummjb.afm + RELOC/fonts/afm/public/nanumtype1/t1nanummjm.afm + RELOC/fonts/map/dvips/nanumtype1/nanumfonts.map + RELOC/fonts/tfm/public/nanumtype1/nanumgtb00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbf9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbfa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbof9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbofa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmf9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmfa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmof9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmofa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoff.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtb.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtbo.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtm.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtmo.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjb.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjbo.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjm.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjmo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtb.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtbo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtm.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtmo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjb.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjbo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjm.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjmo.tfm + RELOC/fonts/type1/public/nanumtype1/nanumgtb00.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb01.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb02.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb03.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb04.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb11.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb20.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb21.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb22.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb23.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb24.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb25.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb26.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb27.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb2a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb30.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb31.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb32.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb33.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb4e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb4f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb50.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb51.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb52.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb53.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb54.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb55.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb56.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb57.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb58.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb59.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb60.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb61.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb62.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb63.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb64.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb65.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb66.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb67.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb68.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb69.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb70.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb71.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb72.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb73.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb74.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb75.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb76.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb77.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb78.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb79.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb80.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb81.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb82.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb83.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb84.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb85.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb86.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb87.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb88.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb89.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb90.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb91.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb92.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb93.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb94.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb95.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb96.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb97.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb98.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb99.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbac.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbad.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbae.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbba.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbca.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbce.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbf9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbfa.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbff.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm00.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm01.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm02.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm03.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm04.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm11.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm20.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm21.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm22.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm23.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm24.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm25.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm26.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm27.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm2a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm30.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm31.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm32.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm33.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm4e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm4f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm50.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm51.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm52.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm53.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm54.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm55.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm56.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm57.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm58.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm59.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm60.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm61.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm62.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm63.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm64.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm65.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm66.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm67.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm68.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm69.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm70.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm71.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm72.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm73.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm74.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm75.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm76.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm77.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm78.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm79.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm80.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm81.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm82.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm83.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm84.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm85.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm86.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm87.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm88.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm89.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm90.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm91.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm92.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm93.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm94.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm95.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm96.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm97.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm98.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm99.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmac.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmad.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmae.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmba.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmca.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmce.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmf9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmfa.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmff.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb00.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb01.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb02.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb03.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb04.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb20.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb21.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb22.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb23.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb24.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb25.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb26.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb27.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb2a.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb30.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb31.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb32.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb33.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbac.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbad.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbae.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbba.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbca.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbce.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbff.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm00.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm01.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm02.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm03.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm04.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm20.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm21.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm22.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm23.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm24.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm25.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm26.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm27.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm30.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm31.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm32.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm33.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmac.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmad.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmae.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmba.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmca.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmce.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmff.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanumgtb.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanumgtm.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanummjb.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanummjm.pfb + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtb.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtbo.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtm.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtmo.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjb.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjbo.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjm.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjmo.vf + RELOC/tex/latex/nanumtype1/c70nanumgt.fd + RELOC/tex/latex/nanumtype1/c70nanummj.fd + RELOC/tex/latex/nanumtype1/c70uhcmj.fd + RELOC/tex/latex/nanumtype1/lucnanumgt.fd + RELOC/tex/latex/nanumtype1/lucnanummj.fd + RELOC/tex/latex/nanumtype1/t1nanumgt.fd + RELOC/tex/latex/nanumtype1/t1nanummj.fd + RELOC/tex/latex/nanumtype1/ts1nanumgt.fd + RELOC/tex/latex/nanumtype1/ts1nanummj.fd +catalogue-ctan /fonts/nanumtype1 +catalogue-license ofl +catalogue-topics font font-cjk font-type1 korean +catalogue-version 3.0 + +name nar +category Package +revision 38100 +shortdesc BibTeX style for Nucleic Acid Research +relocated 1 +longdesc This BibTeX bibliography style is for the journal Nucleic Acid +longdesc Research. It was adapted from the standard unsrt.bst style +longdesc file. +containersize 6324 +containerchecksum 212f1a002743ba14eac41de05a88325533db8b25d9f12b141064b9aa98f78dd5c28caa7cdaa4419829e6180e56ff93e42b069cdebb52fb8ef40c9652b8a23c79 +runfiles size=6 + RELOC/bibtex/bst/nar/nar.bst +catalogue-ctan /biblio/bibtex/contrib/misc/nar.bst +catalogue-license other-free +catalogue-topics bibtex-sty journalpub +catalogue-version 3.19 + +name natbib +category Package +revision 20668 +shortdesc Flexible bibliography support +relocated 1 +longdesc The bundle provides a package that implements both author-year +longdesc and numbered references, as well as much detailed of support +longdesc for other bibliography use. Also Provided are versions of the +longdesc standard BibTeX styles that are compatible with +longdesc natbib--plainnat, unsrtnat, abbrnat. The bibliography styles +longdesc produced by custom-bib are designed from the start to be +longdesc compatible with natbib. +containersize 16616 +containerchecksum 7e78ab76bd86a864eeccef86a64fb28b6b063d5a12210da80f0c5a5608df429fc2939580b88263dc50fd68d841580a12358617e20a0048ccbc9e148ba04d5f26 +doccontainersize 423668 +doccontainerchecksum afe78103a6ba2d58c6f6ba6927101cb481abb1b028c4cc09dca59296d30978c636e837c248eb4f8fa44aa8fa7f6db1e1b6855afac9d99b0cfa030dbad6e59edc +docfiles size=123 + RELOC/doc/latex/natbib/README.1st + RELOC/doc/latex/natbib/README.v831b details="Readme for this release" language="en" + RELOC/doc/latex/natbib/natbib.ltx + RELOC/doc/latex/natbib/natbib.pdf details="Package documentation" language="en" + RELOC/doc/latex/natbib/natnotes.pdf details="Reference Sheet" language="en" + RELOC/doc/latex/natbib/natnotes.tex +srccontainersize 64136 +srccontainerchecksum ac850d6b92e7cf538f564d052593319ec1b1366d74dbf86e55f0c59ab3a01ad79b780378e816289aedf9b645774cbde56b7d186abafa8d1ddaa6c32d676141eb +srcfiles size=70 + RELOC/source/latex/natbib/bibentry.drv + RELOC/source/latex/natbib/bibentry.dtx + RELOC/source/latex/natbib/bibentry.ins + RELOC/source/latex/natbib/natbib.dtx + RELOC/source/latex/natbib/natbib.ins +runfiles size=33 + RELOC/bibtex/bst/natbib/abbrvnat.bst + RELOC/bibtex/bst/natbib/plainnat.bst + RELOC/bibtex/bst/natbib/unsrtnat.bst + RELOC/tex/latex/natbib/bibentry.sty + RELOC/tex/latex/natbib/natbib.sty +catalogue-ctan /macros/latex/contrib/natbib +catalogue-license lppl +catalogue-topics bibtex-supp +catalogue-version 8.31b + +name natded +category Package +revision 32693 +shortdesc Typeset natural deduction proofs +relocated 1 +longdesc The package provides commands to typeset proofs in the style +longdesc used by Jaskowski, or that of Kalish and Montague. +containersize 3044 +containerchecksum 85568d2bd3b729cda5e4512a2e3309353e7abdcd6a02ee3f86e07bf65cd74ca9581d7b2746d582b704a116313b77cc5ea94f19fe0d233a3b41c4ae88a8704f12 +doccontainersize 339336 +doccontainerchecksum 5cc23aaaf6006c1f77d676ad1f20d3a62d9ac8d8be6f41e68085844f6060d570baa04000bf3108c975add502c7ad62086509464753474a74c43d045122b28294 +docfiles size=92 + RELOC/doc/latex/natded/README.md + RELOC/doc/latex/natded/extended_doc.pdf details="Extended documentation" + RELOC/doc/latex/natded/extended_doc.tex + RELOC/doc/latex/natded/natded.pdf details="Package documentation" + RELOC/doc/latex/natded/natded.tex +runfiles size=4 + RELOC/tex/latex/natded/natded.sty +catalogue-ctan /macros/latex/contrib/natded +catalogue-license lppl1.3 +catalogue-topics proof +catalogue-version 0.1 + +name nath +category Package +revision 15878 +shortdesc Natural mathematics notation +relocated 1 +longdesc Nath is a LaTeX (both 2e and 2.09) style to separate +longdesc presentation and content in mathematical typography. The style +longdesc delivers a particular context-dependent presentation on the +longdesc basis of a rather coarse context-independent notation. +longdesc Highlighted features: depending on the context, the command +longdesc \frac produces either built-up or case or solidus fractions, +longdesc with parentheses added whenever required for preservation of +longdesc the mathematical meaning; delimiters adapt their size to the +longdesc material enclosed, rendering \left and \right almost obsolete. +containersize 22156 +containerchecksum 2eed9bc55d9d994df8710703c5acee9fb07d8c9732288740cc3c20740bd8db1e3d22617886818ceffb0346110dcd0dbfafaf192878500b2865523d00c6e02bf0 +doccontainersize 133380 +doccontainerchecksum ea75b3f282f81963484b2f6b29513a99f3153f222931dfa811deca40cc79a814a225a0a79e67237f53e3aabd33f7749095d3c7fb8f374ec802ee054ebca291d4 +docfiles size=48 + RELOC/doc/latex/nath/README details="Package Readme" + RELOC/doc/latex/nath/nathguide.pdf details="Package documentation" + RELOC/doc/latex/nath/nathguide.tex +runfiles size=21 + RELOC/tex/latex/nath/nath.sty +catalogue-ctan /macros/latex/contrib/nath +catalogue-license gpl +catalogue-topics maths + +name nature +category Package +revision 21819 +shortdesc Prepare papers for the journal Nature +relocated 1 +longdesc Nature does not accept papers in LaTeX, but it does accept PDF. +longdesc This class and BibTeX style provide what seems to be necessary +longdesc to produce papers in a format acceptable to the publisher. +containersize 9504 +containerchecksum 78b6e945642bf2073e49acb318a0ff78c1ad24d38c28133b08d5e2881e6e5ee2dd6e8634b467047145dd72d08bfefefc631fd81c7e0facb590be2f9f4798ff6d +doccontainersize 3148 +doccontainerchecksum cac72025fbb65e32fff8dbe3a457e28b2953ce2a14b9359b93724073d1c56761524f2e3200f80aabfea1aa0747fb010bb78586978856c89348fcb255630e5d9a +docfiles size=3 + RELOC/doc/latex/nature/README details="Readme" + RELOC/doc/latex/nature/nature-template.tex +runfiles size=11 + RELOC/bibtex/bst/nature/naturemag.bst + RELOC/tex/latex/nature/nature.cls +catalogue-ctan /macros/latex/contrib/nature +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.0 + +name navigator +category Package +revision 41413 +shortdesc PDF features across formats and engines +relocated 1 +longdesc Navigator implements PDF features for all formats (with some +longdesc limitations in ConTeXt) with pdfTeX, LuaTeX and XeTeX (i.e. +longdesc xdvipdfmx). Features include: Customizable outlines (i.e. +longdesc bookmarks); Anchors; Links and actions (e.g. JavaScript or +longdesc user-defined PDF actions); File embedding (not in ConTeXt); +longdesc Document information and PDF viewer's display (not in ConTeXt); +longdesc and Commands to create and use raw PDF objects. Navigator +longdesc requires texapi and yax, both version at least 1.03. +containersize 6840 +containerchecksum 868f3c08b71f670010fdad0320e4792929d31c2be1b29fbb38da518288596dc299b58635ebc8e7551b9191954b76280e87c47b1eb3c4987fbae3afcd133a5c2d +doccontainersize 140676 +doccontainerchecksum 56605790284309e8b6432152bdd6765172e9e7c9c6ca88b07ce5b4b19ac792df21879999a47663dbffe7b3dfcf6da0de3e8f8399cc65fc96dc2e8e3a57350f47 +docfiles size=42 + RELOC/doc/generic/navigator/README details="Readme" + RELOC/doc/generic/navigator/navigator-doc.pdf details="Package documentation" + RELOC/doc/generic/navigator/navigator-doc.tex +runfiles size=8 + RELOC/tex/generic/navigator/navigator.sty + RELOC/tex/generic/navigator/navigator.tex + RELOC/tex/generic/navigator/t-navigator.tex +catalogue-also hyperref +catalogue-ctan /macros/generic/navigator +catalogue-license lppl +catalogue-topics hyper pdf-feat +catalogue-version 1.1 + +name navydocs +category Package +revision 41643 +shortdesc Support for Technical Reports by US Navy Organizations +relocated 1 +longdesc The navydocs package provides an easy means for creating title +longdesc pages and the following supplementary material pages used in +longdesc technical reports by United States Navy organizations. These +longdesc pages are generated by specifying the page content via a set of +longdesc commands and then calling a macro to create the page at its +longdesc occurence in the document. This package is provided in the hope +longdesc that it proves useful to other Navy organizations, with users +longdesc contributing macros for their organizations. +containersize 4116 +containerchecksum b1a5afb90babbdf8fbba1915b88cdbf30a0244d8363c25dd9ce33bb153f9e8e0437146d9883016a40b1cf55c1dc02a06a7d2b72947326f5dc13998beaabff923 +doccontainersize 1048836 +doccontainerchecksum 2122252986f1fc852a121e09ac4f6a6a6c23f9227e374809f2968e729602f6d870bd9293fe1d456c4cc04aa48ee01361d37695c7290bb047f2c8f9a41981d3d0 +docfiles size=278 + RELOC/doc/latex/navydocs/Makefile + RELOC/doc/latex/navydocs/README.txt details="Readme" + RELOC/doc/latex/navydocs/graphics/navy-logo-102.png + RELOC/doc/latex/navydocs/navydocs.pdf details="Package documentation" + RELOC/doc/latex/navydocs/sampleNavyReport.tex +srccontainersize 13888 +srccontainerchecksum aedc1a3bde2379780b1042f9fb103081acde19e4f76f5608d0382756b8f9bf0d4743aa3aa66556bfc9240d2044336a609f3b1efbf0b4780af87b66109293b225 +srcfiles size=13 + RELOC/source/latex/navydocs/navydocs.dtx + RELOC/source/latex/navydocs/navydocs.ins +runfiles size=3 + RELOC/tex/latex/navydocs/navydocs.sty +catalogue-ctan /macros/latex/contrib/navydocs +catalogue-license lppl1.3 +catalogue-topics titlepage report-like +catalogue-version 1.1 + +name ncclatex +category Package +revision 15878 +shortdesc An extended general-purpose class +relocated 1 +longdesc The ncc class provides a framework for a common class to +longdesc replace the standard article, book and report classes, and +longdesc providing a "preprint" class. The class's extensions are +longdesc provided in a number of small packages, some of which may also +longdesc be used with the standard classes. The ncclatex package also +longdesc loads many of the packages of, and requires the latest version +longdesc of the ncctools bundle. +containersize 17908 +containerchecksum 88ec3d2c350521fdb978734d32bb7eb9bacee0ecb95ae051d7bb039cb86e6dd1eba3b4ae93881ef8fa2623e99f6dba9b126373f181c4668176eaaafa94aa992e +doccontainersize 574580 +doccontainerchecksum e9c08ac08ee2316b07610bde89aee98289b937e8dbfdc86b392cae02037632d6d303c799f74f381f89a6bd4f4397a8c4d78025a88b8fa4ebbce4be663167f2ce +docfiles size=172 + RELOC/doc/latex/ncclatex/README details="Readme" + RELOC/doc/latex/ncclatex/changes.txt + RELOC/doc/latex/ncclatex/manifest.txt + RELOC/doc/latex/ncclatex/ncclatex.pdf details="Package documentation" + RELOC/doc/latex/ncclatex/ncclatex.tex + RELOC/doc/latex/ncclatex/nccnews.pdf details="Package news" language="ru" +runfiles size=30 + RELOC/tex/latex/ncclatex/cp1251-light.def + RELOC/tex/latex/ncclatex/ncc.cls + RELOC/tex/latex/ncclatex/ncc10.clo + RELOC/tex/latex/ncclatex/ncc11.clo + RELOC/tex/latex/ncclatex/ncc12.clo + RELOC/tex/latex/ncclatex/ncc14.clo + RELOC/tex/latex/ncclatex/nccart.clo + RELOC/tex/latex/ncclatex/nccbiblist.sty + RELOC/tex/latex/ncclatex/nccbook.clo + RELOC/tex/latex/ncclatex/nccdefaults.sty + RELOC/tex/latex/ncclatex/nccfit.clo + RELOC/tex/latex/ncclatex/ncchdr.sty + RELOC/tex/latex/ncclatex/nccheadings.sty + RELOC/tex/latex/ncclatex/nccindex.sty + RELOC/tex/latex/ncclatex/ncclatex.sty + RELOC/tex/latex/ncclatex/nccltrus.sty + RELOC/tex/latex/ncclatex/nccold.sty + RELOC/tex/latex/ncclatex/nccproc.cls + RELOC/tex/latex/ncclatex/nccsections.sty + RELOC/tex/latex/ncclatex/ncctheorems.sty + RELOC/tex/latex/ncclatex/ncctitle.clo + RELOC/tex/latex/ncclatex/ncctitle.sty + RELOC/tex/latex/ncclatex/ncctitlepage.sty + RELOC/tex/latex/ncclatex/sibjnm.cls +catalogue-ctan /macros/latex/contrib/ncclatex +catalogue-license lppl +catalogue-topics class +catalogue-version 1.5 + +name ncctools +category Package +revision 51810 +shortdesc A collection of general packages for LaTeX +relocated 1 +longdesc The NCCtools bundle contains many packages for general use +longdesc under LaTeX; many are also used by NCC LaTeX. The bundle +longdesc includes tools for: executing commands after a package is +longdesc loaded; watermarks; counter manipulation (dynamic counters, +longdesc changing counter numbering with another counter); improvements +longdesc to the description environment; hyphenation of compound words; +longdesc new levels of footnotes; space-filling patterns; "poor man's" +longdesc Black Board Bold symbols; alignment of the content of a box; +longdesc use comma as decimal separator; boxes with their own crop +longdesc marks; page cropmarks; improvements to fancy headers; float +longdesc "styles", mini floats, side floats; manually marked footnotes; +longdesc extension of amsmath; control of paragraph skip; an envelope to +longdesc the graphicx package; dashed and multiple rules; alternative +longdesc techniques for declarations of sections, captions, and +longdesc toc-entries; generalised text-stretching; generation of new +longdesc theorem-like environments; control of the text area; centred +longdesc page layouts; and un-numbered top-level section. +containersize 24572 +containerchecksum f7ec6f6c51d2a4f071b85cf28299a4a11eeabaf225c85cd0144bb0971ec3da44ee9aeac7cdd7501d258b7e8cf25b3e3484cd60dbadf0ff3ee05767c713c12dfa +doccontainersize 2446624 +doccontainerchecksum a594e74455024dff7d38a8a750ee02637341f84d342a83409ad0e20a1b0f292c370e16c1b267c2d6a58975f45a6b4c1092c8518653994392cf4dc08fe8553644 +docfiles size=778 + RELOC/doc/latex/ncctools/README details="Readme" + RELOC/doc/latex/ncctools/README.source + RELOC/doc/latex/ncctools/afterpackage.pdf + RELOC/doc/latex/ncctools/changes.txt + RELOC/doc/latex/ncctools/dcounter.pdf + RELOC/doc/latex/ncctools/desclist.pdf + RELOC/doc/latex/ncctools/extdash.pdf + RELOC/doc/latex/ncctools/manifest.txt + RELOC/doc/latex/ncctools/manyfoot.pdf + RELOC/doc/latex/ncctools/mboxfill.pdf + RELOC/doc/latex/ncctools/nccbbb.pdf + RELOC/doc/latex/ncctools/nccboxes.pdf + RELOC/doc/latex/ncctools/ncccomma.pdf + RELOC/doc/latex/ncctools/ncccropbox.pdf + RELOC/doc/latex/ncctools/ncccropmark.pdf + RELOC/doc/latex/ncctools/nccfancyhdr.pdf + RELOC/doc/latex/ncctools/nccfloats.pdf + RELOC/doc/latex/ncctools/nccfoots.pdf + RELOC/doc/latex/ncctools/nccmath.pdf + RELOC/doc/latex/ncctools/nccparskip.pdf + RELOC/doc/latex/ncctools/nccpic.pdf + RELOC/doc/latex/ncctools/nccrules.pdf + RELOC/doc/latex/ncctools/nccsect.pdf + RELOC/doc/latex/ncctools/nccstretch.pdf + RELOC/doc/latex/ncctools/nccthm.pdf + RELOC/doc/latex/ncctools/ncctools.pdf + RELOC/doc/latex/ncctools/ncctools.tex + RELOC/doc/latex/ncctools/textarea.pdf + RELOC/doc/latex/ncctools/tocenter.pdf + RELOC/doc/latex/ncctools/topsection.pdf + RELOC/doc/latex/ncctools/watermark.pdf +srccontainersize 91436 +srccontainerchecksum 9fd3fccd2383ba6dd9f32766fbabb5a2c108c335eee1b5fd6dd11d93d5d6944bed22877b640ea676bf9721a69e34f0500a3bee131a4bc65feafc348207d131b5 +srcfiles size=120 + RELOC/source/latex/ncctools/afterpackage.dtx + RELOC/source/latex/ncctools/dcounter.dtx + RELOC/source/latex/ncctools/desclist.dtx + RELOC/source/latex/ncctools/extdash.dtx + RELOC/source/latex/ncctools/manyfoot.dtx + RELOC/source/latex/ncctools/mboxfill.dtx + RELOC/source/latex/ncctools/nccbbb.dtx + RELOC/source/latex/ncctools/nccboxes.dtx + RELOC/source/latex/ncctools/ncccomma.dtx + RELOC/source/latex/ncctools/ncccropbox.dtx + RELOC/source/latex/ncctools/ncccropmark.dtx + RELOC/source/latex/ncctools/nccfancyhdr.dtx + RELOC/source/latex/ncctools/nccfloats.dtx + RELOC/source/latex/ncctools/nccfoots.dtx + RELOC/source/latex/ncctools/nccmath.dtx + RELOC/source/latex/ncctools/nccparskip.dtx + RELOC/source/latex/ncctools/nccpic.dtx + RELOC/source/latex/ncctools/nccrules.dtx + RELOC/source/latex/ncctools/nccsect.dtx + RELOC/source/latex/ncctools/nccstretch.dtx + RELOC/source/latex/ncctools/nccthm.dtx + RELOC/source/latex/ncctools/ncctools.ins + RELOC/source/latex/ncctools/textarea.dtx + RELOC/source/latex/ncctools/tocenter.dtx + RELOC/source/latex/ncctools/topsection.dtx + RELOC/source/latex/ncctools/watermark.dtx +runfiles size=43 + RELOC/tex/latex/ncctools/afterpackage.sty + RELOC/tex/latex/ncctools/dcounter.sty + RELOC/tex/latex/ncctools/desclist.sty + RELOC/tex/latex/ncctools/extdash.sty + RELOC/tex/latex/ncctools/manyfoot.sty + RELOC/tex/latex/ncctools/mboxfill.sty + RELOC/tex/latex/ncctools/nccbbb.sty + RELOC/tex/latex/ncctools/nccboxes.sty + RELOC/tex/latex/ncctools/ncccomma.sty + RELOC/tex/latex/ncctools/ncccropbox.sty + RELOC/tex/latex/ncctools/ncccropmark.sty + RELOC/tex/latex/ncctools/nccfancyhdr.sty + RELOC/tex/latex/ncctools/nccfloats.sty + RELOC/tex/latex/ncctools/nccfoots.sty + RELOC/tex/latex/ncctools/nccmath.sty + RELOC/tex/latex/ncctools/nccparskip.sty + RELOC/tex/latex/ncctools/nccpic.sty + RELOC/tex/latex/ncctools/nccrules.sty + RELOC/tex/latex/ncctools/nccsect.sty + RELOC/tex/latex/ncctools/nccstretch.sty + RELOC/tex/latex/ncctools/nccthm.sty + RELOC/tex/latex/ncctools/textarea.sty + RELOC/tex/latex/ncctools/tocenter.sty + RELOC/tex/latex/ncctools/topsection.sty + RELOC/tex/latex/ncctools/watermark.sty +catalogue-ctan /macros/latex/contrib/ncctools +catalogue-license lppl +catalogue-topics collection +catalogue-version 3.5.3 + +name ncntrsbk +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap unc.map +containersize 290876 +containerchecksum e023d0a407f666de1415728a90014041feb5d04ceb1007e8fc293452ecef1b9bdbd014adedb9e25993e57c0196632b1413ec19893f4c37c26a8e8e42a20a9de9 +runfiles size=305 + RELOC/dvips/ncntrsbk/config.unc + RELOC/fonts/afm/adobe/ncntrsbk/pncb8a.afm + RELOC/fonts/afm/adobe/ncntrsbk/pncbi8a.afm + RELOC/fonts/afm/adobe/ncntrsbk/pncr8a.afm + RELOC/fonts/afm/adobe/ncntrsbk/pncri8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncb8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncbi8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncr8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncri8a.afm + RELOC/fonts/map/dvips/ncntrsbk/unc.map + RELOC/fonts/tfm/adobe/ncntrsbk/pncb.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbc.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbc7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbc8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncrc.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncrc7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncrc8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbc7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbc8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncrc7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncrc8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8t.tfm + RELOC/fonts/type1/urw/ncntrsbk/uncb8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncb8a.pfm + RELOC/fonts/type1/urw/ncntrsbk/uncbi8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncbi8a.pfm + RELOC/fonts/type1/urw/ncntrsbk/uncr8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncr8a.pfm + RELOC/fonts/type1/urw/ncntrsbk/uncri8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncri8a.pfm + RELOC/fonts/vf/adobe/ncntrsbk/pncb.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncb7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncb8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncb8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbc.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbc7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbc8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncrc.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncrc7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncrc8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncb7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncb8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncb8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbc7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbc8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncr7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncr8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncr8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncrc7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncrc8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncri7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncri8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncri8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncro7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncro8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncro8t.vf + RELOC/tex/latex/ncntrsbk/8runc.fd + RELOC/tex/latex/ncntrsbk/omlunc.fd + RELOC/tex/latex/ncntrsbk/omsunc.fd + RELOC/tex/latex/ncntrsbk/ot1unc.fd + RELOC/tex/latex/ncntrsbk/t1unc.fd + RELOC/tex/latex/ncntrsbk/ts1unc.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name nddiss +category Package +revision 45107 +shortdesc Notre Dame Dissertation format class +relocated 1 +longdesc This class file conforms to the requirements of the Graduate +longdesc School of the University of Notre Dame; with it a user can +longdesc format a thesis or dissertation in LaTeX. +containersize 11852 +containerchecksum 62f951bce52bab564ab2671bd5d019ff9f6f5ad1d8a18ae9f8b574226aa83e4d3a9c6c931f4830f71c43499f68b8b06e539d55a027e712ce4cd2c03e349d3fd1 +doccontainersize 384324 +doccontainerchecksum bd92c614f160c50a22ff83d296f0e511909906459cfcb7100c615170ee9fadbd38ba032bf95f7b25a083cae33c80ede96964d3b81e23c481fe5a836d91967ad1 +docfiles size=102 + RELOC/doc/latex/nddiss/LICENSE + RELOC/doc/latex/nddiss/README.md details="Readme" + RELOC/doc/latex/nddiss/nddiss2e.pdf details="Package documentation" + RELOC/doc/latex/nddiss/process.sh + RELOC/doc/latex/nddiss/template.tex +srccontainersize 24516 +srccontainerchecksum 498e13f4e4bbf8e2133870854f75feb5617a517b55593ab90c203ba860f95599ac5b010bee58d4f35706a6e17bdba54c66e02e04281bb548e62b335c576a6357 +srcfiles size=24 + RELOC/source/latex/nddiss/ltxdoc.cfg + RELOC/source/latex/nddiss/nddiss2e.dtx + RELOC/source/latex/nddiss/nddiss2e.ins +runfiles size=14 + RELOC/bibtex/bst/nddiss/nddiss2e.bst + RELOC/tex/latex/nddiss/nddiss2e.cls +catalogue-contact-repository https://github.com/ndlib/nddiss +catalogue-ctan /macros/latex/contrib/nddiss +catalogue-license lppl1.2 +catalogue-topics dissertation class +catalogue-version 3.2017.2 + +name ndsu-thesis +category Package +revision 46639 +shortdesc North Dakota State University disquisition class +relocated 1 +longdesc A class for generating disquisitions, intended to be in +longdesc compliance with North Dakota State University requirements. +containersize 3556 +containerchecksum d79b603726abaa506ec0cd59c30e4c341839c1dd6f7b7aaeb536385d22d69a37d764499aba390fe7e1efc6a6e25ae6dbb7e92bf659a771b6f4d6ae3b5a2c98d9 +doccontainersize 139828 +doccontainerchecksum 8e93554ef50d43562d1c42fff3da81b77b4ae444d644e5b1a818571e80cef88a2006f1b1c61c320e467724df7847be50f4f3ec1663bd767261720cc1a80419ba +docfiles size=38 + RELOC/doc/latex/ndsu-thesis/README details="Readme" + RELOC/doc/latex/ndsu-thesis/ndsu-thesis.pdf details="Package documentation" + RELOC/doc/latex/ndsu-thesis/ndsu-thesis.tex +runfiles size=3 + RELOC/tex/latex/ndsu-thesis/ndsu-thesis.cls +catalogue-ctan /macros/latex/contrib/ndsu-thesis +catalogue-license lppl1.3 +catalogue-topics dissertation class + +name needspace +category Package +revision 29601 +shortdesc Insert pagebreak if not enough space +relocated 1 +longdesc Provides commands to disable pagebreaking within a given +longdesc vertical space. If there is not enough space between the +longdesc command and the bottom of the page, a new page will be started. +containersize 828 +containerchecksum 663b2ffe30b1d9a588183916ccb0e3fecf3098d3e67f2a40fc49e1db1e5c1a892bfb56eb177bccd923415dfe51d4a225e2017be3b2f3f7185071836cb2e04391 +doccontainersize 158552 +doccontainerchecksum 3af05a6704a8d3c9539cab0871f9f9c8b7a241549c1b3127dfce2a0eaf77b87d54fdafff4b2749eb4614ad9aba45bd2e3d695a92243ea30472e62f7945eff004 +docfiles size=40 + RELOC/doc/latex/needspace/README + RELOC/doc/latex/needspace/needspace.pdf details="Package documentation" +srccontainersize 2120 +srccontainerchecksum a629e9b798ab772feed1e66b773fbc141b0b2c2cb6c336acf61e8e3884246da1b36f90260fd47121e53e552f6569528e81ee788b6d1779c9e87eb54517a2d787 +srcfiles size=3 + RELOC/source/latex/needspace/needspace.ins + RELOC/source/latex/needspace/needspace.tex +runfiles size=1 + RELOC/tex/latex/needspace/needspace.sty +catalogue-ctan /macros/latex/contrib/needspace +catalogue-license lppl +catalogue-topics layout +catalogue-version 1.3d + +name nestquot +category Package +revision 27323 +shortdesc Alternate quotes between double and single with nesting +relocated 1 +longdesc Provides two new commands: \nlq and \nrq for nesting left and +longdesc right quotes that properly change between double and single +longdesc quotes according to their nesting level. For example, the input +longdesc \nlq Foo \nlq bar\nrq\ bletch\nrq will be typeset as if it had +longdesc been entered as "Foo 'bar' bletch". +containersize 1920 +containerchecksum cc75905a3423deb02f226340eeb6a5f97d9d83470f156bc75cdf39569da845279fe8d4a3907fdf269bac75e7afae02faa04dea367cf0326720301ba3f1c31395 +runfiles size=1 + RELOC/tex/latex/nestquot/nestquot.sty +catalogue-ctan /macros/latex/contrib/nestquot +catalogue-license other-free +catalogue-topics quote-marks + +name neuralnetwork +category Package +revision 31500 +shortdesc Graph-drawing for neural networks +relocated 1 +longdesc The package provides facilities for graph-drawing, with +longdesc facilities designed for neural network diagrams. +containersize 3604 +containerchecksum ba66b86e10f4425c063c76ffcc97759863677a673960255d5c335d215ff8c0eeb4d0f12fdac584ae1fdcec00ab04705cad716ff9290f6b1ca9c8635841f580ff +doccontainersize 641544 +doccontainerchecksum fc2cda90284e4360c9dd9c03611f582c7c4569331a3bf04d51152408ff8533dcc1f398f641ece389e63f9b7dd12ae471c3f6b5d8fbdea5d206afb1ab15df4852 +docfiles size=163 + RELOC/doc/latex/neuralnetwork/examples/neural-networks-ebook.pdf details="Sample of a book using the package" + RELOC/doc/latex/neuralnetwork/examples/neuralnetwork.pdf + RELOC/doc/latex/neuralnetwork/examples/neuralnetwork.tex + RELOC/doc/latex/neuralnetwork/examples/xor.pdf + RELOC/doc/latex/neuralnetwork/examples/xor.tex +runfiles size=3 + RELOC/tex/latex/neuralnetwork/neuralnetwork.sty +catalogue-contact-repository https://github.com/battlesnake/neural +catalogue-ctan /graphics/pgf/contrib/neuralnetwork +catalogue-license gpl +catalogue-topics diagram +catalogue-version 1.0 + +name nevelok +category Package +revision 39029 +shortdesc LaTeX package for automatic definite articles for Hungarian +relocated 1 +longdesc LaTeX package for automatic definite articles for Hungarian +containersize 1860 +containerchecksum 01d207fe9d77df0a225cd5fe718f118bc755c1e23c9dcb2bc4e0b4c2983205469baeeefcc195b150cc54f4540ea71d96cfc393fe61a32f7e85d5c9b5944c5938 +doccontainersize 211280 +doccontainerchecksum 653fea96310508e8a30c76821d1cd83dbf579052fecbb8c859d40cb39926d24ae0141b4788901b34b4839615b33d5995eed2b6a27f6abcae981b9d47b6ebeb34 +docfiles size=53 + RELOC/doc/latex/nevelok/README.md details="Readme" + RELOC/doc/latex/nevelok/nevelok.pdf details="Package documentation" +srccontainersize 4000 +srccontainerchecksum 455ceb971d4617b096bb2d1c42fdb487208e8c6ccb3fa94869df08c9e89516e0f5c9e5513b0573d17929bc3284fa41ec19ef092ac7c7c99ca8a7f9e63a1559c0 +srcfiles size=4 + RELOC/source/latex/nevelok/nevelok.dtx + RELOC/source/latex/nevelok/nevelok.ins +runfiles size=2 + RELOC/tex/latex/nevelok/nevelok.sty +catalogue-ctan /macros/latex/contrib/nevelok +catalogue-license lppl1.3 +catalogue-topics hungarian +catalogue-version 1.03 + +name newcommand +category Package +revision 18704 +shortdesc Generate new LaTeX command definitions +relocated 1 +longdesc Generating any other than the simple \newcommand-style +longdesc commands, in LaTeX, is tedious (in the least). This script +longdesc allows the specification of commands in a 'natural' style; the +longdesc script then generates macros to define the command. +containersize 496 +containerchecksum e4716ec35793f0ed4140ed3bb221bbaedaf121b2529dbde5114a575bfb8aa32a8fc56e79e43068adf560423aaf68c5f09dd5d6b624e37005bbaa4def2b280060 +doccontainersize 407624 +doccontainerchecksum 84f71adb1cdf4213f34e30a2737f41c93fd0e8ac4970b2adb832570c98c5f3876502556392fa077a8cb647a552a8e914b2a30e4e38a039c355802e2c85c5f3e1 +docfiles size=117 + RELOC/doc/latex/newcommand/README details="Readme" + RELOC/doc/latex/newcommand/newcommand.pdf details="Package documentation" + RELOC/doc/latex/newcommand/newcommand.py + RELOC/doc/latex/newcommand/newcommand.tex + RELOC/doc/latex/newcommand/spark.py +catalogue-ctan /support/newcommand +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 2.0 + +name newcomputermodern +category Package +revision 59041 +shortdesc Computer Modern fonts including matching non-latin alphabets +relocated 1 +longdesc This is a new assembly of Computer Modern fonts plus glyphs for +longdesc non Latin alphabets which are considered compatible in style to +longdesc CM fonts. In addition to the Regular weight of Computer Modern, +longdesc it provides a Book weight for heavier printing. +containersize 7083292 +containerchecksum 44026c998397d5d93fccb3738db4f11c5b13ba1c1ead211b41bc785cad79710a863a6d6fef55d15d48ce7b3a62341b122add542605c1045cd3b22acd407c0eef +doccontainersize 1443332 +doccontainerchecksum ac229dc7db9d8267ff93b60d8d6e84c8e6654c398e22d1d0966065bf83ed52b84b467805dc17d282ab4814b226f8af153b18e7fab39c9d20d4c683674f5294da +docfiles size=362 + RELOC/doc/fonts/newcomputermodern/README details="Readme" + RELOC/doc/fonts/newcomputermodern/newcm-unimath-symbols.ltx + RELOC/doc/fonts/newcomputermodern/newcm-unimath-symbols.pdf details="Math coverage and symbol comparison" + RELOC/doc/fonts/newcomputermodern/newcomputermodern-sample.pdf details="Font samples" + RELOC/doc/fonts/newcomputermodern/newcomputermodern-sample.tex +srccontainersize 14023192 +srccontainerchecksum 49f298a28fcd546bcd533ca713bd4cdc72962642c8004adb35f03a418d693fee4732a9bffc133a327efe053602f3cad75eb669e36bffddbc7f6557d01bf25edd +srcfiles size=27996 + RELOC/source/fonts/newcomputermodern/NewCM08-Book.sfd + RELOC/source/fonts/newcomputermodern/NewCM08-BookItalic.sfd + RELOC/source/fonts/newcomputermodern/NewCM08-Italic.sfd + RELOC/source/fonts/newcomputermodern/NewCM08-Regular.sfd + RELOC/source/fonts/newcomputermodern/NewCM10-Bold.sfd + RELOC/source/fonts/newcomputermodern/NewCM10-BoldItalic.sfd + RELOC/source/fonts/newcomputermodern/NewCM10-Book.sfd + RELOC/source/fonts/newcomputermodern/NewCM10-BookItalic.sfd + RELOC/source/fonts/newcomputermodern/NewCM10-Italic.sfd + RELOC/source/fonts/newcomputermodern/NewCM10-Regular.sfd + RELOC/source/fonts/newcomputermodern/NewCMMath-Book.sfd + RELOC/source/fonts/newcomputermodern/NewCMMath-Regular.sfd + RELOC/source/fonts/newcomputermodern/NewCMMono10-Bold.sfd + RELOC/source/fonts/newcomputermodern/NewCMMono10-BoldOblique.sfd + RELOC/source/fonts/newcomputermodern/NewCMMono10-Book.sfd + RELOC/source/fonts/newcomputermodern/NewCMMono10-BookItalic.sfd + RELOC/source/fonts/newcomputermodern/NewCMMono10-Italic.sfd + RELOC/source/fonts/newcomputermodern/NewCMMono10-Regular.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans08-Book.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans08-BookOblique.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans08-Oblique.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans08-Regular.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans10-Bold.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans10-BoldOblique.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans10-Book.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans10-BookOblique.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans10-Oblique.sfd + RELOC/source/fonts/newcomputermodern/NewCMSans10-Regular.sfd +runfiles size=4945 + RELOC/fonts/opentype/public/newcomputermodern/NewCM08-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM08-BookItalic.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM08-Italic.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM08-Regular.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM10-Bold.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM10-BoldItalic.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM10-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM10-BookItalic.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM10-Italic.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCM10-Regular.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMath-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMath-Regular.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMono10-Bold.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMono10-BoldOblique.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMono10-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMono10-BookItalic.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMono10-Italic.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMMono10-Regular.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans08-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans08-BookOblique.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans08-Oblique.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans08-Regular.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Bold.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-BoldOblique.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-BookOblique.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Oblique.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Regular.otf + RELOC/tex/latex/newcomputermodern/NewComputerModern.fontspec + RELOC/tex/latex/newcomputermodern/NewComputerModernBook.fontspec + RELOC/tex/latex/newcomputermodern/NewComputerModernMono.fontspec + RELOC/tex/latex/newcomputermodern/NewComputerModernMonoBook.fontspec + RELOC/tex/latex/newcomputermodern/NewComputerModernSans.fontspec + RELOC/tex/latex/newcomputermodern/NewComputerModernSansBook.fontspec + RELOC/tex/latex/newcomputermodern/newcomputermodern.sty +catalogue-alias newcm +catalogue-ctan /fonts/newcomputermodern +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-hebrew font-maths font-otf cherokee font-supp +catalogue-version 3.90 + +name newenviron +category Package +revision 29331 +shortdesc Processing an environment's body +relocated 1 +longdesc The package offers tools for collecting and executing an +longdesc environment's body. +containersize 2488 +containerchecksum 4ddcc24de158fb1a5b585c65adf769c3f92c4598355306e08257f4ef62718c6ca7f2dea80d742759601b37133a951d031445a39ed5d8062496459cc2f98a71b4 +doccontainersize 1632 +doccontainerchecksum cadfcd8ecc9c0904bc9a45542a24c1b6907dabacc94f45a1ed1b885557304a27e7e836b55cbebcc6130da0bffeff7c56fd89f0b7a16430dacccd670c8c6ddc7b +docfiles size=2 + RELOC/doc/latex/newenviron/README details="Readme" + RELOC/doc/latex/newenviron/newenviron-examples.tex +runfiles size=2 + RELOC/tex/latex/newenviron/newenviron.sty +catalogue-also environ +catalogue-ctan /macros/latex/contrib/newenviron +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.0 + +name newfile +category Package +revision 15878 +shortdesc User level management of LaTeX input and output +relocated 1 +longdesc Commands are defined to manage the limited pool of input and +longdesc output handles provided by TeX. The streams so provided are +longdesc mapped to various of the LaTeX input and output mechanisms. +longdesc Some facilities of the verbatim package are also mapped. +containersize 2240 +containerchecksum b949934073af1aaaada73c93e493fd39ca01ad625d72bcfa5df915b2c2f759a39d77b7c2a0a952711c8c3e0af5e6cca59eb7f333fcd27e7232c3780ad5400ec8 +doccontainersize 147644 +doccontainerchecksum c2c0e825ae7fee4fa551e831c822190f7682392d47bd8bffa3ee947900d6eaf00a363edd204f7404c834ade0bd5a05e9bb0a8284f8c660eeddf7f75179c0060f +docfiles size=43 + RELOC/doc/latex/newfile/README details="Readme" + RELOC/doc/latex/newfile/newfile.pdf details="Package documentation" +srccontainersize 9220 +srccontainerchecksum 9cc5d4e1ac98c2884af3a2e5d11e9cf573660679658450d0705d6d0c4004a8994c3b471078db8a6a95527f5aa84b3a7ea18a1c00b7cdcd9169fa1cb870a277f3 +srcfiles size=10 + RELOC/source/latex/newfile/newfile.dtx + RELOC/source/latex/newfile/newfile.ins +runfiles size=2 + RELOC/tex/latex/newfile/newfile.sty +catalogue-ctan /macros/latex/contrib/newfile +catalogue-license lppl +catalogue-topics io-mgmt +catalogue-version 1.0c + +name newfloat +category Package +revision 52906 +shortdesc Define new floating environments +relocated 1 +longdesc The package offers the command \DeclareFloatingEnvironment, +longdesc which the user may use to define new floating environments +longdesc which behave like the LaTeX standard foating environments +longdesc figure and table. +containersize 5592 +containerchecksum 2cd4d1e5097bd6b9abd25621fe64590e67f8933a5292f83277dd546cb949c6193af04e16a72e61c3023293f6471ed41e9b46c23dd4c6c19428c7875cf0279aa8 +doccontainersize 100188 +doccontainerchecksum 4a9b942a072ac5da1e92f6ecd63ff16cda41195403794c8a111140d4d6af43947875828d497f7824bdcfd41ca03ece22469ed5e0fbec0cdd84c56471678cd469 +docfiles size=31 + RELOC/doc/latex/newfloat/CHANGELOG + RELOC/doc/latex/newfloat/README details="Readme" + RELOC/doc/latex/newfloat/SUMMARY + RELOC/doc/latex/newfloat/newfloat.pdf details="Package documentation" +srccontainersize 14664 +srccontainerchecksum 311c22bfb91719a8358f5feb89f3ada35de942703009cb47d5489b2800f9eb149a285cd6ac99186f94cf8d82ec6b9f582dc9922cde9afe515c10e483044f0d98 +srcfiles size=18 + RELOC/source/latex/newfloat/newfloat.dtx + RELOC/source/latex/newfloat/newfloat.ins +runfiles size=8 + RELOC/tex/latex/newfloat/newfloat.sty +catalogue-also float +catalogue-contact-bugs https://gitlab.com/axelsommerfeldt/newfloat/issues +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-license lppl1.3 +catalogue-topics float +catalogue-version 1.1l + +name newlfm +category Package +revision 15878 +shortdesc Write letters, facsimiles, and memos +relocated 1 +longdesc Integrates the letter class with fancyhdr and geometry to +longdesc automatically make letterhead stationery. Useful for writing +longdesc letters, fax, and memos. You can set up an address book using +longdesc 'wrapper' macros. You put all the information for a person into +longdesc a wrapper and then put the wrapper in a document. The class +longdesc handles letterheads automatically. You place the object for the +longdesc letterhead (picture, information, etc.) in a box and all sizing +longdesc is set automatically. +containersize 20156 +containerchecksum 72f7b087ba1002541e3d26d5b41b58380443e30061b92885bbd3bcc017b17cbad9227c14074a53706b98c785117c7b07c6d49639c84c617782066491dc0cabf5 +doccontainersize 342164 +doccontainerchecksum 8391122e13223055582bfe0f9e6d62315c9a48588848ab02cebd5b2d7045be5f1d476145e8ca29392820d4ee018b9f84380408331b3ea56e7e99071024a8c369 +docfiles size=298 + RELOC/doc/latex/newlfm/README details="Readme" + RELOC/doc/latex/newlfm/chk1.tex + RELOC/doc/latex/newlfm/demoa.tex + RELOC/doc/latex/newlfm/draft.eps + RELOC/doc/latex/newlfm/draft.pdf + RELOC/doc/latex/newlfm/extracd.tex + RELOC/doc/latex/newlfm/hletrinf.tex + RELOC/doc/latex/newlfm/letrinfo.tex + RELOC/doc/latex/newlfm/lvb.eps + RELOC/doc/latex/newlfm/lvb.pdf + RELOC/doc/latex/newlfm/make_clean + RELOC/doc/latex/newlfm/make_unix + RELOC/doc/latex/newlfm/make_win.bat + RELOC/doc/latex/newlfm/makeclean_win.bat + RELOC/doc/latex/newlfm/manual.pdf + RELOC/doc/latex/newlfm/mintrx.bat + RELOC/doc/latex/newlfm/newlfm.pdf details="Package documentation" + RELOC/doc/latex/newlfm/newlfm.txt + RELOC/doc/latex/newlfm/palm.eps + RELOC/doc/latex/newlfm/palm.pdf + RELOC/doc/latex/newlfm/problems.tex + RELOC/doc/latex/newlfm/prx.bat + RELOC/doc/latex/newlfm/setup.bat + RELOC/doc/latex/newlfm/sfaxpage.tex + RELOC/doc/latex/newlfm/smemosec.tex + RELOC/doc/latex/newlfm/sprsrls.tex + RELOC/doc/latex/newlfm/test1.tex + RELOC/doc/latex/newlfm/test10.tex + RELOC/doc/latex/newlfm/test11.tex + RELOC/doc/latex/newlfm/test12.tex + RELOC/doc/latex/newlfm/test1alt.tex + RELOC/doc/latex/newlfm/test2.tex + RELOC/doc/latex/newlfm/test2a.tex + RELOC/doc/latex/newlfm/test2alt.tex + RELOC/doc/latex/newlfm/test3.tex + RELOC/doc/latex/newlfm/test3alt.tex + RELOC/doc/latex/newlfm/test4.tex + RELOC/doc/latex/newlfm/test4alt.tex + RELOC/doc/latex/newlfm/test5.tex + RELOC/doc/latex/newlfm/test5alt.tex + RELOC/doc/latex/newlfm/test6.tex + RELOC/doc/latex/newlfm/test6alt.tex + RELOC/doc/latex/newlfm/test7.tex + RELOC/doc/latex/newlfm/test7alt.tex + RELOC/doc/latex/newlfm/test8.tex + RELOC/doc/latex/newlfm/test8alt.tex + RELOC/doc/latex/newlfm/test9.tex + RELOC/doc/latex/newlfm/testms.pdf + RELOC/doc/latex/newlfm/wine.eps + RELOC/doc/latex/newlfm/wine.pdf +srccontainersize 48828 +srccontainerchecksum fa807aaba787c52d3e769e240a04f5fa23e469908d2eb5a60967e2b08cfb7a694612e85514a56c3138925ce2f3c480bd5b6d0f701031d8ee8e646c3017cd0022 +srcfiles size=60 + RELOC/source/latex/newlfm/newlfm.dtx + RELOC/source/latex/newlfm/newlfm.ins +runfiles size=33 + RELOC/tex/latex/newlfm/addrset.sty + RELOC/tex/latex/newlfm/newlfm.cls + RELOC/tex/latex/newlfm/setdim.sty +catalogue-ctan /macros/latex/contrib/newlfm +catalogue-license gpl +catalogue-topics class letter +catalogue-version 9.4 + +name newpax +category Package +revision 58212 +shortdesc Experimental package to extract and reinsert PDF annotations +relocated 1 +longdesc The package is based on the pax package from Heiko Oberdiek. It +longdesc offers a lua-based alternative to the java based pax.jar to +longdesc extract the annotations from a PDF. The resulting file can then +longdesc be used together with pax.sty. It also offers an extended style +longdesc which works with all three major engines. +containersize 8444 +containerchecksum 8285b8a9ea9f01668a8b21b2fb45846fb5c6448546fe9dca50e76d59a818d5e6abab83b1712e24339ef8071c0f20e1b6d731fdb80a1f023b9583cf071ddcb371 +doccontainersize 61332 +doccontainerchecksum e36ae86249580c4a3063535b5fd5daa70f4cf5a98dca1f3e27de6e59ba8c124451ca2ab6a68e96251b128d8ed01265a544c70b6b5c80e5dff343b476878dc7bc +docfiles size=98 + RELOC/doc/latex/newpax/README.md details="Readme" + RELOC/doc/latex/newpax/doc-extract-newpax.tex + RELOC/doc/latex/newpax/doc-extract-pax.tex + RELOC/doc/latex/newpax/doc-input1.pdf + RELOC/doc/latex/newpax/doc-input1.tex + RELOC/doc/latex/newpax/doc-input2.pdf + RELOC/doc/latex/newpax/doc-input2.tex + RELOC/doc/latex/newpax/doc-use-newpax.pdf details="Documentation on Use" + RELOC/doc/latex/newpax/doc-use-newpax.tex + RELOC/doc/latex/newpax/doc-use-pax.pdf + RELOC/doc/latex/newpax/doc-use-pax.tex + RELOC/doc/latex/newpax/newpax.pdf details="Package documentation" + RELOC/doc/latex/newpax/newpax.tex +srccontainersize 8676 +srccontainerchecksum c2c240f9ab2488b5b56577d058dd6fce1eefe7eef79936181cb2e3a2369fd3052e892f3bd076fea1d53d35f1861c008c32911e9fe28641ffcf928b961c4eeb5a +srcfiles size=10 + RELOC/source/latex/newpax/newpax.dtx + RELOC/source/latex/newpax/newpax.ins +runfiles size=10 + RELOC/tex/latex/newpax/newpax.lua + RELOC/tex/latex/newpax/newpax.sty +catalogue-contact-repository https://github.com/u-fischer/newpax +catalogue-contact-support https://github.com/u-fischer/newpax/issues +catalogue-ctan /macros/latex/contrib/newpax +catalogue-license lppl1.3c +catalogue-topics luatex pdf-feat +catalogue-version 0.51 + +name newpx +category Package +revision 58838 +shortdesc Alternative uses of the PX fonts, with improved metrics +relocated 1 +longdesc This package, initially based on pxfonts, provides many fixes +longdesc and enhancements to that package, and splits it in two parts +longdesc (newpxtext and newpxmath) which may be run independently of one +longdesc another. It provides scaling, improved metrics, and other +longdesc options. For proper operation, the packages require that the +longdesc packages newtxmath, pxfonts, and TeXGyrePagella be installed +longdesc and their map files enabled. +execute addMap newpx.map +containersize 1637012 +containerchecksum 0646add23d044178eb3b9727157033c7248e3ad5013b2410b0ee50cbd6a02d4b5378adb9dbe144c21b3515600ed75d8266c4018ddd55bc20d4bcbdfb44c63629 +doccontainersize 452920 +doccontainerchecksum da3c764db5f34c63ac8d6ccb6fc322385f09e41f5a50fce465f6f0792a423aa8ca5976356bdb4ca7252d556369fd073fb463b1109d27ba3f513ada88007986ad +docfiles size=220 + RELOC/doc/fonts/newpx/ChangesInV1.4.txt + RELOC/doc/fonts/newpx/MANIFEST-newpx.txt + RELOC/doc/fonts/newpx/README details="Readme" + RELOC/doc/fonts/newpx/newpxdoc.pdf details="Package documentation" + RELOC/doc/fonts/newpx/newpxdoc.tex + RELOC/doc/fonts/newpx/newpxeg-crop.pdf + RELOC/doc/fonts/newpx/pxfontseg-crop.pdf +runfiles size=1791 + RELOC/fonts/afm/public/newpx/NewPXBMI.afm + RELOC/fonts/afm/public/newpx/NewPXBMI_gnu.afm + RELOC/fonts/afm/public/newpx/NewPXMI.afm + RELOC/fonts/afm/public/newpx/NewPXMI_gnu.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagella-Regular.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Bold.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-BoldItalic.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Italic.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Regular.afm + RELOC/fonts/afm/public/newpx/npxsups-Bold.afm + RELOC/fonts/afm/public/newpx/npxsups-BoldItalic.afm + RELOC/fonts/afm/public/newpx/npxsups-Italic.afm + RELOC/fonts/afm/public/newpx/npxsups-Regular.afm + RELOC/fonts/afm/public/newpx/pxbmiaX.afm + RELOC/fonts/afm/public/newpx/pxbsys.afm + RELOC/fonts/afm/public/newpx/pxmiaX.afm + RELOC/fonts/afm/public/newpx/pxsys.afm + RELOC/fonts/afm/public/newpx/zplb.afm + RELOC/fonts/afm/public/newpx/zplbi.afm + RELOC/fonts/afm/public/newpx/zplr.afm + RELOC/fonts/afm/public/newpx/zplri.afm + RELOC/fonts/enc/dvips/newpx/npxsups_ly1.enc + RELOC/fonts/enc/dvips/newpx/npxsups_ot1.enc + RELOC/fonts/enc/dvips/newpx/npxsups_t1.enc + RELOC/fonts/enc/dvips/newpx/tgpdiff.enc + RELOC/fonts/map/dvips/newpx/newpx.map + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Bold.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-BoldItalic.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Italic.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Regular.otf + RELOC/fonts/tfm/public/newpx/NewPXBMI.tfm + RELOC/fonts/tfm/public/newpx/NewPXBMI_gnu.tfm + RELOC/fonts/tfm/public/newpx/NewPXMI.tfm + RELOC/fonts/tfm/public/newpx/NewPXMI_gnu.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Bold-ly1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Bold-ot1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Bold-t1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Italic-ly1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Italic-ot1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Italic-t1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Regular-ly1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Regular-ot1.tfm + RELOC/fonts/tfm/public/newpx/npxsups-Regular-t1.tfm + RELOC/fonts/tfm/public/newpx/pxbmiaX.tfm + RELOC/fonts/tfm/public/newpx/pxbsys.tfm + RELOC/fonts/tfm/public/newpx/pxmiaX.tfm + RELOC/fonts/tfm/public/newpx/pxsys.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zplb-x.tfm + RELOC/fonts/tfm/public/newpx/zplbexa.tfm + RELOC/fonts/tfm/public/newpx/zplbexx.tfm + RELOC/fonts/tfm/public/newpx/zplbmi.tfm + RELOC/fonts/tfm/public/newpx/zplbmi0.tfm + RELOC/fonts/tfm/public/newpx/zplbmi1.tfm + RELOC/fonts/tfm/public/newpx/zplbmia.tfm + RELOC/fonts/tfm/public/newpx/zplbsy.tfm + RELOC/fonts/tfm/public/newpx/zplbsyc.tfm + RELOC/fonts/tfm/public/newpx/zplbsym.tfm + RELOC/fonts/tfm/public/newpx/zplexa.tfm + RELOC/fonts/tfm/public/newpx/zplexx.tfm + RELOC/fonts/tfm/public/newpx/zplmi.tfm + RELOC/fonts/tfm/public/newpx/zplmi1.tfm + RELOC/fonts/tfm/public/newpx/zplmia.tfm + RELOC/fonts/tfm/public/newpx/zplr-x.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Bold-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Bold-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Bold-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Italic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Italic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Italic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Regular-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Regular-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Regular-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsy.tfm + RELOC/fonts/tfm/public/newpx/zplsyc.tfm + RELOC/fonts/tfm/public/newpx/zplsym.tfm + RELOC/fonts/type1/public/newpx/NewPXBMI.pfb + RELOC/fonts/type1/public/newpx/NewPXBMI_gnu.pfb + RELOC/fonts/type1/public/newpx/NewPXMI.pfb + RELOC/fonts/type1/public/newpx/NewPXMI_gnu.pfb + RELOC/fonts/type1/public/newpx/npxsups-Bold.pfb + RELOC/fonts/type1/public/newpx/npxsups-BoldItalic.pfb + RELOC/fonts/type1/public/newpx/npxsups-Italic.pfb + RELOC/fonts/type1/public/newpx/npxsups-Regular.pfb + RELOC/fonts/type1/public/newpx/pxbmiaX.pfb + RELOC/fonts/type1/public/newpx/pxbsys.pfb + RELOC/fonts/type1/public/newpx/pxmiaX.pfb + RELOC/fonts/type1/public/newpx/pxsys.pfb + RELOC/fonts/type1/public/newpx/zplb.pfb + RELOC/fonts/type1/public/newpx/zplbi.pfb + RELOC/fonts/type1/public/newpx/zplr.pfb + RELOC/fonts/type1/public/newpx/zplri.pfb + RELOC/fonts/type1/public/newpx/zplx-bold.pfb + RELOC/fonts/type1/public/newpx/zplx-regular.pfb + RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zplbexa.vf + RELOC/fonts/vf/public/newpx/zplbexx.vf + RELOC/fonts/vf/public/newpx/zplbmi.vf + RELOC/fonts/vf/public/newpx/zplbmi0.vf + RELOC/fonts/vf/public/newpx/zplbmi1.vf + RELOC/fonts/vf/public/newpx/zplbmia.vf + RELOC/fonts/vf/public/newpx/zplbsy.vf + RELOC/fonts/vf/public/newpx/zplbsyc.vf + RELOC/fonts/vf/public/newpx/zplbsym.vf + RELOC/fonts/vf/public/newpx/zplexa.vf + RELOC/fonts/vf/public/newpx/zplexx.vf + RELOC/fonts/vf/public/newpx/zplmi.vf + RELOC/fonts/vf/public/newpx/zplmi1.vf + RELOC/fonts/vf/public/newpx/zplmia.vf + RELOC/fonts/vf/public/newpx/zplsy.vf + RELOC/fonts/vf/public/newpx/zplsyc.vf + RELOC/fonts/vf/public/newpx/zplsym.vf + RELOC/tex/latex/newpx/TeXGyrePagellaX.fontspec + RELOC/tex/latex/newpx/lmsnpxsy.fd + RELOC/tex/latex/newpx/lmxnpxexx.fd + RELOC/tex/latex/newpx/ly1npxtt.fd + RELOC/tex/latex/newpx/ly1zpllf.fd + RELOC/tex/latex/newpx/ly1zplosf.fd + RELOC/tex/latex/newpx/ly1zplsups.fd + RELOC/tex/latex/newpx/ly1zpltlf.fd + RELOC/tex/latex/newpx/ly1zpltosf.fd + RELOC/tex/latex/newpx/newpx-subs.tex + RELOC/tex/latex/newpx/newpxmath.sty + RELOC/tex/latex/newpx/newpxtext.sty + RELOC/tex/latex/newpx/omlnpxmi.fd + RELOC/tex/latex/newpx/ot1npxtt.fd + RELOC/tex/latex/newpx/ot1zpllf.fd + RELOC/tex/latex/newpx/ot1zplosf.fd + RELOC/tex/latex/newpx/ot1zplsups.fd + RELOC/tex/latex/newpx/ot1zpltlf.fd + RELOC/tex/latex/newpx/ot1zpltosf.fd + RELOC/tex/latex/newpx/t1npxtt.fd + RELOC/tex/latex/newpx/t1zpllf.fd + RELOC/tex/latex/newpx/t1zplosf.fd + RELOC/tex/latex/newpx/t1zplsups.fd + RELOC/tex/latex/newpx/t1zpltlf.fd + RELOC/tex/latex/newpx/t1zpltosf.fd + RELOC/tex/latex/newpx/ts1npxtt.fd + RELOC/tex/latex/newpx/ts1zpllf.fd + RELOC/tex/latex/newpx/ts1zplosf.fd + RELOC/tex/latex/newpx/ts1zpltlf.fd + RELOC/tex/latex/newpx/ts1zpltosf.fd + RELOC/tex/latex/newpx/unpxexa.fd + RELOC/tex/latex/newpx/unpxmia.fd + RELOC/tex/latex/newpx/unpxss.fd + RELOC/tex/latex/newpx/unpxsyc.fd + RELOC/tex/latex/newpx/unpxsym.fd + RELOC/tex/latex/newpx/unpxtt.fd +catalogue-also pxfonts +catalogue-ctan /fonts/newpx +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.415 + +name newsletr +category Package +revision 15878 +shortdesc Macros for making newsletters with Plain TeX +relocated 1 +containersize 16788 +containerchecksum e2f1995420ed7b94b980fd794df5dca89e89dd96daefa43559d568881ffd17668717de1baaff18bf27e8519663203e0ea7fef214b8f7541bde81d436a3a5c378 +doccontainersize 137580 +doccontainerchecksum aff23fd9e3397c52a1566930d6da6184786f07adc64c63e5d9e0062451014d261db8dab06e9d393cb66b3b56a51b57f494f01c9ab27b05bbe2a226cd4623d590 +docfiles size=53 + RELOC/doc/plain/newsletr/italic.tex + RELOC/doc/plain/newsletr/lodriver.tex + RELOC/doc/plain/newsletr/losample.tex + RELOC/doc/plain/newsletr/newsletr.txt details="Help for newsletr format" + RELOC/doc/plain/newsletr/newssamp.pdf details="Sample Newsletter" + RELOC/doc/plain/newsletr/newssamp.tex + RELOC/doc/plain/newsletr/quote.tex + RELOC/doc/plain/newsletr/read.me + RELOC/doc/plain/newsletr/sample.pdf details="Another sample Newsletter" +runfiles size=14 + RELOC/tex/plain/newsletr/newsletr.tex +catalogue-ctan /macros/plain/contrib/newsletr +catalogue-license other-free +catalogue-topics magazine + +name newspaper +category Package +revision 15878 +shortdesc Typeset newsletters to resemble newspapers +relocated 1 +longdesc The newspaper package redefines the page style and \maketitle +longdesc command to produce a typeset page similar to that of a +longdesc newspaper. It also provides several commands that (when used +longdesc with other packages) simplify the writing of articles in a +longdesc newspaper-style column format. +containersize 1924 +containerchecksum 227fd249bba9deea4f191c59060c49d2d1cb8e367bb3007d3b123c17dd4328206962946ce3f637c8e6ae079a9c95244ce9027b0c9f83e0901801dde066a0405a +doccontainersize 196212 +doccontainerchecksum b08d57346ba93e37e93f3c6e2487d56a0ac67eac0e4d9db564d221319e6403a1055729a2a1e43db4e161877b7300aa90e1853d75843c95295481d7cfaa3f6c1f +docfiles size=71 + RELOC/doc/latex/newspaper/Figure1.pdf + RELOC/doc/latex/newspaper/Figure2.pdf + RELOC/doc/latex/newspaper/README details="Readme" + RELOC/doc/latex/newspaper/atom.jpg + RELOC/doc/latex/newspaper/newspaper.pdf details="Package documentation" + RELOC/doc/latex/newspaper/newspaperExample.tex +srccontainersize 6804 +srccontainerchecksum 172e832bd15e8aecf6f80f8cb768d2d7b3721975638007ce631b78cf5f6dab27ef24ff63f5693f5c46cc430bfecae577beefe4fd2f6fef22d6f5fdf9ff20dfe7 +srcfiles size=5 + RELOC/source/latex/newspaper/newspaper.dtx +runfiles size=1 + RELOC/tex/latex/newspaper/newspaper.sty +catalogue-ctan /macros/latex/contrib/newspaper +catalogue-license lppl +catalogue-topics magazine +catalogue-version 1.0 + +name newtx +category Package +revision 58748 +shortdesc Alternative uses of the TX fonts, with improved metrics +relocated 1 +longdesc The bundle splits txfonts.sty (from the TX fonts distribution) +longdesc into two independent packages, newtxtext.sty and newtxmath.sty, +longdesc each with fixes and enhancements. newtxmath's metrics have been +longdesc re-evaluated to provide a less tight appearance, and to provide +longdesc a libertine option that substitutes Libertine italic and Greek +longdesc letter for the existing math italic and Greek glyphs, making a +longdesc mathematics package that matches Libertine text quite well. +longdesc newtxmath can also use the maths italic font provided with the +longdesc garamondx package, thus offering a garamond-alike +longdesc text-with-maths combination. +depend kastrup +execute addMap newtx.map +containersize 5580552 +containerchecksum 2ff1eb8ca3fbda170c466e64ad874abcb17d657203a84809fac9e4f909d776eed95fbd69438b9fcdc3f0fd8f76ce5e9e662768e3ee51a2ec22ca4b071fe71b6b +doccontainersize 972108 +doccontainerchecksum d6a89d72862332f08134e1a47ec53de58eb0fdfc7191f380ba8eda740a2118be03cb5898f880a1bfa3778e2e107096d5e9062ff875269a698f79e3506043de6e +docfiles size=437 + RELOC/doc/fonts/newtx/MANIFEST-newtx.txt + RELOC/doc/fonts/newtx/README details="Readme" + RELOC/doc/fonts/newtx/implementation.pdf details="Implementation notes" + RELOC/doc/fonts/newtx/implementation.tex + RELOC/doc/fonts/newtx/mathnotes.pdf details="Notes concerning math fonts" + RELOC/doc/fonts/newtx/mathnotes.tex + RELOC/doc/fonts/newtx/newtxdoc.pdf details="Package documentation" + RELOC/doc/fonts/newtx/newtxdoc.tex + RELOC/doc/fonts/newtx/sample-lib-crop.pdf + RELOC/doc/fonts/newtx/sample-libmtp-crop.pdf + RELOC/doc/fonts/newtx/sample-mtp-crop.pdf + RELOC/doc/fonts/newtx/sample-ntx-crop.pdf + RELOC/doc/fonts/newtx/sample-ptmx-crop.pdf + RELOC/doc/fonts/newtx/sample-tx-crop.pdf +runfiles size=3240 + RELOC/fonts/afm/public/newtx/LibertineI-5nu.afm + RELOC/fonts/afm/public/newtx/LibertineMathBMI.afm + RELOC/fonts/afm/public/newtx/LibertineMathBMI5.afm + RELOC/fonts/afm/public/newtx/LibertineMathBMI7.afm + RELOC/fonts/afm/public/newtx/LibertineMathBRM.afm + RELOC/fonts/afm/public/newtx/LibertineMathMI.afm + RELOC/fonts/afm/public/newtx/LibertineMathMI5.afm + RELOC/fonts/afm/public/newtx/LibertineMathMI7.afm + RELOC/fonts/afm/public/newtx/LibertineMathRM.afm + RELOC/fonts/afm/public/newtx/LibertineZI-5nu.afm + RELOC/fonts/afm/public/newtx/NewTXBMI.afm + RELOC/fonts/afm/public/newtx/NewTXBMI5.afm + RELOC/fonts/afm/public/newtx/NewTXBMI7.afm + RELOC/fonts/afm/public/newtx/NewTXMI.afm + RELOC/fonts/afm/public/newtx/NewTXMI5.afm + RELOC/fonts/afm/public/newtx/NewTXMI7.afm + RELOC/fonts/afm/public/newtx/ntxsups-Bold.afm + RELOC/fonts/afm/public/newtx/ntxsups-BoldItalic.afm + RELOC/fonts/afm/public/newtx/ntxsups-Italic.afm + RELOC/fonts/afm/public/newtx/ntxsups-Regular.afm + RELOC/fonts/afm/public/newtx/ntxtmb.afm + RELOC/fonts/afm/public/newtx/ntxtmbi.afm + RELOC/fonts/afm/public/newtx/ntxtmr.afm + RELOC/fonts/afm/public/newtx/ntxtmri.afm + RELOC/fonts/afm/public/newtx/rtxbmi5.afm + RELOC/fonts/afm/public/newtx/rtxbmi7.afm + RELOC/fonts/afm/public/newtx/stxscr.afm + RELOC/fonts/afm/public/newtx/txbex-bar.afm + RELOC/fonts/afm/public/newtx/txbexas.afm + RELOC/fonts/afm/public/newtx/txbexs.afm + RELOC/fonts/afm/public/newtx/txbmiaSTbb.afm + RELOC/fonts/afm/public/newtx/txbmiaX.afm + RELOC/fonts/afm/public/newtx/txbsys.afm + RELOC/fonts/afm/public/newtx/txex-bar.afm + RELOC/fonts/afm/public/newtx/txexas.afm + RELOC/fonts/afm/public/newtx/txexs.afm + RELOC/fonts/afm/public/newtx/txmiaSTbb.afm + RELOC/fonts/afm/public/newtx/txmiaX.afm + RELOC/fonts/afm/public/newtx/txsys.afm + RELOC/fonts/afm/public/newtx/ztmb.afm + RELOC/fonts/afm/public/newtx/ztmbi.afm + RELOC/fonts/afm/public/newtx/ztmr.afm + RELOC/fonts/afm/public/newtx/ztmri.afm + RELOC/fonts/enc/dvips/newtx/alt-mn-greek.enc + RELOC/fonts/enc/dvips/newtx/libcaps.enc + RELOC/fonts/enc/dvips/newtx/libertinealt.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-lf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-lf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-osf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-osf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tlf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tlf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tosf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tosf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-lf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-lf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-osf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-osf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-th-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-th-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tlf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tlf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tosf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tosf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-lf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-lf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-osf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-osf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-th-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-th-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tlf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tlf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tosf-pc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tosf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntxdenoms_LY1.enc + RELOC/fonts/enc/dvips/newtx/ntxdenoms_OT1.enc + RELOC/fonts/enc/dvips/newtx/ntxdenoms_T1.enc + RELOC/fonts/enc/dvips/newtx/ntxmiaalt.enc + RELOC/fonts/enc/dvips/newtx/ntxsups_ly1.enc + RELOC/fonts/enc/dvips/newtx/ntxsups_ot1.enc + RELOC/fonts/enc/dvips/newtx/ntxsups_t1.enc + RELOC/fonts/map/dvips/newtx/newtx.map + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Bold.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-BoldItalic.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Italic.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Regular.otf + RELOC/fonts/opentype/public/newtx/ntxsups-Bold.otf + RELOC/fonts/opentype/public/newtx/ntxsups-BoldItalic.otf + RELOC/fonts/opentype/public/newtx/ntxsups-Italic.otf + RELOC/fonts/opentype/public/newtx/ntxsups-Regular.otf + RELOC/fonts/tfm/public/newtx/Libertine-nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineI-5nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineI-7nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineI-nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathBMI.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathBMI5.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathBMI7.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathBRM.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathMI.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathMI5.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathMI7.tfm + RELOC/fonts/tfm/public/newtx/LibertineMathRM.tfm + RELOC/fonts/tfm/public/newtx/LibertineTheta-Regular.tfm + RELOC/fonts/tfm/public/newtx/LibertineZ-nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineZI-5nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineZI-7nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineZI-nu.tfm + RELOC/fonts/tfm/public/newtx/MinLibBol-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBol-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBol-t1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBolIta-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBolIta-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBolIta-t1.tfm + RELOC/fonts/tfm/public/newtx/MinLibIta-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibIta-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibIta-t1.tfm + RELOC/fonts/tfm/public/newtx/MinLibReg-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibReg-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibReg-t1.tfm + RELOC/fonts/tfm/public/newtx/NewTXBMI.tfm + RELOC/fonts/tfm/public/newtx/NewTXBMI5.tfm + RELOC/fonts/tfm/public/newtx/NewTXBMI7.tfm + RELOC/fonts/tfm/public/newtx/NewTXMI.tfm + RELOC/fonts/tfm/public/newtx/NewTXMI5.tfm + RELOC/fonts/tfm/public/newtx/NewTXMI7.tfm + RELOC/fonts/tfm/public/newtx/ebgBMI.tfm + RELOC/fonts/tfm/public/newtx/ebgBRM.tfm + RELOC/fonts/tfm/public/newtx/ebgMI.tfm + RELOC/fonts/tfm/public/newtx/ebgMRM.tfm + RELOC/fonts/tfm/public/newtx/ebgbmia.tfm + RELOC/fonts/tfm/public/newtx/ebgmia.tfm + RELOC/fonts/tfm/public/newtx/fxlri-5alt.tfm + RELOC/fonts/tfm/public/newtx/fxlri-5letters.tfm + RELOC/fonts/tfm/public/newtx/fxlri-7alt.tfm + RELOC/fonts/tfm/public/newtx/fxlri-7letters.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-5alt.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-5letters.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-7alt.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-7letters.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-jv.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-jv5.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-jv7.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-ot1r.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxbex.tfm + RELOC/fonts/tfm/public/newtx/ntxbexa.tfm + RELOC/fonts/tfm/public/newtx/ntxbexb.tfm + RELOC/fonts/tfm/public/newtx/ntxbexmods.tfm + RELOC/fonts/tfm/public/newtx/ntxbexx.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi0.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi05.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi07.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi1.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi15.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi17.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi1x.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi5.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi7.tfm + RELOC/fonts/tfm/public/newtx/ntxbmia.tfm + RELOC/fonts/tfm/public/newtx/ntxbmial1.tfm + RELOC/fonts/tfm/public/newtx/ntxbmials.tfm + RELOC/fonts/tfm/public/newtx/ntxbsy.tfm + RELOC/fonts/tfm/public/newtx/ntxbsy5.tfm + RELOC/fonts/tfm/public/newtx/ntxbsy7.tfm + RELOC/fonts/tfm/public/newtx/ntxbsyc.tfm + RELOC/fonts/tfm/public/newtx/ntxbsym.tfm + RELOC/fonts/tfm/public/newtx/ntxdenoms-Regular-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxdenoms-Regular-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxdenoms-Regular-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxebgbmi.tfm + RELOC/fonts/tfm/public/newtx/ntxebgbmia.tfm + RELOC/fonts/tfm/public/newtx/ntxebgmi.tfm + RELOC/fonts/tfm/public/newtx/ntxebgmia.tfm + RELOC/fonts/tfm/public/newtx/ntxexa.tfm + RELOC/fonts/tfm/public/newtx/ntxexb.tfm + RELOC/fonts/tfm/public/newtx/ntxexmods.tfm + RELOC/fonts/tfm/public/newtx/ntxexx.tfm + RELOC/fonts/tfm/public/newtx/ntxmi.tfm + RELOC/fonts/tfm/public/newtx/ntxmi0.tfm + RELOC/fonts/tfm/public/newtx/ntxmi05.tfm + RELOC/fonts/tfm/public/newtx/ntxmi07.tfm + RELOC/fonts/tfm/public/newtx/ntxmi1.tfm + RELOC/fonts/tfm/public/newtx/ntxmi15.tfm + RELOC/fonts/tfm/public/newtx/ntxmi17.tfm + RELOC/fonts/tfm/public/newtx/ntxmi5.tfm + RELOC/fonts/tfm/public/newtx/ntxmi7.tfm + RELOC/fonts/tfm/public/newtx/ntxmia.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular.tfm + RELOC/fonts/tfm/public/newtx/ntxsy.tfm + RELOC/fonts/tfm/public/newtx/ntxsy5.tfm + RELOC/fonts/tfm/public/newtx/ntxsy7.tfm + RELOC/fonts/tfm/public/newtx/ntxsybalt.tfm + RELOC/fonts/tfm/public/newtx/ntxsyc.tfm + RELOC/fonts/tfm/public/newtx/ntxsym.tfm + RELOC/fonts/tfm/public/newtx/ntxsyralt.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi0.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi01.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi015.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi017.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi02.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi025.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi027.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi03.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi035.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi037.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi05.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi07.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi1.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi15.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi17.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi2.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi25.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi27.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi3.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi35.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi37.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi5.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi7.tfm + RELOC/fonts/tfm/public/newtx/nxlbmia.tfm + RELOC/fonts/tfm/public/newtx/nxlbsy5.tfm + RELOC/fonts/tfm/public/newtx/nxlbsy7.tfm + RELOC/fonts/tfm/public/newtx/nxlmi.tfm + RELOC/fonts/tfm/public/newtx/nxlmi0.tfm + RELOC/fonts/tfm/public/newtx/nxlmi01.tfm + RELOC/fonts/tfm/public/newtx/nxlmi015.tfm + RELOC/fonts/tfm/public/newtx/nxlmi017.tfm + RELOC/fonts/tfm/public/newtx/nxlmi02.tfm + RELOC/fonts/tfm/public/newtx/nxlmi025.tfm + RELOC/fonts/tfm/public/newtx/nxlmi027.tfm + RELOC/fonts/tfm/public/newtx/nxlmi03.tfm + RELOC/fonts/tfm/public/newtx/nxlmi035.tfm + RELOC/fonts/tfm/public/newtx/nxlmi037.tfm + RELOC/fonts/tfm/public/newtx/nxlmi05.tfm + RELOC/fonts/tfm/public/newtx/nxlmi07.tfm + RELOC/fonts/tfm/public/newtx/nxlmi1.tfm + RELOC/fonts/tfm/public/newtx/nxlmi15.tfm + RELOC/fonts/tfm/public/newtx/nxlmi17.tfm + RELOC/fonts/tfm/public/newtx/nxlmi2.tfm + RELOC/fonts/tfm/public/newtx/nxlmi25.tfm + RELOC/fonts/tfm/public/newtx/nxlmi27.tfm + RELOC/fonts/tfm/public/newtx/nxlmi3.tfm + RELOC/fonts/tfm/public/newtx/nxlmi35.tfm + RELOC/fonts/tfm/public/newtx/nxlmi37.tfm + RELOC/fonts/tfm/public/newtx/nxlmi5.tfm + RELOC/fonts/tfm/public/newtx/nxlmi7.tfm + RELOC/fonts/tfm/public/newtx/nxlmia.tfm + RELOC/fonts/tfm/public/newtx/nxlsy5.tfm + RELOC/fonts/tfm/public/newtx/nxlsy7.tfm + RELOC/fonts/tfm/public/newtx/rfxlr-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-vw.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-vw5.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-vw7.tfm + RELOC/fonts/tfm/public/newtx/rfxlz-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-vw.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-vw5.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-vw7.tfm + RELOC/fonts/tfm/public/newtx/rntxbmi.tfm + RELOC/fonts/tfm/public/newtx/rntxbmi5.tfm + RELOC/fonts/tfm/public/newtx/rntxbmi7.tfm + RELOC/fonts/tfm/public/newtx/rntxmi.tfm + RELOC/fonts/tfm/public/newtx/rntxmi5.tfm + RELOC/fonts/tfm/public/newtx/rntxmi7.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi-rev.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi-ut.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi5-rev.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi5.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi7-rev.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi7.tfm + RELOC/fonts/tfm/public/newtx/rtxbmio.tfm + RELOC/fonts/tfm/public/newtx/rtxmi-ut.tfm + RELOC/fonts/tfm/public/newtx/rtxmi5.tfm + RELOC/fonts/tfm/public/newtx/rtxmi7.tfm + RELOC/fonts/tfm/public/newtx/rtxmio.tfm + RELOC/fonts/tfm/public/newtx/stx2rm.tfm + RELOC/fonts/tfm/public/newtx/stxscr.tfm + RELOC/fonts/tfm/public/newtx/txbex-bar.tfm + RELOC/fonts/tfm/public/newtx/txbexas.tfm + RELOC/fonts/tfm/public/newtx/txbexs.tfm + RELOC/fonts/tfm/public/newtx/txbmiaSTbb.tfm + RELOC/fonts/tfm/public/newtx/txbmiaX.tfm + RELOC/fonts/tfm/public/newtx/txbsy5.tfm + RELOC/fonts/tfm/public/newtx/txbsy7.tfm + RELOC/fonts/tfm/public/newtx/txbsys.tfm + RELOC/fonts/tfm/public/newtx/txex-bar.tfm + RELOC/fonts/tfm/public/newtx/txexas.tfm + RELOC/fonts/tfm/public/newtx/txexs.tfm + RELOC/fonts/tfm/public/newtx/txmiaSTbb.tfm + RELOC/fonts/tfm/public/newtx/txmiaX.tfm + RELOC/fonts/tfm/public/newtx/txsy5.tfm + RELOC/fonts/tfm/public/newtx/txsy7.tfm + RELOC/fonts/tfm/public/newtx/txsys.tfm + RELOC/fonts/tfm/public/newtx/zutbmi.tfm + RELOC/fonts/tfm/public/newtx/zutbmia.tfm + RELOC/fonts/tfm/public/newtx/zutmi.tfm + RELOC/fonts/tfm/public/newtx/zutmia.tfm + RELOC/fonts/tfm/public/newtx/zxlr-5nums.tfm + RELOC/fonts/tfm/public/newtx/zxlr-7nums.tfm + RELOC/fonts/tfm/public/newtx/zxlr-8r.tfm + RELOC/fonts/tfm/public/newtx/zxlr-caps.tfm + RELOC/fonts/tfm/public/newtx/zxlri-8r.tfm + RELOC/fonts/tfm/public/newtx/zxlz-8r.tfm + RELOC/fonts/tfm/public/newtx/zxlz-caps.tfm + RELOC/fonts/tfm/public/newtx/zxlzi-8r.tfm + RELOC/fonts/type1/public/newtx/Libertine-nu.pfb + RELOC/fonts/type1/public/newtx/LibertineI-5nu.pfb + RELOC/fonts/type1/public/newtx/LibertineI-7nu.pfb + RELOC/fonts/type1/public/newtx/LibertineI-nu.pfb + RELOC/fonts/type1/public/newtx/LibertineMathBMI.pfb + RELOC/fonts/type1/public/newtx/LibertineMathBMI5.pfb + RELOC/fonts/type1/public/newtx/LibertineMathBMI7.pfb + RELOC/fonts/type1/public/newtx/LibertineMathBRM.pfb + RELOC/fonts/type1/public/newtx/LibertineMathMI.pfb + RELOC/fonts/type1/public/newtx/LibertineMathMI5.pfb + RELOC/fonts/type1/public/newtx/LibertineMathMI7.pfb + RELOC/fonts/type1/public/newtx/LibertineMathRM.pfb + RELOC/fonts/type1/public/newtx/LibertineTheta-Regular.pfb + RELOC/fonts/type1/public/newtx/LibertineZ-nu.pfb + RELOC/fonts/type1/public/newtx/LibertineZI-5nu.pfb + RELOC/fonts/type1/public/newtx/LibertineZI-7nu.pfb + RELOC/fonts/type1/public/newtx/LibertineZI-nu.pfb + RELOC/fonts/type1/public/newtx/MinLibBol.pfb + RELOC/fonts/type1/public/newtx/MinLibBolIta.pfb + RELOC/fonts/type1/public/newtx/MinLibIta.pfb + RELOC/fonts/type1/public/newtx/MinLibReg.pfb + RELOC/fonts/type1/public/newtx/NewTXBMI.pfb + RELOC/fonts/type1/public/newtx/NewTXBMI5.pfb + RELOC/fonts/type1/public/newtx/NewTXBMI7.pfb + RELOC/fonts/type1/public/newtx/NewTXMI.pfb + RELOC/fonts/type1/public/newtx/NewTXMI5.pfb + RELOC/fonts/type1/public/newtx/NewTXMI7.pfb + RELOC/fonts/type1/public/newtx/ebgBMI.pfb + RELOC/fonts/type1/public/newtx/ebgBRM.pfb + RELOC/fonts/type1/public/newtx/ebgMI.pfb + RELOC/fonts/type1/public/newtx/ebgMRM.pfb + RELOC/fonts/type1/public/newtx/fxlri-5letters.pfb + RELOC/fonts/type1/public/newtx/fxlri-7letters.pfb + RELOC/fonts/type1/public/newtx/fxlri-vw.pfb + RELOC/fonts/type1/public/newtx/fxlri-vw5.pfb + RELOC/fonts/type1/public/newtx/fxlri-vw7.pfb + RELOC/fonts/type1/public/newtx/fxlzi-5letters.pfb + RELOC/fonts/type1/public/newtx/fxlzi-7letters.pfb + RELOC/fonts/type1/public/newtx/fxlzi-jv.pfb + RELOC/fonts/type1/public/newtx/fxlzi-jv5.pfb + RELOC/fonts/type1/public/newtx/fxlzi-jv7.pfb + RELOC/fonts/type1/public/newtx/fxlzi-vw.pfb + RELOC/fonts/type1/public/newtx/fxlzi-vw5.pfb + RELOC/fonts/type1/public/newtx/fxlzi-vw7.pfb + RELOC/fonts/type1/public/newtx/ntxbexb.pfb + RELOC/fonts/type1/public/newtx/ntxbexmods.pfb + RELOC/fonts/type1/public/newtx/ntxexb.pfb + RELOC/fonts/type1/public/newtx/ntxexmods.pfb + RELOC/fonts/type1/public/newtx/ntxsups-Bold.pfb + RELOC/fonts/type1/public/newtx/ntxsups-BoldItalic.pfb + RELOC/fonts/type1/public/newtx/ntxsups-Italic.pfb + RELOC/fonts/type1/public/newtx/ntxsups-Regular.pfb + RELOC/fonts/type1/public/newtx/ntxsybalt.pfb + RELOC/fonts/type1/public/newtx/ntxsyralt.pfb + RELOC/fonts/type1/public/newtx/ntxtmb.pfb + RELOC/fonts/type1/public/newtx/ntxtmbi.pfb + RELOC/fonts/type1/public/newtx/ntxtmr.pfb + RELOC/fonts/type1/public/newtx/ntxtmri.pfb + RELOC/fonts/type1/public/newtx/rntxbmi.pfb + RELOC/fonts/type1/public/newtx/rntxbmi5.pfb + RELOC/fonts/type1/public/newtx/rntxbmi7.pfb + RELOC/fonts/type1/public/newtx/rntxmi.pfb + RELOC/fonts/type1/public/newtx/rntxmi5.pfb + RELOC/fonts/type1/public/newtx/rntxmi7.pfb + RELOC/fonts/type1/public/newtx/rtxbmi-rev.pfb + RELOC/fonts/type1/public/newtx/rtxbmi5-rev.pfb + RELOC/fonts/type1/public/newtx/rtxbmi5.pfb + RELOC/fonts/type1/public/newtx/rtxbmi7-rev.pfb + RELOC/fonts/type1/public/newtx/rtxbmi7.pfb + RELOC/fonts/type1/public/newtx/rtxmi5.pfb + RELOC/fonts/type1/public/newtx/rtxmi7.pfb + RELOC/fonts/type1/public/newtx/stxscr.pfb + RELOC/fonts/type1/public/newtx/txbex-bar.pfb + RELOC/fonts/type1/public/newtx/txbexas.pfb + RELOC/fonts/type1/public/newtx/txbexs.pfb + RELOC/fonts/type1/public/newtx/txbmiaSTbb.pfb + RELOC/fonts/type1/public/newtx/txbmiaX.pfb + RELOC/fonts/type1/public/newtx/txbsy5.pfb + RELOC/fonts/type1/public/newtx/txbsy7.pfb + RELOC/fonts/type1/public/newtx/txbsys.pfb + RELOC/fonts/type1/public/newtx/txex-bar.pfb + RELOC/fonts/type1/public/newtx/txexas.pfb + RELOC/fonts/type1/public/newtx/txexs.pfb + RELOC/fonts/type1/public/newtx/txmiaSTbb.pfb + RELOC/fonts/type1/public/newtx/txmiaX.pfb + RELOC/fonts/type1/public/newtx/txsy5.pfb + RELOC/fonts/type1/public/newtx/txsy7.pfb + RELOC/fonts/type1/public/newtx/txsys.pfb + RELOC/fonts/type1/public/newtx/ztmb.pfb + RELOC/fonts/type1/public/newtx/ztmbi.pfb + RELOC/fonts/type1/public/newtx/ztmr.pfb + RELOC/fonts/type1/public/newtx/ztmri.pfb + RELOC/fonts/type1/public/newtx/zxlr-5nums.pfb + RELOC/fonts/type1/public/newtx/zxlr-7nums.pfb + RELOC/fonts/type1/public/newtx/zxlr.pfb + RELOC/fonts/type1/public/newtx/zxlri.pfb + RELOC/fonts/type1/public/newtx/zxlz.pfb + RELOC/fonts/type1/public/newtx/zxlzi.pfb + RELOC/fonts/vf/public/newtx/ebgbmia.vf + RELOC/fonts/vf/public/newtx/ebgmi0.vf + RELOC/fonts/vf/public/newtx/ebgmia.vf + RELOC/fonts/vf/public/newtx/ntx-Bold-lf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Bold-osf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-BoldItalic-osf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Italic-lf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Italic-osf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Italic-tlf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Italic-tosf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Regular-lf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Regular-osf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/newtx/ntx-Regular-tosf-ot1.vf + RELOC/fonts/vf/public/newtx/ntxbex.vf + RELOC/fonts/vf/public/newtx/ntxbexa.vf + RELOC/fonts/vf/public/newtx/ntxbexx.vf + RELOC/fonts/vf/public/newtx/ntxbmi.vf + RELOC/fonts/vf/public/newtx/ntxbmi0.vf + RELOC/fonts/vf/public/newtx/ntxbmi05.vf + RELOC/fonts/vf/public/newtx/ntxbmi07.vf + RELOC/fonts/vf/public/newtx/ntxbmi1.vf + RELOC/fonts/vf/public/newtx/ntxbmi15.vf + RELOC/fonts/vf/public/newtx/ntxbmi17.vf + RELOC/fonts/vf/public/newtx/ntxbmi1x.vf + RELOC/fonts/vf/public/newtx/ntxbmi5.vf + RELOC/fonts/vf/public/newtx/ntxbmi7.vf + RELOC/fonts/vf/public/newtx/ntxbmia.vf + RELOC/fonts/vf/public/newtx/ntxbsy.vf + RELOC/fonts/vf/public/newtx/ntxbsy5.vf + RELOC/fonts/vf/public/newtx/ntxbsy7.vf + RELOC/fonts/vf/public/newtx/ntxbsyc.vf + RELOC/fonts/vf/public/newtx/ntxbsym.vf + RELOC/fonts/vf/public/newtx/ntxebgbmi.vf + RELOC/fonts/vf/public/newtx/ntxebgbmia.vf + RELOC/fonts/vf/public/newtx/ntxebgmi.vf + RELOC/fonts/vf/public/newtx/ntxebgmia.vf + RELOC/fonts/vf/public/newtx/ntxexa.vf + RELOC/fonts/vf/public/newtx/ntxexx.vf + RELOC/fonts/vf/public/newtx/ntxmi.vf + RELOC/fonts/vf/public/newtx/ntxmi0.vf + RELOC/fonts/vf/public/newtx/ntxmi05.vf + RELOC/fonts/vf/public/newtx/ntxmi07.vf + RELOC/fonts/vf/public/newtx/ntxmi1.vf + RELOC/fonts/vf/public/newtx/ntxmi15.vf + RELOC/fonts/vf/public/newtx/ntxmi17.vf + RELOC/fonts/vf/public/newtx/ntxmi5.vf + RELOC/fonts/vf/public/newtx/ntxmi7.vf + RELOC/fonts/vf/public/newtx/ntxmia.vf + RELOC/fonts/vf/public/newtx/ntxsy.vf + RELOC/fonts/vf/public/newtx/ntxsy5.vf + RELOC/fonts/vf/public/newtx/ntxsy7.vf + RELOC/fonts/vf/public/newtx/ntxsyc.vf + RELOC/fonts/vf/public/newtx/ntxsym.vf + RELOC/fonts/vf/public/newtx/nxlbmi.vf + RELOC/fonts/vf/public/newtx/nxlbmi0.vf + RELOC/fonts/vf/public/newtx/nxlbmi01.vf + RELOC/fonts/vf/public/newtx/nxlbmi015.vf + RELOC/fonts/vf/public/newtx/nxlbmi017.vf + RELOC/fonts/vf/public/newtx/nxlbmi02.vf + RELOC/fonts/vf/public/newtx/nxlbmi025.vf + RELOC/fonts/vf/public/newtx/nxlbmi027.vf + RELOC/fonts/vf/public/newtx/nxlbmi03.vf + RELOC/fonts/vf/public/newtx/nxlbmi035.vf + RELOC/fonts/vf/public/newtx/nxlbmi037.vf + RELOC/fonts/vf/public/newtx/nxlbmi05.vf + RELOC/fonts/vf/public/newtx/nxlbmi07.vf + RELOC/fonts/vf/public/newtx/nxlbmi1.vf + RELOC/fonts/vf/public/newtx/nxlbmi15.vf + RELOC/fonts/vf/public/newtx/nxlbmi17.vf + RELOC/fonts/vf/public/newtx/nxlbmi2.vf + RELOC/fonts/vf/public/newtx/nxlbmi25.vf + RELOC/fonts/vf/public/newtx/nxlbmi27.vf + RELOC/fonts/vf/public/newtx/nxlbmi3.vf + RELOC/fonts/vf/public/newtx/nxlbmi35.vf + RELOC/fonts/vf/public/newtx/nxlbmi37.vf + RELOC/fonts/vf/public/newtx/nxlbmi5.vf + RELOC/fonts/vf/public/newtx/nxlbmi7.vf + RELOC/fonts/vf/public/newtx/nxlbmia.vf + RELOC/fonts/vf/public/newtx/nxlbsy5.vf + RELOC/fonts/vf/public/newtx/nxlbsy7.vf + RELOC/fonts/vf/public/newtx/nxlmi.vf + RELOC/fonts/vf/public/newtx/nxlmi0.vf + RELOC/fonts/vf/public/newtx/nxlmi01.vf + RELOC/fonts/vf/public/newtx/nxlmi015.vf + RELOC/fonts/vf/public/newtx/nxlmi017.vf + RELOC/fonts/vf/public/newtx/nxlmi02.vf + RELOC/fonts/vf/public/newtx/nxlmi025.vf + RELOC/fonts/vf/public/newtx/nxlmi027.vf + RELOC/fonts/vf/public/newtx/nxlmi03.vf + RELOC/fonts/vf/public/newtx/nxlmi035.vf + RELOC/fonts/vf/public/newtx/nxlmi037.vf + RELOC/fonts/vf/public/newtx/nxlmi05.vf + RELOC/fonts/vf/public/newtx/nxlmi07.vf + RELOC/fonts/vf/public/newtx/nxlmi1.vf + RELOC/fonts/vf/public/newtx/nxlmi15.vf + RELOC/fonts/vf/public/newtx/nxlmi17.vf + RELOC/fonts/vf/public/newtx/nxlmi2.vf + RELOC/fonts/vf/public/newtx/nxlmi25.vf + RELOC/fonts/vf/public/newtx/nxlmi27.vf + RELOC/fonts/vf/public/newtx/nxlmi3.vf + RELOC/fonts/vf/public/newtx/nxlmi35.vf + RELOC/fonts/vf/public/newtx/nxlmi37.vf + RELOC/fonts/vf/public/newtx/nxlmi5.vf + RELOC/fonts/vf/public/newtx/nxlmi7.vf + RELOC/fonts/vf/public/newtx/nxlmia.vf + RELOC/fonts/vf/public/newtx/nxlsy5.vf + RELOC/fonts/vf/public/newtx/nxlsy7.vf + RELOC/fonts/vf/public/newtx/zutbmi.vf + RELOC/fonts/vf/public/newtx/zutbmia.vf + RELOC/fonts/vf/public/newtx/zutmi.vf + RELOC/fonts/vf/public/newtx/zutmia.vf + RELOC/tex/latex/newtx/TeXGyreTermesX.fontspec + RELOC/tex/latex/newtx/lmsntxsy.fd + RELOC/tex/latex/newtx/lmxntxexx.fd + RELOC/tex/latex/newtx/ly1minlibertine.fd + RELOC/tex/latex/newtx/ly1ntxdenoms.fd + RELOC/tex/latex/newtx/ly1ntxlf.fd + RELOC/tex/latex/newtx/ly1ntxosf.fd + RELOC/tex/latex/newtx/ly1ntxsups.fd + RELOC/tex/latex/newtx/ly1ntxtlf.fd + RELOC/tex/latex/newtx/ly1ntxtosf.fd + RELOC/tex/latex/newtx/ly1ntxtt.fd + RELOC/tex/latex/newtx/newtx-ebgaramond-subs.tex + RELOC/tex/latex/newtx/newtx-libertine-subs.tex + RELOC/tex/latex/newtx/newtx-subs.tex + RELOC/tex/latex/newtx/newtxmath.sty + RELOC/tex/latex/newtx/newtxtext.sty + RELOC/tex/latex/newtx/omlntxebgmi.fd + RELOC/tex/latex/newtx/omlntxmi.fd + RELOC/tex/latex/newtx/omlntxstx2mi.fd + RELOC/tex/latex/newtx/omlnxlmi.fd + RELOC/tex/latex/newtx/omlzbvmi.fd + RELOC/tex/latex/newtx/omlzmnmi.fd + RELOC/tex/latex/newtx/omlzutmi.fd + RELOC/tex/latex/newtx/ot1minlibertine.fd + RELOC/tex/latex/newtx/ot1ntxdenoms.fd + RELOC/tex/latex/newtx/ot1ntxlf.fd + RELOC/tex/latex/newtx/ot1ntxosf.fd + RELOC/tex/latex/newtx/ot1ntxsups.fd + RELOC/tex/latex/newtx/ot1ntxtlf.fd + RELOC/tex/latex/newtx/ot1ntxtosf.fd + RELOC/tex/latex/newtx/ot1ntxtt.fd + RELOC/tex/latex/newtx/t1fxl1.fd + RELOC/tex/latex/newtx/t1minlibertine.fd + RELOC/tex/latex/newtx/t1ntxdenoms.fd + RELOC/tex/latex/newtx/t1ntxlf.fd + RELOC/tex/latex/newtx/t1ntxosf.fd + RELOC/tex/latex/newtx/t1ntxsups.fd + RELOC/tex/latex/newtx/t1ntxtlf.fd + RELOC/tex/latex/newtx/t1ntxtosf.fd + RELOC/tex/latex/newtx/t1ntxtt.fd + RELOC/tex/latex/newtx/ts1ntxlf.fd + RELOC/tex/latex/newtx/ts1ntxosf.fd + RELOC/tex/latex/newtx/ts1ntxtlf.fd + RELOC/tex/latex/newtx/ts1ntxtosf.fd + RELOC/tex/latex/newtx/ts1ntxtt.fd + RELOC/tex/latex/newtx/untxebgmia.fd + RELOC/tex/latex/newtx/untxexa.fd + RELOC/tex/latex/newtx/untxmia.fd + RELOC/tex/latex/newtx/untxsyc.fd + RELOC/tex/latex/newtx/untxsym.fd + RELOC/tex/latex/newtx/untxtt.fd + RELOC/tex/latex/newtx/uzmnmia.fd +catalogue-also minion2newtx +catalogue-ctan /fonts/newtx +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.642 + +name newtxsf +category Package +revision 56527 +shortdesc Sans-math fonts for use with newtx +relocated 1 +longdesc The package provides a maths support that amounts to +longdesc modifications of the STIX sans serif Roman and Greek letters +longdesc with most symbols taken from newtxmath (which must of course be +longdesc installed and its map file enabled). +execute addMap newtxsf.map +containersize 105904 +containerchecksum 14fdd049243799447b0ba9380cfae1dbe58496e67d30cb7bb3a82c685f449c6f3070e1bce674ac173a9397ebb1a1d40d1dc8db05f04174908dd157e919e7c7aa +doccontainersize 332352 +doccontainerchecksum bf4ac517cb79ef6b1e541b2a3eb8b5ebdbfb5e3638234438453f79ce0bb1d87f815d20c761dccf2822e581222cca0439c189e02b307d8c0044fd194aa1d2016d +docfiles size=93 + RELOC/doc/fonts/newtxsf/OFL-FAQ.txt + RELOC/doc/fonts/newtxsf/OFL.txt + RELOC/doc/fonts/newtxsf/README details="Readme" + RELOC/doc/fonts/newtxsf/newtxsf-doc.pdf details="Package documentation" + RELOC/doc/fonts/newtxsf/newtxsf-doc.tex +runfiles size=62 + RELOC/fonts/map/dvips/newtxsf/newtxsf.map + RELOC/fonts/tfm/public/newtxsf/ntxsfbmi.tfm + RELOC/fonts/tfm/public/newtxsf/ntxsfbmia.tfm + RELOC/fonts/tfm/public/newtxsf/ntxsfmi.tfm + RELOC/fonts/tfm/public/newtxsf/ntxsfmia.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmi-bol.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmi-reg.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmia-bol.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmia-reg.tfm + RELOC/fonts/type1/public/newtxsf/zsfmi-bol.pfb + RELOC/fonts/type1/public/newtxsf/zsfmi-reg.pfb + RELOC/fonts/type1/public/newtxsf/zsfmia-bol.pfb + RELOC/fonts/type1/public/newtxsf/zsfmia-reg.pfb + RELOC/fonts/vf/public/newtxsf/ntxsfbmi.vf + RELOC/fonts/vf/public/newtxsf/ntxsfbmia.vf + RELOC/fonts/vf/public/newtxsf/ntxsfmi.vf + RELOC/fonts/vf/public/newtxsf/ntxsfmia.vf + RELOC/tex/latex/newtxsf/newtxsf.sty + RELOC/tex/latex/newtxsf/omlntxsfmi.fd + RELOC/tex/latex/newtxsf/untxsfmia.fd +catalogue-also newtx stix +catalogue-ctan /fonts/newtxsf +catalogue-license ofl +catalogue-topics font font-sans font-maths font-type1 +catalogue-version 1.053 + +name newtxtt +category Package +revision 54512 +shortdesc Enhancement of typewriter fonts from newtx +relocated 1 +longdesc The package provides enhanced fonts with LaTeX support files +longdesc providing access to the typewriter fonts from newtx. Regular +longdesc and bold weights, slanted variants and a choice of four +longdesc different styles for zero. +execute addMap newtxtt.map +containersize 116976 +containerchecksum 8d453dd25a50384aa0ffc620448a7c1ecff58b51b2cefd0ee2a3ea98ef274ffe1a11e6e26ccabc1d218d4a3f69da4cb254b3e9c6ee9fa99ac32d8714c15a9164 +doccontainersize 171356 +doccontainerchecksum 0a29f11edadeec4284ac9c9c04230a925517b198eb3653a456ab68bf495a9dd0b846cea4c3e1a425539f0b834d37f8f9a7f20e5945e8c8efea7ab4bb9342f6fd +docfiles size=45 + RELOC/doc/fonts/newtxtt/README details="Readme" + RELOC/doc/fonts/newtxtt/newtxtt-doc.pdf details="Package documentation" + RELOC/doc/fonts/newtxtt/newtxtt-doc.tex +runfiles size=204 + RELOC/fonts/enc/dvips/newtxtt/txttAec.enc + RELOC/fonts/enc/dvips/newtxtt/txttAqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttBec.enc + RELOC/fonts/enc/dvips/newtxtt/txttBqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttCec.enc + RELOC/fonts/enc/dvips/newtxtt/txttCqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttDec.enc + RELOC/fonts/enc/dvips/newtxtt/txttDqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttEec.enc + RELOC/fonts/enc/dvips/newtxtt/txttEqec.enc + RELOC/fonts/map/dvips/newtxtt/newtxtt.map + RELOC/fonts/tfm/public/newtxtt/newtxbtta.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbtte.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbtteq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsleq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttza.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttze.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzeq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsleq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxtta.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxtte.tfm + RELOC/fonts/tfm/public/newtxtt/newtxtteq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsleq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttza.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttze.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzeq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsleq.tfm + RELOC/fonts/tfm/public/newtxtt/tcxbttz.tfm + RELOC/fonts/tfm/public/newtxtt/tcxbttzsl.tfm + RELOC/fonts/tfm/public/newtxtt/tcxttz.tfm + RELOC/fonts/tfm/public/newtxtt/tcxttzsl.tfm + RELOC/fonts/type1/public/newtxtt/newtxbtt.pfb + RELOC/fonts/type1/public/newtxtt/newtxbttsc.pfb + RELOC/fonts/type1/public/newtxtt/newtxtt.pfb + RELOC/fonts/type1/public/newtxtt/newtxttsc.pfb + RELOC/tex/latex/newtxtt/newtxtt.sty + RELOC/tex/latex/newtxtt/t1newtxtt.fd + RELOC/tex/latex/newtxtt/t1newtxttz.fd + RELOC/tex/latex/newtxtt/ts1newtxtt.fd + RELOC/tex/latex/newtxtt/ts1newtxttz.fd +catalogue-ctan /fonts/newtxtt +catalogue-license gpl3 lppl +catalogue-topics font font-type1 font-mono font-supp font-t1enc +catalogue-version 1.056 + +name newunicodechar +category Package +revision 47382 +shortdesc Definitions of the meaning of Unicode characters +relocated 1 +longdesc The package provides a friendly interface for defining the +longdesc meaning of Unicode characters. The document should be processed +longdesc by (pdf)LaTeX with the unicode option of inputenc or inputenx, +longdesc or by XeLaTeX/LuaLaTeX. The command provided is +longdesc \newunicodechar{<char>}{<code>} where <char> is a +longdesc directly-typed Unicode character, and <code> is its +longdesc replacement. +containersize 2116 +containerchecksum 8e1748abc585f51033a857db126c4b18f0c42e015d7193f8bc7b69493fb13a218db38da97f3a6733df01dbc247093beb544651a050c5a690f3cd5479c4ad9e6a +doccontainersize 389624 +doccontainerchecksum 9ec3bdc81587e8b2553dd4ff45ca4ba0bb504ded0726aa44d1e88423cdf425124334d04ebfbdbbe57b576b0fa52cfe1771c97308f146ea19d89d41eb4475eb9e +docfiles size=96 + RELOC/doc/latex/newunicodechar/README details="Readme" + RELOC/doc/latex/newunicodechar/newunicodechar.pdf details="Package documentation" +srccontainersize 6964 +srccontainerchecksum 0464584e516c8f5d9c7ab4db114fbe3ea9e07d33c1544109ebd0d3b25e4e3ddac222dd69b6a8222e290ae2b6a7d7166a76b54ff9fbe7ffd5225368986e2af6d4 +srcfiles size=6 + RELOC/source/latex/newunicodechar/newunicodechar.dtx + RELOC/source/latex/newunicodechar/newunicodechar.ins +runfiles size=2 + RELOC/tex/latex/newunicodechar/newunicodechar.sty +catalogue-ctan /macros/latex/contrib/newunicodechar +catalogue-license lppl1.3c +catalogue-topics inputenc unicode +catalogue-version 1.2 + +name newvbtm +category Package +revision 23996 +shortdesc Define your own verbatim-like environment +relocated 1 +longdesc Defines general purpose macro named \newverbatim to define your +longdesc own verbatim-like environment. It also has a supplementary +longdesc style file varvbtm.sty to provide set of macros for variants of +longdesc verbatim, such as tab emulation. +containersize 3396 +containerchecksum 029829b1da07d7e2fcc5950c32021707058f3d7228f6ff82404aeb962663277ed107934f04a93e7f43bd7b67f7034821437f3a8116f21028b7c9a154449ea53e +doccontainersize 69108 +doccontainerchecksum dda7ae47bb076f03cba83438c573405f1c67e5407d83fa0894e9575952c284010b62f62720022ffb7a8e723e829610d1e8ff6a8b5098c92207e8ab8755dcb409 +docfiles size=23 + RELOC/doc/latex/newvbtm/README details="Readme" + RELOC/doc/latex/newvbtm/newvbtm-man.pdf details="Package manual" + RELOC/doc/latex/newvbtm/newvbtm-man.tex +srccontainersize 13024 +srccontainerchecksum 8d58e55977d708c8e3fd9ea6394494f68ccb21712703b2302355234d12355c23de97cb392d7ceda95bc078ddb2cbdd2030461b5b4069805d4ba01b5e3a8b8f59 +srcfiles size=13 + RELOC/source/latex/newvbtm/newvbtm.dtx + RELOC/source/latex/newvbtm/newvbtm.ins +runfiles size=3 + RELOC/tex/latex/newvbtm/newvbtm.sty + RELOC/tex/latex/newvbtm/varvbtm.sty +catalogue-ctan /macros/latex/contrib/newvbtm +catalogue-license lppl +catalogue-topics verbatim listing +catalogue-version 1.1 + +name newverbs +category Package +revision 58256 +shortdesc Define new versions of \verb, including short verb versions +relocated 1 +longdesc The package allows the definition of \verb variants which add +longdesc TeX code before and after the verbatim text (e.g., quotes or +longdesc surrounding \fbox{}). When used together with the shortvrb +longdesc package it allows the definition of short verbatim characters +longdesc which use this package's variant instead of the normal \verb. +longdesc In addition, it is possible to collect an argument verbatim to +longdesc either typeset or write it into a file. The \Verbdef command +longdesc defines verbatim text to a macro which can later be used to +longdesc write the verbatim text to a file. +containersize 2844 +containerchecksum 146e0d503ff458d22e002f11b9ec89bf17595ff758c0b0a1644f340ece93553b86fa46e8aae590e4973603a441634f86666a4926e1c828523a28969585546dea +doccontainersize 221216 +doccontainerchecksum 950a4763975bfde9c28101e90f26e590d00889e67ae78e0d04d027bd9c5ec050c2d24c99e4c1ebb13f06b5a75c7ec16ed24d30c1d95ee5c121feff063268cd49 +docfiles size=56 + RELOC/doc/latex/newverbs/README details="Readme" + RELOC/doc/latex/newverbs/newverbs.pdf details="Package documentation" +srccontainersize 7484 +srccontainerchecksum aaaba6fee806ca1f85cc0ea822db6cf8ff508f0fd27fc7b9de2ced527df5c1464f30a049cdcb5bee1ce66c619997dda1253c9b6030c99572968f5480f7306cb2 +srcfiles size=9 + RELOC/source/latex/newverbs/newverbs.dtx + RELOC/source/latex/newverbs/newverbs.ins +runfiles size=2 + RELOC/tex/latex/newverbs/newverbs.sty +catalogue-also shortvrb +catalogue-contact-bugs https://sourceforge.net/p/newverbs/tickets/ +catalogue-contact-home https://sourceforge.net/p/newverbs/ +catalogue-contact-repository https://sourceforge.net/p/newverbs/code/ +catalogue-ctan /macros/latex/contrib/newverbs +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 1.6 + +name nextpage +category Package +revision 15878 +shortdesc Generalisations of the page advance commands +relocated 1 +longdesc Provides \clearpage and \newpage variants that guarantee to end +longdesc up on even/odd numbered pages; these 4 commands all have an +longdesc optional argument whose content will be placed on any "empty" +longdesc page generated. +containersize 1172 +containerchecksum fca0aec60c5c7277dcadb0f86d757617484d700575fae13df8b386775e153ea89c52935ffdb2448c52e351593b396fdf3394f5b97e23a0d2d40dac339e584f59 +runfiles size=1 + RELOC/tex/latex/nextpage/nextpage.sty +catalogue-ctan /macros/latex/contrib/misc/nextpage.sty +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.1a + +name nfssext-cfr +category Package +revision 43640 +shortdesc Extensions to the LaTeX NFSS +relocated 1 +longdesc The package is a development of nfssext.sty, distributed with +longdesc the examples for the font installation guide. The package has +longdesc been developed for use in packages such as cfr-lm and +longdesc venturisadf, +containersize 5276 +containerchecksum 5083d4ff4168b857a7391855ce02ea354cb17a26242a3e3b2693d6bbb35f722f750299669a37afbb99a52180433d697fbf65a6fb6afd6bd58d4b16c63e5b0d67 +doccontainersize 184888 +doccontainerchecksum 28b2aff47d74de3a42c441dafc156297904b5db20d267f1af07d1e3210e7f9959474b3cec387be7d9b20dc04560b4100a0d9da6979ab8ad2a7cd1e4518cec278 +docfiles size=49 + RELOC/doc/latex/nfssext-cfr/README details="Readme" + RELOC/doc/latex/nfssext-cfr/nfssext-cfr.pdf details="Package documentation" + RELOC/doc/latex/nfssext-cfr/nfssext-cfr.tex +runfiles size=6 + RELOC/tex/latex/nfssext-cfr/nfssext-cfr.sty +catalogue-ctan /macros/latex/contrib/nfssext-cfr +catalogue-license lppl1.3 +catalogue-topics font-sel + +name nicefilelist +category Package +revision 28527 +shortdesc Provide \listfiles alignment +relocated 1 +longdesc The package extends longnamefilelist, keeping separate columns +longdesc for date, version and "caption" (the caption now separately +longdesc listed). Alignment is not disturbed by short file name +longdesc extensions, such as ".fd". The package is not compatible with +longdesc longnamefilelist: users need to re-read the documentation. +containersize 6364 +containerchecksum 4e3e1b651a5f3828c1806ee199ddff3a022f27381da241f2d9400cc3943d9aa29e0dd56bd10d7fab60da1901f221cb54c74823b35f163ace0efbd3217b767ca3 +doccontainersize 598780 +doccontainerchecksum 5c909c6dce453a7a73abd63896c0916db3f609b7d4283b70af33bfc31ec44e7aa5b3dc2e8d1ef6fb3d33605d23e079db4e7cadf4fa13197823ca3c177b82f527 +docfiles size=161 + RELOC/doc/latex/nicefilelist/README details="Readme" + RELOC/doc/latex/nicefilelist/SrcFILEs.txt + RELOC/doc/latex/nicefilelist/nicefilelist.pdf details="Package documentation" +srccontainersize 7160 +srccontainerchecksum b7915ca4c8a24ae84b1caea7bbdd395f5c12305a81f193f35ab4bfe91a12a21417e41b5d46b6ca72c69357782a1e6e4a8366e0bad85a9c453759ea6bd1ee4874 +srcfiles size=8 + RELOC/source/latex/nicefilelist/empty.f + RELOC/source/latex/nicefilelist/nicefilelist.tex + RELOC/source/latex/nicefilelist/provonly.fd + RELOC/source/latex/nicefilelist/srcfiles.tex + RELOC/source/latex/nicefilelist/wrong.prv +runfiles size=5 + RELOC/tex/latex/nicefilelist/nicefilelist.RLS + 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-license lppl1.3 +catalogue-topics doc-mgmt +catalogue-version 0.7a + +name niceframe +category Package +revision 36086 +shortdesc Support for fancy frames +relocated 1 +longdesc The package defines means of drawing frames around boxes, using +longdesc dingbat fonts. Some (Metafont) font sources are included; the +longdesc fonts are available separately in Type 1 format. +containersize 34512 +containerchecksum 539d4a6f3a192188064fafd94366ad2f8a9146175d9e04b08cd83d1386bccc730a0e3be4a9fd45e4f47152f10710191b063138ba504fca95e4226fc179f70a29 +doccontainersize 225404 +doccontainerchecksum aaf777520d300b5e8c9a17c2dfb5b12406f5e6926b17c4244feaa8d6c5bc28d87277f23fd814304a7efb91dab8a42e1ed88f6568b96f13f30c831e81201ff4f7 +docfiles size=65 + RELOC/doc/latex/niceframe/dingbat.mf + RELOC/doc/latex/niceframe/example.tex + RELOC/doc/latex/niceframe/niceframe.pdf details="Package documentation" +srccontainersize 7064 +srccontainerchecksum fb0106ee32e36d34767c6200be1d2415e11c275e5540dbd54777a6876474424f1c82ba52bcc0fd76da9ecf3b37671d37c762834b3e6ef714028c1917dee45235 +srcfiles size=7 + RELOC/source/latex/niceframe/niceframe.drv + RELOC/source/latex/niceframe/niceframe.dtx + RELOC/source/latex/niceframe/niceframe.ins +runfiles size=58 + RELOC/fonts/source/public/niceframe/karta.mf + RELOC/fonts/source/public/niceframe/karta15.mf + RELOC/fonts/source/public/niceframe/umrand.mf + RELOC/fonts/source/public/niceframe/umranda.mf + RELOC/fonts/source/public/niceframe/umrandb.mf + RELOC/fonts/tfm/public/niceframe/karta15.tfm + RELOC/fonts/tfm/public/niceframe/umranda.tfm + RELOC/fonts/tfm/public/niceframe/umrandb.tfm + RELOC/tex/latex/niceframe/niceframe.sty +catalogue-also umrand +catalogue-ctan /macros/latex/contrib/niceframe +catalogue-license lppl +catalogue-topics decoration font font-mf +catalogue-version 1.1c + +name niceframe-type1 +category Package +revision 44671 +shortdesc Type 1 versions of the fonts recommended in niceframe +relocated 1 +longdesc The bundle provides Adobe Type 1 versions of the fonts +longdesc bbding10, dingbat, karta15, umranda and umrandb. +execute addMap niceframe.map +containersize 276328 +containerchecksum c99757f9907622958267f042f0ee0aec8dc6317839fba05309116f9151e476e37f24dde00e6de59fb0204beb9383eae039c0fabb089d6349d6f6031e8df196f0 +doccontainersize 604 +doccontainerchecksum 5ab28cf7091ba993d7b4ac9f5caf2d563c60e63a3ce8975bae105f460e2dadbc963efd17b7ec5ddeeb8a35bea1b05a007590d3f6f9d5cf5dba0495e5b0ee8ad8 +docfiles size=2 + RELOC/doc/fonts/niceframe-type1/README.md details="Readme" + RELOC/doc/fonts/niceframe-type1/config.niceframe +runfiles size=84 + RELOC/fonts/afm/public/niceframe-type1/bbding10.afm + RELOC/fonts/afm/public/niceframe-type1/dingbat.afm + RELOC/fonts/afm/public/niceframe-type1/karta15.afm + RELOC/fonts/afm/public/niceframe-type1/umranda.afm + RELOC/fonts/afm/public/niceframe-type1/umrandb.afm + RELOC/fonts/map/dvips/niceframe-type1/niceframe.map + RELOC/fonts/type1/public/niceframe-type1/bbding10.pfb + RELOC/fonts/type1/public/niceframe-type1/dingbat.pfb + RELOC/fonts/type1/public/niceframe-type1/karta15.pfb + RELOC/fonts/type1/public/niceframe-type1/umranda.pfb + RELOC/fonts/type1/public/niceframe-type1/umrandb.pfb +catalogue-ctan /fonts/niceframe +catalogue-license lppl +catalogue-topics font font-type1 font-decor + +name nicematrix +category Package +revision 58987 +shortdesc Improve the typesetting of mathematical matrices with PGF +relocated 1 +longdesc This package is based on the package array. It creates PGF/TikZ +longdesc nodes under the cells of the array and uses these nodes to +longdesc provide functionalities to construct tabulars, arrays and +longdesc matrices. Among the features : continuous dotted lines for the +longdesc mathematical matrices; exterior rows and columns (so-called +longdesc border matrices); control of the width of the columns; tools to +longdesc color rows and columns with a good PDF result; blocks of cells; +longdesc etc. The package requires and loads l3keys2e, xparse, array, +longdesc amsmath, pgfcore, and the module shapes of PGF. +containersize 28844 +containerchecksum acb3bea7fbf5c5693549dd5556addfe5695e3eda66d6d9db7de4fb41fd91f341a1ff8e61322ec30a4c3a726c602314502972f7d5223f71be556798fa2d86047c +doccontainersize 1668768 +doccontainerchecksum 30b06ba14cb06e828858bb74f31b454a802ef21968cb9d887687fe9f294f6a562184fbe124cb936584b7ca76481fb8828fde796af0da117d88f6edefb63dbdc1 +docfiles size=457 + RELOC/doc/latex/nicematrix/README.md details="Readme" + RELOC/doc/latex/nicematrix/nicematrix-french.pdf details="Package documentation in French" language="fr" + RELOC/doc/latex/nicematrix/nicematrix-french.tex + RELOC/doc/latex/nicematrix/nicematrix.pdf details="Package documentation" +srccontainersize 98308 +srccontainerchecksum 68da52316a3494a9dd613f8e673e23c3c633576470d475637eb4db7d29ffebb604afe966ca9fc0ca89655621f815168070667ca0345a7d31b9bddbfff3d97e4f +srcfiles size=149 + RELOC/source/latex/nicematrix/nicematrix.dtx + RELOC/source/latex/nicematrix/nicematrix.ins +runfiles size=63 + RELOC/tex/latex/nicematrix/nicematrix.sty +catalogue-ctan /macros/latex/contrib/nicematrix +catalogue-license lppl1.3 +catalogue-topics maths matrix pgf-tikz expl3 +catalogue-version 5.15 + +name nicetext +category Package +revision 38914 +shortdesc Minimal markup for simple text (Wikipedia style) and documentation +relocated 1 +longdesc The bundle offers "minimal" markup syntax for various simple +longdesc kinds of text. The user will typically involve little more than +longdesc is printed, and will still get LaTeX quality. The bundle +longdesc provides four packages: wiki addresses general texts, marked up +longdesc in the simple style used on Wikipedia; niceverb is yet another +longdesc means of documenting LaTeX packages: it offers syntax-aware +longdesc typesetting of meta-variables (macro arguments) and for +longdesc referring to commands (and their syntax) in footnotes, section +longdesc titles etc.; fifinddo aims to parse plain text or (La)TeX files +longdesc using TeX, and to write the results to an external file; the +longdesc package is used by another member of the bundle: makedoc, which +longdesc provides the means to produce typeset documentation direct from +longdesc package files. +containersize 54740 +containerchecksum 04a555a82287a39249cf6b0e18d890329098a1d0d6957fe9a1c535024b63a5f50b6487dc1fe4fd69d87908abd385b0366474ebe3af0b31f41f6a35c519a6ba9c +doccontainersize 2473836 +doccontainerchecksum 96cd1694ae0cb116bb4620f7cdc1f9e24385886c78cf87466cd329c5ca0d78111005ff89e9be50f07078eaedb69c4f3d495b1fc5063a1a69e483b86a6c8534b1 +docfiles size=697 + RELOC/doc/latex/nicetext/ANNOUNCE.txt + RELOC/doc/latex/nicetext/CHANGE.LOG + RELOC/doc/latex/nicetext/FILEs.txt + RELOC/doc/latex/nicetext/README details="Readme" + RELOC/doc/latex/nicetext/README.pdf + RELOC/doc/latex/nicetext/RELEAS03.txt + RELOC/doc/latex/nicetext/RELEAS04.txt + RELOC/doc/latex/nicetext/RELEAS05.txt + RELOC/doc/latex/nicetext/RELEASE042.txt + RELOC/doc/latex/nicetext/RELEASE043.txt + RELOC/doc/latex/nicetext/RELEASE044.txt + RELOC/doc/latex/nicetext/RELEASE051.txt + RELOC/doc/latex/nicetext/RELEASE064.txt + RELOC/doc/latex/nicetext/RELEASE066.txt + RELOC/doc/latex/nicetext/SrcFILEs.txt + RELOC/doc/latex/nicetext/demo/arseneau.pdf + RELOC/doc/latex/nicetext/demo/iso.txt + RELOC/doc/latex/nicetext/demo/lns.txt + RELOC/doc/latex/nicetext/demo/sample.tex + RELOC/doc/latex/nicetext/demo/substr.pdf + RELOC/doc/latex/nicetext/fifinddo.pdf details="Fifinddo documentation" + RELOC/doc/latex/nicetext/makedoc.pdf details="Makedoc documentation" + RELOC/doc/latex/nicetext/mdoccheat.pdf details="Cheat sheet for the makedoc package" + RELOC/doc/latex/nicetext/niceverb.pdf details="Niceverb documentation" + RELOC/doc/latex/nicetext/wikicheat.pdf details="Cheatsheet for the wiki package" +srccontainersize 28908 +srccontainerchecksum d7c556fb2fc34e7eca9038667842825053ac03478e32a6a58cdda2209b33ece494071e47d54bb24f7c085f90b45375bb5db7781db642bd9f8cf661853d077f60 +srcfiles size=27 + RELOC/source/latex/nicetext/README.tex + RELOC/source/latex/nicetext/fifinddo.tex + RELOC/source/latex/nicetext/makedoc.tex + RELOC/source/latex/nicetext/mdoccheat.tex + RELOC/source/latex/nicetext/niceverb.tex + RELOC/source/latex/nicetext/srcfiles.tex + RELOC/source/latex/nicetext/updsfl.sh + RELOC/source/latex/nicetext/wikicheat.tex +runfiles size=62 + RELOC/tex/latex/nicetext/fifinddo.sty + RELOC/tex/latex/nicetext/makedoc.cfg + RELOC/tex/latex/nicetext/makedoc.sty + RELOC/tex/latex/nicetext/mdoccorr.cfg + RELOC/tex/latex/nicetext/nicetext.RLS + RELOC/tex/latex/nicetext/niceverb.sty + RELOC/tex/latex/nicetext/run/README-run.txt + RELOC/tex/latex/nicetext/run/arseneau.tex + RELOC/tex/latex/nicetext/run/atari.cfg + RELOC/tex/latex/nicetext/run/atari.txt + RELOC/tex/latex/nicetext/run/copyfile.cfg + RELOC/tex/latex/nicetext/run/copyfile.tex + RELOC/tex/latex/nicetext/run/fddial0g.sty + RELOC/tex/latex/nicetext/run/fdtxttex.cfg + RELOC/tex/latex/nicetext/run/fdtxttex.tex + RELOC/tex/latex/nicetext/run/fdtxttex.tpl + RELOC/tex/latex/nicetext/run/lines.txt + RELOC/tex/latex/nicetext/run/makedoc.tpl + RELOC/tex/latex/nicetext/run/sample.txt + RELOC/tex/latex/nicetext/run/substr.tex + RELOC/tex/latex/nicetext/run/u8atablg.fdf + RELOC/tex/latex/nicetext/wiki.sty +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-license lppl1.3 +catalogue-topics markup +catalogue-version r0.67 + +name nidanfloat +category Package +revision 48295 +shortdesc Bottom placement option for double float in two column mode (nidan-kumi) +relocated 1 +longdesc This package enables a bottom placement option for double +longdesc floats in two column mode (nidan-kumi). It was originally part +longdesc of the Japanese pLaTeX bundle and is now distributed as a +longdesc separate package because it supports all LaTeX formats. +containersize 4172 +containerchecksum 42ef65277deaf474a619e5ffd570309db8c8349f32e9bcfdf216251e81136a3da87a745b3dcea5212f636396179210c6acaa96a957ffd9588d1f414d6a59bded +doccontainersize 225904 +doccontainerchecksum 2be76c8e243de71698ae5264a8e3af4da8dcfcd130b0554d1547a0a238e55ee71ec57d8757648b162a6ebd17ce1047206979cf139003a02921a4308a852f0030 +docfiles size=59 + RELOC/doc/latex/nidanfloat/LICENSE + RELOC/doc/latex/nidanfloat/README.md details="Readme" + RELOC/doc/latex/nidanfloat/nidanfloat-en.pdf + RELOC/doc/latex/nidanfloat/nidanfloat.pdf details="Package documentation (Japanese)" language="ja" +srccontainersize 12840 +srccontainerchecksum 8a778b33036445dbe375af746244433470e5d10a963ebbfbc397c0376d5c4f7c23cdbc2ff3ff6455e274e83b465a64d8bac5023e8537d5b949fff038098d862e +srcfiles size=15 + RELOC/source/latex/nidanfloat/Makefile + RELOC/source/latex/nidanfloat/nidanfloat.dtx + RELOC/source/latex/nidanfloat/nidanfloat.ins +runfiles size=5 + RELOC/tex/latex/nidanfloat/nidanfloat.sty +catalogue-contact-repository https://github.com/texjporg/nidanfloat +catalogue-ctan /macros/latex/contrib/nidanfloat +catalogue-license bsd3 +catalogue-topics float japanese + +name nih +category Package +revision 15878 +shortdesc A class for NIH grant applications +relocated 1 +longdesc The nih class offers support for grant applications to NIH, the +longdesc National Institutes of Health, a US government agency. The +longdesc example-* files provide a template for using nih.cls and +longdesc submitting the biographical sketches the NIH wants. They +longdesc (potentially) use denselists package, which just reduces list +longdesc spacing; the package is distributed with the class, but is not +longdesc part of the class proper. (The examples may be distributed +longdesc without even the restrictions of the LaTeX licence.) +containersize 2728 +containerchecksum 5f016d57b1b55c698a902c7a85a652fdcd40062b409a14e38c1356b9030129b46631929e49c6fa70db7ed499043a75060c97919f15876ac7a647d31c2f0bf729 +doccontainersize 32224 +doccontainerchecksum 1c209615f0745ed0ae4d2f4c55cf9447ec4711e9345ca3db778fbf45ccca76792039e6a7e51f2e7286034ae229b5c696ba7deee5bb8c224dbf95a4cccca650f2 +docfiles size=17 + RELOC/doc/latex/nih/README + RELOC/doc/latex/nih/example-biosketch.pdf details="Example -- an NIH biographical sketch" + RELOC/doc/latex/nih/example-biosketch.tex + RELOC/doc/latex/nih/example-nih-cls.pdf details="Example -- the class in normal use" + RELOC/doc/latex/nih/example-nih-cls.tex +runfiles size=3 + RELOC/tex/latex/nih/denselists.sty + RELOC/tex/latex/nih/nih.cls +catalogue-contact-home http://www.cs.duke.edu/brd/NIH/tips/ +catalogue-ctan /macros/latex/contrib/nih +catalogue-license lppl +catalogue-topics proposal + +name nihbiosketch +category Package +revision 54191 +shortdesc A class for NIH biosketches based on the 2015 updated format +relocated 1 +longdesc This LaTeX document class tries to adhere to the Biographical +longdesc Sketch formatting requirements outlined in NIH Notice +longdesc [NOT-OD-15-032] +longdesc (grants.nih.gov/grants/guide/notice-files/NOT-OD-15-032.html). +longdesc This new format is required for applications submitted for due +longdesc dates on or after May 25, 2015. The package tries to mimic the +longdesc example documents provided on the [SF 424 (R&R) Forms and +longdesc Applications page] +longdesc (grants.nih.gov/grants/funding/424/index.htm#format) as closely +longdesc as possible. The author has used this class for his own grant +longdesc submissions; however he offers no guarantee of conformity to +longdesc NIH requirements. +containersize 2404 +containerchecksum ce64ef60a007e8a955dd48f9f9f748a738aa57829116f060b3fe353308244db0a2c1d56d139e2b1cc1a6ee4f243eb7ea2339a2c927966d7418e6b553600b9e53 +doccontainersize 71944 +doccontainerchecksum 4315c32e1ba43339b609c272fab7aa0b18c44b2c323f43cc303210f37c44c5a08d0dfcbf62e450bdd9ce899d69afd5eceafad91074fec73ac9bcc1e5c8c8540e +docfiles size=22 + RELOC/doc/latex/nihbiosketch/LICENSE.md + RELOC/doc/latex/nihbiosketch/README.md details="Readme" + RELOC/doc/latex/nihbiosketch/example-nihbiosketch.pdf + RELOC/doc/latex/nihbiosketch/example-nihbiosketch.tex +runfiles size=2 + RELOC/tex/latex/nihbiosketch/nihbiosketch.cls +catalogue-also nih +catalogue-ctan /macros/latex/contrib/nihbiosketch +catalogue-license lppl1.3 +catalogue-topics cv + +name nimbus15 +category Package +revision 58839 +shortdesc Support files for Nimbus 2015 Core fonts +relocated 1 +longdesc The Nimbus 2015 Core fonts added Greek and Cyrillic glyphs. +longdesc This package may be best suited as an add-on to the +longdesc comprehensive Times package, providing support for Greek and +longdesc Cyrillic. A new intermediate weight of NimbusMono (AKA Courier) +longdesc is provided, along with a narrower version which may be useful +longdesc for rendering code. +depend fontools +execute addMap nimbus15.map +containersize 3815932 +containerchecksum 9e39f92dea1fa293d6249d16877dd6b2d990d1d48cfd31f4ac1d66233b97ff178d2b70f428978a084fc9a50b9dd994adb6a8ad29375e54f5d5ccf6ca7ed62f64 +doccontainersize 725056 +doccontainerchecksum 8fb9ece6ca17549572a0d79a541397c6545dc01ac0422a5270314bba1cb83b1451fb0f56e34f449cc3d3de326e063e4ea1f2ea03a0fbda7342e9d0a101fb5ed1 +docfiles size=205 + RELOC/doc/fonts/nimbus15/COPYING + RELOC/doc/fonts/nimbus15/LICENSE + RELOC/doc/fonts/nimbus15/README details="Readme" + RELOC/doc/fonts/nimbus15/nimbus15-doc.pdf details="Package documentation" + RELOC/doc/fonts/nimbus15/nimbus15-doc.tex + RELOC/doc/fonts/nimbus15/ot2trans.pdf +runfiles size=2049 + RELOC/fonts/afm/public/nimbus15/zco-Bold.afm + RELOC/fonts/afm/public/nimbus15/zco-BoldOblique.afm + RELOC/fonts/afm/public/nimbus15/zco-Light.afm + RELOC/fonts/afm/public/nimbus15/zco-LightOblique.afm + RELOC/fonts/afm/public/nimbus15/zco-Oblique.afm + RELOC/fonts/afm/public/nimbus15/zco-Regular.afm + RELOC/fonts/afm/public/nimbus15/zcoN-Oblique.afm + RELOC/fonts/afm/public/nimbus15/zcoN-Regular.afm + RELOC/fonts/afm/public/nimbus15/zhv-Bol.afm + RELOC/fonts/afm/public/nimbus15/zhv-BolIta.afm + RELOC/fonts/afm/public/nimbus15/zhv-Reg.afm + RELOC/fonts/afm/public/nimbus15/zhv-RegIta.afm + RELOC/fonts/afm/public/nimbus15/ztm-Med.afm + RELOC/fonts/afm/public/nimbus15/ztm-MedIta.afm + RELOC/fonts/afm/public/nimbus15/ztm-MedObl.afm + RELOC/fonts/afm/public/nimbus15/ztm-Reg.afm + RELOC/fonts/afm/public/nimbus15/ztm-RegIta.afm + RELOC/fonts/afm/public/nimbus15/ztm-RegObl.afm + RELOC/fonts/enc/dvips/nimbus15/nimbus15-ec.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-lgr.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-ot1.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-ot2.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-t2a.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-t2b.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-t2c.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-x2.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-ec.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-lgr.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-ot1.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-ot2.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-t2a.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-t2b.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-t2c.enc + RELOC/fonts/map/dvips/nimbus15/nimbus15.map + RELOC/fonts/opentype/public/nimbus15/zco-Bold.otf + RELOC/fonts/opentype/public/nimbus15/zco-BoldOblique.otf + RELOC/fonts/opentype/public/nimbus15/zco-Light.otf + RELOC/fonts/opentype/public/nimbus15/zco-LightOblique.otf + RELOC/fonts/opentype/public/nimbus15/zco-Oblique.otf + RELOC/fonts/opentype/public/nimbus15/zco-Regular.otf + RELOC/fonts/opentype/public/nimbus15/zcoN-Oblique.otf + RELOC/fonts/opentype/public/nimbus15/zcoN-Regular.otf + RELOC/fonts/opentype/public/nimbus15/zhv-Bol.otf + RELOC/fonts/opentype/public/nimbus15/zhv-BolIta.otf + RELOC/fonts/opentype/public/nimbus15/zhv-Reg.otf + RELOC/fonts/opentype/public/nimbus15/zhv-RegIta.otf + RELOC/fonts/opentype/public/nimbus15/ztm-Med.otf + RELOC/fonts/opentype/public/nimbus15/ztm-MedIta.otf + RELOC/fonts/opentype/public/nimbus15/ztm-MedObl.otf + RELOC/fonts/opentype/public/nimbus15/ztm-Reg.otf + RELOC/fonts/opentype/public/nimbus15/ztm-RegIta.otf + RELOC/fonts/opentype/public/nimbus15/ztm-RegObl.otf + RELOC/fonts/tfm/public/nimbus15/zco-Bold-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ts1.tfm + RELOC/fonts/type1/public/nimbus15/zco-Bold.pfb + RELOC/fonts/type1/public/nimbus15/zco-BoldOblique.pfb + RELOC/fonts/type1/public/nimbus15/zco-Light.pfb + RELOC/fonts/type1/public/nimbus15/zco-LightOblique.pfb + RELOC/fonts/type1/public/nimbus15/zco-Oblique.pfb + RELOC/fonts/type1/public/nimbus15/zco-Regular.pfb + RELOC/fonts/type1/public/nimbus15/zcoN-Oblique.pfb + RELOC/fonts/type1/public/nimbus15/zcoN-Regular.pfb + RELOC/fonts/type1/public/nimbus15/zhv-Bol.pfb + RELOC/fonts/type1/public/nimbus15/zhv-BolIta.pfb + RELOC/fonts/type1/public/nimbus15/zhv-Reg.pfb + RELOC/fonts/type1/public/nimbus15/zhv-RegIta.pfb + RELOC/fonts/type1/public/nimbus15/ztm-Med.pfb + RELOC/fonts/type1/public/nimbus15/ztm-MedIta.pfb + RELOC/fonts/type1/public/nimbus15/ztm-MedObl.pfb + RELOC/fonts/type1/public/nimbus15/ztm-Reg.pfb + RELOC/fonts/type1/public/nimbus15/ztm-RegIta.pfb + RELOC/fonts/type1/public/nimbus15/ztm-RegObl.pfb + RELOC/fonts/vf/public/nimbus15/zco-Bold-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-BoldOblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-Light-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-LightOblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-Oblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-Regular-ot2.vf + RELOC/fonts/vf/public/nimbus15/zcoN-Oblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zcoN-Regular-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-Bol-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-BolIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-Reg-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-RegIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-Med-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-MedIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-MedObl-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-Reg-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-RegIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-RegObl-ot2.vf + RELOC/tex/latex/nimbus15/LGRNimbuSans.fd + RELOC/tex/latex/nimbus15/LGRNimbusMono.fd + RELOC/tex/latex/nimbus15/LGRNimbusMonoN.fd + RELOC/tex/latex/nimbus15/LGRNimbusSerif.fd + RELOC/tex/latex/nimbus15/OT1NimbusMono.fd + RELOC/tex/latex/nimbus15/OT1NimbusMonoN.fd + RELOC/tex/latex/nimbus15/OT1NimbusSans.fd + RELOC/tex/latex/nimbus15/OT1NimbusSerif.fd + RELOC/tex/latex/nimbus15/OT2NimbusMono.fd + RELOC/tex/latex/nimbus15/OT2NimbusMonoN.fd + RELOC/tex/latex/nimbus15/OT2NimbusSans.fd + RELOC/tex/latex/nimbus15/OT2NimbusSerif.fd + RELOC/tex/latex/nimbus15/T1NimbusMono.fd + RELOC/tex/latex/nimbus15/T1NimbusMonoN.fd + RELOC/tex/latex/nimbus15/T1NimbusSans.fd + RELOC/tex/latex/nimbus15/T1NimbusSerif.fd + RELOC/tex/latex/nimbus15/T2ANimbusMono.fd + RELOC/tex/latex/nimbus15/T2ANimbusMonoN.fd + RELOC/tex/latex/nimbus15/T2ANimbusSans.fd + RELOC/tex/latex/nimbus15/T2ANimbusSerif.fd + RELOC/tex/latex/nimbus15/T2BNimbusMono.fd + RELOC/tex/latex/nimbus15/T2BNimbusMonoN.fd + RELOC/tex/latex/nimbus15/T2BNimbusSans.fd + RELOC/tex/latex/nimbus15/T2BNimbusSerif.fd + RELOC/tex/latex/nimbus15/T2CNimbusMono.fd + RELOC/tex/latex/nimbus15/T2CNimbusMonoN.fd + RELOC/tex/latex/nimbus15/T2CNimbusSans.fd + RELOC/tex/latex/nimbus15/T2CNimbusSerif.fd + RELOC/tex/latex/nimbus15/TS1NimbusMono.fd + RELOC/tex/latex/nimbus15/TS1NimbusMonoN.fd + RELOC/tex/latex/nimbus15/TS1NimbusSans.fd + RELOC/tex/latex/nimbus15/TS1NimbusSerif.fd + RELOC/tex/latex/nimbus15/nimbusmono.fontspec + RELOC/tex/latex/nimbus15/nimbusmono.sty + RELOC/tex/latex/nimbus15/nimbusmononarrow.sty + RELOC/tex/latex/nimbus15/nimbussans.fontspec + RELOC/tex/latex/nimbus15/nimbussans.sty + RELOC/tex/latex/nimbus15/nimbusserif.fontspec + RELOC/tex/latex/nimbus15/nimbusserif.sty + RELOC/tex/latex/nimbus15/zco.fontspec + RELOC/tex/latex/nimbus15/zcoN.fontspec + RELOC/tex/latex/nimbus15/zhv.fontspec + RELOC/tex/latex/nimbus15/ztm.fontspec +catalogue-ctan /fonts/nimbus15 +catalogue-license other-free lppl1.3 +catalogue-topics font font-body font-proportional font-mono font-multilingual font-greek font-cyrillic font-type1 font-otf font-supp font-t1enc +catalogue-version 1.014 + +name nimsticks +category Package +revision 55877 +shortdesc Draws sticks for games of multi-pile Nim +relocated 1 +longdesc This LaTeX package provides commands \drawnimstick to draw a +longdesc single nim stick and \nimgame which represents games of +longdesc multi-pile Nim. Nim sticks are drawn with a little random +longdesc wobble so they look 'thrown together' and not too regular. +containersize 1776 +containerchecksum d2f984ee36ca3084cf3a03e05254c2992af1df4c42ceed8bf83bdf3a0bbc6657b22fb9734976b2ed79433150d479446cfb8d0c04a7758887b63ab49958079588 +doccontainersize 79448 +doccontainerchecksum b4595bf2038cc5a6a59d910a32c56ada717fa4b8880db7c8dee33fc7de4fb7061fe0ab61f433b8a341869cb15dacd648036d6fd0d47cc664d3ed11c12115aa45 +docfiles size=21 + RELOC/doc/latex/nimsticks/README.md details="Readme" + RELOC/doc/latex/nimsticks/nimsticks.pdf details="Package documentation" +srccontainersize 3056 +srccontainerchecksum 4bf6734b74d1147a0a64a2a5be3a1bf0f5e50c57275e826104641b5c67038ac7e9aefd2a797a8e26b70dae9165f9aa06f5aa657c30bd4bc60d71b9b31a19b159 +srcfiles size=3 + RELOC/source/latex/nimsticks/nimsticks.dtx + RELOC/source/latex/nimsticks/nimsticks.ins +runfiles size=1 + RELOC/tex/latex/nimsticks/nimsticks.sty +catalogue-contact-bugs https://github.com/prowlett/nimsticks/issues +catalogue-contact-repository https://github.com/prowlett/nimsticks +catalogue-ctan /graphics/pgf/contrib/nimsticks +catalogue-license mit +catalogue-topics graphics pgf-tikz games +catalogue-version 1.1 + +name ninecolors +category Package +revision 58833 +shortdesc Select colors with proper WCAG color contrast +relocated 1 +longdesc This package carefully selects and defines 9 colors for 13 hues +longdesc each. All colors with the same suffix number have equal +longdesc luminance level. Also the color black is of level 0, and the +longdesc color white is of level 10. By simply choosing two colors in +longdesc the above list, which differ in level by at least 5, as +longdesc foreground and background colors, you will get proper WCAG +longdesc Color Contrast. +containersize 1480 +containerchecksum 7aee2eac9aa4d1cac046f39a260984888b54bf63df6f62e8278fc7966a50a5ef2e88a07835e5a8fe01403b5d254278fe561c245b2517735705ed6d06ba70aaf0 +doccontainersize 15796 +doccontainerchecksum 8d1a9420463b85653bd6896a8ff893c13a22bb81cc90af568185c053313e12b6edcc02f825a5dc8148f164fbef2b38e12e89d8f1f6b5266a6f97ca307443cc6c +docfiles size=6 + RELOC/doc/latex/ninecolors/README details="Readme" + RELOC/doc/latex/ninecolors/ninecolors.pdf details="Package documentation" + RELOC/doc/latex/ninecolors/ninecolors.tex +runfiles size=2 + RELOC/tex/latex/ninecolors/ninecolors.sty +catalogue-contact-bugs https://github.com/lvjr/ninecolors/issues +catalogue-contact-repository https://github.com/lvjr/ninecolors +catalogue-ctan /macros/latex/contrib/ninecolors +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 2021A + +name njurepo +category Package +revision 50492 +shortdesc Reports for Nanjing University +relocated 1 +longdesc This LaTeX document class provides a thesis template for +longdesc Nanjing University in order to make it easy to write experiment +longdesc reports and homework for the bachelor's curriculum. NJUrepo +longdesc stands for Nanjing University versatile Report. +containersize 10944 +containerchecksum a62efcf4630d7c26bbedb19e0c4405e730733b71361cbec9abed7a06a377c230bee561d8b48427104bef8dbd4e0bd56b0eaf9f0f7bbcdc8b289c726cd7b6cef7 +doccontainersize 1088508 +doccontainerchecksum 61f32efbea3b94749fa0cfc3ef2a3b3a34ccfb4ed3b6b09afa74e4f6dbd2540c1a263c81ca6406288f015303250f51acab0b6a4a4d51c95a2f9bbf1f3360f8e9 +docfiles size=287 + RELOC/doc/latex/njurepo/README.md details="Readme" + RELOC/doc/latex/njurepo/dtx-style.sty + RELOC/doc/latex/njurepo/example.pdf + RELOC/doc/latex/njurepo/njurepo.pdf details="Package documentation" + RELOC/doc/latex/njurepo/ref/author-year.bst + RELOC/doc/latex/njurepo/ref/numeric.bst +srccontainersize 21544 +srccontainerchecksum 6a790ae4e533c8e040ede3355967ee030e136d42afbe222a8fc4b7c3810817901aaca1625199d88443c8dd64d3d6b52ef9364d706fd1cfd5a6dd8a7916890df8 +srcfiles size=19 + RELOC/source/latex/njurepo/njurepo.dtx + RELOC/source/latex/njurepo/njurepo.ins +runfiles size=10 + RELOC/tex/latex/njurepo/njurepo.cls +catalogue-also seuthesix +catalogue-ctan /macros/latex/contrib/njurepo +catalogue-license lppl1.3c +catalogue-topics dissertation class +catalogue-version 1.1.2 + +name nkarta +category Package +revision 16437 +shortdesc A "new" version of the karta cartographic fonts +relocated 1 +longdesc A development of the karta font, offering more mathematical +longdesc stability in Metafont. A version that will produce the glyphs +longdesc as Encapsulated PostScript, using MetaPost, is also provided. +containersize 27392 +containerchecksum 60537472bed0bd22d64789008ff8bbbab92ffcde68cbd74eb0b6d9910705f9f476e8f2c4dafa0020a24b0ff2e27c42a39de1791f2c91040af07dd429e0fa28ad +doccontainersize 93256 +doccontainerchecksum b3cb0205fdc567fbed23f797031e7336fb231c11490f463ee3bb3887e5d8ad1aba90bed1b14178b1d9ba15d76ba02ba93598362b9655eea78bf086c7df6c8b61 +docfiles size=39 + RELOC/doc/fonts/nkarta/README details="Readme" + RELOC/doc/fonts/nkarta/figtable.pdf details="A table of the MetaPost images" + RELOC/doc/fonts/nkarta/figtable.tex + RELOC/doc/fonts/nkarta/fonttable.pdf details="A testfont table of the font" + RELOC/doc/fonts/nkarta/fonttable.tex +srccontainersize 27360 +srccontainerchecksum f96b85f2a779ae64c9c2a056e16d2d8473844b45c0d906f97a3b62f6f517ea614600312d44151d9b9b676f3ec7360638c72fd43c7a35e183bad0d4602dd84aee +srcfiles size=34 + RELOC/source/latex/nkarta/nkarta.dtx + RELOC/source/latex/nkarta/nkarta.ins +runfiles size=68 + RELOC/fonts/source/public/nkarta/nkarta.mf + RELOC/fonts/source/public/nkarta/nkarta15.mf + RELOC/fonts/source/public/nkarta/nkchars.mf + RELOC/fonts/tfm/public/nkarta/nkarta15.tfm + RELOC/metapost/nkarta/nkarta.mp + RELOC/metapost/nkarta/nkchars.mp +catalogue-ctan /fonts/nkarta +catalogue-license pd +catalogue-topics font font-mf font-symbol +catalogue-version 0.2 + +name nl-interval +category Package +revision 58328 +shortdesc Represent intervals on the number line +relocated 1 +longdesc This package provides macros to simplify the process of +longdesc representing intervals on the number line. It depends on +longdesc tkz-fct, ifthen, and xparse. +containersize 1588 +containerchecksum 486597624d640ccd13b4cf4e913b5735b0f2a36910f563b87c6ebc6f38e2ad8df99591fe8dfcb503750eb6a98204ded9bc80d3cc0f8e2441257d6f9bd2167cb9 +doccontainersize 63444 +doccontainerchecksum 8c9bb64229464a05f51396d50143688b8f108ba47ad23a01ddc97039133cc3dbfd51a6a58e36e946145ea483d3d06f36926d8e881b2e07c005e637338092f75b +docfiles size=24 + RELOC/doc/latex/nl-interval/README.txt details="Readme" + RELOC/doc/latex/nl-interval/nl-interval.pdf details="Package documentation" + RELOC/doc/latex/nl-interval/nl-interval.tex +runfiles size=7 + RELOC/tex/latex/nl-interval/nl-interval.sty +catalogue-ctan /graphics/pgf/contrib/nl-interval +catalogue-license lppl1.3c +catalogue-topics maths pgf-tikz +catalogue-version 1.0 + +name nlctdoc +category Package +revision 53768 +shortdesc Package documentation class +relocated 1 +longdesc The class provides support for the documentation of the +longdesc author's packages, using koma-script. This class is provided +longdesc "as is" solely for the benefit of anyone who wants to compile +longdesc the documentation of those packages. +containersize 6580 +containerchecksum 9e73496b57f3a6ef6ab8f49fce6a57d2e0696b4361ee19bf32454eef9fb081f4124635b219c09f2f26578fd5c489e898c0a99b2ffbff3909b3aea6021f28407b +doccontainersize 692 +doccontainerchecksum 0ebc3c315fa891a7a2cd3696dba75d755022f4b0b9f7b75854e98f91b31e93f32f0a513a78e0b6ba529b3fe515fd165c10e2413e0dd27c6c50c0d847a74e78f1 +docfiles size=1 + RELOC/doc/latex/nlctdoc/README details="Readme" +runfiles size=7 + RELOC/tex/latex/nlctdoc/nlctdoc.cls +catalogue-ctan /macros/latex/contrib/nlctdoc +catalogue-license lppl +catalogue-topics doc-supp class +catalogue-version 1.07 + +name nmbib +category Package +revision 37984 +shortdesc Multiple versions of a bibliography, with different sort orders +relocated 1 +longdesc This package is a rewrite of the multibibliography package +longdesc providing multiple bibliographies with different sorting. The +longdesc new version offers a number of citation commands, streamlines +longdesc the creation of bibliographies, ensures compatibility with the +longdesc natbib package, and provides other improvements. +containersize 9092 +containerchecksum c915b266e2a7644a88de6476bd4cf81943f7da31472f1b8eb889e048df8acc4afc36e247b8fc63bfdeb8c0384d87fc59f43d87f3ff09822d076c62a0edd1c110 +doccontainersize 443656 +doccontainerchecksum 0014c7fdade3685ce03bf9fcc2725b430f6272025809e224b88361960cb47e5b533d88d60f0ce55e011dbb943c8fc025340fadc506eedf10189724ae79dd2bda +docfiles size=117 + RELOC/doc/latex/nmbib/Makefile + RELOC/doc/latex/nmbib/README details="Readme" + RELOC/doc/latex/nmbib/nmbib.bib + RELOC/doc/latex/nmbib/nmbib.pdf details="Package documentation" + RELOC/doc/latex/nmbib/nmbibtex.1 + RELOC/doc/latex/nmbib/nmbibtex.pl + RELOC/doc/latex/nmbib/nmsample.pdf details="Example of use" + RELOC/doc/latex/nmbib/nmsample.tex + RELOC/doc/latex/nmbib/type.bib +srccontainersize 11372 +srccontainerchecksum 52297a890da760e2c945522094f128612ceb521500c81ce54da2f481581000bf42302665585fa056b31ff0f096a3a170ce56013e0979ae2043a94b68e7d32a5a +srcfiles size=12 + RELOC/source/latex/nmbib/nmbib.dtx + RELOC/source/latex/nmbib/nmbib.ins +runfiles size=24 + RELOC/bibtex/bst/nmbib/chronoplainnm.bst + RELOC/bibtex/bst/nmbib/plainnm.bst + RELOC/bibtex/bst/nmbib/unsrtnm.bst + RELOC/tex/latex/nmbib/nmbib.sty +catalogue-also multibibliography +catalogue-ctan /macros/latex/contrib/nmbib +catalogue-license lppl1.3 +catalogue-topics bibtex-supp +catalogue-version 1.04 + +name nnext +category Package +revision 56575 +shortdesc Extension for the gb4e package +relocated 1 +longdesc This is an add-on for the gb4e package used in linguistics. It +longdesc implements the \Next, \NNext, \Last, and \LLast commands from +longdesc the linguex package or the \nextx, \anextx, \lastx, \blastx, +longdesc and \bblastx commands from the expex package. +containersize 1444 +containerchecksum 406e846ebe7ed721218368cd00a021edc41af41f1ccb5989925abad92d4cbf4d604abac8144945599530c85917d9404141052ba9891b778d1006b7d339499041 +doccontainersize 142212 +doccontainerchecksum 6efbea453691fe2af7f436e79e1a486abf5dda14e2457ca3c1c2bda9c8461016d4436eee82a18b079a2491e1c4eb2f7dcbaeaf8fe8b8c7846e744f02da8e3b6f +docfiles size=36 + RELOC/doc/latex/nnext/README.md details="Readme" + RELOC/doc/latex/nnext/nnext.pdf details="Package documentation" +srccontainersize 6340 +srccontainerchecksum a0cc70a3bed51b403ee26c2fc583642ab25565c1ebc69945a831827bfd2c192946142ad92bbfa130f891bf9a36c18bf50e5b424ecc119081d72c7efa1654310b +srcfiles size=7 + RELOC/source/latex/nnext/nnext.dtx + RELOC/source/latex/nnext/nnext.ins +runfiles size=1 + RELOC/tex/latex/nnext/nnext.sty +catalogue-contact-bugs https://github.com/nlacara/nnext/issues +catalogue-contact-home https://github.com/nlacara/nnext +catalogue-ctan /macros/latex/contrib/nnext +catalogue-license lppl1.3 +catalogue-topics linguistic +catalogue-version 0.0 + +name noconflict +category Package +revision 30140 +shortdesc Resolve macro name conflict between packages +relocated 1 +longdesc The package provides several commands to prefix (and hence +longdesc obscure) a macro's (or a sequence of macros') name, and to +longdesc restore the original macro(s) at places in a document where +longdesc they are needed. +containersize 1688 +containerchecksum 660ea2bc008866130d0955eabecf0afa1e21ce38fcaa0ff0d4364ebc32ea8af6a2ba57c80b340f824b14f0488d2b40e5c7ddcf663e37d6170a7ac0aa740ca260 +doccontainersize 1104 +doccontainerchecksum b403c57b0d794bd95416ae09ed3fbc0c4a164689f9885dbb15e8a4c25ff8751376e6e61b622c9a94feacc4dfb905a7926500368bf51e5e568efa31e1dc5c785f +docfiles size=1 + RELOC/doc/latex/noconflict/README details="Readme" +runfiles size=1 + RELOC/tex/latex/noconflict/noconflict.sty +catalogue-ctan /macros/latex/contrib/noconflict +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.0 + +name nodetree +category Package +revision 56742 +shortdesc Visualize node lists in a tree view +relocated 1 +longdesc nodetree is a development package that visualizes the structure +longdesc of node lists. nodetree shows its debug informations in the +longdesc console output when you compile a LuaTeX file. It uses a +longdesc similar visual representation for node lists as the UNIX tree +longdesc command for a folder structure. +containersize 12332 +containerchecksum 315216d397894f9b49109c4749dd91953d4bde0c220c37eebdf762f2427bed4f5bc9657a7088a479c78832fd7dfebbbec1b09e25b0a2f5600505a8d5cc58869c +doccontainersize 275876 +doccontainerchecksum 2a20d35c7a1f01657455b239916ad7c9fbdda81aac26d1cfd01d9c4e193ed75d02ee30dc884fef6df722042c3096fe350f6e29b73c00a3edbf4d2a85d364a1de +docfiles size=70 + RELOC/doc/luatex/nodetree/README.md details="Readme" + RELOC/doc/luatex/nodetree/nodetree.pdf details="Package documentation" +srccontainersize 3752 +srccontainerchecksum 579e92f7185814a062cc74619641a3010b55c3e21fa2a8cc13d402b50db4ab5ba05527174a90361521d13e483a87b73758c4c52068b6e94d8e73d8aea76a88d4 +srcfiles size=5 + RELOC/source/luatex/nodetree/nodetree.dtx + RELOC/source/luatex/nodetree/nodetree.ins +runfiles size=15 + RELOC/tex/luatex/nodetree/nodetree-embed.sty + RELOC/tex/luatex/nodetree/nodetree.lua + RELOC/tex/luatex/nodetree/nodetree.sty + RELOC/tex/luatex/nodetree/nodetree.tex +catalogue-contact-bugs https://github.com/Josef-Friedrich/nodetree/issues +catalogue-contact-development https://josef-friedrich.github.io/nodetree +catalogue-contact-repository https://github.com/Josef-Friedrich/nodetree +catalogue-ctan /macros/luatex/generic/nodetree +catalogue-license lppl1.3 +catalogue-topics lua-supp +catalogue-version 2.2 + +name noindentafter +category Package +revision 35709 +shortdesc Tool to prevent paragraph indentation after environments/macros +relocated 1 +longdesc The package, as the name suggests, supplies tools to +longdesc automatically suppress indentations in following paragraphs, +longdesc specifically those following a particular macro or environment. +containersize 2284 +containerchecksum 6037e5b7b36742c2956f39020f7e9bd2072b17ab313f5d7d86e8b0c348b89ef1392571b8cba22190221a14c6f1e44a0156ddafce8f5e2bbf5362e443f590b2d8 +doccontainersize 228912 +doccontainerchecksum 1cc385e0bed9559d66c13967a5ffe83f1d01ad2005e4c7ca92243ca246da4f5f5e9abfde9b244ac54d73de4f874b800dc6620f7c93f6fb03a6d0ac8b2593fc96 +docfiles size=62 + RELOC/doc/latex/noindentafter/README details="Readme" + RELOC/doc/latex/noindentafter/noindentafter-dry.sty + RELOC/doc/latex/noindentafter/noindentafter-packagedoc.cls + RELOC/doc/latex/noindentafter/noindentafter.pdf details="Package documentation" + RELOC/doc/latex/noindentafter/noindentafter.tex +runfiles size=2 + RELOC/tex/latex/noindentafter/noindentafter.sty +catalogue-ctan /macros/latex/contrib/noindentafter +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.2.2 + +name noitcrul +category Package +revision 15878 +shortdesc Improved underlines in mathematics +relocated 1 +longdesc The package provides a (maths mode) \underline variant which +longdesc doesn't impose italics correction at the end. +containersize 1280 +containerchecksum 1629f5c0f832927093283cd5cb534cfb7ee35bd74f306fdf6cc18cfca3c72d5c1501139c180b7cf3fe71ef7131dd6a42465ee666c7bbb5c83a86f2a69a5a3c8a +doccontainersize 78216 +doccontainerchecksum c9c3adf9742b329ddbfdcfc41126c22039e89642f0c0d93ad064ff2160f7708b62ab28994a81860aa08d83f11a111bc11a2a54bbab88bf3713f3f6ee4aa2e641 +docfiles size=26 + RELOC/doc/latex/noitcrul/README details="Readme" + RELOC/doc/latex/noitcrul/noitcrul.pdf details="Benutzerdoku" language="de" +srccontainersize 3760 +srccontainerchecksum 5be6bf65ca4dc0c5819a1bc870f704b595b25e5ed6900beb8a53fa8167680929a7fe038e80fef120e77d5b8731c13f92f7907469ce7aa4825ee4e207c09268a3 +srcfiles size=3 + RELOC/source/latex/noitcrul/noitcrul.dtx + RELOC/source/latex/noitcrul/noitcrul.ins +runfiles size=1 + RELOC/tex/latex/noitcrul/noitcrul.sty +catalogue-ctan /macros/latex/contrib/noitcrul +catalogue-license lppl +catalogue-topics underline maths +catalogue-version 0.2 + +name nolbreaks +category Package +revision 26786 +shortdesc No line breaks in text +relocated 1 +longdesc Use \nolbreaks{some text} to prevent line breaks in "some +longdesc text". This has the advantage over \mbox{} that glue (rubber +longdesc space) remains flexible. Most common cases are handled here +longdesc (\linebreak is disabled, for example) but spaces hidden in +longdesc macros or { } can still create break-points. +containersize 2596 +containerchecksum 4057a988b0357e2256eea6ae47c560d8535528e63b93d648c45d65ac44c4894104015e3411b7046606b9a68afc44033d037229d684f0c5427d9dd2ff5b272279 +doccontainersize 123832 +doccontainerchecksum 8cd5d7336097abd2d873af36b2ba6ebc8cd1c405c9a715c67e6c04d02dbdea067c0b7a8603418005ce223e0f1bff161a3dcb669da7c07c30b2ccdccc7f953fa0 +docfiles size=34 + RELOC/doc/latex/nolbreaks/nolbreaks.pdf details="Package documentation" + RELOC/doc/latex/nolbreaks/nolbreaks.tex +runfiles size=2 + RELOC/tex/latex/nolbreaks/nolbreaks.sty +catalogue-ctan /macros/latex/contrib/nolbreaks +catalogue-license pd +catalogue-topics typesetting +catalogue-version 1.2 + +name nomencl +category Package +revision 57263 +shortdesc Produce lists of symbols as in nomenclature +relocated 1 +longdesc Produces lists of symbols using the capabilities of the +longdesc MakeIndex program. +containersize 3776 +containerchecksum f63b053f8d95a58e2d8ec5d42177f13bdaa49f6cec710e166a96f45187b51cbe12b34c68918c0ec42b12250ecf1af80f5dbb83f4161b2d0dc94d51ccf218391b +doccontainersize 531236 +doccontainerchecksum cf29a353af0a32e41d18087d3ae9c8447d52cb0f95dabfbde01150d15637022d53a8576c362bd7489e8110cdc5dc1892159652d67e61f165f25a78b64d8e095c +docfiles size=163 + RELOC/doc/latex/nomencl/README details="Readme" + RELOC/doc/latex/nomencl/nomencl.pdf details="Package documentation" + RELOC/doc/latex/nomencl/sample01.pdf + RELOC/doc/latex/nomencl/sample01.tex + RELOC/doc/latex/nomencl/sample02.pdf + RELOC/doc/latex/nomencl/sample02.tex + RELOC/doc/latex/nomencl/sample03.pdf + RELOC/doc/latex/nomencl/sample03.tex + RELOC/doc/latex/nomencl/sample04.cfg + RELOC/doc/latex/nomencl/sample04.pdf + RELOC/doc/latex/nomencl/sample04.tex + RELOC/doc/latex/nomencl/sample05.cfg + RELOC/doc/latex/nomencl/sample05.pdf + RELOC/doc/latex/nomencl/sample05.tex + RELOC/doc/latex/nomencl/sample06.cfg +srccontainersize 18836 +srccontainerchecksum e64dc93929ebdf9716208bc51af759003b7e3263a95d58dab5bfe740a71c966d4f51d561e4cf2d82f90bf3e081b4cb0c7a50a1e0a657d2b33b3a065a2e88a557 +srcfiles size=20 + RELOC/source/latex/nomencl/Makefile + RELOC/source/latex/nomencl/nomencl.drv + RELOC/source/latex/nomencl/nomencl.dtx + RELOC/source/latex/nomencl/nomencl.ins +runfiles size=4 + RELOC/makeindex/nomencl/nomencl.ist + RELOC/tex/latex/nomencl/nomencl.sty +catalogue-also glosstex +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-license lppl +catalogue-topics glossary +catalogue-version 5.5 + +name nomentbl +category Package +revision 16549 +shortdesc Nomenclature typeset in a longtable +relocated 1 +longdesc Nomentbl typeset nomenclatures in a longtable instead of the +longdesc makeindex style of nomencl. A nomenclature entry may have three +longdesc arguments: Symbol, description and physical unit. +containersize 2456 +containerchecksum 195cd134db2faf9c7405d040d0d3b4a71ec39ac201fad47c855d34d8f734d069c03424ddec6b1af978e7b244b3907f846fbd80fff6063e7b25df3de508fc51ed +doccontainersize 174560 +doccontainerchecksum 4ea606a78da4c0c4f5c35b38b9a430de8dcea49c8662081a85f3aa575523c40f5951bd54e2c8acb368b52f75a3214c0a4b0d178dc262a64b8f6485852c4458ba +docfiles size=53 + RELOC/doc/latex/nomentbl/README + RELOC/doc/latex/nomentbl/example.pdf details="Example of use" + RELOC/doc/latex/nomentbl/example.tex + RELOC/doc/latex/nomentbl/nomentbl.pdf details="Package documentation" +srccontainersize 6048 +srccontainerchecksum 5cf26c7871ccb841bb8350d594ed9333d7b46c7d2e3db70080ce743fdfd7c7fbfa3c8f7f976bf8f37decc653e54954a5e0a90385fb99ac3428a8dea4a5311719 +srcfiles size=6 + RELOC/source/latex/nomentbl/nomentbl.dtx + RELOC/source/latex/nomentbl/nomentbl.ins +runfiles size=3 + RELOC/makeindex/nomentbl/nomentbl.ist + RELOC/tex/latex/nomentbl/nomentbl.sty +catalogue-ctan /macros/latex/contrib/nomentbl +catalogue-license lppl +catalogue-topics glossary +catalogue-version 0.4 + +name nonfloat +category Package +revision 17598 +shortdesc Non-floating table and figure captions +relocated 1 +longdesc Adjusts the figure and table environments to ensure that +longdesc centered objects as one line captions are centered as well. +longdesc Also the vertical spaces for table captions above the table are +longdesc changed. +containersize 1484 +containerchecksum 39f8f0a4d9ef1cf8f1dc02c63612980f25cee80cb545bf405d9d2a080256ba6799ff3030c98c26e6f2aaa10ac71015e58e4233bf84703b290220b12db45c70c0 +doccontainersize 306696 +doccontainerchecksum 2d090fa397a385cb32c26957b5c4c05ba8443fb1bb7ce7e3eda777ddc2d3af11ec3ae6297bf014f40e71d4668044ab729a6dedd74e8802ce9089b59d57663374 +docfiles size=87 + RELOC/doc/latex/nonfloat/nonfloat-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/nonfloat/nonfloat-en.tex + RELOC/doc/latex/nonfloat/nonfloat.pdf details="Package documentation (German)" language="de" +srccontainersize 5596 +srccontainerchecksum be5e0b078adb8c530d8255bcc72daf50ad8cbb48343fa76f132e1b75fd64d033c7caf287b6901f1bc49422956f6901dec0f7e7b7639dd71c10c1a76ec958aaf6 +srcfiles size=6 + RELOC/source/latex/nonfloat/nonfloat.drv + RELOC/source/latex/nonfloat/nonfloat.dtx + RELOC/source/latex/nonfloat/nonfloat.ins +runfiles size=1 + RELOC/tex/latex/nonfloat/nonfloat.sty +catalogue-ctan /macros/latex/contrib/nonfloat +catalogue-license pd +catalogue-topics float +catalogue-version 1.0 + +name nonumonpart +category Package +revision 22114 +shortdesc Prevent page numbers on part pages +relocated 1 +longdesc The package bundles the answer to the long-standing FAQ about +longdesc removing page numbers on \part pages. The package accepts no +longdesc options and defines no user commands; the user needs only to +longdesc load it, and the requirement is met. +containersize 1176 +containerchecksum e97fcc36af3e86c1a432d0e425dd86308429e764c976a2f7f8106c3433ae5a148bf3abc45706bcc3090089911e2dfe175156eccaba7d97f544154ad0b288e58b +doccontainersize 782604 +doccontainerchecksum 0cd6b115638c3151e5983845dd2964ed90f24bd35a06e904a005755696d6faccd90bbf88c7bbb5a0282ffcd266cb55e9eb1d058fd78432ba062fb4fd723348f3 +docfiles size=210 + RELOC/doc/latex/nonumonpart/LISEZMOI details="Readme" language="fr" + RELOC/doc/latex/nonumonpart/README details="Readme" language="en" + RELOC/doc/latex/nonumonpart/nonumonpart-en.pdf details="Package documentation" language="en" + RELOC/doc/latex/nonumonpart/nonumonpart-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/nonumonpart/nonumonpart.pdf +srccontainersize 6716 +srccontainerchecksum 46130f9c35465685dc690096405791f82d70e73091f6654b5bbdaebc71b5fa3703a013461aedbe2cfe59975dd6233668f0c204e817ed65fc83c30be59be52505 +srcfiles size=7 + RELOC/source/latex/nonumonpart/Makefile + RELOC/source/latex/nonumonpart/nonumonpart.dtx + RELOC/source/latex/nonumonpart/nonumonpart.ins +runfiles size=1 + RELOC/tex/latex/nonumonpart/nonumonpart.sty +catalogue-ctan /macros/latex/contrib/nonumonpart +catalogue-license lppl1.2 +catalogue-topics page-nos +catalogue-version 1 + +name nopageno +category Package +revision 18128 +shortdesc No page numbers in LaTeX documents +relocated 1 +longdesc LaTeX's standard styles use two page styles, one on normal +longdesc pages and one on 'opening' pages with \maketitle or \chapter, +longdesc etc. Unfortunately there is only easy access to changing one of +longdesc these two so if you want something other than 'plain' on the +longdesc opening pages you must use \thispagestyle on each such page. +longdesc The fancyhdr package does provide a more flexible interface, +longdesc but if you just want an empty page style on all pages then this +longdesc package will do the job. +containersize 1020 +containerchecksum 0e152caa8b8df06444f50e2f9ca93f18088a0c58e2d5936f612a770b90cdb8f4bb0142064f56573d8569eee274adbc2703037ce4d7477c24d23c7c8de8748a62 +doccontainersize 170376 +doccontainerchecksum 5988c42840efc02f816ca0f9ff7ad2d731c66563c0c4de21b857de975bbec08962cef4ed1dad096abc39ecd8489d3a34a66809e98f49b0a280c186d03e6540a2 +docfiles size=44 + RELOC/doc/latex/nopageno/nopageno.pdf details="Package documentation" + RELOC/doc/latex/nopageno/nopageno.tex +runfiles size=1 + RELOC/tex/latex/nopageno/nopageno.sty +catalogue-ctan /macros/latex/contrib/nopageno +catalogue-license lppl +catalogue-topics page-nos + +name norasi-c90 +category Package +revision 37675 +shortdesc TeX support (from CJK) for the norasi font +relocated 1 +depend fonts-tlwg +execute addMap norasi-c90.map +containersize 8720 +containerchecksum d52fb16ee07ef72f6484b784346933a23b5a3357aa2f00ee212bb1decbfd3299153e88cd4bc352cfc2e888dbf37ea86a2bd6442b6393634c5f144f4accab55a5 +srccontainersize 1440 +srccontainerchecksum 0170578bca4c4e4a7307fc125a6d845881fe32e2d361c73369ac1bb1b7d510bca8eddae831fc8421b3e30ce996f2eda4d7b2e449873ae6226a7806ed2bbd4047 +srcfiles size=1 + RELOC/source/fonts/norasi-c90/norasi-c90.fontinst +runfiles size=10 + RELOC/dvips/norasi-c90/config.norasi-c90 + RELOC/fonts/map/dvips/norasi-c90/norasi-c90.map + RELOC/fonts/tfm/public/norasi-c90/ftnb8z.tfm + RELOC/fonts/tfm/public/norasi-c90/ftnbi8z.tfm + RELOC/fonts/tfm/public/norasi-c90/ftni8z.tfm + RELOC/fonts/tfm/public/norasi-c90/ftnr8z.tfm + +name normalcolor +category Package +revision 40125 +shortdesc Changing \normalcolor +relocated 1 +longdesc This package provides a command \setnormalcolor with the same +longdesc syntax as the command \color either of package color or of +longdesc package xcolor. However, \setnormalcolor will not change the +longdesc current colour but the normal / default color. +containersize 1388 +containerchecksum 013354a5f7514f6267d57d098ca93eb48970df0ce1cb2db0c60ecf664cbcea177b934ab8f252cfb9dd4c0979417937462ef55e51502bca7f32a7de1a0e820e32 +doccontainersize 156456 +doccontainerchecksum ca7a9c008f72aa1287092f881f9ffcbe58ed45bfc97ec3231fbeceeb007f6248629d9cf49598afe604ac8cc30a4e8117f54fe517fcbf52548add2f6ac6fdb662 +docfiles size=40 + RELOC/doc/latex/normalcolor/README details="Readme" + RELOC/doc/latex/normalcolor/normalcolor-example.tex + RELOC/doc/latex/normalcolor/normalcolor.pdf details="Package documentation" +srccontainersize 4048 +srccontainerchecksum ac6fcbd939d13714f21106c6b0786a9ede4ae6a3023348678ce22bca59343d7379fce9ef12bde91fd05b4912c70c8b4eb64b95f2869f4a30c03c4443640b9d80 +srcfiles size=4 + RELOC/source/latex/normalcolor/normalcolor.dtx +runfiles size=1 + RELOC/tex/latex/normalcolor/normalcolor.sty +catalogue-ctan /macros/latex/contrib/normalcolor +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version r11 + +name nostarch +category Package +revision 15878 +shortdesc LaTeX class for No Starch Press +relocated 1 +longdesc The package provides the "official" LaTeX style for No Starch +longdesc Press. Provided are a class, a package for interfacing to +longdesc hyperref and an index style file. The style serves both for +longdesc printed and for electronic books. +containersize 7816 +containerchecksum 45992ab970abe997f3b01c9dae5e15303db81878b085f45fea4ba07209160ff0307550e9ecca9b67e0d01712831b6541def54382170d43db4dd547f2969f9fb9 +doccontainersize 618136 +doccontainerchecksum 94efe6a2b41a47b559b4b7c9e04dda1f32d0c6f5da79b51d994fda1af58b4e1cc7e808f9465f7874be6b67231383c38543fb3e98706c32da32d73a4ae07da9fe +docfiles size=219 + RELOC/doc/latex/nostarch/100euroie.png + RELOC/doc/latex/nostarch/100euroit.png + RELOC/doc/latex/nostarch/1eurogr.jpg + RELOC/doc/latex/nostarch/README details="Readme" + RELOC/doc/latex/nostarch/nostarch.pdf details="Package documentation" + RELOC/doc/latex/nostarch/nssample.pdf details="Sample book" + RELOC/doc/latex/nostarch/nssample.tex + RELOC/doc/latex/nostarch/recycled.png + RELOC/doc/latex/nostarch/vitruvian.jpg +srccontainersize 18644 +srccontainerchecksum 1d46d17f9f43981c89bffdc5e2167342e6168423068b4d02c180fa18fc4243ece749ebab18c5b47be0184e76034378a7ee6ea09aca3c782184f389c6639df38f +srcfiles size=20 + RELOC/source/latex/nostarch/Makefile + RELOC/source/latex/nostarch/nostarch.dtx + RELOC/source/latex/nostarch/nostarch.ins +runfiles size=10 + RELOC/bibtex/bib/nostarch/nostarch.bib + RELOC/makeindex/nostarch/nostarch.ist + RELOC/tex/latex/nostarch/nostarch.cls + RELOC/tex/latex/nostarch/nshyper.sty +catalogue-contact-home http://www.nostarch.com +catalogue-ctan /macros/latex/contrib/nostarch +catalogue-license lppl +catalogue-topics book-pub class +catalogue-version 1.3 + +name notes +category Package +revision 42428 +shortdesc Mark sections of a document +relocated 1 +longdesc The package provides environments to highlight significant +longdesc portions of text within a document, by putting the text in a +longdesc box and adding an icon in the margin. (The icons are provided +longdesc as 'fig' sources, processable by xfig.) +containersize 6912 +containerchecksum 7b569f27ec34c103c5808036a6ffd7f97f9171287883f38c048b8eabbd979559fbf15b20c7002dc9b8b0577889482c4347e4986e076079809a4a5656aed46101 +doccontainersize 75084 +doccontainerchecksum 4e66790b76290925f49ab7f56175e2d41a20e715c43518edbae39e444d02b945ec05ca918574f52fbb6ca10fbbb060242c688fb9344094df2e025de83272322b +docfiles size=32 + RELOC/doc/latex/notes/book.layout + RELOC/doc/latex/notes/hand.fig + RELOC/doc/latex/notes/info.fig + RELOC/doc/latex/notes/makedoc + RELOC/doc/latex/notes/makedoc.bat + RELOC/doc/latex/notes/notes.inc + RELOC/doc/latex/notes/notes.pdf details="Package documentation" + RELOC/doc/latex/notes/testnotes.tex + RELOC/doc/latex/notes/warn.fig +srccontainersize 5768 +srccontainerchecksum f5405540929d6d99471bac43d89b01ed7ba59bdb8f1e7d978dc9a43a563e6b16c9cc4645d291054308f06b3d4df10547e09a72081c210063d37810da511dcac1 +srcfiles size=7 + RELOC/source/latex/notes/Makefile + RELOC/source/latex/notes/notes.drv + RELOC/source/latex/notes/notes.dtx + RELOC/source/latex/notes/notes.ins +runfiles size=11 + RELOC/tex/latex/notes/hand.eps + RELOC/tex/latex/notes/hand.pdf + RELOC/tex/latex/notes/hand.png + RELOC/tex/latex/notes/info.eps + RELOC/tex/latex/notes/info.pdf + RELOC/tex/latex/notes/info.png + RELOC/tex/latex/notes/notes.sty + RELOC/tex/latex/notes/warn.eps + RELOC/tex/latex/notes/warn.pdf + RELOC/tex/latex/notes/warn.png +catalogue-ctan /macros/latex/contrib/notes +catalogue-license lppl +catalogue-topics decoration +catalogue-version 1.0.1 + +name notes2bib +category Package +revision 52231 +shortdesc Integrating notes into the bibliography +relocated 1 +longdesc The package defines a new type of note, bibnote, which will +longdesc always be added to the bibliography. The package allows +longdesc footnotes and endnotes to be moved into the bibliography in the +longdesc same way. The package can be used with natbib and BibLaTeX as +longdesc well as plain LaTeX citations. Both sorted and unsorted +longdesc bibliography styles are supported. The package uses the LaTeX 3 +longdesc macros and the associated xpackages bundle. It also makes use +longdesc of the e-TeX extensions (any post-2005 LaTeX distribution will +longdesc provide these by default, but users of older systems may need +longdesc to use an elatex command or equivalent). The package relies on +longdesc LaTeX 3 support from the l3kernel and l3packages bundles. +containersize 4292 +containerchecksum 019645974d270df27f5c5bf22570e26b5bfa5c076739824eff60a40d1c246010fe0e599eb2fb282cc08aa2161ec7ee753b734548ca04370d9bf923f357ced1f0 +doccontainersize 239940 +doccontainerchecksum f4b97327b98e86c64620e975130a7fe790489d16135667c95ec7a368591084c381362e1447dfd1b3afb4f57ed2657a43f8623942f6618d839cb9b1c0995234e3 +docfiles size=62 + RELOC/doc/latex/notes2bib/README.md details="Readme" + RELOC/doc/latex/notes2bib/README.txt + RELOC/doc/latex/notes2bib/notes2bib-notes2bib.bib + RELOC/doc/latex/notes2bib/notes2bib.pdf details="Package documentation" +srccontainersize 14180 +srccontainerchecksum 04cd8f2ac89b8f4fdb20a445cd98ac382a082114eca90306eb0cdb793fe088ef1d1ba9e35dd9c9b2c98238cee6ed9519144c012973d7c2e1928c11f7350091fd +srcfiles size=15 + RELOC/source/latex/notes2bib/notes2bib.dtx + RELOC/source/latex/notes2bib/notes2bib.ins +runfiles size=5 + RELOC/tex/latex/notes2bib/notes2bib.sty +catalogue-ctan /macros/latex/contrib/notes2bib +catalogue-license lppl1.3c +catalogue-topics notes bib-use expl3 +catalogue-version 2.0m + +name notespages +category Package +revision 41906 +shortdesc Filling documents with notes pages and notes areas +relocated 1 +longdesc This package package provides one macro to insert a single +longdesc notes page and another to fill the document with multiple notes +longdesc pages, until the total number of pages (so far) is a multiple +longdesc of a given number. A third command can be used to fill half +longdesc empty pages with a notes area. +containersize 5828 +containerchecksum f5f6960bfade079642a4b4f221a7b762cfb5276a74b20bb3eada51706cd2e3496f91ca23e35cb39f221c57da19012597eabc8d3aa63c58e0749c8a01b6a28ab4 +doccontainersize 878820 +doccontainerchecksum 8af2f746d4484a2e06bd0f7f766c49cc9b0b790da2cf0faf1c83d959f2e2f60fcdcb7cdb6f1ffed89c2b03846215b589de332dc20935d0c0add4e3dc025c42cb +docfiles size=333 + RELOC/doc/latex/notespages/README details="Readme" + RELOC/doc/latex/notespages/notespages.pdf details="Package documentation" + RELOC/doc/latex/notespages/np-test.pdf details="Example of use" + RELOC/doc/latex/notespages/np-test.tex +srccontainersize 31444 +srccontainerchecksum 96b547ad56fc2e503c2cf9b6089dd74e2902831d99fc8899b57affdcc1c1d23463dbc7472878cf30ee26078c30cac9bdc20975925de01a86982af19b6a3113fa +srcfiles size=37 + RELOC/source/latex/notespages/notespages.dtx + RELOC/source/latex/notespages/notespages.ins +runfiles size=6 + RELOC/tex/latex/notespages/notespages.sty +catalogue-ctan /macros/latex/contrib/notespages +catalogue-license lppl1.3 +catalogue-topics blank-page notes +catalogue-version 0.8.1 + +name notestex +category Package +revision 45396 +shortdesc An all-in-one LaTeX notes package for students +relocated 1 +longdesc This is a modification of the original Jhep journal format in +longdesc order to suit the needs of students in university. The goal of +longdesc this package was to make notetaking easier for students and +longdesc offer easy support for marginnotes along with a reliable and +longdesc legible formatting structure. +containersize 6372 +containerchecksum 64f9704fd3646cdcfdc03f6a3e03f9fb37859b9f11463fa77e1d3d076115297fac9c0b8d6875c8b6b7f3d37127a400e6205239957526018d9ad5cdf36a984269 +doccontainersize 538532 +doccontainerchecksum c47bd3a4153467a63ac2e2b149f498f9458132e841cd70da9871f10674e77d928f7f88e58855c139dacdc225d286615caf0297077b843750e6940482398f02a2 +docfiles size=148 + RELOC/doc/latex/notestex/NotesTeX.pdf details="Package documentation" + RELOC/doc/latex/notestex/NotesTeX.tex + RELOC/doc/latex/notestex/README.md details="Readme" +runfiles size=6 + RELOC/tex/latex/notestex/NotesTeX.sty +catalogue-contact-repository https://github.com/Adhumunt/NotesTeX +catalogue-ctan /macros/latex/contrib/notestex +catalogue-license lppl1.3 +catalogue-topics notes misc-paper gen-paper +catalogue-version 1.0 + +name notex-bst +category Package +revision 42361 +shortdesc A BibTeX style that outputs HTML +relocated 1 +longdesc noTeX.bst produces a number of beautifully formatted HTML P +longdesc elements instead of TeX code. It can be used to automatically +longdesc generate bibliographies to be served on the web starting from +longdesc BibTeX files. +containersize 4412 +containerchecksum 68627ca4a07ed0228b9b9ea4b70cdea5196e907f71f343310259d19464d503e76e2ea8fb5f59f01337916ee1f2ef398bdb1d3e4d97f0d49eac660fdce20590ff +runfiles size=5 + RELOC/bibtex/bst/notex-bst/noTeX.bst +catalogue-ctan /biblio/bibtex/utils/misc/noTeX.bst +catalogue-license pd +catalogue-topics bibtex-sty cvt-html + +name noto +category Package +revision 54512 +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 67199024 +containerchecksum 731e33665913e4e5deab621d44f0fbaa1a9853109f6f76b2d2c65efcd2a227369e17bee3cd18b00a0e3314db61026c2d2138943b3420bb5da29b7eeed10c6cd8 +doccontainersize 312836 +doccontainerchecksum 6ab7fcfa88f6c4739038db08afe172387ebe3cd391180efb9b745096ad0d24f7a80b4866698ae882f34d4e6482ea477b419c9421d2a62e71c79e2b66bfd21d94 +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=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_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_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_6egtta.enc + RELOC/fonts/enc/dvips/noto/nto_6fjq7h.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_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_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_dvdq72.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_hcdl7d.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_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_ndzcwf.enc + RELOC/fonts/enc/dvips/noto/nto_nhjuvf.enc + RELOC/fonts/enc/dvips/noto/nto_nhzdio.enc + RELOC/fonts/enc/dvips/noto/nto_nog6ox.enc + RELOC/fonts/enc/dvips/noto/nto_o37s5e.enc + 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_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_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_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_scavxs.enc + RELOC/fonts/enc/dvips/noto/nto_sez6pn.enc + RELOC/fonts/enc/dvips/noto/nto_sg5txc.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_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 + RELOC/fonts/enc/dvips/noto/nto_whcw4o.enc + RELOC/fonts/enc/dvips/noto/nto_wiy4e7.enc + 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_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_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 + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ts1.tfm + RELOC/fonts/truetype/google/noto/NotoSans-Black.ttf + RELOC/fonts/truetype/google/noto/NotoSans-BlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Bold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-BoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Condensed.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedMediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedSemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedMediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedSemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Italic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Light.ttf + RELOC/fonts/truetype/google/noto/NotoSans-LightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Medium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-MediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Regular.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedMediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedSemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Thin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Black.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Bold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Condensed.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Light.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Medium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Regular.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Thin.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Black.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-BlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Bold.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-BoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Italic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Light.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-LightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Medium.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-MediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Regular.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-SemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-SemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Thin.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ThinItalic.ttf + RELOC/fonts/type1/google/noto/NotoMono-Bold.pfb + RELOC/fonts/type1/google/noto/NotoMono-BoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoMono-Italic.pfb + RELOC/fonts/type1/google/noto/NotoMono-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSans-Black.pfb + RELOC/fonts/type1/google/noto/NotoSans-BlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Bold.pfb + RELOC/fonts/type1/google/noto/NotoSans-BoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Condensed.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedMediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedSemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedMediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedSemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Italic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Light.pfb + RELOC/fonts/type1/google/noto/NotoSans-LightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Medium.pfb + RELOC/fonts/type1/google/noto/NotoSans-MediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedMediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedSemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Thin.pfb + RELOC/fonts/type1/google/noto/NotoSans-ThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Black.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Bold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Condensed.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Light.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Medium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Thin.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Black.pfb + RELOC/fonts/type1/google/noto/NotoSerif-BlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Bold.pfb + RELOC/fonts/type1/google/noto/NotoSerif-BoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Italic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Light.pfb + RELOC/fonts/type1/google/noto/NotoSerif-LightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Medium.pfb + RELOC/fonts/type1/google/noto/NotoSerif-MediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSerif-SemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSerif-SemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Thin.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ThinItalic.pfb + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-ts1.vf + RELOC/tex/latex/noto/LGRNotoSans-LF.fd + RELOC/tex/latex/noto/LGRNotoSans-OsF.fd + RELOC/tex/latex/noto/LGRNotoSans-Sup.fd + RELOC/tex/latex/noto/LGRNotoSans-TLF.fd + RELOC/tex/latex/noto/LGRNotoSans-TOsF.fd + RELOC/tex/latex/noto/LGRNotoSansMono-Sup.fd + RELOC/tex/latex/noto/LGRNotoSansMono-TLF.fd + RELOC/tex/latex/noto/LGRNotoSansMono-TOsF.fd + RELOC/tex/latex/noto/LGRNotoSerif-LF.fd + RELOC/tex/latex/noto/LGRNotoSerif-OsF.fd + RELOC/tex/latex/noto/LGRNotoSerif-Sup.fd + RELOC/tex/latex/noto/LGRNotoSerif-TLF.fd + RELOC/tex/latex/noto/LGRNotoSerif-TOsF.fd + RELOC/tex/latex/noto/LY1NotoSans-LF.fd + RELOC/tex/latex/noto/LY1NotoSans-OsF.fd + RELOC/tex/latex/noto/LY1NotoSans-Sup.fd + RELOC/tex/latex/noto/LY1NotoSans-TLF.fd + RELOC/tex/latex/noto/LY1NotoSans-TOsF.fd + RELOC/tex/latex/noto/LY1NotoSansMono-Sup.fd + RELOC/tex/latex/noto/LY1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/LY1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/LY1NotoSerif-LF.fd + RELOC/tex/latex/noto/LY1NotoSerif-OsF.fd + RELOC/tex/latex/noto/LY1NotoSerif-Sup.fd + RELOC/tex/latex/noto/LY1NotoSerif-TLF.fd + RELOC/tex/latex/noto/LY1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/OT1NotoSans-LF.fd + RELOC/tex/latex/noto/OT1NotoSans-OsF.fd + RELOC/tex/latex/noto/OT1NotoSans-Sup.fd + RELOC/tex/latex/noto/OT1NotoSans-TLF.fd + RELOC/tex/latex/noto/OT1NotoSans-TOsF.fd + RELOC/tex/latex/noto/OT1NotoSansMono-Sup.fd + RELOC/tex/latex/noto/OT1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/OT1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/OT1NotoSerif-LF.fd + RELOC/tex/latex/noto/OT1NotoSerif-OsF.fd + RELOC/tex/latex/noto/OT1NotoSerif-Sup.fd + RELOC/tex/latex/noto/OT1NotoSerif-TLF.fd + RELOC/tex/latex/noto/OT1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/T1NotoSans-LF.fd + RELOC/tex/latex/noto/T1NotoSans-OsF.fd + RELOC/tex/latex/noto/T1NotoSans-Sup.fd + RELOC/tex/latex/noto/T1NotoSans-TLF.fd + RELOC/tex/latex/noto/T1NotoSans-TOsF.fd + RELOC/tex/latex/noto/T1NotoSansMono-Sup.fd + RELOC/tex/latex/noto/T1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/T1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T1NotoSerif-LF.fd + RELOC/tex/latex/noto/T1NotoSerif-OsF.fd + RELOC/tex/latex/noto/T1NotoSerif-Sup.fd + RELOC/tex/latex/noto/T1NotoSerif-TLF.fd + RELOC/tex/latex/noto/T1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/T2ANotoSans-LF.fd + RELOC/tex/latex/noto/T2ANotoSans-OsF.fd + RELOC/tex/latex/noto/T2ANotoSans-Sup.fd + RELOC/tex/latex/noto/T2ANotoSans-TLF.fd + RELOC/tex/latex/noto/T2ANotoSans-TOsF.fd + RELOC/tex/latex/noto/T2ANotoSansMono-Sup.fd + RELOC/tex/latex/noto/T2ANotoSansMono-TLF.fd + RELOC/tex/latex/noto/T2ANotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T2ANotoSerif-LF.fd + RELOC/tex/latex/noto/T2ANotoSerif-OsF.fd + RELOC/tex/latex/noto/T2ANotoSerif-Sup.fd + RELOC/tex/latex/noto/T2ANotoSerif-TLF.fd + RELOC/tex/latex/noto/T2ANotoSerif-TOsF.fd + RELOC/tex/latex/noto/T2BNotoSans-LF.fd + RELOC/tex/latex/noto/T2BNotoSans-OsF.fd + RELOC/tex/latex/noto/T2BNotoSans-Sup.fd + RELOC/tex/latex/noto/T2BNotoSans-TLF.fd + RELOC/tex/latex/noto/T2BNotoSans-TOsF.fd + RELOC/tex/latex/noto/T2BNotoSansMono-Sup.fd + RELOC/tex/latex/noto/T2BNotoSansMono-TLF.fd + RELOC/tex/latex/noto/T2BNotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T2BNotoSerif-LF.fd + RELOC/tex/latex/noto/T2BNotoSerif-OsF.fd + RELOC/tex/latex/noto/T2BNotoSerif-Sup.fd + RELOC/tex/latex/noto/T2BNotoSerif-TLF.fd + RELOC/tex/latex/noto/T2BNotoSerif-TOsF.fd + RELOC/tex/latex/noto/T2CNotoSans-LF.fd + RELOC/tex/latex/noto/T2CNotoSans-OsF.fd + RELOC/tex/latex/noto/T2CNotoSans-Sup.fd + RELOC/tex/latex/noto/T2CNotoSans-TLF.fd + RELOC/tex/latex/noto/T2CNotoSans-TOsF.fd + RELOC/tex/latex/noto/T2CNotoSansMono-Sup.fd + RELOC/tex/latex/noto/T2CNotoSansMono-TLF.fd + RELOC/tex/latex/noto/T2CNotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T2CNotoSerif-LF.fd + RELOC/tex/latex/noto/T2CNotoSerif-OsF.fd + RELOC/tex/latex/noto/T2CNotoSerif-Sup.fd + RELOC/tex/latex/noto/T2CNotoSerif-TLF.fd + RELOC/tex/latex/noto/T2CNotoSerif-TOsF.fd + RELOC/tex/latex/noto/TS1NotoSans-LF.fd + RELOC/tex/latex/noto/TS1NotoSans-OsF.fd + RELOC/tex/latex/noto/TS1NotoSans-TLF.fd + RELOC/tex/latex/noto/TS1NotoSans-TOsF.fd + RELOC/tex/latex/noto/TS1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/TS1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/TS1NotoSerif-LF.fd + RELOC/tex/latex/noto/TS1NotoSerif-OsF.fd + RELOC/tex/latex/noto/TS1NotoSerif-TLF.fd + RELOC/tex/latex/noto/TS1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/noto-mono.sty + RELOC/tex/latex/noto/noto-sans.sty + RELOC/tex/latex/noto/noto-serif.sty + RELOC/tex/latex/noto/noto.sty +catalogue-contact-home https://www.google.com/get/noto/ +catalogue-ctan /fonts/noto +catalogue-license lppl ofl +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 + +name noto-emoji +category Package +revision 53968 +shortdesc Noto Emoji fonts +relocated 1 +longdesc Noto Color Emoji supports all emoji defined in the latest +longdesc Unicode version. +containersize 8952232 +containerchecksum c681b795a4f2678f5da213cabb37dde0fd604036e59593c34100bfca53ae56e9cbe2f408a2d1a99dd143b07d8a50fabafec0e51d614bb3ee6122b8eb27d6eb10 +doccontainersize 608 +doccontainerchecksum c1794f61d4597ad06c504efdf94efaf2172d87b3efc29a289350122f85337f73c319fa7e10b261e7a9bc79ce96b8fdb3dcf4348454a0d2902ec5a47433b95ee4 +docfiles size=1 + RELOC/doc/fonts/noto-emoji/README.md details="Readme" +runfiles size=2395 + RELOC/fonts/truetype/google/noto-emoji/NotoColorEmoji.ttf + RELOC/fonts/truetype/google/noto-emoji/NotoEmoji-Regular.ttf +catalogue-contact-bugs https://github.com/googlefonts/noto-emoji/issues +catalogue-contact-home https://www.google.com/get/noto/help/emoji/ +catalogue-contact-repository https://github.com/googlefonts/noto-emoji +catalogue-ctan /fonts/noto-emoji +catalogue-license ofl +catalogue-topics font font-ttf font-symbol +catalogue-version 2019-11-19-unicode12 + +name notoccite +category Package +revision 18129 +shortdesc Prevent trouble from citations in table of contents, etc +relocated 1 +longdesc If you have \cite commands in \section-like commands, or in +longdesc \caption, the citation will also appear in the table of +longdesc contents, or list of whatever. If you are also using an +longdesc unsrt-like bibliography style, these citations will come at the +longdesc very start of the bibliography, which is confusing. This +longdesc package suppresses the effect. +containersize 1440 +containerchecksum b63b890933b27717625383488d2cbeb1501ace58b83e5af66a35ba440816527dc879df444af78090294df6d4d412d21fddbab43068a6d677b22d750ddb4105e6 +doccontainersize 227152 +doccontainerchecksum 83b3d2c7b97bb88af13d888d04f08ebb7e79661b4924ed6e328f26b9d19e4c6eea6719b49e6f227dc37c96201a901fe57da3745dfa7151bec27c7e8bfb81b236 +docfiles size=58 + RELOC/doc/latex/notoccite/notoccite.pdf details="Package documentation" + RELOC/doc/latex/notoccite/notoccite.tex +runfiles size=1 + RELOC/tex/latex/notoccite/notoccite.sty +catalogue-ctan /macros/latex/contrib/notoccite +catalogue-license pd +catalogue-topics headings cite-supp + +name notomath +category Package +revision 58726 +shortdesc Math support for Noto fonts +relocated 1 +longdesc Math support via newtxmath for Google's NotoSerif and NotoSans. +longdesc (Regular and Bold weights only.) +execute addMap NotoMath.map +containersize 213352 +containerchecksum 87ea63d518f58926be25b144f1a76442873e991207feca20d32d5615c2a52cbc9df9547c081d220603cfe26e4e02f565de60d510d63dcd8179b2249ae2f764a9 +doccontainersize 417208 +doccontainerchecksum fcbcf7df38116022d439d6eb3b98e7e8979d934011bff5d7241e2490e83f4ae19168a4aff1cf4aa887c7aee90ecd82980679d21e53fd8780f5aa13c3b2681857 +docfiles size=125 + RELOC/doc/fonts/notomath/README.txt details="Readme" + RELOC/doc/fonts/notomath/manifest + RELOC/doc/fonts/notomath/newtx-noto-subs.tex + RELOC/doc/fonts/notomath/newtx-notosans-subs.tex + RELOC/doc/fonts/notomath/notomath-doc.pdf details="Package documentation" + RELOC/doc/fonts/notomath/notomath-doc.tex + RELOC/doc/fonts/notomath/samplerSerif-crop.pdf details="Font samples" +runfiles size=86 + RELOC/fonts/map/dvips/notomath/NotoMath.map + RELOC/fonts/tfm/public/notomath/NotoMathBMI.tfm + RELOC/fonts/tfm/public/notomath/NotoMathBRM.tfm + RELOC/fonts/tfm/public/notomath/NotoMathMI.tfm + RELOC/fonts/tfm/public/notomath/NotoMathRM.tfm + RELOC/fonts/tfm/public/notomath/NotoSansMathBMI.tfm + RELOC/fonts/tfm/public/notomath/NotoSansMathBRM.tfm + RELOC/fonts/tfm/public/notomath/NotoSansMathMI.tfm + RELOC/fonts/tfm/public/notomath/NotoSansMathRM.tfm + RELOC/fonts/tfm/public/notomath/notobmi.tfm + RELOC/fonts/tfm/public/notomath/notobmia.tfm + RELOC/fonts/tfm/public/notomath/notomi.tfm + RELOC/fonts/tfm/public/notomath/notomia.tfm + RELOC/fonts/tfm/public/notomath/notosansbmi.tfm + RELOC/fonts/tfm/public/notomath/notosansbmia.tfm + RELOC/fonts/tfm/public/notomath/notosansmi.tfm + RELOC/fonts/tfm/public/notomath/notosansmia.tfm + RELOC/fonts/type1/public/notomath/NotoMathBMI.pfb + RELOC/fonts/type1/public/notomath/NotoMathBRM.pfb + RELOC/fonts/type1/public/notomath/NotoMathMI.pfb + RELOC/fonts/type1/public/notomath/NotoMathRM.pfb + RELOC/fonts/type1/public/notomath/NotoSansMathBMI.pfb + RELOC/fonts/type1/public/notomath/NotoSansMathBRM.pfb + RELOC/fonts/type1/public/notomath/NotoSansMathMI.pfb + RELOC/fonts/type1/public/notomath/NotoSansMathRM.pfb + RELOC/fonts/vf/public/notomath/notobmi.vf + RELOC/fonts/vf/public/notomath/notobmia.vf + RELOC/fonts/vf/public/notomath/notomi.vf + RELOC/fonts/vf/public/notomath/notomia.vf + RELOC/fonts/vf/public/notomath/notosansbmi.vf + RELOC/fonts/vf/public/notomath/notosansbmia.vf + RELOC/fonts/vf/public/notomath/notosansmi.vf + RELOC/fonts/vf/public/notomath/notosansmia.vf + RELOC/tex/latex/notomath/notomath.sty + RELOC/tex/latex/notomath/omlnotomi.fd + RELOC/tex/latex/notomath/omlnotosansmi.fd +catalogue-ctan /fonts/notomath +catalogue-license ofl lppl1.3 +catalogue-topics font font-maths font-serif font-sans font-type1 font-supp +catalogue-version 1.02 + +name novel +category Package +revision 54512 +shortdesc Class for printing fiction, such as novels +relocated 1 +longdesc This LuaLaTeX document class is specifically written to meet +longdesc the needs of original fiction writers, who are typesetting +longdesc their own novels for non-color print-on-demand technology. +longdesc Built-in PDF/X is available, using new technology. The package +longdesc is well suited for detective novels, science fiction, and short +longdesc stories. It is however not recommended for creating color +longdesc picture books or dissertations. +containersize 120892 +containerchecksum 967ca49cb355529bd6c3435aff389ec5b72b5d715c50a86f73b2cfe8209436046f25e1471967259adf8592fec317632193af00c7fe18dda967bdc510096580bc +doccontainersize 4672576 +doccontainerchecksum 22b489764736c8fe428a5860c7d19cfe4a7e222d4e69005235da6bb6acb9aaa3ba4a66648a29f6a8c07fc39e72b73aa7044f60d2cfceaa0b78ef520e0291a10e +docfiles size=1339 + RELOC/doc/lualatex/novel/extras/CPmodified.otf + RELOC/doc/lualatex/novel/extras/NovelDeco-glyphs.pdf + RELOC/doc/lualatex/novel/extras/novel-Gallery-ChapterStart.pdf + RELOC/doc/lualatex/novel/extras/novel-example.tex + RELOC/doc/lualatex/novel/extras/novel-extras-README.html + RELOC/doc/lualatex/novel/extras/novel-scripts.zip + RELOC/doc/lualatex/novel/extras/novel-testimage.jpg + RELOC/doc/lualatex/novel/extras/novel-testimage.png + RELOC/doc/lualatex/novel/extras/novel-testscript.jpg + RELOC/doc/lualatex/novel/extras/novel-testscript.png + RELOC/doc/lualatex/novel/extras/novel-testsuite.tex + RELOC/doc/lualatex/novel/html-resources/10transold.png + RELOC/doc/lualatex/novel/html-resources/10trueold.png + RELOC/doc/lualatex/novel/html-resources/CPmodified-sample.png + RELOC/doc/lualatex/novel/html-resources/I-shade.png + RELOC/doc/lualatex/novel/html-resources/Iboxcap.png + RELOC/doc/lualatex/novel/html-resources/acronym2.png + RELOC/doc/lualatex/novel/html-resources/alphabetagamma.png + RELOC/doc/lualatex/novel/html-resources/authorsnote.png + RELOC/doc/lualatex/novel/html-resources/badaboom.png + RELOC/doc/lualatex/novel/html-resources/bixby-original.png + RELOC/doc/lualatex/novel/html-resources/bixby-softproof.png + RELOC/doc/lualatex/novel/html-resources/bookmanglerdashboard.png + RELOC/doc/lualatex/novel/html-resources/bookofbeirh.png + RELOC/doc/lualatex/novel/html-resources/chaptertitlesubtitle.png + RELOC/doc/lualatex/novel/html-resources/charscaletext.png + RELOC/doc/lualatex/novel/html-resources/closecrop.png + RELOC/doc/lualatex/novel/html-resources/colormax-original.png + RELOC/doc/lualatex/novel/html-resources/colormax-softproof.png + RELOC/doc/lualatex/novel/html-resources/colorsampler-softproof.png + RELOC/doc/lualatex/novel/html-resources/colorsampler.png + RELOC/doc/lualatex/novel/html-resources/cropmarks.png + RELOC/doc/lualatex/novel/html-resources/cropview.png + RELOC/doc/lualatex/novel/html-resources/ctimg35.png + RELOC/doc/lualatex/novel/html-resources/doordie.png + RELOC/doc/lualatex/novel/html-resources/dorfmcnorf.png + RELOC/doc/lualatex/novel/html-resources/dropcap-antestar.png + RELOC/doc/lualatex/novel/html-resources/dropcap-gap.png + RELOC/doc/lualatex/novel/html-resources/dropcap-scalebloat.png + RELOC/doc/lualatex/novel/html-resources/dropcap.png + RELOC/doc/lualatex/novel/html-resources/emblembar.png + RELOC/doc/lualatex/novel/html-resources/emblemdingbats.png + RELOC/doc/lualatex/novel/html-resources/emblemimg.png + RELOC/doc/lualatex/novel/html-resources/endnotetext.png + RELOC/doc/lualatex/novel/html-resources/firstletterspecial.png + RELOC/doc/lualatex/novel/html-resources/firstlinespecial.png + RELOC/doc/lualatex/novel/html-resources/fluffy-conspiracy.png + RELOC/doc/lualatex/novel/html-resources/font-tree.png + RELOC/doc/lualatex/novel/html-resources/fontbyfamily.png + RELOC/doc/lualatex/novel/html-resources/fontbyfilenamei.png + RELOC/doc/lualatex/novel/html-resources/fpaper.png + RELOC/doc/lualatex/novel/html-resources/frankenfont.png + RELOC/doc/lualatex/novel/html-resources/gnome-censored.png + RELOC/doc/lualatex/novel/html-resources/graytext.png + RELOC/doc/lualatex/novel/html-resources/head-foot-jumps.png + RELOC/doc/lualatex/novel/html-resources/headfont-default.png + RELOC/doc/lualatex/novel/html-resources/headfont-montserrat-el.png + RELOC/doc/lualatex/novel/html-resources/headfont-roboto.png + RELOC/doc/lualatex/novel/html-resources/headfoot1.png + RELOC/doc/lualatex/novel/html-resources/headfoot2.png + RELOC/doc/lualatex/novel/html-resources/headfoot3.png + RELOC/doc/lualatex/novel/html-resources/headfoot4.png + RELOC/doc/lualatex/novel/html-resources/headfoot5.png + RELOC/doc/lualatex/novel/html-resources/headfoot6.png + RELOC/doc/lualatex/novel/html-resources/human-robot-talk.png + RELOC/doc/lualatex/novel/html-resources/imgdialogs.png + RELOC/doc/lualatex/novel/html-resources/info18.png + RELOC/doc/lualatex/novel/html-resources/inlineimagest.png + RELOC/doc/lualatex/novel/html-resources/jackbequick.png + RELOC/doc/lualatex/novel/html-resources/jollybeers.png + RELOC/doc/lualatex/novel/html-resources/jpgcolorspace.png + RELOC/doc/lualatex/novel/html-resources/jump-change.png + RELOC/doc/lualatex/novel/html-resources/looseheads.png + RELOC/doc/lualatex/novel/html-resources/lowdown.png + RELOC/doc/lualatex/novel/html-resources/map.png + RELOC/doc/lualatex/novel/html-resources/margins-trim-media.png + RELOC/doc/lualatex/novel/html-resources/mcdingle.png + RELOC/doc/lualatex/novel/html-resources/mediasize.png + RELOC/doc/lualatex/novel/html-resources/megadocprops.png + RELOC/doc/lualatex/novel/html-resources/megatitlepagesm.png + RELOC/doc/lualatex/novel/html-resources/monitorgamut.png + RELOC/doc/lualatex/novel/html-resources/no-brainer.png + RELOC/doc/lualatex/novel/html-resources/novel-color-sampler.png + RELOC/doc/lualatex/novel/html-resources/overflowrule.png + RELOC/doc/lualatex/novel/html-resources/page-leaf.png + RELOC/doc/lualatex/novel/html-resources/parascale.png + RELOC/doc/lualatex/novel/html-resources/perfectbinding.png + RELOC/doc/lualatex/novel/html-resources/pngcolortype.png + RELOC/doc/lualatex/novel/html-resources/printgamut.png + RELOC/doc/lualatex/novel/html-resources/quickchapter.png + RELOC/doc/lualatex/novel/html-resources/raffaelino-original.png + RELOC/doc/lualatex/novel/html-resources/raffaelino-softproof.png + RELOC/doc/lualatex/novel/html-resources/robberies.png + RELOC/doc/lualatex/novel/html-resources/scenebreaks.png + RELOC/doc/lualatex/novel/html-resources/shademargins.png + RELOC/doc/lualatex/novel/html-resources/shakepi.png + RELOC/doc/lualatex/novel/html-resources/signature.png + RELOC/doc/lualatex/novel/html-resources/simpletoc.png + RELOC/doc/lualatex/novel/html-resources/sixpage-frontmatter.png + RELOC/doc/lualatex/novel/html-resources/skygrad.jpg + RELOC/doc/lualatex/novel/html-resources/smallcapsrealfake.png + RELOC/doc/lualatex/novel/html-resources/smfingerprint8.png + RELOC/doc/lualatex/novel/html-resources/smythsewn.png + RELOC/doc/lualatex/novel/html-resources/toc.png + RELOC/doc/lualatex/novel/html-resources/topmargins.png + RELOC/doc/lualatex/novel/html-resources/trdol.png + RELOC/doc/lualatex/novel/html-resources/trimsize.png + RELOC/doc/lualatex/novel/html-resources/ublibser.png + RELOC/doc/lualatex/novel/html-resources/unsafe-vs-margin.png + RELOC/doc/lualatex/novel/html-resources/whichgutter.png + RELOC/doc/lualatex/novel/html-resources/win10libser.png + RELOC/doc/lualatex/novel/html-resources/workedforme.png + RELOC/doc/lualatex/novel/html-resources/wrapme.png + RELOC/doc/lualatex/novel/novel-documentation.html details="Package documentation (HTML)" + RELOC/doc/lualatex/novel/novel.pdf details="Example document" + RELOC/doc/lualatex/novel/novel.tex +runfiles size=104 + RELOC/fonts/opentype/novel/NovelDeco.otf + RELOC/tex/lualatex/novel/novel-CGATSTR001.clo + RELOC/tex/lualatex/novel/novel-CalculateLayout.sty + RELOC/tex/lualatex/novel/novel-ChapterScene.sty + RELOC/tex/lualatex/novel/novel-DropCap.sty + RELOC/tex/lualatex/novel/novel-FOGRA39.clo + RELOC/tex/lualatex/novel/novel-FileData.sty + RELOC/tex/lualatex/novel/novel-Fonts.sty + RELOC/tex/lualatex/novel/novel-Footnotes.sty + RELOC/tex/lualatex/novel/novel-HeadFootStyles.sty + RELOC/tex/lualatex/novel/novel-Images.sty + RELOC/tex/lualatex/novel/novel-JC200103.clo + RELOC/tex/lualatex/novel/novel-LayoutSettings.sty + RELOC/tex/lualatex/novel/novel-Obsolete.sty + RELOC/tex/lualatex/novel/novel-PostLayout.sty + RELOC/tex/lualatex/novel/novel-Sandbox.sty + RELOC/tex/lualatex/novel/novel-TextMacros.sty + RELOC/tex/lualatex/novel/novel-microtype.cfg + RELOC/tex/lualatex/novel/novel-pdfx.sty + RELOC/tex/lualatex/novel/novel-xmppacket.sty + RELOC/tex/lualatex/novel/novel.cls +catalogue-ctan /macros/luatex/latex/novel +catalogue-license lppl1.3c ofl +catalogue-topics luatex production book-pub class +catalogue-version 1.52 + +name nowidow +category Package +revision 24066 +shortdesc Avoid widows +relocated 1 +longdesc This package provides a useful macro to manage widow lines. +containersize 1200 +containerchecksum 2dff380964c5c487a015073ade0cef996f5786b204657ec5c8948748f485c03b457f6d8caa5bce8148cdbba2623489a01b5370bcd38eb73469d07da4afb8a216 +doccontainersize 175128 +doccontainerchecksum b11e2051543215f3f19c4d1e3398564093202be07771b7b3711e9ba5359e750bd8f73118b099f82fc3bb1e9a5f202027b168c371ca6587703d82f853ced4d538 +docfiles size=44 + RELOC/doc/latex/nowidow/README details="Readme file" + RELOC/doc/latex/nowidow/nowidow.pdf details="Package documentation" +srccontainersize 3340 +srccontainerchecksum 862f3fcfb0a165473657d8e8616fa200a017c410e162bc8ce95376028fa4f2c0959e7d116152e73ba6c6cf4d39ad34d1c57f2320dc20f637e1d3a0e2cb2ec7b6 +srcfiles size=3 + RELOC/source/latex/nowidow/nowidow.dtx + RELOC/source/latex/nowidow/nowidow.ins +runfiles size=1 + RELOC/tex/latex/nowidow/nowidow.sty +catalogue-contact-repository https://github.com/raphink/nowidow +catalogue-ctan /macros/latex/contrib/nowidow +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 1.0 + +name nox +category Package +revision 30991 +shortdesc Adaptable tables +relocated 1 +longdesc The package allows data, text (including (La)TeX commands or +longdesc environments) to be formatted into a array which may be split. +containersize 4380 +containerchecksum 0061e0bc12a06b79c4339684d0598587f3aaf1c2aeacc7aa32118d7b91d3937ffe0ca50b55f5ba9d1b7a4a1c511811191160c58bc51b68dfdfa2b0cee900b409 +doccontainersize 175740 +doccontainerchecksum 2383ebed9a9c6f65d6271317b46147915afdfd6caf39893e4cfe470e302f9ed6f30ca9f725bc2bec296cc88027462765b4ca5731cd5ccf98fa5c8156b1d88987 +docfiles size=47 + RELOC/doc/latex/nox/README details="Readme (German)" language="de" + RELOC/doc/latex/nox/nox.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/nox/nox.tex +runfiles size=4 + RELOC/tex/latex/nox/nox.sty +catalogue-ctan /macros/latex/contrib/nox +catalogue-license lppl +catalogue-topics table-long table +catalogue-version 1.0 + +name npp-for-context +category Package +revision 51389 +shortdesc ConTeXt plugin for Notepad++ +relocated 1 +longdesc This package provides A plugin for Notepad++ that implements, +longdesc for the ConTeXt document processing system, a language lexer +longdesc for semantic highlighting of TeX, LuaTeX, and ConTeXt commands; +longdesc autocompletion of commands with full support for calltips (set +longdesc in columns); tagging and insertion of markup and templates, +longdesc with support for mnemonic keys. A color scheme and two +longdesc complementary Notepad++ themes: "Silver Twilight Hi" and +longdesc "Silver Twilight Lo". +containersize 664 +containerchecksum 6d5da8b6e2f2bb6b514d43e8b72157a81285b6c15cbe74891a94f21a09a313813ebcf9e3a0a12847875f13d5599436ada4e5febb694c0a480931dd62a23035c6 +doccontainersize 2136232 +doccontainerchecksum b3bddb0b9254ef9755628097ccb24ccbe86c25d3cba7a120c5d55da98a19061b716df1590a39323f57a8a698c5aafb5ecbe8b27d6505f2ba4acdf1ccdbcf82cd +docfiles size=682 + RELOC/doc/context/third/npp-for-context/Npp-for-ConTeXt.sha256sum + RELOC/doc/context/third/npp-for-context/Npp-for-ConTeXt.zip + RELOC/doc/context/third/npp-for-context/README.md details="Readme" + RELOC/doc/context/third/npp-for-context/doc/autocompletion-command.jpg + RELOC/doc/context/third/npp-for-context/doc/autocompletion-word.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi01.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi02.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi03.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi04.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi05.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi06.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi07.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi08.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi09.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi10.jpg + RELOC/doc/context/third/npp-for-context/doc/calltip.jpg + RELOC/doc/context/third/npp-for-context/doc/dividingline.jpg + RELOC/doc/context/third/npp-for-context/doc/keywindow.jpg + RELOC/doc/context/third/npp-for-context/doc/npp-context-manual.pdf details="Package documentation" + RELOC/doc/context/third/npp-for-context/doc/npp-context-manual.tex + RELOC/doc/context/third/npp-for-context/doc/nppexec1.jpg + RELOC/doc/context/third/npp-for-context/doc/nppexec2.jpg + RELOC/doc/context/third/npp-for-context/doc/nppexec3.jpg + RELOC/doc/context/third/npp-for-context/doc/rightclickmenu.jpg + RELOC/doc/context/third/npp-for-context/doc/scite-tools.jpg + RELOC/doc/context/third/npp-for-context/doc/style-configurator.jpg + 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-license noinfo +catalogue-topics editor-extn +catalogue-version 0.98 + +name nrc +category Package +revision 29027 +shortdesc Class for the NRC technical journals +relocated 1 +longdesc Macros, and some documentation, for typesetting papers for +longdesc submission to journals published by the National Research +longdesc Council Research Press. At present, only nrc2.cls (for +longdesc two-column layout) should be used. +containersize 14420 +containerchecksum 2d93fc25d0305b8bee0e5e9ae61bba492bc265e023980a411ffa521f15746c6d73940e352c886ed5dbe08502f472a63559191aea44c3801518bca8b28d0b753a +doccontainersize 208276 +doccontainerchecksum 35f86598105db616ea379175f3a098cf7c94f4a0a8836302de664c7bb65bbb5f72f41c5c9dc58bf336781a23553ec49e0a5c4d7d0be12b1cff68108aba77e88d +docfiles size=75 + RELOC/doc/latex/nrc/00-2013-feb-authors.txt details="Notes for authors" + RELOC/doc/latex/nrc/README details="Readme" + RELOC/doc/latex/nrc/userguide.pdf details="Package documentation" + RELOC/doc/latex/nrc/userguide.tex +srccontainersize 37568 +srccontainerchecksum 3404facf13d3ddaaf4a9aa295cd7c0777308502075d1ba70bfd6be6e8158eea6ff4b88db2414f8ea5e758ebdf52dcd5f44b6bb55e903c0e11dc6260b02a1779d +srcfiles size=41 + RELOC/source/latex/nrc/nrc.dtx + RELOC/source/latex/nrc/nrc.ins +runfiles size=34 + RELOC/tex/latex/nrc/nrc1.cls + RELOC/tex/latex/nrc/nrc1.sty + RELOC/tex/latex/nrc/nrc2.cls + RELOC/tex/latex/nrc/nrc2.sty +catalogue-ctan /macros/latex/contrib/nrc +catalogue-license lppl +catalogue-topics journalpub physics +catalogue-version 2.01a + +name ntgclass +category Package +revision 56959 +shortdesc "European" versions of standard classes +relocated 1 +longdesc The bundle offers versions of the standard LaTeX article and +longdesc report classes, rewritten to reflect a more European design, +longdesc and the a4 package, which is better tuned to the shape of a4 +longdesc paper than is the a4paper class option of the standard classes. +longdesc The classes include several for article and report +longdesc requirements, and a letter class. The elements of the bundle +longdesc were designed by members of the Dutch TeX Users Group NTG. +containersize 16060 +containerchecksum bb1cd3532f91bde7768a027d51216bd56c8401cbcec4996587760e3289d892d2f1d4efe834d55146026ecab413b04d1f4e8e132a53e3b6f925f4aaf0bc1124f9 +doccontainersize 1711884 +doccontainerchecksum a58debb1c6a07c63dfb45ea6647db75bb09217a2c7680318cd6ee56575dfde985ae88ba361ea9ed1adb26ecea430e851599ccfa900292e4847b70e02eff65887 +docfiles size=482 + RELOC/doc/latex/ntgclass/CATALOG + RELOC/doc/latex/ntgclass/ChangeLog + RELOC/doc/latex/ntgclass/MANIFEST + RELOC/doc/latex/ntgclass/README details="Readme" + RELOC/doc/latex/ntgclass/a4.pdf + RELOC/doc/latex/ntgclass/artdoc.pdf details="The artikel (article) classes" language="nl" + RELOC/doc/latex/ntgclass/artdoc.tex + RELOC/doc/latex/ntgclass/brief-sample.pdf + RELOC/doc/latex/ntgclass/brief-sample.tex + RELOC/doc/latex/ntgclass/brief.pdf + RELOC/doc/latex/ntgclass/briefdoc.pdf details="The brief (letter) class" language="nl" + RELOC/doc/latex/ntgclass/briefdoc.tex + RELOC/doc/latex/ntgclass/classdoc.pdf details="Introduction to the classes" + RELOC/doc/latex/ntgclass/classdoc.tex + RELOC/doc/latex/ntgclass/ntgclass.pdf + RELOC/doc/latex/ntgclass/rapdoc.pdf details="The rapport (report) classes" language="nl" + RELOC/doc/latex/ntgclass/rapdoc.tex +srccontainersize 55656 +srccontainerchecksum 989942960e4cc5320f3bc877cecec195dca4f8263b3de1b0d2a233adedef0380cabc5d017cb256ff8c46889df8878bc68a855a754cdc8b9dd0cd6a7b05242c08 +srcfiles size=76 + RELOC/source/latex/ntgclass/a4.dtx + RELOC/source/latex/ntgclass/a4.ins + RELOC/source/latex/ntgclass/brief.dtx + RELOC/source/latex/ntgclass/ntgclass.dtx + RELOC/source/latex/ntgclass/ntgclass.ins +runfiles size=71 + RELOC/tex/latex/ntgclass/a4.sty + RELOC/tex/latex/ntgclass/artikel1.cls + RELOC/tex/latex/ntgclass/artikel2.cls + RELOC/tex/latex/ntgclass/artikel3.cls + RELOC/tex/latex/ntgclass/boek.cls + RELOC/tex/latex/ntgclass/boek3.cls + RELOC/tex/latex/ntgclass/brief.cls + RELOC/tex/latex/ntgclass/ntg10.clo + RELOC/tex/latex/ntgclass/ntg11.clo + RELOC/tex/latex/ntgclass/ntg12.clo + RELOC/tex/latex/ntgclass/rapport1.cls + RELOC/tex/latex/ntgclass/rapport3.cls +catalogue-ctan /macros/latex/contrib/ntgclass +catalogue-license lppl1.3 +catalogue-topics class letter +catalogue-version 2.1e + +name nth +category Package +revision 54252 +shortdesc Generate English ordinal numbers +relocated 1 +longdesc The command \nth{<number>} generates English ordinal numbers of +longdesc the form 1st, 2nd, 3rd, 4th, etc. LaTeX package options may +longdesc specify that the ordinal mark be superscripted, and that +longdesc negative numbers may be treated; Plain TeX users have no access +longdesc to package options, so need to redefine macros for these +longdesc changes. +containersize 1380 +containerchecksum e94365bee89f78b13ec22d8d34ac78aaf50f060f9282c0529d98518ce1e5b7f7995bd2da1d17654ed795f7555e7dcfd9d51399f4a83affc059eb3a760a76bf97 +runfiles size=1 + RELOC/tex/generic/nth/nth.sty +catalogue-also engord +catalogue-ctan /macros/generic/misc/nth.sty +catalogue-license pd +catalogue-topics numbers + +name ntheorem +category Package +revision 27609 +shortdesc Enhanced theorem environment +relocated 1 +longdesc The package offers enhancements for theorem-like environments: +longdesc easier control of layout; proper placement of endmarks even +longdesc when the environment ends with \end{enumerate} or +longdesc \end{displaymath} (including support for amsmath +longdesc displayed-equation environments); and support for making a list +longdesc of theorems, analagous to \listoffigures. +containersize 9652 +containerchecksum aabab9d6f1a5d9e9bd2ee2ec4b9ca8200098a8f3dc786b9c06d4b0e00431dd66f32a254d452bce7e1bb595454e178dcdd71d724b8d835b6f1c9ad9de41107295 +doccontainersize 420704 +doccontainerchecksum fdea81cedc9ceca6ee29ee006867a05f018f210db2cb59c763adc4bc15db65a7e96ffc93bcd576a4c1a50e7e55d4b199132371686538216eba6fed65dce77ba1 +docfiles size=118 + RELOC/doc/latex/ntheorem/README details="Readme" + RELOC/doc/latex/ntheorem/ntheorem.pdf details="Package documentation (English)" language="en" +srccontainersize 46428 +srccontainerchecksum bb0eb98e3344c4be782d113a0e5f1c91d615a5530e1c0a786938b1cf608fe8828d59d365c0d1011e62517f0f76139ea13bad1857f2e1315a2b919af1de3335d2 +srcfiles size=52 + RELOC/source/latex/ntheorem/ntheorem.drv + RELOC/source/latex/ntheorem/ntheorem.dtx + RELOC/source/latex/ntheorem/ntheorem.ins +runfiles size=12 + RELOC/tex/latex/ntheorem/ntheorem.std + RELOC/tex/latex/ntheorem/ntheorem.sty +catalogue-also amsthm thmtools empheq +catalogue-contact-home http://user.informatik.uni-goettingen.de/~may/Ntheorem/ +catalogue-ctan /macros/latex/contrib/ntheorem +catalogue-license lppl +catalogue-topics maths-theorem +catalogue-version 1.33 + +name ntheorem-vn +category Package +revision 15878 +shortdesc Vietnamese translation of documentation of ntheorem +relocated 1 +longdesc This is a translation of the documentation provided with +longdesc ntheorem. +containersize 404 +containerchecksum 90460e92cb52bbf8ac9b56bb950d36551b40ba260a9745e8f4d339bbca855286f8682c1a5bd7dd4ecb53e85448f96d558e6c35ffb42d8b862d4680930f3a64ab +doccontainersize 379260 +doccontainerchecksum e097290ec9f9696aaabaef4dce11bec4337050848ee547535c30a9ecdf12a1e0be014f905b235fa1d851ad2c20426cd4a9a442a19475063dd4fa73945c3e1780 +docfiles size=145 + RELOC/doc/latex/ntheorem-vn/COPYING + RELOC/doc/latex/ntheorem-vn/FILELIST + RELOC/doc/latex/ntheorem-vn/README details="Readme" + RELOC/doc/latex/ntheorem-vn/ntheorem-doc-vn.pdf details="The document itself" language="vi" + RELOC/doc/latex/ntheorem-vn/src/Makefile + RELOC/doc/latex/ntheorem-vn/src/README.src + RELOC/doc/latex/ntheorem-vn/src/TODO + RELOC/doc/latex/ntheorem-vn/src/endmarks.tex + RELOC/doc/latex/ntheorem-vn/src/example.tex + RELOC/doc/latex/ntheorem-vn/src/help.tex + RELOC/doc/latex/ntheorem-vn/src/interference.tex + RELOC/doc/latex/ntheorem-vn/src/intro.tex + RELOC/doc/latex/ntheorem-vn/src/license.tex + RELOC/doc/latex/ntheorem-vn/src/ntheorem-doc-vn.tex + RELOC/doc/latex/ntheorem-vn/src/preamble.tex + RELOC/doc/latex/ntheorem-vn/src/thanks.tex + RELOC/doc/latex/ntheorem-vn/src/title-abstract.tex + RELOC/doc/latex/ntheorem-vn/src/user-interface.tex + RELOC/doc/latex/ntheorem-vn/test.pdf + RELOC/doc/latex/ntheorem-vn/test.tex +catalogue-ctan /info/translations/ntheorem/vn +catalogue-license lppl +catalogue-topics vietnamese-doc translation +catalogue-version 1.203 + +name nuc +category Package +revision 22256 +shortdesc Notation for nuclear isotopes +relocated 1 +longdesc A simple package providing nuclear sub- and superscripts as +longdesc commonly used in radiochemistry, radiation science, and nuclear +longdesc physics and engineering applications. Isotopes which have Z +longdesc with more digits than A require special spacing to appear +longdesc properly; this spacing is supported in the package. +containersize 1788 +containerchecksum d540e5dc8a3edb41994ef4ed8af6a51fea544ac929ef059fc50cd561891e02e9ee9b55a62782757101cfc5eface3a170bd585c144e7c8e79e191299527f979c6 +doccontainersize 80404 +doccontainerchecksum ac118243f5fa4c7a4000344dfd5793dfbacc4d7a16a7031fca6305578e06bdd627473eb065a13c4d9cc5d9ef3c1712202c2d65a913c75043e36221fc7df25ac1 +docfiles size=23 + RELOC/doc/latex/nuc/README details="Readme" + RELOC/doc/latex/nuc/nuc.pdf details="Package documentation" + RELOC/doc/latex/nuc/nuc.tex +runfiles size=3 + RELOC/tex/latex/nuc/nuc.sty +catalogue-ctan /macros/latex/contrib/nuc +catalogue-license lppl +catalogue-topics physics subsup-pos +catalogue-version 0.1 + +name nucleardata +category Package +revision 47307 +shortdesc Provides data about atomic nuclides for documents +relocated 1 +longdesc The package provides data and commands for including nuclear +longdesc and atomic mass and energy data in LaTeX documents. It uses the +longdesc PythonTeX package and requires pythontex.exe to be called with +longdesc the TeX file as the argument. +containersize 128004 +containerchecksum 68f9d542701bb9d2db956e70784dfce8a14058b5cab5c8316f9d76d59d20de4bc7fa05f22cfe318312b9ecd823a0d0b5cd084b809bcd615217f14e9e0ba76de8 +doccontainersize 407408 +doccontainerchecksum 3d03a8b301c91fcc3e8221f913574b4542e0aa645d83e443d117ad0d69b7198c4780207f0a5e36f7e24f538a249097e1ac4d828e192f6dd22684e905ce9f1cb6 +docfiles size=102 + RELOC/doc/latex/nucleardata/README details="Readme" + RELOC/doc/latex/nucleardata/nuccommandtest.pdf + RELOC/doc/latex/nucleardata/nuccommandtest.tex + RELOC/doc/latex/nucleardata/nucleardata.pdf details="Package documentation" +srccontainersize 132560 +srccontainerchecksum cf26f591795ce6db64ee7548c0384764c42f2eda260b5e5c1d56f7f08c54e13fef84616ea0a3bf9a9bfbf95ca139adf675eaae3047c80faf49e14d6330cb25c9 +srcfiles size=121 + RELOC/source/latex/nucleardata/nucleardata.dtx + RELOC/source/latex/nucleardata/nucleardata.ins +runfiles size=120 + RELOC/tex/latex/nucleardata/elementlist.csv + RELOC/tex/latex/nucleardata/massdata.csv + RELOC/tex/latex/nucleardata/nucleardata.hd + RELOC/tex/latex/nucleardata/nucleardata.pytxcode + RELOC/tex/latex/nucleardata/nucleardata.sty +catalogue-ctan /macros/latex/contrib/nucleardata +catalogue-license lppl1.3 +catalogue-topics callback physics chemistry +catalogue-version 1.1 + +name numberedblock +category Package +revision 33109 +shortdesc Print a block of code, with unique index number +relocated 1 +longdesc The package has been created for the convenience of the report +longdesc writer; it provides the means to number, and label, code-block +longdesc snippets in your document. In this way, you can (unambiguously) +longdesc refer to each snippet elsewhere in your document. +containersize 2516 +containerchecksum d45a69881dee3aa3b6de69587b8c59d889fcae528c3c66f10cc14d653dbf7281e9ef4045dd2595d1a5c7305686bb0d12696bc00b672c5907dc58481a4e00d70e +doccontainersize 73436 +doccontainerchecksum 99443d809e77b32fafaf59b3faecbd121f038e3ce8e054304e8fdae6b145a0d19a67b5e7d003db72f06528d975c3e543a2fb9bbfbae9f48be460b1a344a0d2c8 +docfiles size=21 + RELOC/doc/latex/numberedblock/README details="Readme" + RELOC/doc/latex/numberedblock/testnumberedblock.pdf details="Demonstration of use" + RELOC/doc/latex/numberedblock/testnumberedblock.tex +runfiles size=2 + RELOC/tex/latex/numberedblock/numberedblock.sty +catalogue-ctan /macros/latex/contrib/numberedblock +catalogue-license lppl1.3 +catalogue-topics listing label-ref +catalogue-version 1.10 + +name numberpt +category Package +revision 51640 +shortdesc Counters spelled out in Portuguese +relocated 1 +longdesc This packages defines commands to display counters spelled out +longdesc in Portuguese. The styles are \numberpt for "all lowercase" +longdesc \Numberpt for "First word capitalized" \NumberPt for "All +longdesc Capitalized" \NUMBERPT for "ALL UPPERCASE" For example, +longdesc \renewcommand{\thechapter}{\NumberPt{chapter}} makes chapter +longdesc titles to be rendered as "Capitulo Um", "Capitulo Dois" etc. +longdesc Options are offered to select variations in the spelling of +longdesc "14", or Brazilian vs. European Portuguese forms in the +longdesc spelling of "16", "17", and "19". The package requires expl3 +longdesc and xparse. +containersize 2452 +containerchecksum c23fc54514b98cbc31e095f6b1ff37d37eef75146a3eb14e230ee75b71f6d506f148de643ec5e890a565b544b6d05436d47033f0c00ecdccdab697336b61dbf9 +doccontainersize 326496 +doccontainerchecksum 8b3723dbcbfa0163d7113c96ebcdc5a2262c169a94b733dc4af3bc263b119addf58042817dc8437ea5583ed93be1f3d5485ed76c2d704b20d303b5efa8bf41cf +docfiles size=81 + RELOC/doc/latex/numberpt/README.md details="Readme" + RELOC/doc/latex/numberpt/numberpt.pdf details="Package documentation" +srccontainersize 4400 +srccontainerchecksum 967569a1ca42c00cac46f77cf2dbe61d1aebbb89d3754d69ff3beb848d174fbf544374723d33a8c4ec8b98b2c4d93f32dfd1570112a149afad934eb07bff4ef1 +srcfiles size=5 + RELOC/source/latex/numberpt/numberpt.dtx + RELOC/source/latex/numberpt/numberpt.ins +runfiles size=2 + RELOC/tex/latex/numberpt/numberpt.sty +catalogue-ctan /macros/latex/contrib/numberpt +catalogue-license lppl1.3c +catalogue-topics portuguese numbers expl3 +catalogue-version 1.0 + +name numerica +category Package +revision 57759 +shortdesc Numerically evaluate mathematical expressions in LaTeX form +relocated 1 +longdesc This package defines a command to wrap around a mathematical +longdesc expression in its LaTeX form and, once values are assigned to +longdesc variables, numerically evaluate it. The intent is to avoid the +longdesc need to modify the LaTeX form of the expression being +longdesc evaluated. For programs with a preview facility like LyX, or +longdesc compile-as-you-go systems, interactive back-of-envelope +longdesc calculations and numerical exploration are possible within the +longdesc document being worked on. The package requires the bundles +longdesc l3kernel and l3packages, and the amsmath and mathtools +longdesc packages. Other commands iterate and find fixed points of +longdesc functions of a single variable, find the zeros or extrema of +longdesc such functions, calculate the terms of recurrence relations, +longdesc and create multi-column tables of function values (which +longdesc requires the booktabs package). +containersize 25808 +containerchecksum 2d4b5de317de660b01cf242fa623f5b37bea19cab30c7750b056560c1956718eb4903fcd4bc32323ccf0888ab4340c7d70e9cb8b66bb4aedeaa07a9faad32880 +doccontainersize 1821152 +doccontainerchecksum 062ef217d285753caef67842b30e395799236d0f989e2ea943b64b92b468c2426203d41a08f869f0c8c30554dc7391f5a097b99f9e4f4fdd31c1ce038ba33444 +docfiles size=616 + RELOC/doc/latex/numerica/README.txt details="Readme" + RELOC/doc/latex/numerica/numerica-basics.pdf details="Basic package documentation" + RELOC/doc/latex/numerica/numerica-basics.tex + RELOC/doc/latex/numerica/numerica-plus.pdf details="Documentation of the plus module" + RELOC/doc/latex/numerica/numerica-plus.tex + RELOC/doc/latex/numerica/numerica-tables.pdf details="Documentation of the tables module" + RELOC/doc/latex/numerica/numerica-tables.tex +runfiles size=43 + RELOC/tex/latex/numerica/numerica-lyx.def + RELOC/tex/latex/numerica/numerica-plus.def + RELOC/tex/latex/numerica/numerica-tables.def + RELOC/tex/latex/numerica/numerica.sty +catalogue-ctan /macros/latex/contrib/numerica +catalogue-license lppl1.3c +catalogue-topics maths calculation expl3 +catalogue-version 1.0.0 + +name numericplots +category Package +revision 31729 +shortdesc Plot numeric data (including Matlab export) using PSTricks +relocated 1 +longdesc Plotting numeric data is a task which has often to be done for +longdesc scientific papers. LaTeX itself provides no facilities for +longdesc drawing more than the simplest plots from supplied data. The +longdesc package will process user input, and uses PSTricks to plot the +longdesc results. The package provides Matlab functions to transform +longdesc Matlab results to plottable data. +containersize 8808 +containerchecksum 6b51a7c68357dced9627d3c618a167d689b573ea44c2f36de5417735f39f5b3d1034558cf188bad2da5eb25f81a2bdee3df6059b8c14879770c3b300422cf016 +doccontainersize 442268 +doccontainerchecksum 1c9f9856ec2f8cfef61829256f1076099e6bcb79cb45e8155116d6c24feaa52f481c739593c6cc51df803fa76e8ec38b8d276e796660327a2bd1d86957896332 +docfiles size=373 + RELOC/doc/latex/numericplots/License.txt + RELOC/doc/latex/numericplots/NumericPlots.pdf details="Package documentation" + RELOC/doc/latex/numericplots/README details="Readme" + RELOC/doc/latex/numericplots/README.TEXLIVE + RELOC/doc/latex/numericplots/src/BasicFunctionality.tex + RELOC/doc/latex/numericplots/src/FurtherExamples.tex + RELOC/doc/latex/numericplots/src/MatlabSupport.tex + RELOC/doc/latex/numericplots/src/MultiplePlots.tex + RELOC/doc/latex/numericplots/src/NumericPlotsDoc.tex + RELOC/doc/latex/numericplots/src/Roll406_Ref2288.tex + RELOC/doc/latex/numericplots/src/TechnicalDetails.tex + RELOC/doc/latex/numericplots/src/TestPlots.tex + RELOC/doc/latex/numericplots/src/examples/BodeDiagramm.tex + RELOC/doc/latex/numericplots/src/examples/DataTestRealData.tex + RELOC/doc/latex/numericplots/src/examples/DefineData.tex + RELOC/doc/latex/numericplots/src/examples/LabelsNTickLabels.tex + RELOC/doc/latex/numericplots/src/examples/NyquistPlot.tex + RELOC/doc/latex/numericplots/src/examples/Sprungantwort_PT1Glied.tex + RELOC/doc/latex/numericplots/src/examples/basic_Boxes.tex + RELOC/doc/latex/numericplots/src/examples/basic_EasyPlot.tex + RELOC/doc/latex/numericplots/src/examples/basic_Grid.tex + RELOC/doc/latex/numericplots/src/examples/basic_Labels.tex + RELOC/doc/latex/numericplots/src/examples/basic_Legend.tex + RELOC/doc/latex/numericplots/src/examples/basic_LegendI.tex + RELOC/doc/latex/numericplots/src/examples/basic_LegendII.tex + RELOC/doc/latex/numericplots/src/examples/basic_LegendIII.tex + RELOC/doc/latex/numericplots/src/examples/basic_LineStyles.tex + RELOC/doc/latex/numericplots/src/examples/basic_Lines.tex + RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicI.tex + RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicII.tex + RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicIII.tex + RELOC/doc/latex/numericplots/src/examples/basic_MultipleData.tex + RELOC/doc/latex/numericplots/src/examples/basic_Objects.tex + RELOC/doc/latex/numericplots/src/examples/basic_PlaceObjects.tex + RELOC/doc/latex/numericplots/src/examples/basic_PlaceObjectsII.tex + RELOC/doc/latex/numericplots/src/examples/basic_PlotWHoles.tex + RELOC/doc/latex/numericplots/src/examples/basic_UseRput.tex + RELOC/doc/latex/numericplots/src/examples/basic_UserLinestyles.tex + RELOC/doc/latex/numericplots/src/examples/data_BodeDiagrammLinearerTerm.tex + RELOC/doc/latex/numericplots/src/examples/data_Nyquist.tex + RELOC/doc/latex/numericplots/src/examples/data_SprungantwortPT1Glied.tex + RELOC/doc/latex/numericplots/src/examples/furtherEx_TickLabels.tex + RELOC/doc/latex/numericplots/src/examples/multiplots_exampleI.tex + RELOC/doc/latex/numericplots/src/examples/multiplots_exampleII.tex + RELOC/doc/latex/numericplots/src/examples/multiplots_exampleIII.tex + RELOC/doc/latex/numericplots/src/fig_NoiseData_ClosedLine.eps + RELOC/doc/latex/numericplots/src/fig_NoiseData_OpenLine.eps + RELOC/doc/latex/numericplots/src/history.tex + RELOC/doc/latex/numericplots/src/keys_NumericDataPlot.tex + RELOC/doc/latex/numericplots/src/options.tex +runfiles size=16 + RELOC/tex/latex/numericplots/NumericPlots.sty + RELOC/tex/latex/numericplots/NumericPlots_TickLabels.tex + RELOC/tex/latex/numericplots/NumericPlots_labels.tex + RELOC/tex/latex/numericplots/NumericPlots_legend.tex + RELOC/tex/latex/numericplots/NumericPlots_macros.tex + RELOC/tex/latex/numericplots/NumericPlots_styles.tex +catalogue-also pst-plot pgfplots +catalogue-ctan /graphics/pstricks/contrib/numericplots +catalogue-license gpl3 +catalogue-topics graphics-plot +catalogue-version 2.0.2 + +name numname +category Package +revision 18130 +shortdesc Convert a number to its English expression +relocated 1 +longdesc The package can generate cardinal (one, two, ...) and ordinal +longdesc (first, second, ...) numbers. The code derives from the memoir +longdesc class, and is extracted for the convenience of non-users of +longdesc that class. +containersize 2944 +containerchecksum b2859430992fa6ee99f4d96f58cabe26b0f216d5e3b512c69b4db74738d933ea8d54503a61257d304201ac3fbc2ba49e908eeca5953ccc0f0023cbbe8b3df76c +doccontainersize 110948 +doccontainerchecksum 41aaa9057415ad83177f416e43fde4c8c81e335b2f3c025cbc53ffe1d9d61fc05dfe33221c16f1d652837e4ab5a797f60391fb4c319339517090ad0e2ffe66bb +docfiles size=30 + RELOC/doc/latex/numname/README details="Readme" + RELOC/doc/latex/numname/numname.pdf details="Package documentation" + RELOC/doc/latex/numname/numname.tex +runfiles size=5 + RELOC/tex/latex/numname/numname.sty +catalogue-ctan /macros/latex/contrib/numname +catalogue-license lppl +catalogue-topics numbers + +name numnameru +category Package +revision 44895 +shortdesc Converts a number to the russian spelled out name +relocated 1 +longdesc This package converts a numerical number to the russian spelled +longdesc out name of the number. For example, 1 - odin, 2 - dva, 12 - +longdesc dvenadtsat'. +containersize 2512 +containerchecksum c6f92a720fc5baf6f55c3bc18e22113de0f7cad8a051c2019360f5f3c64eaa450bb12d6c361c52a5a802f558ff8d2cbfaa35897682d6ad218e9adbbc788f3c57 +doccontainersize 68608 +doccontainerchecksum 5e67f1908356e1f21e672e63a8873e46ebb36af39e55a64c174c3bc5c49057c6d19ac36523c34a7f1c1fc53346f6ddde8fd239ca88b5790ebba1eb8b7dbeb0ed +docfiles size=19 + RELOC/doc/latex/numnameru/README details="Readme" + RELOC/doc/latex/numnameru/numnameru.pdf details="Package documentation" + RELOC/doc/latex/numnameru/numnameru.tex +runfiles size=3 + RELOC/tex/latex/numnameru/numnameru.sty +catalogue-also numname +catalogue-ctan /macros/latex/contrib/numnameru +catalogue-license lppl1.3 +catalogue-topics numbers + +name numprint +category Package +revision 27498 +shortdesc Print numbers with separators and exponent if necessary +relocated 1 +longdesc The package numprint prints numbers with a separator every +longdesc three digits and converts numbers given as 12345.6e789 to +longdesc 12\,345,6\cdot 10^{789}. Numbers are printed in the current +longdesc mode (text or math) in order to use the correct font. Many +longdesc things, including the decimal sign, the thousand separator, as +longdesc well as the product sign can be changed by the user, e.g., to +longdesc reach 12,345.6\times 10^{789}. If an optional argument is given +longdesc it is printed upright as unit. Numbers can be rounded to a +longdesc given number of digits. The package supports an automatic, +longdesc language-dependent change of the number format. Tabular +longdesc alignment using the tabular(*), array, tabularx, and longtable +longdesc environments (similar to the dcolumn and rccol packages) is +longdesc supported using all features of numprint. Additional text can +longdesc be added before and after the formatted number. +containersize 10552 +containerchecksum cdebfa502a461292b02186b146ad8086f46447b5d8a0292fd7943d93a39796eff1710563866506679e903b7a4d415af9a8d863fa81a62395c7bdeec2cd68e66f +doccontainersize 1178624 +doccontainerchecksum b821566e6fc532425c8f1b901b5613c763eb392461644850428707105626b6eb1a53784d6a693e7f9fe2aa612b72b4d5a38ddf65f22a0d022981771b2b303d04 +docfiles size=297 + RELOC/doc/latex/numprint/ChangeLog.nbaseprt + RELOC/doc/latex/numprint/ChangeLog.numprint + RELOC/doc/latex/numprint/Makefile + RELOC/doc/latex/numprint/README + RELOC/doc/latex/numprint/getversion.tex + RELOC/doc/latex/numprint/nbaseprt.pdf + RELOC/doc/latex/numprint/nbaseprttest.tex + RELOC/doc/latex/numprint/numprint.pdf details="Package documentation" + RELOC/doc/latex/numprint/numprinttest.tex +srccontainersize 42884 +srccontainerchecksum d4af01527564c9818840a87d9c876ec8d8cf6e7712913ea3deae4012fd0d4f0dae19e4016fc205814620d1cf97f3c12b98f1003fc6fc81857101d2ecd90fbe83 +srcfiles size=61 + RELOC/source/latex/numprint/nbaseprt.dtx + RELOC/source/latex/numprint/numprint.dtx + RELOC/source/latex/numprint/numprint.ins + RELOC/source/latex/numprint/numprint032.dtx +runfiles size=17 + RELOC/tex/latex/numprint/nbaseprt.sty + RELOC/tex/latex/numprint/numprint.sty + RELOC/tex/latex/numprint/numprint032.sty +catalogue-ctan /macros/latex/contrib/numprint +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1.39 + +name numspell +category Package +revision 56912 +shortdesc Spelling cardinal and ordinal numbers +relocated 1 +longdesc This package supports the spelling of cardinal and ordinal +longdesc numbers. Supported languages are English, French, German, +longdesc Hungarian, and Italian. The package requires xstring and +longdesc iflang. +containersize 8856 +containerchecksum e3731b00f027319e67ece82e727fde32be4fd80ba508b173f54f89edab3fdf5a98148ea925f68039adec2c09fa7d2284d1809d5a95aebd0e0d364f1b8b82b698 +doccontainersize 226176 +doccontainerchecksum 368b5af91cf3d8142bd243d42a6f3f939a2172aa4837487b78de51caa5ff5801123af307c14aa7b66a32fa791268503bc7ed6ed1cc7ddbaf59c84a57914d615c +docfiles size=60 + RELOC/doc/latex/numspell/README details="Readme" + RELOC/doc/latex/numspell/numspell.pdf details="Package documentation" + RELOC/doc/latex/numspell/numspell.tex +runfiles size=25 + RELOC/tex/latex/numspell/numspell-english.sty + RELOC/tex/latex/numspell/numspell-french.sty + RELOC/tex/latex/numspell/numspell-german.sty + RELOC/tex/latex/numspell/numspell-italian.sty + RELOC/tex/latex/numspell/numspell-magyar.sty + RELOC/tex/latex/numspell/numspell.sty +catalogue-ctan /macros/latex/contrib/numspell +catalogue-license lppl1.3 +catalogue-topics numbers multilingual english french german hungarian italian +catalogue-version 1.4 + +name nunito +category Package +revision 57429 +shortdesc The Nunito font face with support for LaTeX and pdfLaTeX +relocated 1 +longdesc This package provides LaTeX and pdfLaTeX support for the Nunito +longdesc family of fonts, designed by Vernon Adams, Cyreal. +execute addMap Nunito.map +containersize 4627580 +containerchecksum 920e074987e7e75fa6db92e3c05d76f7aad3e7d9b4f0166a8a8ca79bc5183549299b56a10f1cb6c7fdaa63f7f55aa6b9c1b2bcb4cbf03567b26e9fcb0240472e +doccontainersize 182360 +doccontainerchecksum e0de75f22da96d229a6465a4d47baa8e4c3199567f8d2e3255893e5b2a2d16ab73eabec1a103b355518c4cb98ea3146ff067af54938c21a910aa65aee3f429db +docfiles size=48 + RELOC/doc/fonts/nunito/LICENSE.TXT + RELOC/doc/fonts/nunito/README details="Readme" + RELOC/doc/fonts/nunito/nunito-samples.pdf details="Font samples" + RELOC/doc/fonts/nunito/nunito-samples.tex +runfiles size=2919 + RELOC/fonts/enc/dvips/nunito/a_2owfxx.enc + RELOC/fonts/enc/dvips/nunito/a_35ovjx.enc + RELOC/fonts/enc/dvips/nunito/a_g4f2r6.enc + RELOC/fonts/enc/dvips/nunito/a_hxzdi6.enc + RELOC/fonts/enc/dvips/nunito/a_lzhlbi.enc + RELOC/fonts/enc/dvips/nunito/a_nr4mc7.enc + RELOC/fonts/enc/dvips/nunito/a_wslvgt.enc + RELOC/fonts/enc/dvips/nunito/a_xcjjqo.enc + RELOC/fonts/enc/dvips/nunito/a_xv7ze7.enc + RELOC/fonts/enc/dvips/nunito/a_xzgqel.enc + RELOC/fonts/map/dvips/nunito/Nunito.map + RELOC/fonts/opentype/public/nunito/Nunito-Black.otf + RELOC/fonts/opentype/public/nunito/Nunito-BlackItalic.otf + RELOC/fonts/opentype/public/nunito/Nunito-Bold.otf + RELOC/fonts/opentype/public/nunito/Nunito-BoldItalic.otf + RELOC/fonts/opentype/public/nunito/Nunito-ExtraBold.otf + RELOC/fonts/opentype/public/nunito/Nunito-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/nunito/Nunito-ExtraLight.otf + RELOC/fonts/opentype/public/nunito/Nunito-ExtraLightItalic.otf + RELOC/fonts/opentype/public/nunito/Nunito-Italic.otf + RELOC/fonts/opentype/public/nunito/Nunito-Light.otf + RELOC/fonts/opentype/public/nunito/Nunito-LightItalic.otf + RELOC/fonts/opentype/public/nunito/Nunito-Regular.otf + RELOC/fonts/opentype/public/nunito/Nunito-SemiBold.otf + RELOC/fonts/opentype/public/nunito/Nunito-SemiBoldItalic.otf + RELOC/fonts/tfm/public/nunito/Nunito-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/nunito/Nunito-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/nunito/Nunito-Black.pfb + RELOC/fonts/type1/public/nunito/Nunito-BlackItalic.pfb + RELOC/fonts/type1/public/nunito/Nunito-Bold.pfb + RELOC/fonts/type1/public/nunito/Nunito-BoldItalic.pfb + RELOC/fonts/type1/public/nunito/Nunito-ExtraBold.pfb + RELOC/fonts/type1/public/nunito/Nunito-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/nunito/Nunito-ExtraLight.pfb + RELOC/fonts/type1/public/nunito/Nunito-ExtraLightItalic.pfb + RELOC/fonts/type1/public/nunito/Nunito-Italic.pfb + RELOC/fonts/type1/public/nunito/Nunito-Light.pfb + RELOC/fonts/type1/public/nunito/Nunito-LightItalic.pfb + RELOC/fonts/type1/public/nunito/Nunito-Regular.pfb + RELOC/fonts/type1/public/nunito/Nunito-SemiBold.pfb + RELOC/fonts/type1/public/nunito/Nunito-SemiBoldItalic.pfb + RELOC/fonts/vf/public/nunito/Nunito-Black-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Black-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Black-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Black-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Black-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Black-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Black-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Black-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Light-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/nunito/Nunito-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/nunito/LY1Nunito-Sup.fd + RELOC/tex/latex/nunito/LY1Nunito-TLF.fd + RELOC/tex/latex/nunito/LY1Nunito-TOsF.fd + RELOC/tex/latex/nunito/OT1Nunito-Sup.fd + RELOC/tex/latex/nunito/OT1Nunito-TLF.fd + RELOC/tex/latex/nunito/OT1Nunito-TOsF.fd + RELOC/tex/latex/nunito/T1Nunito-Sup.fd + RELOC/tex/latex/nunito/T1Nunito-TLF.fd + RELOC/tex/latex/nunito/T1Nunito-TOsF.fd + RELOC/tex/latex/nunito/TS1Nunito-TLF.fd + RELOC/tex/latex/nunito/TS1Nunito-TOsF.fd + RELOC/tex/latex/nunito/nunito.sty +catalogue-contact-repository https://github.com/ccebinger/CTAN_Nunito +catalogue-ctan /fonts/nunito +catalogue-license ofl lppl +catalogue-topics font font-body font-sans font-proportional font-otf font-type1 font-supp font-t1enc +catalogue-version 0.0.1 + +name nwejm +category Package +revision 54392 +shortdesc Support for the journal "North-Western European Journal of Mathematics" +relocated 1 +longdesc The bundle includes LaTeX classes and BibLaTeX styles files +longdesc dedicated to the new journal "North-Western European Journal of +longdesc Mathematics": nwejm for the complete issues of the journal, +longdesc aimed at the NWEJM's team, nwejmart, intended for the authors +longdesc who wish to publish an article in the NWEJM. This class's goal +longdesc is to: faithfully reproduce the layout of the nwejm, thus +longdesc enabling the authors to be able to work their document in +longdesc actual conditions, provide a number of tools (commands and +longdesc environments) to facilitate the drafting of documents, in +longdesc particular those containing mathematical formulas. +containersize 4059912 +containerchecksum 5a7e400c00bc8d5d607a61d1ebc30ed2d36bbd1b270868c89f654f84fe9f6d4259863b047bed1c1dba9b79a8a1f1b1ac612b95530903f81dae52114e420a32e3 +doccontainersize 1557288 +doccontainerchecksum 06da866b9f491a5969460f52f9496f723f8fb3347c7b0c78e48f07987e953994fe658743c6eed5c346277469e89b07a13a3a727d6df7838a8f5e66dead1142dc +docfiles size=542 + RELOC/doc/latex/nwejm/CHANGELOG.md + RELOC/doc/latex/nwejm/README.md details="Readme.md" + RELOC/doc/latex/nwejm/addons/completion/nwejm.cwl + RELOC/doc/latex/nwejm/addons/completion/nwejmart.cwl + RELOC/doc/latex/nwejm/english/README-TRANSLATION.md + RELOC/doc/latex/nwejm/english/documentation/latexmkrc + RELOC/doc/latex/nwejm/english/documentation/nwejm-en.tex + RELOC/doc/latex/nwejm/examples/article-in-dutch.pdf + RELOC/doc/latex/nwejm/examples/article-in-dutch.tex + RELOC/doc/latex/nwejm/examples/article-in-english.pdf + RELOC/doc/latex/nwejm/examples/article-in-english.tex + RELOC/doc/latex/nwejm/examples/article-in-french.pdf + RELOC/doc/latex/nwejm/examples/article-in-french.tex + RELOC/doc/latex/nwejm/examples/article-in-german.pdf + RELOC/doc/latex/nwejm/examples/article-in-german.tex + RELOC/doc/latex/nwejm/examples/issue.pdf + RELOC/doc/latex/nwejm/examples/issue.tex + RELOC/doc/latex/nwejm/examples/sample.bib + RELOC/doc/latex/nwejm/examples/sample.pdf details="Example of use" + RELOC/doc/latex/nwejm/examples/sample.tex + RELOC/doc/latex/nwejm/examples/template.tex + RELOC/doc/latex/nwejm/french/documentation/latexmkrc + RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.bib + RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.tex +srccontainersize 46916 +srccontainerchecksum d0afd2dadbfe524790f5a96ff37d3304305cada1291311bf724d30f216208f6f9d0ca6b6461792b17d1e91c8a1a13f235543071a2d8589615898a7b9a5407f26 +srcfiles size=58 + RELOC/source/latex/nwejm/nwejm-examples-template.dtx + RELOC/source/latex/nwejm/nwejm.dtx +runfiles size=2122 + RELOC/tex/latex/nwejm/images/nwejm-cover-background.jpg + RELOC/tex/latex/nwejm/images/nwejm-federation-recherche-math-npdc-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-fields-institute-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-kwg-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-logo-NB.eps + RELOC/tex/latex/nwejm/images/nwejm-logo-NB.pdf + RELOC/tex/latex/nwejm/images/nwejm-logo.eps + RELOC/tex/latex/nwejm/images/nwejm-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-logos-collection.pdf + RELOC/tex/latex/nwejm/images/nwejm-logos-collection.tex + RELOC/tex/latex/nwejm/images/nwejm-smf-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-sml-logo.pdf + RELOC/tex/latex/nwejm/nwejm-dutch.trsl + RELOC/tex/latex/nwejm/nwejm-english.trsl + RELOC/tex/latex/nwejm/nwejm-french.trsl + RELOC/tex/latex/nwejm/nwejm-german.trsl + RELOC/tex/latex/nwejm/nwejm.bbx + RELOC/tex/latex/nwejm/nwejm.cbx + RELOC/tex/latex/nwejm/nwejm.cfg + RELOC/tex/latex/nwejm/nwejm.cls + RELOC/tex/latex/nwejm/nwejm.dbx + RELOC/tex/latex/nwejm/nwejm.lbx + RELOC/tex/latex/nwejm/nwejmart.cls +catalogue-contact-bugs https://github.com/dbitouze/nwejm/issues +catalogue-contact-repository https://github.com/dbitouze/nwejm +catalogue-ctan /macros/latex/contrib/nwejm +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.0.1 + +name oberdiek +category Package +revision 56291 +shortdesc A bundle of packages submitted by Heiko Oberdiek +relocated 1 +longdesc The bundle comprises packages to provide: aliascnt: 'alias +longdesc counters'; bmpsize: get bitmap size and resolution data; +longdesc centernot: a horizontally-centred \not symbol; chemarr: +longdesc extensible chemists' reaction arrows; classlist: record +longdesc information about document class(es) used; colonequals: poor +longdesc man's mathematical relation symbols; dvipscol: dvips colour +longdesc stack management; engord: define counter-printing operations +longdesc producing English ordinals; eolgrab: collect arguments +longdesc delimited by end of line; flags: setting and clearing flags in +longdesc bit fields and converting the bit field into a decimal number; +longdesc holtxdoc: extra documentation macros; hypbmsec: bookmarks in +longdesc sectioning commands; hypcap: anjusting anchors of captions; +longdesc hypdoc: hyper-references in the LaTeX standard doc package; +longdesc hypgotoe: experimental package for links to embedded files; +longdesc hyphsubst: substitute hyphenation patterns; ifdraft: switch for +longdesc option draft; iflang: provides expandable checks for the +longdesc current language; pagegrid: prints a page grid in the +longdesc background; pdfcolfoot: using pdfTeX's color stack for +longdesc footnotes; pdfcol: macros for setting and maintaining new color +longdesc stacks; pdfcolparallel: fixes colour problems in package +longdesc parallel; pdfcolparcolumns: fixes colour problems in package +longdesc parcolumns; pdfcrypt: setting PDF encryption; pdfrender: +longdesc control PDF rendering modes; protecteddef: define a command +longdesc that protected against expansion; resizegather: automatically +longdesc resize overly large equations; rotchiffre: performs simple +longdesc rotation cyphers; scrindex: redefines environment 'theindex' of +longdesc package 'index', if a class from KOMA-Script is loaded; +longdesc setouterhbox: set \hbox in outer horizontal mode; settobox: +longdesc getting box sizes; stackrel: extensions of the \stackrel +longdesc command; stampinclude: selects the files for \include by +longdesc inspecting the timestamp of the .aux file(s); tabularht: +longdesc tabulars with height specification; tabularkv: key value +longdesc interface for tabular parameters; telprint: print German +longdesc telephone numbers; thepdfnumber: canonical numbers for use in +longdesc PDF files and elsewhere; twoopt: commands with two optional +longdesc arguments; Each of the packages is represented by two files, a +longdesc .dtx (documented source) and a PDF file; the .ins file +longdesc necessary for installation is extracted by running the .dtx +longdesc file with Plain TeX. +depend auxhook +depend grfext +depend grffile +depend iftex +depend infwarerr +depend kvoptions +depend pdftexcmds +containersize 45104 +containerchecksum a110b9f65989da3cb73bf37e09d92a89352177c45ac2b60a98341829e833e9ae3055e979f9bce5fea57f44e751efd70cac0eb5eadbb7efe512d0277f3696dd00 +doccontainersize 8949564 +doccontainerchecksum 631f11d270e5bd908b3d1c51d96205046793e529ba18a5e442280e6cbc1cb67850dab25984747f3871cf200dbae340e19cf327a21d5b66fa55140e1d76ae1503 +docfiles size=3273 + RELOC/doc/latex/oberdiek/README.md details="Bundle README" + RELOC/doc/latex/oberdiek/aliascnt.pdf + RELOC/doc/latex/oberdiek/bmpsize.pdf + RELOC/doc/latex/oberdiek/centernot.pdf + RELOC/doc/latex/oberdiek/chemarr-example.tex + RELOC/doc/latex/oberdiek/chemarr.pdf + RELOC/doc/latex/oberdiek/classlist.pdf + RELOC/doc/latex/oberdiek/colonequals.pdf + RELOC/doc/latex/oberdiek/dvipscol.pdf + RELOC/doc/latex/oberdiek/engord.pdf + RELOC/doc/latex/oberdiek/enparen.pdf + RELOC/doc/latex/oberdiek/eolgrab.pdf + RELOC/doc/latex/oberdiek/example/eolgrab-example-env.tex + RELOC/doc/latex/oberdiek/example/eolgrab-example-ltx.tex + RELOC/doc/latex/oberdiek/example/eolgrab-example-sec.tex + RELOC/doc/latex/oberdiek/fibnum.pdf + RELOC/doc/latex/oberdiek/flags.pdf + RELOC/doc/latex/oberdiek/holtxdoc.pdf + RELOC/doc/latex/oberdiek/hopatch.pdf + RELOC/doc/latex/oberdiek/hypbmsec.pdf + RELOC/doc/latex/oberdiek/hypcap.pdf + RELOC/doc/latex/oberdiek/hypdoc.pdf + RELOC/doc/latex/oberdiek/hypgotoe-example.tex + RELOC/doc/latex/oberdiek/hypgotoe.pdf + RELOC/doc/latex/oberdiek/hyphsubst.pdf + RELOC/doc/latex/oberdiek/ifdraft.pdf + RELOC/doc/latex/oberdiek/iflang.pdf + RELOC/doc/latex/oberdiek/oberdiek.pdf details="Table of contents of the bundle" + RELOC/doc/latex/oberdiek/pagegrid.pdf + RELOC/doc/latex/oberdiek/pdfcol.pdf + RELOC/doc/latex/oberdiek/pdfcolfoot.pdf + RELOC/doc/latex/oberdiek/pdfcolparallel.pdf + RELOC/doc/latex/oberdiek/pdfcolparcolumns.pdf + RELOC/doc/latex/oberdiek/pdfcrypt.pdf + RELOC/doc/latex/oberdiek/pdfrender.pdf + RELOC/doc/latex/oberdiek/protecteddef.pdf + RELOC/doc/latex/oberdiek/resizegather.pdf + RELOC/doc/latex/oberdiek/rotchiffre.pdf + RELOC/doc/latex/oberdiek/scrindex-example1.tex + RELOC/doc/latex/oberdiek/scrindex-example2.tex + RELOC/doc/latex/oberdiek/scrindex.pdf + RELOC/doc/latex/oberdiek/setouterhbox-example.tex + RELOC/doc/latex/oberdiek/setouterhbox.pdf + RELOC/doc/latex/oberdiek/settobox-example.tex + RELOC/doc/latex/oberdiek/settobox.pdf + RELOC/doc/latex/oberdiek/stackrel.pdf + RELOC/doc/latex/oberdiek/stampinclude.pdf + RELOC/doc/latex/oberdiek/tabularht-example1.tex + RELOC/doc/latex/oberdiek/tabularht-example2.tex + RELOC/doc/latex/oberdiek/tabularht.pdf + RELOC/doc/latex/oberdiek/tabularkv-example.tex + RELOC/doc/latex/oberdiek/tabularkv.pdf + RELOC/doc/latex/oberdiek/telprint.pdf + RELOC/doc/latex/oberdiek/thepdfnumber.pdf + RELOC/doc/latex/oberdiek/twoopt.pdf +srccontainersize 118696 +srccontainerchecksum a58f3c55a38ec5e2f373428702a62fe55b2af7db5de59ba53a16643f1b4ca3e52ed8317594e8403f0a95b7705e9213b8400c040329408ad0cdbc77bc8ea54bb8 +srcfiles size=272 + RELOC/source/latex/oberdiek/aliascnt.dtx + RELOC/source/latex/oberdiek/bmpsize.dtx + RELOC/source/latex/oberdiek/centernot.dtx + RELOC/source/latex/oberdiek/chemarr.dtx + RELOC/source/latex/oberdiek/classlist.dtx + RELOC/source/latex/oberdiek/colonequals.dtx + RELOC/source/latex/oberdiek/dvipscol.dtx + RELOC/source/latex/oberdiek/engord.dtx + RELOC/source/latex/oberdiek/enparen.dtx + RELOC/source/latex/oberdiek/eolgrab.dtx + RELOC/source/latex/oberdiek/fibnum.dtx + RELOC/source/latex/oberdiek/flags.dtx + RELOC/source/latex/oberdiek/holtxdoc.dtx + RELOC/source/latex/oberdiek/hypbmsec.dtx + RELOC/source/latex/oberdiek/hypcap.dtx + RELOC/source/latex/oberdiek/hypdoc.dtx + RELOC/source/latex/oberdiek/hypgotoe.dtx + RELOC/source/latex/oberdiek/hyphsubst.dtx + RELOC/source/latex/oberdiek/ifdraft.dtx + RELOC/source/latex/oberdiek/iflang.dtx + RELOC/source/latex/oberdiek/oberdiek.ins + RELOC/source/latex/oberdiek/oberdiek.tex + RELOC/source/latex/oberdiek/pagegrid.dtx + RELOC/source/latex/oberdiek/pdfcol.dtx + RELOC/source/latex/oberdiek/pdfcolfoot.dtx + RELOC/source/latex/oberdiek/pdfcolparallel.dtx + RELOC/source/latex/oberdiek/pdfcolparcolumns.dtx + RELOC/source/latex/oberdiek/pdfcrypt.dtx + RELOC/source/latex/oberdiek/pdfrender.dtx + RELOC/source/latex/oberdiek/protecteddef.dtx + RELOC/source/latex/oberdiek/resizegather.dtx + RELOC/source/latex/oberdiek/rotchiffre.dtx + RELOC/source/latex/oberdiek/scrindex.dtx + RELOC/source/latex/oberdiek/setouterhbox.dtx + RELOC/source/latex/oberdiek/settobox.dtx + RELOC/source/latex/oberdiek/stackrel.dtx + RELOC/source/latex/oberdiek/stampinclude.dtx + RELOC/source/latex/oberdiek/tabularht.dtx + RELOC/source/latex/oberdiek/tabularkv.dtx + RELOC/source/latex/oberdiek/telprint.dtx + RELOC/source/latex/oberdiek/thepdfnumber.dtx + RELOC/source/latex/oberdiek/twoopt.dtx +runfiles size=108 + RELOC/bibtex/bib/oberdiek/oberdiek-bundle.bib + RELOC/bibtex/bib/oberdiek/oberdiek-source.bib + RELOC/tex/generic/oberdiek/engord.sty + RELOC/tex/generic/oberdiek/eolgrab.sty + RELOC/tex/generic/oberdiek/fibnum.sty + RELOC/tex/generic/oberdiek/hyphsubst.sty + RELOC/tex/generic/oberdiek/iflang.sty + RELOC/tex/generic/oberdiek/pdfcol.sty + RELOC/tex/generic/oberdiek/pdfcrypt.sty + RELOC/tex/generic/oberdiek/pdfrender.sty + RELOC/tex/generic/oberdiek/protecteddef.sty + RELOC/tex/generic/oberdiek/rotchiffre.sty + RELOC/tex/generic/oberdiek/setouterhbox.sty + RELOC/tex/generic/oberdiek/telprint.sty + RELOC/tex/generic/oberdiek/thepdfnumber.sty + RELOC/tex/latex/oberdiek/aliascnt.sty + RELOC/tex/latex/oberdiek/bmpsize-base.sty + RELOC/tex/latex/oberdiek/bmpsize-dvipdfm.def + RELOC/tex/latex/oberdiek/bmpsize-dvipdfmx.def + RELOC/tex/latex/oberdiek/bmpsize-dvips.def + RELOC/tex/latex/oberdiek/bmpsize-test.tex + RELOC/tex/latex/oberdiek/bmpsize.sty + RELOC/tex/latex/oberdiek/centernot.sty + RELOC/tex/latex/oberdiek/chemarr.sty + RELOC/tex/latex/oberdiek/classlist.sty + RELOC/tex/latex/oberdiek/colonequals.sty + RELOC/tex/latex/oberdiek/dvipscol.sty + RELOC/tex/latex/oberdiek/enparen.sty + RELOC/tex/latex/oberdiek/flags.sty + RELOC/tex/latex/oberdiek/holtxdoc.sty + RELOC/tex/latex/oberdiek/hypbmsec.sty + RELOC/tex/latex/oberdiek/hypcap.sty + RELOC/tex/latex/oberdiek/hypdoc.sty + RELOC/tex/latex/oberdiek/hypgotoe.sty + RELOC/tex/latex/oberdiek/ifdraft.sty + RELOC/tex/latex/oberdiek/pagegrid.sty + RELOC/tex/latex/oberdiek/pdfcolfoot.sty + RELOC/tex/latex/oberdiek/pdfcolparallel.sty + RELOC/tex/latex/oberdiek/pdfcolparcolumns.sty + RELOC/tex/latex/oberdiek/resizegather.sty + RELOC/tex/latex/oberdiek/scrindex.sty + RELOC/tex/latex/oberdiek/settobox.sty + RELOC/tex/latex/oberdiek/stackrel.sty + RELOC/tex/latex/oberdiek/stampinclude.sty + RELOC/tex/latex/oberdiek/tabularht.sty + RELOC/tex/latex/oberdiek/tabularkv.sty + RELOC/tex/latex/oberdiek/twoopt.sty +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-license lppl1.3c +catalogue-topics collection + +name objectz +category Package +revision 19389 +shortdesc Macros for typesetting Object Z +relocated 1 +longdesc The package will typeset both Z and Object-Z specifications; it +longdesc develops the original zed package +containersize 9788 +containerchecksum e98bb9208838b8e55d9fe793af3eb6439aff2809067878051a9849cf483a42e612ca7c9a43a86520e582161b1a9f575e4e7a5f4bf7bbcabbbbdb314595c58fd7 +doccontainersize 261448 +doccontainerchecksum afcb2681f0983c345ddcf4cd484d337461a53af27f6d5467b12a5368f6ce3974b9d54cdd77365995e7268895f4f0edbb814a4f4e61e4cee947f6ea49c8381d85 +docfiles size=87 + RELOC/doc/latex/objectz/catalog + RELOC/doc/latex/objectz/makefile + RELOC/doc/latex/objectz/manifest + RELOC/doc/latex/objectz/ozguide.pdf details="Package documentation" + RELOC/doc/latex/objectz/ozguide.tex + RELOC/doc/latex/objectz/oztest.tex + RELOC/doc/latex/objectz/readme details="Readme" +srccontainersize 15088 +srccontainerchecksum c2bd789d5acb1174aeb50cd3eace6ab67d0074adcdb8c00d6ec0581be096a931a5f9a666630e96abd30dda31a418eb7b9e6e0f06c3d93eecbc7a287c4a7e61b3 +srcfiles size=15 + RELOC/source/latex/objectz/oz.dtx + RELOC/source/latex/objectz/oz.ins +runfiles size=10 + RELOC/tex/latex/objectz/oz.sty +catalogue-also zed-csp +catalogue-contact-home http://www.itee.uq.edu.au/~smith/objectz.html +catalogue-ctan /macros/latex/contrib/objectz +catalogue-license lppl +catalogue-topics formal-spec + +name obnov +category Package +revision 33355 +shortdesc Obyknovennaya Novaya fonts +relocated 1 +longdesc The Obyknovennaya Novaya (Ordinary New Face) typeface was +longdesc widely used in the USSR for scientific and technical +longdesc publications, as well as textbooks. The fonts are encoded to +longdesc KOI8-R (which is a long-established Russian font encoding, +longdesc rather than a TeX/LaTeX encoding). To use the fonts, the user +longdesc needs Cyrillic font support. +containersize 58304 +containerchecksum 8adb7a1e6183576b4ed9d709b2f64cc778217602c807fce0daaa62b59786d5629fded5e7ad4824cdee90ad5333b9fff4fd47d462e38005fcd1026af8838f04ed +doccontainersize 808596 +doccontainerchecksum 6fca30705b614ede4e055a39b92deac91daa6e9ca0922725f29c801e58b4a1ddc7176148b03de147aa906289962a3ff45a743828c0636d7f8fa3279b88e5103a +docfiles size=347 + RELOC/doc/fonts/obnov/README details="Readme" + RELOC/doc/fonts/obnov/example_obn.pdf details="Font samples" + RELOC/doc/fonts/obnov/example_obn.tex +runfiles size=680 + RELOC/fonts/source/public/obnov/obn10.mf + RELOC/fonts/source/public/obnov/obn12.mf + RELOC/fonts/source/public/obnov/obn17.mf + RELOC/fonts/source/public/obnov/obn7.mf + RELOC/fonts/source/public/obnov/obn_lcyw_code.mf + RELOC/fonts/source/public/obnov/obnb10.mf + RELOC/fonts/source/public/obnov/obnb12.mf + RELOC/fonts/source/public/obnov/obnb17.mf + RELOC/fonts/source/public/obnov/obnb7.mf + RELOC/fonts/source/public/obnov/obnit10.mf + RELOC/fonts/source/public/obnov/obnit12.mf + RELOC/fonts/source/public/obnov/obnit17.mf + RELOC/fonts/source/public/obnov/obnit7.mf + RELOC/fonts/source/public/obnov/obnitb10.mf + RELOC/fonts/source/public/obnov/obnitb12.mf + RELOC/fonts/source/public/obnov/obnitb17.mf + RELOC/fonts/source/public/obnov/obnsc10.mf + RELOC/fonts/source/public/obnov/obnsc12.mf + RELOC/fonts/source/public/obnov/obnsc17.mf + RELOC/fonts/source/public/obnov/obnsc7.mf + RELOC/fonts/source/public/obnov/obnsl10.mf + RELOC/fonts/source/public/obnov/obnsl12.mf + RELOC/fonts/source/public/obnov/obnsl17.mf + RELOC/fonts/source/public/obnov/obnsl7.mf + RELOC/fonts/tfm/public/obnov/obn10.tfm + RELOC/fonts/tfm/public/obnov/obn12.tfm + RELOC/fonts/tfm/public/obnov/obn17.tfm + RELOC/fonts/tfm/public/obnov/obn7.tfm + RELOC/fonts/tfm/public/obnov/obnb10.tfm + RELOC/fonts/tfm/public/obnov/obnb12.tfm + RELOC/fonts/tfm/public/obnov/obnb17.tfm + RELOC/fonts/tfm/public/obnov/obnb7.tfm + RELOC/fonts/tfm/public/obnov/obnit10.tfm + RELOC/fonts/tfm/public/obnov/obnit12.tfm + RELOC/fonts/tfm/public/obnov/obnit17.tfm + RELOC/fonts/tfm/public/obnov/obnit7.tfm + RELOC/fonts/tfm/public/obnov/obnitb10.tfm + RELOC/fonts/tfm/public/obnov/obnitb12.tfm + RELOC/fonts/tfm/public/obnov/obnitb17.tfm + RELOC/fonts/tfm/public/obnov/obnsc10.tfm + RELOC/fonts/tfm/public/obnov/obnsc12.tfm + RELOC/fonts/tfm/public/obnov/obnsc17.tfm + RELOC/fonts/tfm/public/obnov/obnsc7.tfm + RELOC/fonts/tfm/public/obnov/obnsl10.tfm + RELOC/fonts/tfm/public/obnov/obnsl12.tfm + RELOC/fonts/tfm/public/obnov/obnsl17.tfm + RELOC/fonts/tfm/public/obnov/obnsl7.tfm + RELOC/tex/latex/obnov/lcyw.cmap + RELOC/tex/latex/obnov/lcywobn.fd +catalogue-ctan /fonts/obnov +catalogue-license lppl +catalogue-topics font font-mf font-cyrillic cyrillic +catalogue-version 0.11 + +name ocg-p +category Package +revision 28803 +shortdesc PDF OCG support in LaTeX +relocated 1 +longdesc The package provides OCG (Optional Content Groups) support +longdesc within a PDF document, replacing the ocg.sty distributed with +longdesc asymptote. Nested OCGs are supported. The package may be used +longdesc with pdfLaTeX and XeLaTeX. +containersize 4368 +containerchecksum 23b0b4377ec615d8d334d09018629f524a775311c3d227b350e7dfe95c6154795d1d3e44e7e1e405d45b623ecc614892d0996631615efae2ad6f040c1c4d8dd0 +doccontainersize 499988 +doccontainerchecksum c51169bf3398b17f3dfd2e0aa0efb574cedf40c4739f1b4693f9282042fe9f024dd48675bdf5ec04895c49e0583ac436bfb36e12ac51ce89bc23ac587b3f92f7 +docfiles size=187 + RELOC/doc/latex/ocg-p/README details="Readme" + RELOC/doc/latex/ocg-p/examples/ocg-p_example_1.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_1.tex + RELOC/doc/latex/ocg-p/examples/ocg-p_example_2.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_2.tex + RELOC/doc/latex/ocg-p/examples/ocg-p_example_3.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_3.tex + RELOC/doc/latex/ocg-p/examples/ocg-p_example_4.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_4.tex + RELOC/doc/latex/ocg-p/ocg-p.pdf details="Package documentation" + RELOC/doc/latex/ocg-p/ocg-p.tex +runfiles size=4 + RELOC/tex/latex/ocg-p/ocg-p.sty +catalogue-ctan /macros/latex/contrib/ocg-p +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 0.4 + +name ocgx +category Package +revision 54512 +shortdesc Use OCGs within a PDF document without JavaScript +relocated 1 +longdesc The package extends the ocg package, which allows you to create +longdesc OCGs (Optional Content Groups) in PDF documents. (The ocg +longdesc package is distributed as part of Asymptote.) Every OCG +longdesc includes TeX material into a layer of the PDF file. Each of +longdesc these layers can be displayed or not. Links can enable or +longdesc disable the display of OCGs. The ocgx package does not use +longdesc Javascript embedded in the PDF document to enable (to show) or +longdesc disable (to hide) OCGs. +containersize 2096 +containerchecksum 33b8ab1b03b7a887127dbe589212747c8cfd794c1b1c9525222cdede3f941812007441ff2835386e59a19b253e5cdef27a83dd958506dbf7dce6988007befa3c +doccontainersize 991556 +doccontainerchecksum c3c28d54a06a5010d8b1c266b1b9689cbf41050e8427689015ce0016131cebaec87ca0c416b865b5bf9a386a2cc33326da5720d326d797e94c41b8f02e160889 +docfiles size=253 + RELOC/doc/latex/ocgx/README details="Readme" + RELOC/doc/latex/ocgx/demo-ocgx.pdf details="Package demo" + RELOC/doc/latex/ocgx/ocgx-manual-en.pdf details="Package documentation" +srccontainersize 7776 +srccontainerchecksum 633326b032b98f52375e75cdbc55165e35ee4d531d4436df6575ef54c7897187030d99aeeb0de26622ce4f5e56a10df3c381ab72c0731fd8150d677f1fa3c09c +srcfiles size=9 + RELOC/source/latex/ocgx/demo-ocgx.tex + RELOC/source/latex/ocgx/ocgx-example-1.tex + RELOC/source/latex/ocgx/ocgx-manual-en.tex +runfiles size=2 + RELOC/tex/latex/ocgx/ocgx.sty + RELOC/tex/latex/ocgx/tikzlibraryocgx.code.tex +catalogue-also asymptote +catalogue-ctan /macros/latex/contrib/ocgx +catalogue-license lppl lppl +catalogue-topics pdf-feat +catalogue-version 0.5 + +name ocgx2 +category Package +revision 57531 +shortdesc Drop-in replacement for 'ocgx' and 'ocg-p' +relocated 1 +longdesc This package serves as a drop-in replacement for the packages +longdesc ocgx by Paul Gaborit and ocg-p by Werner Moshammer for the +longdesc creation of PDF Layers. It re-implements the functionality of +longdesc the ocg, ocgx, and ocg-p packages and adds support for all +longdesc known engines and back-ends including: LaTeX - dvips - +longdesc ps2pdf/Distiller (Xe)LaTeX(x) - dvipdfmx pdfLaTeX and LuaLaTeX +longdesc . It also ensures compatibility with the media9 and animate +longdesc packages. +containersize 13444 +containerchecksum 2b09a488d273992f02034b66ffda3ac7a7f9251e8b57c7794cd50d8e68f5bc2d1b55d1388bfab41e3a46ee037cc5de4e1e137a7175b5191fe9d68fb6b3513ffd +doccontainersize 6052 +doccontainerchecksum 5f310667aaebcae98fdac38c301ba587c00290d6fe21944a0f85f87cbbf393c02179621886409956739696137900d119d3c69cc3b597bc38fe283315af03995a +docfiles size=5 + RELOC/doc/latex/ocgx2/ChangeLog + RELOC/doc/latex/ocgx2/README.txt +runfiles size=18 + RELOC/tex/latex/ocgx2/fixocgx.sty + RELOC/tex/latex/ocgx2/ocgbase.sty + RELOC/tex/latex/ocgx2/ocgx2.sty +catalogue-also ocgx ocg-p +catalogue-contact-repository https://gitlab.com/agrahn/ocgx2 +catalogue-ctan /macros/latex/contrib/ocgx2 +catalogue-license lppl +catalogue-topics pdf-feat adobe-distiller expl3 +catalogue-version 0.50 + +name ocherokee +category Package +revision 25689 +shortdesc LaTeX Support for the Cherokee language +relocated 1 +longdesc Macros and Type 1 fonts for Typesetting the Cherokee language +longdesc with the Omega version of LaTeX (known as Lambda). +execute addMap cherokee.map +containersize 70964 +containerchecksum 9638c408e96fa861d395881d1bac87b55048a25de61561823242d78f836522205c9621f5a01bbb5ad1c8390230dac727b4fae333c22966a04ff5df1f923b5909 +doccontainersize 53440 +doccontainerchecksum 40bb5e47b2ac627007d349c0b043f299f09321aa0d6fc11ad9f345576fd7a902be4d012d56ceede9e66c8a5972828e7b5a5646c101c08fd28fa3ab1c935f8256 +docfiles size=19 + RELOC/doc/omega/ocherokee/READ.ME + RELOC/doc/omega/ocherokee/cherokee.pdf details="Package documentation" + RELOC/doc/omega/ocherokee/chief.tex + RELOC/doc/omega/ocherokee/proverb.tex +runfiles size=96 + RELOC/fonts/afm/public/ocherokee/Cherokee-Bold.afm + RELOC/fonts/afm/public/ocherokee/Cherokee.afm + RELOC/fonts/map/dvips/ocherokee/cherokee.map + RELOC/fonts/ofm/public/ocherokee/OCherokee.ofm + RELOC/fonts/ofm/public/ocherokee/OCherokeeb.ofm + RELOC/fonts/ofm/public/ocherokee/OCherokeebo.ofm + RELOC/fonts/ofm/public/ocherokee/OCherokeeo.ofm + RELOC/fonts/ovf/public/ocherokee/OCherokee.ovf + RELOC/fonts/ovf/public/ocherokee/OCherokeeb.ovf + RELOC/fonts/ovf/public/ocherokee/OCherokeebo.ovf + RELOC/fonts/ovf/public/ocherokee/OCherokeeo.ovf + RELOC/fonts/ovp/public/ocherokee/OCherokee.ovp + RELOC/fonts/ovp/public/ocherokee/OCherokeeb.ovp + RELOC/fonts/ovp/public/ocherokee/OCherokeebo.ovp + RELOC/fonts/ovp/public/ocherokee/OCherokeeo.ovp + RELOC/fonts/tfm/public/ocherokee/Cherokee.tfm + RELOC/fonts/tfm/public/ocherokee/Cherokeeb.tfm + RELOC/fonts/tfm/public/ocherokee/Cherokeebo.tfm + RELOC/fonts/tfm/public/ocherokee/Cherokeeo.tfm + RELOC/fonts/type1/public/ocherokee/Cherokee-Bold.pfb + RELOC/fonts/type1/public/ocherokee/Cherokee.pfb + RELOC/omega/ocp/ocherokee/cher2uni.ocp + RELOC/omega/otp/ocherokee/cher2uni.otp + RELOC/tex/lambda/ocherokee/lchcmr.fd + RELOC/tex/lambda/ocherokee/lchenc.def + RELOC/tex/lambda/ocherokee/ocherokee.sty +catalogue-also omega +catalogue-ctan /language/cherokee/ocherokee +catalogue-license lppl +catalogue-topics cherokee omega + +name ocr-b +category Package +revision 20852 +shortdesc Fonts for OCR-B +relocated 1 +longdesc Metafont source for OCR-B at several sizes. +containersize 10164 +containerchecksum 30b658802a2a30776cef18c2ea0f1a71044b5b7819c75ec58df9acc04134cf1aaf85b97f93231d439d79c47f66d7bc57b43494aca073871ec3479ae70178fc58 +doccontainersize 1352 +doccontainerchecksum 6d162b10b558a9db8269b2535ac9df4f76973c54d7e23dea20efb29974b839278888fceab2da85f945da483415bbbafc614c8ae4c1cea6d262d6a46dea5b69a2 +docfiles size=1 + RELOC/doc/fonts/ocr-b/README details="Readme" +runfiles size=28 + RELOC/fonts/source/public/ocr-b/ocrb10.mf + RELOC/fonts/source/public/ocr-b/ocrb10e.mf + RELOC/fonts/source/public/ocr-b/ocrb10f.mf + RELOC/fonts/source/public/ocr-b/ocrb10g.mf + RELOC/fonts/source/public/ocr-b/ocrb10l.mf + RELOC/fonts/source/public/ocr-b/ocrb10s.mf + RELOC/fonts/source/public/ocr-b/ocrb10x.mf + RELOC/fonts/source/public/ocr-b/ocrb5.mf + RELOC/fonts/source/public/ocr-b/ocrb6.mf + RELOC/fonts/source/public/ocr-b/ocrb7.mf + RELOC/fonts/source/public/ocr-b/ocrb8.mf + RELOC/fonts/source/public/ocr-b/ocrb9.mf + RELOC/fonts/source/public/ocr-b/ocrbdef.mf + RELOC/fonts/source/public/ocr-b/ocrbmac.mf + RELOC/fonts/tfm/public/ocr-b/ocrb10.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb5.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb6.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb7.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb8.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb9.tfm +catalogue-ctan /fonts/ocr-b +catalogue-license other-free +catalogue-topics font font-specialist font-mf + +name ocr-b-outline +category Package +revision 20969 +shortdesc OCR-B fonts in Type 1 and OpenType +relocated 1 +longdesc The package contains OCR-B fonts in Type1 and OpenType formats. +longdesc They were generated from the Metafont sources of the OCR-B +longdesc fonts. The metric files are not included here, so that original +longdesc ocr-b package should also be installed. +execute addMap ocrb.map +containersize 242544 +containerchecksum ac15acebab9c9f81f0e7786cb3222b336aae3fa4a379592d5fa231e145cfcab536e28c9078ac617bf9b8b672f6dd24b30caa998242ba1e3f4633873ae8d54609 +doccontainersize 1124 +doccontainerchecksum 7bafe00b9c5d846f21cac682d9577ffe696eb54a55f4bee9314646451fec37d883eca7531f594a7994fa8038f7bb5c78a55dd8a8264255a6e60ff90929596d00 +docfiles size=2 + RELOC/doc/fonts/ocr-b-outline/README details="Readme" + RELOC/doc/fonts/ocr-b-outline/xe-test.tex +srccontainersize 32724 +srccontainerchecksum b2fa5f4561a4fe61c216e800fcb47bf99a09a62d41d62e30669753139484b58b137649248ec152f7631461c54ab4e51873f3c7a42d43ccf2db86d3cd21d3493f +srcfiles size=174 + RELOC/source/fonts/ocr-b-outline/ocrb10.sfd + RELOC/source/fonts/ocr-b-outline/ocrb5.sfd + RELOC/source/fonts/ocr-b-outline/ocrb6.sfd + RELOC/source/fonts/ocr-b-outline/ocrb7.sfd + RELOC/source/fonts/ocr-b-outline/ocrb8.sfd + RELOC/source/fonts/ocr-b-outline/ocrb9.sfd +runfiles size=103 + RELOC/fonts/map/dvips/ocr-b-outline/ocrb.map + RELOC/fonts/opentype/public/ocr-b-outline/ocrb10.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb5.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb6.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb7.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb8.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb9.otf + RELOC/fonts/type1/public/ocr-b-outline/ocrb10.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb5.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb6.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb7.pfb + 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-license other-free +catalogue-topics font font-specialist font-type1 font-otf + +name ocr-latex +category Package +revision 15878 +shortdesc LaTeX support for ocr fonts +relocated 1 +longdesc The package supports use of both ocr-a and ocr-b fonts in LaTeX +longdesc documents. +containersize 1752 +containerchecksum d6a4377f66293f8f7ad8b7f8fe3a3a3dd294a302dabb33e193921882d6681fc1c5537b8de2bb188396139bbdd33f14d4f1c20f6edf44ce680df837b250ee83b4 +doccontainersize 172760 +doccontainerchecksum d0de99d5cf93517f5be8627d649a1d8018766cbba44c40cfbe0f93a3b69c1a5f10b4057dd79194d148030948509a26ef45ea83208c2922cc64b10473d663d591 +docfiles size=48 + RELOC/doc/latex/ocr-latex/README + RELOC/doc/latex/ocr-latex/ocr.pdf details="Package documentation" + RELOC/doc/latex/ocr-latex/ocr.tex +runfiles size=8 + RELOC/tex/latex/ocr-latex/ocr.sty + RELOC/tex/latex/ocr-latex/ot1oca.fd + RELOC/tex/latex/ocr-latex/ot1ocra.fd + RELOC/tex/latex/ocr-latex/ot1ocrb.fd + RELOC/tex/latex/ocr-latex/ot1ocrbn.fd + RELOC/tex/latex/ocr-latex/ot1ocrbns.fd + RELOC/tex/latex/ocr-latex/ot1ocrbo.fd + RELOC/tex/latex/ocr-latex/ot1ocrbs.fd +catalogue-ctan /macros/latex/contrib/ocr-latex +catalogue-license gpl +catalogue-topics font-supp + +name octave +category Package +revision 45674 +shortdesc Typeset musical pitches with octave designations +relocated 1 +longdesc This package package typesets musical pitch names with +longdesc designation for the octave in either the Helmholtz system (with +longdesc octave numbers), or the traditional system (with prime +longdesc symbols). Authors can just write \pitch{C}{4} and the pitches +longdesc will be rendered correctly depending on which package option +longdesc was selected. The system can also be changed mid-document. +containersize 2332 +containerchecksum f7063b207152ebdbd29da1e93db1b65796dabcc1eee1fcf36a470c6074b7abf239c87f5e4e765f08ec70d8ff7f2ebc8fa29a5590fa9a9d6740a5e74c0e3d719a +doccontainersize 256924 +doccontainerchecksum 0fc6b228fff15a4dc90973339f2b155ede7051ce69066e24d7dcdb9c9d5ee162c8d684298c8ef7fae64274dfc4f101dbca8fc38ca68200c36cf901153fc461f9 +docfiles size=65 + RELOC/doc/latex/octave/README.md details="Readme" + RELOC/doc/latex/octave/octave.pdf details="Package documentation" + RELOC/doc/latex/octave/octave.tex +runfiles size=2 + RELOC/tex/latex/octave/octave.sty +catalogue-contact-repository https://bitbucket.org/andrewacashner/octave +catalogue-ctan /macros/latex/contrib/octave +catalogue-license lppl1.3 +catalogue-topics music + +name octavo +category Package +revision 15878 +shortdesc Typeset books following classical design and layout +relocated 1 +longdesc The octavo class is a modification of the standard LaTeX book +longdesc class. Its purpose is to typeset books following classical +longdesc design and layout principles, with the express intention of +longdesc encouraging the making of beautiful books by anyone with access +longdesc to a good printer and with an inclination towards venerable +longdesc crafts, e.g., bookbinding. The octavo class differs from the +longdesc book class by implementing many of the proposals and insights +longdesc of respected experts, especially Jan Tschichold and Hugh +longdesc Williamson. The documentation discusses methods to organise and +longdesc print out any text into signatures, which can then be gathered, +longdesc folded and sewn into a book. +containersize 6544 +containerchecksum 06de0f1e69c4bd8bf0a65e08515994a10ae8df83e6e8981daf70b6eeb424fd59b58808249782d76b9373d9982aee50e7c12c17e090e3697533b87d35480f94a2 +doccontainersize 85180 +doccontainerchecksum daa628a0c047ece5aaf15425c0123128a771a17f08fe9212856e2d63b40340dbd7a50a4ed1e19b04198637e11b530239f4280b810ee3813fc6275b78d37bd8a6 +docfiles size=48 + RELOC/doc/latex/octavo/README details="Readme" + RELOC/doc/latex/octavo/changes + RELOC/doc/latex/octavo/tub-octavo.pdf details="Package documentation" +srccontainersize 26140 +srccontainerchecksum 3632856effd0e32e8595bca0f2a1ea569261cd0d273fa200d9cd9c70908a96da613f06eb315389fe9b8e6fcdcd9db233ca8c148120625f6813848a930fdeea67 +srcfiles size=27 + RELOC/source/latex/octavo/octavo.dtx + RELOC/source/latex/octavo/octavo.ins +runfiles size=11 + RELOC/tex/latex/octavo/oct10.clo + RELOC/tex/latex/octavo/oct11.clo + RELOC/tex/latex/octavo/oct12.clo + RELOC/tex/latex/octavo/octavo.cls +catalogue-ctan /macros/latex/contrib/octavo +catalogue-license lppl +catalogue-topics book-pub class +catalogue-version 1.2 + +name odsfile +category Package +revision 38449 +shortdesc Read OpenDocument Spreadsheet documents as LaTeX tables +relocated 1 +longdesc The distribution includes a package and a lua library that can +longdesc together read OpenDocument spreadsheet documents as LaTeX +longdesc tables. Cells in the tables may be processed by LaTeX macros, +longdesc so that (for example) the package may be used for drawing some +longdesc plots. The package uses lua's zip library. +containersize 4976 +containerchecksum c739d1d20c26fde107649ae8aa5a3f767f59d6db3acd063264be6ffd0dcf43d2a1c87eaf9449d1e1f71a7c10cb24cbc55849255cf95fb72983e476e0cb2a8ee0 +doccontainersize 272368 +doccontainerchecksum 9be750187f9b4476748bb1bc7440dd68437ba8d11e8198af8a1d532b09c37696aa9341dbd91198922ef2ea0a2991d44a946fe080f68fd1d6bfcf563cac50a29b +docfiles size=71 + RELOC/doc/lualatex/odsfile/README details="Readme" + RELOC/doc/lualatex/odsfile/odsfile.pdf details="Package documentation" + RELOC/doc/lualatex/odsfile/odsfile.tex + RELOC/doc/lualatex/odsfile/pokus.ods +runfiles size=4 + RELOC/tex/lualatex/odsfile/odsfile.lua + RELOC/tex/lualatex/odsfile/odsfile.sty +catalogue-ctan /macros/luatex/latex/odsfile +catalogue-license lppl1.3 +catalogue-topics foreign-import table luatex +catalogue-version 0.6 + +name ofs +category Package +revision 16991 +shortdesc Macros for managing large font collections +relocated 1 +longdesc OFS (Olsak's Font System) is a set of Plain TeX and LaTeX +longdesc macros for managing large font collections; it has been used by +longdesc Czech/Slovak users for many years. Main features include: +longdesc Mapping from long names of fonts to the metric file name. The +longdesc user can specify only exact long names in documents. Support +longdesc for many font encodings. Printing of catalogues of fonts and +longdesc test samples of font families; the interactive macro \showfonts +longdesc shows all font families you have installed via OFS. The user +longdesc interface is the same for Plain TeX and for LaTeX, but the +longdesc implementation differs: the LaTeX variant of OFS uses NFSS, but +longdesc the Plain variant implements its own font management (which may +longdesc even be better than NFSS) Support for math fonts including TX +longdesc fonts. +containersize 52908 +containerchecksum 347dc05e8742fa09679e3f16465077b0bbf5e34a4be5a5c2e1da094ad22c0e69ff9f4abb4aacb9be2c698b27da7e169adb0c1840da3e56b277514a9f9631dd02 +doccontainersize 689980 +doccontainerchecksum 13f7fd3ab4cb31ae521827b703cf4c3a0c796b6a33f46b2a24a2a8c488e92d6039a9b136440b00b6a0aba14a2dbad832b777cd5a3aa120ccfc4888ee147954e7 +docfiles size=265 + RELOC/doc/generic/ofs/changes.txt + RELOC/doc/generic/ofs/eurotex2003-ofs.pdf details="EuroTeX paper" language="en" + RELOC/doc/generic/ofs/eurotex2003-ofs.tex + RELOC/doc/generic/ofs/ofs-slt.pdf + RELOC/doc/generic/ofs/ofsdoc-e.pdf details="Package documentation" language="en" + RELOC/doc/generic/ofs/ofsdoc-e.tex + RELOC/doc/generic/ofs/ofsdoc.pdf details="Package documentation" language="cs" + RELOC/doc/generic/ofs/ofsdoc.tex + RELOC/doc/generic/ofs/ofsmtdef.tex + RELOC/doc/generic/ofs/ofstest.tex + RELOC/doc/generic/ofs/readme.ofs +runfiles size=93 + RELOC/tex/generic/ofs/a117.tex + RELOC/tex/generic/ofs/a35.sty + RELOC/tex/generic/ofs/a35.tex + RELOC/tex/generic/ofs/allfonts.sty + RELOC/tex/generic/ofs/allfonts.tex + RELOC/tex/generic/ofs/amsfn.tex + RELOC/tex/generic/ofs/mtfn.tex + RELOC/tex/generic/ofs/ofs-6a.tex + RELOC/tex/generic/ofs/ofs-6c.tex + RELOC/tex/generic/ofs/ofs-6k.tex + RELOC/tex/generic/ofs/ofs-6s.tex + RELOC/tex/generic/ofs/ofs-6t.tex + RELOC/tex/generic/ofs/ofs-6x.tex + RELOC/tex/generic/ofs/ofs-6y.tex + RELOC/tex/generic/ofs/ofs-8c.tex + RELOC/tex/generic/ofs/ofs-8t.tex + RELOC/tex/generic/ofs/ofs-8x.tex + RELOC/tex/generic/ofs/ofs-8z.tex + RELOC/tex/generic/ofs/ofs-ams.tex + RELOC/tex/generic/ofs/ofs-cm.tex + RELOC/tex/generic/ofs/ofs-mt.tex + RELOC/tex/generic/ofs/ofs-ps.tex + RELOC/tex/generic/ofs/ofs-px.tex + RELOC/tex/generic/ofs/ofs-slt.tex + RELOC/tex/generic/ofs/ofs-tx.tex + RELOC/tex/generic/ofs/ofs.sty + RELOC/tex/generic/ofs/ofs.tex + RELOC/tex/generic/ofs/ofsdef.tex + RELOC/tex/generic/ofs/pantyk.tex + RELOC/tex/generic/ofs/txfn.tex +catalogue-also plnfss font-selection fontch +catalogue-contact-home http://petr.olsak.net/ofs.html +catalogue-ctan /macros/generic/ofs +catalogue-license knuth +catalogue-topics font-sel plain-ext + +name ogham +category Package +revision 24876 +shortdesc Fonts for typesetting Ogham script +relocated 1 +longdesc The font provides the Ogham alphabet, which is found on a +longdesc number of Irish and Pictish carvings dating from the 4th +longdesc century AD. The font is distributed as Metafont source, which +longdesc has been patched (with the author's permission) for stability +longdesc at different output device resolutions. (Thanks are due to +longdesc Peter Flynn and Dan Luecking.) +containersize 1888 +containerchecksum fe651bcbdb0e8f9ded07fdc412f1273cc8d473894f06af69ae65ac4c6895daba3f61571eac9a49d16de043ae6ed6e03ea386f11dd6b395347d98784bece4c8b1 +doccontainersize 11932 +doccontainerchecksum 6d406cd0a2ba68946be8d2eb148a6c9286a164ae701f66802ecabe6661807ea54eba175617e00920d37a88dee376c1bfcecef6184320ef1790716d53e5a07871 +docfiles size=7 + RELOC/doc/fonts/ogham/testfont.pdf details="Testfont print" +runfiles size=3 + RELOC/fonts/source/public/ogham/ogham.mf + RELOC/fonts/tfm/public/ogham/ogham.tfm +catalogue-contact-repository https://github.com/rf-latex/ogham +catalogue-contact-support https://github.com/rf-latex/ogham/issues +catalogue-ctan /fonts/ogham +catalogue-license pd +catalogue-topics font font-mf font-archaic + +name oinuit +category Package +revision 28668 +shortdesc LaTeX Support for the Inuktitut Language +relocated 1 +longdesc The package provides a set of Lambda (Omega LaTeX) typesetting +longdesc tools for the Inuktitut language. Five different input methods +longdesc are supported and with the necessary fonts are also provided. +execute addMap oinuit.map +containersize 147668 +containerchecksum 4d6b72ce539766a3453f7edb24c243a2a495f3916ee9fd650917c510a0e8fe36e12399843c1de3dc0b0de704bf5362ea20e9bd0d6c3100e659c5641395d658dc +doccontainersize 150228 +doccontainerchecksum dfb7275002731695086aa8733a543ca1eaa207bc57cd0b324666940ab932cd9301cb1c0b0bbfa4df36278ac8e289ac1be78a2e0a58ec656c470ff4b841a70803 +docfiles size=82 + RELOC/doc/fonts/oinuit/README.1ST + RELOC/doc/fonts/oinuit/README.TEXLIVE + RELOC/doc/fonts/oinuit/Table.eps + RELOC/doc/fonts/oinuit/book.tex + RELOC/doc/fonts/oinuit/inuit.tex + RELOC/doc/fonts/oinuit/taqtu.tex +srccontainersize 10304 +srccontainerchecksum 0d81c9803b9b45b20c096ab00d0c0e5ca26e71d5af463e511660c5bbd28b5b962afe243f21418883575b5d40f503bada65b5c34ba48486aa74a6f9ddcbd48680 +srcfiles size=11 + RELOC/source/lambda/oinuit/oinuit.dtx + RELOC/source/lambda/oinuit/oinuit.ins +runfiles size=563 + RELOC/fonts/map/dvips/oinuit/oinuit.map + RELOC/fonts/ofm/public/oinuit/OInuit.ofm + RELOC/fonts/ofm/public/oinuit/OInuitb.ofm + RELOC/fonts/ofm/public/oinuit/OInuitbo.ofm + RELOC/fonts/ofm/public/oinuit/OInuito.ofm + RELOC/fonts/ovf/public/oinuit/OInuit.ovf + RELOC/fonts/ovf/public/oinuit/OInuitb.ovf + RELOC/fonts/ovf/public/oinuit/OInuitbo.ovf + RELOC/fonts/ovf/public/oinuit/OInuito.ovf + RELOC/fonts/tfm/public/oinuit/Inuit.tfm + RELOC/fonts/tfm/public/oinuit/Inuitb.tfm + RELOC/fonts/tfm/public/oinuit/Inuitbo.tfm + RELOC/fonts/tfm/public/oinuit/Inuito.tfm + RELOC/fonts/type1/public/oinuit/Inuit.pfb + RELOC/fonts/type1/public/oinuit/Inuitb.pfb + RELOC/fonts/type1/public/oinuit/Inuitbo.pfb + RELOC/fonts/type1/public/oinuit/Inuito.pfb + RELOC/fonts/type1/public/oinuit/cmssbxo10.pfb + RELOC/omega/ocp/oinuit/Ninuit2uni.ocp + RELOC/omega/ocp/oinuit/Qinuit2uni.ocp + RELOC/omega/ocp/oinuit/inuitscii.ocp + RELOC/omega/otp/oinuit/Ninuit2uni.otp + RELOC/omega/otp/oinuit/Qinuit2uni.otp + RELOC/omega/otp/oinuit/inuitscii.otp + RELOC/tex/lambda/oinuit/litcmr.fd + RELOC/tex/lambda/oinuit/litenc.def + RELOC/tex/lambda/oinuit/oinuit.sty +catalogue-ctan /language/inuktitut/oinuit +catalogue-license lppl +catalogue-topics other-lang omega + +name old-arrows +category Package +revision 42872 +shortdesc Computer Modern old-style arrows with smaller arrowheads +relocated 1 +longdesc This package provides Computer Modern old-style arrows with +longdesc smaller arrowheads, associated with the usual LaTeX commands. +longdesc It can be used in documents that contain other amssymb arrow +longdesc characters that also have small arrowheads. It is also possible +longdesc to use the usual new-style Computer Modern arrows together with +longdesc the old-style ones. +execute addMap oasy.map +containersize 32044 +containerchecksum 2b67317d41349c6d601d8ddcba6ba58cf503756f5bb2f4343c1447cbe4e24c8949a4de58e7cf3863a730bfa809dd09f5f1ce9944e3dc5d4de104e4817d6add17 +doccontainersize 861792 +doccontainerchecksum d142a95119386f85d1e6ff0f6a24bcf09b9bf7ec83a581ca43be67376cd4a44453d090e4eedf97bcba1026827eff29f97add3a6ed676833b02b718da4811a3ef +docfiles size=245 + RELOC/doc/fonts/old-arrows/README details="Readme" + RELOC/doc/fonts/old-arrows/old-arrows-italian.pdf details="Package documentation (Italian)" language="it" + RELOC/doc/fonts/old-arrows/old-arrows-italian.tex + RELOC/doc/fonts/old-arrows/old-arrows.pdf details="Package documentation" + RELOC/doc/fonts/old-arrows/old-arrows.tex +runfiles size=55 + RELOC/fonts/afm/public/old-arrows/oabsy10.afm + RELOC/fonts/afm/public/old-arrows/oabsy5.afm + RELOC/fonts/afm/public/old-arrows/oabsy7.afm + RELOC/fonts/afm/public/old-arrows/oasy10.afm + RELOC/fonts/afm/public/old-arrows/oasy5.afm + RELOC/fonts/afm/public/old-arrows/oasy6.afm + RELOC/fonts/afm/public/old-arrows/oasy7.afm + RELOC/fonts/afm/public/old-arrows/oasy8.afm + RELOC/fonts/afm/public/old-arrows/oasy9.afm + RELOC/fonts/enc/dvips/old-arrows/oasy.enc + RELOC/fonts/map/dvips/old-arrows/oasy.map + RELOC/fonts/tfm/public/old-arrows/oabsy10.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy5.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy6.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy7.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy8.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy9.tfm + RELOC/fonts/tfm/public/old-arrows/oasy10.tfm + RELOC/fonts/tfm/public/old-arrows/oasy5.tfm + RELOC/fonts/tfm/public/old-arrows/oasy6.tfm + RELOC/fonts/tfm/public/old-arrows/oasy7.tfm + RELOC/fonts/tfm/public/old-arrows/oasy8.tfm + RELOC/fonts/tfm/public/old-arrows/oasy9.tfm + RELOC/fonts/type1/public/old-arrows/oabsy10.pfb + RELOC/fonts/type1/public/old-arrows/oabsy10.pfm + RELOC/fonts/type1/public/old-arrows/oabsy5.pfb + RELOC/fonts/type1/public/old-arrows/oabsy5.pfm + RELOC/fonts/type1/public/old-arrows/oabsy7.pfb + RELOC/fonts/type1/public/old-arrows/oabsy7.pfm + RELOC/fonts/type1/public/old-arrows/oasy10.pfb + RELOC/fonts/type1/public/old-arrows/oasy10.pfm + RELOC/fonts/type1/public/old-arrows/oasy5.pfb + RELOC/fonts/type1/public/old-arrows/oasy5.pfm + RELOC/fonts/type1/public/old-arrows/oasy6.pfb + RELOC/fonts/type1/public/old-arrows/oasy6.pfm + RELOC/fonts/type1/public/old-arrows/oasy7.pfb + RELOC/fonts/type1/public/old-arrows/oasy7.pfm + RELOC/fonts/type1/public/old-arrows/oasy8.pfb + RELOC/fonts/type1/public/old-arrows/oasy8.pfm + RELOC/fonts/type1/public/old-arrows/oasy9.pfb + RELOC/fonts/type1/public/old-arrows/oasy9.pfm + RELOC/tex/latex/old-arrows/old-arrows.sty +catalogue-ctan /fonts/old-arrows +catalogue-license lppl1.3 +catalogue-topics font-symbol-maths font-type1 +catalogue-version 2.0 + +name oldlatin +category Package +revision 17932 +shortdesc Compute Modern-like font with long s +relocated 1 +longdesc Metafont sources modified from Computer Modern in order to +longdesc generate "long s" which was used in old text. +containersize 33676 +containerchecksum 02ba84762eccf816178cc652d7f8d8f7d962db7d5386de4a8274dbc9524fd7a212116de0d7a53886bd5b431ddb8a5cd8ffca7defe3174cbb50f417172d2963f2 +doccontainersize 408808 +doccontainerchecksum 1ed3c1640420272b33178c62aaf4c0d538f5f1ffc5350c377788210128c74eef4e6023fa20b3d9f214f518079e8a8c3753c74d30084f5a71a994dd4b5534635e +docfiles size=237 + RELOC/doc/fonts/oldlatin/README details="Readme" + RELOC/doc/fonts/oldlatin/oldlatin.pdf details="Package documentation" + RELOC/doc/fonts/oldlatin/oldlatin.tex + RELOC/doc/fonts/oldlatin/test_alphabet.tex + RELOC/doc/fonts/oldlatin/test_ol_all.pdf + RELOC/doc/fonts/oldlatin/test_ol_all.tex + RELOC/doc/fonts/oldlatin/test_ol_bf.pdf + RELOC/doc/fonts/oldlatin/test_ol_bf.tex + RELOC/doc/fonts/oldlatin/test_ol_rm.pdf + RELOC/doc/fonts/oldlatin/test_ol_rm.tex + RELOC/doc/fonts/oldlatin/test_ol_sl.pdf + RELOC/doc/fonts/oldlatin/test_ol_sl.tex + RELOC/doc/fonts/oldlatin/test_ol_ss.pdf + RELOC/doc/fonts/oldlatin/test_ol_ss.tex + RELOC/doc/fonts/oldlatin/test_ol_tt.pdf + RELOC/doc/fonts/oldlatin/test_ol_tt.tex +runfiles size=112 + RELOC/fonts/source/public/oldlatin/olb10.mf + RELOC/fonts/source/public/oldlatin/olbx10.mf + RELOC/fonts/source/public/oldlatin/olbx12.mf + RELOC/fonts/source/public/oldlatin/olbx5.mf + RELOC/fonts/source/public/oldlatin/olbx6.mf + RELOC/fonts/source/public/oldlatin/olbx7.mf + RELOC/fonts/source/public/oldlatin/olbx8.mf + RELOC/fonts/source/public/oldlatin/olbx9.mf + RELOC/fonts/source/public/oldlatin/olbxsl10.mf + RELOC/fonts/source/public/oldlatin/oldunh10.mf + RELOC/fonts/source/public/oldlatin/olff10.mf + RELOC/fonts/source/public/oldlatin/olfib8.mf + RELOC/fonts/source/public/oldlatin/olr10.mf + RELOC/fonts/source/public/oldlatin/olr10s.mf + RELOC/fonts/source/public/oldlatin/olr12.mf + RELOC/fonts/source/public/oldlatin/olr17.mf + RELOC/fonts/source/public/oldlatin/olr5.mf + RELOC/fonts/source/public/oldlatin/olr6.mf + RELOC/fonts/source/public/oldlatin/olr7.mf + RELOC/fonts/source/public/oldlatin/olr8.mf + RELOC/fonts/source/public/oldlatin/olr9.mf + RELOC/fonts/source/public/oldlatin/olsl10.mf + RELOC/fonts/source/public/oldlatin/olsl12.mf + RELOC/fonts/source/public/oldlatin/olsl8.mf + RELOC/fonts/source/public/oldlatin/olsl9.mf + RELOC/fonts/source/public/oldlatin/olsltt10.mf + RELOC/fonts/source/public/oldlatin/olss10.mf + RELOC/fonts/source/public/oldlatin/olss12.mf + RELOC/fonts/source/public/oldlatin/olss17.mf + RELOC/fonts/source/public/oldlatin/olss8.mf + RELOC/fonts/source/public/oldlatin/olss9.mf + RELOC/fonts/source/public/oldlatin/olssbx10.mf + RELOC/fonts/source/public/oldlatin/olssdc10.mf + RELOC/fonts/source/public/oldlatin/olssi10.mf + RELOC/fonts/source/public/oldlatin/olssi12.mf + RELOC/fonts/source/public/oldlatin/olssi17.mf + RELOC/fonts/source/public/oldlatin/olssi8.mf + RELOC/fonts/source/public/oldlatin/olssi9.mf + RELOC/fonts/source/public/oldlatin/olssq8.mf + RELOC/fonts/source/public/oldlatin/olssqi8.mf + RELOC/fonts/source/public/oldlatin/oltt10.mf + RELOC/fonts/source/public/oldlatin/oltt12.mf + RELOC/fonts/source/public/oldlatin/oltt8.mf + RELOC/fonts/source/public/oldlatin/oltt9.mf + RELOC/fonts/source/public/oldlatin/olvtt10.mf + RELOC/fonts/source/public/oldlatin/oroman.mf + RELOC/fonts/source/public/oldlatin/oromanl.mf + RELOC/fonts/source/public/oldlatin/oromlig.mf + RELOC/fonts/source/public/oldlatin/oromligs.mf + RELOC/fonts/tfm/public/oldlatin/olb10.tfm + RELOC/fonts/tfm/public/oldlatin/olbx10.tfm + RELOC/fonts/tfm/public/oldlatin/olbx12.tfm + RELOC/fonts/tfm/public/oldlatin/olbx5.tfm + RELOC/fonts/tfm/public/oldlatin/olbx6.tfm + RELOC/fonts/tfm/public/oldlatin/olbx7.tfm + RELOC/fonts/tfm/public/oldlatin/olbx8.tfm + RELOC/fonts/tfm/public/oldlatin/olbx9.tfm + RELOC/fonts/tfm/public/oldlatin/olbxsl10.tfm + RELOC/fonts/tfm/public/oldlatin/oldunh10.tfm + RELOC/fonts/tfm/public/oldlatin/olff10.tfm + RELOC/fonts/tfm/public/oldlatin/olfib8.tfm + RELOC/fonts/tfm/public/oldlatin/olr10.tfm + RELOC/fonts/tfm/public/oldlatin/olr12.tfm + RELOC/fonts/tfm/public/oldlatin/olr17.tfm + RELOC/fonts/tfm/public/oldlatin/olr5.tfm + RELOC/fonts/tfm/public/oldlatin/olr6.tfm + RELOC/fonts/tfm/public/oldlatin/olr7.tfm + RELOC/fonts/tfm/public/oldlatin/olr8.tfm + RELOC/fonts/tfm/public/oldlatin/olr9.tfm + RELOC/fonts/tfm/public/oldlatin/olsl10.tfm + RELOC/fonts/tfm/public/oldlatin/olsl12.tfm + RELOC/fonts/tfm/public/oldlatin/olsl8.tfm + RELOC/fonts/tfm/public/oldlatin/olsl9.tfm + RELOC/fonts/tfm/public/oldlatin/olsltt10.tfm + RELOC/fonts/tfm/public/oldlatin/olss10.tfm + RELOC/fonts/tfm/public/oldlatin/olss12.tfm + RELOC/fonts/tfm/public/oldlatin/olss17.tfm + RELOC/fonts/tfm/public/oldlatin/olss8.tfm + RELOC/fonts/tfm/public/oldlatin/olss9.tfm + RELOC/fonts/tfm/public/oldlatin/olssbx10.tfm + RELOC/fonts/tfm/public/oldlatin/olssdc10.tfm + RELOC/fonts/tfm/public/oldlatin/olssi10.tfm + RELOC/fonts/tfm/public/oldlatin/olssi12.tfm + RELOC/fonts/tfm/public/oldlatin/olssi17.tfm + RELOC/fonts/tfm/public/oldlatin/olssi8.tfm + RELOC/fonts/tfm/public/oldlatin/olssi9.tfm + RELOC/fonts/tfm/public/oldlatin/olssq8.tfm + RELOC/fonts/tfm/public/oldlatin/olssqi8.tfm + RELOC/fonts/tfm/public/oldlatin/oltt10.tfm + RELOC/fonts/tfm/public/oldlatin/oltt12.tfm + RELOC/fonts/tfm/public/oldlatin/oltt8.tfm + RELOC/fonts/tfm/public/oldlatin/oltt9.tfm + RELOC/fonts/tfm/public/oldlatin/olvtt10.tfm +catalogue-ctan /fonts/gothic/oldlatin +catalogue-license lppl +catalogue-topics font font-mf font-historical +catalogue-version 1.00 + +name oldstandard +category Package +revision 57213 +shortdesc OldStandard fonts with LaTeX support +relocated 1 +longdesc Old Standard is designed to reproduce the actual printing style +longdesc of the early 20th century, reviving a specific type of Modern +longdesc (classicist) style of serif typefaces, very commonly used in +longdesc various editions of the late 19th and early 20th century, but +longdesc almost completely abandoned later. The font supports +longdesc typesetting of Old and Middle English, Old Icelandic, Cyrillic +longdesc (with historical characters, extensions for Old Slavonic and +longdesc localised forms), Gothic transliterations, critical editions of +longdesc Classical Greek and Latin, and many more. This package works +longdesc with TeX engines that directly support OpenType features, such +longdesc as XeTeX and LuaTeX, as well as traditional engines such as TeX +longdesc and pdfTeX. +execute addMap OldStandard.map +containersize 1702320 +containerchecksum 848400b102d5ba0ceb56c4d50c65482bf5b3c468f4ed71d0ead25f0612d54552150bf467b50ca5686028797a25e46db195307ba0764473ce520e14e93403140b +doccontainersize 301996 +doccontainerchecksum 13d73f373b75de8be6e013595eb257ad4f2cb601f56ce5ee57a16cb427068ae597f3fb802b781f9c60e5e1e502f253b09ec3d2740355929ccb236a1d55ae1933 +docfiles size=103 + RELOC/doc/fonts/oldstandard/FONTLOG.txt + RELOC/doc/fonts/oldstandard/OFL-FAQ.txt + RELOC/doc/fonts/oldstandard/OFL.txt + RELOC/doc/fonts/oldstandard/OldStandard.fontspec + RELOC/doc/fonts/oldstandard/README details="Readme" + RELOC/doc/fonts/oldstandard/README.md + RELOC/doc/fonts/oldstandard/fonttable.lua + RELOC/doc/fonts/oldstandard/fonttable.pdf + RELOC/doc/fonts/oldstandard/fonttable.tex + RELOC/doc/fonts/oldstandard/oldstandard-samples.pdf details="Font samples" + RELOC/doc/fonts/oldstandard/oldstandard-samples.tex + RELOC/doc/fonts/oldstandard/oldstandard.pdf details="Package documentation" + RELOC/doc/fonts/oldstandard/oldstandard.tex +runfiles size=785 + RELOC/fonts/enc/dvips/oldstandard/ost_2deiwc.enc + RELOC/fonts/enc/dvips/oldstandard/ost_4gryax.enc + RELOC/fonts/enc/dvips/oldstandard/ost_4ubwsr.enc + RELOC/fonts/enc/dvips/oldstandard/ost_5nnl5u.enc + RELOC/fonts/enc/dvips/oldstandard/ost_5whbgv.enc + RELOC/fonts/enc/dvips/oldstandard/ost_6xqr26.enc + RELOC/fonts/enc/dvips/oldstandard/ost_angj2q.enc + RELOC/fonts/enc/dvips/oldstandard/ost_asyrwx.enc + RELOC/fonts/enc/dvips/oldstandard/ost_bjztjg.enc + RELOC/fonts/enc/dvips/oldstandard/ost_bqhfkj.enc + RELOC/fonts/enc/dvips/oldstandard/ost_dqfezc.enc + RELOC/fonts/enc/dvips/oldstandard/ost_eyrxhh.enc + RELOC/fonts/enc/dvips/oldstandard/ost_f7vsty.enc + RELOC/fonts/enc/dvips/oldstandard/ost_hn3tfb.enc + RELOC/fonts/enc/dvips/oldstandard/ost_im33zw.enc + RELOC/fonts/enc/dvips/oldstandard/ost_jsesfs.enc + RELOC/fonts/enc/dvips/oldstandard/ost_kb3yb7.enc + RELOC/fonts/enc/dvips/oldstandard/ost_lpt7jr.enc + RELOC/fonts/enc/dvips/oldstandard/ost_mknljf.enc + RELOC/fonts/enc/dvips/oldstandard/ost_o47vxq.enc + RELOC/fonts/enc/dvips/oldstandard/ost_p56nol.enc + RELOC/fonts/enc/dvips/oldstandard/ost_ppxooj.enc + RELOC/fonts/enc/dvips/oldstandard/ost_qpx6oq.enc + RELOC/fonts/enc/dvips/oldstandard/ost_ra2ua5.enc + RELOC/fonts/enc/dvips/oldstandard/ost_recs4b.enc + RELOC/fonts/enc/dvips/oldstandard/ost_roofh6.enc + RELOC/fonts/enc/dvips/oldstandard/ost_sef3nf.enc + RELOC/fonts/enc/dvips/oldstandard/ost_sfa7gz.enc + RELOC/fonts/enc/dvips/oldstandard/ost_sngi4d.enc + RELOC/fonts/enc/dvips/oldstandard/ost_sykxvg.enc + RELOC/fonts/enc/dvips/oldstandard/ost_tbxs5z.enc + RELOC/fonts/enc/dvips/oldstandard/ost_uj34jt.enc + RELOC/fonts/enc/dvips/oldstandard/ost_vznixw.enc + RELOC/fonts/enc/dvips/oldstandard/ost_y2jfiq.enc + RELOC/fonts/enc/dvips/oldstandard/ost_yp4wmb.enc + RELOC/fonts/enc/dvips/oldstandard/ost_ytxedg.enc + RELOC/fonts/map/dvips/oldstandard/OldStandard.map + RELOC/fonts/opentype/public/oldstandard/OldStandard-Bold.otf + RELOC/fonts/opentype/public/oldstandard/OldStandard-BoldItalic.otf + RELOC/fonts/opentype/public/oldstandard/OldStandard-Italic.otf + RELOC/fonts/opentype/public/oldstandard/OldStandard-Regular.otf + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ts1.tfm + RELOC/fonts/type1/public/oldstandard/OldStandard-Bold.pfb + RELOC/fonts/type1/public/oldstandard/OldStandard-BoldItalic.pfb + RELOC/fonts/type1/public/oldstandard/OldStandard-Italic.pfb + RELOC/fonts/type1/public/oldstandard/OldStandard-Regular.pfb + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-sup-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-sc-t2c.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-sc-t2c.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-sup-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-sc-t2c.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-sup-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-sc-t2c.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-ts1.vf + RELOC/tex/latex/oldstandard/LGROldStandard-Sup.fd + RELOC/tex/latex/oldstandard/LGROldStandard-TLF.fd + RELOC/tex/latex/oldstandard/LY1OldStandard-Sup.fd + RELOC/tex/latex/oldstandard/LY1OldStandard-TLF.fd + RELOC/tex/latex/oldstandard/OT1OldStandard-Sup.fd + RELOC/tex/latex/oldstandard/OT1OldStandard-TLF.fd + RELOC/tex/latex/oldstandard/OldStandard.sty + RELOC/tex/latex/oldstandard/T1OldStandard-Sup.fd + RELOC/tex/latex/oldstandard/T1OldStandard-TLF.fd + RELOC/tex/latex/oldstandard/T2AOldStandard-Sup.fd + RELOC/tex/latex/oldstandard/T2AOldStandard-TLF.fd + RELOC/tex/latex/oldstandard/T2BOldStandard-Sup.fd + RELOC/tex/latex/oldstandard/T2BOldStandard-TLF.fd + RELOC/tex/latex/oldstandard/T2COldStandard-Sup.fd + RELOC/tex/latex/oldstandard/T2COldStandard-TLF.fd + RELOC/tex/latex/oldstandard/TS1OldStandard-TLF.fd +catalogue-contact-bugs https://gitlab.com/ralessi/oldstandard/issues +catalogue-contact-home http://git.robertalessi.net/oldstandard +catalogue-ctan /fonts/oldstandard +catalogue-license ofl lppl gpl +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.6 + +name oldstyle +category Package +revision 15878 +shortdesc Old style numbers in OT1 encoding +relocated 1 +longdesc Font information needed to load the cmmi and cmmib fonts for +longdesc use to produce oldstyle numbers. +containersize 1688 +containerchecksum 968ff7b641f6ae6e8aaf43d1ae9617710b0bfed9894dad135cfd11050eef1c35c48d589d58d3a94e34f93c22d85c58b047ce8d0bbf0ae5c2e645de72e327f9cb +doccontainersize 51512 +doccontainerchecksum 79e2c2d155bab57456cf7d2ec08930d54e538a830c1e7fb12c0731b246b917840d0ba06d31939ca97e7a20e53a061caa5a5a3beb139fc1a05f32dd9497a37ca7 +docfiles size=18 + RELOC/doc/latex/oldstyle/oldstyle.pdf details="Package documentation" +srccontainersize 2636 +srccontainerchecksum a9200c32d19045cd56121a64727c1465ef16f48269e4b9bc6957106451694707fc0fc3db253e0db425fa8396b32560b5922f8556fafdeb68ad129d90f027d944 +srcfiles size=3 + RELOC/source/latex/oldstyle/oldstyle.dtx + RELOC/source/latex/oldstyle/oldstyle.ins +runfiles size=2 + RELOC/tex/latex/oldstyle/Ucmm.fd + RELOC/tex/latex/oldstyle/oldstyle.sty +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-license lppl +catalogue-topics font-supp +catalogue-version 0.2 + +name olsak-misc +category Package +revision 54080 +shortdesc Collection of plain TeX macros written by Petr Olsak +relocated 1 +longdesc This is a collection of various single-file plain TeX macros +longdesc written by Petr Olsak. The documentation is included in each +longdesc file separately. booklet.tex: re-orders PDF pages and collects +longdesc them for booklet printing cnv.tex: conversion of texts +longdesc cnv-pu.tex: example of usage of cnv.tex --- pdf outlines in +longdesc Unicode cnv-word.tex: example of usage of cnv.tex --- word to +longdesc word conversion eparam.tex: Full expansion during parameter +longdesc scanning fun-coffee.tex: generates splotches in the document +longdesc openclose.tex: repairs balanced text between \Open ...\Close +longdesc pair qrcode.tex: QR code generated at TeX level scanbase.tex: +longdesc parser of text-style mysql outputs scancsv.tex: parser of CSV +longdesc format seplist.tex: macros with alternative separators of a +longdesc parameter xmlparser.tex: parser of XML language +containersize 25856 +containerchecksum 2645f2964d95754cef9b3f500fe909bc379caeb95ffdc7423fc729f6abc134ea9eaeb54b5190884a1822009be3135b752efb1a7ae5b2b00635226798ffafb974 +doccontainersize 41764 +doccontainerchecksum d9c3ddc194111eb16dc025f2b3540e7f295e2c52645269bd06cdc448e528841da6367739d8a5a7e15ee5ac2adb04c2e9068d1a7da615bd6bda2f983288c6aa0e +docfiles size=49 + RELOC/doc/generic/olsak-misc/README details="Readme" + RELOC/doc/generic/olsak-misc/booklet.tex + RELOC/doc/generic/olsak-misc/cnv-pu.tex + RELOC/doc/generic/olsak-misc/cnv-word.tex + RELOC/doc/generic/olsak-misc/cnv.tex + RELOC/doc/generic/olsak-misc/eparam.tex + RELOC/doc/generic/olsak-misc/fun-coffee.tex + RELOC/doc/generic/olsak-misc/openclose.tex + RELOC/doc/generic/olsak-misc/seplist.tex +runfiles size=31 + RELOC/tex/generic/olsak-misc/qrcode.tex + RELOC/tex/generic/olsak-misc/scanbase.tex + RELOC/tex/generic/olsak-misc/scancsv.tex + RELOC/tex/generic/olsak-misc/xmlparser.tex +catalogue-contact-home http://petr.olsak.net/ftp/olsak/makra/ +catalogue-ctan /macros/generic/olsak-misc +catalogue-license pd +catalogue-topics misc-support +catalogue-version May 2019 + +name omega +category Package +revision 33046 +shortdesc A wide-character-set extension of TeX +relocated 1 +longdesc A development of TeX, which deals in multi-octet Unicode +longdesc characters, to enable native treatment of a wide range of +longdesc languages without changing character-set. Work on Omega has +longdesc ceased (the TeX Live package contains only support files); its +longdesc compatible successor is aleph, which is itself also in major +longdesc maintenance mode only. Ongoing projects developing Omega (and +longdesc Aleph) ideas include Omega-2 and LuaTeX. +execute addMap omega.map +containersize 992228 +containerchecksum bd07f654ad56219136e2f9e7612b87892bf8c6d0c8f2e41434a7fabb8b159bc43f79444301383adf560f1985f64e639dd496dad6d3ea97ccbd85fcee4d7a36e0 +doccontainersize 196080 +doccontainerchecksum 31eb2aa643ec37d68d902f4de7be391e7da3af61bde93e78beb1e6df1c6367fcfe00f88e29c8cc878b9cd40f2e3a45f9e46bf24ca3a5608aeae09be491130fef +docfiles size=138 + RELOC/doc/omega/base/doc-1.8.tex + RELOC/doc/omega/base/torture.ps + RELOC/doc/omega/base/torture.tex +runfiles size=1523 + RELOC/dvips/omega/config.omega + RELOC/dvips/omega/omega.cfg + RELOC/fonts/afm/public/omega/omsea1.afm + RELOC/fonts/afm/public/omega/omsea1b.afm + RELOC/fonts/afm/public/omega/omsea2.afm + RELOC/fonts/afm/public/omega/omsea2b.afm + RELOC/fonts/afm/public/omega/omsea3.afm + RELOC/fonts/afm/public/omega/omsea3b.afm + RELOC/fonts/afm/public/omega/omseco.afm + RELOC/fonts/afm/public/omega/omsecob.afm + RELOC/fonts/afm/public/omega/omsecobi.afm + RELOC/fonts/afm/public/omega/omsecoi.afm + RELOC/fonts/afm/public/omega/omsecx.afm + RELOC/fonts/afm/public/omega/omsecy.afm + RELOC/fonts/afm/public/omega/omsegr.afm + RELOC/fonts/afm/public/omega/omsegrb.afm + RELOC/fonts/afm/public/omega/omsegrbi.afm + RELOC/fonts/afm/public/omega/omsegri.afm + RELOC/fonts/afm/public/omega/omseha.afm + RELOC/fonts/afm/public/omega/omsehe.afm + RELOC/fonts/afm/public/omega/omseip.afm + RELOC/fonts/afm/public/omega/omsela.afm + RELOC/fonts/afm/public/omega/omselab.afm + RELOC/fonts/afm/public/omega/omselabi.afm + RELOC/fonts/afm/public/omega/omselai.afm + RELOC/fonts/afm/public/omega/omseti.afm + RELOC/fonts/map/dvips/omega/omega.map + RELOC/fonts/ofm/public/omega/omarab.ofm + RELOC/fonts/ofm/public/omega/omarabb.ofm + RELOC/fonts/ofm/public/omega/omlgc.ofm + RELOC/fonts/ofm/public/omega/omlgcb.ofm + RELOC/fonts/ofm/public/omega/omlgcbi.ofm + RELOC/fonts/ofm/public/omega/omlgci.ofm + RELOC/fonts/ofm/public/omega/ucitt10.ofm + RELOC/fonts/ofm/public/omega/ucsltt10.ofm + RELOC/fonts/ofm/public/omega/uctt10.ofm + RELOC/fonts/ofm/public/omega/uctt12.ofm + RELOC/fonts/ofm/public/omega/uctt8.ofm + RELOC/fonts/ofm/public/omega/uctt9.ofm + RELOC/fonts/ofm/public/omega/ucvtt10.ofm + RELOC/fonts/ovf/public/omega/omarab.ovf + RELOC/fonts/ovf/public/omega/omarabb.ovf + RELOC/fonts/ovf/public/omega/omlgc.ovf + RELOC/fonts/ovf/public/omega/omlgcb.ovf + RELOC/fonts/ovf/public/omega/omlgcbi.ovf + RELOC/fonts/ovf/public/omega/omlgci.ovf + RELOC/fonts/ovf/public/omega/ucitt10.ovf + RELOC/fonts/ovf/public/omega/ucsltt10.ovf + RELOC/fonts/ovf/public/omega/uctt10.ovf + RELOC/fonts/ovf/public/omega/uctt12.ovf + RELOC/fonts/ovf/public/omega/uctt8.ovf + RELOC/fonts/ovf/public/omega/uctt9.ovf + RELOC/fonts/ovf/public/omega/ucvtt10.ovf + RELOC/fonts/ovp/public/omega/omarab.ovp + RELOC/fonts/ovp/public/omega/omarabb.ovp + RELOC/fonts/ovp/public/omega/omlgc.ovp + RELOC/fonts/ovp/public/omega/omlgcb.ovp + RELOC/fonts/ovp/public/omega/omlgcbi.ovp + RELOC/fonts/ovp/public/omega/omlgci.ovp + RELOC/fonts/ovp/public/omega/ucitt10.ovp + RELOC/fonts/ovp/public/omega/ucsltt10.ovp + RELOC/fonts/ovp/public/omega/uctt10.ovp + RELOC/fonts/ovp/public/omega/uctt12.ovp + RELOC/fonts/ovp/public/omega/uctt8.ovp + RELOC/fonts/ovp/public/omega/uctt9.ovp + RELOC/fonts/ovp/public/omega/ucvtt10.ovp + RELOC/fonts/tfm/public/omega/omding.tfm + RELOC/fonts/tfm/public/omega/omsea1.tfm + RELOC/fonts/tfm/public/omega/omsea1b.tfm + RELOC/fonts/tfm/public/omega/omsea2.tfm + RELOC/fonts/tfm/public/omega/omsea2b.tfm + RELOC/fonts/tfm/public/omega/omsea3.tfm + RELOC/fonts/tfm/public/omega/omsea3b.tfm + RELOC/fonts/tfm/public/omega/omseco.tfm + RELOC/fonts/tfm/public/omega/omsecob.tfm + RELOC/fonts/tfm/public/omega/omsecobi.tfm + RELOC/fonts/tfm/public/omega/omsecoi.tfm + RELOC/fonts/tfm/public/omega/omsecx.tfm + RELOC/fonts/tfm/public/omega/omsecy.tfm + RELOC/fonts/tfm/public/omega/omsegr.tfm + RELOC/fonts/tfm/public/omega/omsegrb.tfm + RELOC/fonts/tfm/public/omega/omsegrbi.tfm + RELOC/fonts/tfm/public/omega/omsegri.tfm + RELOC/fonts/tfm/public/omega/omseha.tfm + RELOC/fonts/tfm/public/omega/omseip.tfm + RELOC/fonts/tfm/public/omega/omsela.tfm + RELOC/fonts/tfm/public/omega/omselab.tfm + RELOC/fonts/tfm/public/omega/omselabi.tfm + RELOC/fonts/tfm/public/omega/omselai.tfm + RELOC/fonts/tfm/public/omega/omseti.tfm + RELOC/fonts/tfm/public/omega/omssti.tfm + RELOC/fonts/type1/public/omega/omding.pfb + RELOC/fonts/type1/public/omega/omsea1.pfb + RELOC/fonts/type1/public/omega/omsea1b.pfb + RELOC/fonts/type1/public/omega/omsea2.pfb + RELOC/fonts/type1/public/omega/omsea2b.pfb + RELOC/fonts/type1/public/omega/omsea3.pfb + RELOC/fonts/type1/public/omega/omsea3b.pfb + RELOC/fonts/type1/public/omega/omseco.pfb + RELOC/fonts/type1/public/omega/omsecob.pfb + RELOC/fonts/type1/public/omega/omsecobi.pfb + RELOC/fonts/type1/public/omega/omsecoi.pfb + RELOC/fonts/type1/public/omega/omsecx.pfb + RELOC/fonts/type1/public/omega/omsecy.pfb + RELOC/fonts/type1/public/omega/omsecyb.pfb + RELOC/fonts/type1/public/omega/omsecyi.pfb + RELOC/fonts/type1/public/omega/omsegr.pfb + RELOC/fonts/type1/public/omega/omsegrb.pfb + RELOC/fonts/type1/public/omega/omsegrbi.pfb + RELOC/fonts/type1/public/omega/omsegri.pfb + RELOC/fonts/type1/public/omega/omseha.pfb + RELOC/fonts/type1/public/omega/omsehe.pfb + RELOC/fonts/type1/public/omega/omseip.pfb + RELOC/fonts/type1/public/omega/omsela.pfb + RELOC/fonts/type1/public/omega/omselab.pfb + RELOC/fonts/type1/public/omega/omselabi.pfb + RELOC/fonts/type1/public/omega/omselai.pfb + RELOC/fonts/type1/public/omega/omseti.pfb + RELOC/fonts/type1/public/omega/omssti.pfb + RELOC/omega/ocp/char2uni/in646.ocp + RELOC/omega/ocp/char2uni/in88591.ocp + RELOC/omega/ocp/char2uni/in88592.ocp + RELOC/omega/ocp/char2uni/in88593.ocp + RELOC/omega/ocp/char2uni/in88594.ocp + RELOC/omega/ocp/char2uni/in88595.ocp + RELOC/omega/ocp/char2uni/in88596.ocp + RELOC/omega/ocp/char2uni/in88597.ocp + RELOC/omega/ocp/char2uni/in88598.ocp + RELOC/omega/ocp/char2uni/in88599.ocp + RELOC/omega/ocp/char2uni/in8859a.ocp + RELOC/omega/ocp/char2uni/in8859d.ocp + RELOC/omega/ocp/char2uni/in8859e.ocp + RELOC/omega/ocp/char2uni/in8859f.ocp + RELOC/omega/ocp/char2uni/in8859g.ocp + RELOC/omega/ocp/char2uni/inatari.ocp + RELOC/omega/ocp/char2uni/inav.ocp + RELOC/omega/ocp/char2uni/inbig5.ocp + RELOC/omega/ocp/char2uni/incp1250.ocp + RELOC/omega/ocp/char2uni/incp1251.ocp + RELOC/omega/ocp/char2uni/incp1252.ocp + RELOC/omega/ocp/char2uni/incp1253.ocp + RELOC/omega/ocp/char2uni/incp1254.ocp + RELOC/omega/ocp/char2uni/incp1255.ocp + RELOC/omega/ocp/char2uni/incp1256.ocp + RELOC/omega/ocp/char2uni/incp1257.ocp + RELOC/omega/ocp/char2uni/incp1258.ocp + RELOC/omega/ocp/char2uni/incp866.ocp + RELOC/omega/ocp/char2uni/incp874.ocp + RELOC/omega/ocp/char2uni/inebcdic.ocp + RELOC/omega/ocp/char2uni/ingb.ocp + RELOC/omega/ocp/char2uni/inkoi8.ocp + RELOC/omega/ocp/char2uni/inmac.ocp + RELOC/omega/ocp/char2uni/inmsdos.ocp + RELOC/omega/ocp/char2uni/inmsdos2.ocp + RELOC/omega/ocp/char2uni/innext.ocp + RELOC/omega/ocp/char2uni/inov.ocp + RELOC/omega/ocp/char2uni/inps2.ocp + RELOC/omega/ocp/char2uni/insf1.ocp + RELOC/omega/ocp/char2uni/insf2.ocp + RELOC/omega/ocp/char2uni/intis620.ocp + RELOC/omega/ocp/char2uni/inucode.ocp + RELOC/omega/ocp/char2uni/inutf8.ocp + RELOC/omega/ocp/char2uni/inviet1.ocp + RELOC/omega/ocp/char2uni/inviet2.ocp + RELOC/omega/ocp/char2uni/inviscii.ocp + RELOC/omega/ocp/misc/ebcdic.ocp + RELOC/omega/ocp/misc/id.ocp + RELOC/omega/ocp/omega/7arb2uni.ocp + RELOC/omega/ocp/omega/7ber2uni.ocp + RELOC/omega/ocp/omega/7cyr2uni.ocp + RELOC/omega/ocp/omega/7hma2uni.ocp + RELOC/omega/ocp/omega/7in88593.ocp + RELOC/omega/ocp/omega/7lbe2uni.ocp + RELOC/omega/ocp/omega/7pap2uni.ocp + RELOC/omega/ocp/omega/7pas2uni.ocp + RELOC/omega/ocp/omega/7snd2uni.ocp + RELOC/omega/ocp/omega/7syr2uni.ocp + RELOC/omega/ocp/omega/7tbe2uni.ocp + RELOC/omega/ocp/omega/7urd2uni.ocp + RELOC/omega/ocp/omega/8mac-arb2uni.ocp + RELOC/omega/ocp/omega/8mac-cyr2uni.ocp + RELOC/omega/ocp/omega/apostr2psili.ocp + RELOC/omega/ocp/omega/cuni2acad.ocp + RELOC/omega/ocp/omega/cuni2amal.ocp + RELOC/omega/ocp/omega/cuni2arab.ex.ocp + RELOC/omega/ocp/omega/cuni2arab.ocp + RELOC/omega/ocp/omega/cuni2asv.ocp + RELOC/omega/ocp/omega/cuni2bout.ocp + RELOC/omega/ocp/omega/cuni2mona.ocp + RELOC/omega/ocp/omega/cuni2nar.ocp + RELOC/omega/ocp/omega/cuni2nva.ocp + RELOC/omega/ocp/omega/cuni2oar-novow.ocp + RELOC/omega/ocp/omega/cuni2oar.ocp + RELOC/omega/ocp/omega/cunioara.ocp + RELOC/omega/ocp/omega/dblquote-point.ocp + RELOC/omega/ocp/omega/destroy.ocp + RELOC/omega/ocp/omega/french2uni.ocp + RELOC/omega/ocp/omega/greek.ocp + RELOC/omega/ocp/omega/grpo2uni.ocp + RELOC/omega/ocp/omega/grpotilde2uni.ocp + RELOC/omega/ocp/omega/inverted-iota-upsilon.ocp + RELOC/omega/ocp/omega/isogr2uni-verbatim.ocp + RELOC/omega/ocp/omega/isogr2uni.ocp + RELOC/omega/ocp/omega/lat2uni.ocp + RELOC/omega/ocp/omega/lowercase.ocp + RELOC/omega/ocp/omega/lunatesigma.ocp + RELOC/omega/ocp/omega/macgr2uni.ocp + RELOC/omega/ocp/omega/medbeta.ocp + RELOC/omega/ocp/omega/mixedgreek2uni.ocp + RELOC/omega/ocp/omega/tarauni.ocp + RELOC/omega/ocp/omega/test1.ocp + RELOC/omega/ocp/omega/test3.ocp + RELOC/omega/ocp/omega/tiqwah.ocp + RELOC/omega/ocp/omega/tiqwah2.ocp + RELOC/omega/ocp/omega/tsinduni.ocp + RELOC/omega/ocp/omega/turduuni.ocp + RELOC/omega/ocp/omega/uni2cuni.ocp + RELOC/omega/ocp/omega/uni2greek-verbatim.ocp + RELOC/omega/ocp/omega/uni2greek.ocp + RELOC/omega/ocp/omega/uni2lat-noffi.ocp + RELOC/omega/ocp/omega/uni2lat.ocp + RELOC/omega/ocp/omega/unicuni.ocp + RELOC/omega/ocp/omega/uppercase-no-accents.ocp + RELOC/omega/ocp/omega/uppercase.ocp + RELOC/omega/ocp/uni2char/out88591.ocp + RELOC/omega/ocp/uni2char/oututf8.ocp + RELOC/omega/otp/char2uni/in646.otp + RELOC/omega/otp/char2uni/in88591.otp + RELOC/omega/otp/char2uni/in88592.otp + RELOC/omega/otp/char2uni/in88593.otp + RELOC/omega/otp/char2uni/in88594.otp + RELOC/omega/otp/char2uni/in88595.otp + RELOC/omega/otp/char2uni/in88596.otp + RELOC/omega/otp/char2uni/in88597.otp + RELOC/omega/otp/char2uni/in88598.otp + RELOC/omega/otp/char2uni/in88599.otp + RELOC/omega/otp/char2uni/in8859a.otp + RELOC/omega/otp/char2uni/in8859d.otp + RELOC/omega/otp/char2uni/in8859e.otp + RELOC/omega/otp/char2uni/in8859f.otp + RELOC/omega/otp/char2uni/in8859g.otp + RELOC/omega/otp/char2uni/inatari.otp + RELOC/omega/otp/char2uni/inav.otp + RELOC/omega/otp/char2uni/inbig5.otp + RELOC/omega/otp/char2uni/incp1250.otp + RELOC/omega/otp/char2uni/incp1251.otp + RELOC/omega/otp/char2uni/incp1252.otp + RELOC/omega/otp/char2uni/incp1253.otp + RELOC/omega/otp/char2uni/incp1254.otp + RELOC/omega/otp/char2uni/incp1255.otp + RELOC/omega/otp/char2uni/incp1256.otp + RELOC/omega/otp/char2uni/incp1257.otp + RELOC/omega/otp/char2uni/incp1258.otp + RELOC/omega/otp/char2uni/incp866.otp + RELOC/omega/otp/char2uni/incp874.otp + RELOC/omega/otp/char2uni/inebcdic.otp + RELOC/omega/otp/char2uni/ingb.otp + RELOC/omega/otp/char2uni/inkoi8.otp + RELOC/omega/otp/char2uni/inmac.otp + RELOC/omega/otp/char2uni/inmsdos.otp + RELOC/omega/otp/char2uni/inmsdos2.otp + RELOC/omega/otp/char2uni/innext.otp + RELOC/omega/otp/char2uni/inov.otp + RELOC/omega/otp/char2uni/inps2.otp + RELOC/omega/otp/char2uni/insf1.otp + RELOC/omega/otp/char2uni/insf2.otp + RELOC/omega/otp/char2uni/intis620.otp + RELOC/omega/otp/char2uni/inucode.otp + RELOC/omega/otp/char2uni/inutf8.otp + RELOC/omega/otp/char2uni/inviet1.otp + RELOC/omega/otp/char2uni/inviet2.otp + RELOC/omega/otp/char2uni/inviscii.otp + RELOC/omega/otp/misc/ebcdic.otp + RELOC/omega/otp/misc/id.otp + RELOC/omega/otp/omega/7arb2uni.otp + RELOC/omega/otp/omega/7ber2uni.otp + RELOC/omega/otp/omega/7cyr2uni.otp + RELOC/omega/otp/omega/7hma2uni.otp + RELOC/omega/otp/omega/7in88593.otp + RELOC/omega/otp/omega/7lbe2uni.otp + RELOC/omega/otp/omega/7pap2uni.otp + RELOC/omega/otp/omega/7pas2uni.otp + RELOC/omega/otp/omega/7snd2uni.otp + RELOC/omega/otp/omega/7syr2uni.otp + RELOC/omega/otp/omega/7tbe2uni.otp + RELOC/omega/otp/omega/7urd2uni.otp + RELOC/omega/otp/omega/8mac-arb2uni.otp + RELOC/omega/otp/omega/8mac-cyr2uni.otp + RELOC/omega/otp/omega/apostr2psili.otp + RELOC/omega/otp/omega/cuni2acad.otp + RELOC/omega/otp/omega/cuni2amal.otp + RELOC/omega/otp/omega/cuni2arab.ex.otp + RELOC/omega/otp/omega/cuni2asv.otp + RELOC/omega/otp/omega/cuni2bout.otp + RELOC/omega/otp/omega/cuni2mona.otp + RELOC/omega/otp/omega/cuni2nar.otp + RELOC/omega/otp/omega/cuni2nva.otp + RELOC/omega/otp/omega/cuni2oar-novow.otp + RELOC/omega/otp/omega/cuni2oar.otp + RELOC/omega/otp/omega/dblquote-point.otp + RELOC/omega/otp/omega/destroy.otp + RELOC/omega/otp/omega/french2uni.otp + RELOC/omega/otp/omega/grpo2uni.otp + RELOC/omega/otp/omega/grpotilde2uni.otp + RELOC/omega/otp/omega/inverted-iota-upsilon.otp + RELOC/omega/otp/omega/isogr2uni-verbatim.otp + RELOC/omega/otp/omega/isogr2uni.otp + RELOC/omega/otp/omega/lat2uni.otp + RELOC/omega/otp/omega/lowercase.otp + RELOC/omega/otp/omega/lunatesigma.otp + RELOC/omega/otp/omega/macgr2uni.otp + RELOC/omega/otp/omega/medbeta.otp + RELOC/omega/otp/omega/mixedgreek2uni.otp + RELOC/omega/otp/omega/uni2cuni.otp + RELOC/omega/otp/omega/uni2greek-verbatim.otp + RELOC/omega/otp/omega/uni2greek.otp + RELOC/omega/otp/omega/uni2lat-noffi.otp + RELOC/omega/otp/omega/uni2lat.otp + RELOC/omega/otp/omega/uppercase-no-accents.otp + RELOC/omega/otp/omega/uppercase.otp + RELOC/omega/otp/uni2char/out88591.otp + RELOC/omega/otp/uni2char/oututf8.otp + RELOC/tex/generic/encodings/cmbsy.onm + RELOC/tex/generic/encodings/cmbx.onm + RELOC/tex/generic/encodings/cmcsc.onm + RELOC/tex/generic/encodings/cmex.onm + RELOC/tex/generic/encodings/cmmi.onm + RELOC/tex/generic/encodings/cmmib.onm + RELOC/tex/generic/encodings/cmr.onm + RELOC/tex/generic/encodings/cmr1.onm + RELOC/tex/generic/encodings/cmsl.onm + RELOC/tex/generic/encodings/cmsy.onm + RELOC/tex/generic/encodings/cmti.onm + RELOC/tex/generic/encodings/cmtt.onm + RELOC/tex/generic/encodings/ecrm.onm + RELOC/tex/generic/encodings/euex.onm + RELOC/tex/generic/encodings/eufb.onm + RELOC/tex/generic/encodings/eufm.onm + RELOC/tex/generic/encodings/eurb.onm + RELOC/tex/generic/encodings/eurm.onm + RELOC/tex/generic/encodings/eusb.onm + RELOC/tex/generic/encodings/eusm.onm + RELOC/tex/generic/encodings/msam.onm + RELOC/tex/generic/encodings/msbm.onm + RELOC/tex/generic/omegahyph/bghyph.tex + RELOC/tex/generic/omegahyph/lthyph.tex + RELOC/tex/generic/omegahyph/srhyph.tex + RELOC/tex/plain/omega/grlccode.tex + RELOC/tex/plain/omega/omega.tex +catalogue-ctan /obsolete/systems/omega +catalogue-license gpl +catalogue-topics engine omega obsolete + +name omegaware +category TLCore +revision 57972 +catalogue omega +shortdesc A wide-character-set extension of TeX +longdesc A development of TeX, which deals in multi-octet Unicode +longdesc characters, to enable native treatment of a wide range of +longdesc languages without changing character-set. Work on Omega has +longdesc ceased (the TeX Live package contains only support files); its +longdesc compatible successor is aleph, which is itself also in major +longdesc maintenance mode only. Ongoing projects developing Omega (and +longdesc Aleph) ideas include Omega-2 and LuaTeX. +depend omegaware.ARCH +containersize 600 +containerchecksum 229b5609618caf2122d084955ddc57804ffa3b3296beb00d11bc783d6740008a68d15cfef5c0dd5acfaf572fd8bb204b8c161267b315b16de558f71d41ba5b8e +doccontainersize 148832 +doccontainerchecksum 8a3728aad3cc5ed99305b5fd8e2301c13ff2734c685c506e5cb00c7412c3f946631f1a86fe086277f85a61fbbf80e447438af6cdd67319b5d04f57f02569a49a +docfiles size=61 + texmf-dist/doc/man/man1/odvicopy.1 + texmf-dist/doc/man/man1/odvicopy.man1.pdf + texmf-dist/doc/man/man1/odvitype.1 + texmf-dist/doc/man/man1/odvitype.man1.pdf + texmf-dist/doc/man/man1/ofm2opl.1 + texmf-dist/doc/man/man1/ofm2opl.man1.pdf + texmf-dist/doc/man/man1/opl2ofm.1 + texmf-dist/doc/man/man1/opl2ofm.man1.pdf + texmf-dist/doc/man/man1/otangle.1 + texmf-dist/doc/man/man1/otangle.man1.pdf + texmf-dist/doc/man/man1/otp2ocp.1 + texmf-dist/doc/man/man1/otp2ocp.man1.pdf + texmf-dist/doc/man/man1/outocp.1 + texmf-dist/doc/man/man1/outocp.man1.pdf + texmf-dist/doc/man/man1/ovf2ovp.1 + texmf-dist/doc/man/man1/ovf2ovp.man1.pdf + texmf-dist/doc/man/man1/ovp2ovf.1 + texmf-dist/doc/man/man1/ovp2ovf.man1.pdf +catalogue-ctan /obsolete/systems/omega +catalogue-license gpl +catalogue-topics engine omega obsolete + +name omegaware.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of omegaware +containersize 254932 +containerchecksum d9b4d60e602c31f95f6a40f1fb3ad786a820ec948e03c547e172b981a35c7b4aca9cde55623401aa9bc7548a1d9eb0429ecb25845343e4bbff203736af60da8a +binfiles arch=aarch64-linux size=300 + bin/aarch64-linux/odvicopy + bin/aarch64-linux/odvitype + bin/aarch64-linux/ofm2opl + bin/aarch64-linux/omfonts + bin/aarch64-linux/opl2ofm + bin/aarch64-linux/otangle + bin/aarch64-linux/otp2ocp + bin/aarch64-linux/outocp + bin/aarch64-linux/ovf2ovp + bin/aarch64-linux/ovp2ovf + bin/aarch64-linux/wofm2opl + bin/aarch64-linux/wopl2ofm + bin/aarch64-linux/wovf2ovp + +name omegaware.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of omegaware +containersize 299132 +containerchecksum c061f384ff423986f23c89c5983b8ce2f9455ef1ed3e75c5228e1ba94acb7646f7f65af7706329865c304e388e0cd890bf59e846564eb923cd8a30e224d17cd5 +binfiles arch=amd64-freebsd size=327 + bin/amd64-freebsd/odvicopy + bin/amd64-freebsd/odvitype + bin/amd64-freebsd/ofm2opl + bin/amd64-freebsd/omfonts + bin/amd64-freebsd/opl2ofm + bin/amd64-freebsd/otangle + bin/amd64-freebsd/otp2ocp + bin/amd64-freebsd/outocp + bin/amd64-freebsd/ovf2ovp + bin/amd64-freebsd/ovp2ovf + bin/amd64-freebsd/wofm2opl + bin/amd64-freebsd/wopl2ofm + bin/amd64-freebsd/wovf2ovp + +name omegaware.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of omegaware +containersize 246860 +containerchecksum 2763a8512b0625d48e503a27099c7c2174b622153ea21588f13ad3cdfc6d1ad22fc17b4a292cfde91568990e7a01c12853f86f55dc8455790ed9fd5514916868 +binfiles arch=amd64-netbsd size=340 + bin/amd64-netbsd/odvicopy + bin/amd64-netbsd/odvitype + bin/amd64-netbsd/ofm2opl + bin/amd64-netbsd/omfonts + bin/amd64-netbsd/opl2ofm + bin/amd64-netbsd/otangle + bin/amd64-netbsd/otp2ocp + bin/amd64-netbsd/outocp + bin/amd64-netbsd/ovf2ovp + bin/amd64-netbsd/ovp2ovf + bin/amd64-netbsd/wofm2opl + bin/amd64-netbsd/wopl2ofm + bin/amd64-netbsd/wovf2ovp + +name omegaware.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of omegaware +containersize 198416 +containerchecksum f0d65fd7417db408ccaa319e9ad27911872b76725e6948695da2c9325ff1411219c241a8f502d32e15e8922fce26ce8eba309deb935a04304fb4cee76d7586b3 +binfiles arch=armhf-linux size=237 + bin/armhf-linux/odvicopy + bin/armhf-linux/odvitype + bin/armhf-linux/ofm2opl + bin/armhf-linux/omfonts + bin/armhf-linux/opl2ofm + bin/armhf-linux/otangle + bin/armhf-linux/otp2ocp + bin/armhf-linux/outocp + bin/armhf-linux/ovf2ovp + bin/armhf-linux/ovp2ovf + bin/armhf-linux/wofm2opl + bin/armhf-linux/wopl2ofm + bin/armhf-linux/wovf2ovp + +name omegaware.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of omegaware +containersize 157484 +containerchecksum c74819cb7975c46f3bb926a49e147640076473320cb72b29a7b4f3ac906db609e1c1b944dbf4a9bd07ae3a1cdaf56a7f8775cca103f026fd49815e1880f4e779 +binfiles arch=i386-cygwin size=147 + bin/i386-cygwin/odvicopy.exe + bin/i386-cygwin/odvitype.exe + bin/i386-cygwin/ofm2opl + bin/i386-cygwin/omfonts.exe + bin/i386-cygwin/opl2ofm + bin/i386-cygwin/otangle.exe + bin/i386-cygwin/otp2ocp.exe + bin/i386-cygwin/outocp.exe + bin/i386-cygwin/ovf2ovp + bin/i386-cygwin/ovp2ovf + bin/i386-cygwin/wofm2opl.exe + bin/i386-cygwin/wopl2ofm.exe + bin/i386-cygwin/wovf2ovp.exe + +name omegaware.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of omegaware +containersize 238120 +containerchecksum 951ad6eb8a230dccf560a821901e0e7f4d9d07881ad072c0ca4789177ff4da540be9cee61a817335cde5a12b4c4742e0ab517ed3e9469a7a0de2190ba6bad708 +binfiles arch=i386-freebsd size=272 + bin/i386-freebsd/odvicopy + bin/i386-freebsd/odvitype + bin/i386-freebsd/ofm2opl + bin/i386-freebsd/omfonts + bin/i386-freebsd/opl2ofm + bin/i386-freebsd/otangle + bin/i386-freebsd/otp2ocp + bin/i386-freebsd/outocp + bin/i386-freebsd/ovf2ovp + bin/i386-freebsd/ovp2ovf + bin/i386-freebsd/wofm2opl + bin/i386-freebsd/wopl2ofm + bin/i386-freebsd/wovf2ovp + +name omegaware.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of omegaware +containersize 239968 +containerchecksum ea573f49d7bc2ad4771adf1f653121583715f27f1dc280b7645b80e3d9dee21ded4ca493e5cc25ed99aea17e16a28a55d407b7464fed1793910cd5cdf4e09394 +binfiles arch=i386-linux size=301 + bin/i386-linux/odvicopy + bin/i386-linux/odvitype + bin/i386-linux/ofm2opl + bin/i386-linux/omfonts + bin/i386-linux/opl2ofm + bin/i386-linux/otangle + bin/i386-linux/otp2ocp + bin/i386-linux/outocp + bin/i386-linux/ovf2ovp + bin/i386-linux/ovp2ovf + bin/i386-linux/wofm2opl + bin/i386-linux/wopl2ofm + bin/i386-linux/wovf2ovp + +name omegaware.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of omegaware +containersize 211768 +containerchecksum 20d30894236b1942ebe2d79a449c177297ca140072702dff425dd20db4b67f7f817023e3ddc1555e73caf8181c506162b38ad28cf41448003d0da86e63b4a28e +binfiles arch=i386-netbsd size=318 + bin/i386-netbsd/odvicopy + bin/i386-netbsd/odvitype + bin/i386-netbsd/ofm2opl + bin/i386-netbsd/omfonts + bin/i386-netbsd/opl2ofm + bin/i386-netbsd/otangle + bin/i386-netbsd/otp2ocp + bin/i386-netbsd/outocp + bin/i386-netbsd/ovf2ovp + bin/i386-netbsd/ovp2ovf + bin/i386-netbsd/wofm2opl + bin/i386-netbsd/wopl2ofm + bin/i386-netbsd/wovf2ovp + +name omegaware.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of omegaware +containersize 258104 +containerchecksum bc8b287f2b189d4a9ecc51e4374aff8edfc7a270a0805e682fbf691e7362ae975060fbf3948fb1af953b9285038a6d23adb20ed34cc869fdecdf9763fd21c9eb +binfiles arch=i386-solaris size=279 + bin/i386-solaris/odvicopy + bin/i386-solaris/odvitype + bin/i386-solaris/ofm2opl + bin/i386-solaris/omfonts + bin/i386-solaris/opl2ofm + bin/i386-solaris/otangle + bin/i386-solaris/otp2ocp + bin/i386-solaris/outocp + bin/i386-solaris/ovf2ovp + bin/i386-solaris/ovp2ovf + bin/i386-solaris/wofm2opl + bin/i386-solaris/wopl2ofm + bin/i386-solaris/wovf2ovp + +name omegaware.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of omegaware +containersize 538480 +containerchecksum 86df04ada1ec0a40311791c2ab8116226cd9db7beff4434b26d5ff6a3c41ea22f52114e1731b59f01cc2ca0cb1daa9b990aca9d5b6a7b6a98687d87867e2da81 +binfiles arch=universal-darwin size=777 + bin/universal-darwin/odvicopy + bin/universal-darwin/odvitype + bin/universal-darwin/ofm2opl + bin/universal-darwin/omfonts + bin/universal-darwin/opl2ofm + bin/universal-darwin/otangle + bin/universal-darwin/otp2ocp + bin/universal-darwin/outocp + bin/universal-darwin/ovf2ovp + bin/universal-darwin/ovp2ovf + bin/universal-darwin/wofm2opl + bin/universal-darwin/wopl2ofm + bin/universal-darwin/wovf2ovp + +name omegaware.win32 +category TLCore +revision 58783 +shortdesc win32 files of omegaware +containersize 170692 +containerchecksum b2f49659726bc081ddd814ab2b03edc198ad6b821662254a589a0ae25e248b7119e1acf3bfee29e8cad888451a7933774b2bad79e53f1e960c68645dae058494 +binfiles arch=win32 size=185 + bin/win32/odvicopy.exe + bin/win32/odvitype.exe + bin/win32/ofm2opl.exe + bin/win32/omfonts.exe + bin/win32/opl2ofm.exe + bin/win32/otangle.exe + bin/win32/otp2ocp.exe + bin/win32/outocp.exe + bin/win32/ovf2ovp.exe + bin/win32/ovp2ovf.exe + bin/win32/wofm2opl.exe + bin/win32/wopl2ofm.exe + bin/win32/wovf2ovp.exe + +name omegaware.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of omegaware +containersize 187544 +containerchecksum 8435ac4acf51d68c59f413c02391b055494af4cf09533a8dc27ce4ead0e81b993a249bf229b76b6b69ce636b748e4e198cd4316b91e87a819052b869bc771647 +binfiles arch=x86_64-cygwin size=141 + bin/x86_64-cygwin/odvicopy.exe + bin/x86_64-cygwin/odvitype.exe + bin/x86_64-cygwin/ofm2opl + bin/x86_64-cygwin/omfonts.exe + bin/x86_64-cygwin/opl2ofm + bin/x86_64-cygwin/otangle.exe + bin/x86_64-cygwin/otp2ocp.exe + bin/x86_64-cygwin/outocp.exe + bin/x86_64-cygwin/ovf2ovp + bin/x86_64-cygwin/ovp2ovf + bin/x86_64-cygwin/wofm2opl.exe + bin/x86_64-cygwin/wopl2ofm.exe + bin/x86_64-cygwin/wovf2ovp.exe + +name omegaware.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of omegaware +containersize 255788 +containerchecksum 5c16e187aa8128da2a07dd53b161734842d4f407f16c725132bc5f16ffeed4efda33475140790057b6534c2b07fd14a9df329fba4e01e3ef62273867fe823a34 +binfiles arch=x86_64-darwinlegacy size=274 + bin/x86_64-darwinlegacy/odvicopy + bin/x86_64-darwinlegacy/odvitype + bin/x86_64-darwinlegacy/ofm2opl + bin/x86_64-darwinlegacy/omfonts + bin/x86_64-darwinlegacy/opl2ofm + bin/x86_64-darwinlegacy/otangle + bin/x86_64-darwinlegacy/otp2ocp + bin/x86_64-darwinlegacy/outocp + bin/x86_64-darwinlegacy/ovf2ovp + bin/x86_64-darwinlegacy/ovp2ovf + bin/x86_64-darwinlegacy/wofm2opl + bin/x86_64-darwinlegacy/wopl2ofm + bin/x86_64-darwinlegacy/wovf2ovp + +name omegaware.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of omegaware +containersize 255948 +containerchecksum cba3370e5d568cb1fb6efbf0a056f98d0318b188420c760aecd282cf2bbd601093c25c1eb5c8e587b32e319754199dc3f0e0d2a6a0b7cb68518bf474c37cb3ed +binfiles arch=x86_64-linux size=269 + bin/x86_64-linux/odvicopy + bin/x86_64-linux/odvitype + bin/x86_64-linux/ofm2opl + bin/x86_64-linux/omfonts + bin/x86_64-linux/opl2ofm + bin/x86_64-linux/otangle + bin/x86_64-linux/otp2ocp + bin/x86_64-linux/outocp + bin/x86_64-linux/ovf2ovp + bin/x86_64-linux/ovp2ovf + bin/x86_64-linux/wofm2opl + bin/x86_64-linux/wopl2ofm + bin/x86_64-linux/wovf2ovp + +name omegaware.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of omegaware +containersize 269568 +containerchecksum e3367e2ae381516216348d46e8ff27c153c23488f923da4ce9e3a48483f73569ca10c31f5fce0e2bfc1d15c0ab90dc591ca2ac2eef0ccad407b91acd6da065bb +binfiles arch=x86_64-linuxmusl size=292 + bin/x86_64-linuxmusl/odvicopy + bin/x86_64-linuxmusl/odvitype + bin/x86_64-linuxmusl/ofm2opl + bin/x86_64-linuxmusl/omfonts + bin/x86_64-linuxmusl/opl2ofm + bin/x86_64-linuxmusl/otangle + bin/x86_64-linuxmusl/otp2ocp + bin/x86_64-linuxmusl/outocp + bin/x86_64-linuxmusl/ovf2ovp + bin/x86_64-linuxmusl/ovp2ovf + bin/x86_64-linuxmusl/wofm2opl + bin/x86_64-linuxmusl/wopl2ofm + bin/x86_64-linuxmusl/wovf2ovp + +name omegaware.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of omegaware +containersize 295188 +containerchecksum a595a2fb364e291aff150e9f609acc3038c520e79ecb025a96c1eb5153b3dfc85e56bdb4d87cfa91bb6bb5b01f96c9e96ba3ab89b5c34e21b00e3fa62ef7905c +binfiles arch=x86_64-solaris size=310 + bin/x86_64-solaris/odvicopy + bin/x86_64-solaris/odvitype + bin/x86_64-solaris/ofm2opl + bin/x86_64-solaris/omfonts + bin/x86_64-solaris/opl2ofm + bin/x86_64-solaris/otangle + bin/x86_64-solaris/otp2ocp + bin/x86_64-solaris/outocp + bin/x86_64-solaris/ovf2ovp + bin/x86_64-solaris/ovp2ovf + bin/x86_64-solaris/wofm2opl + bin/x86_64-solaris/wopl2ofm + bin/x86_64-solaris/wovf2ovp + +name onedown +category Package +revision 59010 +shortdesc Typeset Bridge Diagrams +relocated 1 +longdesc This is a comprehensive package to draw all sorts of bridge +longdesc diagrams, including hands (stand alone or arround a compass), +longdesc bidding tables (stand alone or in connection with +longdesc hands/compass), trick tables, and expert quizzes. Features: +longdesc Works for all fontsizes from \ssmall to \HUGE. Different fonts +longdesc for hands, bidding diagrams, compass, etc. are possible. +longdesc Annotations to card and bidding diagrams. Automated check on +longdesc consistency of suit and hands. Multilingual output of bridge +longdesc terms. Extensive documentation: User manual, Reference manual, +longdesc and Examples. +containersize 17956 +containerchecksum 67110331d1df4b6f454ab23e6af1fa9904689e9a90f3a62652fd81db9fc990aeb527fdf7d4c5bb04064ddc93181f45334a06214c8acf9930497994e2ad0e8002 +doccontainersize 2700112 +doccontainerchecksum 06f00f302cb363411756ba0dd17d9a431aa4736bca2c61b2237b466e12a4fe8bd8cf9494ad5626766ca2112ce629aa8fb8409fc19c2ff3f83e4aee088390031c +docfiles size=715 + RELOC/doc/latex/onedown/README details="Readme" + RELOC/doc/latex/onedown/examples/Bidding.tex + RELOC/doc/latex/onedown/examples/CardSymbols.tex + RELOC/doc/latex/onedown/examples/Compass.pdf + RELOC/doc/latex/onedown/examples/Compass.tex + RELOC/doc/latex/onedown/examples/ExpertQuiz.tex + RELOC/doc/latex/onedown/examples/Fontsizes.pdf + RELOC/doc/latex/onedown/examples/Fontsizes.tex + RELOC/doc/latex/onedown/examples/Hands.tex + RELOC/doc/latex/onedown/examples/Languages.tex + RELOC/doc/latex/onedown/examples/Legends.tex + RELOC/doc/latex/onedown/examples/Play.tex + RELOC/doc/latex/onedown/examples/Select-Hands.tex + RELOC/doc/latex/onedown/examples/Suits.tex + RELOC/doc/latex/onedown/examples/Wrapping.tex + RELOC/doc/latex/onedown/examples/bidAll.tex + RELOC/doc/latex/onedown/examples/bidEW.tex + RELOC/doc/latex/onedown/examples/bidNE.tex + RELOC/doc/latex/onedown/examples/bidNS.tex + RELOC/doc/latex/onedown/examples/bidNW.tex + RELOC/doc/latex/onedown/examples/onedown-examples.pdf details="Examples of use" + RELOC/doc/latex/onedown/examples/onedown-examples.tex + RELOC/doc/latex/onedown/examples/onedown-ref.pdf details="Reference Guide" + RELOC/doc/latex/onedown/examples/onedown-ref.tex + RELOC/doc/latex/onedown/examples/showAll.tex + RELOC/doc/latex/onedown/examples/showNS-align.tex + RELOC/doc/latex/onedown/examples/showNS-warn-I.tex + RELOC/doc/latex/onedown/examples/showNS-warn-II.tex + RELOC/doc/latex/onedown/onedown.pdf details="Package documentation" +srccontainersize 49552 +srccontainerchecksum d7b3eb5dd5192af22735acf5af450ad0d714dddd434d66bff3a40151953ae1098cf8c27dc620f167bed2c3fbba13f86f62724312161bc321b71fb4f14d605fc1 +srcfiles size=55 + RELOC/source/latex/onedown/onedown.dtx + RELOC/source/latex/onedown/onedown.ins +runfiles size=35 + RELOC/tex/latex/onedown/ODw-Danish.dict + RELOC/tex/latex/onedown/ODw-Dutch.dict + RELOC/tex/latex/onedown/ODw-English.dict + RELOC/tex/latex/onedown/ODw-French.dict + RELOC/tex/latex/onedown/ODw-German.dict + RELOC/tex/latex/onedown/ODw-Norsk.dict + RELOC/tex/latex/onedown/ODw-Spanish.dict + RELOC/tex/latex/onedown/ODw-Swedish.dict + RELOC/tex/latex/onedown/ODw-Turkish.dict + RELOC/tex/latex/onedown/onedown.sty +catalogue-ctan /macros/latex/contrib/onedown +catalogue-license lppl1.3 +catalogue-topics games +catalogue-version 1.6 + +name onlyamsmath +category Package +revision 42927 +shortdesc Inhibit use of non-amsmath mathematics markup when using amsmath +relocated 1 +longdesc This package inhibits the usage of plain TeX and (on demand) of +longdesc standard LaTeX mathematics environments. This is useful for +longdesc class writers who want to encourage their users to use the +longdesc environments provided by the amsmath package. +containersize 1412 +containerchecksum 5452647ee6eb939c292457ee26cb3639560eb55893e44ebbbeaf27ef1c2ed30346d91d733422e65f6780af7c434cf02ac740d722612f888fca8dc45538d81303 +doccontainersize 215088 +doccontainerchecksum 154273f8589b0d8bfa0ed46cfb297d44000eaa750e8d34b1a7aad9f7b26cb19423d7f7ba362e3739cb7d22b2aa077fa44e59d9c46a52db5a82a57659e86a6dcf +docfiles size=57 + RELOC/doc/latex/onlyamsmath/ChangeLog + RELOC/doc/latex/onlyamsmath/Makefile + RELOC/doc/latex/onlyamsmath/README details="Readme" + RELOC/doc/latex/onlyamsmath/onlyamsmath-v.tex + RELOC/doc/latex/onlyamsmath/onlyamsmath.pdf details="Package documentation" + RELOC/doc/latex/onlyamsmath/onlyamsmathtest.tex +srccontainersize 3920 +srccontainerchecksum 2a3568cde9264ed3f074ad47fb5afa22f4c4835c7e0eb53699f691bf4c52b829c31724e56b9bbc84bffab76d425d9fb72b2bbb49ce14ff7cff0d57f538218783 +srcfiles size=4 + RELOC/source/latex/onlyamsmath/onlyamsmath.dtx + RELOC/source/latex/onlyamsmath/onlyamsmath.ins +runfiles size=1 + RELOC/tex/latex/onlyamsmath/onlyamsmath.sty +catalogue-also nag +catalogue-ctan /macros/latex/contrib/onlyamsmath +catalogue-license lppl +catalogue-topics maths latex-qual +catalogue-version 0.20 + +name onrannual +category Package +revision 17474 +shortdesc Class for Office of Naval Research Ocean Battlespace Sensing annual report +relocated 1 +longdesc This is an unofficial document class for writing ONR annual +longdesc reports using LaTeX; as ONR has had numerous problems with +longdesc LaTeX-generated PDF submissions in the past. A skeleton +longdesc document (and its PDF output) are included. +containersize 3024 +containerchecksum 0c9f717c54d70ad24a1d3b08a6bd44a4e96e932af4d78ba2895f40e16ae5e5b841cd421b71ff3e90490c13e0843d48b8a28efd49b33ee3f74ef9b6476c88f8ae +doccontainersize 155840 +doccontainerchecksum 4a4f46965a0de8ca99585d4af31aa2f0f94e51328c8cf1ed29768bb9e2f8cb7e14d63315a008a1d0446d7496ce4f8abb224946277ddf47223808f8f2277cfb64 +docfiles size=60 + RELOC/doc/latex/onrannual/README details="Readme" + RELOC/doc/latex/onrannual/sample.bib + RELOC/doc/latex/onrannual/samplefigure.eps + RELOC/doc/latex/onrannual/samplefigure.pdf + RELOC/doc/latex/onrannual/skeleton.pdf + RELOC/doc/latex/onrannual/skeleton.tex +runfiles size=2 + RELOC/tex/latex/onrannual/onrannual.cls +catalogue-ctan /macros/latex/contrib/onrannual +catalogue-license lppl1.3 +catalogue-topics report-like +catalogue-version 1.1 + +name opcit +category Package +revision 15878 +shortdesc Footnote-style bibliographical references +relocated 1 +longdesc This package addresses the problem of expressing citations in a +longdesc style that is natural for humanities studies, yet does not +longdesc interfere with the flow of text (as author-year styles do). The +longdesc package differs from footbib in that it uses real footnotes, +longdesc potentially in the same series as any of the document's other +longdesc footnotes. Opcit also, as its name implies, avoids repetition +longdesc of full citations, achieving this, to a large extent, +longdesc automatically. +containersize 6916 +containerchecksum 4514d83e3554810da7fec3cc165c89a87a4aef04866755a5b42861b484ffea81bfff694609d18fb5e3bbdacc3723cbed96305ba0c09bc48af92456cef3b7b5a5 +doccontainersize 255312 +doccontainerchecksum 6c4e48aa8ea0dd464d7d2902513b1640437518661e9d7237b958b95ad091053b41c6c5ed4407f9c9d87ff5f0ce0b2bda3a99947d3bb0cf70352d5737419e22aa +docfiles size=76 + RELOC/doc/latex/opcit/README + RELOC/doc/latex/opcit/opcit.pdf details="Package documentation" +srccontainersize 20876 +srccontainerchecksum 031596b3dceeda2782e355e3b19c23a1a31f71295d9ac763055a2ba07eb550a501c9672cbd63929984a3c65108e6084ff6a46fb03e885510e9d696df220b1e70 +srcfiles size=20 + RELOC/source/latex/opcit/opcit.dtx + RELOC/source/latex/opcit/opcit.ins +runfiles size=8 + RELOC/bibtex/bst/opcit/opcit.bst + RELOC/tex/latex/opcit/opcit.sty +catalogue-ctan /macros/latex/contrib/opcit +catalogue-license lppl +catalogue-topics bibtex-supp footnote +catalogue-version 1.1 + +name opensans +category Package +revision 54512 +shortdesc The Open Sans font family, and LaTeX support +relocated 1 +longdesc Open Sans is a humanist sans serif typeface designed by Steve +longdesc Matteson; the font is available from the Google Font Directory +longdesc as TrueType files licensed under the Apache License version +longdesc 2.0. The package provides support for this font family in +longdesc LaTeX. It includes the original TrueType fonts, as well as Type +longdesc 1 versions, converted for this package using FontForge for full +longdesc support with dvips +execute addMap opensans.map +containersize 2040336 +containerchecksum d92d10da8d6d8adfa62d440767ed1fa9abf413a575b122dff275eb2e46d501436edd90c215611cd943308f32a197c72b8fcdf56b72268f76237c2227cc9dd5ff +doccontainersize 598552 +doccontainerchecksum 00e5243e465d948b6bd63bfd161d4e549cc6e5b008a8cf8aff1ea5a31bc7a1406858c045cf6fb52c254d61869f1bcd5ef8c6a43ea66164e842fe3fcff2b26540 +docfiles size=149 + RELOC/doc/fonts/opensans/CHANGES + RELOC/doc/fonts/opensans/README details="Readme" + RELOC/doc/fonts/opensans/opensans-samples.pdf details="Font samples" + RELOC/doc/fonts/opensans/opensans.pdf details="Package documentation" +runfiles size=2020 + RELOC/fonts/enc/dvips/opensans/a_22wi7j.enc + RELOC/fonts/enc/dvips/opensans/a_3kulrh.enc + RELOC/fonts/enc/dvips/opensans/a_6fef26.enc + RELOC/fonts/enc/dvips/opensans/a_6fnoxn.enc + RELOC/fonts/enc/dvips/opensans/a_a426mb.enc + RELOC/fonts/enc/dvips/opensans/a_ajvczw.enc + RELOC/fonts/enc/dvips/opensans/a_crnekn.enc + RELOC/fonts/enc/dvips/opensans/a_cxxwxv.enc + RELOC/fonts/enc/dvips/opensans/a_epwjz7.enc + RELOC/fonts/enc/dvips/opensans/a_far7gh.enc + RELOC/fonts/enc/dvips/opensans/a_iz27ck.enc + RELOC/fonts/enc/dvips/opensans/a_jg4h6q.enc + RELOC/fonts/enc/dvips/opensans/a_kjsjgs.enc + RELOC/fonts/enc/dvips/opensans/a_lhblba.enc + RELOC/fonts/enc/dvips/opensans/a_mx6tiu.enc + RELOC/fonts/enc/dvips/opensans/a_n3lhbv.enc + RELOC/fonts/enc/dvips/opensans/a_nvvucy.enc + RELOC/fonts/enc/dvips/opensans/a_nwf7uv.enc + RELOC/fonts/enc/dvips/opensans/a_p2vepx.enc + RELOC/fonts/enc/dvips/opensans/a_rnfpjs.enc + RELOC/fonts/enc/dvips/opensans/a_roa3ad.enc + RELOC/fonts/enc/dvips/opensans/a_uqj6z7.enc + RELOC/fonts/enc/dvips/opensans/a_uv4o4i.enc + RELOC/fonts/enc/dvips/opensans/a_uw4ovh.enc + RELOC/fonts/enc/dvips/opensans/a_v2kvzh.enc + RELOC/fonts/map/dvips/opensans/opensans.map + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Bold-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-BoldItalic-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBold-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-ExtraBoldItalic-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Italic-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Light-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-LightItalic-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-Regular-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBold-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSans-SemiBoldItalic-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Bold-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-Light-X2-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-LF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-LF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-OsF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-TLF.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/ascender/opensans/OpenSansCondensed-LightItalic-X2-TOsF.tfm + RELOC/fonts/truetype/ascender/opensans/OpenSans-Bold.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-BoldItalic.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-ExtraBold.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-ExtraBoldItalic.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-Italic.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-Light.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-LightItalic.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-Regular.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-SemiBold.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSans-SemiBoldItalic.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSansCondensed-Bold.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSansCondensed-Light.ttf + RELOC/fonts/truetype/ascender/opensans/OpenSansCondensed-LightItalic.ttf + RELOC/fonts/type1/ascender/opensans/OpenSans-Bold.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-BoldItalic.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-ExtraBold.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-Italic.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-Light.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-LightItalic.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-Regular.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-SemiBold.pfb + RELOC/fonts/type1/ascender/opensans/OpenSans-SemiBoldItalic.pfb + RELOC/fonts/type1/ascender/opensans/OpenSansCondensed-Bold.pfb + RELOC/fonts/type1/ascender/opensans/OpenSansCondensed-Light.pfb + RELOC/fonts/type1/ascender/opensans/OpenSansCondensed-LightItalic.pfb + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Bold-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-BoldItalic-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBold-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-ExtraBoldItalic-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Italic-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Light-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-LightItalic-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-Regular-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBold-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSans-SemiBoldItalic-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Bold-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-Light-X2-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-LGR-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-LGR-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-LGR-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-LGR-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-OT1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-OT1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-OT1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-OT1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2A-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2A-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2A-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2A-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2B-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2B-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2B-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2B-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2C-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2C-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2C-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-T2C-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-TS1-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-TS1-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-TS1-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-TS1-TOsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-X2-LF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-X2-OsF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-X2-TLF.vf + RELOC/fonts/vf/ascender/opensans/OpenSansCondensed-LightItalic-X2-TOsF.vf + RELOC/tex/latex/opensans/LGRopensans-LF.fd + RELOC/tex/latex/opensans/LGRopensans-OsF.fd + RELOC/tex/latex/opensans/LGRopensans-TLF.fd + RELOC/tex/latex/opensans/LGRopensans-TOsF.fd + RELOC/tex/latex/opensans/OT1opensans-LF.fd + RELOC/tex/latex/opensans/OT1opensans-OsF.fd + RELOC/tex/latex/opensans/OT1opensans-TLF.fd + RELOC/tex/latex/opensans/OT1opensans-TOsF.fd + RELOC/tex/latex/opensans/T1opensans-LF.fd + RELOC/tex/latex/opensans/T1opensans-OsF.fd + RELOC/tex/latex/opensans/T1opensans-TLF.fd + RELOC/tex/latex/opensans/T1opensans-TOsF.fd + RELOC/tex/latex/opensans/T2Aopensans-LF.fd + RELOC/tex/latex/opensans/T2Aopensans-OsF.fd + RELOC/tex/latex/opensans/T2Aopensans-TLF.fd + RELOC/tex/latex/opensans/T2Aopensans-TOsF.fd + RELOC/tex/latex/opensans/T2Bopensans-LF.fd + RELOC/tex/latex/opensans/T2Bopensans-OsF.fd + RELOC/tex/latex/opensans/T2Bopensans-TLF.fd + RELOC/tex/latex/opensans/T2Bopensans-TOsF.fd + RELOC/tex/latex/opensans/T2Copensans-LF.fd + RELOC/tex/latex/opensans/T2Copensans-OsF.fd + RELOC/tex/latex/opensans/T2Copensans-TLF.fd + RELOC/tex/latex/opensans/T2Copensans-TOsF.fd + RELOC/tex/latex/opensans/TS1opensans-LF.fd + RELOC/tex/latex/opensans/TS1opensans-OsF.fd + RELOC/tex/latex/opensans/TS1opensans-TLF.fd + RELOC/tex/latex/opensans/TS1opensans-TOsF.fd + RELOC/tex/latex/opensans/X2opensans-LF.fd + RELOC/tex/latex/opensans/X2opensans-OsF.fd + RELOC/tex/latex/opensans/X2opensans-TLF.fd + RELOC/tex/latex/opensans/X2opensans-TOsF.fd + RELOC/tex/latex/opensans/opensans.sty +catalogue-ctan /fonts/opensans +catalogue-license apache2 lppl1.3c +catalogue-topics font font-type1 font-ttf font-sans +catalogue-version 2.2 + +name oplotsymbl +category Package +revision 44951 +shortdesc Some symbols which are not easily available +relocated 1 +longdesc This package is named oPlotSymbl and it includes symbols, which +longdesc are not easily available. Especially, these symbols are used in +longdesc scientific plots, but the potential user is allowed to use them +longdesc in other ways. This package uses TikZ and xcolor. +containersize 4016 +containerchecksum bb894b28fd62f95807bf00856aa2250bbe58b0c1def385d6528b50ba925410ff177ebef97279338bff7ab70db012ba916edad067584989f86797b1fbd7e21863 +doccontainersize 235340 +doccontainerchecksum cd4ceb0b923da7c0f56817602eca672442d03f628440c8beb82c953cf73a9d1bf8e24939a3ba4c813c99b7a2aa98adede0c98b4678b06fffd3f0bdfe8fae52ad +docfiles size=68 + RELOC/doc/latex/oplotsymbl/LICENSE.md + RELOC/doc/latex/oplotsymbl/README.md details="Readme" + RELOC/doc/latex/oplotsymbl/literatur.bib + RELOC/doc/latex/oplotsymbl/oPlotSymbl-Manual-en.pdf details="Package documentation" + RELOC/doc/latex/oplotsymbl/oPlotSymbl-Manual-en.tex +runfiles size=10 + RELOC/tex/latex/oplotsymbl/oplotsymbl.sty +catalogue-also comprehensive +catalogue-contact-repository https://github.com/micheld93/oPlotSymbl-LaTeX +catalogue-ctan /macros/latex/contrib/oplotsymbl +catalogue-license lppl1.3 +catalogue-topics graphics-symb pgf-tikz +catalogue-version 1.4 + +name opteng +category Package +revision 27331 +shortdesc SPIE Optical Engineering and OE Letters manuscript template +relocated 1 +longdesc With this template, and associated style and LaTeX packages, it +longdesc is possible to estimate the page length of manuscripts for +longdesc submission to the SPIE journals 'Optical Engineering' and +longdesc 'Optical Engineering Letters'. With a strict three-page limit, +longdesc this is particularly important for the latter. The template +longdesc gives simple instructions on how to prepare the manuscript. +containersize 5824 +containerchecksum 1af8edfbde5ac2abae770765a437bb42d5852877438d283d8021493c621e94d09bd62d9012556024ddecbeaddd838b37ae9abd0486d73e2698956ef49ab585e9 +doccontainersize 37400 +doccontainerchecksum b1dc3f9f107e1e8313bfa25b843a4959522eec2e6bc886e8b6271c2175258d7108c824bcbed8d243f0e51b70851e68246fd572bcf6afa6aecdeb86a946bc247e +docfiles size=17 + RELOC/doc/latex/opteng/OptEngInstruct.pdf details="Package documentation" + RELOC/doc/latex/opteng/OptEngInstruct.tex + RELOC/doc/latex/opteng/README details="Readme" +runfiles size=5 + RELOC/tex/latex/opteng/opteng.sty +catalogue-also spie +catalogue-ctan /macros/latex/contrib/opteng +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.0 + +name optex +category Package +revision 59055 +shortdesc LuaTeX format based on Plain TeX and OPmac +longdesc OpTeX is a LuaTeX format based on Plain TeX macros with power +longdesc from OPmac (fonts selection system, colors, external graphics, +longdesc references, hyperlinks, ...) with unicode fonts. +depend amsfonts +depend cm +depend ec +depend hyphen-base +depend lm +depend luatex +depend optex.ARCH +depend rsfs +depend unicode-data +execute AddFormat name=optex engine=luatex patterns=hyphen-lan.opm options="optex.ini" fmttriggers=amsfonts,cm,ec,hyphen-base,lm,rsfs,unicode-data +containersize 787868 +containerchecksum 031c152c493db2c4ca9c7481eb9dbe5d66b44eb1db31e461912008a4ff22aedf3f37c41b18fa31e77654e94eb840d47c14048848b353e7ded30b61a21617f401 +doccontainersize 1438720 +doccontainerchecksum 8ed1fc8acbc3dcac224f6a6ddac8538eca1c6979015a7ef70cce5f5fee78cfa75074d8567c40dc3bff157ef424bf51abd5eaa59fb2ec02b8d7cde3a4b56ebf8f +docfiles size=402 + texmf-dist/doc/man/man1/optex.1 + texmf-dist/doc/man/man1/optex.man1.pdf + texmf-dist/doc/optex/README details="Readme" + texmf-dist/doc/optex/omls.tex + texmf-dist/doc/optex/optex-doc.pdf details="Package documentation" + texmf-dist/doc/optex/optex-doc.tex + texmf-dist/doc/optex/optex-math.tex + texmf-dist/doc/optex/optex-techdoc.tex + texmf-dist/doc/optex/optex-userdoc.tex +runfiles size=482 + texmf-dist/tex/optex/base/alloc.opm + texmf-dist/tex/optex/base/basic-macros.opm + texmf-dist/tex/optex/base/bib-iso690.opm + texmf-dist/tex/optex/base/bib-simple.opm + texmf-dist/tex/optex/base/cite-bib.opm + texmf-dist/tex/optex/base/colors.opm + texmf-dist/tex/optex/base/doc.opm + texmf-dist/tex/optex/base/f-adventor.opm + texmf-dist/tex/optex/base/f-antt.opm + texmf-dist/tex/optex/base/f-baskerville.opm + texmf-dist/tex/optex/base/f-bonum.opm + texmf-dist/tex/optex/base/f-comicneue.opm + texmf-dist/tex/optex/base/f-cursor.opm + texmf-dist/tex/optex/base/f-dejavu.opm + texmf-dist/tex/optex/base/f-ebgaramond.opm + texmf-dist/tex/optex/base/f-garamondl.opm + texmf-dist/tex/optex/base/f-gfsbodoni.opm + texmf-dist/tex/optex/base/f-heros.opm + texmf-dist/tex/optex/base/f-kerkis.opm + texmf-dist/tex/optex/base/f-kpfonts.opm + texmf-dist/tex/optex/base/f-libertine-s.opm + texmf-dist/tex/optex/base/f-libertine.opm + texmf-dist/tex/optex/base/f-libertinus.opm + texmf-dist/tex/optex/base/f-librecaslon.opm + texmf-dist/tex/optex/base/f-lido.opm + texmf-dist/tex/optex/base/f-lmfonts.opm + texmf-dist/tex/optex/base/f-merriweather.opm + texmf-dist/tex/optex/base/f-newcm.opm + texmf-dist/tex/optex/base/f-pagella.opm + texmf-dist/tex/optex/base/f-poltawski.opm + texmf-dist/tex/optex/base/f-roboto.opm + texmf-dist/tex/optex/base/f-schola.opm + texmf-dist/tex/optex/base/f-sourcepro.opm + texmf-dist/tex/optex/base/f-technika.opm + texmf-dist/tex/optex/base/f-termes.opm + texmf-dist/tex/optex/base/f-xcharter.opm + texmf-dist/tex/optex/base/fams-ini.opm + texmf-dist/tex/optex/base/fnotes.opm + texmf-dist/tex/optex/base/fonts-catalog.opm + texmf-dist/tex/optex/base/fonts-opmac.opm + texmf-dist/tex/optex/base/fonts-preload.opm + texmf-dist/tex/optex/base/fonts-resize.opm + texmf-dist/tex/optex/base/fonts-select.opm + texmf-dist/tex/optex/base/graphics.opm + texmf-dist/tex/optex/base/hi-syntax.opm + texmf-dist/tex/optex/base/hisyntax-c.opm + texmf-dist/tex/optex/base/hisyntax-html.opm + texmf-dist/tex/optex/base/hisyntax-python.opm + texmf-dist/tex/optex/base/hisyntax-tex.opm + texmf-dist/tex/optex/base/hyperlinks.opm + texmf-dist/tex/optex/base/hyphen-lan.opm + texmf-dist/tex/optex/base/if-macros.opm + texmf-dist/tex/optex/base/keyval.opm + texmf-dist/tex/optex/base/languages.opm + texmf-dist/tex/optex/base/lists.opm + texmf-dist/tex/optex/base/logos.opm + texmf-dist/tex/optex/base/luatex-ini.opm + texmf-dist/tex/optex/base/makeindex.opm + texmf-dist/tex/optex/base/maketoc.opm + texmf-dist/tex/optex/base/margins.opm + texmf-dist/tex/optex/base/math-macros.opm + texmf-dist/tex/optex/base/math-preload.opm + texmf-dist/tex/optex/base/math-unicode.opm + texmf-dist/tex/optex/base/mathclass.opm + texmf-dist/tex/optex/base/more-macros.opm + texmf-dist/tex/optex/base/multicolumns.opm + texmf-dist/tex/optex/base/optex.ini + texmf-dist/tex/optex/base/optex.lua + texmf-dist/tex/optex/base/others.opm + texmf-dist/tex/optex/base/outlines.opm + texmf-dist/tex/optex/base/output.opm + texmf-dist/tex/optex/base/parameters.opm + texmf-dist/tex/optex/base/pdfuni-string.opm + texmf-dist/tex/optex/base/plain-macros.opm + texmf-dist/tex/optex/base/prefixed.opm + texmf-dist/tex/optex/base/print-unimath.opm + texmf-dist/tex/optex/base/ref-file.opm + texmf-dist/tex/optex/base/references.opm + texmf-dist/tex/optex/base/sections.opm + texmf-dist/tex/optex/base/slides.opm + texmf-dist/tex/optex/base/styles.opm + texmf-dist/tex/optex/base/table.opm + texmf-dist/tex/optex/base/uni-lcuc.opm + texmf-dist/tex/optex/base/unimath-codes.opm + texmf-dist/tex/optex/base/unimath-table.opm + texmf-dist/tex/optex/base/usebib.opm + texmf-dist/tex/optex/base/verbatim.opm + texmf-dist/tex/optex/demo/op-biblist.bib + texmf-dist/tex/optex/demo/op-demo.tex + texmf-dist/tex/optex/demo/op-letter-cs.tex + texmf-dist/tex/optex/demo/op-letter-en.tex + texmf-dist/tex/optex/demo/op-mathalign.tex + texmf-dist/tex/optex/demo/op-ring.png + texmf-dist/tex/optex/demo/op-slides-bg.png + texmf-dist/tex/optex/demo/op-slides.tex + texmf-dist/tex/optex/pkg/emoji.opm + texmf-dist/tex/optex/pkg/plain-at.opm + texmf-dist/tex/optex/pkg/qrcode.opm + texmf-dist/tex/optex/pkg/vlna.opm +catalogue-also csplain +catalogue-contact-home http://petr.olsak.net/optex +catalogue-ctan /macros/optex +catalogue-license pd +catalogue-topics format luatex plain-ext +catalogue-version 1.02 + +name optex.aarch64-linux +category Package +revision 53804 +shortdesc aarch64-linux files of optex +containersize 320 +containerchecksum 2584daad5de802bf339a3bc784257fb7e59763d2cae8410c195a17b8eb012ed8f5585928d732501a6af1d5b800b832034acb0e319d47a21e4591ddefbd178176 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/optex + +name optex.amd64-freebsd +category Package +revision 53804 +shortdesc amd64-freebsd files of optex +containersize 320 +containerchecksum 02c7d0197b429e7ef5c7f531cbe65453379d449ab5d4521527fbdfcf198cc0486097922021468d341f59c95aca5e144f713714ca92d12b9c375ff8e796f02ba1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/optex + +name optex.amd64-netbsd +category Package +revision 53804 +shortdesc amd64-netbsd files of optex +containersize 316 +containerchecksum 8aa34b1f293328882c3ed55e7a25ce4c5f80f42f1b23432fc01ff4251793d8e0abfae586e3332863ab5a171717bb9ec57eca7863dd762ab4c83e5d869e4eb844 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/optex + +name optex.armhf-linux +category Package +revision 53804 +shortdesc armhf-linux files of optex +containersize 316 +containerchecksum c21f109755791fe8dd4cb3645d6bdd62b46bffb7668ab027dc795e9099d919852023e0934b48f5076f9624aa0ff63320e62b5ec49dd7a77bb0d95ad91e09bb6e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/optex + +name optex.i386-cygwin +category Package +revision 53804 +shortdesc i386-cygwin files of optex +containersize 320 +containerchecksum 6f889f6881321e4b19f9b41b98a437fa55c29c84a34638c6c0289cad6c68221b47d54cfcca1236a03d180e08831e1a52a6a66fabcba9c7646b1cd0382e540529 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/optex + +name optex.i386-freebsd +category Package +revision 53804 +shortdesc i386-freebsd files of optex +containersize 316 +containerchecksum 4782b3a2468635a4d6e5fbc5f63f7f59e73e3f5c8b36fd4459af5e1da97d8c1ee6ba0435e1d0c404988472e9af955f8d165877e79023e0af3dd5180010e6362d +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/optex + +name optex.i386-linux +category Package +revision 53804 +shortdesc i386-linux files of optex +containersize 316 +containerchecksum ee997b8d7fc5df62c66c8b0003f7e812ec19af114f7b283095ead4c20d6b321d80050663aae8b5827b8af4791db58a268c058198acb4f6316a543caa0b12ae60 +binfiles arch=i386-linux size=1 + bin/i386-linux/optex + +name optex.i386-netbsd +category Package +revision 53804 +shortdesc i386-netbsd files of optex +containersize 316 +containerchecksum e183c5331b4313418f78811ae60b5ea0394de8781a4695c2ad7962d4df84a646cc2cff11486c3b2e5f459f3d87c2728a163d995c946174f4c8b2faeab0fea1e0 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/optex + +name optex.i386-solaris +category Package +revision 53804 +shortdesc i386-solaris files of optex +containersize 316 +containerchecksum 57e8cf9acbc5f7b2ebb7aa6155403a9ac59928064f0d8a03e6c976ea14788e576561974212957acecf6102308818fb95044dc18677fe1982db9c86f2febb9bc3 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/optex + +name optex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of optex +containersize 320 +containerchecksum 603ffacfc9ed4611336f4a7e2c8001c81c5c3be02d5062e365e3a7903a5518aef3c967fec9e7be88758264e4bd56ef3f3c975cfd768c7f2ee85bfbb9de73641c +binfiles arch=universal-darwin size=1 + bin/universal-darwin/optex + +name optex.win32 +category Package +revision 57883 +shortdesc win32 files of optex +containersize 864 +containerchecksum d7b4e0afcab8cba391174d787a7b504f7fa3f4b6ad0a145ffd96703e0458dd88a0831e827b1a4478438d6fa1fccb9e6cc278be0ed2b18a3789dd84a5a2d61398 +binfiles arch=win32 size=1 + bin/win32/optex.exe + +name optex.x86_64-cygwin +category Package +revision 53804 +shortdesc x86_64-cygwin files of optex +containersize 324 +containerchecksum ccadff1947363965fc9e66a34b6b30bbe848b13ac78c14a6999c8327125912892d1ada19c85c0b25c0d4fd20cfacc45b610a12b644be8c28c521b6341262b3bd +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/optex + +name optex.x86_64-darwinlegacy +category Package +revision 53804 +shortdesc x86_64-darwinlegacy files of optex +containersize 324 +containerchecksum b534f49009709c4da02b3fba4515bd84e2fc0cbef60ad989734e3db496f549a75fe38585b2ad79ce68e500c5d8690ec3e3f13c2c7d3bfd1cbf84d6a64100ad6c +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/optex + +name optex.x86_64-linux +category Package +revision 53804 +shortdesc x86_64-linux files of optex +containersize 320 +containerchecksum 812cb0d91471940e0d5d20c01d5f686a601e31be2cb7bc003b9e9c733083a90c25508d3f311b5b22fba7e488a94a2628dde2e2dcbaf14b1ed60be1db486f0af9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/optex + +name optex.x86_64-linuxmusl +category Package +revision 53804 +shortdesc x86_64-linuxmusl files of optex +containersize 320 +containerchecksum 8b8f003b8b2fe07c08911ddfc21f33aa407671a3a997dce291ebf1d8f35fc53e5940c3374522b23d696d7f07f3292adafeef5e639fd18ec6b7c5382b24315f8a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/optex + +name optex.x86_64-solaris +category Package +revision 53804 +shortdesc x86_64-solaris files of optex +containersize 316 +containerchecksum 3df28de006e8f855b40188ad9c06e8715a351b3ef3db8c12b251cd74bdbb2e1b560b59b70a31d23c4428aa29eebfbde536fc9caaeb7165ec6e32df4e58ebf690 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/optex + +name optidef +category Package +revision 50941 +shortdesc Environments for writing optimization problems +relocated 1 +longdesc This small library provides a standard set of environments for +longdesc writing optimization problems. It automatically aligns the +longdesc problems in three points with an optional fourth: Beginning of +longdesc the words "minimize/argmin" and "subject to" The objective +longdesc function and the longest left hand side of the constraints. The +longdesc $= | > | <$ signs of the constraints. Optionally, the user can +longdesc add manually a double align character && to align some common +longdesc constraints feature. A clear example could be the constraints +longdesc names, e.g. (boundary constraint) alignment with (dynamic +longdesc constraint). Furthermore, it provides an easy interface to +longdesc define optimization problem for three different reference +longdesc situations: Where no equation is referenced/numbered. Where the +longdesc problem is referenced with a single number. Where each equation +longdesc has an individual reference. Finally, it also allows a +longdesc definition of any optimization problem without a limitless +longdesc number of constraints. +containersize 4948 +containerchecksum dfd704e585df8d01b279e67ea3a2baba6e86ddb9f38bc9747e370580a5f218e7ae4446d2429fc6bffc605ef0ea56c8077a8f41f3ca6a8e857df29d0e3f328143 +doccontainersize 256448 +doccontainerchecksum 3b80346a15a6e1d7209c3584d4fc9de944c55867ee7f21b018300b87615c0ff4fbe290a8683088c0e81f0eb20cf514f13fba0eb141808d8e5f5986c75bc9546d +docfiles size=71 + RELOC/doc/latex/optidef/README.md details="Readme" + RELOC/doc/latex/optidef/optidef.pdf details="Package documentation" + RELOC/doc/latex/optidef/optidef.tex +runfiles size=7 + RELOC/tex/latex/optidef/optidef.sty +catalogue-contact-bugs https://github.com/jeslago/optidef/issues +catalogue-contact-repository https://github.com/jeslago/optidef +catalogue-ctan /macros/latex/contrib/optidef +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 3.1 + +name optional +category Package +revision 18131 +shortdesc Facilitate optional printing of parts of a document +relocated 1 +longdesc Optional provides simple, flexible, optional compilation of +longdesc LaTeX documents. Option switches may be given via package +longdesc options, by the \UseOption command, or interactively via the +longdesc \AskOption command (help text may be provided, by defining the +longdesc \ExplainOptions command). The package is not robust, in the way +longdesc that comment package is, against ill-behaved text. In +longdesc particular, verbatim text may not be directly included in +longdesc optional sections (whether they're included or not). +containersize 3352 +containerchecksum 3f6d031b4bf863a339a80c3a05b101393f88dcefb67c61a67e01d9647e74def1fbf30f3d018158a83c8a171b875959bf57d7a3e90dc724c32868f9aafcd5cabd +doccontainersize 295236 +doccontainerchecksum d975e4f1b31e2335e55a41b317096be36161fc36fd589255a461772eb701376ce3fe714d727c4de9663ed8e4300bf0b570855b6b3ccb6b55fccd56206ac69692 +docfiles size=77 + RELOC/doc/latex/optional/optional.pdf details="Package documentation" + RELOC/doc/latex/optional/optional.tex +runfiles size=2 + RELOC/tex/latex/optional/optional.sty +catalogue-ctan /macros/latex/contrib/optional +catalogue-license lppl +catalogue-topics cond-comp editorial +catalogue-version 2.2b + +name options +category Package +revision 39030 +shortdesc Provides convenient key-value options for LaTeX package writers +relocated 1 +longdesc The options package provides easy to use key-value options for +longdesc LaTeX package writers. It has a similar interface as pgfkeys +longdesc with path options but comes with more built-in data types and +longdesc more convenient support for families and searching. +containersize 11224 +containerchecksum 3cdcd07f3c279a601da49a843169f0cb44aea573ac6c1c67a347712e5a087df4b21c6481168407ac6383e8fd5cdc511ea29fd7ec944edd2d514ac88b560633a3 +doccontainersize 223064 +doccontainerchecksum f23bc3575d6c93d056c752c63bb39e3ef9c92de1a90177e204e4d6a1fd90ce8c9afb36e727ac8ce827a59dad96a3b236e5c3c09af081160113cee1b529bc1973 +docfiles size=119 + RELOC/doc/latex/options/README details="Readme" + RELOC/doc/latex/options/options.html + RELOC/doc/latex/options/options.pdf details="Package documentation" +runfiles size=13 + RELOC/tex/latex/options/options.sty +catalogue-also keyval pgfkeys xkeyval +catalogue-ctan /macros/latex/contrib/options +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 1.0 + +name orcidlink +category Package +revision 58432 +shortdesc Insert hyperlinked ORCiD logo +relocated 1 +longdesc This package provides a command to insert the ORCiD logo, which +longdesc is hyperlinked to the URL of the researcher whose iD was +longdesc specified. +containersize 1652 +containerchecksum c4f2ce57c5c6a792f7d1cd0ef835e38cc582eb7df9655ae3d2555e3c9d389787ce0a058973dbc9d453f063247968957b2ba9ec1ed62499ab731b57fb96e0a342 +doccontainersize 165292 +doccontainerchecksum 8b18a107eb786e45fee9a1a16c5e88386e80db353e729e1288377aec3a87ed7433d189d0acbc1e8065a72b3fb7bf86cd8f635fe870735ddd3ebabed5aab8ba03 +docfiles size=42 + RELOC/doc/latex/orcidlink/README.md details="Readme" + RELOC/doc/latex/orcidlink/orcidlink.pdf details="Package documentation" +srccontainersize 3264 +srccontainerchecksum f1d11f008b85d65228d1284228e4839d340fe9e661c0cfecc2e9c76c2433b0e7ef6a27b0a630ee7458e4f98a32f12d0356d95bbb9756348e2070175b6d32aa5e +srcfiles size=3 + RELOC/source/latex/orcidlink/orcidlink.dtx + RELOC/source/latex/orcidlink/orcidlink.ins +runfiles size=1 + RELOC/tex/latex/orcidlink/orcidlink.sty +catalogue-also doi +catalogue-contact-bugs https://github.com/duetosymmetry/orcidlink-LaTeX-command/issues +catalogue-contact-repository https://github.com/duetosymmetry/orcidlink-LaTeX-command +catalogue-ctan /macros/latex/contrib/orcidlink +catalogue-license lppl1.3c +catalogue-topics hyper +catalogue-version 1.0.3 + +name ordinalpt +category Package +revision 15878 +shortdesc Counters as ordinal numbers in Portuguese +relocated 1 +longdesc The package provides a counter style (like \arabic, \alph and +longdesc others) which produces as output strings like "primeiro" +longdesc ("first" in Portuguese), "segundo" (second), and so on up to +longdesc 1999th. Separate counter commands are provided for different +longdesc letter case variants, and for masculine and feminine gender +longdesc inflections. +containersize 1900 +containerchecksum c494aee642949d56d8fe4aa28c18e38faf5f66ca8d9f1990419b7197ba6d8547004bb11c3d7b1d63cfcb7414b5c618af81425e4fd61fcf114dc36f9b7fcfb039 +doccontainersize 258992 +doccontainerchecksum dbcad860dd1fcff2e44f568caac9d3d60f4e9ac2312c672b9e9b46f9b31a2498a7e92bd646df8c622b024aefa8f2ecdc9c24e3f95f72f30f1e9b213d6bc4a53b +docfiles size=67 + RELOC/doc/latex/ordinalpt/README details="Readme" + RELOC/doc/latex/ordinalpt/ordinalpt.pdf details="Package documentation" +srccontainersize 4580 +srccontainerchecksum c4264de0f61c1d2abb6785f2a19e76578a154bcdb5314a3016c3a8bf700725294847a482f33095bf7173885e765db2afb4a3a34de3fdeb1d0c2a213c1e60b614 +srcfiles size=5 + RELOC/source/latex/ordinalpt/ordinalpt.dtx + RELOC/source/latex/ordinalpt/ordinalpt.ins +runfiles size=2 + RELOC/tex/latex/ordinalpt/ordinalpt.sty +catalogue-ctan /macros/latex/contrib/ordinalpt +catalogue-license lppl +catalogue-topics numbers portuguese +catalogue-version 2.1 + +name orientation +category Package +revision 57390 +shortdesc Set page orientation with dvips/Ghostscript (ps2pdf) +relocated 1 +longdesc This package provides commands for manual (per-page and +longdesc per-document) orientation of pages in a PDF created with +longdesc dvips/Ghostscript (ps2pdf). For future versions it is planned +longdesc to add support for other drivers, allowing for PDF orientation +longdesc to be set in (x)dvipdfmx and pdfmode pdfTeX using the same +longdesc commands from the user perspective. +containersize 928 +containerchecksum 729921d3152b76fc4c6c8385ce0b5a8ca2491670a7082133084c2e09774bd5c94b7c6c6b8ace1db787b4626f68a9b184550d43adace8dc6646ad36d2d9703f8d +doccontainersize 900 +doccontainerchecksum 75d3d1dd0a71d34429584dc1519b9ba26e329f58f468ae8548e7f9ec9f92e6877917bda790b61af9642e595d6b42370e8fc511b2e1d9b974617a6f5bddf96821 +docfiles size=1 + RELOC/doc/latex/orientation/README details="Readme" +runfiles size=1 + RELOC/tex/latex/orientation/orientation.sty +catalogue-ctan /macros/latex/contrib/orientation +catalogue-license cc0 +catalogue-topics landscape dvips-special +catalogue-version 1.0 + +name orkhun +category Package +revision 15878 +shortdesc A font for orkhun script +relocated 1 +longdesc The font covers an old Turkic script. It is provided as +longdesc Metafont source. +containersize 2776 +containerchecksum c1e52283e54e4de7caccfe605438e2775ebacc9c3fd21c143e29d7966c591ccc3fba77019e4f9ed9850762a0c80475edb6c9142d7ac2e3ba54007f3dac8b056f +doccontainersize 106092 +doccontainerchecksum ad0c15ca89057f2ff7d43a1bb8ea4513973978e1316e661a0e32ad8fb8005257a634954e85990958ba22360d29eea2d6ea9d87049435416616349874617d9dd0 +docfiles size=42 + RELOC/doc/fonts/orkhun/README_Orkhun.txt + RELOC/doc/fonts/orkhun/rakhimov.pdf details="Package documentation" + RELOC/doc/fonts/orkhun/rakhimov.tex +runfiles size=21 + RELOC/fonts/source/public/orkhun/orhant.mf + RELOC/fonts/source/public/orkhun/orhant11.mf + RELOC/fonts/source/public/orkhun/orhant14.mf + RELOC/fonts/source/public/orkhun/orhant16.mf + RELOC/fonts/source/public/orkhun/orhant20.mf + RELOC/fonts/source/public/orkhun/orhant25.mf + RELOC/fonts/tfm/public/orkhun/orhant11.tfm + RELOC/fonts/tfm/public/orkhun/orhant14.tfm + RELOC/fonts/tfm/public/orkhun/orhant16.tfm + RELOC/fonts/tfm/public/orkhun/orhant20.tfm + RELOC/fonts/tfm/public/orkhun/orhant25.tfm +catalogue-ctan /fonts/orkhun +catalogue-license lppl +catalogue-topics turkish + +name oscola +category Package +revision 54328 +shortdesc BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities +relocated 1 +longdesc The package provides a set of style files for use with BibLaTeX +longdesc (v 2+) and Biber (v 1+) to produce citations and bibliographies +longdesc in accordance with the widely-used Oxford Standard for the +longdesc Citation of Legal Authorities. It also includes facilities for +longdesc constructing tables of cases and legislation from citations (in +longdesc conjunction with appropriate indexing packages). +containersize 22568 +containerchecksum 831e450ea6fa77f521eca76aaf281a0f7425e28d889c7bc919cd04c52a78c3a0665abf011ec4ef722f47e737c1dfb48f8aac231aa3f370d594cf5300d84c2456 +doccontainersize 633720 +doccontainerchecksum 6024d48e3b6f68037a68dc04051451be2ea7a952e5d8f55b9bd1160d11900751b5a58cc8662e5c38940bee01a442f3691a8cd8329ee4bd5749cf7698adf72cef +docfiles size=281 + RELOC/doc/latex/oscola/README.md details="Readme" + RELOC/doc/latex/oscola/oscola-examples.bib + RELOC/doc/latex/oscola/oscola.pdf details="Package documentation" + RELOC/doc/latex/oscola/oscola.tex +runfiles size=54 + RELOC/makeindex/oscola/oscola.ist + RELOC/tex/latex/oscola/american-oscola.lbx + RELOC/tex/latex/oscola/british-oscola.lbx + RELOC/tex/latex/oscola/english-oscola.lbx + RELOC/tex/latex/oscola/oscola.bbx + RELOC/tex/latex/oscola/oscola.cbx +catalogue-contact-repository https://github.com/PaulStanley/oscola-biblatex +catalogue-ctan /macros/latex/contrib/biblatex-contrib/oscola +catalogue-license lppl1.3 +catalogue-topics legal biblatex +catalogue-version 1.7 + +name oswald +category Package +revision 57253 +shortdesc The Oswald family of fonts with support for LaTeX and pdfLaTeX +relocated 1 +longdesc This package provides the Oswald family of fonts, designed by +longdesc Vernon Adams, Kalapi Gajjar, Cyreal, with support for LaTeX and +longdesc pdfLaTeX. +execute addMap Zeroswald.map +containersize 916588 +containerchecksum faa9493780681b7485a642e45cfbb71e81ca408e2e65acd77b22f0655a0d98598558e4557737fa0615794eedaa42cd8ccf9bd04323b55a39db6251f52b11897c +doccontainersize 103464 +doccontainerchecksum e20776527a53c7da8a07d3c08314768cb3c0e2bcdbae90b30e7407c95546f1187f65fbcb8a52915ca3b1d26ffad2191733f26b9f105403ec574ab4912bcae915 +docfiles size=29 + RELOC/doc/fonts/oswald/LICENSE.TXT + RELOC/doc/fonts/oswald/Oswald-samples.pdf details="Font samples" + RELOC/doc/fonts/oswald/Oswald-samples.tex + RELOC/doc/fonts/oswald/README details="Readme" +runfiles size=345 + RELOC/fonts/enc/dvips/oswald/a_7goukv.enc + RELOC/fonts/enc/dvips/oswald/a_d2anrk.enc + RELOC/fonts/enc/dvips/oswald/a_j5f6hs.enc + RELOC/fonts/enc/dvips/oswald/a_leqwth.enc + RELOC/fonts/enc/dvips/oswald/a_rymxky.enc + RELOC/fonts/enc/dvips/oswald/a_ts7dz6.enc + RELOC/fonts/enc/dvips/oswald/a_wbqrrh.enc + RELOC/fonts/map/dvips/oswald/Zeroswald.map + RELOC/fonts/tfm/public/oswald/0swald-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-sup-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oswald/0swald-SemiBold-tlf-ts1.tfm + RELOC/fonts/type1/public/oswald/0swald-Bold.pfb + RELOC/fonts/type1/public/oswald/0swald-ExtraLight.pfb + RELOC/fonts/type1/public/oswald/0swald-Light.pfb + RELOC/fonts/type1/public/oswald/0swald-Medium.pfb + RELOC/fonts/type1/public/oswald/0swald-Regular.pfb + RELOC/fonts/type1/public/oswald/0swald-SemiBold.pfb + RELOC/fonts/vf/public/oswald/0swald-Bold-sup-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Bold-sup-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Bold-tlf-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/oswald/0swald-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/oswald/0swald-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/oswald/0swald-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/oswald/0swald-Light-sup-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Light-sup-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Light-tlf-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Light-tlf-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Light-tlf-ts1.vf + RELOC/fonts/vf/public/oswald/0swald-Medium-sup-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Medium-sup-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Medium-tlf-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/oswald/0swald-Regular-sup-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Regular-sup-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-Regular-tlf-t1.vf + RELOC/fonts/vf/public/oswald/0swald-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/oswald/0swald-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/oswald/0swald-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/oswald/0swald-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/oswald/0swald-SemiBold-tlf-ts1.vf + RELOC/tex/latex/oswald/LY1Zeroswald-Sup.fd + RELOC/tex/latex/oswald/LY1Zeroswald-TLF.fd + RELOC/tex/latex/oswald/OT1Zeroswald-Sup.fd + RELOC/tex/latex/oswald/OT1Zeroswald-TLF.fd + RELOC/tex/latex/oswald/Oswald.sty + RELOC/tex/latex/oswald/T1Zeroswald-Sup.fd + RELOC/tex/latex/oswald/T1Zeroswald-TLF.fd + RELOC/tex/latex/oswald/TS1Zeroswald-TLF.fd +catalogue-contact-repository https://github.com/ccebinger/CTAN_Oswald +catalogue-ctan /fonts/oswald +catalogue-license ofl lppl +catalogue-topics font font-sans font-proportional font-type1 font-supp font-t1enc + +name ot-tableau +category Package +revision 44889 +shortdesc Optimality Theory tableaux in LaTeX +relocated 1 +longdesc The package makes it easy to create beautiful +longdesc optimality-theoretic tableaux. The LaTeX source is visually +longdesc very similar to a formatted tableau, which makes working with +longdesc the source code painless (well, less painful). A variety of +longdesc stylistic variants are available to suit personal taste. +containersize 2096 +containerchecksum f3240c0688276ab6537201b20d6eee422a795d5d994c6bc8eab3f275a037e7adcec7e54c9500a3a5a6d2fe237b44b0b350a7ce6f72c7012bb48a69c9c43f2fca +doccontainersize 81048 +doccontainerchecksum 396256f0ce1bda04fe1c84cb45928d82651b4f6363928e33bf092737ee6ab224f473567aa5432fa00a8e4cfd9b5a3f7e7ad8448090afaaaf89f97b33ff695876 +docfiles size=25 + RELOC/doc/latex/ot-tableau/README details="Readme" + RELOC/doc/latex/ot-tableau/ot-tableau.pdf details="Package documentation" + RELOC/doc/latex/ot-tableau/ot-tableau.tex +runfiles size=2 + RELOC/tex/latex/ot-tableau/ot-tableau.sty +catalogue-ctan /macros/latex/contrib/ot-tableau +catalogue-license lppl +catalogue-topics linguistic + +name othello +category Package +revision 15878 +shortdesc Modification of a Go package to create othello boards +relocated 1 +longdesc A package (based on Kolodziejska's go), and fonts (as Metafont +longdesc source) are provided. +containersize 5456 +containerchecksum cddd446d5b63ed22ebc4e561e43fa8b4b1ab2cdb1ecc45ab98e60d6799646845a9d432aa45248e7cf70bfc4aea10cd42960a8846479df46a7cd701f792b4ca74 +doccontainersize 12056 +doccontainerchecksum 8ba85bf32ff739e4588512c2b33bf242b00e3f38a7ddb1b3f5582cd19b925e1adf52b4243857f1ef4b9d8198e8dc80a9aff8a63a7b3ff926978dc7e5c81262de +docfiles size=14 + RELOC/doc/latex/othello/boards.tex + RELOC/doc/latex/othello/ot.bat + RELOC/doc/latex/othello/ot1.bat.bat + RELOC/doc/latex/othello/othello.tex +runfiles size=41 + RELOC/fonts/source/public/othello/ot.mf + RELOC/fonts/source/public/othello/ot10.mf + RELOC/fonts/source/public/othello/ot15.mf + RELOC/fonts/source/public/othello/ot1bla10.mf + RELOC/fonts/source/public/othello/ot1bla15.mf + RELOC/fonts/source/public/othello/ot1bla20.mf + RELOC/fonts/source/public/othello/ot1black.mf + RELOC/fonts/source/public/othello/ot1neu.mf + RELOC/fonts/source/public/othello/ot1neu10.mf + RELOC/fonts/source/public/othello/ot1neu15.mf + RELOC/fonts/source/public/othello/ot1neu20.mf + RELOC/fonts/source/public/othello/ot1whi10.mf + RELOC/fonts/source/public/othello/ot1whi15.mf + RELOC/fonts/source/public/othello/ot1whi20.mf + RELOC/fonts/source/public/othello/ot1white.mf + RELOC/fonts/tfm/public/othello/ot10.tfm + RELOC/fonts/tfm/public/othello/ot15.tfm + RELOC/fonts/tfm/public/othello/ot1bla10.tfm + RELOC/fonts/tfm/public/othello/ot1bla15.tfm + RELOC/fonts/tfm/public/othello/ot1bla20.tfm + RELOC/fonts/tfm/public/othello/ot1neu10.tfm + RELOC/fonts/tfm/public/othello/ot1neu15.tfm + RELOC/fonts/tfm/public/othello/ot1neu20.tfm + RELOC/fonts/tfm/public/othello/ot1whi10.tfm + RELOC/fonts/tfm/public/othello/ot1whi15.tfm + RELOC/fonts/tfm/public/othello/ot1whi20.tfm + RELOC/tex/latex/othello/othello.sty +catalogue-ctan /macros/latex/contrib/othello +catalogue-license gpl +catalogue-topics games font font-mf font-specialist + +name othelloboard +category Package +revision 23714 +shortdesc Typeset Othello (Reversi) diagrams of any size, with annotations +relocated 1 +longdesc The package enables the user to generate high-quality Othello +longdesc (also known as Reversi) board diagrams of any size. The +longdesc diagrams support annotations, including full game transcripts. +longdesc Automated board or transcript creation, from plain text formats +longdesc standard to WZebra (and other programs) is also supported. +containersize 6276 +containerchecksum c975c73b8737f008b7f31af86e6c8a89de3f907c6fe782f075b04819bd936da3853a8ecf15935c04970777a4873b5baa38f9c675cc8943190df84ddc511dedba +doccontainersize 209224 +doccontainerchecksum af025805142a845bde22a5fe095fb96cd533d69c50bfcea8716dd7d61fc95c41727c16127c2f2b60c5bf2b55870d698db54d307c2b025aff3e251419ed58a3ce +docfiles size=76 + RELOC/doc/latex/othelloboard/README details="Readme" + RELOC/doc/latex/othelloboard/example-rose-chps1-2.pdf details="Usage example" + RELOC/doc/latex/othelloboard/example-rose-chps1-2.tex + RELOC/doc/latex/othelloboard/othelloboard.pdf details="Package documentation" + RELOC/doc/latex/othelloboard/othelloboard.tex +runfiles size=18 + RELOC/tex/latex/othelloboard/othelloboard.sty +catalogue-also othello +catalogue-ctan /macros/latex/contrib/othelloboard +catalogue-license lppl1.3 +catalogue-topics games +catalogue-version 1.2 + +name otibet +category Package +revision 45777 +shortdesc support for Tibetan using Omega +relocated 1 +containersize 96688 +containerchecksum 8fdc06f22bc9d25b61cb7b3b151919b7d2d6cf3d78f3cfe5a11284d9246acb858410ccab56996cd521eb98518be9c232a4c8e0f8ebbe52d7e93c510e3a0ac070 +doccontainersize 21248 +doccontainerchecksum 96f9d64c8f668f67afe20dad97d1cd3cfec19df3300204831fbfe0d245c1e15d8d0cea48bb94fb002cfa18db45d3ade730848908b0d77b867fff7557b0fb826f +docfiles size=26 + RELOC/doc/latex/otibet/README + RELOC/doc/latex/otibet/allbasic-mule.tex + RELOC/doc/latex/otibet/allbasic.dvi + RELOC/doc/latex/otibet/allbasic.tex + RELOC/doc/latex/otibet/otibet-mule.tex + RELOC/doc/latex/otibet/testtib.tex + RELOC/doc/latex/otibet/tiblatex.dvi + RELOC/doc/latex/otibet/tiblatex.tex + RELOC/doc/latex/otibet/unidoc.dvi + RELOC/doc/latex/otibet/unidoc.tex + RELOC/doc/latex/otibet/yugpacan.dvi + RELOC/doc/latex/otibet/yugpacan.tex +srccontainersize 19456 +srccontainerchecksum 4b51b49e3d3a802a3a19aea604a63f1e9503f7d9d86c81200dc5e2f2051b06e184add9292321f4895905a07595de6771eeda2463ae0c1b096a98f2d2fd210721 +srcfiles size=31 + RELOC/source/latex/otibet/Makefile + RELOC/source/latex/otibet/allbasic.odvi + RELOC/source/latex/otibet/convnum.scm + RELOC/source/latex/otibet/generate-otp.el + RELOC/source/latex/otibet/oct2otp.c + RELOC/source/latex/otibet/pl2ovp.scm + RELOC/source/latex/otibet/tibetan.pl + RELOC/source/latex/otibet/tiblatex.odvi + RELOC/source/latex/otibet/tibovp.scm + RELOC/source/latex/otibet/unidoc.odvi + RELOC/source/latex/otibet/yugpacan.odvi +runfiles size=175 + RELOC/fonts/ofm/public/otibet/otibetan.ofm + RELOC/fonts/ovf/public/otibet/otibetan.ovf + RELOC/fonts/ovp/public/otibet/otibetan.ovp + RELOC/fonts/source/public/otibet/bzrsetup.mf + RELOC/fonts/source/public/otibet/tibetan.mf + RELOC/fonts/tfm/public/otibet/tibetan.tfm + RELOC/omega/ocp/otibet/tibadjusttsheg.ocp + RELOC/omega/ocp/otibet/tibinunicode.ocp + RELOC/omega/ocp/otibet/tibinwylie.ocp + RELOC/omega/ocp/otibet/tibout.ocp + RELOC/omega/ocp/otibet/tibspecial.ocp + RELOC/omega/ocp/otibet/tibuniuni.ocp + RELOC/omega/ocp/otibet/tibvowel.ocp + RELOC/omega/otp/otibet/tibadjusttsheg.otp + RELOC/omega/otp/otibet/tibetan-mule2uni-old.otp + RELOC/omega/otp/otibet/tibetan-mule2uni.otp + RELOC/omega/otp/otibet/tibinunicode.otp + RELOC/omega/otp/otibet/tibinwylie.otp + RELOC/omega/otp/otibet/tibout.otp + RELOC/omega/otp/otibet/tibshow.otp + RELOC/omega/otp/otibet/tibspecial.otp + RELOC/omega/otp/otibet/tibuniuni.otp + RELOC/omega/otp/otibet/tibvowel.otp + RELOC/tex/latex/otibet/ot1tib.fd + RELOC/tex/latex/otibet/otibet.sty + RELOC/tex/latex/otibet/otibet.tex + RELOC/tex/latex/otibet/t1tib.fd + +name oubraces +category Package +revision 21833 +shortdesc Braces over and under a formula +relocated 1 +longdesc Provides a means to interleave \overbrace and \underbrace in +longdesc the same formula. +containersize 1660 +containerchecksum 8a0a6e0648cc3dd9a342a960dec6512fc9153a083c8fc74eb08c4e0f46d091e5f2c71bdb69bae80fc13a857175ec6bab4b18cc81a0963d794028f4faedd0def3 +doccontainersize 60352 +doccontainerchecksum c97f91df77f64d824605c56669136585b94d95031ed5a4a67f3404c54b2c96f32bafaecc06d114755d0e65c3fcd0379d63f28f94aa32ccb8d23730f5f3eaf63c +docfiles size=19 + RELOC/doc/latex/oubraces/oubraces.pdf details="Package documentation" + RELOC/doc/latex/oubraces/oubraces.tex +runfiles size=1 + RELOC/tex/latex/oubraces/oubraces.sty +catalogue-ctan /macros/latex/contrib/oubraces +catalogue-license other-free +catalogue-topics maths + +name oup-authoring-template +category Package +revision 58661 +shortdesc A general template for journals published by Oxford University Press (OUP) +relocated 1 +longdesc This package provides a general LaTeX template for journals +longdesc published by Oxford University Press (OUP). The template +longdesc outputs to the three official page designs (traditional, +longdesc contemporary, modern) used by many journals published by OUP, +longdesc with large, medium and small page options. For more information +longdesc see +longdesc https://academic.oup.com/journals/pages/authors/preparing_your_ +longdesc manuscript. +containersize 15132 +containerchecksum 138fe4a15f05a1c5b952febf0af211d1b3d13d202ce3cef953b770a1779464da6f7fb1cdbe77ac0f617cb1a1eeed4cde09288fe61cabea439570fc2a0a254df9 +doccontainersize 511092 +doccontainerchecksum 35c7e4e4597924adda46994a50e9e55f8af9f440899bb8ed3c85549d94f96cfc601436eebe0db730dab68762957121e1ddef094f60ed7eee041abbf80a841aad +docfiles size=159 + RELOC/doc/latex/oup-authoring-template/README details="Readme" + RELOC/doc/latex/oup-authoring-template/doc/oup-authoring-template-doc.pdf details="User manual" + RELOC/doc/latex/oup-authoring-template/doc/oup-authoring-template-doc.tex + RELOC/doc/latex/oup-authoring-template/manifest.txt + RELOC/doc/latex/oup-authoring-template/oup-authoring-template.pdf details="Example of use" + RELOC/doc/latex/oup-authoring-template/oup-authoring-template.tex +runfiles size=29 + RELOC/tex/latex/oup-authoring-template/oup-authoring-template.cls +catalogue-contact-home http://academic.oup.com/journals/pages/authors/preparing_your_manuscript +catalogue-ctan /macros/latex/contrib/oup-authoring-template +catalogue-license lppl1.2 +catalogue-topics journalpub class doc-templ +catalogue-version 1.0 + +name outerhbox +category Package +revision 54254 +shortdesc Collect horizontal material for contributing to a paragraph +relocated 1 +longdesc The package provides the \outerhbox command, which is similar +longdesc to \hbox, except that material is set in outer horizontal mode. +longdesc This prevents TeX from optimising away maths penalties and the +longdesc like, that are needed when the material is \unhbox'ed. +containersize 1596 +containerchecksum 954af6a75833dc388c430faf538415457d0526b85060602b93584a45e6b0ff9bb83ab1d2117ef58817f08b138146873ff74ab045f174e949a0c9fb9f042b1121 +runfiles size=1 + RELOC/tex/generic/outerhbox/outerhbox.sty +catalogue-ctan /macros/generic/misc/outerhbox.sty +catalogue-license gpl +catalogue-topics boxing +catalogue-version 1.2 + +name outline +category Package +revision 18360 +shortdesc List environment for making outlines +relocated 1 +longdesc The package defines an outline environment, which provides +longdesc facilities similar to enumerate, but up to 6 levels deep. +containersize 1528 +containerchecksum ccfb49c4e035f0d246f00aae56efa9d6570ad3997c44e2bf70588ce67a0bc3fb7bccff19b65629fb27158b0156a9802d97ea1f8edf6f4494f644f40df5d97118 +doccontainersize 234580 +doccontainerchecksum 301ad12a8f964a7dab05b208649c74ad39a64264f113963ebf36dbf83c90ed8ed042d8cc15f626f6081bd41f51d66dec592eaadabec32c65a0d67d15e8ead37a +docfiles size=66 + RELOC/doc/latex/outline/README details="Readme" + RELOC/doc/latex/outline/outline-sample.tex + RELOC/doc/latex/outline/outline.pdf details="Package documentation" + RELOC/doc/latex/outline/outline.tex +runfiles size=1 + RELOC/tex/latex/outline/outline.sty +catalogue-ctan /macros/latex/contrib/outline +catalogue-license lppl +catalogue-topics list list-enum + +name outliner +category Package +revision 21095 +shortdesc Change section levels easily +relocated 1 +longdesc Allows you to write "\Level 2 {Some heading}" instead of the +longdesc usual \section stuff; the definitions of the levels can then +longdesc easily be changed. There is a mechanism for shifting all +longdesc levels. This makes it easy to bundle existing articles into a +longdesc compilation. +containersize 3380 +containerchecksum 9251cb4154042c7620f545b2fb305cb996af9ff51c44259287a1f5ec490cd83bfb82321c4d8512ca2d22e5d2a7409ac5dad9f7a7d51f38a76bfe77faf2ca4af2 +doccontainersize 964 +doccontainerchecksum 024095493b4b7301597798285afbdaca9fad291dffec9707b82da9f23b1ee0585345e4f201d6b322a1a65ceb6f703ab5430d14973c3fb25970b04d2785ebb9d2 +docfiles size=1 + RELOC/doc/latex/outliner/outline_test.tex +runfiles size=3 + RELOC/tex/latex/outliner/outliner.sty +catalogue-ctan /macros/latex/contrib/outliner +catalogue-license gpl +catalogue-topics headings +catalogue-version 0.94 + +name outlines +category Package +revision 25192 +shortdesc Produce "outline" lists +relocated 1 +longdesc Defines an outline environment, which allows outline-style +longdesc indented lists with freely mixed levels up to four levels deep. +longdesc It replaces the nested begin/end pairs by different item tags +longdesc \1 to \4 for each nesting level. This is very convenient in +longdesc cases where nested lists are used a lot, such as for to-do +longdesc lists or presentation slides. +containersize 2044 +containerchecksum 1611e4ba3b8fe21db83a542da9d7e0c3431330bc24e3733d28c8c5b3172ce3e4b46ff5b7dda41f95b4edb6502236f6d558608487ac47f8726420a2afafed75db +doccontainersize 130384 +doccontainerchecksum bdc507a3f3cb966d03df37d9385145811c5750bce6341935231ae987b0a30dd65424a1bbb772920586721e25711caa429cd6d8b8149088f753f36b9dd69ddaac +docfiles size=37 + RELOC/doc/latex/outlines/README details="Readme" + RELOC/doc/latex/outlines/outlines.pdf details="Package documentation" + RELOC/doc/latex/outlines/outlines.tex +runfiles size=2 + RELOC/tex/latex/outlines/outlines.sty +catalogue-ctan /macros/latex/contrib/outlines +catalogue-license lppl +catalogue-topics list +catalogue-version 1.1 + +name outlining +category Package +revision 45601 +shortdesc Create outlines for scientific documents +relocated 1 +longdesc Every scientifc document requires outlining before it is +longdesc written. This package adds simple macros for your LaTeX +longdesc document. +containersize 1304 +containerchecksum 0d2b7dbe710d1ccd54a70cfbf6464a3ee5ad0fab8ccfa61306d5d5d83252c0f3b64f1caba6b5e8e75f7e6237fdfc675981acb67fbb730282978071e76e92ee40 +doccontainersize 138744 +doccontainerchecksum c083046671d159fc118f25e56ba34d04f8011e0c49169920fe679ffcb78d93e52a6f8bb5bcfb34c47f0b23f73579519c431976229ef143a31ab059cde6dd64ce +docfiles size=38 + RELOC/doc/latex/outlining/README.md details="Readme" + RELOC/doc/latex/outlining/outlining.pdf details="Package documentation" +srccontainersize 2504 +srccontainerchecksum 8a2f640df3572a5cb8336342b49035ad97513ac97eb87483a73c0d41ef4b98e2ec39b994f9a7005c7c6cdc2564aa55fdd8cc0e34bd79b189882df34ab10e6cb0 +srcfiles size=3 + RELOC/source/latex/outlining/outlining.dtx + RELOC/source/latex/outlining/outlining.ins +runfiles size=1 + RELOC/tex/latex/outlining/outlining.sty +catalogue-contact-announce https://github.com/dimitriblock/latex-outlining/releases +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-license lppl1.3 +catalogue-topics outline +catalogue-version 0.1 + +name overlays +category Package +revision 57866 +shortdesc Incremental slides +relocated 1 +longdesc This package allows to write presentations with incremental +longdesc slides. It does not presuppose any specific document class. +longdesc Rather, it is a lightweight alternative to full-fledged +longdesc presentation classes like beamer. The package requires xcolor, +longdesc environ, and pgffor (from the pgf bundle). +containersize 2464 +containerchecksum 93d1b7bff165da32f509e820cf88c08e8dc17ae688814a6913357ad9884ecf9fe94334be82e54c4e902935fcc38a6dab5687a3f5d4e333268d03df8e977611b6 +doccontainersize 108816 +doccontainerchecksum d1db70b9ca58bf23946a824c9b9ce173f008b45b608f409c6230403c5f5c1c2e6dbd22f7ec416e9869d3dd98bb0cc2b5a4a0e1d5bfd0a39bac36675d46a5b4d2 +docfiles size=39 + RELOC/doc/latex/overlays/COPYING + RELOC/doc/latex/overlays/ChangeLog + RELOC/doc/latex/overlays/README details="Readme" + RELOC/doc/latex/overlays/overlays.pdf details="Package documentation" + RELOC/doc/latex/overlays/overlays.tex + RELOC/doc/latex/overlays/sample.pdf details="Example of use" + RELOC/doc/latex/overlays/sample.tex +runfiles size=2 + RELOC/tex/latex/overlays/overlays.sty +catalogue-also beamer +catalogue-ctan /macros/latex/contrib/overlays +catalogue-license lppl1.3c +catalogue-topics presentation +catalogue-version 2.12 + +name overlock +category Package +revision 56079 +shortdesc Overlock sans fonts with LaTeX support +relocated 1 +longdesc The package provides the Overlock and OverlockSC families of +longdesc fonts, designed by Dario Manuel Muhafara of the TIPO foundry +longdesc (http://www.tipo.net.ar), "rounded" sans-serif fonts in three +longdesc weights (Regular, Bold, Black) with italic variants for each of +longdesc them. There are also small-caps and old-style figures in the +longdesc Regular weight. +execute addMap overlock.map +containersize 590276 +containerchecksum 0c3754d8fce4d3a9b68cd4d8e23d8f53d03ca3e1a1fa81e1af9fc7148bc5376cb8fe15869696667bb109829817178c1f5a6262a10f42c55c00ece4a3e8beef5f +doccontainersize 39568 +doccontainerchecksum e65417e21722d510ff6b41286ea5018513704f0bd346a77c8984b70339346a555dd1ade9c944868318f25ff07e73401807b1882a0eec90259ed55bfd50ff4382 +docfiles size=13 + RELOC/doc/fonts/overlock/OFL.txt + RELOC/doc/fonts/overlock/README details="Readme" + RELOC/doc/fonts/overlock/overlock-samples.pdf details="Package documentation" + RELOC/doc/fonts/overlock/overlock-samples.tex +runfiles size=408 + RELOC/fonts/enc/dvips/overlock/ovrlck_2sdgnb.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_325tkf.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_7l4e47.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_a4aghc.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_bhbhyo.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_cj365g.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_cr35rj.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_e3j4ia.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_fqfhhf.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_gmmlzo.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_irzqhk.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_j3mq5n.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_k2npiy.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_lhx5go.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_lqqrub.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_siy5zo.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_tmoia5.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_vvi6px.enc + RELOC/fonts/enc/dvips/overlock/ovrlck_woxjio.enc + RELOC/fonts/map/dvips/overlock/overlock.map + RELOC/fonts/opentype/tipo/overlock/Overlock-Black-OTF.otf + RELOC/fonts/opentype/tipo/overlock/Overlock-BlackItalic-OTF.otf + RELOC/fonts/opentype/tipo/overlock/Overlock-Bold-OTF.otf + RELOC/fonts/opentype/tipo/overlock/Overlock-BoldItalic-OTF.otf + RELOC/fonts/opentype/tipo/overlock/Overlock-Italic-OTF.otf + RELOC/fonts/opentype/tipo/overlock/Overlock-Regular-OTF.otf + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-lf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Black-osf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-lf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Bold-osf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-lf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Italic-osf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-lf-ts1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-ly1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-ot1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-t1--lcdfj.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-t1.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/tipo/overlock/Ovrlck-Regular-osf-ts1.tfm + RELOC/fonts/type1/tipo/overlock/Ovrlck-Black.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-BlackItalic.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-BlackItalicLCDFJ.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-BlackLCDFJ.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-Bold.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-BoldItalic.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-BoldLCDFJ.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-Italic.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-ItalicLCDFJ.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-Regular.pfb + RELOC/fonts/type1/tipo/overlock/Ovrlck-RegularLCDFJ.pfb + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-lf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-lf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-lf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-lf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-osf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-osf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-osf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Black-osf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-lf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-lf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-osf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-osf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-lf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-lf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-lf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-lf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-osf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-osf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-osf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Bold-osf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-lf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-osf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-osf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-lf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-lf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-lf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-lf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-osf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-osf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-osf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Italic-osf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-lf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-lf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-lf-sc-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-lf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-lf-ts1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-osf-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-osf-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-osf-sc-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-osf-t1.vf + RELOC/fonts/vf/tipo/overlock/Ovrlck-Regular-osf-ts1.vf + RELOC/tex/latex/overlock/LY1Ovrlck-LF.fd + RELOC/tex/latex/overlock/LY1Ovrlck-OsF.fd + RELOC/tex/latex/overlock/OT1Ovrlck-LF.fd + RELOC/tex/latex/overlock/OT1Ovrlck-OsF.fd + RELOC/tex/latex/overlock/T1Ovrlck-LF.fd + RELOC/tex/latex/overlock/T1Ovrlck-OsF.fd + RELOC/tex/latex/overlock/TS1Ovrlck-LF.fd + RELOC/tex/latex/overlock/TS1Ovrlck-OsF.fd + RELOC/tex/latex/overlock/overlock.sty +catalogue-ctan /fonts/overlock +catalogue-license ofl +catalogue-topics font font-sans font-ttf font-type1 + +name overpic +category Package +revision 53889 +shortdesc Combine LaTeX commands over included graphics +relocated 1 +longdesc The overpic environment is a cross between the LaTeX picture +longdesc environment and the \includegraphics command of graphicx. The +longdesc resulting picture environment has the same dimensions as the +longdesc included graphic. LaTeX commands can be placed on the graphic +longdesc at defined positions; a grid for orientation is available. +containersize 1728 +containerchecksum f6946c04fb1bd17f8708698671c17037688198996cbfac9b358169d1cfbaed9835b1b05b7779f3b4545c3b7de1d0ccd5148757b3cf125983ab0cdb8d895c5e69 +doccontainersize 372204 +doccontainerchecksum 39a93d00bc5646095c1e104927655e61a6fc337ceca8c336cfd40c39a63c02b18a440ca4c9557537d3ddb991e0ba4aac9f9ea821c7cce3f447359fd9f0203dd3 +docfiles size=93 + RELOC/doc/latex/overpic/README.de.md details="Readme (German)" language="de" + RELOC/doc/latex/overpic/README.md details="Readme (English)" language="en" + RELOC/doc/latex/overpic/overpic.pdf details="Documentation" language="en" +srccontainersize 4784 +srccontainerchecksum 9cc367d8b54a2c01d694602cfb8b0d0ff9e9d2117fd1e20a34ac80b9a1007f44b670eb17a55af7b073385ab4ec9511e76cca508ec108e22ec6f5891c0d32477e +srcfiles size=5 + RELOC/source/latex/overpic/overpic.dtx + RELOC/source/latex/overpic/overpic.ins +runfiles size=1 + RELOC/tex/latex/overpic/overpic.sty +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-license lppl1.3 +catalogue-topics graphics-text +catalogue-version 1.3 + +name pacioli +category Package +revision 24947 +shortdesc Fonts designed by Fra Luca de Pacioli in 1497 +relocated 1 +longdesc Pacioli was a c.15 mathematician, and his font was designed +longdesc according to 'the divine proportion'. The font is uppercase +longdesc letters together with punctuation and some analphabetics; no +longdesc lowercase or digits. The Metafont source is distributed in a +longdesc .dtx file, together with LaTeX support. +containersize 14936 +containerchecksum a82b391630b5f572d8ded331ae98f480fb0cf7f3eaefdcab3100bc839e2b026f012320e334e82d04e01a27657f36927a4d1570086899ad637f8c47ddd0f22b2f +doccontainersize 26000 +doccontainerchecksum fa911ec25c0d6cfa62a2d5396aedf893b9078604611ae5d34b06f24740f65fd62895e4d53a10931071d19ddd24244e3c7ee9893f4eff03efd0920fd1c1626610 +docfiles size=58 + RELOC/doc/fonts/pacioli/README details="Readme" + RELOC/doc/fonts/pacioli/tryfont.ps details="Font sample" + RELOC/doc/fonts/pacioli/tryfont.tex +srccontainersize 20624 +srccontainerchecksum d9347b85cd548f5861b83ef2f213760805c3cb76fe0313f02935bf28baae72caf2d548459aed2acb7ad5061e49c6e6694e46e88bccc1164e83f63a6f97045d04 +srcfiles size=23 + RELOC/source/fonts/pacioli/pacioli.dtx + RELOC/source/fonts/pacioli/pacioli.ins +runfiles size=23 + RELOC/fonts/source/public/pacioli/cpclig.mf + RELOC/fonts/source/public/pacioli/cpcpunct.mf + RELOC/fonts/source/public/pacioli/cpcr10.mf + RELOC/fonts/source/public/pacioli/cpcromanp.mf + RELOC/fonts/source/public/pacioli/cpcromanu.mf + RELOC/fonts/source/public/pacioli/cpcsl10.mf + RELOC/fonts/source/public/pacioli/cpctitle.mf + RELOC/fonts/tfm/public/pacioli/cpcr10.tfm + RELOC/fonts/tfm/public/pacioli/cpcsl10.tfm + RELOC/tex/latex/pacioli/ot1cpc.fd + RELOC/tex/latex/pacioli/pacioli.sty + RELOC/tex/latex/pacioli/t1cpc.fd +catalogue-ctan /fonts/pacioli +catalogue-license lppl +catalogue-topics font font-mf font-historical + +name padauk +category Package +revision 42617 +shortdesc A high-quality TrueType font that supports the many diverse languages that use the Myanmar script +relocated 1 +longdesc Padauk is a Unicode-based font family with broad support for +longdesc writing systems that use the Myanmar script. +containersize 206092 +containerchecksum fec57c3e7bd299671ae8d6489723a4d33c54b11223f5f37f3f3b3cc148fcbb6d9a9aa46587ab83e414221cde3a7d0e4493877d90e9536952d9069a4cec7c758f +doccontainersize 10652 +doccontainerchecksum ffa9d45c971b7fe4fbc55644be4093268f842e13a2ffb1713be401cc88934dae86f012741951f30580a94a57f35b85cac9525869e0abca5601278d48a19782c0 +docfiles size=11 + RELOC/doc/fonts/padauk/FONTLOG.txt + RELOC/doc/fonts/padauk/OFL-FAQ.txt + RELOC/doc/fonts/padauk/OFL.txt + RELOC/doc/fonts/padauk/README details="Readme" + RELOC/doc/fonts/padauk/README.TEXLIVE +runfiles size=418 + RELOC/fonts/truetype/public/padauk/Padauk-Bold.ttf + RELOC/fonts/truetype/public/padauk/Padauk-Regular.ttf + RELOC/fonts/truetype/public/padauk/PadaukBook-Bold.ttf + RELOC/fonts/truetype/public/padauk/PadaukBook-Regular.ttf +catalogue-contact-home http://software.sil.org/padauk/ +catalogue-ctan /fonts/padauk +catalogue-license ofl +catalogue-topics font-ttf +catalogue-version 3.002 + +name padcount +category Package +revision 47621 +shortdesc Pad numbers with arbitrary characters +relocated 1 +longdesc This package provides some simple macros which will pad numbers +longdesc (or, indeed, any expanded token) with your choice of character +longdesc (defaulting to "0") to your choice of number of places +longdesc (defaults to "2"). This works not only on arabic numerals, but +longdesc on any expanded list of tokens passed to it. This makes it +longdesc suitable for, among other things, counters of all kinds. +containersize 1360 +containerchecksum 9378dbaa1d3a569a3cb4bd70fa1b5a6dcdb0fe089d3a2c3eecef4cfdb776607f42b7fb018461c00781f8b022dd962e790146297f5df29889db13794e25c1cbb0 +doccontainersize 147788 +doccontainerchecksum 68ffec3a80473b3b2899ae262fcbca47198c61bf1363b9c167986cc95214c778fdd49ed65e8fda8f15d48d3d9941ac54c6660f28729dda176123fa1b3f7e8631 +docfiles size=42 + RELOC/doc/latex/padcount/CHANGES + RELOC/doc/latex/padcount/README details="Readme" + RELOC/doc/latex/padcount/lppl.txt + RELOC/doc/latex/padcount/padcount.pdf details="Package documentation" +srccontainersize 2952 +srccontainerchecksum 088fd314ec5717f6b40f66762af47a32eb01f40259948945b48bfde12923474cbf0a7aa8389b4ea83127915782bffab4d9cc0be40d2f7d752dca734b0fc0b62e +srcfiles size=3 + RELOC/source/latex/padcount/padcount.dtx + RELOC/source/latex/padcount/padcount.ins +runfiles size=1 + RELOC/tex/latex/padcount/padcount.sty +catalogue-ctan /macros/latex/contrib/padcount +catalogue-license lppl1.3c +catalogue-topics numbers +catalogue-version 1.0 + +name pagecolor +category Package +revision 44487 +shortdesc Interrogate page colour +relocated 1 +longdesc This package provides the command \thepagecolor, which gives +longdesc the current page (background) colour, i. e. the argument used +longdesc with the most recent call of \pagecolor{...}. The command +longdesc \thepagecolornone gives the same colour as \thepagecolor, +longdesc except when the page background colour is "none" (e.g., as a +longdesc result of using the \nopagecolor command). In that case +longdesc \thepagecolor is "white" and \thepagecolornone is "none". +containersize 3192 +containerchecksum 6df1ddc270fa99a658d2ffe94b29e31e54e665b3c3c41c8c1f992adb8453f5bb6b59356c2ef049ac4679f4e996a6888911e5c8c5d92500df0a3f53d5a11f5fb1 +doccontainersize 407548 +doccontainerchecksum c63adfeddcd00a7d738fd74c047b034d4a88264185d519d4891a429b82c62f20dc28196e1657e1c7c1dd3fa8a570d5a66e6af3aed5c78ca851ec40153f2396e3 +docfiles size=104 + RELOC/doc/latex/pagecolor/README details="Readme" + RELOC/doc/latex/pagecolor/pagecolor-example.pdf details="Example" + RELOC/doc/latex/pagecolor/pagecolor-example.tex + RELOC/doc/latex/pagecolor/pagecolor.pdf details="Package documentation" +srccontainersize 12008 +srccontainerchecksum 2cb9a6c424ec6b1a649a592a51d4c06f67685042da8cba22ac088ca962ecbd2b93806a962409ea94f28e9183cebc02d7e2b9ee298d645a330fab8722534ecebc +srcfiles size=15 + RELOC/source/latex/pagecolor/pagecolor.drv + RELOC/source/latex/pagecolor/pagecolor.dtx + RELOC/source/latex/pagecolor/pagecolor.ins +runfiles size=3 + RELOC/tex/latex/pagecolor/pagecolor.sty +catalogue-ctan /macros/latex/contrib/pagecolor +catalogue-license lppl1.3c +catalogue-topics colour +catalogue-version 1.0i + +name pagecont +category Package +revision 15878 +shortdesc Page numbering that continues between documents +relocated 1 +longdesc The package provides the facility that several documents can be +longdesc typeset independently with page numbers in sequence, as if they +longdesc were a single document. +containersize 1344 +containerchecksum 53b0f558c6198181349a66b39f0b54108a931279766882bfb713390e79ad0f62218ed841416e143c6909161ffec548592ffccb337505eba61f643a05d49f1fa6 +doccontainersize 73804 +doccontainerchecksum 634110b7cde040e5ae7be237abd6817055f7886d9fed5ce1a00b5ea93e9bc885f0c15398c280abe8472e27ce89aade2a827e66fc041081c8d31cdaf7755119bc +docfiles size=22 + RELOC/doc/latex/pagecont/README details="Readme" + RELOC/doc/latex/pagecont/pagecont.pdf details="Package documentation" +srccontainersize 2920 +srccontainerchecksum 86417ff0f398efbf5b6abf2272df933734724a7d94f93d0a94704c393e195ca0a5828698d4d91527fe1bb0d70a26af49998513f0e9d80e1b8966239555a3dfab +srcfiles size=3 + RELOC/source/latex/pagecont/pagecont.dtx + RELOC/source/latex/pagecont/pagecont.ins +runfiles size=1 + RELOC/tex/latex/pagecont/pagecont.sty +catalogue-ctan /macros/latex/contrib/pagecont +catalogue-license lppl +catalogue-topics page-nos +catalogue-version 1.0 + +name pagenote +category Package +revision 15878 +shortdesc Notes at end of document +relocated 1 +longdesc The pagenote package provides tagged notes on a separate page +longdesc (also known as 'end notes'). Unless the memoir class is used, +longdesc the package requires the ifmtarg package. +containersize 2020 +containerchecksum f1db9829d909add12458cd17771136ef642b5655b03779c8b2fa46cf25afcb8843d91de331737f8f6537e7afc5f2dfd275926e6f4502c8022b0472d61b433b1e +doccontainersize 138600 +doccontainerchecksum b57cbcef6a6ecec75b351f6a3dc09f0422873155a8f90819dc4dd2caf60cd562a21de7ce62b241259c2f0dc3889c0deceb25c00f7f3d8764a90f5861c8e8c1ee +docfiles size=40 + RELOC/doc/latex/pagenote/README details="Readme" + RELOC/doc/latex/pagenote/pagenote.pdf details="Package documentation" +srccontainersize 7888 +srccontainerchecksum 3a7f4cdfa5839de85f476c3f059847ba05f7e5eb10ef4f5d951ac4e07a33091c4ccda5570dea1bf47fbc7f15272ca411afd68197fba56c9ec133d163671483db +srcfiles size=7 + RELOC/source/latex/pagenote/pagenote.dtx + RELOC/source/latex/pagenote/pagenote.ins +runfiles size=2 + RELOC/tex/latex/pagenote/pagenote.sty +catalogue-also endnote +catalogue-ctan /macros/latex/contrib/pagenote +catalogue-license lppl1.3 +catalogue-topics notes +catalogue-version 1.1a + +name pagerange +category Package +revision 16915 +shortdesc Flexible and configurable page range typesetting +relocated 1 +longdesc The package defines a command \pagerange that typesets ranges +longdesc of page numbers, expanding them (e.g., adding first or last +longdesc page numbers) and standardising them. +containersize 3932 +containerchecksum 9216d443f44deba5cfc4ce04174031cae55f2adffa0f3400bf3f315c3b9003d1ee015fb6df69cb2cba23eb117f2ed191b7033ad46a51bc718260a44778783c47 +doccontainersize 81944 +doccontainerchecksum 862ed02746c6d91a2b8d9e19bb2e943e251dd18f0d94562bce9cc9e8ad603f7554e77ccfa2485b9a4eb7a2d6d5185756985f104d870e95823a4b33072f24bc9b +docfiles size=27 + RELOC/doc/latex/pagerange/README details="Readme" + RELOC/doc/latex/pagerange/pagerange-guide.pdf details="Samples of usage" + RELOC/doc/latex/pagerange/pagerange-guide.tex +runfiles size=3 + RELOC/tex/latex/pagerange/pagerange-guide.cfg + RELOC/tex/latex/pagerange/pagerange.sty +catalogue-ctan /macros/latex/contrib/pagerange +catalogue-license lppl +catalogue-topics label-ref macro-supp +catalogue-version 0.5 + +name pagesel +category Package +revision 56105 +shortdesc Select pages of a document for output +relocated 1 +longdesc Selects single pages, ranges of pages, odd pages or even pages +longdesc for output. The package is part of the oberdiek bundle. +containersize 2488 +containerchecksum c07cd3b48fd5cd59ca685b1ae39da7e7d8774348241c26d29a74b41ee6c29fdae0c01a47a79aa669cf6651b0b83a5b79f8424c139c17db5bca20d30186e5b655 +doccontainersize 331604 +doccontainerchecksum eeb70877276b393cccb1c0e301c191480e5aa52715738ac6d01b58be864b065b3b72afdbd90d3a398284671682370300537d4953aa2adf4355fc6d2278d2819e +docfiles size=83 + RELOC/doc/latex/pagesel/README.md details="Readme" + RELOC/doc/latex/pagesel/pagesel.pdf details="Package documentation" language="en" +srccontainersize 7128 +srccontainerchecksum 457c52df8dca820c8ee39494630a077d0a14f58f7308805dd0b5f5dc374fdaee83581cab3543d7a9ded91ef94f7555f2d2b2420a6ff2c9ddf7c790b5407f468a +srcfiles size=7 + RELOC/source/latex/pagesel/pagesel.dtx +runfiles size=4 + RELOC/tex/latex/pagesel/pagesel-2016-05-16.sty + RELOC/tex/latex/pagesel/pagesel.sty +catalogue-also selectp +catalogue-contact-bugs https://github.com/ho-tex/pagesel/issues +catalogue-ctan /macros/latex/contrib/pagesel +catalogue-license lppl1.3c +catalogue-topics page-control +catalogue-version 1.10 + +name pageslts +category Package +revision 39164 +shortdesc Variants of last page labels +relocated 1 +longdesc The package was designed as an extension of the lastpage +longdesc package -- as well as that package's LastPage label (created +longdesc \AtEndDocument) it adds a VeryLastPage (created +longdesc \AfterLastShipout). When more than one page numbering scheme is +longdesc in operation (as in a book class document with frontmatter), +longdesc the labels above do not give the total number of pages, so the +longdesc package also provides labels pagesLTS.<numbering scheme>, where +longdesc the numbering scheme is arabic, roman, etc. The package relies +longdesc on the undolabl package. +containersize 9820 +containerchecksum 7db146bce45ee5ceeec5904e8f3ed6efe0010885b657b0f74546644c3ce2a018deafa95a11390da3d8a62eef16508b82c3efa9d02ac1662cbed18e905cf869b5 +doccontainersize 933088 +doccontainerchecksum 58fe6250af4ecdd6d62c231778c89e0b049995feface3af66dc73b920f4dcdca8838d3274a7648caf2b38746fbdaaddd1b4f87577c77dabad2096e9c8b681619 +docfiles size=244 + RELOC/doc/latex/pageslts/README details="Readme" + RELOC/doc/latex/pageslts/pageslts-example.pdf details="Package examples" + RELOC/doc/latex/pageslts/pageslts-example.tex + RELOC/doc/latex/pageslts/pageslts.pdf details="Package documentation" +srccontainersize 40972 +srccontainerchecksum 99db221ae4c7795ca4093b7708aac14fededf3c55aaf314433602906d8b0f3d9c074fc0b8cc6807474e81e510f35bca486db3aa525e95a5486c7ff379cdd5e18 +srcfiles size=56 + RELOC/source/latex/pageslts/pageslts.drv + RELOC/source/latex/pageslts/pageslts.dtx + RELOC/source/latex/pageslts/pageslts.ins +runfiles size=12 + RELOC/tex/latex/pageslts/pageslts.sty +catalogue-ctan /macros/latex/contrib/pageslts +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.2f + +name palatino +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap upl.map +containersize 325820 +containerchecksum f21fdeb0423853294f52427bbe1477bbfd49b1a6255bed5f561dfa2156cf8309b2f71d2c09ad74bd64bc1fd69fc73816e3d84e72d975db5925d4c3c4db6fe8ca +runfiles size=388 + RELOC/dvips/palatino/config.upl + RELOC/fonts/afm/adobe/palatino/pplb8a.afm + RELOC/fonts/afm/adobe/palatino/pplbi8a.afm + RELOC/fonts/afm/adobe/palatino/pplr8a.afm + RELOC/fonts/afm/adobe/palatino/pplri8a.afm + RELOC/fonts/afm/urw/palatino/uplb8a.afm + RELOC/fonts/afm/urw/palatino/uplbi8a.afm + RELOC/fonts/afm/urw/palatino/uplr8a.afm + RELOC/fonts/afm/urw/palatino/uplri8a.afm + RELOC/fonts/map/dvips/palatino/upl.map + RELOC/fonts/tfm/adobe/palatino/eurbo10.tfm + RELOC/fonts/tfm/adobe/palatino/eurmo10.tfm + RELOC/fonts/tfm/adobe/palatino/pplb.tfm + RELOC/fonts/tfm/adobe/palatino/pplb7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplb8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplb8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplb8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbc.tfm + RELOC/fonts/tfm/adobe/palatino/pplbc7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbc8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbij8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbj8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbu.tfm + RELOC/fonts/tfm/adobe/palatino/pplbu8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplr.tfm + RELOC/fonts/tfm/adobe/palatino/pplr7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8rn.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplri.tfm + RELOC/fonts/tfm/adobe/palatino/pplri7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplri8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplri8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplri8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrij8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplro.tfm + RELOC/fonts/tfm/adobe/palatino/pplro7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplro8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplro8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplro8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrr8re.tfm + RELOC/fonts/tfm/adobe/palatino/pplrre.tfm + RELOC/fonts/tfm/adobe/palatino/pplrrn.tfm + RELOC/fonts/tfm/adobe/palatino/pplru.tfm + RELOC/fonts/tfm/adobe/palatino/pplru8r.tfm + RELOC/fonts/tfm/adobe/palatino/zppleb7m.tfm + RELOC/fonts/tfm/adobe/palatino/zppleb7t.tfm + RELOC/fonts/tfm/adobe/palatino/zppleb7y.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7m.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7t.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7v.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7y.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbc7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbc8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplrc7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplrc8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro8t.tfm + RELOC/fonts/type1/urw/palatino/uplb8a.pfb + RELOC/fonts/type1/urw/palatino/uplb8a.pfm + RELOC/fonts/type1/urw/palatino/uplbi8a.pfb + RELOC/fonts/type1/urw/palatino/uplbi8a.pfm + RELOC/fonts/type1/urw/palatino/uplr8a.pfb + RELOC/fonts/type1/urw/palatino/uplr8a.pfm + RELOC/fonts/type1/urw/palatino/uplri8a.pfb + RELOC/fonts/type1/urw/palatino/uplri8a.pfm + RELOC/fonts/vf/adobe/palatino/pplb.vf + RELOC/fonts/vf/adobe/palatino/pplb7t.vf + RELOC/fonts/vf/adobe/palatino/pplb8c.vf + RELOC/fonts/vf/adobe/palatino/pplb8t.vf + RELOC/fonts/vf/adobe/palatino/pplb9c.vf + RELOC/fonts/vf/adobe/palatino/pplb9d.vf + RELOC/fonts/vf/adobe/palatino/pplb9e.vf + RELOC/fonts/vf/adobe/palatino/pplb9o.vf + RELOC/fonts/vf/adobe/palatino/pplb9t.vf + RELOC/fonts/vf/adobe/palatino/pplbc.vf + RELOC/fonts/vf/adobe/palatino/pplbc7t.vf + RELOC/fonts/vf/adobe/palatino/pplbc8t.vf + RELOC/fonts/vf/adobe/palatino/pplbi.vf + RELOC/fonts/vf/adobe/palatino/pplbi7t.vf + RELOC/fonts/vf/adobe/palatino/pplbi8c.vf + RELOC/fonts/vf/adobe/palatino/pplbi8t.vf + RELOC/fonts/vf/adobe/palatino/pplbi9c.vf + RELOC/fonts/vf/adobe/palatino/pplbi9d.vf + RELOC/fonts/vf/adobe/palatino/pplbi9e.vf + RELOC/fonts/vf/adobe/palatino/pplbi9o.vf + RELOC/fonts/vf/adobe/palatino/pplbi9t.vf + RELOC/fonts/vf/adobe/palatino/pplbo.vf + RELOC/fonts/vf/adobe/palatino/pplbo7t.vf + RELOC/fonts/vf/adobe/palatino/pplbo8c.vf + RELOC/fonts/vf/adobe/palatino/pplbo8t.vf + RELOC/fonts/vf/adobe/palatino/pplbu.vf + RELOC/fonts/vf/adobe/palatino/pplr.vf + RELOC/fonts/vf/adobe/palatino/pplr7t.vf + RELOC/fonts/vf/adobe/palatino/pplr8c.vf + RELOC/fonts/vf/adobe/palatino/pplr8t.vf + RELOC/fonts/vf/adobe/palatino/pplr9c.vf + RELOC/fonts/vf/adobe/palatino/pplr9d.vf + RELOC/fonts/vf/adobe/palatino/pplr9e.vf + RELOC/fonts/vf/adobe/palatino/pplr9o.vf + RELOC/fonts/vf/adobe/palatino/pplr9t.vf + RELOC/fonts/vf/adobe/palatino/pplrc.vf + RELOC/fonts/vf/adobe/palatino/pplrc7t.vf + RELOC/fonts/vf/adobe/palatino/pplrc8t.vf + RELOC/fonts/vf/adobe/palatino/pplrc9d.vf + RELOC/fonts/vf/adobe/palatino/pplrc9e.vf + RELOC/fonts/vf/adobe/palatino/pplrc9o.vf + RELOC/fonts/vf/adobe/palatino/pplrc9t.vf + RELOC/fonts/vf/adobe/palatino/pplri.vf + RELOC/fonts/vf/adobe/palatino/pplri7t.vf + RELOC/fonts/vf/adobe/palatino/pplri8c.vf + RELOC/fonts/vf/adobe/palatino/pplri8t.vf + RELOC/fonts/vf/adobe/palatino/pplri9c.vf + RELOC/fonts/vf/adobe/palatino/pplri9d.vf + RELOC/fonts/vf/adobe/palatino/pplri9e.vf + RELOC/fonts/vf/adobe/palatino/pplri9o.vf + RELOC/fonts/vf/adobe/palatino/pplri9t.vf + RELOC/fonts/vf/adobe/palatino/pplro.vf + RELOC/fonts/vf/adobe/palatino/pplro7t.vf + RELOC/fonts/vf/adobe/palatino/pplro8c.vf + RELOC/fonts/vf/adobe/palatino/pplro8t.vf + RELOC/fonts/vf/adobe/palatino/pplrre.vf + RELOC/fonts/vf/adobe/palatino/pplrrn.vf + RELOC/fonts/vf/adobe/palatino/pplru.vf + RELOC/fonts/vf/adobe/palatino/zppleb7m.vf + RELOC/fonts/vf/adobe/palatino/zppleb7t.vf + RELOC/fonts/vf/adobe/palatino/zppleb7y.vf + RELOC/fonts/vf/adobe/palatino/zppler7m.vf + RELOC/fonts/vf/adobe/palatino/zppler7t.vf + RELOC/fonts/vf/adobe/palatino/zppler7v.vf + RELOC/fonts/vf/adobe/palatino/zppler7y.vf + RELOC/fonts/vf/urw35vf/palatino/uplb7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplb8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplb8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbc7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbc8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbi7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbi8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplbi8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbo7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbo8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplbo8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplr7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplr8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplr8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplrc7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplrc8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplri7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplri8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplri8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplro7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplro8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplro8t.vf + RELOC/tex/latex/palatino/8rupl.fd + RELOC/tex/latex/palatino/omlupl.fd + RELOC/tex/latex/palatino/omsupl.fd + RELOC/tex/latex/palatino/ot1upl.fd + RELOC/tex/latex/palatino/t1upl.fd + RELOC/tex/latex/palatino/ts1upl.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name paper +category Package +revision 34521 +shortdesc Versions of article class, tuned for scholarly publications +relocated 1 +longdesc A pair of classes derived from article, tuned for producing +longdesc papers for journals. The classes introduce new layout options +longdesc and font commands for sections/parts, and define a new keywords +longdesc environment, subtitle and institution commands for the title +longdesc section and new commands for revisions. +containersize 8144 +containerchecksum 484964a6da8fffb001e29b471f7c9fa52d2f1aecf66da8f9365376b987c79e8e39cdede0f0d61977381aea78f9e6429216c0cc2eaa67a831e4f1ace29e2c9503 +doccontainersize 128876 +doccontainerchecksum 2fd771d5f1035cb48c0a4de89f1174a988b3b8254caf535ca75633efe2ddc0483d095a720a9dae93aa7e832b0d4e63bc49cbdcd801e4190209f56bb0632c5aa6 +docfiles size=43 + RELOC/doc/latex/paper/README details="Readme" + RELOC/doc/latex/paper/install + RELOC/doc/latex/paper/journal1.tex + RELOC/doc/latex/paper/journal2.tex + RELOC/doc/latex/paper/local.tex + RELOC/doc/latex/paper/paper.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/paper/testj.tex + RELOC/doc/latex/paper/testp.tex +srccontainersize 16644 +srccontainerchecksum 74ad404eaa44a523f97d245d6ccada1546d9c991bfc64186ab1ee7f6efdecddf87897d7e64136c0285e4d6541f1bf164173efb020adc113893d8e9309a687967 +srcfiles size=18 + RELOC/source/latex/paper/paper.drv + RELOC/source/latex/paper/paper.dtx +runfiles size=12 + RELOC/tex/latex/paper/journal.cls + RELOC/tex/latex/paper/journal.sty + RELOC/tex/latex/paper/paper.cls + RELOC/tex/latex/paper/paper.sty +catalogue-ctan /macros/latex/contrib/paper +catalogue-license gpl +catalogue-topics journalpub +catalogue-version 1.0l + +name papercdcase +category Package +revision 15878 +shortdesc Origami-style folding paper CD case +relocated 1 +longdesc This package implements a LaTeX style file to produce +longdesc origami-style folding paper CD cases. +containersize 3824 +containerchecksum 8f2c923e72c7f16b394222ad86bc3f07304e6c39965473482c708b15574b0475af6eb6aaa085b94be6b0ddcce3324cd5639a8317caad55844998868ff18f0e73 +doccontainersize 131280 +doccontainerchecksum 01d43ccf0be5caa114f1b406e5cd4c1f8f44f06ea92e6d3fc999a5bc71e911d6c99dbcb8a1b9c49105b978d0d36e6ad2642f73446e3ba6a55edb11f82f40638a +docfiles size=39 + RELOC/doc/latex/papercdcase/example.tex + RELOC/doc/latex/papercdcase/interactive.tex + RELOC/doc/latex/papercdcase/papercdcase.pdf details="Package documentation" +srccontainersize 10444 +srccontainerchecksum 7bce5742cc7504e789011ec877fc2a934300b0edfa2e6b8f89d625184e5dd0c8cc6116aae7701c313e133d8669522c1414a2a16d11e7e6eec0d1c7112fc44d56 +srcfiles size=12 + RELOC/source/latex/papercdcase/papercdcase.dtx + RELOC/source/latex/papercdcase/papercdcase.ins +runfiles size=6 + RELOC/tex/latex/papercdcase/papercdcase.sty +catalogue-ctan /macros/latex/contrib/papercdcase +catalogue-license lppl +catalogue-topics covers + +name papermas +category Package +revision 23667 +shortdesc Compute the mass of a printed version of a document +relocated 1 +longdesc The package computes the number of sheets of paper used by, and +longdesc hence the mass of a document. This is useful (for example) when +longdesc calculating postal charges. +containersize 3648 +containerchecksum b5ef2975638a8eb48e7aa9fee72024eaf5695ee3133a35a4326461de03e04b750ac90e0874de232176435e0855807aaa074e6555f3368fee55fcaf61e6abb552 +doccontainersize 409740 +doccontainerchecksum 2d0a43fd05efe6c96a7852f35c560b77b9461e005432f972a9896184831fb81f72946956f3aefd115ca0f5fbbf684ab615d50a7ab98a5e09a190b72a08e56793 +docfiles size=108 + RELOC/doc/latex/papermas/README details="Readme" + RELOC/doc/latex/papermas/papermas-example.pdf details="Package examples" + RELOC/doc/latex/papermas/papermas-example.tex + RELOC/doc/latex/papermas/papermas.pdf details="Package documentation" +srccontainersize 14044 +srccontainerchecksum 2db3f6acb382f73ac6d220a4ec378026673ab16d54cb02a93926d30eeb8d5377d5329869cdfb3563915bb93253d64a3741a3498e197958e93929e8651f33cb02 +srcfiles size=15 + RELOC/source/latex/papermas/papermas.drv + RELOC/source/latex/papermas/papermas.dtx + RELOC/source/latex/papermas/papermas.ins +runfiles size=3 + RELOC/tex/latex/papermas/papermas.sty +catalogue-ctan /macros/latex/contrib/papermas +catalogue-license lppl1.3 +catalogue-topics calculation +catalogue-version 1.0h + +name papertex +category Package +revision 19230 +shortdesc Class for newspapers, etc +relocated 1 +longdesc This class allows LaTeX users to create a paperTeX newspaper. +longdesc The final document has a front page and as many inner pages as +longdesc desired. News items appear one after another and the user can +longdesc choose the number of columns, style and so on. The class allows +longdesc users to create newsletters too. +containersize 5644 +containerchecksum 489718b18bff9055917d9aa1329c34218282c2dec743c4a136625b6c39dc5102bc85d7da6dfb5e2b6a0f4bfe5a8fe27341ba9c7cd205cb8435ed3bc81a7a5c1c +doccontainersize 437088 +doccontainerchecksum aa36046e89f7e4486020a62dc8cb10f0a680247a3148149831153400a4ee935d3120525de3fbf29eac5c6cd58b655c1a2dcc2c4a8baf7d849a40f842d3b895fa +docfiles size=144 + RELOC/doc/latex/papertex/CHANGES + RELOC/doc/latex/papertex/README details="Readme" + RELOC/doc/latex/papertex/example/example.pdf details="Example newspaper page" + RELOC/doc/latex/papertex/example/example.tex + RELOC/doc/latex/papertex/example/img/ireland.jpg + RELOC/doc/latex/papertex/example/img/weather/clouds.jpg + RELOC/doc/latex/papertex/example/img/weather/rain.jpg + RELOC/doc/latex/papertex/example/img/weather/sun.jpg + RELOC/doc/latex/papertex/papertex.pdf details="Package documentation" +srccontainersize 14804 +srccontainerchecksum 9afa6d8e8d23108266bae48e78caedc5bb20c06eb15e3de8969a2e8bfaea880901a184fa8f2409e6d7ec0a4341105151049e1763fa4f4cdce8150e6bb3a52174 +srcfiles size=16 + RELOC/source/latex/papertex/papertex.dtx + RELOC/source/latex/papertex/papertex.ins +runfiles size=6 + RELOC/tex/latex/papertex/papertex.cls +catalogue-ctan /macros/latex/contrib/papertex +catalogue-license lppl +catalogue-topics magazine +catalogue-version 1.2b + +name paracol +category Package +revision 49560 +shortdesc Multiple columns with texts "in parallel" +relocated 1 +longdesc The package provides yet another multi-column typesetting +longdesc mechanism by which you produce multi-column (e.g., bilingual) +longdesc document switching and sychronizing each corresponding part in +longdesc "parallel". +containersize 18856 +containerchecksum ff7f60734dcf6d1db89a0b80747b31eb95bb28ac90ea5d83546feb08389fe890c6e3b4c44995b115d3e9d446823e81e27bf08337ae2d236a5a89c2c79258f741 +doccontainersize 2088752 +doccontainerchecksum a5711614d817193cf34cce405fc57f00dc17f3757b8c945dd174ba03453943c22e9c66b19a0f83444abd61f486e5df10246556e59d281f10f95452ad1931fb49 +docfiles size=544 + RELOC/doc/latex/paracol/README details="Readme" + RELOC/doc/latex/paracol/paracol-man.pdf details="Package documentation" + RELOC/doc/latex/paracol/paracol-man.tex + RELOC/doc/latex/paracol/paracol.pdf +srccontainersize 211364 +srccontainerchecksum cfa0bb83368dc27a7d71fb5e8772aa1c0ab69f597b2b00630fa1a95cf448684e6b59d46bd6dbe011953c51c0195b5cd0981a2df8d7d5fb951aecdee0a9ed0576 +srcfiles size=267 + RELOC/source/latex/paracol/bgpaint.dtx + RELOC/source/latex/paracol/impl.dtx + RELOC/source/latex/paracol/man.dtx + RELOC/source/latex/paracol/paracol.dtx + RELOC/source/latex/paracol/paracol.ins + RELOC/source/latex/paracol/ppts.dtx + RELOC/source/latex/paracol/probs.dtx + RELOC/source/latex/paracol/pwfnote.dtx + RELOC/source/latex/paracol/ref.dtx +runfiles size=26 + RELOC/tex/latex/paracol/paracol.sty +catalogue-also parallel parcolumns +catalogue-ctan /macros/latex/contrib/paracol +catalogue-license lppl +catalogue-topics parallel linguistic +catalogue-version 1.35 + +name parades +category Package +revision 40042 +shortdesc Tabulators and space between paragraphs in galley approach +relocated 1 +longdesc The LaTeX package paravesp controls the spaces above and below +longdesc paragraphs. The python script parades.py generates paragraph +longdesc styles with support of space above, space below and tabulators. +longdesc The system imposes the galley approach on the document. +containersize 1044 +containerchecksum 6eda005756083b1ca0c1ee09efe44830874d8090c25aaddb8d6631284a057130d2f03ca7f88b460fbeb7bea90ad31da8242028a70b07f6a66bfb978cd7390e26 +doccontainersize 213564 +doccontainerchecksum eca6b66f0bb424730177498fd6310718a78ffdd031961f8de877bd6f9d027430143c19310b158abf26f92b4280016cdac696f423b493aa49d60b06cefc546688 +docfiles size=67 + RELOC/doc/latex/parades/README details="Readme" + RELOC/doc/latex/parades/example/README.example + RELOC/doc/latex/parades/example/SConstruct + RELOC/doc/latex/parades/example/paras.py + RELOC/doc/latex/parades/example/paras.sty + RELOC/doc/latex/parades/example/udhr.pdf + RELOC/doc/latex/parades/example/udhr.tex + RELOC/doc/latex/parades/example/udhr.xsl + RELOC/doc/latex/parades/example/udhr_eng.xml + RELOC/doc/latex/parades/parades.pdf details="Package documentation" + RELOC/doc/latex/parades/parades.py +runfiles size=1 + RELOC/tex/latex/parades/paravesp.sty +catalogue-ctan /macros/latex/contrib/parades +catalogue-license lppl1.3 +catalogue-topics parshape + +name paralist +category Package +revision 43021 +shortdesc Enumerate and itemize within paragraphs +relocated 1 +longdesc Provides enumerate and itemize environments that can be used +longdesc within paragraphs to format the items either as running text or +longdesc as separate paragraphs with a preceding number or symbol. Also +longdesc provides compacted versions of enumerate and itemize. +containersize 3724 +containerchecksum e05bbd65ae7146515dd5dcc6ad7e40fc8437fae29ee26861aa9c2b4b6da0015fc00974f0a2328a72e6487660794a822bb64b35ea3282eac980c3e7fd23f4b899 +doccontainersize 209088 +doccontainerchecksum 5f103c629d1c0bb94aaf6c86f7baefe3e99a854e764306cd21e256011ae5ed95601416e33677f73f6471bf4ce2a375b6dc98b8aaf35b8dab1c41ca91b7ec3ec5 +docfiles size=55 + RELOC/doc/latex/paralist/README details="Readme" + RELOC/doc/latex/paralist/paralist.pdf details="Package documentation" +srccontainersize 14836 +srccontainerchecksum 1cb11b8e7792df9be259e1a5ef3b2efdc85b5454265deb66e2a527c4696d7e9297e2022d5191b1d666996f1be1f638517ce4441d0bb696f6b33ae490f4138e78 +srcfiles size=17 + RELOC/source/latex/paralist/paralist.drv + RELOC/source/latex/paralist/paralist.dtx + RELOC/source/latex/paralist/paralist.ins +runfiles size=4 + RELOC/tex/latex/paralist/paralist.sty +catalogue-also shortlst multenum +catalogue-ctan /macros/latex/contrib/paralist +catalogue-license lppl +catalogue-topics list list-bull list-enum +catalogue-version 2.7 + +name parallel +category Package +revision 15878 +shortdesc Typeset parallel texts +relocated 1 +longdesc Provides a parallel environment which allows two potentially +longdesc different texts to be typeset in two columns, while maintaining +longdesc alignment. The two columns may be on the same page, or on +longdesc facing pages. This arrangement of text is commonly used when +longdesc typesetting translations, but it can have value when comparing +longdesc any two texts. +containersize 3744 +containerchecksum 975bb869ea0df9236f0e86cbfe880e9bd59ab2d6aeb98f0a399f5bfc7e4367b3f14eb64e707e4e7ba8bd3e0ee641765b9ddfd79ee1abac61f96414f215fa5cbf +doccontainersize 117072 +doccontainerchecksum ab4c283176cf1fd3d524151cc647c1da360a1772e57b282a91007edb1269d6bade379775d0efe6731fee18b3f3bc02292057d67795475a291a4dadc748d5b185 +docfiles size=38 + RELOC/doc/latex/parallel/example1.tex + RELOC/doc/latex/parallel/example2.tex + RELOC/doc/latex/parallel/parallel.pdf details="Package documentation" + RELOC/doc/latex/parallel/readme +srccontainersize 11060 +srccontainerchecksum 6dde2ae1a2ee65decf5c1ba547d2683948d58a7955b75e5a3bd74d0b6705e7c6a75f2fe4dbed01562211b670d455a0360d0fff3ac0f24e3e77b4bb01a65577b5 +srcfiles size=12 + RELOC/source/latex/parallel/parallel.drv + RELOC/source/latex/parallel/parallel.dtx + RELOC/source/latex/parallel/parallel.ins +runfiles size=4 + RELOC/tex/latex/parallel/parallel.sty +catalogue-also parcolumns paracol +catalogue-ctan /macros/latex/contrib/parallel +catalogue-license lppl +catalogue-topics parallel + +name paratype +category Package +revision 32859 +shortdesc LaTeX support for free fonts by ParaType +relocated 1 +longdesc The package offers LaTeX support for the fonts PT Sans, PT +longdesc Serif and PT Mono developed by ParaType for the project "Public +longdesc Types of Russian Federation", and released under an open user +longdesc license. The fonts themselves are provided in both the TrueType +longdesc and Type 1 formats, both created by ParaType). The fonts +longdesc provide encodings OT1, T1, IL2, TS1, T2* and X2. The package +longdesc provides a convenient replacement of the two packages ptsans +longdesc and ptserif. +execute addMap paratype-type1.map +containersize 4164732 +containerchecksum f7c3089b516e40d9d5534a1d25ba104623f37c3d2b77b6545b07034114644025873c0317f4a0bd5b54c6471853f5e4c7847176b42a6bdae29a6efea555fd7ae7 +doccontainersize 906420 +doccontainerchecksum 5d11fcd66eb57909bdc56416f53c060cd248731cea02bbeee232d10cbcd2e10753a66ad7347212337b6b110e94a82970f98b1486ce21a6ce61fffa50135a6b6f +docfiles size=289 + RELOC/doc/fonts/paratype/CHANGELOG + RELOC/doc/fonts/paratype/OT_TT_Install_E.txt + RELOC/doc/fonts/paratype/OT_TT_Install_R.txt + RELOC/doc/fonts/paratype/PT_Free_Font_License_eng_1.3.txt + RELOC/doc/fonts/paratype/PT_Free_Font_License_rus_1.3.txt + RELOC/doc/fonts/paratype/README details="Readme" + RELOC/doc/fonts/paratype/manifest.txt + RELOC/doc/fonts/paratype/paratype-sample.pdf details="Font samples" + RELOC/doc/fonts/paratype/paratype-sample.tex + RELOC/doc/fonts/paratype/paratype.pdf details="Package documentation" + RELOC/doc/fonts/paratype/paratype.tex +runfiles size=5365 + RELOC/fonts/afm/paratype/ptmono/PTM55F.afm + RELOC/fonts/afm/paratype/ptmono/PTM55F.inf + RELOC/fonts/afm/paratype/ptmono/PTM75F.afm + RELOC/fonts/afm/paratype/ptmono/PTM75F.inf + RELOC/fonts/afm/paratype/ptsans/PTC55F.afm + RELOC/fonts/afm/paratype/ptsans/PTC55F.inf + RELOC/fonts/afm/paratype/ptsans/PTC75F.afm + RELOC/fonts/afm/paratype/ptsans/PTC75F.inf + RELOC/fonts/afm/paratype/ptsans/PTN57F.afm + RELOC/fonts/afm/paratype/ptsans/PTN57F.inf + RELOC/fonts/afm/paratype/ptsans/PTN77F.afm + RELOC/fonts/afm/paratype/ptsans/PTN77F.inf + RELOC/fonts/afm/paratype/ptsans/PTS55F.afm + RELOC/fonts/afm/paratype/ptsans/PTS55F.inf + RELOC/fonts/afm/paratype/ptsans/PTS56F.afm + RELOC/fonts/afm/paratype/ptsans/PTS56F.inf + RELOC/fonts/afm/paratype/ptsans/PTS75F.afm + RELOC/fonts/afm/paratype/ptsans/PTS75F.inf + RELOC/fonts/afm/paratype/ptsans/PTS76F.afm + RELOC/fonts/afm/paratype/ptsans/PTS76F.inf + RELOC/fonts/afm/paratype/ptserif/PTF55F.afm + RELOC/fonts/afm/paratype/ptserif/PTF55F.inf + RELOC/fonts/afm/paratype/ptserif/PTF56F.afm + RELOC/fonts/afm/paratype/ptserif/PTF56F.inf + RELOC/fonts/afm/paratype/ptserif/PTF75F.afm + RELOC/fonts/afm/paratype/ptserif/PTF75F.inf + RELOC/fonts/afm/paratype/ptserif/PTF76F.afm + RELOC/fonts/afm/paratype/ptserif/PTF76F.inf + RELOC/fonts/afm/paratype/ptserif/PTZ55F.afm + RELOC/fonts/afm/paratype/ptserif/PTZ55F.inf + RELOC/fonts/afm/paratype/ptserif/PTZ56F.afm + RELOC/fonts/afm/paratype/ptserif/PTZ56F.inf + RELOC/fonts/enc/dvips/paratype/ptmono_il2.enc + RELOC/fonts/enc/dvips/paratype/ptmono_ot1.enc + RELOC/fonts/enc/dvips/paratype/ptmono_ot2.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t1.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t2a.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t2b.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t2c.enc + RELOC/fonts/enc/dvips/paratype/ptmono_ts1.enc + RELOC/fonts/enc/dvips/paratype/ptmono_x2.enc + RELOC/fonts/enc/dvips/paratype/ptsans_il2.enc + RELOC/fonts/enc/dvips/paratype/ptsans_ot1.enc + RELOC/fonts/enc/dvips/paratype/ptsans_ot2.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t1.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t2a.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t2b.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t2c.enc + RELOC/fonts/enc/dvips/paratype/ptsans_ts1.enc + RELOC/fonts/enc/dvips/paratype/ptsans_x2.enc + RELOC/fonts/enc/dvips/paratype/ptserif_il2.enc + RELOC/fonts/enc/dvips/paratype/ptserif_ot1.enc + RELOC/fonts/enc/dvips/paratype/ptserif_ot2.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t1.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t2a.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t2b.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t2c.enc + RELOC/fonts/enc/dvips/paratype/ptserif_ts1.enc + RELOC/fonts/enc/dvips/paratype/ptserif_x2.enc + RELOC/fonts/map/dvips/paratype/paratype-truetype.map + RELOC/fonts/map/dvips/paratype/paratype-type1.map + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-il2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-il2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-x2.tfm + RELOC/fonts/truetype/paratype/ptmono/PTM55F.ttf + RELOC/fonts/truetype/paratype/ptmono/PTM75F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTC55F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTC75F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTN57F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTN77F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS55F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS56F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS75F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS76F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF55F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF56F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF75F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF76F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTZ55F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTZ56F.ttf + RELOC/fonts/type1/paratype/ptmono/PTM55F.pfb + RELOC/fonts/type1/paratype/ptmono/PTM55F.pfm + RELOC/fonts/type1/paratype/ptmono/PTM75F.pfb + RELOC/fonts/type1/paratype/ptmono/PTM75F.pfm + RELOC/fonts/type1/paratype/ptsans/PTC55F.pfb + RELOC/fonts/type1/paratype/ptsans/PTC55F.pfm + RELOC/fonts/type1/paratype/ptsans/PTC75F.pfb + RELOC/fonts/type1/paratype/ptsans/PTC75F.pfm + RELOC/fonts/type1/paratype/ptsans/PTN57F.pfb + RELOC/fonts/type1/paratype/ptsans/PTN57F.pfm + RELOC/fonts/type1/paratype/ptsans/PTN77F.pfb + RELOC/fonts/type1/paratype/ptsans/PTN77F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS55F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS55F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS56F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS56F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS75F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS75F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS76F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS76F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF55F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF55F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF56F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF56F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF75F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF75F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF76F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF76F.pfm + RELOC/fonts/type1/paratype/ptserif/PTZ55F.pfb + RELOC/fonts/type1/paratype/ptserif/PTZ55F.pfm + RELOC/fonts/type1/paratype/ptserif/PTZ56F.pfb + RELOC/fonts/type1/paratype/ptserif/PTZ56F.pfm + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-il2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-ot1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-il2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-ot1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-x2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-x2.vf + RELOC/tex/latex/paratype/IL2PTMono-TLF.fd + RELOC/tex/latex/paratype/IL2PTSans-TLF.fd + RELOC/tex/latex/paratype/IL2PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/IL2PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/IL2PTSerif-TLF.fd + RELOC/tex/latex/paratype/IL2PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/OT1PTMono-TLF.fd + RELOC/tex/latex/paratype/OT1PTSans-TLF.fd + RELOC/tex/latex/paratype/OT1PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/OT1PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/OT1PTSerif-TLF.fd + RELOC/tex/latex/paratype/OT1PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/OT2PTMono-TLF.fd + RELOC/tex/latex/paratype/OT2PTSans-TLF.fd + RELOC/tex/latex/paratype/OT2PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/OT2PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/OT2PTSerif-TLF.fd + RELOC/tex/latex/paratype/OT2PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/PTMono.sty + RELOC/tex/latex/paratype/PTSans.sty + RELOC/tex/latex/paratype/PTSansCaption.sty + RELOC/tex/latex/paratype/PTSansNarrow.sty + RELOC/tex/latex/paratype/PTSerif.sty + RELOC/tex/latex/paratype/PTSerifCaption.sty + RELOC/tex/latex/paratype/T1PTMono-TLF.fd + RELOC/tex/latex/paratype/T1PTSans-TLF.fd + RELOC/tex/latex/paratype/T1PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T1PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T1PTSerif-TLF.fd + RELOC/tex/latex/paratype/T1PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/T2APTMono-TLF.fd + RELOC/tex/latex/paratype/T2APTSans-TLF.fd + RELOC/tex/latex/paratype/T2APTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T2APTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T2APTSerif-TLF.fd + RELOC/tex/latex/paratype/T2APTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/T2BPTMono-TLF.fd + RELOC/tex/latex/paratype/T2BPTSans-TLF.fd + RELOC/tex/latex/paratype/T2BPTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T2BPTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T2BPTSerif-TLF.fd + RELOC/tex/latex/paratype/T2BPTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/T2CPTMono-TLF.fd + RELOC/tex/latex/paratype/T2CPTSans-TLF.fd + RELOC/tex/latex/paratype/T2CPTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T2CPTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T2CPTSerif-TLF.fd + RELOC/tex/latex/paratype/T2CPTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/TS1PTMono-TLF.fd + RELOC/tex/latex/paratype/TS1PTSans-TLF.fd + RELOC/tex/latex/paratype/TS1PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/TS1PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/TS1PTSerif-TLF.fd + RELOC/tex/latex/paratype/TS1PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/X2PTMono-TLF.fd + RELOC/tex/latex/paratype/X2PTSans-TLF.fd + RELOC/tex/latex/paratype/X2PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/X2PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/X2PTSerif-TLF.fd + RELOC/tex/latex/paratype/X2PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/paratype.sty +catalogue-ctan /fonts/paratype +catalogue-license lppl +catalogue-topics font font-sans font-mono font-type1 font-ttf + +name paresse +category Package +revision 56621 +shortdesc Define simple macros for greek letters +relocated 1 +longdesc The package defines macros using SS to type greek letters so +longdesc that the user may (for example) type SSa to get the effect of +longdesc $\alpha$. However, it takes care only of letters which have a +longdesc macro name like \alpha or \Omega. +containersize 3632 +containerchecksum 7be25fc749a18d1cabc6ee720cef15b89e323d4e07716b63aa49a5eb4c89208f730513491a7b6740069f0daec3015ada3d673aed6407b21a8a1ae1dd09f60d7b +doccontainersize 1333888 +doccontainerchecksum cb01df5ac56c7cbeab0cbfdb99950ddbe58cb432885702b2212c89c654cb2a88536be20a4abfdda5321f2cb36e8528fdbe2b96a129eb8afa2c1e969c0f22398f +docfiles size=411 + RELOC/doc/latex/paresse/LISEZMOI.md details="Lisezmoi (French)" language="fr" + RELOC/doc/latex/paresse/MANIFEST.md + RELOC/doc/latex/paresse/README.md details="Readme" + RELOC/doc/latex/paresse/paresse-eng.pdf details="User guide (English)" + RELOC/doc/latex/paresse/paresse-eng.tex + RELOC/doc/latex/paresse/paresse-fra.pdf details="Guide de l'utilisateur (French)" language="fr" + RELOC/doc/latex/paresse/paresse-fra.tex + RELOC/doc/latex/paresse/paresse.pdf details="Code documentation" +srccontainersize 14036 +srccontainerchecksum 50f683ae5a7d46faa5740766e01a7637e9e1f149b6763e48ed0029814add723b551d76fae9baabf562b1bc5268ed015b7619fced2492478b2be2ec4c4f63f57f +srcfiles size=13 + RELOC/source/latex/paresse/paresse.dtx + RELOC/source/latex/paresse/paresse.ins +runfiles size=7 + RELOC/tex/latex/paresse/paresse-old.sty + RELOC/tex/latex/paresse/paresse-utf8.sty + RELOC/tex/latex/paresse/paresse.sty +catalogue-ctan /macros/latex/contrib/paresse +catalogue-license lppl1.3c +catalogue-topics shortcut expl3 +catalogue-version 5.0.1 + +name parnotes +category Package +revision 51720 +shortdesc Notes after every paragraph (or elsewhere) +relocated 1 +longdesc The package provides the \parnote command. The notes are set as +longdesc (normal) running paragraphs; placement is at the end of each +longdesc paragraph, or manually, using the \parnotes command. +containersize 3784 +containerchecksum 798ac362fa4b67dacfe9b744163555d3c25c9e4487c5d2e2fa47be12d8d4b41bf89cb24a04f6434c804e9ca1f45e6d1f22ec234ac04596d5e1905589cf1eb558 +doccontainersize 62388 +doccontainerchecksum e9728eb1025e80f41ca07632cc2625ee670a61ebe06d003585645e6aed183087df460a1dea4f3a8b17013af6fb3e974a95b33d848d2502435a37b1aa881ce833 +docfiles size=20 + RELOC/doc/latex/parnotes/README.md details="Readme" + RELOC/doc/latex/parnotes/parnotes.pdf details="Package documentation" + RELOC/doc/latex/parnotes/parnotes.tex +runfiles size=3 + RELOC/tex/latex/parnotes/parnotes.sty +catalogue-ctan /macros/latex/contrib/parnotes +catalogue-license lppl1.3 +catalogue-topics notes +catalogue-version 3b + +name parrun +category Package +revision 15878 +shortdesc Typesets (two) streams of text running parallel +relocated 1 +longdesc For typesetting translated text and the original source, +longdesc parallel on the same page, one above the other. +containersize 2856 +containerchecksum 1a09e6dbde9c24d88e21fffe24ead7ee7567a2c7bccd2ef33e49eb1bc8eff2befb3828a87616872f63d1d8eeba21814cefc8bbe756b17f887558449aaccb1668 +doccontainersize 105064 +doccontainerchecksum cf284387780c9b2f4a79ebdd781388525aeb2a03ad9d85048061a6c43728bb6f2f4fc840ebb499a44a3fdf612ff4a20f36c17a377f959be813b4ee4d12288fb7 +docfiles size=39 + RELOC/doc/latex/parrun/parrun.pdf details="Package documentation" + RELOC/doc/latex/parrun/readme details="Readme" +srccontainersize 6912 +srccontainerchecksum 9a4fb32c53f5bd2f6f79992b4ce076ab211c24e2c0f4ca2665c903b2e3d5268b5615bb5e9c8107d1d44df6a9e50a9f942f61cbb1fd05a388738449e4b312f306 +srcfiles size=6 + RELOC/source/latex/parrun/parrun.dtx + RELOC/source/latex/parrun/parrun.ins +runfiles size=3 + RELOC/tex/latex/parrun/parrun.sty +catalogue-also parallel +catalogue-ctan /macros/latex/contrib/parrun +catalogue-license lppl +catalogue-topics parallel + +name parsa +category Package +revision 54840 +shortdesc A XeLaTeX package for theses and dissertations at Iranian Universities +relocated 1 +longdesc A package for preparing dissertations and theses for Iranian +longdesc universities as fast and as efficiently as possible. The +longdesc package depends on xparse, fancyhdr, graphicx, multirow, float, +longdesc and adjustbox. +containersize 6264 +containerchecksum 76edfb996d6354536b009066d4916b5864b0be1a55954a627380d4927eb05bb888d80c0259d52d367a8be58f5b20309cf65cbec0e8d4ebc6bef2b3840bf4d207 +doccontainersize 129988 +doccontainerchecksum 9cf2df697f90c46bc119f4df1816a734344066fefc54acb37a6fd2c127401a4f8ba12dafe0350d7bde90212924e40f08a500fddceaed44d735bcaf0ae9e48cb7 +docfiles size=39 + RELOC/doc/xelatex/parsa/README.md details="Readme" + RELOC/doc/xelatex/parsa/parsa-doc.pdf details="Package documentation" language="fa" + RELOC/doc/xelatex/parsa/parsa-doc.tex +runfiles size=9 + RELOC/tex/xelatex/parsa/parsa.sty +catalogue-contact-bugs https://github.com/farshadrasuli/parsa/issues +catalogue-contact-home https://github.com/farshadrasuli/parsa +catalogue-ctan /macros/xetex/latex/parsa +catalogue-license lppl1.3c +catalogue-topics dissertation persian xetex +catalogue-version 1.3 + +name parselines +category Package +revision 21475 +shortdesc Apply a macro to each line of an environment +relocated 1 +longdesc The package defines an environment "parse lines" which +longdesc processes each line of an environment with a macro. An example +longdesc of shading the lines of an environment is given. +containersize 1872 +containerchecksum 81d18bfa1f70157ca04383a2f6e4cf228f23d878a9e157e79ea0bbbb743090046f5058ff0731ac42f881f5cef13063fa0ff2fa9b80992b334e02dd7f2a1a33d2 +doccontainersize 134028 +doccontainerchecksum b6dfad3ceac162f9c122c2b18fa168469cb6c4befce1c4b2c8f003507ff4b2aed30e6728bf29f04545a080efada1fd98a9c8c064f4ac1eea521fb486624e60b2 +docfiles size=46 + RELOC/doc/latex/parselines/README details="Readme" + RELOC/doc/latex/parselines/parselines.pdf details="Package documentation" +srccontainersize 9128 +srccontainerchecksum 454fd4c9032ff1075237294f346d55fdd0926c316813c3eaa487e1649db569455f89a364b9688d024567a15edfd16c397bb1ab76652b46112791874bae5db36f +srcfiles size=9 + RELOC/source/latex/parselines/parselines.drv + RELOC/source/latex/parselines/parselines.dtx + RELOC/source/latex/parselines/parselines.ins +runfiles size=1 + RELOC/tex/latex/parselines/parselines.sty +catalogue-ctan /macros/latex/contrib/parselines +catalogue-license lppl1.3 +catalogue-topics decoration macro-supp +catalogue-version 1.4 + +name parskip +category Package +revision 58358 +shortdesc Layout with zero \parindent, non-zero \parskip +relocated 1 +longdesc Simply changing \parskip and \parindent leaves a layout that is +longdesc untidy; this package (though it is no substitute for a +longdesc properly-designed class) helps alleviate this untidiness. +containersize 2852 +containerchecksum 2d64232f41b2607712bc67ce77ebc987502924ebaad4f799b6ae2163862a8b833a9c1a7c8871a33b4ed9fdeb74c8368897e1b831c485ab82e084fe3ff0552af3 +doccontainersize 312668 +doccontainerchecksum 759e9e8d698f8ad77ce388ec127f158a7280586338c6e56e1f9188a9a2e8106cb482f8ebc4e252749331e65ac2a771884124b16e3ea5e9ac76005439ca85876b +docfiles size=104 + RELOC/doc/latex/parskip/MANIFEST.md + RELOC/doc/latex/parskip/README.md details="Readme" + RELOC/doc/latex/parskip/changes.txt + RELOC/doc/latex/parskip/parskip-code.pdf + RELOC/doc/latex/parskip/parskip-code.tex + RELOC/doc/latex/parskip/parskip.pdf details="Package documentation" + RELOC/doc/latex/parskip/parskip.tex +srccontainersize 6176 +srccontainerchecksum 4783fdc97f269963e4d5998b2d8066a676f371f5034bf5204bc9e5935928f153dc0a4aaaeb11a403baa0631d545a18a1cc19dec4ee42314e1f33b239a9cbeeaf +srcfiles size=5 + RELOC/source/latex/parskip/parskip.dtx + RELOC/source/latex/parskip/parskip.ins +runfiles size=3 + RELOC/tex/latex/parskip/parskip-2001-04-09.sty + RELOC/tex/latex/parskip/parskip.sty +catalogue-contact-repository https://github.com/FrankMittelbach/fmitex-parskip +catalogue-ctan /macros/latex/contrib/parskip +catalogue-license lppl1.3c +catalogue-topics layout parshape +catalogue-version 2.0h + +name pas-cours +category Package +revision 55859 +shortdesc Macros useful in preparing teaching material +relocated 1 +longdesc Several groups of macros cover different branches of +longdesc mathematics. +containersize 2176 +containerchecksum a2a96c526de2581461941553b0c47bb4b08b3a9df03ffd121d14f3ea6e8bd62227f12acb4853f04240608a805189f4d90459324801ee25def1b44c48ebc83bb1 +doccontainersize 198984 +doccontainerchecksum 7bbfff0a879ba2287e528a63815b005a2159800656078db2ea2c0460887dd15772e04b1eb8953446c86281037180d82d84172370e015d2c66dcbf23651c6a182 +docfiles size=86 + RELOC/doc/latex/pas-cours/MiKTeX-screenshot01.png + RELOC/doc/latex/pas-cours/MiKTeX-screenshot02.png + RELOC/doc/latex/pas-cours/MiKTeX-screenshot03.png + RELOC/doc/latex/pas-cours/README.TEXLIVE + RELOC/doc/latex/pas-cours/README.txt details="Readme" + RELOC/doc/latex/pas-cours/attention.png + RELOC/doc/latex/pas-cours/coeur.png + RELOC/doc/latex/pas-cours/macro-calculs.tex + RELOC/doc/latex/pas-cours/macro-patrons.tex + RELOC/doc/latex/pas-cours/macro-solides.tex + RELOC/doc/latex/pas-cours/macro-styles.tex + RELOC/doc/latex/pas-cours/pas-cours.tex + RELOC/doc/latex/pas-cours/prerequis.png + RELOC/doc/latex/pas-cours/warning-perso.png +runfiles size=2 + RELOC/tex/latex/pas-cours/pas-cours.sty +catalogue-ctan /macros/latex/contrib/pas-cours +catalogue-license lppl +catalogue-topics teaching +catalogue-version 1.9 + +name pas-crosswords +category Package +revision 32313 +shortdesc Creating crossword grids, using TikZ +relocated 1 +longdesc The package produces crossword grids, using a wide variety of +longdesc colours and decorations of the grids and the text in them. The +longdesc package uses TikZ for its graphical output. +containersize 2096 +containerchecksum cc93ed7340380b2072ac7df4c0d343e43e1a3ae4252c42d9914edcb33232597a5c86d22cce3dc02218e6e725191f056ef9fb342e88d1a60dcadd8d011723b649 +doccontainersize 169180 +doccontainerchecksum 65baac7fa63a01c70293baa26d99d21dc999f959074a3d2668cf6661d3db059b47d2f577f8c9f5d7ac6014e601f50e547283c55541c492b3c2df4e5f01b65be5 +docfiles size=45 + RELOC/doc/latex/pas-crosswords/README details="Readme" + RELOC/doc/latex/pas-crosswords/pas-crosswords.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/pas-crosswords/pas-crosswords.tex +runfiles size=2 + RELOC/tex/latex/pas-crosswords/pas-crosswords.sty +catalogue-also crosswrd crossword +catalogue-ctan /macros/latex/contrib/pas-crosswords +catalogue-license lppl +catalogue-topics games pgf-tikz +catalogue-version 1.03 + +name pas-cv +category Package +revision 32263 +shortdesc Flexible typesetting of Curricula Vitae +relocated 1 +longdesc The package provides the framework for typesetting a Curriculum +longdesc Vitae (composed in French), together with a number of "themes" +longdesc that may be used with the package. (The use of the themes may +longdesc be seen in the package's examples/ collection.) The author +longdesc hints that conversion for use with other languages (than +longdesc French) should be possible. +containersize 8900 +containerchecksum 4dc3203c5888aeb3c613ddc16446d7ced1dbb8ee1c0f0d983fa010eaf81d5a0a7a9364381be04e10bb15a9f258d4ae086fdbc650ab8ca627b07cc286be1ce1ec +doccontainersize 325552 +doccontainerchecksum 93460e4435546cdb2df20e4e1fd555a726e909e411d42068b6f16f8bce2fa90144e1db95cad4cb94430f65b9614d766be00fa8c3e781a1de733b189a0b4585e3 +docfiles size=390 + RELOC/doc/latex/pas-cv/examples/cv-andromede.pdf + RELOC/doc/latex/pas-cv/examples/cv-andromede.tex + RELOC/doc/latex/pas-cv/examples/cv-architecte.pdf + RELOC/doc/latex/pas-cv/examples/cv-architecte.tex + RELOC/doc/latex/pas-cv/examples/cv-centaure.pdf + RELOC/doc/latex/pas-cv/examples/cv-centaure.tex + RELOC/doc/latex/pas-cv/examples/cv-dynamique.pdf + RELOC/doc/latex/pas-cv/examples/cv-dynamique.tex + RELOC/doc/latex/pas-cv/examples/cv-gaia.pdf + RELOC/doc/latex/pas-cv/examples/cv-gaia.tex + RELOC/doc/latex/pas-cv/examples/cv-jupiter.pdf + RELOC/doc/latex/pas-cv/examples/cv-jupiter.tex + RELOC/doc/latex/pas-cv/examples/cv-mars.pdf + RELOC/doc/latex/pas-cv/examples/cv-mars.tex + RELOC/doc/latex/pas-cv/examples/cv-neptune.pdf + RELOC/doc/latex/pas-cv/examples/cv-neptune.tex + RELOC/doc/latex/pas-cv/examples/cv-orion.pdf + RELOC/doc/latex/pas-cv/examples/cv-orion.tex + RELOC/doc/latex/pas-cv/examples/cv-pegase.pdf + RELOC/doc/latex/pas-cv/examples/cv-pegase.tex + RELOC/doc/latex/pas-cv/examples/cv-pluton.pdf + RELOC/doc/latex/pas-cv/examples/cv-pluton.tex + RELOC/doc/latex/pas-cv/examples/cv-saturne.pdf + RELOC/doc/latex/pas-cv/examples/cv-saturne.tex + RELOC/doc/latex/pas-cv/examples/cv-univers.pdf + RELOC/doc/latex/pas-cv/examples/cv-univers.tex + RELOC/doc/latex/pas-cv/examples/cv-uranus.pdf + RELOC/doc/latex/pas-cv/examples/cv-uranus.tex + RELOC/doc/latex/pas-cv/examples/cv-venus.pdf + RELOC/doc/latex/pas-cv/examples/cv-venus.tex + RELOC/doc/latex/pas-cv/pas-cv.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/pas-cv/pas-cv.tex + RELOC/doc/latex/pas-cv/photo.png +runfiles size=21 + RELOC/tex/latex/pas-cv/macro-andromede.tex + RELOC/tex/latex/pas-cv/macro-architecte.tex + RELOC/tex/latex/pas-cv/macro-centaure.tex + RELOC/tex/latex/pas-cv/macro-dynamique.tex + RELOC/tex/latex/pas-cv/macro-gaia.tex + RELOC/tex/latex/pas-cv/macro-jupiter.tex + RELOC/tex/latex/pas-cv/macro-mars.tex + RELOC/tex/latex/pas-cv/macro-neptune.tex + RELOC/tex/latex/pas-cv/macro-orion.tex + RELOC/tex/latex/pas-cv/macro-pegase.tex + RELOC/tex/latex/pas-cv/macro-pluton.tex + RELOC/tex/latex/pas-cv/macro-saturne.tex + RELOC/tex/latex/pas-cv/macro-univers.tex + RELOC/tex/latex/pas-cv/macro-uranus.tex + RELOC/tex/latex/pas-cv/macro-venus.tex + RELOC/tex/latex/pas-cv/pas-cv.sty +catalogue-ctan /macros/latex/contrib/pas-cv +catalogue-license lppl +catalogue-topics cv +catalogue-version 2.01 + +name pas-tableur +category Package +revision 39542 +shortdesc Create a spreadsheet layout +relocated 1 +longdesc The package provides commands for creating a grid of +longdesc rectangles, and commands for populating locations in the grid. +longdesc PGF/TikZ is used for placement and population of the cells. +containersize 3444 +containerchecksum 61fc474406d55ce0fa4b2edfb41f4ac9b2585e448c2b2b76452a29f2a03eec9ea1658cca2fec4fd0f1b8576919698a6d3ceeed650b773783af47685f33c969fa +doccontainersize 6556 +doccontainerchecksum a498726006eb5b3c7352a776c47e215fedfa7005d529fbdf071946ec736818e6836591670c7342e84d2886718d2faeb44824256f2aca744bf97d157e00f71174 +docfiles size=8 + RELOC/doc/latex/pas-tableur/README details="Readme" + RELOC/doc/latex/pas-tableur/README.TEXLIVE + RELOC/doc/latex/pas-tableur/doc.codes.tex + RELOC/doc/latex/pas-tableur/doc.styles.tex + RELOC/doc/latex/pas-tableur/pas-tableur.tex +runfiles size=3 + RELOC/tex/latex/pas-tableur/pas-tableur.sty +catalogue-ctan /macros/latex/contrib/pas-tableur +catalogue-license lppl +catalogue-topics alignment pgf-tikz +catalogue-version 2.01 + +name passivetex +category Package +revision 15878 +shortdesc Support package for XML/SGML typesetting +relocated 1 +longdesc Packages providing XML parsing, UTF-8 parsing, Unicode +longdesc entities, and common formatting object definitions for jadetex. +containersize 44652 +containerchecksum dec61bb52bc1bf8588474e6d8971ca16f691d13b9c1be1f131cf0a720a205df1a95830f2f172df2efc30799d4aff9af064f9d851d9c705235aaf96e4b50decdd +runfiles size=79 + RELOC/tex/xmltex/passivetex/dummyels.sty + RELOC/tex/xmltex/passivetex/fotex.sty + RELOC/tex/xmltex/passivetex/fotex.xmt + RELOC/tex/xmltex/passivetex/mlnames.sty + RELOC/tex/xmltex/passivetex/tei.xmt + RELOC/tex/xmltex/passivetex/teiprintslides.xmt + RELOC/tex/xmltex/passivetex/teislides.xmt + RELOC/tex/xmltex/passivetex/teixml.sty + RELOC/tex/xmltex/passivetex/teixmlslides.sty + RELOC/tex/xmltex/passivetex/ucharacters.sty + RELOC/tex/xmltex/passivetex/unicode.sty +catalogue-ctan /macros/xmltex/contrib/passivetex +catalogue-license other-free +catalogue-topics foreign-import + +name patch +category Package +revision 42428 +shortdesc Patch loaded packages, etc. +relocated 1 +longdesc The package defines macros that allow patching of existing +longdesc commands, specifying those parts of the existing macro to be +longdesc replaced, along with the replacements. Thus it provides more +longdesc sophisticated manipulation than a package like patchcmd, which +longdesc only permits modification by adding commands at the beginning +longdesc or end of an existing definition. The package is distributed in +longdesc a relative of LaTeX doc format: it will run unmodified, though +longdesc it benefits from docstrip treatment. +containersize 652 +containerchecksum 0ddcaa07696216f9fdea55471e1265fcaa71dd8ba2b8a50690dd519ad8b9442015502ec59b8f9f05c79f5031be3de2956cd71af58153dea8e1917f33c246fa63 +srccontainersize 8844 +srccontainerchecksum ada97aba615160b3c30c9cdccf3360f3692612bc702247ae3fa44f7821aefa2ee60c89ab79417b0ff658335768512a0d8d9b5b17df619c57d169f6487d39e5bf +srcfiles size=7 + RELOC/source/generic/patch/patch.doc +catalogue-also patchcmd etoolbox +catalogue-ctan /macros/generic/misc/patch.doc +catalogue-license lppl +catalogue-topics macro-supp + +name patchcmd +category Package +revision 41379 +shortdesc Change the definition of an existing command +relocated 1 +longdesc The package provides a command \patchcommand that can be used +longdesc to add material at the beginning and/or the end of the +longdesc replacement text of an existing macro. It works for macros with +longdesc any number of normal arguments, including those that were +longdesc defined with \DeclareRobustCommand. +containersize 1944 +containerchecksum a98085cb274c189644fa1307cf4ab5949a9eda76936fd6b74a7ba366b04d58b2a213c1a5ede53f644bdb76d44eeccd919176fb1934b8eda55489fee16f0c349b +doccontainersize 135956 +doccontainerchecksum 3c65e6b1fe2b25efb45853deb5b3111dbfa03de7c0b154fcd86719a81bbf725e1872a6e6b5a9955e63f410ff3c05bce5de336f4ab1e612ea0d82b8d44d5fe960 +docfiles size=35 + RELOC/doc/latex/patchcmd/README details="Readme" + RELOC/doc/latex/patchcmd/patchcmd.pdf details="Package documentation" +srccontainersize 3340 +srccontainerchecksum d3effea39c2dd33c9b40dd12304973d2d96457bea7b7f233f196c2ad0ca9819e57b38ab7b44e9532350b6c1cb519b184882ea924dc198dbaadf185ac177bea63 +srcfiles size=3 + RELOC/source/latex/patchcmd/patchcmd.dtx + RELOC/source/latex/patchcmd/patchcmd.ins +runfiles size=1 + RELOC/tex/latex/patchcmd/patchcmd.sty +catalogue-ctan /macros/latex/contrib/patchcmd +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.05 + +name patgen +category TLCore +revision 57972 +shortdesc Generate hyphenation patterns +longdesc Patgen takes a list of hyphenated words and generates a set of +longdesc patterns that can be used by the TeX 82 hyphenation algorithm. +longdesc Patgen was originally written by Frank M. Liang as part of his +longdesc Stanford Ph.D. work, and has always been distributed alongside +longdesc the other programs coming from the Stanford TeX project. It was +longdesc updated in 1991 by Peter Breitenlohner for the new 8-bit +longdesc features of TeX version 3. (These updates related to +longdesc input/output and programming overhead; the actual pattern +longdesc generation algorithms were not changed.) Patgen is currently +longdesc maintained as part of TeX Live. +depend kpathsea +depend patgen.ARCH +containersize 780 +containerchecksum 35e75b2c644238784e3e0fe51726a6675e5b56818f37d2d0b6393de14f03832bade756eac1f8ccadead1a287a442363eb1ba356b29dca1e7b3dae3ce276f2cb6 +doccontainersize 28684 +doccontainerchecksum a6523561f63e016bb352ec6afa33b5683c7f8ac76a5442cc8d329a1246b7f5b78dc62e9f7da2f33ee50b851d73abba35fb61fabbe05e6cbe21019a9fa5a1d898 +docfiles size=10 + texmf-dist/doc/man/man1/patgen.1 + texmf-dist/doc/man/man1/patgen.man1.pdf +catalogue-also patgen2-tutorial +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /systems/stanford/patgen +catalogue-license pd +catalogue-topics hyph-gen +catalogue-version 2.4 + +name patgen.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of patgen +containersize 19192 +containerchecksum 9db676b480f4322edcc52202f7352141e3d8ef02fdee2f83dbdf17ebd9c2d8764d659e131f95e24479aad2bcb852be26522ddde999cc4ee05d85b73e059c46c0 +binfiles arch=aarch64-linux size=13 + bin/aarch64-linux/patgen + +name patgen.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of patgen +containersize 23100 +containerchecksum c8087591db136292ba580b0a8bfb5584b1ab2d9d3e2bafb98339b88c07d24580700c22d8ca02738512bdae72b76f08747ab64b311bfc5ba1070099d48cdfd36c +binfiles arch=amd64-freebsd size=13 + bin/amd64-freebsd/patgen + +name patgen.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of patgen +containersize 18928 +containerchecksum d0a99b5c49bde8c7c40544188f962ee6f2e3860d5b54816a5c9f90a5016dafee0ed511475267f1fd48b8fb8236cb79ec92309760bb13fcad10d1f732c0db5071 +binfiles arch=amd64-netbsd size=13 + bin/amd64-netbsd/patgen + +name patgen.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of patgen +containersize 15668 +containerchecksum 4908acbb54ec80bacf37a4f8cf0b68c6fdf0636fe6030b1cfe2c265c662f7c6e1ad16e910a710ffe9a7feeee18fca105bb0c2f470a87d72d57f6eb1909b25dcf +binfiles arch=armhf-linux size=9 + bin/armhf-linux/patgen + +name patgen.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of patgen +containersize 12648 +containerchecksum b29d8630403764ed4a1522f0a0e64c9d0d47223e4e5ad2973f7eb6e157bb83564545333e0a46ef75db6ee8f758ee88f70d99c8cf37d45981dff25a77f68a76a5 +binfiles arch=i386-cygwin size=8 + bin/i386-cygwin/patgen.exe + +name patgen.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of patgen +containersize 18796 +containerchecksum 2c43a4b508d74b71684380ffd0da8a7da965dbe46f5b80075afbecb9c530ebd3baaec7020f5cb48fe535be54c9110f1361e98348a8daf49d0df6c3700a7552b9 +binfiles arch=i386-freebsd size=11 + bin/i386-freebsd/patgen + +name patgen.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of patgen +containersize 17428 +containerchecksum 1b11846aaaec99bfef5ca4f81d4320e7f79e932a4ba934325dc58dd003817b14e4e15879ab060aab8f1f63cb4a1e312fbae782e6944fe6bcba3f9ea3fe506f94 +binfiles arch=i386-linux size=10 + bin/i386-linux/patgen + +name patgen.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of patgen +containersize 16316 +containerchecksum 300b9aeb6baab6f2b41a021d1ff59f7272864ddfadc31bdc8e7e00d16eaddea12b0c0ca9b9ceddb50d09d1249b23e460708d5beaf825cf4f62a7946138bbca32 +binfiles arch=i386-netbsd size=12 + bin/i386-netbsd/patgen + +name patgen.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of patgen +containersize 20408 +containerchecksum a5cf557520774f31e537221b6d6cf5acb82e212db4c491f2da67f989e2284409f2e90896b413fa6d640beb1114c3375cf9751add3db2b91258dff145f338d61b +binfiles arch=i386-solaris size=12 + bin/i386-solaris/patgen + +name patgen.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of patgen +containersize 48464 +containerchecksum fd5a0143c499b46838eaa5c71a9c4e5a1c752f192122bb9050bb9f6d78f2440a0d6438c27b2aaa3469285ff89b629ca8a6a85e883117054cbf02171ceb91ce2e +binfiles arch=universal-darwin size=51 + bin/universal-darwin/patgen + +name patgen.win32 +category TLCore +revision 58783 +shortdesc win32 files of patgen +containersize 13120 +containerchecksum a2652552b2dd25b50c3474c0aec99f1100d821278ef2b60238ca0838429b73860862c758d9b3ba088df0023ba0750a8179271fc2077fa6aa7bb99b07223bf08b +binfiles arch=win32 size=10 + bin/win32/patgen.exe + +name patgen.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of patgen +containersize 15092 +containerchecksum 35ad7bb40f9fd8dbbecec172d3064a2b66761b27e5cce9bb9a7b197249955b45d6600e05c151b59e833a81e91ed0dbf7a1b2ca25d7f52fbf427dabeb21773c32 +binfiles arch=x86_64-cygwin size=9 + bin/x86_64-cygwin/patgen.exe + +name patgen.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of patgen +containersize 21036 +containerchecksum 9e05e208cf5520f59b01b27e4004155fc8489be5ccd907d79b14569f9d411ea94025dadb821ed3c6b3a5a84073bdac887b08341a4190d7067a08060ace7df888 +binfiles arch=x86_64-darwinlegacy size=12 + bin/x86_64-darwinlegacy/patgen + +name patgen.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of patgen +containersize 17804 +containerchecksum 716b21f3f8f3f046b2e5f713590440589b56fba78076e0f0b3d9864336f1e448e33aaab8023c19893737c5120c5b2f921f3608a3bc6f64743e43b0d424cb95a3 +binfiles arch=x86_64-linux size=10 + bin/x86_64-linux/patgen + +name patgen.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of patgen +containersize 22192 +containerchecksum 3c962a81a0da919c6fd3327c23b96d2707051c14fc749526636d4befe236058ef4617cf09925f5efa73401d431dacb4c59c77b3a579419702fa8249c96f40e2e +binfiles arch=x86_64-linuxmusl size=12 + bin/x86_64-linuxmusl/patgen + +name patgen.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of patgen +containersize 22536 +containerchecksum fce252b5e590a3befc5c4cc892582c3b300db7f82c73a0af61378171a4cffd40aa0fd1b5f3a279c0799569b837cc60e983e3caf445dbf4326aa3cc02f26706d1 +binfiles arch=x86_64-solaris size=13 + bin/x86_64-solaris/patgen + +name patgen2-tutorial +category Package +revision 58841 +shortdesc A tutorial on the use of Patgen 2 +relocated 1 +longdesc This document describes the use of Patgen 2 to create +longdesc hyphenation patterns for wide ranges of languages. +containersize 400 +containerchecksum 0db7759a327066df9aa738a977d664b8e150405fd2e57e5532a7f9e2cc6a9cb0c6541cb37b916f8506589ea02e36eb4ca404ec1b8ace3726ae431a6c78f86db2 +doccontainersize 79160 +doccontainerchecksum 5abe4de29113af4db20d85ed0089190f5ae82ef1573d8ffffcb9f5f03a4417dacbea5aebd0b274ea27dc54255f8ac6792c841a9bf77ee39628c8bb1dca49b084 +docfiles size=25 + RELOC/doc/support/patgen2-tutorial/README.md details="Readme" + RELOC/doc/support/patgen2-tutorial/patgen2-tutorial.bib + RELOC/doc/support/patgen2-tutorial/patgen2-tutorial.pdf details="The document itself" + RELOC/doc/support/patgen2-tutorial/patgen2-tutorial.tex +catalogue-ctan /info/patgen2-tutorial +catalogue-license lppl1.3c +catalogue-topics tutorial +catalogue-version 1.1 + +name path +category Package +revision 22045 +shortdesc Typeset paths, making them breakable +relocated 1 +longdesc Defines a macro \path|...|, similar to the LaTeX \verb|...|, +longdesc that sets the text in typewriter font and allows hyphen-less +longdesc breaks at punctuation characters. The set of characters to be +longdesc regarded as punctuation may be changed from the package's +longdesc default. +containersize 5424 +containerchecksum 6a1fad600e4683476206385504ab5fb916caecc1101ac903d23042c25e055c6d4a73b85a57a3293929b1effd7d4af6db26c36ff994d76efd1c4f81073cee785a +doccontainersize 290328 +doccontainerchecksum e52367b81b9042af70e940aab99fa13140c31d58768ce94fb86df74ec9b52fb365168e7e325d8b2e304094e5a35fbd9fd687305062b5b606bb9e5748f143ac2f +docfiles size=73 + RELOC/doc/generic/path/path-doc.pdf details="Package documentation" + RELOC/doc/generic/path/path-doc.tex +runfiles size=4 + RELOC/tex/generic/path/path.sty +catalogue-also url +catalogue-ctan /macros/generic/path +catalogue-license other-free +catalogue-topics verbatim +catalogue-version 3.05 + +name pauldoc +category Package +revision 16005 +shortdesc German LaTeX package documentation +relocated 1 +longdesc The package provides helpers for German language package +longdesc documentation. +containersize 1988 +containerchecksum 36e67d812dd0218d013808879eec1150d6029e13519b0796f061a850d2dca99b8c07a2ec2fe9c49004b0f9947db10ac8d02d47a858b8b27852744cea58779d13 +doccontainersize 135448 +doccontainerchecksum 178950b84cc4d5e1d78001aa75fd8cd5f0b3ca8e800b15fa1b65e19968a4642fc8ab2a3c2a95ab661155437790f100d48730d40a701dfba3a21981e93e35ba6d +docfiles size=42 + RELOC/doc/latex/pauldoc/README details="Readme" + RELOC/doc/latex/pauldoc/pauldoc.pdf details="Benutzerdoku" language="de" +srccontainersize 7760 +srccontainerchecksum 7b35faaaa89048952de36bb0b340dcc367610d87ab104cca82ea8e38493babab9fea26d30cf4eabe7d6bf64552cedaddc57f49c129076a1311c2e50f9a991add +srcfiles size=6 + RELOC/source/latex/pauldoc/pauldoc.dtx + RELOC/source/latex/pauldoc/pauldoc.ins +runfiles size=1 + RELOC/tex/latex/pauldoc/pauldoc.sty +catalogue-ctan /macros/latex/contrib/pauldoc +catalogue-license lppl +catalogue-topics doc-supp german-doc +catalogue-version 0.5 + +name pawpict +category Package +revision 21629 +shortdesc Using graphics from PAW +relocated 1 +longdesc Support for the easy inclusion of graphics made by PAW (Physics +longdesc Analysis Workstation). You need to have PAW installed on your +longdesc system to benefit from this package. +containersize 1160 +containerchecksum 426fe59ed20c41d3b11c87814b5f3737271d20bfb2cbc45142a36a42cb5aecc1555ea69a8ba1a1cac7bab323d8c9f23720601934f183d197b25e84d2037f057b +doccontainersize 820 +doccontainerchecksum 5f8fb39ccf22aea8c40e3fb5d2babd757447e089da79a9df35336c56049872f45bb04fb76ad08d8d8a8404523666841fc757e7ebbb5201a156274ec2c29958b5 +docfiles size=1 + RELOC/doc/latex/pawpict/README details="Readme" +srccontainersize 10104 +srccontainerchecksum 29f272c3d643ce366b3f82b3a5a913534e9b1833677540834bc48cecd946be0b5cf9d4de9e22012452a33c448589506d865db4ad589425634d80fef1562ecba4 +srcfiles size=10 + RELOC/source/latex/pawpict/pawpict.dtx + RELOC/source/latex/pawpict/pawpict.ins +runfiles size=1 + RELOC/tex/latex/pawpict/pawpict.sty +catalogue-ctan /macros/latex/contrib/pawpict +catalogue-license gpl +catalogue-topics physics graphics-prep +catalogue-version 1.0 + +name pax +category Package +revision 54512 +shortdesc Extract and reinsert PDF annotations with pdfTeX +longdesc If PDF files are included using pdfTeX, PDF annotations are +longdesc stripped. The pax project offers a solution without altering +longdesc pdfTeX. A Java program (pax.jar) parses the PDF file that will +longdesc later be included. The program then writes the data of the +longdesc annotations into a file that can be read by TeX. The LaTeX +longdesc package pax extends the graphics package to support the scheme: +longdesc if a PDF file is included, the package looks for the file with +longdesc the annotation data, reads them and puts the annotations in the +longdesc right place. Project status: experimental +depend pax.ARCH +containersize 18120 +containerchecksum ee6d006f6f4dbb16cefde5362c9b1b43e470fe03565724ae4a64f8c889dce3d2415d7d1da10bddd1bd137ee042ca2b6369e7a2400ad888db060b44ec2f057a3f +doccontainersize 3012 +doccontainerchecksum 4495f8c1ce62e37565947c520f7cc638c61d984a394fdc833146c1010a8ef5a17a56340eb70a980fdf16ef21483f33ebfa7cc02d6b212ddb074739862f0ceff1 +docfiles size=2 + texmf-dist/doc/latex/pax/README details="Package README" +srccontainersize 18776 +srccontainerchecksum b47294dd79cfebd9f0ad48d3a17d54e6b4d8e8ae9fa2618f4299c6cf263de9f3342675d971d8585f65f906aae45a5a6ca26fee999f30137897a25ae59177e6ab +srcfiles size=25 + texmf-dist/source/latex/pax/build.xml + texmf-dist/source/latex/pax/license/LaTeX/lppl.txt + texmf-dist/source/latex/pax/license/PDFAnnotExtractor/gpl.txt + texmf-dist/source/latex/pax/src/Constants.java + texmf-dist/source/latex/pax/src/Entry.java + texmf-dist/source/latex/pax/src/EntryWriteException.java + texmf-dist/source/latex/pax/src/MANIFEST.MF + texmf-dist/source/latex/pax/src/PDFAnnotExtractor.java + texmf-dist/source/latex/pax/src/StringVisitor.java +runfiles size=10 + texmf-dist/scripts/pax/pax.jar + texmf-dist/scripts/pax/pdfannotextractor.pl + texmf-dist/tex/latex/pax/pax.sty +catalogue-also pdftex +catalogue-ctan /macros/latex/contrib/pax +catalogue-license lppl gpl +catalogue-topics pdf-feat +catalogue-version 0.1l + +name pax.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pax +containersize 352 +containerchecksum ec915ce7093312bc793a6dbb22dda0af11e421b1faf24cf2ad213a5ee8fa6b422dc24bc69602bf00095111ee166055abf70a7cc1f8ee208c62b5af7c03a3c9aa +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfannotextractor + +name pax.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pax +containersize 352 +containerchecksum 20f5f3b414c1e99d464128a0b0cf73322c4207e6404a8f0db9d52e6fcc7f27d4849b5ff48850304b25207a97b771668beff6eaab5bf2c01466d9a839459b992f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfannotextractor + +name pax.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pax +containersize 352 +containerchecksum 9d03b38688d11a3516d98e4020ac2858fe4f178042c695f383cfa4744fa07739b79a045494272145a4c06b71cc06c52c1d7fd3a1ba547f18d6eadb3d52fb3547 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfannotextractor + +name pax.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pax +containersize 352 +containerchecksum 90c2170dedee44499e5224f571556700d5f5150febaf7c9542170466a19fd953ac594fa253b9972d864fcd36e6cb8e8bdae762ef7b466b2caf4370e22ef8b090 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfannotextractor + +name pax.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of pax +containersize 352 +containerchecksum f99883322856f4d840f8ea5ed5746ab519ccb0410032d813d78d17c44c3c1d4e3a0bb3ef5b97798aa4915461dcfa785ff451c66d918b8dbc6ee0384b8ec5ec53 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfannotextractor + +name pax.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pax +containersize 352 +containerchecksum 0eb4465a40e5fc95c27a5c27593636a0d84cb9bf820a5f5eef8aa04cfb5cd8519f7f373ae72e7197f35f49575720898c4615802e24dad5ef9defb5b50e50489e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfannotextractor + +name pax.i386-linux +category Package +revision 10843 +shortdesc i386-linux files of pax +containersize 352 +containerchecksum 6a782a80cdd0be847899c41451068049a1a0704c0f75ea48ad5c3f02029fa1514fa5229792957a93ccc9af68feb46d817c2b190fca997fca73418c47ecefba38 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfannotextractor + +name pax.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pax +containersize 352 +containerchecksum 93bd7b2dac8ac1e939e6577b14a2cb29b3b94a2165299e9e16f5f1e1828811fdce2a8db9bc0c3479ba59dcefef1e897859f4a76af2b0cce1f6e7f74d563b436e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfannotextractor + +name pax.i386-solaris +category Package +revision 10843 +shortdesc i386-solaris files of pax +containersize 348 +containerchecksum 861aa6b0a458cd8bc8bd9f718f014841839a3d3c69493f4d5a2afc29371625bfd3bb2816dff0cba963ea784dd073ea119a91c5a434e7f348070260c7a2072c9b +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfannotextractor + +name pax.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pax +containersize 352 +containerchecksum a5e00baa4be5aad264777f9d3144ff578999da9f3f035c6e6584c61fe5a11b189d6027893dcf23688758be2f402c7f0438980c47b9b1989a3c47fb3da9da27d1 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pdfannotextractor + +name pax.win32 +category Package +revision 15404 +shortdesc win32 files of pax +containersize 688 +containerchecksum 8b31a9a71c014cb2876ebc7a4cf8d48ddf9d5385f1b379b67eae6de5c3bdf5c386f2d39f866a6e9e1a22810fcd4cfac071f0640fd1a42f8871d9ce6f35e2d961 +binfiles arch=win32 size=1 + bin/win32/pdfannotextractor.exe + +name pax.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pax +containersize 352 +containerchecksum 7b8b314167c94aac9f0e6ea326935b72657db0825ea340fb44a6a9f6939f0896d2350029fbba1fcccaaf0ebcc127c34f9e77e4061bb12509d09d2700975a5516 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfannotextractor + +name pax.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pax +containersize 360 +containerchecksum 18a7584bf3a0d3db2e0bb41a94a1ffb51e04d85bdcef07302cbb9660df21fbdac73c3e903642c6a3357c04ff306149df0cf2f38a4df53231ff1023cec8c91542 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfannotextractor + +name pax.x86_64-linux +category Package +revision 10843 +shortdesc x86_64-linux files of pax +containersize 348 +containerchecksum 6a53c0a36591627324ec5d5726577bc8088073421a4905d7aa86b6b5b08e3657dfd232cf91cf8dd1086fc97c0a832796767862f55e3e921a796d614b230323b9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfannotextractor + +name pax.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pax +containersize 356 +containerchecksum 80b1fa1eb3c7ccf062118a9b3179804a2cd4c518016d43f0b24688e7dfd29b0aab8cca7f02b6079aab7ccb39b0e749e20049f1b3f46c96d9fc19c8e71aae0b36 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfannotextractor + +name pax.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pax +containersize 352 +containerchecksum 7c04ed93068c959286f89423bc7bd8f18f4aea88bbb1d3b6b171563fa39a563ba23e91ce37a8a7b7449a0b7b9d91746b2617a6c8d9424b4af5851d978fe7a479 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfannotextractor + +name pb-diagram +category Package +revision 15878 +shortdesc A commutative diagram package using LAMSTeX or Xy-pic fonts +relocated 1 +containersize 15624 +containerchecksum 6e2e18f93d5575e3f9db1147a9e255d2ab8a3918e25f53315f91ec395962a3c65d7321c1d162ab7510f16b25e4bdc5c8e4688e56820759baef06dcb08833a0d4 +doccontainersize 123536 +doccontainerchecksum 4b12c7f67411ed86eff674665f61b6b2e34694c937222c7adceaab453d78a6a1f23c58d3abd7ed2320ccf05c40e6b38ff2280bd498e7b71e857bd6fc86de3067 +docfiles size=45 + RELOC/doc/latex/pb-diagram/COPYING + RELOC/doc/latex/pb-diagram/README details="Readme" + RELOC/doc/latex/pb-diagram/pb-examples.tex + RELOC/doc/latex/pb-diagram/pb-manual.pdf details="Package documentation" + RELOC/doc/latex/pb-diagram/pb-manual.tex +runfiles size=19 + RELOC/tex/latex/pb-diagram/lamsarrow.sty + RELOC/tex/latex/pb-diagram/pb-diagram.sty + RELOC/tex/latex/pb-diagram/pb-lams.sty + RELOC/tex/latex/pb-diagram/pb-xy.sty +catalogue-ctan /macros/latex/contrib/pb-diagram +catalogue-license other-free +catalogue-topics diagram-comm +catalogue-version 5.0 + +name pbalance +category Package +revision 57161 +shortdesc Balance last page in two-column mode +relocated 1 +longdesc This package balances the columns on the last page of a +longdesc two-column document. If the page is "simple" (no footnotes, +longdesc floats, or marginpars), is uses the balance package; otherwise, +longdesc it uses \enlargethispage to make the left column shorter, +longdesc balancing the columns. +containersize 5724 +containerchecksum 7db75e950aca473dffc3d3efb419bbe33b5f04d1a0295a73de3d7385883d576f46bf377554ffaef44608cc8c6df3f3594bd0a0e5ed7ca649c7ced5c5834192db +doccontainersize 241320 +doccontainerchecksum 98828ffca4f1e4dab5b51e45028058cff1af38cedb05f1b0a201bff1ddb508374da6fb0d77ff4d14bdef6ec04a468435dd9870ce0f1e34685fb982f21c982e79 +docfiles size=61 + RELOC/doc/latex/pbalance/LICENSE + RELOC/doc/latex/pbalance/README.md details="Readme" + RELOC/doc/latex/pbalance/pbalance.pdf details="Package documentation" +srccontainersize 11568 +srccontainerchecksum 21236f5d7cc9a64472d9f214777331d3b230773d134b0ed5a83d1a3dd21c2d4a76df78f42824012d4edaabfeab612684fa2577bac3bd4070ed2b5956d19272dd +srcfiles size=11 + RELOC/source/latex/pbalance/pbalance.dtx + RELOC/source/latex/pbalance/pbalance.ins +runfiles size=6 + RELOC/tex/latex/pbalance/pbalance.sty +catalogue-also flushend +catalogue-contact-bugs https://gitlab.com/lago/pbalance/issues +catalogue-contact-home https://gitlab.com/lago/pbalance +catalogue-ctan /macros/latex/contrib/pbalance +catalogue-license lppl1.3 +catalogue-topics multicol +catalogue-version 1.0.1 + +name pbibtex-base +category Package +revision 40986 +shortdesc Bibliography styles and miscellaneous files for pBibTeX +relocated 1 +longdesc These are miscellaneous files, including bibliography styles +longdesc (.bst), for pBibTeX, which is a Japanese extended version of +longdesc BibTeX contained in TeX Live. The bundle is a redistribution +longdesc derived from the ptex-texmf distribution by ASCII MEDIA WORKS. +containersize 14712 +containerchecksum 4c807466ddae93f7b12a62fb32b4a8a8dcdf16eb8935548aaeeccaa90de15484e396f307f229cab8a2980212aa7627e80047502a067847114ca7ff6a9ae22c3b +doccontainersize 846572 +doccontainerchecksum a87c2feac2b0a115ccec0ced7ed9b5215c8b7501020a4ca14fea9a5062bc0994fa31c892c1a738c582118b73ff4df5aba371abaef76d3c15a00d5268bef85031 +docfiles size=256 + RELOC/doc/ptex/pbibtex/LICENSE + RELOC/doc/ptex/pbibtex/README.md details="Readme" + RELOC/doc/ptex/pbibtex/README_original + RELOC/doc/ptex/pbibtex/cpp.awk + RELOC/doc/ptex/pbibtex/generate.sh + RELOC/doc/ptex/pbibtex/jbibtex.bib + RELOC/doc/ptex/pbibtex/jbibtex.pdf + RELOC/doc/ptex/pbibtex/jbibtex.tex + RELOC/doc/ptex/pbibtex/jbtxbst.doc + RELOC/doc/ptex/pbibtex/jbtxdoc.bib + RELOC/doc/ptex/pbibtex/jbtxdoc.pdf + RELOC/doc/ptex/pbibtex/jbtxdoc.tex + RELOC/doc/ptex/pbibtex/jbtxhak.pdf + RELOC/doc/ptex/pbibtex/jbtxhak.tex +runfiles size=61 + RELOC/pbibtex/bib/jxampl.bib + RELOC/pbibtex/bst/jabbrv.bst + RELOC/pbibtex/bst/jalpha.bst + RELOC/pbibtex/bst/jipsj.bst + RELOC/pbibtex/bst/jname.bst + RELOC/pbibtex/bst/jorsj.bst + RELOC/pbibtex/bst/jplain.bst + RELOC/pbibtex/bst/junsrt.bst + RELOC/pbibtex/bst/tieice.bst + RELOC/pbibtex/bst/tipsj.bst +catalogue-contact-repository https://github.com/texjporg/pbibtex-base +catalogue-ctan /biblio/pbibtex/base +catalogue-license bsd3 +catalogue-topics biblio japanese + +name pbox +category Package +revision 24807 +shortdesc A variable-width \parbox command +relocated 1 +longdesc Defines a command \pbox{<max width>}{<text>} which adjusts its +longdesc width to that of the enclosed text, up to the maximum width +longdesc given. The package also defines some associated length +longdesc commands. +containersize 1380 +containerchecksum cf2ea3781aac3d0b8619c46513bf9894c4b4efd8ba89eefe2e5fbe4e8f82fedd3b17f64467598080a577c65cc21713671c68763ff2600ce24fb6f6ddfae83a3e +doccontainersize 235996 +doccontainerchecksum 1955a1cd5336a7d71483f49bbc8c65426485fd38447282262b58b4633398cda0753c5574455421b19d92d5c88c599f9c227b54a7c340a35daf233a4f48a1c276 +docfiles size=72 + RELOC/doc/latex/pbox/AUTHORS + RELOC/doc/latex/pbox/COPYING + RELOC/doc/latex/pbox/ChangeLog + RELOC/doc/latex/pbox/INSTALL + RELOC/doc/latex/pbox/Makefile + RELOC/doc/latex/pbox/README details="Readme" + RELOC/doc/latex/pbox/pbox.pdf details="Package documentation" +srccontainersize 5728 +srccontainerchecksum 67cf5bae9494a81b97738ca8ed5877c009d631cb8ac681915559bc4919f536c657fe4e3ade36b8e4a0ee3b614ca4a23bde8a9cae19f3a9aca12cb2e3926160b1 +srcfiles size=6 + RELOC/source/latex/pbox/pbox.drv + RELOC/source/latex/pbox/pbox.dtx + RELOC/source/latex/pbox/pbox.ins +runfiles size=1 + RELOC/tex/latex/pbox/pbox.sty +catalogue-also varwidth +catalogue-ctan /macros/latex/contrib/pbox +catalogue-license gpl2 +catalogue-topics boxing +catalogue-version 1.2 + +name pbsheet +category Package +revision 24830 +shortdesc Problem sheet class +relocated 1 +longdesc This class is designed to simplify the typesetting of problem +longdesc sheets with Mathematics and Computer Science content. It is +longdesc currently customised towards teaching in French (and the +longdesc examples are in French). +containersize 5284 +containerchecksum 4fee9d64b1988f9981a056adc10de3be6940cb2cc7e23d9bc4effa8647e27601e5b74d2c15289ed5cc96c3f42d4f2569d897be111e2dff064a4c5d40445c760c +doccontainersize 402592 +doccontainerchecksum d929cb815e8204268f17d9e71f53550b7647d39fd50782c1e6bb848a6a8840ef8389d2f3359bef554450179bd9a638ea80a1c7ec018c7275165622f1ba645a95 +docfiles size=252 + RELOC/doc/latex/pbsheet/LPPL + RELOC/doc/latex/pbsheet/README details="Readme" + RELOC/doc/latex/pbsheet/pbsheet.pdf details="Package documentation" + RELOC/doc/latex/pbsheet/xpl/GNUmakefile + RELOC/doc/latex/pbsheet/xpl/img/simbin.eps + RELOC/doc/latex/pbsheet/xpl/img/simbin.pdf + RELOC/doc/latex/pbsheet/xpl/pbsheet.cls + RELOC/doc/latex/pbsheet/xpl/pgm/probadis.m + RELOC/doc/latex/pbsheet/xpl/pgm/rdiscr.m + RELOC/doc/latex/pbsheet/xpl/pgm/rint.m + RELOC/doc/latex/pbsheet/xpl/pgm/simbin.m + RELOC/doc/latex/pbsheet/xpl/xpl-fr.bib + RELOC/doc/latex/pbsheet/xpl/xpl-fr.dvi + RELOC/doc/latex/pbsheet/xpl/xpl-fr.pdf details="Example of use" language="fr" + RELOC/doc/latex/pbsheet/xpl/xpl-fr.ps + RELOC/doc/latex/pbsheet/xpl/xpl-fr.tex +srccontainersize 7164 +srccontainerchecksum 7790c2a14e44ff68071c4b3f0017c5b83a2fcd50a110d05b55297f07b4b313ebe8d5ab3b4d071bab5b575ded1323bb26b828aabc7cd20522a4298827d1686c12 +srcfiles size=7 + RELOC/source/latex/pbsheet/pbsheet.dtx + RELOC/source/latex/pbsheet/pbsheet.ins +runfiles size=5 + RELOC/tex/latex/pbsheet/pbsheet.cls +catalogue-ctan /macros/latex/contrib/pbsheet +catalogue-license lppl +catalogue-topics exercise +catalogue-version 0.1 + +name pdf-trans +category Package +revision 32809 +shortdesc A set of macros for various transformations of TeX boxes +relocated 1 +longdesc pdf-trans is a set of macros offering various transformations +longdesc of TeX boxes (based on plain and pdfeTeX primitives). It was +longdesc initially inspired by trans.tex, remade to work with pdfTeX. +containersize 10768 +containerchecksum 8e3d1526b0373113064e4812003b84fd78dec65ce4946ef991f09efcb6ffab8e89a9a655c8a0582e1f4452feb526c077ec9cff30b1ad7f3c59f07bc715e643e6 +doccontainersize 61272 +doccontainerchecksum a275e35947c38b93f5ade7a812d7938d342b25460e2a29e16a1431c7fff5939826ffe0bab30aeaf504a57ded91925e85853f93611702ee6dfec713031edf9306 +docfiles size=37 + RELOC/doc/generic/pdf-trans/example.pdf details="Examples of use" + RELOC/doc/generic/pdf-trans/example.tex +runfiles size=12 + RELOC/tex/generic/pdf-trans/pdf-trans.tex +catalogue-also trans +catalogue-ctan /macros/generic/pdf-trans +catalogue-license pd +catalogue-topics box-manip +catalogue-version 2.4 + +name pdf14 +category Package +revision 17583 +shortdesc Restore PDF 1.4 to a TeX live 2010 format +relocated 1 +longdesc Starting with TeX Live 2010, the various formats, that directly +longdesc generate PDF, default to generating PDF 1.5. This is generally +longdesc a good thing, but it can lead to compatibility issues with some +longdesc older PDF viewers. This package changes the version of PDF +longdesc generated with formats (based on pdfTeX or LuaTeX in PDF mode), +longdesc back to 1.4 for documents that need to achieve maximal +longdesc compatibility with old viewers. +containersize 1152 +containerchecksum 6291a2cbe2fea33d2a948a8ce58415de875cb09df1eaeb674f2a8fd3e3eb9fd5897d73e2ff613cb71562299ac22b07566b3c8730c807928e5a12f3e572f99622 +doccontainersize 362696 +doccontainerchecksum 1b848dc73554175d33b7501fe83f1689e5181bddc6f59db00829ea39ac6aa7f91ca4f936f93a66411ebb257fd77132c6a4fd3371c8c28f0258cdcca31b8f0b38 +docfiles size=91 + RELOC/doc/latex/pdf14/README details="Readme" + RELOC/doc/latex/pdf14/pdf14.pdf details="Package documentation" + RELOC/doc/latex/pdf14/test-pdf14.tex +srccontainersize 4164 +srccontainerchecksum 81e13e0e9d0b6c4c0d6a764c94c6958a437a2e2fa186532607058c09f1c3ca2a6187a778ced20e67b7d70079395be11de7e2237548b12843f4f5ff80cb82c732 +srcfiles size=3 + RELOC/source/latex/pdf14/Makefile + RELOC/source/latex/pdf14/pdf14.dtx +runfiles size=1 + RELOC/tex/latex/pdf14/pdf14.sty +catalogue-ctan /macros/latex/contrib/pdf14 +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 0.1 + +name pdfarticle +category Package +revision 51127 +shortdesc Class for pdf publications +relocated 1 +longdesc pdfArticle is simple document class dedicated for creating pdf +longdesc documents with LuaLaTeX. +containersize 3868 +containerchecksum 50cabf25f9da7b9adee489fd0a01fd9e5da2115d1dd09111507143a99a605cbc7e2de5a40a0e963b68942a601b7f0b753fdaf9cc1eadcdfb1261730fff5b4875 +doccontainersize 42628 +doccontainerchecksum d77754cf21565337f6db1b984dd3812798833f61fa263e39f9a929b25391a3b31a55df97a7f0db4fd379e4bf3855c51b61a719c30187865f67d7d37444e17de3 +docfiles size=14 + RELOC/doc/lualatex/pdfarticle/README details="Readme" + RELOC/doc/lualatex/pdfarticle/pdfArticle.pdf details="Package documentation" + RELOC/doc/lualatex/pdfarticle/pdfArticle.tex +runfiles size=3 + RELOC/tex/lualatex/pdfarticle/pdfArticle.cls +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-license mit +catalogue-topics class pdfprocess +catalogue-version 1.0 + +name pdfbook2 +category Package +revision 53521 +shortdesc Create booklets from PDF files +longdesc This python program creates print-ready PDF files from some +longdesc input PDF files for booklet printing. The resulting files need +longdesc to be printed in landscape/long edge double sided printing. The +longdesc default paper format depends on the locale and is chosen by +longdesc pdfjam. It can be chosen using the --paper option. Before the +longdesc pdf is composed, the input file is cropped to the relevant area +longdesc in order to discard unnecessary white spaces. In this process, +longdesc all pages are cropped to the same dimensions. Extra margins can +longdesc be defined at the edges of the booklet and in the middle where +longdesc the binding occurs. The output is written to INPUT-book.pdf. +longdesc Existing files will be overwritten. All input files are +longdesc processed seperately. +depend pdfbook2.ARCH +containersize 3548 +containerchecksum dd87268e3856eb26b37f025ac62f24cd5e680e92e727588d36878de9df799f49254ef2259c29de15db11d5888ada83110a39aaa3116aa6f6aa290d3e64f1231f +doccontainersize 21548 +doccontainerchecksum 3048de4be891e270e8efe9f9d85524aff948c9483da25f491669a7181967dc281f42b984c9ee46464bc563c42a4f171589066f67818a291a136e1f49d40912ef +docfiles size=9 + texmf-dist/doc/man/man1/pdfbook2.1 + texmf-dist/doc/man/man1/pdfbook2.man1.pdf + texmf-dist/doc/support/pdfbook2/README details="Readme" +runfiles size=3 + texmf-dist/scripts/pdfbook2/pdfbook2 +catalogue-also pdfbook +catalogue-ctan /support/pdfbook2 +catalogue-license gpl3 +catalogue-topics pdfprocess +catalogue-version 1.4 + +name pdfbook2.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdfbook2 +containersize 340 +containerchecksum e7c4fcd434445d16437c3bc55d427eb2876854069aa184d449dd630448723e23dec5d47c21a8d3fd3902f559002a71d586988f9fbe0a9633d4759578acc1a755 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfbook2 + +name pdfbook2.amd64-freebsd +category Package +revision 37537 +shortdesc amd64-freebsd files of pdfbook2 +containersize 340 +containerchecksum c3a912ef71d7d247a87d11379f68e77d866c7e6fe85560c3e975d3eecbe6c1154457bf5859fe313c87ac4e2790a674e847f844d5d48d878279a54ae9817a44d8 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfbook2 + +name pdfbook2.amd64-netbsd +category Package +revision 37537 +shortdesc amd64-netbsd files of pdfbook2 +containersize 340 +containerchecksum 9fca530813824be44caa1e15dd7fc67ce40b10d9d1b542884fd58ff04f0067f70e505545563965a40b27b3301ac10504a3a4f921e3b3327e725c18a8cf172f00 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfbook2 + +name pdfbook2.armhf-linux +category Package +revision 37537 +shortdesc armhf-linux files of pdfbook2 +containersize 340 +containerchecksum 0b9c18b379ada38170eae2834fa7712cdddcfe645342cc126efa71fb46385b04758141ef4bcd0b6b56c5d4558f738681ea45278024b0c49234aef6733da42f01 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfbook2 + +name pdfbook2.i386-cygwin +category Package +revision 37537 +shortdesc i386-cygwin files of pdfbook2 +containersize 336 +containerchecksum 9ad408f5b5a8ec63031bee8d0622f61362b5f3a7376273f9761f29d4be435bc476d0b5515d4d45808d66d43a55d32809f3be8625cf9e02aa23decee40031a6d4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfbook2 + +name pdfbook2.i386-freebsd +category Package +revision 37537 +shortdesc i386-freebsd files of pdfbook2 +containersize 340 +containerchecksum 48c88180dc840450d8adc69f15972c49cc0e8d55e04683280df0a989d34dc2403d166d2c1a1d6a5571b8765f899d4ddeeec6a28ff51b780135ee33a4c71e00a7 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfbook2 + +name pdfbook2.i386-linux +category Package +revision 37537 +shortdesc i386-linux files of pdfbook2 +containersize 340 +containerchecksum e43fbb01d782683d5689e66494c881274565cfe3d3296105279c22f59194caa13ffc7a3034d5ad60095d8c8ebebea30f575f9b5808a852d38f8747c1823fdf58 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfbook2 + +name pdfbook2.i386-netbsd +category Package +revision 37537 +shortdesc i386-netbsd files of pdfbook2 +containersize 336 +containerchecksum 21fdf4a70be3d9ce56260865d607fdfed2d7ba816aaf857a767f7588d88cdefbe13b7caef2b9b9d08409f448cd53f68e3908064fef82e19b823bcd1f46bd3369 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfbook2 + +name pdfbook2.i386-solaris +category Package +revision 37537 +shortdesc i386-solaris files of pdfbook2 +containersize 336 +containerchecksum 8feb5c0081f4e48b9e3d61cfaefbd64f4591aeb89d445828114607e79916032f4114df3eeb589809476a92182e74eed96a62723762ec24c2f76abd792c58513f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfbook2 + +name pdfbook2.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pdfbook2 +containersize 340 +containerchecksum 0358eaf3e27b64837539dc20c20c5cfdccce33daa82418f2a074d1c49d7d542f9ccf9cbc367650be0b853458be91289b839e5c9495f90d7ee73a0514e3941ed9 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pdfbook2 + +name pdfbook2.x86_64-cygwin +category Package +revision 37537 +shortdesc x86_64-cygwin files of pdfbook2 +containersize 340 +containerchecksum bd1429c0031c4ac48b0553384c699f35127c5ef7c4f8268a10e1b6aecbc1917adb5223052b3d17b91e39e0397537c7ba287807cd164c1e3d30b7f96b0e3d5ccb +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfbook2 + +name pdfbook2.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdfbook2 +containersize 348 +containerchecksum 237287bf348cb5c04de20689b832830c3341a49d104d4caa69b46fbda54757a6d1a90037c20cb36a76eafbb4400374641570fee9f426a105b787787bdc0460ae +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfbook2 + +name pdfbook2.x86_64-linux +category Package +revision 37537 +shortdesc x86_64-linux files of pdfbook2 +containersize 336 +containerchecksum 8a3b310031a52a0f1b2b995d7d42f91e197112b5cf6a1d8935e6d4468142c43ae50e49185a39c2d1bf61093c5d6e5ce27c8fccf657c4c0c2f11232189c02bc97 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfbook2 + +name pdfbook2.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdfbook2 +containersize 344 +containerchecksum e24d29aa47170f2bb8b69c47f6c0bfac86a6be9ce02530f96b3844d6eb8ce3ad77c8b41a8e02a93ac949d1ed14f790b8fd5e7a4f5e9e3846789718e4cb7ba8d7 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfbook2 + +name pdfbook2.x86_64-solaris +category Package +revision 37537 +shortdesc x86_64-solaris files of pdfbook2 +containersize 340 +containerchecksum b27dca5a62f5062f1c278fda6d3a76aef40228ae92c0da11e4c6f6aad6c4ad61b05395fe6ee08a0a1e735d292ccbbc9a904d9e7c5d2a28496ae2d8685b712e28 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfbook2 + +name pdfcolmk +category Package +revision 52912 +shortdesc Improved colour support under pdfTeX (legacy stub) +relocated 1 +longdesc The package used to provide macros that emulated the 'colour +longdesc stack' functionality of dvips. The colour stack deals with +longdesc colour manipulations when asynchronous events (like +longdesc page-breaking) occur. At the time the package was written, +longdesc pdfTeX did not (yet) have such a stack, though dvips had had +longdesc one for a long time. This package was an experimental solution +longdesc to the problem, and worked best with pdfeTeX. For current +longdesc releases of pdfTeX (later than version 1.40.0, released in +longdesc 2007), this package is not needed, since "real" colour stacks +longdesc are available. The present pdfcolmk is therefore just an empty +longdesc stub that does nothing at all, just in case there are still +longdesc documents that reference it. The documented source of the +longdesc original package is still available at the github repository. +containersize 1212 +containerchecksum ddcc125c608eea472c06981c9f5a901a431da978fecaa2a5ecdd08e2f6499ad25632e4de86f7e92445a8e276403ee92bca636b80e5216e78b21ce355910ead67 +doccontainersize 468 +doccontainerchecksum e2bb876ad74381fb441d870422186f4cee76bb4cb5f721334b7119fe83b2ab0565ffd5300575ab52e8d25a263d87739a1e114cffed44ab3e25d8d5cff2006456 +docfiles size=1 + RELOC/doc/latex/pdfcolmk/README.md +runfiles size=1 + RELOC/tex/latex/pdfcolmk/pdfcolmk.sty +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-license lppl1.3c +catalogue-topics colour obsolete +catalogue-version 2.0 + +name pdfcomment +category Package +revision 49047 +shortdesc A user-friendly interface to pdf annotations +relocated 1 +longdesc For a long time pdfLaTeX has offered the command \pdfannot for +longdesc inserting arbitrary PDF annotations. However, the command is +longdesc presented in a form where additional knowledge of the +longdesc definition of the PDF format is indispensable. This package is +longdesc an answer to the - occasional - questions in newsgroups, about +longdesc how one could use the comment function of Adobe Reader. At +longdesc least for the writer of LaTeX code, the package offers a +longdesc convenient and user-friendly means of using \pdfannot to +longdesc provide comments in PDF files. Since version v1.1, +longdesc pdfcomment.sty also supports LaTeX - dvips - ps2pdf, LaTeX - +longdesc dvipdfmx, XeLaTeX and LuaLaTeX. Unfortunately, support of PDF +longdesc annotations by PDF viewers may vary. The reference viewer for +longdesc the development of this package is Adobe Reader. +containersize 11296 +containerchecksum 82e1f9e9dc35f652d1ad348c6f2e03c1472c36c113cb17080061f66777d129f55f56a29c2a94292974ed759d12727d93e1724a8b529ed0b4c8c3e53511ab1934 +doccontainersize 1206144 +doccontainerchecksum a7b6f568daa2d2c01574f56641326c1cf46c692d247fb8a8fd7485d6e804241a43691ac42923df35dac4453a23a5433fe1d7a063a88f4675a00780e89675a169 +docfiles size=368 + RELOC/doc/latex/pdfcomment/CHANGES + RELOC/doc/latex/pdfcomment/INSTALL + RELOC/doc/latex/pdfcomment/README.md details="Readme" + RELOC/doc/latex/pdfcomment/example.pdf details="Example output" + RELOC/doc/latex/pdfcomment/example.tex + RELOC/doc/latex/pdfcomment/example_latex_dvipdfmx.pdf + RELOC/doc/latex/pdfcomment/example_latex_dvipdfmx.tex + RELOC/doc/latex/pdfcomment/example_latex_dvips_ps2pdf.pdf + RELOC/doc/latex/pdfcomment/example_latex_dvips_ps2pdf.tex + RELOC/doc/latex/pdfcomment/example_math_markup.pdf details="Example output: math mode" + RELOC/doc/latex/pdfcomment/example_math_markup.tex + RELOC/doc/latex/pdfcomment/example_xelatex.pdf + RELOC/doc/latex/pdfcomment/example_xelatex.tex + RELOC/doc/latex/pdfcomment/manifest.txt + RELOC/doc/latex/pdfcomment/pdfcomment.pdf details="Package documentation" language="en" + RELOC/doc/latex/pdfcomment/pdfcomment.tex + RELOC/doc/latex/pdfcomment/pdfcomment_de.pdf details="Package documentation" language="de" + RELOC/doc/latex/pdfcomment/pdfcomment_de.tex +runfiles size=24 + RELOC/tex/latex/pdfcomment/pdfcomment.sty +catalogue-contact-home http://pdfcomment.jklatex.de/ +catalogue-ctan /macros/latex/contrib/pdfcomment +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 2.4a + +name pdfcprot +category Package +revision 18735 +shortdesc Activating and setting of character protruding using pdfLaTeX +relocated 1 +longdesc This package provides an easy interface to adjust the character +longdesc protrusion for different fonts and choosing the right +longdesc adjustment automatically depending on the font. The package is +longdesc largely superseded by microtype. +containersize 6808 +containerchecksum d046543b42966f8a566be0c89d78ca26b26d4095d99d5b16045283f0eb52a90a92122c1e87a2842d12d7ef2f865fbeaa69315a51bb922f713d33b9ef2e270fac +doccontainersize 379136 +doccontainerchecksum ef19fdf93050dfe35df88163453067e589307b2173481d4f3b6943411bbaabda94b472622b93485637de5c2f885f9153d5078f5d3bccafb52bb28d3e25f39ca6 +docfiles size=109 + RELOC/doc/latex/pdfcprot/00CONTEN + RELOC/doc/latex/pdfcprot/00README + RELOC/doc/latex/pdfcprot/INSTALL.txt + RELOC/doc/latex/pdfcprot/LEGAL.txt + RELOC/doc/latex/pdfcprot/Makefile.unx + RELOC/doc/latex/pdfcprot/README.txt details="Package Readme" + RELOC/doc/latex/pdfcprot/TODO + RELOC/doc/latex/pdfcprot/pdfcprot.pdf details="Package documentation" +srccontainersize 21220 +srccontainerchecksum fbbfba0b35c70cc847a6ccbef17a1f506d26070d616254cd415eb6cdcf1b74c5a09baee420012fd88c11e4b4f8f45c5b7d4e2f5767e9621974a8d941a460360b +srcfiles size=23 + RELOC/source/latex/pdfcprot/pdfcprot.dtx + RELOC/source/latex/pdfcprot/pdfcprot.ins +runfiles size=14 + RELOC/tex/latex/pdfcprot/pdfcprot.sty + RELOC/tex/latex/pdfcprot/pplmnOT1.cpa + RELOC/tex/latex/pdfcprot/pplmnOT2.cpa + RELOC/tex/latex/pdfcprot/pplmnT1.cpa + RELOC/tex/latex/pdfcprot/pplmnT2A.cpa + RELOC/tex/latex/pdfcprot/pplmnTS1.cpa +catalogue-also microtype +catalogue-ctan /macros/latex/contrib/pdfcprot +catalogue-license lppl +catalogue-topics micro-layout +catalogue-version 1.7a + +name pdfcrop +category Package +revision 55435 +shortdesc Crop PDF graphics +longdesc A Perl script that can either trim pages of any whitespace +longdesc border, or trim them of a fixed border. +depend pdfcrop.ARCH +containersize 10888 +containerchecksum ba611ee2a516fb031a7f3c93f563b2aaa2e50d4ef95433a5d83ee46191c2a6001fdd4ef25f33166c0e3f9791e85c200e452684974d54d34e8d651a7254f6652c +doccontainersize 10228 +doccontainerchecksum 786fe00793f62e09f225ca0decdd53ad3b2ce03a133a2ae4ba20db9d40352863dc6a8728e005aecfcaec06072e8a0ef454d1f7fbe90bfc5997cfc65c6ab97170 +docfiles size=8 + texmf-dist/doc/support/pdfcrop/LICENCE + texmf-dist/doc/support/pdfcrop/README.md details="Readme (including manual)" +runfiles size=10 + texmf-dist/scripts/pdfcrop/pdfcrop.pl +catalogue-contact-bugs https://github.com/ho-tex/pdfcrop/issues +catalogue-contact-repository https://github.com/ho-tex/pdfcrop +catalogue-ctan /support/pdfcrop +catalogue-license lppl1.3c +catalogue-topics pdfprocess +catalogue-version 1.40 + +name pdfcrop.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdfcrop +containersize 364 +containerchecksum 8010221f9221b76393848eb503856ec9aebff0429dfbe115f5a082f05f0a91fbf611fd785894ae94ac88dd129396d281ab8fdeaad8ffe3c10f20ed24808f41cb +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/pdfcrop + bin/aarch64-linux/rpdfcrop + +name pdfcrop.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pdfcrop +containersize 364 +containerchecksum 5de71e878d8a4cd55f58e94160ecf75cd1a23ae11bba5e69d9f5f67b31242ae85504222c0c981104412df42200d9ed99455f68c32e54026b0c373a16a0695662 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/pdfcrop + bin/amd64-freebsd/rpdfcrop + +name pdfcrop.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pdfcrop +containersize 360 +containerchecksum 1c6a4cd10ec3d4d737c7228e6daaea99eae05cd9abfbb2525a333275308b73fdd29ca809774f331885fdf440379dede8eb2db853ca73d948dde19987b6abcda9 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/pdfcrop + bin/amd64-netbsd/rpdfcrop + +name pdfcrop.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pdfcrop +containersize 360 +containerchecksum 5575ed69e167314d1437a2ea05a91e589b113a894f75e07d754fb7b9e835e13337f8199e2f5c8ae893481beb0c2df31106657331a9cfa07ab68a882dd9a57e9c +binfiles arch=armhf-linux size=2 + bin/armhf-linux/pdfcrop + bin/armhf-linux/rpdfcrop + +name pdfcrop.i386-cygwin +category Package +revision 14431 +shortdesc i386-cygwin files of pdfcrop +containersize 360 +containerchecksum 3fabf0870bf8760a60ed6a3a0e0b43300640b3833340942f16ec962f28e7f8b81f3ef2dd9b4ce49bb1f7a3028f0ecf07db6ef9ce43ceacfc1606e5a79a0de1d6 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/pdfcrop + bin/i386-cygwin/rpdfcrop + +name pdfcrop.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pdfcrop +containersize 364 +containerchecksum 50edb89feb2aa63b422fa6cfcb0b5414cc0a80a6491d4f48979784ff9084f7df87194c6cc30db9899677e2519c7066ecc8be7c81a1ebf387c02c951f2ac244c1 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/pdfcrop + bin/i386-freebsd/rpdfcrop + +name pdfcrop.i386-linux +category Package +revision 14387 +shortdesc i386-linux files of pdfcrop +containersize 360 +containerchecksum 706c7d62bd6796f775b811bbff9cf5feef511be5038f3a61b1fc2b5ddb83170d82b7ca704d82cac1d35d7c94d6150e4e00ffb0b6a1ef23fb960a434aa4daf3ee +binfiles arch=i386-linux size=2 + bin/i386-linux/pdfcrop + bin/i386-linux/rpdfcrop + +name pdfcrop.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pdfcrop +containersize 360 +containerchecksum 2bb1814745bfd21b0dd98198b6234e4fba1b9634e8f7b29d7fb3d7d85f58ecbd7cdea69cccb3fa49d5d5d797067fbef3a974e34c1471ad54b8ff679115563f20 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/pdfcrop + bin/i386-netbsd/rpdfcrop + +name pdfcrop.i386-solaris +category Package +revision 14387 +shortdesc i386-solaris files of pdfcrop +containersize 360 +containerchecksum 062c6cec389a6feb7c9030c573558e4e6152a23aa1d2380a0876f6b8b263504aa599331c999d1771b117304b379e651c3ca72b48eccdf8e7d5eee14be683db72 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/pdfcrop + bin/i386-solaris/rpdfcrop + +name pdfcrop.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pdfcrop +containersize 360 +containerchecksum eb4fcdbd580d9f63954df38de1bab44e23677e57a7d69fdd465540ec77ff2d5ebed1cfb1b047c636f8e92150cacc4c62c234affd69bf5b1842c7a10d9020efbe +binfiles arch=universal-darwin size=2 + bin/universal-darwin/pdfcrop + bin/universal-darwin/rpdfcrop + +name pdfcrop.win32 +category Package +revision 17231 +shortdesc win32 files of pdfcrop +containersize 708 +containerchecksum a1aca9ab4bb36bffa237fef187f43424b12e22542b57c7056d1c62c3187103b995ca28d25072491f714ba64ba80e3df0ace58c53f5e66138cd24f8ded4b5d458 +binfiles arch=win32 size=2 + bin/win32/pdfcrop.exe + bin/win32/rpdfcrop.exe + +name pdfcrop.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pdfcrop +containersize 364 +containerchecksum 0726d75ec98f7ae8e00fc1fbfd0d51bcc5553ad1f17331b61993b46912d88df7167395ecb3e734eb38293e06b4a7954cb7fd0478c4d63ae92e42c439d971721b +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/pdfcrop + bin/x86_64-cygwin/rpdfcrop + +name pdfcrop.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdfcrop +containersize 372 +containerchecksum f2136f346160d7df9d7245dae31089f6953aaae2e5c13529bec46ef8675c5a5606518e4f9c09029098d38538bf3e1d65b0e45ff4b8f0178e015b84bcbcdb84a6 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/pdfcrop + bin/x86_64-darwinlegacy/rpdfcrop + +name pdfcrop.x86_64-linux +category Package +revision 14387 +shortdesc x86_64-linux files of pdfcrop +containersize 360 +containerchecksum 931ffba4c56dfd49a7d3397e43c2d28c12c73db1a3000ce99ae1bde5f6b6b7ac8e232afb0a7f4e171e873a94f96f515d7b5fbdccfa0f3e92904cb71207aaaaef +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/pdfcrop + bin/x86_64-linux/rpdfcrop + +name pdfcrop.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdfcrop +containersize 368 +containerchecksum 7dd8026f13a963c0a4137defec0c6b088b70538f305d6738f7887ab37d6fe89557ac1e6543a75fa1af9ba4b64206b2c0353b44a3d11c9f44b02739b2c675c9a1 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/pdfcrop + bin/x86_64-linuxmusl/rpdfcrop + +name pdfcrop.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pdfcrop +containersize 364 +containerchecksum cfc70c8d8776a87fa8e3cca104cd37206657e86f0cc5696ece95d998ed3e9c3a1641fd0ceaba963899f04ba62169a61ad6e931178a8208a6e3ce90ec50c664af +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/pdfcrop + bin/x86_64-solaris/rpdfcrop + +name pdfescape +category Package +revision 53082 +shortdesc Implements pdfTeX's escape features using TeX or e-TeX +relocated 1 +longdesc This package implements pdfTeX's escape features +longdesc (\pdfescapehex, \pdfunescapehex, \pdfescapename, +longdesc \pdfescapestring) using TeX or e-TeX. +containersize 4264 +containerchecksum ca908d58a9a0c0094fcd9bad550bf493a0dbea9e90702534a7418f9a5f506f5cedd42663f154bd227349e4e57e223b6360871bdc995eaea221c07cccaa780327 +doccontainersize 342644 +doccontainerchecksum d95aa97463b20c178a04f9f2cb71011985eb5242ec620adb9911bb5f1103f71e9fb0feca5704a9339b9490a71ed67c8c038efcf6cf43e16fcd20ba2eaeff8161 +docfiles size=86 + RELOC/doc/latex/pdfescape/README.md + RELOC/doc/latex/pdfescape/pdfescape.pdf details="Package documentation" +srccontainersize 8308 +srccontainerchecksum b6edb668b4803c91288b0f149e2700213ecab7725310d7d4bf499cf557590cd4356d9c79a6bfaf17a50ce85f4951a1e996ccf6725ea6da000f0c316f5a0466d4 +srcfiles size=10 + RELOC/source/latex/pdfescape/pdfescape.dtx +runfiles size=5 + RELOC/tex/generic/pdfescape/pdfescape.sty +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-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.15 + +name pdfjam +category Package +revision 56991 +shortdesc Shell scripts interfacing to pdfpages +longdesc The package makes available the pdfjam shell script that +longdesc provides a simple interface to much of the functionality of the +longdesc excellent pdfpages package (by Andreas Matthias) for LaTeX. The +longdesc pdfjam script takes one or more PDF files (and/or JPG/PNG +longdesc graphics files) as input, and produces one or more PDF files as +longdesc output. It is useful for joining files together, selecting +longdesc pages, reducing several source pages onto one output page, +longdesc etc., etc. +depend pdfjam.ARCH +containersize 12120 +containerchecksum 1b1084859a811861e60e27186d67d267d3740152331f50fdbe67ce7226a76b4db24d79b674e6511d2f3de9a711da3369c565d781614f5d0c1a8021bc1ac18827 +doccontainersize 110188 +doccontainerchecksum a29c09a2e843188135265aaec690e09cd08fe29076a0378b308ec0e48aa7936ba0edfa7d6ad3ac808ec334bb5c2793a32d8ef625f4ad9b3fea40d4db567cae56 +docfiles size=43 + texmf-dist/doc/man/man1/pdfjam.1 + texmf-dist/doc/man/man1/pdfjam.man1.pdf + texmf-dist/doc/support/pdfjam/COPYING + texmf-dist/doc/support/pdfjam/README.md details="Readme" + texmf-dist/doc/support/pdfjam/VERSION + texmf-dist/doc/support/pdfjam/pdfjam.conf + texmf-dist/doc/support/pdfjam/tests.zip +runfiles size=11 + texmf-dist/scripts/pdfjam/pdfjam +catalogue-contact-repository https://github.com/rrthomas/pdfjam +catalogue-ctan /support/pdfjam +catalogue-license gpl2+ +catalogue-topics pdfprocess +catalogue-version 3.03 + +name pdfjam.aarch64-linux +category Package +revision 52858 +shortdesc aarch64-linux files of pdfjam +containersize 340 +containerchecksum dd29587b669deaa94f641423bb9324fd4da1042ccab7dc429215aadbf9ed07ae066ea559b0a1758d19630cc39424744c400ed8d189f082d9a38eb152c72e3381 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfjam + +name pdfjam.amd64-freebsd +category Package +revision 52858 +shortdesc amd64-freebsd files of pdfjam +containersize 340 +containerchecksum a46b6d3eb25dcc520b595d824162788c8b7ce9044e586ab30a6ed8a7629906f8e38e8acf6e6c9f8eb98a7374163ffda6232868b83f40514229606d8fff3cf1dd +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfjam + +name pdfjam.amd64-netbsd +category Package +revision 52858 +shortdesc amd64-netbsd files of pdfjam +containersize 340 +containerchecksum 6fdf63330f7a720e6084b3cf7abb0ed55b72af9cc7d28f8b073c949e76781bd3ba6456f750553156ef2c20c75213e3b75be4e38e4e9833c0b4c31f095fa40a55 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfjam + +name pdfjam.armhf-linux +category Package +revision 52858 +shortdesc armhf-linux files of pdfjam +containersize 340 +containerchecksum b2a838a10a0b58798f54cd64f51349af62398737ac82ebe8bf3392ad5c38458abb7e0ae8b8cd29f00841d8c36824af25494a689cb7022591188e2a37af698097 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfjam + +name pdfjam.i386-cygwin +category Package +revision 52858 +shortdesc i386-cygwin files of pdfjam +containersize 336 +containerchecksum 916b1e9075c792018d4868f33ea516b6d3736cbfe8edc13e5efefc3ed2f14822930be6c49821c3e33276823ce6ac01621bfe29c4288a528a9aaf4b223dfac301 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfjam + +name pdfjam.i386-freebsd +category Package +revision 52858 +shortdesc i386-freebsd files of pdfjam +containersize 340 +containerchecksum bc6d70050c9ac1e6e29c2341ed4ba6fc9f6e53f3288e7842bdc05358996ca62b7cb56b28c649b8c48c4adba3ef9943fa01ef26e7ff142ab94274c308cf2e9fe4 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfjam + +name pdfjam.i386-linux +category Package +revision 52858 +shortdesc i386-linux files of pdfjam +containersize 336 +containerchecksum a2147d9ec20c3eba24656f1d6c4235b85b65eba2b2276ad33113f8bb555b371b271a6f5a08a90935721019971ecf5b98c9b790b3135dabffbe46cb145c15e7b2 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfjam + +name pdfjam.i386-netbsd +category Package +revision 52858 +shortdesc i386-netbsd files of pdfjam +containersize 340 +containerchecksum 17e92fb69bab6f66719103bc0530d700a46308c69be63cb105159f22725a92ada4efb7312a02f1e99c6ea8f8bdda550ee9d51ede3bf6bbcf09e01409812f83b5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfjam + +name pdfjam.i386-solaris +category Package +revision 52858 +shortdesc i386-solaris files of pdfjam +containersize 340 +containerchecksum 3169175b1d7891267e31e312efb94656f77351661c469d56180fb0cc0c11b0adaaebb2b04a155b46cfeed8b1f484e23cae4b21517bc5422efc2d578001b5acfb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfjam + +name pdfjam.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pdfjam +containersize 336 +containerchecksum 0ffc31f51048591f0138a319d2708ba6b586a1ff26bec80a1d32c4afe1561d01871c27fd685c8f820d6f404f3093352d11a817458501d963346a81781f195c6b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pdfjam + +name pdfjam.x86_64-cygwin +category Package +revision 52858 +shortdesc x86_64-cygwin files of pdfjam +containersize 340 +containerchecksum c827439253bf618d5032f5dc866e1655e9f1d3f85c6fb824c02d48d605f0d038931a17ce0a8dd037f646f19d3a2df6b86dad7ed09d42c42699c749df77112965 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfjam + +name pdfjam.x86_64-darwinlegacy +category Package +revision 52858 +shortdesc x86_64-darwinlegacy files of pdfjam +containersize 348 +containerchecksum a3cc78eddb815e411c3fec28abd2fbb9f0b8c60e66957d1e40b9adc5feb6bc154716d9aecb906b325f92d0921efa20f2333bb4cfe66ae706ba78e05b83b47165 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfjam + +name pdfjam.x86_64-linux +category Package +revision 52858 +shortdesc x86_64-linux files of pdfjam +containersize 336 +containerchecksum b94cc30cf1c11b7a8e5ae52c9986a4d70c20db617d7b29bf114ee32056798a3bc5dee361a6c95e7a7ea7363ef16e8c90100a42dd657824faeb1b58e569332fd6 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfjam + +name pdfjam.x86_64-linuxmusl +category Package +revision 52858 +shortdesc x86_64-linuxmusl files of pdfjam +containersize 344 +containerchecksum e234f966a5fbe7ca3e5f59c8854607aa31f051b2b868b94a06d3591d0a51a457b673f3e9a328c81c7903161bdc4987ad1bc94587bfbb7302a0a429d8f362ef26 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfjam + +name pdfjam.x86_64-solaris +category Package +revision 52858 +shortdesc x86_64-solaris files of pdfjam +containersize 340 +containerchecksum 458d0905ab6fa1052f944e6289891002ac6de16731df8c8119dabe300c7982a679226de7f6dab0e1aa0ff403a232d44c8a9a65d6fb4a9268c4bed8735c94e807 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfjam + +name pdflatexpicscale +category Package +revision 46617 +shortdesc Support software for downscaling graphics to be included by pdfLaTeX +longdesc The package provides a script to scale pictures down to a +longdesc target resolution before creating a PDF document with pdfLaTeX. +depend pdflatexpicscale.ARCH +containersize 3124 +containerchecksum d36dcc4d70156d52bcaf668d620c8eee5db8914473f943412ea5ad5c8bde673a6715fd5a69d13e502a5d4fe0b1e0e55099432c4e0e5e02bd5f6155ca5804c3f3 +doccontainersize 86376 +doccontainerchecksum 64440f794e88c08bfeeac75d6d4174eccb800125c8d57e3b0be3ac6883c04790d422cb05cbed6be7335ab2e4d2e6bb2c8c0137c04160db126674960ddb7603e1 +docfiles size=35 + texmf-dist/doc/support/pdflatexpicscale/README details="Readme" + texmf-dist/doc/support/pdflatexpicscale/pdflatexpicscale.pdf details="Package documentation" + texmf-dist/doc/support/pdflatexpicscale/pdflatexpicscale.tex + texmf-dist/doc/support/pdflatexpicscale/testprinter.ps +runfiles size=2 + texmf-dist/scripts/pdflatexpicscale/pdflatexpicscale.pl +catalogue-ctan /support/pdflatexpicscale +catalogue-license lppl +catalogue-topics graphics-prep +catalogue-version 0.32 + +name pdflatexpicscale.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdflatexpicscale +containersize 348 +containerchecksum 08c853b33e2847ba035a0390062d36ee515a79920dfd2bf9b2959e3d81369538ec326699b6ff7397a21b638f46750b9b4bbaf90cce871bd57b6e385616bc942d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdflatexpicscale + +name pdflatexpicscale.amd64-freebsd +category Package +revision 41779 +shortdesc amd64-freebsd files of pdflatexpicscale +containersize 352 +containerchecksum 189b89bfd5266acfafdccaf047433a12bd025c5a1110e68bf48daf528ac4e8b4441565194bbf2a7aef8ad58f2d005a33f6980820aa7c874951905ee5116728d0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdflatexpicscale + +name pdflatexpicscale.amd64-netbsd +category Package +revision 41779 +shortdesc amd64-netbsd files of pdflatexpicscale +containersize 348 +containerchecksum ad3c959c9c4fb1ed537525d935b92f4449531ffed146542476dfadf6ece1dd01baa1e73ec56df2effb5dcb070bd7aead379df46b3496373bf9201dc90bd15124 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdflatexpicscale + +name pdflatexpicscale.armhf-linux +category Package +revision 41779 +shortdesc armhf-linux files of pdflatexpicscale +containersize 348 +containerchecksum 9323944d6f1b5b6b00725aa2ed7fdf68e5c960bbc9db4d62f57aaee84a7e92721bbbfb83e6576001a649d6fc59fe157f73bcd92ebac257776bf8eb63107f880f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdflatexpicscale + +name pdflatexpicscale.i386-cygwin +category Package +revision 41779 +shortdesc i386-cygwin files of pdflatexpicscale +containersize 344 +containerchecksum 8c64d5e08941d4e6affa0e7ce64b96106ac68b515108a5aa81b501921c48b468fbefb32815d3253c8cb9d0890dcd0b3496f371e5f885c35e7eca5c85b01fdbab +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdflatexpicscale + +name pdflatexpicscale.i386-freebsd +category Package +revision 41779 +shortdesc i386-freebsd files of pdflatexpicscale +containersize 352 +containerchecksum bc1dcb86ddda08a9a6dd1da24fc8782f5ff18ef9100bb127bf3e999ca0acdbfc3b46988193a180a20b93f51e9d6f0ed870dce88f4116249e09f3c3e1a2800a01 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdflatexpicscale + +name pdflatexpicscale.i386-linux +category Package +revision 41779 +shortdesc i386-linux files of pdflatexpicscale +containersize 348 +containerchecksum 3862c1bfa228a814e01e63683ee67b4307113f8b268a434add8d99fc4f9c78204a36f5894789ce95deafe8c94ec85cb6b67e0e71dfa051a3853aa6285bdbb1bf +binfiles arch=i386-linux size=1 + bin/i386-linux/pdflatexpicscale + +name pdflatexpicscale.i386-netbsd +category Package +revision 41779 +shortdesc i386-netbsd files of pdflatexpicscale +containersize 348 +containerchecksum c813240ac3400442f1d1c6d0a0db0c1bda7ddfbd80a9c39815525311148f1a9ffa6120eece173a3b4dbfc73c3f565e5011c55fc7f7027186138379a18cde340c +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdflatexpicscale + +name pdflatexpicscale.i386-solaris +category Package +revision 41779 +shortdesc i386-solaris files of pdflatexpicscale +containersize 348 +containerchecksum 71ded639e7a935a38daf0e5685be8f4f42bd009d6be385d29c4288068dd0e981d79f2ec3a192bb1989956f9ba88acbe02c463cee4a6a43597b2318b476a37ade +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdflatexpicscale + +name pdflatexpicscale.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pdflatexpicscale +containersize 348 +containerchecksum 8bbfee991bf300d9a673f479894a85a1a57687a50a24b533ceb6eaa30c8b57d2f3ff87df1908cf3deb138c80bfd59a80f3501af56f41a823e70a33870566ae47 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pdflatexpicscale + +name pdflatexpicscale.win32 +category Package +revision 41779 +shortdesc win32 files of pdflatexpicscale +containersize 696 +containerchecksum bce67378b5a28b599a3bb064d4a495e919d5959833d317937b55b9b917093eaf046ebb41acb5c4b5cd6f49f6a94f400b89b686e33ee3f31e62bba006af69edc8 +binfiles arch=win32 size=1 + bin/win32/pdflatexpicscale.exe + +name pdflatexpicscale.x86_64-cygwin +category Package +revision 41779 +shortdesc x86_64-cygwin files of pdflatexpicscale +containersize 352 +containerchecksum 637b346b1b9f81385ed75dfbb6cd50af8d5220aee7dbcabe4ac404293a693f2c3adbcec9e392a11b0030f0f2cf5cd7620648be7e537d5af7cab862ed433bc825 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdflatexpicscale + +name pdflatexpicscale.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdflatexpicscale +containersize 356 +containerchecksum 2f2b05bb6816d6418f00567927c97d6ec755e4939685d9f733d90b0472c0e4d2d36da57fce08129d108197d2855327cc1f3803708756dd9311ae20af1aa8ccd7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdflatexpicscale + +name pdflatexpicscale.x86_64-linux +category Package +revision 41779 +shortdesc x86_64-linux files of pdflatexpicscale +containersize 348 +containerchecksum f4325f360b5a5541871d5b9365c8b9f74e5e6e6f696c0a81210d2861b46be59f28adbbe620319c6da2efac95871883a287734e4c04026622c84c64be753b35e0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdflatexpicscale + +name pdflatexpicscale.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdflatexpicscale +containersize 352 +containerchecksum c2f2617efad6dc6254b569d9b1cb69dd9987fc759a9f204fb89da4276a7557045b24bc4f8f80df3a86e61dbe5cfbf317751f6325c8d5df04ca2c951470ed027b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdflatexpicscale + +name pdflatexpicscale.x86_64-solaris +category Package +revision 41779 +shortdesc x86_64-solaris files of pdflatexpicscale +containersize 348 +containerchecksum c5b3b6f9f7ffd8cc8d8e1c13bbb04aecad5369a5f2535fd7f5be188b5224fccf894aa52e34a5dcc1b993953c4443a3de0acdbf4654752b2f0f21b7b64e9a2a66 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdflatexpicscale + +name pdflscape +category Package +revision 53047 +shortdesc Make landscape pages display as landscape +relocated 1 +longdesc The package adds PDF support to the landscape environment of +longdesc package lscape, by setting the PDF /Rotate page attribute. +longdesc Pages with this attribute will be displayed in landscape +longdesc orientation by conforming PDF viewers. +containersize 2252 +containerchecksum c343f0527f21421f26396a6210f7932786a222a437b43d6b2bf1c53339633a0aa8337843222d92048a6a5a41f0952aa2fde6e2bfb2e181cf811383a23ffadadb +doccontainersize 298264 +doccontainerchecksum 5fccb7dc5607f1196d6df6a1a68d010c0b9eea10854cdf2e133f31dc4095f101efc05abcf9e980a3e05375ba29ce319dc13385790c2261778fde54d3b94d1251 +docfiles size=75 + RELOC/doc/latex/pdflscape/README.md + RELOC/doc/latex/pdflscape/pdflscape.pdf details="Package documentation" +srccontainersize 6000 +srccontainerchecksum 08cc0550cb76eff49ab4cc9f357f22a7c8086b2802eb191237bbf79acce2b134a2bf3ea28a8324d0140ac785afb8a928a8f7b8cc7e58bdd7e9d8b1d3a66ee7e5 +srcfiles size=6 + RELOC/source/latex/pdflscape/pdflscape.dtx +runfiles size=2 + RELOC/tex/latex/pdflscape/pdflscape.sty +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-license lppl1.3 +catalogue-topics landscape layout +catalogue-version 0.12 + +name pdfmanagement-testphase +category Package +revision 58511 +shortdesc LaTeX PDF management testphase bundle +relocated 1 +longdesc This is a temporary package, which is used during a test phase +longdesc to load the new PDF management code of LaTeX. The new PDF +longdesc management code offers backend independant interfaces to +longdesc central PDF dictionaries, tools to create annotations, form +longdesc Xobjects, to embed files, and to handle PDF standards. The code +longdesc is provided during a testphase as independant package to allow +longdesc users and package authors to safely test the code. At a later +longdesc stage it will be integrated into the LaTeX kernel (or in parts +longdesc into permanent support packages), and the current testphase +longdesc bundle will be removed. +containersize 40512 +containerchecksum fa4a79e078e2aa29862db99a336a614387df52a019d0a42b6bbf4ff8d222bf44a16577d3d491ca0f3c8527a0dfd1bab1839db891092dd0a8f3480744fba2fcba +doccontainersize 5755264 +doccontainerchecksum 03503b2f0e4390bcde34266610fa822c192fac1cf5c800edc2ad77c1b925a964e9564d12fe9104f675b243bb757a96a355aac26b0cd95ff701210b3afca2d15f +docfiles size=1797 + RELOC/doc/latex/pdfmanagement-testphase/CHANGELOG.md + RELOC/doc/latex/pdfmanagement-testphase/README.md details="Readme" + RELOC/doc/latex/pdfmanagement-testphase/hyperref-generic.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3backend-testphase.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdfannot.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdfdict.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffield.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffile.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdfmanagement.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdfmeta.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdftools.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdfxform.pdf + RELOC/doc/latex/pdfmanagement-testphase/ltdocinit.pdf + RELOC/doc/latex/pdfmanagement-testphase/pdfmanagement-firstaid.pdf + RELOC/doc/latex/pdfmanagement-testphase/pdfmanagement-testphase.pdf details="Package documentation" +srccontainersize 92976 +srccontainerchecksum 8bf95f64fdee7517af5f3c312c32f1c705d9b2348cae1ec44c76855b7729641509e6f89192a5d415357fbcae794178767fcfa5eca72e0d688246a6a5c5ca03e8 +srcfiles size=124 + RELOC/source/latex/pdfmanagement-testphase/hyperref-generic.dtx + RELOC/source/latex/pdfmanagement-testphase/l3backend-testphase.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdfannot.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdfdict.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffield.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffile.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdfmanagement.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdfmeta.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdftools.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdfxform.dtx + RELOC/source/latex/pdfmanagement-testphase/ltdocinit.dtx + RELOC/source/latex/pdfmanagement-testphase/pdfmanagement-firstaid.dtx + RELOC/source/latex/pdfmanagement-testphase/pdfmanagement-testphase.dtx + RELOC/source/latex/pdfmanagement-testphase/pdfmanagement-testphase.ins +runfiles size=78 + RELOC/tex/latex/pdfmanagement-testphase/color-ltx.sty + RELOC/tex/latex/pdfmanagement-testphase/hgeneric-testphase.def + RELOC/tex/latex/pdfmanagement-testphase/hyperref-colorschemes.def + RELOC/tex/latex/pdfmanagement-testphase/hyperxmp-patches-tmp-ltx.sty + RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-dvipdfmx.def + RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-dvips.def + RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-dvisvgm.def + RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-luatex.def + RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-pdftex.def + RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-xetex.def + RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase.lua + RELOC/tex/latex/pdfmanagement-testphase/l3pdffield-testphase.sty + RELOC/tex/latex/pdfmanagement-testphase/l3ref-tmp.sty + RELOC/tex/latex/pdfmanagement-testphase/pdflscape-ltx.sty + RELOC/tex/latex/pdfmanagement-testphase/pdfmanagement-firstaid.sty + RELOC/tex/latex/pdfmanagement-testphase/pdfmanagement-testphase.ltx + RELOC/tex/latex/pdfmanagement-testphase/pdfmanagement-testphase.sty + RELOC/tex/latex/pdfmanagement-testphase/transparent-ltx.sty + RELOC/tex/latex/pdfmanagement-testphase/xcolor-patches-tmp-ltx.sty +catalogue-contact-bugs https://github.com/latex3/pdfresources/issues +catalogue-contact-repository https://github.com/latex3/pdfresources +catalogue-ctan /macros/latex/contrib/pdfmanagement-testphase +catalogue-license lppl1.3c +catalogue-topics latex-devel pdf-feat +catalogue-version 0.95c + +name pdfmarginpar +category Package +revision 23492 +shortdesc Generate marginpar-equivalent PDF annotations +relocated 1 +longdesc The package provides the \pdfmarginpar command which is similar +longdesc in spirit to \marginpar. However, it creates PDF annotations +longdesc which may be viewed with Adobe Reader in place of marginal +longdesc texts. Small icons indicate the in-text position where the +longdesc message originates, popups provide the messages themselves. +longdesc Thus bugfixes and other such communications are clearly visible +longdesc together when viewing the document, while the document itself +longdesc is not obscured. +containersize 2424 +containerchecksum 1cfb39ec9982fce753e3c0040123fc0faf39d94a41cac95dd0d189f2f5dd21f0a03c2f7e26de999097905b2bb32ec8d73e6dfa808c8ed2a49610da436639767c +doccontainersize 381552 +doccontainerchecksum 24f2fe0616b0e6872da321bc7878f423df54057c9ed7b62eac4e3de36df4ba9a5f0c4481392902130038c8f2da098d2fc48be34056a03d6e764a01b66c2649db +docfiles size=136 + RELOC/doc/latex/pdfmarginpar/README details="Readme" + RELOC/doc/latex/pdfmarginpar/pdfmarginpar.pdf details="Package documentation" + RELOC/doc/latex/pdfmarginpar/pdfmarginpar.tex + RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.pdf + RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.png + RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.tex + RELOC/doc/latex/pdfmarginpar/pgfmanual-en-macros.tex + RELOC/doc/latex/pdfmarginpar/pgfplots-macros.tex +runfiles size=2 + RELOC/tex/latex/pdfmarginpar/pdfmarginpar.sty +catalogue-also pdfcomment +catalogue-ctan /macros/latex/contrib/pdfmarginpar +catalogue-license gpl +catalogue-topics pdf-feat +catalogue-version 0.92 + +name pdfoverlay +category Package +revision 57923 +shortdesc A LaTeX style for overlaying text on a PDF +relocated 1 +longdesc It is often desirable to take an exisiting PDF and easily add +longdesc annotations or text overlaying the PDF. This might arise if you +longdesc wish to add comments to a PDF, fill in a PDF form, or add text +longdesc to a PDF where space has been left for notes. This package +longdesc provides a simple interface to do this without having to resort +longdesc to inserting one page at a time. Some or all of the pages of +longdesc the PDF can be included and not all pages of the PDF need have +longdesc overlayed text. It is also possible to include text between +longdesc pages of the PDF. Another advantage of this package is that the +longdesc overlayed text can be set as normal flowing from one page to +longdesc another or with manual page breaks if you wish. It is also +longdesc possible to use any standard method to position text at +longdesc arbitrary places on a given page. +containersize 3000 +containerchecksum abb74e43656273b8b7944ced516239ce7fb33ca57daf137d1576dc3c5d013982a10f26e0196669f821412a58dd2da36411ef1fa8e81e4e61103ae583ebec0494 +doccontainersize 547476 +doccontainerchecksum 2fc549ab29625cbc2876655d6414dbbf211ce935ed9e676561c40c96045822aa128d7d55f0431ca059e3f37ae6d8e68984652381f31809dcba378c85c6f15b54 +docfiles size=135 + RELOC/doc/latex/pdfoverlay/README.md details="Readme" + RELOC/doc/latex/pdfoverlay/pdfoverlay.pdf details="Package documentation" +srccontainersize 5852 +srccontainerchecksum d89a4cad67a338ecab1c413c36a451018d7ad86452a470c437a91f023019c78392403da4f4c57c199a4487b6011c8b43b5f51607a6a24014b7cd4eab2e063fc2 +srcfiles size=7 + RELOC/source/latex/pdfoverlay/pdfoverlay.dtx + RELOC/source/latex/pdfoverlay/pdfoverlay.ins +runfiles size=3 + RELOC/tex/latex/pdfoverlay/pdfoverlay.sty +catalogue-contact-bugs https://github.com/dcpurton/pdfoverlay/issues +catalogue-contact-repository https://github.com/dcpurton/pdfoverlay +catalogue-ctan /macros/latex/contrib/pdfoverlay +catalogue-license lppl1.3c +catalogue-topics graphics-incl +catalogue-version 1.2a + +name pdfpagediff +category Package +revision 37946 +shortdesc Find difference between two PDF's +relocated 1 +longdesc Find difference between two PDF's +containersize 2924 +containerchecksum ce28e8160b14d0833b57445392237dceab536108a9d96942dcc0adf5305c149ba08269d697ab8508d8ba05dbc59dd972dd242cf7c4cd12e3d3e857eb885e5277 +doccontainersize 740816 +doccontainerchecksum dbdfc61b7f7bcafa597e439085f9624a48b734b2adbf53dd58ba6186b3597180b7ad3fc757acbd07c6466276a9e865bc154245e84d28b1e291004cdde64f55ea +docfiles size=294 + RELOC/doc/latex/pdfpagediff/README + RELOC/doc/latex/pdfpagediff/doc/Makefile + RELOC/doc/latex/pdfpagediff/doc/ar1.png + RELOC/doc/latex/pdfpagediff/doc/ar2.png + RELOC/doc/latex/pdfpagediff/doc/ar3.png + RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.pdf details="Package documentation" + RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.sty + RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.tex + RELOC/doc/latex/pdfpagediff/example/file1.pdf + RELOC/doc/latex/pdfpagediff/example/file2.pdf + RELOC/doc/latex/pdfpagediff/example/ltest.pdf + RELOC/doc/latex/pdfpagediff/example/ltest.tex + RELOC/doc/latex/pdfpagediff/manifest.txt +runfiles size=2 + RELOC/tex/latex/pdfpagediff/pdfpagediff.sty +catalogue-ctan /macros/latex/contrib/pdfpagediff +catalogue-license lppl1 +catalogue-topics pdf-view pdfprocess +catalogue-version 1.4 + +name pdfpages +category Package +revision 58212 +shortdesc Include PDF documents in LaTeX +relocated 1 +longdesc This package simplifies the inclusion of external multi-page +longdesc PDF documents in LaTeX documents. Pages may be freely selected +longdesc and similar to psnup it is possible to put several logical +longdesc pages onto each sheet of paper. Furthermore a lot of hypertext +longdesc features like hyperlinks and article threads are provided. The +longdesc package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is +longdesc even possible to use this package to insert PostScript files, +longdesc in addition to PDF files. +depend eso-pic +depend graphics +depend oberdiek +depend tools +containersize 14020 +containerchecksum a2b9394389ef8a14f6e82b4b62e33fa1cc18c2f7c1069109afdec8ad5769b4869c10b8cc50118aaaa6af87b08150979744cd16898804bac40daa043e49d36aa9 +doccontainersize 320504 +doccontainerchecksum b71da54d15d16ea74e72e09a46403d545e32c8e0fd44abf2b3bb7dff7ed1cc51c93bfacaa482037adb2b0010b060366836c25e66def3144ed504bb6623629f80 +docfiles size=89 + RELOC/doc/latex/pdfpages/dummy-l.pdf + RELOC/doc/latex/pdfpages/dummy.pdf + RELOC/doc/latex/pdfpages/pdf-ex.tex + RELOC/doc/latex/pdfpages/pdf-hyp.tex + RELOC/doc/latex/pdfpages/pdf-toc.tex + RELOC/doc/latex/pdfpages/pdfpages.pdf details="Package documentation" +srccontainersize 35164 +srccontainerchecksum 979c80e7590d9d1b40d667a69da2e2311ecc814575189d8411f13a1095ca3f09dc5ac97a40d4eea2d6a22616d1312c3e4aca45777610f365d24ef97b9acffd50 +srcfiles size=46 + RELOC/source/latex/pdfpages/README + RELOC/source/latex/pdfpages/pdfpages.dtx + RELOC/source/latex/pdfpages/pdfpages.ins +runfiles size=25 + RELOC/tex/latex/pdfpages/pdfpages.sty + RELOC/tex/latex/pdfpages/ppdvipdfmx.def + RELOC/tex/latex/pdfpages/ppdvips.def + RELOC/tex/latex/pdfpages/ppluatex.def + RELOC/tex/latex/pdfpages/ppnull.def + RELOC/tex/latex/pdfpages/pppdftex.def + RELOC/tex/latex/pdfpages/ppvtex.def + RELOC/tex/latex/pdfpages/ppxetex.def +catalogue-ctan /macros/latex/contrib/pdfpages +catalogue-license lppl1.3c +catalogue-topics graphics-incl pdf-feat +catalogue-version 0.5t + +name pdfpc +category Package +revision 57735 +shortdesc Define data for the pdfpc presentation viewer +relocated 1 +longdesc This packages allows to define additional meta data within the +longdesc PDF file which can be interpreted by the PDF presenter console +longdesc (pdfpc) program. pdfpc depends on kvoptions, xstring, iftex, +longdesc and hyperxmp. +containersize 2252 +containerchecksum d6999d1240945d2813e189f836b102a4ead5b1ccfd469be794a0bbc9ec6c65573783b9409f8a1ab352f2742e435051d2ea0ecdd6814adc629da525a89e831e2e +doccontainersize 175708 +doccontainerchecksum d8fc1f2ac7c4e6279ecb1515d845e29dde39bae7166f44785064d7f7686e8775ef69e82480c42fc68a8d6cc92b9ad7deac3bd236fdbf57a93596e5e99835a068 +docfiles size=46 + RELOC/doc/latex/pdfpc/README.md details="Readme" + RELOC/doc/latex/pdfpc/pdfpc-doc.pdf details="Package documentation" + RELOC/doc/latex/pdfpc/pdfpc-doc.tex +runfiles size=2 + RELOC/tex/latex/pdfpc/pdfpc.sty +catalogue-contact-bugs https://github.com/pdfpc/pdfpc/ +catalogue-contact-home https://pdfpc.github.io/ +catalogue-ctan /macros/latex/contrib/pdfpc +catalogue-license gpl3+ +catalogue-topics presentation +catalogue-version 0.6.0 + +name pdfpc-movie +category Package +revision 48245 +shortdesc Pdfpc viewer-compatible hyperlinks to movies +relocated 1 +longdesc This LaTeX2e package provides a command \pdfpcmovie for +longdesc embedding (hyperlinking) movies in a way compatible with the +longdesc PDF Presenter Console (pdfpc), a GPL2-licensed multi-monitor +longdesc PDF presentation viewer application available on GitHub and +longdesc shipped with some LINUX distributions such as Debian, Fedora, +longdesc and Arch. The package depends on etoolbox, hyperref, and +longdesc pgfkeys. +containersize 2196 +containerchecksum 131ebad8b05395d0ca812fe50a103847393e4b00bc5574109ae3644b6500c58b86c48e33aab548c2404bd08ec6b893b9461d76f957111c7e653fec8473b8e63a +doccontainersize 74980 +doccontainerchecksum fef635a0d0a48a6cb35fe8c3e0b17342b84bbeacd1604e01e9fa1217ee92aef4fd073c1db5aa72161082c6dbb273f1a2fc55a2bb057cf3fd12796de8844df614 +docfiles size=20 + RELOC/doc/latex/pdfpc-movie/README.md details="Readme" + RELOC/doc/latex/pdfpc-movie/pdfpc-movie-doc.pdf details="Package documentation" +srccontainersize 5716 +srccontainerchecksum e4080ab714b791e2204b8215b70a0b979b9810c5c69c69234f6aefd4b02bf182245b0e599040f56b4814c6486ae6b7f715d3bb597c03475c38f4d5bc624777fe +srcfiles size=6 + RELOC/source/latex/pdfpc-movie/pdfpc-movie-doc.dtx + RELOC/source/latex/pdfpc-movie/pdfpc-movie.dtx + RELOC/source/latex/pdfpc-movie/pdfpc-movie.ins +runfiles size=2 + RELOC/tex/latex/pdfpc-movie/pdfpc-movie.sty +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-license lppl1.3c +catalogue-topics pdf-view multimedia presentation +catalogue-version 1.0 + +name pdfprivacy +category Package +revision 45985 +shortdesc A LaTeX package to remove or suppress pdf meta-data +relocated 1 +longdesc Creating pdfs with pdfLaTeX populates several pdf meta-data +longdesc fields such as date/time of creation/modification, information +longdesc about the LaTeX installation (e.g., pdfTeX version), and the +longdesc relative paths of included pdfs. The pdfprivacy package +longdesc provides support for emptying several of these pdf meta-data +longdesc fields as well as suppressing some pdfTeX meta-data entries in +longdesc the resulting pdf. +containersize 1488 +containerchecksum 8ec360bcfa5056b240091f1b2b5e6562656b15379bcf74b161899ddce41cb70d08cfdfb73b9497efd48e192fde11bfb4ffc59ed99059e1b6f6619e34b7f39bcd +doccontainersize 263692 +doccontainerchecksum 81e2d8a0e5f5889efbf96eae5e879378fd0b4cdfa9db66283e34836b767d27d216e35822f9225eadd8816e46c503443055dc822f221b35134ecf95fa2e0d22ab +docfiles size=69 + RELOC/doc/latex/pdfprivacy/LICENSE + RELOC/doc/latex/pdfprivacy/README.md details="Readme" + RELOC/doc/latex/pdfprivacy/pdfprivacy.pdf details="Package documentation" +srccontainersize 5432 +srccontainerchecksum 7c31f0fc5836adffb8bb9417fa90c5acdd1cfab2f653d79c00cf5c4552435ecbf915cdc53ff4cbed796013c0c737c25fe779e9410ccf646090d5071139df5069 +srcfiles size=5 + RELOC/source/latex/pdfprivacy/pdfprivacy.dtx + RELOC/source/latex/pdfprivacy/pdfprivacy.ins +runfiles size=1 + RELOC/tex/latex/pdfprivacy/pdfprivacy.sty +catalogue-contact-bugs https://github.com/LaurensS/pdfprivacy/issues +catalogue-contact-repository https://github.com/LaurensS/pdfprivacy +catalogue-ctan /macros/latex/contrib/pdfprivacy +catalogue-license lppl1.3c +catalogue-topics pdf-feat pdf-view pdfprocess +catalogue-version 1.0 + +name pdfreview +category Package +revision 50100 +shortdesc Annotate PDF files with margin notes +relocated 1 +longdesc This package lets you add comments in the page margins of PDF +longdesc files, e.g. when reviewing manuscripts or grading reports. The +longdesc PDF file to be annotated is included, one page at a time, as +longdesc graphics, in a manner similar to the pdfpages package. Notes +longdesc are placed in the margin next to the included graphics using a +longdesc grid of help lines. Alternatively, only numbers are placed in +longdesc the page margins, and the notes are collected into a numbered +longdesc list at the end of the document. Note that this package is not +longdesc intended for adding notes directly to the LaTeX source of the +longdesc document that is being reviewed; instead, the document +longdesc undergoing review is already in PDF format and remains +longdesc unchanged. Also note that this package does not produce the +longdesc usual PDF "sticky notes" that must be opened by clicking on +longdesc them; instead, the notes are simply shown as text. This package +longdesc depends on the following other LaTeX package: adjustbox, calc, +longdesc geometry, graphicx, grffile, ifthen, kvoptions, tikz, ulem, and +longdesc xstring. +containersize 6448 +containerchecksum 1cb41c081230f601eb627d81118a3832597e97c2e0565f48f584e8f4b6d039ce903cdca54fea4591a5c9707d5145ff45470858dd2e39d3b18a2e964cb380301f +doccontainersize 576684 +doccontainerchecksum 72f7a2083c7bfae24d3a4cae397925f9d02555587c59cfea8d78b8fcc0de5db24367968fd27799f4148865ca7c2a4c2dacd11269d1d71c36f039fdc913a532e2 +docfiles size=165 + RELOC/doc/latex/pdfreview/README.md details="Readme" + RELOC/doc/latex/pdfreview/lorem-ipsum.pdf + RELOC/doc/latex/pdfreview/pdfreview.pdf details="Package documentation" + RELOC/doc/latex/pdfreview/pdfreview.sh + RELOC/doc/latex/pdfreview/pdfreview.tex + RELOC/doc/latex/pdfreview/pdfshrink.sh + RELOC/doc/latex/pdfreview/sample.pdf details="Example of use" + RELOC/doc/latex/pdfreview/sample.tex +runfiles size=5 + RELOC/tex/latex/pdfreview/pdfreview.sty +catalogue-ctan /macros/latex/contrib/pdfreview +catalogue-license lppl +catalogue-topics graphics-incl marginal editorial teaching +catalogue-version 1.2 + +name pdfscreen +category Package +revision 42428 +shortdesc Support screen-based document design +relocated 1 +longdesc An extension of the hyperref package to provide a screen-based +longdesc document design. This package helps to generate pdf documents +longdesc that are readable on screen and will fit the screen's aspect +longdesc ratio. Also it can be used with various options to produce +longdesc regular print versions of the same document without any extra +longdesc effort. +containersize 84168 +containerchecksum e8a3fecc3aedfb87156c1dfeff4673650a8dfd31109e3d76e7f51dd99b1610aee086a2fd183d48cfe1403dadbc6a8ba84fcfab5ea832b43b8a5128bd07612112 +doccontainersize 407468 +doccontainerchecksum 8f4b1f6876b0adfcefb4a9b1ea5f9c8ffae0fb4ffc245fd75f631b172dc592dc82ffaf68b37e9c1907db5275f317b444966a466ab6c8e7b20b80535842230794 +docfiles size=216 + RELOC/doc/latex/pdfscreen/logo.pdf + RELOC/doc/latex/pdfscreen/manual-print.pdf details="Manual, for printing" + RELOC/doc/latex/pdfscreen/manual-screen.pdf details="Manual, for screen viewing" + RELOC/doc/latex/pdfscreen/manual.tex + RELOC/doc/latex/pdfscreen/nopanel.pdf + RELOC/doc/latex/pdfscreen/pdfscreen.cfg.specimen + RELOC/doc/latex/pdfscreen/portrait.pdf + RELOC/doc/latex/pdfscreen/print.pdf + RELOC/doc/latex/pdfscreen/slide.pdf + RELOC/doc/latex/pdfscreen/slide.tex + RELOC/doc/latex/pdfscreen/square.pdf + RELOC/doc/latex/pdfscreen/tex.png + RELOC/doc/latex/pdfscreen/widepanel.pdf +runfiles size=61 + RELOC/tex/latex/pdfscreen/but.pdf + RELOC/tex/latex/pdfscreen/button.pdf + RELOC/tex/latex/pdfscreen/left.pdf + RELOC/tex/latex/pdfscreen/overlay.pdf + RELOC/tex/latex/pdfscreen/overlay0.pdf + RELOC/tex/latex/pdfscreen/overlay1.pdf + RELOC/tex/latex/pdfscreen/overlay10.pdf + RELOC/tex/latex/pdfscreen/overlay2.pdf + RELOC/tex/latex/pdfscreen/overlay3.pdf + RELOC/tex/latex/pdfscreen/overlay4.pdf + RELOC/tex/latex/pdfscreen/overlay5.pdf + RELOC/tex/latex/pdfscreen/overlay6.pdf + RELOC/tex/latex/pdfscreen/overlay7.pdf + RELOC/tex/latex/pdfscreen/overlay8.pdf + RELOC/tex/latex/pdfscreen/overlay9.pdf + RELOC/tex/latex/pdfscreen/pdfscreen.sty + RELOC/tex/latex/pdfscreen/right.pdf +catalogue-ctan /macros/latex/contrib/pdfscreen +catalogue-license lppl +catalogue-topics hyper presentation +catalogue-version 1.5 + +name pdfslide +category Package +revision 15878 +shortdesc Presentation slides using pdfTeX +relocated 1 +longdesc This is a package for use with pdfTeX, to make nice +longdesc presentation slides. Its aims are: to devise a method for +longdesc easier technical presentation; to help the mix of mathematical +longdesc formulae with text and graphics which other present day +longdesc document processing tools fail to accomplish; to exploit the +longdesc platform independence of TeX so that presentation documents +longdesc become portable; and to offer the freedom and possibilities of +longdesc using various backgrounds and other embellishments that a user +longdesc can imagine to have in as presentation. The package can make +longdesc use of the facilities of the PPower4 post-processor. +containersize 43896 +containerchecksum bdb1d91b587375a0d72e317e4a762b9cef984dfa36d94fd7bd13a3e22941f0f1f4c981138b805613f7a62f4d09c7c781fa9e4e5d4b5019a749a8f8a700bf5540 +doccontainersize 165824 +doccontainerchecksum 92008d1e461e5309649ec5160b7dd3796455f04e923f4e5c8593a3a4cc76f704639206c48a4af13bfa9fa3fd735b03ad419f07d1222a45d093a6824aafcb8df1 +docfiles size=68 + RELOC/doc/latex/pdfslide/demo.pdf details="Narrative demonstration of the package" + RELOC/doc/latex/pdfslide/manual.tex + RELOC/doc/latex/pdfslide/meta.mp + RELOC/doc/latex/pdfslide/mpgraph.pdf +runfiles size=25 + RELOC/tex/latex/pdfslide/bg.jpg + RELOC/tex/latex/pdfslide/d12.jpg + RELOC/tex/latex/pdfslide/metablue.pdf + RELOC/tex/latex/pdfslide/metagray.pdf + RELOC/tex/latex/pdfslide/metagreen.pdf + RELOC/tex/latex/pdfslide/metalgray.pdf + RELOC/tex/latex/pdfslide/pdfslide.cfg + RELOC/tex/latex/pdfslide/pdfslide.sty + RELOC/tex/latex/pdfslide/slide.clo +catalogue-also prosper +catalogue-ctan /macros/latex/contrib/pdfslide +catalogue-license lppl +catalogue-topics presentation + +name pdfsync +category Package +revision 20373 +shortdesc Provide links between source and PDF +relocated 1 +longdesc The package runs with pdfTeX or XeTeX, and creates an auxiliary +longdesc file with geometrical information to permit references back and +longdesc forth between source and PDF, assuming a conforming editor and +longdesc PDF viewer. +containersize 3872 +containerchecksum 0a7f183fd83f52016d499f8aefface745fee8351bafb4abb467166553d742f91ead7377fc3ce8111bc57253431aedf70f4b540975a1c139017f7d02ccebb6ca4 +doccontainersize 259692 +doccontainerchecksum 7e103ba84fd41acbed007f4acceb0188372a4984977a3fbee3bf4484612c6e0621a934709982407bd1d59a69167c1d2f5ebd4b94f73bc502baa8a4830fe3f983 +docfiles size=66 + RELOC/doc/latex/pdfsync/README details="Readme" + RELOC/doc/latex/pdfsync/pdfsync-doc.pdf details="Package documentation" + RELOC/doc/latex/pdfsync/pdfsync-doc.tex +runfiles size=3 + RELOC/tex/latex/pdfsync/pdfsync.sty +catalogue-also vpe +catalogue-contact-repository http://itexmac.sourceforge.net/pdfsync.html +catalogue-ctan /macros/latex/contrib/pdfsync +catalogue-license lppl +catalogue-topics debug-supp + +name pdftex +category TLCore +revision 57973 +shortdesc A TeX extension for direct creation of PDF +longdesc An extension of TeX which can directly generate PDF documents +longdesc as well as DVI output. All current free TeX distributions +longdesc including TeX Live, MacTeX and MiKTeX include pdfTeX (Plain +longdesc TeX) and pdfLaTeX (LaTeX), among many other formats based on +longdesc the pdfTeX engine. +depend cm +depend dehyph +depend etex +depend hyph-utf8 +depend hyphen-base +depend knuth-lib +depend kpathsea +depend pdftex.ARCH +depend plain +depend tex-ini-files +execute AddFormat name=etex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *etex.ini" fmttriggers=cm,dehyph,etex,hyph-utf8,hyphen-base,knuth-lib,plain +execute AddFormat name=pdfetex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,dehyph,etex,hyph-utf8,hyphen-base,knuth-lib,plain,tex-ini-files +execute AddFormat name=pdftex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,dehyph,etex,hyph-utf8,hyphen-base,knuth-lib,plain,tex-ini-files +execute addMap dummy-space.map +containersize 36956 +containerchecksum 17c2b07af5e14f9f581d1094f4a3657ec1fe2b19fa96d952d1e4859265dc26e42743dc1fd7e8d6a7de56867be1b50a7071524d0580a8a680c605146893e7ff1b +doccontainersize 1629784 +doccontainerchecksum 8422210dceae381676a4c03784ab2c9b0e9233913eca6d25a9a7d5c5675f9ecb32f0a93dd624dbcc715f20d7e386a7844ea00e6e85473c1af14f8e384cd3f61e +docfiles size=754 + texmf-dist/doc/man/man1/pdfetex.1 + texmf-dist/doc/man/man1/pdfetex.man1.pdf + texmf-dist/doc/man/man1/pdftex.1 + texmf-dist/doc/man/man1/pdftex.man1.pdf + texmf-dist/doc/pdftex/NEWS + texmf-dist/doc/pdftex/README + texmf-dist/doc/pdftex/manual/ChangeLog + texmf-dist/doc/pdftex/manual/Makefile + texmf-dist/doc/pdftex/manual/README + texmf-dist/doc/pdftex/manual/makefiles.cmd + texmf-dist/doc/pdftex/manual/pdftex-a.pdf details="User manual" + texmf-dist/doc/pdftex/manual/pdftex-i.tex + texmf-dist/doc/pdftex/manual/pdftex-syntax.txt + texmf-dist/doc/pdftex/manual/pdftex-t.tex + texmf-dist/doc/pdftex/manual/pdftex-w.tex + texmf-dist/doc/pdftex/manual/syntaxform.awk + texmf-dist/doc/pdftex/manual/syntaxform.pl + texmf-dist/doc/pdftex/samplepdftex/cmr10.103 + texmf-dist/doc/pdftex/samplepdftex/obj.dat + texmf-dist/doc/pdftex/samplepdftex/pdfcolor.tex + texmf-dist/doc/pdftex/samplepdftex/pic.eps + texmf-dist/doc/pdftex/samplepdftex/pic.jpg + texmf-dist/doc/pdftex/samplepdftex/pic.mps + texmf-dist/doc/pdftex/samplepdftex/pic.pdf + texmf-dist/doc/pdftex/samplepdftex/pic.png + texmf-dist/doc/pdftex/samplepdftex/pic16.png + texmf-dist/doc/pdftex/samplepdftex/rgb.icc + texmf-dist/doc/pdftex/samplepdftex/samplepdf.0 + texmf-dist/doc/pdftex/samplepdftex/samplepdf.1 + texmf-dist/doc/pdftex/samplepdftex/samplepdf.tex details="Primitive usage examples" + texmf-dist/doc/pdftex/samplepdftex/supp-mis.tex + texmf-dist/doc/pdftex/samplepdftex/supp-pdf.tex + texmf-dist/doc/pdftex/samplepdftex/tmp.pdf + texmf-dist/doc/pdftex/tests/01-fake-interword-space/Makefile + texmf-dist/doc/pdftex/tests/01-fake-interword-space/dummy-space.pfb + texmf-dist/doc/pdftex/tests/01-fake-interword-space/dummy-space.tfm + texmf-dist/doc/pdftex/tests/01-fake-interword-space/fake-interword-space.tex + texmf-dist/doc/pdftex/tests/02-pdfmatch/Makefile + texmf-dist/doc/pdftex/tests/02-pdfmatch/test-pdfmatch.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/Makefile + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-SOURCE_DATE_EPOCH.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-fixed-date-id.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-no-date-id.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-prim.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/Makefile + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/abc.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/test-pdfinfoomitdate.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/test-pdfsuppressptexinfo.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/test-pdftrailer.tex + texmf-dist/doc/pdftex/tests/05-mediabox/Makefile + texmf-dist/doc/pdftex/tests/05-mediabox/test-normal.tex + texmf-dist/doc/pdftex/tests/05-mediabox/test-omit-mediabox.tex + texmf-dist/doc/pdftex/tests/06-pkmap/Makefile + texmf-dist/doc/pdftex/tests/06-pkmap/cmb10.72pk + texmf-dist/doc/pdftex/tests/06-pkmap/cmr10.360pk + texmf-dist/doc/pdftex/tests/06-pkmap/cmr10.72pk + texmf-dist/doc/pdftex/tests/06-pkmap/prepatch.pdf + texmf-dist/doc/pdftex/tests/06-pkmap/test-pkmap.tex + texmf-dist/doc/pdftex/tests/07-mapwarn/Makefile + texmf-dist/doc/pdftex/tests/07-mapwarn/test-mapwarn.tex + texmf-dist/doc/pdftex/tests/08-pdfprimitive/Makefile + texmf-dist/doc/pdftex/tests/08-pdfprimitive/test-pdfprimitive-non.tex + texmf-dist/doc/pdftex/tests/08-pdfprimitive/test-pdfprimitive-ok.tex + texmf-dist/doc/pdftex/tests/08-pdfprimitive/test-pdfprimitive-post.tex + texmf-dist/doc/pdftex/tests/09-fontobjnum/Makefile + texmf-dist/doc/pdftex/tests/09-fontobjnum/test-fontobjnum.tex + texmf-dist/doc/pdftex/tests/10-moddate/Makefile + texmf-dist/doc/pdftex/tests/10-moddate/test-moddate-abs.tex + texmf-dist/doc/pdftex/tests/10-moddate/test-moddate.tex + texmf-dist/doc/pdftex/tests/11-omitcharset/Makefile + texmf-dist/doc/pdftex/tests/11-omitcharset/test-omitcharset.tex + texmf-dist/doc/pdftex/tests/12-pdf2/Makefile + texmf-dist/doc/pdftex/tests/12-pdf2/incl1.tex + texmf-dist/doc/pdftex/tests/12-pdf2/incl2.tex + texmf-dist/doc/pdftex/tests/12-pdf2/test-compress2.tex + texmf-dist/doc/pdftex/tests/12-pdf2/test-doc1incl2.tex + texmf-dist/doc/pdftex/tests/12-pdf2/test-doc2incl1.tex + texmf-dist/doc/pdftex/tests/12-pdf2/test-doc2incl2.tex + texmf-dist/doc/pdftex/tests/12-pdf2/test-pdfmajor.tex + texmf-dist/doc/pdftex/tests/Common.mak +runfiles size=65 + texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map + texmf-dist/fonts/tfm/public/pdftex/dummy-space.tfm + texmf-dist/fonts/type1/public/pdftex/dummy-space.pfb + texmf-dist/scripts/simpdftex/simpdftex + texmf-dist/tex/generic/config/pdftex-dvi.tex + texmf-dist/tex/generic/pdftex/glyphtounicode.tex + texmf-dist/tex/generic/pdftex/pdfcolor.tex +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 https://lists.tug.org/pdftex +catalogue-license gpl +catalogue-topics engine + +name pdftex-quiet +category Package +revision 49169 +shortdesc A bash wrapper for pdfTeX limiting its output to relevant errors +longdesc This package provides a bash script aiming at reducing pdfTeX's +longdesc output to relevant errors, which are displayed in a red bold +longdesc font. The project originally started as a TeX StackExchange +longdesc answer. +depend pdftex-quiet.ARCH +containersize 2516 +containerchecksum 7b33e37a4b33060abee48ccf825cacecdee552d641da48dae47e3615fa0ab91ea9912b52fbd5c5ba6cdaa9c0d2cc7baa7c48a80bebb6d1887e5c633dacb4d104 +doccontainersize 12516 +doccontainerchecksum e13392cfefaed2c154c086ffcf85e21725e4230ce78d10e07dcb0a1c8b3685bef2572c5f5e249c56120320f2b0167cd5055ade50625a296446a197c0ba4b85cc +docfiles size=11 + texmf-dist/doc/support/pdftex-quiet/LICENCE + texmf-dist/doc/support/pdftex-quiet/README.md details="Readme" + texmf-dist/doc/support/pdftex-quiet/VERSION +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-license gpl3 +catalogue-topics compilation +catalogue-version 1.1.0 + +name pdftex-quiet.aarch64-linux +category Package +revision 49140 +shortdesc aarch64-linux files of pdftex-quiet +containersize 344 +containerchecksum 1b796caa5d79b1d39c3c63086e6a6275de3f0f9f46cce9b4294f77029ed0133023ca46236ef58e5c1a708f4f732f0e2de109ac20d412f8b6aa60729199cbfb34 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdftex-quiet + +name pdftex-quiet.amd64-freebsd +category Package +revision 49140 +shortdesc amd64-freebsd files of pdftex-quiet +containersize 344 +containerchecksum 3fe6a374adc58f0b58891e241fd487b3efd9d389d1763bee08347a52adc14475c06efe38ffb3d68bdbb293ccce895f5ffc4e0a46af6f58620dd754d14d041f77 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdftex-quiet + +name pdftex-quiet.amd64-netbsd +category Package +revision 49140 +shortdesc amd64-netbsd files of pdftex-quiet +containersize 340 +containerchecksum efa72e64848a9d04b3ffee1001792f6a00633f203cebe5ca7211d2cf174d1aadb8a8b87b4440a90b76d868876e9e1c8993df842ddf9962420b856996c3ebe364 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdftex-quiet + +name pdftex-quiet.armhf-linux +category Package +revision 49140 +shortdesc armhf-linux files of pdftex-quiet +containersize 340 +containerchecksum 88f708d3ac6b65fbf326bbb35aafcdeffdb4e23a51ca40c2021daab86aec4dd3f5423177d709884e75fd8f26a0910f874fb1c46d1a7cdfd109fe472ff4ffedef +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdftex-quiet + +name pdftex-quiet.i386-cygwin +category Package +revision 49140 +shortdesc i386-cygwin files of pdftex-quiet +containersize 340 +containerchecksum 79b17685ba21a129399d0fed30092add08f56cba0011480053da9d8baa34c61f4ed9f95681c6663cb1514d1a202f8f62eaf04c00ac04b1edc5ff235a3dca8239 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdftex-quiet + +name pdftex-quiet.i386-freebsd +category Package +revision 49140 +shortdesc i386-freebsd files of pdftex-quiet +containersize 340 +containerchecksum 8e9b31e75023a0b89fcbe96aed96d2902bfb028daadc59a5c78cccf1ff52af88186ed564271daa025d97ee5191028d7a077a2fe19420057ecb137f1ba92bdc3c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdftex-quiet + +name pdftex-quiet.i386-linux +category Package +revision 49140 +shortdesc i386-linux files of pdftex-quiet +containersize 340 +containerchecksum d568f19e77fc77c32df7b5254669cf09bf72df9ff8499d8d851002526ec9ba5ebfa2ed644ae004320dc386f27aa62fdec7842d22d0df468debbbc1d420ba58c9 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdftex-quiet + +name pdftex-quiet.i386-netbsd +category Package +revision 49140 +shortdesc i386-netbsd files of pdftex-quiet +containersize 340 +containerchecksum 55ab4a730309a2722d42f197c9f1b3860bbde3e21606146d0652bb7782f08db9cfcff37aa47fee3df1364768cee542fc9c694a4809aa644a488167f7c707b3ed +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdftex-quiet + +name pdftex-quiet.i386-solaris +category Package +revision 49140 +shortdesc i386-solaris files of pdftex-quiet +containersize 340 +containerchecksum 224e0c532a6ff8a65d8df3af670ae28e6b19c0d3878f0599e832c3499935c6c23d231a8dd6c559f56c56d95895c4ce63c115eab55d75742f00b44053950ef9df +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdftex-quiet + +name pdftex-quiet.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pdftex-quiet +containersize 340 +containerchecksum f6bda430b7e7585e080d051aa1dd784868380cc13aca3b537c136eee50033138e8de7f520624449dcfea79cf0d166864b1023f4b253088016d3ce7a6459b50f0 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pdftex-quiet + +name pdftex-quiet.x86_64-cygwin +category Package +revision 49140 +shortdesc x86_64-cygwin files of pdftex-quiet +containersize 344 +containerchecksum 2a90a50f1dcccbea60c99d4185e09604de08a7bcf6cf97a26679ae2b7111f524912e8418a0db5d63e73868763bce9e2007a0129036be5235677b44e33f05c326 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdftex-quiet + +name pdftex-quiet.x86_64-darwinlegacy +category Package +revision 49140 +shortdesc x86_64-darwinlegacy files of pdftex-quiet +containersize 352 +containerchecksum b6df9aef23023bfe134361ceca86e25e4dacece531eb418de70886a850162cd0f37b01c932af371ec69b2ad3b6d94b7619e394ca4ab2b1bda9924bed470faa7c +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdftex-quiet + +name pdftex-quiet.x86_64-linux +category Package +revision 49140 +shortdesc x86_64-linux files of pdftex-quiet +containersize 344 +containerchecksum 16792262f88fab7b6be96f404a053702061686a502f01c898be45311e02914978f193f5862b27a78905733c32921274d54a88a458ffa7f1c83a2914dc0e70e8b +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdftex-quiet + +name pdftex-quiet.x86_64-linuxmusl +category Package +revision 49140 +shortdesc x86_64-linuxmusl files of pdftex-quiet +containersize 348 +containerchecksum 161cd1a54ffc7024eb20e1035ccec29f869143d08251835a99b8d6d151b7d24a79ede0ce8aa381910f8705aca14cd25bdc33fcec6f1bae62350dbebad46ac67e +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdftex-quiet + +name pdftex-quiet.x86_64-solaris +category Package +revision 49140 +shortdesc x86_64-solaris files of pdftex-quiet +containersize 340 +containerchecksum 4584b68a744bf760e283dcca46a823b639018fc04b44e96639d07f09aa89c4f8c39e20974dbf2dea8cf218989325896f64c942b6e98cd37a1c08c11bb86517a2 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdftex-quiet + +name pdftex.aarch64-linux +category TLCore +revision 58534 +shortdesc aarch64-linux files of pdftex +containersize 826912 +containerchecksum a6351ac6088eb04919c2ecae958ef2c592267192309a576935d26d715fe177f0c08f906082b7ae716ca21509d0e6a00c3ab06299d87f7d0ee0575dea71067dab +binfiles arch=aarch64-linux size=658 + bin/aarch64-linux/etex + bin/aarch64-linux/pdfetex + bin/aarch64-linux/pdftex + bin/aarch64-linux/simpdftex + +name pdftex.amd64-freebsd +category TLCore +revision 58501 +shortdesc amd64-freebsd files of pdftex +containersize 916756 +containerchecksum 28e9a2a26decb63edf0f2ecac0f583eaf50a4845ab63cbbe2e81d5397fab910ff8a2d0ee60f48b2fa240e2bc320303bc5857cf5a94a9a954fb142edea3cdf6ac +binfiles arch=amd64-freebsd size=628 + bin/amd64-freebsd/etex + bin/amd64-freebsd/pdfetex + bin/amd64-freebsd/pdftex + bin/amd64-freebsd/simpdftex + +name pdftex.amd64-netbsd +category TLCore +revision 58497 +shortdesc amd64-netbsd files of pdftex +containersize 742684 +containerchecksum 27b24a2b33a5ed67380bf72a1ede18fa14636c902ad15727b4049d80107e890b70c43199da98b5b1be4b2ceac4e1a87b87e6b7d7169fd292e22adad3e0076358 +binfiles arch=amd64-netbsd size=688 + bin/amd64-netbsd/etex + bin/amd64-netbsd/pdfetex + bin/amd64-netbsd/pdftex + bin/amd64-netbsd/simpdftex + +name pdftex.armhf-linux +category TLCore +revision 58502 +shortdesc armhf-linux files of pdftex +containersize 681716 +containerchecksum 2d3169fce625a1ddf0d9d2bbd354c5e5a11a4b9a0ccc1f46d15161b974218dd75581cf2b47f599c0ec6736e7c0771a6fba3b019ad66298c952e641ca207518eb +binfiles arch=armhf-linux size=449 + bin/armhf-linux/etex + bin/armhf-linux/pdfetex + bin/armhf-linux/pdftex + bin/armhf-linux/simpdftex + +name pdftex.i386-cygwin +category TLCore +revision 58498 +shortdesc i386-cygwin files of pdftex +containersize 774448 +containerchecksum a01784433444218112583b3a5e8b2ad3b535f527b0019c25f8d557165a77f7a10a75112ab2f7235964dbf479aadded8e36af413e34cf23254407b21bfa1a6ee3 +binfiles arch=i386-cygwin size=550 + bin/i386-cygwin/etex + bin/i386-cygwin/pdfetex + bin/i386-cygwin/pdftex.exe + bin/i386-cygwin/simpdftex + +name pdftex.i386-freebsd +category TLCore +revision 58501 +shortdesc i386-freebsd files of pdftex +containersize 781412 +containerchecksum 22ab647c94946530296f4d1ee98e8bc2816bcf2fab95e3e26be6972debb5d5840c7bf159e41cee3ca7fab680c38f87dcabcbd6a94e401c0d650bbd96eb67556d +binfiles arch=i386-freebsd size=553 + bin/i386-freebsd/etex + bin/i386-freebsd/pdfetex + bin/i386-freebsd/pdftex + bin/i386-freebsd/simpdftex + +name pdftex.i386-linux +category TLCore +revision 58535 +shortdesc i386-linux files of pdftex +containersize 838928 +containerchecksum 9e723bace10cf316a594d41d846b7db8d271e3cea2f2232eb870ad78db59a4b21504eea33051dfed5bab90be8c79ae8d89d003fdfe57da2b57a0805bc282cea0 +binfiles arch=i386-linux size=560 + bin/i386-linux/etex + bin/i386-linux/pdfetex + bin/i386-linux/pdftex + bin/i386-linux/simpdftex + +name pdftex.i386-netbsd +category TLCore +revision 58497 +shortdesc i386-netbsd files of pdftex +containersize 662584 +containerchecksum 897b880f6377274afcb0529ac75b9b5aeca97f3cb3daf110fb67c6c71a5d667275e4bbd47988fac57d03bd452fafdf13f9b37e2ad8a07dd06945b5e3a36bc581 +binfiles arch=i386-netbsd size=613 + bin/i386-netbsd/etex + bin/i386-netbsd/pdfetex + bin/i386-netbsd/pdftex + bin/i386-netbsd/simpdftex + +name pdftex.i386-solaris +category TLCore +revision 58500 +shortdesc i386-solaris files of pdftex +containersize 837780 +containerchecksum a5be93a7b6186676a045cc02ac25c1c470828b1f993dc4fa2c1a23f61268a020b28574826b9c706b82b5e6449c93a9fadd40f19fce4c513b963ace9e02be393c +binfiles arch=i386-solaris size=557 + bin/i386-solaris/etex + bin/i386-solaris/pdfetex + bin/i386-solaris/pdftex + bin/i386-solaris/simpdftex + +name pdftex.universal-darwin +category TLCore +revision 58466 +shortdesc universal-darwin files of pdftex +containersize 1682500 +containerchecksum 451fc0091c745668d1cad697e457ba979b5d0290880a926992497c8905738f07694086fa13fc55d0f8ab176ecbd61eac8836fa01d3805363e2f92d9449b38946 +binfiles arch=universal-darwin size=1281 + bin/universal-darwin/etex + bin/universal-darwin/pdfetex + bin/universal-darwin/pdftex + bin/universal-darwin/simpdftex + +name pdftex.win32 +category TLCore +revision 59028 +shortdesc win32 files of pdftex +containersize 709760 +containerchecksum d32a761c345f9f127a4e7f878f7d7d31dc4cb9b1173809c2ed4417cf5e9c91b97a8a1341df75229a62b780f2dcb2bc89e536cf38c974c35d0c6d399bff5c0af7 +binfiles arch=win32 size=459 + bin/win32/etex.exe + bin/win32/pdfetex.exe + bin/win32/pdftex.dll + bin/win32/pdftex.exe + +name pdftex.x86_64-cygwin +category TLCore +revision 58498 +shortdesc x86_64-cygwin files of pdftex +containersize 831968 +containerchecksum 02424e8ec52cfdc2f0e96243ce40496920ebf61881416e6430321a5fb4d24e1835a347b6246167a8dec6b03384bd9e7d0ec15efbed982f6fc1d3845b395cbd50 +binfiles arch=x86_64-cygwin size=551 + bin/x86_64-cygwin/etex + bin/x86_64-cygwin/pdfetex + bin/x86_64-cygwin/pdftex.exe + bin/x86_64-cygwin/simpdftex + +name pdftex.x86_64-darwinlegacy +category TLCore +revision 58501 +shortdesc x86_64-darwinlegacy files of pdftex +containersize 774964 +containerchecksum 3ddc09225e7b53fc260949b0d8b4290944db3745d6e1a45f6dfebf1b1ff991fbc448760dc579ebcceb83efc998823880d92685563ca2dd71c421587e2b177d42 +binfiles arch=x86_64-darwinlegacy size=507 + bin/x86_64-darwinlegacy/etex + bin/x86_64-darwinlegacy/pdfetex + bin/x86_64-darwinlegacy/pdftex + bin/x86_64-darwinlegacy/simpdftex + +name pdftex.x86_64-linux +category TLCore +revision 58535 +shortdesc x86_64-linux files of pdftex +containersize 835652 +containerchecksum 8fabf26cce6bc0274743bc9230feb023c4b0b4aa00cd77423133385d43c0f72ccad46a0c91052921a0bca34541240397587576ad3bcb058565c59ea52606e84c +binfiles arch=x86_64-linux size=547 + bin/x86_64-linux/etex + bin/x86_64-linux/pdfetex + bin/x86_64-linux/pdftex + bin/x86_64-linux/simpdftex + +name pdftex.x86_64-linuxmusl +category TLCore +revision 58535 +shortdesc x86_64-linuxmusl files of pdftex +containersize 888216 +containerchecksum 8134315cb608ad73e88a7fcea4c0c2bdd1d093f2e188a63f41f2d7fb4b32b5a6be71e4d411fb0cc563f00ff695da277ee56fac7c364872e56f6f3e02f53cc1d6 +binfiles arch=x86_64-linuxmusl size=648 + bin/x86_64-linuxmusl/etex + bin/x86_64-linuxmusl/pdfetex + bin/x86_64-linuxmusl/pdftex + bin/x86_64-linuxmusl/simpdftex + +name pdftex.x86_64-solaris +category TLCore +revision 58500 +shortdesc x86_64-solaris files of pdftex +containersize 917684 +containerchecksum 2dc49bc9afd1bf813d3d3a0fda2d4bdaaff182071810c78300b08a4e66f3f3102b3ba8bb495b0a842d7b96933a7f50fe4abc45c8b834bfeb8837cf559d126442 +binfiles arch=x86_64-solaris size=630 + bin/x86_64-solaris/etex + bin/x86_64-solaris/pdfetex + bin/x86_64-solaris/pdftex + bin/x86_64-solaris/simpdftex + +name pdftexcmds +category Package +revision 55777 +shortdesc LuaTeX support for pdfTeX utility functions +relocated 1 +longdesc LuaTeX provides most of the commands of pdfTeX 1.40. However, a +longdesc number of utility functions are not available. This package +longdesc tries to fill the gap and implements some of the missing +longdesc primitives using Lua. +containersize 6316 +containerchecksum 91054b61b76382813d80e873d908cc07f8571b7651f49a3dc3e87063507af43bf31107c34187b703b0c4462eafe0cd605159803c72cbf2821cf6ab3afb78fc6d +doccontainersize 379844 +doccontainerchecksum a16db56366e80b1694b78919a245336c37690ea9a1305a606a3bfa85a73c854e92d1cd8b9ddb0bdfdea82f1ef684d06d8b4649e4111c39f24f321dbcb01aa036 +docfiles size=96 + RELOC/doc/generic/pdftexcmds/README.md details="Readme" + RELOC/doc/generic/pdftexcmds/pdftexcmds.bib + RELOC/doc/generic/pdftexcmds/pdftexcmds.pdf details="Package documentation" +srccontainersize 14052 +srccontainerchecksum f3e62a5f9029f71c652105b137048cef4f5562dd0848bb7a94d251e2af579c394322a70f40aadbed3ac56312005d59124ef3fd5a2436127a72c430d344ecede1 +srcfiles size=16 + RELOC/source/generic/pdftexcmds/pdftexcmds.dtx +runfiles size=8 + RELOC/tex/generic/pdftexcmds/pdftexcmds.lua + RELOC/tex/generic/pdftexcmds/pdftexcmds.sty +catalogue-contact-bugs https://github.com/ho-tex/pdftexcmds/issues +catalogue-contact-repository https://github.com/ho-tex/pdftexcmds +catalogue-ctan /macros/generic/pdftexcmds +catalogue-license lppl1.3c +catalogue-topics macro-supp macro-gen +catalogue-version 0.33 + +name pdftosrc +category TLCore +revision 57972 +shortdesc Extract source file or stream from PDF file +longdesc Extracts an embedded source file, or extracts and uncompresses +longdesc a PDF stream given by object number. Developed as part of the +longdesc pdfTeX source tree. +depend pdftosrc.ARCH +containersize 380 +containerchecksum 5332cc41dec6d5a7f4386d05368f21bae2aed20be6244873243fbd5e47a4ce257a64c4b1afe3be88c6d4745b655d61091e5efd6a86464bb6e20cab076ac32137 +doccontainersize 23884 +doccontainerchecksum 07836f31e216591fa76bccdfc0adb60914b9284ecbd9097a16fb92e5d31adba9a2a9558821d028ac71fc846a3f051fe64afc0c2b5fdeb91e08308c1fed39f5ab +docfiles size=9 + texmf-dist/doc/man/man1/pdftosrc.1 + texmf-dist/doc/man/man1/pdftosrc.man1.pdf + +name pdftosrc.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of pdftosrc +containersize 385492 +containerchecksum 8c0fb9b892e01a14f465f9499e38926a9327ef51ea0f6f988b06ed30dd2f7206808d7b480bff61aa2b9cd6fe1537b82b641ecd6b7c5bf108f6df1a2363e46889 +binfiles arch=aarch64-linux size=373 + bin/aarch64-linux/pdftosrc + +name pdftosrc.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of pdftosrc +containersize 369532 +containerchecksum de837fd38bda067fea34b48653496fc325d26090b5dbb1b713854904e9d79a9415ea1ab3812cf49b4a36a6b81c2150f5c620b6d33c723c66ec2ebdd74c8784fc +binfiles arch=amd64-freebsd size=291 + bin/amd64-freebsd/pdftosrc + +name pdftosrc.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of pdftosrc +containersize 344360 +containerchecksum 96e2257c9ad487c4210c374208c6a95430f13c560f8103f374a651e60f4034338eefbbd37433469c5ddab768dece686861ba6b0ba58d7beed4c184eb53edbbf8 +binfiles arch=amd64-netbsd size=367 + bin/amd64-netbsd/pdftosrc + +name pdftosrc.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of pdftosrc +containersize 304404 +containerchecksum 122a1353c86a68de41c1c8c77d5c1839c7f02fd46a57b54d16e47cd082c7758d790fb7e61d709c222b18fdfc4b68604999a95ed9e1193e58a85f0f863e7a06f9 +binfiles arch=armhf-linux size=229 + bin/armhf-linux/pdftosrc + +name pdftosrc.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of pdftosrc +containersize 366852 +containerchecksum dff855c3f7871d1ddc4bc54cb952582e4cdc94d1736ca47792d8a16f1a6f2225e19d3ae4da9c56db73f59a3f4205e4cc7effb25d96ee8966e7f46bde57427222 +binfiles arch=i386-cygwin size=289 + bin/i386-cygwin/pdftosrc.exe + +name pdftosrc.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of pdftosrc +containersize 346468 +containerchecksum 59ac7e04f613a7e6d1290c45f8a6759103fad8720571102025880181a1307e4891a56dbfb4d5310f0b67eab93ec17aabad64e5e3da32efe2ac937fc6daf15757 +binfiles arch=i386-freebsd size=250 + bin/i386-freebsd/pdftosrc + +name pdftosrc.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of pdftosrc +containersize 391928 +containerchecksum e067a651556f2319334aa1b9f5eb87b5896451eb47ca1fe2fe5ab24deab8b3f3ec70de2d6332bc5011283e96e9369f40a188f7293bc5742e46fa2a1b8ee86574 +binfiles arch=i386-linux size=283 + bin/i386-linux/pdftosrc + +name pdftosrc.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of pdftosrc +containersize 329936 +containerchecksum 38baeae1b2704522162baae91b92e549df462ccfeae8e12c385aa4ed684531288525e6c68289d116c3224bd46aefff75ffbc07acba4ad36b77c425f0714eb380 +binfiles arch=i386-netbsd size=319 + bin/i386-netbsd/pdftosrc + +name pdftosrc.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of pdftosrc +containersize 419432 +containerchecksum 5618795a38c0844216bd001235c26d2afe0b799e253dc6d3fd13391ee8767dbf994d4468a8533d6cadc533430a87b4345e9f3f5ebe227b78e3886efc145c37f7 +binfiles arch=i386-solaris size=317 + bin/i386-solaris/pdftosrc + +name pdftosrc.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of pdftosrc +containersize 697228 +containerchecksum 2743ae81afe4083e6cb8f05036b9853e58377c6f0667081449bcadcf826e8a4d92352ee2481dbe7e695677ee05a934912e98cac891edc00c666923c8aab8f728 +binfiles arch=universal-darwin size=605 + bin/universal-darwin/pdftosrc + +name pdftosrc.win32 +category TLCore +revision 58783 +shortdesc win32 files of pdftosrc +containersize 320592 +containerchecksum 134cef4ae1321ad9f2584d55485c48af73db3bcfd9615455404e5860bab1d4f28bb7bda356dc7ca7368926b12adb966c665228caf24110337fd6dc3bb0e645b2 +binfiles arch=win32 size=235 + bin/win32/pdftosrc.exe + +name pdftosrc.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of pdftosrc +containersize 371500 +containerchecksum 26a2aff52fc646d6663780e4aa16cf35b51a8e9ee884936cb41a2ea20062c618c59e9228abd167dffbf45813ab921b6cc6147373e6c0956dfb3e80a4b7abff9b +binfiles arch=x86_64-cygwin size=290 + bin/x86_64-cygwin/pdftosrc.exe + +name pdftosrc.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of pdftosrc +containersize 344496 +containerchecksum ef1ba776d5abd5c8a45861a5b8352a19479fbd5446264a18202733103d16de591ad096de8d84d9018fdc6f59953e1a99f06443974a320bc2dec5724b2cbabfea +binfiles arch=x86_64-darwinlegacy size=270 + bin/x86_64-darwinlegacy/pdftosrc + +name pdftosrc.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of pdftosrc +containersize 379844 +containerchecksum 494f855fdeeb1f7abd7c8c78ec6ac1aed57f5164cce7ab653f335e365f0fb79f62a3a715c15d2456bd43111431eb675e2d8068e4b64f00132f5ce0c45e38e433 +binfiles arch=x86_64-linux size=296 + bin/x86_64-linux/pdftosrc + +name pdftosrc.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of pdftosrc +containersize 411320 +containerchecksum 6f905758ae524aea0b7e15880b71f50318a7aaafe4718a96b513d24ce38c6424dd9ea14bd0362efab1d0937bcf58883f64bc000a25c0c2d7fa38ac4781c3ccdd +binfiles arch=x86_64-linuxmusl size=370 + bin/x86_64-linuxmusl/pdftosrc + +name pdftosrc.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of pdftosrc +containersize 432920 +containerchecksum dcb034064b71f0cc509992ae9266dcf4968f3b0e6772a09a99048db460b3c587ac0ef45b650ff5a0b8ffa4a45d911f4c72f2bdac8cb505483babe1a18d927903 +binfiles arch=x86_64-solaris size=355 + bin/x86_64-solaris/pdftosrc + +name pdftricks +category Package +revision 15878 +shortdesc Support for PSTricks in pdfTeX +relocated 1 +longdesc The PSTricks macros cannot be used (directly) with pdfTeX, +longdesc since PSTricks uses PostScript arithmetic, which isn't part of +longdesc PDF. This package circumvents this limitation so that the +longdesc extensive facilities offered by the powerful PSTricks package +longdesc can be made use of in a pdfTeX document. This is done using the +longdesc shell escape function available in current TeX implementations. +longdesc The package may also be used in support of other +longdesc 'PostScript-output-only' packages, such as PSfrag. For +longdesc alternatives, users may care to review the discussion in the +longdesc PSTricks online documentation. +containersize 4360 +containerchecksum f7c0a71e44d0d388ab952ff820e5af63fe0f94acb2feb3415a2d1b3cffd94efc7e8bd17efbb7b608d082ab1b7d7ba1b780c63088df54a8db241c9b3d133eab1e +doccontainersize 217036 +doccontainerchecksum 0e3ec1f3b7d7c9bda1e08060f0ee0615244863e513a25370b598f22bef00e6ece79592a105eb13cc913c169b1994c8a38fd60be0566e1c52e1ce2f97dc1e5995 +docfiles size=107 + RELOC/doc/latex/pdftricks/makefile + RELOC/doc/latex/pdftricks/manual.pdf details="Package documentation" + RELOC/doc/latex/pdftricks/pst2pdf + RELOC/doc/latex/pdftricks/test.pdf details="Test example (source available)" + RELOC/doc/latex/pdftricks/test.tex +runfiles size=4 + RELOC/tex/latex/pdftricks/pdftricks.sty +catalogue-also pst-pdf +catalogue-ctan /graphics/pdftricks +catalogue-license gpl +catalogue-topics callback pstricks +catalogue-version 1.16 + +name pdftricks2 +category Package +revision 31016 +shortdesc Use PSTricks in pdfTeX +relocated 1 +longdesc The package provides the means of processing documents (that +longdesc contain pstricks graphics specifications. The package is +longdesc inspired by pdftricks +containersize 5468 +containerchecksum e50406cd680e1d5cfabcfd8000b743fde61dcff7e3c686b06f58fd1fd36e414d53140b5d244ef65931aeec67dbf458e5e2d43266f26ee9de301babbc0f88853d +doccontainersize 62624 +doccontainerchecksum 4a22c280a28e4a45f068d52f4d75f19b5ccfec30609d7c8d143cccc67d16fc04cd1ae63e7d6a5a659a0805ed85d96d57ff5fba4b246f67029457088e7696ad23 +docfiles size=22 + RELOC/doc/latex/pdftricks2/README details="Readme" + RELOC/doc/latex/pdftricks2/pdftricks2-doc.pdf details="Package documentation" + RELOC/doc/latex/pdftricks2/pdftricks2-doc.tex +runfiles size=6 + RELOC/tex/latex/pdftricks2/pdftricks2.sty +catalogue-also pdftricks +catalogue-ctan /graphics/pdftricks2 +catalogue-license gpl2 +catalogue-topics callback pstricks +catalogue-version 1.01 + +name pdfwin +category Package +revision 54074 +shortdesc customizable windows for screen viewing of TeX documents +relocated 1 +longdesc Inspired by the pdfscreen package. +containersize 15876 +containerchecksum 13981a137ab920fe72e1f79ae3bb14bd9e37cd4eb4dbb66095926e54eddfd28903b403a896a013ac40fcac80736c566e983e34fb9b7a54d0759148ce33af14aa +doccontainersize 310744 +doccontainerchecksum 2b8d546b5591773cb9ec3ee407d7390b81e8ec1a6232b626ddbf9bb2cdbbc8c9c00e08ae4772a4b67cb38e96ec2be3db981eb163d412738e5e7bf94e5196637d +docfiles size=130 + RELOC/doc/latex/pdfwin/BucResampling.pdf + RELOC/doc/latex/pdfwin/BucSystem1.pdf + RELOC/doc/latex/pdfwin/BucSystem2.pdf + RELOC/doc/latex/pdfwin/BucSystem3.pdf + RELOC/doc/latex/pdfwin/BucSystem4.pdf + RELOC/doc/latex/pdfwin/BucSystem5.pdf + RELOC/doc/latex/pdfwin/BucSystem6.pdf + RELOC/doc/latex/pdfwin/Bucuresti2003.tex + RELOC/doc/latex/pdfwin/JWGU-Logo.png + RELOC/doc/latex/pdfwin/Thumbs.db + RELOC/doc/latex/pdfwin/marble.png + RELOC/doc/latex/pdfwin/normprot.tex + RELOC/doc/latex/pdfwin/shortvec.tex +runfiles size=20 + RELOC/tex/latex/pdfwin/pdfwin.cfg + RELOC/tex/latex/pdfwin/pdfwin.sty + +name pdfx +category Package +revision 50338 +shortdesc PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX +relocated 1 +longdesc The package helps LaTeX users to create PDF/X, PFD/A and other +longdesc standards-compliant PDF documents with pdfTeX, LuaTeX and +longdesc XeTeX. +containersize 89260 +containerchecksum c1e1be225efd5bd66873663ccb134521b40253875248096a66a8499609e62e481fa64e563afd75952b2dc0041fa1fce594f4047c3c91fe6b9443493ce8899ae7 +doccontainersize 4951404 +doccontainerchecksum 22b7e52295ab8da136e584f545001d0db480cefb06b7d595133ff3508c9ee3e7b7d8c8a93c41ebf24a9e313b4e40fdf355a88ef0a65b629c3b27f5f4bcec906a +docfiles size=1301 + RELOC/doc/latex/pdfx/Armenian-example-UTF8.png + RELOC/doc/latex/pdfx/MANIFEST + RELOC/doc/latex/pdfx/README details="Readme" + RELOC/doc/latex/pdfx/TL-POL-meta.png + RELOC/doc/latex/pdfx/TL-RU-LICRs.png + RELOC/doc/latex/pdfx/TL-RU-metadata.png + RELOC/doc/latex/pdfx/TL-RU-toc.png + RELOC/doc/latex/pdfx/arm-start.tex + RELOC/doc/latex/pdfx/armtex-meta.png + RELOC/doc/latex/pdfx/koi8-example.tex + RELOC/doc/latex/pdfx/koi8-example2.tex + RELOC/doc/latex/pdfx/latin2-example.tex + RELOC/doc/latex/pdfx/manifest.txt + RELOC/doc/latex/pdfx/math-assign5.png + RELOC/doc/latex/pdfx/pdfx.pdf details="Package documentation" + RELOC/doc/latex/pdfx/pdfx.xmpdata + RELOC/doc/latex/pdfx/sample.tex + RELOC/doc/latex/pdfx/small2e-pdfx.tex + RELOC/doc/latex/pdfx/usage-meta.png +srccontainersize 63748 +srccontainerchecksum 31c9d2e7fb89f9405f26a18dce6a5066958867ca03ee793e46f9676022ecda77074eef23fb4a238af5b077d642107c372e268ce5b4e7c0358d7ca8c0ed6daddb +srcfiles size=66 + RELOC/source/latex/pdfx/Makefile.src + RELOC/source/latex/pdfx/pdfx.dtx + RELOC/source/latex/pdfx/pdfx.ins + RELOC/source/latex/pdfx/rvdtx.sty +runfiles size=215 + RELOC/tex/latex/pdfx/8bit.def + RELOC/tex/latex/pdfx/AdobeColorProfiles.tex + RELOC/tex/latex/pdfx/AdobeExternalProfiles.tex + RELOC/tex/latex/pdfx/CallasColorProfiles.tex + RELOC/tex/latex/pdfx/armglyphs.dfu + RELOC/tex/latex/pdfx/glyphtounicode-cmr.tex + RELOC/tex/latex/pdfx/glyphtounicode-ntx.tex + RELOC/tex/latex/pdfx/l8u-penc.def + RELOC/tex/latex/pdfx/l8uarb-penc.def + RELOC/tex/latex/pdfx/l8uarm-penc.def + RELOC/tex/latex/pdfx/l8ucyr-penc.def + RELOC/tex/latex/pdfx/l8udev-penc.def + RELOC/tex/latex/pdfx/l8ugrk-penc.def + RELOC/tex/latex/pdfx/l8uheb-penc.def + RELOC/tex/latex/pdfx/l8ulat-penc.def + RELOC/tex/latex/pdfx/l8umath-penc.def + RELOC/tex/latex/pdfx/pdfa.xmp + RELOC/tex/latex/pdfx/pdfe.xmp + RELOC/tex/latex/pdfx/pdfvt.xmp + RELOC/tex/latex/pdfx/pdfx.sty + RELOC/tex/latex/pdfx/pdfx.xmp + RELOC/tex/latex/pdfx/text89.def +catalogue-ctan /macros/latex/contrib/pdfx +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 1.6.3 + +name pdfxup +category Package +revision 59001 +shortdesc Create n-up PDF pages with minimal margins +longdesc pdfxup is a Unix/Linux shell script that creates a PDF document +longdesc where each page is obtained by combining several pages of a PDF +longdesc file given as output. pdfxup uses ghostscript for computing the +longdesc maximal bounding box of (some of) the pages of the document, +longdesc and then uses pdflatex (with the graphicx package) in order to +longdesc produce the new document. +depend pdfxup.ARCH +containersize 14804 +containerchecksum f5b7623c1ecd132bb3646af5953245bc7378901bd5ded2e910487770cd79bb3d248cad426aafd18dd12a28bdd46be0f89b81dc95959f06688fb6a7a8f96dd11b +doccontainersize 119780 +doccontainerchecksum 23db38fd8ebbd04bf6fed3b2814360cb6d0b736db1540d0298e9ab6edd449894c420078adae11d97998fa1fceb8e7083adacc0048337afbf4b6fbb253c8ed21f +docfiles size=36 + texmf-dist/doc/man/man1/pdfxup.1 + texmf-dist/doc/man/man1/pdfxup.man1.pdf + texmf-dist/doc/support/pdfxup/README details="Readme" + texmf-dist/doc/support/pdfxup/RELEASES + texmf-dist/doc/support/pdfxup/pdfxup.pdf details="Package documentation" +runfiles size=17 + texmf-dist/scripts/pdfxup/pdfxup + texmf-dist/tex/latex/pdfxup/beamer2.xup + texmf-dist/tex/latex/pdfxup/beamer4.xup + texmf-dist/tex/latex/pdfxup/pdfxup-template.tex +catalogue-ctan /support/pdfxup +catalogue-license lppl1.3 +catalogue-topics pdfprocess +catalogue-version 2.10 + +name pdfxup.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdfxup +containersize 340 +containerchecksum c4f9aa2039cc8e16e38eeb9721ea8a572be928a0acf8ef83737ad19f7ed183022df1c391a43dc30ffec375c48e61e865a777e9795b828adcfbe782fa36aeef48 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfxup + +name pdfxup.amd64-freebsd +category Package +revision 40690 +shortdesc amd64-freebsd files of pdfxup +containersize 340 +containerchecksum 66c403bbf3bf02ea55a1eb5914e7c977825bf4d2279485ff9bbf72f6cd529888717729490db77d1ffffe0412e8f6713196439fa0b8f27e760fd1c8f290dfe7da +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfxup + +name pdfxup.amd64-netbsd +category Package +revision 40690 +shortdesc amd64-netbsd files of pdfxup +containersize 340 +containerchecksum 11be0a896833b591ed9b8f5e7f9003df0584356646f46f6ee49a7e1afb4f9564ad987b342bdc431869654f9231ca2d9f519206c629be6052dd401e58a0ff7f2b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfxup + +name pdfxup.armhf-linux +category Package +revision 40690 +shortdesc armhf-linux files of pdfxup +containersize 340 +containerchecksum 03f07d55618f67de4a0af079b79e0067c9579a08cef3ba8d33f430c358c782a6f44d7cdb7f9d0a73eea01d8812553138b341174b9e52cef58bcbe54a5788d94c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfxup + +name pdfxup.i386-cygwin +category Package +revision 40690 +shortdesc i386-cygwin files of pdfxup +containersize 336 +containerchecksum 9f24f3b08cf10eb0e40d03d60d9b0c0d0a5162bf86acab244d1d7aac0c2fa93f70d341449dec39184d7c7feb7390b0a3342df28dfd8d29a8bf17d5b8c85049de +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfxup + +name pdfxup.i386-freebsd +category Package +revision 40690 +shortdesc i386-freebsd files of pdfxup +containersize 340 +containerchecksum 1da4dd4c33ef7237043fcb065825ef7ccecb813083939a373ea5a304d75f171490af0a8a1a3c232a1ebc913867999e2b14ff727d2737e5f5c8f447bf7245e851 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfxup + +name pdfxup.i386-linux +category Package +revision 40690 +shortdesc i386-linux files of pdfxup +containersize 336 +containerchecksum 4c8f3d570031d80bafce122f7ef719623369d391f74c15c0548ca1102fbbb90daaaeeeb987e173d4f97440bc10e0f3ca2949b677438eacaf8fe748019ef03e69 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfxup + +name pdfxup.i386-netbsd +category Package +revision 40690 +shortdesc i386-netbsd files of pdfxup +containersize 340 +containerchecksum 9cc6268b8222705bc9afaf9c1739a81ae213cfacb6072a6f2719b25658cd6a3dd65a930e905ef8b1815b5a46c1ff43182b4a2aa3f3716649286d699c1da795d8 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfxup + +name pdfxup.i386-solaris +category Package +revision 40690 +shortdesc i386-solaris files of pdfxup +containersize 336 +containerchecksum 126bf22238e8668a95a588b696c256c34ebc6f21f655a819b1c3d9a4f1371fbaa2d954dd3d0938a66f328f2a2452a708c54abe87c43ded1498d1ecc16fdbd0ff +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfxup + +name pdfxup.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pdfxup +containersize 340 +containerchecksum c792185f39978a444d9e2c51040f4cc1583b1fecda253d6d3489d66d86effb05903ec0f1a3e6ac59884020637d4cf5c9aebe73c1955b1e3c20e74148aab7ccf9 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pdfxup + +name pdfxup.x86_64-cygwin +category Package +revision 40690 +shortdesc x86_64-cygwin files of pdfxup +containersize 340 +containerchecksum 046d871af7a7934b035ccd80a1aff1d1b378399de3b2ad2fbef97ef75b67acd533ab0ca5a3ac2558f69f2380c8961f90457fbfe26e33e04198207ed410db4457 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfxup + +name pdfxup.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdfxup +containersize 348 +containerchecksum 734b9fd42f5047e2347c130e041d2d4be239555db18a7a8ae92efbfe807a3be31ae80442d4304b645d5a8e1864023ac245464aeb748fcb8b15825160d8a5ac87 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfxup + +name pdfxup.x86_64-linux +category Package +revision 40690 +shortdesc x86_64-linux files of pdfxup +containersize 336 +containerchecksum 7d3b38006bc107b5b6e232f62fb9996973027d95d3c12ca5d5b6b40e0d618054de262d34c7bf0bfb24c3a73de75da56e63cc7772db3b7ca7666db11a2ea9de36 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfxup + +name pdfxup.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdfxup +containersize 344 +containerchecksum 065b446a722e2ca5f6226ba81beac23fac1d5c70b3ffe5c845d7f90772ba118ad0a1b7816b26da1a615064224920c97572a49c1c41a084d1c9d7128937439afe +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfxup + +name pdfxup.x86_64-solaris +category Package +revision 40690 +shortdesc x86_64-solaris files of pdfxup +containersize 340 +containerchecksum 137e503ed52341aa9c1cdff2b320c0b0819f0ac392a2fff796e5868133b64dca56bd2d4028b20cedf3be5a37a911530dff051440eb3db58bdd4aca2dd6d988e0 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfxup + +name pecha +category Package +revision 15878 +shortdesc Print Tibetan text in the classic pecha layout style +relocated 1 +longdesc The pecha class provides an environment for writing Tibetan on +longdesc LaTeX2e in the traditional Tibetan Pecha layout used for +longdesc spiritual or philosophical texts, using the cTib4TeX package by +longdesc Oliver Corff. It provides features like headers in different +longdesc languages, page numbering in Tibetan and more. +containersize 10064 +containerchecksum 12092c82c52e34259fb0894b8375c45fd94b9aead121085736a0f7bac90b7e156906a22d233c596c79880aa0b858f7213f37b2059cecbb4627ce2e4163f22335 +doccontainersize 73072 +doccontainerchecksum 3d0d9184aa0009ab67f299a87b3840513229a93ec08e33208fc7b3c1a69fe043b02844ccf7569d14c5d5cdf0546224b320970caa080458c92cc299853b021c98 +docfiles size=31 + RELOC/doc/latex/pecha/CHANGES + RELOC/doc/latex/pecha/COPYING + RELOC/doc/latex/pecha/README details="Package README" + RELOC/doc/latex/pecha/example.pdf details="Example usage" + RELOC/doc/latex/pecha/example.tex + RELOC/doc/latex/pecha/pecha_docu.pdf details="Package documentation" + RELOC/doc/latex/pecha/pecha_docu.tex +runfiles size=11 + RELOC/tex/latex/pecha/ctibmantra.sty + RELOC/tex/latex/pecha/pecha.cls +catalogue-ctan /language/tibetan/pecha +catalogue-license gpl +catalogue-topics tibetan +catalogue-version 0.1 + +name pedigree-perl +category Package +revision 31990 +shortdesc Generate TeX pedigree files from CSV files +longdesc This program generates TeX commands to typeset pedigrees -- +longdesc either TeX fragments or full LaTeX files, to be processed by +longdesc the authors' pst-pdgr package. The program has support for +longdesc multilanguage pedigrees (at the present moment the English and +longdesc Russian languages are supported). +depend pedigree-perl.ARCH +containersize 17236 +containerchecksum 9adc918e1156b2a14bc144b96b5d3fe2b1272a5c9924e30c67236c564c1a065f06ea075249df21f19ce13b9cc03a885402e120d6b8f40f912d8c6ef4b98fc1f3 +doccontainersize 649380 +doccontainerchecksum 1e645090b3cb78b95bfed3398923c6e4cd39637238e7849bb1d05623307f82115fca87ceb6bac2aa89beb68371d7acd438099675ca33295839e413905b4ae150 +docfiles size=465 + texmf-dist/doc/man/man1/pedigree.1 + texmf-dist/doc/man/man1/pedigree.man1.pdf + texmf-dist/doc/support/pedigree-perl/LICENSE + texmf-dist/doc/support/pedigree-perl/Makefile + texmf-dist/doc/support/pedigree-perl/NEWS + texmf-dist/doc/support/pedigree-perl/Pedigree.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/AbortionNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Area.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/ChildlessNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Language.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Makefile + texmf-dist/doc/support/pedigree-perl/Pedigree/MarriageNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Node.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Parser.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/PersonNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/TwinsNode.3 + texmf-dist/doc/support/pedigree-perl/README + texmf-dist/doc/support/pedigree-perl/doc/Makefile + texmf-dist/doc/support/pedigree-perl/doc/abortions.tex + texmf-dist/doc/support/pedigree-perl/doc/english.tex + texmf-dist/doc/support/pedigree-perl/doc/english1.tex + texmf-dist/doc/support/pedigree-perl/doc/pedigree.bib + texmf-dist/doc/support/pedigree-perl/doc/pedigree.pdf details="Package documentation" + texmf-dist/doc/support/pedigree-perl/doc/pedigree.ps + texmf-dist/doc/support/pedigree-perl/doc/pedigree.tex + texmf-dist/doc/support/pedigree-perl/doc/russian.tex + texmf-dist/doc/support/pedigree-perl/examples/abortions.csv + texmf-dist/doc/support/pedigree-perl/examples/badsort.csv + texmf-dist/doc/support/pedigree-perl/examples/childlessness.csv + texmf-dist/doc/support/pedigree-perl/examples/consanguinic.csv + texmf-dist/doc/support/pedigree-perl/examples/english.cfg + texmf-dist/doc/support/pedigree-perl/examples/english.csv + texmf-dist/doc/support/pedigree-perl/examples/english1.cfg + texmf-dist/doc/support/pedigree-perl/examples/english_short.cfg + texmf-dist/doc/support/pedigree-perl/examples/pedigree.cfg + texmf-dist/doc/support/pedigree-perl/examples/russian.cfg + texmf-dist/doc/support/pedigree-perl/examples/russian.csv + texmf-dist/doc/support/pedigree-perl/examples/sort1.csv + texmf-dist/doc/support/pedigree-perl/examples/sort2.csv + texmf-dist/doc/support/pedigree-perl/examples/sort3.csv + texmf-dist/doc/support/pedigree-perl/examples/twins.csv +runfiles size=28 + texmf-dist/scripts/pedigree-perl/Pedigree.pm + texmf-dist/scripts/pedigree-perl/Pedigree/AbortionNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Area.pm + texmf-dist/scripts/pedigree-perl/Pedigree/ChildlessNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Language.pm + texmf-dist/scripts/pedigree-perl/Pedigree/MarriageNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Node.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Parser.pm + texmf-dist/scripts/pedigree-perl/Pedigree/PersonNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/TwinsNode.pm + texmf-dist/scripts/pedigree-perl/pedigree.pl +catalogue-ctan /graphics/pstricks/contrib/pedigree/pedigree-perl +catalogue-license gpl2 +catalogue-topics humanities csv-support +catalogue-version 1.0 + +name pedigree-perl.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pedigree-perl +containersize 348 +containerchecksum 3e2304306e6679de3abff9aeddf5258ad323f607ee08b7f7b921061b85e304c03d4746a39cd8b9e7bbc21d7d7914596ed720ef70934d34a29abb3bd3fdc82e73 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pedigree + +name pedigree-perl.amd64-freebsd +category Package +revision 25962 +shortdesc amd64-freebsd files of pedigree-perl +containersize 348 +containerchecksum 710fd1f3d421604fee48d2d5c026eb4f4d41b71b2fc59a670ed523f57b9509da503b080c5ab0674d4a738c65880cf1215c36314fb91c2c91517178cf10272fbd +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pedigree + +name pedigree-perl.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pedigree-perl +containersize 348 +containerchecksum 1d42d108edeaa2c66e004776e5acdf5a38d67babca3ec11bc266cb49d567a4c520f1bd3a6be7d2ca2d97de7e98ee5ff474708fb5b682f594fe405ffa3921782b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pedigree + +name pedigree-perl.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pedigree-perl +containersize 348 +containerchecksum 91c11d6dedfa3ec4411b2a93ea7e6094bef1492fdabb06198a47079b0549680a4bd778ea72ddce794722f57251e5b72eef6a1a7ef9bf2502d1a82c716ab52148 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pedigree + +name pedigree-perl.i386-cygwin +category Package +revision 25962 +shortdesc i386-cygwin files of pedigree-perl +containersize 344 +containerchecksum e9bbda0e28b58656a55a662d5f5ff7d8d762ac32ffee1862c75a9c99bd2f0adb4b8221cea7b5df6de25d263dee1ea1eac7e074be3bf1314da012824921d72218 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pedigree + +name pedigree-perl.i386-freebsd +category Package +revision 25962 +shortdesc i386-freebsd files of pedigree-perl +containersize 348 +containerchecksum e5807f7b9fcd98e01bfe579fa22660a5254cb6b409c5213688d2e935c9b8a80be8c5a6443efa6e7e2dd64f00908059002f17584f3c1af6dc42a7cc6d7adedf8a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pedigree + +name pedigree-perl.i386-linux +category Package +revision 25962 +shortdesc i386-linux files of pedigree-perl +containersize 348 +containerchecksum 4b8a8a54793c10a4afb39f3db72ea1dd3b1011f7120160ae4cbd9004b8a276db77651a76c2048932835430687a835b2e97f38a9b8022a2231ebcf06b1dc23bcc +binfiles arch=i386-linux size=1 + bin/i386-linux/pedigree + +name pedigree-perl.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pedigree-perl +containersize 344 +containerchecksum a5e90da023d99347c3d0b5b73614fac60f57a98c212c9400467feef8e05fc88b6aa8bc8fcc8f692d094ef22e81b8c594b2de2837ce9a4af34aab41a1f7f8efd4 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pedigree + +name pedigree-perl.i386-solaris +category Package +revision 25962 +shortdesc i386-solaris files of pedigree-perl +containersize 348 +containerchecksum 30203afaf475a1c5dbbaf121faa5c8bdab4fafecc4d7a827b5cdea840f5af4355b12225d671c4c3e774113f8a9020231f3f2e6a49792a76f2512ac0c865ac1a1 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pedigree + +name pedigree-perl.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pedigree-perl +containersize 344 +containerchecksum 67b699e77466a130d72ceb3e00b8de3355d2c6407a46941fcc762f07ace508923a84c963bb1ac70ae3f33ff184ba35b4fb781b204570948174e0b8550c43ae4a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pedigree + +name pedigree-perl.win32 +category Package +revision 25962 +shortdesc win32 files of pedigree-perl +containersize 692 +containerchecksum 44ba85571be20fe6b4650097953a42e7719b262d7df67fa4de1f6a480f0b2ed1cc941851fe0cbd2c229d94c2cd4606b92b7e61ae08c5a5c49e47c9c93ba79ef2 +binfiles arch=win32 size=1 + bin/win32/pedigree.exe + +name pedigree-perl.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pedigree-perl +containersize 348 +containerchecksum 2a611e14fafee03f4a8a66470aa01203c6726240993a2968946f9db3153083ab5605e3c4bbb306f1f61ff6de8bba0987dc1a37c16f8a1aec15cc92f62ae92a0f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pedigree + +name pedigree-perl.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pedigree-perl +containersize 356 +containerchecksum 3e3ebf495602222c3288cf99cf330ebafc693c05248b17500a1195e4e3ff37584d989ece7b85cf64662ec991beef35691db3f02dec8f942fa34f40a868c4fb6f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pedigree + +name pedigree-perl.x86_64-linux +category Package +revision 25962 +shortdesc x86_64-linux files of pedigree-perl +containersize 344 +containerchecksum 5a14b0f04b21c4b74e6cc8dc30a7869bac6786ef703b325a4b839b74dc27d309259d9325f39aa8f235759c5ca4e6c4f1a949f4e5bdea0af133d07b7d6f40cd28 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pedigree + +name pedigree-perl.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pedigree-perl +containersize 352 +containerchecksum c61e6818e8f2d43309295e11811b4ad1f48b8d4a4ab7d4e0a3d0f923085052b4373b3e8ed6beeaf29109d5bc226bbe08b92a1e5d5a3967e9e0428f70d7a7ab97 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pedigree + +name pedigree-perl.x86_64-solaris +category Package +revision 25962 +shortdesc x86_64-solaris files of pedigree-perl +containersize 348 +containerchecksum 99b24feacf46ae3294637a90162641d17a2062f142ad2dbaea7db4c1de9ee927b3695e0b980831c2c31c55b4e934b66616ee2db8dffc4745acee3c4004607477 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pedigree + +name penrose +category Package +revision 57508 +shortdesc A TikZ library for producing Penrose tilings +relocated 1 +longdesc This package provides a TikZ library for drawing Penrose tiles. +longdesc It currently supports the kite/dart, rhombus, and pentagon tile +longdesc sets. There are two main methods for their placement: one that +longdesc automatically generates a tiling, and one that allows for "by +longdesc hand" placement. Furthermore, the tiles themselves can be +longdesc deformed and will still (hopefully!) fit together in the +longdesc correct fashion. +containersize 7448 +containerchecksum b8572b376e006126dfb925758e907f3993c7eb0a157a57a6a36c99103f3ed7ac58ae406f6888b7303fcea4c43b67e50162af0235d7d923e79c497c60403a3e2a +doccontainersize 966168 +doccontainerchecksum a02fb2976c23ec8dc51ecc70fb6e702f62ff6c8e14de437e2bb3a478a432034e1a87f92266930e5c56931e4db8d2bb0bb8ab1c464ee4c8ccd15cea0df8624e61 +docfiles size=260 + RELOC/doc/latex/penrose/README details="Readme" + RELOC/doc/latex/penrose/README.txt + RELOC/doc/latex/penrose/penrose.pdf details="User documentation" + RELOC/doc/latex/penrose/penrose.tex + RELOC/doc/latex/penrose/penrose_code.pdf details="Code documentation" +srccontainersize 13256 +srccontainerchecksum d40b7a787431ac7ad6af14de17bdf749ec5743f3a95226f084bbf3bdf4ad720b43b597dc432c9831d871f030eee049e08e8bad9d2efae63e9d588db31ae15178 +srcfiles size=25 + RELOC/source/latex/penrose/penrose_code.dtx + RELOC/source/latex/penrose/penrose_code.ins +runfiles size=19 + RELOC/tex/latex/penrose/tikzlibrarypenrose.code.tex +catalogue-contact-bugs https://github.com/loopspace/penrose/issues +catalogue-contact-repository https://github.com/loopspace/penrose +catalogue-ctan /graphics/pgf/contrib/penrose +catalogue-license lppl1.3c +catalogue-topics maths pgf-tikz +catalogue-version 1.4 + +name perception +category Package +revision 48861 +shortdesc BibTeX style for the journal Perception +relocated 1 +longdesc A product of custom-bib, provided simply to save others' time. +containersize 6304 +containerchecksum 669bf4b618c4120d6cd7b574352c38d0fb3ab7bd949e26ea239f4ceb0fccbe102dcc6644ad2cee9eb79385f590918a12bb2c065f80b54e8343223056df448060 +doccontainersize 416 +doccontainerchecksum 35428e19d9e2429691948331ef574168a3eb5dd3e09f4286c66003ced8c0a65da9853de4dd57a1920e2f2315b8543f9ec9e096bbd26123554455dd8c23b33f55 +docfiles size=1 + RELOC/doc/bibtex/perception/README details="Readme" +runfiles size=8 + RELOC/bibtex/bst/perception/perception.bst +catalogue-ctan /biblio/bibtex/contrib/perception +catalogue-license lppl +catalogue-topics bibtex-sty journalpub + +name perfectcut +category Package +revision 54080 +shortdesc Nested delimiters that consistently grow regardless of the contents +relocated 1 +longdesc This package defines the command \perfectcut#1#2 which displays +longdesc a bracket <#1||#2>. Various other delimiters are similarly +longdesc defined (parentheses, square brackets ...). The effect of these +longdesc commands is to let the delimiters grow according to the number +longdesc of nested \perfectcommands (regardless of the size of the +longdesc contents). The package was originally intended for solving a +longdesc notational issue for direct-style continuation calculi in proof +longdesc theory. For general use, the package also defines commands for +longdesc defining other sorts of delimiters which will behave in the +longdesc same way (see example in the documentation). The package also +longdesc offers a robust reimplementation of \big, \bigg, etc. +containersize 4660 +containerchecksum edf0b4dc69d24b4515b0285dd4f4c7a89dae239eea2cad7cd194e9625dcc7e306c295ae67869d1e58d64e0f68d8c39779e0cd90a4c4f5a4e769be73037cef75f +doccontainersize 167560 +doccontainerchecksum 84443432cdd05634c4f75ce3b912bbb2f1681237cfcf3c34ae070fb07e0342b7a5a0abf7dc4d26994bb7506ad3d6b5bd008d4a2cc738b418cbb9b397ecb1d2ba +docfiles size=45 + RELOC/doc/latex/perfectcut/README details="Readme" + RELOC/doc/latex/perfectcut/perfectcut.pdf details="Package documentation" + RELOC/doc/latex/perfectcut/perfectcut.tex +runfiles size=5 + RELOC/tex/latex/perfectcut/perfectcut.sty +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-license lppl1.3 +catalogue-topics paren-mgmt comp-theory maths +catalogue-version 2.3 + +name perltex +category Package +revision 52162 +shortdesc Define LaTeX macros in terms of Perl code +longdesc PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e +longdesc package (perltex.sty) that, together, give the user the ability +longdesc to define LaTeX macros in terms of Perl code. Once defined, a +longdesc Perl macro becomes indistinguishable from any other LaTeX +longdesc macro. PerlTeX thereby combines LaTeX's typesetting power with +longdesc Perl's programmability. PerlTeX will make use of persistent +longdesc named pipes, and thereby run more efficiently, on operating +longdesc systems that offer them (mostly Unix-like systems). Also +longdesc provided is a switch to generate a PerlTeX-free, +longdesc document-specific, noperltex.sty that is useful when +longdesc distributing a document to places where PerlTeX is not +longdesc available. +depend perltex.ARCH +containersize 7300 +containerchecksum af7cd6b065f2405a514d20cb386b34399742a42286002ab3e0f795b64dcb434ae97470ce9cbf25cb27a9b124ebe56844b47c7cf89e1f83a4bd35f1bfcc98163a +doccontainersize 299716 +doccontainerchecksum d39c93f4bf3da08266bb0f10b06582db2bf96bee73faafdb191af3770c7c24abde407774f21d3c97b1f2453a8a9bd24576acaf0606796d7439334b8b1e42ac7d +docfiles size=83 + texmf-dist/doc/latex/perltex/README details="Readme" + texmf-dist/doc/latex/perltex/example.tex + texmf-dist/doc/latex/perltex/perltex.pdf details="Package documentation" + texmf-dist/doc/man/man1/perltex.1 + texmf-dist/doc/man/man1/perltex.man1.pdf +srccontainersize 31468 +srccontainerchecksum 99a8e27c23a7056496c56e734fefa1e921a002d7b86c153b3a209f7c3d7c415dac05e77b0ce5bc8685bd622243d6ed53be4a7f570a3ed487c3d55baa5b5af06e +srcfiles size=31 + texmf-dist/source/latex/perltex/perltex.dtx + texmf-dist/source/latex/perltex/perltex.ins +runfiles size=6 + texmf-dist/scripts/perltex/perltex.pl + texmf-dist/tex/latex/perltex/perltex.sty +catalogue-ctan /macros/latex/contrib/perltex +catalogue-license lppl +catalogue-topics callback +catalogue-version 2.2 + +name perltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of perltex +containersize 340 +containerchecksum 41f5217eb662c240b3c86a4275d9ab5d830302447e61056fc10312cab4ccb2216fc8f8c0536d0aabfc884c6fbecbae991a3acf62ac62dc8408f2dbb2d2753c5e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/perltex + +name perltex.amd64-freebsd +category Package +revision 16484 +shortdesc amd64-freebsd files of perltex +containersize 340 +containerchecksum b60a61390d28d96efedf8fe3f35cb7135c351cb656fdbc4d051c822754b8b10ea1651130f6abb38d913275bc0ac8f4a377df586cdaf431636926166ac4a979af +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/perltex + +name perltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of perltex +containersize 340 +containerchecksum 790af66e4d2baad100c83438ddccbe6d99973efb07aaacb522b32b5112a702230056879fed0f7d726b787f34eca7f8c2f98a4ca45ff4da29de50235df190eb09 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/perltex + +name perltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of perltex +containersize 340 +containerchecksum 66c31d0e63520b849aacb770d0bca88464cc0fb97bc17182ad5428d5411708dd1b3d85a2a19bdfa0d03b66f3fe33a6f54b87c31f223a2d5fa9189fcd4d8fae1b +binfiles arch=armhf-linux size=1 + bin/armhf-linux/perltex + +name perltex.i386-cygwin +category Package +revision 16181 +shortdesc i386-cygwin files of perltex +containersize 340 +containerchecksum 0dd638fbb963b14ccb592b429132e0fee3df45c2d441cc5a81df0e2161c41597b10e414f618d2144d263b60ea662987628d8d2dfd98a84e98a807302f4749ad4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/perltex + +name perltex.i386-freebsd +category Package +revision 16484 +shortdesc i386-freebsd files of perltex +containersize 340 +containerchecksum 13045697c6f21ee4470423554561cbf958e97d62049c188d21ab8ac0c332308e26db9bfd4056dce68c67a44e427835f1d4e00c75766cf8eb4e90e212807001ea +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/perltex + +name perltex.i386-linux +category Package +revision 16181 +shortdesc i386-linux files of perltex +containersize 340 +containerchecksum 3d84e63a437aa7ae4842ac854e199e2301d2bed570708917427487cf53f7dce2b3d3b2b47e8e6740a3b0bd90a272f577df9e341aa0136c22a13517d559eab6bb +binfiles arch=i386-linux size=1 + bin/i386-linux/perltex + +name perltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of perltex +containersize 340 +containerchecksum 07a0d6c31aee6e51dc63e4f885ead6e0d8cfea478477a1b9ac0343f0e5f271625d46dc2860fec35ccbe80a8d2f452d612140fc8433c8da054d7eb56e44376fa9 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/perltex + +name perltex.i386-solaris +category Package +revision 16181 +shortdesc i386-solaris files of perltex +containersize 340 +containerchecksum cdc83f7ef5c8a247cf3a09e4800b0fb0ee9c11c91ebfff561d9c441b02b951a385a7718db4267a134ca548eaf561ec4048f7b9b26f28021e6eddc2acbafa546f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/perltex + +name perltex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of perltex +containersize 340 +containerchecksum 72131516c7def195010d6ced9409e6f06473cc209c9a5c8edfd64d476102ba13e30dc75d8451a398da165bcbdf87477522c2636598953825e6b8a333ed5731d7 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/perltex + +name perltex.win32 +category Package +revision 15404 +shortdesc win32 files of perltex +containersize 684 +containerchecksum 0ff0d53328f4f098d0b5fdbffc8f2e7f972e8e077219be0977f8daa39a508f2e5491ebffe8c4d7f2b1e7eb7b9394143daebbec0a99a31ed38ad788a0ee70d358 +binfiles arch=win32 size=1 + bin/win32/perltex.exe + +name perltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of perltex +containersize 340 +containerchecksum 6b48705cc03bd590873939d0907f362618c4a5af7193ddaac417c759829e5beca3426800df34791fa2765e6343bb2065167f9702d88d1999484fac69bf011966 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/perltex + +name perltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of perltex +containersize 348 +containerchecksum bf5570076c697a93a398795905acb78ab91f9fb0c730ad2a58713984f124dee462506026879a49708a8f9262836c9855f6c33fa3c0fd12f265698f5b59afd2a9 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/perltex + +name perltex.x86_64-linux +category Package +revision 16181 +shortdesc x86_64-linux files of perltex +containersize 340 +containerchecksum 1a045ca2d713d75dc473867a870983cd5eb4cdf9b9b4e6c25e9333dda0fcbc85713b383a4620444362607b9597c4ef81296b2ae4c18a3e80696b8be0a1867eac +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/perltex + +name perltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of perltex +containersize 344 +containerchecksum d7aa2f19d4faf8f012a348ff72a81d8629758e2a92e3bc9f5b2d97f2b47655fa2ad96660a558863d9372f46689383474fc03d8bfc50acdeeb09559c3d8ca3e56 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/perltex + +name perltex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of perltex +containersize 340 +containerchecksum 14921acc0ebabee60c6de2cae31bd6ffd8887fbb0161aec75ae628a7a4b65fdd9dac02a4a2809ca06cfb1fb3dee91f04a0986b181ab55ee7256e61d826437975 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/perltex + +name permute +category Package +revision 15878 +shortdesc Support for symmetric groups +relocated 1 +longdesc A package for symmetric groups, allowing you to input, output, +longdesc and calculate with them. +containersize 2740 +containerchecksum 2b1ea22ff45718a12f5a031a60a2780a43b324afb3a7c4b3bf2e1a9808f5eb789938f0e084214912a50dc1a8ebe76c58cc39dccd5a411ce001fafc8fa5c41ea4 +doccontainersize 70116 +doccontainerchecksum f0f9f8d4e7e9b7cf5794529bd5febb0bd58f1ba0e95a72d688280ac3e6837cf39bdfb62ac29584fbf8cb37e1dafdcb971b9333a0306fa867fa4a1a256dd5a4e3 +docfiles size=22 + RELOC/doc/latex/permute/permute.pdf details="Package documentation" +srccontainersize 11164 +srccontainerchecksum 4273fc09b30de6ea203e13b09822a07b222de8d1abc143e67c0c465bd8c31ca4648b83a7fbd895a8865b7793462bd020642d383e761c926504a6d40e785c0108 +srcfiles size=11 + RELOC/source/latex/permute/permute.dtx + RELOC/source/latex/permute/permute.ins +runfiles size=3 + RELOC/tex/latex/permute/permute.sty +catalogue-ctan /macros/latex/contrib/permute +catalogue-license lppl +catalogue-topics maths + +name persian-bib +category Package +revision 37297 +shortdesc Persian translations of classic BibTeX styles +relocated 1 +longdesc Currently 9 files: acm-fa.bst, asa-fa.bst, chicago-fa.bst, +longdesc ieeetr-fa.bst, plain-fa-inLTR-beamer.bst, plain-fa-inLTR.bst, +longdesc plain-fa.bst, plainnat-fa.bst and unsrt-fa.bst are modified for +longdesc Persian documents prepared with XePersian (which the present +longdesc package depends on). The Persian .bst files can simultaneously +longdesc handle both Latin and Persian references. A file cp1256fa.csf +longdesc is provided for correct sorting of Persian references and three +longdesc fields LANGUAGE, TRANSLATOR and AUTHORFA are defined. +containersize 21692 +containerchecksum e6650399eb5129dd0ad08c3ff93843da47287ce641a65826545b10a9213437da56467eabd8c37f1a7fc17086af968043586c53bdbc7485e9a4453b3f5b23bf83 +doccontainersize 186856 +doccontainerchecksum a18f3652bfa8cccd8d574e475859bde8d41de04d3093f05222dfe5687460b8eb29a1e9bc258cb73cca69dad52f567572a654f46414a0d513ec27e462f4787f35 +docfiles size=58 + RELOC/doc/xelatex/persian-bib/MyReferences.bib + RELOC/doc/xelatex/persian-bib/Persian-bib-userguide.pdf details="Package documentation" language="fa" + RELOC/doc/xelatex/persian-bib/Persian-bib-userguide.tex + RELOC/doc/xelatex/persian-bib/README details="Readme" + RELOC/doc/xelatex/persian-bib/bibtex-example.tex + RELOC/doc/xelatex/persian-bib/gen_pdf.pl +runfiles size=66 + RELOC/bibtex/bst/persian-bib/acm-fa.bst + RELOC/bibtex/bst/persian-bib/asa-fa.bst + RELOC/bibtex/bst/persian-bib/chicago-fa.bst + RELOC/bibtex/bst/persian-bib/ieeetr-fa.bst + RELOC/bibtex/bst/persian-bib/plain-fa-inLTR-beamer.bst + RELOC/bibtex/bst/persian-bib/plain-fa-inLTR.bst + RELOC/bibtex/bst/persian-bib/plain-fa.bst + RELOC/bibtex/bst/persian-bib/plainnat-fa.bst + RELOC/bibtex/bst/persian-bib/unsrt-fa.bst + RELOC/bibtex/csf/persian-bib/cp1256fa.csf +catalogue-ctan /biblio/bibtex/contrib/persian-bib +catalogue-license lppl1.3 +catalogue-topics persian bibtex-sty +catalogue-version 0.9 + +name petiteannonce +category Package +revision 25915 +shortdesc A class for small advertisements +relocated 1 +longdesc The class enables you to create the sort of adverts that you +longdesc pin on a noticeboard, with tear-off strips at the bottom where +longdesc you can place contact details. +containersize 3328 +containerchecksum 8ff32eaddcc84973851b93f0c1c1b250b596a080669ef60ea2c115098c4984d426e37240ae8781fa3b95ce494e9fecccdd259fd25b47402498028f2b8e5f9fe3 +doccontainersize 193556 +doccontainerchecksum d171f31889fbf07b727c78a99bc91a2e6a8231faa25944a600ddb17ba32273ffa40a39a56e6e9b2c35ebfd0bb396ee699ebd9ab179577ab07e63feb8686d4af5 +docfiles size=75 + RELOC/doc/latex/petiteannonce/baignoire.JPG + RELOC/doc/latex/petiteannonce/petiteannonce.doc.pdf details="Package documentation" + RELOC/doc/latex/petiteannonce/petiteannonce.doc.tex + RELOC/doc/latex/petiteannonce/petiteannonceexample.pdf details="Example of use" + RELOC/doc/latex/petiteannonce/petiteannonceexample.tex +runfiles size=3 + RELOC/tex/latex/petiteannonce/petiteannonce.cls +catalogue-ctan /macros/latex/contrib/petiteannonce +catalogue-license lppl +catalogue-topics advert +catalogue-version 1.0001 + +name petri-nets +category Package +revision 39165 +shortdesc A set TeX/LaTeX packages for drawing Petri nets +longdesc Petri-nets offers a set of TeX/LaTeX packages about Petri nets +longdesc and related models. Three packages are available: the first +longdesc allows the user to draw Petri-nets in PostScript documents; the +longdesc second defines macros related to PBC, M-nets and B(PN) models; +longdesc and a third that combines the other two. +depend petri-nets.ARCH +containersize 7900 +containerchecksum 0807444f934acf16b052dc499a097a2a645d037622a71430cd82fcef85d11bc652341ce6396a27d717effd08bde8ba3224c5235351fa9146000c01abd522f644 +doccontainersize 190288 +doccontainerchecksum cf03048e2bccded143fb493b100fd19103ab90f40713441c5380446702d6c57ac3820f2892a3dfdb80880952e09de78e69b309783767a3e157f76b81c9360535 +docfiles size=69 + texmf-dist/doc/generic/petri-nets/COPYING + texmf-dist/doc/generic/petri-nets/ChangeLog + texmf-dist/doc/generic/petri-nets/README + texmf-dist/doc/generic/petri-nets/pndoc.pdf details="Package documentation" + texmf-dist/doc/generic/petri-nets/pndoc.tex +runfiles size=14 + texmf-dist/scripts/petri-nets/pn2pdf + texmf-dist/tex/generic/petri-nets/pndraw.sty + texmf-dist/tex/generic/petri-nets/pndraw.tex + texmf-dist/tex/generic/petri-nets/pnets.sty + texmf-dist/tex/generic/petri-nets/pnets.tex + texmf-dist/tex/generic/petri-nets/pntext.sty + texmf-dist/tex/generic/petri-nets/pntext.tex + texmf-dist/tex/generic/petri-nets/pnversion.tex +catalogue-ctan /macros/generic/petri-nets +catalogue-license gpl +catalogue-topics maths + +name petri-nets.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of petri-nets +containersize 348 +containerchecksum 4cc20e59c444cb2f9a0bed36d18cf8ad745059ce341c00c9e09d5456e695d00e9ada88ce30c1502544ce3b0637af8d8cebd747ea718b879f326f6316f1fc8a1c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pn2pdf + +name petri-nets.amd64-freebsd +category Package +revision 39165 +shortdesc amd64-freebsd files of petri-nets +containersize 348 +containerchecksum b4b2217f7637d3434a15ba76be9a66a618209189b6dc8e76df244ff243ff2b6d4455f1aef69f550a652a22262835679581595447bbb97494ffb37cf58707246f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pn2pdf + +name petri-nets.amd64-netbsd +category Package +revision 39165 +shortdesc amd64-netbsd files of petri-nets +containersize 344 +containerchecksum b6e545d3f1fe5a8a5074a405e5dbd635ca8a01111dfafda8a4a5580a1ce962b62c46169c47faca93fb4a2d7f5701e91da1f2b0c517b25aafa447297c056fce63 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pn2pdf + +name petri-nets.armhf-linux +category Package +revision 39165 +shortdesc armhf-linux files of petri-nets +containersize 344 +containerchecksum 55b89e691bfeb551580b0f9449413b53b9d27a787ec8106c96f3079d4904c17e596ccbd6e13f625f82af3a6c74f3b5f9556e08fc0dcfa58a6195b0c37deef428 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pn2pdf + +name petri-nets.i386-cygwin +category Package +revision 39165 +shortdesc i386-cygwin files of petri-nets +containersize 344 +containerchecksum 4c2235fb99fc901667a1df334be9fadd1bc5cc1b49ecce67016c3673c90b28f034d9c383a5b8463fe2504117fd8a240025090873f15f8ff61bd4c3d7b90cf104 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pn2pdf + +name petri-nets.i386-freebsd +category Package +revision 39165 +shortdesc i386-freebsd files of petri-nets +containersize 348 +containerchecksum 4f1f91e297793407644b527057a43b9a33c9af24909cb8a9f51e4771547cbd53232310659ce1d53aa7ced4337989c183f6c45398df853be313cb2c38d4543e98 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pn2pdf + +name petri-nets.i386-linux +category Package +revision 39165 +shortdesc i386-linux files of petri-nets +containersize 344 +containerchecksum 0186ae80297cad79a418a16bcf35181147289d50ae6059fbba7d6c11821694d7f2d933517336bcc7f6c83236cb4cd9476b53d9a8b9950a917e84f7a18600f9bb +binfiles arch=i386-linux size=1 + bin/i386-linux/pn2pdf + +name petri-nets.i386-netbsd +category Package +revision 39165 +shortdesc i386-netbsd files of petri-nets +containersize 344 +containerchecksum ad61f51012ce0e973a7645106fab319f09c5789aacb150a191454116cca600e3bd698a7f75c4918edbdc7b64bb9cfbab95a77a6e8b4d4697b600c6f922650dc5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pn2pdf + +name petri-nets.i386-solaris +category Package +revision 39165 +shortdesc i386-solaris files of petri-nets +containersize 344 +containerchecksum 07f4dbed8992245fa58910ced19e7104b6e6615efabb33937db65f9cbde2ea7b41be01f2499df03cbff291bddffc9a2a1345c874561a9ef73f0ece599e7205fd +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pn2pdf + +name petri-nets.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of petri-nets +containersize 344 +containerchecksum 29c4e376123b93b276a2c329742d6e15f9dba02addcb2a7794ffbe6d014f87db3452813354fceb299196d267900049bf5bdabde676f4fc15f532b8bdc877b01e +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pn2pdf + +name petri-nets.win32 +category Package +revision 39165 +shortdesc win32 files of petri-nets +containersize 688 +containerchecksum 7dea0f663a02d9c79837c69779782c6f9a091b3c0e6c4072767de3d54e6d2e20993a747ff88a91cf1af059e7476b867d9135e6fd938811cca053c4cda65450c7 +binfiles arch=win32 size=1 + bin/win32/pn2pdf.exe + +name petri-nets.x86_64-cygwin +category Package +revision 39165 +shortdesc x86_64-cygwin files of petri-nets +containersize 348 +containerchecksum 00dff5120e2ad2e7d7f1032ec00d6c7a548593ade788f63f6ac287a9f736b84093f86b0b000917edd6c340b1f95b31d693e11c51e6f42e250f12465e5eb24b74 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pn2pdf + +name petri-nets.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of petri-nets +containersize 356 +containerchecksum a587d516704dd6eeac39f1c4521a59f7f458710de9dc6ee1efdcaf4c1ca63fe961e5bf577bc42e214f70debf6ddbd1f155ed6b9ebb8d0ca87094700ae9b3c6d1 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pn2pdf + +name petri-nets.x86_64-linux +category Package +revision 39165 +shortdesc x86_64-linux files of petri-nets +containersize 344 +containerchecksum e0e68dab011ce5ce45076cbe8d4d3618bc6f96fad95479df049b653e473e5d927a784507b9ba8626a71ce39c54501d9d6c82d6330244a766026edf5510b0cf8f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pn2pdf + +name petri-nets.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of petri-nets +containersize 352 +containerchecksum 9b2b35375c2def4428cbefa0a2f77e249769a9245edb88297b7e732c255a6074fa38c1fc607145e1f7256dab49ac5f941f88264ea376fb4cebbd1f3b9ca4b20f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pn2pdf + +name petri-nets.x86_64-solaris +category Package +revision 39165 +shortdesc x86_64-solaris files of petri-nets +containersize 348 +containerchecksum c29471d7b6de42fe8fa77ce1e79b52d110adfe59ee9fdf44edbcd7168161af0ffa0a9c3552186c3200d44772937966901daffe4b9bdbaa9bf6ad49d82473a5a0 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pn2pdf + +name pfarrei +category Package +revision 31934 +shortdesc LaTeX support of pastors' and priests' work +longdesc In "Die TeXnische Komodie" (issue 1/2013) Christian Justen +longdesc described his use of LaTeX in his work as priest (similar +longdesc requirements may be encountered in the work of pastors and +longdesc other ministers of religion). One point was to arrange A5 pages +longdesc onto A4 landscape paper, either side-by-side or as a booklet. +longdesc Justen made two bash scripts for this job; the package provides +longdesc one texlua script for both requirements. (Note that file +longdesc a5toa4.tlu should have execute permissions in any +longdesc installation.) +depend pfarrei.ARCH +containersize 4632 +containerchecksum f6046dc96672b60ed272dd6fe23a4a51032f039d3aeaff3f8b5e2407c99fe1f43c568a03564a7c20212a97bbfa4ecbd0dcb7f5f44593e1485c8e5d9197467a6c +doccontainersize 499400 +doccontainerchecksum d50ff4603d51eb72d1d12e7f5b1440fa3d7abb1ab74fdf441d7e4a474df91247a1ccad504a14438bc0c3c6354c8f8674f180b5d9d826ff09a8749db3cf0d08c4 +docfiles size=123 + texmf-dist/doc/latex/pfarrei/pfarrei.pdf details="Package documentation (German)" language="de" +srccontainersize 13448 +srccontainerchecksum 1e4008782161066066fc4cb1b029a36f6a18eb0d5d52f11a2a70d04d4778de6ed1a80ea1fef5d8cc86c2e13b8cbcb1cf8ce43e58ff4431b16ca23c3fdafb9884 +srcfiles size=12 + texmf-dist/source/latex/pfarrei/README + texmf-dist/source/latex/pfarrei/pfarrei.dtx +runfiles size=6 + texmf-dist/scripts/pfarrei/a5toa4.tlu + texmf-dist/scripts/pfarrei/pfarrei.tlu + texmf-dist/tex/latex/pfarrei/a5toa4.tex + texmf-dist/tex/latex/pfarrei/pfarrei.sty +catalogue-ctan /macros/latex/contrib/pfarrei +catalogue-license lppl1.3 +catalogue-topics compact-print +catalogue-version r36 + +name pfarrei.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pfarrei +containersize 368 +containerchecksum 6f92ce489843f13d258460382db19872fde4db075cedc15d7b6c9e4cbe50f2c3f2d1aa378edd07cd2efa46eb22ac245a6be71101246a9498e1c2ec45e8ebb203 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/a5toa4 + bin/aarch64-linux/pfarrei + +name pfarrei.amd64-freebsd +category Package +revision 29348 +shortdesc amd64-freebsd files of pfarrei +containersize 368 +containerchecksum dda48b1d474882ac3dcb2bf7520964752e41032367860229b2747cc6245294c9f67e177bd6f278bf0b9ab6aea2544423ab0ab8fc81ebdf0c7b1482e3c337ec08 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/a5toa4 + bin/amd64-freebsd/pfarrei + +name pfarrei.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pfarrei +containersize 368 +containerchecksum a73657a4d995836466f196b29ea786df189372b4e6c4f2ecb0e1dd66f6ec4e752cbef282ed6da2393d38b3af42f56db5bfec1cc1994771b92da9834e9b8065de +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/a5toa4 + bin/amd64-netbsd/pfarrei + +name pfarrei.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pfarrei +containersize 364 +containerchecksum 864a292ccccf171200fab468922344d7a434b6fa0b6d9389b018b95a4205dcc6efaacd73c71e726ee65e2dd0cff7fee7625b74a674b955e640251df7f00a0e54 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/a5toa4 + bin/armhf-linux/pfarrei + +name pfarrei.i386-cygwin +category Package +revision 29348 +shortdesc i386-cygwin files of pfarrei +containersize 364 +containerchecksum 5aea340da74a9c45596ca30593062045eb3066a8d3300f6a7a2b0022a5b9995780dececaa19dcdc1380b253dd814b6adbe87c5aee7437279c58e02576f6cf6f4 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/a5toa4 + bin/i386-cygwin/pfarrei + +name pfarrei.i386-freebsd +category Package +revision 29348 +shortdesc i386-freebsd files of pfarrei +containersize 368 +containerchecksum 4ef803a0fd7a5a1af40631b3847e9e843bb1318731c6a0709fd4da6bc04feff477e5d16fc14f9fe607b32785f685778253fb99d88366fd4af9e4b6f515d8a487 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/a5toa4 + bin/i386-freebsd/pfarrei + +name pfarrei.i386-linux +category Package +revision 29348 +shortdesc i386-linux files of pfarrei +containersize 368 +containerchecksum 57cdc92c7a55f1a2b149e5cec6d66a5148bbcb014b1b7c9076def1b0bf5ca69d1600631c0028a79fb33fc81ad612c6395303f1491a23be5f6e82be407aeb0a28 +binfiles arch=i386-linux size=2 + bin/i386-linux/a5toa4 + bin/i386-linux/pfarrei + +name pfarrei.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pfarrei +containersize 368 +containerchecksum 2f8d35a98ffb65569888c8e1dca417782ceb38d7ccf308e6f09d38705e088d412080d1a0dffae3afe62e2fe4f897c4e855d303fcc671d21d99d4740de90c5d93 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/a5toa4 + bin/i386-netbsd/pfarrei + +name pfarrei.i386-solaris +category Package +revision 29348 +shortdesc i386-solaris files of pfarrei +containersize 368 +containerchecksum f9b3109d6b9fa62d2218fa2c234d6942048ed6cac1ff81850ee6c7f09ef1a3578963408a75219187418d060318ea8797697e17efba7a176757bb806b82b8f24b +binfiles arch=i386-solaris size=2 + bin/i386-solaris/a5toa4 + bin/i386-solaris/pfarrei + +name pfarrei.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pfarrei +containersize 368 +containerchecksum 8632a0df8f1effb04db29de901e4cd30817a9123eaff36be14d022ccd9ef7b029b76d15a20408338736ae8ecdceb5ef01602b73ac89a6ad4b8be2f9fb8267e36 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/a5toa4 + bin/universal-darwin/pfarrei + +name pfarrei.win32 +category Package +revision 29348 +shortdesc win32 files of pfarrei +containersize 704 +containerchecksum bc9d5f4d449ad374dbb0f806d37fd56a9364beea34b810e547e68f14b2352c58340cefc0c03865e3bbd8ff1fefd4460a89d1ffeafe18ae2816e98b722a758027 +binfiles arch=win32 size=2 + bin/win32/a5toa4.exe + bin/win32/pfarrei.exe + +name pfarrei.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pfarrei +containersize 368 +containerchecksum 4f7a060baad2b5e916be4441ad19a76055181bff1ee7cde48f26a90fad3a435d32dc9672d7c6e0b1681bf31bde0fe8b8fcb6bba3cccf7da164e2a65165d49cfd +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/a5toa4 + bin/x86_64-cygwin/pfarrei + +name pfarrei.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pfarrei +containersize 376 +containerchecksum 39f006c7d2b90ca22cc78a5a86879c8810d973ba0b95ff960923b0da9a268a0f42396ad6fe7b5edc16ad09dd20446e6ea71e00c342d433bacdd6f7657cfecae0 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/a5toa4 + bin/x86_64-darwinlegacy/pfarrei + +name pfarrei.x86_64-linux +category Package +revision 29348 +shortdesc x86_64-linux files of pfarrei +containersize 364 +containerchecksum 7580e8dfcf6bd513cd5bcdc2982f47512a15a4427c1254fde4c64353181a021152e8c55d21493ad2405b90353db3b4b6a4a160ad0488504b6b82d6289f4f3876 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/a5toa4 + bin/x86_64-linux/pfarrei + +name pfarrei.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pfarrei +containersize 376 +containerchecksum fa8c3251ba6ec38b771a9a5be1ffe44df30ac0c51e3e3d3c3e3c27f97ab0c457f89bdc64e3776db494d5de7cc83a9cc0a7979a616c5b80286e05a64434612736 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/a5toa4 + bin/x86_64-linuxmusl/pfarrei + +name pfarrei.x86_64-solaris +category Package +revision 29348 +shortdesc x86_64-solaris files of pfarrei +containersize 368 +containerchecksum 876bf1c818c685bcd3da5b193d4b0c3294df2d633ba084b3f4e7a36da47ac99114b8b43332d11fd7c80f0c9b9a299202c4d74a420c87dc20c9439de4ca6ed468 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/a5toa4 + bin/x86_64-solaris/pfarrei + +name pgf +category Package +revision 57240 +shortdesc Create PostScript and PDF graphics in TeX +relocated 1 +longdesc PGF is a macro package for creating graphics. It is platform- +longdesc and format-independent and works together with the most +longdesc important TeX backend drivers, including pdfTeX and dvips. It +longdesc comes with a user-friendly syntax layer called TikZ. Its usage +longdesc is similar to pstricks and the standard picture environment. +longdesc PGF works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. +longdesc Unlike pstricks, it can produce either PostScript or PDF +longdesc output. +depend atveryend +depend fp +depend graphics +depend ms +depend pdftexcmds +depend xcolor +containersize 716948 +containerchecksum da45fe7a5b4e9aacf39c64da1596a30ceffc8751ceb6543b20f6d3f2134da75eff7684a72ce15fee9d1e4404efcf98d9fd3354d9c178caa3881a735be87c9073 +doccontainersize 10717352 +doccontainerchecksum 697cc2e2503f3d71cd751530e1e9d8c9ada584690b212f03b7a15808b9f973de532dbbc144ef924b4e806d849cabe2850d1ae802c51b073d84e567349c29fb90 +docfiles size=4024 + RELOC/doc/generic/pgf/ChangeLog + RELOC/doc/generic/pgf/FILES + RELOC/doc/generic/pgf/INSTALL + RELOC/doc/generic/pgf/RELEASE_NOTES.md + RELOC/doc/generic/pgf/description.html + RELOC/doc/generic/pgf/extract.lua + RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.bb + RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.eps + RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.jpg + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.bb + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.eps + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.jpg + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.bb + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.eps + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.jpg + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.xbb + RELOC/doc/generic/pgf/images/pgfmanual-mindmap-1.pdf + RELOC/doc/generic/pgf/images/pgfmanual-mindmap-2.pdf + RELOC/doc/generic/pgf/licenses/LICENSE + RELOC/doc/generic/pgf/licenses/gnu-free-documentation-license-1.2.txt + RELOC/doc/generic/pgf/licenses/gnu-public-license-2.txt + RELOC/doc/generic/pgf/licenses/latex-project-public-license-1.3c.txt + RELOC/doc/generic/pgf/licenses/manifest-code.txt + RELOC/doc/generic/pgf/licenses/manifest-documentation.txt + RELOC/doc/generic/pgf/pgfmanual.pdf details="PGF Manual" + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-actions.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-animations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-arrows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-decorations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-design.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-external.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-images.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-internalregisters.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-layers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-matrices.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-nodes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-paths.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-patterns.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-plots.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-points.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-quick.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-scopes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-shadings.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transformations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transparency.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-drivers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-axes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-backend.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-examples.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-formats.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-introduction.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-main.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-polar.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-stylesheets.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-visualizers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithm-layer.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-binding-layer.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-circular.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-display-layer.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-edge-routing.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-examples.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-force.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-layered.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-misc.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-ogdf.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-overview.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-phylogenetics.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-trees.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-pgf.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-tikz.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-guidelines.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-installation.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-introduction.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-3d.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-angles.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-arrows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-automata.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-babel.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-backgrounds.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calc.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calendar.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-circuits.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-decorations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-edges.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-external.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fadings.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fit.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fixedpoint.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-folding.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fpu.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-lsystems.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-math.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-matrices.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-mindmaps.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-patterns.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-perspective.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-petri.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-handlers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-marks.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-profiler.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-rdf.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadings.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shapes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-spy.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-svg-path.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-through.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-trees.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-turtle.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-views.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-license.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-body.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-preamble.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-main.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-algorithms.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-commands.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-design.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-numberprinting.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-parsing.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-module-parser.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-oo.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pages.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfcalendar.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgffor.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeys.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeysfiltered.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-animations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-commands.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-overview.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-paths.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-protocol.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-actions.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-animations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-arrows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-coordinates.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-decorations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-design.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-graphs.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-matrices.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-paths.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-pics.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-plots.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-scopes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-shapes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transformations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transparency.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-trees.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-Euclid.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-chains.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-map.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-nodes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-xxcolor.tex + RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/text-en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-exp.table + RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/text-en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-sin.table + RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/text-en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-x.table + RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/Makefile + RELOC/doc/generic/pgf/version-for-dvipdfm/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-parametric-example-cut.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-dvipdfm/pgfmanual-dvipdfm.cfg + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/Makefile + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual-test.tex + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example-cut.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example-cut.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-dvipdfmx/pgfmanual-dvipdfmx.cfg + RELOC/doc/generic/pgf/version-for-dvips/en/Makefile + RELOC/doc/generic/pgf/version-for-dvips/en/pgfmanual-test.tex + RELOC/doc/generic/pgf/version-for-dvips/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-parametric-example-cut.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-dvips/pgfmanual-dvips.cfg + RELOC/doc/generic/pgf/version-for-dvisvgm/en/Makefile + RELOC/doc/generic/pgf/version-for-dvisvgm/en/color.cfg + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual-test.html + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual-test.tex + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual.html + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-parametric-example-cut.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/pgfmanual-dvisvgm.cfg + RELOC/doc/generic/pgf/version-for-luatex/en/Makefile + RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual-test.tex + RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example-cut.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example-cut.table + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-luatex/pgfmanual-luatex.cfg + RELOC/doc/generic/pgf/version-for-pdftex/en/Makefile + RELOC/doc/generic/pgf/version-for-pdftex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-parametric-example-cut.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-pdftex/pgfmanual-pdftex.cfg + RELOC/doc/generic/pgf/version-for-tex4ht/en/Makefile + RELOC/doc/generic/pgf/version-for-tex4ht/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-tex4ht/pgfmanual-tex4ht.cfg + RELOC/doc/generic/pgf/version-for-vtex/en/Makefile + RELOC/doc/generic/pgf/version-for-vtex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-vtex/pgfmanual-vtex.cfg + RELOC/doc/generic/pgf/version-for-xetex/en/Makefile + RELOC/doc/generic/pgf/version-for-xetex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-parametric-example-cut.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-xetex/pgfmanual-xetex.cfg +srccontainersize 33484 +srccontainerchecksum 2fc269eea7ef0c9ee04e15961494f4efa6c12a03a6c0a269a400d031fe154796c67ad96e22efc4ae077a87c38802471b4e0add5e1187249a2b939f8e8fe13d77 +srcfiles size=94 + RELOC/source/generic/pgf/c/INSTALL + RELOC/source/generic/pgf/c/Makefile + RELOC/source/generic/pgf/c/config/ExampleLocalMakefileConfig.mk + RELOC/source/generic/pgf/c/config/MakefileConfig.mk + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/Makefile + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoC.c + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoCPlusPlus.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.c + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/Makefile + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/Makefile + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/SimpleDemoOGDF.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FMMMLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FastMultipoleEmbedder_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/GEMLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/MultilevelLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFRExact_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFR_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderKK_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/energybased_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/BarycenterPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/CirclePlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/EdgeCoverMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/IndependentSetMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/LocalBiconnectedMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MatchingMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MedianPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/ZeroPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/multilevelmixer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/BarycenterHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/CoffmanGrahamRanking_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/DfsAcyclicSubgraph_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastHierarchyLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastSimpleHierarchyLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyCycleRemoval_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyInsertHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/LongestPathRanking_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/MedianHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/OptimalRanking_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SiftingHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SplitHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SugiyamaLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/layered_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/BalloonLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/CircularLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/misclayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/module/module_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/ogdf_script.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/PlanarizationLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/planarity_script.h + RELOC/source/generic/pgf/testsuite/external/Makefile + RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.code.tex + RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.sharedpreamble.tex + RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.tex + RELOC/source/generic/pgf/testsuite/external/tikzexternaltestmakefile.tex + RELOC/source/generic/pgf/testsuite/mathtest/pgfmathtestsuite.tex + RELOC/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.tex +runfiles size=1521 + RELOC/scripts/pgf/Makefile.pgf_release + RELOC/scripts/pgf/pgfrevisionfile.sh + RELOC/tex/context/third/pgf/basiclayer/t-pgf.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbim.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbla.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbma.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbpl.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbpt.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbsh.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbsn.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfcor.tex + RELOC/tex/context/third/pgf/frontendlayer/t-tikz.tex + RELOC/tex/context/third/pgf/math/t-pgfmat.tex + RELOC/tex/context/third/pgf/systemlayer/t-pgfsys.tex + RELOC/tex/context/third/pgf/utilities/t-pgfcal.tex + RELOC/tex/context/third/pgf/utilities/t-pgffor.tex + RELOC/tex/context/third/pgf/utilities/t-pgfkey.tex + RELOC/tex/context/third/pgf/utilities/t-pgfmod.tex + RELOC/tex/context/third/pgf/utilities/t-pgfrcs.tex + RELOC/tex/generic/pgf/basiclayer/pgfcore.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorequick.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.IEC.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.CDH.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.IEC.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.US.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.3d.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.barcharts.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.formats.functions.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.polar.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.sparklines.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.standard.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzexternalshared.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary3d.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryangles.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryanimations.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryautomata.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybabel.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybending.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalendar.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarychains.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.footprints.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.fractals.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.shapes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.text.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryer.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfixedpointarithmetic.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfolding.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfpu.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryintersections.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarylindenmayersystems.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymath.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymatrix.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymindmap.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.meta.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryperspective.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypetri.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplothandlers.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypositioning.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryquotes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryrdf.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryscopes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadings.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.gates.logic.IEC.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.gates.logic.US.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarysnakes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryspy.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarysvg.path.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarythrough.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytrees.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryturtle.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryviews.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex + RELOC/tex/generic/pgf/graphdrawing/lua/LUA_CODING_STYLE + RELOC/tex/generic/pgf/graphdrawing/lua/pgf.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/Binding.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/BindingToPGF.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/Tantau2012.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Anchoring.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentAlign.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDirection.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDistance.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentOrder.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Components.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Distances.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/FineTune.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/LayoutPipeline.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/NodeAnchors.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Orientation.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Sublayouts.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Cluster.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Edge.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Graph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Iterators.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Node.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Vector.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FMMMLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FastMultipoleEmbedder.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/GEMLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/MultilevelLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFR.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFRExact.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderKK.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/BarycenterPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/CirclePlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/EdgeCoverMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/IndependentSetMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/LocalBiconnectedMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MatchingMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MedianPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/ZeroPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/BarycenterHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/CoffmanGrahamRanking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/DfsAcyclicSubgraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastHierarchyLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastSimpleHierarchyLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyCycleRemoval.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyInsertHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/LongestPathRanking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/MedianHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/OptimalRanking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SiftingHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SplitHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SugiyamaLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/BalloonLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/CircularLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/AcyclicSubgraphModule.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/HierarchyLayoutModule.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/InitialPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/MultilevelBuilder.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/RankingModule.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/TwoLayerCrossMin.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity/PlanarizationLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/ASCIIDisplayer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/BindingToASCII.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleDemo.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleEdgeDemo.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleHuffman.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/example_graph_for_ascii_displayer.txt + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/GraphAnimationCoordination.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/GreedyTemporalCycleRemoval.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/Skambath2016.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/Supergraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/SupergraphVertexSplitOptimization.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/TimeSpec.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/layered.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/CoarseGraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlCoarsening.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlDeclare.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlElectric.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlIteration.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlSprings.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlStart.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/QuadTree.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalHu2006.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalLayouts.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalWalshaw2000.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringHu2006.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringLayouts.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/FruchtermanReingold.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/HuSpringElectricalFW.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SimpleSpring.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SocialGravityCloseness.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SocialGravityDegree.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/CoarseGraphFW.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/ForceController.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/ForceTemplate.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/InitialTemplate.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/PathLengthsFW.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/Preprocessing.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceAbsoluteValue.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceCanvasDistance.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceCanvasPosition.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceGraphDistance.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForcePullToGrid.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForcePullToPoint.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/CircularInitialPositioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/GridInitialPositioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/RandomInitialPositioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceCore.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToAlgorithms.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToC.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToDisplay.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CrossingMinimizationGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990a.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990b.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalEadesLS1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/EdgeRoutingGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NetworkSimplex.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodePositioningGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingMinimumHeight.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Ranking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Sugiyama.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/crossing_minimization.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/cycle_removal.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/edge_routing.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_positioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_ranking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Bezier.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/DepthFirstSearch.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Event.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/LookupTable.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PathLengths.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Simplifiers.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Stack.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Storage.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Transform.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Arc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Collection.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Coordinate.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Digraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Edge.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Hyperedge.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Path.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Path_arced.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Vertex.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees/Koerner2015.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/AuthorDefinedPhylogeny.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedMinimumEvolution.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedNearestNeighbourInterchange.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/DistanceMatrix.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/Maeusle2012.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/PhylogeneticTree.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/SokalMichener1958.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/BoyerMyrvold2004.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/Embedding.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/LinkedList.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/List.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/PDP.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/PlanarLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/ShiftMethod.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/parameters.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/Hints.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/NecklaceRouting.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/tools/make_gd_wrap.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ChildSpec.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ReingoldTilford1981.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/SpanningTreeComputation.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/library.lua + RELOC/tex/generic/pgf/graphdrawing/tex/experimental/tikzlibrarygraphdrawing.evolving.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.circular.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.examples.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.force.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.layered.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.trees.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/tikzlibrarygraphdrawing.code.tex + RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.barcharts.code.tex + RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.formats.functions.code.tex + RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.polar.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.footprints.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.fractals.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.shapes.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.text.code.tex + RELOC/tex/generic/pgf/libraries/luamath/pgf/luamath/functions.lua + RELOC/tex/generic/pgf/libraries/luamath/pgf/luamath/parser.lua + RELOC/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryarrows.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryarrows.meta.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryarrows.spaced.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarycurvilinear.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryfadings.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryfixedpointarithmetic.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryfpu.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryintersections.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarylindenmayersystems.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarypatterns.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarypatterns.meta.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryprofiler.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryshadings.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarysnakes.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarysvg.path.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarytimelines.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.ee.IEC.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.ee.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.IEC.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.US.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex + RELOC/tex/generic/pgf/lua/pgf/manual.lua + RELOC/tex/generic/pgf/lua/pgf/manual/DocumentParser.lua + RELOC/tex/generic/pgf/math/pgfint.code.tex + RELOC/tex/generic/pgf/math/pgfmath.code.tex + RELOC/tex/generic/pgf/math/pgfmathcalc.code.tex + RELOC/tex/generic/pgf/math/pgfmathfloat.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.base.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.random.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.round.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex + RELOC/tex/generic/pgf/math/pgfmathode.code.tex + RELOC/tex/generic/pgf/math/pgfmathparser.code.tex + RELOC/tex/generic/pgf/math/pgfmathutil.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleanimations.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulebending.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduledecorations.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulematrix.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulenonlineartransformations.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleoo.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleparser.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleplot.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleshapes.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulesnakes.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulesorting.code.tex + RELOC/tex/generic/pgf/pgf.revision.tex + RELOC/tex/generic/pgf/systemlayer/pgf.cfg + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-pdf-via-dvi.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-postscript.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-svg.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvi.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvipdfm.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvips.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvisvgm.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvisvgm4ht.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-luatex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-pdftex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-tex4ht.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-textures.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-vtex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-xetex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys.code.tex + RELOC/tex/generic/pgf/systemlayer/pgfsysanimations.code.tex + RELOC/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex + RELOC/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex + RELOC/tex/generic/pgf/utilities/pgfcalendar.code.tex + RELOC/tex/generic/pgf/utilities/pgfexternal.tex + RELOC/tex/generic/pgf/utilities/pgfexternalwithdepth.tex + RELOC/tex/generic/pgf/utilities/pgffor.code.tex + RELOC/tex/generic/pgf/utilities/pgfkeys.code.tex + RELOC/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex + RELOC/tex/generic/pgf/utilities/pgfrcs.code.tex + RELOC/tex/generic/pgf/utilities/pgfutil-common-lists.tex + RELOC/tex/generic/pgf/utilities/pgfutil-common.tex + RELOC/tex/generic/pgf/utilities/pgfutil-context.def + RELOC/tex/generic/pgf/utilities/pgfutil-latex.def + RELOC/tex/generic/pgf/utilities/pgfutil-plain.def + RELOC/tex/latex/pgf/basiclayer/pgf.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaseimage.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaselayers.sty + RELOC/tex/latex/pgf/basiclayer/pgfbasematrix.sty + RELOC/tex/latex/pgf/basiclayer/pgfbasepatterns.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaseplot.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaseshapes.sty + RELOC/tex/latex/pgf/basiclayer/pgfbasesnakes.sty + RELOC/tex/latex/pgf/basiclayer/pgfcore.sty + RELOC/tex/latex/pgf/compatibility/pgfarrows.sty + RELOC/tex/latex/pgf/compatibility/pgfautomata.sty + RELOC/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty + RELOC/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty + RELOC/tex/latex/pgf/compatibility/pgfheaps.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryarrows.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryautomata.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryplothandlers.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryplotmarks.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryshapes.sty + RELOC/tex/latex/pgf/compatibility/pgflibrarysnakes.sty + RELOC/tex/latex/pgf/compatibility/pgflibrarytikzbackgrounds.sty + RELOC/tex/latex/pgf/compatibility/pgflibrarytikztrees.sty + RELOC/tex/latex/pgf/compatibility/pgfnodes.sty + RELOC/tex/latex/pgf/compatibility/pgfshade.sty + RELOC/tex/latex/pgf/doc/pgfmanual-en-macros.tex + RELOC/tex/latex/pgf/doc/pgfmanual.code.tex + RELOC/tex/latex/pgf/doc/pgfmanual.pdflinks.code.tex + RELOC/tex/latex/pgf/doc/pgfmanual.prettyprinter.code.tex + RELOC/tex/latex/pgf/doc/pgfmanual.sty + RELOC/tex/latex/pgf/frontendlayer/libraries/tikzlibraryexternal.code.tex + RELOC/tex/latex/pgf/frontendlayer/pgfpict2e.sty + RELOC/tex/latex/pgf/frontendlayer/tikz.sty + RELOC/tex/latex/pgf/math/pgfmath.sty + RELOC/tex/latex/pgf/systemlayer/pgfsys.sty + RELOC/tex/latex/pgf/utilities/pgfcalendar.sty + RELOC/tex/latex/pgf/utilities/pgffor.sty + RELOC/tex/latex/pgf/utilities/pgfkeys.sty + RELOC/tex/latex/pgf/utilities/pgfpages.sty + RELOC/tex/latex/pgf/utilities/pgfparser.sty + RELOC/tex/latex/pgf/utilities/pgfrcs.sty + RELOC/tex/latex/pgf/utilities/tikzexternal.sty + RELOC/tex/latex/pgf/utilities/xxcolor.sty + RELOC/tex/plain/pgf/basiclayer/pgf.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaseimage.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaselayers.tex + RELOC/tex/plain/pgf/basiclayer/pgfbasematrix.tex + RELOC/tex/plain/pgf/basiclayer/pgfbasepatterns.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaseplot.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaseshapes.tex + RELOC/tex/plain/pgf/basiclayer/pgfbasesnakes.tex + RELOC/tex/plain/pgf/basiclayer/pgfcore.tex + RELOC/tex/plain/pgf/frontendlayer/tikz.tex + RELOC/tex/plain/pgf/math/pgfmath.tex + RELOC/tex/plain/pgf/systemlayer/pgfsys.tex + RELOC/tex/plain/pgf/utilities/pgfcalendar.tex + RELOC/tex/plain/pgf/utilities/pgffor.tex + RELOC/tex/plain/pgf/utilities/pgfkeys.tex + RELOC/tex/plain/pgf/utilities/pgfrcs.tex +catalogue-alias tikz +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-license lppl1.3c gpl2 fdl +catalogue-topics graphics pgf-tikz graphics-in-tex +catalogue-version 3.1.8b + +name pgf-blur +category Package +revision 54512 +shortdesc PGF/TikZ package for "blurred" shadows +relocated 1 +longdesc The package adds blurred/faded/fuzzy shadows to PGF/TikZ +longdesc pictures. It is configured as a TikZ/PGF library module. The +longdesc method is similar to that of the author's pst-blur package for +longdesc PSTricks. +containersize 2628 +containerchecksum 95093365a79d7f8a2df134decbac172a080711bcf8e8f77267ea4520ccc9aa398f5fbedaaa5500fa189b3873d8897350dc2c99f142b6bed1a6e7705293a3b8b7 +doccontainersize 242488 +doccontainerchecksum d313e5ed1a0b5637996d6bd1827b909a771fcb44490312c502acd89412966d7662b1482fb8f3347b8d658b336051773c3d10e70df9c1f22e810802936eee816f +docfiles size=63 + RELOC/doc/latex/pgf-blur/README.md details="Readme" + RELOC/doc/latex/pgf-blur/pgf-blur.pdf details="Package documentation" +srccontainersize 9236 +srccontainerchecksum c8b7baeb30d520d05d53d6c37f70e028d8622d59eadb7b8aef9c26147e5ae4704fbf45798315597f6ecb65a15e4c8e8e18dcc0cac98b0cb69efb191645632710 +srcfiles size=10 + RELOC/source/latex/pgf-blur/pgf-blur.dtx + RELOC/source/latex/pgf-blur/pgf-blur.ins +runfiles size=3 + RELOC/tex/latex/pgf-blur/tikzlibraryshadows.blur.code.tex +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-license lppl pd +catalogue-topics graphics-subpic pgf-tikz +catalogue-version 1.02 + +name pgf-cmykshadings +category Package +revision 52635 +shortdesc Support for CMYK and grayscale shadings in PGF/TikZ +relocated 1 +longdesc This package provides support for CMYK and grayscale shadings +longdesc for the pgf package. By default pgf only supports RGB shadings. +longdesc The package attempts to produce shadings consistent with the +longdesc currently selected xcolor colour model. The rgb, cmyk, and gray +longdesc colour models from the xcolor package are supported. Note: This +longdesc package is deprecated since pgf version 3.1.3, since CMYK and +longdesc grayscale shadings are now directly supported. +containersize 6912 +containerchecksum 8634e486cc07bcf10af1abdd94bdf543f11bedc7fceac2f154a8a579920a7467635eae17cd62524b7ba7b2345f26cd4c4b50f8098b01b4f30eb15a120e480b92 +doccontainersize 519980 +doccontainerchecksum e3e301f4979f47e16b9804a50d23575302ee3abef1c5a4dc8ea9aca3d94502c378f805ae54c61d7be9ccf78e236dc0a6c0bb54de47a515cc3a5350381768cfa8 +docfiles size=129 + RELOC/doc/latex/pgf-cmykshadings/README.md details="Readme" + RELOC/doc/latex/pgf-cmykshadings/pgf-cmykshadings.pdf details="Package documentation" +srccontainersize 11020 +srccontainerchecksum 77e6713be90d2555db73f19588493718d390878187d8d0452ba571f2d98c47f3cdaed8ddf423a8c277688107f62f38654c991e17b820b9af45a6c05aa27ca30d +srcfiles size=19 + RELOC/source/latex/pgf-cmykshadings/pgf-cmykshadings.dtx + RELOC/source/latex/pgf-cmykshadings/pgf-cmykshadings.ins +runfiles size=20 + RELOC/tex/latex/pgf-cmykshadings/pgf-cmykshadings.sty + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-common-postscript.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvipdfm.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvipdfmx.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvips.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-luatex.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-pdftex.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-textures.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-vtex.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-xetex.def +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-license lppl1.3c +catalogue-topics colour pgf-tikz +catalogue-version 1.2 + +name pgf-pie +category Package +revision 59075 +shortdesc Draw pie charts, using PGF +relocated 1 +longdesc The package provides the means to draw pie (and variant) +longdesc charts, using PGF/TikZ. The license of the package is MIT as +longdesc mentioned here: https://code.google.com/archive/p/pgf-pie/. +depend carlisle +depend latex +depend pgf +containersize 3632 +containerchecksum 33247855b63c60b626fe1ec6ac1bf083e7b235a4a575a4376fba14ab611dc4dc7f52564dbaf55a9aa94bae6465a0560516ee958617c77e824e6e2870d4534604 +doccontainersize 212708 +doccontainerchecksum 85fc137d549c55fc3b8898985f2c699dcdaa71d177b4f496062827d94ceb568c5301d1112a072a6964ad207a59aed00aab9807a88e4218738c091cc0b92479fd +docfiles size=99 + RELOC/doc/latex/pgf-pie/COPYING + RELOC/doc/latex/pgf-pie/LICENSE-GPL2.txt + RELOC/doc/latex/pgf-pie/LICENSE-LPPL1.3c.txt + RELOC/doc/latex/pgf-pie/README.md details="Readme" + RELOC/doc/latex/pgf-pie/RELEASE_NOTES.md + RELOC/doc/latex/pgf-pie/demo/before-after-number.tex + RELOC/doc/latex/pgf-pie/demo/cloud.svg + RELOC/doc/latex/pgf-pie/demo/cloud.tex + RELOC/doc/latex/pgf-pie/demo/color.tex + RELOC/doc/latex/pgf-pie/demo/colorwheel.tex + RELOC/doc/latex/pgf-pie/demo/explode.tex + RELOC/doc/latex/pgf-pie/demo/first-pie.svg + RELOC/doc/latex/pgf-pie/demo/first-pie.tex + RELOC/doc/latex/pgf-pie/demo/hide-number.tex + RELOC/doc/latex/pgf-pie/demo/legend.tex + RELOC/doc/latex/pgf-pie/demo/polar.svg + RELOC/doc/latex/pgf-pie/demo/polar.tex + RELOC/doc/latex/pgf-pie/demo/population.tex + RELOC/doc/latex/pgf-pie/demo/radius.tex + RELOC/doc/latex/pgf-pie/demo/scalefont.tex + RELOC/doc/latex/pgf-pie/demo/shadow.tex + RELOC/doc/latex/pgf-pie/demo/square.svg + RELOC/doc/latex/pgf-pie/demo/square.tex + RELOC/doc/latex/pgf-pie/demo/sum.tex + RELOC/doc/latex/pgf-pie/demo/text-inside.tex + RELOC/doc/latex/pgf-pie/demo/text.tex + RELOC/doc/latex/pgf-pie/description.html + RELOC/doc/latex/pgf-pie/logo.png + RELOC/doc/latex/pgf-pie/pgf-pie-manual.pdf details="Package documentation" + RELOC/doc/latex/pgf-pie/pgf-pie-manual.tex +runfiles size=5 + RELOC/tex/latex/pgf-pie/pgf-pie.sty + RELOC/tex/latex/pgf-pie/tikzlibrarypie.code.tex +catalogue-contact-bugs https://github.com/pgf-tikz/pgf-pie/issues +catalogue-contact-repository https://github.com/pgf-tikz/pgf-pie +catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz +catalogue-ctan /graphics/pgf/contrib/pgf-pie +catalogue-license gpl2 lppl1.3c +catalogue-topics genchart pgf-tikz +catalogue-version 0.5 + +name pgf-soroban +category Package +revision 32269 +shortdesc Create images of the soroban using TikZ/PGF +relocated 1 +longdesc The package makes it possible to create pictures of the soroban +longdesc (Japanese abacus) using PGF/TikZ +containersize 1852 +containerchecksum e0f85a77e9d81bf01f5516c3b3baa52a9b7f1b0faaa6f0aab1cae2182732eaf04ea2edb6b0f9091272849f1d7ccb3797cb2641090b926db7f3d0483d08569845 +doccontainersize 351348 +doccontainerchecksum 3f4c021cfb99a27778c250f9ac13e2abe48127731b54d0fca9e8e588f44ebf797e034a56d3ca19bc847bca173dfb03ef9a70e0fee71649188a8427d6eabceb80 +docfiles size=91 + RELOC/doc/latex/pgf-soroban/Changes + RELOC/doc/latex/pgf-soroban/README details="Readme" + RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.bib + RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.pdf details="Package documentation" + RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.tex +runfiles size=2 + RELOC/tex/latex/pgf-soroban/pgf-soroban.sty +catalogue-also pst-soroban +catalogue-ctan /graphics/pgf/contrib/pgf-soroban +catalogue-license lppl +catalogue-topics diagram +catalogue-version 1.1 + +name pgf-spectra +category Package +revision 58467 +shortdesc Draw continuous or discrete spectra using PGF/TikZ +relocated 1 +longdesc The purpose of this package is to draw the spectra of elements +longdesc in a simple way. It is based on the package pst-spectra, +longdesc supporting the same options, but also adding some new options. +longdesc It relies on PGF/TikZ for drawing the desired spectrum, +longdesc continuous or discrete. As in pst-spectra, there are data +longdesc available for the spectra of 99 elements and their ions (from +longdesc the NASA database). It also allows the user to draw spectra +longdesc using their own data. +containersize 236812 +containerchecksum 4f1b4a80df4243ab07e52795573a7e3f8e151353042a0a360b01d9b46f44077ce5d71342f187355e74c3bc23bad3984c4d0aae9a970a28ab014d403cfdbf46f9 +doccontainersize 1685504 +doccontainerchecksum e7710b4c68ed835f7d2ebf16db0c9a1405ad8b3a2824aa4aefeb118795eab12ee6b22e0b764e815b6aea8c37d06d2fe51af472adeea6f587717a1b4831667007 +docfiles size=1523 + RELOC/doc/latex/pgf-spectra/README details="Readme" + RELOC/doc/latex/pgf-spectra/pgf-spectraDataLSE.pdf + RELOC/doc/latex/pgf-spectra/pgf-spectraDataNIST.pdf + RELOC/doc/latex/pgf-spectra/pgf-spectraManual.pdf details="Package documentation" +runfiles size=239 + RELOC/tex/latex/pgf-spectra/pgf-spectra.sty + RELOC/tex/latex/pgf-spectra/spectra.data.LSE.tex + RELOC/tex/latex/pgf-spectra/spectra.data.NIST.tex +catalogue-ctan /graphics/pgf/contrib/pgf-spectra +catalogue-license lppl1.3 +catalogue-topics physics pgf-tikz +catalogue-version 2.0.0 + +name pgf-umlcd +category Package +revision 55342 +shortdesc Some LaTeX macros for UML Class Diagrams +relocated 1 +longdesc Some LaTeX macros for UML Class Diagrams.pgf +depend latex +depend pgf +containersize 2924 +containerchecksum 800b6f5772cb6e20d5487263a35ebdb1ef491eb3dda2f37a2de89040758c7ca8f2a3541a4ca7e64155d18595ab2a814684a044569f87810d6431aabb938d87a4 +doccontainersize 268796 +doccontainerchecksum 2b67b6e216f43efaeb33089a830786dd03137b2d0f43e8a998d8381eab8491e095251d0d534c34112f1b10758454711d0a4607327ae385611f8a4d576cf05b91 +docfiles size=121 + RELOC/doc/latex/pgf-umlcd/COPYING + RELOC/doc/latex/pgf-umlcd/README + RELOC/doc/latex/pgf-umlcd/demo/abstract-class.tex + RELOC/doc/latex/pgf-umlcd/demo/abstract-factory.svg + RELOC/doc/latex/pgf-umlcd/demo/abstract-factory.tex + RELOC/doc/latex/pgf-umlcd/demo/aggregation.tex + RELOC/doc/latex/pgf-umlcd/demo/association.tex + RELOC/doc/latex/pgf-umlcd/demo/class.tex + RELOC/doc/latex/pgf-umlcd/demo/composition.tex + RELOC/doc/latex/pgf-umlcd/demo/implement-interface.tex + RELOC/doc/latex/pgf-umlcd/demo/inheritance.tex + RELOC/doc/latex/pgf-umlcd/demo/interface.tex + RELOC/doc/latex/pgf-umlcd/demo/note.tex + RELOC/doc/latex/pgf-umlcd/demo/object-include-methods.tex + RELOC/doc/latex/pgf-umlcd/demo/object.tex + RELOC/doc/latex/pgf-umlcd/demo/package.tex + RELOC/doc/latex/pgf-umlcd/demo/unidirectional-association.tex + RELOC/doc/latex/pgf-umlcd/demo/visibility.tex + RELOC/doc/latex/pgf-umlcd/logo.png + RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.pdf details="Package demo" + RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.tex +runfiles size=3 + RELOC/tex/latex/pgf-umlcd/pgf-umlcd.sty +catalogue-also pst-uml uml +catalogue-contact-bugs https://github.com/pgf-tikz/pgf-umlcd/issues +catalogue-contact-repository https://github.com/pgf-tikz/pgf-umlcd +catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz +catalogue-ctan /graphics/pgf/contrib/pgf-umlcd +catalogue-license gpl +catalogue-topics uml pgf-tikz +catalogue-version 0.2.1.1 + +name pgf-umlsd +category Package +revision 55342 +shortdesc Draw UML Sequence Diagrams +relocated 1 +longdesc LaTeX macros to draw UML diagrams using pgf +depend latex +depend pgf +containersize 3552 +containerchecksum 6b015603e3daa362e473d795d32fa785ce247b58ec9f88872fe4bdb4fa660000bd87da2369de556f998485a6fcb6dd49aaca549b0470b41adacba5a278453197 +doccontainersize 222752 +doccontainerchecksum 968d23fcc4f114bab204ec53281975a6fee5f81635ece256351198075cd8463a706954f463beacc162180459fdb3652657f2c060a71c588681f8de6e788a4e6a +docfiles size=97 + RELOC/doc/latex/pgf-umlsd/README + RELOC/doc/latex/pgf-umlsd/demo/block.tex + RELOC/doc/latex/pgf-umlsd/demo/call.tex + RELOC/doc/latex/pgf-umlsd/demo/callself.tex + RELOC/doc/latex/pgf-umlsd/demo/customize.log + RELOC/doc/latex/pgf-umlsd/demo/customize.tex + RELOC/doc/latex/pgf-umlsd/demo/distance.tex + RELOC/doc/latex/pgf-umlsd/demo/empty.tex + RELOC/doc/latex/pgf-umlsd/demo/instance.tex + RELOC/doc/latex/pgf-umlsd/demo/message.tex + RELOC/doc/latex/pgf-umlsd/demo/messcall.tex + RELOC/doc/latex/pgf-umlsd/demo/multi-threads-example.tex + RELOC/doc/latex/pgf-umlsd/demo/nested-call.tex + RELOC/doc/latex/pgf-umlsd/demo/no-thread-example.tex + RELOC/doc/latex/pgf-umlsd/demo/non-instantaneous-message.tex + RELOC/doc/latex/pgf-umlsd/demo/postlevel.log + RELOC/doc/latex/pgf-umlsd/demo/postlevel.tex + RELOC/doc/latex/pgf-umlsd/demo/prelevel.tex + RELOC/doc/latex/pgf-umlsd/demo/single-thread-example.tex + RELOC/doc/latex/pgf-umlsd/demo/sync-clock.tex + RELOC/doc/latex/pgf-umlsd/demo/thread.tex + RELOC/doc/latex/pgf-umlsd/demo/threadbias.log + RELOC/doc/latex/pgf-umlsd/demo/threadbias.tex + RELOC/doc/latex/pgf-umlsd/diagrams.pdf + RELOC/doc/latex/pgf-umlsd/logo.png + RELOC/doc/latex/pgf-umlsd/pgf-umlsd-manual.pdf details="Package documentation" + RELOC/doc/latex/pgf-umlsd/pgf-umlsd-manual.tex +runfiles size=3 + RELOC/tex/latex/pgf-umlsd/pgf-umlsd.sty +catalogue-also pst-uml uml +catalogue-contact-bugs https://github.com/pgf-tikz/pgf-umlsd/issues +catalogue-contact-repository https://github.com/pgf-tikz/pgf-umlsd +catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz +catalogue-ctan /graphics/pgf/contrib/pgf-umlsd +catalogue-license gpl +catalogue-topics uml pgf-tikz +catalogue-version 0.7 + +name pgfgantt +category Package +revision 52662 +shortdesc Draw Gantt charts with TikZ +relocated 1 +longdesc The package provides an environment for drawing Gantt charts +longdesc that contain various elements (titles, bars, milestones, groups +longdesc and links). Several keys customize the appearance of the chart +longdesc elements. +depend pgf +containersize 7928 +containerchecksum 0269703fc00f10981d5ce8958159a24814b9f410c1b00516608c039b1ea8a3381392bf1d89e98f3011d42210047bf2e1fec2f103467087f9172e143d9ab6fcf1 +doccontainersize 929720 +doccontainerchecksum 4890ae174c92db8df7befcef30d03724ae52fa4b26ac796d247a703794ce745ee892f0d2ab8a4f62e96a5e5f792791a6f7e8b9e71f1c0f11b68e8cbcf5165472 +docfiles size=231 + RELOC/doc/latex/pgfgantt/README details="Readme" + RELOC/doc/latex/pgfgantt/pgfgantt.pdf details="Package documentation" +srccontainersize 37128 +srccontainerchecksum 668987bd37aebd38697c02bc39d85371c7d40613aba13c0f3b62ece8145608057cf3f76cda03de6df25f7ba820359ff2ba1c340aa1b9ebff94bbd42aed39e401 +srcfiles size=52 + RELOC/source/latex/pgfgantt/pgfgantt.dtx + RELOC/source/latex/pgfgantt/pgfgantt.ins +runfiles size=12 + RELOC/tex/latex/pgfgantt/pgfgantt.sty +catalogue-also pst-gantt +catalogue-ctan /graphics/pgf/contrib/pgfgantt +catalogue-license lppl1.3 +catalogue-topics diagram gantt +catalogue-version 5.0 + +name pgfkeyx +category Package +revision 26093 +shortdesc Extended and more robust version of pgfkeys +relocated 1 +longdesc The package extends and improves the robustness of the pgfkeys +longdesc package. In particular, it can deal with active comma, equality +longdesc sign, and slash in key parsing. The difficulty with active +longdesc characters has long been a problem with the pgfkeys package. +longdesc The package also introduces handlers beyond those that pgfkeys +longdesc can offer. +containersize 7088 +containerchecksum c2adb44ef34930aef1d78aed2025a2dc17c69ed641b59af29bcb93c9c9532785090f30834d52c415116ab4a9477d83e5a46d1509e6bd41f47fd4e37cc8ff2933 +doccontainersize 1412 +doccontainerchecksum 2a596ee81d2af4992dc23d6f28f788ef1d3e9a528992f01b7113de726898ae3007b685c4c447d2fcad640403d1bdd8a0eb07299ac9ea81f41c4158eb21b8e9e2 +docfiles size=2 + RELOC/doc/latex/pgfkeyx/README details="Readme" + RELOC/doc/latex/pgfkeyx/pgfkeyx-test1.tex +runfiles size=8 + RELOC/tex/latex/pgfkeyx/pgfkeyx.sty +catalogue-ctan /macros/latex/contrib/pgfkeyx +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 0.0.1 + +name pgfmolbio +category Package +revision 35152 +shortdesc Draw graphs typically found in molecular biology texts +relocated 1 +longdesc The package draws graphs typically found in molecular biology +longdesc texts. Currently, the package contains modules for drawing DNA +longdesc sequencing chromatograms and protein domain diagrams. +containersize 13796 +containerchecksum bdbd89379ed7310b78a3847c43022f6cd65f5fccfabfc4723551f5ef4f4cad3e3dcf596ff65cb4c5ba4a354f9bd59fa4aa39147782a0ed369a7dfcb68ef7f9cc +doccontainersize 858652 +doccontainerchecksum a9dbe657b4037477adcf3ead4ad4ca5b703ee8c53739da9de0bed8e02c8e14961a963e9a4a5a86b3f53348da9eab5cdbada1b5ddd073bc18c82177abc92023f2 +docfiles size=245 + RELOC/doc/lualatex/pgfmolbio/README details="Readme" + RELOC/doc/lualatex/pgfmolbio/SampleGff.gff + RELOC/doc/lualatex/pgfmolbio/SampleScf.scf + RELOC/doc/lualatex/pgfmolbio/SampleUniprot.txt + RELOC/doc/lualatex/pgfmolbio/pgfmolbio.pdf details="Package documentation" +srccontainersize 45240 +srccontainerchecksum 1552182819893f7538ee5b38816d339639ff6e6ed3e092a67dde1dfa2a73eb7bca1490909fa34d4999399a8328b2ec8885ad86e76438e4f177dd81e2e6accdd0 +srcfiles size=54 + RELOC/source/lualatex/pgfmolbio/pgfmolbio.dtx + RELOC/source/lualatex/pgfmolbio/pgfmolbio.ins +runfiles size=21 + RELOC/scripts/pgfmolbio/pgfmolbio.lua + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.chromatogram.lua + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.chromatogram.tex + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.convert.tex + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.domains.lua + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.domains.tex + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.sty +catalogue-ctan /macros/luatex/latex/pgfmolbio +catalogue-license lppl1.3 +catalogue-topics molbio diagram luatex +catalogue-version 0.21 + +name pgfmorepages +category Package +revision 54770 +shortdesc Assemble multiple logical pages onto a physical page +relocated 1 +longdesc This package replaces and extends the pgfpages sub-package of +longdesc the PGF system. It provides the capability to arrange multiple +longdesc "logical" pages on multiple "physical" pages, for example as +longdesc for arranging pages to make booklets. +containersize 7012 +containerchecksum 9a4fd2f42276cb72cd39dfe3cb5b6c43855e1d7f01f47c53b23c8aae7bee98c89e8a8f784a917c0c4ebc35f9dcaec18b8d4f6bbeb05ec5a80647ff7ca23c02ab +doccontainersize 62004 +doccontainerchecksum 3bef05b263791c9b1e92868ae22966f5638a900d44ed9ab9de5beeb0dd25c7e8745d09da4cd3c2c7a9e9e5c710126cb7bbcb67579e770c43e6c7e057dcfdd1b5 +docfiles size=20 + RELOC/doc/latex/pgfmorepages/README details="Readme" + RELOC/doc/latex/pgfmorepages/pgfmorepages.pdf details="Package documentation" + RELOC/doc/latex/pgfmorepages/pgfmorepages.tex +runfiles size=17 + RELOC/tex/latex/pgfmorepages/pgfmorepages.sty + RELOC/tex/latex/pgfmorepages/pgfmorepageslayouts.code.tex +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-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 1.20 + +name pgfopts +category Package +revision 56615 +shortdesc LaTeX package options with pgfkeys +relocated 1 +longdesc The pgfkeys package (part of the pgf distribution) is a +longdesc well-designed way of defining and using large numbers of keys +longdesc for key-value syntaxes. However, pgfkeys itself does not offer +longdesc means of handling LaTeX class and package options. This package +longdesc adds such option handling to pgfkeys, in the same way that +longdesc kvoptions adds the same facility to the LaTeX standard keyval +longdesc package. +depend pgf +containersize 1928 +containerchecksum 7d672d626428c37fa749a810c57be43c6102e1325a6d3e16c57bc560b6d65a57bae94e619a73f3e0efb46ce7b4783d05a6e98c64b1e90c6e0f94f1dd9acd676f +doccontainersize 175608 +doccontainerchecksum ff82e0502fdeefe6afe90aad4e7615de9be4ef8e2e6a69e7a537202af77aed00c0895269ceed3d38e0f34345efbdd771d22b0c8759fcb46ff8e91ce639dcd21d +docfiles size=45 + RELOC/doc/latex/pgfopts/LICENSE + RELOC/doc/latex/pgfopts/README details="Readme" + RELOC/doc/latex/pgfopts/pgfopts.pdf details="Package documentation" +srccontainersize 6008 +srccontainerchecksum 758da1f3daa0ef888b484ea657fdd4384102868e4eee543bc97e73f103b67c367277f5c00efd06a2080f9ac3fb82c909cd30f641363120e70357450179dab6c5 +srcfiles size=5 + RELOC/source/latex/pgfopts/pgfopts.dtx +runfiles size=2 + RELOC/tex/latex/pgfopts/pgfopts.sty +catalogue-ctan /macros/latex/contrib/pgfopts +catalogue-license lppl1.3 +catalogue-topics keyval package-supp +catalogue-version 2.1a + +name pgfornament +category Package +revision 55326 +shortdesc Drawing of Vectorian ornaments with PGF/TikZ +relocated 1 +longdesc This package allows the drawing of Vectorian ornaments (196) +longdesc with PGF/TikZ. The documentation presents the syntax and +longdesc parameters of the macro "pgfornament". +containersize 616692 +containerchecksum 3d5742197af0b6bc11a14ce5b2198aa7a580655f29757f825c24b4081dbd318d45d4dfca065fc04f0d5f47d92fca166a185c878c8d7a506e4ae7547def41592b +doccontainersize 2427600 +doccontainerchecksum b35295915c86e4ee5c2fb9b1ec2d545c8d4fc1cf5e65f3e6247e4de1e77e2f789f7842cf234546d6e658a73b4837cd50f8216cd9425f588cfe4a12c76bd134d1 +docfiles size=633 + RELOC/doc/latex/pgfornament/README.md details="Readme" + RELOC/doc/latex/pgfornament/TeX_box.png + RELOC/doc/latex/pgfornament/baseline.png + RELOC/doc/latex/pgfornament/ornaments.pdf details="Package documentation" + RELOC/doc/latex/pgfornament/ornaments.png + RELOC/doc/latex/pgfornament/ornaments.tex + RELOC/doc/latex/pgfornament/tikzrput.pdf + RELOC/doc/latex/pgfornament/tikzrput.tex + RELOC/doc/latex/pgfornament/usefulcommands.tex +runfiles size=641 + RELOC/tex/generic/pgfornament/am/am1.pgf + RELOC/tex/generic/pgfornament/am/am2.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan1.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan10.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan11.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan12.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan13.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan14.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan15.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan16.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan17.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan18.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan19.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan2.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan20.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan21.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan22.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan23.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan24.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan25.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan26.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan27.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan28.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan29.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan3.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan30.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan31.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan32.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan33.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan34.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan35.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan36.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan37.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan38.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan39.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan4.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan40.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan41.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan42.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan43.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan44.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan45.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan46.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan47.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan48.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan49.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan5.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan50.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan51.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan52.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan53.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan54.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan55.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan56.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan57.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan58.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan59.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan6.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan60.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan61.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan62.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan63.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan64.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan65.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan66.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan67.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan68.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan69.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan7.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan70.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan71.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan72.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan73.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan74.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan75.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan76.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan77.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan78.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan8.pgf + RELOC/tex/generic/pgfornament/pgfhan/pgfhan9.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian1.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian10.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian100.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian101.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian102.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian103.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian104.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian105.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian106.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian107.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian108.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian109.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian11.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian110.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian111.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian112.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian113.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian114.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian115.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian116.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian117.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian118.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian119.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian12.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian120.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian121.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian122.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian123.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian124.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian125.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian126.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian127.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian128.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian129.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian13.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian130.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian131.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian132.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian133.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian134.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian135.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian136.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian137.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian138.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian139.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian14.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian140.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian141.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian142.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian143.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian144.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian145.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian146.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian147.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian148.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian149.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian15.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian150.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian151.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian152.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian153.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian154.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian155.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian156.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian157.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian158.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian159.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian16.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian160.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian161.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian162.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian163.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian164.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian165.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian166.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian167.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian168.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian169.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian17.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian170.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian171.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian172.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian173.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian174.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian175.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian176.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian177.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian178.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian179.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian18.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian180.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian181.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian182.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian183.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian184.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian185.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian186.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian187.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian188.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian189.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian19.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian190.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian191.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian192.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian193.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian194.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian195.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian196.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian2.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian20.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian21.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian22.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian23.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian24.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian25.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian26.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian27.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian28.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian29.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian3.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian30.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian31.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian32.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian33.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian34.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian35.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian36.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian37.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian38.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian39.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian4.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian40.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian41.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian42.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian43.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian44.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian45.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian46.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian47.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian48.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian49.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian5.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian50.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian51.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian52.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian53.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian54.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian55.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian56.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian57.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian58.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian59.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian6.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian60.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian61.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian62.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian63.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian64.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian65.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian66.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian67.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian68.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian69.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian7.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian70.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian71.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian72.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian73.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian74.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian75.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian76.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian77.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian78.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian79.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian8.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian80.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian81.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian82.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian83.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian84.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian85.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian86.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian87.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian88.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian89.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian9.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian90.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian91.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian92.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian93.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian94.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian95.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian96.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian97.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian98.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian99.pgf + RELOC/tex/latex/pgfornament/pgflibraryam.code.tex + RELOC/tex/latex/pgfornament/pgflibrarypgfhan.code.tex + RELOC/tex/latex/pgfornament/pgflibraryvectorian.code.tex + RELOC/tex/latex/pgfornament/pgfornament.sty + RELOC/tex/latex/pgfornament/tikzrput.sty +catalogue-also pgf +catalogue-contact-home http://altermundus.fr +catalogue-ctan /macros/latex/contrib/tkz/pgfornament +catalogue-license lppl1.3 +catalogue-topics graphics-plot decoration +catalogue-version 1.2 + +name pgfornament-han +category Package +revision 54191 +shortdesc pgfornament library for Chinese traditional motifs and patterns +relocated 1 +longdesc This package provides a pgfornament library for Chinese +longdesc traditional motifs and patterns. The command \pgfornamenthan +longdesc takes the same options as \pgfornament from the pgfornament +longdesc package, but renders Chinese traditional motifs instead. The +longdesc list of supported motifs, as well as some examples, can be +longdesc found in the accompanying documentation. Yi pgfornament Hong +longdesc Bao De Ji Zhi ,Shi Xian Hui Zhi Yi Feng Tu Wen . +longdesc \pgfornamenthan He \pgfornament De Can Shu Shi Yi Yang De ;Bian +longdesc Yi De Chu Lai De Dang Ran Shi Yi Feng Wen Yang Liao . Hong Bao +longdesc Shou Ce Li You Wan Zheng De Wen Yang Lie Biao Yi Ji Shi Yong +longdesc Fan Li . +containersize 86108 +containerchecksum 7db1999c8f76addc56ad84aea76617fb61d3407bf28256379526058eca3dbc2f69442c6d0214d31832e31048fb1b8419125dd3441fe039a832d573346b15809a +doccontainersize 739152 +doccontainerchecksum 68e6720389bebb23edbd5387a3e0b3c9162b8cd0ebdf96825bece939b983033408d01b4739ed034cb9e0d3fefc21c87049f6ace1abc42826757ee6bc7a86da9f +docfiles size=1203 + RELOC/doc/latex/pgfornament-han/README.md details="Readme" + RELOC/doc/latex/pgfornament-han/heavenlyclouds-sample.pdf details="Sample of the HeavenlyClouds beamer theme" language="zh" + RELOC/doc/latex/pgfornament-han/heavenlyclouds-sample.tex + RELOC/doc/latex/pgfornament-han/lppl-1-3c.txt + RELOC/doc/latex/pgfornament-han/pgfornament-han_manual.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/pgfornament-han/pgfornament-han_manual.tex + RELOC/doc/latex/pgfornament-han/xiaoshan-sample.pdf details="Sample of the Xiaoshan beamer theme" language="zh" + RELOC/doc/latex/pgfornament-han/xiaoshan-sample.tex +runfiles size=130 + RELOC/tex/latex/pgfornament-han/beamerthemeHeavenlyClouds.sty + RELOC/tex/latex/pgfornament-han/beamerthemeXiaoshan.sty + RELOC/tex/latex/pgfornament-han/cncolours.sty + RELOC/tex/latex/pgfornament-han/han/han1.pgf + RELOC/tex/latex/pgfornament-han/han/han10.pgf + RELOC/tex/latex/pgfornament-han/han/han11.pgf + RELOC/tex/latex/pgfornament-han/han/han12.pgf + RELOC/tex/latex/pgfornament-han/han/han13.pgf + RELOC/tex/latex/pgfornament-han/han/han14.pgf + RELOC/tex/latex/pgfornament-han/han/han15.pgf + RELOC/tex/latex/pgfornament-han/han/han16.pgf + RELOC/tex/latex/pgfornament-han/han/han17.pgf + RELOC/tex/latex/pgfornament-han/han/han18.pgf + RELOC/tex/latex/pgfornament-han/han/han19.pgf + RELOC/tex/latex/pgfornament-han/han/han2.pgf + RELOC/tex/latex/pgfornament-han/han/han20.pgf + RELOC/tex/latex/pgfornament-han/han/han21.pgf + RELOC/tex/latex/pgfornament-han/han/han22.pgf + RELOC/tex/latex/pgfornament-han/han/han23.pgf + RELOC/tex/latex/pgfornament-han/han/han24.pgf + RELOC/tex/latex/pgfornament-han/han/han25.pgf + RELOC/tex/latex/pgfornament-han/han/han26.pgf + RELOC/tex/latex/pgfornament-han/han/han27.pgf + RELOC/tex/latex/pgfornament-han/han/han28.pgf + RELOC/tex/latex/pgfornament-han/han/han29.pgf + RELOC/tex/latex/pgfornament-han/han/han3.pgf + RELOC/tex/latex/pgfornament-han/han/han30.pgf + RELOC/tex/latex/pgfornament-han/han/han31.pgf + RELOC/tex/latex/pgfornament-han/han/han32.pgf + RELOC/tex/latex/pgfornament-han/han/han33.pgf + RELOC/tex/latex/pgfornament-han/han/han34.pgf + RELOC/tex/latex/pgfornament-han/han/han35.pgf + RELOC/tex/latex/pgfornament-han/han/han36.pgf + RELOC/tex/latex/pgfornament-han/han/han37.pgf + RELOC/tex/latex/pgfornament-han/han/han38.pgf + RELOC/tex/latex/pgfornament-han/han/han39.pgf + RELOC/tex/latex/pgfornament-han/han/han4.pgf + RELOC/tex/latex/pgfornament-han/han/han40.pgf + RELOC/tex/latex/pgfornament-han/han/han41.pgf + RELOC/tex/latex/pgfornament-han/han/han42.pgf + RELOC/tex/latex/pgfornament-han/han/han43.pgf + RELOC/tex/latex/pgfornament-han/han/han44.pgf + RELOC/tex/latex/pgfornament-han/han/han45.pgf + RELOC/tex/latex/pgfornament-han/han/han46.pgf + RELOC/tex/latex/pgfornament-han/han/han47.pgf + RELOC/tex/latex/pgfornament-han/han/han48.pgf + RELOC/tex/latex/pgfornament-han/han/han49.pgf + RELOC/tex/latex/pgfornament-han/han/han5.pgf + RELOC/tex/latex/pgfornament-han/han/han50.pgf + RELOC/tex/latex/pgfornament-han/han/han51.pgf + RELOC/tex/latex/pgfornament-han/han/han52.pgf + RELOC/tex/latex/pgfornament-han/han/han53.pgf + RELOC/tex/latex/pgfornament-han/han/han54.pgf + RELOC/tex/latex/pgfornament-han/han/han55.pgf + RELOC/tex/latex/pgfornament-han/han/han56.pgf + RELOC/tex/latex/pgfornament-han/han/han57.pgf + RELOC/tex/latex/pgfornament-han/han/han58.pgf + RELOC/tex/latex/pgfornament-han/han/han59.pgf + RELOC/tex/latex/pgfornament-han/han/han6.pgf + RELOC/tex/latex/pgfornament-han/han/han60.pgf + RELOC/tex/latex/pgfornament-han/han/han61.pgf + RELOC/tex/latex/pgfornament-han/han/han62.pgf + RELOC/tex/latex/pgfornament-han/han/han63.pgf + RELOC/tex/latex/pgfornament-han/han/han64.pgf + RELOC/tex/latex/pgfornament-han/han/han65.pgf + RELOC/tex/latex/pgfornament-han/han/han66.pgf + RELOC/tex/latex/pgfornament-han/han/han67.pgf + RELOC/tex/latex/pgfornament-han/han/han68.pgf + RELOC/tex/latex/pgfornament-han/han/han69.pgf + RELOC/tex/latex/pgfornament-han/han/han7.pgf + RELOC/tex/latex/pgfornament-han/han/han70.pgf + RELOC/tex/latex/pgfornament-han/han/han71.pgf + RELOC/tex/latex/pgfornament-han/han/han72.pgf + RELOC/tex/latex/pgfornament-han/han/han73.pgf + RELOC/tex/latex/pgfornament-han/han/han74.pgf + RELOC/tex/latex/pgfornament-han/han/han75.pgf + RELOC/tex/latex/pgfornament-han/han/han76.pgf + RELOC/tex/latex/pgfornament-han/han/han77.pgf + RELOC/tex/latex/pgfornament-han/han/han78.pgf + RELOC/tex/latex/pgfornament-han/han/han8.pgf + RELOC/tex/latex/pgfornament-han/han/han9.pgf + RELOC/tex/latex/pgfornament-han/pgflibraryhan.code.tex + RELOC/tex/latex/pgfornament-han/pgfornament-han.sty +catalogue-also pgfornament +catalogue-contact-repository https://github.com/liantze/pgfornament-han/ +catalogue-ctan /graphics/pgf/contrib/pgfornament-han +catalogue-license lppl1.3c +catalogue-topics pgf-tikz chinese graphics-symb presentation + +name pgfplots +category Package +revision 54080 +shortdesc Create normal/logarithmic plots in two and three dimensions +relocated 1 +longdesc PGFPlots draws high-quality function plots in normal or +longdesc logarithmic scaling with a user-friendly interface directly in +longdesc TeX. The user supplies axis labels, legend entries and the plot +longdesc coordinates for one or more plots and PGFPlots applies axis +longdesc scaling, computes any logarithms and axis ticks and draws the +longdesc plots, supporting line plots, scatter plots, piecewise constant +longdesc plots, bar plots, area plots, mesh-- and surface plots and some +longdesc more. Pgfplots is based on PGF/TikZ (PGF); it runs equally for +longdesc LaTeX/TeX/ConTeXt. +depend pgf +containersize 522388 +containerchecksum 65364a44b5950ece4c6b6797b149a147dce134f89e2d9402d9a42e656c4a1170c23cc66c8357599addb8283617061850247d9d679fa2ebdd2ffa90b311492b6c +doccontainersize 13006532 +doccontainerchecksum 65a01a28b2e9e14f5277f3a6c91fcd1dbcd255bffa7feeb15132aa24013fd59fe5f5feb6b7a2521328ca2060c7eb8d2eb70b1433f32452b2f661c5ee7142f336 +docfiles size=3943 + RELOC/doc/context/third/pgfplots/Makefile + RELOC/doc/context/third/pgfplots/pgfplotsexample-context.pdf + RELOC/doc/context/third/pgfplots/pgfplotsexample-context.tex + RELOC/doc/generic/pgfplots/README details="Readme" + RELOC/doc/latex/pgfplots/TeX-programming-notes.pdf + RELOC/doc/latex/pgfplots/pgfplots.doc.src.tar.bz2 + RELOC/doc/latex/pgfplots/pgfplots.pdf details="Package manual" + RELOC/doc/latex/pgfplots/pgfplotsexample.pdf + RELOC/doc/latex/pgfplots/pgfplotsexample.tex + RELOC/doc/latex/pgfplots/pgfplotstable.pdf + RELOC/doc/latex/pgfplots/pgfplotstodo.pdf + RELOC/doc/plain/pgfplots/pgfplotsexample-plain.pdf + RELOC/doc/plain/pgfplots/pgfplotsexample-plain.tex +srccontainersize 1726108 +srccontainerchecksum 26eec6b3828e218f34a92b1afd8d457c67340289b85678baf7bb6daf5b9e82db44aae87a2020c41f8abe0f4b515b9c177e2a970c8821b0396164e3d11e62366f +srcfiles size=422 + RELOC/source/context/third/pgfplots/pgfplotstests.context.tar.bz2 + RELOC/source/latex/pgfplots/pgfplotstests.tar.bz2 +runfiles size=905 + RELOC/scripts/pgfplots/matlab2pgfplots.m + RELOC/scripts/pgfplots/matlab2pgfplots.sh + RELOC/scripts/pgfplots/pgf2pdf.sh + RELOC/scripts/pgfplots/pgfplots.py + RELOC/tex/context/third/pgfplots/t-pgfplots.tex + RELOC/tex/context/third/pgfplots/t-pgfplotstable.tex + RELOC/tex/generic/pgfplots/libs/pgflibrarypgfplots.colorbrewer.code.tex + RELOC/tex/generic/pgfplots/libs/pgflibrarypgfplots.colortol.code.tex + RELOC/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex + RELOC/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarycolorbrewer.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarycolortol.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.colormaps.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.dateplot.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.decorations.softclip.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.external.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.fillbetween.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.patchplots.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.polar.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.smithchart.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.statistics.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.ternary.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.units.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex + RELOC/tex/generic/pgfplots/lua/pgfplots.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/binary.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/colormap.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/meshplothandler.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/pgfplotstexio.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/pgfplotsutil.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/plothandler.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/statistics.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/streamer.lua + RELOC/tex/generic/pgfplots/lua/pgfplotsoldpgfsupp/luamath/functions.lua + RELOC/tex/generic/pgfplots/lua/pgfplotsoldpgfsupp/luamath/parser.lua + RELOC/tex/generic/pgfplots/numtable/pgfplotstable.code.tex + RELOC/tex/generic/pgfplots/numtable/pgfplotstable.coltype.code.tex + RELOC/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_leq.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_misc.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcoreexternal.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcoreimage.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcorelayers.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcorescopes.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeys.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeysfiltered.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryfpu.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryintersections.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryluamath.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryplothandlers.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.pdflinks.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.prettyprinter.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmathfloat.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfutil-common-lists.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternal.sty + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternalshared.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzlibraryexternal.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_trig_format.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfsys-luatexpatch.def + RELOC/tex/generic/pgfplots/oldpgfplotscompatib/tikzlibrarydateplot.code.tex + RELOC/tex/generic/pgfplots/pgfcontrib/pgflibraryfillbetween.code.tex + RELOC/tex/generic/pgfplots/pgfcontrib/tikzlibrarydecorations.softclip.code.tex + RELOC/tex/generic/pgfplots/pgfcontrib/tikzlibraryfillbetween.code.tex + RELOC/tex/generic/pgfplots/pgfplots.code.tex + RELOC/tex/generic/pgfplots/pgfplots.errorbars.code.tex + RELOC/tex/generic/pgfplots/pgfplots.markers.code.tex + RELOC/tex/generic/pgfplots/pgfplots.paths.code.tex + RELOC/tex/generic/pgfplots/pgfplots.revision.tex + RELOC/tex/generic/pgfplots/pgfplots.scaling.code.tex + RELOC/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex + RELOC/tex/generic/pgfplots/pgfplotscore.code.tex + RELOC/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex + RELOC/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex + RELOC/tex/generic/pgfplots/pgfplotsplothandlers.code.tex + RELOC/tex/generic/pgfplots/pgfplotsstackedplots.code.tex + RELOC/tex/generic/pgfplots/pgfplotsticks.code.tex + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-dvipdfmx.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-dvips.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-luatex.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-luatexpatch.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-xetex.def + RELOC/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex + RELOC/tex/generic/pgfplots/test/pgfplots.assert.code.tex + RELOC/tex/generic/pgfplots/test/pgfplots.assert.sty + RELOC/tex/generic/pgfplots/util/pgfplotsbinary.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotscolor.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotscolormap.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotsutil.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex + RELOC/tex/latex/pgfplots/bugtracker.sty + RELOC/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex + RELOC/tex/latex/pgfplots/libs/tikzlibrarypgfplotsclickable.code.tex + RELOC/tex/latex/pgfplots/pgfplots.sty + RELOC/tex/latex/pgfplots/pgfplotstable.sty + RELOC/tex/latex/pgfplots/pgfregressiontest.sty + RELOC/tex/plain/pgfplots/pgfplots.tex + RELOC/tex/plain/pgfplots/pgfplotstable.tex +catalogue-also pst-plot pgfplotstable +catalogue-contact-bugs https://sourceforge.net/p/pgfplots/bugs/?source=navbar +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-license gpl3+ +catalogue-topics graphics graphics-plot pgf-tikz +catalogue-version 1.17 + +name phaistos +category Package +revision 18651 +shortdesc Disk of Phaistos font +relocated 1 +longdesc A font that contains all the symbols of the famous Disc of +longdesc Phaistos, together with a LaTeX package. The disc was 'printed' +longdesc by stamping the wet clay with some sort of punches, probably +longdesc around 1700 BCE. The font is available in Adobe Type 1 and +longdesc OpenType formats (the latter using the Unicode positions for +longdesc the symbols). There are those who believe that this Cretan +longdesc script was used to 'write' Greek (it is known, for example, +longdesc that the rather later Cretan Linear B script was used to write +longdesc Greek), but arguments for other languages have been presented. +execute addMap phaistos.map +containersize 183368 +containerchecksum d5cb8a051e1e80629385bff368896c47bdfccfcf38a24a723ddc5f9056a59c57703986799253812c9a4651f4e16dc55cee0876ddd0552900f978dab0381c9aac +doccontainersize 174564 +doccontainerchecksum 96eb22628467289f72aaa0d4983e494c75b3a2315d8b9d2921f8ab29d93fffae4f459ef852529dfa4ff48a65e25d652662c54d84db54e0118b1c021bbe39eafa +docfiles size=47 + RELOC/doc/fonts/phaistos/getglyphs + RELOC/doc/fonts/phaistos/glyphTable.pdf details="Table of symbols" +srccontainersize 3368 +srccontainerchecksum 5ba2b04fe4e3aef136de2dc40568ecb81f437561ee8e6c320927bb816819889666f57ad07c3b8bf6eb7f6eb84b69147f9233449a26529b61712d158abf889f91 +srcfiles size=4 + RELOC/source/fonts/phaistos/phaistos.dtx + RELOC/source/fonts/phaistos/phaistos.ins +runfiles size=54 + RELOC/fonts/afm/public/phaistos/phaistos.afm + RELOC/fonts/map/dvips/phaistos/phaistos.map + RELOC/fonts/opentype/public/phaistos/Phaistos.otf + RELOC/fonts/tfm/public/phaistos/phaistos.tfm + RELOC/fonts/type1/public/phaistos/phaistos.pfb + RELOC/tex/latex/phaistos/phaistos.sty +catalogue-ctan /fonts/archaic/phaistos +catalogue-license lppl +catalogue-topics font font-archaic font-type1 font-otf +catalogue-version 1.0 + +name phffullpagefigure +category Package +revision 41857 +shortdesc Figures which fill up a whole page +relocated 1 +longdesc This package defines a figure environment which provides the +longdesc figure content on its own page, with the corresponding caption +longdesc reading for example "Figure 3 (on next page): <caption>". +containersize 2908 +containerchecksum 4d443d5ce4dfd4805eaea4ecfe11bc94b9e92bc4d68f8fdd001a72ef09f519f11e20517d01722f5c7f79eeb9b92d0a6099d620e5c54dc0845b7ed5cc762c260d +doccontainersize 242800 +doccontainerchecksum 837b57707c0d37d20b02ed83ca32768c4b2718958ba3124650604f4de0bb11528c2d5fed95f942545db400eca0517ef59fb168408ea9960f0a894a777e9f2681 +docfiles size=64 + RELOC/doc/latex/phffullpagefigure/Makefile + RELOC/doc/latex/phffullpagefigure/README.md details="Readme" + RELOC/doc/latex/phffullpagefigure/phffullpagefigure.pdf details="Package documentation" + RELOC/doc/latex/phffullpagefigure/pkg.mk +srccontainersize 10128 +srccontainerchecksum f0abc0f77efc7460907cd18282ccdf2ad15687b3d891a72e8fe756c16d1d715cd6f7eaabe09898c2bd88ebe54d16b86115c06b4d56fe1f2f4b8e3e952292a107 +srcfiles size=10 + RELOC/source/latex/phffullpagefigure/phffullpagefigure.dtx + RELOC/source/latex/phffullpagefigure/phffullpagefigure.ins +runfiles size=3 + RELOC/tex/latex/phffullpagefigure/phffullpagefigure.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phffullpagefigure +catalogue-license lppl1.3 +catalogue-topics float +catalogue-version 1.0 + +name phfnote +category Package +revision 41858 +shortdesc Basic formatting for short documents +relocated 1 +longdesc This package provides basic formatting for short documents such +longdesc as notes on a specific topic, short documentation, or quick +longdesc memos. It aims to cover all basic needs for such purposes: +longdesc include a standard set of relevant packages, a nice title which +longdesc doesn't take up too much space, better page margin sizes, and +longdesc some basic styling to make the note look nicer. At the same +longdesc time, it is highly flexible and customizable. +containersize 15836 +containerchecksum d542b73d1a25d0d141a37e3bf0a3d4753829efbcfed9745ea299a90026325f82624bb5d4a5075892af758d4a4613e1560824871e6bb784a8ce0030a7fb3f4836 +doccontainersize 637980 +doccontainerchecksum a62dc8166944e953b8efa49c7ab78b98744cb9948523f4decffee6a553a8e432ce2d9774575bbedce59e5dbd01e9bcc01d82962a19d3878a11367127a7927287 +docfiles size=162 + RELOC/doc/latex/phfnote/Makefile + RELOC/doc/latex/phfnote/README.md details="Readme" + RELOC/doc/latex/phfnote/phfnote.pdf details="Package documentation" + RELOC/doc/latex/phfnote/pkg.mk +srccontainersize 28336 +srccontainerchecksum 4f83603d837978304673550f1dba78a1aad030392323de2ae6bb0295ecf7fc5f8bd211a14f831b7f3710b13e999e73e3a8b224a5ac44ce67b2ea3faae5fc83c9 +srcfiles size=29 + RELOC/source/latex/phfnote/phfnote.dtx + RELOC/source/latex/phfnote/phfnote.ins +runfiles size=18 + RELOC/bibtex/bst/phfnote/naturemagdoi.bst + RELOC/tex/latex/phfnote/phfnote.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfnote +catalogue-license lppl1.3 +catalogue-topics memorandum +catalogue-version 1.0 + +name phfparen +category Package +revision 41859 +shortdesc Parenthetic math expressions made simpler and less redundant +relocated 1 +longdesc This package provides a more condensed and flexible syntax for +longdesc parenthesis-delimited expressions in math mode which also +longdesc allows for an easier switching of brace sizes. For example, the +longdesc syntax " `\big( a + b ) " can be used to replace "\bigl( a + b +longdesc \bigr)". +containersize 2352 +containerchecksum c184623f226f9bc9926eef0b5e23443bec20e66c6641196bc90daf27a648d9f0db70ad176488fe061d44746b6cf46a3217eeb42f6a95f2e37c20d641ba2838c6 +doccontainersize 305996 +doccontainerchecksum 5c34575950ee1a9616408f293319eb0634795e07173677cae112466a298dbfa5cc18fbead8e92e459718df91326d27cc7baf0414a1f1e8613a5c115c070b5016 +docfiles size=79 + RELOC/doc/latex/phfparen/Makefile + RELOC/doc/latex/phfparen/README.md details="Readme" + RELOC/doc/latex/phfparen/phfparen.pdf details="Package documentation" + RELOC/doc/latex/phfparen/pkg.mk +srccontainersize 9336 +srccontainerchecksum ca94f1756265e0f92e8808b7dac74eb57f62eedcdefbaf6e4059c8a7ffa51819da979a70203b11250d329ec9000b454067c101b25753673add4b35c40fe1e882 +srcfiles size=9 + RELOC/source/latex/phfparen/phfparen.dtx + RELOC/source/latex/phfparen/phfparen.ins +runfiles size=2 + RELOC/tex/latex/phfparen/phfparen.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfparen +catalogue-license lppl1.3 +catalogue-topics maths paren-mgmt +catalogue-version 1.0 + +name phfqit +category Package +revision 45084 +shortdesc Macros for typesetting Quantum Information Theory +relocated 1 +longdesc This package provides macros to typeset some general +longdesc mathematical operators (identity operator, trace, diagonal, +longdesc rank, ...), a powerful implementation of the bra-ket notation +longdesc (kets, bras, brakets, matrix elements etc. which can be sized +longdesc as required), delimited expressions such as averages and norms, +longdesc and some basic Lie algebra/group names. Macros for entropy +longdesc measures for quantum information theory (smooth min- and +longdesc max-entropy, smooth relative entropies, etc.) are also +longdesc provided. +containersize 4136 +containerchecksum 250626ed9e7e33abf0d19c32213236b02849db849f080bee0ddc19370acb7e2e66c838dc1149f8c1194d2534c1e073fc2971fe3687174978bdabc90efc4b7752 +doccontainersize 394904 +doccontainerchecksum 0acdb07c2484e2e5694690536eca084ffebee0f549ead32b3557e368ed85d7a7785c297cc639cee2cf4b41f64f7c2df806b6b27d4ae89769b0b8d99d2127f885 +docfiles size=102 + RELOC/doc/latex/phfqit/Makefile + RELOC/doc/latex/phfqit/README.md details="Readme" + RELOC/doc/latex/phfqit/phfqit.pdf details="Package documentation" + RELOC/doc/latex/phfqit/pkg.mk +srccontainersize 18388 +srccontainerchecksum f189ad485482da9e1802b1b2c96120a244a14f7e7e39a1759d7484ad236945f98b8330464223ad63127d9960eb4f10f04145f5eefef25f02775c009184ca4b9d +srcfiles size=20 + RELOC/source/latex/phfqit/phfqit.dtx + RELOC/source/latex/phfqit/phfqit.ins +runfiles size=4 + RELOC/tex/latex/phfqit/phfqit.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfqit +catalogue-license lppl1.3 +catalogue-topics maths physics +catalogue-version 2.0 + +name phfquotetext +category Package +revision 41869 +shortdesc Quote verbatim text without white space formatting +relocated 1 +longdesc This package provides an environment for displaying block text +longdesc with special characters, such as verbatim quotes from a referee +longdesc report which may contain pseudo-(La)TeX code. This behaves like +longdesc a verbatim environment, except that it displays its content as +longdesc normal paragraph content, ignoring any white space +longdesc preformatting. +containersize 1340 +containerchecksum 809820fd3108cb5b33c5f3129fb3ae8251476161aca5936b966219a49a29204107375a33e6bfc452d2aef8b0cefb30f8ab0e53984f39d5c3228ded25ca19c37e +doccontainersize 199404 +doccontainerchecksum 501d652782670318fdb45368e01dbf76de7cb46f0f1584bc7dbf1242a71a42e7bc870c5cbf7dcb33d41463c550a0803226860a0aa64e75952f717436e8f6501a +docfiles size=53 + RELOC/doc/latex/phfquotetext/Makefile + RELOC/doc/latex/phfquotetext/README.md details="Readme" + RELOC/doc/latex/phfquotetext/phfquotetext.pdf details="Package documentation" + RELOC/doc/latex/phfquotetext/pkg.mk +srccontainersize 4808 +srccontainerchecksum fa812150acf519ca0995afeb9b3dde9c1929b945bb964612319f7065c6c303641e2a245397e7271eb777af9f6cfd310ca1ec7f9974c0bf9c329a0f006df2b9dc +srcfiles size=5 + RELOC/source/latex/phfquotetext/phfquotetext.dtx + RELOC/source/latex/phfquotetext/phfquotetext.ins +runfiles size=1 + RELOC/tex/latex/phfquotetext/phfquotetext.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfquotetext +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 1.0 + +name phfsvnwatermark +category Package +revision 41870 +shortdesc Watermarks with version control information from SVN +relocated 1 +longdesc This package allows you to add version control information as a +longdesc gray watermark on each page of your document. The SVN info is +longdesc read from keyword tags such as $Id$, $Date$, and $Author$ via +longdesc the svn or svn-multi packages. +containersize 2260 +containerchecksum 38dae3ef3fe183bf5149b91050afd5bc9c934d01332b021ce87e9ea412008bc22d42d25a389e82b02ccc4cc4820a10d821c228c02c4f08fdca89ebde69c6e2d0 +doccontainersize 204092 +doccontainerchecksum 7f35bcb41618c7e14e7e9f8fb289231a8032f7f1cd2e6333982a346c5f8dd24e5733f70c03ddd183d170361b2b3af4115f6fa9b788c4dd2a020020ba525aff18 +docfiles size=54 + RELOC/doc/latex/phfsvnwatermark/Makefile + RELOC/doc/latex/phfsvnwatermark/README.md details="Readme" + RELOC/doc/latex/phfsvnwatermark/phfsvnwatermark.pdf details="Package documentation" + RELOC/doc/latex/phfsvnwatermark/pkg.mk +srccontainersize 6444 +srccontainerchecksum 6c5e113bb45ce6b11768c711bb59743b75bf4b95e9d84c045b59f502f181e80a67be56b3b5153364c29ca5c36f6adb73dac4a5d3051a8dc3ea275a43277732ec +srcfiles size=6 + RELOC/source/latex/phfsvnwatermark/phfsvnwatermark.dtx + RELOC/source/latex/phfsvnwatermark/phfsvnwatermark.ins +runfiles size=2 + RELOC/tex/latex/phfsvnwatermark/phfsvnwatermark.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfsvnwatermark +catalogue-license lppl1.3 +catalogue-topics watermark version-control doc-mgmt +catalogue-version 1.0 + +name phfthm +category Package +revision 41871 +shortdesc Goodies for theorems and proofs +relocated 1 +longdesc This package provides enhanced theorem and proof environments +longdesc based on the amsthm original versions. It allows for hooks to +longdesc be placed, adds some default goodies and is highly +longdesc customizable. In particular, it can connect theorems to proofs, +longdesc automatically producing text such as "See proof on page XYZ" +longdesc and "Proof of Theorem 4: ...". +containersize 5348 +containerchecksum c6aeab1fef49a56a7ab080945199a4f68186b53bd7fd00e4c3d3babcd3f63f998748635edded858d5904b8dc7604007753bec12fdc8ff6a7656cf1ef26c0ca9e +doccontainersize 376988 +doccontainerchecksum c2439e7a3e7f1b0730b8fc48f933b9754777e7750a58ee6a5985ac458689c2df96d9e74d09c5ade2b0b8dac49e0be43ca60a0769dedc662e151e1dac5bb18cf0 +docfiles size=98 + RELOC/doc/latex/phfthm/Makefile + RELOC/doc/latex/phfthm/README.md details="Readme" + RELOC/doc/latex/phfthm/phfthm.pdf details="Package documentation" + RELOC/doc/latex/phfthm/pkg.mk +srccontainersize 23912 +srccontainerchecksum b189f0320e5b8d1ecbb1bb34972b845d776190ada4ab76e44ade41e21d8f7eb0bfb6bd55a4352aad4d0c2455730b7803384eece70d2030faf9279aef0f70f540 +srcfiles size=26 + RELOC/source/latex/phfthm/phfthm.dtx + RELOC/source/latex/phfthm/phfthm.ins +runfiles size=6 + RELOC/tex/latex/phfthm/phfthm.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfthm +catalogue-license lppl1.3 +catalogue-topics maths maths-theorem +catalogue-version 1.0 + +name philex +category Package +revision 36396 +shortdesc Cross references for named and numbered environments +relocated 1 +longdesc Philex provides means for creating and cross-referencing named +longdesc or numbered environments. Possible uses would be equations, +longdesc example sentences (as in linguistics or philosophy) or named +longdesc principles. Cross references may refer either to the number, or +longdesc to a short name of the target environment, or to the contents +longdesc of the environment. Philex builds on the facilities of the +longdesc linguex package. +containersize 4424 +containerchecksum 0b6ce5d281836926d6807dda7a8a4eace43a25160b8bdfaaded7ef9838f933db7a7bd4859019555002b662ca01800e64c4f6228427b4f40c9a79e71759aca6e0 +doccontainersize 244388 +doccontainerchecksum ec8eafe3e1b5e7cdeeb2554c3e34036c808f33b4f4bd2e5fb8b2e10e4366f51db02b2bf3dd52e46c92d600cc092f30c4db6cb6f69cc66cafde5c11a53a883839 +docfiles size=69 + RELOC/doc/latex/philex/README details="Readme" + RELOC/doc/latex/philex/philexmanual.pdf details="Package documentation" + RELOC/doc/latex/philex/philexmanual.tex +runfiles size=11 + RELOC/tex/latex/philex/philex.sty +catalogue-ctan /macros/latex/contrib/philex +catalogue-license lppl +catalogue-topics label-ref +catalogue-version 1.3 + +name philokalia +category Package +revision 45356 +shortdesc A font to typeset the Philokalia Books +relocated 1 +longdesc The philokalia package has been designed to ease the use of the +longdesc Philokalia-Regular OpenType font with XeLaTeX. The font started +longdesc as a project to digitize the typeface used to typeset the +longdesc Philokalia books. +containersize 76140 +containerchecksum 6a7b76995074ec233d4922de96f727ed031b21abbaf1a423bded6bcd964e8e503d7d3d84d8d4eb1ca42ebd99e1af50a244238f668db245ff4810176abefb0976 +doccontainersize 92820 +doccontainerchecksum 8cefb15592711d19d3fbe5fbbe6efb219ce081dac6d8bfb12ebc57ac807a30aefbaa37f371e70b7141876333ef408ae5fde177add749faf2302b2d7f60a1bf00 +docfiles size=25 + RELOC/doc/xelatex/philokalia/README details="Readme" + RELOC/doc/xelatex/philokalia/philokalia.pdf details="Package documentation" +srccontainersize 6900 +srccontainerchecksum 975d97494ed2fceefd6d7fae5cd7916689087d5f51136398b19d233e88335c373bbd572aeca930e3be212ae30b7d8b34e0070650aac5a9c391793fd6a5c1e394 +srcfiles size=6 + RELOC/source/xelatex/philokalia/philokalia.dtx + RELOC/source/xelatex/philokalia/philokalia.ins +runfiles size=33 + RELOC/fonts/opentype/public/philokalia/Philokalia-Regular.otf + RELOC/tex/xelatex/philokalia/philokalia.sty + RELOC/tex/xelatex/philokalia/tuplk.fd +catalogue-ctan /fonts/philokalia +catalogue-license lppl1.3c +catalogue-topics font-greek font-supp +catalogue-version 1.2 + +name philosophersimprint +category Package +revision 56954 +shortdesc Typesetting articles for "Philosophers' Imprint" +relocated 1 +longdesc In its mission statement we read "Philosophers' Imprint is a +longdesc refereed series of original papers in philosophy, edited by +longdesc philosophy faculty at the University of Michigan, with the +longdesc advice of an international Board of Editors, and published on +longdesc the World Wide Web by the University of Michigan Digital +longdesc Library. The mission of the Imprint is to promote a future in +longdesc which funds currently spent on journal subscriptions are +longdesc redirected to the dissemination of scholarship for free, via +longdesc the Internet". The class helps authors to typeset their own +longdesc articles in "Web-ready" format. No assumption is made about the +longdesc fonts available to the author: the class itself is restricted +longdesc to freely available and freely distributed fonts, only. +containersize 4604 +containerchecksum 8b4a1b9bebf971b0963fd20c01807d5d541a978b88a1b07bdb950c1e39fcb20b8750cc0c78bb97d663c00bac2a714fa95f0a088a1c84f371261d236c941cec4a +doccontainersize 479704 +doccontainerchecksum 9c6d1f01b2e815c4c33c4e95be40d1a7819568bbf22edacc202c3346ac4f7373ce4b6e8316ed194a32551f07296628d1d8f971ea856ddc33c1d964efd6388d4f +docfiles size=123 + RELOC/doc/latex/philosophersimprint/README details="Readme" + RELOC/doc/latex/philosophersimprint/philosophersimprint.bib + RELOC/doc/latex/philosophersimprint/philosophersimprint.pdf details="Package documentation" + RELOC/doc/latex/philosophersimprint/sample.pdf details="Sample of usage" + RELOC/doc/latex/philosophersimprint/sample.tex +srccontainersize 13344 +srccontainerchecksum 12c557b2f273c06ccdc322195340e10f50d54986ec8aea4ac103a173c9a31514d5fbce39413472fd530f0c41a21e1e5d7fb5ba03b8dd3008efb8056adc22dbee +srcfiles size=14 + RELOC/source/latex/philosophersimprint/Makefile + RELOC/source/latex/philosophersimprint/philosophersimprint.dtx + RELOC/source/latex/philosophersimprint/philosophersimprint.ins +runfiles size=4 + RELOC/tex/latex/philosophersimprint/philosophersimprint.cls +catalogue-ctan /macros/latex/contrib/philosophersimprint +catalogue-license lppl1.3 +catalogue-topics journalpub +catalogue-version 1.5 + +name phonenumbers +category Package +revision 51933 +shortdesc Typesetting telephone numbers with LaTeX +relocated 1 +longdesc The phonenumbers package makes it possible to typeset telephone +longdesc numbers according to different national conventions. German, +longdesc Austrian, French, British and North American phone numbers are +longdesc supported. Phone numbers from other countries are supported +longdesc rudimentarily. The user can select from various formatting +longdesc options, including the additional output of the country calling +longdesc code. The package is able to check if a phone number is valid +longdesc according to the national rules. It also allows to link phone +longdesc numbers using the hyperref package. +containersize 69988 +containerchecksum 79f875543181adada6e60d57adbc225efef89440666aa179ce69eef0118c528bb603436cb7df5dba95c75f60bd57bbe321f169358e247842a42cafee14cffef9 +doccontainersize 1094648 +doccontainerchecksum 85a496e3ff30df0bb1a852e1e21cf0fd8434124f3ec1b460fbd3c0da05573a1ac85136d3caec4f4d59993d47ad82fc0f123afcbf272982bd614dd2e1f318394f +docfiles size=952 + RELOC/doc/latex/phonenumbers/Literatur.bib + RELOC/doc/latex/phonenumbers/README details="Readme" + RELOC/doc/latex/phonenumbers/phonenumbers-de.pdf details="German package documentation" language="de" + RELOC/doc/latex/phonenumbers/phonenumbers-de.tex + RELOC/doc/latex/phonenumbers/phonenumbers-en.pdf details="English package documentation" language="en-gb" + RELOC/doc/latex/phonenumbers/phonenumbers-en.tex +runfiles size=162 + RELOC/tex/latex/phonenumbers/phn-AT_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-AT_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-DE_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-DE_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-FR_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-FR_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-Landeskennzahlen.tex + RELOC/tex/latex/phonenumbers/phn-UK_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-UK_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-US_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-US_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phonenumbers.sty +catalogue-ctan /macros/latex/contrib/phonenumbers +catalogue-license lppl1.3 +catalogue-topics addr-list numbers +catalogue-version 2.2 + +name phonetic +category Package +revision 56468 +shortdesc Metafont Phonetic fonts, based on Computer Modern +relocated 1 +longdesc The fonts are based on Computer Modern, and specified in +longdesc Metafont. Macros for the fonts' use are provided, both for +longdesc LaTeX 2.09 and for current LaTeX. +containersize 23380 +containerchecksum 655dda5113926fe28ee0695d8d87a18c1ae63599a2d476f7d9b3e3a28bde475cfe33fd06aa70d709fc05a2d43026e91348bc0c5435f4a9132859b7afcdf41a7f +doccontainersize 46824 +doccontainerchecksum 626ca0614b723fc3e4b75ca977c7a12e77908ca710ec52994e62e9e89e2064f973ab2bda3182a3b466eb2df2bdf030e0e6432cbf9f984bd7316b483f9c310b47 +docfiles size=25 + RELOC/doc/fonts/phonetic/209/phonetic-table.tex + RELOC/doc/fonts/phonetic/209/phonetic.sty + RELOC/doc/fonts/phonetic/README details="Readme" + RELOC/doc/fonts/phonetic/makefile + RELOC/doc/fonts/phonetic/phonetic-table.pdf + RELOC/doc/fonts/phonetic/phonetic-table.tex +runfiles size=55 + RELOC/fonts/source/public/phonetic/cmph10.mf + RELOC/fonts/source/public/phonetic/cmph5.mf + RELOC/fonts/source/public/phonetic/cmph6.mf + RELOC/fonts/source/public/phonetic/cmph7.mf + RELOC/fonts/source/public/phonetic/cmph8.mf + RELOC/fonts/source/public/phonetic/cmph9.mf + RELOC/fonts/source/public/phonetic/cmphb10.mf + RELOC/fonts/source/public/phonetic/cmphi10.mf + RELOC/fonts/source/public/phonetic/cmphi7.mf + RELOC/fonts/source/public/phonetic/cmphi8.mf + RELOC/fonts/source/public/phonetic/cmphi9.mf + RELOC/fonts/source/public/phonetic/local.mf + RELOC/fonts/source/public/phonetic/phochar.mf + RELOC/fonts/source/public/phonetic/phoital.mf + RELOC/fonts/source/public/phonetic/phoitchar.mf + RELOC/fonts/source/public/phonetic/phosym.mf + RELOC/fonts/source/public/phonetic/symchar.mf + RELOC/fonts/tfm/public/phonetic/cmph10.tfm + RELOC/fonts/tfm/public/phonetic/cmph5.tfm + RELOC/fonts/tfm/public/phonetic/cmph6.tfm + RELOC/fonts/tfm/public/phonetic/cmph7.tfm + RELOC/fonts/tfm/public/phonetic/cmph8.tfm + RELOC/fonts/tfm/public/phonetic/cmph9.tfm + RELOC/fonts/tfm/public/phonetic/cmphb10.tfm + RELOC/fonts/tfm/public/phonetic/cmphi10.tfm + RELOC/fonts/tfm/public/phonetic/cmphi7.tfm + RELOC/fonts/tfm/public/phonetic/cmphi8.tfm + RELOC/fonts/tfm/public/phonetic/cmphi9.tfm + RELOC/tex/latex/phonetic/Uphon.fd + RELOC/tex/latex/phonetic/phonetic.sty +catalogue-also tipa +catalogue-ctan /fonts/phonetic +catalogue-license lppl +catalogue-topics font font-mf font-specialist phonetic + +name phonrule +category Package +revision 43963 +shortdesc Typeset linear phonological rules +relocated 1 +longdesc The package provides macros for typesetting phonological rules +longdesc like those in 'Sound Pattern of English' (Chomsky and Halle +longdesc 1968). +containersize 1132 +containerchecksum 0465e183077f7daa57d2bbc5f1a76afa72770718d2dc969ebc3078b213738f5ae3919f3ebbee04ae54ff7b8ad6e35630fb22293b5cdac31ee5bf31680433ad15 +doccontainersize 44080 +doccontainerchecksum 80ea19243537e769c49a3411e036c5811b19586fda3878894126a151af4ddff46a554db7bc07f488f692fe9efd0934149c8c94cde75b92c880bfcc28218ae5a1 +docfiles size=14 + RELOC/doc/latex/phonrule/README.md details="Readme" + RELOC/doc/latex/phonrule/phonrule-doc.pdf details="Package documentation" + RELOC/doc/latex/phonrule/phonrule-doc.tex +runfiles size=1 + RELOC/tex/latex/phonrule/phonrule.sty +catalogue-contact-bugs https://github.com/stefanocoretta/phonrule/issues +catalogue-contact-repository https://github.com/stefanocoretta/phonrule +catalogue-ctan /macros/latex/contrib/phonrule +catalogue-license lppl1 +catalogue-topics phonetic +catalogue-version 1.3.2 + +name photo +category Package +revision 18739 +shortdesc A float environment for photographs +relocated 1 +longdesc This package introduces a new float type called photo which +longdesc works similar to the float types table and figure. Various +longdesc options exist for placing photos, captions, and a +longdesc "photographer" line. In twocolumn documents, a possibility +longdesc exists to generate double-column floats automatically if the +longdesc photo does not fit into one column. Photos do not have to be +longdesc placed as floats, they can also be placed as boxes, with +longdesc captions and photographer line still being available. +containersize 2756 +containerchecksum 11727df46b85be20802588a6c5743a9ae70a89ea73b5f16b8a4a3d3f1d3a9ab3194f56f0ef9d79947b14fe3f6b3e05cbd291dad8346cdb128b4d1c8c22d50bf5 +doccontainersize 142148 +doccontainerchecksum 037466dff8edee9f6218b1fddfe579b2f82491746e22886ea5f8496b5f564084d81e35ed549ddfc42855c850913cf8c587806d71b7a531ec3ea3056962c54e48 +docfiles size=42 + RELOC/doc/latex/photo/Makefile + RELOC/doc/latex/photo/photo.pdf details="Package documentation" + RELOC/doc/latex/photo/photo_test.tex +srccontainersize 8908 +srccontainerchecksum 644303a7eda6cbe50db8cf871ffd642dde5115d4f1a72edde65e9218337faaa63ffebc94bca96da28a4a2d7568ae0ea124f1aa12fe5402cfc1c57619e86746ab +srcfiles size=9 + RELOC/source/latex/photo/photo.drv + RELOC/source/latex/photo/photo.dtx + RELOC/source/latex/photo/photo.ins +runfiles size=2 + RELOC/tex/latex/photo/photo.sty +catalogue-ctan /macros/latex/contrib/photo +catalogue-license lppl +catalogue-topics float + +name physconst +category Package +revision 58727 +shortdesc Macros for commonly used physical constants +relocated 1 +longdesc This package consists of several macros that are shorthand for +longdesc a variety of physical constants, e.g. the speed of light. The +longdesc package developed out of physics and astronomy classes that the +longdesc author has taught and wanted to ensure that he had correct +longdesc values for each constant and did not wish to retype them every +longdesc time he uses them. The constants can be used in two forms, the +longdesc most accurate available values, or versions that are rounded to +longdesc 3 significant digits for use in typical classroom settings, +longdesc homework assignments, etc. Most constants are taken from CODATA +longdesc 2018, with the exception of the astronomical objects, whose +longdesc values are taken from International Astronomical Union +longdesc specified values. Constants that are derived from true +longdesc constants, e.g. the fine structure constant, have been +longdesc calculated using the accepted values of the fundamental +longdesc constants. +containersize 6016 +containerchecksum 3655aa79c067d01831e6f30d85f13ba7b06742d4731f2f2bbea8066205256fd4f6a5d3290812e667bde8805b9bcad82c4713d49e3eb357cde56a1f50ad065877 +doccontainersize 209684 +doccontainerchecksum 1824589dccba975de608260ab460a8a6be0d8aecb099571fb9e088e0ecd53f2f6e854a3f21eebacafd06717bfd53290ce23fbdc85467798c8f9b1189d64a58e9 +docfiles size=56 + RELOC/doc/latex/physconst/CHANGELOG.md + RELOC/doc/latex/physconst/README.md details="Readme" + RELOC/doc/latex/physconst/makefile + RELOC/doc/latex/physconst/physconst.pdf details="Package documentation" +srccontainersize 18756 +srccontainerchecksum 9e21baa7fe13e2ac201ce8d3d01e5217d078a5300c580fcb9e32fa321fa02ae5da58a4d44f81b4acdb31dc219ae6544196ab6580a123c891021185b65583362c +srcfiles size=92 + RELOC/source/latex/physconst/physconst.dtx + RELOC/source/latex/physconst/physconst.ins +runfiles size=15 + RELOC/tex/latex/physconst/physconst.sty +catalogue-contact-bugs https://github.com/astrobit/physconst/issues +catalogue-contact-repository https://github.com/astrobit/physconst +catalogue-ctan /macros/latex/contrib/physconst +catalogue-license lppl1.3c +catalogue-topics physics numbers +catalogue-version 1.1.2 + +name physics +category Package +revision 28590 +shortdesc Macros supporting the Mathematics of Physics +relocated 1 +longdesc The package defines simple and flexible macros for typesetting +longdesc equations in the languages of vector calculus and linear +longdesc algebra, using Dirac notation. +containersize 5912 +containerchecksum e394a7f8eda4583cf196dccbd9d52122d0ee630a411630f11d432018c5e9696a9b3feacfa2f881d82090df165a73ee0fa610ad86422123a9e1502ccf4b695be0 +doccontainersize 232876 +doccontainerchecksum 40a85407502116954024d51361dcbfdf36cac07aae382ada1f96d413f9b838ea5a11d7014722b5641a75b6c9bb8a5c6c134c8c0d424788f47f45fc80b277b3ca +docfiles size=69 + RELOC/doc/latex/physics/README details="Readme" + RELOC/doc/latex/physics/physics.pdf details="Package documentation" + RELOC/doc/latex/physics/physics.tex +runfiles size=8 + RELOC/tex/latex/physics/physics.sty +catalogue-ctan /macros/latex/contrib/physics +catalogue-license lppl +catalogue-topics physics maths +catalogue-version 1.3 + +name physunits +category Package +revision 58728 +shortdesc Macros for commonly used physical units +relocated 1 +longdesc This package provides a collection of macros to simplify using +longdesc physical units (e.g. m for meters, J for joules, etc.), +longdesc especially in math mode. All major SI units are included, as +longdesc well as some cgs units used in astronomy. +containersize 1744 +containerchecksum 96f700e6dd103f768383a78645cb32e363b83c459a0c764a77d127bbf2aa7c143105752ef9910a2d9d6e659547931b01a2bb0683b41d8870c0fd850d7e01de3f +doccontainersize 104792 +doccontainerchecksum e0a3fe337242d4da26153258f16dd8f71c2a704ed89fea8dc0f58b1fca7ecbf9fb168bc05adee988aca61883bf94272ec2f1ed841d99e47f0992b04f6c5bc371 +docfiles size=29 + RELOC/doc/latex/physunits/CHANGELOG.md + RELOC/doc/latex/physunits/README.md details="Readme" + RELOC/doc/latex/physunits/makefile + RELOC/doc/latex/physunits/physunits.pdf details="Package documentation" +srccontainersize 6552 +srccontainerchecksum 59ebd20b6658b4f4082e56dbb2017b4f63fbf9d7a61dc6c5b91a1da1be4794b1e555f2c6e68cb19ee6bd4c0e860eab77905eadd7fd4f72ea83f4b251bc8fae14 +srcfiles size=13 + RELOC/source/latex/physunits/physunits.dtx + RELOC/source/latex/physunits/physunits.ins +runfiles size=2 + RELOC/tex/latex/physunits/physunits.sty +catalogue-contact-repository https://github.com/astrobit/physunits +catalogue-ctan /macros/latex/contrib/physunits +catalogue-license lppl1.3c +catalogue-topics physics units scientific-docs +catalogue-version 1.2.0 + +name piano +category Package +revision 21574 +shortdesc Typeset a basic 2-octave piano diagram +relocated 1 +longdesc This package adds the \keyboard[1][2]..[7] command to your +longdesc project. When used, it draws a small 2 octaves piano keyboard +longdesc on your document, with up to 7 keys highlighted. Keys go : Co, +longdesc Cso, Do, Dso, Eo, Fo, Fso, Go, Gso, Ao, Aso, Bo, Ct, Cst, Dt, +longdesc Dst, Et, Ft, Fst, Gt, Gst, At, Ast and Bt. (A working example +longdesc is included in the README file.) +containersize 1884 +containerchecksum 49c3b29f48211ac6ca04ef8f9df74cd3f4673a84e9d84c2a9b06bbc958abd640116673abd751be40adb470907bcf65a42756c22996f0adc4e2c0dbf3d6afeca4 +doccontainersize 604 +doccontainerchecksum 50609a17b51de85d5f9df4da91c0c1c421a86ff222d08268fd0145e248eea740c68445724fee425a2adbdab85e0cf5b4a9bb4ee5cf3bfcb4a3d5cf4f1868df47 +docfiles size=1 + RELOC/doc/latex/piano/README details="Readme" +runfiles size=4 + RELOC/tex/latex/piano/piano.sty +catalogue-ctan /macros/latex/contrib/piano +catalogue-license lppl +catalogue-topics music +catalogue-version 1.0 + +name picinpar +category Package +revision 57349 +shortdesc Insert pictures into paragraphs +relocated 1 +longdesc A legacy package for creating 'windows' in paragraphs, for +longdesc inserting graphics, etc. (including "dropped capitals"). Users +longdesc should note that Pieter van Oostrum (in a published review of +longdesc packages of this sort) does not recommend this package; Picins +longdesc is recommended instead. +containersize 5192 +containerchecksum e6c7beec7eb6beac3ddf2621adc68ffa90eb24d0df02b8be23de1c1c59ffc76709307116c9d305db3735cd5c1cb2276ad11f9ce4c9fc171f67ce95293264f4d3 +doccontainersize 393268 +doccontainerchecksum 0e79c8b6b93fd8e424504286d1010879c52e83c2f216c55e34d28dfb94ead43d43c750e637be938c9b6337e6b8e07f6b6a34271cc93db3ece846d5e4d55671d7 +docfiles size=100 + RELOC/doc/latex/picinpar/picinpar-de.pdf details="Package usage example" language="de" + RELOC/doc/latex/picinpar/picinpar-de.tex + RELOC/doc/latex/picinpar/picinpar-en.pdf details="Package usage notes" language="en" + RELOC/doc/latex/picinpar/picinpar-en.tex +runfiles size=4 + RELOC/tex/latex/picinpar/picinpar.sty +catalogue-ctan /macros/latex209/contrib/picinpar +catalogue-license gpl +catalogue-topics text-flow +catalogue-version 1.2a + +name pict2e +category Package +revision 56504 +shortdesc New implementation of picture commands +relocated 1 +longdesc This package was described in the 2nd edition of 'LaTeX: A +longdesc Document Preparation System', but the LaTeX project team +longdesc declined to produce the package. For a long time, LaTeX +longdesc included a 'pict2e package' that merely produced an apologetic +longdesc error message. The new package extends the existing LaTeX +longdesc picture environment, using the familiar technique (cf. the +longdesc graphics and color packages) of driver files (at present, +longdesc drivers for dvips, pdfTeX, LuaTeX, XeTeX, VTeX, dvipdfm, and +longdesc dvipdfmx are available). The package documentation has a fair +longdesc number of examples of use, showing where things are improved by +longdesc comparison with the LaTeX picture environment. +containersize 7804 +containerchecksum 04c4fc0ea9647c0a434be2ba709f539392685233adc92da262fee4d081b6d31bfe88d8c537c19a102bc7200e2adffac4f7a4cbb3a7a47ca47c26e93e96772e6e +doccontainersize 1109928 +doccontainerchecksum 90fe6e6d6fce7d2a679bb511e2b0bbca2edc42f332886962aa227536558083897e1e3425b6c7efadaee6aa46d1e404ab5d4c18e21db52e723be8d4f0566eb5c5 +docfiles size=275 + RELOC/doc/latex/pict2e/README.md details="Readme" + RELOC/doc/latex/pict2e/manifest.txt + RELOC/doc/latex/pict2e/p2e-drivers.pdf details="Documentation of graphics drivers" + RELOC/doc/latex/pict2e/pict2e.pdf details="Package documentation" +srccontainersize 33476 +srccontainerchecksum 0c637f9979672267e73dd762b43c3339f41ed8965c12fff1141c757572ff7cef7d7f2d8faf50d855cd22a3810b9ead5318b6c20c3e5218f01fc32252f93d29e7 +srcfiles size=40 + RELOC/source/latex/pict2e/p2e-drivers.dtx + RELOC/source/latex/pict2e/pict2e.dtx + RELOC/source/latex/pict2e/pict2e.ins +runfiles size=19 + RELOC/tex/latex/pict2e/p2e-dvipdfm.def + RELOC/tex/latex/pict2e/p2e-dvipdfmx.def + RELOC/tex/latex/pict2e/p2e-dvips.def + RELOC/tex/latex/pict2e/p2e-luatex.def + RELOC/tex/latex/pict2e/p2e-pctex32.def + RELOC/tex/latex/pict2e/p2e-pctexps.def + RELOC/tex/latex/pict2e/p2e-pdftex.def + RELOC/tex/latex/pict2e/p2e-textures.def + RELOC/tex/latex/pict2e/p2e-vtex.def + RELOC/tex/latex/pict2e/p2e-xetex.def + RELOC/tex/latex/pict2e/pict2e.cfg + RELOC/tex/latex/pict2e/pict2e.sty +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-license lppl1.3 +catalogue-topics graphics graphics-in-tex +catalogue-version 0.4b + +name pictex +category Package +revision 21943 +shortdesc Picture drawing macros for TeX and LaTeX +relocated 1 +longdesc PicTeX is an early, and very comprehensive drawing package, +longdesc that mostly draws by placing myriads of small dots to make up +longdesc pictures. It has a tendency to run out of space, most +longdesc especially of allowable dimensions registers; packages m-pictex +longdesc and pictexwd deal with the register problem, in different ways. +longdesc Note that full documentation may be bought via the PC-TeX site, +longdesc though a command summary is available as free software. +longdesc Alternatively, a front-end package such as mathsPiC, which +longdesc covers all of PicTeX and has a complete and free manual, could +longdesc be used. +containersize 41440 +containerchecksum ed91f0518668007aab7b9222dd08c7f489caaf084ef915f88d435128012b2b4eb9ba610168154f07bd0d084a34909cefb1dc0c1cfb2186982b4f08f9f6412f7a +doccontainersize 1420 +doccontainerchecksum 61ed0f632d7f12fca4631b13714994b2cee8e05176262dd8cab672d4f8f7e65a36e0d927e3b803991818d9d2976d5794d48a46ebbbaf8bc8aad99aadec7d3fcb +docfiles size=4 + RELOC/doc/generic/pictex/00index + RELOC/doc/generic/pictex/README details="Readme" + RELOC/doc/generic/pictex/pictexzusatz.txt + RELOC/doc/generic/pictex/readme.errorbars +runfiles size=81 + RELOC/tex/generic/pictex/errorbars.tex + RELOC/tex/generic/pictex/latexpicobjs.tex + RELOC/tex/generic/pictex/piccorr.sty + RELOC/tex/generic/pictex/picmore.tex + RELOC/tex/generic/pictex/pictex.sty + RELOC/tex/generic/pictex/pictex.tex + RELOC/tex/generic/pictex/pictexwd.sty + RELOC/tex/generic/pictex/pictexwd.tex + RELOC/tex/generic/pictex/pointers.tex + RELOC/tex/generic/pictex/postpictex.tex + RELOC/tex/generic/pictex/prepictex.tex + RELOC/tex/generic/pictex/texpictex.tex + RELOC/tex/generic/pictex/tree.sty +catalogue-also qfig epic pictex2 pictexsum +catalogue-ctan /graphics/pictex +catalogue-license lppl1 +catalogue-topics graphics-in-tex +catalogue-version 1.1 + +name pictex2 +category Package +revision 15878 +shortdesc Adds relative coordinates and improves the \plot command +relocated 1 +longdesc Adds two user commands to standard PiCTeX. One command uses +longdesc relative coordinates, thus eliminating the need to calculate +longdesc the coordinate of every point manually as in standard PiCTeX. +longdesc The other command modifies \plot to use a rule instead of dots +longdesc if the line segment is horizontal or vertical. +containersize 3748 +containerchecksum 26b608cc8409c62f4c0130cc032f2ca5929886fafb9d22d93aa23af5a6dee62bbde83926bccbcb4fbd3d86a43810d751eb43a2a94be9528e1639c59fb61e5446 +runfiles size=4 + RELOC/tex/latex/pictex2/pictex2.sty +catalogue-ctan /macros/latex/contrib/pictex2/pictex2.sty +catalogue-license lppl +catalogue-topics graphics-in-tex + +name pictexsum +category Package +revision 24965 +shortdesc A summary of PicTeX commands +relocated 1 +longdesc The document summarises the commands of PicTeX. While it is no +longdesc substitute for the PicTeX manual itself (available from +longdesc Personal TeX inc.), the document is a useful aide-memoire for +longdesc those who have read the manual. +containersize 488 +containerchecksum a24861e4b6184084fffa783918db485e5c7cacf7a6528681e7d8d4212287f1f6687604bd4f347e9e34ab7d29867dec2b30c9871a13b9bedae31b5dbb82ba1ed2 +doccontainersize 192368 +doccontainerchecksum 148b7c29cb8189174442b95cd39b0d5fdf9f937a7a44a17314b93cce555cf3db459e21ae2c4eb9098c15551bd7aada2804855d68f9408fdbe974f6c12dd724a2 +docfiles size=59 + RELOC/doc/latex/pictexsum/Makefile + RELOC/doc/latex/pictexsum/README + RELOC/doc/latex/pictexsum/a4mod.sty + RELOC/doc/latex/pictexsum/pictexsum.pdf details="The document itself" + RELOC/doc/latex/pictexsum/pictexsum.tex + RELOC/doc/latex/pictexsum/useful.sty +catalogue-ctan /info/pictex/summary +catalogue-license other-free +catalogue-topics documentation + +name picture +category Package +revision 54867 +shortdesc Dimens for picture macros +relocated 1 +longdesc There are macro and environment arguments that expect numbers +longdesc that will internally be multiplied by \unitlength. This package +longdesc extends the syntax of these arguments, so that dimensions with +longdesc calculation support may be used for these arguments. +containersize 2300 +containerchecksum 9dbb4e17b455a6a18bae6309864412b975d07a1a11e908e1023ab8e990ded0956ccf3826e72d9878f3597eaa4d185c8b147d2c7d2149618bdb0b09fce8e20e90 +doccontainersize 303384 +doccontainerchecksum ce60fbc915b3c07db6ebf4bccbd0e2e8ed6f38fe0c07075af2c433b2bd7f82cd191c314ef3ae1fe9b4a02c2c27d75e97a5831c45b833a33373d545a977a162d8 +docfiles size=77 + RELOC/doc/latex/picture/README.md + RELOC/doc/latex/picture/picture-example.tex + RELOC/doc/latex/picture/picture.pdf details="Package documentation" +srccontainersize 5988 +srccontainerchecksum 599ad9e192d2ee50b7037d93c3a8541014ada30c13a9a8b637ee33ee9dec476a46779b06a44f56288e6fc08b29408af30310fbf0ec951aef3a8b0d8dd776aa2b +srcfiles size=6 + RELOC/source/latex/picture/picture.dtx +runfiles size=2 + RELOC/tex/latex/picture/picture.sty +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-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.6 + +name piechartmp +category Package +revision 19440 +shortdesc Draw pie-charts using MetaPost +relocated 1 +longdesc The piechartmp package is an easy way to draw pie-charts with +longdesc MetaPost. The package implements an interface that enables +longdesc users with little MetaPost experience to draw charts. A +longdesc highlight of the package is the possibility of suppressing some +longdesc segments of the chart, thus creating the possibility of several +longdesc charts from the same data. +containersize 7216 +containerchecksum e4ef7bdc43280c4311a6e8abf2719815196fb0ed0a8450501061e0b3b0bb44cd60947d6d623ff753c5ad1384d98219df695865e6459eef02b2b96f00906d023a +doccontainersize 41660 +doccontainerchecksum f74c3c34d37eabc3b5e857a90e8da2c6ffaa3b4a6974c6b1127f898fb727ff18f0f399e9c4ccde8d4d198bece0ea83fbbac37a1ba1d381576166b5a2742113c5 +docfiles size=26 + RELOC/doc/metapost/piechartmp/INSTALL + RELOC/doc/metapost/piechartmp/LEGAL + RELOC/doc/metapost/piechartmp/README details="Readme" + RELOC/doc/metapost/piechartmp/README.TEXLIVE + RELOC/doc/metapost/piechartmp/examples/wec-mfun.mp + RELOC/doc/metapost/piechartmp/examples/wec-mfun.pdf + RELOC/doc/metapost/piechartmp/examples/wec.mp + RELOC/doc/metapost/piechartmp/examples/wec.pdf + RELOC/doc/metapost/piechartmp/examples/worldmap.jpg +runfiles size=7 + RELOC/metapost/piechartmp/piechartmp.mp +catalogue-also piechart +catalogue-ctan /graphics/metapost/contrib/macros/piechartmp +catalogue-license lppl +catalogue-topics genchart +catalogue-version 0.3.0 + +name piff +category Package +revision 21894 +shortdesc Macro tools by Mike Piff +relocated 1 +longdesc The set (now) consists of: a small package for dealing with +longdesc duplicate-numbered output pages; newproof, for defining +longdesc mathematical proof structures; onepagem for omitting the page +longdesc number in one-page documents and time, which prints a 12-hour +longdesc format time. +containersize 2628 +containerchecksum 79b804dfdbb12b8d2e854341062f2a149f9b0e061385a30650c39b877cce72d1af4ad1644d73fb3ca733a171aa61d1b533295818dc10a92eacbce2ca60722de7 +doccontainersize 600376 +doccontainerchecksum ef9d14cf4a38315e4d523082db9baf8d0f89e5963001d12ba7ffe260ca2255a6aa99dc38392a6ceb0fe24e6abb8c77b9343f29300ff5c814c01adfff3321923c +docfiles size=185 + RELOC/doc/latex/piff/README + RELOC/doc/latex/piff/duplicat-doc.pdf + RELOC/doc/latex/piff/duplicat-doc.tex + RELOC/doc/latex/piff/newproof-doc.pdf + RELOC/doc/latex/piff/newproof-doc.tex + RELOC/doc/latex/piff/onepagem-doc.pdf + RELOC/doc/latex/piff/onepagem-doc.tex + RELOC/doc/latex/piff/time-doc.pdf + RELOC/doc/latex/piff/time-doc.tex +runfiles size=4 + RELOC/tex/latex/piff/duplicat.sty + RELOC/tex/latex/piff/newproof.sty + RELOC/tex/latex/piff/onepagem.sty + RELOC/tex/latex/piff/time.sty +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-license pd +catalogue-topics collection + +name pigpen +category Package +revision 15878 +shortdesc A font for the pigpen (or masonic) cipher +relocated 1 +longdesc The Pigpen cipher package provides the font and the necessary +longdesc wrappers (style file, etc.) in order to write Pigpen ciphers, a +longdesc simple substitution cipher. The package provides a font +longdesc (available both as Metafont source, and as an Adobe Type 1 +longdesc file), and macros for its use. +execute addMixedMap pigpen.map +containersize 6824 +containerchecksum 107700bb0c2afd35755589551ca6bbd9a95ee6bec39e51868ea1b5fde4855a0ea2eb92b50105eb6a3490f82ed6f55c33cac25bbd58eeecb57fb80380095b7285 +doccontainersize 49144 +doccontainerchecksum 48c6c4c26e7518f06233ce0da8898c1c722829adfad042c12b8820bb1bde43f25410c41f76c51f4d01035c9d654bf3ae8fc7bb44a4d2c23c52f3336ec7e7d128 +docfiles size=16 + RELOC/doc/latex/pigpen/README details="Readme" + RELOC/doc/latex/pigpen/pigpendoc.pdf details="Package documentation" + RELOC/doc/latex/pigpen/pigpendoc.tex +runfiles size=9 + RELOC/fonts/map/dvips/pigpen/pigpen.map + RELOC/fonts/source/public/pigpen/pigpen.mf + RELOC/fonts/tfm/public/pigpen/pigpen.tfm + RELOC/fonts/type1/public/pigpen/pigpen.pfa + RELOC/tex/latex/pigpen/pigpen.sty + RELOC/tex/latex/pigpen/pigpen.tex +catalogue-ctan /fonts/pigpen +catalogue-license lppl +catalogue-topics font font-mf font-type1 +catalogue-version 0.2 + +name pinlabel +category Package +revision 24769 +shortdesc A TeX labelling package +relocated 1 +longdesc Pinlabel is a labelling package for attaching perfectly +longdesc formatted TeX labels to figures and diagrams in both eps and +longdesc pdf formats. It is suitable both for labelling a new diagram +longdesc and for relabelling an existing diagram. The package uses +longdesc coordinates derived from GhostView (or gv) and labels are +longdesc placed with automatic and consistent spacing relative to the +longdesc object labelled. +containersize 11060 +containerchecksum 56ed76be6c634b3c1fd3f83e12304d0d0e078e027754ac7619d680d2072ac7b67c527a4d23dda8feb6496e3808b3414bec65a48d4750d44405fa4574f122880c +doccontainersize 250420 +doccontainerchecksum c56fad48b7cad065196cecdb64e501555d2a8f3ca098f001123215f8e21968cdec2da28f2a68f7e07ee9b1c2d961a82590aa136b15bdc87e9176462cd706b0a2 +docfiles size=97 + RELOC/doc/latex/pinlabel/pinlabdoc.pdf details="Package documentation" + RELOC/doc/latex/pinlabel/src/fig3.pdf + RELOC/doc/latex/pinlabel/src/fig6.pdf + RELOC/doc/latex/pinlabel/src/gtpart.cls + RELOC/doc/latex/pinlabel/src/pinlabdoc.tex + RELOC/doc/latex/pinlabel/src/put.fig + RELOC/doc/latex/pinlabel/src/put.pdf + RELOC/doc/latex/pinlabel/src/put2.fig + RELOC/doc/latex/pinlabel/src/put2.pdf + RELOC/doc/latex/pinlabel/src/screen.pdf +runfiles size=10 + RELOC/tex/latex/pinlabel/pinlabel.sty +catalogue-also psfrag overpic +catalogue-ctan /macros/latex/contrib/pinlabel +catalogue-license lppl +catalogue-topics graphics-text +catalogue-version 1.2 + +name pinoutikz +category Package +revision 55966 +shortdesc Draw chip pinouts with TikZ +relocated 1 +longdesc The package provides a set of macros for typesetting electronic +longdesc chip pinouts. It is designed as a tool that is easy to use, +longdesc with a lean syntax, native to LaTeX, and directly supporting +longdesc PDF output format. It has therefore been based on the very +longdesc impressive TikZ package. +containersize 2536 +containerchecksum 88ecb08a15725e4afbd296cc7eba16583cbe260989784e625eecf008441ac54ea53cba81801d77ab8439bc076c32d6c09d62305ef589d739ec1ed59e1f907755 +doccontainersize 75816 +doccontainerchecksum 9fb1acfa981b7d38b312d089be9b9d5dad22334960133377b06910cb0df39c8e556ca86d5f9b959b27ef4c7fc2211b97507b138f026df58d439fe3ae9fd3f420 +docfiles size=24 + RELOC/doc/latex/pinoutikz/README.md details="Readme" + RELOC/doc/latex/pinoutikz/pinoutikz_doc_en.pdf details="Package documentation" + RELOC/doc/latex/pinoutikz/pinoutikz_doc_en.tex +runfiles size=3 + RELOC/tex/latex/pinoutikz/pinoutikz.sty +catalogue-ctan /graphics/pgf/contrib/pinoutikz +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz electronic +catalogue-version 1.1.2 + +name pitex +category Package +revision 24731 +shortdesc Documentation macros +relocated 1 +longdesc The bundle provides macros that the author uses when writing +longdesc documentation (for example, that of the texapi and yax +longdesc packages). The tools could be used by anyone, but there is no +longdesc documentation, and the macros are subject to change without +longdesc notice. +containersize 22664 +containerchecksum dcc4280ef914ba66210ce471dc276042070b3246bc95ecb93b3d8af55393f49921a1d5e6851223299831344503dfc77fc2893f4cf1b78351dad40058979c20aa +doccontainersize 110192 +doccontainerchecksum c3765f6acd4a147ffd2c216b1cda58e5e6ac8dc1202b444fe80d0dd69449b01df3eb17069842ef745e76e88371bf71c178d06c5ad2bc85e3427726bb30b74002 +docfiles size=39 + RELOC/doc/plain/pitex/README details="Readme" + RELOC/doc/plain/pitex/foundry-settings.lua + RELOC/doc/plain/pitex/i-pitex.lua + RELOC/doc/plain/pitex/pitex-doc.pdf + RELOC/doc/plain/pitex/pitex-doc.tex + RELOC/doc/plain/pitex/pitex-doc.txt +runfiles size=27 + RELOC/tex/plain/pitex/base.ptxlua + RELOC/tex/plain/pitex/blocks.ptx + RELOC/tex/plain/pitex/files.ptx + RELOC/tex/plain/pitex/fonts.ptx + RELOC/tex/plain/pitex/fonts.ptxlua + RELOC/tex/plain/pitex/inserts.ptx + RELOC/tex/plain/pitex/lua.ptx + RELOC/tex/plain/pitex/output.ptx + RELOC/tex/plain/pitex/pitex.tex + RELOC/tex/plain/pitex/references.ptx + RELOC/tex/plain/pitex/sections.ptx + RELOC/tex/plain/pitex/verbatim.ptx +catalogue-ctan /macros/plain/contrib/pitex +catalogue-license lppl +catalogue-topics doc-supp + +name pittetd +category Package +revision 15878 +shortdesc Electronic Theses and Dissertations at Pitt +relocated 1 +longdesc A document class for theses and dissertations. Provides patch +longdesc files that enable pittetd to use files prepared for use with +longdesc the pittdiss or pitthesis classes. The manual provides a +longdesc detailed guide for users who wish to use the class to prepare +longdesc their thesis or dissertation. +containersize 8884 +containerchecksum 5bd78a90b4c7b9cfa8fbfad66e0de79d09762e06d3bb35a7aaa13ef8ba73aacaceafd8d5b5468de8fb59c6f4c76d364af145e101543c7ef2089dc9fe00e5e9db +doccontainersize 317704 +doccontainerchecksum e72d325fbfd3159699621fd703fd539259d1b13ae69d00e771291e156e3ce6cc15a0d7e4d2e74a3ad3492c39c67adfdca5491b68dd6e8ac78ac1213400f091fe +docfiles size=118 + RELOC/doc/latex/pittetd/achicago.pit + RELOC/doc/latex/pittetd/pittdiss.pit + RELOC/doc/latex/pittetd/pittetd.pdf details="Package documentation" + RELOC/doc/latex/pittetd/pitthesis.pit +srccontainersize 38588 +srccontainerchecksum fc1afca13fa1d4b6b0f77dcf693939be3d6423ebf15dc6354b955e1a02ea5655933470de740d0d626d718bd48b5f4dd1ed92263d8524d0ba38b2e4c328bbc135 +srcfiles size=38 + RELOC/source/latex/pittetd/pittetd.dtx + RELOC/source/latex/pittetd/pittetd.ins +runfiles size=12 + RELOC/tex/latex/pittetd/pitetd10.clo + RELOC/tex/latex/pittetd/pitetd11.clo + RELOC/tex/latex/pittetd/pitetd12.clo + RELOC/tex/latex/pittetd/pittetd.cls +catalogue-contact-home http://latexetdsupport.wikidot.com/ +catalogue-ctan /macros/latex/contrib/pittetd +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 1.618 + +name pixelart +category Package +revision 57508 +shortdesc A package to draw pixel-art pictures +relocated 1 +longdesc A LaTeX package to draw single-color pixel-art pictures using +longdesc TikZ. +containersize 1580 +containerchecksum 47f667a417ebe5a7cd265055d6a4c88bb8f561e020069ddc0bde818aa2394e69d6a575e48bc6d4feaf5761d356a6554189ba6c1a57cf2bfbf1099132b8398805 +doccontainersize 154092 +doccontainerchecksum 5221b337718d13512359c3e0d349dd83afb9c2585f013501badb06483e8ab23f146672860426047fbed3d55471e32301ed695b6c416c31683915f569c4b3c3a7 +docfiles size=45 + RELOC/doc/latex/pixelart/CHANGELOG.md + RELOC/doc/latex/pixelart/LICENSE.txt + RELOC/doc/latex/pixelart/README.md details="Readme" + RELOC/doc/latex/pixelart/pixelart.pdf details="Package documentation" +srccontainersize 6560 +srccontainerchecksum 9b69ddc19d4ca5ca050ff22ea88dd5be1743c5e910066d8f412ce59620906e642dc979831d571ebe44e05b5284cc4f36ab05935bfc03c4a82b869bad24672199 +srcfiles size=6 + RELOC/source/latex/pixelart/pixelart.dtx + RELOC/source/latex/pixelart/pixelart.ins +runfiles size=1 + RELOC/tex/latex/pixelart/pixelart.sty +catalogue-contact-bugs https://framagit.org/spalax/pixelart/issues +catalogue-contact-repository https://framagit.org/spalax/pixelart +catalogue-ctan /graphics/pgf/contrib/pixelart +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz +catalogue-version 0.2.0 + +name pkfix +category Package +revision 26032 +shortdesc Replace pk fonts in PostScript with Type 1 fonts +longdesc The perl script pkfix looks for DVIPSBitmapFont comments in +longdesc PostScript files, generated by 'not too old' dvips, and +longdesc replaces them by type 1 versions of the fonts, if possible. +depend pkfix.ARCH +containersize 7572 +containerchecksum b4d374e5b771e131075ec59ef6713c6433cc3cefb6331a933e791c3774a9d54d6c8427d70a4aadb2c6326c3733abdb562ca103f0b6a9dbcafd87856d20b18a24 +doccontainersize 4376 +doccontainerchecksum c6819c63aa4cf7df5879a796e08299f2fa132e1244648d17a7fb0b3c28204b0641e56fe4661887c257ca4f5998786c31b1cae2aa64e3163340f08d02fda4c8d4 +docfiles size=3 + texmf-dist/doc/support/pkfix/README details="Readme" +runfiles size=7 + texmf-dist/scripts/pkfix/pkfix.pl +catalogue-also pkfix-helper +catalogue-ctan /support/pkfix +catalogue-license lppl1.3 +catalogue-topics font-util +catalogue-version 1.7 + +name pkfix-helper +category Package +revision 56061 +shortdesc Make PostScript files accessible to pkfix +longdesc Pkfix is a useful utility for replacing resolution-dependent +longdesc bitmapped fonts in a dvips-produced PostScript file with the +longdesc corresponding resolution-independent vector fonts. +longdesc Unfortunately, pkfix needs to parse certain PostScript comments +longdesc that appear only in files produced by dvips versions later than +longdesc 5.58 (ca. 1996); it fails to work on PostScript files produced +longdesc by older versions of dvips. Pkfix-helper is a program that +longdesc attempts to insert newer-dvips comments into an older-dvips +longdesc PostScript file, thereby making the file suitable for +longdesc processing by pkfix. pkfix-helper can sometimes process +longdesc documents fully autonomously but does require the user to +longdesc verify and, if needed, correct its decisions. +depend pkfix-helper.ARCH +containersize 20208 +containerchecksum e5151d85d2db65f41b69320ad92611adcc8d211719aa06f39488ba75972f6bd4eda3a9ebd9f13e8889eb84451a640bbdbfd8862c95620304917cca3dcff4a194 +doccontainersize 393612 +doccontainerchecksum 50103799bbfc18a728b6510f9cd3d9aa4cbafaebb1e68f2f3280b3a57efbdbf75ff68f36e72b4442e49bbb04801795250fb3e2d0728968e30c1e70fc5b7d15d0 +docfiles size=132 + texmf-dist/doc/man/man1/pkfix-helper.1 + texmf-dist/doc/man/man1/pkfix-helper.man1.pdf + texmf-dist/doc/support/pkfix-helper/README details="Readme" + texmf-dist/doc/support/pkfix-helper/encoding-samples.pdf details="Encoding tables and how to use them" + texmf-dist/doc/support/pkfix-helper/encoding-samples.tex +runfiles size=18 + texmf-dist/scripts/pkfix-helper/pkfix-helper +catalogue-ctan /support/pkfix-helper +catalogue-license lppl1.3c +catalogue-topics font-util +catalogue-version 1.6 + +name pkfix-helper.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pkfix-helper +containersize 344 +containerchecksum 3909e8f2e4601a5cbb9708480ed6c3c0f86afc5e0521da3c738b7ade6781799e7e0605da0cd104b04eb9163b7e1a5e3168f9c45542e5bbf0b2b4ae2fe9047c5c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pkfix-helper + +name pkfix-helper.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pkfix-helper +containersize 344 +containerchecksum dcdef9686b23b3927f74830b529834370c057a71cf948197519763c420aa0a8f192f533479212b3fd3419a1278208fac4d43364175334bf213560de26668a2d5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pkfix-helper + +name pkfix-helper.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pkfix-helper +containersize 344 +containerchecksum 6bade14b1be884bb65d5b8bca13fc6fe29c740cba8c2d86049d5ba7ffae13b6879e3d4d26e1509d3c2a0f834ca090f28baf821dc12fd31d3b58b2fefff3c4f72 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pkfix-helper + +name pkfix-helper.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pkfix-helper +containersize 344 +containerchecksum 2b5fa9f5e73d9f4de4df025f663cc4c6bc445efa18d300a72cdc25e7370b2648037e3da91893cac43440c0bee2d13aa4eb34c7af3a4ccc208919cd1c15905a52 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pkfix-helper + +name pkfix-helper.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of pkfix-helper +containersize 340 +containerchecksum e911ef06e4ee79b8a1469b4e1b0721026839cad855e4c8f08ba54fe6811a55083194cfd1dce061656dd2d07fc50f587d7a9389cf8e02cf3c2f8a4c59c51d0405 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pkfix-helper + +name pkfix-helper.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pkfix-helper +containersize 344 +containerchecksum 604409be6536d07e3b03aa9c8c9e0bfe70a284d4e3b6fcdc9706ca3e01c9eda2696819d166c78236e8214e4a3db64e11cdbb8627ac17f6a300b00a48dfb8b0b0 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pkfix-helper + +name pkfix-helper.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of pkfix-helper +containersize 344 +containerchecksum a28c1ef7690242727c902d796a54b53ce5d55c3b9d4bab5f5286d84503288fe52ecc2e2d45ad6de2b4c15f642cfa17b405e07b3bbced5bfa1b79cf5d41949077 +binfiles arch=i386-linux size=1 + bin/i386-linux/pkfix-helper + +name pkfix-helper.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pkfix-helper +containersize 344 +containerchecksum 12d185c8a341357d2e43ccd9ae183ed2bdc59c695d4a044d7657c1df189a2e4e7c917cd9f110db8ccab33454b54ebb3c1188e79ae1324e965398c8fa00c12694 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pkfix-helper + +name pkfix-helper.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of pkfix-helper +containersize 344 +containerchecksum a8864630a9fddd192388f2ce9ecba4336c224fab367dac3fbc298820c10a07adfe75ae248ab5aa346a178faa58543872518c65855eaf582941842101497f07ad +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pkfix-helper + +name pkfix-helper.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pkfix-helper +containersize 344 +containerchecksum 965873797a8a4697b0e117e23ec95fb05eca93148a95e42e33ce40601540dbf502f327da4fb7b77027e3c17db8ddbc2f09a46b04267f1ae832abac3fc896fd04 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pkfix-helper + +name pkfix-helper.win32 +category Package +revision 15404 +shortdesc win32 files of pkfix-helper +containersize 692 +containerchecksum 4371bf1b0cc4df3cb4b32b23b81147e77c18a1504cafe5e98b999afb1a1323f310e22e49513771c3a224efb454b329187abb233f22092c4b6b6cef21425ab6db +binfiles arch=win32 size=1 + bin/win32/pkfix-helper.exe + +name pkfix-helper.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pkfix-helper +containersize 344 +containerchecksum 2761addfbcf9553d9090a27e67730ebb6697b362768cd629d68578802d79a606b6e394085b5a7cecc214926cc0fd7ee9f92c00e508c8e498675385d11d13f461 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pkfix-helper + +name pkfix-helper.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pkfix-helper +containersize 352 +containerchecksum 83a0199228033f24f6e53b58d06424c8e24b7f087075f70bbce709c42eff54c2f0f1dff1f690b82d3857f969956cba88647dafb0df6a3fefec2e4d4b7ac8ff4a +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pkfix-helper + +name pkfix-helper.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of pkfix-helper +containersize 340 +containerchecksum a48840584b95959684393608861cc69c21ff17eb93550a1e4c9d67eb4990fadbf1b96eacdefd8ef94b1035caf4ecb3401b8ef0b49e69a1377f8a2334f25df203 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pkfix-helper + +name pkfix-helper.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pkfix-helper +containersize 348 +containerchecksum f92cf0974426da5250deeedb1e2f2922a5696026d2fbf1fc1928938b5e1d9f018d6b55a35a4ea6e402f5180aae35210be2fe0d9e881ddd07ffebba0b41d78268 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pkfix-helper + +name pkfix-helper.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pkfix-helper +containersize 344 +containerchecksum 157d090c072d6de9e29ec26d2dc5a29b3df8e87ba3891bccf54f13981c6703644f317b881ea5e40774370069c702675c02e7cf9d71bb33fcf5112b8bb59b60f3 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pkfix-helper + +name pkfix.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pkfix +containersize 340 +containerchecksum 9d03978808d50600c2c1cbc52f0efad496ca19f2dfbfac4190bb9949e5abca083c5785ea1686715c5efc04721f967032e38865ff619ae82b5366c8d29ec959d3 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pkfix + +name pkfix.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pkfix +containersize 340 +containerchecksum c15418cea90b6d301943c712a456fcab1b75bbbcc06bffefc7bfd686d054ab45d6597fbb7977681cf0d804935a446b4e51c0b4f1137287859e012dae0fd1ee0b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pkfix + +name pkfix.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pkfix +containersize 336 +containerchecksum a7ce5042db56be7ee5a6576364d7e418d8e1c434dfdfdfe640d5d7371311a67ec8788889fcbea0433488fa49104035180edc22aeeb42874e06123984da6ce1ec +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pkfix + +name pkfix.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pkfix +containersize 340 +containerchecksum a286f9e981bcab87a8061a3fa89edab974ad8fefada1270e30787dc656d5311fbf5e14d17c61ce7ed3a1e831035c867fab1d13d0ec2e3019c06827b2f4e91044 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pkfix + +name pkfix.i386-cygwin +category Package +revision 13364 +shortdesc i386-cygwin files of pkfix +containersize 336 +containerchecksum f9332165c66122ce9baeb03287a929efc9f16ddee166d263717d281e66192044cb61b7ed23c1496391017ecefa8d91f88f600a0137ff1ee1920c25f1e3a1a3b2 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pkfix + +name pkfix.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pkfix +containersize 340 +containerchecksum 6b8ec6bd1694a4a2c93d6a651dbf20c65b97aa1be9f9001845ee2c10ce66620bfb1c9ab143eba6a5de1dc4561eb1efa3ae52cad3b19bf1bf51df87b0142d683f +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pkfix + +name pkfix.i386-linux +category Package +revision 13364 +shortdesc i386-linux files of pkfix +containersize 340 +containerchecksum f9d6561b1462658003ba47922e60c4d47ee4e70b2a9d4ec6e81d6892509732ebbc4fab85c05b95d9132cff8f267fa3337fd50c95ae46b0b4db9bc93d6aff2c07 +binfiles arch=i386-linux size=1 + bin/i386-linux/pkfix + +name pkfix.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pkfix +containersize 336 +containerchecksum 09f75d15e29eb3f3fc0668c8b44b08cfb80c6cc5c16bc9b961b0e4acc6d5202232cfceadaea5e3beaeb4fc56615773226b18c28f73af7fba613e34367437b383 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pkfix + +name pkfix.i386-solaris +category Package +revision 13364 +shortdesc i386-solaris files of pkfix +containersize 340 +containerchecksum bb88f5a0991b2c81b1a9fc2a1e96618c68f46612d08292fc4039aa0e22c40ec24a1694ab7c05e30eecb41c8d1cd94d2d903e648b3196af10e5efaa0f484b0887 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pkfix + +name pkfix.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pkfix +containersize 340 +containerchecksum 4d85df40aa977bc5e3c750a52dccd211f54fd720fd8444ed8ae3b780136d9c4c9e7a28a248a31874da6bc2d7c00ee4a57b3705406681973f5f5ac2ac7a72fb62 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pkfix + +name pkfix.win32 +category Package +revision 15404 +shortdesc win32 files of pkfix +containersize 680 +containerchecksum 138b312b3ba034455b6e43a9c0b11206d3def9e6c36b3f65a96ea78f2a1ae7b154460a8e3d44b7adebb427f415c79f47f5805261cb887cdf5c42f4d55d2a1279 +binfiles arch=win32 size=1 + bin/win32/pkfix.exe + +name pkfix.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pkfix +containersize 340 +containerchecksum 7172e512108cf747f51c007c69a02215cebe2c1f2b23890fbee9c17f8518be0bf05f95871d630245ce2a471cbff12151ab13c561293464776f12769a78385a2f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pkfix + +name pkfix.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pkfix +containersize 348 +containerchecksum 147af4be15e9d986a848c96101063f0e9b9bb66b87f203f4222cbd01e9d9ec4d7fd94bf1460ae1bf1b672b0dd218d8fda6e62ce49d68edbd4998fcfc9d22ac37 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pkfix + +name pkfix.x86_64-linux +category Package +revision 13364 +shortdesc x86_64-linux files of pkfix +containersize 336 +containerchecksum b75340c58d0033e9f0bd42a737c851db315411b4b392759c630b3dd6670e8bb083b040c5eee156beae26abc9e3ff9fd23867f7c1a6e59999b265d3b26ee6ebf4 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pkfix + +name pkfix.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pkfix +containersize 344 +containerchecksum b790ed292a1c2c9021be6fb12f60cfd2584bb4b862707ad6ccdccfa33b99c01bf23322fc1b8aa434a35e8cd66492463116adfc07c1fac34e106260520e973bc1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pkfix + +name pkfix.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pkfix +containersize 340 +containerchecksum 146a0891f1ec90579e45ca8ba0c1e18514d8e656501996e7e76c3adc444cd89fdb902663c04403eb3c624de919911c3c969f238d5ffe34d7ded257378851bd66 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pkfix + +name pkgloader +category Package +revision 47486 +shortdesc Manage the options and loading order of other packages +relocated 1 +longdesc The package seeks to address the frustration caused by package +longdesc conflicts. It is in an early stage of its development, and +longdesc should probably not be used as a matter of course; however the +longdesc author welcomes feedback via the home page link given in this +longdesc catalogue entry. Nevertheless, the author urges users to try +longdesc the package and to report issues (or whatever) via the +longdesc package's repository. To use pkgloader you need, apart from +longdesc packages installed by default, the lt3graph package. +containersize 10336 +containerchecksum 2b9af06a79f484ce948b98d8ac09f3327a64e2299770ae6746d9762fc6b339d68aa3ad2abc5e67dc385bf4675cf406f170ef706fc101e87f6b58c839b6d3a3e2 +doccontainersize 475212 +doccontainerchecksum 231038d0af3e7293cec5b5e3a9835b1ddfcb60d5c8006009998e5a04638e0ff818ed36abcb2326a56149af0884297059577a3437e9bb144264cf42feed055cb6 +docfiles size=125 + RELOC/doc/latex/pkgloader/README details="Readme" + RELOC/doc/latex/pkgloader/pkgloader-packagedoc.cls + RELOC/doc/latex/pkgloader/pkgloader.pdf details="Package documentation" + RELOC/doc/latex/pkgloader/pkgloader.tex +runfiles size=19 + RELOC/tex/latex/pkgloader/pkgloader-cls-pkg.sty + RELOC/tex/latex/pkgloader/pkgloader-dry.sty + RELOC/tex/latex/pkgloader/pkgloader-early.sty + RELOC/tex/latex/pkgloader/pkgloader-error.sty + RELOC/tex/latex/pkgloader/pkgloader-false.sty + RELOC/tex/latex/pkgloader/pkgloader-late.sty + RELOC/tex/latex/pkgloader/pkgloader-recommended.sty + RELOC/tex/latex/pkgloader/pkgloader-true.sty + RELOC/tex/latex/pkgloader/pkgloader.sty +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-license lppl1.3 +catalogue-topics debug-supp expl3 +catalogue-version 0.7.0 + +name pkuthss +category Package +revision 58729 +shortdesc LaTeX template for dissertations in Peking University +relocated 1 +longdesc The package provides a simple, clear and flexible LaTeX +longdesc template for dissertations in Peking University. +containersize 16648 +containerchecksum 34f4fce7ef86327be8353d8a5634c8498007a8b30ee847b01a577610bf1d1a31f862bdd3888888a022563333e275f74f686efdea5ae8d7fe82f99e6d8e71f212 +doccontainersize 435360 +doccontainerchecksum ee343be7e84257bafd28ed10de0e5724c19c832a170ab8b176a0681da3bd108ba2f914e214e1c7045ffcdb981e72b3ba08c736c6486ad756af736e48e13738d0 +docfiles size=149 + RELOC/doc/latex/pkuthss/README.txt details="Readme" + RELOC/doc/latex/pkuthss/example.pdf + RELOC/doc/latex/pkuthss/example/Make.bat + RELOC/doc/latex/pkuthss/example/chap/abs.tex + RELOC/doc/latex/pkuthss/example/chap/ack.tex + RELOC/doc/latex/pkuthss/example/chap/chap1.tex + RELOC/doc/latex/pkuthss/example/chap/chap2.tex + RELOC/doc/latex/pkuthss/example/chap/chap3.tex + RELOC/doc/latex/pkuthss/example/chap/copy.tex + RELOC/doc/latex/pkuthss/example/chap/encl1.tex + RELOC/doc/latex/pkuthss/example/chap/origin.tex + RELOC/doc/latex/pkuthss/example/ctex-fontset-pkuthss.def + RELOC/doc/latex/pkuthss/example/ctexopts.cfg + RELOC/doc/latex/pkuthss/example/latexmkrc + RELOC/doc/latex/pkuthss/example/spine.tex + RELOC/doc/latex/pkuthss/example/thesis.bib + RELOC/doc/latex/pkuthss/example/thesis.tex + RELOC/doc/latex/pkuthss/pkuthss.pdf details="Package documentation" language="zh" + RELOC/doc/latex/pkuthss/readme/ChangeLog-upto-1.3.txt + RELOC/doc/latex/pkuthss/readme/ChangeLog.txt + RELOC/doc/latex/pkuthss/readme/chap/origin.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-abs.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-ack.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap1.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap2.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap3.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-concl.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-copy.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-encl1.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-intro.tex + RELOC/doc/latex/pkuthss/readme/latexmkrc + RELOC/doc/latex/pkuthss/readme/pkuthss-english.patch + RELOC/doc/latex/pkuthss/readme/pkuthss.bib + RELOC/doc/latex/pkuthss/readme/pkuthss.tex +runfiles size=13 + RELOC/tex/latex/pkuthss/pkulogo.eps + RELOC/tex/latex/pkuthss/pkulogo.pdf + RELOC/tex/latex/pkuthss/pkuthss-gbk.def + RELOC/tex/latex/pkuthss/pkuthss-utf8.def + RELOC/tex/latex/pkuthss/pkuthss.cls + RELOC/tex/latex/pkuthss/pkuword.eps + RELOC/tex/latex/pkuthss/pkuword.pdf +catalogue-contact-repository https://gitea.com/CasperVector/pkuthss +catalogue-ctan /macros/latex/contrib/pkuthss +catalogue-license lppl1.3 bsd pd +catalogue-topics dissertation class chinese +catalogue-version 1.9.0 + +name pl +category Package +revision 58661 +catalogue pl-mf +shortdesc Polish extension of Computer Modern fonts +relocated 1 +longdesc The Polish extension of the Computer Modern fonts (compatible +longdesc with CM itself) for use with Polish TeX formats. The fonts were +longdesc originally a part of the MeX distribution (and they are still +longdesc available that way). +execute addMixedMap plother.map +execute addMixedMap pltext.map +containersize 1929852 +containerchecksum bb0d16d92272c6233284fbcd94864c381ce60343e5b9ac23a04871a515f36c18d5eca92e7ad4f80b1335348f62baa703671984db2c85d5a35d84f725f699db9a +doccontainersize 25344 +doccontainerchecksum efde952f17a904492b2c36e49801514b97ac5302b406beca7680a893051bc3821e70cdaad8d01dab479476298154c5ce2db99d43b04cf51cbcc5e16358c9b9f0 +docfiles size=22 + RELOC/doc/fonts/pl/README-T1.ENG + RELOC/doc/fonts/pl/README-T1.POL + RELOC/doc/fonts/pl/README.ENG + RELOC/doc/fonts/pl/README.POL + RELOC/doc/fonts/pl/plsample.tex +runfiles size=1109 + RELOC/dvips/pl/config.pl + RELOC/fonts/afm/public/pl/plb10.afm + RELOC/fonts/afm/public/pl/plbsy10.afm + RELOC/fonts/afm/public/pl/plbx10.afm + RELOC/fonts/afm/public/pl/plbx12.afm + RELOC/fonts/afm/public/pl/plbx5.afm + RELOC/fonts/afm/public/pl/plbx6.afm + RELOC/fonts/afm/public/pl/plbx7.afm + RELOC/fonts/afm/public/pl/plbx8.afm + RELOC/fonts/afm/public/pl/plbx9.afm + RELOC/fonts/afm/public/pl/plbxsl10.afm + RELOC/fonts/afm/public/pl/plbxti10.afm + RELOC/fonts/afm/public/pl/plcsc10.afm + RELOC/fonts/afm/public/pl/pldunh10.afm + RELOC/fonts/afm/public/pl/plex10.afm + RELOC/fonts/afm/public/pl/plex9.afm + RELOC/fonts/afm/public/pl/plff10.afm + RELOC/fonts/afm/public/pl/plfi10.afm + RELOC/fonts/afm/public/pl/plfib8.afm + RELOC/fonts/afm/public/pl/plinch.afm + RELOC/fonts/afm/public/pl/plitt10.afm + RELOC/fonts/afm/public/pl/plmi10.afm + RELOC/fonts/afm/public/pl/plmi12.afm + RELOC/fonts/afm/public/pl/plmi5.afm + RELOC/fonts/afm/public/pl/plmi6.afm + RELOC/fonts/afm/public/pl/plmi7.afm + RELOC/fonts/afm/public/pl/plmi8.afm + RELOC/fonts/afm/public/pl/plmi9.afm + RELOC/fonts/afm/public/pl/plmib10.afm + RELOC/fonts/afm/public/pl/plr10.afm + RELOC/fonts/afm/public/pl/plr12.afm + RELOC/fonts/afm/public/pl/plr17.afm + RELOC/fonts/afm/public/pl/plr5.afm + RELOC/fonts/afm/public/pl/plr6.afm + RELOC/fonts/afm/public/pl/plr7.afm + RELOC/fonts/afm/public/pl/plr8.afm + RELOC/fonts/afm/public/pl/plr9.afm + RELOC/fonts/afm/public/pl/plsl10.afm + RELOC/fonts/afm/public/pl/plsl12.afm + RELOC/fonts/afm/public/pl/plsl8.afm + RELOC/fonts/afm/public/pl/plsl9.afm + RELOC/fonts/afm/public/pl/plsltt10.afm + RELOC/fonts/afm/public/pl/plss10.afm + RELOC/fonts/afm/public/pl/plss12.afm + RELOC/fonts/afm/public/pl/plss17.afm + RELOC/fonts/afm/public/pl/plss8.afm + RELOC/fonts/afm/public/pl/plss9.afm + RELOC/fonts/afm/public/pl/plssbi10.afm + RELOC/fonts/afm/public/pl/plssbx10.afm + RELOC/fonts/afm/public/pl/plssdc10.afm + RELOC/fonts/afm/public/pl/plssi10.afm + RELOC/fonts/afm/public/pl/plssi12.afm + RELOC/fonts/afm/public/pl/plssi17.afm + RELOC/fonts/afm/public/pl/plssi8.afm + RELOC/fonts/afm/public/pl/plssi9.afm + RELOC/fonts/afm/public/pl/plssq8.afm + RELOC/fonts/afm/public/pl/plssqi8.afm + RELOC/fonts/afm/public/pl/plsy10.afm + RELOC/fonts/afm/public/pl/plsy5.afm + RELOC/fonts/afm/public/pl/plsy6.afm + RELOC/fonts/afm/public/pl/plsy7.afm + RELOC/fonts/afm/public/pl/plsy8.afm + RELOC/fonts/afm/public/pl/plsy9.afm + RELOC/fonts/afm/public/pl/pltcsc10.afm + RELOC/fonts/afm/public/pl/pltex10.afm + RELOC/fonts/afm/public/pl/pltex8.afm + RELOC/fonts/afm/public/pl/pltex9.afm + RELOC/fonts/afm/public/pl/plti10.afm + RELOC/fonts/afm/public/pl/plti12.afm + RELOC/fonts/afm/public/pl/plti7.afm + RELOC/fonts/afm/public/pl/plti8.afm + RELOC/fonts/afm/public/pl/plti9.afm + RELOC/fonts/afm/public/pl/pltt10.afm + RELOC/fonts/afm/public/pl/pltt12.afm + RELOC/fonts/afm/public/pl/pltt8.afm + RELOC/fonts/afm/public/pl/pltt9.afm + RELOC/fonts/afm/public/pl/plu10.afm + RELOC/fonts/afm/public/pl/plvtt10.afm + RELOC/fonts/enc/dvips/pl/plin.enc + RELOC/fonts/enc/dvips/pl/plit.enc + RELOC/fonts/enc/dvips/pl/plitt.enc + RELOC/fonts/enc/dvips/pl/plme.enc + RELOC/fonts/enc/dvips/pl/plmi.enc + RELOC/fonts/enc/dvips/pl/plms.enc + RELOC/fonts/enc/dvips/pl/plrm.enc + RELOC/fonts/enc/dvips/pl/plsc.enc + RELOC/fonts/enc/dvips/pl/plte.enc + RELOC/fonts/enc/dvips/pl/pltt.enc + RELOC/fonts/map/dvips/pl/plother.map + RELOC/fonts/map/dvips/pl/pltext.map + RELOC/fonts/source/public/pl/cmssbi10.mf + RELOC/fonts/source/public/pl/dlr10.mf + RELOC/fonts/source/public/pl/fik_mik.mf + RELOC/fonts/source/public/pl/pl.mft + RELOC/fonts/source/public/pl/pl_cud.mf + RELOC/fonts/source/public/pl/pl_dl.mf + RELOC/fonts/source/public/pl/pl_dod.mf + RELOC/fonts/source/public/pl/pl_ml.mf + RELOC/fonts/source/public/pl/pl_mlk.mf + RELOC/fonts/source/public/pl/pl_sym.mf + RELOC/fonts/source/public/pl/plb10.mf + RELOC/fonts/source/public/pl/plbsy10.mf + RELOC/fonts/source/public/pl/plbsy5.mf + RELOC/fonts/source/public/pl/plbsy7.mf + RELOC/fonts/source/public/pl/plbx10.mf + RELOC/fonts/source/public/pl/plbx12.mf + RELOC/fonts/source/public/pl/plbx5.mf + RELOC/fonts/source/public/pl/plbx6.mf + RELOC/fonts/source/public/pl/plbx7.mf + RELOC/fonts/source/public/pl/plbx8.mf + RELOC/fonts/source/public/pl/plbx9.mf + RELOC/fonts/source/public/pl/plbxsl10.mf + RELOC/fonts/source/public/pl/plbxti10.mf + RELOC/fonts/source/public/pl/plcsc10.mf + RELOC/fonts/source/public/pl/pldunh10.mf + RELOC/fonts/source/public/pl/plex10.mf + RELOC/fonts/source/public/pl/plff10.mf + RELOC/fonts/source/public/pl/plfi10.mf + RELOC/fonts/source/public/pl/plfib8.mf + RELOC/fonts/source/public/pl/plinch.mf + RELOC/fonts/source/public/pl/plitt10.mf + RELOC/fonts/source/public/pl/plmi10.mf + RELOC/fonts/source/public/pl/plmi12.mf + RELOC/fonts/source/public/pl/plmi5.mf + RELOC/fonts/source/public/pl/plmi6.mf + RELOC/fonts/source/public/pl/plmi7.mf + RELOC/fonts/source/public/pl/plmi8.mf + RELOC/fonts/source/public/pl/plmi9.mf + RELOC/fonts/source/public/pl/plmib10.mf + RELOC/fonts/source/public/pl/plmib5.mf + RELOC/fonts/source/public/pl/plmib7.mf + RELOC/fonts/source/public/pl/plr10.mf + RELOC/fonts/source/public/pl/plr12.mf + RELOC/fonts/source/public/pl/plr17.mf + RELOC/fonts/source/public/pl/plr5.mf + RELOC/fonts/source/public/pl/plr6.mf + RELOC/fonts/source/public/pl/plr7.mf + RELOC/fonts/source/public/pl/plr8.mf + RELOC/fonts/source/public/pl/plr9.mf + RELOC/fonts/source/public/pl/plsl10.mf + RELOC/fonts/source/public/pl/plsl12.mf + RELOC/fonts/source/public/pl/plsl8.mf + RELOC/fonts/source/public/pl/plsl9.mf + RELOC/fonts/source/public/pl/plsltt10.mf + RELOC/fonts/source/public/pl/plss10.mf + RELOC/fonts/source/public/pl/plss12.mf + RELOC/fonts/source/public/pl/plss17.mf + RELOC/fonts/source/public/pl/plss8.mf + RELOC/fonts/source/public/pl/plss9.mf + RELOC/fonts/source/public/pl/plssbi10.mf + RELOC/fonts/source/public/pl/plssbx10.mf + RELOC/fonts/source/public/pl/plssdc10.mf + RELOC/fonts/source/public/pl/plssi10.mf + RELOC/fonts/source/public/pl/plssi12.mf + RELOC/fonts/source/public/pl/plssi17.mf + RELOC/fonts/source/public/pl/plssi8.mf + RELOC/fonts/source/public/pl/plssi9.mf + RELOC/fonts/source/public/pl/plssq8.mf + RELOC/fonts/source/public/pl/plssqi8.mf + RELOC/fonts/source/public/pl/plsy10.mf + RELOC/fonts/source/public/pl/plsy5.mf + RELOC/fonts/source/public/pl/plsy6.mf + RELOC/fonts/source/public/pl/plsy7.mf + RELOC/fonts/source/public/pl/plsy8.mf + RELOC/fonts/source/public/pl/plsy9.mf + RELOC/fonts/source/public/pl/pltcsc10.mf + RELOC/fonts/source/public/pl/pltex10.mf + RELOC/fonts/source/public/pl/pltex8.mf + RELOC/fonts/source/public/pl/pltex9.mf + RELOC/fonts/source/public/pl/plti10.mf + RELOC/fonts/source/public/pl/plti12.mf + RELOC/fonts/source/public/pl/plti7.mf + RELOC/fonts/source/public/pl/plti8.mf + RELOC/fonts/source/public/pl/plti9.mf + RELOC/fonts/source/public/pl/pltt10.mf + RELOC/fonts/source/public/pl/pltt12.mf + RELOC/fonts/source/public/pl/pltt8.mf + RELOC/fonts/source/public/pl/pltt9.mf + RELOC/fonts/source/public/pl/plu10.mf + RELOC/fonts/source/public/pl/plvtt10.mf + RELOC/fonts/source/public/pl/polan.mf + RELOC/fonts/source/public/pl/polkap.mf + RELOC/fonts/source/public/pl/polkur.mf + RELOC/fonts/source/public/pl/polmat.mf + RELOC/fonts/source/public/pl/poltyt.mf + RELOC/fonts/tfm/public/pl/plb10.tfm + RELOC/fonts/tfm/public/pl/plbsy10.tfm + RELOC/fonts/tfm/public/pl/plbsy5.tfm + RELOC/fonts/tfm/public/pl/plbsy7.tfm + RELOC/fonts/tfm/public/pl/plbx10.tfm + RELOC/fonts/tfm/public/pl/plbx12.tfm + RELOC/fonts/tfm/public/pl/plbx5.tfm + RELOC/fonts/tfm/public/pl/plbx6.tfm + RELOC/fonts/tfm/public/pl/plbx7.tfm + RELOC/fonts/tfm/public/pl/plbx8.tfm + RELOC/fonts/tfm/public/pl/plbx9.tfm + RELOC/fonts/tfm/public/pl/plbxsl10.tfm + RELOC/fonts/tfm/public/pl/plbxti10.tfm + RELOC/fonts/tfm/public/pl/plcsc10.tfm + RELOC/fonts/tfm/public/pl/pldunh10.tfm + RELOC/fonts/tfm/public/pl/plex10.tfm + RELOC/fonts/tfm/public/pl/plex9.tfm + RELOC/fonts/tfm/public/pl/plff10.tfm + RELOC/fonts/tfm/public/pl/plfi10.tfm + RELOC/fonts/tfm/public/pl/plfib8.tfm + RELOC/fonts/tfm/public/pl/plinch.tfm + RELOC/fonts/tfm/public/pl/plitt10.tfm + RELOC/fonts/tfm/public/pl/plmi10.tfm + RELOC/fonts/tfm/public/pl/plmi12.tfm + RELOC/fonts/tfm/public/pl/plmi5.tfm + RELOC/fonts/tfm/public/pl/plmi6.tfm + RELOC/fonts/tfm/public/pl/plmi7.tfm + RELOC/fonts/tfm/public/pl/plmi8.tfm + RELOC/fonts/tfm/public/pl/plmi9.tfm + RELOC/fonts/tfm/public/pl/plmib10.tfm + RELOC/fonts/tfm/public/pl/plmib5.tfm + RELOC/fonts/tfm/public/pl/plmib7.tfm + RELOC/fonts/tfm/public/pl/plr10.tfm + RELOC/fonts/tfm/public/pl/plr12.tfm + RELOC/fonts/tfm/public/pl/plr17.tfm + RELOC/fonts/tfm/public/pl/plr5.tfm + RELOC/fonts/tfm/public/pl/plr6.tfm + RELOC/fonts/tfm/public/pl/plr7.tfm + RELOC/fonts/tfm/public/pl/plr8.tfm + RELOC/fonts/tfm/public/pl/plr9.tfm + RELOC/fonts/tfm/public/pl/plsl10.tfm + RELOC/fonts/tfm/public/pl/plsl12.tfm + RELOC/fonts/tfm/public/pl/plsl8.tfm + RELOC/fonts/tfm/public/pl/plsl9.tfm + RELOC/fonts/tfm/public/pl/plsltt10.tfm + RELOC/fonts/tfm/public/pl/plss10.tfm + RELOC/fonts/tfm/public/pl/plss12.tfm + RELOC/fonts/tfm/public/pl/plss17.tfm + RELOC/fonts/tfm/public/pl/plss8.tfm + RELOC/fonts/tfm/public/pl/plss9.tfm + RELOC/fonts/tfm/public/pl/plssbi10.tfm + RELOC/fonts/tfm/public/pl/plssbx10.tfm + RELOC/fonts/tfm/public/pl/plssdc10.tfm + RELOC/fonts/tfm/public/pl/plssi10.tfm + RELOC/fonts/tfm/public/pl/plssi12.tfm + RELOC/fonts/tfm/public/pl/plssi17.tfm + RELOC/fonts/tfm/public/pl/plssi8.tfm + RELOC/fonts/tfm/public/pl/plssi9.tfm + RELOC/fonts/tfm/public/pl/plssq8.tfm + RELOC/fonts/tfm/public/pl/plssqi8.tfm + RELOC/fonts/tfm/public/pl/plsy10.tfm + RELOC/fonts/tfm/public/pl/plsy5.tfm + RELOC/fonts/tfm/public/pl/plsy6.tfm + RELOC/fonts/tfm/public/pl/plsy7.tfm + RELOC/fonts/tfm/public/pl/plsy8.tfm + RELOC/fonts/tfm/public/pl/plsy9.tfm + RELOC/fonts/tfm/public/pl/pltcsc10.tfm + RELOC/fonts/tfm/public/pl/pltex10.tfm + RELOC/fonts/tfm/public/pl/pltex8.tfm + RELOC/fonts/tfm/public/pl/pltex9.tfm + RELOC/fonts/tfm/public/pl/plti10.tfm + RELOC/fonts/tfm/public/pl/plti12.tfm + RELOC/fonts/tfm/public/pl/plti7.tfm + RELOC/fonts/tfm/public/pl/plti8.tfm + RELOC/fonts/tfm/public/pl/plti9.tfm + RELOC/fonts/tfm/public/pl/pltt10.tfm + RELOC/fonts/tfm/public/pl/pltt12.tfm + RELOC/fonts/tfm/public/pl/pltt8.tfm + RELOC/fonts/tfm/public/pl/pltt9.tfm + RELOC/fonts/tfm/public/pl/plu10.tfm + RELOC/fonts/tfm/public/pl/plvtt10.tfm + RELOC/fonts/type1/public/pl/plb10.pfb + RELOC/fonts/type1/public/pl/plb10.pfm + RELOC/fonts/type1/public/pl/plbsy10.pfb + RELOC/fonts/type1/public/pl/plbsy10.pfm + RELOC/fonts/type1/public/pl/plbx10.pfb + RELOC/fonts/type1/public/pl/plbx10.pfm + RELOC/fonts/type1/public/pl/plbx12.pfb + RELOC/fonts/type1/public/pl/plbx12.pfm + RELOC/fonts/type1/public/pl/plbx5.pfb + RELOC/fonts/type1/public/pl/plbx5.pfm + RELOC/fonts/type1/public/pl/plbx6.pfb + RELOC/fonts/type1/public/pl/plbx6.pfm + RELOC/fonts/type1/public/pl/plbx7.pfb + RELOC/fonts/type1/public/pl/plbx7.pfm + RELOC/fonts/type1/public/pl/plbx8.pfb + RELOC/fonts/type1/public/pl/plbx8.pfm + RELOC/fonts/type1/public/pl/plbx9.pfb + RELOC/fonts/type1/public/pl/plbx9.pfm + RELOC/fonts/type1/public/pl/plbxsl10.pfb + RELOC/fonts/type1/public/pl/plbxsl10.pfm + RELOC/fonts/type1/public/pl/plbxti10.pfb + RELOC/fonts/type1/public/pl/plbxti10.pfm + RELOC/fonts/type1/public/pl/plcsc10.pfb + RELOC/fonts/type1/public/pl/plcsc10.pfm + RELOC/fonts/type1/public/pl/pldunh10.pfb + RELOC/fonts/type1/public/pl/pldunh10.pfm + RELOC/fonts/type1/public/pl/plex10.pfb + RELOC/fonts/type1/public/pl/plex10.pfm + RELOC/fonts/type1/public/pl/plex9.pfb + RELOC/fonts/type1/public/pl/plex9.pfm + RELOC/fonts/type1/public/pl/plff10.pfb + RELOC/fonts/type1/public/pl/plff10.pfm + RELOC/fonts/type1/public/pl/plfi10.pfb + RELOC/fonts/type1/public/pl/plfi10.pfm + RELOC/fonts/type1/public/pl/plfib8.pfb + RELOC/fonts/type1/public/pl/plfib8.pfm + RELOC/fonts/type1/public/pl/plinch.pfb + RELOC/fonts/type1/public/pl/plinch.pfm + RELOC/fonts/type1/public/pl/plitt10.pfb + RELOC/fonts/type1/public/pl/plitt10.pfm + RELOC/fonts/type1/public/pl/plmi10.pfb + RELOC/fonts/type1/public/pl/plmi10.pfm + RELOC/fonts/type1/public/pl/plmi12.pfb + RELOC/fonts/type1/public/pl/plmi12.pfm + RELOC/fonts/type1/public/pl/plmi5.pfb + RELOC/fonts/type1/public/pl/plmi5.pfm + RELOC/fonts/type1/public/pl/plmi6.pfb + RELOC/fonts/type1/public/pl/plmi6.pfm + RELOC/fonts/type1/public/pl/plmi7.pfb + RELOC/fonts/type1/public/pl/plmi7.pfm + RELOC/fonts/type1/public/pl/plmi8.pfb + RELOC/fonts/type1/public/pl/plmi8.pfm + RELOC/fonts/type1/public/pl/plmi9.pfb + RELOC/fonts/type1/public/pl/plmi9.pfm + RELOC/fonts/type1/public/pl/plmib10.pfb + RELOC/fonts/type1/public/pl/plmib10.pfm + RELOC/fonts/type1/public/pl/plr10.pfb + RELOC/fonts/type1/public/pl/plr10.pfm + RELOC/fonts/type1/public/pl/plr12.pfb + RELOC/fonts/type1/public/pl/plr12.pfm + RELOC/fonts/type1/public/pl/plr17.pfb + RELOC/fonts/type1/public/pl/plr17.pfm + RELOC/fonts/type1/public/pl/plr5.pfb + RELOC/fonts/type1/public/pl/plr5.pfm + RELOC/fonts/type1/public/pl/plr6.pfb + RELOC/fonts/type1/public/pl/plr6.pfm + RELOC/fonts/type1/public/pl/plr7.pfb + RELOC/fonts/type1/public/pl/plr7.pfm + RELOC/fonts/type1/public/pl/plr8.pfb + RELOC/fonts/type1/public/pl/plr8.pfm + RELOC/fonts/type1/public/pl/plr9.pfb + RELOC/fonts/type1/public/pl/plr9.pfm + RELOC/fonts/type1/public/pl/plsl10.pfb + RELOC/fonts/type1/public/pl/plsl10.pfm + RELOC/fonts/type1/public/pl/plsl12.pfb + RELOC/fonts/type1/public/pl/plsl12.pfm + RELOC/fonts/type1/public/pl/plsl8.pfb + RELOC/fonts/type1/public/pl/plsl8.pfm + RELOC/fonts/type1/public/pl/plsl9.pfb + RELOC/fonts/type1/public/pl/plsl9.pfm + RELOC/fonts/type1/public/pl/plsltt10.pfb + RELOC/fonts/type1/public/pl/plsltt10.pfm + RELOC/fonts/type1/public/pl/plss10.pfb + RELOC/fonts/type1/public/pl/plss10.pfm + RELOC/fonts/type1/public/pl/plss12.pfb + RELOC/fonts/type1/public/pl/plss12.pfm + RELOC/fonts/type1/public/pl/plss17.pfb + RELOC/fonts/type1/public/pl/plss17.pfm + RELOC/fonts/type1/public/pl/plss8.pfb + RELOC/fonts/type1/public/pl/plss8.pfm + RELOC/fonts/type1/public/pl/plss9.pfb + RELOC/fonts/type1/public/pl/plss9.pfm + RELOC/fonts/type1/public/pl/plssbi10.pfb + RELOC/fonts/type1/public/pl/plssbi10.pfm + RELOC/fonts/type1/public/pl/plssbx10.pfb + RELOC/fonts/type1/public/pl/plssbx10.pfm + RELOC/fonts/type1/public/pl/plssdc10.pfb + RELOC/fonts/type1/public/pl/plssdc10.pfm + RELOC/fonts/type1/public/pl/plssi10.pfb + RELOC/fonts/type1/public/pl/plssi10.pfm + RELOC/fonts/type1/public/pl/plssi12.pfb + RELOC/fonts/type1/public/pl/plssi12.pfm + RELOC/fonts/type1/public/pl/plssi17.pfb + RELOC/fonts/type1/public/pl/plssi17.pfm + RELOC/fonts/type1/public/pl/plssi8.pfb + RELOC/fonts/type1/public/pl/plssi8.pfm + RELOC/fonts/type1/public/pl/plssi9.pfb + RELOC/fonts/type1/public/pl/plssi9.pfm + RELOC/fonts/type1/public/pl/plssq8.pfb + RELOC/fonts/type1/public/pl/plssq8.pfm + RELOC/fonts/type1/public/pl/plssqi8.pfb + RELOC/fonts/type1/public/pl/plssqi8.pfm + RELOC/fonts/type1/public/pl/plsy10.pfb + RELOC/fonts/type1/public/pl/plsy10.pfm + RELOC/fonts/type1/public/pl/plsy5.pfb + RELOC/fonts/type1/public/pl/plsy5.pfm + RELOC/fonts/type1/public/pl/plsy6.pfb + RELOC/fonts/type1/public/pl/plsy6.pfm + RELOC/fonts/type1/public/pl/plsy7.pfb + RELOC/fonts/type1/public/pl/plsy7.pfm + RELOC/fonts/type1/public/pl/plsy8.pfb + RELOC/fonts/type1/public/pl/plsy8.pfm + RELOC/fonts/type1/public/pl/plsy9.pfb + RELOC/fonts/type1/public/pl/plsy9.pfm + RELOC/fonts/type1/public/pl/pltcsc10.pfb + RELOC/fonts/type1/public/pl/pltcsc10.pfm + RELOC/fonts/type1/public/pl/pltex10.pfb + RELOC/fonts/type1/public/pl/pltex10.pfm + RELOC/fonts/type1/public/pl/pltex8.pfb + RELOC/fonts/type1/public/pl/pltex8.pfm + RELOC/fonts/type1/public/pl/pltex9.pfb + RELOC/fonts/type1/public/pl/pltex9.pfm + RELOC/fonts/type1/public/pl/plti10.pfb + RELOC/fonts/type1/public/pl/plti10.pfm + RELOC/fonts/type1/public/pl/plti12.pfb + RELOC/fonts/type1/public/pl/plti12.pfm + RELOC/fonts/type1/public/pl/plti7.pfb + RELOC/fonts/type1/public/pl/plti7.pfm + RELOC/fonts/type1/public/pl/plti8.pfb + RELOC/fonts/type1/public/pl/plti8.pfm + RELOC/fonts/type1/public/pl/plti9.pfb + RELOC/fonts/type1/public/pl/plti9.pfm + RELOC/fonts/type1/public/pl/pltt10.pfb + RELOC/fonts/type1/public/pl/pltt10.pfm + RELOC/fonts/type1/public/pl/pltt12.pfb + RELOC/fonts/type1/public/pl/pltt12.pfm + RELOC/fonts/type1/public/pl/pltt8.pfb + RELOC/fonts/type1/public/pl/pltt8.pfm + RELOC/fonts/type1/public/pl/pltt9.pfb + RELOC/fonts/type1/public/pl/pltt9.pfm + RELOC/fonts/type1/public/pl/plu10.pfb + RELOC/fonts/type1/public/pl/plu10.pfm + RELOC/fonts/type1/public/pl/plvtt10.pfb + RELOC/fonts/type1/public/pl/plvtt10.pfm +catalogue-ctan /language/polish/pl-mf.zip +catalogue-license pd +catalogue-topics font font-mf polish +catalogue-version 1.09a + +name placeat +category Package +revision 45145 +shortdesc Absolute content positioning +relocated 1 +longdesc The package provides commands so that the user of LuaLaTeX may +longdesc position arbitrary content at any position specified by +longdesc absolute coordinates on the page. The package draws a grid on +longdesc each page of the document, to aid positioning (the grid may be +longdesc disabled, for 'final copy' using the command \placeatsetup). +containersize 4000 +containerchecksum 476dac5b149811659c663751478f9f224e209dd63954cb88baadcc94c70a4861673512e01c4a5f30097d242f56f1a6edbf4fc225f8b561e49a4e60b02020488e +doccontainersize 95556 +doccontainerchecksum 0fc82d9b448c85eb3d77a7943b9243720f41894f062d9723b3dd56f2d3e9cd8fcb87a3d57f387f1c87b3ea132fee2e0e08962d9044aa7c756f0db979f4c06a3c +docfiles size=26 + RELOC/doc/lualatex/placeat/README.md details="Readme" + RELOC/doc/lualatex/placeat/placeat.pdf details="Package documentation" + RELOC/doc/lualatex/placeat/placeat.tex +srccontainersize 11932 +srccontainerchecksum c24fb52958d4bf39ea7925b1b68f2b2a5eea95c4c7bad8193d272111d6cc896b89e1b7ffd923a0e6fd9fd231dba3d1038a8730ae58b4ba059738da646e6b7bed +srcfiles size=9 + RELOC/source/lualatex/placeat/placeat.dtx +runfiles size=4 + RELOC/scripts/placeat/placeat.lua + RELOC/tex/lualatex/placeat/placeat.sty +catalogue-also textpos +catalogue-contact-repository https://github.com/alt/placeat +catalogue-ctan /macros/luatex/latex/placeat +catalogue-license lppl1.3 +catalogue-topics layout luatex +catalogue-version 0.1d1 + +name placeins +category Package +revision 19848 +shortdesc Control float placement +relocated 1 +longdesc Defines a \FloatBarrier command, beyond which floats may not +longdesc pass; useful, for example, to ensure all floats for a section +longdesc appear before the next \section command. +containersize 2300 +containerchecksum 618eb33f1fce0b089fe111b083b0153c146e0d8abbcfc235a86dc6a698a2fad080f8ac38e04037e06b0e1e2782291ca6d01ae69922d181b26b4c809d6aba262a +doccontainersize 257616 +doccontainerchecksum 2ac2312083ae8abd3fe3f85da7dc65032a4c6bed4d1778c058120b48292f459d1b77d40e4eb6f0afaf88a5160d4fb0eb7f353ba1d93b7ec672f054e58de4d6f5 +docfiles size=65 + RELOC/doc/latex/placeins/placeins-doc.pdf details="Package documentation" + RELOC/doc/latex/placeins/placeins-doc.tex + RELOC/doc/latex/placeins/placeins.txt +runfiles size=1 + RELOC/tex/latex/placeins/placeins.sty +catalogue-ctan /macros/latex/contrib/placeins +catalogue-license pd +catalogue-topics layout float +catalogue-version 2.2 + +name placeins-plain +category Package +revision 15878 +shortdesc Insertions that keep their place +relocated 1 +longdesc This TeX file provides various mechanisms (for plain TeX and +longdesc close relatives) to let insertions (footnotes, topins, pageins, +longdesc etc.) float within their appropriate section, but to prevent +longdesc them from intruding into the following section, even when +longdesc sections do not normally begin a new page. (If your sections +longdesc normally begin a new page, just use \supereject to flush out +longdesc insertions.) +containersize 2632 +containerchecksum ba143fda432b8ff9f96d48218ea3b3d29308db3a403c64af5f4a89b8305ff835481d9e0e77bff92530207359115f6a44b006cc58bce99c0f7d3924d1134ef60b +runfiles size=2 + RELOC/tex/plain/placeins-plain/placeins.tex +catalogue-ctan /macros/plain/contrib/misc/placeins.tex +catalogue-license pd +catalogue-topics layout float +catalogue-version 2.0 + +name plain +category Package +revision 57963 +shortdesc The Plain TeX format +relocated 1 +longdesc Contains files used to build the Plain TeX format, as described +longdesc in the TeXbook, together with various supporting files (some +longdesc also discussed in the book). +containersize 29112 +containerchecksum 0010ad47f363ddad3a0433fbc48f4e39950eddab3d08e2eaa6d5eacdc620265d45b09ca23c48f92ac8bedf222f98095c4f91d424a27ef0e8e50ed6d673780c57 +runfiles size=40 + RELOC/makeindex/plain/plaintex.ist + RELOC/tex/plain/base/fontchart.tex + RELOC/tex/plain/base/gkpmac.tex + RELOC/tex/plain/base/letterformat.tex + RELOC/tex/plain/base/list-latin.tex + RELOC/tex/plain/base/list.tex + RELOC/tex/plain/base/llist-latin.tex + RELOC/tex/plain/base/llist.tex + RELOC/tex/plain/base/mptmac.tex + RELOC/tex/plain/base/picmac.tex + RELOC/tex/plain/base/plain.tex + RELOC/tex/plain/base/wlist.tex + RELOC/tex/plain/config/aleph.ini + RELOC/tex/plain/config/bplain.ini + RELOC/tex/plain/config/etex.ini + RELOC/tex/plain/config/omega.ini + RELOC/tex/plain/config/pdfbplain.ini + RELOC/tex/plain/config/pdfetex.ini + RELOC/tex/plain/config/pdftexmagfix.tex + RELOC/tex/plain/config/tex.ini +catalogue-ctan /macros/plain/base +catalogue-license knuth +catalogue-topics format +catalogue-version 3.141592653 + +name plain-doc +category Package +revision 28424 +catalogue csname-doc +shortdesc A list of plain.tex cs names +relocated 1 +longdesc The document constitutes a list of every control sequence name +longdesc (csname) described in the TeXbook, together with an indication +longdesc of whether the csname is a primitive TeX command, or is defined +longdesc in plain.tex +containersize 488 +containerchecksum bae58c957de52e1a45f91d8ea49579ea9c5b50b641331ae8d27146b6bbda1cf93e09abe58a011164ef99e5513cc32d346da7d693e975271e1892674aa5799406 +doccontainersize 4172 +doccontainerchecksum 03f17a65680e4fedd76abf2ec46dbac4b7871c3106c74d3d7c7f200bd6124146b2f78848a3761eaf63b2c909eb5925b78441d73a48a4437ef496b8643777d847 +docfiles size=5 + RELOC/doc/plain/plain-doc/csname.txt +catalogue-ctan /info/plain-doc/csname.txt +catalogue-license pd +catalogue-topics tut-plaintex + +name plainpkg +category Package +revision 27765 +shortdesc A minimal method for making generic packages +relocated 1 +longdesc The package provides a minimal method for making generic (i.e., +longdesc TeX-format-independent) packaged, combining maybeload +longdesc functionality, fallback definitions for LaTeX \ProvidesPackage +longdesc and \RequirePackage functionality, and handling of arbitrary +longdesc (multiple) "private letters" (analagous LaTeX packages' use of +longdesc "@") in nested package files. The documentation contains a +longdesc central reference for making and using generic packages based +longdesc on the package. +containersize 3304 +containerchecksum aa1158f3958013b133dd3f9308063543268181296274a40e2ca606c8e684105e89b79cd9bb45d225e14865ca0e998e0412e8edf8057445bde549f249a6d69b2e +doccontainersize 357100 +doccontainerchecksum 684b4f193f29336d5bd2c494c0c447cf0ac28090a156ae286437033e14507607582b3b9b40bc7b82fd92661a4bdd75f953e7c0b675f46418bb585b6a9492eaa1 +docfiles size=99 + RELOC/doc/generic/plainpkg/README details="Readme" + RELOC/doc/generic/plainpkg/SrcFILEs.txt + RELOC/doc/generic/plainpkg/plainpkg-doc.pdf details="Package documentation" +srccontainersize 5264 +srccontainerchecksum 44138ffb31ad8f78b0ab917302f48f0bbea871ef390c52b211ac25dd9c16f0687f02348c96682d89c9fdb5586b157c9d6d4ab3f404f40ab173835997ffe7c237 +srcfiles size=5 + RELOC/source/generic/plainpkg/plainpkg-doc.tex + RELOC/source/generic/plainpkg/srcfiles.tex +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-license lppl1.3 +catalogue-topics macro-supp macro-gen +catalogue-version 0.4a + +name plainyr +category Package +revision 52783 +shortdesc Plain bibliography style, sorted by year first +relocated 1 +longdesc This is a version of the standard plain BibTeX style, modified +longdesc to sort chronologically (by year) first, then by author, title, +longdesc etc. (The style's name isn't what the author submitted: it was +longdesc renamed for clarity.) +containersize 5000 +containerchecksum a42c5fc8c9a530f91d467ab3707fbec05f49764e85b906510f4605749c60bdda224a4ba23be85acd722f48b0958ed7184b4bfe88dc7c3fea4a64e70f9407afc6 +runfiles size=6 + RELOC/bibtex/bst/plainyr/plainyr.bst +catalogue-ctan /biblio/bibtex/contrib/misc/plainyr.bst +catalogue-license other-free +catalogue-topics bibtex-sty + +name plantslabels +category Package +revision 29803 +shortdesc Write labels for plants +relocated 1 +longdesc The package defines a command \plant, which has three mandatory +longdesc and seven optional argument. The package uses the labels +containersize 1260 +containerchecksum 7e1724b32035ee32325c491bce57ead23f40ad7377b4c1d5572499fef920b874bd57298e654429203cbea726b8d645a0899807547db80825be163538c1d91537 +doccontainersize 218164 +doccontainerchecksum 999f132df73c15a7b3501487f350e48777543745c5cddbbaf314bcb62eca9b3ba41b51324b61d04e9f1d9cef4b9b8ab851d3528f8893bb21e612a7f50511da65 +docfiles size=94 + RELOC/doc/latex/plantslabels/README details="Readme" + RELOC/doc/latex/plantslabels/doc/pdf/plantslabels.pdf details="Package documentation" + RELOC/doc/latex/plantslabels/doc/tex/Makefile + RELOC/doc/latex/plantslabels/doc/tex/perso.ist + RELOC/doc/latex/plantslabels/doc/tex/plantslabels.forlisting + RELOC/doc/latex/plantslabels/doc/tex/plantslabels.tex + RELOC/doc/latex/plantslabels/example/pdf/example.pdf + RELOC/doc/latex/plantslabels/example/tex/cactus.eps + RELOC/doc/latex/plantslabels/example/tex/example.tex +runfiles size=1 + RELOC/tex/latex/plantslabels/plantslabels.sty +catalogue-ctan /macros/latex/contrib/plantslabels +catalogue-license lppl +catalogue-topics covers +catalogue-version 1.0 + +name plantuml +category Package +revision 55214 +shortdesc Support for rendering UML diagrams using the syntax and tool of PlantUML +relocated 1 +longdesc The package provides support for rendering UML diagrams using +longdesc the syntax and tools of PlantUML. The PlantUML syntax is very +longdesc short and thus enables quickly specifying UML diagrams. Using +longdesc dot, PlantUML layouts the diagrams. +containersize 2204 +containerchecksum 30e49185f2916a0ac1234199e80fc4c776eabb69e7cea9f8132e7c32c074dd2a24cb100b1f6f2f80b314cef9e7099f881605ee3fe19ee180f2c6c856e33c73d9 +doccontainersize 66536 +doccontainerchecksum bd04f4ee1ebde123f718b147b407f65d0549171fcb3cd9c07381871a23034520563b02edc1675aa3a6a975da6d811674d653c5527b6ba99309f479ecad136cbc +docfiles size=25 + RELOC/doc/lualatex/plantuml/CHANGELOG.md + RELOC/doc/lualatex/plantuml/README.md details="Readme" + RELOC/doc/lualatex/plantuml/example-class-relations--latex.tex + RELOC/doc/lualatex/plantuml/example-class-relations--svg.png + RELOC/doc/lualatex/plantuml/example-class-relations--svg.tex + RELOC/doc/lualatex/plantuml/example-component-diagram.tex + RELOC/doc/lualatex/plantuml/example-minimal.png + RELOC/doc/lualatex/plantuml/example-minimal.tex + RELOC/doc/lualatex/plantuml/plantuml.pdf details="Package documentation" + RELOC/doc/lualatex/plantuml/release.sh +runfiles size=2 + RELOC/tex/lualatex/plantuml/plantuml.lua + RELOC/tex/lualatex/plantuml/plantuml.sty +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-license lppl1.3c +catalogue-topics uml luatex use-lua +catalogue-version 0.3.1 + +name plari +category Package +revision 15878 +shortdesc Typesetting stageplay scripts +relocated 1 +longdesc Plari (the name comes from the Finnish usage for the working +longdesc copy of a play) is a report-alike class, without section +longdesc headings, and with paragraphs vertically separated rather than +longdesc indented. +containersize 2336 +containerchecksum 86e91b884be131df6b4da6441a9fbeb872e0f345eed49005ef74d58eb3ef8a2724da98cc810a51b58d45047d77545ac6b9512612b5946ba29d443dd14bbdb263 +doccontainersize 136708 +doccontainerchecksum befa46f8ef7c4c89e18339ececbd53341aa50d6bfc8927001d17395cba42db0f0ca3414619c746c78e4f5f4f9cb1f6db813defc7b89299f5b29e9c0866852c82 +docfiles size=41 + RELOC/doc/latex/plari/COPYING + RELOC/doc/latex/plari/README details="Readme" + RELOC/doc/latex/plari/plari.pdf details="Package documentation" +srccontainersize 3588 +srccontainerchecksum e03c7b5fe7406c447509d4ae841c13c579c608564f45b83e1fddb066248b53e46f83a2760d745db1a5acae08dff493686d667f0328c9c3d467df6a92d8304a5a +srcfiles size=4 + RELOC/source/latex/plari/Makefile + RELOC/source/latex/plari/plari.dtx + RELOC/source/latex/plari/plari.ins +runfiles size=1 + RELOC/tex/latex/plari/plari.cls +catalogue-also sides +catalogue-ctan /macros/latex/contrib/plari +catalogue-license gpl +catalogue-topics drama-script + +name plates +category Package +revision 15878 +shortdesc Arrange for "plates" sections of documents +relocated 1 +longdesc The plates package provides a simple facility for inserting +longdesc colour figures in a document when they should be gathered and +longdesc printed together as in a book's section of colour plates. The +longdesc package provides a plate environment that takes the place of +longdesc the figure environment for such colour images. +containersize 6048 +containerchecksum f662191f6a053585bbcf5a71635b6f63ee5d713086bd24f3c879f73868b5ab42b6434860b68408fcade7b7ba448845d1dd6a5be12b10bc25be8032b9dcef9615 +doccontainersize 81112 +doccontainerchecksum 12779b285951d5e3d7a0f9d3ded736d5368291b678fd884262908897c4e32bd5fdbdd6bb4eeea59bf922555d5dc8daf6b0e06a174fba2605d4357dcf1f09c6d9 +docfiles size=26 + RELOC/doc/latex/plates/README details="Readme" + RELOC/doc/latex/plates/plates.pdf details="Package documentation" + RELOC/doc/latex/plates/plates.tex +runfiles size=5 + RELOC/tex/latex/plates/endplate.sty + RELOC/tex/latex/plates/plates.sty +catalogue-ctan /macros/latex/contrib/plates +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 0.1 + +name platex +category Package +revision 58842 +shortdesc pLaTeX2e and miscellaneous macros for pTeX +longdesc The bundle provides pLaTeX2e and miscellaneous macros for pTeX +longdesc and e-pTeX. This is a community edition forked from the +longdesc original ASCII edition (ptex-texmf-2.5). +depend atbegshi +depend atveryend +depend babel +depend cm +depend everyshi +depend firstaid +depend hyphen-base +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-base-dev +depend latex-firstaid-dev +depend latex-fonts +depend platex.ARCH +depend ptex +depend ptex-fonts +depend tex-ini-files +depend unicode-data +execute AddFormat name=platex engine=eptex options="*platex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,ptex-fonts,latex +execute AddFormat name=platex-dev engine=eptex options="*platex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,ptex-fonts,l3kernel,latex-base-dev,latex-firstaid-dev +containersize 41476 +containerchecksum 3e1dd06dc528d3290a97166bc9f8611140b5a25432a046e38f54a916d14ee926639965a2a7f99b85133c4a622d2fb7b7c65391d87977c7dc18eca71fe0f79f1d +doccontainersize 1489476 +doccontainerchecksum 06a4e0ad43067a256bae884fe543a0b2996b509db56642c37b3a2d55a89fa230342358c7f31b13ee253a07f1af8e02c918e104684332b0455af3f4927b3e18fc +docfiles size=381 + texmf-dist/doc/man/man1/platex.1 + texmf-dist/doc/man/man1/platex.man1.pdf + texmf-dist/doc/platex/base/LICENSE + texmf-dist/doc/platex/base/README.md details="Readme" + texmf-dist/doc/platex/base/exppl2e.pdf + texmf-dist/doc/platex/base/platex-en.pdf details="Package documentation" + texmf-dist/doc/platex/base/platex.pdf details="Package documentation" language="ja" + texmf-dist/doc/platex/base/platexrelease.pdf + texmf-dist/doc/platex/base/pldoc.pdf +srccontainersize 136884 +srccontainerchecksum 9acc5cd2012c23541c450fe903a3e3070949ff0bf8b43a5bfbc1a899b79ac75b121c7f13435f0fba13582d44d883bc14d4d26760fcc770c15020f0efa102b898 +srcfiles size=211 + texmf-dist/source/platex/base/Makefile + texmf-dist/source/platex/base/jclasses.dtx + texmf-dist/source/platex/base/jltxdoc.dtx + texmf-dist/source/platex/base/kinsoku.dtx + texmf-dist/source/platex/base/pl209.dtx + texmf-dist/source/platex/base/pl209.ins + texmf-dist/source/platex/base/platex.dtx + texmf-dist/source/platex/base/platexrelease.dtx + texmf-dist/source/platex/base/platexrelease.ins + texmf-dist/source/platex/base/plcls.ins + texmf-dist/source/platex/base/plcore.dtx + texmf-dist/source/platex/base/pldocs.ins + texmf-dist/source/platex/base/plexpl3.dtx + texmf-dist/source/platex/base/plext.dtx + texmf-dist/source/platex/base/plfmt.ins + texmf-dist/source/platex/base/plfonts.dtx + texmf-dist/source/platex/base/plnews01.tex + texmf-dist/source/platex/base/plnews02.tex + texmf-dist/source/platex/base/plnews03.tex + texmf-dist/source/platex/base/plnews04.tex + texmf-dist/source/platex/base/plnews05.tex + texmf-dist/source/platex/base/plnews06.tex + texmf-dist/source/platex/base/plnews07.tex + texmf-dist/source/platex/base/plnews08.tex + texmf-dist/source/platex/base/plnewsc01.tex + texmf-dist/source/platex/base/plnewsc02.tex + texmf-dist/source/platex/base/plnewsc03.tex + texmf-dist/source/platex/base/plnewsc04.tex + texmf-dist/source/platex/base/plnewsc05.tex + texmf-dist/source/platex/base/plnewsc06.tex + texmf-dist/source/platex/base/plnewsc07.tex + texmf-dist/source/platex/base/plnewsc08.tex + texmf-dist/source/platex/base/plnewsc09.tex + texmf-dist/source/platex/base/plnewsc10.tex + texmf-dist/source/platex/base/plnewsc11.tex + texmf-dist/source/platex/base/plnewsc12.tex + texmf-dist/source/platex/base/plnewsc13.tex + texmf-dist/source/platex/base/plnewsc14.tex + texmf-dist/source/platex/base/plnewsc15.tex + texmf-dist/source/platex/base/plvers.dtx +runfiles size=166 + texmf-dist/tex/platex/base/exppl2e.sty + texmf-dist/tex/platex/base/jarticle.cls + texmf-dist/tex/platex/base/jarticle.sty + texmf-dist/tex/platex/base/jbk10.clo + texmf-dist/tex/platex/base/jbk11.clo + texmf-dist/tex/platex/base/jbk12.clo + texmf-dist/tex/platex/base/jbook.cls + texmf-dist/tex/platex/base/jbook.sty + texmf-dist/tex/platex/base/jltxdoc.cls + texmf-dist/tex/platex/base/jreport.cls + texmf-dist/tex/platex/base/jreport.sty + texmf-dist/tex/platex/base/jsize10.clo + texmf-dist/tex/platex/base/jsize11.clo + texmf-dist/tex/platex/base/jsize12.clo + texmf-dist/tex/platex/base/jt1gt.fd + texmf-dist/tex/platex/base/jt1mc.fd + texmf-dist/tex/platex/base/jy1gt.fd + texmf-dist/tex/platex/base/jy1mc.fd + texmf-dist/tex/platex/base/kinsoku.tex + texmf-dist/tex/platex/base/oldpfont.sty + texmf-dist/tex/platex/base/pfltrace.sty + texmf-dist/tex/platex/base/pl209.def + texmf-dist/tex/platex/base/platex.ltx + texmf-dist/tex/platex/base/platexrelease.sty + texmf-dist/tex/platex/base/plcore.ltx + texmf-dist/tex/platex/base/pldefs.ltx + texmf-dist/tex/platex/base/plexpl3.ltx + texmf-dist/tex/platex/base/plexpl3.sty + texmf-dist/tex/platex/base/plext.sty + texmf-dist/tex/platex/base/plnews.cls + texmf-dist/tex/platex/base/ptrace.sty + texmf-dist/tex/platex/base/tarticle.cls + texmf-dist/tex/platex/base/tarticle.sty + texmf-dist/tex/platex/base/tbk10.clo + texmf-dist/tex/platex/base/tbk11.clo + texmf-dist/tex/platex/base/tbk12.clo + texmf-dist/tex/platex/base/tbook.cls + texmf-dist/tex/platex/base/tbook.sty + texmf-dist/tex/platex/base/treport.cls + texmf-dist/tex/platex/base/treport.sty + texmf-dist/tex/platex/base/tsize10.clo + texmf-dist/tex/platex/base/tsize11.clo + texmf-dist/tex/platex/base/tsize12.clo + texmf-dist/tex/platex/config/platex.ini +catalogue-contact-repository https://github.com/texjporg/platex +catalogue-ctan /language/japanese/platex +catalogue-license bsd3 +catalogue-topics format class japanese + +name platex-tools +category Package +revision 57729 +shortdesc pLaTeX standard tools bundle +relocated 1 +longdesc This bundle is an extended version of the latex-tools bundle +longdesc developed by the LaTeX team, mainly intended to support +longdesc pLaTeX2e and upLaTeX2e. Currently patches for the latex-tools +longdesc bundle and Martin Schroder's ms bundle are included. +containersize 8188 +containerchecksum 5e5352dd6813ed5f90d1f9f1efd4e4f8bc53e6b6f0a932f2d8d5715cfa0f7b6df96320381daff0728e64f4df5239aebf65c2fd7796310d080ed857875732e7d9 +doccontainersize 573912 +doccontainerchecksum 0834655e25b8684ad5e51dca1e128a07da38ce9b012205063feb7a54aec2412d706cb4560a445cc80734493c84b54d86b912bf659a72baa642f26174e0063875 +docfiles size=163 + RELOC/doc/latex/platex-tools/LICENSE + RELOC/doc/latex/platex-tools/README.md details="Readme" + RELOC/doc/latex/platex-tools/plarray.pdf details="Documentation of the plarray package" language="ja" + RELOC/doc/latex/platex-tools/plarray.tex + RELOC/doc/latex/platex-tools/pldocverb.pdf + RELOC/doc/latex/platex-tools/pldocverb.tex + RELOC/doc/latex/platex-tools/plextarray.pdf details="Documentation of the plextarray package" language="ja" + RELOC/doc/latex/platex-tools/plextarray.tex + RELOC/doc/latex/platex-tools/plextcolortbl.pdf + RELOC/doc/latex/platex-tools/plextcolortbl.tex + RELOC/doc/latex/platex-tools/plextdelarray.pdf details="Documentation of the plextdelarray package" language="ja" + RELOC/doc/latex/platex-tools/plextdelarray.tex + RELOC/doc/latex/platex-tools/pxatbegshi.pdf details="Documentation of the pxatbegshi package" language="ja" + RELOC/doc/latex/platex-tools/pxatbegshi.tex + RELOC/doc/latex/platex-tools/pxeverysel.pdf details="Documentation of the pxeverysel package" language="ja" + RELOC/doc/latex/platex-tools/pxeverysel.tex + RELOC/doc/latex/platex-tools/pxeveryshi.pdf details="Documentation of the pxeveryshi package" language="ja" + RELOC/doc/latex/platex-tools/pxeveryshi.tex + RELOC/doc/latex/platex-tools/pxftnright.pdf details="Documentation of the pxftnright package" language="ja" + RELOC/doc/latex/platex-tools/pxftnright.tex + RELOC/doc/latex/platex-tools/pxmulticol.pdf details="Documentation of the pxxspace package" language="ja" + RELOC/doc/latex/platex-tools/pxmulticol.tex + RELOC/doc/latex/platex-tools/pxxspace.pdf details="Documentation of the pxmulticol package" language="ja" + RELOC/doc/latex/platex-tools/pxxspace.tex +runfiles size=13 + RELOC/tex/latex/platex-tools/plarray.sty + RELOC/tex/latex/platex-tools/pldocverb.sty + RELOC/tex/latex/platex-tools/plextarray.sty + RELOC/tex/latex/platex-tools/plextcolortbl.sty + RELOC/tex/latex/platex-tools/plextdelarray.sty + RELOC/tex/latex/platex-tools/pxatbegshi.sty + RELOC/tex/latex/platex-tools/pxeverysel.sty + RELOC/tex/latex/platex-tools/pxeveryshi.sty + RELOC/tex/latex/platex-tools/pxftnright.sty + RELOC/tex/latex/platex-tools/pxmulticol.sty + RELOC/tex/latex/platex-tools/pxxspace.sty +catalogue-contact-repository https://github.com/aminophen/platex-tools +catalogue-ctan /language/japanese/platex-tools +catalogue-license bsd3 +catalogue-topics japanese collection + +name platex.aarch64-linux +category Package +revision 52800 +shortdesc aarch64-linux files of platex +containersize 344 +containerchecksum 23bfb8379a325c8d3d28481bd988c58c87b66805281a70139f98fb25319f0901af9f383bb7d2a3787bb722c4f1b3f94f9280a89da0f1f58aab3974c114f61687 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/platex + bin/aarch64-linux/platex-dev + +name platex.amd64-freebsd +category Package +revision 52800 +shortdesc amd64-freebsd files of platex +containersize 344 +containerchecksum ec4e199d8d8900db4d6f957aaa87272e71ddd56c2450e63016f44da3091226b1bafaedd819512a10abb5dc84bddc3152a283ee1bcd7755d75f6fb164a284cccd +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/platex + bin/amd64-freebsd/platex-dev + +name platex.amd64-netbsd +category Package +revision 52800 +shortdesc amd64-netbsd files of platex +containersize 340 +containerchecksum eb40dda8c1355421ee30fcedb0296bc31a3417163740149ea6586d389c01041b79d1c476750314af57051b6af6830b690e7917539f523683a4914abc2bff677c +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/platex + bin/amd64-netbsd/platex-dev + +name platex.armhf-linux +category Package +revision 52800 +shortdesc armhf-linux files of platex +containersize 344 +containerchecksum b5bdf7b068c3f1698ebd0d59457aa3cf20e27ae4db0221780606487cc12787a5399b7e5a1d41394644b65587badf55f2aac0b826c2154b6285ae6674e4f044ee +binfiles arch=armhf-linux size=2 + bin/armhf-linux/platex + bin/armhf-linux/platex-dev + +name platex.i386-cygwin +category Package +revision 52812 +shortdesc i386-cygwin files of platex +containersize 344 +containerchecksum c22e2d0884db433d582fbc4290975aca8e88f4d9c29b7bf74a55537668a0624370a49c908a794c9fe36b020adb09b650bbb0fecd2a5d9544f8bb4727f9205d1e +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/platex + bin/i386-cygwin/platex-dev + +name platex.i386-freebsd +category Package +revision 52800 +shortdesc i386-freebsd files of platex +containersize 340 +containerchecksum ee33cdfa4968b24eb29bd353b871b64ecda02edc2587e4ef0731d74878d62afaab090b85a388a9fa00c89da609a2c8e7ed0a4fb03d0d8defd4a505727295e6f3 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/platex + bin/i386-freebsd/platex-dev + +name platex.i386-linux +category Package +revision 52800 +shortdesc i386-linux files of platex +containersize 344 +containerchecksum da24d10103f3e8d68338bff30025026b2549267f5d00eeba06c935caeeb065d2731548ace01c8057a871f8deecac178b24d5732b0a5f6bcde3467d8c486ce7c5 +binfiles arch=i386-linux size=2 + bin/i386-linux/platex + bin/i386-linux/platex-dev + +name platex.i386-netbsd +category Package +revision 52800 +shortdesc i386-netbsd files of platex +containersize 344 +containerchecksum 63baf155eecd76d2dacf2d6c007b8e81a5895c88e1378dbfd12bb12d475a439f212ea9fe5eb8c5ef599e4badb9710b328161e6c3bf7b4edc394dd847f63e6c4b +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/platex + bin/i386-netbsd/platex-dev + +name platex.i386-solaris +category Package +revision 52800 +shortdesc i386-solaris files of platex +containersize 344 +containerchecksum 523642eec6d9bcfb105668e64c8f5a06be814db8423c10e61bbc28790019a3b3d8c04220b0b1711d56c9a93e22289361643037aa52052117e107802609532716 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/platex + bin/i386-solaris/platex-dev + +name platex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of platex +containersize 340 +containerchecksum 3a3cdfb060bf7486c378d56710bd6785fe8414d9c37eb224ceb25ac94e52fd57ff29206e9d19c3cb67b38df3af06fcb58041ec3058ee4eda080ee51e9d60725e +binfiles arch=universal-darwin size=2 + bin/universal-darwin/platex + bin/universal-darwin/platex-dev + +name platex.win32 +category Package +revision 57883 +shortdesc win32 files of platex +containersize 884 +containerchecksum 6d0996a722648e84cf5f535612030dae9db829ce8ddae17f5560b9aa2f9426ae5195fe3073213e3d7a658a2b46339aff8f7fe88e0feff947c780b0eb1b99cf6e +binfiles arch=win32 size=2 + bin/win32/platex-dev.exe + bin/win32/platex.exe + +name platex.x86_64-cygwin +category Package +revision 52812 +shortdesc x86_64-cygwin files of platex +containersize 348 +containerchecksum 474ffb158c7237e4ac81e04de4eeb35715b312bb0306b4e1493d3982f24b7b0be59552d4aed26c6c3f43701b32aac0f7263901b216ebb6efb5c5afcd5215660a +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/platex + bin/x86_64-cygwin/platex-dev + +name platex.x86_64-darwinlegacy +category Package +revision 52800 +shortdesc x86_64-darwinlegacy files of platex +containersize 352 +containerchecksum 5fa578115ddc58c45a519400b746e51f811583ec7bb52b39dc78795cbe5e8dbda3ac4431ac91805daa24691566882bf6e0732427694dbfac0d3ecea12b88ac34 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/platex + bin/x86_64-darwinlegacy/platex-dev + +name platex.x86_64-linux +category Package +revision 52800 +shortdesc x86_64-linux files of platex +containersize 340 +containerchecksum e700a5323b3f1986829f62b1836b23f2fcacc78d3b8847632474d34de501ec8023469b8e15c5c25a634606a34796a292aad41d80d873c7389ff80cded74c43b9 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/platex + bin/x86_64-linux/platex-dev + +name platex.x86_64-linuxmusl +category Package +revision 52800 +shortdesc x86_64-linuxmusl files of platex +containersize 344 +containerchecksum 7c3612e5765d249cbebf37c52bd83c4829e2c595e96a662700ac415d272a87613b72f1f3963ee125e4828f9c84ad479214b45df813d1936a4e74569c4c8b3838 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/platex + bin/x86_64-linuxmusl/platex-dev + +name platex.x86_64-solaris +category Package +revision 52800 +shortdesc x86_64-solaris files of platex +containersize 348 +containerchecksum 9ae28d458b602d0569152cd18a3dc8b030cf398ec7fa11d2aedb9c6cbaeead79626874d2a27a7e4ace5927d5ae9ce019fbc700fbf899c7fea0181bef37d76f38 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/platex + bin/x86_64-solaris/platex-dev + +name platexcheat +category Package +revision 49557 +shortdesc A LaTeX cheat sheet, in Japanese +relocated 1 +longdesc This is a translation to Japanese of Winston Chang's LaTeX +longdesc cheat sheet (a reference sheet for writing scientific papers). +longdesc It has been adapted to Japanese standards using pLaTeX, and +longdesc also attached additional information of "standard LaTeX" +longdesc (especially about math-mode). +containersize 568 +containerchecksum 1409c7311eaa82811236d869b04e9f55fa2a96804faacef4820072a4813055e70ecce0e8c155ec19016f1ed4e57bebe0b362c5457d1258f317a40fc475d42aff +doccontainersize 531356 +doccontainerchecksum bfe47b947a915099de15e5519a3aff201b327c31d29c1966d4fd3e9b73581792d918b461ed1944aaf5e8a5eb7956c38579a3fd972f189b1e3abb903c7c904cbe +docfiles size=151 + RELOC/doc/latex/platexcheat/LICENSE + RELOC/doc/latex/platexcheat/README.md details="Readme" + RELOC/doc/latex/platexcheat/platexsheet-jsclasses.pdf + RELOC/doc/latex/platexcheat/platexsheet-jsclasses.tex + RELOC/doc/latex/platexcheat/platexsheet.pdf details="The LaTeX cheat sheet" language="ja" + RELOC/doc/latex/platexcheat/platexsheet.tex + RELOC/doc/latex/platexcheat/sample-jsclasses.pdf details="Example of use" language="ja" + RELOC/doc/latex/platexcheat/sample-jsclasses.tex + RELOC/doc/latex/platexcheat/sample.pdf + RELOC/doc/latex/platexcheat/sample.tex +catalogue-contact-repository https://github.com/wtsnjp/platexcheat +catalogue-ctan /info/latexcheat/platexcheat +catalogue-license mit +catalogue-topics tut-cheat +catalogue-version 3.1 + +name plautopatch +category Package +revision 57731 +shortdesc Automated patches for pLaTeX/upLaTeX +relocated 1 +longdesc Japanese pLaTeX/upLaTeX formats and packages often conflict +longdesc with other LaTeX packages which are unaware of pLaTeX/upLaTeX. +longdesc In the worst case, such packages throw a fatal error or end up +longdesc with a wrong output. The goal of this package is that there +longdesc should be no need to worry about such incompatibilities, +longdesc because specific patches are loaded automatically whenever +longdesc necessary. This helps not only to simplify source files, but +longdesc also to make the appearance of working pLaTeX/upLaTeX sources +longdesc similar to those of ordinary LaTeX ones. This package depends +longdesc on the filehook package written by Martin Scharrer. +containersize 6956 +containerchecksum df8d83e2c12167d32d114c61737bd4b834ddd3f9851c238ce1b07c1aff3469ab2bbd7eb6b90047b75ff36a26ed4ba53c97782dd7462bd559615075cd38517c0e +doccontainersize 127732 +doccontainerchecksum afd9185a9bc5a7f403b24bc948da9ac6939efb0ccf2c9063950297183c3dd1db08de43ff98824e66b0c497a2fafc3689678dffafc67ef92bf035a1a0a2066a4f +docfiles size=39 + RELOC/doc/latex/plautopatch/LICENSE + RELOC/doc/latex/plautopatch/README.md details="Readme" + RELOC/doc/latex/plautopatch/plautopatch-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/plautopatch/plautopatch-ja.tex + RELOC/doc/latex/plautopatch/plautopatch.pdf details="Package documentation (English)" + RELOC/doc/latex/plautopatch/plautopatch.tex +runfiles size=10 + RELOC/tex/latex/plautopatch/plarydshln.sty + RELOC/tex/latex/plautopatch/plautopatch.sty + RELOC/tex/latex/plautopatch/plcollcell.sty + RELOC/tex/latex/plautopatch/plextarydshln.sty + RELOC/tex/latex/plautopatch/plsiunitx.sty + RELOC/tex/latex/plautopatch/pxpgfrcs.sty + RELOC/tex/latex/plautopatch/pxstfloats.sty +catalogue-contact-repository https://github.com/aminophen/plautopatch +catalogue-ctan /language/japanese/plautopatch +catalogue-license bsd3 +catalogue-topics japanese debug-supp bugfix +catalogue-version 0.9n + +name play +category Package +revision 15878 +shortdesc Typeset drama using LaTeX +relocated 1 +longdesc A class and style file that supports the typesetting of plays, +longdesc including options for line numbering. +containersize 2196 +containerchecksum 040468367a783e7bc49dd4b51e22a72c41ff2985a52e2551b3be6780767e17c8d11178f097cc66f5683033eb03cc2ebc2c08c1f4477daa7b8f9e22d8a40dd385 +doccontainersize 552 +doccontainerchecksum 97c882b12ab350c5b0fe066e04ea7c2c136b1dc7ca29e51d8f89ed695769c9ef1ed255c3c109ff71838bde91d25167a398230cd25809f1374ca306fbd9ae68fa +docfiles size=1 + RELOC/doc/latex/play/README details="Readme" +srccontainersize 4972 +srccontainerchecksum 3bf9b5449611ce72af26a68c99a7ea813c7eebce59336d5c7bf65da1a870e6c26238f803ba8e07ee2a084826e6bee7ec819a919e7abbbbf11946f611cab17a03 +srcfiles size=4 + RELOC/source/latex/play/play.dtx + RELOC/source/latex/play/play.ins +runfiles size=3 + RELOC/tex/latex/play/play.cls + RELOC/tex/latex/play/play.sty +catalogue-also xmlplay +catalogue-ctan /macros/latex/contrib/play +catalogue-license lppl +catalogue-topics drama-script + +name playfair +category Package +revision 56005 +shortdesc Playfair Display fonts with LaTeX support +relocated 1 +longdesc This package provides the PlayFairDisplay family of fonts, +longdesc designed by Claus Eggers Sorensen, for use with LaTeX, +longdesc pdfLaTeX, XeLaTeX and LuaLaTeX. PlayFairDisplay is well suited +longdesc for titling and headlines. It has an extra large x-height and +longdesc short descenders. It can be set with no leading if space is +longdesc tight, for instance in news headlines, or for stylistic effect +longdesc in titles. Capitals are extra short, and only very slightly +longdesc heavier than the lowercase characters. This helps achieve a +longdesc more even typographical colour when typesetting proper nouns +longdesc and initialisms. +execute addMap PlayfairDisplay.map +containersize 1679544 +containerchecksum bd9c88074757e0b34fc569e3f383c6b8045216ffe5da4ec897d0c28365063d7a66511ae190017c24dbea92782be05735f62a0684909ca76731a30f6d9855fe5b +doccontainersize 251112 +doccontainerchecksum 03dfa23f74a3f1f23b4bd4d28ff6580e248074e07f2fc515db3fd917bd10f998886e3ef987e934b8fee7be5467b9f8d9810e9ccb6844af9bf67b8726ddff9773 +docfiles size=67 + RELOC/doc/fonts/playfair/OFL.txt + RELOC/doc/fonts/playfair/Playfair_Display_A4_specimen.pdf + RELOC/doc/fonts/playfair/README details="Readme" + RELOC/doc/fonts/playfair/playfair-samples.pdf details="Font samples" + RELOC/doc/fonts/playfair/playfair-samples.tex +runfiles size=1176 + RELOC/fonts/enc/dvips/playfair/plyfr_3udzka.enc + RELOC/fonts/enc/dvips/playfair/plyfr_4avjba.enc + RELOC/fonts/enc/dvips/playfair/plyfr_4srszf.enc + RELOC/fonts/enc/dvips/playfair/plyfr_b7y4dd.enc + RELOC/fonts/enc/dvips/playfair/plyfr_chpa4l.enc + RELOC/fonts/enc/dvips/playfair/plyfr_eb5cw4.enc + RELOC/fonts/enc/dvips/playfair/plyfr_fmyrgi.enc + RELOC/fonts/enc/dvips/playfair/plyfr_gb53zg.enc + RELOC/fonts/enc/dvips/playfair/plyfr_h54wtc.enc + RELOC/fonts/enc/dvips/playfair/plyfr_he4k5f.enc + RELOC/fonts/enc/dvips/playfair/plyfr_j7rmxo.enc + RELOC/fonts/enc/dvips/playfair/plyfr_jk5hji.enc + RELOC/fonts/enc/dvips/playfair/plyfr_jowrio.enc + RELOC/fonts/enc/dvips/playfair/plyfr_kdf3ua.enc + RELOC/fonts/enc/dvips/playfair/plyfr_kzslp6.enc + RELOC/fonts/enc/dvips/playfair/plyfr_me7kyw.enc + RELOC/fonts/enc/dvips/playfair/plyfr_q6cjrr.enc + RELOC/fonts/enc/dvips/playfair/plyfr_qfnkfj.enc + RELOC/fonts/enc/dvips/playfair/plyfr_vw64ij.enc + RELOC/fonts/enc/dvips/playfair/plyfr_ygz7pk.enc + RELOC/fonts/map/dvips/playfair/PlayfairDisplay.map + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Black.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-BlackItalic.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Bold.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-BoldItalic.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Italic.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Regular.otf + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Black-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlyfrDisplay-Regular-sup-t1.tfm + RELOC/fonts/type1/public/playfair/PlyfrDisplay-Black.pfb + RELOC/fonts/type1/public/playfair/PlyfrDisplay-BlackItalic.pfb + RELOC/fonts/type1/public/playfair/PlyfrDisplay-Bold.pfb + RELOC/fonts/type1/public/playfair/PlyfrDisplay-BoldItalic.pfb + RELOC/fonts/type1/public/playfair/PlyfrDisplay-Italic.pfb + RELOC/fonts/type1/public/playfair/PlyfrDisplay-Regular.pfb + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Black-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Bold-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Italic-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlyfrDisplay-Regular-sup-t1.vf + RELOC/tex/latex/playfair/LY1PlyfrDisplay-LF.fd + RELOC/tex/latex/playfair/LY1PlyfrDisplay-OsF.fd + RELOC/tex/latex/playfair/LY1PlyfrDisplay-Sup.fd + RELOC/tex/latex/playfair/OT1PlyfrDisplay-LF.fd + RELOC/tex/latex/playfair/OT1PlyfrDisplay-OsF.fd + RELOC/tex/latex/playfair/OT1PlyfrDisplay-Sup.fd + RELOC/tex/latex/playfair/PlayfairDisplay.sty + RELOC/tex/latex/playfair/T1PlyfrDisplay-LF.fd + RELOC/tex/latex/playfair/T1PlyfrDisplay-OsF.fd + RELOC/tex/latex/playfair/T1PlyfrDisplay-Sup.fd + RELOC/tex/latex/playfair/TS1PlyfrDisplay-LF.fd + RELOC/tex/latex/playfair/TS1PlyfrDisplay-OsF.fd +catalogue-ctan /fonts/playfair +catalogue-license ofl lppl +catalogue-topics font font-display font-body font-serif font-proportional font-otf font-type1 font-supp font-t1enc + +name plex +category Package +revision 54512 +shortdesc Support for IBM Plex fonts +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the IBM Plex families of fonts. Serif, Sans and +longdesc Mono families are available in eight weights: Regular, Light, +longdesc ExtraLight, Thin, Bold, Text, Medium and SemiBold (with +longdesc corresponding italics). +execute addMap plex.map +containersize 10534068 +containerchecksum 4d23f567356527629e7eb6cec23287c1e55db3afea71faf8ee86a4288378fe2ee7fee6d34c311f5f5e3b66300892664013752f2f0fb802d22ecc76980c27da87 +doccontainersize 336496 +doccontainerchecksum 1ea960e85e33c4739da58cc8a2157672daa06dc7257c23c3339673cb26eee549bad49809330a05867c24759fa907721aaaa48e9d43fb6118e7b465caf4532090 +docfiles size=86 + RELOC/doc/fonts/plex/LICENSE.txt + RELOC/doc/fonts/plex/README details="Readme" + RELOC/doc/fonts/plex/plex-samples.pdf details="Font samples" + RELOC/doc/fonts/plex/plex-samples.tex +runfiles size=6148 + RELOC/fonts/enc/dvips/plex/plx_2hzyxp.enc + RELOC/fonts/enc/dvips/plex/plx_4hck4s.enc + RELOC/fonts/enc/dvips/plex/plx_6tuc4c.enc + RELOC/fonts/enc/dvips/plex/plx_dzqm4q.enc + RELOC/fonts/enc/dvips/plex/plx_errukl.enc + RELOC/fonts/enc/dvips/plex/plx_eywvcp.enc + RELOC/fonts/enc/dvips/plex/plx_h3p6bl.enc + RELOC/fonts/enc/dvips/plex/plx_hrol52.enc + RELOC/fonts/enc/dvips/plex/plx_imandq.enc + RELOC/fonts/enc/dvips/plex/plx_lfnaaq.enc + RELOC/fonts/enc/dvips/plex/plx_lxmhqh.enc + RELOC/fonts/enc/dvips/plex/plx_mnk4s5.enc + RELOC/fonts/enc/dvips/plex/plx_n2etni.enc + RELOC/fonts/enc/dvips/plex/plx_nzsfse.enc + RELOC/fonts/enc/dvips/plex/plx_ojqnwd.enc + RELOC/fonts/enc/dvips/plex/plx_oqvkyq.enc + RELOC/fonts/enc/dvips/plex/plx_qdoxri.enc + RELOC/fonts/enc/dvips/plex/plx_sebx3h.enc + RELOC/fonts/enc/dvips/plex/plx_tibbib.enc + RELOC/fonts/enc/dvips/plex/plx_toaz2j.enc + RELOC/fonts/enc/dvips/plex/plx_umrhwx.enc + RELOC/fonts/enc/dvips/plex/plx_vf6q7q.enc + RELOC/fonts/enc/dvips/plex/plx_wot2a6.enc + RELOC/fonts/enc/dvips/plex/plx_x4zmfh.enc + RELOC/fonts/enc/dvips/plex/plx_xl2q4z.enc + RELOC/fonts/map/dvips/plex/plex.map + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-ThinItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-ThinItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-ThinItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-ThinItalic.otf + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ts1.tfm + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif.pfb + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-ts1.vf + RELOC/tex/latex/plex/LGRIBMPlexSans-Sup.fd + RELOC/tex/latex/plex/LGRIBMPlexSans-TLF.fd + RELOC/tex/latex/plex/LY1IBMPlexMono-Sup.fd + RELOC/tex/latex/plex/LY1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/LY1IBMPlexSans-Sup.fd + RELOC/tex/latex/plex/LY1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/LY1IBMPlexSerif-Sup.fd + RELOC/tex/latex/plex/LY1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/OT1IBMPlexMono-Sup.fd + RELOC/tex/latex/plex/OT1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/OT1IBMPlexSans-Sup.fd + RELOC/tex/latex/plex/OT1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/OT1IBMPlexSerif-Sup.fd + RELOC/tex/latex/plex/OT1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/T1IBMPlexMono-Sup.fd + RELOC/tex/latex/plex/T1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/T1IBMPlexSans-Sup.fd + RELOC/tex/latex/plex/T1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/T1IBMPlexSerif-Sup.fd + RELOC/tex/latex/plex/T1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/TS1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/TS1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/TS1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/plex-mono.sty + RELOC/tex/latex/plex/plex-sans.sty + RELOC/tex/latex/plex/plex-serif.sty +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-license ofl lppl +catalogue-topics font font-proportional font-body font-mono font-sans font-type1 font-otf font-t1enc + +name plex-otf +category Package +revision 47562 +shortdesc Support for the OpenType font IBM Plex +relocated 1 +longdesc This package supports the free otf fonts from the IBM Plex +longdesc project which are available from GitHub or already part of your +longdesc system (Windows/Linux/...). This package supports only XeLaTeX +longdesc or LuaLaTeX; for pdfLaTeX use plex-mono.sty, plex-sans.sty, +longdesc and/or plex-serif.sty from the plex package. IBM Plex has no +longdesc math symbols. You will have to use one of the existing math +longdesc fonts if you need them. +containersize 3544 +containerchecksum 07e49e5dcbef60efd3e3050259f10b75bfbb83128412a1e60a31c2f17983ec73d055e5f6e117ec2673f9f0e5db716471fefb312be50cc4475761aa6ad895e9da +doccontainersize 545036 +doccontainerchecksum 4af950e1a3a384a1c738c6fa1bad629010ee2718840094500976b6883c2e3120cd070631463f90610c60877c0dea771c9c7e4f8f8c091aaf1f29b15b8400de96 +docfiles size=197 + RELOC/doc/fonts/plex-otf/Changes + RELOC/doc/fonts/plex-otf/Examples/plex-otf-1.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-10.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-11.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-2.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-3.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-4.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-5.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-6.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-7.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-8.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-9.tex + RELOC/doc/fonts/plex-otf/README.md details="Readme" + RELOC/doc/fonts/plex-otf/plex-otf-doc.bib + RELOC/doc/fonts/plex-otf/plex-otf-doc.fonts + RELOC/doc/fonts/plex-otf/plex-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/plex-otf/plex-otf-doc.tex +runfiles size=6 + RELOC/tex/latex/plex-otf/plex-otf.sty +catalogue-also plex +catalogue-ctan /fonts/plex-otf +catalogue-license lppl1.3 +catalogue-topics font-serif font-sans font-proportional font-mono font-otf +catalogue-version 0.07a + +name plimsoll +category Package +revision 56605 +shortdesc Fonts with the Plimsoll symbol and LaTeX support +relocated 1 +longdesc This package provides access to the Plimsoll symbol for use +longdesc with LaTeX. The Plimsoll symbol is sometimes used in chemistry +longdesc for denoting standard states and values. The LaTeX package +longdesc provides access to this notation as well. The syntax for +longdesc denoting the standard state is the same as suggested in the +longdesc Comprehensive LaTeX Symbol List for emulating the Plimsoll +longdesc mark. +execute addMap plimsoll.map +containersize 4692 +containerchecksum c0b44cf022ca470767d296af1ad80b2d5ede92adb22635f7ef34b9fa81ec523f769dfbfa6a78005a46bd9a4886507fa7b3a4f761bcb8f686dbf736e3ad92676e +doccontainersize 219292 +doccontainerchecksum 9ee880e89387986e228f357f59981b18fa8565d60e88d6f1b15c4109f9f7f20108c447fb995f0edaf64723ac37635b56cb5d097e93e0374a0f64adda4215eed5 +docfiles size=62 + RELOC/doc/fonts/plimsoll/LICENSE + RELOC/doc/fonts/plimsoll/README details="Readme" + RELOC/doc/fonts/plimsoll/plimsoll.pdf details="Package documentation" + RELOC/doc/fonts/plimsoll/plimsoll.tex +srccontainersize 2364 +srccontainerchecksum 2967c9b53daaeba02405da837050a53c69b725da8daeba1d6a9c58dbef0387628aa6dceb07815c5bb0d2cc37c6a1b66f5c64037ad33d74e1179dc3fc0f0431a5 +srcfiles size=2 + RELOC/source/fonts/plimsoll/plimsoll-sans.sfd + RELOC/source/fonts/plimsoll/plimsoll.sfd +runfiles size=9 + RELOC/fonts/afm/public/plimsoll/plimsoll-sans.afm + RELOC/fonts/afm/public/plimsoll/plimsoll.afm + RELOC/fonts/enc/dvips/plimsoll/plimsoll.enc + RELOC/fonts/map/dvips/plimsoll/plimsoll.map + RELOC/fonts/tfm/public/plimsoll/plimsoll-sans.tfm + RELOC/fonts/tfm/public/plimsoll/plimsoll.tfm + RELOC/fonts/type1/public/plimsoll/plimsoll-sans.pfb + RELOC/fonts/type1/public/plimsoll/plimsoll.pfb + RELOC/tex/latex/plimsoll/plimsoll.sty +catalogue-ctan /fonts/plimsoll +catalogue-license gpl3+ +catalogue-topics font font-symbol font-type1 font-sfd font-supp chemistry +catalogue-version 1 + +name plipsum +category Package +revision 30353 +shortdesc 'Lorem ipsum' for Plain TeX developers +relocated 1 +longdesc The package provides a paragraph generator designed for use in +longdesc Plain TeX documents. The paragraphs generated contain many +longdesc 'f-groups' (ff, fl etc.) so the text can act as a test of the +longdesc ligatures of the font in use. +containersize 33632 +containerchecksum 203b9cf56acbc53b2a3c195ba0a27728c93db91bd4be48441e61967fd0488cbc4ef96485ff0b567be64ddba798bb44308cb7cfabd2a2ac89d294203d93ff4d29 +doccontainersize 268364 +doccontainerchecksum 6d5c77102abf42304f8480f74a073ba25b8cf317c3a6cf4c22af6035b17b07ac213866a10ead2a53d033b214e4a6d6e642d043d847e61fb165aa8a02ef90f7b3 +docfiles size=101 + RELOC/doc/plain/plipsum/README details="Readme" + RELOC/doc/plain/plipsum/compile.sh + RELOC/doc/plain/plipsum/plipsum-doc.pdf details="Package documentation" + RELOC/doc/plain/plipsum/plipsum.nw + RELOC/doc/plain/plipsum/pliptest.tex + RELOC/doc/plain/plipsum/stripc +runfiles size=37 + RELOC/tex/plain/plipsum/plipsum.tex +catalogue-also lipsum +catalogue-ctan /macros/plain/contrib/plipsum +catalogue-license lppl +catalogue-topics macro-supp dummy-gen +catalogue-version 4.3 + +name plnfss +category Package +revision 15878 +shortdesc Font selection for Plain TeX +relocated 1 +longdesc Plnfss is a set of macros to provide easy font access (somewhat +longdesc similar to NFSS but with some limitations) with Plain TeX. +longdesc Plnfss can automatically make use of PSNFSS fd files, i.e., +longdesc when an Adobe Type 1 is used the relevant fd file will be +longdesc loaded automatically. For cmr-like fonts (ec, vnr, csr or plr +longdesc fonts), a special format called pfd (plain fd) is required and +longdesc must be loaded manually. See ot1cmr.pfd for further +longdesc information. +containersize 6652 +containerchecksum 0ae352953c5981b791379d9da9b61ad8837c22053f3371f351152078f4dce6b12615ed771987115cc094613ddeb0c275568e1d7404f321516418d218d9c68473 +doccontainersize 7696 +doccontainerchecksum 9569a4f77dead68ad8c76794f03e6ffe147e1801324291fc13487b05051fcb7f307971e65edf66024c169411cee9b2940eb4daac4d073773e67f2f303b364870 +docfiles size=7 + RELOC/doc/plain/plnfss/LPPL.txt + RELOC/doc/plain/plnfss/plnfss.txt + RELOC/doc/plain/plnfss/test-plnfss.tex +runfiles size=17 + RELOC/tex/plain/plnfss/MIKmathf.tex + RELOC/tex/plain/plnfss/ams.pfd + RELOC/tex/plain/plnfss/il2cm.pfd + RELOC/tex/plain/plnfss/il2cmr.pfd + RELOC/tex/plain/plnfss/ly1lm.pfd + RELOC/tex/plain/plnfss/ot1cm.pfd + RELOC/tex/plain/plnfss/ot1cmr.pfd + RELOC/tex/plain/plnfss/ot4cm.pfd + RELOC/tex/plain/plnfss/plnfss.tex + RELOC/tex/plain/plnfss/qxlm.pfd + RELOC/tex/plain/plnfss/t1lm.pfd + RELOC/tex/plain/plnfss/t5cm.pfd + RELOC/tex/plain/plnfss/t5cmr.pfd + RELOC/tex/plain/plnfss/t5lm.pfd + RELOC/tex/plain/plnfss/ts1lm.pfd +catalogue-also ofs font-selection fontch +catalogue-ctan /macros/plain/plnfss +catalogue-license lppl +catalogue-topics font-sel plain-ext +catalogue-version 1.1 + +name plstmary +category Package +revision 31088 +shortdesc St. Mary's Road font support for plain TeX +relocated 1 +longdesc The package provides commands to produce all the symbols of the +longdesc St Mary's Road fonts, in a Plain TeX environment. +containersize 2224 +containerchecksum 72d54627fd8a10215ae9fe417423c46240997f865da8b4f4b976290ded7fbb0360477db27f140bed0ceb4dfc57c42a23fe5ce780ec5eeebb9b3e30b372adfe9e +doccontainersize 152416 +doccontainerchecksum 6e5c425b7d484bbe187eef030fbc9d6a0ad50d6d8e22c5f08d3762cf8082b434de8a4c5d13251d90a016715c9a85aa82dd2637abb6e17a6973a08514baeef7fd +docfiles size=41 + RELOC/doc/plain/plstmary/README details="Readme" + RELOC/doc/plain/plstmary/plstmary-doc.pdf details="Package documentation and font tables" + RELOC/doc/plain/plstmary/plstmary-doc.tex +runfiles size=2 + RELOC/tex/plain/plstmary/stmary.tex +catalogue-ctan /macros/plain/contrib/plstmary +catalogue-license pd +catalogue-topics font-supp-symbol +catalogue-version 0.5c + +name plweb +category Package +revision 15878 +catalogue pl +shortdesc Literate Programming for Prolog with LaTeX +relocated 1 +longdesc Instead of having to transform the common source into program +longdesc or documentation, the central idea was to develop a method to +longdesc have one common source which can be interpreted by a Prolog +longdesc system as well as by LaTeX, whether that Prolog system be +longdesc C-Prolog, Quintus-Prolog, or ECLiPSe. +containersize 3872 +containerchecksum 1899a3498d10950f67d24d2d7bf0488cd8867bd862960fa892581137bb1fb3426dea9e193f8993ffa93df11684dbd1f25bc79a98489317998936ab4186e9a22d +doccontainersize 104072 +doccontainerchecksum 9a510c4fd534c9451863a47fb8fa3911cf5199b295b1e3e2739cfc37ca0351d28fa1876e5456cf05ac7cc05f9f60761578ba6d77841ca575908cf4f0c9f0e3bd +docfiles size=34 + RELOC/doc/latex/plweb/README details="Readme" + RELOC/doc/latex/plweb/pl.pdf details="Package documentation" + RELOC/doc/latex/plweb/pl.tex + RELOC/doc/latex/plweb/sample.pl +srccontainersize 11832 +srccontainerchecksum 09039cddf52bb2080fa6f9dad964f267e43d04504dde81e010727f4957a4de0225b0e23c1cd9ce7222ee1ddbf0d6f1ed1405d0405cb849adda77d99086402d1f +srcfiles size=12 + RELOC/source/latex/plweb/Makefile + RELOC/source/latex/plweb/pl.dtx + RELOC/source/latex/plweb/pl.ins +runfiles size=5 + RELOC/tex/latex/plweb/pcode.sty + RELOC/tex/latex/plweb/pl.cfg + RELOC/tex/latex/plweb/pl.sty +catalogue-ctan /macros/latex/contrib/gene/pl +catalogue-license other-free +catalogue-topics litprog +catalogue-version 3.0 + +name pm-isomath +category Package +revision 59077 +shortdesc Poor man ISO math for pdfLaTeX users +relocated 1 +longdesc This small package realizes a poor man approximation of the ISO +longdesc regulations for physical sciences and technology. Contrary to +longdesc other more elegant solutions, it does not load any math +longdesc alphabet, since pdfLaTeX can use only a maximum of such +longdesc alphabets. The necessary user macros are defined for typsetting +longdesc common math symbols that require special ISO treatment. +containersize 2664 +containerchecksum 726fd53c7447a1bce517197f9adb413990744ddd10633c7f59b64223684f7bd1deb0bf2749fc8f2455dc70cddd5eac17ba0e91e94e4aeedfd809652912736a30 +doccontainersize 624016 +doccontainerchecksum 2ed078636a64f74bccb06818cc253f31199fc2a0c73a58ecf368c6d5bb6f828991ad0955d699f6da4e120b3a3efb5740b8be1e9ceab6b5628fdd79a58709fe6f +docfiles size=154 + RELOC/doc/latex/pm-isomath/README.txt details="Readme" + RELOC/doc/latex/pm-isomath/pm-isomath.pdf details="Package documentation" +srccontainersize 17108 +srccontainerchecksum f88a59c3d88601ef0125c81df0d1d08181b60ba91a3dac9db138a3e66e6f367f5fba217d5491199d7631414c952dc8b6be44339c1a1457d88ad1c897a648f7b7 +srcfiles size=14 + RELOC/source/latex/pm-isomath/pm-isomath.dtx +runfiles size=2 + RELOC/tex/latex/pm-isomath/pm-isomath.sty +catalogue-ctan /macros/latex/contrib/pm-isomath +catalogue-license lppl1.3c +catalogue-topics maths physics +catalogue-version 1.1.01 + +name pmboxdraw +category Package +revision 53046 +shortdesc Poor man's box drawing characters +relocated 1 +longdesc This package declares box drawing characters of old code pages, +longdesc e.g. cp437. It uses rules instead of using a font. +containersize 7216 +containerchecksum d229b15e57fa76a9e8e9b903b5fbbb99d81d3c8a2b1818d71c103df7f2a1e9bcf79aa8396b6ab7a2ce054371d212375b968a4a5d572fa8686223baa8dccf4eff +doccontainersize 594984 +doccontainerchecksum 42a439f2f88235faf7302400432d49166861476cdc43708f84780d153bdcbcb55dea1a6b31cde2045d0b99d48c2a4f51ddae8bdee08937308c5de02e9b16a523 +docfiles size=157 + RELOC/doc/latex/pmboxdraw/README.md + RELOC/doc/latex/pmboxdraw/pmboxdraw.pdf details="Package documentation" +srccontainersize 14376 +srccontainerchecksum 77220cba1cb61836f0be161566d1f177f2c503901b0fd4c0052dae81b457f59364596eaa4a32071b5c90623509f646ef3140f67e29a558b4910beb3a1d63cca6 +srcfiles size=36 + RELOC/source/latex/pmboxdraw/pmboxdraw.dtx +runfiles size=23 + RELOC/tex/latex/pmboxdraw/pmboxdraw.sty + RELOC/tex/latex/pmboxdraw/pmboxdrawenc.dfu +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-license lppl1.3c +catalogue-topics graphics-in-tex +catalogue-version 1.4 + +name pmgraph +category Package +revision 15878 +shortdesc "Poor man's" graphics +relocated 1 +longdesc A set of extensions to LaTeX picture environment, including a +longdesc wider range of vectors, and a lot more box frame styles. +containersize 10064 +containerchecksum b6e9f00789ad102b6cdcfb0fe48e5ca4f6976a7c207088c0c3e8b0c2d4fa376bbb932500d42133571a6e18747615c77eb6df2b4872ba86f853e3069ef198a671 +doccontainersize 129312 +doccontainerchecksum 35f45f43c95264d4dbac5d12a71270fd15280f9008d204e12ab0a3bc6a62939e6de87233c94eeb7cf9627464d5f383c3d8c2cdeaed6eed9473a3e5fe380cc5e7 +docfiles size=50 + RELOC/doc/latex/pmgraph/COPYING + RELOC/doc/latex/pmgraph/README + RELOC/doc/latex/pmgraph/pmgraph.pdf details="Package documentation" + RELOC/doc/latex/pmgraph/pmgraph.tex +runfiles size=19 + RELOC/tex/latex/pmgraph/pmgraph.sty +catalogue-also pict2e +catalogue-ctan /macros/latex/contrib/pmgraph +catalogue-license gpl +catalogue-topics graphics-in-tex +catalogue-version 1.0 + +name pmhanguljamo +category Package +revision 54378 +shortdesc Poor man's Hangul Jamo input method +relocated 1 +longdesc This package provides a Hangul transliteration input method +longdesc that allows to typeset Korean letters (Hangul) using the proper +longdesc fonts. The name is derived from "Poor man's Hangul Jamo Input +longdesc Method". The use of XeLaTeX is recommended. pdfTeX is not +longdesc supported. +containersize 5136 +containerchecksum a4b16b981ff495212daac434123e0ab8d91ac862acf78f92ecab20c793bfc60e1b0e159113c9a5dc15fe06653531c1ac4a4de6208512baf089c299dc7dc75642 +doccontainersize 683796 +doccontainerchecksum 7188c7bd104bb507866c5b793a3da3ed640416847a032b6c2df8eb94a47ec2ff17d11d3494b2f2755c2ce3b01a12c12a2d6abd374c887c2f7418a6fb8c93aa0c +docfiles size=220 + RELOC/doc/latex/pmhanguljamo/README.md details="Readme" + RELOC/doc/latex/pmhanguljamo/munjangganghwa.jpg + RELOC/doc/latex/pmhanguljamo/pmhanguljamo-doc.pdf details="Package documentation (English)" + RELOC/doc/latex/pmhanguljamo/pmhanguljamo-doc.tex + RELOC/doc/latex/pmhanguljamo/pmhanguljamo-kdoc.pdf details="Package documentation (Korean)" language="ko" + RELOC/doc/latex/pmhanguljamo/pmhanguljamo-kdoc.tex +runfiles size=8 + RELOC/tex/latex/pmhanguljamo/pmhanguljamo-rrk.sty + RELOC/tex/latex/pmhanguljamo/pmhanguljamo.sty +catalogue-also kotex-utf +catalogue-ctan /language/korean/pmhanguljamo +catalogue-license lppl1.3 +catalogue-topics korean xetex +catalogue-version 0.3.4 + +name pmx +category Package +revision 57672 +shortdesc Preprocessor for MusiXTeX +longdesc PMX provides a preprocessor for MusiXTeX. pmxab builds a TeX +longdesc input file based on a .pmx input file in a much simpler +longdesc language, making most of the layout decisions by itself. It has +longdesc most of MusiXTeX's functionality, but it also permits in-line +longdesc TeX to give access to virtually all of MusiXTeX. For +longdesc proof-listening, pmxab will make a MIDI file of your score. +longdesc scor2prt is an auxiliary program that makes parts from a score. +depend pmx.ARCH +containersize 10088 +containerchecksum 9b798a99cff71901d5200fbf843746de4c380cbf0aa5ab00c19deac443b84bb891a6ccca953dfb9f384a53f5a9a96c81fc5da0a6887bb4e7212cc977ed2a2348 +doccontainersize 685712 +doccontainerchecksum 7ab725c1d6d99e25379d4373526f12e14770f7a1f9b610fd8b09dee121b00f6b79faf4e548ef13a1429f00dcad83755acb47c7f7bf01c5517e2de852b30b0853 +docfiles size=310 + texmf-dist/doc/generic/pmx/ChangeLog + texmf-dist/doc/generic/pmx/README details="Readme" + texmf-dist/doc/generic/pmx/accents.eps + texmf-dist/doc/generic/pmx/examples/barsant.pmx + texmf-dist/doc/generic/pmx/examples/dyntest.pmx + texmf-dist/doc/generic/pmx/examples/most.pmx + texmf-dist/doc/generic/pmx/examples/mwalmnd.pmx + texmf-dist/doc/generic/pmx/examples/netsoos.pmx + texmf-dist/doc/generic/pmx/examples/prad5x.pmx + texmf-dist/doc/generic/pmx/examples/staffcrossall.pmx + texmf-dist/doc/generic/pmx/file600.eps + texmf-dist/doc/generic/pmx/gapxmpl.eps + texmf-dist/doc/generic/pmx/gpl.txt + texmf-dist/doc/generic/pmx/pmx-install.pdf details="Installation details" + texmf-dist/doc/generic/pmx/pmx-install.tex + texmf-dist/doc/generic/pmx/pmx294.pdf details="Package manual" + texmf-dist/doc/generic/pmx/pmx294.tex + texmf-dist/doc/generic/pmx/pmxab.pdf + texmf-dist/doc/generic/pmx/ref294.pdf + texmf-dist/doc/generic/pmx/ref294.tex + texmf-dist/doc/generic/pmx/scor2prt.pdf + texmf-dist/doc/generic/pmx/sjb291.eps + texmf-dist/doc/generic/pmx/tremxmpl4.eps + texmf-dist/doc/man/man1/pmxab.1 + texmf-dist/doc/man/man1/pmxab.man1.pdf + texmf-dist/doc/man/man1/scor2prt.1 + texmf-dist/doc/man/man1/scor2prt.man1.pdf +runfiles size=8 + texmf-dist/tex/generic/pmx/pmx.tex +catalogue-contact-home http://icking-music-archive.org/software/indexmt6.html +catalogue-ctan /support/pmx +catalogue-license gpl2 +catalogue-topics music +catalogue-version 2.94a + +name pmx.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of pmx +containersize 245112 +containerchecksum 0f2bdceb14583968f24ba610ca87e2c0ff78554baa9c363c4072549883be4ff29cf6065e2c7562d24376de5335eb8db4c576bf7c0bc4a304955378239579860f +binfiles arch=aarch64-linux size=158 + bin/aarch64-linux/pmxab + bin/aarch64-linux/scor2prt + +name pmx.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of pmx +containersize 220600 +containerchecksum 76a03993a60b1130b9ee17a3f77a4c3453ba7eed4133dab3d01bc7e5104365019775c9f5dc4a6941154cd9c87f2559f51fec758d7b1f59001f9945fb5a1fd394 +binfiles arch=amd64-freebsd size=156 + bin/amd64-freebsd/pmxab + bin/amd64-freebsd/scor2prt + +name pmx.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of pmx +containersize 199516 +containerchecksum 7d767b97ecd0c094f3031ff3b58e11d2f7f65fa2a3982fdd814e4afed377f1cc6dab3132d2377b292a53e0aa6268ed3cfd4527995b8ae717b0516ffcee3fedb2 +binfiles arch=amd64-netbsd size=198 + bin/amd64-netbsd/pmxab + bin/amd64-netbsd/scor2prt + +name pmx.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of pmx +containersize 214580 +containerchecksum 38e6f2656956c31976ecd20d2a0cb765d26ba8bc3026e9e4daecc8f4edfb82f26d6cc8a97e000f9bac22a24946d072267342b41b069a90798b2d2a5b89002428 +binfiles arch=armhf-linux size=134 + bin/armhf-linux/pmxab + bin/armhf-linux/scor2prt + +name pmx.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of pmx +containersize 197612 +containerchecksum b1a8f6af7c91cbb1c87f8eef1b958917721ec96e82e4f11e79a209bc63e4f7749dae5f4a9326227a6ff0473ce127c943b223af834eb6dcf051655289d5eb9a16 +binfiles arch=i386-cygwin size=149 + bin/i386-cygwin/pmxab.exe + bin/i386-cygwin/scor2prt.exe + +name pmx.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of pmx +containersize 182260 +containerchecksum a81e4eb85532f8ec650526ae3cfffd7bd30ae53ffb0bb507fabf4b5e047ef5551bbe5c6d5cd052d9d1f8b3fe3258f3294340b2f97bc18141df332963d786936c +binfiles arch=i386-freebsd size=135 + bin/i386-freebsd/pmxab + bin/i386-freebsd/scor2prt + +name pmx.i386-linux +category Package +revision 57878 +shortdesc i386-linux files of pmx +containersize 210556 +containerchecksum 4795b2f2e9b7efa08bc97e29436848e91795aed3eb2fc45a3b677fafaac2c7e8c4299ffcd90a6c084522b9661a44c175e7ad75ed9daa6bdc82bb0a58283af79e +binfiles arch=i386-linux size=162 + bin/i386-linux/pmxab + bin/i386-linux/scor2prt + +name pmx.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of pmx +containersize 158508 +containerchecksum e01a910b7201498b85aa8420b8e3c407f44ffa30abde2ed7732bf121a0c79b9fc84924502b75e9ff377c27e8fc61101b68c758e926857b7393b6599a15499cb3 +binfiles arch=i386-netbsd size=176 + bin/i386-netbsd/pmxab + bin/i386-netbsd/scor2prt + +name pmx.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of pmx +containersize 198840 +containerchecksum c156fa5c6897a89e7fb6a7246e8a74ddb8cdbebc99897023259cb9ef179b1c2a872cffe04615238ce60c85fad8a4b42e5245941ba142ebf1f1dd843dd313a88a +binfiles arch=i386-solaris size=137 + bin/i386-solaris/pmxab + bin/i386-solaris/scor2prt + +name pmx.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pmx +containersize 469108 +containerchecksum 9c1a59bb1e05affa0ff1eaf28d397916afa11e0b93800db8a7ea7c5d010427c07b7ac8ec78e8ec3ecf5938a6f0099f4fde884a114542662491829bd09511f1da +binfiles arch=universal-darwin size=358 + bin/universal-darwin/pmxab + bin/universal-darwin/scor2prt + +name pmx.win32 +category Package +revision 57883 +shortdesc win32 files of pmx +containersize 214816 +containerchecksum 440158bc0f74cbdf9e1c68a2b4f79dc8e2349d2deea5011cea1c046d5cfccdf93c8664e4d5063635e87d3543283b4b4c7b057c4c870aa36cd047e3ebd82bfaa2 +binfiles arch=win32 size=134 + bin/win32/pmxab.exe + bin/win32/scor2prt.exe + +name pmx.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of pmx +containersize 249620 +containerchecksum 40c76c5ad95fde294e5e8ae90b0036f1d3c929cd191e71c6ea2c9c75ef917d42c467bec2064597ec0a26c3bd95b7d08f43fc76a1a3131809f20599391ce6e42e +binfiles arch=x86_64-cygwin size=166 + bin/x86_64-cygwin/pmxab.exe + bin/x86_64-cygwin/scor2prt.exe + +name pmx.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of pmx +containersize 226072 +containerchecksum a6f6f0e5b5cb562f720fcf289728329e8fafd5cb3d935aeebfe8e15b7313e0125543ba0f54171a0c90d2dd8ea6592ec271fa281a5008dbb45034b8f4f8918923 +binfiles arch=x86_64-darwinlegacy size=143 + bin/x86_64-darwinlegacy/pmxab + bin/x86_64-darwinlegacy/scor2prt + +name pmx.x86_64-linux +category Package +revision 57878 +shortdesc x86_64-linux files of pmx +containersize 216088 +containerchecksum b97e6b2d7dd4a58293f13c082abc764b455b8c8ca08da388edb6573c875d88c616e5ed3dc0a169b2feca058ddd5ecaa0763ffc4eff0c13eb25b27080c9ace4e8 +binfiles arch=x86_64-linux size=157 + bin/x86_64-linux/pmxab + bin/x86_64-linux/scor2prt + +name pmx.x86_64-linuxmusl +category Package +revision 57878 +shortdesc x86_64-linuxmusl files of pmx +containersize 247008 +containerchecksum 01e1e9194f19dcc1b3a12feb68fe1aae0b5c0dd4c92b36a6b2b8da6597e8491ef461039babf63e6a26ccc3733c22cc682f8d198caa22f27f917f0bac926a4684 +binfiles arch=x86_64-linuxmusl size=173 + bin/x86_64-linuxmusl/pmxab + bin/x86_64-linuxmusl/scor2prt + +name pmx.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of pmx +containersize 224036 +containerchecksum 3fcdccac61b78df48a618135dcc22b64c38aa157b3eac553fa8aab7e172de748bd183e05098a4a19ac4833165cb5c818d18813232cf88437a8b508deacc261b1 +binfiles arch=x86_64-solaris size=162 + bin/x86_64-solaris/pmxab + bin/x86_64-solaris/scor2prt + +name pmxchords +category Package +revision 39249 +shortdesc Produce chord information to go with pmx output +longdesc The bundle supplements pmx, providing the means of typesetting +longdesc chords above the notes of a score. The bundle contains: macros +longdesc for typing the chords; a Lua script to transpose chord macros +longdesc to the required key signature; and support scripts for common +longdesc requirements. +depend pmxchords.ARCH +containersize 5552 +containerchecksum 0a8f4a88834eb22d3f11ca567f37189af7834370530c6dbca4d83482e94cfb48b128bc1290e7f3ee718bffb4df445a300ddf5081805f88002f53bcf8b434bb3c +doccontainersize 404060 +doccontainerchecksum d4075306620fa1ce037a37b9d2646d197348f6482e1286ff6fd99641a8b441b3d830a1420dbf6c025b8d11af78363b717a1acc7ea6b9e2954aa4f11ef04452ad +docfiles size=164 + texmf-dist/doc/man/man1/pmxchords.1 + texmf-dist/doc/man/man1/pmxchords.man1.pdf + texmf-dist/doc/pmxchords/README details="Readme" + texmf-dist/doc/pmxchords/chordsRef.pdf details="Reference table (English)" language="en" + texmf-dist/doc/pmxchords/chordsRef.tex + texmf-dist/doc/pmxchords/chordsRefCZ.pdf details="Reference table (Czech)" language="cs" + texmf-dist/doc/pmxchords/chordsRefCZ.tex + texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pdf + texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pmx + texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pdf + texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pmx + texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pdf + texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pmx + texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pdf + texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pmx + texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/README details="Readme" + texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pdf + texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pmx + texmf-dist/doc/pmxchords/gpl-2.0.txt + texmf-dist/doc/pmxchords/pmxchords-install.pdf + texmf-dist/doc/pmxchords/pmxchords-install.tex +runfiles size=9 + texmf-dist/scripts/pmxchords/ChordsTr.lua + texmf-dist/scripts/pmxchords/pmxchords.lua + texmf-dist/tex/generic/pmxchords/chords.tex + texmf-dist/tex/generic/pmxchords/chordsCZ.tex +catalogue-ctan /support/pmxchords +catalogue-license gpl2 +catalogue-topics use-lua music +catalogue-version 2.0.2 + +name pmxchords.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pmxchords +containersize 344 +containerchecksum e6d994d7f029311fec9b1660e43e66519dc3c11432bbed641945cb16507c4f64731b4e022103e1d6b99b32d1f417fecaf451d479b3faaec7a5c8654a2b18e518 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pmxchords + +name pmxchords.amd64-freebsd +category Package +revision 32405 +shortdesc amd64-freebsd files of pmxchords +containersize 344 +containerchecksum 53b80bb44936820b9b8167bc828ab93ae111339aa3822d3dd8c3e04845f289f49e873ddfc6156b62f1d1ead9bf8577f2b820f49ea717b8e913fb54549d8ab38b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pmxchords + +name pmxchords.amd64-netbsd +category Package +revision 32405 +shortdesc amd64-netbsd files of pmxchords +containersize 344 +containerchecksum 96be11cf58ab9f3d975d122cda776e81d453abe49cd230d68080b91e45843f022e7654a256be1ec6f42e515449e6bdfd4a0b807fa19bff36c0829afe5933e932 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pmxchords + +name pmxchords.armhf-linux +category Package +revision 32405 +shortdesc armhf-linux files of pmxchords +containersize 344 +containerchecksum 1ccba68421e2513c4524929ece8108a833eacb42c673ecfe46a4a11338a4428a57d8a64d4e133bb78049f4bf98fce075011ebf06e30481fa073ac5ba819d6ba3 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pmxchords + +name pmxchords.i386-cygwin +category Package +revision 32405 +shortdesc i386-cygwin files of pmxchords +containersize 340 +containerchecksum 9f9084b188f076e14a6dfdd7444751e13137e12782eaab88daf69a50f958742b8bfa899832d7136eb2de5c335f5f5a1db63539e153e3d582ed18d29da5029f02 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pmxchords + +name pmxchords.i386-freebsd +category Package +revision 32405 +shortdesc i386-freebsd files of pmxchords +containersize 344 +containerchecksum a2a05b6c319bede29e0d924239e55c219d875b1db7001ceda8f14a4d642b914ca87871db121e1c112cdc74b48477b7f831be09e697121e8dbe6348ba218b7a3b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pmxchords + +name pmxchords.i386-linux +category Package +revision 32405 +shortdesc i386-linux files of pmxchords +containersize 344 +containerchecksum e7018083ea7a284481a431dacd493ab3f220d01619a428dfc5f3ac9c5efbe325b9968e9f1807fa29112a802ccd949981a0ab8015a80298c7809741591b6dc1a2 +binfiles arch=i386-linux size=1 + bin/i386-linux/pmxchords + +name pmxchords.i386-netbsd +category Package +revision 32405 +shortdesc i386-netbsd files of pmxchords +containersize 344 +containerchecksum 17505d853830b9e9c108b1b7dd36157a306b52ba932db6d5827171aa76d80f956c53e710ea1b029718531cce060f446aac4be97b47798345502e228134176980 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pmxchords + +name pmxchords.i386-solaris +category Package +revision 32405 +shortdesc i386-solaris files of pmxchords +containersize 344 +containerchecksum 763a94f93bf388b7cf01d4c6ab18b727ab2985a3f99310db71095bc6fb7fcea3d8b9329b5001e8c721bd3ba785b03b13b0f611360aa42b2cc5eafd6511c7f7eb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pmxchords + +name pmxchords.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pmxchords +containersize 340 +containerchecksum 6028443155e5cc91cfc41b1324cd1b2d9ab5b44ff5e30d1a3e86221beb22b575f10f39105e72cc8094d63d2925ff7e3dc78284cc607540033638fe841e75e00b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pmxchords + +name pmxchords.win32 +category Package +revision 32405 +shortdesc win32 files of pmxchords +containersize 684 +containerchecksum 4d5b2803a177795b2a9c845ed1950729db533b526bc7913b2d876a947d73be4e80f06033013597a3b3e72eba7554dcec807f7db59dae534fce0ba80206839873 +binfiles arch=win32 size=1 + bin/win32/pmxchords.exe + +name pmxchords.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pmxchords +containersize 344 +containerchecksum 1c226c876590373dddf82f0cc5a81a83a646097384da5d46b40f8374a56b133314633d718b41b1146443a952d032a490d66a976152993e70fdd5dd1dc29a3822 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pmxchords + +name pmxchords.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pmxchords +containersize 352 +containerchecksum 741f6910da977e89f6e911a2a0fae46e8b766c87abe399fd1b522c255fbbf92d72b5b9e7666401c849781a54a6620ce199e19a7b2afd257f02fb5ef68f7736ca +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pmxchords + +name pmxchords.x86_64-linux +category Package +revision 32405 +shortdesc x86_64-linux files of pmxchords +containersize 340 +containerchecksum 9ac21da158084b5d0ec8ebde603dc919f6768025add7f779b05e445c8a090a48e4db90b03f04f043d9bbc6ae030eb8dd48f8fb54a62ac4903c098c3d6f5c45a4 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pmxchords + +name pmxchords.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pmxchords +containersize 348 +containerchecksum 79b8fb067845c1417c7b90c70db93afa8ce19ea88d5b5239bad250a91e5fea1107baec5025c9ed45aa1507f2241027f0513e459b50c5105850898689b185dc12 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pmxchords + +name pmxchords.x86_64-solaris +category Package +revision 32405 +shortdesc x86_64-solaris files of pmxchords +containersize 344 +containerchecksum c598e4a8fca1688f247f23dd6bb00ff652231ec9bac25c2176059670d823e4bf2f0dff003cd86718157d136b59d2af7ccd645fe8f0c1555fd19a0879eac0731c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pmxchords + +name pnas2009 +category Package +revision 16287 +shortdesc BibTeX style for PNAS (newer version) +relocated 1 +longdesc This style produces bibliographies in the format of +longdesc "Proceedings of the National Academy of Sciences, USA". The +longdesc style was derived from the standard unsrt.bst and adapted to +longdesc the new (2009) formatting rules. +containersize 4032 +containerchecksum 5e20303db90b2db63a3d6026db582026df8b9e910942303c952753d5dc27928ec70a8dc21edaf44cd57e04d25e93a87a5f28caa769a0425b47c78ea9d56ffa86 +runfiles size=5 + RELOC/bibtex/bst/pnas2009/pnas2009.bst +catalogue-ctan /biblio/bibtex/contrib/misc/pnas2009.bst +catalogue-license other-free +catalogue-topics bibtex-sty +catalogue-version 1.0 + +name poemscol +category Package +revision 56082 +shortdesc Typesetting Critical Editions of Poetry +relocated 1 +longdesc The package offers LaTeX macros for typesetting critical +longdesc editions of poetry. Its features include automatic +longdesc linenumbering, generation of separate endnotes sections for +longdesc emendations, textual collations, and explanatory notes, special +longdesc marking for cases in which page breaks occur during stanza +longdesc breaks, running headers of the form 'Notes to pp. xx-yy' for +longdesc the notes sections, index of titles and first lines, and +longdesc automatic generation of a table of contents. +containersize 19736 +containerchecksum e9bba80cd6fcd7b1e7b0e46fe594b3e25986dac5fe39d329ed4b8e15bc6b542e033a392abcad4e0c67d5401066703a1a89658ebc612d2adcf846de81b34fb78f +doccontainersize 771156 +doccontainerchecksum e8e3ffc366be12ec5273c85a352a6c44ee22af072fdc9e63db390c0d3435e390c28ca83279a1a54f95af991890b7e47ba896612407ed605e229ec184cb1e5096 +docfiles size=197 + RELOC/doc/latex/poemscol/README details="Readme" + RELOC/doc/latex/poemscol/poemscol.pdf details="Documented source" + RELOC/doc/latex/poemscol/poemscolcheatsheet.pdf details="Cheat Sheet" + RELOC/doc/latex/poemscol/poemscolcheatsheet.tex +srccontainersize 91164 +srccontainerchecksum cbb9340d8241dc8616f997dd962fb913ac6d8d46241c55e37bd30fbea12cbe8f331d07268653c9100928b92a171245489685761e091b6d3e2b6be6558779b683 +srcfiles size=120 + RELOC/source/latex/poemscol/poemscol.dtx + RELOC/source/latex/poemscol/poemscol.ins +runfiles size=41 + RELOC/tex/latex/poemscol/poemscol.sty +catalogue-also edmac ledmac ednotes verse +catalogue-ctan /macros/latex/contrib/poemscol +catalogue-license lppl1.3c +catalogue-topics crit-ed +catalogue-version 3.1415926 + +name poetry +category Package +revision 53129 +shortdesc Facilities for typesetting poetry and poetical structure +relocated 1 +longdesc This package provides some macros and general doodads for +longdesc typesetting poetry. There is, of course, already the excellent +longdesc verse package, and the poetrytex package provides some extra +longdesc functionality on top of it. But poetry provides much of the +longdesc same functionality in a bit of a different way, and with a few +longdesc additional abilities, such as facilities for a list of poems, +longdesc an index of first lines, and some structural commands. +containersize 3288 +containerchecksum 1f618b339fecd44d21029ff9ecfb95a97e47fd5d20089a2115d70c8336738c794e1c639c78a16b5756d591fbe3ad52576e3923f6f86245fcc9f7501008382eb6 +doccontainersize 267148 +doccontainerchecksum 540a209251cebb31bdc87143fc8b60627a9296f488f58a81faaefb3c3cb66517e8a670e81b4363840cfa1220697d26517fc1bebedf43f62a4f1c18e3e14a8d65 +docfiles size=71 + RELOC/doc/latex/poetry/CHANGES + RELOC/doc/latex/poetry/README details="Readme" + RELOC/doc/latex/poetry/lppl.txt + RELOC/doc/latex/poetry/poetry.pdf details="Package documentation" +srccontainersize 17256 +srccontainerchecksum 59132d5d5deb62236ebdb4ec0335f3557cb4a99d4a5871ec40669801338f5f1b72fe3023a09160feabe2e0e1d2e1a78c8b803dc4d21c63cd3efafd4040224f9d +srcfiles size=17 + RELOC/source/latex/poetry/poetry.dtx + RELOC/source/latex/poetry/poetry.ins +runfiles size=3 + RELOC/tex/latex/poetry/poetry.sty +catalogue-ctan /macros/latex/contrib/poetry +catalogue-license lppl1.3c +catalogue-topics verse +catalogue-version 2.2 + +name poetrytex +category Package +revision 39921 +shortdesc Typeset anthologies of poetry +relocated 1 +longdesc The package is designed to aid in the management and formatting +longdesc of anthologies of poetry and other writings; it does not +longdesc concern itself with actually typesettinig the verse itself. +containersize 3096 +containerchecksum 9de77dc676f78ce6e18ae62f621126ffc2d78ceb9cb5612f8c129f0c0d123043c554a8996a68d2bf6c730a157f5cdda4101f8446e0e773671258ffb55d6fe93d +doccontainersize 292288 +doccontainerchecksum e9bc2551a92df86e5b76448b2de7af423b8f96ea6a62b1e243f76588478172a7ffe035ed904fb8eb3c5be031e1451c997a68de3187933c3a7273510710577f25 +docfiles size=74 + RELOC/doc/latex/poetrytex/README details="Readme" + RELOC/doc/latex/poetrytex/poetrytex.pdf details="Package documentation" + RELOC/doc/latex/poetrytex/poetrytex.top +srccontainersize 13964 +srccontainerchecksum 4dbeac34f7a74a3a3610f8fa3d3b614ba9ed95384863d2edc40c4685bf7d514803a6d50ff8f27459a7ed993de97f835663ee84247fb0942ba9ff43779e2faeb4 +srcfiles size=15 + RELOC/source/latex/poetrytex/Makefile + RELOC/source/latex/poetrytex/poetrytex.dtx +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-license lppl1.3 +catalogue-topics verse +catalogue-version 3.0.1 + +name poiretone +category Package +revision 56070 +shortdesc PoiretOne family of fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the PoiretOne family of fonts, designed by Denis +longdesc Masharov. PoiretOne is a decorative geometric grotesque with a +longdesc hint of Art Deco and constructivism. There is currently just a +longdesc regular weight and an artificially emboldened bold. +containersize 172664 +containerchecksum 5eab5174f3f31374fa5095946555ca7389ccc4675e479324f03f1c33e07981d2731a86b516c5cde41a9e97a2e5751c4a5ebd58db4a1f76829a6638d8393e6d47 +doccontainersize 12968 +doccontainerchecksum 07dfd772739d214646d6779311f4e3c4c71359303eb8fbf53ca40b9df628c3205fe16889b93476e3eb74d2786559ab75a66916067ec974b3349f89267d1ff435 +docfiles size=7 + RELOC/doc/fonts/poiretone/OFL.txt + RELOC/doc/fonts/poiretone/README details="Readme" + RELOC/doc/fonts/poiretone/poiret-samples.pdf details="Font samples" + RELOC/doc/fonts/poiretone/poiret-samples.tex +runfiles size=95 + RELOC/fonts/enc/dvips/poiretone/prtn_2rdbwn.enc + RELOC/fonts/enc/dvips/poiretone/prtn_bjsotj.enc + RELOC/fonts/enc/dvips/poiretone/prtn_nt5tbh.enc + RELOC/fonts/enc/dvips/poiretone/prtn_opucty.enc + RELOC/fonts/map/dvips/poiretone/PoiretOne.map + RELOC/fonts/tfm/public/poiretone/PoiretOne-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/poiretone/PoiretOne-Regular-lf-ts1.tfm + RELOC/fonts/truetype/public/poiretone/PoiretOne-Bold.ttf + RELOC/fonts/truetype/public/poiretone/PoiretOne-Regular.ttf + RELOC/fonts/type1/public/poiretone/PoiretOne-Bold.pfb + RELOC/fonts/type1/public/poiretone/PoiretOne-Regular.pfb + RELOC/fonts/vf/public/poiretone/PoiretOne-Bold-lf-ly1.vf + RELOC/fonts/vf/public/poiretone/PoiretOne-Bold-lf-t1.vf + RELOC/fonts/vf/public/poiretone/PoiretOne-Bold-lf-ts1.vf + RELOC/fonts/vf/public/poiretone/PoiretOne-Regular-lf-ly1.vf + RELOC/fonts/vf/public/poiretone/PoiretOne-Regular-lf-t1.vf + RELOC/fonts/vf/public/poiretone/PoiretOne-Regular-lf-ts1.vf + RELOC/tex/latex/poiretone/LY1PoiretOne-LF.fd + RELOC/tex/latex/poiretone/OT1PoiretOne-LF.fd + RELOC/tex/latex/poiretone/PoiretOne.sty + RELOC/tex/latex/poiretone/T1PoiretOne-LF.fd + 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-license ofl lppl +catalogue-topics font font-sans font-mono font-otf font-type1 font-proportional font-t1enc + +name polexpr +category Package +revision 59088 +shortdesc A parser for polynomial expressions +relocated 1 +longdesc The package provides a parser \poldef of algebraic polynomial +longdesc expressions. As it is based on xintexpr, the coefficients are +longdesc allowed to be arbitrary rational numbers. Once defined, a +longdesc polynomial is usable by its name either as a numerical function +longdesc in \xintexpr/\xinteval, or for additional polynomial +longdesc definitions, or as argument to the package macros. The +longdesc localization of real roots to arbitrary precision as well as +longdesc the determination of all rational roots is implemented via such +longdesc macros. Since release 0.8, polexpr extends the xintexpr syntax +longdesc to recognize polynomials as a new variable type (and not only +longdesc as functions). Functionality which previously was implemented +longdesc via macros such as the computation of a greatest common divisor +longdesc is now available directly in \xintexpr, \xinteval or \poldef +longdesc via infix or functional syntax. +containersize 31628 +containerchecksum 68c786c6a1c8af8203db22a6d0785e9c17ea233bbf39b68831e2705feccf376eb629315ecf439cf71b0d8894b9391036a84caa29ec7ef0faea82a8fb39da7399 +doccontainersize 46536 +doccontainerchecksum a44f62c65fc8854709975ddb27246b925760210920226b4e8de2bc14096e80ef03e072a4e9bf82acba6aa668e655a55bda92f584c7e8dc8496e45b2e809437a9 +docfiles size=69 + RELOC/doc/generic/polexpr/README.md details="Readme" + RELOC/doc/generic/polexpr/polexpr.html details="Package documentation (HTML)" +runfiles size=40 + RELOC/tex/generic/polexpr/polexpr.sty + RELOC/tex/generic/polexpr/polexprcore.tex + RELOC/tex/generic/polexpr/polexprexpr.tex + RELOC/tex/generic/polexpr/polexprsturm.tex +catalogue-also polynom +catalogue-ctan /macros/generic/polexpr +catalogue-license lppl1.3c +catalogue-topics maths arithmetic calculation etex macro-gen +catalogue-version 0.8.2 + +name polski +category Package +revision 44213 +shortdesc Typeset Polish documents with LaTeX and Polish fonts +relocated 1 +longdesc Tools to typeset documents in Polish using LaTeX2e with Polish +longdesc fonts (the so-called PL fonts), EC fonts or CM fonts. (This +longdesc package was previously known as platex, but has been renamed to +longdesc resolve a name clash.) +depend hyphen-polish +depend pl +containersize 9068 +containerchecksum 8d4c05dae9e5cf8ab36bdba5be8b0748d5d283a6a77c7fa18821ab3a20fe5935f302a8ce9b1a1314ef128a20c1011018ba7bd04d34466d017e16fd9bd087e108 +doccontainersize 294096 +doccontainerchecksum a619719518e3d9814907d33756c4a3f2494c3a94b0a717e6f848e31177622bad6ba2cf595a23ff2efb65ea04b70b267aa87cd87caa56c91bab7b36bef82cd2dd +docfiles size=81 + RELOC/doc/latex/polski/README details="Readme (English)" + RELOC/doc/latex/polski/conowego.txt + RELOC/doc/latex/polski/czytaj.txt details="Readme (Polish)" language="pl" + RELOC/doc/latex/polski/polski.pdf details="Package documentation (largely in Polish)" language="pl" + RELOC/doc/latex/polski/sample-polski.pdf details="Example of use" language="pl" + RELOC/doc/latex/polski/sample-polski.tex + RELOC/doc/latex/polski/sample-rysunek.mp + RELOC/doc/latex/polski/sample-rysunek1.mps +srccontainersize 30840 +srccontainerchecksum fe630f5992e79ad211ac4537cb1fc8b40154c2b43f34fb15594e662909077eb0a58f2be41aa05ad647a45d2d00c8af82ecce2afc5eec46c941d1060f2728a4be +srcfiles size=35 + RELOC/source/latex/polski/ot1patch.dtx + RELOC/source/latex/polski/ot1patch.ins + RELOC/source/latex/polski/plfonts.fdd + RELOC/source/latex/polski/plprefix.dtx + RELOC/source/latex/polski/plprefix.ins + RELOC/source/latex/polski/polski.dtx + RELOC/source/latex/polski/polski.ins + RELOC/source/latex/polski/strony.dtx +runfiles size=24 + RELOC/tex/latex/polski/amigapl.def + RELOC/tex/latex/polski/mazovia.def + RELOC/tex/latex/polski/omlplcm.fd + RELOC/tex/latex/polski/omlplm.fd + RELOC/tex/latex/polski/omsplsy.fd + RELOC/tex/latex/polski/omxplex.fd + RELOC/tex/latex/polski/ot1patch.sty + RELOC/tex/latex/polski/ot4ccr.fd + RELOC/tex/latex/polski/ot4cmdh.fd + RELOC/tex/latex/polski/ot4cmfib.fd + RELOC/tex/latex/polski/ot4cmfr.fd + RELOC/tex/latex/polski/ot4cmr.fd + RELOC/tex/latex/polski/ot4cmss.fd + RELOC/tex/latex/polski/ot4cmtt.fd + RELOC/tex/latex/polski/plprefix.sty + RELOC/tex/latex/polski/polski.sty + RELOC/tex/latex/polski/qxenc.def +catalogue-ctan /macros/latex/contrib/polski +catalogue-license lppl1.2 +catalogue-topics polish +catalogue-version 1.3.4 + +name poltawski +category Package +revision 20075 +shortdesc Antykwa Poltawskiego Family of Fonts +relocated 1 +longdesc The package contains the Antykwa Poltawskiego family of fonts +longdesc in the PostScript Type 1 and OpenType formats. The original +longdesc font was designed in the twenties of the XX century by the +longdesc Polish typographer Adam Poltawski(1881-1952). Following the +longdesc route set out by the Latin Modern and TeX Gyre projects +longdesc (http://www.gust.org.pl/projects/e-foundry), the Antykwa +longdesc Poltawskiego digitisation project aims at providing a rich +longdesc collection of diacritical characters in the attempt to cover as +longdesc many Latin-based scripts as possible. To our knowledge, the +longdesc repertoire of characters covers all European languages as well +longdesc as some other Latin-based alphabets such as Vietnamese and +longdesc Navajo; at the request of users, recent extensions (following +longdesc the enhancement of the Latin Modern collection) provide glyphs +longdesc sufficient for typesetting of romanized transliterations of +longdesc Arabic and Sanskrit scripts. The Antykwa Poltawskiego family +longdesc consists of 4 weights (light, normal, medium, bold), each +longdesc having upright and italic forms and one of 5 design sizes: 6, +longdesc 8, 10, 12 and 17pt. Altogether, the collection comprises 40 +longdesc font files, containing the same repertoire of 1126 characters. +longdesc The preliminary version of Antykwa Poltawskiego (antp package) +longdesc released in 2000 is rendered obsolete by this package. +execute addMap ap.map +containersize 6817756 +containerchecksum bbdf230da2f81b48951eb90016745d68b73890f8c34ed2d336212ba33c7662a5bee1ba005d6e44c4370c81d22928e1013fb39e45db2de16fd05543310bb07d17 +doccontainersize 1392136 +doccontainerchecksum 1ebe7bbd99a3316b6c4fd702770c6f14a32de653909099a86433bd847a63b2eb231cba4f74dfaf1155c54a9393ae1bdf25710fdfc25199d09b75a265392ba51b +docfiles size=807 + RELOC/doc/fonts/poltawski/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/poltawski/MANIFEST-Antykwa-Poltawskiego.txt + RELOC/doc/fonts/poltawski/README-Antykwa-Poltawskiego.txt + RELOC/doc/fonts/poltawski/antpb10.fea + RELOC/doc/fonts/poltawski/antpb12.fea + RELOC/doc/fonts/poltawski/antpb17.fea + RELOC/doc/fonts/poltawski/antpb6.fea + RELOC/doc/fonts/poltawski/antpb8.fea + RELOC/doc/fonts/poltawski/antpbi10.fea + RELOC/doc/fonts/poltawski/antpbi12.fea + RELOC/doc/fonts/poltawski/antpbi17.fea + RELOC/doc/fonts/poltawski/antpbi6.fea + RELOC/doc/fonts/poltawski/antpbi8.fea + RELOC/doc/fonts/poltawski/antpl10.fea + RELOC/doc/fonts/poltawski/antpl12.fea + RELOC/doc/fonts/poltawski/antpl17.fea + RELOC/doc/fonts/poltawski/antpl6.fea + RELOC/doc/fonts/poltawski/antpl8.fea + RELOC/doc/fonts/poltawski/antpli10.fea + RELOC/doc/fonts/poltawski/antpli12.fea + RELOC/doc/fonts/poltawski/antpli17.fea + RELOC/doc/fonts/poltawski/antpli6.fea + RELOC/doc/fonts/poltawski/antpli8.fea + RELOC/doc/fonts/poltawski/antpm10.fea + RELOC/doc/fonts/poltawski/antpm12.fea + RELOC/doc/fonts/poltawski/antpm17.fea + RELOC/doc/fonts/poltawski/antpm6.fea + RELOC/doc/fonts/poltawski/antpm8.fea + RELOC/doc/fonts/poltawski/antpmi10.fea + RELOC/doc/fonts/poltawski/antpmi12.fea + RELOC/doc/fonts/poltawski/antpmi17.fea + RELOC/doc/fonts/poltawski/antpmi6.fea + RELOC/doc/fonts/poltawski/antpmi8.fea + RELOC/doc/fonts/poltawski/antpr10.fea + RELOC/doc/fonts/poltawski/antpr12.fea + RELOC/doc/fonts/poltawski/antpr17.fea + RELOC/doc/fonts/poltawski/antpr6.fea + RELOC/doc/fonts/poltawski/antpr8.fea + RELOC/doc/fonts/poltawski/antpri10.fea + RELOC/doc/fonts/poltawski/antpri12.fea + RELOC/doc/fonts/poltawski/antpri17.fea + RELOC/doc/fonts/poltawski/antpri6.fea + RELOC/doc/fonts/poltawski/antpri8.fea + RELOC/doc/fonts/poltawski/ap-hist.txt + RELOC/doc/fonts/poltawski/ap-info.pdf details="Technical documentation" + RELOC/doc/fonts/poltawski/ap-logo.pdf + RELOC/doc/fonts/poltawski/goadb100.nam + RELOC/doc/fonts/poltawski/tstapot1.pdf + RELOC/doc/fonts/poltawski/tstapot1.tex + RELOC/doc/fonts/poltawski/tstapot4.pdf + RELOC/doc/fonts/poltawski/tstapot4.tex + RELOC/doc/fonts/poltawski/tstapqx.pdf + RELOC/doc/fonts/poltawski/tstapqx.tex + RELOC/doc/fonts/poltawski/tstapt1.pdf + RELOC/doc/fonts/poltawski/tstapt1.tex + RELOC/doc/fonts/poltawski/tstapts1.pdf + RELOC/doc/fonts/poltawski/tstapts1.tex +runfiles size=7225 + RELOC/fonts/afm/gust/poltawski/antpb10.afm + RELOC/fonts/afm/gust/poltawski/antpb12.afm + RELOC/fonts/afm/gust/poltawski/antpb17.afm + RELOC/fonts/afm/gust/poltawski/antpb6.afm + RELOC/fonts/afm/gust/poltawski/antpb8.afm + RELOC/fonts/afm/gust/poltawski/antpbi10.afm + RELOC/fonts/afm/gust/poltawski/antpbi12.afm + RELOC/fonts/afm/gust/poltawski/antpbi17.afm + RELOC/fonts/afm/gust/poltawski/antpbi6.afm + RELOC/fonts/afm/gust/poltawski/antpbi8.afm + RELOC/fonts/afm/gust/poltawski/antpl10.afm + RELOC/fonts/afm/gust/poltawski/antpl12.afm + RELOC/fonts/afm/gust/poltawski/antpl17.afm + RELOC/fonts/afm/gust/poltawski/antpl6.afm + RELOC/fonts/afm/gust/poltawski/antpl8.afm + RELOC/fonts/afm/gust/poltawski/antpli10.afm + RELOC/fonts/afm/gust/poltawski/antpli12.afm + RELOC/fonts/afm/gust/poltawski/antpli17.afm + RELOC/fonts/afm/gust/poltawski/antpli6.afm + RELOC/fonts/afm/gust/poltawski/antpli8.afm + RELOC/fonts/afm/gust/poltawski/antpm10.afm + RELOC/fonts/afm/gust/poltawski/antpm12.afm + RELOC/fonts/afm/gust/poltawski/antpm17.afm + RELOC/fonts/afm/gust/poltawski/antpm6.afm + RELOC/fonts/afm/gust/poltawski/antpm8.afm + RELOC/fonts/afm/gust/poltawski/antpmi10.afm + RELOC/fonts/afm/gust/poltawski/antpmi12.afm + RELOC/fonts/afm/gust/poltawski/antpmi17.afm + RELOC/fonts/afm/gust/poltawski/antpmi6.afm + RELOC/fonts/afm/gust/poltawski/antpmi8.afm + RELOC/fonts/afm/gust/poltawski/antpr10.afm + RELOC/fonts/afm/gust/poltawski/antpr12.afm + RELOC/fonts/afm/gust/poltawski/antpr17.afm + RELOC/fonts/afm/gust/poltawski/antpr6.afm + RELOC/fonts/afm/gust/poltawski/antpr8.afm + RELOC/fonts/afm/gust/poltawski/antpri10.afm + RELOC/fonts/afm/gust/poltawski/antpri12.afm + RELOC/fonts/afm/gust/poltawski/antpri17.afm + RELOC/fonts/afm/gust/poltawski/antpri6.afm + RELOC/fonts/afm/gust/poltawski/antpri8.afm + RELOC/fonts/enc/dvips/poltawski/ap-cs-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-cs.enc + RELOC/fonts/enc/dvips/poltawski/ap-ec-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-ec.enc + RELOC/fonts/enc/dvips/poltawski/ap-l7x-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-l7x.enc + RELOC/fonts/enc/dvips/poltawski/ap-qx-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-qx.enc + RELOC/fonts/enc/dvips/poltawski/ap-rm-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-rm.enc + RELOC/fonts/enc/dvips/poltawski/ap-t5-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-t5.enc + RELOC/fonts/enc/dvips/poltawski/ap-texnansi-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-texnansi.enc + RELOC/fonts/enc/dvips/poltawski/ap-ts1.enc + RELOC/fonts/map/dvips/poltawski/ap-cs.map + RELOC/fonts/map/dvips/poltawski/ap-ec.map + RELOC/fonts/map/dvips/poltawski/ap-l7x.map + RELOC/fonts/map/dvips/poltawski/ap-qx.map + RELOC/fonts/map/dvips/poltawski/ap-rm.map + RELOC/fonts/map/dvips/poltawski/ap-t5.map + RELOC/fonts/map/dvips/poltawski/ap-texnansi.map + RELOC/fonts/map/dvips/poltawski/ap-ts1.map + RELOC/fonts/map/dvips/poltawski/ap.map + RELOC/fonts/opentype/gust/poltawski/antpolt-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpolt-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpolt-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpolt-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-regular.otf + RELOC/fonts/tfm/gust/poltawski/cs-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri8.tfm + RELOC/fonts/type1/gust/poltawski/antpb10.pfb + RELOC/fonts/type1/gust/poltawski/antpb10.pfm + RELOC/fonts/type1/gust/poltawski/antpb12.pfb + RELOC/fonts/type1/gust/poltawski/antpb12.pfm + RELOC/fonts/type1/gust/poltawski/antpb17.pfb + RELOC/fonts/type1/gust/poltawski/antpb17.pfm + RELOC/fonts/type1/gust/poltawski/antpb6.pfb + RELOC/fonts/type1/gust/poltawski/antpb6.pfm + RELOC/fonts/type1/gust/poltawski/antpb8.pfb + RELOC/fonts/type1/gust/poltawski/antpb8.pfm + RELOC/fonts/type1/gust/poltawski/antpbi10.pfb + RELOC/fonts/type1/gust/poltawski/antpbi10.pfm + RELOC/fonts/type1/gust/poltawski/antpbi12.pfb + RELOC/fonts/type1/gust/poltawski/antpbi12.pfm + RELOC/fonts/type1/gust/poltawski/antpbi17.pfb + RELOC/fonts/type1/gust/poltawski/antpbi17.pfm + RELOC/fonts/type1/gust/poltawski/antpbi6.pfb + RELOC/fonts/type1/gust/poltawski/antpbi6.pfm + RELOC/fonts/type1/gust/poltawski/antpbi8.pfb + RELOC/fonts/type1/gust/poltawski/antpbi8.pfm + RELOC/fonts/type1/gust/poltawski/antpl10.pfb + RELOC/fonts/type1/gust/poltawski/antpl10.pfm + RELOC/fonts/type1/gust/poltawski/antpl12.pfb + RELOC/fonts/type1/gust/poltawski/antpl12.pfm + RELOC/fonts/type1/gust/poltawski/antpl17.pfb + RELOC/fonts/type1/gust/poltawski/antpl17.pfm + RELOC/fonts/type1/gust/poltawski/antpl6.pfb + RELOC/fonts/type1/gust/poltawski/antpl6.pfm + RELOC/fonts/type1/gust/poltawski/antpl8.pfb + RELOC/fonts/type1/gust/poltawski/antpl8.pfm + RELOC/fonts/type1/gust/poltawski/antpli10.pfb + RELOC/fonts/type1/gust/poltawski/antpli10.pfm + RELOC/fonts/type1/gust/poltawski/antpli12.pfb + RELOC/fonts/type1/gust/poltawski/antpli12.pfm + RELOC/fonts/type1/gust/poltawski/antpli17.pfb + RELOC/fonts/type1/gust/poltawski/antpli17.pfm + RELOC/fonts/type1/gust/poltawski/antpli6.pfb + RELOC/fonts/type1/gust/poltawski/antpli6.pfm + RELOC/fonts/type1/gust/poltawski/antpli8.pfb + RELOC/fonts/type1/gust/poltawski/antpli8.pfm + RELOC/fonts/type1/gust/poltawski/antpm10.pfb + RELOC/fonts/type1/gust/poltawski/antpm10.pfm + RELOC/fonts/type1/gust/poltawski/antpm12.pfb + RELOC/fonts/type1/gust/poltawski/antpm12.pfm + RELOC/fonts/type1/gust/poltawski/antpm17.pfb + RELOC/fonts/type1/gust/poltawski/antpm17.pfm + RELOC/fonts/type1/gust/poltawski/antpm6.pfb + RELOC/fonts/type1/gust/poltawski/antpm6.pfm + RELOC/fonts/type1/gust/poltawski/antpm8.pfb + RELOC/fonts/type1/gust/poltawski/antpm8.pfm + RELOC/fonts/type1/gust/poltawski/antpmi10.pfb + RELOC/fonts/type1/gust/poltawski/antpmi10.pfm + RELOC/fonts/type1/gust/poltawski/antpmi12.pfb + RELOC/fonts/type1/gust/poltawski/antpmi12.pfm + RELOC/fonts/type1/gust/poltawski/antpmi17.pfb + RELOC/fonts/type1/gust/poltawski/antpmi17.pfm + RELOC/fonts/type1/gust/poltawski/antpmi6.pfb + RELOC/fonts/type1/gust/poltawski/antpmi6.pfm + RELOC/fonts/type1/gust/poltawski/antpmi8.pfb + RELOC/fonts/type1/gust/poltawski/antpmi8.pfm + RELOC/fonts/type1/gust/poltawski/antpr10.pfb + RELOC/fonts/type1/gust/poltawski/antpr10.pfm + RELOC/fonts/type1/gust/poltawski/antpr12.pfb + RELOC/fonts/type1/gust/poltawski/antpr12.pfm + RELOC/fonts/type1/gust/poltawski/antpr17.pfb + RELOC/fonts/type1/gust/poltawski/antpr17.pfm + RELOC/fonts/type1/gust/poltawski/antpr6.pfb + RELOC/fonts/type1/gust/poltawski/antpr6.pfm + RELOC/fonts/type1/gust/poltawski/antpr8.pfb + RELOC/fonts/type1/gust/poltawski/antpr8.pfm + RELOC/fonts/type1/gust/poltawski/antpri10.pfb + RELOC/fonts/type1/gust/poltawski/antpri10.pfm + RELOC/fonts/type1/gust/poltawski/antpri12.pfb + RELOC/fonts/type1/gust/poltawski/antpri12.pfm + RELOC/fonts/type1/gust/poltawski/antpri17.pfb + RELOC/fonts/type1/gust/poltawski/antpri17.pfm + RELOC/fonts/type1/gust/poltawski/antpri6.pfb + RELOC/fonts/type1/gust/poltawski/antpri6.pfm + RELOC/fonts/type1/gust/poltawski/antpri8.pfb + RELOC/fonts/type1/gust/poltawski/antpri8.pfm + RELOC/tex/latex/poltawski/antpolt.sty + RELOC/tex/latex/poltawski/il2antp.fd + RELOC/tex/latex/poltawski/il2antpl.fd + RELOC/tex/latex/poltawski/l7xantp.fd + RELOC/tex/latex/poltawski/l7xantpl.fd + RELOC/tex/latex/poltawski/ly1antp.fd + RELOC/tex/latex/poltawski/ly1antpl.fd + RELOC/tex/latex/poltawski/ot1antp.fd + RELOC/tex/latex/poltawski/ot1antpl.fd + RELOC/tex/latex/poltawski/ot4antp.fd + RELOC/tex/latex/poltawski/ot4antpl.fd + RELOC/tex/latex/poltawski/qxantp.fd + RELOC/tex/latex/poltawski/qxantpl.fd + RELOC/tex/latex/poltawski/t1antp.fd + RELOC/tex/latex/poltawski/t1antpl.fd + RELOC/tex/latex/poltawski/t5antp.fd + RELOC/tex/latex/poltawski/t5antpl.fd + RELOC/tex/latex/poltawski/ts1antp.fd + RELOC/tex/latex/poltawski/ts1antpl.fd +catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/poltawski +catalogue-ctan /fonts/poltawski +catalogue-license gfl +catalogue-topics font font-type1 font-otf +catalogue-version 1.101 + +name polyglossia +category Package +revision 58869 +shortdesc An alternative to babel for XeLaTeX and LuaLaTeX +relocated 1 +longdesc This package provides a complete Babel replacement for users of +longdesc LuaLaTeX and XeLaTeX; it relies on the fontspec package, +longdesc version 2.0 at least. +depend etoolbox +depend filehook +depend fontspec +depend iftex +depend makecmds +depend xkeyval +containersize 115840 +containerchecksum cc76a010e93e9aafbc74d4894b1cb44cd8a569eff1f42b1017d49a0f86fdf577334e8100e2ce8be68c5bf430b6895f80513adee5aacced508244e1f5d5e5f0f5 +doccontainersize 641576 +doccontainerchecksum 64147a6df9eb9f12f0c74792f3b7e0d9c465354a3966d7b1279aa64432021d37d1bbbfc2a310c1a27fef92723ba5803bdcb25995ce930e134553383c3b766904 +docfiles size=205 + RELOC/doc/latex/polyglossia/README.md details="Readme" + RELOC/doc/latex/polyglossia/example-arabic.pdf + RELOC/doc/latex/polyglossia/example-arabic.tex + RELOC/doc/latex/polyglossia/example-korean.pdf + RELOC/doc/latex/polyglossia/example-korean.tex + RELOC/doc/latex/polyglossia/example-thai.pdf + RELOC/doc/latex/polyglossia/example-thai.tex + RELOC/doc/latex/polyglossia/examples.pdf + RELOC/doc/latex/polyglossia/examples.tex + RELOC/doc/latex/polyglossia/polyglossia.pdf details="Package documentation" + RELOC/doc/latex/polyglossia/polyglossia.tex + RELOC/doc/latex/polyglossia/test-welsh.pdf + RELOC/doc/latex/polyglossia/test-welsh.tex +srccontainersize 152892 +srccontainerchecksum 1f534fe32af11b3b83a7814c5615c046869c66e3af0781cef6730dfefecaae093e08eb53c73ac2a417d34aeed0f4a9f8dfde5debbb552ecba1ae00359c172de6 +srcfiles size=229 + RELOC/source/latex/polyglossia/polyglossia.dtx +runfiles size=369 + RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/devanagaridigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/devanagaridigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/farsidigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/farsidigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.tec + RELOC/tex/latex/polyglossia/arabicnumbers.sty + RELOC/tex/latex/polyglossia/babel-hebrewalph.def + RELOC/tex/latex/polyglossia/babelsh.def + RELOC/tex/latex/polyglossia/bengalidigits.sty + RELOC/tex/latex/polyglossia/cal-util.def + RELOC/tex/latex/polyglossia/devanagaridigits.sty + RELOC/tex/latex/polyglossia/farsical.sty + RELOC/tex/latex/polyglossia/gloss-acadien.ldf + RELOC/tex/latex/polyglossia/gloss-aeb.ldf + RELOC/tex/latex/polyglossia/gloss-af.ldf + RELOC/tex/latex/polyglossia/gloss-afb.ldf + RELOC/tex/latex/polyglossia/gloss-afrikaans.ldf + RELOC/tex/latex/polyglossia/gloss-albanian.ldf + RELOC/tex/latex/polyglossia/gloss-am.ldf + RELOC/tex/latex/polyglossia/gloss-american.ldf + RELOC/tex/latex/polyglossia/gloss-amharic.ldf + RELOC/tex/latex/polyglossia/gloss-apd.ldf + RELOC/tex/latex/polyglossia/gloss-ar-IQ.ldf + RELOC/tex/latex/polyglossia/gloss-ar-JO.ldf + RELOC/tex/latex/polyglossia/gloss-ar-LB.ldf + RELOC/tex/latex/polyglossia/gloss-ar-MR.ldf + RELOC/tex/latex/polyglossia/gloss-ar-PS.ldf + RELOC/tex/latex/polyglossia/gloss-ar-SY.ldf + RELOC/tex/latex/polyglossia/gloss-ar-YE.ldf + RELOC/tex/latex/polyglossia/gloss-ar.ldf + RELOC/tex/latex/polyglossia/gloss-arabic.ldf + RELOC/tex/latex/polyglossia/gloss-armenian.ldf + RELOC/tex/latex/polyglossia/gloss-arq.ldf + RELOC/tex/latex/polyglossia/gloss-ary.ldf + RELOC/tex/latex/polyglossia/gloss-arz.ldf + RELOC/tex/latex/polyglossia/gloss-ast.ldf + RELOC/tex/latex/polyglossia/gloss-asturian.ldf + RELOC/tex/latex/polyglossia/gloss-australian.ldf + RELOC/tex/latex/polyglossia/gloss-austrian.ldf + RELOC/tex/latex/polyglossia/gloss-ayl.ldf + RELOC/tex/latex/polyglossia/gloss-bahasa.ldf + RELOC/tex/latex/polyglossia/gloss-bahasai.ldf + RELOC/tex/latex/polyglossia/gloss-bahasam.ldf + RELOC/tex/latex/polyglossia/gloss-basque.ldf + RELOC/tex/latex/polyglossia/gloss-be-tarask.ldf + RELOC/tex/latex/polyglossia/gloss-be.ldf + RELOC/tex/latex/polyglossia/gloss-belarusian.ldf + RELOC/tex/latex/polyglossia/gloss-bengali.ldf + RELOC/tex/latex/polyglossia/gloss-bg.ldf + RELOC/tex/latex/polyglossia/gloss-bn.ldf + RELOC/tex/latex/polyglossia/gloss-bo.ldf + RELOC/tex/latex/polyglossia/gloss-bosnian.ldf + RELOC/tex/latex/polyglossia/gloss-br.ldf + RELOC/tex/latex/polyglossia/gloss-brazil.ldf + RELOC/tex/latex/polyglossia/gloss-breton.ldf + RELOC/tex/latex/polyglossia/gloss-british.ldf + RELOC/tex/latex/polyglossia/gloss-bs.ldf + RELOC/tex/latex/polyglossia/gloss-bulgarian.ldf + RELOC/tex/latex/polyglossia/gloss-ca.ldf + RELOC/tex/latex/polyglossia/gloss-canadian.ldf + RELOC/tex/latex/polyglossia/gloss-canadien.ldf + RELOC/tex/latex/polyglossia/gloss-catalan.ldf + RELOC/tex/latex/polyglossia/gloss-ckb-Arab.ldf + RELOC/tex/latex/polyglossia/gloss-ckb-Latn.ldf + RELOC/tex/latex/polyglossia/gloss-ckb.ldf + RELOC/tex/latex/polyglossia/gloss-cop.ldf + RELOC/tex/latex/polyglossia/gloss-coptic.ldf + RELOC/tex/latex/polyglossia/gloss-croatian.ldf + RELOC/tex/latex/polyglossia/gloss-cy.ldf + RELOC/tex/latex/polyglossia/gloss-cz.ldf + RELOC/tex/latex/polyglossia/gloss-czech.ldf + RELOC/tex/latex/polyglossia/gloss-da.ldf + RELOC/tex/latex/polyglossia/gloss-danish.ldf + RELOC/tex/latex/polyglossia/gloss-de-AT-1901.ldf + RELOC/tex/latex/polyglossia/gloss-de-AT-1996.ldf + RELOC/tex/latex/polyglossia/gloss-de-AT.ldf + RELOC/tex/latex/polyglossia/gloss-de-CH-1901.ldf + RELOC/tex/latex/polyglossia/gloss-de-CH-1996.ldf + RELOC/tex/latex/polyglossia/gloss-de-CH.ldf + RELOC/tex/latex/polyglossia/gloss-de-DE-1901.ldf + RELOC/tex/latex/polyglossia/gloss-de-DE-1996.ldf + RELOC/tex/latex/polyglossia/gloss-de-DE.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-AT-1901.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-AT-1996.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-AT.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-CH-1901.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-CH-1996.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-CH.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-DE-1901.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-DE-1996.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf-DE.ldf + RELOC/tex/latex/polyglossia/gloss-de-Latf.ldf + RELOC/tex/latex/polyglossia/gloss-de.ldf + RELOC/tex/latex/polyglossia/gloss-divehi.ldf + RELOC/tex/latex/polyglossia/gloss-dsb.ldf + RELOC/tex/latex/polyglossia/gloss-dutch.ldf + RELOC/tex/latex/polyglossia/gloss-dv.ldf + RELOC/tex/latex/polyglossia/gloss-el-monoton.ldf + RELOC/tex/latex/polyglossia/gloss-el-polyton.ldf + RELOC/tex/latex/polyglossia/gloss-el.ldf + RELOC/tex/latex/polyglossia/gloss-en-AU.ldf + RELOC/tex/latex/polyglossia/gloss-en-CA.ldf + RELOC/tex/latex/polyglossia/gloss-en-GB.ldf + RELOC/tex/latex/polyglossia/gloss-en-NZ.ldf + RELOC/tex/latex/polyglossia/gloss-en-US.ldf + RELOC/tex/latex/polyglossia/gloss-en.ldf + RELOC/tex/latex/polyglossia/gloss-english.ldf + RELOC/tex/latex/polyglossia/gloss-eo.ldf + RELOC/tex/latex/polyglossia/gloss-es-ES.ldf + RELOC/tex/latex/polyglossia/gloss-es-MX.ldf + RELOC/tex/latex/polyglossia/gloss-es.ldf + RELOC/tex/latex/polyglossia/gloss-esperanto.ldf + RELOC/tex/latex/polyglossia/gloss-estonian.ldf + RELOC/tex/latex/polyglossia/gloss-et.ldf + RELOC/tex/latex/polyglossia/gloss-eu.ldf + RELOC/tex/latex/polyglossia/gloss-fa.ldf + RELOC/tex/latex/polyglossia/gloss-farsi.ldf + RELOC/tex/latex/polyglossia/gloss-fi.ldf + RELOC/tex/latex/polyglossia/gloss-finnish.ldf + RELOC/tex/latex/polyglossia/gloss-fr-CA.ldf + RELOC/tex/latex/polyglossia/gloss-fr-CH.ldf + RELOC/tex/latex/polyglossia/gloss-fr-FR.ldf + RELOC/tex/latex/polyglossia/gloss-fr.ldf + RELOC/tex/latex/polyglossia/gloss-french.ldf + RELOC/tex/latex/polyglossia/gloss-friulan.ldf + RELOC/tex/latex/polyglossia/gloss-friulian.ldf + RELOC/tex/latex/polyglossia/gloss-fur.ldf + RELOC/tex/latex/polyglossia/gloss-ga.ldf + RELOC/tex/latex/polyglossia/gloss-gaelic.ldf + RELOC/tex/latex/polyglossia/gloss-galician.ldf + RELOC/tex/latex/polyglossia/gloss-gd.ldf + RELOC/tex/latex/polyglossia/gloss-georgian.ldf + RELOC/tex/latex/polyglossia/gloss-german.ldf + RELOC/tex/latex/polyglossia/gloss-germanb.ldf + RELOC/tex/latex/polyglossia/gloss-gl.ldf + RELOC/tex/latex/polyglossia/gloss-grc.ldf + RELOC/tex/latex/polyglossia/gloss-greek.ldf + RELOC/tex/latex/polyglossia/gloss-he.ldf + RELOC/tex/latex/polyglossia/gloss-hebrew.ldf + RELOC/tex/latex/polyglossia/gloss-hi.ldf + RELOC/tex/latex/polyglossia/gloss-hindi.ldf + RELOC/tex/latex/polyglossia/gloss-hr.ldf + RELOC/tex/latex/polyglossia/gloss-hsb.ldf + RELOC/tex/latex/polyglossia/gloss-hu.ldf + RELOC/tex/latex/polyglossia/gloss-hungarian.ldf + RELOC/tex/latex/polyglossia/gloss-hy.ldf + RELOC/tex/latex/polyglossia/gloss-ia.ldf + RELOC/tex/latex/polyglossia/gloss-icelandic.ldf + RELOC/tex/latex/polyglossia/gloss-id.ldf + RELOC/tex/latex/polyglossia/gloss-interlingua.ldf + RELOC/tex/latex/polyglossia/gloss-irish.ldf + RELOC/tex/latex/polyglossia/gloss-is.ldf + RELOC/tex/latex/polyglossia/gloss-it.ldf + RELOC/tex/latex/polyglossia/gloss-italian.ldf + RELOC/tex/latex/polyglossia/gloss-ja.ldf + RELOC/tex/latex/polyglossia/gloss-japanese.ldf + RELOC/tex/latex/polyglossia/gloss-ka.ldf + RELOC/tex/latex/polyglossia/gloss-kannada.ldf + RELOC/tex/latex/polyglossia/gloss-khmer.ldf + RELOC/tex/latex/polyglossia/gloss-km.ldf + RELOC/tex/latex/polyglossia/gloss-kmr-Arab.ldf + RELOC/tex/latex/polyglossia/gloss-kmr-Latn.ldf + RELOC/tex/latex/polyglossia/gloss-kmr.ldf + RELOC/tex/latex/polyglossia/gloss-kn.ldf + RELOC/tex/latex/polyglossia/gloss-ko.ldf + RELOC/tex/latex/polyglossia/gloss-korean.ldf + RELOC/tex/latex/polyglossia/gloss-ku-Arab.ldf + RELOC/tex/latex/polyglossia/gloss-ku-Latn.ldf + RELOC/tex/latex/polyglossia/gloss-ku.ldf + RELOC/tex/latex/polyglossia/gloss-kurdish.ldf + RELOC/tex/latex/polyglossia/gloss-kurmanji.ldf + RELOC/tex/latex/polyglossia/gloss-la-x-classic.ldf + RELOC/tex/latex/polyglossia/gloss-la-x-ecclesia.ldf + RELOC/tex/latex/polyglossia/gloss-la-x-medieval.ldf + RELOC/tex/latex/polyglossia/gloss-la.ldf + RELOC/tex/latex/polyglossia/gloss-lao.ldf + RELOC/tex/latex/polyglossia/gloss-latex.ldf + RELOC/tex/latex/polyglossia/gloss-latin.ldf + RELOC/tex/latex/polyglossia/gloss-latinclassic.ldf + RELOC/tex/latex/polyglossia/gloss-latinecclesiastic.ldf + RELOC/tex/latex/polyglossia/gloss-latinmedieval.ldf + RELOC/tex/latex/polyglossia/gloss-latvian.ldf + RELOC/tex/latex/polyglossia/gloss-lithuanian.ldf + RELOC/tex/latex/polyglossia/gloss-lo.ldf + RELOC/tex/latex/polyglossia/gloss-lowersorbian.ldf + RELOC/tex/latex/polyglossia/gloss-lsorbian.ldf + RELOC/tex/latex/polyglossia/gloss-lt.ldf + RELOC/tex/latex/polyglossia/gloss-lv.ldf + RELOC/tex/latex/polyglossia/gloss-macedonian.ldf + RELOC/tex/latex/polyglossia/gloss-magyar.ldf + RELOC/tex/latex/polyglossia/gloss-malay.ldf + RELOC/tex/latex/polyglossia/gloss-malayalam.ldf + RELOC/tex/latex/polyglossia/gloss-marathi.ldf + RELOC/tex/latex/polyglossia/gloss-mk.ldf + RELOC/tex/latex/polyglossia/gloss-ml.ldf + RELOC/tex/latex/polyglossia/gloss-mn.ldf + RELOC/tex/latex/polyglossia/gloss-mongolian.ldf + RELOC/tex/latex/polyglossia/gloss-mr.ldf + RELOC/tex/latex/polyglossia/gloss-naustrian.ldf + RELOC/tex/latex/polyglossia/gloss-nb.ldf + RELOC/tex/latex/polyglossia/gloss-newzealand.ldf + RELOC/tex/latex/polyglossia/gloss-ngerman.ldf + RELOC/tex/latex/polyglossia/gloss-nko.ldf + RELOC/tex/latex/polyglossia/gloss-norsk.ldf + RELOC/tex/latex/polyglossia/gloss-norwegian.ldf + RELOC/tex/latex/polyglossia/gloss-nswissgerman.ldf + RELOC/tex/latex/polyglossia/gloss-nynorsk.ldf + RELOC/tex/latex/polyglossia/gloss-occitan.ldf + RELOC/tex/latex/polyglossia/gloss-persian.ldf + RELOC/tex/latex/polyglossia/gloss-piedmontese.ldf + RELOC/tex/latex/polyglossia/gloss-polish.ldf + RELOC/tex/latex/polyglossia/gloss-polutonikogreek.ldf + RELOC/tex/latex/polyglossia/gloss-portuges.ldf + RELOC/tex/latex/polyglossia/gloss-portuguese.ldf + RELOC/tex/latex/polyglossia/gloss-romanian.ldf + RELOC/tex/latex/polyglossia/gloss-romansh.ldf + RELOC/tex/latex/polyglossia/gloss-russian.ldf + RELOC/tex/latex/polyglossia/gloss-sami.ldf + RELOC/tex/latex/polyglossia/gloss-samin.ldf + RELOC/tex/latex/polyglossia/gloss-sanskrit.ldf + RELOC/tex/latex/polyglossia/gloss-scottish.ldf + RELOC/tex/latex/polyglossia/gloss-serbian.ldf + RELOC/tex/latex/polyglossia/gloss-serbianc.ldf + RELOC/tex/latex/polyglossia/gloss-slovak.ldf + RELOC/tex/latex/polyglossia/gloss-slovene.ldf + RELOC/tex/latex/polyglossia/gloss-slovenian.ldf + RELOC/tex/latex/polyglossia/gloss-sorbian.ldf + RELOC/tex/latex/polyglossia/gloss-spanish.ldf + RELOC/tex/latex/polyglossia/gloss-spanishmx.ldf + RELOC/tex/latex/polyglossia/gloss-swedish.ldf + RELOC/tex/latex/polyglossia/gloss-swissgerman.ldf + RELOC/tex/latex/polyglossia/gloss-syriac.ldf + RELOC/tex/latex/polyglossia/gloss-tamil.ldf + RELOC/tex/latex/polyglossia/gloss-telugu.ldf + RELOC/tex/latex/polyglossia/gloss-thai.ldf + RELOC/tex/latex/polyglossia/gloss-tibetan.ldf + RELOC/tex/latex/polyglossia/gloss-turkish.ldf + RELOC/tex/latex/polyglossia/gloss-turkmen.ldf + RELOC/tex/latex/polyglossia/gloss-ug.ldf + RELOC/tex/latex/polyglossia/gloss-ukrainian.ldf + RELOC/tex/latex/polyglossia/gloss-uppersorbian.ldf + RELOC/tex/latex/polyglossia/gloss-urdu.ldf + RELOC/tex/latex/polyglossia/gloss-usorbian.ldf + RELOC/tex/latex/polyglossia/gloss-uyghur.ldf + RELOC/tex/latex/polyglossia/gloss-vietnamese.ldf + RELOC/tex/latex/polyglossia/gloss-welsh.ldf + RELOC/tex/latex/polyglossia/hebrewcal.sty + RELOC/tex/latex/polyglossia/hijrical.sty + RELOC/tex/latex/polyglossia/nkonumbers.sty + RELOC/tex/latex/polyglossia/polyglossia-french.lua + RELOC/tex/latex/polyglossia/polyglossia-korean.lua + RELOC/tex/latex/polyglossia/polyglossia-latin.lua + RELOC/tex/latex/polyglossia/polyglossia-punct.lua + RELOC/tex/latex/polyglossia/polyglossia-sanskrit.lua + RELOC/tex/latex/polyglossia/polyglossia-tibt.lua + RELOC/tex/latex/polyglossia/polyglossia.lua + RELOC/tex/latex/polyglossia/polyglossia.sty + RELOC/tex/latex/polyglossia/xgreek-fixes.def + RELOC/tex/latex/polyglossia/xpg-cyrillicnumbers.sty +catalogue-also babel +catalogue-contact-bugs https://github.com/reutenauer/polyglossia/issues/ +catalogue-contact-repository https://github.com/reutenauer/polyglossia +catalogue-ctan /macros/unicodetex/latex/polyglossia +catalogue-license mit lppl1.3 cc0 +catalogue-topics multilingual use-xetex use-luatex +catalogue-version 1.53 + +name polynom +category Package +revision 44832 +shortdesc Macros for manipulating polynomials +relocated 1 +longdesc The polynom package implements macros for manipulating +longdesc polynomials, for example it can typeset long polynomial +longdesc divisions. The main test case and application is the polynomial +longdesc ring in one variable with rational coefficients. +containersize 11156 +containerchecksum bbff103f5828757f9c58c768ba46dcd9197629273b12d997e80e299dc1cf6a34e851fa4ebe088d131781eb6efc1fbd39cab602ba23b791c68fdb0e12f69440aa +doccontainersize 400020 +doccontainerchecksum b0fdee90082414d88469ba5067f1c16279ddfc8c13627098bb3c2adfaded3c355cbb161193160fc5b9682d45a10216c56fe2613855528f9f4965479c681e6355 +docfiles size=121 + RELOC/doc/latex/polynom/README details="Readme" + RELOC/doc/latex/polynom/polydemo.pdf details="Example of package use" + RELOC/doc/latex/polynom/polydemo.tex + RELOC/doc/latex/polynom/polynom.pdf details="Package documentation" +srccontainersize 30328 +srccontainerchecksum cf9dc9f13290bfd84e2956630eed115a132bcedfd34e6da076b2fa0fd4840fc5fabaf995b44f2a8f3c3d9ba9de851683a306271b272a83331a92fac367d82a57 +srcfiles size=35 + RELOC/source/latex/polynom/polynom.dtx + RELOC/source/latex/polynom/polynom.ins +runfiles size=16 + RELOC/tex/latex/polynom/polynom.sty +catalogue-ctan /macros/latex/contrib/polynom +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.19 + +name polynomial +category Package +revision 15878 +shortdesc Typeset (univariate) polynomials +relocated 1 +longdesc The package offers an easy way to write (univariate) +longdesc polynomials and rational functions. It defines two commands, +longdesc one for polynomials \polynomial{coeffs} and one for rational +longdesc functions \polynomialfrac{Numerator}{Denominator}. Both +longdesc commands take lists of coefficients as arguments, and offer +longdesc limited optional behaviour. +containersize 2404 +containerchecksum 46324509f078d9e83f4d94893454061636fd1148d5a2e9b59af640f617d82ba1d7397c7f7bb68ac99a83945354c875d3f29853e5ba38da59a2812f5f45ccacb1 +doccontainersize 134132 +doccontainerchecksum b570f3abf21a480e0bce2c08e44d97b488e9a0758d712cfde3ccbc45348eb95486c121662e296049220dd2802edb387651e839c2a819058111a2839049fc5964 +docfiles size=37 + RELOC/doc/latex/polynomial/README + RELOC/doc/latex/polynomial/polynomial.pdf details="Package documentation" +srccontainersize 4216 +srccontainerchecksum db4c1d698b2a096ce6c848922beb747f70a874914d4ad1a468080c55ac0afbd89330c0665006f787c32c6c444ab601c64e7173ce9a5bd9241c1ba71582c0ea0f +srcfiles size=5 + RELOC/source/latex/polynomial/polynomial.dtx + RELOC/source/latex/polynomial/polynomial.ins +runfiles size=2 + RELOC/tex/latex/polynomial/polynomial.sty +catalogue-ctan /macros/latex/contrib/polynomial +catalogue-license lppl +catalogue-topics maths +catalogue-version 1.0 + +name polytable +category Package +revision 55837 +shortdesc Tabular-like environments with named columns +relocated 1 +longdesc This package implements a variant of tabular-like environments +longdesc where columns can be given a name and entries can flexibly be +longdesc placed between arbitrary columns. Complex alignment-based +longdesc layouts, for example for program code, are possible. The +longdesc package depends on lazylist. +containersize 6408 +containerchecksum 2ff55bb460357dc11b274ad3233e5ddd67fbfe05e60d25bcc69f1d06f9b0f247831cb5db4123b7ff859dfa88bd56fd5bdfc24aa992e98f5a17d0f883b40fcd2e +doccontainersize 446940 +doccontainerchecksum 5bdc4a4c8f95255343fccb6db79da434a6b883e0e2a769eac5c8accbb6343d3f5b8de2fd465c5e229ca0ac3e9964fbd96c50062440970921ebf70f01a3097943 +docfiles size=111 + RELOC/doc/latex/polytable/README details="Readme" + RELOC/doc/latex/polytable/polytable.pdf details="Package documentation" +srccontainersize 21528 +srccontainerchecksum dc5c2c007012a4a57a20b569adf784afef0db7b22ae88ac91f54bcab5f8a25a3dbde48a118ff5090d806d42954ea28276ed2adbddfd974972012a645805d9fc3 +srcfiles size=22 + RELOC/source/latex/polytable/polytable.dtx + RELOC/source/latex/polytable/polytable.ins +runfiles size=7 + RELOC/tex/latex/polytable/polytable.sty +catalogue-ctan /macros/latex/contrib/polytable +catalogue-license lppl +catalogue-topics table +catalogue-version 0.8.6 + +name poormanlog +category Package +revision 58966 +shortdesc Logarithms and powers with (almost) 9 digits +relocated 1 +longdesc This small package (usable with Plain e-TeX, LaTeX, or others) +longdesc with no dependencies provides two fast expandable macros +longdesc computing logarithms in base 10 and fractional powers of 10. +longdesc They handle arguments of 9 digit tokens which stand for either +longdesc 1 <= d.dddddddd < 10 (for the log) or 0.xxxxxxxxx (for powers +longdesc of 10). They achieve a precision of 1ulp for the logarithm and +longdesc 2ulp for fractional powers of ten. Extension to other numerical +longdesc ranges has to be done by user, via own macros or some math +longdesc engine. The xintexpr package (at 1.3f) imports the poormanlog +longdesc macros as core constituents of its log10(), pow10(), log(), +longdesc exp() and pow() functions. +containersize 3792 +containerchecksum a1d252b99f78e6cf0c11310079b392a7a557fdc78233bc870859dc8325bc7c1a50655b52cae052e4edbd2e2b333b409f0929d696b93cd8015c66f14ddafa36fe +doccontainersize 2000 +doccontainerchecksum 6ae369601d824ca7f62c10327415c48cac9e58ff495238ddb2f00f71920df1b5f3a0c948c2a5eaf418f688f10e547c945d5fd726ab93eb5c106848c3355c8cb3 +docfiles size=1 + RELOC/doc/generic/poormanlog/README details="Readme" +runfiles size=4 + RELOC/tex/generic/poormanlog/poormanlog.sty + RELOC/tex/generic/poormanlog/poormanlog.tex +catalogue-ctan /macros/generic/poormanlog +catalogue-license lppl1.3c +catalogue-topics calculation +catalogue-version 0.05 + +name postage +category Package +revision 55920 +shortdesc Stamp letters with >>Deutsche Post<<'s service >>Internetmarke<< +relocated 1 +longdesc The postage package is used for franking letters with +longdesc >>Deutsche Post<<'s online postage service >>Internetmarke<<. +longdesc Note that in order to print valid stamps you must point to a +longdesc valid PDF of >>Deutsche Post<<'s >>Ausdruck 4-spaltig (DIN +longdesc A4)<<. +containersize 2012 +containerchecksum 1b7ebc9b82ae1dc0a642892b6d74ef94ff0810ff3dda1628f741244dd17dc8d5013b42e2369c1dd6c27e65b965a1482814c62eaef582cd3bcb4c945fe0aa76da +doccontainersize 307920 +doccontainerchecksum 5f0d2dc0a4986509862b17af55f590f110b3dbdc697ed4cc704d31215945e224a0029087e04cc8602b059455447fa9214bede0aa63509958972c9dbe2cc4a0e9 +docfiles size=102 + RELOC/doc/latex/postage/README.txt details="Readme" + RELOC/doc/latex/postage/postage.pdf details="Package documentation" + RELOC/doc/latex/postage/sample-stamps.pdf +srccontainersize 4660 +srccontainerchecksum 68d0ae1488f2288b7b5ae3aba79ca877ce6f97e1134e61859a81c77bbed47c9b79d3eae07a6ce0bb5fb3645078fc67d2c6cd4a5baaad1460e09b4b34d3d597a4 +srcfiles size=6 + RELOC/source/latex/postage/postage.dtx + RELOC/source/latex/postage/postage.ins +runfiles size=2 + RELOC/tex/latex/postage/postage.sty +catalogue-contact-bugs https://github.com/heinrichreimer/latex-postage/issues +catalogue-contact-development https://github.com/heinrichreimer/latex-postage +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-license lppl1.3c +catalogue-topics letter +catalogue-version 1.0 + +name postcards +category Package +revision 21641 +shortdesc Facilitates mass-mailing of postcards (junkmail) +relocated 1 +longdesc A modification of the standard LaTeX letter class which prints +longdesc multiple, pre-stamped, 5.5" by 3.5" postcards (a US standard +longdesc size) via the envlab and mailing packages. An address database +longdesc is employed to address the front side of each postcard and a +longdesc message is printed on the back side of all. An illustrative +longdesc example is provided. +containersize 1860 +containerchecksum 0e358697b47ee74afb9fb6bd339ea4a76457c78a76a37de6039ac44cd9ce1fc28a3866c42d988ccebf025d0e08c4c092a2b647cce4841662242f740f12297338 +doccontainersize 1364 +doccontainerchecksum 936c1f923bea76aa323d2c8ce9949cea3364eeb1a145e735ff5bdf609de4c54cc78125392e9e3cc914180815bb9dd5bae63e50c0000b2143fe7de94c199bc50e +docfiles size=3 + RELOC/doc/latex/postcards/README details="Readme" + RELOC/doc/latex/postcards/datasmp.txt + RELOC/doc/latex/postcards/pcardsmp.tex +runfiles size=1 + RELOC/tex/latex/postcards/postcards.cls +catalogue-also formlett akletter dinbrief g-brief textmerg +catalogue-ctan /macros/latex/contrib/postcards +catalogue-license lppl +catalogue-topics letter + +name poster-mac +category Package +revision 18305 +shortdesc Make posters and banners with TeX +relocated 1 +longdesc The package offers macros for making posters and banners with +longdesc TeX. It is compatible with most TeX macro formats, including +longdesc Plain TeX, LaTeX, AmSTeX, and AmS-LaTeX. The package creates a +longdesc poster as huge box, which is then distributed over as many +longdesc printer pages as necessary. The only special requirement is +longdesc that your printer not be bothered by text that lies off the +longdesc page. This is true of most printers, including laser printers +longdesc and PostScript printers. +containersize 3152 +containerchecksum f685c2c6d7d2795cf80702c0f8b4da6661a6d076dfbefeeeb071f21ffebd4420c7777681e550ed8ce05726a4392f526da42cecd6e3f26b5dc8ba775494589297 +doccontainersize 93292 +doccontainerchecksum d06f06a4432638ce7780923818cbe638edbb21f836566fb984353aff0bbfbe0905adfa39cc69fc59c87c9e6f7f2c3c268b7f2ef9a55a0f0a2bf0b5212d9e2124 +docfiles size=34 + RELOC/doc/generic/poster-mac/Changes + RELOC/doc/generic/poster-mac/Makefile + RELOC/doc/generic/poster-mac/README details="Readme" + RELOC/doc/generic/poster-mac/poster-doc.pdf details="Package documentation" + RELOC/doc/generic/poster-mac/poster-doc.tex + RELOC/doc/generic/poster-mac/poster1.pdf + RELOC/doc/generic/poster-mac/poster2.pdf +runfiles size=4 + RELOC/tex/generic/poster-mac/poster.sty + RELOC/tex/generic/poster-mac/poster.tex +catalogue-also a0poster sciposter poster +catalogue-ctan /macros/generic/poster +catalogue-license lppl +catalogue-topics poster +catalogue-version 1.1 + +name powerdot +category Package +revision 58730 +shortdesc A presentation class +relocated 1 +longdesc Powerdot is a presentation class for LaTeX that allows for the +longdesc quick and easy development of professional presentations. It +longdesc comes with many tools that enhance presentations and aid the +longdesc presenter. Examples are automatic overlays, personal notes and +longdesc a handout mode. To view a presentation, DVI, PS or PDF output +longdesc can be used. A powerful template system is available to easily +longdesc develop new styles. A LyX layout file is provided. +containersize 26304 +containerchecksum 040d634225ba154fb76145815b923ef9e266a48bc41f245098b70634d6d8fe7890e65a943c44a694d889252de3f66ea49bdb7d56ad7c8ec0e1ac563469138f97 +doccontainersize 947592 +doccontainerchecksum 8b3076cfd45d3c6774e0061b54d63bf89245b16ae704b0c7541ef61b62e0b4972d28b31493fd8e4c167cf87388d87b74ca5b8335b106a310cc78a4c8175330bb +docfiles size=322 + RELOC/doc/latex/powerdot/README details="Readme" + RELOC/doc/latex/powerdot/manifest.txt + RELOC/doc/latex/powerdot/pdpream.ble + RELOC/doc/latex/powerdot/powerdot-example.lyx + RELOC/doc/latex/powerdot/powerdot-example.tex + RELOC/doc/latex/powerdot/powerdot-example1.tex + RELOC/doc/latex/powerdot/powerdot-example2.tex + RELOC/doc/latex/powerdot/powerdot-example3.tex + RELOC/doc/latex/powerdot/powerdot-styleexample.tex + RELOC/doc/latex/powerdot/powerdot-styletest.tex + RELOC/doc/latex/powerdot/powerdot.bib + RELOC/doc/latex/powerdot/powerdot.layout + RELOC/doc/latex/powerdot/powerdot.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/powerdot/powerdotDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/powerdot/powerdotDE.tex +srccontainersize 67108 +srccontainerchecksum e1882bf2cedb5a4146cfcdab5a89618a986c5dab64ccc4953c90157060907c18429b834e2b4dd0cdd38969c30697a354f024bd6e2c4dda88a40acd664350ac2d +srcfiles size=79 + RELOC/source/latex/powerdot/powerdot.dtx +runfiles size=50 + RELOC/tex/latex/powerdot/powerdot-aggie.sty + RELOC/tex/latex/powerdot/powerdot-bframe.sty + RELOC/tex/latex/powerdot/powerdot-ciment.sty + RELOC/tex/latex/powerdot/powerdot-default.ps + RELOC/tex/latex/powerdot/powerdot-default.sty + RELOC/tex/latex/powerdot/powerdot-elcolors.sty + RELOC/tex/latex/powerdot/powerdot-fyma.sty + RELOC/tex/latex/powerdot/powerdot-horatio.sty + RELOC/tex/latex/powerdot/powerdot-husky.sty + RELOC/tex/latex/powerdot/powerdot-ikeda.sty + RELOC/tex/latex/powerdot/powerdot-jefka.sty + RELOC/tex/latex/powerdot/powerdot-klope.sty + RELOC/tex/latex/powerdot/powerdot-paintings.sty + RELOC/tex/latex/powerdot/powerdot-pazik.sty + RELOC/tex/latex/powerdot/powerdot-sailor.sty + RELOC/tex/latex/powerdot/powerdot-simple.sty + RELOC/tex/latex/powerdot/powerdot-tycja.sty + RELOC/tex/latex/powerdot/powerdot-upen.sty + RELOC/tex/latex/powerdot/powerdot.cls +catalogue-also prosper ha-prosper +catalogue-ctan /macros/latex/contrib/powerdot +catalogue-license lppl1.3 +catalogue-topics presentation class +catalogue-version 1.6 + +name powerdot-fuberlin +category Package +revision 52922 +shortdesc Powerdot, using the style of FU Berlin +relocated 1 +longdesc The bundle provides a powerdot-derived class and a package for +longdesc use with powerdot to provide the corporate design of the Free +longdesc University in Berlin. Users may use the class itself +longdesc (FUpowerdot) or use the package in the usual way with +longdesc \style=BerlinFU as a class option. Examples of using both the +longdesc class and the package are provided; the PDF is visually +longdesc identical, so the catalogue only lists one; the sources of the +longdesc examples do of course differ. +containersize 2704 +containerchecksum 73026a8e853bb9141ef3d8915768ca07a9f5caba4e810cf08ab2f41b8c6ee42071065e347ecdc1da070686765591d5cca02a372bd256fc1f9871547a7e1657a2 +doccontainersize 280080 +doccontainerchecksum f2011b2d9362cdd1006714e71c3178b279cf764dc82f10ac31370d197de98a5131dec0c64bc17d4746a554396687e115e6880ae6940d902b34dbd91aa75ba308 +docfiles size=182 + RELOC/doc/latex/powerdot-fuberlin/Changes + RELOC/doc/latex/powerdot-fuberlin/README details="Readme" + RELOC/doc/latex/powerdot-fuberlin/demo-powerdotFU.pdf + RELOC/doc/latex/powerdot-fuberlin/demo-powerdotFU.tex + RELOC/doc/latex/powerdot-fuberlin/exampleClass.pdf details="Example of use of the class" + RELOC/doc/latex/powerdot-fuberlin/exampleClass.tex + RELOC/doc/latex/powerdot-fuberlin/exampleStyle.pdf + RELOC/doc/latex/powerdot-fuberlin/exampleStyle.tex +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-license lppl +catalogue-topics presentation +catalogue-version 0.02a + +name powerdot-tuliplab +category Package +revision 47963 +shortdesc A style package for Powerdot to provide the design of TULIP Lab +relocated 1 +longdesc powerdot-tuliplab is the LaTeX package used in TULIP Lab for +longdesc presentation drafting. It comes with several sample .tex files +longdesc so that you can quickly start working with it. +containersize 1271908 +containerchecksum 91a8008d0675ea36676682d741ffad1e2f842ae37b47da628bade8391b2c775d7a756d31d5169e087ca0c4c0b0e958a2bb34d5143f905439e9572a6e72c4dbf2 +doccontainersize 9412 +doccontainerchecksum 5805d79f125ad94bc0818f52d31e14d786f4f032e03a89a0ec8ae69433d56654b6acc864563e3273664576a59880bf86de81756f76cf9b920a21ca8331ce117c +docfiles size=11 + RELOC/doc/latex/powerdot-tuliplab/README.md details="Readme" + RELOC/doc/latex/powerdot-tuliplab/tuliplab-P00.tex + RELOC/doc/latex/powerdot-tuliplab/tuliplab-P01.tex + RELOC/doc/latex/powerdot-tuliplab/tuliplab-P02.tex +runfiles size=1110 + RELOC/tex/latex/powerdot-tuliplab/logos/tulip-logo.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip-wordmark.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip-wordmark0.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip-wordmark1.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip0.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip1.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip2.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip3.eps + RELOC/tex/latex/powerdot-tuliplab/powerdot-tuliplab.sty +catalogue-contact-announce https://github.com/tulip-lab/templatex +catalogue-contact-bugs https://github.com/tulip-lab/templatex/issues +catalogue-contact-development https://github.com/tulip-lab/templatex +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-license lppl1.3 +catalogue-topics logo +catalogue-version 1.0.0 + +name ppr-prv +category Package +revision 15878 +shortdesc Prosper preview +relocated 1 +longdesc This class is used with LaTeX presentations using the prosper +longdesc class. ppr-prv stands for 'Prosper Preview'. The aim of this +longdesc class is to produce a printable version of the slides written +longdesc with Prosper, with two slides per page. +containersize 5596 +containerchecksum 4bbd2404d9cb4bee9de81d463a6f4966e28409b07aa744e155f398f07e513dac4ad262fb3ac81717dafc9dd9abaed2789c08d0cbf0ce29137739886b2ad1dc74 +doccontainersize 317360 +doccontainerchecksum b8228988551d32a5d5b3ddfc59dde6af1f48aece8f5c0f8889fbe479db6c962d77b687fb5593079796393a255350dfc90965fac07e241d4f0a48027927065e67 +docfiles size=84 + RELOC/doc/latex/ppr-prv/README details="Readme" + RELOC/doc/latex/ppr-prv/ppr-prv.pdf details="Package documentation" +srccontainersize 9460 +srccontainerchecksum cccb93596677625d323b0ceb6743fab15c4300f3baf09846054aae249608f61ab2a0a5bcfd9a7baa2b3a9ec86b2fb90aaee284608bb908229a918436c9acd772 +srcfiles size=10 + RELOC/source/latex/ppr-prv/ppr-prv.dtx + RELOC/source/latex/ppr-prv/ppr-prv.ins +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-license lppl +catalogue-topics presentation +catalogue-version 0.13c + +name pracjourn +category Package +revision 15878 +shortdesc Typeset articles for PracTeX +relocated 1 +longdesc The pracjourn class is used for typesetting articles in the +longdesc PracTeX Journal. It is based on the article class with +longdesc modifications to allow for more flexible front-matter and +longdesc revision control, among other small changes. +containersize 4648 +containerchecksum 40e7ea03f0b244810952cf93cdc7799e0e130a7b11d384893b88e420ce6adb4b5606462ab6f2dbb2e134770eaf32540b9feb59393dea72a70f4d881f6f6fa43b +doccontainersize 386140 +doccontainerchecksum 8e9b171919bd6412a3adb75abf1124beaf0fd562cca49076c1729814c7907b5b3f9b240fdb68d91055225e9b366749c2be6a2e421f52142d0a138e377a442046 +docfiles size=107 + RELOC/doc/latex/pracjourn/README details="Readme" + RELOC/doc/latex/pracjourn/pjsample.ltx + RELOC/doc/latex/pracjourn/pjsample.pdf + RELOC/doc/latex/pracjourn/pracjourn.pdf details="Package documentation" +srccontainersize 15244 +srccontainerchecksum a0f40eb8b245c3f6ca2c6e84f4b13d80b2c9d5f67a70c74fc14928fb3b4eba3659bdcca9852d0bcce18088f707955e8f0ef77e71879bd720c9dd8d59ef9713ce +srcfiles size=14 + RELOC/source/latex/pracjourn/pracjourn.dtx + RELOC/source/latex/pracjourn/pracjourn.ins +runfiles size=4 + RELOC/tex/latex/pracjourn/pracjourn.cls +catalogue-contact-home http://tug.org/pracjourn +catalogue-ctan /macros/latex/contrib/pracjourn +catalogue-license gpl +catalogue-topics journalpub +catalogue-version 0.4n + +name practicalreports +category Package +revision 52312 +shortdesc Some macros for writing practical reports +relocated 1 +longdesc This package provides a handful of macros for writing up +longdesc science practical reports. +containersize 1964 +containerchecksum 71b180b863f5405c145fde98bcae5942ed186de52654dabda4ef1a859ea292e6c2e6f1a29fa4c4320f2f9a442699844d4268fddf0200281c0f1a7477b49d9f5b +doccontainersize 185896 +doccontainerchecksum 48159a00f0c64c6a05e56d9c01b1e7c1fcc8342df3f762775c33377d45b0621e0e933db3097a5d489ddefeed1e0c155893e99ebf98c98fdd11df9b33e05e113c +docfiles size=66 + RELOC/doc/latex/practicalreports/README details="Readme" + RELOC/doc/latex/practicalreports/example_figure.jpeg + RELOC/doc/latex/practicalreports/fancy_footer.png + RELOC/doc/latex/practicalreports/fancy_header.png + RELOC/doc/latex/practicalreports/fancy_page.png + RELOC/doc/latex/practicalreports/new_title_page.png + RELOC/doc/latex/practicalreports/normal_page.png + RELOC/doc/latex/practicalreports/practicalreports.pdf details="Package documentation" + RELOC/doc/latex/practicalreports/practicalreports.tex +runfiles size=2 + RELOC/tex/latex/practicalreports/practicalreports.sty +catalogue-ctan /macros/latex/contrib/practicalreports +catalogue-license lppl1.3c +catalogue-topics report-like +catalogue-version 2.0.3 + +name prelim2e +category Package +revision 57000 +shortdesc Allows the marking of preliminary versions of a document +relocated 1 +longdesc Puts text below the normal page content (the default text marks +longdesc the document as draft and puts a timestamp on it). Can be used +longdesc together with e.g. the vrsion, rcs and rcsinfo packages. Uses +longdesc the everyshi package and can use the scrtime package from the +longdesc koma-script bundle. +containersize 1904 +containerchecksum 9f9fa79056db5be108c3b34b2ad61d964ba35fc1b6f7e9375c9e2ccbf66cd2028ef9e6689751c90c9ca236719ed1a001ae26753305fa3454bd88650cb12ae82c +doccontainersize 427020 +doccontainerchecksum 196640bfbf73f3f269f5b27f024f4c1e677b61b6cc452d796f025196786c166f60bd2f41ad83ac6cc6b9eca56778a07b77af05fc68f05330f14c92cf391bbbc2 +docfiles size=106 + RELOC/doc/latex/prelim2e/README.md + RELOC/doc/latex/prelim2e/prelim2e.pdf details="Package documentation" +srccontainersize 6284 +srccontainerchecksum 1f2629a45183a026fe7bb3c83baa96ccf437846f902b5075fc210e47b6e3b99e81e5983bdcf617ba7bcdea60851154cb70bee3abe227420b5cc3c5a65e631973 +srcfiles size=6 + RELOC/source/latex/prelim2e/prelim2e.dtx + RELOC/source/latex/prelim2e/prelim2e.ins +runfiles size=1 + RELOC/tex/latex/prelim2e/prelim2e.sty +catalogue-also count1to +catalogue-contact-bugs https://github.com/TeXhackse/prelim2e/issues +catalogue-contact-repository https://github.com/TeXhackse/prelim2e +catalogue-ctan /macros/latex/contrib/prelim2e +catalogue-license lppl1.3c +catalogue-topics editorial +catalogue-version 2.00 + +name preprint +category Package +revision 30447 +shortdesc A bundle of packages provided "as is" +relocated 1 +longdesc The bundle comprises: authblk, which permits footnote style +longdesc author/affiliation input in the \author command, balance, to +longdesc balance the end of \twocolumn pages, figcaps, to send figure +longdesc captions, etc., to end document, fullpage, to set narrow page +longdesc margins and set a fixed page style, and sublabel, which permits +longdesc counters to be subnumbered. +containersize 7064 +containerchecksum 66ef40f1f9bc1ef3348923e781ad92dd0174b9c45e16c97662f30971a449dd74580391e1f23fed031a41995e65ff90a6785328de0372cea53e3ce946da469d60 +doccontainersize 634332 +doccontainerchecksum b5e5fa40832249c5a0faa24c26e8b3a2a73036ef007dd3a61adb6a7989926c80e018fba52a66078c3d7b39e76901cc041ebcb9985ff29b53ade2c057abaf1376 +docfiles size=189 + RELOC/doc/latex/preprint/README details="Readme" + RELOC/doc/latex/preprint/authblk.pdf + RELOC/doc/latex/preprint/balance.pdf + RELOC/doc/latex/preprint/figcaps.pdf + RELOC/doc/latex/preprint/fullpage.pdf + RELOC/doc/latex/preprint/sublabel.pdf +srccontainersize 36616 +srccontainerchecksum a7fe23d21dfee4071285ac0ca77a0b8936e8c149b804e9fc19e42cb5fa5eeac23ef3ed59e0433a965ec6203a1b031d2a76975248e624a6452e8fe6ea016be1c9 +srcfiles size=56 + RELOC/source/latex/preprint/authblk.drv + RELOC/source/latex/preprint/authblk.dtx + RELOC/source/latex/preprint/authblk.ins + RELOC/source/latex/preprint/balance.drv + RELOC/source/latex/preprint/balance.dtx + RELOC/source/latex/preprint/balance.ins + RELOC/source/latex/preprint/figcaps.drv + RELOC/source/latex/preprint/figcaps.dtx + RELOC/source/latex/preprint/figcaps.ins + RELOC/source/latex/preprint/fullpage.drv + RELOC/source/latex/preprint/fullpage.dtx + RELOC/source/latex/preprint/fullpage.ins + RELOC/source/latex/preprint/sublabel.drv + RELOC/source/latex/preprint/sublabel.dtx + RELOC/source/latex/preprint/sublabel.ins +runfiles size=9 + RELOC/tex/latex/preprint/authblk.sty + RELOC/tex/latex/preprint/balance.sty + RELOC/tex/latex/preprint/figcaps.sty + RELOC/tex/latex/preprint/fullpage.sty + RELOC/tex/latex/preprint/sublabel.sty +catalogue-ctan /macros/latex/contrib/preprint +catalogue-license collection +catalogue-topics collection +catalogue-version 2011 + +name prerex +category Package +revision 54512 +shortdesc Interactive editor and macro support for prerequisite charts +relocated 1 +longdesc This package consists of prerex.sty, a LaTeX package for +longdesc producing charts of course nodes linked by arrows representing +longdesc pre- and co-requisites, and prerex, an interactive program for +longdesc creating and editing chart descriptions. The implementation of +longdesc prerex.sty uses PGF, so that it may be used equally happily +longdesc with LaTeX or pdfLaTeX; prerex itself is written in C. The +longdesc package includes source code for a previewer application, a +longdesc lightweight Qt-4 and poppler-based prerex-enabled PDF viewer. +containersize 5408 +containerchecksum 4238f65f9ef42d218f092bc436fbbe95ddcbcee44a9032b74020a989696db3ce1481460162171f5feeb16f7507a41643443429afb8000d5bea0d7bf16e8dee96 +doccontainersize 791552 +doccontainerchecksum af17b95e20638fecfe6d431cc320b6d3207dd739779636206899d7bf39c26018718521dabf76adab33db28f975e99d2b2dcd9b13a164dc24927d2017e947bdba +docfiles size=263 + RELOC/doc/latex/prerex/README details="Readme" + RELOC/doc/latex/prerex/chart.pdf + RELOC/doc/latex/prerex/chart.svg + RELOC/doc/latex/prerex/chart.tex + RELOC/doc/latex/prerex/intro.pdf details="Package introduction" + RELOC/doc/latex/prerex/intro.tex + RELOC/doc/latex/prerex/introFonts.png + RELOC/doc/latex/prerex/introchart1.tex + RELOC/doc/latex/prerex/introchart2.tex + RELOC/doc/latex/prerex/prerex-6.8.0.tar.gz + RELOC/doc/latex/prerex/prerex.pdf details="Package documentation" + RELOC/doc/latex/prerex/prerex.sty.7 + RELOC/doc/latex/prerex/prerex.sty.7.pdf + RELOC/doc/latex/prerex/prerex.tex + RELOC/doc/latex/prerex/vprerex-6.4.4.tar.gz + RELOC/doc/latex/prerex/vprerex-6.5.1.tar.gz + RELOC/doc/man/man5/prerex.5 + RELOC/doc/man/man5/prerex.man5.pdf +runfiles size=6 + RELOC/tex/latex/prerex/prerex.sty +catalogue-ctan /graphics/prerex +catalogue-license gpl2 lppl +catalogue-topics graphics-prep + +name present +category Package +revision 50048 +shortdesc Presentations with Plain TeX +relocated 1 +longdesc The package offers a collection of simple macros for preparing +longdesc presentations in Plain TeX. Slide colour and text colour may be +longdesc set, links between parts of the presentation, to other files, +longdesc and to web addresses may be inserted. Images may be included +longdesc easily, and code is available to provide transition effects +longdesc between slides or frames. The structure of the macros is not +longdesc overly complex, so that users should find it easy to adapt the +longdesc macros to their specific needs. +containersize 4364 +containerchecksum b22c0bb6803ebed5cd26aca4a9b55f2c7b506cc7e8910346a07437d60007310a3d2e3549040ffb2616df7f173279342f2334100aab14b589d0cc9e710ea89369 +doccontainersize 814492 +doccontainerchecksum e43a5de9c4bcf9281416963a898e350ba0a0b2d1cad92cbc97d99e2ee9d25f8407a09f024ec5d03a43fd3eee58e1c40bf99ebfff13913bbf85465588b4cf9710 +docfiles size=414 + RELOC/doc/plain/present/HowToTalkTeX.lp + RELOC/doc/plain/present/HowToTalkTeX.pdf details="Package documentation, as a presentation" + RELOC/doc/plain/present/HowToTalkTeX.tex + RELOC/doc/plain/present/Pfeil1.pdf + RELOC/doc/plain/present/Pfeil2.pdf + RELOC/doc/plain/present/Pfeil3.pdf + RELOC/doc/plain/present/Pfeil4.pdf + RELOC/doc/plain/present/README details="Readme" + RELOC/doc/plain/present/Sagnac.pdf + RELOC/doc/plain/present/Stern.png + RELOC/doc/plain/present/background.png + RELOC/doc/plain/present/present-transitions.tex +runfiles size=3 + RELOC/tex/plain/present/present.tex +catalogue-also lecturer +catalogue-ctan /macros/plain/contrib/present +catalogue-license lppl +catalogue-topics presentation +catalogue-version 2.2.1 + +name pressrelease +category Package +revision 35147 +shortdesc A class for typesetting press releases +relocated 1 +longdesc A configurable class for writing press releases. +containersize 4040 +containerchecksum 0f983d4f836c03ede4ed6bd8c2c41dc69ad75a28d9006ff7ab534c6e483e84e2151bfd93fefa43ca327fbeec14787b43205457a9cf1e733f8a4c3a7c561498fc +doccontainersize 617876 +doccontainerchecksum f107b506ba50ba8ed1b655f13049210ec4b90620348ac708afbba4d992470dd5aa8eabe84e2c0b926a55afce49e0a2cee28ecb3877550fe81099f7e5b40e9f40 +docfiles size=267 + RELOC/doc/latex/pressrelease/CHANGES + RELOC/doc/latex/pressrelease/README details="Readme" + RELOC/doc/latex/pressrelease/pressrelease.pdf details="Package documentation" + RELOC/doc/latex/pressrelease/samples/sample-pressrelease.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease2.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease2.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease3.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease3.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease4.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease4.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease5.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease5.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease6.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease6.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease7.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease7.tex +srccontainersize 10660 +srccontainerchecksum 57e94723413ce6fbb1405dacce4af0ab9f7b5e5fc9d091fcf3054fe9505cfda885ebf00b3242ad341325d982d223438e1a2b6cd1f9286cbf5621feb5ae9b1a2f +srcfiles size=13 + RELOC/source/latex/pressrelease/pressrelease.dtx + RELOC/source/latex/pressrelease/pressrelease.ins +runfiles size=5 + RELOC/tex/latex/pressrelease/pressrelease-symbols.sty + RELOC/tex/latex/pressrelease/pressrelease.cls +catalogue-ctan /macros/latex/contrib/pressrelease +catalogue-license lppl1.3 +catalogue-topics publicity +catalogue-version 1.0 + +name prettyref +category Package +revision 15878 +shortdesc Make label references "self-identify" +relocated 1 +longdesc Prettyref provides a command \newrefformat, which specifies the +longdesc way in which a reference is typeset, according to a label +longdesc "identification". The identification is set in the \label +longdesc command, by using prefixed label names; so instead of +longdesc \label{mysection}, one uses \label{sec:mysection}, and +longdesc prettyref interprets the "sec:" part. The package is compatible +longdesc with hyperref and with other packages. +containersize 1212 +containerchecksum 06e3ee942b9a30ff866abf8f6a46b6960321c0aaf2516ce48f587a55ffcb66f158887cbb9a476bc6323e90edd22766fec19d0cfcc2be8805eedd175fdf08ef42 +doccontainersize 32696 +doccontainerchecksum abcd8cb7e7ab78511d953d95699060581844dda67b3489317057782d97388f7cba990735b395e9563e15fd1fee137a86e8198d2d545f437a2d105bfd3e95bc12 +docfiles size=12 + RELOC/doc/latex/prettyref/README + RELOC/doc/latex/prettyref/prettyref.pdf details="Package documentation" +srccontainersize 2464 +srccontainerchecksum d4793c0cec0e56a74d05c08547b68a83e5af33464b3c29a50189696c4d000ffff370422192a289a734e42cb4ef6bf2b95866523f3d6257961608e95f13dfb87e +srcfiles size=3 + RELOC/source/latex/prettyref/prettyref.dtx + RELOC/source/latex/prettyref/prettyref.ins +runfiles size=1 + RELOC/tex/latex/prettyref/prettyref.sty +catalogue-also typedref +catalogue-ctan /macros/latex/contrib/prettyref +catalogue-license pd +catalogue-topics label-ref +catalogue-version 3.0 + +name preview +category Package +revision 56708 +shortdesc Extract bits of a LaTeX source for output +relocated 1 +longdesc The package is a free-standing part of the preview-latex +longdesc bundle. The package provides the support preview-latex needs, +longdesc when it chooses the matter it will preview. The output may +longdesc reasonably be expected to have other uses, as in html +longdesc translators, etc. +containersize 6808 +containerchecksum 8a582c5e78e5a4ef28d3857e397d62579be41f4445a3b0ea1ea76b9080997e5eb23f2bb90197237101d03fccc8cd53c8a3263d19385dac4b63161a568528b017 +doccontainersize 312612 +doccontainerchecksum d6edac136429cc1d0af86381812c798d72e15b0e33cc0dec643e86fc5a323df057bfe196293381f2d85644f6784cb97bd7a612828ce829d0d8baa57a51f00bce +docfiles size=78 + RELOC/doc/latex/preview/README details="Readme" + RELOC/doc/latex/preview/preview.pdf details="Package documentation" +srccontainersize 22560 +srccontainerchecksum f9e6df7cc6c5649e103832477218237d4008e66707a229680448a05a058d5b9ee47775c96466068723a6cdba362a17420d3154d69535c7b3b65c1e752e6654e7 +srcfiles size=22 + RELOC/source/latex/preview/preview.drv + RELOC/source/latex/preview/preview.dtx + RELOC/source/latex/preview/preview.ins +runfiles size=14 + RELOC/tex/latex/preview/prauctex.cfg + RELOC/tex/latex/preview/prauctex.def + RELOC/tex/latex/preview/prcounters.def + RELOC/tex/latex/preview/preview.sty + RELOC/tex/latex/preview/prfootnotes.def + RELOC/tex/latex/preview/prlyx.def + RELOC/tex/latex/preview/prshowbox.def + RELOC/tex/latex/preview/prshowlabels.def + RELOC/tex/latex/preview/prtightpage.def + RELOC/tex/latex/preview/prtracingall.def +catalogue-contact-announce https://lists.gnu.org/mailman/listinfo/info-auctex +catalogue-contact-bugs https://debbugs.gnu.org/cgi/pkgreport.cgi?package=auctex +catalogue-contact-development https://lists.gnu.org/mailman/listinfo/auctex-devel +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-license gpl3 +catalogue-topics chunks +catalogue-version 12.3 + +name prftree +category Package +revision 54080 +shortdesc Macros for building proof trees +relocated 1 +longdesc A package to typeset proof trees for natural deduction calculi, +longdesc sequent-like calculi, and similar. +containersize 11776 +containerchecksum d73717b68ce3d12108a76a3850f3a09b9e1100969e79c745b7b08340175ea9599f10f928809fcdbf8ffbece3a60baa41d84dae182ace8b85ff511082f1db70d4 +doccontainersize 363452 +doccontainerchecksum 3b4d81db24039d15e76e0b237ecae6454d54b452b542e26ba8e0c45faf4f512124f0c1d1f5fef3ca6e6dcb3c7cc09eead3003a53a59a689e5e917583585c045e +docfiles size=109 + RELOC/doc/latex/prftree/README details="Readme" + RELOC/doc/latex/prftree/prftreedoc.pdf details="Package documentation" + RELOC/doc/latex/prftree/prftreedoc.tex +runfiles size=15 + RELOC/tex/latex/prftree/prftree.sty +catalogue-also proofs +catalogue-ctan /macros/latex/contrib/prftree +catalogue-license gpl +catalogue-topics tree maths proof +catalogue-version 1.6 + +name principia +category Package +revision 58927 +shortdesc Notations for typesetting the "Principia Mathematica" +relocated 1 +longdesc This package supports typesetting the Peanese notation in +longdesc Volume I of Whitehead and Russell's 1910 "Principia +longdesc Mathematica". +containersize 2776 +containerchecksum d56a9031a7bc81fa62f99bac5ca88b12570720a51823566cb61845c7c0b73232c9a8d94d453585be72b2c2fb5565c7bb257a7d0533fc17e956b976977dec3b56 +doccontainersize 271012 +doccontainerchecksum c5325b70a14725c9cb0d2368b0b6018375c91ea5be663731d4c016d945aef001f277fbdc0938f3c457e7328f64187bf70d79bfb37a1631f742b14d53a6ac4682 +docfiles size=74 + RELOC/doc/latex/principia/README details="Readme" + RELOC/doc/latex/principia/principia.pdf details="Package documentation" + RELOC/doc/latex/principia/principia.tex +runfiles size=3 + RELOC/tex/latex/principia/principia.sty +catalogue-contact-home https://logicalatomist.github.io/principia/ +catalogue-contact-repository https://github.com/LogicalAtomist/principia +catalogue-ctan /macros/latex/contrib/principia +catalogue-license lppl1.3c +catalogue-topics book-pub +catalogue-version 1.3 + +name printlen +category Package +revision 19847 +shortdesc Print lengths using specified units +relocated 1 +longdesc \printlength{length} prints the value of a LaTeX length in the +longdesc units specified by \uselengthunit{unit} ('unit' may be any TeX +longdesc length unit except for scaled point, viz., any of: pt, pc, in, +longdesc mm, cm, bp, dd or cc). When the unit is pt, the printed length +longdesc value will include any stretch or shrink; otherwise these are +longdesc not printed. The 'unit' argument may also be PT, in which case +longdesc length values will be printed in point units but without any +longdesc stretch or shrink values. +containersize 1868 +containerchecksum bbb48c169f31a1f93024195056c323ce67afa1fcc00f309ef1b820dd40e0b86ca98d05f6cd4af66379682813a3807f24295a803fdc91d8b9f19972e1520d5eaf +doccontainersize 245536 +doccontainerchecksum 25d00eec6c6bd069675cf7d980886b12444e41d18a83ed8e650923d839da8dca21dff65b110105458767b95c50b52a0143b2f7d88b6567ab3aa9953f4ec32a88 +docfiles size=61 + RELOC/doc/latex/printlen/printlen-doc.pdf details="Package documentation" + RELOC/doc/latex/printlen/printlen-doc.tex +runfiles size=2 + RELOC/tex/latex/printlen/printlen.sty +catalogue-ctan /macros/latex/contrib/printlen +catalogue-license lppl +catalogue-topics debug-supp doc-debug +catalogue-version 1.1a + +name proba +category Package +revision 15878 +shortdesc Shortcuts commands to symbols used in probability texts +relocated 1 +longdesc This package includes some of the most often used commands in +longdesc probability texts, e.g. probability, expectation, variance, +longdesc etc. It also includes some short commands for set (blackboard) +longdesc or filtrations (calligraphic). It requires LaTeX2e and the +longdesc amsfonts package. +containersize 1488 +containerchecksum 33ef76474e7183c32b5f982347ed414ae7616484ff5a5d8564574220d3757688a3a47aad000c5b0a66a39dbbef20c789dd1445d872b025c274585248176c86e7 +doccontainersize 73056 +doccontainerchecksum 960887501b74d2c5e8a00c09464ff17dc9c733dd663fb35c32b34bd8b79b2a813536b6c0f9c5df4340dbd3adf1f30f569aac678e90d5f328e1c33130767fdf21 +docfiles size=24 + RELOC/doc/latex/proba/README details="Readme" + RELOC/doc/latex/proba/proba.pdf details="Package documentation" +srccontainersize 3140 +srccontainerchecksum d1305e797d8884f264a20df021b6b0619cee1df1aba8943f5533c2cd839e093420e43ebd1aa46282457a650569a883f4f11a9319f6b6612dbec5b99d29f37087 +srcfiles size=4 + RELOC/source/latex/proba/proba.dtx + RELOC/source/latex/proba/proba.ins +runfiles size=2 + RELOC/tex/latex/proba/proba.sty +catalogue-ctan /macros/latex/contrib/proba +catalogue-license lppl +catalogue-topics probability + +name probsoln +category Package +revision 44783 +shortdesc Generate problem sheets and their solution sheets +relocated 1 +longdesc The package is designed for lecturers who have to generate new +longdesc problem sheets for their students on a regular basis (e.g. +longdesc yearly) by randomly selecting a specified number of problems +longdesc defined in another file. The package allows you easily to +longdesc generate a new problem sheet that is different from the +longdesc previous year, thus alleviating the temptation of students to +longdesc seek out the previous year's students and checking out their +longdesc answers. The solutions to the problems can be defined along +longdesc with the problem, making it easy to generate the solution sheet +longdesc from the same source code; problems may be reused within a +longdesc document, so that solutions may appear in a different section +longdesc of the same document as the problems they cover. +containersize 7076 +containerchecksum f0c63a327569410af7eefa9f87fed56a6a2db78b05133c417afd245958a7f10dac965270fe00e7fe5de6ddfcc4a1cec446df819728e76ad347c7664fcfe849ec +doccontainersize 954428 +doccontainerchecksum c79babc397260f03e2ad66556230966d1af97bbd5703c25cd09ff3aaad48b49d464672c501df047cf5226370b80588705c59212e75d0d1970337fd446d86e70e +docfiles size=296 + RELOC/doc/latex/probsoln/CHANGES + RELOC/doc/latex/probsoln/INSTALL + RELOC/doc/latex/probsoln/README details="Package README" + RELOC/doc/latex/probsoln/probsoln.pdf details="Package documentation" + RELOC/doc/latex/probsoln/samples/prob-1stprncp.tex + RELOC/doc/latex/probsoln/samples/prob-args.tex + RELOC/doc/latex/probsoln/samples/prob-easy.tex + RELOC/doc/latex/probsoln/samples/prob-easy2.tex + RELOC/doc/latex/probsoln/samples/prob-implicit.tex + RELOC/doc/latex/probsoln/samples/prob-mchoice.tex + RELOC/doc/latex/probsoln/samples/prob-mixed.tex + RELOC/doc/latex/probsoln/samples/prob-newdata.tex + RELOC/doc/latex/probsoln/samples/prob-nosoln.tex + RELOC/doc/latex/probsoln/samples/prob-probspaces.tex + RELOC/doc/latex/probsoln/samples/prob-probspaces2.tex + RELOC/doc/latex/probsoln/samples/prob-tabmchoice.tex + RELOC/doc/latex/probsoln/samples/prob-verb.tex + RELOC/doc/latex/probsoln/samples/sample-exclude.pdf + RELOC/doc/latex/probsoln/samples/sample-exclude.tex + RELOC/doc/latex/probsoln/samples/sample.pdf details="Example of use" + RELOC/doc/latex/probsoln/samples/sample.tex + RELOC/doc/latex/probsoln/samples/sample2.pdf + RELOC/doc/latex/probsoln/samples/sample2.tex + RELOC/doc/latex/probsoln/samples/sample3.pdf + RELOC/doc/latex/probsoln/samples/sample3.tex + RELOC/doc/latex/probsoln/samples/sample4.pdf + RELOC/doc/latex/probsoln/samples/sample4.tex + RELOC/doc/latex/probsoln/samples/sample5.pdf + RELOC/doc/latex/probsoln/samples/sample5.tex + RELOC/doc/latex/probsoln/samples/sample6.pdf + RELOC/doc/latex/probsoln/samples/sample6.tex + RELOC/doc/latex/probsoln/samples/sample7.pdf + RELOC/doc/latex/probsoln/samples/sample7.tex + RELOC/doc/latex/probsoln/samples/sample8.pdf + RELOC/doc/latex/probsoln/samples/sample8.tex + RELOC/doc/latex/probsoln/samples/sample9.pdf + RELOC/doc/latex/probsoln/samples/sample9.tex +srccontainersize 25472 +srccontainerchecksum 53ce8efe56938c3e16da53bb1255d86b1ae9cc546cbf4983156c098ac07f1e7c16a998a7dc53fd445efa9f42a6b82889e50c188aa57a72aa9186177fbd744f5d +srcfiles size=34 + RELOC/source/latex/probsoln/probsoln.dtx + RELOC/source/latex/probsoln/probsoln.ins +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-license lppl +catalogue-topics exercise +catalogue-version 3.05 + +name procIAGssymp +category Package +revision 51771 +shortdesc Macros for IAG symposium papers +relocated 1 +longdesc This package provides (re-)definitions of some LaTeX commands +longdesc that can be useful for the preparation of a paper with the +longdesc style of the proceeding of symposia sponsored by the +longdesc 'International Association of Geodesy (IAG)' published by +longdesc Springer-Verlag. +containersize 2420 +containerchecksum 66bd3472ef8d8d26f2eee0368615fb0a326ebd64dca3a0afe9a236880eacfd723caf6f65cfd07ad2a6f5f3db9dea6da75f33de9d026a48a8304c096c60d7e458 +doccontainersize 3148 +doccontainerchecksum 253adc51e38015c55af91bddc0b7ac6031d482d0cfa869cee556ca82464932a4922d0223a4a156e148dd89e369e2960156b411bb2601583d07a99790518c4823 +docfiles size=2 + RELOC/doc/latex/procIAGssymp/TestPaper.tex +runfiles size=2 + RELOC/tex/latex/procIAGssymp/procIAGssymp.sty +catalogue-ctan /macros/latex/contrib/procIAGssymp +catalogue-license lppl +catalogue-topics confproc + +name prodint +category Package +revision 21893 +shortdesc A font that provides the product integral symbol +relocated 1 +longdesc Product integrals are to products, as integrals are to sums. +longdesc They have been around for more than a hundred years, they have +longdesc not become part of the standard mathematician's toolbox, +longdesc possibly because no-one invented the right mathematical symbol +longdesc for them. The authors have remedied that situation by proposing +longdesc the symbol and providing this font. +execute addMap prodint.map +containersize 3856 +containerchecksum ab2b0ababfad124b38b018c7313df0114c36fed0dbbaa42de04295b09142740ef43f34c4c6ad926c97c1ce28521c1d87274486588609197c2178b631b4ee6876 +doccontainersize 32328 +doccontainerchecksum addad035cb9e7b88d9da2bf161723db51897342872dd6c671695bb7bb0a6a4c7bac872ce40f31b22f5fdd84cc03994562a6f78f14d9203977d5b7c8d17130db8 +docfiles size=19 + RELOC/doc/fonts/prodint/README details="Readme" + RELOC/doc/fonts/prodint/config.prodint + RELOC/doc/fonts/prodint/prodint.bma + RELOC/doc/fonts/prodint/prodint.mt1 + RELOC/doc/fonts/prodint/prodint.pdf details="Demonstration of use" + RELOC/doc/fonts/prodint/prodint.pfa + RELOC/doc/fonts/prodint/prodint.sit.hqx + RELOC/doc/fonts/prodint/prodint.tex +runfiles size=5 + RELOC/fonts/afm/public/prodint/prodint.afm + RELOC/fonts/map/dvips/prodint/prodint.map + RELOC/fonts/tfm/public/prodint/prodint.tfm + RELOC/fonts/type1/public/prodint/prodint.pfb + RELOC/tex/latex/prodint/prodint.sty +catalogue-ctan /fonts/prodint +catalogue-license ofl +catalogue-topics maths + +name productbox +category Package +revision 20886 +shortdesc Typeset a three-dimensional product box +relocated 1 +longdesc The package enables typesetting of a three-dimensional product +longdesc box. This product box can be rendered as it is standing on a +longdesc surface and some light is shed onto it. Alternatively it can be +longdesc typeset as a wireframe to be cut out and glued together. This +longdesc will lead to a physical product box. The package requires pgf +longdesc and TikZ. +containersize 4944 +containerchecksum 9b243f6558dd449ddb9d9190ea53a71ed5b28d25f5fddc64eddb194144aa688e8d8e946c53f115d40813d0933b77d5d2c78023f24a1887d8eeb70e6c1ad0bc1d +doccontainersize 378272 +doccontainerchecksum 73f8e1afbbfd9d4047120280e746ae1349225dfa84b98b288e23f477d2eb83310271610d6f4e40cdeb0d124788a97c1f8aaeb182a03cf2b1311e286f7299aa45 +docfiles size=97 + RELOC/doc/latex/productbox/Makefile + RELOC/doc/latex/productbox/README details="Readme" + RELOC/doc/latex/productbox/productbox.bib + RELOC/doc/latex/productbox/productbox.pdf details="Package documentation" +srccontainersize 15512 +srccontainerchecksum 064e591694d0c7f6c9c981ef4038175cdb1fc9a120daaf954051dc05bb6b602bc7fdbf961a25d5cc490380028564316adf5714a151e4606aca31d1f4bca09a54 +srcfiles size=21 + RELOC/source/latex/productbox/productbox.dtx + RELOC/source/latex/productbox/productbox.ins +runfiles size=7 + RELOC/tex/latex/productbox/productbox.sty +catalogue-ctan /macros/latex/contrib/gene/productbox +catalogue-license other-free +catalogue-topics graphics-3d +catalogue-version 1.1 + +name profcollege +category Package +revision 58995 +shortdesc A LaTeX package for French maths teachers in college +relocated 1 +longdesc This package provides some commands to help French mathematics +longdesc teachers for 11-16 years olds, for example: \Tableau[Metre] to +longdesc write the tabular km|hm|... with some facilities, +longdesc \Pythagore{ABC}{5}{7} to write the entire calculation of AC +longdesc with the Pythagorean theorem, \Trigo[Cosinus]{ABC}{3}{}{60} to +longdesc write the entire calculation of AC with cosine, ... and some +longdesc others. +containersize 83556 +containerchecksum 7989dc75980da4250b76e6faf34ebeead2f853611eb327b128474c247761aece883f1e771d38f701d0fc4394bedd17843cf889c972171103b90c3297a2527724 +doccontainersize 3908208 +doccontainerchecksum 605d547b06744fbbeeb29cefa53fee5cd33e23a4c95c6f4ae0ff3396e43c3b51d68508dfd3ee8c3e875061e18c3264110e9f48c93a909fa9321bdab25d189847 +docfiles size=1089 + RELOC/doc/latex/profcollege/ProfCollege-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/profcollege/ProfCollege-doc.zip + RELOC/doc/latex/profcollege/README details="Readme" +runfiles size=230 + RELOC/metapost/profcollege/PfCAfficheur.mp + RELOC/metapost/profcollege/PfCCalculatrice.mp + RELOC/metapost/profcollege/PfCConstantes.mp + RELOC/metapost/profcollege/PfCGeometrie.mp + RELOC/metapost/profcollege/PfCLaTeX.mp + RELOC/metapost/profcollege/PfCScratch.mp + RELOC/metapost/profcollege/PfCScratchpdf.mp + RELOC/metapost/profcollege/PfCSvgnames.mp + RELOC/tex/latex/profcollege/PfCEquationComposition2.tex + RELOC/tex/latex/profcollege/PfCEquationLaurent1.tex + RELOC/tex/latex/profcollege/PfCEquationPose1.tex + RELOC/tex/latex/profcollege/PfCEquationSoustraction2.tex + RELOC/tex/latex/profcollege/PfCEquationSymbole1.tex + RELOC/tex/latex/profcollege/PfCEquationTerme1.tex + RELOC/tex/latex/profcollege/ProfCollege.sty +catalogue-ctan /macros/latex/contrib/profcollege +catalogue-license lppl1.3c +catalogue-topics maths french teaching +catalogue-version 0.99-a + +name program +category Package +revision 44214 +shortdesc Typesetting programs and algorithms +relocated 1 +longdesc The main offering is a program environment; a programbox +longdesc environment is available for fragments that must not break with +longdesc the pages. +containersize 11780 +containerchecksum a9ef7d68ad86b42657681e2b798899b5c7c472c5e272a9098a1424a35a109dc4a946be54c4007db73edb861cb475f293e404cee9fa0dca8cdf086eb6c4790319 +doccontainersize 49880 +doccontainerchecksum 4213b5bc9cd6b2604bf1c667dd123729c0674d1c74338ebeb86b1551af14be3e24c4e94b4e5cc2c06a25ebf934d56eb6d3b5ce80e452798ea02fbb0ac6533580 +docfiles size=26 + RELOC/doc/latex/program/README details="Readme" + RELOC/doc/latex/program/gpl-3.0.txt + RELOC/doc/latex/program/plink.tex + RELOC/doc/latex/program/program-demo.tex + RELOC/doc/latex/program/program-doc.pdf details="Generated documentation" + RELOC/doc/latex/program/program-doc.tex +runfiles size=9 + RELOC/tex/latex/program/program.sty +catalogue-contact-home http://www.gkc.org.uk +catalogue-ctan /macros/latex/contrib/program +catalogue-license gpl3 +catalogue-topics listing pseudocode +catalogue-version 3.3.14 + +name progress +category Package +revision 19519 +shortdesc Creates an overview of a document's state +relocated 1 +longdesc Progress is a package which. when compiling TeX and LaTeX +longdesc documents, generates a HTML file showing an overview of a +longdesc document's state (of how finished it is). The report is sent to +longdesc file \ProgressReportName, which is by default the \jobname with +longdesc the date appended (but is user-modifiable). +containersize 4192 +containerchecksum df21ec7e4adc36a420959550376fff5b8a55fb7dccc064476b2306226c1776fb2075994d9ae63bd5bde0b68571671bacadf9285f53bc9e639c2afd59e5b6814e +doccontainersize 80808 +doccontainerchecksum e88280bb1a93d34dd5597627d763d1b2a21a56990ede2e029246dac84f3bb22e05a08a9a94c0790a9c8a87698684816ace02149562785cf36f2b6af82f89c130 +docfiles size=29 + RELOC/doc/latex/progress/README details="Readme" + RELOC/doc/latex/progress/progress.pdf details="Package documentation" + RELOC/doc/latex/progress/progress.tex + RELOC/doc/latex/progress/progress20030701.html +runfiles size=4 + RELOC/tex/latex/progress/progress.sty +catalogue-ctan /macros/latex/contrib/progress +catalogue-license lppl +catalogue-topics doc-mgmt +catalogue-version 1.10 + +name progressbar +category Package +revision 33822 +shortdesc Visualize shares of total amounts in the form of a (progress-)bar +relocated 1 +longdesc This package allows you to easily visualize shares of total +longdesc amounts in the form of a bar. So basically you can convert any +longdesc number between 0 and 1 to a progressbar using the command +longdesc \progressbar{<number>}. Also a lot of customizations are +longdesc possible, allowing you to create an unique progressbar on your +longdesc own. The package uses TikZ to produce its graphics. +containersize 2324 +containerchecksum d12161aa891ea45cec2a4511c48a1c338de5acd512e426a24988b79b7d9d1734479a1cd93e3e8ee11da67858d97260b71ca35a3a7a3dbbcd2bae746221a7bafa +doccontainersize 86236 +doccontainerchecksum a60ee29da0517d6769e09f12af7b600284f32478aef1d28cdf167610c45bd87f841500c2bf718ff9b6678a171f3138f4a7a6ac45bd41500510f509e8e7067efd +docfiles size=31 + RELOC/doc/latex/progressbar/README details="Readme" + RELOC/doc/latex/progressbar/progressbar.pdf details="Package documentation" + RELOC/doc/latex/progressbar/progressbar.tex +runfiles size=2 + RELOC/tex/latex/progressbar/progressbar.sty +catalogue-ctan /macros/latex/contrib/progressbar +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 1.0b~4 + +name proof-at-the-end +category Package +revision 51194 +shortdesc A package to move proofs to appendix +relocated 1 +longdesc This package aims to provide a way to easily move proofs to the +longdesc appendix. You can (among other things) move proofs to different +longdesc places/sections, create links from theorems to proofs, restate +longdesc theorems, add comments in appendix... +containersize 4440 +containerchecksum 1e5647e1421742e9f0198c5ff8ae5ac315eccef96d0a7c9c5f1dabef167fca5ac9221cdf60d99dafbdfd60f6960a897ebb2d2c4370edcc0d0a36942c0041a777 +doccontainersize 372132 +doccontainerchecksum 9100916a9ebf426502d7c25e5f848fd4eeb19050faa01b0a4a795b838d4084849b42a1f6a187dc8218aeffb6df0cbe592b512e1c613a1045e467198119b33555 +docfiles size=98 + RELOC/doc/latex/proof-at-the-end/README.md details="Readme" + RELOC/doc/latex/proof-at-the-end/proof-at-the-end.pdf details="Package documentation" + RELOC/doc/latex/proof-at-the-end/proof-at-the-end_demo.pdf details="Example of use" + RELOC/doc/latex/proof-at-the-end/proof-at-the-end_demo.tex +srccontainersize 12500 +srccontainerchecksum ea0b286182db09ab249a704ef25abc8bd951b51e8671ddb2a8110997b9db4ed353c059f44170e8a5bd76878ae97d34b460701994849425c1f40925d663d0ac6f +srcfiles size=14 + RELOC/source/latex/proof-at-the-end/proof-at-the-end.dtx + RELOC/source/latex/proof-at-the-end/proof-at-the-end.ins +runfiles size=4 + RELOC/tex/latex/proof-at-the-end/proof-at-the-end.sty +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-license lppl1.3 +catalogue-topics maths proof appendix + +name proofread +category Package +revision 50938 +shortdesc Commands for inserting annotations +relocated 1 +longdesc This package defines a few LaTeX commands that may be useful +longdesc when you proofread a LaTeX document. They allow you to easily +longdesc highlight text and add comments in the margin. Vim escape +longdesc sequences are provided for inserting or removing these LaTeX +longdesc commands in the source. Options are provided for displaying the +longdesc document with extra line spacing, and for displaying it in +longdesc either corrected or uncorrected state, both without margin +longdesc notes. The package is based on code for a text highlighting +longdesc command that was published by Antal Spector-Zabusky on +longdesc http://tex.stackexchange.com/questions/5959. The main file, +longdesc proofread.dtx, is self-extracting, so you can generate the +longdesc style file by compiling proofread.dtx with pdfLaTeX. This +longdesc package is based on the soul package; so if you plan to +longdesc highlight non-ASCII characters, you must compile your source +longdesc with either XeTeX- or LuaTeX-based compilers. +containersize 2596 +containerchecksum ef0d35bb06d1bf31cdea9aec2f342eef4b8cf053863a26f5c223c1966f6715a547fb61b2f92d4ac273c3309fcfe219f9a78bdf8c9b3ec3886bb96dabd7935033 +doccontainersize 290840 +doccontainerchecksum 6b1ba0b1e009e2f7b337aebcc5c54882f2ef3f2089261d3b9355cb0adfec8aa3c7f207636955979cc0a74554e5878423a23982340bd26ed3c2a634f821497565 +docfiles size=84 + RELOC/doc/latex/proofread/README details="Readme" + RELOC/doc/latex/proofread/README.txt + RELOC/doc/latex/proofread/example.pdf details="Example of use" + RELOC/doc/latex/proofread/example.tex + RELOC/doc/latex/proofread/proofread.pdf details="Package documentation" + RELOC/doc/latex/proofread/proofread.vmb +srccontainersize 6348 +srccontainerchecksum 9a434d59a1540e1dee97e9baf1cda034f768a7a24e1deca7e0f454f7d7918cbd7645e19454fa7683c3754f80e1c9da54b3b2ade2dd58f4c332d2422fe1690935 +srcfiles size=6 + RELOC/source/latex/proofread/proofread.dtx + RELOC/source/latex/proofread/proofread.ins +runfiles size=2 + RELOC/tex/latex/proofread/proofread.sty +catalogue-ctan /macros/latex/contrib/proofread +catalogue-license lppl1.3c +catalogue-topics editorial decoration +catalogue-version 1.04 + +name prooftrees +category Package +revision 52221 +shortdesc Forest-based proof trees (symbolic logic) +relocated 1 +longdesc The package supports drawing proof trees of the kind often used +longdesc in introductory logic classes, especially those aimed at +longdesc students without strong mathemtical backgrounds. Hodges (1991) +longdesc is one example of a text which uses this system. When teaching +longdesc such a system it is especially useful to annotate the tree with +longdesc line numbers, justifications and explanations of branch +longdesc closures. prooftrees provides a single environment, prooftree, +longdesc and a variety of tools for annotating, customising and +longdesc highlighting such trees. A cross-referencing system is provided +longdesc for trees which cite line numbers in justifications for proof +longdesc lines or branch closures. prooftrees is based on forest and, +longdesc hence, TikZ. The package requires version 2.0.2 of Forest for +longdesc expected results and will not work with version 1. +containersize 10448 +containerchecksum f455c85a30ca4882829e0d2b74f202b129333962843a799c575f080de9b67c1c543db10f012198655760bbe894eae2149eeba1322de3392bac0eaa9a89fe00df +doccontainersize 876384 +doccontainerchecksum ff1ec0f5f9112e7fd09fee4e3ffba06bd281c4578a055e831c64a8edbec234bd69c6e920745fe6e4fbcbb12b27189465d4fc41c9dae4f1ff80d5096ef9dc3cee +docfiles size=236 + RELOC/doc/latex/prooftrees/README details="Readme" + RELOC/doc/latex/prooftrees/manifest.txt + RELOC/doc/latex/prooftrees/prooftrees.pdf details="Package documentation" + RELOC/doc/latex/prooftrees/prooftrees.tex + RELOC/doc/latex/prooftrees/prooftrees_biber.bib +runfiles size=11 + RELOC/tex/latex/prooftrees/prooftrees.sty +catalogue-also forest +catalogue-ctan /graphics/pgf/contrib/prooftrees +catalogue-license lppl1.3 +catalogue-topics tree pgf-tikz logic +catalogue-version 0.7 svn 8641 + +name properties +category Package +revision 15878 +shortdesc Load properties from a file +relocated 1 +longdesc The package loads properties (key, value) from a properties +longdesc file, e.g. \jobname.properties. +containersize 1188 +containerchecksum 3bde5cf132c9013bcbb0eef439e61725ea41a09720f98bb53f8bbf39d56d6cde34ed1613b001a86b40221a36233b1d5c226819c94b41d49211065e1477a0bd42 +doccontainersize 1104 +doccontainerchecksum eff6b91e8fdd7b0a6b0526c7dd2243e32586a5ce12071130f388a911fa34cbac4681d4118b601b9eb979a272bf89b82f00f8ba509fa996521e8a2861f8e84a80 +docfiles size=2 + RELOC/doc/latex/properties/readme.de + RELOC/doc/latex/properties/testprop.tex +runfiles size=1 + RELOC/tex/latex/properties/properties.sty +catalogue-ctan /macros/latex/contrib/properties +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.2 + +name proposal +category Package +revision 40538 +shortdesc A set of LaTeX classes for preparing proposals for collaborative projects +relocated 1 +longdesc The process of preparing a collaborative proposal, to a major +longdesc funding body, involves integration of contributions of a many +longdesc people at many sites. It is therefore an ideal application for +longdesc a text-based document preparation system such as LaTeX, in +longdesc concert with a distributed version control system such as SVN. +longdesc The proposal class itself provides a basis for such an +longdesc enterprise. The dfgproposal and dfgproposal classes provide two +longdesc specialisations of the base class for (respectively) German and +longdesc European research proposals. The packages depend on the +longdesc author's stex bundle. +containersize 17220 +containerchecksum d9a352995030efd57ecd46028147a6326ede0695545194a01846d4a3e2d29096ace9e6f69900766906f3ecfa05ce566ebd1c2c5f76a3b2b2646c1e0f865093ba +doccontainersize 1079828 +doccontainerchecksum 53c1d47f2f42c9ceed73f350c2aff9b229d6dc8dfde9e3fb8109971905c5d6430ca52d72551d540f5a1727a767d6cf485d8bca2489f301edfbf964490ecfb5a2 +docfiles size=375 + RELOC/doc/latex/proposal/base/README details="Readme" + RELOC/doc/latex/proposal/dfg/README details="Readme" + RELOC/doc/latex/proposal/dfg/dfgproposal.pdf + RELOC/doc/latex/proposal/dfg/proposal/Makefile + RELOC/doc/latex/proposal/dfg/proposal/funds.tex + RELOC/doc/latex/proposal/dfg/proposal/preconditions.tex + RELOC/doc/latex/proposal/dfg/proposal/proposal.pdf + RELOC/doc/latex/proposal/dfg/proposal/proposal.tex + RELOC/doc/latex/proposal/dfg/proposal/public.pdf + RELOC/doc/latex/proposal/dfg/proposal/public.tex + RELOC/doc/latex/proposal/dfg/proposal/state.tex + RELOC/doc/latex/proposal/dfg/proposal/submit.pdf + RELOC/doc/latex/proposal/dfg/proposal/submit.tex + RELOC/doc/latex/proposal/dfg/proposal/workplan.tex + RELOC/doc/latex/proposal/dfg/proposal/zusammenfassung.tex + RELOC/doc/latex/proposal/dfg/report/Makefile + RELOC/doc/latex/proposal/dfg/report/README details="Readme" + RELOC/doc/latex/proposal/dfg/report/finalreport.pdf + RELOC/doc/latex/proposal/dfg/report/finalreport.tex + RELOC/doc/latex/proposal/dfg/report/letter_submission.pdf + RELOC/doc/latex/proposal/dfg/report/letter_submission.tex + RELOC/doc/latex/proposal/dfg/report/progressreport.tex + RELOC/doc/latex/proposal/dfg/report/progresssummary.tex + RELOC/doc/latex/proposal/eu/README details="Readme" + RELOC/doc/latex/proposal/eu/euproposal.pdf + RELOC/doc/latex/proposal/eu/strep/Makefile + RELOC/doc/latex/proposal/eu/strep/README details="Readme" + RELOC/doc/latex/proposal/eu/strep/deliverables.tex + RELOC/doc/latex/proposal/eu/strep/draft.tex + RELOC/doc/latex/proposal/eu/strep/final.tex + RELOC/doc/latex/proposal/eu/strep/grantagreement.tex + RELOC/doc/latex/proposal/eu/strep/impact.tex + RELOC/doc/latex/proposal/eu/strep/implementation.tex + RELOC/doc/latex/proposal/eu/strep/issues.tex + RELOC/doc/latex/proposal/eu/strep/methodology.tex + RELOC/doc/latex/proposal/eu/strep/milestones.tex + RELOC/doc/latex/proposal/eu/strep/objectives.tex + RELOC/doc/latex/proposal/eu/strep/progress.tex + RELOC/doc/latex/proposal/eu/strep/propB.pdf + RELOC/doc/latex/proposal/eu/strep/propB.tex + RELOC/doc/latex/proposal/eu/strep/public.pdf + RELOC/doc/latex/proposal/eu/strep/public.tex + RELOC/doc/latex/proposal/eu/strep/quality.tex + RELOC/doc/latex/proposal/eu/strep/risks.tex + RELOC/doc/latex/proposal/eu/strep/site-bar.tex + RELOC/doc/latex/proposal/eu/strep/site-baz.tex + RELOC/doc/latex/proposal/eu/strep/site-efo.tex + RELOC/doc/latex/proposal/eu/strep/site-jacu.tex + RELOC/doc/latex/proposal/eu/strep/site-templatex.tex + RELOC/doc/latex/proposal/eu/strep/submit.pdf + RELOC/doc/latex/proposal/eu/strep/submit.tex + RELOC/doc/latex/proposal/eu/strep/workplan.tex + RELOC/doc/latex/proposal/eu/strep/wp-class.tex + RELOC/doc/latex/proposal/eu/strep/wp-dissem.tex + RELOC/doc/latex/proposal/eu/strep/wp-management.tex + RELOC/doc/latex/proposal/eu/strep/wp-temple.tex +srccontainersize 49544 +srccontainerchecksum 39ec30b5c0d94a2beb6d83d796ed13ca95b5e0045edc8e7828f5528e44e9f24350fceef93ec2c3bf9cdbf3766d7ddb0b72d6e10a909a6fc92e393681d425d8b4 +srcfiles size=61 + RELOC/source/latex/proposal/base/proposal.dtx + RELOC/source/latex/proposal/base/proposal.ins + RELOC/source/latex/proposal/bin/Modparse.pm + RELOC/source/latex/proposal/bin/README + RELOC/source/latex/proposal/bin/checksum + RELOC/source/latex/proposal/bin/filedate + RELOC/source/latex/proposal/bin/generate-issues + RELOC/source/latex/proposal/dfg/dfgproposal.dtx + RELOC/source/latex/proposal/dfg/dfgproposal.ins + RELOC/source/latex/proposal/eu/euproposal.dtx + RELOC/source/latex/proposal/eu/euproposal.ins + RELOC/source/latex/proposal/lib/Makefile.ctan + RELOC/source/latex/proposal/lib/Makefile.in + RELOC/source/latex/proposal/lib/Makefile.vars + RELOC/source/latex/proposal/lib/proposal.bib +runfiles size=26 + RELOC/tex/latex/proposal/base/pdata.sty + RELOC/tex/latex/proposal/base/proposal.cls + RELOC/tex/latex/proposal/base/reporting.cls + RELOC/tex/latex/proposal/dfg/dfgpdata.sty + RELOC/tex/latex/proposal/dfg/dfgproposal.cls + RELOC/tex/latex/proposal/dfg/dfgreporting.cls + RELOC/tex/latex/proposal/eu/eupdata.sty + RELOC/tex/latex/proposal/eu/euproposal.cls + RELOC/tex/latex/proposal/eu/eureporting.cls +catalogue-contact-repository https://github.com/KWARC/LaTeX-proposal +catalogue-ctan /macros/latex/contrib/proposal +catalogue-license lppl +catalogue-topics proposal + +name prosper +category Package +revision 33033 +shortdesc LaTeX class for high quality slides +relocated 1 +longdesc Prosper is a LaTeX class for writing transparencies. It is +longdesc written as an extension of the seminar class by Timothy Van +longdesc Zandt. Prosper offers a friendly environment for creating +longdesc slides for both presentations with an overhead projector and a +longdesc video projector. Slides prepared for a presentation with a +longdesc computer and a video projector may integrate animation effects, +longdesc incremental display, and so on. Various visual styles are +longdesc supported (including some that mimic PowerPoint) and others are +longdesc being contributed. +containersize 94984 +containerchecksum bf2285803a71b00c67a9e64ca5e51bdd880856338b0bf3e95bfb2ff2e78d5cdd0617424ed95918b5982d5befa71476b89567b2107eb0c206f9a9f53966a983b6 +doccontainersize 340196 +doccontainerchecksum 21593ccdc8231e37f0b2938d3978205ab3ed61f74a6e8a4b1dd2cf82da552bd920a7711c025964fdab5661207cbea1aee04244c93552e20d10df338c7dc5c138 +docfiles size=152 + RELOC/doc/latex/prosper/AUTHORS + RELOC/doc/latex/prosper/ChangeLog + RELOC/doc/latex/prosper/Example.tex + RELOC/doc/latex/prosper/ExampleAlienglow.tex + RELOC/doc/latex/prosper/ExampleAutumn.tex + RELOC/doc/latex/prosper/ExampleAzure.tex + RELOC/doc/latex/prosper/ExampleContemporain.tex + RELOC/doc/latex/prosper/ExampleDarkblue.tex + RELOC/doc/latex/prosper/ExampleFrames.tex + RELOC/doc/latex/prosper/ExampleLignesbleues.tex + RELOC/doc/latex/prosper/ExampleNuanceGris.tex + RELOC/doc/latex/prosper/ExampleTroisPoints.tex + RELOC/doc/latex/prosper/FAQ + RELOC/doc/latex/prosper/INSTALL + RELOC/doc/latex/prosper/NEWS + RELOC/doc/latex/prosper/README details="Package Readme" + RELOC/doc/latex/prosper/TODO + RELOC/doc/latex/prosper/compilation.fig + RELOC/doc/latex/prosper/green-bullet-on-blue-wc.gif + RELOC/doc/latex/prosper/green-bullet-on-blue.gif + RELOC/doc/latex/prosper/green-bullet-on-white.gif + RELOC/doc/latex/prosper/gyom.tex + RELOC/doc/latex/prosper/manifest.txt + RELOC/doc/latex/prosper/prosper-doc.pdf details="Package documentation" + RELOC/doc/latex/prosper/prosper-doc.tex + RELOC/doc/latex/prosper/prosper-structure.fig + RELOC/doc/latex/prosper/prosper-template.jpg + RELOC/doc/latex/prosper/prosper-tour.pdf details="A brief example of usage" + RELOC/doc/latex/prosper/prosper-tour.tex + RELOC/doc/latex/prosper/prosper.png + RELOC/doc/latex/prosper/prosper.ui + RELOC/doc/latex/prosper/red-bullet-on-blue-wc.gif + RELOC/doc/latex/prosper/red-bullet-on-blue.gif + RELOC/doc/latex/prosper/red-bullet-on-white.gif + RELOC/doc/latex/prosper/rico.tex + RELOC/doc/latex/prosper/rotation.tex + RELOC/doc/latex/prosper/seminar-bg2-lepennec.fix + RELOC/doc/latex/prosper/yellow-bullet-on-blue-wc.gif + RELOC/doc/latex/prosper/yellow-bullet-on-blue.gif + RELOC/doc/latex/prosper/yellow-bullet-on-white.gif +runfiles size=199 + RELOC/tex/latex/prosper/PPRalcatel.sty + RELOC/tex/latex/prosper/PPRalienglow.sty + RELOC/tex/latex/prosper/PPRautumn.sty + RELOC/tex/latex/prosper/PPRazure.sty + RELOC/tex/latex/prosper/PPRblends.sty + RELOC/tex/latex/prosper/PPRcapsules.sty + RELOC/tex/latex/prosper/PPRcontemporain.sty + RELOC/tex/latex/prosper/PPRcorners.sty + RELOC/tex/latex/prosper/PPRdarkblue.sty + RELOC/tex/latex/prosper/PPRdefault.sty + RELOC/tex/latex/prosper/PPRframes.sty + RELOC/tex/latex/prosper/PPRfyma.sty + RELOC/tex/latex/prosper/PPRgyom.sty + RELOC/tex/latex/prosper/PPRlignesbleues.sty + RELOC/tex/latex/prosper/PPRmancini.sty + RELOC/tex/latex/prosper/PPRnuancegris.sty + RELOC/tex/latex/prosper/PPRprettybox.sty + RELOC/tex/latex/prosper/PPRrico.sty + RELOC/tex/latex/prosper/PPRserpaggi.sty + RELOC/tex/latex/prosper/PPRthomasd.sty + RELOC/tex/latex/prosper/PPRtroispoints.sty + RELOC/tex/latex/prosper/PPRwhitecross.sty + RELOC/tex/latex/prosper/PPRwinter.sty + RELOC/tex/latex/prosper/PPRwj.sty + RELOC/tex/latex/prosper/angleHG.ps + RELOC/tex/latex/prosper/arrow-glow.ps + RELOC/tex/latex/prosper/barre-rico.ps + RELOC/tex/latex/prosper/blue-inverted-arrow.ps + RELOC/tex/latex/prosper/boule-base.eps + RELOC/tex/latex/prosper/boulebleue-fondblanc.eps + RELOC/tex/latex/prosper/boulerouge-fondblanc.eps + RELOC/tex/latex/prosper/bouleverte-fondblanc.eps + RELOC/tex/latex/prosper/bullet-glow.ps + RELOC/tex/latex/prosper/compilation.eps + RELOC/tex/latex/prosper/degrade-base.eps + RELOC/tex/latex/prosper/degrade-blanc-bleu.eps + RELOC/tex/latex/prosper/green-bullet-on-blue-wc.ps + RELOC/tex/latex/prosper/green-bullet-on-blue.ps + RELOC/tex/latex/prosper/green-bullet-on-white.ps + RELOC/tex/latex/prosper/green-inverted-arrow.ps + RELOC/tex/latex/prosper/gyom.ps + RELOC/tex/latex/prosper/prosper-structure.eps + RELOC/tex/latex/prosper/prosper.cls + RELOC/tex/latex/prosper/red-bullet-on-blue-wc.ps + RELOC/tex/latex/prosper/red-bullet-on-blue.ps + RELOC/tex/latex/prosper/red-bullet-on-white.ps + RELOC/tex/latex/prosper/red-inverted-arrow.ps + RELOC/tex/latex/prosper/rico.ps + RELOC/tex/latex/prosper/rico_bullet1.ps + RELOC/tex/latex/prosper/rico_bullet2.ps + RELOC/tex/latex/prosper/rico_bullet3.ps + RELOC/tex/latex/prosper/rotation.ps + RELOC/tex/latex/prosper/rule-glow.ps + RELOC/tex/latex/prosper/yellow-bullet-on-blue-wc.ps + RELOC/tex/latex/prosper/yellow-bullet-on-blue.ps + RELOC/tex/latex/prosper/yellow-bullet-on-white.ps +catalogue-also ifmslide ha-prosper +catalogue-contact-repository http://prosper.sourceforge.net/ +catalogue-ctan /macros/latex/contrib/prosper +catalogue-license lppl1.2 +catalogue-topics presentation +catalogue-version 1.0h + +name protex +category Package +revision 41633 +shortdesc Literate programming package +relocated 1 +longdesc ProTeX is a simple but powerful literate programming tool, +longdesc which is designed to generate useful hypertext output (either +longdesc PDF, or HTML using TeX4ht). +containersize 14552 +containerchecksum be8ea34f282fdd739f72f9b33375bec3be5055bc953c7a441d769ac1e7568af9327ae6030f67a805188dbd485ee8223936921590ec86269e371da6d3ee353afe +doccontainersize 5496 +doccontainerchecksum 95746823c32526fb5e2c9968749a7da2149d23c2ec9f1ced2a655a4fe54ad272bb414abd0be0d78775b0ac95e6440d9b6ead609de7615dcceb0186e4683e4138 +docfiles size=5 + RELOC/doc/latex/protex/ChangeLog + RELOC/doc/latex/protex/README +runfiles size=17 + RELOC/tex/latex/protex/AlProTex.sty + RELOC/tex/latex/protex/ProTex.sty +catalogue-ctan /web/protex +catalogue-license lppl +catalogue-topics litprog + +name protocol +category Package +revision 25562 +shortdesc A class for minutes of meetings +relocated 1 +longdesc The present version of the class supports German meeting +longdesc minutes including vote results and action items. The author has +longdesc ambitions to internationalise the code, and would welcome +longdesc support in the work. +containersize 2796 +containerchecksum e9555a25b0051592bd700df5b7335ad07eff024efd1efc4ef620fe7ad37866aa1edc8f354a7c772b3a298935bcffa9b5b2b49c2b0a14c868ae744cb9165bfd19 +doccontainersize 324704 +doccontainerchecksum f047068c0b9176087cd56530c9b73d30bbffb0d4b958cefae39f1f3bc924fbe705e81b5c867735715566b674379d1731e1d58b123dbbda3686a2b84f42674338 +docfiles size=81 + RELOC/doc/latex/protocol/README details="Bundle readme" language="en" + RELOC/doc/latex/protocol/protest.tex + RELOC/doc/latex/protocol/protocol.pdf details="Package documentation (German)" language="de" +srccontainersize 6556 +srccontainerchecksum f41e90e822d9cffd941a9be8b918f5817c5757c2911a3c2162899d9e074390fc4500d8617e385f5edada4c2accf5a08421cab6192505721deefb4b1ceba136e5 +srcfiles size=6 + RELOC/source/latex/protocol/protocol.dtx + RELOC/source/latex/protocol/protocol.ins +runfiles size=2 + RELOC/tex/latex/protocol/protocol.cls +catalogue-ctan /macros/latex/contrib/protocol +catalogue-license lppl1.3 +catalogue-topics meeting-admin +catalogue-version 1.13 + +name prtec +category Package +revision 51919 +shortdesc A template for PRTEC conference papers +relocated 1 +longdesc This package provides a LaTeX class, a BibTeX style, and a +longdesc LaTeX template to format conference papers for the Pacific Rim +longdesc Thermal Engineering Conference (PRTEC). The .tex and .cls files +longdesc are commented and should be self-explanatory. The package +longdesc depends on newtx. +containersize 12056 +containerchecksum 06e946526f194e36b55c91c46615c74a255411ff3de2fba005a672741830a5bfc162be122a7f03d00374917ab70dd789549a2976280db8c8106999ab7e0854e4 +doccontainersize 360784 +doccontainerchecksum fb299846eca43fb054ff441c2eed6f87382cbb58419947092d04bfa99102e3db7a8395c9b974395b579f6b5700f55c2c730c162bcd19e5246fbc64b80acf5681 +docfiles size=138 + RELOC/doc/latex/prtec/PRTEC19-template.pdf details="Package documentation" + RELOC/doc/latex/prtec/PRTEC19-template.tex + RELOC/doc/latex/prtec/README.md details="Readme" + RELOC/doc/latex/prtec/prtec-sample.bib + RELOC/doc/latex/prtec/sample-figure.pdf +runfiles size=13 + RELOC/bibtex/bst/prtec/prtec.bst + RELOC/tex/latex/prtec/prtec.cls +catalogue-ctan /macros/latex/contrib/prtec +catalogue-license mit +catalogue-topics class bibtex-sty confproc engineering scientific-docs +catalogue-version 1.06 + +name przechlewski-book +category Package +revision 23552 +shortdesc Examples from Przechlewski's LaTeX book +relocated 1 +longdesc The bundle provides machine-readable copies of the examples +longdesc from the book "Praca magisterska i dyplomowa z programem +longdesc LaTeX". +containersize 9680 +containerchecksum 18b9546576957553b477a1c5a90e6780770f18d6aced92b17017c44770b6bfa9c3cf928500a9e56c6c67f45d375bc12ad8ebc97eb1589f3cf7b5b3ed2f7b55c6 +doccontainersize 289780 +doccontainerchecksum 0441621561c2c4208d083f84eaf47573de94248cc1aaf027061de636c1a65f35a307260eaf390257bd02acac34b42963f96030ee27c83650deb11234edec89bf +docfiles size=120 + RELOC/doc/latex/przechlewski-book/LICENSE + RELOC/doc/latex/przechlewski-book/Makefile + RELOC/doc/latex/przechlewski-book/README details="Readme (English)" language="en" + RELOC/doc/latex/przechlewski-book/README.pl details="Readme (Polish)" language="pl" + RELOC/doc/latex/przechlewski-book/TAM-pl.pdf + RELOC/doc/latex/przechlewski-book/b313.bib + RELOC/doc/latex/przechlewski-book/p21.tex + RELOC/doc/latex/przechlewski-book/p22.tex + RELOC/doc/latex/przechlewski-book/p23.tex + RELOC/doc/latex/przechlewski-book/p24.tex + RELOC/doc/latex/przechlewski-book/p31.tex + RELOC/doc/latex/przechlewski-book/p310.tex + RELOC/doc/latex/przechlewski-book/p311.tex + RELOC/doc/latex/przechlewski-book/p312.tex + RELOC/doc/latex/przechlewski-book/p313.tex + RELOC/doc/latex/przechlewski-book/p313_utf8.tex + RELOC/doc/latex/przechlewski-book/p32.tex + RELOC/doc/latex/przechlewski-book/p33.tex + RELOC/doc/latex/przechlewski-book/p34.tex + RELOC/doc/latex/przechlewski-book/p35.tex + RELOC/doc/latex/przechlewski-book/p36.tex + RELOC/doc/latex/przechlewski-book/p37.tex + RELOC/doc/latex/przechlewski-book/p38.tex + RELOC/doc/latex/przechlewski-book/p39.tex + RELOC/doc/latex/przechlewski-book/p41.tex + RELOC/doc/latex/przechlewski-book/p42.tex + RELOC/doc/latex/przechlewski-book/p43.tex + RELOC/doc/latex/przechlewski-book/p44.tex + RELOC/doc/latex/przechlewski-book/p45.tex + RELOC/doc/latex/przechlewski-book/p46.tex + RELOC/doc/latex/przechlewski-book/rys1_5.tex + RELOC/doc/latex/przechlewski-book/wkmgr.bib + RELOC/doc/latex/przechlewski-book/wkmgr.html + RELOC/doc/latex/przechlewski-book/wkmgr1.pdf + RELOC/doc/latex/przechlewski-book/wkmgr1.tex + RELOC/doc/latex/przechlewski-book/wkmgr2.pdf + RELOC/doc/latex/przechlewski-book/wkmgr2.tex +runfiles size=10 + RELOC/bibtex/bst/przechlewski-book/papalike.bst + RELOC/tex/latex/przechlewski-book/upmgr.cls + RELOC/tex/latex/przechlewski-book/wkmgr.cls +catalogue-ctan /info/examples/przechlewski-book-examples +catalogue-license lppl +catalogue-topics book-ex + +name ps2eps +category TLCore +revision 53559 +shortdesc Produce Encapsulated PostScript from PostScript +longdesc Produce Encapsulated PostScript Files (EPS/EPSF) from a +longdesc one-page PostScript document, or any PostScript document. A +longdesc correct Bounding Box is calculated for the EPS files and some +longdesc PostScript command sequences that can produce errorneous +longdesc results on printers are filtered. The input is cropped to +longdesc include just the image contained in the PostScript file. The +longdesc EPS files can then be included into TeX documents. Other +longdesc programs like ps2epsi (a script distributed with ghostscript) +longdesc don't always calculate the correct bounding box (because the +longdesc values are put on the PostScript stack which may get corrupted +longdesc by bad PostScript code) or they round it off, resulting in +longdesc clipping the image. Therefore ps2eps uses a resolution of 144 +longdesc dpi to get the correct bounding box. The bundle includes +longdesc binaries for Linux, Solaris, Digital Unix or Windows +longdesc 2000/9x/NT; for other platforms, the user needs perl, +longdesc ghostscript and an ANSI-C compiler. Included in the +longdesc distribution is the bbox program, an application to produce +longdesc Bounding Box values for rawppm or rawpbm format files. +depend ps2eps.ARCH +containersize 10792 +containerchecksum dd92a9ecfbe36be9d8bdf7aa969559953ff9b56c0c7b703375febea04e3255ecb478204f7284eef84ac1a188368f2a7fe2a40a9c69c938b037d3704b38054e42 +doccontainersize 57332 +doccontainerchecksum 53ca9f92488bb20d038340ea6f5bbbd7d31a1f7bf0aead699a37bb5bcb11f9cd3347016afc9c2ee61e61e5e040203553bb5f6b5aea4ee1d5474ec5d366ff6ef5 +docfiles size=22 + texmf-dist/doc/man/man1/bbox.1 + texmf-dist/doc/man/man1/bbox.man1.pdf + texmf-dist/doc/man/man1/ps2eps.1 + texmf-dist/doc/man/man1/ps2eps.man1.pdf +runfiles size=9 + texmf-dist/scripts/ps2eps/ps2eps.pl +catalogue-ctan /support/ps2eps +catalogue-license gpl +catalogue-topics ps-manip +catalogue-version 1.68 + +name ps2eps.aarch64-linux +category TLCore +revision 53999 +shortdesc aarch64-linux files of ps2eps +containersize 4168 +containerchecksum 4a8a19bb23522e77703a8d5e5b0b96c0271073443af9384c7838cec3354eec3c673e4bb8e3a5c5176e97a98e061e5b0284976cc01e2fab6e4bd8a02dbdd498d9 +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/bbox + bin/aarch64-linux/ps2eps + +name ps2eps.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of ps2eps +containersize 4448 +containerchecksum 2345380fc552e150d0950ee26bc6becdde39dd85e1780d3cb0b4375bfe812909e347919820e9fc0c5d5702f736aeeeeca03b4339619eff9cc1518b46e7da3a63 +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/bbox + bin/amd64-freebsd/ps2eps + +name ps2eps.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of ps2eps +containersize 4428 +containerchecksum d829c60e9ffd4e480a75b4c9665c174ee318be17de4d8228d76688ed09e9f62af6379265a76b39eacb9b0aaa711166dafc653cfde52b99ca67ab145c7f073ac5 +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/bbox + bin/amd64-netbsd/ps2eps + +name ps2eps.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of ps2eps +containersize 3852 +containerchecksum 2ce521cffff1a49ba1122d66718a0ffad6a3b85ab50761a40b40fd728c252c86fceb2e9903d2b32541b22416b215dbca87adacdcd78470e7a44ab0ae199c6654 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/bbox + bin/armhf-linux/ps2eps + +name ps2eps.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of ps2eps +containersize 4584 +containerchecksum 61b00d80a343353428e5961471dcb7981b701e79d5120cfb62597823c7dcb0f8375fefa0d59f1315438e412c8e560207652b94c1ba5a1a1a0ae21e4ebee0c9ae +binfiles arch=i386-cygwin size=5 + bin/i386-cygwin/bbox.exe + bin/i386-cygwin/ps2eps + +name ps2eps.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of ps2eps +containersize 4172 +containerchecksum 2bc1407792fb16057b474fd3dea9b3e603eca399ee1ca246910ea57092ffb5c3d0fd15dee52089d1eadbdedfded3ea4f2679e6587d36eab75ad43e40ead1d730 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/bbox + bin/i386-freebsd/ps2eps + +name ps2eps.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of ps2eps +containersize 4172 +containerchecksum 06b48030c8c18bd2cd57ebe74ef6960ba62f38a3fe6e65be3c408425bf04546add1fa8a73aaaad38d71c16a5ff3e26fdfa6237fab38f11a4c12405f0a57cfe99 +binfiles arch=i386-linux size=3 + bin/i386-linux/bbox + bin/i386-linux/ps2eps + +name ps2eps.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of ps2eps +containersize 4448 +containerchecksum 572f02a057ecd05c3224145662baefcddcad680418a7236550498ce272c263f3301ef2d90d0dfc79f31260e3e8e7212ba5ba8ce374938649b4f56b7481f7cb07 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/bbox + bin/i386-netbsd/ps2eps + +name ps2eps.i386-solaris +category TLCore +revision 40549 +shortdesc i386-solaris files of ps2eps +containersize 4712 +containerchecksum 04541900ae23256c8ed13ca50fb0c106ddefc91f0123a0374643ab60b737f42929e345b9ab285df74f731b498e460d53e9de96001cc05804e9cb4c84705b0df3 +binfiles arch=i386-solaris size=4 + bin/i386-solaris/bbox + bin/i386-solaris/ps2eps + +name ps2eps.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of ps2eps +containersize 12148 +containerchecksum bd0596014343e03624d99048f1af48bea205655fd0a4d6ef6cceb53d4190484d527ace4135a7625cbe8bb92ecbe3194c0d3285fef503b7c68a01dbb84432c82e +binfiles arch=universal-darwin size=30 + bin/universal-darwin/bbox + bin/universal-darwin/ps2eps + +name ps2eps.win32 +category TLCore +revision 53994 +shortdesc win32 files of ps2eps +containersize 5152 +containerchecksum 07708e5f8eb11c32f69053790c07f1f99317d1974c9f0620d40e5c9e51b7ec13a19a099868f5c3f87010598cca4a2c65fc898862a3f3620aef99b3fee9f7ca6f +binfiles arch=win32 size=4 + bin/win32/bbox.exe + bin/win32/ps2eps.exe + +name ps2eps.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of ps2eps +containersize 4496 +containerchecksum 180538bbd3f8a2d98ab96460c5432906ba2ae1aa24369610cf4a96c6324bd76e68fc236d772e264c0b09188d6be79042911b0445dcf6e6d9c27f98b3b246b90d +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/bbox.exe + bin/x86_64-cygwin/ps2eps + +name ps2eps.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of ps2eps +containersize 3568 +containerchecksum 9c86832880118a5c1222f820052e9b814cf7df7a3885a95c7f92d18f4b6acdf5da38f3e78349e2a0fd4ad4605ba59d3ba964647eed76f7ff192c53639d5fdce8 +binfiles arch=x86_64-darwinlegacy size=5 + bin/x86_64-darwinlegacy/bbox + bin/x86_64-darwinlegacy/ps2eps + +name ps2eps.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of ps2eps +containersize 4104 +containerchecksum d6a45e2616bc31d68ec0d5fe1ea8e9eef638bd65908c771dc63219e1c32d5297974cda6d2772877b426d35f499230cba3e7665fbf236e430641f3e5ec267af64 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/bbox + bin/x86_64-linux/ps2eps + +name ps2eps.x86_64-linuxmusl +category TLCore +revision 54264 +shortdesc x86_64-linuxmusl files of ps2eps +containersize 4080 +containerchecksum 8186e4da0508c26056a93aefee222fb3dd998a017e6f365aaac86ff59de3dc17a575cdc3e940696f413ddcf485f85e556fc91f907c980de16f772a9f4cf6348c +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/bbox + bin/x86_64-linuxmusl/ps2eps + +name ps2eps.x86_64-solaris +category TLCore +revision 41034 +shortdesc x86_64-solaris files of ps2eps +containersize 4664 +containerchecksum 916fa8bbde4d11501d5431d4b03df7fd53dde0fb4ba435954cc2f456d5a9572964121431b409b04cd850f5f10cec11cf8dddbaee2de247e939039f8d4f2d36de +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/bbox + bin/x86_64-solaris/ps2eps + +name ps2pk +category TLCore +revision 52851 +shortdesc Generate a PK font from an Adobe Type 1 font +longdesc Generates a PK file from an Adobe Type 1 font. PK fonts are (or +longdesc used to be) valuable in enabling previewers to view documents +longdesc generated that use Type 1 fonts. The program makes use of code +longdesc donated to the X consortium by IBM. +depend ps2pk.ARCH +containersize 504 +containerchecksum 4b3ead8d2708a182d0c158dd8ae5077fb2f4a94c7f6fff52a66d6479d4c05de3d742e4c960ab79b63084435bef491866c38e01d77c41ae3d630c7a32450d0a11 +doccontainersize 62396 +doccontainerchecksum c5b22a86807378fd7d6d83e8802780567a2473e87875bee4c827a48ff470911855bc4a1db4f439fbda1baf71f714086b96e6e78ee059590fb6ebb45c58abca4f +docfiles size=27 + texmf-dist/doc/man/man1/mag.1 + texmf-dist/doc/man/man1/mag.man1.pdf + texmf-dist/doc/man/man1/pfb2pfa.1 + texmf-dist/doc/man/man1/pfb2pfa.man1.pdf + texmf-dist/doc/man/man1/pk2bm.1 + texmf-dist/doc/man/man1/pk2bm.man1.pdf + texmf-dist/doc/man/man1/ps2pk.1 + texmf-dist/doc/man/man1/ps2pk.man1.pdf +catalogue-ctan /fonts/utilities/ps2pk +catalogue-license other-free +catalogue-topics ps-manip font-proc + +name ps2pk.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of ps2pk +containersize 86036 +containerchecksum 9fbf48996ff4c324d8a1bd43da41c33404109d4dadb2d42b0cc6c3c9d0dff2af10f242d88de288ae8f5dd7acf066b7d4f134e024e0660672afce526bfbe9df0a +binfiles arch=aarch64-linux size=64 + bin/aarch64-linux/mag + bin/aarch64-linux/pfb2pfa + bin/aarch64-linux/pk2bm + bin/aarch64-linux/ps2pk + +name ps2pk.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of ps2pk +containersize 95256 +containerchecksum 0910d3cab27c06de7df258b9677912944df54102befdf58317b37e71749ba83fc0934be73c3fb91c1af1032b293f9a6cbe7eb5e27f3c4fdc0db8c8a92dcb639f +binfiles arch=amd64-freebsd size=60 + bin/amd64-freebsd/mag + bin/amd64-freebsd/pfb2pfa + bin/amd64-freebsd/pk2bm + bin/amd64-freebsd/ps2pk + +name ps2pk.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of ps2pk +containersize 82608 +containerchecksum 27a59639538c9939fd8833a3321bd6e5d001709bad3c546b533cde6aa541e6af3d26a07ad80ce87425ea3a05333eb19d9954085a4b69a8e2205ea66c1360c039 +binfiles arch=amd64-netbsd size=68 + bin/amd64-netbsd/mag + bin/amd64-netbsd/pfb2pfa + bin/amd64-netbsd/pk2bm + bin/amd64-netbsd/ps2pk + +name ps2pk.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of ps2pk +containersize 70772 +containerchecksum d37fe60d3aefc89c61c20fc92c8341ae478dc9245fc637ad7aa4c26a906cb076312bc7d2c5041f3becd9963d1ce7b01c2066a47031a74d7582aa26babc0cd1bd +binfiles arch=armhf-linux size=48 + bin/armhf-linux/mag + bin/armhf-linux/pfb2pfa + bin/armhf-linux/pk2bm + bin/armhf-linux/ps2pk + +name ps2pk.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of ps2pk +containersize 57448 +containerchecksum f24707767d468453fa10637f1e7f18e15bedd03215b3bf8cc98c5b9585d33ef32b3c82920e8b321f1ba428b0733701f0103eabd13900fb854295924d00cac236 +binfiles arch=i386-cygwin size=41 + bin/i386-cygwin/mag.exe + bin/i386-cygwin/pfb2pfa.exe + bin/i386-cygwin/pk2bm.exe + bin/i386-cygwin/ps2pk.exe + +name ps2pk.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of ps2pk +containersize 84744 +containerchecksum 2b4d555c0e0a19d7dc022c7fce93fbd2a7804263b30e184d4fc3b7f17ac0d500ae53b51320fe42e19c2f9644340d4f9f483c901b13c66b382936c4f4763f0fe6 +binfiles arch=i386-freebsd size=54 + bin/i386-freebsd/mag + bin/i386-freebsd/pfb2pfa + bin/i386-freebsd/pk2bm + bin/i386-freebsd/ps2pk + +name ps2pk.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of ps2pk +containersize 91820 +containerchecksum 410f08fb410ded312b7666284f004577dbd008358b9420d9ab751651553d745428ebd835ed6b9c9fb756272b1f67a04ee85093ee56383b87109635ec555a2c91 +binfiles arch=i386-linux size=59 + bin/i386-linux/mag + bin/i386-linux/pfb2pfa + bin/i386-linux/pk2bm + bin/i386-linux/ps2pk + +name ps2pk.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of ps2pk +containersize 73680 +containerchecksum ac6cd0589d540bf67548ac4b756fb009be311c42fa80eaa46df8852186da942ced8c669059eb87b9ef53a66440b4780fd5c41129927b21676e82d442e7cc5c1f +binfiles arch=i386-netbsd size=63 + bin/i386-netbsd/mag + bin/i386-netbsd/pfb2pfa + bin/i386-netbsd/pk2bm + bin/i386-netbsd/ps2pk + +name ps2pk.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of ps2pk +containersize 85244 +containerchecksum 6e0311759648eae73e19445fbd301c3f77221dcb0d80f9179924378a523d181e8171273c2191f55c2a165dac4dba298104669a26bf1d590c3350a7ac90c18e74 +binfiles arch=i386-solaris size=52 + bin/i386-solaris/mag + bin/i386-solaris/pfb2pfa + bin/i386-solaris/pk2bm + bin/i386-solaris/ps2pk + +name ps2pk.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of ps2pk +containersize 174516 +containerchecksum ac6086ecffec23666873fa450f560688dfbb044886898af0b91303fab1fe83af98e0b2366a1f1accc104f1a8b462a02447fa5fd5742c48127afea061178b115c +binfiles arch=universal-darwin size=195 + bin/universal-darwin/mag + bin/universal-darwin/pfb2pfa + bin/universal-darwin/pk2bm + bin/universal-darwin/ps2pk + +name ps2pk.win32 +category TLCore +revision 58783 +shortdesc win32 files of ps2pk +containersize 59264 +containerchecksum 24ce064a111f84241fbd29615973304488df939ee4a0b1c39a7c1708e743e9ec82311e966a49eebd06e9bacf996bd572c49d0409a1d64686b268bf94851de4b6 +binfiles arch=win32 size=44 + bin/win32/mag.exe + bin/win32/pfb2pfa.exe + bin/win32/pk2bm.exe + bin/win32/ps2pk.exe + +name ps2pk.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of ps2pk +containersize 61576 +containerchecksum 9540e8619103fc26f1f1c7eb09f8d3fbf449910a2d117a26ef55bbda1f041cd69df803518541919e6c139f8bf7b39e56314c32f5c1dd01e070fa0df4629d39b3 +binfiles arch=x86_64-cygwin size=41 + bin/x86_64-cygwin/mag.exe + bin/x86_64-cygwin/pfb2pfa.exe + bin/x86_64-cygwin/pk2bm.exe + bin/x86_64-cygwin/ps2pk.exe + +name ps2pk.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of ps2pk +containersize 85048 +containerchecksum 6c7dcd4283ca061687267b7f7586b4417cc38c1b7a4daef90638968fdbb8955dbc9f12863b7a174d2298445fd42f3ee52def513ce2547642ad21e82342569b3a +binfiles arch=x86_64-darwinlegacy size=58 + bin/x86_64-darwinlegacy/mag + bin/x86_64-darwinlegacy/pfb2pfa + bin/x86_64-darwinlegacy/pk2bm + bin/x86_64-darwinlegacy/ps2pk + +name ps2pk.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of ps2pk +containersize 89504 +containerchecksum 552a41d6722df6bc805be58ba5b5467b902061c2587db75751aa934005e331827734b3583c7b8d5698348ff634655441da6a73c1899f2c97236e921ec216f112 +binfiles arch=x86_64-linux size=57 + bin/x86_64-linux/mag + bin/x86_64-linux/pfb2pfa + bin/x86_64-linux/pk2bm + bin/x86_64-linux/ps2pk + +name ps2pk.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of ps2pk +containersize 93484 +containerchecksum 9f23acda95bafabe280ce3005e025aece21a6ab36e942d6e9f2b255bd343d20d7160a13e47f9e3553d3865df1d321eac12946244c7691a05a93a9391e3ee65e5 +binfiles arch=x86_64-linuxmusl size=63 + bin/x86_64-linuxmusl/mag + bin/x86_64-linuxmusl/pfb2pfa + bin/x86_64-linuxmusl/pk2bm + bin/x86_64-linuxmusl/ps2pk + +name ps2pk.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of ps2pk +containersize 95080 +containerchecksum aeae35af09fa35e3a0e418e4b9c3f877cdfb9d670998b121868fef2821d60a0467be567824421f4125d5f0c3702dfdb7e3ea66c9169a5a89b0a95080b5ca035d +binfiles arch=x86_64-solaris size=62 + bin/x86_64-solaris/mag + bin/x86_64-solaris/pfb2pfa + bin/x86_64-solaris/pk2bm + bin/x86_64-solaris/ps2pk + +name psbao +category Package +revision 55013 +shortdesc Draw Bao diagrams +relocated 1 +longdesc The package draws Bao diagrams in LaTeX. The package is a +longdesc development of psgo, and uses PSTricks to draw the diagrams. +containersize 4116 +containerchecksum eb391c615ed622d928725b3a227ce0141e75ccb49a0e2e915d41bf12e343a9622d9032c4c3d6935cdf6e36c6afb4d3138d5acf17febe4691fa6e5c34da01c2b8 +doccontainersize 96528 +doccontainerchecksum 8fedc9f84eb5f640ff9644c933b5eea71c1d4f9e03f861ca7e8820a582cb31f38e3a9e4625fb1b28ff189f02b3546734eb71e1491f63d4508d3d7b5f7ac635f4 +docfiles size=30 + RELOC/doc/latex/psbao/Changes + RELOC/doc/latex/psbao/README details="Readme" + RELOC/doc/latex/psbao/psbaomanual.pdf details="Package manual" +runfiles size=5 + RELOC/tex/latex/psbao/psbao.sty +catalogue-ctan /graphics/pstricks/contrib/psbao +catalogue-license lppl +catalogue-topics games +catalogue-version 1.0 + +name pseudo +category Package +revision 52582 +shortdesc Straightforward pseudocode +relocated 1 +longdesc The package permits writing pseudocode without much fuss and +longdesc with quite a bit of configurability. Its main environment +longdesc combines aspects of enumeration, tabbing and tabular for +longdesc nonintrusive line numbering, indentation and highlighting, and +longdesc there is functionality for typesetting common syntactic +longdesc elements such as keywords, identifiers, and comments. The +longdesc package relies on aliascnt, array, colortbl, expl3, l3keys2e, +longdesc xcolor, and xparse. +containersize 5012 +containerchecksum efe90b9cd0ada5a099886c8d0bfcb697fd831aef5fe60f6eeb0246dd8ac8bf43782901d77f30cc070b114c961d47602fb2b2d91aef74e9c266ae8323e722ac32 +doccontainersize 614092 +doccontainerchecksum 3ad7ef72a132e91d030f150df2fbb217115d493acaab1c7c61238277ca3220f92091451c806920b7a848e15c5e5a928e30645854d12ad39a8e5e5fc5949d7651 +docfiles size=200 + RELOC/doc/latex/pseudo/LICENSE + RELOC/doc/latex/pseudo/Makefile + RELOC/doc/latex/pseudo/README.md details="Readme" + RELOC/doc/latex/pseudo/VERSION + RELOC/doc/latex/pseudo/doc/fig/hilitefig.tex + RELOC/doc/latex/pseudo/doc/fig/kwfig.tex + RELOC/doc/latex/pseudo/doc/fig/pausefig.tex + RELOC/doc/latex/pseudo/doc/fig/readmecode.tex + RELOC/doc/latex/pseudo/doc/fig/readmefig.svg + RELOC/doc/latex/pseudo/doc/fig/readmefig.tex + RELOC/doc/latex/pseudo/doc/pseudo.bib + RELOC/doc/latex/pseudo/doc/pseudo.pdf details="Package documentation" + RELOC/doc/latex/pseudo/doc/pseudo.tex + RELOC/doc/latex/pseudo/test/pseudotest.tex +runfiles size=5 + RELOC/tex/latex/pseudo/pseudo.sty +catalogue-also pseudocode +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-license mit +catalogue-topics pseudocode expl3 +catalogue-version 1.1.3 + +name pseudocode +category Package +revision 54080 +shortdesc LaTeX environment for specifying algorithms in a natural way +relocated 1 +longdesc This package provides the environment "pseudocode" for +longdesc describing algorithms in a natural manner. +containersize 2420 +containerchecksum 8335336bb46c0bc362bb10b6bed547d95230a29ba8144549476ec984323bc79475b11afef91409761e4f651dc4c28669639106d14c4dcceef7f90290e5f77b12 +doccontainersize 134004 +doccontainerchecksum ad53ed572d7d79caa21baa8c34482ca6032369824967e2966479e85a95d140a6477acf0e69ca7bc2d6dda6f8b161253b1afd43cc53ce4d44641dda64d82abe13 +docfiles size=43 + RELOC/doc/latex/pseudocode/README details="Readme" + RELOC/doc/latex/pseudocode/pseudocode.pdf details="Package documentation" + RELOC/doc/latex/pseudocode/pseudocode.tex +runfiles size=2 + RELOC/tex/latex/pseudocode/pseudocode.sty +catalogue-also pseudo +catalogue-ctan /macros/latex/contrib/pseudocode +catalogue-license lppl +catalogue-topics pseudocode + +name psfrag +category Package +revision 15878 +shortdesc Replace strings in encapsulated PostScript figures +relocated 1 +longdesc Allows LaTeX constructions (equations, picture environments, +longdesc etc.) to be precisely superimposed over Encapsulated PostScript +longdesc figures, using your own favorite drawing tool to create an EPS +longdesc figure and placing simple text 'tags' where each replacement is +longdesc to be placed, with PSfrag automatically removing these tags +longdesc from the figure and replacing them with a user specified LaTeX +longdesc construction, properly aligned, scaled, and/or rotated. +containersize 4464 +containerchecksum 71bf5c02e7a8a17eaa891f15c88777dcbbfc3ecf8b4a72dea49683f061bc86427ab813dbac5f5b8ab4742edcb92cd32d510675a80b0b3cdff2dc2cf127ee89fa +doccontainersize 68776 +doccontainerchecksum 072210deb2635a2032f6ac2d100ef72aa4471f69dec03fbb25fbb0d78b89aa2df0972b244d4335e8ed16e1a5f0cb8e04d22ad44dd5740fda59f9a4e5300befaa +docfiles size=30 + RELOC/doc/latex/psfrag/00readme.txt + RELOC/doc/latex/psfrag/announce.txt details="Release notice" + RELOC/doc/latex/psfrag/example.eps + RELOC/doc/latex/psfrag/pfgguide.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/psfrag/pfgguide.tex + RELOC/doc/latex/psfrag/testfig.eps +srccontainersize 13816 +srccontainerchecksum fd02b807b47f3818545e48825ddb11d188e9e3fa384b0f3412bb09051daedf73c2587a74d70aeda472047c1eac039252a25cacbf74a3c8df76be13a2644372de +srcfiles size=12 + RELOC/source/latex/psfrag/psfrag.dtx + RELOC/source/latex/psfrag/psfrag.ins +runfiles size=4 + RELOC/dvips/psfrag/psfrag.pro + RELOC/tex/latex/psfrag/psfrag.sty +catalogue-also psfragx +catalogue-ctan /macros/latex/contrib/psfrag +catalogue-license other-free +catalogue-topics graphics-text +catalogue-version 3.04 + +name psfrag-italian +category Package +revision 15878 +shortdesc PSfrag documentation in Italian +relocated 1 +longdesc This is a translation of the documentation that comes with the +longdesc psfrag documentation. +containersize 400 +containerchecksum 4d26f0191ffbbe7fa6a9aae1ece6e72739925b59a1a1db5ad3cbe8f2b3ece92ec8265f008e91fcabfe2e04863300db833eff3104486e9c33985ce5c7f8dd7543 +doccontainersize 136192 +doccontainerchecksum 7a513ff265d259adfbaee9ffb47856602004f19679dad1316f04d36848f2e22bff8c3164ba9b045e7a4a57df76c2ad17b071a9cac68d4b92cff57a29f1e99f55 +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-license gpl +catalogue-topics graphics italian-doc + +name psfragx +category Package +revision 26243 +shortdesc A psfrag eXtension +relocated 1 +longdesc PSfragX offers a mechanism to embed \psfrag commands, as +longdesc provided by the psfrag package, into the EPS file itself. Each +longdesc time a graphic is included, the EPS file is scanned. If some +longdesc tagged lines are found, they are used to define the psfrag +longdesc replacements that should be performed automatically. In +longdesc addition, a similar mechanism holds for overpic objects. These +longdesc are picture objects superimposed on the included graphic. A +longdesc similar mechanism is implemented in psfrag itself (but +longdesc deprecated in the documentation), but psfragx offers much more +longdesc flexibility. For example, if babel is used, it is possible to +longdesc define different replacements corresponding to different +longdesc languages. The replacements to take into account will be +longdesc selected on the basis of the current language of the document. +longdesc A Matlab script (LaPrint) is provided, to export an EPS file +longdesc with psfragx annotations ready embedded. +containersize 3792 +containerchecksum b02063b8c1df58133b951eb10763d3b9099376a473dc980fef801ab565326ac1c5539be3ee94ee5c79837c1e6265cf41d6554f66e8900df2663d5d7e727e0df6 +doccontainersize 365048 +doccontainerchecksum 863df965aa6abb99c115b06ed7d1b1660345e9bca0d0f5d62b6a7ffb55391688a92114edae7bd28ef8b715515c8bcf3c5b4fb4970cc1b6bd9cc068b09595cb10 +docfiles size=302 + RELOC/doc/latex/psfragx/README details="Readme" + RELOC/doc/latex/psfragx/README.laprint-3.16 + RELOC/doc/latex/psfragx/laprint.m + RELOC/doc/latex/psfragx/laprintdoc.ps details="LaPrint documentation:" + RELOC/doc/latex/psfragx/laprpfx.mat + RELOC/doc/latex/psfragx/pfxprint.m + RELOC/doc/latex/psfragx/psfragx.m + RELOC/doc/latex/psfragx/psfragx.pdf details="Psfragx documentation:" + RELOC/doc/latex/psfragx/psfragx_example.pdf + RELOC/doc/latex/psfragx/psfragx_example.tex + RELOC/doc/latex/psfragx/readmePFX.txt +srccontainersize 16584 +srccontainerchecksum f38ac5c21c7f366e952e71199321865a70376d1dfbcbed2ac993fa01f412f185a09725b9e6b1808167a5cf55d253b461a43a2f126cedd7d469645b7740702938 +srcfiles size=17 + RELOC/source/latex/psfragx/psfragx.drv + RELOC/source/latex/psfragx/psfragx.dtx + RELOC/source/latex/psfragx/psfragx.ins +runfiles size=4 + RELOC/tex/latex/psfragx/psfragx.cfg + RELOC/tex/latex/psfragx/psfragx.sty +catalogue-ctan /macros/latex/contrib/psfragx +catalogue-license lppl +catalogue-topics graphics-text +catalogue-version 1.1 + +name psgo +category Package +revision 15878 +shortdesc Typeset go diagrams with PSTricks +relocated 1 +containersize 3036 +containerchecksum 75791ac8c340cd72139c50b2e2a05f6001edf2b79bbb9fcb4c9118f2acbc67643469c8f6da34122bf001e85af60b5b0050bf3c7b5bcce7c393e7930e3cfe7eaf +doccontainersize 86520 +doccontainerchecksum 9d061c884f76eb87e86cb441ebb693a9c64daca024c35dd631d660f3d1f8b1541c40e285d5f4115b36e2b02b7640ea7be70f4527e7ae92c6d6173625b215b7cc +docfiles size=31 + RELOC/doc/latex/psgo/Changes + RELOC/doc/latex/psgo/README details="Readme" + RELOC/doc/latex/psgo/psgomanual.pdf details="Package documentation" + RELOC/doc/latex/psgo/psgomanual.tex +runfiles size=3 + RELOC/tex/latex/psgo/psgo.sty +catalogue-ctan /graphics/pstricks/contrib/psgo +catalogue-license lppl +catalogue-topics games pstricks +catalogue-version 0.17 + +name psizzl +category Package +revision 15878 +shortdesc A TeX format for physics papers +relocated 1 +longdesc PSIZZL is a TeX format for physics papers written at SLAC and +longdesc used at several other places. It dates from rather early in the +longdesc development of TeX82; as a result, some of the descriptions of +longdesc limitations look rather quaint to modern eyes. +containersize 23084 +containerchecksum adcd254a9991839c623b3f75098276dc26df935db1528d39f8588681b87237febe81f8289aab747486df92bc9af2103638734fc22c43ace8cdea1733d2a66360 +doccontainersize 5448 +doccontainerchecksum e9d65b3b0c364fcc7632ab83974d8685568d4135cbd8568cbf69e9162dbb80283724ada72891a72dce2fabe35d846c6f09b05f1123f8fe72ae749215170ee996 +docfiles size=5 + RELOC/doc/otherformats/psizzl/base/psizzl.commands details="List of commands available" + RELOC/doc/otherformats/psizzl/base/psizzl.doc +srccontainersize 640 +srccontainerchecksum fabcb5343912bf005f5ad73b2ff9444172ad6f36fe42ec492903ed6d19d3c2b67775790b15cb37a688d9c0b8d78145963f8594b67e91d07284adb5d26cd2ea52 +srcfiles size=1 + RELOC/source/psizzl/base/aaaread.me +runfiles size=31 + RELOC/tex/psizzl/base/chapters.Psizzl + RELOC/tex/psizzl/base/citation.Psizzl + RELOC/tex/psizzl/base/fontdefs.Psizzl + RELOC/tex/psizzl/base/index.Psizzl + RELOC/tex/psizzl/base/institut.Psizzl + RELOC/tex/psizzl/base/letter.Psizzl + RELOC/tex/psizzl/base/lists.Psizzl + RELOC/tex/psizzl/base/macros.Psizzl + RELOC/tex/psizzl/base/memo.Psizzl + RELOC/tex/psizzl/base/mypsizzl.tex + RELOC/tex/psizzl/base/options.Psizzl + RELOC/tex/psizzl/base/output.Psizzl + RELOC/tex/psizzl/base/picture.Psizzl + RELOC/tex/psizzl/base/psizzl.tex + RELOC/tex/psizzl/base/publicat.Psizzl + RELOC/tex/psizzl/base/symbols.Psizzl + RELOC/tex/psizzl/base/thesis.Psizzl + RELOC/tex/psizzl/config/psizzl.ini +catalogue-ctan /macros/psizzl +catalogue-license lppl +catalogue-topics physics format +catalogue-version 0.35 + +name pslatex +category Package +revision 57434 +shortdesc Use PostScript fonts by default +relocated 1 +longdesc A small package that makes LaTeX default to 'standard' +longdesc PostScript fonts. It is basically a merger of the times and the +longdesc (obsolete) mathptm packages from the psnfss suite. You must +longdesc have installed standard LaTeX and the psnfss PostScript fonts +longdesc to use this package. The main novel feature is that the pslatex +longdesc package tries to compensate for the visual differences between +longdesc the Adobe fonts by scaling Helvetica by 90%, and 'condensing' +longdesc Courier (i.e. scaling horizontally) by 85%. The package is +longdesc supplied with a (unix) shell file for a 'pslatex' command that +longdesc allows standard LaTeX documents to be processed, without +longdesc needing to edit the file. Note that current psnfss uses a +longdesc different technique for scaling Helvetica, and treats Courier +longdesc as a lost cause (there are better free fixed-width available +longdesc now, than there were when pslatex was designed). As a result, +longdesc pslatex is widely considered obsolete. +containersize 5824 +containerchecksum 64dc0f10f3aaa78a4d611d21601e5fb3f27c7c97bcf04f5dd3192f5253660edc862481f3b1bcb8b18b6cc07a6064e78953c31470bf36bc70103f2a83374483c4 +srccontainersize 1200 +srccontainerchecksum 086805aaf0b61b8e3e561627388ea1af67ef8dba3a0b5808ef3d9719652e76abf4353345ca2096e31fb33c9c960b01b4972754f29532a25e91ad59dc6c1d6cae +srcfiles size=3 + RELOC/source/latex/pslatex/fontinst/pslatex.tex + RELOC/source/latex/pslatex/shell/pslatex + RELOC/source/latex/pslatex/shell/pslatex.bat +runfiles size=9 + RELOC/fonts/map/dvips/pslatex/pcrr8rn.map + RELOC/fonts/tfm/public/pslatex/pcrr7tn.tfm + RELOC/fonts/tfm/public/pslatex/pcrr8rn.tfm + RELOC/fonts/tfm/public/pslatex/pcrr8tn.tfm + RELOC/fonts/vf/public/pslatex/pcrr7tn.vf + RELOC/fonts/vf/public/pslatex/pcrr8tn.vf + RELOC/tex/latex/pslatex/pslatex.sty +catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues +catalogue-contact-repository https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/latex/contrib/pslatex +catalogue-license lppl +catalogue-topics font-supp obsolete +catalogue-version 1.3 + +name psnfss +category Package +revision 54694 +shortdesc Font support for common PostScript fonts +relocated 1 +longdesc Font definition files, macros and font metrics for +longdesc freely-available Adobe Type 1 fonts. The font set consists of +longdesc the 'LaserWriter 35' set (originally 'freely available' because +longdesc embedded in PostScript printers), and a variety of other free +longdesc fonts, together with some additions. Note that while many of +longdesc the fonts are available in PostScript (and other) printers, +longdesc most publishers require fonts embedded in documents, which +longdesc requires that you have the fonts in your TeX system. +longdesc Fortunately, there are free versions of the fonts from URW +longdesc (available in the URW base5 bundle). The base set of text fonts +longdesc covered by PSNFSS are: AvantGarde, Bookman, Courier, Helvetica, +longdesc New Century Schoolbook, Palatino, Symbol, Times Roman and Zapf +longdesc Dingbats. In addition, the fonts Bitstream Charter and Adobe +longdesc Utopia are covered (those fonts were contributed to the Public +longdesc Domain by their commercial foundries). Separate packages are +longdesc provided to load each font for use as main text font. The +longdesc packages helvet (which allows Helvetica to be loaded with its +longdesc size scaled to something more nearly appropriate for its use as +longdesc a Sans-Serif font to match Times) and pifont (which provides +longdesc the means to select single glyphs from symbol fonts) are +longdesc tailored to special requirements of their fonts. Mathematics +longdesc are covered by the mathptmx package, which constructs passable +longdesc mathematics from a combination of Times Roman, Symbol and some +longdesc glyphs from Computer Modern, and by Pazo Math (optionally +longdesc extended with the fpl small-caps and old-style figures fonts) +longdesc which uses Palatino as base font, with the mathpazo fonts. The +longdesc bundle as a whole is part of the LaTeX 'required' set of +longdesc packages. +depend graphics +depend symbol +depend zapfding +execute addMap charter.map +execute addMap fpls.map +execute addMap pazo.map +execute addMap utopia.map +containersize 11936 +containerchecksum f7d1acebcd1d32a691221f396220358f3bb15dff2e2cebec4b537b1b790b68d8ce1164711983a52b4f04d6e470df2e3e5fec63bb1d3bf39fe205d5f0351299de +doccontainersize 260860 +doccontainerchecksum d1c14edccdf43ed2c786394bc04e9fd683b683532a9dc18d592f918ee8899234d23feb738128aa1418f441288cdbf0c6de832f8c4d98023926baeace36365a1d +docfiles size=81 + RELOC/doc/latex/psnfss/README details="Readme" + RELOC/doc/latex/psnfss/changes.txt + RELOC/doc/latex/psnfss/manifest.txt + RELOC/doc/latex/psnfss/psnfss2e.pdf details="Package documentation" + RELOC/doc/latex/psnfss/psnfss2e.tex + RELOC/doc/latex/psnfss/test/mathtest.tex + RELOC/doc/latex/psnfss/test/pitest.tex + RELOC/doc/latex/psnfss/test/test0.tex + RELOC/doc/latex/psnfss/test/test1.tex + RELOC/doc/latex/psnfss/test/test2.tex + RELOC/doc/latex/psnfss/test/test3.tex +srccontainersize 8176 +srccontainerchecksum 6862a7e74be6a575996e6f45a2236db810f1c030d3a0c53b2b97c2e803fc7e29010108e4597d637b8abedd63b1f956da268f62ca2c609accaa4d035be7bfd8ed +srcfiles size=10 + RELOC/source/latex/psnfss/psfonts.dtx + RELOC/source/latex/psnfss/psfonts.ins +runfiles size=110 + RELOC/fonts/map/dvips/psnfss/charter.map + RELOC/fonts/map/dvips/psnfss/fpls.map + RELOC/fonts/map/dvips/psnfss/pazo.map + RELOC/fonts/map/dvips/psnfss/psnfss.map + RELOC/fonts/map/dvips/psnfss/utopia.map + RELOC/tex/latex/psnfss/8rbch.fd + RELOC/tex/latex/psnfss/8rpag.fd + RELOC/tex/latex/psnfss/8rpbk.fd + RELOC/tex/latex/psnfss/8rpcr.fd + RELOC/tex/latex/psnfss/8rphv.fd + RELOC/tex/latex/psnfss/8rpnc.fd + RELOC/tex/latex/psnfss/8rppl.fd + RELOC/tex/latex/psnfss/8rptm.fd + RELOC/tex/latex/psnfss/8rput.fd + RELOC/tex/latex/psnfss/8rpzc.fd + RELOC/tex/latex/psnfss/avant.sty + RELOC/tex/latex/psnfss/bookman.sty + RELOC/tex/latex/psnfss/chancery.sty + RELOC/tex/latex/psnfss/charter.sty + RELOC/tex/latex/psnfss/courier.sty + RELOC/tex/latex/psnfss/helvet.sty + RELOC/tex/latex/psnfss/mathpazo.sty + RELOC/tex/latex/psnfss/mathpple.sty + RELOC/tex/latex/psnfss/mathptm.sty + RELOC/tex/latex/psnfss/mathptmx.sty + RELOC/tex/latex/psnfss/newcent.sty + RELOC/tex/latex/psnfss/omlbch.fd + RELOC/tex/latex/psnfss/omlpag.fd + RELOC/tex/latex/psnfss/omlpbk.fd + RELOC/tex/latex/psnfss/omlpcr.fd + RELOC/tex/latex/psnfss/omlphv.fd + RELOC/tex/latex/psnfss/omlpnc.fd + RELOC/tex/latex/psnfss/omlppl.fd + RELOC/tex/latex/psnfss/omlptm.fd + RELOC/tex/latex/psnfss/omlptmcm.fd + RELOC/tex/latex/psnfss/omlput.fd + RELOC/tex/latex/psnfss/omlpzc.fd + RELOC/tex/latex/psnfss/omlzplm.fd + RELOC/tex/latex/psnfss/omlzpple.fd + RELOC/tex/latex/psnfss/omlztmcm.fd + RELOC/tex/latex/psnfss/omsbch.fd + RELOC/tex/latex/psnfss/omspag.fd + RELOC/tex/latex/psnfss/omspbk.fd + RELOC/tex/latex/psnfss/omspcr.fd + RELOC/tex/latex/psnfss/omsphv.fd + RELOC/tex/latex/psnfss/omspnc.fd + RELOC/tex/latex/psnfss/omsppl.fd + RELOC/tex/latex/psnfss/omsptm.fd + RELOC/tex/latex/psnfss/omsput.fd + RELOC/tex/latex/psnfss/omspzc.fd + RELOC/tex/latex/psnfss/omspzccm.fd + RELOC/tex/latex/psnfss/omszplm.fd + RELOC/tex/latex/psnfss/omszpple.fd + RELOC/tex/latex/psnfss/omsztmcm.fd + RELOC/tex/latex/psnfss/omxpsycm.fd + RELOC/tex/latex/psnfss/omxzplm.fd + RELOC/tex/latex/psnfss/omxzpple.fd + RELOC/tex/latex/psnfss/omxztmcm.fd + RELOC/tex/latex/psnfss/ot1bch.fd + RELOC/tex/latex/psnfss/ot1pag.fd + RELOC/tex/latex/psnfss/ot1pbk.fd + RELOC/tex/latex/psnfss/ot1pcr.fd + RELOC/tex/latex/psnfss/ot1phv.fd + RELOC/tex/latex/psnfss/ot1pnc.fd + RELOC/tex/latex/psnfss/ot1ppl.fd + RELOC/tex/latex/psnfss/ot1pplj.fd + RELOC/tex/latex/psnfss/ot1pplx.fd + RELOC/tex/latex/psnfss/ot1ptm.fd + RELOC/tex/latex/psnfss/ot1ptmcm.fd + RELOC/tex/latex/psnfss/ot1put.fd + RELOC/tex/latex/psnfss/ot1pzc.fd + RELOC/tex/latex/psnfss/ot1zplm.fd + RELOC/tex/latex/psnfss/ot1zpple.fd + RELOC/tex/latex/psnfss/ot1ztmcm.fd + RELOC/tex/latex/psnfss/palatino.sty + RELOC/tex/latex/psnfss/pifont.sty + RELOC/tex/latex/psnfss/t1bch.fd + RELOC/tex/latex/psnfss/t1pag.fd + RELOC/tex/latex/psnfss/t1pbk.fd + RELOC/tex/latex/psnfss/t1pcr.fd + RELOC/tex/latex/psnfss/t1phv.fd + RELOC/tex/latex/psnfss/t1pnc.fd + RELOC/tex/latex/psnfss/t1ppl.fd + RELOC/tex/latex/psnfss/t1pplj.fd + RELOC/tex/latex/psnfss/t1pplx.fd + RELOC/tex/latex/psnfss/t1ptm.fd + RELOC/tex/latex/psnfss/t1put.fd + RELOC/tex/latex/psnfss/t1pzc.fd + RELOC/tex/latex/psnfss/times.sty + RELOC/tex/latex/psnfss/ts1bch.fd + RELOC/tex/latex/psnfss/ts1pag.fd + RELOC/tex/latex/psnfss/ts1pbk.fd + RELOC/tex/latex/psnfss/ts1pcr.fd + RELOC/tex/latex/psnfss/ts1phv.fd + RELOC/tex/latex/psnfss/ts1pnc.fd + RELOC/tex/latex/psnfss/ts1ppl.fd + RELOC/tex/latex/psnfss/ts1pplj.fd + RELOC/tex/latex/psnfss/ts1pplx.fd + RELOC/tex/latex/psnfss/ts1ptm.fd + RELOC/tex/latex/psnfss/ts1put.fd + RELOC/tex/latex/psnfss/ts1pzc.fd + RELOC/tex/latex/psnfss/ufplm.fd + RELOC/tex/latex/psnfss/ufplmbb.fd + RELOC/tex/latex/psnfss/upsy.fd + RELOC/tex/latex/psnfss/upzd.fd + RELOC/tex/latex/psnfss/utopia.sty +catalogue-also psnfssx +catalogue-ctan /macros/latex/required/psnfss +catalogue-license lppl +catalogue-topics font-supp font-use +catalogue-version 9.3 + +name pspicture +category Package +revision 15878 +shortdesc PostScript picture support +relocated 1 +longdesc A replacement for LaTeX's picture macros, that uses PostScript +longdesc \special commands. The package is now largely superseded by +longdesc pict2e. +containersize 1804 +containerchecksum 139d160fa67dbb7cc932fc75dba80dd46a55a1dd5973b27a6a5dd38a6035cb367441b178acaf3c11859ad60103283774ee5e2623a083a0336d5c2ff74a7b82fd +doccontainersize 42636 +doccontainerchecksum a743397a0d48c587b60db5f1dcf9e1c22f67ba15dbbce241a2584c95456b3546aebdfaebec9fcfb3dedcac65f7f053ec52cb479d726e5e3fbfe042efcf1ad702 +docfiles size=18 + RELOC/doc/latex/pspicture/README details="Package Readme" + RELOC/doc/latex/pspicture/pspicture.pdf details="Package documentation" +srccontainersize 6036 +srccontainerchecksum af1deb00966a7d4d1d68e156dd5fbc60e95f60a65a942f1bda1acbd579b932e0c81875386bd3eb1945fab211cc9ad5607c3e21e5d240048d775c28574cb754ba +srcfiles size=6 + RELOC/source/latex/pspicture/pspicture.dtx + RELOC/source/latex/pspicture/pspicture.ins +runfiles size=2 + RELOC/dvips/pspicture/pspicture.ps + RELOC/tex/latex/pspicture/pspicture.sty +catalogue-ctan /macros/latex/contrib/pspicture +catalogue-license lppl +catalogue-topics graphics-in-tex obsolete + +name pst-2dplot +category Package +revision 15878 +shortdesc A PSTricks package for drawing 2D curves +relocated 1 +longdesc Pst-2dplot is a pstricks package that offers an easy-to-use and +longdesc intuitive tool for plotting 2-d curves. It defines an +longdesc environment with commands similar to MATLAB for plotting. +containersize 1876 +containerchecksum 3109c2709323906ec39bd1be6e7c9151b7b07f9d2dafd5f7af61d3facd3e37ae35bd8bd923968102fc702f35fa4a903e9a50d3a7a85a1c088017aababd16d969 +doccontainersize 69600 +doccontainerchecksum f46a0c8c94900d180fac92e7b393672d010388fe80867f01125cdc7c486eff97ee36cab1aeeeb224b9ab80739c2ddd9e89b84926948acaa8b2b0ae08457ac0ef +docfiles size=27 + RELOC/doc/generic/pst-2dplot/README details="Readme" + RELOC/doc/generic/pst-2dplot/data1.dat + RELOC/doc/generic/pst-2dplot/data2.dat + RELOC/doc/generic/pst-2dplot/data3.dat + RELOC/doc/generic/pst-2dplot/pst-2dplot-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-2dplot/pst-2dplot-doc.tex +runfiles size=2 + RELOC/tex/latex/pst-2dplot/pst-2dplot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-2dplot +catalogue-license lppl +catalogue-topics graphics-plot pstricks +catalogue-version 1.5 + +name pst-3d +category Package +revision 17257 +shortdesc A PSTricks package for tilting and other pseudo-3D tricks +relocated 1 +longdesc The package provides basic macros that use PSTricks for +longdesc shadows, tilting and three dimensional representations of text +longdesc or graphical objects. +containersize 3460 +containerchecksum dfd8a2b79d308cf4ae3bdcd438b967446f8601509fd4afb3f090d946df0cc2d66e9b7071ce33e51ad4cd53b7e62dbc02d861d46a302bfe2c901d1d8c82ab0649 +doccontainersize 100796 +doccontainerchecksum e8355b936fbc1685edf205e88f2793ab298aac4e4c06de10dddbe1587b5401ba8cc4d2a01dbad3ad56da5eddb27bd6049a41e6da8c139727d36fcc94d93ac554 +docfiles size=44 + RELOC/doc/generic/pst-3d/Changes + RELOC/doc/generic/pst-3d/README details="Readme" + RELOC/doc/generic/pst-3d/pst-3d-doc.bib + RELOC/doc/generic/pst-3d/pst-3d-doc.pdf + RELOC/doc/generic/pst-3d/pst-3d-doc.tex +srccontainersize 948 +srccontainerchecksum fc50cff8bb86571d3827a03f3c64cb62a9fdab25e2595ccf9465e4ad39539ebc0a55da92519ef203da65da3a44e01ee28b39ef27a5af24d26463b215f96be313 +srcfiles size=1 + RELOC/source/generic/pst-3d/Makefile +runfiles size=5 + RELOC/dvips/pst-3d/pst-3d.pro + RELOC/tex/generic/pst-3d/pst-3d.tex + RELOC/tex/latex/pst-3d/pst-3d.sty +catalogue-ctan /graphics/pstricks/contrib/pst-3d +catalogue-license lppl +catalogue-topics graphics-3d pstricks +catalogue-version 1.10 + +name pst-3dplot +category Package +revision 56758 +shortdesc Draw 3D objects in parallel projection, using PSTricks +relocated 1 +longdesc A package using PSTricks to draw a large variety of graphs and +longdesc plots, including 3D maths functions. Data can be read from +longdesc external data files, making this package a generic tool for +longdesc graphing within TeX/LaTeX, without the need for external tools. +containersize 21824 +containerchecksum 6b12d6273f5025b4afbb1adac35e73f60a1ca6430b24c40c145af1a50e35150a34cc70ff14e9904caff34be6955146f358f4231785aa8b7ff662978a846857f2 +doccontainersize 2124912 +doccontainerchecksum 615081d1b54074e8cff1dfc9eadee490526fa22673204fe8f37554474cf89688507989c8701e3633275558165fe91e6684624ebcb0c2b2983cb38c5a2d55d014 +docfiles size=615 + RELOC/doc/generic/pst-3dplot/Changes + RELOC/doc/generic/pst-3dplot/README details="Readme" + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.bib + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.dat + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.tex +runfiles size=31 + RELOC/dvips/pst-3dplot/pst-3dplot.pro + RELOC/tex/generic/pst-3dplot/pst-3dplot.tex + RELOC/tex/latex/pst-3dplot/pst-3dplot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-3dplot +catalogue-license lppl +catalogue-topics graphics-3d graphics-plot pstricks +catalogue-version 2.06 + +name pst-abspos +category Package +revision 15878 +shortdesc Put objects at an absolute position +relocated 1 +longdesc The (PSTricks-related) package provides a command +longdesc \pstPutAbs(x,y) to put an object at an arbitrary absolute (or +longdesc even a relative) position on the page. +containersize 2004 +containerchecksum b56bed1fedb14fe7cc455fe4e87ec51085e8e09132ff5dbe52083701cdd0d63f2e6dac2ab55838fbefd8e7de9666d0239e9fba712573a51dce2804d31ab140c6 +doccontainersize 57048 +doccontainerchecksum 77754a1c27c083f60c2836483a60bfb6b4c826783d5acd16b1eaa9b7fe7aba8820886442ed28a5b334929a3f21f0f1b4487c7403f8dbfc3ad3cfc08407e35229 +docfiles size=27 + RELOC/doc/generic/pst-abspos/Changes + RELOC/doc/generic/pst-abspos/README details="Readme" + RELOC/doc/generic/pst-abspos/pst-abspos-doc.bib + RELOC/doc/generic/pst-abspos/pst-abspos-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-abspos/pst-abspos-doc.tex +srccontainersize 944 +srccontainerchecksum faf4f7e2b94bd66d19be75c307c8a6b20a2c779a8e6783096b41e7b4da66ab07f7ecbaaedfa668c09089bea9c2c79af4cbc12aeafe949cb729c589989206cd0c +srcfiles size=1 + RELOC/source/generic/pst-abspos/Makefile +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-license lppl +catalogue-topics layout pstricks +catalogue-version 0.2 + +name pst-am +category Package +revision 19591 +shortdesc Simulation of modulation and demodulation +relocated 1 +longdesc The package allows the simulation of the modulated and +longdesc demodulated amplitude of radio waves. The user may plot curves +longdesc of modulated signals, wave carrier, signal modulation, signal +longdesc recovery and signal demodulation. +containersize 3020 +containerchecksum a5f466dacd393ed7243fa2cb43aed0a5bb8469a51aa82fac4b53c47a474a1d9758db4d7a001cee49716714049499339567cb62a66f2731ffc7646fecc15c7784 +doccontainersize 843332 +doccontainerchecksum edea0ddc3f5472a86706d1823fe78459d2908724daf2b9bfe44b41e749f2b41483000602817a45a5e41869f86d4034ea52640bdffa334af54e4964510768152e +docfiles size=225 + RELOC/doc/generic/pst-am/Changes + RELOC/doc/generic/pst-am/README details="Readme" + RELOC/doc/generic/pst-am/index.phtml + RELOC/doc/generic/pst-am/pst-am-doc.bib + RELOC/doc/generic/pst-am/pst-am-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-am/pst-am-doc.tex +srccontainersize 928 +srccontainerchecksum fca7f1f7769f839632eec75b3baa864b60f9ab3c1ff9cc08437fad4086cf9a063f283568163d1ebe3e5a2c87b06bbae1b11e5be07a8eca5030cccfc68392b40f +srcfiles size=1 + RELOC/source/generic/pst-am/Makefile +runfiles size=3 + RELOC/tex/latex/pst-am/pst-am.sty +catalogue-ctan /graphics/pstricks/contrib/pst-am +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 1.02 + +name pst-antiprism +category Package +revision 46643 +shortdesc A PSTricks related package which draws an antiprism +relocated 1 +longdesc pst-antiprism is a PSTricks related package which draws an +longdesc antiprism, which is a semiregular polyhedron constructed with +longdesc 2-gons and triangles. +containersize 2584 +containerchecksum dc93e3a8a040a2712f701c2fa89924c45749824d20ad814a9f04aa423e15caed3a457b762dc7d30cf5c9e3afea378efc303851af919831c0969cde50b9adea57 +doccontainersize 302008 +doccontainerchecksum df528e5693cbbdca80a88d02e2b8487b70c188109825da66c9d9042056c6ba62e361fcba2ac747d69a08a4c8d78f27534640ce55c583289c3f12c2eb4c57d861 +docfiles size=117 + RELOC/doc/generic/pst-antiprism/Changes + RELOC/doc/generic/pst-antiprism/README.md details="Readme" + RELOC/doc/generic/pst-antiprism/pst-antiprism-doc.bib + RELOC/doc/generic/pst-antiprism/pst-antiprism-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-antiprism/pst-antiprism-doc.tex +runfiles size=3 + RELOC/dvips/pst-antiprism/pst-antiprism.pro + RELOC/tex/generic/pst-antiprism/pst-antiprism.tex + RELOC/tex/latex/pst-antiprism/pst-antiprism.sty +catalogue-ctan /graphics/pstricks/contrib/pst-antiprism +catalogue-license lppl +catalogue-topics pstricks graphics +catalogue-version 0.02 + +name pst-arrow +category Package +revision 41980 +shortdesc Special arrows for PSTricks +relocated 1 +longdesc This package has all the code from the package pstricks-add +longdesc which was related to arrows, like multiple arrows and so on. +containersize 5524 +containerchecksum 3400d901f40b9dc3434f107dda5480e0f8e37548b2ea0bfad5a38ff90e1d99aafd43d44d6cb6c0594b0574f781d94ad57e53074d28b10251f6ab8100f2814354 +doccontainersize 125672 +doccontainerchecksum bf97ebd12c09ba4ec3dfad4107141054abc9f04b1e1408017ec038b656bc04ccf09894c5f15a8a0344f358f2e43acdcb7509cc7e0ce686303a62bf175de7a3c7 +docfiles size=59 + RELOC/doc/generic/pst-arrow/Changes + RELOC/doc/generic/pst-arrow/README details="Readme" + RELOC/doc/generic/pst-arrow/pst-arrow-doc.bib + RELOC/doc/generic/pst-arrow/pst-arrow-doc.pdf details="Brief documentation, with examples" + RELOC/doc/generic/pst-arrow/pst-arrow-doc.tex +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-license lppl1.3 +catalogue-topics pstricks +catalogue-version 0.01 + +name pst-asr +category Package +revision 22138 +shortdesc Typeset autosegmental representations for linguists +relocated 1 +longdesc The package allows the user to typeset autosegmental +longdesc representations. It uses the PStricks, and xkeyval packages. +containersize 6156 +containerchecksum c5ae73e1553b564a90d2c77fa434c360fe2858657fb5ff4c6ce1cbb46838fea9c0dd7a8d92e2048a8ed0d748839518b461b0727db3b7937c4e39edf85277e081 +doccontainersize 271600 +doccontainerchecksum 560ea68a6f02dc3b79c64554652a9efd52c7fb00d07e7ffbc9b92ffab251854e07e87642028b94fc42bf7d01fedd82bfd50913f9c42d1c37d76c1eaba761ed00 +docfiles size=84 + RELOC/doc/generic/pst-asr/README + RELOC/doc/generic/pst-asr/pst-asr-doc-source.zip + RELOC/doc/generic/pst-asr/pst-asr-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-asr/pst-asr-examples.pdf details="Examples of usage" + RELOC/doc/generic/pst-asr/pst-asr-examples.tex +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-license lppl +catalogue-topics linguistic pstricks +catalogue-version 1.3 + +name pst-bar +category Package +revision 18734 +shortdesc Produces bar charts using PSTricks +relocated 1 +longdesc The package uses pstricks to draw bar charts from data stored +longdesc in a comma-delimited file. Several types of bar charts may be +longdesc drawn, and the drawing parameters are highly customizable. No +longdesc external packages are required except those that are part of +longdesc the standard PSTricks distribution. +containersize 3856 +containerchecksum 14c500c89dcce23c52f4551658496f55ac712c76bf9ab2e8878463a7dc7bb2bb3be10f94679cd2a5b720739e89cefed98237d18f65d0b9ca26ae91ac64525a25 +doccontainersize 175132 +doccontainerchecksum e17655c65e96e2d777484ef8db7304562310af8585c21f8cb6c64921c9aa08ad4b5ff8f61924c87112323c2bb509b5ad7e3b2176b750bd1b0f3df837033f380a +docfiles size=81 + RELOC/doc/generic/pst-bar/README details="Readme" + RELOC/doc/generic/pst-bar/pst-bar-doc.bib + RELOC/doc/generic/pst-bar/pst-bar-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-bar/pst-bar-doc.tex + RELOC/doc/generic/pst-bar/pst-bar-docDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-bar/pst-bar-docDE.tex + RELOC/doc/generic/pst-bar/pst-bar.orig +srccontainersize 936 +srccontainerchecksum 4900e4c4ee079574348403f6a39c22f49e92e9ebfd5f8748543fafacf290d7283d34af7baa0a4ec754222cd9d89ae7c663fa57c97a0bb126a2dd76c16d46ee79 +srcfiles size=1 + RELOC/source/generic/pst-bar/Makefile +runfiles size=6 + RELOC/dvips/pst-bar/pst-bar.pro + RELOC/tex/generic/pst-bar/pst-bar.tex + RELOC/tex/latex/pst-bar/pst-bar.sty +catalogue-ctan /graphics/pstricks/contrib/pst-bar +catalogue-license lppl +catalogue-topics genchart pstricks +catalogue-version 0.92 + +name pst-barcode +category Package +revision 45096 +shortdesc Print barcodes using PostScript +relocated 1 +longdesc The pst-barcode package allows printing of barcodes, in a huge +longdesc variety of formats, including quick-response (qr) codes (see +longdesc documentation for details). As a PSTricks package, the package +longdesc requires pstricks. The package uses PostScript for calculating +longdesc the bars. For PDF output use a multi-pass mechansism such as +longdesc pst-pdf. +containersize 99120 +containerchecksum 6c4799d7410da7f13225acd9cb5628d65bdbbb525e2bcb114d7f660d4c752122f8e9028763d3ecbca04c3c9da36b7910d64c981e8593b2c5df6b4cb372103785 +doccontainersize 1110916 +doccontainerchecksum 918891da185bcbd26051a4715cf585fd8539e6ac534ada4a2524bfabec328f87cc998cbd65b7fae8a2fbe4de029403811214c0196e59125a77f8af715b3ed3f0 +docfiles size=1449 + RELOC/doc/generic/pst-barcode/Changes + RELOC/doc/generic/pst-barcode/README.md details="Readme" + RELOC/doc/generic/pst-barcode/images/auspost-1.eps + RELOC/doc/generic/pst-barcode/images/auspost-2.eps + RELOC/doc/generic/pst-barcode/images/aztec-1.eps + RELOC/doc/generic/pst-barcode/images/aztec-2.eps + RELOC/doc/generic/pst-barcode/images/aztec-3.eps + RELOC/doc/generic/pst-barcode/images/aztec-4.eps + RELOC/doc/generic/pst-barcode/images/aztec-5.eps + RELOC/doc/generic/pst-barcode/images/aztec-6.eps + RELOC/doc/generic/pst-barcode/images/bc412-1.eps + RELOC/doc/generic/pst-barcode/images/bc412-2.eps + RELOC/doc/generic/pst-barcode/images/bc412-3.eps + RELOC/doc/generic/pst-barcode/images/channelcode-1.eps + RELOC/doc/generic/pst-barcode/images/channelcode-2.eps + RELOC/doc/generic/pst-barcode/images/channelcode-3.eps + RELOC/doc/generic/pst-barcode/images/channelcode-4.eps + RELOC/doc/generic/pst-barcode/images/codabar-1.eps + RELOC/doc/generic/pst-barcode/images/codablockf-1.eps + RELOC/doc/generic/pst-barcode/images/codablockf-2.eps + RELOC/doc/generic/pst-barcode/images/codablockf-3.eps + RELOC/doc/generic/pst-barcode/images/code11-1.eps + RELOC/doc/generic/pst-barcode/images/code128-1.eps + RELOC/doc/generic/pst-barcode/images/code16k-1.eps + RELOC/doc/generic/pst-barcode/images/code16k-2.eps + RELOC/doc/generic/pst-barcode/images/code16k-3.eps + RELOC/doc/generic/pst-barcode/images/code25-1.eps + RELOC/doc/generic/pst-barcode/images/code25-2.eps + RELOC/doc/generic/pst-barcode/images/code32-1.eps + RELOC/doc/generic/pst-barcode/images/code39-1.eps + RELOC/doc/generic/pst-barcode/images/code39-2.eps + RELOC/doc/generic/pst-barcode/images/code39-3.eps + RELOC/doc/generic/pst-barcode/images/code39ext-1.eps + RELOC/doc/generic/pst-barcode/images/code39ext-2.eps + RELOC/doc/generic/pst-barcode/images/code49-1.eps + RELOC/doc/generic/pst-barcode/images/code49-2.eps + RELOC/doc/generic/pst-barcode/images/code49-3.eps + RELOC/doc/generic/pst-barcode/images/code93-1.eps + RELOC/doc/generic/pst-barcode/images/code93-2.eps + RELOC/doc/generic/pst-barcode/images/code93ext-1.eps + RELOC/doc/generic/pst-barcode/images/code93ext-2.eps + RELOC/doc/generic/pst-barcode/images/codeone-1.eps + RELOC/doc/generic/pst-barcode/images/codeone-2.eps + RELOC/doc/generic/pst-barcode/images/codeone-3.eps + RELOC/doc/generic/pst-barcode/images/codeone-4.eps + RELOC/doc/generic/pst-barcode/images/daft-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpanded-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpandedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpandedstacked-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpandedstackedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarlimited-1.eps + RELOC/doc/generic/pst-barcode/images/databarlimitedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databaromni-1.eps + RELOC/doc/generic/pst-barcode/images/databaromnicomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarstacked-1.eps + RELOC/doc/generic/pst-barcode/images/databarstackedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarstackedomni-1.eps + RELOC/doc/generic/pst-barcode/images/databarstackedomnicomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databartruncated-1.eps + RELOC/doc/generic/pst-barcode/images/databartruncatedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/datamatrix-1.eps + RELOC/doc/generic/pst-barcode/images/datamatrix-2.eps + RELOC/doc/generic/pst-barcode/images/datamatrix-3.eps + RELOC/doc/generic/pst-barcode/images/ean128-1.eps + RELOC/doc/generic/pst-barcode/images/ean128-2.eps + RELOC/doc/generic/pst-barcode/images/ean128composite-1.eps + RELOC/doc/generic/pst-barcode/images/ean128composite-2.eps + RELOC/doc/generic/pst-barcode/images/ean13-1.eps + RELOC/doc/generic/pst-barcode/images/ean13-2.eps + RELOC/doc/generic/pst-barcode/images/ean13composite-1.eps + RELOC/doc/generic/pst-barcode/images/ean14-1.eps + RELOC/doc/generic/pst-barcode/images/ean2-1.eps + RELOC/doc/generic/pst-barcode/images/ean5-1.eps + RELOC/doc/generic/pst-barcode/images/ean8-1.eps + RELOC/doc/generic/pst-barcode/images/ean8-2.eps + RELOC/doc/generic/pst-barcode/images/ean8composite-1.eps + RELOC/doc/generic/pst-barcode/images/fima-1.eps + RELOC/doc/generic/pst-barcode/images/fimb-1.eps + RELOC/doc/generic/pst-barcode/images/fimc-1.eps + RELOC/doc/generic/pst-barcode/images/fimd-1.eps + RELOC/doc/generic/pst-barcode/images/flattermarken-1.eps + RELOC/doc/generic/pst-barcode/images/gs1composite-1.eps + RELOC/doc/generic/pst-barcode/images/gs1composite-2.eps + RELOC/doc/generic/pst-barcode/images/gs1composite-3.eps + RELOC/doc/generic/pst-barcode/images/gs1datamatrix-1.eps + RELOC/doc/generic/pst-barcode/images/gs1qrcode-1.eps + RELOC/doc/generic/pst-barcode/images/gs1qrcode-2.eps + RELOC/doc/generic/pst-barcode/images/hanxin-1.eps + RELOC/doc/generic/pst-barcode/images/hibccodablockf-1.eps + RELOC/doc/generic/pst-barcode/images/hibccode128-1.eps + RELOC/doc/generic/pst-barcode/images/hibccode39-1.eps + RELOC/doc/generic/pst-barcode/images/hibcdatamatrix-1.eps + RELOC/doc/generic/pst-barcode/images/hibcmicropdf417-1.eps + RELOC/doc/generic/pst-barcode/images/hibcpdf417-1.eps + RELOC/doc/generic/pst-barcode/images/hibcqrcode-1.eps + RELOC/doc/generic/pst-barcode/images/identcode-1.eps + RELOC/doc/generic/pst-barcode/images/isbn-1.eps + RELOC/doc/generic/pst-barcode/images/isbn-2.eps + RELOC/doc/generic/pst-barcode/images/isbn-3.eps + RELOC/doc/generic/pst-barcode/images/isbn-4.eps + RELOC/doc/generic/pst-barcode/images/ismn-1.eps + RELOC/doc/generic/pst-barcode/images/ismn-2.eps + RELOC/doc/generic/pst-barcode/images/ismn-3.eps + RELOC/doc/generic/pst-barcode/images/issn-1.eps + RELOC/doc/generic/pst-barcode/images/issn-2.eps + RELOC/doc/generic/pst-barcode/images/itf-1.eps + RELOC/doc/generic/pst-barcode/images/itf-14-1.eps + RELOC/doc/generic/pst-barcode/images/itf-2.eps + RELOC/doc/generic/pst-barcode/images/japanpost-1.eps + RELOC/doc/generic/pst-barcode/images/kix-1.eps + RELOC/doc/generic/pst-barcode/images/leitcode-1.eps + RELOC/doc/generic/pst-barcode/images/maxicode-1.eps + RELOC/doc/generic/pst-barcode/images/maxicode-2.eps + RELOC/doc/generic/pst-barcode/images/maxicode-3.eps + RELOC/doc/generic/pst-barcode/images/maxicode-4.eps + RELOC/doc/generic/pst-barcode/images/micropdf417-1.eps + RELOC/doc/generic/pst-barcode/images/micropdf417-2.eps + RELOC/doc/generic/pst-barcode/images/msi-1.eps + RELOC/doc/generic/pst-barcode/images/msi-2.eps + RELOC/doc/generic/pst-barcode/images/msi-3.eps + RELOC/doc/generic/pst-barcode/images/onecode-1.eps + RELOC/doc/generic/pst-barcode/images/optborder.eps + RELOC/doc/generic/pst-barcode/images/optcolorcmyk.eps + RELOC/doc/generic/pst-barcode/images/optcolorrgb.eps + RELOC/doc/generic/pst-barcode/images/optguardpos.eps + RELOC/doc/generic/pst-barcode/images/optguardsize.eps + RELOC/doc/generic/pst-barcode/images/optheight.eps + RELOC/doc/generic/pst-barcode/images/optincludecheck.eps + RELOC/doc/generic/pst-barcode/images/optincludecheckintext.eps + RELOC/doc/generic/pst-barcode/images/optincludetext.eps + RELOC/doc/generic/pst-barcode/images/optinkspread.eps + RELOC/doc/generic/pst-barcode/images/optparse.eps + RELOC/doc/generic/pst-barcode/images/optparsefnc.eps + RELOC/doc/generic/pst-barcode/images/optraw.eps + RELOC/doc/generic/pst-barcode/images/opttextfont.eps + RELOC/doc/generic/pst-barcode/images/optwidth.eps + RELOC/doc/generic/pst-barcode/images/pdf417-1.eps + RELOC/doc/generic/pst-barcode/images/pdf417-2.eps + RELOC/doc/generic/pst-barcode/images/pdf417-3.eps + RELOC/doc/generic/pst-barcode/images/pdf417-4.eps + RELOC/doc/generic/pst-barcode/images/pdf417-5.eps + RELOC/doc/generic/pst-barcode/images/pharmacode-1.eps + RELOC/doc/generic/pst-barcode/images/pharmacode2-1.eps + RELOC/doc/generic/pst-barcode/images/planet-1.eps + RELOC/doc/generic/pst-barcode/images/plessey-1.eps + RELOC/doc/generic/pst-barcode/images/plessey-2.eps + RELOC/doc/generic/pst-barcode/images/plessey-3.eps + RELOC/doc/generic/pst-barcode/images/posicode-1.eps + RELOC/doc/generic/pst-barcode/images/posicode-2.eps + RELOC/doc/generic/pst-barcode/images/posicode-3.eps + RELOC/doc/generic/pst-barcode/images/posicode-4.eps + RELOC/doc/generic/pst-barcode/images/posicode-5.eps + RELOC/doc/generic/pst-barcode/images/posicode-6.eps + RELOC/doc/generic/pst-barcode/images/postnet-1.eps + RELOC/doc/generic/pst-barcode/images/pzn-1.eps + RELOC/doc/generic/pst-barcode/images/pzn-2.eps + RELOC/doc/generic/pst-barcode/images/qrcode-1.eps + RELOC/doc/generic/pst-barcode/images/qrcode-2.eps + RELOC/doc/generic/pst-barcode/images/qrcode-5.eps + RELOC/doc/generic/pst-barcode/images/raw-1.eps + RELOC/doc/generic/pst-barcode/images/resize1.eps + RELOC/doc/generic/pst-barcode/images/resize2.eps + RELOC/doc/generic/pst-barcode/images/resize3.eps + RELOC/doc/generic/pst-barcode/images/rm4scc-1.eps + RELOC/doc/generic/pst-barcode/images/sscc18-1.eps + RELOC/doc/generic/pst-barcode/images/telepen-1.eps + RELOC/doc/generic/pst-barcode/images/telepen-2.eps + RELOC/doc/generic/pst-barcode/images/telepen-3.eps + RELOC/doc/generic/pst-barcode/images/telepen-4.eps + RELOC/doc/generic/pst-barcode/images/telepen-5.eps + RELOC/doc/generic/pst-barcode/images/upca-1.eps + RELOC/doc/generic/pst-barcode/images/upca-2.eps + RELOC/doc/generic/pst-barcode/images/upcacomposite-1.eps + RELOC/doc/generic/pst-barcode/images/upce-1.eps + RELOC/doc/generic/pst-barcode/images/upce-2.eps + RELOC/doc/generic/pst-barcode/images/upcecomposite-1.eps + RELOC/doc/generic/pst-barcode/pst-barcode-doc.bib + RELOC/doc/generic/pst-barcode/pst-barcode-doc.ltx + RELOC/doc/generic/pst-barcode/pst-barcode-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-barcode/pst-barcode-doc.tex +runfiles size=212 + RELOC/dvips/pst-barcode/pst-barcode.pro + RELOC/tex/generic/pst-barcode/pst-barcode.tex + RELOC/tex/latex/pst-barcode/pst-barcode.sty +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-license lppl +catalogue-topics barcode qrcode pstricks +catalogue-version 0.18 + +name pst-bezier +category Package +revision 41981 +shortdesc Draw Bezier curves +relocated 1 +longdesc The package provides a macro \psbcurve for drawing a Bezier +longdesc curve. Provision is made for full control of over all the +longdesc control points of the curve. +containersize 6256 +containerchecksum e2277175eb2087e13ee0a1100d602730514e1e5bb023d4db7163ba4113f69c9fedf74ff50369298ed970b89425b824cb8619e2cac4be463589edbfd747ccc6c5 +doccontainersize 972072 +doccontainerchecksum 5126769fb89900916a52135af0ba459651083b01db466471cc984b6dc837686cd780bda7c3295b6afe9a7bc85180b3acd95c015084d49f46049adb2fd84b5748 +docfiles size=296 + RELOC/doc/generic/pst-bezier/Changes + RELOC/doc/generic/pst-bezier/README.md details="Readme" + RELOC/doc/generic/pst-bezier/pst-bezier-doc.bib + RELOC/doc/generic/pst-bezier/pst-bezier-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-bezier/pst-bezier-doc.tex +runfiles size=7 + RELOC/dvips/pst-bezier/pst-bezier.pro + RELOC/tex/generic/pst-bezier/pst-bezier.tex + RELOC/tex/latex/pst-bezier/pst-bezier.sty +catalogue-also ebezier +catalogue-ctan /graphics/pstricks/contrib/pst-bezier +catalogue-license lppl +catalogue-topics graphics-curve pstricks +catalogue-version 0.03 + +name pst-blur +category Package +revision 15878 +shortdesc PSTricks package for "blurred" shadows +relocated 1 +longdesc Pst-blur is a package built for use with PSTricks. It provides +longdesc macros that apply blurring to the normal shadow function of +longdesc PSTricks. +containersize 2248 +containerchecksum 5726819bfa08fbf6e9b5a2c6f93008e468b759a825fef04739a47e756d4b12a99aef604d64618081b1788b5fed9247c75dd3580a899771b148306880341f0444 +doccontainersize 79100 +doccontainerchecksum 5e483141d8f5ad03421d9c7c5feef8baaa3b522385d307022dd617af0889bf57d1cf603a1d519a5d17d8dc918441ca3310d766e4dddb7ed6b8155985186b5e7f +docfiles size=26 + RELOC/doc/generic/pst-blur/Changes + RELOC/doc/generic/pst-blur/README + RELOC/doc/generic/pst-blur/pst-blur.pdf details="Package documentation" +srccontainersize 7156 +srccontainerchecksum 2e7038a248c307c50d29a6171d1b52bc8d6fed76885ebc24480a3f679918fbdbf1e538f783d0f9e3792a3530e51e60da4873c5da0878e66672dbe13fc9b950d6 +srcfiles size=7 + RELOC/source/generic/pst-blur/Makefile + RELOC/source/generic/pst-blur/pst-blur.dtx + RELOC/source/generic/pst-blur/pst-blur.ins +runfiles size=3 + RELOC/dvips/pst-blur/pst-blur.pro + RELOC/tex/generic/pst-blur/pst-blur.tex + RELOC/tex/latex/pst-blur/pst-blur.sty +catalogue-ctan /graphics/pstricks/contrib/pst-blur +catalogue-license lppl +catalogue-topics graphics-subpic pstricks +catalogue-version 2.0 + +name pst-bspline +category Package +revision 40685 +shortdesc Draw cubic Bspline curves and interpolations +relocated 1 +longdesc The package draws uniform, cubic B-spline curves, open and +longdesc closed, based on a sequence of B-spline control points. There +longdesc is also code which permits drawing the open or closed cubic +longdesc Bspline curve interpolating a sequence of points. Graphical +longdesc output is created using PStricks. +containersize 8552 +containerchecksum 1f39a02cb0d56b4fcb8ed3a3768b59a9d14ac14769783dfde7108d86a8c6d68d79342df501c60efcfb8aca4c7f97fffecfe4cd0ea0f4fb76e528f696180b6dfc +doccontainersize 161708 +doccontainerchecksum 1f2b8c3f5d85db4215cb11fcd663c33fc1e34e764432a2285f879ec8bf7acb9d09368c6a9910618ee99c3305d701aff5e5d401c227d0c1db9028be3690b5216c +docfiles size=54 + RELOC/doc/generic/pst-bspline/README details="Readme" + RELOC/doc/generic/pst-bspline/pst-bspline-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-bspline/pst-bspline-doc.tex +runfiles size=11 + RELOC/dvips/pst-bspline/pst-bspline.pro + RELOC/tex/generic/pst-bspline/pst-bspline.tex + RELOC/tex/latex/pst-bspline/pst-bspline.sty +catalogue-ctan /graphics/pstricks/contrib/pst-bspline +catalogue-license lppl1.3 +catalogue-topics graphics-curve pstricks +catalogue-version 1.62 + +name pst-calculate +category Package +revision 49817 +shortdesc Support for floating point operations at LaTeX level +relocated 1 +longdesc This package provides an interface to the LaTeX3 floating point +longdesc unit (part of expl3), mainly used for PSTricks related packages +longdesc to allow math expressions at LaTeX level. siunitx is used for +longdesc formatting the calculated number. The package also depends on +longdesc xkeyval and xparse. +containersize 1284 +containerchecksum b40a89c1e0152459e9dde468379b1a848955d40b9d9e05223544347d6057affac092a503e6307904e485a81de781eb9455abd948bef7f343359d44abf37f93ea +doccontainersize 33152 +doccontainerchecksum d6e936e7bc53ae3296812b1d33ecf6ae890599cbb9fa6afac719d8ebcca4516772ff6c18f27e8d825ab959d430cbfe8876b2bb97e480bf6464690b28cedfc2bb +docfiles size=15 + RELOC/doc/generic/pst-calculate/Changes + RELOC/doc/generic/pst-calculate/README.md details="Readme" + RELOC/doc/generic/pst-calculate/pst-calculate-doc.bib + RELOC/doc/generic/pst-calculate/pst-calculate-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-calculate/pst-calculate-doc.tex +runfiles size=1 + RELOC/tex/latex/pst-calculate/pst-calculate.sty +catalogue-ctan /macros/latex/contrib/pst-calculate +catalogue-license lppl1.3 +catalogue-topics calculation +catalogue-version 0.02 + +name pst-calendar +category Package +revision 15878 +shortdesc Plot calendars in "fancy" ways +relocated 1 +longdesc The package uses pstricks and pst-3d to draw tabular calendars, +longdesc or calendars on dodecahedra with a month to each face (the +longdesc package also requires the multido and pst-xkey packages). The +longdesc package works for years 2000-2099, and has options for +longdesc calendars in French German and English, but the documentation +longdesc is not available in English. +containersize 4508 +containerchecksum 541e353dcb33239f2230cd220bf7918051cbeb3bf8386bb9da045199a80decd68760a34f0461bb7e644f0d1545f2712969c79584a813551ee433d3a2bec888d9 +doccontainersize 282188 +doccontainerchecksum 02be7b99bf8fafb00994327e737a5a050601dd141ff4e3482b42dc3c98c9ecd1c62ee64488146e3a7e1017a965ff1cd41b7487acdae65f5c09e259753c2d2ac2 +docfiles size=85 + RELOC/doc/latex/pst-calendar/Changes + RELOC/doc/latex/pst-calendar/README details="Readme" + RELOC/doc/latex/pst-calendar/pst-calendar-docDE.ltx + RELOC/doc/latex/pst-calendar/pst-calendar-docDE.pdf details="German documentation:" language="de" + RELOC/doc/latex/pst-calendar/pst-calendar-docDE.tex + RELOC/doc/latex/pst-calendar/pst-calendar-docFR.pdf details="French documentation:" language="fr" + RELOC/doc/latex/pst-calendar/pst-calendar-docFR.tex +runfiles size=5 + RELOC/tex/latex/pst-calendar/pst-calendar.sty +catalogue-also calendar +catalogue-ctan /graphics/pstricks/contrib/pst-calendar +catalogue-license lppl +catalogue-topics calendar pstricks +catalogue-version 0.47 + +name pst-cie +category Package +revision 49422 +shortdesc CIE color space +relocated 1 +longdesc pst-cie is a PSTricks related package to show the different CIE +longdesc color spaces: Adobe, CIE, ColorMatch, NTSC, Pal-Secam, +longdesc ProPhoto, SMPTE, and sRGB. +containersize 18200 +containerchecksum 4967785a229c9cd316b36357fc94df53e7ebfb216ba5bb222d208a767828aac22184914e2e3744e2726738920dec05f3ed7ab9ce1e30321017f43fa8f52cdce8 +doccontainersize 19771488 +doccontainerchecksum f2554d76fc89d58e4ff61ac5e5635b93775f731e33e384a3113ebcca53c26ae0e4609d1fdfc5f093abb8945bc3f02a77041bce072c29340ff9623a580e0ce352 +docfiles size=5321 + RELOC/doc/generic/pst-cie/Changes + RELOC/doc/generic/pst-cie/README.md details="Readme" + RELOC/doc/generic/pst-cie/pst-cie-doc.bib + RELOC/doc/generic/pst-cie/pst-cie-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-cie/pst-cie-doc.tex +runfiles size=26 + RELOC/dvips/pst-cie/pst-cie.pro + RELOC/tex/generic/pst-cie/pst-cie.tex + RELOC/tex/latex/pst-cie/pst-cie.sty +catalogue-ctan /graphics/pstricks/contrib/pst-cie +catalogue-license lppl +catalogue-topics pstricks colour +catalogue-version 1.06a + +name pst-circ +category Package +revision 59017 +shortdesc PSTricks package for drawing electric circuits +relocated 1 +longdesc The package is built using PSTricks and in particular pst-node. +longdesc It can easily draw current 2-terminal devices and some 3- and +longdesc 4-terminal devices used in electronic or electric theory. The +longdesc package's macros are designed with a view to 'logical' +longdesc representation of circuits, as far as possible, so as to +longdesc relieve the user of purely graphical considerations when +longdesc expressing a circuit. +containersize 24864 +containerchecksum c82c98023fea4d24aa91f17a31e51a80b706274f40fe6494aa03e3e3f329c0a9c615720d6a30abb93fac1b63112196eb88bdc31138f49a6543c7d3771ca054ba +doccontainersize 508896 +doccontainerchecksum a2e119d4a75345784d0789f64d8e6bb0ef27578b00bfe043b755d2b435a6e6efe0c099bd1e7d528744c9a17f86f94c55c3f34c4e5806671608d5e327d3ff4c87 +docfiles size=257 + RELOC/doc/generic/pst-circ/Changes + RELOC/doc/generic/pst-circ/README details="Readme" + RELOC/doc/generic/pst-circ/pst-circ-doc.bib + RELOC/doc/generic/pst-circ/pst-circ-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-circ/pst-circ-doc.tex +srccontainersize 948 +srccontainerchecksum c778d38f1937decb0cbbed7973b25abf5c06c5aeff7415f3e066f41dc2442d98b4ff7e3b7afe83f041307ad785d6ddb5799b4a42921b37fc05091d306e48a839 +srcfiles size=1 + RELOC/source/generic/pst-circ/Makefile +runfiles size=57 + RELOC/dvips/pst-circ/pst-circ.pro + RELOC/tex/generic/pst-circ/pst-circ.tex + RELOC/tex/latex/pst-circ/pst-circ.sty +catalogue-ctan /graphics/pstricks/contrib/pst-circ +catalogue-license lppl +catalogue-topics diagram-circ pstricks +catalogue-version 2.18 + +name pst-coil +category Package +revision 37377 +shortdesc A PSTricks package for coils, etc +relocated 1 +longdesc Pst-coil is a PSTricks based package for coils and zigzags and +longdesc for coil and zigzag node connections. +containersize 3936 +containerchecksum efa265a09857efe93dd3d6aa7f63cbdca456982ccbb4c882dac7c1aff43a6f524e546640d5e293b55e59bd6af582e6d91b503cd7875f8c5ab48491b5b8996e4a +doccontainersize 251024 +doccontainerchecksum e31a5c795f9cf1e21364f63d582465825f46d37c3c849e328dcb19c2a2d7d1336c425a027c02db7c1d0d00da74cb2250feda8f2f70d538561aa93a22bcec5498 +docfiles size=83 + RELOC/doc/generic/pst-coil/Changes + RELOC/doc/generic/pst-coil/README details="Package README" + RELOC/doc/generic/pst-coil/pst-coil-doc.bib + RELOC/doc/generic/pst-coil/pst-coil-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-coil/pst-coil-doc.tex +runfiles size=5 + RELOC/dvips/pst-coil/pst-coil.pro + RELOC/tex/generic/pst-coil/pst-coil.tex + RELOC/tex/latex/pst-coil/pst-coil.sty +catalogue-ctan /graphics/pstricks/contrib/pst-coil +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 1.07 + +name pst-contourplot +category Package +revision 48230 +shortdesc Draw implicit functions using the "marching squares" algorithm +relocated 1 +longdesc This package allows to draw implicit functions "f(x,y) = 0" +longdesc with options for coloring the inside of the surfaces, for +longdesc marking the points and arrowing the curve at points chosen by +longdesc the user. The package uses the "marching squares" algorithm. +containersize 3624 +containerchecksum 9930e77c3ac5adcd9e3f14c4785a52a79fe5068b5ee239d1c9f052181657d2c5f16b082a8900b9571094ec83b7326be28a567dd39876332e5f68aa6b1c1b7083 +doccontainersize 764392 +doccontainerchecksum 1a52121a22c829c9c5423810f529cbc4cf3e49a805ec4fae123dd795dfc8fc87bebb13653a9d173ca962bba716c8428effa4410e48085af4bb208331e4e89bce +docfiles size=379 + RELOC/doc/generic/pst-contourplot/README details="Readme" + RELOC/doc/generic/pst-contourplot/examples/Les-Ovales-de-Descartes.pdf + RELOC/doc/generic/pst-contourplot/examples/Les-Ovales-de-Descartes.tex + RELOC/doc/generic/pst-contourplot/examples/README details="Readme" + RELOC/doc/generic/pst-contourplot/examples/bourke.pdf + RELOC/doc/generic/pst-contourplot/examples/bourke.tex + RELOC/doc/generic/pst-contourplot/examples/courbe-du-diable.pdf + RELOC/doc/generic/pst-contourplot/examples/courbe-du-diable.tex + RELOC/doc/generic/pst-contourplot/examples/courbes-diverses.tex + RELOC/doc/generic/pst-contourplot/examples/exemples-2.tex + RELOC/doc/generic/pst-contourplot/examples/exemples-3.tex + RELOC/doc/generic/pst-contourplot/examples/exemples-4.tex + RELOC/doc/generic/pst-contourplot/examples/four-dipoles-lignes.tex + RELOC/doc/generic/pst-contourplot/examples/four-dipoles-t.tex + RELOC/doc/generic/pst-contourplot/examples/four-dipoles.tex + RELOC/doc/generic/pst-contourplot/examples/four-leminscates.pdf + RELOC/doc/generic/pst-contourplot/examples/four-leminscates.tex + RELOC/doc/generic/pst-contourplot/examples/hertz.tex + RELOC/doc/generic/pst-contourplot/examples/pavage.tex + RELOC/doc/generic/pst-contourplot/examples/trefoil.tex + RELOC/doc/generic/pst-contourplot/examples/two-metaballs.tex + RELOC/doc/generic/pst-contourplot/pst-contourplot-docEN.pdf details="Package documentation (English)" + RELOC/doc/generic/pst-contourplot/pst-contourplot-docEN.tex + RELOC/doc/generic/pst-contourplot/pst-contourplot-docFR.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-contourplot/pst-contourplot-docFR.tex +runfiles size=6 + RELOC/tex/generic/pst-contourplot/pst-contourplot.tex + RELOC/tex/latex/pst-contourplot/pst-contourplot.sty +catalogue-contact-home http://pstricks.blogspot.com +catalogue-ctan /graphics/pstricks/contrib/pst-contourplot +catalogue-license lppl +catalogue-topics pstricks graphics-plotfn +catalogue-version 0.6 + +name pst-cox +category Package +revision 15878 +shortdesc Drawing regular complex polytopes with PSTricks +relocated 1 +longdesc Pst-cox is a PSTricks package for drawing 2-dimensional +longdesc projections of complex regular polytopes (after the work of +longdesc Coxeter). The package consists of a macro library for drawing +longdesc the projections. The complex polytopes appear in the study of +longdesc the root systems and play a crucial role in many domains +longdesc related to mathematics and physics. These polytopes have been +longdesc completely described by Coxeter in his book "Regular Complex +longdesc Polytopes". There exist only a finite numbers of exceptional +longdesc regular complex polytopes (for example the icosahedron) and +longdesc some infinite series (for example, one can construct a +longdesc multi-dimensional analogue of the hypercube in any finite +longdesc dimension). The library contains two packages. The first, +longdesc pst-coxcoor, is devoted to the exceptional complex regular +longdesc polytopes whose coordinates have been pre-computed. The second, +longdesc pst-coxeterp, is devoted to the infinite series. +containersize 221952 +containerchecksum b7e0e787e5a6d825383a5c06d7aba34e5d7cb12258925b7f0384ec069e873a6652e421f963147648903f6bf063d9592089adee5b043f24dac10e30dc344f0608 +doccontainersize 1069364 +doccontainerchecksum 1de830f83253ef11f092c9ec0e698ff36971c7b6d4237c8eb9f6712bde051b9302d657faa21bf56d34287c838453c611ef1a7c70c09e55ea647bad48ca216e1e +docfiles size=312 + RELOC/doc/generic/pst-cox/README details="Readme" + RELOC/doc/generic/pst-cox/gpl.txt + RELOC/doc/generic/pst-cox/lgpl.txt + RELOC/doc/generic/pst-cox/pst-coxcoor/Gallery.tex + RELOC/doc/generic/pst-cox/pst-coxcoor/pst-coxcoor_doc.pdf details="Documentation for pst-coxcoor" language="en" + RELOC/doc/generic/pst-cox/pst-coxcoor/pst-coxcoor_doc.tex + RELOC/doc/generic/pst-cox/pst-coxeterp/Gallery.tex + RELOC/doc/generic/pst-cox/pst-coxeterp/pst-coxeterp_doc.pdf details="Documentation for pst-coxeterp" language="en" + RELOC/doc/generic/pst-cox/pst-coxeterp/pst-coxeterp_doc.tex +runfiles size=614 + RELOC/dvips/pst-cox/pst-coxeter.pro + RELOC/tex/generic/pst-cox/pst-coxcoor.tex + RELOC/tex/generic/pst-cox/pst-coxeterp.tex + RELOC/tex/latex/pst-cox/pst-coxcoor.sty + 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-license lgpl +catalogue-topics physics maths pstricks +catalogue-version 0.98 Beta + +name pst-dart +category Package +revision 46579 +shortdesc Plotting dart boards +relocated 1 +longdesc pst-dart is a PSTricks related package and draws Dart Boards. +longdesc Optional arguments are the unit and the fontsize. +containersize 2156 +containerchecksum f5d41ddf7c5934a00fe8bbbc6dfa468d26e8ac0c06975301f17f31f168c6bf7499dac210f08f815cd01c05eb4a9a376d5c49cd96195a9df56bd3f1156d9ac6b7 +doccontainersize 368236 +doccontainerchecksum 668648d06ab3047e45737908bca5f901b4815f7b7b6745e9bd5387b6867b1fe6dafec3633295e8c164e26cbf06dab2240516a71e3b766a52b9e1ac0e64d1d93c +docfiles size=104 + RELOC/doc/generic/pst-dart/Changes + RELOC/doc/generic/pst-dart/README.md details="Readme" + RELOC/doc/generic/pst-dart/pst-dart-doc.bib + RELOC/doc/generic/pst-dart/pst-dart-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-dart/pst-dart-doc.tex +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-license lppl +catalogue-topics pstricks games +catalogue-version 0.02 + +name pst-dbicons +category Package +revision 17556 +shortdesc Support for drawing ER diagrams +relocated 1 +longdesc The package provides some useful macros in the database area. +longdesc The package focusses on typesetting ER-Diagrams in a +longdesc declarative style, i.e., by positioning some nodes and defining +longdesc the position of all other nodes relative to them by using the +longdesc standard database terminology. The PSTricks package is required +longdesc for using pst-dbicons, but no deep knowledge of PSTricks +longdesc commands is required (although such knowledge is useful for +longdesc exploiting the full functionality of the package). +containersize 3332 +containerchecksum a09ba8f72ecc1b58298b436c47d3922b494337179bdf789468aa3a2236a5e2bd0f9ddd9b491c1a2eb181d08090cc1c6d8c4a0e9e56cb8619a65ce168d7efd355 +doccontainersize 133024 +doccontainerchecksum fc0a74b0ca228ff598f3f88840ad1b87654cd7205afb757e6eb6d98abb0cd56cea0ac3ad7b3464a9a5b09d3d4f3a8489228b19c78edc8ceeb8b10f5d40e18540 +docfiles size=40 + RELOC/doc/generic/pst-dbicons/README details="Package README" + RELOC/doc/generic/pst-dbicons/mondial-ER.tex + RELOC/doc/generic/pst-dbicons/pst-dbicons.pdf details="Package documentation" +srccontainersize 10216 +srccontainerchecksum ad710329d577b7da464028bc0abe684d987a601b6ea68cbbbeafbc6135c3ade2ab124026ba0e1d714984251f800028ffd018863c9bb51aa8fae4b5b7ebff02f9 +srcfiles size=12 + RELOC/source/generic/pst-dbicons/pst-dbicons.drv + RELOC/source/generic/pst-dbicons/pst-dbicons.dtx + RELOC/source/generic/pst-dbicons/pst-dbicons.ins +runfiles size=3 + RELOC/tex/latex/pst-dbicons/pst-dbicons.sty +catalogue-ctan /graphics/pstricks/contrib/pst-dbicons +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 0.16 + +name pst-diffraction +category Package +revision 15878 +shortdesc Print diffraction patterns from various apertures +relocated 1 +longdesc The package enables the user to draw (using PSTricks) the +longdesc diffraction patterns for different geometric forms of apertures +longdesc for monochromatic light (using PSTricks). The aperture stops +longdesc can have rectangular, circular or triangular openings. The view +longdesc of the diffraction may be planar, or three-dimensional. Options +longdesc available are the dimensions of the aperture under +longdesc consideration and of the particular optical setting, e.g. the +longdesc radius in case of an circular opening. Moreover one can choose +longdesc the wavelength of the light (the associated color will be +longdesc calculated by the package). +containersize 5144 +containerchecksum 222e2361650aad3b59f99fffd56aabe3e53a5eddcbb643fb6f970ff9ac52bbebc4274dd02e051f9b24f069e355a081feaf20e735c385d80e3e58d3c72f1bf90a +doccontainersize 1067976 +doccontainerchecksum efecfa760a636a90026bb8dc2c6677bf1f5d8f37fa9103d37f598bde413a136928717cd7bf62bdd7581ae4ce21d34b49a2a9e4dab7397cedf7dbc04884012160 +docfiles size=613 + RELOC/doc/generic/pst-diffraction/Changes + RELOC/doc/generic/pst-diffraction/README details="Readme" + RELOC/doc/generic/pst-diffraction/pst-diffraction-doc.bib + RELOC/doc/generic/pst-diffraction/pst-diffraction-docDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-diffraction/pst-diffraction-docDE.tex + RELOC/doc/generic/pst-diffraction/pst-diffraction-docE.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-diffraction/pst-diffraction-docE.tex + RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.tex +srccontainersize 868 +srccontainerchecksum f71361329e52730f68aa34811cb04b4abd05a5bfb484fa1a264fa17e7609963c09bfc6242b6e777ffa8ca86cf4e5b2cba2a1af2a89611d8d0f9f0dc942abe862 +srcfiles size=1 + RELOC/source/generic/pst-diffraction/Makefile +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-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 2.03 + +name pst-electricfield +category Package +revision 29803 +shortdesc Draw electric field and equipotential lines with PSTricks +relocated 1 +longdesc The package provides macros to plot electric field and +longdesc equipotential lines using PStricks. There may be any number of +longdesc charges which can be placed in a cartesian coordinate system by +longdesc (x,y) values. +containersize 3700 +containerchecksum db9f7474d8290640d960f411574b6dad9f9b705eaf68644e001ebfc5050328673f0c1c31f925c6a2cd2279b9bb7ff89cf8d21e71a99e4b937137af404d046df0 +doccontainersize 5271200 +doccontainerchecksum 9d89a2818a56bed9e3cda9069f91cb49beb0182e0b24474051bb28c4299439a7b5477d09fa1caf23b855226d4d4441e48c9fba4a4dd1cd5eaf044a608876e5ae +docfiles size=2007 + RELOC/doc/generic/pst-electricfield/Changes + RELOC/doc/generic/pst-electricfield/README details="Readme" + RELOC/doc/generic/pst-electricfield/pst-electricfield-doc.bib + RELOC/doc/generic/pst-electricfield/pst-electricfield-docDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-electricfield/pst-electricfield-docDE.tex + RELOC/doc/generic/pst-electricfield/pst-electricfield-docEN.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-electricfield/pst-electricfield-docEN.tex + RELOC/doc/generic/pst-electricfield/pst-electricfield-docFR.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-electricfield/pst-electricfield-docFR.tex +srccontainersize 1536 +srccontainerchecksum 89d6b2314db2840f70d99f2f0e66a875b47cc2e653bbd28c80a71eaf6f7d269e647e84b5bbf5ab7349d8a45412b824f9ae7d0c4ce9c4703f82258418b82e8867 +srcfiles size=3 + RELOC/source/generic/pst-electricfield/Makefile + RELOC/source/generic/pst-electricfield/Makefile.latex + RELOC/source/generic/pst-electricfield/Makefile.pst2pdf +runfiles size=4 + RELOC/dvips/pst-electricfield/pst-electricfield.pro + RELOC/tex/generic/pst-electricfield/pst-electricfield.tex + RELOC/tex/latex/pst-electricfield/pst-electricfield.sty +catalogue-ctan /graphics/pstricks/contrib/pst-electricfield +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 0.14 + +name pst-eps +category Package +revision 15878 +shortdesc Create EPS files from PSTricks figures +relocated 1 +longdesc Pst-eps is a PSTricks-based package for exporting PSTricks +longdesc images 'on the fly' to encapsulated PostScript (EPS) image +longdesc files, which can then be read into a document in the usual way. +containersize 2968 +containerchecksum 90be1124bd22958b0a9cbb45a3b76513e514131c416c98d7f70ca101e7841980c33bd8380e888054cedb873143aad168b0dc25918d9e241f763b9be3ea1a76d6 +doccontainersize 78588 +doccontainerchecksum 70542680c550bc11bef851cfcd12010e17f35dd75adfa390ffadc7b920c2b357594ca514fcdeaafcf1bfcf1b9e622b23c680adbc64ae4787fa96ff94f9a62add +docfiles size=36 + RELOC/doc/generic/pst-eps/Changes + RELOC/doc/generic/pst-eps/README details="Package README" + RELOC/doc/generic/pst-eps/pst-eps-doc.bib + RELOC/doc/generic/pst-eps/pst-eps-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-eps/pst-eps-doc.tex + RELOC/doc/generic/pst-eps/spirale.eps +srccontainersize 816 +srccontainerchecksum 97e2adee4ce93de77d4d46946795565dfa0e0da188fd686bf96917b1220661510c1777fb7d025ac6dfca816bb8575487d45b180e4e35cade21353dcf4a8e5540 +srcfiles size=1 + RELOC/source/generic/pst-eps/Makefile +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-license lppl +catalogue-topics graphics-prep pstricks +catalogue-version 1.0 + +name pst-eucl +category Package +revision 56474 +shortdesc Euclidian geometry with PSTricks +relocated 1 +longdesc The package allows the drawing of Euclidean geometric figures +longdesc using TeX pstricks macros for specifying mathematical +longdesc constraints. It is thus possible to build point using common +longdesc transformations or intersections. The use of coordinates is +longdesc limited to points which controlled the figure. +containersize 53280 +containerchecksum a076efb338fbdff19719156e32cfdbf74500de253ee358dbf64207b762333ff2d3d167cea84ef4ba906d247d96adab9705091c5dc7003400097356b1f54f9305 +doccontainersize 1244548 +doccontainerchecksum 24df2d92c6879f20f4515196d5390fd9b0d97476b662a8e7302664be5afd08a3127dece9a530df5cb972feff6552321749b38a682a58d7924393304ea1c75a9f +docfiles size=503 + RELOC/doc/generic/pst-eucl/Changes + RELOC/doc/generic/pst-eucl/README details="Readme" + RELOC/doc/generic/pst-eucl/pst-eucl-doc.bib + RELOC/doc/generic/pst-eucl/pst-eucl-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-eucl/pst-eucl-doc.tex +runfiles size=139 + RELOC/dvips/pst-eucl/pst-eucl.pro + RELOC/tex/generic/pst-eucl/pst-eucl.tex + RELOC/tex/latex/pst-eucl/pst-eucl.sty +catalogue-also eukleides tkz-euclide +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-license lppl +catalogue-topics maths graphics-use pstricks +catalogue-version 1.75 + +name pst-eucl-translation-bg +category Package +revision 19296 +shortdesc Bulgarian translation of the pst-eucl documentation +relocated 1 +longdesc The pst-eucl package documentation in Bulgarian language - +longdesc Euclidean Geometry with PSTricks. +containersize 448 +containerchecksum ba2a7a76db77f4db3a548654e53d587b8f5b3dab9fef56b1f8c2640bcace64237e0bea5129025a07a490a2660ccd019fc5e83e3db504c6cd30b12b19df755f8d +doccontainersize 362324 +doccontainerchecksum 9f6d0153e79a205d0fce5b289fa43317ded0b70abc06139a503b98199584e8cb12b083c8235b6b53ff2a80cf249a4a43cefd3e0b39a9a406c62c1e684bcb35eb +docfiles size=215 + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/abscur.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/abscur_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/angle.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/angle_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc_in.log + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/astro.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/astro_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/bissec.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/bissec_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ccirc.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ccirc_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cercle.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cercle_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cinscex.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cinscex_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/curvetype.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/curvetype_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cyclo.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cyclo_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/delto.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/droite.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/droite_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envcardi.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envcardi_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envellipse.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envellipse_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/euler.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/euler_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/fracthom.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/fracthom_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gal_biss.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gal_biss_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gauss.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gauss_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gencur.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gencur_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geohyper.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geohyper_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geonode.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geonode_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/german_ra.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/german_ra_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/grav.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/grav_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/homothetie.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/homothetie_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hyperbole.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hyperbole_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hypocyclo.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC_bis_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDC.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDC_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDD.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDD_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFC.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFC_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFF.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFF_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFL.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFL_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/mediator.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/mediator_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/milieu.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/milieu_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/oij.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/oij_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthocentre.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthocentre_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthoethyper.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthoethyper_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/parabole.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/parabole_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/projection.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/projection_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ptfermat.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ptfermat_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/remarq.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/remarq_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/rotation.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/rotation_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/segmentmark.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/segmentmark_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symcentrale.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symcentrale_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symorthogonale.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symorthogonale_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg1c.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg1c_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg2c.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg2c_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/translation.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/translation_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/triangle.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/triangle_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/README details="Readme" language="en" + RELOC/doc/latex/pst-eucl-translation-bg/README-bulgarian.txt details="Readme" language="bg" + RELOC/doc/latex/pst-eucl-translation-bg/euclide_bg.sty + RELOC/doc/latex/pst-eucl-translation-bg/euclide_macros.ist + RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.cb + RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.pdf details="Package documentation" language="bg" + RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.tex +catalogue-also pst-eucl +catalogue-ctan /info/translations/pst-eucl/bulgarian +catalogue-license lppl +catalogue-topics bulgarian maths pstricks translation +catalogue-version 1.3.2 + +name pst-exa +category Package +revision 45289 +shortdesc Typeset PSTricks examples, with code +relocated 1 +longdesc The (PSTricks-related) package provides an environment +longdesc PSTexample to put code and output side by side or one above the +longdesc other. +containersize 3236 +containerchecksum af3bf68bf2401e0bd7023762748180bbedae1a34fa749b02cccd6b498f1f7ed0ca0e929e1b290f9b4f56b7f30718cc602d54b348e23f73c4cfb4d72ea22ffa4c +doccontainersize 63352 +doccontainerchecksum 9f0310ad130ad4693575e33bb2f2deb795a8eb4cc6b3f5fa946095d979ad8a1a348feca0ee5421b4831fd16a1de23608013b69d027b0dd37f782113e7de868bf +docfiles size=26 + RELOC/doc/latex/pst-exa/Changes + RELOC/doc/latex/pst-exa/README details="Readme" + RELOC/doc/latex/pst-exa/pst-exa-doc.bib + RELOC/doc/latex/pst-exa/pst-exa-doc.inc + RELOC/doc/latex/pst-exa/pst-exa-doc.pdf details="Package documentation" + RELOC/doc/latex/pst-exa/pst-exa-doc.tex +runfiles size=3 + RELOC/tex/latex/pst-exa/pst-exa.sty +catalogue-also showexpl +catalogue-ctan /graphics/pstricks/contrib/pst-exa +catalogue-license lppl +catalogue-topics listing pstricks +catalogue-version 0.06 + +name pst-feyn +category Package +revision 48781 +shortdesc Draw graphical elements for Feynman diagrams +relocated 1 +longdesc pst-feyn is a set of drawing graphical elements which are used +longdesc for Feynman diagrams. The package is based on the macros of the +longdesc old package axodraw but uses the capabilities of PSTricks. +containersize 6228 +containerchecksum c1ac123bac3f92fd92321387be28f519963ab196fde7ead8ed6b4c93ff9fe5cdf07bfee65bef67b9cd70d020adfa99c72592df9be376d69c5dadcb8bd0d6963b +doccontainersize 140408 +doccontainerchecksum e30fc57ace8fb4f0c36fd1a07415e894abe6840592a9a62b9e45c0663281a79532387f5d37136e9cb5e7b27f4c0d7722e6d1a9779e1a57a2fddbd8d0324d1424 +docfiles size=61 + RELOC/doc/generic/pst-feyn/Changes + RELOC/doc/generic/pst-feyn/README.md details="Readme" + RELOC/doc/generic/pst-feyn/data/data0.dat + RELOC/doc/generic/pst-feyn/data/data1.dat + RELOC/doc/generic/pst-feyn/pst-feyn-doc.bib + RELOC/doc/generic/pst-feyn/pst-feyn-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-feyn/pst-feyn-doc.tex +runfiles size=9 + RELOC/dvips/pst-feyn/pst-feyn.pro + RELOC/tex/generic/pst-feyn/pst-feyn.tex + RELOC/tex/latex/pst-feyn/pst-feyn.sty +catalogue-also axodraw2 +catalogue-ctan /graphics/pstricks/contrib/pst-feyn +catalogue-license lppl +catalogue-topics physics +catalogue-version 0.01 + +name pst-fill +category Package +revision 15878 +shortdesc Fill or tile areas with PSTricks +relocated 1 +longdesc Pst-fill is a PSTricks-based package for filling and tiling +longdesc areas or characters. +containersize 3892 +containerchecksum 69401352ca7e08d6d61ce7ae89f1201f186cec6221ac3b9c2cec61c6033df03b8151ee278ab2edab6a661c49f0867d7f9e764bf45e9dbf32feed655e12239688 +doccontainersize 1121256 +doccontainerchecksum 061dcab012577f3d6e30008c15127f2f70469340598c781a436c0c8b1831d36dfce86a8cd0b802a6f174d3510ee2ed1d9269b4c894793f10d79eaf8b6d0c1ec8 +docfiles size=303 + RELOC/doc/generic/pst-fill/Changes + RELOC/doc/generic/pst-fill/README details="Package README" + RELOC/doc/generic/pst-fill/pst-fill.pdf details="Package documentation" +srccontainersize 20788 +srccontainerchecksum 35540e2a923b28393b68da71fc2c15166ec6e57ebed065dee8e8c9acdd7f10eb5327224e7422851b5a32d895eca29f19755bfda2cf1e0fb569deb473921c6d63 +srcfiles size=20 + RELOC/source/generic/pst-fill/Makefile + RELOC/source/generic/pst-fill/pst-fill.dtx + RELOC/source/generic/pst-fill/pst-fill.ins +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-license lppl +catalogue-topics graphics-fill-tile pstricks +catalogue-version 1.01 + +name pst-fit +category Package +revision 45109 +shortdesc Macros for curve fitting +relocated 1 +longdesc The package uses PSTricks to fit curves to: Linear Functions; +longdesc Power Functions; exp Function; Log_{10} and Log_e functions; +longdesc Recip; Kings Law data; Gaussian; and 4th order Polynomial +containersize 8004 +containerchecksum ede8c3503963f44d65caf46975cebdad296576742a771243914b49c6d802deb2f24e816dde7fd9a4bea7fa0c39965693575676ebeb648da099d88ee50bdacb8b +doccontainersize 79172 +doccontainerchecksum c8619c7c98cd42884637de98c88d916e18db273371fd64090d5e9789570153b2508f0adb90fbec9c5184f6ef1ab24559b04daccf8dae7c5f65453044b9bfb73e +docfiles size=32 + RELOC/doc/generic/pst-fit/Changes + RELOC/doc/generic/pst-fit/README details="Readme" + RELOC/doc/generic/pst-fit/pst-fit-doc.bib + RELOC/doc/generic/pst-fit/pst-fit-doc.data + RELOC/doc/generic/pst-fit/pst-fit-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-fit/pst-fit-doc.tex +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-license lppl +catalogue-topics graphics-supp +catalogue-version 0.02 + +name pst-fr3d +category Package +revision 15878 +shortdesc Draw 3-dimensional framed boxes using PSTricks +relocated 1 +longdesc A package using PSTricks to draw three dimensional framed boxes +longdesc using a macro \PstFrameBoxThreeD. The macro is especially +longdesc useful for drawing 3d-seeming buttons. +containersize 2132 +containerchecksum ccd418ac7ac5ee1885cd2b7008e867c08cc0fc13fa97e264377446d301cef1caa82b8552731a4c7d3131f0e2ddaa0267276d5b1726998a0be2f149ac67bbffcd +doccontainersize 171192 +doccontainerchecksum 48c559c27999b06d63ab5c33c9779d0902e05c80c51ba9225f0def724e02892557deda44add976bd5fb73403bbc2615854ef9ea398b830357f0fa5be12702e74 +docfiles size=50 + RELOC/doc/generic/pst-fr3d/Changes + RELOC/doc/generic/pst-fr3d/README details="Readme" + RELOC/doc/generic/pst-fr3d/pst-fr3d.pdf details="Package documentation" +srccontainersize 7608 +srccontainerchecksum 7fde5941ebf78da6f5142d07963aba36f2c298e46c2125f5ec210830f5f3694b3b1a8bd4b342b6065fdefcce1e5807321f379d030b0950d3ca5dcad30ed2ae3e +srcfiles size=9 + RELOC/source/generic/pst-fr3d/pst-fr3d.dtx + RELOC/source/generic/pst-fr3d/pst-fr3d.ins +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-license lppl +catalogue-topics boxing graphics-3d pstricks +catalogue-version 1.10 + +name pst-fractal +category Package +revision 54376 +shortdesc Draw fractal sets using PSTricks +relocated 1 +longdesc The package uses PSTricks to draw the Julia and Mandelbrot +longdesc sets, the Sierpinski triangle, Koch flake, and Apollonius +longdesc Circle as well as fractal trees (which need not be balanced) +longdesc with a variety of different parameters (including varying +longdesc numbers of iterations). The package uses the pst-xkey package, +longdesc part of the xkeyval distribution. +containersize 10416 +containerchecksum 7c37dce7409f524dd67ee66a79af3d8caa6be5c184c5e6a3c0711810956f3d1623c0266e902af163e8bedf4d8109aff7266d6c6e351485abcd9e300dcf554799 +doccontainersize 21911456 +doccontainerchecksum e089a681d0fb6d8505fbeafc1c194d0cc4f81f250e4d53843f71dbe6fe62732bf18098b61ebf70d1ed890c57300b9d64d7b7a2b0fd0d3ba9b831579837308f0b +docfiles size=7816 + RELOC/doc/generic/pst-fractal/Changes + RELOC/doc/generic/pst-fractal/README details="Readme" + RELOC/doc/generic/pst-fractal/pst-fractal-doc.bib + RELOC/doc/generic/pst-fractal/pst-fractal-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-fractal/pst-fractal-doc.tex +runfiles size=13 + RELOC/dvips/pst-fractal/pst-fractal.pro + RELOC/tex/generic/pst-fractal/pst-fractal.tex + RELOC/tex/latex/pst-fractal/pst-fractal.sty +catalogue-ctan /graphics/pstricks/contrib/pst-fractal +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 0.11a + +name pst-fun +category Package +revision 17909 +shortdesc Draw "funny" objects with PSTricks +relocated 1 +longdesc This is a PSTricks related package for drawing funny objects, +longdesc like ant, bird, fish, kangaroo, ... Such objects may be useful +longdesc for testing other PSTricks macros and/or packages. (Or they can +longdesc be used for fun...) +containersize 24440 +containerchecksum 68d0c52bb40354a72b2eb14d2c10a18266badedd452a57e4c2a9aaad343b94f5c13f89853962e85c94ebed9274e87c44cc4ac1fd0203ec54097f71e5c4a15fdb +doccontainersize 380444 +doccontainerchecksum b4f498e3f9d97be8fb8918abe5139d431656b52ac592ce9f3155c6dc7afcea17e51996dbb275968950dfae179b336ef923b2d88efb4b77506c64b5c775920d38 +docfiles size=105 + RELOC/doc/generic/pst-fun/Changes + RELOC/doc/generic/pst-fun/README details="Readme" + RELOC/doc/generic/pst-fun/pst-fun-doc.bib + RELOC/doc/generic/pst-fun/pst-fun-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-fun/pst-fun-doc.tex +srccontainersize 932 +srccontainerchecksum 4cdd6ea161216ee5d8be410b96749ae52d212e75691de0a9012ee6f0b5044d14c5be4e8615a6bc3b3b22f8a8fa99a75977fb264730ae64218b20898444793dd7 +srcfiles size=1 + RELOC/source/generic/pst-fun/Makefile +runfiles size=22 + RELOC/dvips/pst-fun/pst-fun.pro + RELOC/tex/generic/pst-fun/pst-fun.tex + RELOC/tex/latex/pst-fun/pst-fun.sty +catalogue-ctan /graphics/pstricks/contrib/pst-fun +catalogue-license lppl +catalogue-topics frivolous pstricks +catalogue-version 0.04 + +name pst-func +category Package +revision 58786 +shortdesc PSTricks package for plotting mathematical functions +relocated 1 +longdesc The package is built for use with PSTricks. It provides macros +longdesc for plotting and manipulating various mathematical functions: +longdesc polynomials and their derivatives +longdesc f(x)=an*x^n+an-1*x^(n-1)+...+a0 defined by the coefficients a0 +longdesc a1 a2 ... and the derivative order; the Fourier sum f(x) = +longdesc a0/2+a1cos(omega x)+...+b1sin(omega x)+... defined by the +longdesc coefficients a0 a1 a2 ... b1 b2 b3 ...; the Bessel function +longdesc defined by its order; the Gauss function defined by sigma and +longdesc mu; Bezier curves from order 1 (two control points) to order 9 +longdesc (10 control points); the superellipse function (the Lame +longdesc curve); Chebyshev polynomials of the first and second kind; the +longdesc Thomae (or popcorn) function; the Weierstrass function; various +longdesc integration-derived functions; normal, binomial, poisson, +longdesc gamma, chi-squared, student's t, F, beta, Cauchy and Weibull +longdesc distribution functions and the Lorenz curve; the zeroes of a +longdesc function, or the intermediate point of two functions; the +longdesc Vasicek function for describing the evolution of interest +longdesc rates; and implicit functions. The plots may be generated as +longdesc volumes of rotation about the X-axis, as well. +containersize 20116 +containerchecksum 5e609eb9600894ad217c6fb7af7a134447bec166527caf9041c15394666caadce094b1a68c0b365c8863974ab2a850e881666e685943452d12f4008198bfc9e5 +doccontainersize 3516060 +doccontainerchecksum 86bf5a719310809cf9ec4222c667960ed1734a8d2f9a340c287ef241929ecf26048dbc937bc0aad9ccd5179f3918ae65706759757b32b53381be1a3c3395fe4c +docfiles size=1027 + RELOC/doc/generic/pst-func/Changes + RELOC/doc/generic/pst-func/README.md details="Package README" + RELOC/doc/generic/pst-func/pst-func-doc.bib + RELOC/doc/generic/pst-func/pst-func-doc.data + RELOC/doc/generic/pst-func/pst-func-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-func/pst-func-doc.tex +runfiles size=25 + RELOC/dvips/pst-func/pst-func.pro + RELOC/tex/generic/pst-func/pst-func.tex + RELOC/tex/latex/pst-func/pst-func.sty +catalogue-contact-home http://pstricks.tug.org +catalogue-contact-repository https://archiv.dante.de/~herbert/TeXnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-func +catalogue-license lppl +catalogue-topics maths graphics-plotfn graphics-use pstricks +catalogue-version 0.96 + +name pst-gantt +category Package +revision 35832 +shortdesc Draw GANTT charts with PSTricks +relocated 1 +longdesc The package uses PSTricks to draw GANTT charts, which are a +longdesc kind of bar chart that displays a project schedule. The package +longdesc requires the pstricks apparatus, of course. +containersize 2716 +containerchecksum 61b59f922129de60bf954145a0c83a5bb4c0232270b8213b45856a69ca56f32a9525d70ba86e51f95fa1c8836d4922a0dec971dea16f13f0c2f83c80fbfefc56 +doccontainersize 87420 +doccontainerchecksum 950a55218077d7203988c42c83445bfb10f53c7292cb85bb4178ab20b9f1404ab4a864266e52c3af074c45cc27b6777dae71af41caf270143160d3d59e222731 +docfiles size=35 + RELOC/doc/generic/pst-gantt/Changes + RELOC/doc/generic/pst-gantt/README details="Readme" + RELOC/doc/generic/pst-gantt/pst-gantt-doc.bib + RELOC/doc/generic/pst-gantt/pst-gantt-doc.pdf details="Brief documentation, with examples" + RELOC/doc/generic/pst-gantt/pst-gantt-doc.tex +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-license lppl +catalogue-topics diagram gantt pstricks +catalogue-version 0.22a + +name pst-geo +category Package +revision 46273 +shortdesc Geographical Projections +relocated 1 +longdesc The package offers a set of PSTricks related packages for +longdesc various cartographic projections of the terrestrial sphere. The +longdesc package pst-map2d provides conventional projections such as +longdesc Mercator, Lambert, cylindrical, etc. The package pst-map3d +longdesc treats representation in three dimensions of the terrestrial +longdesc sphere. Packages pst-map2dII and pst-map3dII allow use of the +longdesc CIA World DataBank II. Various parameters of the packages allow +longdesc for choice of the level of the detail and the layouts possible +longdesc (cities, borders, rivers etc). Substantial data files are +longdesc provided, in an (internally) compressed format. Decompression +longdesc happens on-the-fly as a document using the data is displayed, +longdesc printed or converted to PDF format. A Perl script is provided +longdesc for the user to do the decompression, if the need should arise. +containersize 24297428 +containerchecksum 2b559409de635cd04e9b128bf44ef5f92ee765d4ccaf2132e3014d9a75ee61867de1724de2c36752bcc600014767f058c3799a5387aa4029268d5fa9dff4e0e9 +doccontainersize 63308472 +doccontainerchecksum 762140a38d7f39875d2d4d25aff57187d32daf017d5be19f7fde14c482d9128c4b2e911f67446cd47a28cd655ebcffe485dc4b6326d41bf3b0693072647cac0e +docfiles size=15522 + RELOC/doc/generic/pst-geo/Changes + RELOC/doc/generic/pst-geo/README details="Readme" + RELOC/doc/generic/pst-geo/examples/Africa.tex + RELOC/doc/generic/pst-geo/examples/Animate0.tex + RELOC/doc/generic/pst-geo/examples/Animate1.tex + RELOC/doc/generic/pst-geo/examples/Animate2.tex + RELOC/doc/generic/pst-geo/examples/AntarticaII.tex + RELOC/doc/generic/pst-geo/examples/AsiaII.tex + RELOC/doc/generic/pst-geo/examples/Berlin.tex + RELOC/doc/generic/pst-geo/examples/D-Karte-3dJG.tex + RELOC/doc/generic/pst-geo/examples/D-karte-3d.tex + RELOC/doc/generic/pst-geo/examples/DANTE.tex + RELOC/doc/generic/pst-geo/examples/Europa.tex + RELOC/doc/generic/pst-geo/examples/EuropeII.tex + RELOC/doc/generic/pst-geo/examples/Greek.tex + RELOC/doc/generic/pst-geo/pst-geo-compress.pl + RELOC/doc/generic/pst-geo/pst-geo-decompress.pl + RELOC/doc/generic/pst-geo/pst-geo-doc.bib + RELOC/doc/generic/pst-geo/pst-geo-doc.pdf details="Documentation" + RELOC/doc/generic/pst-geo/pst-geo-doc.tex +runfiles size=6064 + RELOC/dvips/pst-geo/pst-geo.pro + RELOC/tex/generic/pst-geo/data/README + RELOC/tex/generic/pst-geo/data/Staedte3dJG.tex + RELOC/tex/generic/pst-geo/data/africa-bdy_II.dat + RELOC/tex/generic/pst-geo/data/africa-cil_II.dat + RELOC/tex/generic/pst-geo/data/africa-riv_II.dat + RELOC/tex/generic/pst-geo/data/asia-bdy_II.dat + RELOC/tex/generic/pst-geo/data/asia-cil_II.dat + RELOC/tex/generic/pst-geo/data/asia-isl_II.dat + RELOC/tex/generic/pst-geo/data/asia-riv_II.dat + RELOC/tex/generic/pst-geo/data/aus.dat + RELOC/tex/generic/pst-geo/data/c-cap.dat + RELOC/tex/generic/pst-geo/data/c-sub.dat + RELOC/tex/generic/pst-geo/data/canada.dat + RELOC/tex/generic/pst-geo/data/capitals.dat + RELOC/tex/generic/pst-geo/data/capitals.tex + RELOC/tex/generic/pst-geo/data/capitals3d.tex + RELOC/tex/generic/pst-geo/data/cities.data + RELOC/tex/generic/pst-geo/data/cities.tex + RELOC/tex/generic/pst-geo/data/citycapitals.dat + RELOC/tex/generic/pst-geo/data/citysub.dat + RELOC/tex/generic/pst-geo/data/convert.py + RELOC/tex/generic/pst-geo/data/corse.dat + RELOC/tex/generic/pst-geo/data/europe-bdy_II.dat + RELOC/tex/generic/pst-geo/data/europe-cil_II.dat + RELOC/tex/generic/pst-geo/data/europe-riv_II.dat + RELOC/tex/generic/pst-geo/data/france.dat + RELOC/tex/generic/pst-geo/data/germany.dat + RELOC/tex/generic/pst-geo/data/mexico.dat + RELOC/tex/generic/pst-geo/data/northamerica-bdy_II.dat + RELOC/tex/generic/pst-geo/data/northamerica-cil_II.dat + RELOC/tex/generic/pst-geo/data/northamerica-pby_II.dat + RELOC/tex/generic/pst-geo/data/northamerica-riv_II.dat + RELOC/tex/generic/pst-geo/data/pborder.dat + RELOC/tex/generic/pst-geo/data/pcoast.dat + RELOC/tex/generic/pst-geo/data/pisland.dat + RELOC/tex/generic/pst-geo/data/plake.dat + RELOC/tex/generic/pst-geo/data/rhone.dat + RELOC/tex/generic/pst-geo/data/ridge.dat + RELOC/tex/generic/pst-geo/data/river.dat + RELOC/tex/generic/pst-geo/data/seine.dat + RELOC/tex/generic/pst-geo/data/southamerica-arc_II.dat + RELOC/tex/generic/pst-geo/data/southamerica-bdy_II.dat + RELOC/tex/generic/pst-geo/data/southamerica-cil_II.dat + RELOC/tex/generic/pst-geo/data/southamerica-riv_II.dat + RELOC/tex/generic/pst-geo/data/transfrm.dat + RELOC/tex/generic/pst-geo/data/trench.dat + RELOC/tex/generic/pst-geo/data/usa.dat + RELOC/tex/generic/pst-geo/data/villesFrance.tex + RELOC/tex/generic/pst-geo/data/villesFrance3d.tex + RELOC/tex/generic/pst-geo/data/villesItalia.tex + RELOC/tex/generic/pst-geo/data/villesItalia3d.tex + RELOC/tex/generic/pst-geo/data/wfraczon.dat + RELOC/tex/generic/pst-geo/data/wmaglin.dat + RELOC/tex/generic/pst-geo/pst-geo.tex + RELOC/tex/latex/pst-geo/pst-geo.sty +catalogue-ctan /graphics/pstricks/contrib/pst-geo +catalogue-license lppl +catalogue-topics cartography pstricks +catalogue-version 0.06 + +name pst-geometrictools +category Package +revision 45319 +shortdesc A PSTricks package to draw geometric tools +relocated 1 +longdesc This PSTricks package facilitates the drawing of protractors, +longdesc rulers, compasses and pencils. +containersize 7328 +containerchecksum 1949864f97f21c6cd2a0e706028d5a0ecb4102c0afc5874b78c2bf883aa6698551214ac232f406bad9955e0f0a78f059118a4d950bc4b69bd30ecf9b6fc38606 +doccontainersize 405320 +doccontainerchecksum adf2ae63d32d2cecf77c2aa950c8b827b51d0ae923dfbed7c851f0f0e7d6018216d92cf524b2cb4002c4040dbb579cff552a37cd5ef57cd2d0579b01128a3be6 +docfiles size=130 + RELOC/doc/generic/pst-geometrictools/Changes.txt + RELOC/doc/generic/pst-geometrictools/README.md details="Readme" + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-doc.tex + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-fr-doc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-fr-doc.tex +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-license lppl1.3c +catalogue-topics pstricks maths graphics-use +catalogue-version 1.1 + +name pst-ghsb +category Package +revision 54074 +shortdesc HSB gradients via PSTricks +relocated 1 +longdesc Usage modeled on pst-grad; superseded by pst-slpe. +containersize 2668 +containerchecksum 53f608d40c000f69ec0ac8d4b04799a581296765e8dd0a083a604aaba77eb456fd0f733435455bffc702e19d5083788b12d3bec3476a24f03fdffddd51f1b479 +doccontainersize 86856 +doccontainerchecksum 818108e58ff02cb7733ab00bc9d5112821dfe22b62836c3114154d6f4d26f4fb8e2c9baadfb3c4600cc32d667a174c1992f44260208cc295310326893f806174 +docfiles size=26 + RELOC/doc/generic/pst-ghsb/README + RELOC/doc/generic/pst-ghsb/t-ghsb.pdf + RELOC/doc/generic/pst-ghsb/t-ghsb.tex + RELOC/doc/generic/pst-ghsb/t2-ghsb.pdf + RELOC/doc/generic/pst-ghsb/t2-ghsb.tex +runfiles size=4 + RELOC/dvips/pst-ghsb/pst-ghsb.pro + RELOC/tex/generic/pst-ghsb/pst-ghsb.tex + RELOC/tex/latex/pst-ghsb/pst-ghsb.sty + +name pst-gr3d +category Package +revision 15878 +shortdesc Three dimensional grids with PSTricks +relocated 1 +longdesc This PSTricks package provides a command \PstGridThreeD that +longdesc will draw a three dimensional grid, offering a number of +longdesc options for its appearance. +containersize 2500 +containerchecksum 85cbaa41c3cce49aeda36ef55a89122370fc23dc91c5e5e63790aff2b8b748eb6a13a9a921836b2a471ab2deb9577ecf59be0bc6dfa4d2f1ddcf17bc33ca4264 +doccontainersize 157396 +doccontainerchecksum bd9026c7730dce9c09a092cc420fa7ca8d7c85db4a1f9a665a64f933595b43397027904c08311ab2301305f79a426a1b726b8df2c237c8a545726fadf9b8ed30 +docfiles size=48 + RELOC/doc/generic/pst-gr3d/Changes + RELOC/doc/generic/pst-gr3d/README details="Readme" + RELOC/doc/generic/pst-gr3d/pst-gr3d.pdf details="Package documentation" +srccontainersize 8788 +srccontainerchecksum ce6786ec803ceeb33fd42d2d786d119ec2f604c1d4b4f7a51c6e9ce9e4171f01fff33b66b234a5af854e5bee24f23bb50abb898ab89c568150a50ffd8ff7d582 +srcfiles size=9 + RELOC/source/latex/pst-gr3d/pst-gr3d.dtx + RELOC/source/latex/pst-gr3d/pst-gr3d.ins +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-license lppl +catalogue-topics typeset-grid graphics-3d pstricks +catalogue-version 1.34 + +name pst-grad +category Package +revision 15878 +shortdesc Filling with colour gradients, using PSTricks +relocated 1 +longdesc The package fills with colour gradients, using PSTricks. The +longdesc RGB, CMYK and HSB models are supported. Other colour gradient +longdesc mechanisms are to be found in package pst-slpe. +containersize 3796 +containerchecksum f98fe4e4996e20947d90ef24d6825d72a8ceb6bbd586b0de9b90d5d73208816395e5b195dcda2816c8e709fa4c408f3b814c02911488c83a207039d28654b9e3 +doccontainersize 215188 +doccontainerchecksum 11f4a4de67f92bb2ba77457b5940e2b848985de111e3307215981e6d39617b8590316de5cb6e5002748d9e951be405e3f938d1708c28a7970be53808688c10ef +docfiles size=69 + RELOC/doc/generic/pst-grad/Changes + RELOC/doc/generic/pst-grad/pst-grad-doc.bib + RELOC/doc/generic/pst-grad/pst-grad-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-grad/pst-grad-doc.tex +runfiles size=5 + RELOC/dvips/pst-grad/pst-grad.pro + RELOC/tex/generic/pst-grad/pst-grad.tex + RELOC/tex/latex/pst-grad/pst-grad.sty +catalogue-ctan /graphics/pstricks/contrib/pst-grad +catalogue-license lppl +catalogue-topics colour pstricks +catalogue-version 1.06 + +name pst-graphicx +category Package +revision 21717 +shortdesc A PSTricks-compatible graphicx for use with Plain TeX +relocated 1 +longdesc The package provides a version of graphicx that avoids loading +longdesc the graphics bundle's (original) keyval package, which clashes +longdesc with pstricks' use of xkeyval. +containersize 1112 +containerchecksum 0d3f2d072a7bbb58ff555add4df7347a4dcba929bfba49d25dbf6b95956462a3fda07818135fe40f737151f323a27225983f656389f9a91a8295145ebf2877a1 +doccontainersize 752 +doccontainerchecksum 8deba57cafa74987ff7dd22b52db699fef2067dfb62e8e2c7e8e17b662f1d7644278272ee97209b3c109345ae8c295e125d1b195ff68cdfa8362eb3b7ad1bc84 +docfiles size=3 + RELOC/doc/generic/pst-graphicx/Changes + RELOC/doc/generic/pst-graphicx/README details="Readme" + RELOC/doc/generic/pst-graphicx/demo.tex +runfiles size=1 + RELOC/tex/generic/pst-graphicx/pst-graphicx.tex +catalogue-ctan /graphics/pstricks/contrib/pst-graphicx +catalogue-license lppl +catalogue-topics graphics-incl +catalogue-version 0.02 + +name pst-infixplot +category Package +revision 15878 +shortdesc Using PSTricks plotting capacities with infix expressions rather than RPN +relocated 1 +longdesc Plotting functions with pst-plot is very powerful but sometimes +longdesc difficult to learn since the syntax of \psplot and +longdesc \parametricplot requires some PostScript knowledge. The +longdesc infix-RPN and pst-infixplot styles simplify the usage of +longdesc pst-plot for the beginner, providing macro commands that +longdesc convert natural mathematical expressions to PostScript syntax. +containersize 3340 +containerchecksum a8e69a4bc20752d5f6d455f34fc4810e569a5f444de257c1b50c76d567a23d868b0e19c9f4656370a12d3a53ef35ad43e7dcc946782c19ef76091634bc2440a0 +doccontainersize 155392 +doccontainerchecksum 0b6958f851af834917ab04f39bf60d50e26eb61ea52c9dee91274714ec0a87519323b1f9ef7d665f0a6d05cc97e6f8b1bf51617f2c57a5d80ebb96ba1aa94306 +docfiles size=84 + RELOC/doc/generic/pst-infixplot/README details="Readme" + RELOC/doc/generic/pst-infixplot/pst-infixplot-doc.ps + RELOC/doc/generic/pst-infixplot/pst-infixplot-doc.tex + RELOC/doc/generic/pst-infixplot/pst-infixplot.pdf details="Package documentation" +runfiles size=7 + RELOC/tex/generic/pst-infixplot/infix-RPN.tex + RELOC/tex/generic/pst-infixplot/pst-infixplot.tex + RELOC/tex/latex/pst-infixplot/infix-RPN.sty + RELOC/tex/latex/pst-infixplot/pst-infixplot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-infixplot +catalogue-license lppl +catalogue-topics graphics-plot pstricks +catalogue-version 0.11 + +name pst-intersect +category Package +revision 33210 +shortdesc Compute intersections of arbitrary curves +relocated 1 +longdesc The package computes the intersections between arbitrary +longdesc PostScript paths or Bezier curves, using the Bezier clipping +longdesc algorithm. +containersize 9820 +containerchecksum 847a2532362e570d3e14ac4aadedf0cf1ac0f2da1991837abcb6cbfa607357d8a451d852bec9be50ea8b2995716613475c4c1ea1c3766169902eb82e70aaba0c +doccontainersize 165404 +doccontainerchecksum e8775b9d8adbab9e7ce63d595cb70747dc3d850c4b43095e1a35f6be8093b61ec92457c7fcf6565484e62b1aa7bec82700d8ccb2dc8dca0089e56bc8be5e762a +docfiles size=60 + RELOC/doc/latex/pst-intersect/Changes + RELOC/doc/latex/pst-intersect/README details="Readme" + RELOC/doc/latex/pst-intersect/pst-intersect-DE.pdf details="Package documentation" language="de" + RELOC/doc/latex/pst-intersect/pst-intersect.pdf details="Package documentation" language="en" +srccontainersize 27412 +srccontainerchecksum 87bbc6bb4d4b43d6c1e93e89d7d96c5f9941187181eb93814110e3930255d6ac6c95d81a53a6ed440f6bd4fd8c38725e4cf5763467722465cf941c4cc16b5841 +srcfiles size=29 + RELOC/source/latex/pst-intersect/Makefile + RELOC/source/latex/pst-intersect/pst-intersect.dtx + RELOC/source/latex/pst-intersect/pst-intersect.ins +runfiles size=12 + RELOC/dvips/pst-intersect/pst-intersect.pro + RELOC/tex/generic/pst-intersect/pst-intersect.tex + 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-license lppl +catalogue-topics graphics-supp pstricks +catalogue-version 0.4 + +name pst-jtree +category Package +revision 20946 +shortdesc Typeset complex trees for linguists +relocated 1 +longdesc jTree uses PSTricks to enable linguists to typeset complex +longdesc trees. The package requires use of PStricks (of course) and +longdesc xkeyval packages. jTree is a development of, and replacement +longdesc for, the jftree package, which is no longer available. +containersize 6296 +containerchecksum 9947e00e7fdac25f25f1f828ff5b9a3b962b1d033c57232d2d47736ee7a675ee48367aa934153ec17ae3f2eaa763044dc067d83b2248c5f42a93eb5d9a79e292 +doccontainersize 304048 +doccontainerchecksum 4d0a2432e9880a71f1d7b6a9965dfacbebeb44ea2586fd428fa58f634d7670d763e9ac293aeec6adda6cdef98736a7b5d341ec41d89bf3999c4cfee9066001ae +docfiles size=89 + RELOC/doc/generic/pst-jtree/Doc-source.zip + RELOC/doc/generic/pst-jtree/README + RELOC/doc/generic/pst-jtree/pst-jtree-doc-add.pdf + RELOC/doc/generic/pst-jtree/pst-jtree-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-jtree/pst-jtree-examples.tex +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-license lppl1.3 +catalogue-topics linguistic tree pstricks +catalogue-version 2.6 + +name pst-knot +category Package +revision 16033 +shortdesc PSTricks package for displaying knots +relocated 1 +longdesc The package can produce a fair range of knot shapes, with all +longdesc the standard graphics controls one expects. +containersize 14940 +containerchecksum f481b82e5d21dd86eef3cf64ecedc45420b33e43619574f072a050fd70a6446ef8d527607ed5a929443ff6976cc94a03817837c8776bb2ee9794fec80a4c0751 +doccontainersize 53744 +doccontainerchecksum a8a82ce955b707c6ecb319783cdc4fc8406411dc8d711321919413d84ca42197828e69ae2b6b368a4b5b326650caf5393cb2214a7cd8b7bc0cff742b9b0d977c +docfiles size=22 + RELOC/doc/generic/pst-knot/Changes + RELOC/doc/generic/pst-knot/README details="Readme" + RELOC/doc/generic/pst-knot/pst-knot-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-knot/pst-knot-doc.tex +runfiles size=15 + RELOC/dvips/pst-knot/pst-psm.pro + RELOC/tex/generic/pst-knot/pst-knot.tex + RELOC/tex/latex/pst-knot/pst-knot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-knot +catalogue-license lppl +catalogue-topics decoration pstricks +catalogue-version 0.2 + +name pst-labo +category Package +revision 39077 +shortdesc Draw objects for Chemistry laboratories +relocated 1 +longdesc Pst-labo is a PSTricks related package for drawing basic and +longdesc complex chemical objects. The documentation of the package is +longdesc illuminated with plenty of illustrations together with their +longdesc source code, making it an easy read. +containersize 10140 +containerchecksum a8bc971be59f1072657d9cf9d26056ba800023858df1d060ccc7e31d2c533337520e9583de00085842dfafe84a590e0c90706ac00bc98da282a5454fac76aade +doccontainersize 2742752 +doccontainerchecksum 1b35f244a45fd18eeba484f925292358b5582f0ba18a9c6622afc67ed287e74d0c1c876ff78c19de0e9b53f55c86f30f47a6d179e0142e79aad5c5799e497ba5 +docfiles size=808 + RELOC/doc/generic/pst-labo/Changes + RELOC/doc/generic/pst-labo/Makefile + RELOC/doc/generic/pst-labo/README details="Readme" + RELOC/doc/generic/pst-labo/pst-labo-doc.bib + RELOC/doc/generic/pst-labo/pst-labo-docDE.pdf details="German documentation:" + RELOC/doc/generic/pst-labo/pst-labo-docDE.tex + RELOC/doc/generic/pst-labo/pst-labo-docEN.pdf details="English documentation:" + RELOC/doc/generic/pst-labo/pst-labo-docEN.tex + RELOC/doc/generic/pst-labo/pst-labo-docFR.pdf details="French documentation:" + RELOC/doc/generic/pst-labo/pst-labo-docFR.tex + RELOC/doc/generic/pst-labo/pst-labo8-tab1-DE.tex + RELOC/doc/generic/pst-labo/pst-labo8-tab1-EN.tex + RELOC/doc/generic/pst-labo/pst-labo8-tab1-FR.tex +runfiles size=14 + RELOC/tex/generic/pst-labo/pst-labo.tex + RELOC/tex/generic/pst-labo/pst-laboObj.tex + RELOC/tex/latex/pst-labo/pst-labo.sty +catalogue-ctan /graphics/pstricks/contrib/pst-labo +catalogue-license lppl +catalogue-topics chemistry graphics-use +catalogue-version 2.04 + +name pst-layout +category Package +revision 29803 +shortdesc Page layout macros based on PSTricks packages +relocated 1 +longdesc The package provides a means of creating elaborate +longdesc ("pseudo-tabular") layouts of material, typically to be +longdesc overlaid on an included graphic. The package requires a recent +longdesc version of the package pst-node and some other pstricks-related +longdesc material. +containersize 3780 +containerchecksum 6d4c06efe0d0095ba52eeee25ffdaf44f836e1e41840d8098e25c6fd3b5ee79d28663ef7f02ddd7d1ba21228bf4f9bd5a66548e3aef642a49cc9aab5b4b24fba +doccontainersize 82676 +doccontainerchecksum fa32cd065979fcaf2105372155ae8debb399a0f930d6b85e7ca4a69d8b76bc0d7fb717ebdc8fa4c9794ea03268c2079b93e0bd6453155bf5925defb75cf05e08 +docfiles size=29 + RELOC/doc/latex/pst-layout/README details="Readme" + RELOC/doc/latex/pst-layout/pst-layout-doc.pdf details="Package documentation" + RELOC/doc/latex/pst-layout/pst-layout-doc.tex +runfiles size=3 + RELOC/tex/latex/pst-layout/pst-layout.sty +catalogue-ctan /graphics/pstricks/contrib/pst-layout +catalogue-license lppl +catalogue-topics layout table pstricks +catalogue-version .95 + +name pst-lens +category Package +revision 15878 +shortdesc Lenses with PSTricks +relocated 1 +longdesc This PSTricks package provides a really rather simple command +longdesc \PstLens that will draw a lens. Command parameters provide a +longdesc remarkable range of effects. +containersize 2060 +containerchecksum 406bc53d476d47d464f7fb318e75a5aeac85cf4239ab916e91728f5d8c0c05a9fd4c4fbc24b4b058f1c15d1ee4c6a0d45511b8cf6b288bf10163523b2bed0f37 +doccontainersize 453808 +doccontainerchecksum 8d29f5014e0bae5d1fb22483ca3231e3631c76820be080b3a588660f868ece861c2d816291656a45c8a33356b992cd6e2396e9d73f4ab316b877b2ed8b778f7e +docfiles size=122 + RELOC/doc/generic/pst-lens/Changes + RELOC/doc/generic/pst-lens/README details="Readme" + RELOC/doc/generic/pst-lens/pst-lens.pdf details="Package documentation" +srccontainersize 10572 +srccontainerchecksum 7546475681934697c5fbe287d9d0c81c4532cfb07537ce0184addac26a3c29e4a37da5e12d9ac3e64f83436c07ccd9ca360ca276f77cefbb9c23c740b15bab65 +srcfiles size=11 + RELOC/source/generic/pst-lens/pst-lens.dtx + RELOC/source/generic/pst-lens/pst-lens.ins +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-license lppl +catalogue-topics optics pstricks +catalogue-version 1.02 + +name pst-light3d +category Package +revision 15878 +shortdesc Three dimensional lighting effects (PSTricks) +relocated 1 +longdesc A PSTricks package for three dimensional lighting effects on +longdesc characters and PSTricks graphics, like lines, curves, plots, +longdesc ... +containersize 2536 +containerchecksum 2bcfd2835e20302ec865667a44af8dec63c6c006c8a3e39b048464e129ef04300d0d7c2e23f324a8acee0e1ae1439e75ce642f7b76a8f1958d600546ac7c220c +doccontainersize 836124 +doccontainerchecksum 166f47222230e24530508e3ca66c881dcc844cb8cb35b92fdbeab164b964ebf2928df3068d79467fc8a9a8a4db81d2be48350036169605365bda116cbd86d095 +docfiles size=215 + RELOC/doc/generic/pst-light3d/Changes + RELOC/doc/generic/pst-light3d/README details="Readme" + RELOC/doc/generic/pst-light3d/pst-light3d-doc.bib + RELOC/doc/generic/pst-light3d/pst-light3d-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-light3d/pst-light3d-doc.tex +srccontainersize 824 +srccontainerchecksum 8edab208ea567672bbfa0252fb4180abd8134702058223f04ab23c3ac92dca98f4946ffc31620b9d65376ae41c819038403ad3bd7c9162cabf8efcf7d4d57362 +srcfiles size=1 + RELOC/source/generic/pst-light3d/Makefile +runfiles size=3 + RELOC/dvips/pst-light3d/pst-light3d.pro + RELOC/tex/generic/pst-light3d/pst-light3d.tex + RELOC/tex/latex/pst-light3d/pst-light3d.sty +catalogue-also xkeyval +catalogue-ctan /graphics/pstricks/contrib/pst-light3d +catalogue-license lppl +catalogue-topics graphics-3d graphics-use pstricks +catalogue-version 0.12 + +name pst-lsystem +category Package +revision 49556 +shortdesc Create images based on a L-system +relocated 1 +longdesc pst-lsystem is a PSTricks based package for creating images +longdesc based on a L-system. A L-system (Lindenmayer system) is a set +longdesc of rules which can be used to model the morphology of a variety +longdesc of organisms or fractals like the Kochflake or Hilbert curve. +containersize 2564 +containerchecksum 0da3611c401895f508b6963c46f781863ab6b42ced2addf3413b74ff1c14daf42cdfb5c166072e18427871ed6d06c5cfe3b185f0af30cb25db2f346828ee1682 +doccontainersize 2763276 +doccontainerchecksum 0b277cd979f4a12abb57b8e6d2562b156bba74e0ca46da10da17a6bc505c6747592b5f19c5a3e9b72f99bffabcb45298663c6dca33c875c923408646c4c5f6d8 +docfiles size=723 + RELOC/doc/generic/pst-lsystem/Changes + RELOC/doc/generic/pst-lsystem/README.md details="Readme" + RELOC/doc/generic/pst-lsystem/pst-lsystem-doc.bib + RELOC/doc/generic/pst-lsystem/pst-lsystem-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-lsystem/pst-lsystem-doc.tex +runfiles size=4 + RELOC/dvips/pst-lsystem/pst-lsystem.pro + RELOC/tex/generic/pst-lsystem/pst-lsystem.tex + RELOC/tex/latex/pst-lsystem/pst-lsystem.sty +catalogue-ctan /graphics/pstricks/contrib/pst-lsystem +catalogue-license lppl +catalogue-topics pstricks graphics-use +catalogue-version 0.02 + +name pst-magneticfield +category Package +revision 49780 +shortdesc Plotting a magnetic field with PSTricks +relocated 1 +longdesc pst-magneticfield is a PSTricks related package to draw the +longdesc magnetic field lines of Helmholtz coils in a two or three +longdesc dimensional view. There are several parameters to create a +longdesc different output. For more informations or some examples read +longdesc the documentation of the package. +containersize 5464 +containerchecksum cc2a45978e49d93e677f4b028afeaaf89a0ec5748f545cb575fcd339cf92e1b08d870be79d80a5cf464b29b4e51d5ac5196bfe0665408da1108abf4da4f57222 +doccontainersize 22816204 +doccontainerchecksum cb757378708fea31eb6e644eedb62a23de45c756d0d4fbd902d40a4fd9bb8189ec1a513e5d12748ee2264bc6a35eec67a7bebb8d59128a367025a6dbc6f5551a +docfiles size=7303 + RELOC/doc/generic/pst-magneticfield/Changes + RELOC/doc/generic/pst-magneticfield/README.md details="Readme" + RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.bib + RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.tex +runfiles size=6 + RELOC/dvips/pst-magneticfield/pst-magneticfield.pro + RELOC/tex/generic/pst-magneticfield/pst-magneticfield.tex + RELOC/tex/latex/pst-magneticfield/pst-magneticfield.sty +catalogue-ctan /graphics/pstricks/contrib/pst-magneticfield +catalogue-license lppl +catalogue-topics physics pstricks +catalogue-version 1.16 + +name pst-marble +category Package +revision 50925 +shortdesc A PSTricks package to draw marble-like patterns +relocated 1 +longdesc This is a PSTricks package to draw marble-like patterns. +containersize 8560 +containerchecksum e16ea0ed61c6548d43746f251bf8581a00863370b73d46077e5510fd167d63a539ab4543f0ad7db704571b5274cc5756fb713e5182c8abea404708215a98849b +doccontainersize 20207432 +doccontainerchecksum 5684abd4913353b7a4953ed1b5878183f1c10dcc1bdecea6f3e9e6adef7c73c7f16cdade2b5e18f4a645c203dfb15a3917740a7638c410002eab892bc5ca6acd +docfiles size=9033 + RELOC/doc/generic/pst-marble/CHANGES.md details="Changes" + RELOC/doc/generic/pst-marble/Nautilus.eps + RELOC/doc/generic/pst-marble/README.md details="Package README" + RELOC/doc/generic/pst-marble/Rollers.eps + RELOC/doc/generic/pst-marble/Wave.eps + RELOC/doc/generic/pst-marble/examples/Blendmodes.tex + RELOC/doc/generic/pst-marble/examples/Bouquet.pdf + RELOC/doc/generic/pst-marble/examples/Bouquet.tex + RELOC/doc/generic/pst-marble/examples/BurgWave.pdf + RELOC/doc/generic/pst-marble/examples/BurgWave.tex + RELOC/doc/generic/pst-marble/examples/Contour.pdf + RELOC/doc/generic/pst-marble/examples/Contour.tex + RELOC/doc/generic/pst-marble/examples/Curl.pdf + RELOC/doc/generic/pst-marble/examples/Curl.tex + RELOC/doc/generic/pst-marble/examples/EdgyStirred.pdf + RELOC/doc/generic/pst-marble/examples/EdgyStirred.tex + RELOC/doc/generic/pst-marble/examples/Eggcrate.pdf + RELOC/doc/generic/pst-marble/examples/Eggcrate.tex + RELOC/doc/generic/pst-marble/examples/Latte.pdf + RELOC/doc/generic/pst-marble/examples/Latte.tex + RELOC/doc/generic/pst-marble/examples/Leaves.pdf + RELOC/doc/generic/pst-marble/examples/Leaves.tex + RELOC/doc/generic/pst-marble/examples/Moire.pdf + RELOC/doc/generic/pst-marble/examples/Moire.tex + RELOC/doc/generic/pst-marble/examples/Nautilus.pdf + RELOC/doc/generic/pst-marble/examples/Nautilus.tex + RELOC/doc/generic/pst-marble/examples/Nonpareil.pdf + RELOC/doc/generic/pst-marble/examples/Nonpareil.tex + RELOC/doc/generic/pst-marble/examples/Rollers.pdf + RELOC/doc/generic/pst-marble/examples/Rollers.tex + RELOC/doc/generic/pst-marble/examples/Stone.pdf + RELOC/doc/generic/pst-marble/examples/Stone.tex + RELOC/doc/generic/pst-marble/examples/Transparency.tex + RELOC/doc/generic/pst-marble/examples/Wave.pdf + RELOC/doc/generic/pst-marble/examples/Wave.tex + RELOC/doc/generic/pst-marble/examples/Wreath.pdf + RELOC/doc/generic/pst-marble/examples/Wreath.tex + RELOC/doc/generic/pst-marble/pst-marble-commands.pdf details="Commands" + RELOC/doc/generic/pst-marble/pst-marble-commands.tex + RELOC/doc/generic/pst-marble/pst-marble-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-marble/pst-marble-doc.tex +runfiles size=10 + RELOC/dvips/pst-marble/pst-marble.pro + RELOC/tex/generic/pst-marble/pst-marble.tex + 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-license lppl1.3c +catalogue-topics graphics graphics-use pstricks +catalogue-version 1.6 + +name pst-math +category Package +revision 49425 +shortdesc Enhancement of PostScript math operators to use with PSTricks +relocated 1 +longdesc PostScript lacks a lot of basic operators such as tan, acos, +longdesc asin, cosh, sinh, tanh, acosh, asinh, atanh, exp (with e base). +longdesc Also (oddly) cos and sin use arguments in degrees. Pst-math +longdesc provides all those operators in a header file pst-math.pro with +longdesc wrappers pst-math.sty and pst-math.tex. In addition, sinc, +longdesc gauss, gammaln and bessel are implemented (only partially for +longdesc the latter). The package is designed essentially to work with +longdesc pst-plot but can be used in whatever PS code (such as PSTricks +longdesc SpecialCoor "!", which is useful for placing labels). The +longdesc package also provides a routine SIMPSON for numerical +longdesc integration and a solver of linear equation systems. +containersize 5172 +containerchecksum 4cc671ab7b7cfac83cab929d2a0cfba81f7bb6b92d89460195fbea2875511f9ac51c1f64cfa527903f2c081201f195512443c358691930cfe8c57059e907df53 +doccontainersize 176140 +doccontainerchecksum 76c4425e84bd67e989fa8c533dab1660c03aebb8c21dc335d26d99ce4b628aad3ff4d9769c7e1f501b4ad05b7762142910bb34a97cb92ff98a1cb637a50ebc46 +docfiles size=67 + RELOC/doc/generic/pst-math/Changes + RELOC/doc/generic/pst-math/README details="Readme" + RELOC/doc/generic/pst-math/pst-math-doc.bib + RELOC/doc/generic/pst-math/pst-math-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-math/pst-math-doc.tex +runfiles size=5 + RELOC/dvips/pst-math/pst-math.pro + RELOC/tex/generic/pst-math/pst-math.tex + RELOC/tex/latex/pst-math/pst-math.sty +catalogue-ctan /graphics/pstricks/contrib/pst-math +catalogue-license lppl +catalogue-topics maths calculation pstricks +catalogue-version 0.65 + +name pst-mirror +category Package +revision 32997 +shortdesc Images on a spherical mirror +relocated 1 +longdesc The package provides commands and supporting PostScript +longdesc material for drawing images as if reflected by a spherical +longdesc mirror. +containersize 12180 +containerchecksum edb6796eb96047fe09833056c409527df06d63dd69e9c2b600c1301b43b6e5c858d1061e9a138c89ab47657682f9ee67995a02abfab5251356e2eb8de68f5316 +doccontainersize 6752668 +doccontainerchecksum a9e22f2e00f67f12c69df3a6dd4377d25b8c130c4afa8c995c8961ba426f69f0c286460925c7c782a30b2a23ca5f2d4a46a5dbfaf72955952f561df2545c38b8 +docfiles size=1749 + RELOC/doc/generic/pst-mirror/Changes + RELOC/doc/generic/pst-mirror/README details="Readme" + RELOC/doc/generic/pst-mirror/createEPS/make.sh + RELOC/doc/generic/pst-mirror/createEPS/script.readme + RELOC/doc/generic/pst-mirror/createEPS/scripts/filtre.pl + RELOC/doc/generic/pst-mirror/createEPS/test.pdf + RELOC/doc/generic/pst-mirror/createEPS/test.sh + RELOC/doc/generic/pst-mirror/createEPS/test.tex + RELOC/doc/generic/pst-mirror/createEPS/xa.eps + RELOC/doc/generic/pst-mirror/createEPS/xa.tex + RELOC/doc/generic/pst-mirror/createEPS/xb.eps + RELOC/doc/generic/pst-mirror/createEPS/xc.eps + RELOC/doc/generic/pst-mirror/pst-mirror-doc.bib + RELOC/doc/generic/pst-mirror/pst-mirror-doc.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-mirror/pst-mirror-doc.tex +runfiles size=21 + RELOC/dvips/pst-mirror/pst-mirror.pro + RELOC/tex/generic/pst-mirror/pst-mirror.tex + RELOC/tex/latex/pst-mirror/pst-mirror.sty +catalogue-ctan /graphics/pstricks/contrib/pst-mirror +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 1.01 + +name pst-moire +category Package +revision 49223 +shortdesc A PSTricks package to draw moire patterns +relocated 1 +longdesc This is a PSTricks package to draw moire patterns. +containersize 5304 +containerchecksum 7ae5693ca401b037482c4b8d7173a03b677ee1a8dc62ceccb710264b196a20240f310c26cbf9924dc2b4a9fa2869257843cfe4c87c26616a0f790ab444130a13 +doccontainersize 8320872 +doccontainerchecksum 442f2477e9eaf122249b3a06fd2755afc9e701fe4333102274de3635eee398231d422b8077764465fa42041acc6289d00b4254505b591f055c6dddd41516d0e2 +docfiles size=2188 + RELOC/doc/generic/pst-moire/README.md details="Package README" + RELOC/doc/generic/pst-moire/examples/pattern1.pdf + RELOC/doc/generic/pst-moire/examples/pattern1.tex + RELOC/doc/generic/pst-moire/examples/pattern2.pdf + RELOC/doc/generic/pst-moire/examples/pattern2.tex + RELOC/doc/generic/pst-moire/examples/pattern3.pdf + RELOC/doc/generic/pst-moire/examples/pattern3.tex + RELOC/doc/generic/pst-moire/examples/pattern4.pdf + RELOC/doc/generic/pst-moire/examples/pattern4.tex + RELOC/doc/generic/pst-moire/examples/psGlassPattern.pdf + RELOC/doc/generic/pst-moire/examples/psGlassPattern.tex + RELOC/doc/generic/pst-moire/pst-cosine.pro + RELOC/doc/generic/pst-moire/pst-moire-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-moire/pst-moire-doc.tex + RELOC/doc/generic/pst-moire/pst-sin.pro +runfiles size=7 + RELOC/dvips/pst-moire/pst-moire.pro + RELOC/tex/generic/pst-moire/pst-moire.tex + RELOC/tex/latex/pst-moire/pst-moire.sty +catalogue-ctan /graphics/pstricks/contrib/pst-moire +catalogue-license lppl1.3c +catalogue-topics graphics-use pstricks +catalogue-version 2.1 + +name pst-node +category Package +revision 54687 +shortdesc Nodes and node connections in PSTricks +relocated 1 +longdesc The package enables the user to connect information, and to +longdesc place labels, without knowing (in advance) the actual positions +longdesc of the items to be connected, or where the connecting line +longdesc should go. The macros are useful for making graphs and trees, +longdesc mathematical diagrams, linguistic syntax diagrams, and so on. +longdesc The package contents were previously distributed as a part of +longdesc the pstricks base distribution; the package serves as an +longdesc extension to PSTricks. +containersize 25304 +containerchecksum 655a9f7a373415c1721a8192aff5868c6eeb20fbbbac394b19ff15a66f6322c9cb3e2a6edac3210b14f94a62bccf18ecff1fe3af21951f382477ed27e37ab36f +doccontainersize 418912 +doccontainerchecksum da13d6f9584cb2810b0aac8ed65af49a48128049433a845b6a2d73bc2395e043f6ce89ca84978eb52455cdc713931a610cb1047e46badaa2c6b4baf5073c15e6 +docfiles size=192 + RELOC/doc/generic/pst-node/Changes + RELOC/doc/generic/pst-node/README details="Readme" + RELOC/doc/generic/pst-node/pst-node-doc.bib + RELOC/doc/generic/pst-node/pst-node-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-node/pst-node-doc.tex +runfiles size=29 + RELOC/dvips/pst-node/pst-node.pro + RELOC/dvips/pst-node/pst-node97.pro + RELOC/tex/generic/pst-node/pst-node.tex + RELOC/tex/generic/pst-node/pst-node97.tex + RELOC/tex/latex/pst-node/pst-node.sty +catalogue-ctan /graphics/pstricks/contrib/pst-node +catalogue-license lppl +catalogue-topics graphics-in-tex linguistic +catalogue-version 1.42a + +name pst-ob3d +category Package +revision 54514 +shortdesc Three dimensional objects using PSTricks +relocated 1 +longdesc The package uses PSTricks to provide basic three-dimensional +longdesc objects. As yet, only cubes (which can be deformed to +longdesc rectangular parallelipipeds) and dies (which are only a special +longdesc kind of cubes) are defined. +containersize 2720 +containerchecksum 19cdca2466071a1c6236fd4c149d4962dab3aa0b0c097fa408ea60c2bb46011173033bff02d33f596c8a413ad781c14f785b39bc28be4c85aa66480cb8a7e295 +doccontainersize 168200 +doccontainerchecksum 78ea80a6d63ccbc69640e6e18e8ef43526fd4d4b51a63dccd23429ea44843a0f99f522bc34a7cc88d6ffe48843313da64c550464f28ad48726554bf74b9e9cc5 +docfiles size=51 + RELOC/doc/generic/pst-ob3d/Changes + RELOC/doc/generic/pst-ob3d/README details="Readme" + RELOC/doc/generic/pst-ob3d/pst-ob3d.pdf details="Package documentation" +srccontainersize 9788 +srccontainerchecksum a0827ae0fb0ba2072894bfc284234eb301c982972d8333866cc8b66ff754e85b837fa024083ae31d637ba941569ae491a85bbe62ab32adf0fb99bbe3ecd019ed +srcfiles size=12 + RELOC/source/generic/pst-ob3d/pst-ob3d.dtx + RELOC/source/generic/pst-ob3d/pst-ob3d.ins +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-license lppl +catalogue-topics graphics graphics-3d pstricks +catalogue-version 0.22 + +name pst-ode +category Package +revision 58293 +shortdesc Solving initial value problems for sets of Ordinary Differential Equations +relocated 1 +longdesc The package defines \pstODEsolve for solving initial value +longdesc problems for sets of Ordinary Differential Equations (ODE) +longdesc using the Runge-Kutta-Fehlberg (RKF45) method with automatic +longdesc step size adjustment. The result is stored as a PostScript +longdesc object and may be plotted later using macros from other +longdesc PSTricks packages, such as \listplot (pst-plot) and +longdesc \listplotThreeD (pst-3dplot), or may be further processed by +longdesc user-defined PostScript procedures. Optionally, the computed +longdesc state vectors can be written as a table to a text file. +containersize 5348 +containerchecksum 96318154dd048b4f59c1f0b2dfda1f92306df9d91b4d5a0903410ab5d4ea5ffb6f0355a060a027e8b64061ffd65d10e702305429c5209d3957f0641b70df6416 +doccontainersize 115668 +doccontainerchecksum c98cd3511934fe9e3e145091427e2caf88b0b92711fd5593206c7b6b50c97ee486fd36515cf75f18231cf3a3642a16253641f7ec90294dfca10cc8cddf5a90ba +docfiles size=44 + RELOC/doc/generic/pst-ode/ChangeLog + RELOC/doc/generic/pst-ode/README.txt + RELOC/doc/generic/pst-ode/examples/lorenz.tex + RELOC/doc/generic/pst-ode/examples/ode.tex + RELOC/doc/generic/pst-ode/examples/particle.tex + RELOC/doc/generic/pst-ode/pst-ode-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-ode/pst-ode-doc.tex +runfiles size=6 + RELOC/dvips/pst-ode/pst-ode.pro + RELOC/tex/generic/pst-ode/pst-ode.tex + 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-license lppl +catalogue-topics maths pstricks graphics-plot +catalogue-version 0.15 + +name pst-optexp +category Package +revision 57977 +shortdesc Drawing optical experimental setups +relocated 1 +longdesc The package is a collection of optical components that +longdesc facilitate easy sketching of optical experimental setups. The +longdesc package uses PSTricks for its output. A wide range of free-ray +longdesc and fibre components is provided, the alignment, positioning +longdesc and labelling of which can be achieved in very simple and +longdesc flexible ways. The components may be connected with fibers or +longdesc beams, and realistic raytraced beam paths are also possible. +containersize 37788 +containerchecksum 92302c9c3c4a5a0e7a82fbdb6c72f08aae2ea6a5286f6d8916b19021ace0bdbfd1e935ec4aaac8a18c938c6bb0fa66520f3d98631de419111c43605ad2dc0fbb +doccontainersize 3192500 +doccontainerchecksum dd920f80c8f271737d8dd8077f06fc851034812233b4f7c30e0ccbe4fc57fc08b430efa9b4eb737744acbe0a0c2e898797efa939bf37468f90e6241e1c28667e +docfiles size=1619 + RELOC/doc/latex/pst-optexp/Changes + RELOC/doc/latex/pst-optexp/README details="Readme" + RELOC/doc/latex/pst-optexp/pst-optexp-DE.pdf details="Package manual (German)" language="de" + RELOC/doc/latex/pst-optexp/pst-optexp-quickref.pdf details="Quick reference (cheat-sheet)" + RELOC/doc/latex/pst-optexp/pst-optexp.pdf details="Package manual (English)" language="en" +srccontainersize 155296 +srccontainerchecksum ccdb1330d6ae5835927ce28c5a38162ab632a0b113d74854d2bb8cabb3d0da7d29e39f74a6245be9e30c03a765c383830cb76a9b6bc8d39aece5b0a05be3824f +srcfiles size=207 + RELOC/source/latex/pst-optexp/Makefile + RELOC/source/latex/pst-optexp/pst-optexp.dtx + RELOC/source/latex/pst-optexp/pst-optexp.ins +runfiles size=59 + RELOC/dvips/pst-optexp/pst-optexp.pro + RELOC/makeindex/pst-optexp/pst-optexp.ist + 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-license lppl1.3 +catalogue-topics optics diagram-lab pstricks +catalogue-version 6.0 + +name pst-optic +category Package +revision 41999 +shortdesc Drawing optics diagrams +relocated 1 +longdesc A package for drawing both reflective and refractive optics +longdesc diagrams. The package requires pstricks later than version +longdesc 1.10. +containersize 14660 +containerchecksum c9e0231301824a612c755adbf2789f9cc428bbc6133a5669d173ff1426663f704aa978c506add7e4a0c786b51ed61df355f59e7b6392f355ac6913c6f9336f46 +doccontainersize 308860 +doccontainerchecksum cba9465a3e81060bae7ab4b8d7c8a1ef804415a3f85c0a89c98d57c6a3e8ff2c58a40b91e9c6281ac520be5b03f13d1890d8cce063a892a84d6eee5f6beeb625 +docfiles size=124 + RELOC/doc/generic/pst-optic/Changes + RELOC/doc/generic/pst-optic/README details="Readme" + RELOC/doc/generic/pst-optic/pst-optic-doc.bib + RELOC/doc/generic/pst-optic/pst-optic-doc.pdf details="Package manual:" + RELOC/doc/generic/pst-optic/pst-optic-doc.tex +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-license lppl +catalogue-topics physics diagram pstricks +catalogue-version 1.02 + +name pst-osci +category Package +revision 15878 +shortdesc Oscgons with PSTricks +relocated 1 +longdesc This PSTricks package enables you to produce oscilloscope +longdesc "screen shots". Three channels can be used to represent the +longdesc most common signals (damped or not): namely sinusoidal, +longdesc rectangular, triangular, dog's tooth (left and right oriented). +longdesc The third channel allows you to add, to subtract or to multiply +longdesc the two other signals. Lissajous diagrams (XY-mode) can also be +longdesc obtained. +containersize 3432 +containerchecksum d36d987ca50c50c0840660070dd7eefd4ff49f4e86b1a6f33bb9e549a1468f4992a7eff6de56307e5d5bf4e8063534cf4f658df8e98571a1d86fde3555a67e08 +doccontainersize 1332868 +doccontainerchecksum 80d99115c7c3fdcafef8f4be99b3066799cb40571e219158abb48de0ba405a0c977d0158c20e2b550895d1e63580bc7366338fbbbe7add2c3a89abf618583ecc +docfiles size=344 + RELOC/doc/generic/pst-osci/Changes + RELOC/doc/generic/pst-osci/README details="Readme" + RELOC/doc/generic/pst-osci/oscilloscope.pdf details="French documentation" language="fr" + RELOC/doc/generic/pst-osci/oscilloscope.tex + RELOC/doc/generic/pst-osci/pst-osci-doc.pdf details="English documentation" language="en" + RELOC/doc/generic/pst-osci/pst-osci-doc.tex +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-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 2.82 + +name pst-ovl +category Package +revision 54963 +shortdesc Create and manage graphical overlays +relocated 1 +longdesc The package is useful when building an image from assorted +longdesc material, as in the slides of a projected presentation. The +longdesc package requires pstricks, and shares that package's +longdesc restrictions on usage when generating PDF output. +containersize 1932 +containerchecksum e3349edf9643e5d9e370b5dbf1c4dc3078ec82520c943a81ae353e1ccd0e2476105813b0cbbbeb707de5419035edcc39748c7e86a69cb90f8bc0d61d70f553c5 +doccontainersize 30000 +doccontainerchecksum 755c786cec204ad3dd41043d8dd1bebb33ebbd889580a0a85390ca8efc318076ec9300a8e38b99788bf348a49dbda8ba5f3c758ace788bd9de47c251dd4e0407 +docfiles size=14 + RELOC/doc/generic/pst-ovl/Changes + RELOC/doc/generic/pst-ovl/README details="Readme" + RELOC/doc/generic/pst-ovl/pst-ovl-doc.bib + RELOC/doc/generic/pst-ovl/pst-ovl-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-ovl/pst-ovl-doc.tex +runfiles size=3 + RELOC/dvips/pst-ovl/pst-ovl.pro + RELOC/tex/generic/pst-ovl/pst-ovl.tex + RELOC/tex/latex/pst-ovl/pst-ovl.sty +catalogue-ctan /graphics/pstricks/contrib/pst-ovl +catalogue-license lppl +catalogue-topics pstricks presentation graphics-supp +catalogue-version 0.07b + +name pst-pad +category Package +revision 15878 +shortdesc Draw simple attachment systems with PSTricks +relocated 1 +longdesc The package collects a set of graphical elements based on +longdesc PStricks that can be used to facilitate display of attachment +longdesc systems such as two differently shaped surfaces with or without +longdesc a fluid wedged in between. These macros ease the display of wet +longdesc adhesion models and common friction systems such as boundary +longdesc lubrication, elastohydrodynamic lubrication and hydrodynamic +longdesc lubrication. +containersize 4408 +containerchecksum cf519f69dfd1003ab17a4a67f309336442bf35497cd0102e346ab8537865540c314666fbf01cf6e3e106ce922fd8922ac4bbb5b20ee90a7ce24a7a98ee974006 +doccontainersize 137484 +doccontainerchecksum 0a2206d3ef84dce88d3e0ea7899fb623d12f7f6a820298b031ff76044eb9ec49bb09f70f6ee0b00018fcc02f6260d67ee58c8a06a48ddbfd2e5b17f52d374830 +docfiles size=61 + RELOC/doc/generic/pst-pad/CHANGES + RELOC/doc/generic/pst-pad/README details="Readme" + RELOC/doc/generic/pst-pad/pst-pad-doc-header.tex + RELOC/doc/generic/pst-pad/pst-pad-doc.pdf details="Package documentation" language="en" + RELOC/doc/generic/pst-pad/pst-pad-doc.tex + RELOC/doc/generic/pst-pad/pst-pad-docDE.pdf details="Package documentation" language="de" + RELOC/doc/generic/pst-pad/pst-pad-docDE.tex + RELOC/doc/generic/pst-pad/showexpl.cfg +srccontainersize 640 +srccontainerchecksum ffd5ef230c25a731e5127cda390b60fdc275d53a833f8fd02ef8fda7b959d7ef5e2074637af603f1e510cd558cb3de22245bc34f91bb7114269425d3b4db211f +srcfiles size=1 + RELOC/source/generic/pst-pad/Makefile +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-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 0.3b + +name pst-pdf +category Package +revision 56622 +shortdesc Make PDF versions of graphics by processing between runs +longdesc The package pst-pdf simplifies the use of graphics from +longdesc PSTricks and other PostScript code in PDF documents. As in +longdesc building a bibliography with BibTeX, additional external +longdesc programmes are invoked. In this case they are used to create a +longdesc PDF file (\PDFcontainer) that will contain all the graphics +longdesc material. In the final document these contents will be inserted +longdesc instead of the original PostScript code. The package works with +longdesc pstricks and requires a recent version of the preview package. +depend pst-pdf.ARCH +containersize 7512 +containerchecksum 5f5850f0e908bf6b10977bf616aa82ce05d1f0afd4127b5db14379a510ca62614a3552cc85ec0136805fb479201c817442872f9d1074fa6cc1367f41403476e1 +doccontainersize 964004 +doccontainerchecksum eb5013040f3774e81d019c0010e8fb507d22cb2fb9c74e75f2c14aa0e4edd20245ddaaa3744fec7204c607b5f6329425f8f2b6e09bd153e6df6a3ae39d1e1625 +docfiles size=320 + texmf-dist/doc/latex/pst-pdf/CHANGES + texmf-dist/doc/latex/pst-pdf/Makefile + texmf-dist/doc/latex/pst-pdf/README.md details="README file" + texmf-dist/doc/latex/pst-pdf/pst-pdf-DE.pdf details="German documentation" language="de" + texmf-dist/doc/latex/pst-pdf/pst-pdf-example.pdf details="Examples of use" + texmf-dist/doc/latex/pst-pdf/pst-pdf-example.tex + texmf-dist/doc/latex/pst-pdf/pst-pdf.pdf details="English documentation" language="en" +srccontainersize 162608 +srccontainerchecksum 1c353ad8d3b62fd5e5bb8746f69f00b8df2c7b53dd558ec8b24d571b1fe84fdab02daa4d7193f67a258c7390d50f25cd5270578d742b085634980eefc744b09e +srcfiles size=148 + texmf-dist/source/latex/pst-pdf/elephant.ps + texmf-dist/source/latex/pst-pdf/insect1.eps + texmf-dist/source/latex/pst-pdf/insect15.eps + texmf-dist/source/latex/pst-pdf/knuth.png + texmf-dist/source/latex/pst-pdf/penguin.eps + texmf-dist/source/latex/pst-pdf/psf-demo.eps + texmf-dist/source/latex/pst-pdf/pst-pdf.dtx + texmf-dist/source/latex/pst-pdf/pst-pdf.ins +runfiles size=9 + texmf-dist/scripts/pst-pdf/ps4pdf + texmf-dist/scripts/pst-pdf/ps4pdf.bat + texmf-dist/scripts/pst-pdf/ps4pdf.bat.noMiKTeX + texmf-dist/scripts/pst-pdf/ps4pdf.bat.w95 + texmf-dist/tex/latex/pst-pdf/pst-pdf.sty +catalogue-also pdftricks +catalogue-contact-bugs https://github.com/rolfn/pst-pdf/issues +catalogue-contact-home https://github.com/rolfn/pst-pdf +catalogue-contact-repository https://github.com/rolfn/pst-pdf +catalogue-ctan /macros/latex/contrib/pst-pdf +catalogue-license lppl1.2 +catalogue-topics graphics-epspdf +catalogue-version 1.2f + +name pst-pdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pst-pdf +containersize 344 +containerchecksum d3d8a266f5bec09513123eac5223d65b2463bc90affbf9fc2db66d2bb0c0048b5668ce218d582fa524e26f0ab1c9cc7194a515efe3c3e8a6838b59d09786047f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ps4pdf + +name pst-pdf.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pst-pdf +containersize 344 +containerchecksum 444956211ee65eef0fb276b6981ca70e96e4ca49c7d9039197bd5d983a95c1bcd7e1daa89f824044e10c0dc7faacf5e6aa1e4b3fef214c8793081850c259f545 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ps4pdf + +name pst-pdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pst-pdf +containersize 344 +containerchecksum df97ce2b8496a9b7d144a44bf049bb7bd3481618714a908eff6bd3a7526e2312d76e0d997401e942ff1040e918b66bb860898cb65145014ce04ed178127edf4c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ps4pdf + +name pst-pdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pst-pdf +containersize 344 +containerchecksum 5a440a507457d1b4c4663d1a2c8e231dfc22bbd1154c1f7d71c0d4b720bf93392926c85acf0b9fee320235a6fc10ae76063bd29fa94309c9d7f5d19ba0a0c15a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ps4pdf + +name pst-pdf.i386-cygwin +category Package +revision 12991 +shortdesc i386-cygwin files of pst-pdf +containersize 340 +containerchecksum f7d4e013cb836c196be10daf460d85b6f5c16192f00115329da2a745cbe3adfd308f24267f967b7f768ad01b4fb00696caf6c2b09900fc36dd8813b8e7dd280e +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ps4pdf + +name pst-pdf.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pst-pdf +containersize 344 +containerchecksum b213ca027259bb157e453edb7d3354344e88cf05866855e561ab18ccb8dae4f301912069dccf60c6fada25a5af40e612032f19442d6cca52cb9cd1192efd9aaf +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ps4pdf + +name pst-pdf.i386-linux +category Package +revision 7838 +shortdesc i386-linux files of pst-pdf +containersize 344 +containerchecksum 22ae88d9f49d70e76c4359b56d87192f7d1b54a71c7dcaca1f670be827fc4c82d3312d2833d37353e6d03af151e8f6e3209f3ff9817ac9f4edec1b7b4dfced69 +binfiles arch=i386-linux size=1 + bin/i386-linux/ps4pdf + +name pst-pdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pst-pdf +containersize 344 +containerchecksum 8ddef8a04889ae399e95fc27eba75b9893670b6fd36cf27ccd6281ef7e0e915fc075fdb4d05f657ede112a8eb82cf34ef6907238ab6fedf92bf25d336102296d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ps4pdf + +name pst-pdf.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of pst-pdf +containersize 344 +containerchecksum a61523b4427b69b75ba7a96a4635d2ddde150fd7048d3c85be19c15bb24bbdda37a39216c62b196daec7f19504764e3f7f8093c0780c59f022b08237758ae087 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ps4pdf + +name pst-pdf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pst-pdf +containersize 344 +containerchecksum 60481a77267572fe1960bbd715d269ad700abbf0791df80ac3094706a03bd02b6d2f0bc01d595536731836145d813ae3cb750500ccd26561bd6283de645d6764 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ps4pdf + +name pst-pdf.win32 +category Package +revision 15404 +shortdesc win32 files of pst-pdf +containersize 1528 +containerchecksum 94c9dfac058c2625edfb504af68978b1e2461b066064f12a9ab7d8d4bf846354eac0eab0fcaaa31c22913ed6b03e1aac7e6bf938283c5878ff7aa69adff9fa9e +binfiles arch=win32 size=2 + bin/win32/ps4pdf.bat + bin/win32/ps4pdf.exe + +name pst-pdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pst-pdf +containersize 344 +containerchecksum 07f3eb86ce16b692139bbd66d72419672c787681e9aeb0f30bf0cfd6a8b3c427d62c41c3cf221572111148be9e3bd3dbd0d299dc5a3208df97cc4f6a1057e085 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ps4pdf + +name pst-pdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pst-pdf +containersize 352 +containerchecksum 9b4c9eac1ea6ec21bb4d9a26520eee3ded6f8d6c0288625871ad77c28835d49c917d7d5cbbc42ebe11152d8453fcbed5729f526e8125a89b0bbb15602c52a1b6 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ps4pdf + +name pst-pdf.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of pst-pdf +containersize 340 +containerchecksum d9760fc7c12fe18d29d516595d6b20ad34e9f8441d8d3a5870ad97c603f128d4b979d5f8322785dd0ce49f864617c37b8d6babde3a10733165acb5fa522a2563 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ps4pdf + +name pst-pdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pst-pdf +containersize 344 +containerchecksum 203911363b0bf66fcb691f5e46379f805b6f074ccd74efb855f36af420f6255d2541150f25eef2ab8f33ce5ac876cdcc21ade090d874d88372d95099a8316556 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ps4pdf + +name pst-pdf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pst-pdf +containersize 344 +containerchecksum cdbfd675e0198aae54eaeacd88725ca115fcaf7bb6b453770d86391ed1198af2c7d81e56489c20f1b03187a107ea809c6d2ed2cdb033efc303fc62826de2be00 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ps4pdf + +name pst-pdgr +category Package +revision 45875 +shortdesc Draw medical pedigrees using PSTricks +relocated 1 +longdesc The package provides a set of macros based on PSTricks to draw +longdesc medical pedigrees according to the recommendations for +longdesc standardized human pedigree nomenclature. The drawing commands +longdesc place the symbols on a pspicture canvas. An interface for +longdesc making trees is also provided. The package may be used both +longdesc with LaTeX and PlainTeX. A separate Perl program for generating +longdesc TeX files from spreadsheets is available. +containersize 3384 +containerchecksum c42b723e2739eb3a70f7a984d45b6b738a1dab1f4f3bb7311850c344be736fbc97ababb6f744539deddc7d1cbde47830e81d1bfd42f705a7287b1fb970664823 +doccontainersize 171680 +doccontainerchecksum 006395a2e1caebf8c86f4eb41eeb03a35d47b82e65e18ce4045eb22f93bc78a38f7611a1328216712d29be852fa3431876254f3b41b8b7a2a7c453f32a8e1bf7 +docfiles size=53 + RELOC/doc/generic/pst-pdgr/NEWS + RELOC/doc/generic/pst-pdgr/README details="Readme" + RELOC/doc/generic/pst-pdgr/pst-pdgr.bib + RELOC/doc/generic/pst-pdgr/pst-pdgr.pdf details="Package documentation" +srccontainersize 16788 +srccontainerchecksum e576ffab3eb1b0094bf7514ea996146c1d73abc5f68a47f3cdccf5e7fe7eec133a21511e9d1107ef20541750b12766899bd3c925e09be931b1e0e2a1cee376d9 +srcfiles size=22 + RELOC/source/generic/pst-pdgr/Makefile + RELOC/source/generic/pst-pdgr/pst-pdgr.dtx + RELOC/source/generic/pst-pdgr/pst-pdgr.ins +runfiles size=5 + RELOC/tex/generic/pst-pdgr/pst-pdgr.tex + RELOC/tex/latex/pst-pdgr/pst-pdgr.cfg + RELOC/tex/latex/pst-pdgr/pst-pdgr.sty +catalogue-also pedigree-perl +catalogue-ctan /graphics/pstricks/contrib/pedigree/pst-pdgr +catalogue-license lppl +catalogue-topics humanities pstricks +catalogue-version 0.4 + +name pst-perspective +category Package +revision 39585 +shortdesc Draw perspective views using PSTricks +relocated 1 +longdesc The package provides the means to draw an orthogonal parallel +longdesc projection with an arbitrarily chosen angle and a variable +longdesc shortening factor. +containersize 3556 +containerchecksum b1c6c1313e0f87d7c4dbc7122d09777f14f02ad0908c6151fb5da905d908a9ca2d905c5a9e3fb1e54deb0b7b91dda1488de0b96ff40683488947985d68e2d331 +doccontainersize 1274264 +doccontainerchecksum df82bc95d3720f7da3c23736d83fbaeae5132f7b84aea9f2fd8ddf925f919e5d56f6701bf5b541446c024e8d2f6a5875d562d96cdb1564dae92d6ade759671cc +docfiles size=449 + RELOC/doc/generic/pst-perspective/Parallelprojektion-Kreis.pdf + RELOC/doc/generic/pst-perspective/Parallelprojektion-Kreis.tex + RELOC/doc/generic/pst-perspective/README details="Readme" + RELOC/doc/generic/pst-perspective/pst-perspective-doc.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-perspective/pst-perspective-doc.tex + RELOC/doc/generic/pst-perspective/pst-perspective-docEN.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-perspective/pst-perspective-docEN.tex +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-license lppl1.3 +catalogue-topics graphics-3d pstricks +catalogue-version 1.05 + +name pst-platon +category Package +revision 16538 +shortdesc Platonic solids in PSTricks +relocated 1 +longdesc The package adds to PSTricks the ability to draw 3-dimensional +longdesc views of the five Platonic solids. +containersize 2788 +containerchecksum 8eade14982b0ffa2c5e7d5c68a91d4159ee6f3317b20836c3f470ed68940a522459bdce54b1e1dd4068173e50b0c611531d1210b1651d805602f952a1696626c +doccontainersize 90668 +doccontainerchecksum 7c252b535853c4941fc4cdbe504a3c20ece2c04dd15e2bc5ea0c88928b5fdd7063035c329dccb7ed04d71606e70f632fc1d66847dd35ea46a4626c04070974be +docfiles size=34 + RELOC/doc/generic/pst-platon/Changes + RELOC/doc/generic/pst-platon/README details="Readme" + RELOC/doc/generic/pst-platon/pst-platon-doc.bib + RELOC/doc/generic/pst-platon/pst-platon-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-platon/pst-platon-doc.tex +srccontainersize 936 +srccontainerchecksum 092665b806f358201f0dc1b0010796c2090b84cf31d1f0e9e33d2ce370049f0e7f65ebac23cf9841f770df8c61c22bdea60e583474694311c7e3fb4fd71ced6f +srcfiles size=1 + RELOC/source/generic/pst-platon/Makefile +runfiles size=3 + RELOC/tex/latex/pst-platon/pst-platon.sty +catalogue-ctan /graphics/pstricks/contrib/pst-platon +catalogue-license lppl +catalogue-topics maths graphics-3d pstricks +catalogue-version 0.01 + +name pst-plot +category Package +revision 54080 +shortdesc Plot data using PSTricks +relocated 1 +longdesc The package provides plotting of data (typically from external +longdesc files), using PSTricks. Plots may be configured using a wide +longdesc variety of parameters. +containersize 22588 +containerchecksum 7e784c8c50671da1b2efbc191a4afc91739718d9c117aa49740e869296a415287031c91c79f750eceb7f90b36f8a6bd5b37c87dad7d84b6776a014cfc6a4f88c +doccontainersize 1121064 +doccontainerchecksum 9f486e767bddf56647583d598dcac7b64c1ad390d94fea88a285d3aeaaa32d8151883b438c48e0d75b3ba41fef21b38cdc2fe7dd724978827b55dfc6d3bd54c0 +docfiles size=593 + RELOC/doc/generic/pst-plot/Changes + RELOC/doc/generic/pst-plot/README details="Readme" + RELOC/doc/generic/pst-plot/data/Data.dat + RELOC/doc/generic/pst-plot/data/LSM.data + RELOC/doc/generic/pst-plot/data/LSM2.data + RELOC/doc/generic/pst-plot/data/boxplot.data + RELOC/doc/generic/pst-plot/data/data.data + RELOC/doc/generic/pst-plot/data/data1.dat + RELOC/doc/generic/pst-plot/data/data3.data + RELOC/doc/generic/pst-plot/data/dataMul.data + RELOC/doc/generic/pst-plot/data/demo.txt + RELOC/doc/generic/pst-plot/data/demo0.data + RELOC/doc/generic/pst-plot/data/demo1.data + RELOC/doc/generic/pst-plot/data/demo2.data + RELOC/doc/generic/pst-plot/data/demo3.data + RELOC/doc/generic/pst-plot/data/dotmatrix.data + RELOC/doc/generic/pst-plot/data/pst-plot-doc.eps + RELOC/doc/generic/pst-plot/data/pstricks-add-data9.data + RELOC/doc/generic/pst-plot/data/test.data + RELOC/doc/generic/pst-plot/pst-plot-doc.bib + RELOC/doc/generic/pst-plot/pst-plot-doc.pdf details="Package documentation" language="en" + RELOC/doc/generic/pst-plot/pst-plot-doc.tex +runfiles size=32 + RELOC/tex/generic/pst-plot/pst-plot.tex + RELOC/tex/generic/pst-plot/pst-plot97.tex + RELOC/tex/latex/pst-plot/pst-plot.sty +catalogue-also pgfplots +catalogue-contact-home https://www.tug.org/PSTricks/ +catalogue-contact-repository https://archiv.dante.de/~herbert/texnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-plot +catalogue-license lppl +catalogue-topics data-import data-disp pstricks +catalogue-version 1.92 + +name pst-poker +category Package +revision 53482 +shortdesc Drawing poker cards +relocated 1 +longdesc This PSTricks related package can create poker cards in various +longdesc manners. +containersize 347516 +containerchecksum 6995f975d1c149f5b67126e6a01c076802a5a40cae3f7376a25258b923397d61f021af19822df4e4a522b3648d3a0e6ad1e5d81e38527c7468e753b0fa35c525 +doccontainersize 2444488 +doccontainerchecksum 619a0a9576c4cd17f6bdac1c2e0dad6b42084fa8f8f2bb1f38a8a07d0a0e7195f79edae841e79f80393165b2671063f6e8388fc2c5b9c12d063f1421a0a4a0fa +docfiles size=610 + RELOC/doc/latex/pst-poker/Changes + RELOC/doc/latex/pst-poker/README details="Readme" + RELOC/doc/latex/pst-poker/pst-poker-doc.bib + RELOC/doc/latex/pst-poker/pst-poker-doc.pdf details="Package documentation" + RELOC/doc/latex/pst-poker/pst-poker-doc.tex +runfiles size=1277 + RELOC/tex/latex/pst-poker/Jack-club-bw.eps + RELOC/tex/latex/pst-poker/Jack-club-color.eps + RELOC/tex/latex/pst-poker/Jack-diamond-bw.eps + RELOC/tex/latex/pst-poker/Jack-diamond-color.eps + RELOC/tex/latex/pst-poker/Jack-heart-bw.eps + RELOC/tex/latex/pst-poker/Jack-heart-color.eps + RELOC/tex/latex/pst-poker/Jack-spade-bw.eps + RELOC/tex/latex/pst-poker/Jack-spade-color.eps + RELOC/tex/latex/pst-poker/King-club-bw.eps + RELOC/tex/latex/pst-poker/King-club-color.eps + RELOC/tex/latex/pst-poker/King-diamond-bw.eps + RELOC/tex/latex/pst-poker/King-diamond-color.eps + RELOC/tex/latex/pst-poker/King-heart-bw.eps + RELOC/tex/latex/pst-poker/King-heart-color.eps + RELOC/tex/latex/pst-poker/King-spade-bw.eps + RELOC/tex/latex/pst-poker/King-spade-color.eps + RELOC/tex/latex/pst-poker/Queen-club-bw.eps + RELOC/tex/latex/pst-poker/Queen-club-color.eps + RELOC/tex/latex/pst-poker/Queen-diamond-bw.eps + RELOC/tex/latex/pst-poker/Queen-diamond-color.eps + RELOC/tex/latex/pst-poker/Queen-heart-bw.eps + RELOC/tex/latex/pst-poker/Queen-heart-color.eps + RELOC/tex/latex/pst-poker/Queen-spade-bw.eps + 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-license lgpl3 +catalogue-topics pstricks games +catalogue-version 0.03a + +name pst-poly +category Package +revision 35062 +shortdesc Polygons with PSTricks +relocated 1 +longdesc This PSTricks package provides a really rather simple command +longdesc \PstPolygon that will draw various regular and non-regular +longdesc polygons (according to command parameters); various shortcuts +longdesc to commonly-used polygons are provided, as well as a command +longdesc \pspolygonbox that frames text with a polygon. The package uses +longdesc the xkeyval package for argument decoding. +containersize 3176 +containerchecksum badd0fcc2b439ba270d5375703f91df9009fb7eae920915eab8757185da0c6665c34d530d9b4d8bf469767dd79ee834ded104a0fd98243a1e8a17cda47be0f79 +doccontainersize 141292 +doccontainerchecksum 0facae2d565a22853a6e455534065f5954571311898e0850fcee7b18909f1cd0fe06b116138faedda6767d8514d44f7d843c13985f8723ccb8ec03a81bbaa46a +docfiles size=53 + RELOC/doc/generic/pst-poly/Changes + RELOC/doc/generic/pst-poly/README details="Package Readme" + RELOC/doc/generic/pst-poly/pst-poly-doc.bib + RELOC/doc/generic/pst-poly/pst-poly-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-poly/pst-poly-doc.tex +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-license lppl +catalogue-topics maths pstricks +catalogue-version 1.63 + +name pst-pulley +category Package +revision 45316 +shortdesc Plot pulleys, using PSTricks +relocated 1 +longdesc The package enables the user to draw pulley systems with up to +longdesc 6 pulleys. The pulley diagrams are labelled with the physical +longdesc properties of the system. The package uses pstricks and +longdesc requires several PSTricks-related packages. +containersize 4764 +containerchecksum 4253283884b3cc36801dd7d462655d3cccbdaa70af0219765a3225c8b928e49cf0964d4db4728ef01e06ed33865facc46bd767f4d1cdbddfbaf0213e4ead012e +doccontainersize 122132 +doccontainerchecksum 28a4654d2219e056ab1a53bc0fbb60feb919b3dc26b1e542b561cdb6d3f0b1abd050afdaa99a9ba5b374462cc451c1681622f6c6c3f6aef26738a36a845648a2 +docfiles size=46 + RELOC/doc/generic/pst-pulley/Changes + RELOC/doc/generic/pst-pulley/README.md details="Readme" + RELOC/doc/generic/pst-pulley/pst-pulley-doc.bib + RELOC/doc/generic/pst-pulley/pst-pulley-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-pulley/pst-pulley-doc.tex +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-license lppl1.3 +catalogue-topics graphics-use pstricks diagram +catalogue-version 0.02 + +name pst-qtree +category Package +revision 15878 +shortdesc Simple syntax for trees +relocated 1 +longdesc The package provides a qtree-like front end for PSTricks. +containersize 1844 +containerchecksum 5bbb7fdd477850e4e6c2bc395665c50668a427cbe176122d160fdfc2aa2f322ed83ec43929dd185fa1dec439bec3f5de719aa8d640d0bc498aa7ac9f9089cd5b +doccontainersize 24596 +doccontainerchecksum 4a0bba9fa7072e5860403c3b22a23947045106fd4b89781af848d17afbc5ac456c77617979ebcb80afe07620ab8b990e868c688301c4637804d32790fa4bd7f4 +docfiles size=13 + RELOC/doc/generic/pst-qtree/CHANGES + RELOC/doc/generic/pst-qtree/LICENSE + RELOC/doc/generic/pst-qtree/pst-qtree-manual.pdf details="Package documentation" + RELOC/doc/generic/pst-qtree/pst-qtree-manual.tex +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-license gpl +catalogue-topics tree + +name pst-rputover +category Package +revision 44724 +shortdesc Place text over objects without obscuring background colors +relocated 1 +longdesc This is a PSTricks package which allows to place text over +longdesc objects without obscuring background colors. +containersize 2600 +containerchecksum 3bd94d3a37fc8bbabba547a0072618c6e2bd2f6052f95cd4dd8cb973f64c4e97d0c7ef72fbe425df032aacbb8cb109b0eb06ee304b725ddcda6489da2c893934 +doccontainersize 85380 +doccontainerchecksum 16bc8c2500c19cdaeb701da98e4de0ffdc13116a0ed5802beae395e9664ee16acc6341db7d2c3ea7b2a16b0afac35503cd5a53e1ce1fbd67598be4c890b317d9 +docfiles size=38 + RELOC/doc/generic/pst-rputover/Changes.txt + RELOC/doc/generic/pst-rputover/README.md details="Readme" + RELOC/doc/generic/pst-rputover/pst-rputover-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-rputover/pst-rputover-doc.tex +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-license lppl1.3c +catalogue-topics pstricks +catalogue-version 1.0 + +name pst-rubans +category Package +revision 23464 +shortdesc Draw three-dimensional ribbons +relocated 1 +longdesc The package uses PStricks and pst-solides3d to draw three +longdesc dimensional ribbons on a cylinder, torus, sphere, cone or +longdesc paraboloid. The width of the ribbon, the number of turns, the +longdesc colour of the outer and the inner surface of the ribbon may be +longdesc set. In the case of circular and conical helices, one may also +longdesc choose the number of ribbons. +containersize 3136 +containerchecksum 360f1a04170358b976bc8b6d4d4ee138398f6b018b5611811fc41d90475c474e89fed214708d11b47bdb58cfcf983b37c3338c4d5b13b13825f3388d1562372b +doccontainersize 565612 +doccontainerchecksum 086f80c0b99a0043769b159b6f52de125f01e6c3b00189b0924c62961b934121b09a2f1634fdeef737b2fc468c392051f8b117e1de5d7e6d223e79ff443c2cae +docfiles size=152 + RELOC/doc/generic/pst-rubans/Changes + RELOC/doc/generic/pst-rubans/README + RELOC/doc/generic/pst-rubans/pst-rubans-doc.bib + RELOC/doc/generic/pst-rubans/pst-rubans-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-rubans/pst-rubans-doc.tex +srccontainersize 960 +srccontainerchecksum f62e689c044a0600f4e303251329033e705f3d08b025214af34cc85488f347324d552594a321f88ecf91845b5db5011875436ba9fdb819dbe038dbbe012c4676 +srcfiles size=1 + RELOC/source/generic/pst-rubans/Makefile +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-license lppl +catalogue-topics graphics pstricks +catalogue-version 1.2 + +name pst-shell +category Package +revision 56070 +shortdesc Plotting sea shells +relocated 1 +longdesc pst-shell is a PSTricks related package to draw seashells in 3D +longdesc view: Argonauta, Epiteonium, Lyria, Turritella, Tonna, +longdesc Achatina, Oxystele, Conus, Ammonite, Codakia, Escalaria, +longdesc Helcion, Natalina, Planorbis, and Nautilus, all with different +longdesc parameters. pst-shell needs pst-solides3d and an up-to-date +longdesc PSTricks, which should be part of your local TeX installation, +longdesc otherwise get it from a CTAN server. +containersize 3116 +containerchecksum e6c12f5a1c8eb6b521e6bd3d76609a750bc12633de1645f6991a177d633043f1c5597091b34639079bd007d81302ecfb6715f826ec42353720863885e1d3a1e7 +doccontainersize 15919656 +doccontainerchecksum 72185b764b1c282e772341b9c616b27252759f8e0ca3a776770e976a31d160cea7ac74f23a982e088dee50a86a9af73d19f3f695a24f13381e88281c8c33577c +docfiles size=5980 + RELOC/doc/generic/pst-shell/Changes + RELOC/doc/generic/pst-shell/README.md details="Readme" + RELOC/doc/generic/pst-shell/data/cockle-2-couleurs.dat + RELOC/doc/generic/pst-shell/data/cockle-2-faces.dat + RELOC/doc/generic/pst-shell/data/cockle-2-io.dat + RELOC/doc/generic/pst-shell/data/cockle-2-sommets.dat + RELOC/doc/generic/pst-shell/data/cockle-couleurs.dat + RELOC/doc/generic/pst-shell/data/cockle-faces.dat + RELOC/doc/generic/pst-shell/data/cockle-io.dat + RELOC/doc/generic/pst-shell/data/cockle-sommets.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-couleurs.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-faces.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-io.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-sommets.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-couleurs.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-faces.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-io.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-sommets.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-couleurs.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-faces.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-io.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-sommets.dat + RELOC/doc/generic/pst-shell/images/shell.eps + RELOC/doc/generic/pst-shell/images/shell.pdf + RELOC/doc/generic/pst-shell/pst-shell-doc.bib + RELOC/doc/generic/pst-shell/pst-shell-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-shell/pst-shell-doc.tex + RELOC/doc/generic/pst-shell/zz.tex +srccontainersize 1100 +srccontainerchecksum b49620358aa5b8d57c4f227770a59ffe84a751a494ed459c8a61602b3a32621df6a31041311f939c4da6ac2114c5c4381d2ef0cf1ce870ea41081d9d920f5902 +srcfiles size=1 + RELOC/source/generic/pst-shell/Makefile +runfiles size=4 + RELOC/dvips/pst-shell/pst-shell.pro + RELOC/tex/generic/pst-shell/pst-shell.tex + RELOC/tex/latex/pst-shell/pst-shell.sty +catalogue-ctan /graphics/pstricks/contrib/pst-shell +catalogue-license lppl +catalogue-topics graphics-in-tex colour pstricks dvips-special xetex +catalogue-version 0.03 + +name pst-sigsys +category Package +revision 21667 +shortdesc Support of signal processing-related disciplines +relocated 1 +longdesc The package offers a collection of useful macros for +longdesc disciplines related to signal processing. It defines macros for +longdesc plotting a sequence of numbers, drawing the pole-zero diagram +longdesc of a system, shading the region of convergence, creating an +longdesc adder or a multiplier node, placing a framed node at a given +longdesc coordinate, creating an up-sampler or a down-sampler node, +longdesc drawing the block diagram of a system, drawing adaptive +longdesc systems, sequentially connecting a list of nodes, and +longdesc connecting a list of nodes using any node-connecting macro. +containersize 4696 +containerchecksum db3d3dd31c4166a132a174cc9b2a86fb226496c663c1ba95b36f6590e18799c5eb4e8587ccc3db5de0d3833729ffa90080cf037519b2a7ba24c70fe381aedad9 +doccontainersize 286952 +doccontainerchecksum ae2869eaa649898daf057875d28fef1be5f20caf0b7385ba7723e9be51e534cc69b953bba8ad4fa6d04a0d67f85659c82ec08043ba760279a6759c20a2c27d0f +docfiles size=144 + RELOC/doc/generic/pst-sigsys/Changes + RELOC/doc/generic/pst-sigsys/README details="Readme" + RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.bib + RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.tex +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-license lppl +catalogue-topics physics engineering pstricks +catalogue-version 1.4 + +name pst-slpe +category Package +revision 24391 +shortdesc Sophisticated colour gradients +relocated 1 +longdesc This PStricks package covers all the colour gradient +longdesc functionality of pst-grad (part of the base PSTricks +longdesc distribution), and provides the following facilities: it +longdesc permits the user to specify an arbitrary number of colours, +longdesc along with the points at which they are to be reached; it +longdesc converts between RGB and HSV behind the scenes; it provides +longdesc concentric and radial gradients; it provides a command \psBall +longdesc that generates bullets with a three-dimensional appearance; and +longdesc uses the xkeyval package for the extended key handling. +containersize 3176 +containerchecksum 43905d7525acca6d10261e169a1c1ec1ee0cf0d4b7fcd05643dea3f705331588d774649ad5ca560111269025e92a1e91796693c5246e4d2b2816dd33d4eed87b +doccontainersize 244888 +doccontainerchecksum 377a89c5dcc49e587e3e2d2e1221c289da9dc6b3cc0565bd182d0ec356835309c12eecf68680ac4083c906701365de0068608ee1e49ea9fb95c866a188931a67 +docfiles size=72 + RELOC/doc/generic/pst-slpe/Changes + RELOC/doc/generic/pst-slpe/README details="Readme" + RELOC/doc/generic/pst-slpe/pst-slpe.pdf details="Package documentation" +srccontainersize 12612 +srccontainerchecksum f8579912fb5477394f8eb150de776b9a15dad8f67b821a073748910388e06c70b23163fdabe260d55216add2924879f5380915c5d3ebbb21f0da3c65c6f82f73 +srcfiles size=12 + RELOC/source/generic/pst-slpe/Makefile + RELOC/source/generic/pst-slpe/pst-slpe.dtx + RELOC/source/generic/pst-slpe/pst-slpe.ins +runfiles size=5 + RELOC/dvips/pst-slpe/pst-slpe.pro + RELOC/tex/generic/pst-slpe/pst-slpe.tex + RELOC/tex/latex/pst-slpe/pst-slpe.sty +catalogue-ctan /graphics/pstricks/contrib/pst-slpe +catalogue-license lppl +catalogue-topics colour pstricks +catalogue-version 1.31 + +name pst-solarsystem +category Package +revision 45097 +shortdesc Plot the solar system for a specific date +relocated 1 +longdesc The package uses pstricks to produce diagrams of the visible +longdesc planets, projected on the plane of the ecliptic. It is not +longdesc possible to represent all the planets in their real +longdesc proportions, so only Mercury, Venus, Earth and Mars have their +longdesc orbits in correct proportions and their relative sizes are +longdesc observed. Saturn and Jupiter are in the right direction, but +longdesc not in the correct size. +containersize 4908 +containerchecksum 48c38ec076b20b28aef50c207a77069cf5053a209f4ddcb3adb5a8e01f2b6510abb388075c7e5c90b6b48ecdf6f92764836dd58fb51181e28afbbe6d47600abd +doccontainersize 267348 +doccontainerchecksum 581e73c180e455adb09453c7f535de5a3f540c3d8046ea0a1667f9f13390cf63297b9073ef66d93f4c6b2aadffad3de24000a49cbbbe374bb7af75402fb6bef1 +docfiles size=74 + RELOC/doc/generic/pst-solarsystem/Changes + RELOC/doc/generic/pst-solarsystem/README details="Readme" + RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.bib + RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.tex +runfiles size=6 + RELOC/dvips/pst-solarsystem/pst-solarsystem.pro + RELOC/tex/generic/pst-solarsystem/pst-solarsystem.tex + RELOC/tex/latex/pst-solarsystem/pst-solarsystem.sty +catalogue-ctan /graphics/pstricks/contrib/pst-solarsystem +catalogue-license lppl +catalogue-topics astronomy pstricks +catalogue-version 0.13 + +name pst-solides3d +category Package +revision 49520 +shortdesc Draw perspective views of 3D solids +relocated 1 +longdesc The package is designed to draw solids in 3d perspective. +longdesc Features include: create primitive solids; create solids by +longdesc including a list of its vertices and faces; faces of solids and +longdesc surfaces can be colored by choosing from a very large palette +longdesc of colors; draw parametric surfaces in algebraic and reverse +longdesc polish notation; create explicit and parameterized algebraic +longdesc functions drawn in 2 or 3 dimensions; project text onto a plane +longdesc or onto the faces of a solid; support for including external +longdesc database files. +containersize 55392 +containerchecksum 7e725978c030da337d882e05069b749a4398b1a1c479a50db34fc63801cb77b78630e2d1dfd0c3a39aeab3e931236dad91b6c722c4d6e06dcfd867f007ce99f6 +doccontainersize 6260992 +doccontainerchecksum a00138b042c58700438cfb3f094f836b029d31ee3de40ed290d3f5475a31cb3fc949c13402c35d088dd1cacf13c66bcee934a0ad59e97ceee5ce9db1f99e7c4d +docfiles size=2488 + RELOC/doc/generic/pst-solides3d/Changes + RELOC/doc/generic/pst-solides3d/README details="Readme" + RELOC/doc/generic/pst-solides3d/data/Pyramid-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/Pyramid-faces.dat + RELOC/doc/generic/pst-solides3d/data/Pyramid-io.dat + RELOC/doc/generic/pst-solides3d/data/Pyramid-sommets.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-faces.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-io.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-sommets.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-faces.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-io.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-sommets.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer_levres.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer_sourcils.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer_yeux.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-faces.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-io.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-sommets.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-faces.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-io.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-sommets.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-faces.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-io.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-sommets.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-faces.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-io.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-sommets.dat + RELOC/doc/generic/pst-solides3d/data/rocket.obj + RELOC/doc/generic/pst-solides3d/data/slicePyramid-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/slicePyramid-faces.dat + RELOC/doc/generic/pst-solides3d/data/slicePyramid-io.dat + RELOC/doc/generic/pst-solides3d/data/slicePyramid-sommets.dat + RELOC/doc/generic/pst-solides3d/data/sommets_nefer.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-sommets.dat + RELOC/doc/generic/pst-solides3d/images/kepler.eps + RELOC/doc/generic/pst-solides3d/images/parrot.eps + RELOC/doc/generic/pst-solides3d/images/tiger.eps + RELOC/doc/generic/pst-solides3d/pst-solides3d-doc.bib + RELOC/doc/generic/pst-solides3d/pst-solides3d-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-solides3d/pst-solides3d-doc.tex + RELOC/doc/generic/pst-solides3d/text/chapter-1-en.tex + RELOC/doc/generic/pst-solides3d/text/chapter-2-en.tex + RELOC/doc/generic/pst-solides3d/text/par-acknowledgements-en.tex + RELOC/doc/generic/pst-solides3d/text/par-affinage-en.tex + RELOC/doc/generic/pst-solides3d/text/par-anneaux-en.tex + RELOC/doc/generic/pst-solides3d/text/par-annoterschema-en.tex + RELOC/doc/generic/pst-solides3d/text/par-axes3D-en.tex + RELOC/doc/generic/pst-solides3d/text/par-chanfrein-en.tex + RELOC/doc/generic/pst-solides3d/text/par-codejps-en.tex + RELOC/doc/generic/pst-solides3d/text/par-colorierfacettes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-commandestrace-en.tex + RELOC/doc/generic/pst-solides3d/text/par-couleurs-en.tex + RELOC/doc/generic/pst-solides3d/text/par-courbeR3-en.tex + RELOC/doc/generic/pst-solides3d/text/par-cylindres-cones-en.tex + RELOC/doc/generic/pst-solides3d/text/par-datfile-en.tex + RELOC/doc/generic/pst-solides3d/text/par-definirfonction-en.tex + RELOC/doc/generic/pst-solides3d/text/par-definirplanquelconque-en.tex + RELOC/doc/generic/pst-solides3d/text/par-definitionmaillage-en.tex + RELOC/doc/generic/pst-solides3d/text/par-eclairageponctuel-en.tex + RELOC/doc/generic/pst-solides3d/text/par-enleverfacettes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-extensions-en.tex + RELOC/doc/generic/pst-solides3d/text/par-face-en.tex + RELOC/doc/generic/pst-solides3d/text/par-fusion-en.tex + RELOC/doc/generic/pst-solides3d/text/par-fusionjps-en.tex + RELOC/doc/generic/pst-solides3d/text/par-geode-en.tex + RELOC/doc/generic/pst-solides3d/text/par-grille-en.tex + RELOC/doc/generic/pst-solides3d/text/par-image2d-en.tex + RELOC/doc/generic/pst-solides3d/text/par-implicitsurface-en.tex + RELOC/doc/generic/pst-solides3d/text/par-keywords-en.tex + RELOC/doc/generic/pst-solides3d/text/par-ligne3D-en.tex + RELOC/doc/generic/pst-solides3d/text/par-lignedeniveau-en.tex + RELOC/doc/generic/pst-solides3d/text/par-modes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-new-en.tex + RELOC/doc/generic/pst-solides3d/text/par-nommersolide-en.tex + RELOC/doc/generic/pst-solides3d/text/par-numeroterfacettes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-opacity-en.tex + RELOC/doc/generic/pst-solides3d/text/par-parametres-en.tex + RELOC/doc/generic/pst-solides3d/text/par-plan-en.tex + RELOC/doc/generic/pst-solides3d/text/par-poems-en.tex + RELOC/doc/generic/pst-solides3d/text/par-point-en.tex + RELOC/doc/generic/pst-solides3d/text/par-pointagesommets-en.tex + RELOC/doc/generic/pst-solides3d/text/par-positionnerpointconnu-en.tex + RELOC/doc/generic/pst-solides3d/text/par-positionnersolide-en.tex + RELOC/doc/generic/pst-solides3d/text/par-prisme-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionangledroit-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectioncercle-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectioncourbe-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectiondroite-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionligne-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionpoint-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionpolygone-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectiontexte-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionvecteur-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionvisibility-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projpresentation-en.tex + RELOC/doc/generic/pst-solides3d/text/par-ruban-en.tex + RELOC/doc/generic/pst-solides3d/text/par-section-en.tex + RELOC/doc/generic/pst-solides3d/text/par-solidescreux-en.tex + RELOC/doc/generic/pst-solides3d/text/par-solidespredefinis-en.tex + RELOC/doc/generic/pst-solides3d/text/par-surfaces-en.tex + RELOC/doc/generic/pst-solides3d/text/par-surfacesparametrees-en.tex + RELOC/doc/generic/pst-solides3d/text/par-tracerpolygone-en.tex + RELOC/doc/generic/pst-solides3d/text/par-transform-en.tex + RELOC/doc/generic/pst-solides3d/text/par-transformpointconnu-en.tex + RELOC/doc/generic/pst-solides3d/text/par-tronque-en.tex + RELOC/doc/generic/pst-solides3d/text/par-tube-en.tex + RELOC/doc/generic/pst-solides3d/text/par-vecteur-en.tex +runfiles size=81 + RELOC/dvips/pst-solides3d/pst-implicitsurface.pro + RELOC/dvips/pst-solides3d/pst-solides3d.pro + RELOC/tex/generic/pst-solides3d/pst-solides3d.tex + 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-license lppl1.3 +catalogue-topics graphics-3d pstricks +catalogue-version 4.34a + +name pst-soroban +category Package +revision 15878 +shortdesc Draw a Soroban using PSTricks +relocated 1 +longdesc The package uses PSTricks to draw a Japanese abacus, or +longdesc soroban. The soroban is still used in Japan today. +containersize 1652 +containerchecksum c21d3f0e19c4cfcf79563e23e760178de6e39f1f42147f534946fef315c0514968548b30d24eb345f4f2c5cb7807fef4f0d45d8e345e9523806ce1e054d8cf11 +doccontainersize 84524 +doccontainerchecksum b7c1422ac43df949426581f7dbe749300093ce2d20145df768e21e893b9d2c419ffa8ab16c60fa509f09317bee4c7f80bed4920b92a5f9f2e9289eb93cec5eec +docfiles size=29 + RELOC/doc/generic/pst-soroban/Changes + RELOC/doc/generic/pst-soroban/README details="Readme" + RELOC/doc/generic/pst-soroban/pst-soroban-doc.bib + RELOC/doc/generic/pst-soroban/pst-soroban-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-soroban/pst-soroban-doc.tex +srccontainersize 824 +srccontainerchecksum 49fb276ae7277b1508ecdcc3132d103e26204f314f8779a556335e1875dd5c3c6768b6b152264ba5643d2c39eb275f7ef193ecb6a292135abba2d60be508d654 +srcfiles size=1 + RELOC/source/generic/pst-soroban/Makefile +runfiles size=2 + RELOC/tex/latex/pst-soroban/pst-soroban.sty +catalogue-ctan /graphics/pstricks/contrib/pst-soroban +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 1.0 + +name pst-spectra +category Package +revision 15878 +shortdesc Draw continuum, emission and absorption spectra with PSTricks +relocated 1 +longdesc The package is a PSTricks extension, based on a NASA lines +longdesc database. It allows you to draw continuum, emission and +longdesc absorption spectra. A Total of 16 880 visible lines from 99 +longdesc elements can be displayed. The package requires the xkeyval +longdesc package for decoding its arguments. +containersize 77276 +containerchecksum 325e4f07e9c2788d571c6105e1fdc3a097881d1b472b038c365c65a84a4e69e15866750720b2c86f5b20e00fc3a054f619e79b6564fc3712194a1a5d05edf248 +doccontainersize 185432 +doccontainerchecksum f3655f399c4986b122253c4849bcb15d0ea4d2390b0ec3b8328d8255e5e2d44481198d63c6ad9dc10365095414267285ff02a944c1bf5bfd8c458d1a7cd5a0c5 +docfiles size=54 + RELOC/doc/generic/pst-spectra/README details="Package README" + RELOC/doc/generic/pst-spectra/pst-spectra.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-spectra/pst-spectraEN.pdf details="Package outline" language="en" +runfiles size=68 + RELOC/dvips/pst-spectra/pst-spectra.pro + RELOC/tex/generic/pst-spectra/pst-spectra.tex + RELOC/tex/latex/pst-spectra/pst-spectra.sty +catalogue-ctan /graphics/pstricks/contrib/pst-spectra +catalogue-license lppl +catalogue-topics physics pstricks +catalogue-version 0.91 + +name pst-spinner +category Package +revision 54080 +shortdesc Drawing a fidget spinner +relocated 1 +longdesc This package aims to propose a model of the fidget spinner +longdesc gadget. It exists under different forms with 2, 3 poles and +longdesc even more. We chose the most popular model: the triple Fidget +longdesc Spinner. You can run the PSTricks related documents with +longdesc XeLaTeX. +containersize 2804 +containerchecksum 230405003645525f89e4713cd38d2dc015a5c41218202003626a154a620354fcfd4297480415771064ddf72768afd15d19fb331fe7fe3029375b681487e09f58 +doccontainersize 1383000 +doccontainerchecksum 998388d1098eec8f15dbccc5852b4577f392c9e01dd0a258927086940b5e8fd33021101244403c3d81b575bb1214ad0730160828a7fcf83630bdb765d4c34444 +docfiles size=373 + RELOC/doc/generic/pst-spinner/Changes + RELOC/doc/generic/pst-spinner/README details="Readme" + RELOC/doc/generic/pst-spinner/images/cercle-chromatique.eps + RELOC/doc/generic/pst-spinner/images/spirales-hsb.eps + RELOC/doc/generic/pst-spinner/pst-spinner-doc.bib + RELOC/doc/generic/pst-spinner/pst-spinner-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-spinner/pst-spinner-doc.tex +runfiles size=3 + RELOC/dvips/pst-spinner/pst-spinner.pro + RELOC/tex/generic/pst-spinner/pst-spinner.tex + RELOC/tex/latex/pst-spinner/pst-spinner.sty +catalogue-contact-announce http://tug.org/PSTricks/ +catalogue-contact-home http://tug.org/PSTricks/ +catalogue-contact-repository https://archiv.dante.de/~herbert/texnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-spinner +catalogue-license lppl +catalogue-topics graphics pstricks +catalogue-version 1.02 + +name pst-stru +category Package +revision 38613 +shortdesc Civil engineering diagrams, using PSTricks +relocated 1 +longdesc This PSTricks-based package provides facilities to draw +longdesc structural schemes in civil engineering analysis, for beams, +longdesc portals, arches and piles. +containersize 3336 +containerchecksum bc0961c1f9afb68f66c4af9aa9d37cd8cc7c6047f55920d12cfb14a18b2c2288c8468c8d9f0e21eb7e395eaa884f0216b37a6fa947fb2c5ef51d57996ba8bb5f +doccontainersize 160184 +doccontainerchecksum b9352eb01e9d80049a474e0b5a513bb8835be16af4226b4f4269d9a94d64b81a842e640ab316f066595b0b6053080042deac4b0cce1bbc602ea0e029f7809cd3 +docfiles size=65 + RELOC/doc/generic/pst-stru/Changes + RELOC/doc/generic/pst-stru/README + RELOC/doc/generic/pst-stru/pst-stru-doc.bib + RELOC/doc/generic/pst-stru/pst-stru-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-stru/pst-stru-doc.tex +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-license lppl +catalogue-topics graphics-use engineering +catalogue-version 0.13 + +name pst-support +category Package +revision 15878 +shortdesc Assorted support files for use with PSTricks +relocated 1 +longdesc An appropriate set of job options, together with process +longdesc scripts for use with TeXnicCenter/ +containersize 432 +containerchecksum 05ddd6f09d603a2a6887f03aa3da0374ad061e2ab52ad25f0036192179f985f3695b0248c602607172c94c55cd9d2bb453e8f145d73f133bf79a881ccb1daacc +doccontainersize 6580 +doccontainerchecksum ab2adb2c06d4f7f4b4a4fbfec59e1fc8d6b9f4ccff5aacc29f0a1524759fc1f0792640e8cc301e614477ad45261bbedb3ede93de2463e0a655aeff846561c185 +docfiles size=10 + RELOC/doc/generic/pst-support/README details="Readme" + RELOC/doc/generic/pst-support/Standard_transparency.joboptions + RELOC/doc/generic/pst-support/latex-ps-pdf.tco + RELOC/doc/generic/pst-support/latex-pstpdf-pdf.tco + RELOC/doc/generic/pst-support/pdflatex-autopstpdf.tco +catalogue-ctan /graphics/pstricks/pst-support +catalogue-license lppl +catalogue-topics compilation + +name pst-text +category Package +revision 49542 +shortdesc Text and character manipulation in PSTricks +relocated 1 +longdesc Pst-text is a PSTricks based package for plotting text along a +longdesc different path and manipulating characters. It includes the +longdesc functionality of the old package pst-char. +containersize 4204 +containerchecksum 6cf40d3dffb7803959a187f6a19b137b824d46ea73bd31430e983abec0b828d49c6d404287382242ad224e2f51feae74b3bee374443e9f421ae70d1ea2c0c3b6 +doccontainersize 169860 +doccontainerchecksum 87f213f037227c05ceefbcee7ab8a316b88ee6f9ddc366c40cfa7676a714ec6802f3781db8357224769216241feb9171668184534572ebe5c5776c1553c1b62d +docfiles size=59 + RELOC/doc/generic/pst-text/Changes + RELOC/doc/generic/pst-text/README details="Package README" + RELOC/doc/generic/pst-text/pst-text-doc.bib + RELOC/doc/generic/pst-text/pst-text-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-text/pst-text-doc.tex +runfiles size=5 + RELOC/dvips/pst-text/pst-text.pro + RELOC/tex/generic/pst-text/pst-text.tex + RELOC/tex/latex/pst-text/pst-char.sty + RELOC/tex/latex/pst-text/pst-text.sty +catalogue-also textpath +catalogue-ctan /graphics/pstricks/contrib/pst-text +catalogue-license lppl +catalogue-topics graphics-subpic +catalogue-version 1.02 + +name pst-thick +category Package +revision 16369 +shortdesc Drawing very thick lines and curves +relocated 1 +longdesc The package supports drawing of very thick lines and curves in +longdesc PSTricks, with various fillings for the body of the lines. +containersize 1968 +containerchecksum 5eab2dfdad0c9fad21cbb7d4484f9701bd48b225e881e0c86a2418afa143582aef160bbf4cc9f5a773aea97d2c12c7f614f41fd87f0ff2952c27ddac91f75905 +doccontainersize 472840 +doccontainerchecksum 5d75bab3e4b5c18a14e7348dd97a3f7e0895a2b44111a72d87ff8ce7c7c0499062f61b4ff38b2d36b0632719fd58a33c91f077edc269d74fa58281a83752e9d7 +docfiles size=139 + RELOC/doc/generic/pst-thick/Changes + RELOC/doc/generic/pst-thick/README details="Readme" + RELOC/doc/generic/pst-thick/pst-thick-doc.bib + RELOC/doc/generic/pst-thick/pst-thick-doc.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-thick/pst-thick-doc.tex +srccontainersize 948 +srccontainerchecksum c3cbd54dab4d8e71a2d6e9f94cffb1dc0576344032d3af01c21a4ef0f493c5b886fe6f99e7361f4ca0c9b2e01e68e61e0f8e74b5f511cd1680b20eb01a068030 +srcfiles size=1 + RELOC/source/generic/pst-thick/Makefile +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-license lppl +catalogue-topics graphics-subpic +catalogue-version 1.0 + +name pst-tools +category Package +revision 54518 +shortdesc PSTricks support functions +relocated 1 +longdesc The package provides helper functions for other PSTricks +longdesc related packages. +containersize 6500 +containerchecksum b6f1432b44483470d2dc740aaafd254d0f7051e37e9b8675aa85fc50812b9f19fb8b021cb00da405734c25a3dc6b9645d25981c7b603e3a01016421c2d1b4140 +doccontainersize 98860 +doccontainerchecksum 57fe008fa8ab2f8ab0682d29a6e3b7c285a84c54eb7bef068fa2ba1aa363792f6a497a548cfa6ad171990e344215db7bc5a7d297bbfb17026b80601ecc977edb +docfiles size=39 + RELOC/doc/generic/pst-tools/Changes + RELOC/doc/generic/pst-tools/README details="Readme" + RELOC/doc/generic/pst-tools/pst-tools-doc.bib + RELOC/doc/generic/pst-tools/pst-tools-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-tools/pst-tools-doc.tex +runfiles size=7 + RELOC/dvips/pst-tools/pst-tools.pro + RELOC/tex/generic/pst-tools/pst-tools.tex + RELOC/tex/latex/pst-tools/pst-tools.sty +catalogue-ctan /graphics/pstricks/contrib/pst-tools +catalogue-license lppl +catalogue-topics graphics pstricks +catalogue-version 0.10 + +name pst-tree +category Package +revision 43272 +shortdesc Trees, using PSTricks +relocated 1 +longdesc pst-tree is a pstricks package that defines a macro \pstree +longdesc which offers a structured way of joining nodes created using +longdesc pst-node in order to draw trees. +containersize 6700 +containerchecksum 1148e0e571d68d8c95c0049313b244a6d6d77bf24a453121fd462a11e51d51aa21cd7eb66e9bb7c936fa90bc888912385814ce347cf911563206f520d2bb1850 +doccontainersize 151092 +doccontainerchecksum d68059216626bbd3a33ec6bed2e6d2f0f78db2da3ae56cf947367608033a156126685bb0d162f95fbe7150c950c3d5d20de01fd0ab9b6bf77bcb2cba31bfebdd +docfiles size=67 + RELOC/doc/generic/pst-tree/Changes + RELOC/doc/generic/pst-tree/README + RELOC/doc/generic/pst-tree/pst-tree-doc.bib + RELOC/doc/generic/pst-tree/pst-tree-doc.pdf details="Package manual" language="en" + RELOC/doc/generic/pst-tree/pst-tree-doc.tex +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-license lppl +catalogue-topics tree linguistic +catalogue-version 1.13 + +name pst-turtle +category Package +revision 52261 +shortdesc Commands for "turtle operations" +relocated 1 +longdesc This is a PSTricks related package for creating "Turtle" +longdesc graphics. It supports the commands forward, back, left, right, +longdesc penup, and pendown. +containersize 3836 +containerchecksum df30018ed03f10edbb9e215879f041ed6eb0db48cf0e7e2b5128cd3339d1005ef074aa0631c84bcfd2c8f9c1a1a69a26cac36248f3971a3b3302e2f763af750d +doccontainersize 45192 +doccontainerchecksum 22c14f1eca2aa764bfc250d8140f0a24f3dab1cb8e755180167ddcd1ac9224aca07fb41408823b8933b73293204053f7f139513781ff37a67ca9e0ee7bec4fbb +docfiles size=22 + RELOC/doc/generic/pst-turtle/Changes + RELOC/doc/generic/pst-turtle/README.md details="Readme" + RELOC/doc/generic/pst-turtle/pst-turtle-doc.bib + RELOC/doc/generic/pst-turtle/pst-turtle-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-turtle/pst-turtle-doc.tex +runfiles size=4 + RELOC/dvips/pst-turtle/pst-turtle.pro + RELOC/tex/generic/pst-turtle/pst-turtle.tex + RELOC/tex/latex/pst-turtle/pst-turtle.sty +catalogue-ctan /graphics/pstricks/contrib/pst-turtle +catalogue-license lppl +catalogue-topics graphics pstricks +catalogue-version 0.02 + +name pst-tvz +category Package +revision 23451 +shortdesc Draw trees with more than one root node, using PSTricks +relocated 1 +longdesc The package uses PSTricks to draw trees with more than one root +longdesc node. It is similar to pst-tree, though it uses a different +longdesc placement algorithm. +containersize 16140 +containerchecksum 79e206f5e4154a797cf168b1b490cac8e1ddf98a79de6ddbd9dc98cf53eae01301c034643f6660708b58e890ca94b7235e5b0f48e53136f32c12c0adf5749179 +doccontainersize 274160 +doccontainerchecksum ffbba30214dce83e7f00aa7c6e126919cafe341dc727736e27a5af8ae212dc66dafa49afba553079d6857258ca72577950c06ba2deb21ca3c1b13231d1909935 +docfiles size=113 + RELOC/doc/generic/pst-tvz/Changes + RELOC/doc/generic/pst-tvz/README details="Readme" + RELOC/doc/generic/pst-tvz/pst-tvz-doc.bib + RELOC/doc/generic/pst-tvz/pst-tvz-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-tvz/pst-tvz-doc.tex +srccontainersize 944 +srccontainerchecksum ea0d7dc35ccef586bbe4dc225886755b28524b4db4ebcede6fd41c51bcc0fc8e7fca1f7a326d12524dae478b5a9228cae413b80e7a2830f0cd729e7efa8bab4c +srcfiles size=1 + RELOC/source/generic/pst-tvz/Makefile +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-license lppl1.3 +catalogue-topics tree linguistic +catalogue-version 1.01 + +name pst-uml +category Package +revision 15878 +shortdesc UML diagrams with PSTricks +relocated 1 +longdesc This a PSTricks package that provides support for drawing +longdesc moderately complex UML (Universal Modelling Language) diagrams. +longdesc (The PDF documentation is written in French.) +depend multido +containersize 7340 +containerchecksum e4ff8ea9b7fb9f530e33280de3e9eb20d653c0c062fa80611a544daf74da0b1dd2481b43d8f5258f9ebc1d1bf95b393b32c7152ab8464a9e980cefa105c45ceb +doccontainersize 409404 +doccontainerchecksum d8aa92785c241b6346762d98349d8464ce604afceb8774ef160e8c24e0a40d3fd8dba7cac3f78cbf38cbf6cfebb79939ad3c76e6b4014c1028859aba38123efe +docfiles size=142 + RELOC/doc/generic/pst-uml/Changes + RELOC/doc/generic/pst-uml/README details="Readme" + RELOC/doc/generic/pst-uml/diagCase.tex + RELOC/doc/generic/pst-uml/diagClass.tex + RELOC/doc/generic/pst-uml/diagClass1.tex + RELOC/doc/generic/pst-uml/diagSeq.tex + RELOC/doc/generic/pst-uml/diagState.tex + RELOC/doc/generic/pst-uml/pst-uml-doc.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-uml/pst-uml-doc.tex + RELOC/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.pdf + RELOC/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.tex + RELOC/doc/generic/pst-uml/pst-uml-exemples.pdf details="Examples" language="fr" + RELOC/doc/generic/pst-uml/pst-uml-exemples.tex +srccontainersize 2396 +srccontainerchecksum 8b7e551154c1b1966046268ed3353b6c78c3a66bfa20f44c7fba3b58f661f2585b71d49d2dd673368f732b2f9446dc7783bad4ae5248169a79721d330a49514c +srcfiles size=2 + RELOC/source/generic/pst-uml/Makefile +runfiles size=7 + RELOC/tex/latex/pst-uml/pst-uml.sty +catalogue-also metauml +catalogue-ctan /graphics/pstricks/contrib/pst-uml +catalogue-license lppl +catalogue-topics uml pstricks +catalogue-version 0.83 + +name pst-vectorian +category Package +revision 28801 +shortdesc Printing ornaments +relocated 1 +longdesc The package uses PSTricks to draw ornaments (a substantial +longdesc repertoire of ornaments is provided). +containersize 546756 +containerchecksum 3ea49c1da6238c095dc2ee095b21dc95fca19c89b0ae473e73f9ea67ca9377cc8e696362f2cf859d87ad69350c7b94a1049823fc0b5329e36e8e31291cdcfef1 +doccontainersize 744580 +doccontainerchecksum 787b3b16dd0a73d96d16a8f32e26cc40f84706fd8abf48df23eb94a5dd9dedc0f9c9b7d8512894910ac96c8ec5e879a5f0d24f6f19e2d9f231ad66060e07565c +docfiles size=188 + RELOC/doc/latex/pst-vectorian/README details="Readme" + RELOC/doc/latex/pst-vectorian/psvectorian.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/pst-vectorian/psvectorian.tex +runfiles size=463 + RELOC/dvips/pst-vectorian/psvectorian.pro + RELOC/tex/latex/pst-vectorian/psvectorian.sty +catalogue-ctan /graphics/pstricks/contrib/pst-vectorian +catalogue-license lppl +catalogue-topics decoration +catalogue-version 0.4 + +name pst-vehicle +category Package +revision 45320 +shortdesc A PSTricks package for rolling vehicles on graphs of mathematical functions +relocated 1 +longdesc This package permits to represent vehicles rolling without +longdesc slipping on mathematical curves. Different types of vehicles +longdesc are proposed, the shape of the curve is to be defined by its +longdesc equation "y=f(x)" in algebraic notation. +containersize 8564 +containerchecksum 4e5a5dc0227641a8b8f96913cfd513279c91f841fa1dd5960015ad79d5877a86cafcf87db38bd692611d5afd73a8a91505822d83433299db4efa9e4975a8da42 +doccontainersize 2315424 +doccontainerchecksum 1183b285d9438c7360f2cef9c40d86424ed2891d36a4aee6281e57b84773dd6b2366ca6c2bcff200911e583bd11f2f5aa9615b45656a240b28b1809acacf4145 +docfiles size=784 + RELOC/doc/generic/pst-vehicle/Changes.txt + RELOC/doc/generic/pst-vehicle/README.md details="Readme" + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc-fr.tex + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc.tex +runfiles size=10 + RELOC/tex/generic/pst-vehicle/ListVehicles.tex + RELOC/tex/generic/pst-vehicle/pst-vehicle.tex + RELOC/tex/latex/pst-vehicle/pst-vehicle.sty +catalogue-ctan /graphics/pstricks/contrib/pst-vehicle +catalogue-license lppl1.3c +catalogue-topics maths pstricks graphics-use +catalogue-version 1.2 + +name pst-venn +category Package +revision 49316 +shortdesc A PSTricks package for drawing Venn sets +relocated 1 +longdesc This is a PSTricks related package for drawing Venn diagrams +longdesc with three circles. +containersize 1448 +containerchecksum 63baf8075ef294bc3a909b3160fa7868a7f179c832d680728fe463f8b1c058411a1393614ade666824fa3233d6617b1dd4e0c50c299a620bc459104515c85727 +doccontainersize 35532 +doccontainerchecksum e332f8ed24744c03c32bfd139a38dabfca1c6eaf9c5c4624d1579c16feda26e42e81b39dafc98527e8bdaacc2e3ff2d246c6f4b88d89bebfaadd57454e08af7e +docfiles size=16 + RELOC/doc/generic/pst-venn/Changes + RELOC/doc/generic/pst-venn/README details="Readme" + RELOC/doc/generic/pst-venn/pst-venn-doc.bib + RELOC/doc/generic/pst-venn/pst-venn-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-venn/pst-venn-doc.tex +runfiles size=1 + RELOC/tex/latex/pst-venn/pst-venn.sty +catalogue-also venndiagram venn +catalogue-ctan /graphics/pstricks/contrib/pst-venn +catalogue-license lppl +catalogue-topics diagram-maths pstricks +catalogue-version 0.01 + +name pst-vowel +category Package +revision 25228 +shortdesc Enable arrows showing diphthongs on vowel charts +relocated 1 +longdesc The package extends the vowel package (distributed as part of +longdesc the tipa bundle) by allowing the user to draw arrows between +longdesc vowels to show relationships such as diphthong membership. The +longdesc package depends on use of pstricks. +containersize 2024 +containerchecksum 6ee1dd91b42e319e3a88966fe4cb7327211e5859ae9bc9e262afbfe1fb7f143386ecb70a71d6b24cb0c794cb0943a6cbab4eb40ac683c55a7ef1fbafc118e132 +doccontainersize 81968 +doccontainerchecksum 4fd8ba42b0d4ed821abe52e5848af0d19fcf12c2b9660f09a502561fcfbeffbe38bdf2a0540ee79b99f50cb3c783ab4b5d003a59cf84b3066c364daa7dca0eea +docfiles size=28 + RELOC/doc/latex/pst-vowel/README details="Readme" + RELOC/doc/latex/pst-vowel/pst-vowel.pdf details="Package documentation" + RELOC/doc/latex/pst-vowel/pst-vowel.tex +runfiles size=2 + RELOC/tex/latex/pst-vowel/pst-vowel.sty +catalogue-ctan /macros/latex/contrib/pst-vowel +catalogue-license lppl +catalogue-topics phonetic +catalogue-version 1.0 + +name pst2pdf +category Package +revision 56172 +shortdesc A script to compile PSTricks documents via pdfTeX +longdesc The script extracts the preamble of the document and runs all +longdesc \begin{postscript}...\end{postscript} +longdesc \begin{pspicture}...\end{pspicture} and +longdesc \pspicture...\endpspicture separately through LaTeX with the +longdesc same preamble as the original document; thus it creates EPS, +longdesc PNG and PDF files of these snippets. In a final pdfLaTeX run +longdesc the script replaces the environments with \includegraphics to +longdesc include the processed snippets. Detail documentation is +longdesc acquired from the document itself via Perldoc. +depend pst2pdf.ARCH +containersize 20956 +containerchecksum a266409d6740653bacb23e83b98e545dc462ed879299b195d65761b10e4700a797005ca231fc24e37a42591c09ba93b5ea6b8b82ad8b14a29a7649cdb3f39b33 +doccontainersize 342228 +doccontainerchecksum 5805c535c8a043fea721093a4b7d2ab06c86c80d4a45eb3d603986b898b6d2053d041b638874e53c79e2d815a929749e02ca0986a2f8cbb400a2fa87581462dc +docfiles size=142 + texmf-dist/doc/support/pst2pdf/Changes + texmf-dist/doc/support/pst2pdf/Makefile.doc + texmf-dist/doc/support/pst2pdf/README.md details="Readme" + texmf-dist/doc/support/pst2pdf/pst2pdf-doc.bib + texmf-dist/doc/support/pst2pdf/pst2pdf-doc.pdf details="Package documentation" + texmf-dist/doc/support/pst2pdf/pst2pdf-doc.tex + texmf-dist/doc/support/pst2pdf/test1-pdf.pdf + texmf-dist/doc/support/pst2pdf/test1.tex + texmf-dist/doc/support/pst2pdf/test2-pdf.pdf + texmf-dist/doc/support/pst2pdf/test2.tex + texmf-dist/doc/support/pst2pdf/test3-pdf.pdf + texmf-dist/doc/support/pst2pdf/test3.tex + texmf-dist/doc/support/pst2pdf/tux.jpg +runfiles size=23 + texmf-dist/scripts/pst2pdf/pst2pdf.pl +catalogue-ctan /graphics/pstricks/scripts/pst2pdf +catalogue-license gpl2 +catalogue-topics graphics graphics-epspdf +catalogue-version 0.20 + +name pst2pdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pst2pdf +containersize 340 +containerchecksum 0903663095dcab243def36a08ebc274a2e56ce7bdb8a791ccd2eea1264dacb6ade00d85573f8990c0616c9f9e7780e7e3dcb3da593747d3af41fe0a2ebf2f04c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pst2pdf + +name pst2pdf.amd64-freebsd +category Package +revision 29333 +shortdesc amd64-freebsd files of pst2pdf +containersize 340 +containerchecksum f74c98f1020bdd634e634231d7be61e3889a522376dd0c01587689b949e04485bf956dac8fdb89fba34c253b4ad2a1ec8a4b096b85d9c9256054e818954ff21c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pst2pdf + +name pst2pdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pst2pdf +containersize 340 +containerchecksum 93f258774846ddc9582d5dd588dbfb56ff6e08088e999f5b9351316c640eae63fd825fe6f95fe0400994be58a3e62bf1333f0c7bf793c33d04909e48c395584e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pst2pdf + +name pst2pdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pst2pdf +containersize 340 +containerchecksum b0be12647b552e60ee18f4c027aa3b08929aaa6bfeb7a1ae0d274dd3d60535f841c7e7c8666c878973c5d919af5f8bb12fbc92f9ae55d336604db629b755a921 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pst2pdf + +name pst2pdf.i386-cygwin +category Package +revision 29333 +shortdesc i386-cygwin files of pst2pdf +containersize 340 +containerchecksum 7ec4850a2beb24040725d248c396407a265a810a2826e64870b17c9cf0ec99ab7c62be0c7b7e7c0614e8e56d7f6bc04895e1ae07807bd8b88a2b4a01ec29cfbc +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pst2pdf + +name pst2pdf.i386-freebsd +category Package +revision 29333 +shortdesc i386-freebsd files of pst2pdf +containersize 340 +containerchecksum b772544e8e55b391d3d1b2c0ee147a3c1900df7b148bc41ef4628742350bee65ce8c4b652a9f34678a637fa40d135346dee95d272e1418de8a7e9c8406e72f70 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pst2pdf + +name pst2pdf.i386-linux +category Package +revision 29333 +shortdesc i386-linux files of pst2pdf +containersize 340 +containerchecksum e9f6d96e3abed892fa9a0ed18215b160281630dd18f0a24cba2981fb8ace3d934ebbdf663e5ea7fef285a65306f4f471180da63f8595d26dc5ee0c1670014f76 +binfiles arch=i386-linux size=1 + bin/i386-linux/pst2pdf + +name pst2pdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pst2pdf +containersize 340 +containerchecksum cfb2074509e77109c37e817324750e03a65609c8a9235e6c87f122ab09dbed2219e50c687b64f09f311393e1f5f9e4ed7f2ded9de031322c3a363027cc479c1f +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pst2pdf + +name pst2pdf.i386-solaris +category Package +revision 29333 +shortdesc i386-solaris files of pst2pdf +containersize 340 +containerchecksum 7b54f829871bfee21c38818c214fd490ee0eb3c88ade97e636435fde9a5c03e44a4cb8b208899d5299da081d5611ef1c8325b6f06c2ac8e14b2d62bb9a648edf +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pst2pdf + +name pst2pdf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pst2pdf +containersize 340 +containerchecksum 4db7866a58312711865ff53ca4b7f95c7a25f5bd9815bbbef597cb20aff6fba0be77b9cea26c4f442a55fc59e449f1a52dd21bb41d126fada50846b23c8b5aea +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pst2pdf + +name pst2pdf.win32 +category Package +revision 15404 +shortdesc win32 files of pst2pdf +containersize 684 +containerchecksum 685a62242aada44054755bf9bf8a1ebcbf10f154f95ab3197d227a7629fe1b8bc8524c283cfa83bdcb4d97f3367e98702239594dcc776717ed0f08718731cc59 +binfiles arch=win32 size=1 + bin/win32/pst2pdf.exe + +name pst2pdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pst2pdf +containersize 340 +containerchecksum 420b1ec09d78e1c43c7d04a5d08b5124b57645755fc9f4d5bd884ea3e0bb66cbe39a43a40bc552d57b1aab0e1c708b55ebed3c132d4db3b4562e47303032181f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pst2pdf + +name pst2pdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pst2pdf +containersize 348 +containerchecksum 83d2430389db6c6c504ca0b3354b9d1ee5484d2ebb1f5997672e0a09d13ced7e2bcccdbded0412ab8aa7d0386a38687c06c8e6445c7f137cbbe94bc0f1813560 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pst2pdf + +name pst2pdf.x86_64-linux +category Package +revision 29333 +shortdesc x86_64-linux files of pst2pdf +containersize 340 +containerchecksum 486d85c1258e544c523daf74106913957d476131062e5f9056af7d72f0fa371132d912adbe5e684ea6d690073ea7d4f8a350046634540102f1559e30a5b64920 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pst2pdf + +name pst2pdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pst2pdf +containersize 344 +containerchecksum 679d802cdd6cd1960990a65b81c18b27b26c16ad028103abe36538f25e698cc02bc8c22e1d1c437fdcd5c55a63fce3381c3b76d39b7139645d7ad7ef7af5d8a4 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pst2pdf + +name pst2pdf.x86_64-solaris +category Package +revision 29333 +shortdesc x86_64-solaris files of pst2pdf +containersize 340 +containerchecksum 5b4b23049a47ff555584f4c996ae1b8e5c322626b323c152dfa02f0352d620e72e9fd8d9496fea15088c83f6fb00c153d474d3952b6b263542b8928baeeec888 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pst2pdf + +name pstool +category Package +revision 46393 +shortdesc Support for psfrag within pdfLaTeX +relocated 1 +longdesc The package works in the same sort of way as pst-pdf, but it +longdesc also processes the PostScript graphics with psfrag to add +longdesc labels within the graphic, before conversion. Thus the bundle +longdesc replaces two steps of an ordinary workflow. (Naturally, the +longdesc package requires that \write 18 is enabled.) Pstool ensures +longdesc that each version of each graphic is compiled once only (the +longdesc graphic is (re-)compiled only if it has changed since the +longdesc previous compilation of the document). This drastically speeds +longdesc up the running of the package in the typical case (though the +longdesc first run of any document is inevitably just as slow as with +longdesc any similar package). +containersize 6984 +containerchecksum a97af35dfce4a137af97071b49e58c31739e6f271afc62a455db473e573148d25fc27937ce680c6f400a200151ffd73867d5dd8781b12a63c68b7bf256cff5d1 +doccontainersize 373708 +doccontainerchecksum 613cc4899b1d76e0686cd269568cfc0dda437cec0e50571086b3d44659dc4b3e3d567dec88b5420e4c802d676f21c2428b3930fb6bb3f7d7faa14c029d35d43e +docfiles size=98 + RELOC/doc/latex/pstool/README.md details="Readme" + RELOC/doc/latex/pstool/pstool.pdf details="Package documentation" + RELOC/doc/latex/pstool/pstool.tex +runfiles size=6 + RELOC/tex/latex/pstool/pstool.sty +catalogue-contact-repository https://github.com/wspr/pstool +catalogue-ctan /macros/latex/contrib/pstool +catalogue-license lppl1.3c +catalogue-topics graphics-epspdf graphics-text +catalogue-version 1.5e + +name pstricks +category Package +revision 58731 +catalogue pstricks-base +shortdesc PostScript macros for TeX +relocated 1 +longdesc PSTricks offers an extensive collection of macros for +longdesc generating PostScript that is usable with most TeX macro +longdesc formats, including Plain TeX, LaTeX, AMS-TeX, and AMS-LaTeX. +longdesc Included are macros for colour, graphics, pie charts, rotation, +longdesc trees and overlays. It has many special features, including a +longdesc wide variety of graphics (picture drawing) macros, with a +longdesc flexible interface and with colour support. There are macros +longdesc for colouring or shading the cells of tables. The package +longdesc pstricks-add contains bug-fixes and additions for PSTricks +longdesc (among other things). PSTricks ordinarily uses PostScript +longdesc \special commands, which are not supported by pdf(La)TeX. This +longdesc limitation may be overcome by using either the pst-pdf or the +longdesc pdftricks package, to generate a PDF inclusion from a PSTricks +longdesc diagram. PSTricks macros can also generate PDF output when the +longdesc document is processed XeTeX, without the need for other +longdesc supporting packages. +containersize 75992 +containerchecksum 9d7eddbede84ccb7cab9024f4ebeff688707f189012c3f71ed3a57963bacb13fb7aa6ad2af136d11b9e530ea4b1b74b9c06563954b81a1cd41c65f3a2c8e5fd4 +doccontainersize 7451364 +doccontainerchecksum f3decc60f9153b5eca7a71c72518cfa9501c5e970c0d2957dcd866296c883070aac3fc11016e74e6e703927bec7bf1135bd2a20d5a8a5d937ce7d95e8410fe13 +docfiles size=2269 + RELOC/doc/generic/pstricks/PSTricks.bib + RELOC/doc/generic/pstricks/README details="Readme" + RELOC/doc/generic/pstricks/ctandir.sty + RELOC/doc/generic/pstricks/images/flowers.eps + RELOC/doc/generic/pstricks/images/tiger.eps + RELOC/doc/generic/pstricks/images/tiger.pdf + RELOC/doc/generic/pstricks/pst-doc.bst + RELOC/doc/generic/pstricks/pst-doc.ist + RELOC/doc/generic/pstricks/pst-doc.pdf + RELOC/doc/generic/pstricks/pst-news.sty + RELOC/doc/generic/pstricks/pst-news.tex + RELOC/doc/generic/pstricks/pst-news05.pdf + RELOC/doc/generic/pstricks/pst-news05.tex + RELOC/doc/generic/pstricks/pst-news06.pdf + RELOC/doc/generic/pstricks/pst-news06.tex + RELOC/doc/generic/pstricks/pst-news08.pdf + RELOC/doc/generic/pstricks/pst-news08.tex + RELOC/doc/generic/pstricks/pst-news09.pdf + RELOC/doc/generic/pstricks/pst-news09.tex + RELOC/doc/generic/pstricks/pst-news10.pdf + RELOC/doc/generic/pstricks/pst-news10.tex + RELOC/doc/generic/pstricks/pst-news11.pdf + RELOC/doc/generic/pstricks/pst-news11.tex + RELOC/doc/generic/pstricks/pst-news12.pdf + RELOC/doc/generic/pstricks/pst-news12.tex + RELOC/doc/generic/pstricks/pst-news13.pdf + RELOC/doc/generic/pstricks/pst-news13.tex + RELOC/doc/generic/pstricks/pst-news14.pdf + RELOC/doc/generic/pstricks/pst-news14.tex + RELOC/doc/generic/pstricks/pst-news15.pdf + RELOC/doc/generic/pstricks/pst-news15.tex + RELOC/doc/generic/pstricks/pst-news16.pdf + RELOC/doc/generic/pstricks/pst-news16.tex + RELOC/doc/generic/pstricks/pst-news17.pdf + RELOC/doc/generic/pstricks/pst-news17.tex + RELOC/doc/generic/pstricks/pst-news18.pdf + RELOC/doc/generic/pstricks/pst-news18.tex + RELOC/doc/generic/pstricks/pst-news19.pdf + RELOC/doc/generic/pstricks/pst-news19.tex + RELOC/doc/generic/pstricks/pst-news20.pdf details="Latest news bulletin" + RELOC/doc/generic/pstricks/pst-news20.tex + RELOC/doc/generic/pstricks/pst-user.pdf details="Package documentation" + RELOC/doc/generic/pstricks/pst-user.tgz + RELOC/doc/generic/pstricks/pstricks-bug.tex + RELOC/doc/generic/pstricks/pstricks-doc.pdf + RELOC/doc/generic/pstricks/test-pst.pdf + RELOC/doc/generic/pstricks/test-pst.tex +runfiles size=154 + RELOC/dvips/pstricks/pst-algparser.pro + RELOC/dvips/pstricks/pst-dots.pro + RELOC/dvips/pstricks/pst-dots97.pro + RELOC/dvips/pstricks/pstricks.pro + RELOC/dvips/pstricks/pstricks97.pro + RELOC/tex/generic/pstricks/config/README.cfg + RELOC/tex/generic/pstricks/config/distiller.cfg + RELOC/tex/generic/pstricks/config/dvips.cfg + RELOC/tex/generic/pstricks/config/dvipsone.cfg + RELOC/tex/generic/pstricks/config/gastex.cfg + RELOC/tex/generic/pstricks/config/textures.cfg + RELOC/tex/generic/pstricks/config/vtex.cfg + RELOC/tex/generic/pstricks/config/xdvipdfmx.cfg + RELOC/tex/generic/pstricks/pst-fp.tex + RELOC/tex/generic/pstricks/pst-key.tex + RELOC/tex/generic/pstricks/pstricks-tex.def + RELOC/tex/generic/pstricks/pstricks-xetex.def + RELOC/tex/generic/pstricks/pstricks.con + RELOC/tex/generic/pstricks/pstricks.tex + RELOC/tex/generic/pstricks/pstricks.tex.neu + RELOC/tex/generic/pstricks/pstricks97.tex + RELOC/tex/latex/pstricks/pst-all.sty + RELOC/tex/latex/pstricks/pst-doc.cls + RELOC/tex/latex/pstricks/pst-key.sty + RELOC/tex/latex/pstricks/pstcol.sty + RELOC/tex/latex/pstricks/pstricks-pdf.sty + RELOC/tex/latex/pstricks/pstricks.sty +catalogue-alias pstricks +catalogue-also pstricks-add +catalogue-contact-home http://tug.org/PSTricks +catalogue-contact-repository https://archiv.dante.de/~herbert/TeXnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/base +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex colour pstricks dvips-special xetex +catalogue-version 3.01a + +name pstricks-add +category Package +revision 53763 +shortdesc A collection of add-ons and bugfixes for PSTricks +relocated 1 +longdesc Collects together examples that have been posted to the +longdesc PSTricks mailing list, together with many additional features +longdesc for the basic pstricks, pst-plot and pst-node, including: +longdesc bugfixes; new options for the pspicture environment; arrows; +longdesc braces as node connection/linestyle; extended axes for plots +longdesc (e.g., logarithm axes); polar plots; plotting tangent lines of +longdesc curves or functions; solving and printing differential +longdesc equations; box plots; matrix plots; and pie charts. The package +longdesc makes use of PostScript routines provided by pst-math. +containersize 21220 +containerchecksum cf73863537b9058961d4592077dabfbd0e76ff0f07dbc7b17520945bad42286483da11ebbd44abe403845a9092cfa6415ad881ab19d323527f1b979b9e0163be +doccontainersize 4634452 +doccontainerchecksum 7a7639cd2dc128ddb203de7aeae23eb50adba49702b5270c6c432a159f185dab78bd0b6ce9925b6b803c200403fb662a9ded85197f79711d6880a1641cd53996 +docfiles size=2776 + RELOC/doc/generic/pstricks-add/Changes + RELOC/doc/generic/pstricks-add/README details="Readme" + RELOC/doc/generic/pstricks-add/data/contourN.data + RELOC/doc/generic/pstricks-add/data/data.data + RELOC/doc/generic/pstricks-add/data/data3.data + RELOC/doc/generic/pstricks-add/data/dataMul.data + RELOC/doc/generic/pstricks-add/data/demo0.data + RELOC/doc/generic/pstricks-add/data/demo1.data + RELOC/doc/generic/pstricks-add/data/demo2.data + RELOC/doc/generic/pstricks-add/data/demo3.data + RELOC/doc/generic/pstricks-add/data/dotmatrix.data + RELOC/doc/generic/pstricks-add/data/matrix.data + RELOC/doc/generic/pstricks-add/data/matrix1.data + RELOC/doc/generic/pstricks-add/data/matrix2.data + RELOC/doc/generic/pstricks-add/data/olympic.eps + RELOC/doc/generic/pstricks-add/data/olympic.pdf + RELOC/doc/generic/pstricks-add/data/olympic.tex + RELOC/doc/generic/pstricks-add/data/pstricks-add-doc.data + RELOC/doc/generic/pstricks-add/pstricks-add-doc.bib + RELOC/doc/generic/pstricks-add/pstricks-add-doc.pdf details="Package documentation" + RELOC/doc/generic/pstricks-add/pstricks-add-doc.tex +runfiles size=25 + RELOC/dvips/pstricks-add/pstricks-add.pro + RELOC/tex/generic/pstricks-add/pstricks-add.tex + RELOC/tex/latex/pstricks-add/pstricks-add.sty +catalogue-ctan /graphics/pstricks/contrib/pstricks-add +catalogue-license lppl +catalogue-topics graphics-in-tex pstricks +catalogue-version 3.89a + +name pstricks_calcnotes +category Package +revision 34363 +catalogue pstricks-calcnotes +shortdesc Use of PSTricks in calculus lecture notes +relocated 1 +longdesc The bundle shows the construction of PSTricks macros to draw +longdesc Riemann sums of an integral and to draw the vector field of an +longdesc ordinary differential equation. The results are illustrated in +longdesc a fragment of lecture notes. +containersize 512 +containerchecksum 1b17e544484b71f3c29e5c3e1bed6021658ce7b9a256c21c004113b722a85be7ea6861753230910771b7c900184ca8cce146408301e75de79e0c2bf8939c49a6 +doccontainersize 1133128 +doccontainerchecksum bab8492549fd268f856e11f5f6db4e1ca878c67634387e7295bc163cd17080ee6b685893ddc85a882bd895adf3689639bfa7fc7d0da5e9916ef305c18d94ad65 +docfiles size=3772 + RELOC/doc/latex/pstricks_calcnotes/AppThreePDF.pdf + RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/Readme.txt + RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/convert.tex + RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/test.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/AppThreePDF.tex + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ1.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ10.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ2.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ5.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ6.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ7.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ8.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ9.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig13.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig14.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1a.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1b.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1c.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2a.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2b.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig5.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig6.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig7.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig8.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig9.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/ThreeAppsPDF.tex + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of1.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of2.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb1.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb2.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb5.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb6.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/AppThreePS.tex + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ10.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ6.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ7.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ8.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ9.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/ThreeAppsPS.tex + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of1.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of2.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of3.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of4.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb1.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb2.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb3.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb4.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb5.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb6.eps + RELOC/doc/latex/pstricks_calcnotes/README details="Readme" + RELOC/doc/latex/pstricks_calcnotes/ThreeAppsPDF.pdf +catalogue-ctan /info/pstricks_calcnotes +catalogue-license lppl +catalogue-topics pstricks documentation +catalogue-version 1.2 + +name pstring +category Package +revision 42857 +shortdesc Typeset sequences with justification pointers +relocated 1 +longdesc This package lets you typeset justified sequences, also called +longdesc pointing strings. It's used for instance, in research papers +longdesc about Game Semantics to represent sequence of game moves with +longdesc their associated justification pointers. Depending on wether +longdesc using LaTeX or pdfLaTeX, the package uses PSTricks and pst-node +longdesc respectively pgf/TikZ. +containersize 7384 +containerchecksum d77c937467a9cd16f24fb1374a0d797db04bc301fa8a677712e09d83b58df6fd12aad8857dd83f4d5278d799a0d1d52ef12106e8106921d1ec1453ff6692605f +doccontainersize 123272 +doccontainerchecksum 51c316c27c3d4083696dd9ee86e378c83ed09c75c632a7f0a580bd84d0033c7776008056a4b26d7835a4974b879c0f2b0389ae83c70cbd6ab093bc8b2add9ed4 +docfiles size=42 + RELOC/doc/latex/pstring/README.md details="Readme" + RELOC/doc/latex/pstring/pgfmanual-en-macros.tex + RELOC/doc/latex/pstring/pstring-doc.pdf details="Package documentation" + RELOC/doc/latex/pstring/pstring-doc.pre + RELOC/doc/latex/pstring/pstring-doc.tex +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-license pd +catalogue-topics scientific-docs + +name psutils +category TLCore +revision 52851 +shortdesc PostScript utilities +longdesc A bundle of utilities for manipulating PostScript documents, +longdesc including page selection and rearrangement, resizing the page, +longdesc arrangement into signatures for booklet printing, and page +longdesc merging for n-up printing. Utilities include psbook, psselect, +longdesc pstops, psnup, psresize, epsffit. +depend psutils.ARCH +containersize 5388 +containerchecksum 737cbffd48eec8244b11d6715a41feea6ed25cd6e53326dcbec0a5fe60881c5376dba508d70345db30a3c3515b24d3995f133b92015d2e943accea1093ea7c1c +doccontainersize 135820 +doccontainerchecksum 68505dab374e4e4ffd9da0ce6e6ee41008ebc0e2eaac1cd89ba7746b6882ba7bf6fb93143b4dd5a3a8fada821104ab8ca66fea5ffe313173631f98b221fdc62c +docfiles size=60 + texmf-dist/doc/man/man1/epsffit.1 + texmf-dist/doc/man/man1/epsffit.man1.pdf + texmf-dist/doc/man/man1/extractres.1 + texmf-dist/doc/man/man1/extractres.man1.pdf + texmf-dist/doc/man/man1/includeres.1 + texmf-dist/doc/man/man1/includeres.man1.pdf + texmf-dist/doc/man/man1/psbook.1 + texmf-dist/doc/man/man1/psbook.man1.pdf + texmf-dist/doc/man/man1/psjoin.1 + texmf-dist/doc/man/man1/psjoin.man1.pdf + texmf-dist/doc/man/man1/psnup.1 + texmf-dist/doc/man/man1/psnup.man1.pdf + texmf-dist/doc/man/man1/psresize.1 + texmf-dist/doc/man/man1/psresize.man1.pdf + texmf-dist/doc/man/man1/psselect.1 + texmf-dist/doc/man/man1/psselect.man1.pdf + texmf-dist/doc/man/man1/pstops.1 + texmf-dist/doc/man/man1/pstops.man1.pdf + texmf-dist/doc/man/man1/psutils.1 + texmf-dist/doc/man/man1/psutils.man1.pdf +runfiles size=7 + texmf-dist/dvips/getafm/getafm.ps + texmf-dist/psutils/paper.cfg + texmf-dist/scripts/psutils/extractres.pl + texmf-dist/scripts/psutils/includeres.pl + texmf-dist/scripts/psutils/psjoin.pl +catalogue-also pssplit +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-license other-free +catalogue-topics ps-manip +catalogue-version p17 + +name psutils.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of psutils +containersize 62952 +containerchecksum 81aa88e4f34f0a81fe4fc09994befa4e20327265b12bc29c6ccb7117e72796c064677fc765907a1f722bd6755063500a248c9ed6cbf450cc9d87d4697608120d +binfiles arch=aarch64-linux size=101 + bin/aarch64-linux/epsffit + bin/aarch64-linux/extractres + bin/aarch64-linux/includeres + bin/aarch64-linux/psbook + bin/aarch64-linux/psjoin + bin/aarch64-linux/psnup + bin/aarch64-linux/psresize + bin/aarch64-linux/psselect + bin/aarch64-linux/pstops + +name psutils.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of psutils +containersize 75080 +containerchecksum 670ebdb28477c79b0af2ff22a10981cd6b1738533036e95b67b8e03233a62f166a080cda7bba67aec84decb1b9dcc176912807baa0a661b8b39a2a70e47bc6f1 +binfiles arch=amd64-freebsd size=104 + bin/amd64-freebsd/epsffit + bin/amd64-freebsd/extractres + bin/amd64-freebsd/includeres + bin/amd64-freebsd/psbook + bin/amd64-freebsd/psjoin + bin/amd64-freebsd/psnup + bin/amd64-freebsd/psresize + bin/amd64-freebsd/psselect + bin/amd64-freebsd/pstops + +name psutils.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of psutils +containersize 69144 +containerchecksum 302beb1469b073d9aa4e21383907ab532f302af8bd9f88f69a43f1aa55f02440e8e06be69ad58b376f1f372d1f982487c0569f6d5b3fbf125de9d8b54f58c02f +binfiles arch=amd64-netbsd size=118 + bin/amd64-netbsd/epsffit + bin/amd64-netbsd/extractres + bin/amd64-netbsd/includeres + bin/amd64-netbsd/psbook + bin/amd64-netbsd/psjoin + bin/amd64-netbsd/psnup + bin/amd64-netbsd/psresize + bin/amd64-netbsd/psselect + bin/amd64-netbsd/pstops + +name psutils.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of psutils +containersize 49104 +containerchecksum 169c72208be502223383abe9d8ed8f17fc57cb62cb44cb9a86e8d595957c8884cb617c84ad8c7ea6750d4d8f087e4e0cee8db6f7a604b71d95b8a6627dc9e7ae +binfiles arch=armhf-linux size=80 + bin/armhf-linux/epsffit + bin/armhf-linux/extractres + bin/armhf-linux/includeres + bin/armhf-linux/psbook + bin/armhf-linux/psjoin + bin/armhf-linux/psnup + bin/armhf-linux/psresize + bin/armhf-linux/psselect + bin/armhf-linux/pstops + +name psutils.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of psutils +containersize 21740 +containerchecksum 80b7fe5bb2e14c2b58157bbbe8627697b4f9d7dc99f897236c3a21aed7d5f730d45417488bbc40fd383ee3eecf7fee562974e840d95dbe12cd79cdaf4dd12ea0 +binfiles arch=i386-cygwin size=41 + bin/i386-cygwin/epsffit.exe + bin/i386-cygwin/extractres + bin/i386-cygwin/includeres + bin/i386-cygwin/psbook.exe + bin/i386-cygwin/psjoin + bin/i386-cygwin/psnup.exe + bin/i386-cygwin/psresize.exe + bin/i386-cygwin/psselect.exe + bin/i386-cygwin/pstops.exe + +name psutils.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of psutils +containersize 65528 +containerchecksum 4196052220c345e53224d6bd3ec2b2dbe75b49319074bb858169b4efa2d6675fab7ecce4c6c3172fc2b2ae55f9868f9581a3fd61ef9ff036c63db3df40bc5265 +binfiles arch=i386-freebsd size=90 + bin/i386-freebsd/epsffit + bin/i386-freebsd/extractres + bin/i386-freebsd/includeres + bin/i386-freebsd/psbook + bin/i386-freebsd/psjoin + bin/i386-freebsd/psnup + bin/i386-freebsd/psresize + bin/i386-freebsd/psselect + bin/i386-freebsd/pstops + +name psutils.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of psutils +containersize 69716 +containerchecksum 7aecc5db4e3cccc48af9ba79570cb234b1faf6e739a877a062194636221de2eb5d7036881d7b8a8a0b4929891f5b5e654a8577dad3106d254ffef75af74b99d6 +binfiles arch=i386-linux size=101 + bin/i386-linux/epsffit + bin/i386-linux/extractres + bin/i386-linux/includeres + bin/i386-linux/psbook + bin/i386-linux/psjoin + bin/i386-linux/psnup + bin/i386-linux/psresize + bin/i386-linux/psselect + bin/i386-linux/pstops + +name psutils.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of psutils +containersize 63656 +containerchecksum 1b215603f9b987f0ea38188e63400d2d57b773960a62779ea8b11d0d06f198deae5c289798bd4a40c662d401c3dd3840a47b1ab81315df3d0c2c64aac0f6b4bc +binfiles arch=i386-netbsd size=107 + bin/i386-netbsd/epsffit + bin/i386-netbsd/extractres + bin/i386-netbsd/includeres + bin/i386-netbsd/psbook + bin/i386-netbsd/psjoin + bin/i386-netbsd/psnup + bin/i386-netbsd/psresize + bin/i386-netbsd/psselect + bin/i386-netbsd/pstops + +name psutils.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of psutils +containersize 66228 +containerchecksum 4c7bf92ba1f898895d12563b893d21689568d46ae802c143372f71db81173d11665ffaa656ee0e2137dc574a7e2f8b444602edb97b21a0f3dd4450df6464cc69 +binfiles arch=i386-solaris size=93 + bin/i386-solaris/epsffit + bin/i386-solaris/extractres + bin/i386-solaris/includeres + bin/i386-solaris/psbook + bin/i386-solaris/psjoin + bin/i386-solaris/psnup + bin/i386-solaris/psresize + bin/i386-solaris/psselect + bin/i386-solaris/pstops + +name psutils.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of psutils +containersize 133464 +containerchecksum e541bb6e8137dcdc33c9c45fa35d0eba82eeac627ab43d131c1c6afd45af174775d9db262acf176e4330d20eacb2d17dcf7f29397bb4ea82e134e09949e4107a +binfiles arch=universal-darwin size=318 + bin/universal-darwin/epsffit + bin/universal-darwin/extractres + bin/universal-darwin/includeres + bin/universal-darwin/psbook + bin/universal-darwin/psjoin + bin/universal-darwin/psnup + bin/universal-darwin/psresize + bin/universal-darwin/psselect + bin/universal-darwin/pstops + +name psutils.win32 +category TLCore +revision 58783 +shortdesc win32 files of psutils +containersize 24936 +containerchecksum 97ef8f951e366f228ebb513df28d7ab939d89547289bf692ffb0b696dc8a419b7d88905655bdb67aa0a31a6c0a66b2e1880acd91111bbe6d69d89d5f6a506999 +binfiles arch=win32 size=32 + bin/win32/epsffit.exe + bin/win32/extractres.exe + bin/win32/includeres.exe + bin/win32/psbook.exe + bin/win32/psjoin.exe + bin/win32/psnup.exe + bin/win32/psresize.exe + bin/win32/psselect.exe + bin/win32/pstops.exe + +name psutils.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of psutils +containersize 23120 +containerchecksum 159172968309bbe3283c270aa32d7b0e2bc6aa8d92125dd49099e6bf18c08ba59cb49e35637c672771b9207647e9cf3b285af572b3d6a0104528650a5a9406f1 +binfiles arch=x86_64-cygwin size=38 + bin/x86_64-cygwin/epsffit.exe + bin/x86_64-cygwin/extractres + bin/x86_64-cygwin/includeres + bin/x86_64-cygwin/psbook.exe + bin/x86_64-cygwin/psjoin + bin/x86_64-cygwin/psnup.exe + bin/x86_64-cygwin/psresize.exe + bin/x86_64-cygwin/psselect.exe + bin/x86_64-cygwin/pstops.exe + +name psutils.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of psutils +containersize 62080 +containerchecksum 969f75ee4f550fd4f3416fd8f0c74b7f839e166a8b904685a316882a206eeca8e1393f92ffe239d292ed0f6be1004fe15a8376997daa7997b8074d5e9ff720ea +binfiles arch=x86_64-darwinlegacy size=97 + bin/x86_64-darwinlegacy/epsffit + bin/x86_64-darwinlegacy/extractres + bin/x86_64-darwinlegacy/includeres + bin/x86_64-darwinlegacy/psbook + bin/x86_64-darwinlegacy/psjoin + bin/x86_64-darwinlegacy/psnup + bin/x86_64-darwinlegacy/psresize + bin/x86_64-darwinlegacy/psselect + bin/x86_64-darwinlegacy/pstops + +name psutils.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of psutils +containersize 69344 +containerchecksum c984ef9466467d27c40fef11df36869f7c040480d5370d183b6ae8bb3f14166aa88350a1fb2d25619c5f210410406478a1b9bf6e1f5743dac0d0d251e3c9c2a0 +binfiles arch=x86_64-linux size=91 + bin/x86_64-linux/epsffit + bin/x86_64-linux/extractres + bin/x86_64-linux/includeres + bin/x86_64-linux/psbook + bin/x86_64-linux/psjoin + bin/x86_64-linux/psnup + bin/x86_64-linux/psresize + bin/x86_64-linux/psselect + bin/x86_64-linux/pstops + +name psutils.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of psutils +containersize 72356 +containerchecksum b9b6e2d2cc8c63e6c364d4862404e54e828f28dec676284ce0b0d6c2302472f54de506d0852e52aa98657d2a5738d35ce0edcc1d0d90412088e5b73acd4d7d5d +binfiles arch=x86_64-linuxmusl size=105 + bin/x86_64-linuxmusl/epsffit + bin/x86_64-linuxmusl/extractres + bin/x86_64-linuxmusl/includeres + bin/x86_64-linuxmusl/psbook + bin/x86_64-linuxmusl/psjoin + bin/x86_64-linuxmusl/psnup + bin/x86_64-linuxmusl/psresize + bin/x86_64-linuxmusl/psselect + bin/x86_64-linuxmusl/pstops + +name psutils.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of psutils +containersize 75096 +containerchecksum 4dcce0a20a12157dcece58875e034f27cf857104a878beeedc5b8e46dc5863e9d288d9a7b2802eea59b34ff0290dc49d57972669be059c97d0e9f8706b7dabd0 +binfiles arch=x86_64-solaris size=110 + bin/x86_64-solaris/epsffit + bin/x86_64-solaris/extractres + bin/x86_64-solaris/includeres + bin/x86_64-solaris/psbook + bin/x86_64-solaris/psjoin + bin/x86_64-solaris/psnup + bin/x86_64-solaris/psresize + bin/x86_64-solaris/psselect + bin/x86_64-solaris/pstops + +name ptex +category Package +revision 57972 +shortdesc A TeX system for publishing in Japanese +longdesc pTeX adds features related to vertical writing, and deals with +longdesc other problems in typesetting Japanese. A manual (in both +longdesc Japanese and English) is distributed as package pTeX-manual. +depend cm +depend etex +depend hyphen-base +depend knuth-lib +depend plain +depend ptex-base +depend ptex-fonts +depend ptex.ARCH +execute AddFormat name=eptex engine=eptex options="*eptex.ini" patterns=language.def fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts,etex +execute AddFormat name=ptex engine=ptex options="ptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts +execute addKanjiMap ptex-@jaEmbed@@jaVariant@.map +containersize 688 +containerchecksum d59108f06a06b7ac46195ef05c0ba6fb4873a88d327839a6143e94392faf3df73ae7b128548ae1ab69915f9883bad554f0e2dbd8d36b8f8c959897210895fba0 +doccontainersize 119344 +doccontainerchecksum 4f863d89fca4c137a84fe75365f600da96f3901d29dd98e9d5733523648b746861a22284707c6e9df90a9939c83adc7bcdf21b310785b8d403459d65294d1133 +docfiles size=54 + texmf-dist/doc/man/man1/eptex.1 + texmf-dist/doc/man/man1/eptex.man1.pdf + texmf-dist/doc/man/man1/makejvf.1 + texmf-dist/doc/man/man1/makejvf.man1.pdf + texmf-dist/doc/man/man1/mendex.1 + texmf-dist/doc/man/man1/mendex.man1.pdf + texmf-dist/doc/man/man1/ppltotf.1 + texmf-dist/doc/man/man1/ppltotf.man1.pdf + texmf-dist/doc/man/man1/ptex.1 + texmf-dist/doc/man/man1/ptex.man1.pdf + texmf-dist/doc/man/man1/ptftopl.1 + texmf-dist/doc/man/man1/ptftopl.man1.pdf +catalogue-alias eptex +catalogue-contact-bugs https://github.com/texjporg/tex-jp-build/ +catalogue-contact-support https://ml.texjp.org/mailman/listinfo/issue +catalogue-license bsd3 +catalogue-topics engine japanese + +name ptex-base +category Package +revision 56487 +shortdesc Plain TeX format for pTeX and e-pTeX +relocated 1 +longdesc The bundle contains the plain TeX format for pTeX and e-pTeX. +containersize 10040 +containerchecksum 37809d10840c61c7b5c17be0174708b3c66d7fb0b48c58f46aabcaa2e44abf30abc3aa437131ba1148f11bdee3e2fec1b8ab0787310e8924acc7d90cb33c0d84 +doccontainersize 1548 +doccontainerchecksum 98844a87ac2a83d55c04bca34a53e1cc5c222ac5d359d3c24648a8c849443c5c8829bb0d911d54de76fefcd2d0c4d537feff5effe7591657de629b2ab24e5c2b +docfiles size=2 + RELOC/doc/ptex/ptex-base/LICENSE + RELOC/doc/ptex/ptex-base/README.md details="Readme" +runfiles size=14 + RELOC/tex/ptex/ptex-base/ascii-jplain.tex + RELOC/tex/ptex/ptex-base/eptex.ini + RELOC/tex/ptex/ptex-base/eptex.src + RELOC/tex/ptex/ptex-base/eptexdefs.lib + RELOC/tex/ptex/ptex-base/kinsoku.tex + RELOC/tex/ptex/ptex-base/ptex.ini + RELOC/tex/ptex/ptex-base/ptex.tex +catalogue-contact-repository https://github.com/texjporg/ptex-base +catalogue-ctan /language/japanese/ptex-base +catalogue-license bsd3 +catalogue-topics format japanese + +name ptex-fontmaps +category Package +revision 57239 +shortdesc Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex +longdesc This package provides font maps and setup tools for Japanese, +longdesc Korean, Traditional Chinese, and Simplified Chinese. It is the +longdesc successor of the jfontmaps package. The files in this package +longdesc contain font maps for dvipdfmx to make various +longdesc Japanese/Chinese/Korean fonts available for (u)ptex and related +longdesc programs and formats. +depend ptex-fontmaps.ARCH +postaction script file=tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl +containersize 43276 +containerchecksum 168de4ff3435d1148bb718b15953dfa79172c6829e95824d998d9fff193c27f7677ae014ba54c507840b9b630dea12168f9a70d30a4cead922a461a52e63d8ab +doccontainersize 156728 +doccontainerchecksum 42e7f0eeab1000b2c49d714c40405e008cc7b08648bdac1bac8f5459bc64eb3fd6fb526fabbbc2c7774a1b12abd37396e389e7c90351eba92a5aeef53ac3e558 +docfiles size=49 + texmf-dist/doc/fonts/ptex-fontmaps/README details="Readme" + texmf-dist/doc/fonts/ptex-fontmaps/examples/otf-sample-04.tex + texmf-dist/doc/fonts/ptex-fontmaps/examples/otf-sample.tex + texmf-dist/doc/fonts/ptex-fontmaps/examples/ptex-sample.tex + texmf-dist/doc/fonts/ptex-fontmaps/examples/series-compare.tex + texmf-dist/doc/fonts/ptex-fontmaps/kanji-config-updmap.pdf + texmf-dist/doc/fonts/ptex-fontmaps/kanji-config-updmap.tex +srccontainersize 305384 +srccontainerchecksum f7875a39315715c60069521903a103e5ab12ec52970ee00f3b95a498075d39e68d6f5b12373b4b31f6681a31561d740b584a65ba566d1db5ffadefdb620cf1da +srcfiles size=250 + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-H + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-V + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/README + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/cmapdec.lua + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-h04-httk.pdf + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-h04-httk.tex + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-v04-vttk.pdf + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-v04-vttk.tex + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jisx0213-2004-8bit-std.txt + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/mk_jis_to_aj16_cid.lua + texmf-dist/source/ptex-fontmaps/script/updmap-otf.sh +runfiles size=250 + texmf-dist/fonts/cmap/ptex-fontmaps/2004-H + texmf-dist/fonts/cmap/ptex-fontmaps/2004-V + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/otf-ko-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/otf-sc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/otf-tc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/uptex-ko-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/uptex-sc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/uptex-tc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/apple/otf-ko-apple.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/apple/uptex-ko-apple.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/otf-sc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/otf-tc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/uptex-sc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/uptex-tc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/baekmuk/otf-ko-baekmuk.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/baekmuk/uptex-ko-baekmuk.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/otf-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/otf-up-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/ptex-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/uptex-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/otf-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/otf-up-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/ptex-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/uptex-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/otf-sc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/otf-tc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/uptex-sc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/uptex-tc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/otf-sc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/otf-tc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/uptex-sc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/uptex-tc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/dynacomware/otf-tc-dynacomware.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/dynacomware/uptex-tc-dynacomware.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/fandol/otf-sc-fandol.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/fandol/uptex-sc-fandol.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/founder/otf-sc-founder.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/founder/uptex-sc-founder.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/otf-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/otf-ko-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/otf-sc-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/otf-tc-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/otf-up-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/ptex-haranoaji-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/ptex-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/uptex-haranoaji-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/uptex-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/uptex-ko-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/uptex-sc-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/uptex-tc-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/otf-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/otf-up-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/ptex-hiragino-pron-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/ptex-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/uptex-hiragino-pron-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/uptex-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/otf-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/otf-up-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/ptex-hiragino-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/ptex-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/uptex-hiragino-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/uptex-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/otf-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/otf-up-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/ptex-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/uptex-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/otf-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/otf-up-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/ptex-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/uptex-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/otf-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/otf-up-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/ptex-kozuka-pr6-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/ptex-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/uptex-kozuka-pr6-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/uptex-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/otf-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/otf-up-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/ptex-kozuka-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/ptex-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/uptex-kozuka-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/uptex-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/otf-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/otf-up-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/ptex-kozuka-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/ptex-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/uptex-kozuka-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/uptex-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/otf-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/otf-up-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/ptex-moga-mobo-ex-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/ptex-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/uptex-moga-mobo-ex-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/uptex-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/otf-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/otf-up-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/ptex-moga-mobo-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/ptex-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/uptex-moga-mobo-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/uptex-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/otf-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/otf-up-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/ptex-morisawa-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/ptex-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/uptex-morisawa-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/uptex-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/otf-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/otf-up-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/ptex-morisawa-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/ptex-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/uptex-morisawa-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/uptex-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/otf-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/otf-sc-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/otf-up-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/ptex-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/uptex-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/uptex-sc-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-win10/otf-tc-ms-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-win10/uptex-tc-ms-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-ko-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-sc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-tc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-up-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/ptex-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-ko-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-sc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-tc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-ko-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-sc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-tc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-up-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/ptex-noEmbed-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/ptex-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-ko-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-noEmbed-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-sc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-tc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-ko-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-sc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-tc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-up-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/ptex-noto-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/ptex-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-ko-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-noto-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-sc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-tc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-ko-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-sc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-tc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-up-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/ptex-noto-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/ptex-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-ko-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-noto-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-sc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-tc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/solaris/otf-ko-solaris.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/solaris/uptex-ko-solaris.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-ko-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-sc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-tc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-up-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/ptex-sourcehan-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/ptex-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-ko-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-sc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-sourcehan-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-tc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-ko-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-sc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-tc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-up-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/ptex-sourcehan-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/ptex-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-ko-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-sc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-sourcehan-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-tc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/otf-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/otf-up-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/ptex-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/uptex-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/unfonts/otf-ko-unfonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/unfonts/uptex-ko-unfonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/otf-up-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/otf-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/ptex-yu-osx-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/ptex-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/uptex-yu-osx-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/uptex-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/otf-up-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/otf-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/ptex-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/uptex-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/otf-up-yu-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/otf-yu-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/ptex-yu-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/uptex-yu-win10.map + texmf-dist/fonts/misc/ptex-fontmaps/ptex-fontmaps-data.dat + texmf-dist/scripts/ptex-fontmaps/kanji-config-updmap-sys.sh + texmf-dist/scripts/ptex-fontmaps/kanji-config-updmap-user.sh + texmf-dist/scripts/ptex-fontmaps/kanji-config-updmap.pl + texmf-dist/scripts/ptex-fontmaps/kanji-fontmap-creator.pl + tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl +catalogue-contact-repository https://github.com/texjporg/ptex-fontmaps +catalogue-ctan /fonts/ptex-fontmaps +catalogue-license pd gpl3 +catalogue-topics font-use japanese chinese korean +catalogue-version 20201227.0 + +name ptex-fontmaps.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ptex-fontmaps +containersize 436 +containerchecksum e90eb4f020e80c2b6c278b5ee3f97a6a143372790d138c13eabf7a743d42d56322e9b878f2ab5c98af490872e26b99883b9db5f0233c79b591ba182c494f9a8a +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/kanji-config-updmap + bin/aarch64-linux/kanji-config-updmap-sys + bin/aarch64-linux/kanji-config-updmap-user + bin/aarch64-linux/kanji-fontmap-creator + +name ptex-fontmaps.amd64-freebsd +category Package +revision 44206 +shortdesc amd64-freebsd files of ptex-fontmaps +containersize 436 +containerchecksum 416b8ca704156d0816d0072413ebe7d5f3b1149709d3241d3809e042eb3870fb4b1aa7350d314691be6d44f8764a277c5fd037633ed69e876012e47ae5c8ea9a +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/kanji-config-updmap + bin/amd64-freebsd/kanji-config-updmap-sys + bin/amd64-freebsd/kanji-config-updmap-user + bin/amd64-freebsd/kanji-fontmap-creator + +name ptex-fontmaps.amd64-netbsd +category Package +revision 44206 +shortdesc amd64-netbsd files of ptex-fontmaps +containersize 436 +containerchecksum cddca7d0fde477bfc26997e34f520d7f56c03f6bf000073be8238864613fe9971edb86c3afcdb96397e0b8f5338638dfbb09fbded42ad783a1405cec0469ba85 +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/kanji-config-updmap + bin/amd64-netbsd/kanji-config-updmap-sys + bin/amd64-netbsd/kanji-config-updmap-user + bin/amd64-netbsd/kanji-fontmap-creator + +name ptex-fontmaps.armhf-linux +category Package +revision 44206 +shortdesc armhf-linux files of ptex-fontmaps +containersize 432 +containerchecksum 56da5dc69a77160eeda3cecdd797d9054c2fb163df90ef133243d39af33491cd9bc044f0e8b081d97c4f4721d3f21f033492673e007f586ab4ede2ef335d52e0 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/kanji-config-updmap + bin/armhf-linux/kanji-config-updmap-sys + bin/armhf-linux/kanji-config-updmap-user + bin/armhf-linux/kanji-fontmap-creator + +name ptex-fontmaps.i386-cygwin +category Package +revision 44206 +shortdesc i386-cygwin files of ptex-fontmaps +containersize 436 +containerchecksum 9b945c236ac1a6d0caa7db142db04761ee3744f1b5e86d1f30307bd739127f30a65e424970d17ef0dbfdac6061a696b2baba6a69dd025dcbfda005898d5a9115 +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/kanji-config-updmap + bin/i386-cygwin/kanji-config-updmap-sys + bin/i386-cygwin/kanji-config-updmap-user + bin/i386-cygwin/kanji-fontmap-creator + +name ptex-fontmaps.i386-freebsd +category Package +revision 44206 +shortdesc i386-freebsd files of ptex-fontmaps +containersize 436 +containerchecksum 7a1dd7590413fd1b5458593271837eb3a5f7ffcca02ac9106270a78408222da4953499f23a73323e094755437f1ffa0ebc249ae42501e4f7e05c438f2ec50b26 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/kanji-config-updmap + bin/i386-freebsd/kanji-config-updmap-sys + bin/i386-freebsd/kanji-config-updmap-user + bin/i386-freebsd/kanji-fontmap-creator + +name ptex-fontmaps.i386-linux +category Package +revision 44206 +shortdesc i386-linux files of ptex-fontmaps +containersize 432 +containerchecksum e687952cf10f00ebaf4a7387c4870626eb97dbbab2f20f6b6f8dcb98ba551a33e2080329b72f374d471defef125f9cada6b4affebbe4dd549c138483c6cb0e58 +binfiles arch=i386-linux size=4 + bin/i386-linux/kanji-config-updmap + bin/i386-linux/kanji-config-updmap-sys + bin/i386-linux/kanji-config-updmap-user + bin/i386-linux/kanji-fontmap-creator + +name ptex-fontmaps.i386-netbsd +category Package +revision 44206 +shortdesc i386-netbsd files of ptex-fontmaps +containersize 432 +containerchecksum 3fae16fef041421fa1d4628b5f677e71214d46b3196ba2f0100867f75b5772fd9441afe610710610de4d997337501ce9863c7ea55d721e95e8ff0d94bc316d23 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/kanji-config-updmap + bin/i386-netbsd/kanji-config-updmap-sys + bin/i386-netbsd/kanji-config-updmap-user + bin/i386-netbsd/kanji-fontmap-creator + +name ptex-fontmaps.i386-solaris +category Package +revision 44206 +shortdesc i386-solaris files of ptex-fontmaps +containersize 432 +containerchecksum ae63164a811350129e28785d0a8dad53c6955d0c2fc0fd27687217381a08d32a96f1228dd3d408bc14ef157f453d1b0e3da1b719542df4f510108c74f3d2ecfb +binfiles arch=i386-solaris size=4 + bin/i386-solaris/kanji-config-updmap + bin/i386-solaris/kanji-config-updmap-sys + bin/i386-solaris/kanji-config-updmap-user + bin/i386-solaris/kanji-fontmap-creator + +name ptex-fontmaps.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ptex-fontmaps +containersize 432 +containerchecksum 42bb9d7187b10c26318c3e310bb6cf5486bca5e5c7381e26e5606711bfdc8e276601dfc629822707e1b80c84c345562f52ca2072b098c3f789e932681be2ee33 +binfiles arch=universal-darwin size=4 + bin/universal-darwin/kanji-config-updmap + bin/universal-darwin/kanji-config-updmap-sys + bin/universal-darwin/kanji-config-updmap-user + bin/universal-darwin/kanji-fontmap-creator + +name ptex-fontmaps.win32 +category Package +revision 44206 +shortdesc win32 files of ptex-fontmaps +containersize 776 +containerchecksum 19e6f552a27598767ffc34e64354403dd3dc0192e45d01c510b6e566230ed37b1cedcb8e865d044c5cbc07d65a25e236d5f4fe69dd197efe345c5553b4770d39 +binfiles arch=win32 size=4 + bin/win32/kanji-config-updmap-sys.exe + bin/win32/kanji-config-updmap-user.exe + bin/win32/kanji-config-updmap.exe + bin/win32/kanji-fontmap-creator.exe + +name ptex-fontmaps.x86_64-cygwin +category Package +revision 44206 +shortdesc x86_64-cygwin files of ptex-fontmaps +containersize 436 +containerchecksum 1cc1e0d1c2611e375fdbaf5692901717c3d7d43e8b499a396395f3ce4e8800333a6e99da8642a9fe00cf0306c247bf1640b668f603be730ffbf8f05b671d2a20 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/kanji-config-updmap + bin/x86_64-cygwin/kanji-config-updmap-sys + bin/x86_64-cygwin/kanji-config-updmap-user + bin/x86_64-cygwin/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-darwinlegacy +category Package +revision 44206 +shortdesc x86_64-darwinlegacy files of ptex-fontmaps +containersize 440 +containerchecksum 0bcdfb86b5d50dae32b5b9447c32b365b044187b87d3ce43436b0095989d1a62bc932c9b10935d78ee908cab97352df23d213f38a927e681bb6f7023b16a8b9b +binfiles arch=x86_64-darwinlegacy size=4 + bin/x86_64-darwinlegacy/kanji-config-updmap + bin/x86_64-darwinlegacy/kanji-config-updmap-sys + bin/x86_64-darwinlegacy/kanji-config-updmap-user + bin/x86_64-darwinlegacy/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-linux +category Package +revision 44206 +shortdesc x86_64-linux files of ptex-fontmaps +containersize 432 +containerchecksum c3e1ee29e2fb3d8cf0b6b6ad0ad27a11328962cacb1721aac2ec1d2af66764db05bf71a15b74d0329a69959d5ffe659fe3f7bb39d67440b30ce3fcaf8292d312 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/kanji-config-updmap + bin/x86_64-linux/kanji-config-updmap-sys + bin/x86_64-linux/kanji-config-updmap-user + bin/x86_64-linux/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ptex-fontmaps +containersize 436 +containerchecksum 4dd1cb2c65e6251d3011ee33750a6c2b311209784268ce75ed25c2099984c34e5e340d027cf21cdce80e86384181bf184453c3fe7221c0abe654e3fadc16ef29 +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/kanji-config-updmap + bin/x86_64-linuxmusl/kanji-config-updmap-sys + bin/x86_64-linuxmusl/kanji-config-updmap-user + bin/x86_64-linuxmusl/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-solaris +category Package +revision 44206 +shortdesc x86_64-solaris files of ptex-fontmaps +containersize 432 +containerchecksum 2e0dc4fd89b7eb46df9c36d299f1ee25a466a9a48fc8b6184c64f67b16b7522a055518100dc434fa84a9f6368d6169c189f34eb5a0c22739ad0440a3e9840b51 +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/kanji-config-updmap + bin/x86_64-solaris/kanji-config-updmap-sys + bin/x86_64-solaris/kanji-config-updmap-user + bin/x86_64-solaris/kanji-fontmap-creator + +name ptex-fonts +category Package +revision 46940 +shortdesc Fonts for use with pTeX +relocated 1 +longdesc The bundle contains fonts for use with pTeX and the documents +longdesc for the makejvf program. This is a redistribution derived from +longdesc the ptex-texmf distribution by ASCII MEDIA WORKS. +containersize 14180 +containerchecksum 54ebb6d2923ff6b277b4376041b90a0fa6a164281cb18820f175d5aa87f9e996c1adff16e9e5eb5bb90d52c135d581eb1d5ddc476ecb2446fd27d0cecd75bb30 +doccontainersize 4256 +doccontainerchecksum dd3c4d3510ec1de8a5174bd10a7ff7bb173b25354b28f0b8411fe23b41fee8523fe1993c30e55cb7c3eddd90bd17db5299cb8f4ca170e4d97869388d3fbd8137 +docfiles size=5 + RELOC/doc/fonts/ptex-fonts/Changes_makejvf + RELOC/doc/fonts/ptex-fonts/LICENSE + RELOC/doc/fonts/ptex-fonts/README.md details="Readme" + RELOC/doc/fonts/ptex-fonts/README_makejvf +runfiles size=1724 + RELOC/fonts/source/ptex-fonts/jis/jis-v.pl + RELOC/fonts/source/ptex-fonts/jis/jis.pl + RELOC/fonts/source/ptex-fonts/jis/jisn-v.pl + RELOC/fonts/source/ptex-fonts/jis/jisn.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth10.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth5.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth6.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth7.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth8.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth9.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin10.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin5.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin6.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin7.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin8.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin9.pl + RELOC/fonts/source/ptex-fonts/standard/goth10.pl + RELOC/fonts/source/ptex-fonts/standard/goth5.pl + RELOC/fonts/source/ptex-fonts/standard/goth6.pl + RELOC/fonts/source/ptex-fonts/standard/goth7.pl + RELOC/fonts/source/ptex-fonts/standard/goth8.pl + RELOC/fonts/source/ptex-fonts/standard/goth9.pl + RELOC/fonts/source/ptex-fonts/standard/min10.pl + RELOC/fonts/source/ptex-fonts/standard/min5.pl + RELOC/fonts/source/ptex-fonts/standard/min6.pl + RELOC/fonts/source/ptex-fonts/standard/min7.pl + RELOC/fonts/source/ptex-fonts/standard/min8.pl + RELOC/fonts/source/ptex-fonts/standard/min9.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth10.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth5.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth6.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth7.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth8.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth9.pl + RELOC/fonts/source/ptex-fonts/standard/tmin10.pl + RELOC/fonts/source/ptex-fonts/standard/tmin5.pl + RELOC/fonts/source/ptex-fonts/standard/tmin6.pl + RELOC/fonts/source/ptex-fonts/standard/tmin7.pl + RELOC/fonts/source/ptex-fonts/standard/tmin8.pl + RELOC/fonts/source/ptex-fonts/standard/tmin9.pl + RELOC/fonts/tfm/ptex-fonts/dvips/gbm.tfm + RELOC/fonts/tfm/ptex-fonts/dvips/gbmv.tfm + RELOC/fonts/tfm/ptex-fonts/dvips/rml.tfm + RELOC/fonts/tfm/ptex-fonts/dvips/rmlv.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jis-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jis.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisg-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisg.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisgn-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisgn.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisn-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisn.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth10.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth5.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth6.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth7.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth8.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth9.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin10.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin5.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin6.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin7.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin8.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin9.tfm + RELOC/fonts/vf/ptex-fonts/jis/jis-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jis.vf + RELOC/fonts/vf/ptex-fonts/jis/jisg-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jisg.vf + RELOC/fonts/vf/ptex-fonts/jis/jisgn-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jisgn.vf + RELOC/fonts/vf/ptex-fonts/jis/jisn-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jisn.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth10.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth5.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth6.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth7.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth8.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth9.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin10.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin5.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin6.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin7.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin8.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin9.vf + RELOC/fonts/vf/ptex-fonts/standard/goth10.vf + RELOC/fonts/vf/ptex-fonts/standard/goth5.vf + RELOC/fonts/vf/ptex-fonts/standard/goth6.vf + RELOC/fonts/vf/ptex-fonts/standard/goth7.vf + RELOC/fonts/vf/ptex-fonts/standard/goth8.vf + RELOC/fonts/vf/ptex-fonts/standard/goth9.vf + RELOC/fonts/vf/ptex-fonts/standard/min10.vf + RELOC/fonts/vf/ptex-fonts/standard/min5.vf + RELOC/fonts/vf/ptex-fonts/standard/min6.vf + RELOC/fonts/vf/ptex-fonts/standard/min7.vf + RELOC/fonts/vf/ptex-fonts/standard/min8.vf + RELOC/fonts/vf/ptex-fonts/standard/min9.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth10.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth5.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth6.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth7.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth8.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth9.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin10.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin5.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin6.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin7.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin8.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin9.vf +catalogue-contact-repository https://github.com/texjporg/ptex-fonts +catalogue-ctan /fonts/ptex-fonts +catalogue-license bsd3 +catalogue-topics font-cjk + +name ptex-manual +category Package +revision 57128 +shortdesc Japanese pTeX manual +relocated 1 +longdesc This package contains the Japanese pTeX manual. Feedback is +longdesc welcome! +containersize 392 +containerchecksum ea2bc5648ea4dfee37b9df34ed786ff2fd400644defa7b2623435d4e448161b8bf45f07d5d2caf18bf280008d5e4253a4ad2f62dc88375500b635bab1c201491 +doccontainersize 2427344 +doccontainerchecksum 162b7d40353fc0c892b257170cb5a335930936c776ff4b5bb91fa41d27a859d43bcedaa053aa5c2ca7d732993212c470670e1abfa4b1149c0867cdcb4b68011f +docfiles size=708 + RELOC/doc/ptex/ptex-manual/LICENSE + RELOC/doc/ptex/ptex-manual/README.md details="Readme" + RELOC/doc/ptex/ptex-manual/eptex_resume.pdf + RELOC/doc/ptex/ptex-manual/eptex_resume.tex + RELOC/doc/ptex/ptex-manual/eptexdoc.pdf details="e-pTeX manual" language="ja" + RELOC/doc/ptex/ptex-manual/eptexdoc.tex + RELOC/doc/ptex/ptex-manual/fam256d.tex + RELOC/doc/ptex/ptex-manual/fam256p.tex + RELOC/doc/ptex/ptex-manual/jfm.pdf details="Specification of the Japanese Font Metric format" language="ja" + RELOC/doc/ptex/ptex-manual/jfm.tex + RELOC/doc/ptex/ptex-manual/jtex_asciimw.pdf + RELOC/doc/ptex/ptex-manual/jtex_asciimw.tex + RELOC/doc/ptex/ptex-manual/jtexdoc_asciimw.pdf + RELOC/doc/ptex/ptex-manual/jtexdoc_asciimw.tex + RELOC/doc/ptex/ptex-manual/ptex-guide-en.pdf details="Guide to pTeX and friends (in English)" + RELOC/doc/ptex/ptex-manual/ptex-guide-en.tex + RELOC/doc/ptex/ptex-manual/ptex-manual.pdf details="pTeX manual" language="ja" + RELOC/doc/ptex/ptex-manual/ptex-manual.sty + RELOC/doc/ptex/ptex-manual/ptex-manual.tex + RELOC/doc/ptex/ptex-manual/ptexdoc_asciimw.pdf + RELOC/doc/ptex/ptex-manual/ptexdoc_asciimw.tex + RELOC/doc/ptex/ptex-manual/ptexskip_asciimw.pdf + RELOC/doc/ptex/ptex-manual/ptexskip_asciimw.tex +catalogue-contact-repository https://github.com/texjporg/ptex-manual +catalogue-ctan /info/ptex-manual +catalogue-license bsd3 +catalogue-topics japanese-doc + +name ptex.aarch64-linux +category Package +revision 58876 +shortdesc aarch64-linux files of ptex +containersize 1354784 +containerchecksum 5da1a1fb7d8a4e1ceb36adff728f47449622f3a56ad3c055dc277e92e6988272f2ec163311089228080c3ad4972e5ea9a562f05f3423e8bd6143ad08bf738e45 +binfiles arch=aarch64-linux size=1157 + bin/aarch64-linux/eptex + bin/aarch64-linux/makejvf + bin/aarch64-linux/mendex + bin/aarch64-linux/pbibtex + bin/aarch64-linux/pdvitomp + bin/aarch64-linux/pdvitype + bin/aarch64-linux/pmpost + bin/aarch64-linux/ppltotf + bin/aarch64-linux/ptex + bin/aarch64-linux/ptftopl + bin/aarch64-linux/r-pmpost + +name ptex.amd64-freebsd +category Package +revision 58850 +shortdesc amd64-freebsd files of ptex +containersize 1670628 +containerchecksum 3d40f962c03f23b726d077f7a1cf7b07793bd6968a0abab80eff67c558d2fcd24a777701079dce8da5993b459b1bf1261b5f3c17bd20d2f5b719e96040b9b17b +binfiles arch=amd64-freebsd size=1382 + bin/amd64-freebsd/eptex + bin/amd64-freebsd/makejvf + bin/amd64-freebsd/mendex + bin/amd64-freebsd/pbibtex + bin/amd64-freebsd/pdvitomp + bin/amd64-freebsd/pdvitype + bin/amd64-freebsd/pmpost + bin/amd64-freebsd/ppltotf + bin/amd64-freebsd/ptex + bin/amd64-freebsd/ptftopl + bin/amd64-freebsd/r-pmpost + +name ptex.amd64-netbsd +category Package +revision 58866 +shortdesc amd64-netbsd files of ptex +containersize 1269480 +containerchecksum af0bbf15f2828ea5c51fbaf4c3212eb1ed17a59e96e17c9675ab52e12c4634bacd1c93489738447199aee4d67dd0143a1dae7007f5e6158d35ce4cadcbf41164 +binfiles arch=amd64-netbsd size=1958 + bin/amd64-netbsd/eptex + bin/amd64-netbsd/makejvf + bin/amd64-netbsd/mendex + bin/amd64-netbsd/pbibtex + bin/amd64-netbsd/pdvitomp + bin/amd64-netbsd/pdvitype + bin/amd64-netbsd/pmpost + bin/amd64-netbsd/ppltotf + bin/amd64-netbsd/ptex + bin/amd64-netbsd/ptftopl + bin/amd64-netbsd/r-pmpost + +name ptex.armhf-linux +category Package +revision 58911 +shortdesc armhf-linux files of ptex +containersize 1147188 +containerchecksum 066e639c213a4a7cd0fb84ba16737d151182901581ecf472f22cca5b10f16258cca341ff2750e80b74e8993fab0c5562f75aff0206fbaa577dcfd472da88c887 +binfiles arch=armhf-linux size=958 + bin/armhf-linux/eptex + bin/armhf-linux/makejvf + bin/armhf-linux/mendex + bin/armhf-linux/pbibtex + bin/armhf-linux/pdvitomp + bin/armhf-linux/pdvitype + bin/armhf-linux/pmpost + bin/armhf-linux/ppltotf + bin/armhf-linux/ptex + bin/armhf-linux/ptftopl + bin/armhf-linux/r-pmpost + +name ptex.i386-cygwin +category Package +revision 58851 +shortdesc i386-cygwin files of ptex +containersize 1314140 +containerchecksum 417be98a1850915a9ae23b5a2470790d304bf1744d2f646f1148a9bb37dd82e56a8e5dd4bfabdd13f78df2fb20dcd576a9d8104aa41519296a4041616cfc7205 +binfiles arch=i386-cygwin size=1010 + bin/i386-cygwin/cygptexenc-1.dll + bin/i386-cygwin/eptex.exe + bin/i386-cygwin/makejvf.exe + bin/i386-cygwin/mendex.exe + bin/i386-cygwin/pbibtex.exe + bin/i386-cygwin/pdvitomp + bin/i386-cygwin/pdvitype.exe + bin/i386-cygwin/pmpost.exe + bin/i386-cygwin/ppltotf.exe + bin/i386-cygwin/ptex.exe + bin/i386-cygwin/ptftopl.exe + bin/i386-cygwin/r-pmpost + +name ptex.i386-freebsd +category Package +revision 58850 +shortdesc i386-freebsd files of ptex +containersize 1394316 +containerchecksum 00a8c99c1855940e876274c50e367da1f4c150bd8e3350650758a8f696ab6ed4945da09403b1af112984938e698217a5a1b3dcbfd72ad0145ce4eec008cf8378 +binfiles arch=i386-freebsd size=1208 + bin/i386-freebsd/eptex + bin/i386-freebsd/makejvf + bin/i386-freebsd/mendex + bin/i386-freebsd/pbibtex + bin/i386-freebsd/pdvitomp + bin/i386-freebsd/pdvitype + bin/i386-freebsd/pmpost + bin/i386-freebsd/ppltotf + bin/i386-freebsd/ptex + bin/i386-freebsd/ptftopl + bin/i386-freebsd/r-pmpost + +name ptex.i386-linux +category Package +revision 58850 +shortdesc i386-linux files of ptex +containersize 1468628 +containerchecksum 0a5c559998c534445f8cf80bfa7e775afe5e592f2d07fff260cffb1145018b448e214ae57c5908afc09f3cee7ce494a1a436e10b364175b977b0a7168673f7fa +binfiles arch=i386-linux size=1260 + bin/i386-linux/eptex + bin/i386-linux/makejvf + bin/i386-linux/mendex + bin/i386-linux/pbibtex + bin/i386-linux/pdvitomp + bin/i386-linux/pdvitype + bin/i386-linux/pmpost + bin/i386-linux/ppltotf + bin/i386-linux/ptex + bin/i386-linux/ptftopl + bin/i386-linux/r-pmpost + +name ptex.i386-netbsd +category Package +revision 58866 +shortdesc i386-netbsd files of ptex +containersize 1105092 +containerchecksum 93f9e02a89b428839503add79955e6f2f206cfe4b3b810d193d12e865ab9648c067e038b5d5ec9a9ea14189cac2fb462d8559c1169824d2bfc72abb6e753e085 +binfiles arch=i386-netbsd size=1758 + bin/i386-netbsd/eptex + bin/i386-netbsd/makejvf + bin/i386-netbsd/mendex + bin/i386-netbsd/pbibtex + bin/i386-netbsd/pdvitomp + bin/i386-netbsd/pdvitype + bin/i386-netbsd/pmpost + bin/i386-netbsd/ppltotf + bin/i386-netbsd/ptex + bin/i386-netbsd/ptftopl + bin/i386-netbsd/r-pmpost + +name ptex.i386-solaris +category Package +revision 58850 +shortdesc i386-solaris files of ptex +containersize 1347604 +containerchecksum 270f8aab665bde1f94ff1790e23dc63e490ff69c9ff020f1b31a08028893b39802c8db6e7b69e3ef3c806e6f7b88f712cec2cc501731f759629bb77325e713d8 +binfiles arch=i386-solaris size=1049 + bin/i386-solaris/eptex + bin/i386-solaris/makejvf + bin/i386-solaris/mendex + bin/i386-solaris/pbibtex + bin/i386-solaris/pdvitomp + bin/i386-solaris/pdvitype + bin/i386-solaris/pmpost + bin/i386-solaris/ppltotf + bin/i386-solaris/ptex + bin/i386-solaris/ptftopl + bin/i386-solaris/r-pmpost + +name ptex.universal-darwin +category Package +revision 58850 +shortdesc universal-darwin files of ptex +containersize 3098276 +containerchecksum f4035afafa7ea5d09c696bf072a669f24b114f710fa794ae5e5661170e08e38ea2f336cc837fe69eef2a6d68f706b1928210f458eb9fdbdd29c2002a8d461efa +binfiles arch=universal-darwin size=2782 + bin/universal-darwin/eptex + bin/universal-darwin/makejvf + bin/universal-darwin/mendex + bin/universal-darwin/pbibtex + bin/universal-darwin/pdvitomp + bin/universal-darwin/pdvitype + bin/universal-darwin/pmpost + bin/universal-darwin/ppltotf + bin/universal-darwin/ptex + bin/universal-darwin/ptftopl + bin/universal-darwin/r-pmpost + +name ptex.win32 +category Package +revision 59028 +shortdesc win32 files of ptex +containersize 1384700 +containerchecksum 8844e3d43838a9d6d9ffd09b47425569546a130618bef6ecee3ccbdf2115a39e618b4aedb6b490972675a132b4df89341a877378b63475687c54b5896fc72a7e +binfiles arch=win32 size=1231 + bin/win32/eptex.dll + bin/win32/eptex.exe + bin/win32/makejvf.exe + bin/win32/mendex.exe + bin/win32/pbibtex.exe + bin/win32/pdvitomp.exe + bin/win32/pdvitype.exe + bin/win32/pmpost.dll + bin/win32/pmpost.exe + bin/win32/ppltotf.exe + bin/win32/ptex.dll + bin/win32/ptex.exe + bin/win32/ptftopl.exe + bin/win32/r-pmpost.exe + +name ptex.x86_64-cygwin +category Package +revision 58851 +shortdesc x86_64-cygwin files of ptex +containersize 1401056 +containerchecksum 023207abe074414cfc7d2f6b0b7a646d59ef3960416d48ec4f8908e33db12f636544f9ae60d1d61f087d606d7f88abc2982b2b3594548b8daca99d44b3510e1d +binfiles arch=x86_64-cygwin size=974 + bin/x86_64-cygwin/cygptexenc-1.dll + bin/x86_64-cygwin/eptex.exe + bin/x86_64-cygwin/makejvf.exe + bin/x86_64-cygwin/mendex.exe + bin/x86_64-cygwin/pbibtex.exe + bin/x86_64-cygwin/pdvitomp + bin/x86_64-cygwin/pdvitype.exe + bin/x86_64-cygwin/pmpost.exe + bin/x86_64-cygwin/ppltotf.exe + bin/x86_64-cygwin/ptex.exe + bin/x86_64-cygwin/ptftopl.exe + bin/x86_64-cygwin/r-pmpost + +name ptex.x86_64-darwinlegacy +category Package +revision 58850 +shortdesc x86_64-darwinlegacy files of ptex +containersize 1342432 +containerchecksum e11fd25b550fe8ef7b9488a4e1d8742b685ee54a2f037b0a9318947c29f4bfa8cf38f61c11dee99c57c23e4adee58d237e656899876577531e2ec0925ebd1f1d +binfiles arch=x86_64-darwinlegacy size=1062 + bin/x86_64-darwinlegacy/eptex + bin/x86_64-darwinlegacy/makejvf + bin/x86_64-darwinlegacy/mendex + bin/x86_64-darwinlegacy/pbibtex + bin/x86_64-darwinlegacy/pdvitomp + bin/x86_64-darwinlegacy/pdvitype + bin/x86_64-darwinlegacy/pmpost + bin/x86_64-darwinlegacy/ppltotf + bin/x86_64-darwinlegacy/ptex + bin/x86_64-darwinlegacy/ptftopl + bin/x86_64-darwinlegacy/r-pmpost + +name ptex.x86_64-linux +category Package +revision 58872 +shortdesc x86_64-linux files of ptex +containersize 1460872 +containerchecksum cb321bff636dcbf6c2f049edebb867b79d7066be8da4c719617148cab4dfc6f8db49f328dfa9d7222e7c4f84acc991d2c7faf5ec0f275e459387e1e71b2ffa7b +binfiles arch=x86_64-linux size=1138 + bin/x86_64-linux/eptex + bin/x86_64-linux/makejvf + bin/x86_64-linux/mendex + bin/x86_64-linux/pbibtex + bin/x86_64-linux/pdvitomp + bin/x86_64-linux/pdvitype + bin/x86_64-linux/pmpost + bin/x86_64-linux/ppltotf + bin/x86_64-linux/ptex + bin/x86_64-linux/ptftopl + bin/x86_64-linux/r-pmpost + +name ptex.x86_64-linuxmusl +category Package +revision 58850 +shortdesc x86_64-linuxmusl files of ptex +containersize 1512588 +containerchecksum fc9ec36c772b94a09bec439bbfd2722664005cca3ce1f6fb7bc389485c6df5e10d7681b69d4810260833b4f16235c707eee17678b9b7ad28d948ef4e616f3d03 +binfiles arch=x86_64-linuxmusl size=1211 + bin/x86_64-linuxmusl/eptex + bin/x86_64-linuxmusl/makejvf + bin/x86_64-linuxmusl/mendex + bin/x86_64-linuxmusl/pbibtex + bin/x86_64-linuxmusl/pdvitomp + bin/x86_64-linuxmusl/pdvitype + bin/x86_64-linuxmusl/pmpost + bin/x86_64-linuxmusl/ppltotf + bin/x86_64-linuxmusl/ptex + bin/x86_64-linuxmusl/ptftopl + bin/x86_64-linuxmusl/r-pmpost + +name ptex.x86_64-solaris +category Package +revision 58850 +shortdesc x86_64-solaris files of ptex +containersize 1528460 +containerchecksum 01fd35f5cc7726f69bd1bb11dcfc37dc87719dff7dc55d2e3e4d2c1a4c7d2e6a35ca24f881b611e8467c7c48d28178c3045fff70ea3a383165dbe6604a8a3423 +binfiles arch=x86_64-solaris size=1203 + bin/x86_64-solaris/eptex + bin/x86_64-solaris/makejvf + bin/x86_64-solaris/mendex + bin/x86_64-solaris/pbibtex + bin/x86_64-solaris/pdvitomp + bin/x86_64-solaris/pdvitype + bin/x86_64-solaris/pmpost + bin/x86_64-solaris/ppltotf + bin/x86_64-solaris/ptex + bin/x86_64-solaris/ptftopl + bin/x86_64-solaris/r-pmpost + +name ptex2pdf +category Package +revision 58632 +shortdesc Convert Japanese TeX documents to PDF +longdesc The Lua script provides system-independent support of Japanese +longdesc typesetting engines in TeXworks. As TeXworks typesetting setup +longdesc does not allow for multistep processing, this script runs one +longdesc of the ptex-based programs (ptex, uptex, eptex, platex, +longdesc uplatex) followed by dvipdfmx. +depend ptex2pdf.ARCH +postaction script file=tlpkg/tlpostcode/ptex2pdf-tlpost.pl +containersize 7844 +containerchecksum fce87deb2ee9477d81d9e7b69c2f934f9918c8a299d3e58ae8e9ba95121eaefedb935c1674ecb8bf1a081f6a21f7359e8cd158b0cfbc7faf234bd33925669939 +doccontainersize 8644 +doccontainerchecksum 83328ead3446c41e42687819d9dddd6f19ac0292fdc1ba99eaa9a75ad9e2fad8a05e2377c196d605e9360d383881194d03930d286c9c41706eea839d19d6ee66 +docfiles size=7 + texmf-dist/doc/latex/ptex2pdf/COPYING + texmf-dist/doc/latex/ptex2pdf/README.md details="Readme" +runfiles size=7 + texmf-dist/scripts/ptex2pdf/ptex2pdf.lua + tlpkg/tlpostcode/ptex2pdf-tlpost.pl +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-license gpl2 +catalogue-topics compilation japanese +catalogue-version 20200520.0 + +name ptex2pdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ptex2pdf +containersize 344 +containerchecksum b3ea4d69c64f06e6f9cdf8108183b3f01c894902f1435ffe032797f851769b402b578db4d17a59966ad43ef217b3f2b53db356eca67f381213f74dd22d557212 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ptex2pdf + +name ptex2pdf.amd64-freebsd +category Package +revision 29335 +shortdesc amd64-freebsd files of ptex2pdf +containersize 344 +containerchecksum 7c71fc8591b9245d7a3a73e3ab24d87798a395890e81dbbfcb0a2b90c48081f7599e7334a1adaca691650f938e2793c13b3a210e0c55f52fb46ee3f47914a000 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ptex2pdf + +name ptex2pdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ptex2pdf +containersize 344 +containerchecksum 90c10120378267a4a24ec7a144a3d137bc188b83a84c05933accc341c246a2480e3b0e8d5b269d9c6d450f334ce8b54573a3caa26755fb22c4e5899cd4f6eda5 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ptex2pdf + +name ptex2pdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ptex2pdf +containersize 340 +containerchecksum fe9745e3d77302295c3ac22600e043bb7351db9318195b539e0bb93357b7e5b8be2c314bddc2f95d58f3bea9ea5c01cded525855c027ddbea466aad0fa9dbb19 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ptex2pdf + +name ptex2pdf.i386-cygwin +category Package +revision 29335 +shortdesc i386-cygwin files of ptex2pdf +containersize 340 +containerchecksum 7de67bd2b599ee3ebd56cc11efb8e29da863d2df771a1773e152eff2ba28967c9bbb09ae583483cc787643edecdb4e4d41bc2c24449b02a181c69202fe4d5545 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ptex2pdf + +name ptex2pdf.i386-freebsd +category Package +revision 29335 +shortdesc i386-freebsd files of ptex2pdf +containersize 344 +containerchecksum ef6f4c4e4557062b780c9442ef93a4227c8ab2f3cebb88d184f3aff68090bd28b55acd32b4df65e9c1312703c09f049da915cd6acab21fa00b5988880e2e88c9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ptex2pdf + +name ptex2pdf.i386-linux +category Package +revision 29335 +shortdesc i386-linux files of ptex2pdf +containersize 344 +containerchecksum 64db508ebe9864b499cf77a89a5980a4a5eedc790a2114998bf33b4dc1f050feac304bfbf81ae5695b82cdf69a3a6c0574de103f1bc572acfc5ec4ffc9d31168 +binfiles arch=i386-linux size=1 + bin/i386-linux/ptex2pdf + +name ptex2pdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ptex2pdf +containersize 340 +containerchecksum 05cfcff25846d52989038d72ca1bdd66587e8da5d3879d18e40e9ae0cb2d14aae81349e3a1ca11d304045d5daec7fa6a1f643ce64fa2f6c508cf28c2840dd752 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ptex2pdf + +name ptex2pdf.i386-solaris +category Package +revision 29335 +shortdesc i386-solaris files of ptex2pdf +containersize 344 +containerchecksum 49857e6bec0fe409d5d019b39cf331604590189a2e12535c2804ef45a2f619ccf944e57fb5abacd46edc0ed86bbfa8ded8f6afadc019c20dbb15ca15b2062bce +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ptex2pdf + +name ptex2pdf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ptex2pdf +containersize 344 +containerchecksum b8b50292e4dc3ca7d5d3428706ba757937281320dc6e145ae89b0c0dd6693f8ffad759692cde8673e5d224e67fc9919eca7a64eec239f7fcb027a0db2c40c9a1 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ptex2pdf + +name ptex2pdf.win32 +category Package +revision 29335 +shortdesc win32 files of ptex2pdf +containersize 684 +containerchecksum 8ed203a38c626e8e649458eb9df8af8386f17ff5beff484349ba1a8a2da0b97e50c0f489177eb94c05ee7206eb3d0c5459e88fe0acc5f1f3f54c75653e576a08 +binfiles arch=win32 size=1 + bin/win32/ptex2pdf.exe + +name ptex2pdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ptex2pdf +containersize 344 +containerchecksum d74aa5db027cdce677e91d57aec82344ffafe5b4c6d2a63636c6d0423615f432941a6315ab186004ac7a95706b33776934df430d0a3b4684d0fa3899b3f5a6a2 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ptex2pdf + +name ptex2pdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ptex2pdf +containersize 352 +containerchecksum b16be0f533d2aa29820290af45d374b828be76d7c824ca3bf9a3fbba9023718d3b3a1960563699411397c7c00557099512b3faf29192d1c40f5ef7a0be11d99a +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ptex2pdf + +name ptex2pdf.x86_64-linux +category Package +revision 29335 +shortdesc x86_64-linux files of ptex2pdf +containersize 340 +containerchecksum 1282cac1314071dd59dd0b8c450fc2facf921589647dde23115975b2ccd8fb4dac022176717c17386513d3ff83d87f463a5f4d820cf6ec02d4eb056dd12026e4 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ptex2pdf + +name ptex2pdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ptex2pdf +containersize 348 +containerchecksum 2eaaee2c0216cc00ece6a852a5789f47c32419f2b7bf19fd5a733f3bdeb2d3a669db90fb0a1c0e3f81b45e09e983ce9c584feff9c9d41231623250ed5c32c329 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ptex2pdf + +name ptex2pdf.x86_64-solaris +category Package +revision 29335 +shortdesc x86_64-solaris files of ptex2pdf +containersize 344 +containerchecksum c9f3ad297836871089a66c383b1fcabcf132c3db99eef2c74e91409da1325daeb8873741b86e67bd9c74365402dfd386b364d2e59d4cbd719df4c28751e2db1c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ptex2pdf + +name ptext +category Package +revision 30171 +shortdesc A 'lipsum' for Persian +relocated 1 +longdesc The package provides lipsum-like facilities for the Persian +longdesc language. The source of the filling text is the Persian epic +longdesc "the Shanameh" (100 paragraphs are used.) The package needs to +longdesc be run under XeLaTeX. +containersize 21740 +containerchecksum ceb8844ff23034bf730823349e6251ef0c7f208ef74c3ed61fa212af89a3208e8f9f1b74b7877698d4459047b64376faea647a919b340d306d54de43ee9617a2 +doccontainersize 56200 +doccontainerchecksum 31ec6dea18c99aac831f4f180ccce47781ce98b2a8859bb62019cdffd690a8b803cba66728d1a9805a8a39de9ef43e357be8fb6a16e0602cf67f7f9dc6cb317e +docfiles size=17 + RELOC/doc/xelatex/ptext/README details="Readme" + RELOC/doc/xelatex/ptext/ptext.pdf details="Package documentation (writtent in Persian)" language="fa" + RELOC/doc/xelatex/ptext/ptext.tex +runfiles size=22 + RELOC/tex/xelatex/ptext/ptext.sty +catalogue-ctan /macros/xetex/latex/ptext +catalogue-license lppl1.2 +catalogue-topics persian macro-supp xetex dummy-gen +catalogue-version 1.1 + +name ptolemaicastronomy +category Package +revision 50810 +shortdesc Diagrams of sphere models for variably strict conditionals (Lewis counterfactuals) +relocated 1 +longdesc David K. Lewis (Counterfactuals, Blackwell 1973) introduced a +longdesc sphere semantics for counterfactual conditionals. He jokingly +longdesc referred to the diagrams depicting such sphere models as +longdesc Ptolemaic astronomy, hence the name of this package. The macros +longdesc provided in this package aid in the construction of sphere +longdesc model diagrams in the style of Lewis. The macros all make use +longdesc of TikZ. +containersize 1600 +containerchecksum 58202171aa08b297e2999554d8b6ee43d4c5772e2f28fcf73c11a00ff8476dcdebfaa5352c7d248720feab2ba642947f07362cd9124dbed27e22086123da3de6 +doccontainersize 246244 +doccontainerchecksum 04997eb4bfd5c5e7789b5db02e9c27a9eb4d65e685be1428c5b81199957dff5aca626a76c719d871217ccaa2a6e6eef6c17ed94f4ea161f581b77a22306d61f3 +docfiles size=63 + RELOC/doc/latex/ptolemaicastronomy/README.md details="Readme" + RELOC/doc/latex/ptolemaicastronomy/README.txt + RELOC/doc/latex/ptolemaicastronomy/ptolemaicastronomy.pdf details="Package documentation" +srccontainersize 4856 +srccontainerchecksum 2a2d250d5deff043970037268b6f7400e073da58b1e6fce0d2a6e2b0c77a567dc683f616fd7ba67b659bec3f137349b37c84b808364bf5359392026730af3aae +srcfiles size=5 + RELOC/source/latex/ptolemaicastronomy/ptolemaicastronomy.dtx + RELOC/source/latex/ptolemaicastronomy/ptolemaicastronomy.ins +runfiles size=1 + RELOC/tex/latex/ptolemaicastronomy/ptolemaicastronomy.sty +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-license lppl1.3c +catalogue-topics pgf-tikz logic +catalogue-version 1.0 + +name ptptex +category Package +revision 19440 +shortdesc Macros for 'Progress of Theoretical Physics' +relocated 1 +longdesc The distribution contains the class (which offers an option +longdesc file for preprints), and a template. The class requires the +longdesc cite, overcite and wrapfig packages. +containersize 9492 +containerchecksum a2c31b2e039c198d3c3c84cb58cc0b9326bcf11b4c361c1d5c9b8f5aa4943f14b30e722bc2425a38b69935f4c88c67439747ffd65e0a194f2e5dd54a6448bbde +doccontainersize 192944 +doccontainerchecksum 0e754625fb8507591f21b860901de1b06bcb31f5c0b2fd7df1fa5257c7c611bae4f575f7387362bdd21d826a329a8af3ba00fd30c3bc9d91be7dea5d66e2fdae +docfiles size=64 + RELOC/doc/latex/ptptex/README details="Readme" + RELOC/doc/latex/ptptex/README.TEXLIVE + RELOC/doc/latex/ptptex/manptp.pdf details="Package documentation" + RELOC/doc/latex/ptptex/manptp.tex + RELOC/doc/latex/ptptex/template.tex +runfiles size=12 + RELOC/tex/latex/ptptex/ptp-prep.clo + RELOC/tex/latex/ptptex/ptptex.cls + RELOC/tex/latex/ptptex/wrapft.sty +catalogue-ctan /macros/latex/contrib/ptptex +catalogue-license lppl +catalogue-topics journalpub physics +catalogue-version 0.91 + +name punk +category Package +revision 27388 +shortdesc Donald Knuth's punk font +relocated 1 +longdesc A response to the assertion in a lecture that "typography tends +longdesc to lag behind other stylistic changes by about 10 years". Knuth +longdesc felt it was (in 1988) time to design a replacement for his +longdesc designs of the 1970s, and came up with this font! The fonts are +longdesc distributed as Metafont source. The package offers LaTeX +longdesc support by Rohit Grover, from an original by Sebastian Rahtz, +longdesc which is slightly odd in claiming that the fonts are +longdesc T1-encoded. A (possibly) more rational support package is to be +longdesc found in punk-latex +containersize 6052 +containerchecksum a442a536dbdaff9dfa9d1cdfe1a084d0f4e4e28174a424cf59a1da94013e115b9fc6294ea3362c85cb770028c62b21f7f7fa9817dbd68787498199ce585589dc +doccontainersize 1044 +doccontainerchecksum 33842d1fb46a78654d7351ccf88b40b87e6e03d83598f661ac21ee99d45156dd8b37a652c5c8e55506f95fc57b83e7f62f6c90c3fea5443dc5bb6590302b3e7d +docfiles size=2 + RELOC/doc/fonts/punk/punk.sty + RELOC/doc/fonts/punk/punktest.tex +runfiles size=20 + RELOC/fonts/source/public/punk/punk.mf + RELOC/fonts/source/public/punk/punk10.mf + RELOC/fonts/source/public/punk/punk12.mf + RELOC/fonts/source/public/punk/punk20.mf + RELOC/fonts/source/public/punk/punka.mf + RELOC/fonts/source/public/punk/punkae.mf + RELOC/fonts/source/public/punk/punkbx20.mf + RELOC/fonts/source/public/punk/punkd.mf + RELOC/fonts/source/public/punk/punkg.mf + RELOC/fonts/source/public/punk/punkl.mf + RELOC/fonts/source/public/punk/punkp.mf + RELOC/fonts/source/public/punk/punksl.mf + RELOC/fonts/source/public/punk/punksl20.mf + RELOC/fonts/tfm/public/punk/punk10.tfm + RELOC/fonts/tfm/public/punk/punk12.tfm + RELOC/fonts/tfm/public/punk/punk20.tfm + RELOC/fonts/tfm/public/punk/punkbx20.tfm + RELOC/fonts/tfm/public/punk/punksl20.tfm +catalogue-ctan /fonts/punk +catalogue-license knuth +catalogue-topics font font-mf font-novelty + +name punk-latex +category Package +revision 27389 +shortdesc LaTeX support for punk fonts +relocated 1 +longdesc The package and .fd file provide support for Knuth's punk +longdesc fonts. That bundle also offers support within LaTeX; the +longdesc present package is to be preferred. +containersize 888 +containerchecksum e44098c082465aa620d436a41306c9a1f36075c2612aa045e7c958151fc62e9a740584d9a9dd94b0c5631c00d406762a8e35f672931cccd3c09fe95850f3a2ba +doccontainersize 150276 +doccontainerchecksum 36a3341d2dca08941a923a1f407b422e96438e79ba5e3911a89f13d48317ec5aa0f5afccc7539b0882996fb872b38bc3653f1e5b088805e5ef7c9d96a4546d01 +docfiles size=41 + RELOC/doc/latex/punk-latex/README details="Readme" + RELOC/doc/latex/punk-latex/punk.pdf details="Package documentation" + RELOC/doc/latex/punk-latex/punk.tex +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-license gpl +catalogue-topics font-supp +catalogue-version 1.1 + +name punknova +category Package +revision 24649 +shortdesc OpenType version of Knuth's Punk font +relocated 1 +longdesc The font was generated from a MetaPost version of the sources +longdesc of the 'original' punk font. Knuth's original fonts generated +longdesc different shapes at random. This isn't actually possible in an +longdesc OpenType font; rather, the font contains several variants of +longdesc each glyph, and uses the OpenType randomize function to select +longdesc a variant for each invocation. +containersize 814008 +containerchecksum bcb37b02258ba406e8ef3965619c99193c08a4e1d11f771b3c6b06716eac16134be81585220a581176d9e8b4d7f488730ada3b5963238ff982be400cbb41d888 +doccontainersize 141900 +doccontainerchecksum 64df58c8996563a447ed7a012c6dd8f5248c8a7db06089d776e8ce64d516b4a0c4bf9042f587c996c7ab61582bba919551d352c9ca75f8696bcac5ad0e34866c +docfiles size=44 + RELOC/doc/fonts/punknova/Makefile + RELOC/doc/fonts/punknova/NEWS + RELOC/doc/fonts/punknova/README details="Readme" + RELOC/doc/fonts/punknova/documentation/documentation-sources/sample.tex + RELOC/doc/fonts/punknova/documentation/sample.pdf details="Text sample" + RELOC/doc/fonts/punknova/source/punkfont-bold.mp + RELOC/doc/fonts/punknova/source/punkfont-boldslanted.mp + RELOC/doc/fonts/punknova/source/punkfont-regular.mp + RELOC/doc/fonts/punknova/source/punkfont-slanted.mp + RELOC/doc/fonts/punknova/tools/build.py +runfiles size=424 + RELOC/fonts/opentype/public/punknova/punknova-bold.otf + RELOC/fonts/opentype/public/punknova/punknova-boldslanted.otf + RELOC/fonts/opentype/public/punknova/punknova-regular.otf + RELOC/fonts/opentype/public/punknova/punknova-slanted.otf +catalogue-ctan /fonts/punknova +catalogue-license other-free +catalogue-topics font font-otf font-novelty +catalogue-version 1.003 + +name purifyeps +category Package +revision 29725 +shortdesc Make EPS work with both LaTeX/dvips and pdfLaTeX +longdesc While pdfLaTeX has a number of nice features, its primary +longdesc shortcoming relative to standard LaTeX+dvips is that it is +longdesc unable to read ordinary Encapsulated PostScript (EPS) files, +longdesc the most common graphics format in the LaTeX world. Purifyeps +longdesc converts EPS files into a 'purified' form that can be read by +longdesc both LaTeX+dvips and pdfLaTeX. The trick is that the standard +longdesc LaTeX2e graphics packages can parse MetaPost-produced EPS +longdesc directly. Hence, purifyeps need only convert an arbitrary EPS +longdesc file into the same stylized format that MetaPost outputs. +depend purifyeps.ARCH +containersize 6212 +containerchecksum 79d99ef7ebc462c7c65d03f23cc85b9f136df2b0c9d647fc0672584fa57bfb7447f6db0e6d6b11bfc738cfe8c8658f45fe0b4059ff00f355e4b21d44f0d4102a +doccontainersize 15056 +doccontainerchecksum 3f9fadfb35596835b250cab98b0d1e3c6d537cfac5878e0b9788aeb5cc7ef455ce3d44f7d0f03e9002796a162d374f6aa8f9bce5bd4c3f0e8937040de0b82a8d +docfiles size=9 + texmf-dist/doc/man/man1/purifyeps.1 + texmf-dist/doc/man/man1/purifyeps.man1.pdf + texmf-dist/doc/support/purifyeps/README details="Package README" +runfiles size=5 + texmf-dist/scripts/purifyeps/purifyeps +catalogue-ctan /support/purifyeps +catalogue-license lppl +catalogue-topics font-proc +catalogue-version 1.1 + +name purifyeps.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of purifyeps +containersize 340 +containerchecksum 509c4b1caca6490ffc6f451efe5e6d02290d4b85345f20cbd19259475436c65b271940aadb92dada59b739a6e475cabbf327ae15272ee5c0e14e2de26713a755 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/purifyeps + +name purifyeps.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of purifyeps +containersize 340 +containerchecksum 5010963a6a0647d2979ab75c5ad487b1e59ffc91a5ce9d017e9361c2994fe10db17aa1559e34de1adf2d9b8396e8889805c58d06bd6a12faafe17160583dea54 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/purifyeps + +name purifyeps.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of purifyeps +containersize 340 +containerchecksum e2fb7bcf1ae668bdb9f0891bc0d11949115107bc9f64eff1ba16aa81f3925dfde1f458f4e8c2da3fcb87290111338d5a689a219ec129b822a662b7ea917c1250 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/purifyeps + +name purifyeps.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of purifyeps +containersize 340 +containerchecksum 23da41bf7f83f5387d2a11b2ac85ef2f9c51c601157a6d5fdb874f7d33d5227cdad036b0ab0ad077e71a79dc27827bbe1b30cf9e4595f19279361996a3bbb9f4 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/purifyeps + +name purifyeps.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of purifyeps +containersize 336 +containerchecksum fb24b387e844ba57123bf99d419dadedea2bd248d8c4e5531f4671b1f67ac1b04e26b3d69c9c8392ead5bd53263d5fc07cbc7dc9518247aa23acfbcbbfbe560f +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/purifyeps + +name purifyeps.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of purifyeps +containersize 340 +containerchecksum d308e90a39c107da0b00387f2ce7edb4f25c0fc698a38e2da797facbcb31f4e2de675b5c74e15433c292731ff41515966f9a49378e1c34899f00dabf4f44b2a4 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/purifyeps + +name purifyeps.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of purifyeps +containersize 340 +containerchecksum 0724a986fbf380f7537e7686fdfded7cb2dc18ef6332f91e8808502ec7441642c80c9d770b397f3058bf8ed929ed146e2c23f2ea02e753acef108505639814f3 +binfiles arch=i386-linux size=1 + bin/i386-linux/purifyeps + +name purifyeps.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of purifyeps +containersize 340 +containerchecksum 7fb13dfe2d237f43510972484d17a38814f7456f429f508bab2bdc36a5bf6c59429acade937f8a7347636bff4b6f3b3de48bc80f398a4f95484fed5b83f34185 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/purifyeps + +name purifyeps.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of purifyeps +containersize 340 +containerchecksum 3cfa6334437a08230a22be004db34b5f1a617dc2d91489c4bc74b9f73b5cdb9778b95a7de5246b9603f778094e9c6609fa6433a67d5a96de9d1ee88756d45272 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/purifyeps + +name purifyeps.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of purifyeps +containersize 340 +containerchecksum 9df760b6dd8f711ba8f2180c51c1f51430b26a5c081d30cd6333f74eec68bd996cfd83c5fafa1fe337c8f1f5901f6cf0afd7046c3e7024c549cf3d2be3f0cbbf +binfiles arch=universal-darwin size=1 + bin/universal-darwin/purifyeps + +name purifyeps.win32 +category Package +revision 15404 +shortdesc win32 files of purifyeps +containersize 684 +containerchecksum 3388691c325c0640d0e040211428c3dae7a66bd48897ed19be413dfabe20552b71bb082cdd26e1858924cb4ab15faef8469881430389d919306d0f51e0f4db1c +binfiles arch=win32 size=1 + bin/win32/purifyeps.exe + +name purifyeps.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of purifyeps +containersize 340 +containerchecksum 2d738161de4d438cc098dbc2b12d3d79efa2abf34fe4562148c2340a3b5b7734e6c5ceb164267886e48dc72bc61f41796bf491e639ac221e95b435e8b957a9b9 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/purifyeps + +name purifyeps.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of purifyeps +containersize 348 +containerchecksum 0c6fad7efff4d74981b01186318d0d56f26dd63818627f0fe11d45b323d76af79f6bf41b4ebb329d0b5942cc1c9a2225cf8b7b223e94d0fcb9787faed7a0636c +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/purifyeps + +name purifyeps.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of purifyeps +containersize 340 +containerchecksum 17460a14651575c4e15ba1e1fd705386e68e4acab85248614f8ecebfb0de71ea2ed140b09867f94d1989f6bd1ba74ed9f48d5c5fcd09d17f2119a24757aa5c16 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/purifyeps + +name purifyeps.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of purifyeps +containersize 344 +containerchecksum 598609888a3b6b259e1bd3fb6dbc1d21d3409c8af41d4a419107c85a42f197323b96b4b36d1b95398ef4a8ed0ab3286716e5887b9db279e1b5457a806d2120e2 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/purifyeps + +name purifyeps.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of purifyeps +containersize 340 +containerchecksum 11471640ae0c99563a12f1dfcb8a5ca00e4944d878dcf4c6b6041007b498f4bda76f9e0e11fd68ed5d7157fb198497bf5979f3c60c382163309b15e2587f31b6 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/purifyeps + +name puyotikz +category Package +revision 57254 +shortdesc Quickly typeset board states of Puyo Puyo games +relocated 1 +longdesc This LaTeX package permits to quickly typeset board states of +longdesc Puyo Puyo games. It supports large and small boards with +longdesc arbitrary shape, hidden rows, current and next puyos, labels +longdesc and move planning markers. The package requires Python3 in +longdesc support of scripts driven by PythonTeX. +containersize 3968 +containerchecksum 635d17a49a905c99e895df3e777eed02f4c5e91a38d083e57890cd13c927bc68098d5f0864d6e32b2585d288091d15e5cc1303e04e26b2267d7e78a07f77ea0d +doccontainersize 201144 +doccontainerchecksum 64750274694fa8c7fc792d6f5ba19ab756366eb87668469aa6da9df74f4f7bc571772cc6a406f7c3453f306f36516aca9c2444ce126ff4968d1cc49d2c4585db +docfiles size=55 + RELOC/doc/latex/puyotikz/LICENSE + RELOC/doc/latex/puyotikz/README.md details="Readme" + RELOC/doc/latex/puyotikz/puyotikz.pdf details="Package documentation" + RELOC/doc/latex/puyotikz/puyotikz.tex +runfiles size=4 + RELOC/scripts/puyotikz/puyotikz.py + RELOC/tex/latex/puyotikz/puyotikz.sty +catalogue-contact-repository https://github.com/amosborne/puyotikz +catalogue-ctan /graphics/pgf/contrib/puyotikz +catalogue-license mit +catalogue-topics graphics pgf-tikz games +catalogue-version 1.0.1 + +name pwebmac +category Package +revision 58478 +shortdesc Consolidated WEB macros for DVI and PDF output +relocated 1 +longdesc The original WEB system by Donald Knuth has the macros +longdesc webmac.tex that produce DVI output only; for historic reasons, +longdesc it will never be modified (apart from catastrophic errors). Han +longdesc The Thanh has modified these macros in his pdfwebmac.tex for +longdesc PDF output (only) with pdfTeX. Jonathan Kew's XeTeX has similar +longdesc macros xewebmac.tex by Khaled Hosny that modify webmac.tex for +longdesc PDF output; these macros can only be used with a specific "TeX +longdesc engine" each. The present pwebmac package integrates these +longdesc three WEB macro files similar to cwebmac.tex in Silvio Levy's +longdesc and Don Knuth's CWEB system, so pwebmac.tex can be used with +longdesc "plain TeX", pdfTeX, and XeTeX alike. Its initial application +longdesc is the production of PDF files for all major WEB programs for +longdesc "TeX and friends" as distributed in TeX Live. For this purpose, +longdesc the shell script makeall was whipped together; it provides +longdesc various commandline options and works around several "quirks" +longdesc in the WEB sources. WEB programmers who want to use pwebmac.tex +longdesc instead of the default webmac.tex in their programs have to +longdesc change the first line in the TeX file created by weave. From +longdesc there, all depends on the "TeX engine" you use. +containersize 7788 +containerchecksum 5b8b6825d84e6addce3491bdaaf30a6127d0becd26956066dbb2dc482d4942087b9423affe02654f28d5f7b1bd0e7743fd731ac2201b394630bf089deae8de59 +doccontainersize 9048 +doccontainerchecksum 6078a4a0263f3c342c9814f3ac8d5028f6d73871e89c64859e86a7c694a5a6392873e592f5daba7c6c2b89c3eaf6bdf1a745618999bf448edc8007d3d5a541a9 +docfiles size=10 + RELOC/doc/plain/pwebmac/README.md details="Readme" + RELOC/doc/plain/pwebmac/Xerrorlog.tex + RELOC/doc/plain/pwebmac/index.md + RELOC/doc/plain/pwebmac/makeall + RELOC/doc/plain/pwebmac/trapman.ch + RELOC/doc/plain/pwebmac/webman.ch +runfiles size=5 + RELOC/tex/plain/pwebmac/pwebmac.tex +catalogue-contact-repository https://github.com/ascherer/web +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /web/pwebmac +catalogue-license pd +catalogue-topics litprog +catalogue-version 4.6.2 + +name pxbase +category Package +revision 44756 +shortdesc Tools for use with (u)pLaTeX +relocated 1 +longdesc The main purpose of this package is to provide auxiliary +longdesc functions which are utilized by other packages created by the +longdesc same author. It also provides a few user commands to assist in +longdesc creating Japanese documents using (u)pLaTeX. +containersize 11640 +containerchecksum e567378515039b55eab0a12ca645ba5ff17c2dbaf56309c3273beb0d05c7e6e2dcf3d7d22091907df5636451df8e91d09673607918dd9ac091908cb6ef1e4de1 +doccontainersize 160380 +doccontainerchecksum d6d87123dce0a2afe3380cf32fffc8954e30d22e9822d0ff89500bea6a455c70a6699576265cebad29ba33c0fa5e7b63a40f26f7579d1fe9dc0cbcb528c45d00 +docfiles size=47 + RELOC/doc/platex/pxbase/LICENSE + RELOC/doc/platex/pxbase/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/platex/pxbase/README.md details="Readme" + RELOC/doc/platex/pxbase/pxbabel.pdf + RELOC/doc/platex/pxbase/pxbabel.tex +runfiles size=16 + RELOC/tex/platex/pxbase/pxbabel.sty + RELOC/tex/platex/pxbase/pxbase.def + RELOC/tex/platex/pxbase/pxbase.sty + RELOC/tex/platex/pxbase/pxbasenc.def + RELOC/tex/platex/pxbase/pxbsjc.def + RELOC/tex/platex/pxbase/pxbsjc1.def + RELOC/tex/platex/pxbase/pxjsfenc.def + RELOC/tex/platex/pxbase/upkcat.sty +catalogue-contact-home https://github.com/zr-tex8r/PXbase +catalogue-ctan /language/japanese/pxbase +catalogue-license mit +catalogue-topics japanese +catalogue-version 1.1b + +name pxchfon +category Package +revision 56537 +shortdesc Japanese font setup for pLaTeX and upLaTeX +relocated 1 +longdesc This package enables users to declare in their document which +longdesc physical fonts should be used for the standard Japanese +longdesc (logical) fonts of pLaTeX and upLaTeX. Font setup is realized +longdesc by changing the font mapping of dvipdfmx, and thus users can +longdesc use any (monospaced) physical fonts they like, once they +longdesc properly install this package, without creating helper files +longdesc for each new font. This package also supports setup for the +longdesc fonts used in the japanese-otf package. System requirements: +longdesc TeX format: LaTeX. TeX engine: pTeX or upTeX. DVIware: +longdesc dvipdfmx. Prerequisite packages: atbegshi. +containersize 19104 +containerchecksum 0883ab31076052a9f970e8a2704d6fe69e4cc4d98e5e58528b48393c4878177cc206baa454539a6f228252c82199a409333ba9dc250b6c79d429e00f8da26cc1 +doccontainersize 312660 +doccontainerchecksum 4bfdcbf0eec187e6726978dfc55dab1217f00a06063d43fdcd6ba640739bedc72fcaa9f5d51f9471173f6d55085076155e7dd2f549739fd15cccf74bb03206f8 +docfiles size=101 + RELOC/doc/platex/pxchfon/LICENSE + RELOC/doc/platex/pxchfon/README-ja.md details="Readme" language="ja" + RELOC/doc/platex/pxchfon/README.md details="Readme" + RELOC/doc/platex/pxchfon/pxchfon.pdf details="Package documentation" language="ja" + RELOC/doc/platex/pxchfon/pxchfon.tex + RELOC/doc/platex/pxchfon/sample-2000jis.pdf + RELOC/doc/platex/pxchfon/sample-2000jis.tex + RELOC/doc/platex/pxchfon/sample-2004jis.pdf + RELOC/doc/platex/pxchfon/sample-2004jis.tex + RELOC/doc/platex/pxchfon/sample-pxchfon.pdf + RELOC/doc/platex/pxchfon/sample-pxchfon.tex +runfiles size=106 + RELOC/fonts/sfd/pxchfon/PXcjk0.sfd + RELOC/fonts/tfm/public/pxchfon/cfjam-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjam-r-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjam-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjam-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-rz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-bz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-l-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-l-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-l-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-lz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-rz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-bz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-rz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-x-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-x-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-x-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-xz-l0j.tfm + RELOC/fonts/vf/public/pxchfon/cfjam-r-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjam-r-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjam-r-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjam-r-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-ts1.vf + RELOC/tex/platex/pxchfon/pxchfon.sty + RELOC/tex/platex/pxchfon/pxchfon0.def + RELOC/tex/platex/pxchfon/pxjafont.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXchfon +catalogue-ctan /language/japanese/pxchfon +catalogue-license mit +catalogue-topics japanese font-supp +catalogue-version 1.7e + +name pxcjkcat +category Package +revision 47266 +shortdesc LaTeX interface for the CJK category codes of upTeX +relocated 1 +longdesc The package provides management of the CJK category code +longdesc ('kcatcode'> table of the upTeX extended TeX engine. Package +longdesc options are available for tailored use in the cases of +longdesc documents that are principally written in Japanese, or +longdesc principally written in English or other Western languages. +containersize 7152 +containerchecksum 59923115da33e18e2b29a10f664063755b42937ce601ed46103ec8edf16944056180a1aacdb296aceb5206d3dd453c0eec6f84f5b689ad68736c88479f928214 +doccontainersize 195556 +doccontainerchecksum 3c822359a68800a29fbc7ceda3293b6be902d9bc61f277003e6e20404c32e9bb6b34638a4bc11aeb943c4bdf6e361386972251b9b015fbe68ead824e5fdc67d6 +docfiles size=59 + RELOC/doc/latex/pxcjkcat/LICENSE + RELOC/doc/latex/pxcjkcat/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/latex/pxcjkcat/README.md details="Readme (English)" language="en" + RELOC/doc/latex/pxcjkcat/pxcjkcat.pdf + RELOC/doc/latex/pxcjkcat/pxcjkcat.tex +runfiles size=7 + RELOC/tex/latex/pxcjkcat/pxcjkcat.sty +catalogue-ctan /macros/latex/contrib/pxcjkcat +catalogue-license mit +catalogue-topics japanese multilingual +catalogue-version 1.1 + +name pxfonts +category Package +revision 15878 +shortdesc Palatino-like fonts in support of mathematics +relocated 1 +longdesc Pxfonts supplies virtual text roman fonts using Adobe Palatino +longdesc (or URWPalladioL) with some modified and additional text +longdesc symbols in the OT1, T1, and TS1 encodings; maths alphabets +longdesc using Palatino/Palladio; maths fonts providing all the symbols +longdesc of the Computer Modern and AMS fonts, including all the Greek +longdesc capital letters from CMR; and additional maths fonts of various +longdesc other symbols. The set is complemented by a sans-serif set of +longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set +longdesc derived from the parallel TX font set. All the fonts are in +longdesc Type 1 format (AFM and PFB files), and are supported by TeX +longdesc metrics (VF and TFM files) and macros for use with LaTeX. +execute addMap pxfonts.map +containersize 459980 +containerchecksum 3b50d3f04c00cd080495c71d9387fe9c810ade7d83ead1178d661a618374a3a67c0fc70ae2a809d2b91db4afaf352b1596a588f6998a4eda220a6f181390b6d1 +doccontainersize 421672 +doccontainerchecksum 71898d307cabff64078bbb98bee9417c79504fd56f1cfc1427b9e4ccc9448b5e2e8436fa085a63d6fa6601e591673ef52eb2225ddfad5e34943456a2239206a5 +docfiles size=152 + RELOC/doc/fonts/pxfonts/00bug_fix.txt + RELOC/doc/fonts/pxfonts/COPYRIGHT + RELOC/doc/fonts/pxfonts/pxfontsdoc.pdf details="Package documentation (Letter paper format)" + RELOC/doc/fonts/pxfonts/pxfontsdoc.tex + RELOC/doc/fonts/pxfonts/pxfontsdocA4.pdf details="Package documentation (A4 paper format" + RELOC/doc/fonts/pxfonts/pxfontsdocA4.tex +runfiles size=305 + RELOC/fonts/afm/public/pxfonts/pxbex.afm + RELOC/fonts/afm/public/pxfonts/pxbexa.afm + RELOC/fonts/afm/public/pxfonts/pxbmia.afm + RELOC/fonts/afm/public/pxfonts/pxbsy.afm + RELOC/fonts/afm/public/pxfonts/pxbsya.afm + RELOC/fonts/afm/public/pxfonts/pxbsyb.afm + RELOC/fonts/afm/public/pxfonts/pxbsyc.afm + RELOC/fonts/afm/public/pxfonts/pxex.afm + RELOC/fonts/afm/public/pxfonts/pxexa.afm + RELOC/fonts/afm/public/pxfonts/pxmia.afm + RELOC/fonts/afm/public/pxfonts/pxsy.afm + RELOC/fonts/afm/public/pxfonts/pxsya.afm + RELOC/fonts/afm/public/pxfonts/pxsyb.afm + RELOC/fonts/afm/public/pxfonts/pxsyc.afm + RELOC/fonts/afm/public/pxfonts/rpcxb.afm + RELOC/fonts/afm/public/pxfonts/rpcxbi.afm + RELOC/fonts/afm/public/pxfonts/rpcxi.afm + RELOC/fonts/afm/public/pxfonts/rpcxr.afm + RELOC/fonts/afm/public/pxfonts/rpxb.afm + RELOC/fonts/afm/public/pxfonts/rpxbi.afm + RELOC/fonts/afm/public/pxfonts/rpxbmi.afm + RELOC/fonts/afm/public/pxfonts/rpxbsc.afm + RELOC/fonts/afm/public/pxfonts/rpxi.afm + RELOC/fonts/afm/public/pxfonts/rpxmi.afm + RELOC/fonts/afm/public/pxfonts/rpxr.afm + RELOC/fonts/afm/public/pxfonts/rpxsc.afm + RELOC/fonts/map/dvips/pxfonts/pxfonts.map + RELOC/fonts/map/dvips/pxfonts/pxr.map + RELOC/fonts/map/dvips/pxfonts/pxr1.map + RELOC/fonts/map/dvips/pxfonts/pxr2.map + RELOC/fonts/map/dvips/pxfonts/pxr3.map + RELOC/fonts/tfm/public/pxfonts/p1xb.tfm + RELOC/fonts/tfm/public/pxfonts/p1xbi.tfm + RELOC/fonts/tfm/public/pxfonts/p1xbsc.tfm + RELOC/fonts/tfm/public/pxfonts/p1xbsl.tfm + RELOC/fonts/tfm/public/pxfonts/p1xi.tfm + RELOC/fonts/tfm/public/pxfonts/p1xr.tfm + RELOC/fonts/tfm/public/pxfonts/p1xsc.tfm + RELOC/fonts/tfm/public/pxfonts/p1xsl.tfm + RELOC/fonts/tfm/public/pxfonts/pcxb.tfm + RELOC/fonts/tfm/public/pxfonts/pcxbi.tfm + RELOC/fonts/tfm/public/pxfonts/pcxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/pcxi.tfm + RELOC/fonts/tfm/public/pxfonts/pcxr.tfm + RELOC/fonts/tfm/public/pxfonts/pcxsl.tfm + RELOC/fonts/tfm/public/pxfonts/pxb.tfm + RELOC/fonts/tfm/public/pxfonts/pxbex.tfm + RELOC/fonts/tfm/public/pxfonts/pxbexa.tfm + RELOC/fonts/tfm/public/pxfonts/pxbi.tfm + RELOC/fonts/tfm/public/pxfonts/pxbmi.tfm + RELOC/fonts/tfm/public/pxfonts/pxbmi1.tfm + RELOC/fonts/tfm/public/pxfonts/pxbmia.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsc.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsy.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsya.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsyb.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsyc.tfm + RELOC/fonts/tfm/public/pxfonts/pxex.tfm + RELOC/fonts/tfm/public/pxfonts/pxexa.tfm + RELOC/fonts/tfm/public/pxfonts/pxi.tfm + RELOC/fonts/tfm/public/pxfonts/pxmi.tfm + RELOC/fonts/tfm/public/pxfonts/pxmi1.tfm + RELOC/fonts/tfm/public/pxfonts/pxmia.tfm + RELOC/fonts/tfm/public/pxfonts/pxr.tfm + RELOC/fonts/tfm/public/pxfonts/pxsc.tfm + RELOC/fonts/tfm/public/pxfonts/pxsl.tfm + RELOC/fonts/tfm/public/pxfonts/pxsy.tfm + RELOC/fonts/tfm/public/pxfonts/pxsya.tfm + RELOC/fonts/tfm/public/pxfonts/pxsyb.tfm + RELOC/fonts/tfm/public/pxfonts/pxsyc.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxb.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxbi.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxi.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxr.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxsl.tfm + RELOC/fonts/tfm/public/pxfonts/rpxb.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbmi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbsc.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/rpxi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxmi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplb.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplbi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplbo.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplr.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplri.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplro.tfm + RELOC/fonts/tfm/public/pxfonts/rpxr.tfm + RELOC/fonts/tfm/public/pxfonts/rpxsc.tfm + RELOC/fonts/tfm/public/pxfonts/rpxsl.tfm + RELOC/fonts/type1/public/pxfonts/pxbex.pfb + RELOC/fonts/type1/public/pxfonts/pxbexa.pfb + RELOC/fonts/type1/public/pxfonts/pxbmia.pfb + RELOC/fonts/type1/public/pxfonts/pxbsy.pfb + RELOC/fonts/type1/public/pxfonts/pxbsya.pfb + RELOC/fonts/type1/public/pxfonts/pxbsyb.pfb + RELOC/fonts/type1/public/pxfonts/pxbsyc.pfb + RELOC/fonts/type1/public/pxfonts/pxex.pfb + RELOC/fonts/type1/public/pxfonts/pxexa.pfb + RELOC/fonts/type1/public/pxfonts/pxmia.pfb + RELOC/fonts/type1/public/pxfonts/pxsy.pfb + RELOC/fonts/type1/public/pxfonts/pxsya.pfb + RELOC/fonts/type1/public/pxfonts/pxsyb.pfb + RELOC/fonts/type1/public/pxfonts/pxsyc.pfb + RELOC/fonts/type1/public/pxfonts/rpcxb.pfb + RELOC/fonts/type1/public/pxfonts/rpcxbi.pfb + RELOC/fonts/type1/public/pxfonts/rpcxi.pfb + RELOC/fonts/type1/public/pxfonts/rpcxr.pfb + RELOC/fonts/type1/public/pxfonts/rpxb.pfb + RELOC/fonts/type1/public/pxfonts/rpxbi.pfb + RELOC/fonts/type1/public/pxfonts/rpxbmi.pfb + RELOC/fonts/type1/public/pxfonts/rpxbsc.pfb + RELOC/fonts/type1/public/pxfonts/rpxi.pfb + RELOC/fonts/type1/public/pxfonts/rpxmi.pfb + RELOC/fonts/type1/public/pxfonts/rpxr.pfb + RELOC/fonts/type1/public/pxfonts/rpxsc.pfb + RELOC/fonts/vf/public/pxfonts/p1xb.vf + RELOC/fonts/vf/public/pxfonts/p1xbi.vf + RELOC/fonts/vf/public/pxfonts/p1xbsc.vf + RELOC/fonts/vf/public/pxfonts/p1xbsl.vf + RELOC/fonts/vf/public/pxfonts/p1xi.vf + RELOC/fonts/vf/public/pxfonts/p1xr.vf + RELOC/fonts/vf/public/pxfonts/p1xsc.vf + RELOC/fonts/vf/public/pxfonts/p1xsl.vf + RELOC/fonts/vf/public/pxfonts/pcxb.vf + RELOC/fonts/vf/public/pxfonts/pcxbi.vf + RELOC/fonts/vf/public/pxfonts/pcxbsl.vf + RELOC/fonts/vf/public/pxfonts/pcxi.vf + RELOC/fonts/vf/public/pxfonts/pcxr.vf + RELOC/fonts/vf/public/pxfonts/pcxsl.vf + RELOC/fonts/vf/public/pxfonts/pxb.vf + RELOC/fonts/vf/public/pxfonts/pxbi.vf + RELOC/fonts/vf/public/pxfonts/pxbmi.vf + RELOC/fonts/vf/public/pxfonts/pxbmi1.vf + RELOC/fonts/vf/public/pxfonts/pxbsc.vf + RELOC/fonts/vf/public/pxfonts/pxbsl.vf + RELOC/fonts/vf/public/pxfonts/pxi.vf + RELOC/fonts/vf/public/pxfonts/pxmi.vf + RELOC/fonts/vf/public/pxfonts/pxmi1.vf + RELOC/fonts/vf/public/pxfonts/pxr.vf + RELOC/fonts/vf/public/pxfonts/pxsc.vf + RELOC/fonts/vf/public/pxfonts/pxsl.vf + RELOC/tex/latex/pxfonts/omlpxmi.fd + RELOC/tex/latex/pxfonts/omlpxr.fd + RELOC/tex/latex/pxfonts/omspxr.fd + RELOC/tex/latex/pxfonts/omspxsy.fd + RELOC/tex/latex/pxfonts/omxpxex.fd + RELOC/tex/latex/pxfonts/ot1pxr.fd + RELOC/tex/latex/pxfonts/ot1pxss.fd + RELOC/tex/latex/pxfonts/ot1pxtt.fd + RELOC/tex/latex/pxfonts/pxfonts.sty + RELOC/tex/latex/pxfonts/t1pxr.fd + RELOC/tex/latex/pxfonts/t1pxss.fd + RELOC/tex/latex/pxfonts/t1pxtt.fd + RELOC/tex/latex/pxfonts/ts1pxr.fd + RELOC/tex/latex/pxfonts/ts1pxss.fd + RELOC/tex/latex/pxfonts/ts1pxtt.fd + RELOC/tex/latex/pxfonts/upxexa.fd + RELOC/tex/latex/pxfonts/upxmia.fd + RELOC/tex/latex/pxfonts/upxr.fd + RELOC/tex/latex/pxfonts/upxss.fd + RELOC/tex/latex/pxfonts/upxsya.fd + RELOC/tex/latex/pxfonts/upxsyb.fd + RELOC/tex/latex/pxfonts/upxsyc.fd + RELOC/tex/latex/pxfonts/upxtt.fd +catalogue-also mathpazo +catalogue-ctan /fonts/pxfonts +catalogue-license gpl +catalogue-topics font font-type1 font-maths font-symbol-maths + +name pxgreeks +category Package +revision 21838 +shortdesc Shape selection for PX fonts Greek letters +relocated 1 +longdesc The package allows LaTeX maths users of the PX fonts to select +longdesc the shapes (italic or upright) for the Greek lowercase and +longdesc uppercase letters. Once the shapes for lowercase and uppercase +longdesc have been selected via a package option, the \other prefix +longdesc (e.g., \otheralpha) allows using the alternate glyph (as in the +longdesc fourier package). The pxgreeks package does not constrain the +longdesc text font that may be used in the document. +containersize 2120 +containerchecksum d3f8ff3c975643d74dd92e749397d01f8d3fd0087a838271a491791fa4bb2d65c852ff5989f79952d40547a601c97fe0274ab4407a8e73aa047221934b9b2e9d +doccontainersize 56340 +doccontainerchecksum 22239223646ea121422016119b6d0edce32d002bf361d096c173857b36ce324ebe2e4107bc0eae650b50d0e94775c84f480768246ee65f975ad5a24af0335158 +docfiles size=18 + RELOC/doc/latex/pxgreeks/README details="Readme" + RELOC/doc/latex/pxgreeks/pxgreeks.pdf details="Package documentation" +srccontainersize 4644 +srccontainerchecksum 9924c5b5a60d381efc41f77f9b5224a12a158fd7de6551a17b1d32eebb6ca6e80a7686648a81774398c4e25fef759612c652fff983a635f4cf56c5bbfb52858d +srcfiles size=4 + RELOC/source/latex/pxgreeks/pxgreeks.dtx + RELOC/source/latex/pxgreeks/pxgreeks.ins +runfiles size=2 + RELOC/tex/latex/pxgreeks/pxgreeks.sty +catalogue-ctan /macros/latex/contrib/pxgreeks +catalogue-license lppl1.3 +catalogue-topics font-supp-maths +catalogue-version 1.0 + +name pxjahyper +category Package +revision 57950 +shortdesc Hyperref support for pLaTeX +relocated 1 +longdesc This package adjusts the behavior of hyperref on (u)pLaTeX so +longdesc that authors can properly create PDF documents that contain +longdesc document information in Japanese. +containersize 14948 +containerchecksum 42b0383d98741bf3cbce1267b4ab4e32d48039b7497e87587f3adefc2da5e7316587e5b138758f0a6816f49588aa774bc4754f9509f7211d7ee3497c8f178324 +doccontainersize 121608 +doccontainerchecksum 00d954e31c1ad90f2953f9565d24112a8b108ed1d2ed43304813b36c6c3c0c05c10d44d02dd514f4cac055ae45889db8ae91187ace305870eee8266aa48c28d1 +docfiles size=36 + RELOC/doc/platex/pxjahyper/LICENSE + RELOC/doc/platex/pxjahyper/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/platex/pxjahyper/README.md details="Readme" + RELOC/doc/platex/pxjahyper/pxjahyper.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/platex/pxjahyper/pxjahyper.tex +runfiles size=17 + RELOC/tex/platex/pxjahyper/pxjahyper-ajm.def + RELOC/tex/platex/pxjahyper/pxjahyper-enc.sty + RELOC/tex/platex/pxjahyper/pxjahyper.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXjahyper +catalogue-ctan /language/japanese/pxjahyper +catalogue-license mit +catalogue-topics japanese hyper +catalogue-version 0.7b + +name pxjodel +category Package +revision 55006 +shortdesc Help change metrics of fonts from japanese-otf +relocated 1 +longdesc This package changes the setup of the japanese-otf package so +longdesc that the TFMs for direct input are all replaced by new ones +longdesc with prefixed names; for example, nmlminr-h will be replaced by +longdesc foo--nmlminr-h, where foo is a prefix specified by the user. +longdesc This function will assist users who want to use the +longdesc japanese-otf package together with tailored TFMs of Japanese +longdesc fonts. The "jodel" part of the package name stands for +longdesc "japanese-otf deluxe". Here "deluxe" is the name of +longdesc japanese-otf's option for employing multi-weight Japanese font +longdesc families. This option is probably the most likely reason for +longdesc using japanese-otf. So pxjodel is really about japanese-otf's +longdesc "deluxe" option, hence the name. It is not related to yodel +longdesc singing, although some sense of word-play is intended. +containersize 12536 +containerchecksum dfd7032b250d85c37d983e4b0e8d480bf3a36822a7c9993e423ba2ce7320c1e1305106aa6abc5ad099a667c4821326792b4344d17e6a34f33e02b4612451f9e1 +doccontainersize 110152 +doccontainerchecksum e7f8c3ae9e32ac296116743feaf6cca0be3b376b3c34adaa2a90e41f0c4aa329f1330e257e99fbd43025f46e340be48c1d7cb2f1131c7a722a4f7913ddea1a81 +docfiles size=31 + RELOC/doc/latex/pxjodel/LICENSE + RELOC/doc/latex/pxjodel/README.md details="Readme" + RELOC/doc/latex/pxjodel/pxjodel.pdf details="Package documentation" + RELOC/doc/latex/pxjodel/pxjodel.tex +runfiles size=422 + RELOC/fonts/tfm/public/pxjodel/jodhgothb-hq.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgothbn-h.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgothbn-v.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgotheb-hq.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgothebn-h.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgothebn-v.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgothr-hq.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgothrn-h.tfm + RELOC/fonts/tfm/public/pxjodel/jodhgothrn-v.tfm + RELOC/fonts/tfm/public/pxjodel/jodhmgothe-hq.tfm + RELOC/fonts/tfm/public/pxjodel/jodhmgothen-h.tfm + RELOC/fonts/tfm/public/pxjodel/jodhmgothen-v.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminb-hq.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminbn-h.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminbn-v.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminl-hq.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminln-h.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminln-v.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminr-hq.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminrn-h.tfm + RELOC/fonts/tfm/public/pxjodel/jodhminrn-v.tfm + RELOC/fonts/tfm/public/pxjodel/zu-jodhgothb-hq.tfm + RELOC/fonts/tfm/public/pxjodel/zu-jodhgotheb-hq.tfm + RELOC/fonts/tfm/public/pxjodel/zu-jodhgothr-hq.tfm + RELOC/fonts/tfm/public/pxjodel/zu-jodhmgothe-hq.tfm + RELOC/fonts/tfm/public/pxjodel/zu-jodhminb-hq.tfm + RELOC/fonts/tfm/public/pxjodel/zu-jodhminl-hq.tfm + RELOC/fonts/tfm/public/pxjodel/zu-jodhminr-hq.tfm + RELOC/fonts/vf/public/pxjodel/jodhgothb-hq.vf + RELOC/fonts/vf/public/pxjodel/jodhgothbn-h.vf + RELOC/fonts/vf/public/pxjodel/jodhgothbn-v.vf + RELOC/fonts/vf/public/pxjodel/jodhgotheb-hq.vf + RELOC/fonts/vf/public/pxjodel/jodhgothebn-h.vf + RELOC/fonts/vf/public/pxjodel/jodhgothebn-v.vf + RELOC/fonts/vf/public/pxjodel/jodhgothr-hq.vf + RELOC/fonts/vf/public/pxjodel/jodhgothrn-h.vf + RELOC/fonts/vf/public/pxjodel/jodhgothrn-v.vf + RELOC/fonts/vf/public/pxjodel/jodhmgothe-hq.vf + RELOC/fonts/vf/public/pxjodel/jodhmgothen-h.vf + RELOC/fonts/vf/public/pxjodel/jodhmgothen-v.vf + RELOC/fonts/vf/public/pxjodel/jodhminb-hq.vf + RELOC/fonts/vf/public/pxjodel/jodhminbn-h.vf + RELOC/fonts/vf/public/pxjodel/jodhminbn-v.vf + RELOC/fonts/vf/public/pxjodel/jodhminl-hq.vf + RELOC/fonts/vf/public/pxjodel/jodhminln-h.vf + RELOC/fonts/vf/public/pxjodel/jodhminln-v.vf + RELOC/fonts/vf/public/pxjodel/jodhminr-hq.vf + RELOC/fonts/vf/public/pxjodel/jodhminrn-h.vf + RELOC/fonts/vf/public/pxjodel/jodhminrn-v.vf + RELOC/fonts/vf/public/pxjodel/zu-jodhgothb-hq.vf + RELOC/fonts/vf/public/pxjodel/zu-jodhgotheb-hq.vf + RELOC/fonts/vf/public/pxjodel/zu-jodhgothr-hq.vf + RELOC/fonts/vf/public/pxjodel/zu-jodhmgothe-hq.vf + RELOC/fonts/vf/public/pxjodel/zu-jodhminb-hq.vf + RELOC/fonts/vf/public/pxjodel/zu-jodhminl-hq.vf + RELOC/fonts/vf/public/pxjodel/zu-jodhminr-hq.vf + RELOC/tex/latex/pxjodel/pxjodel.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXjodel +catalogue-ctan /language/japanese/pxjodel +catalogue-license mit +catalogue-topics font-mgmt japanese font-sel font-use font-cjk +catalogue-version 0.3 + +name pxpgfmark +category Package +revision 30212 +shortdesc e-pTeX driver for PGF inter-picture connections +relocated 1 +longdesc The distributed drivers do not support the PGF feature of +longdesc "inter-picture connections" under e-pTeX and dvipdfmx. The +longdesc package uses existing features of dvipdfmx to fix this problem +containersize 792 +containerchecksum eb341eaebbe2fca860c2592c0d24f6b5c4ef0f1e6b2bd731d48c1994ded7afa01bd5cb365d3f30147f68855777defc3384038aa652240178fc948b5225cb4c08 +doccontainersize 1640 +doccontainerchecksum 8a80eade76fa7b5e5b919136e499eddb5ff534042fc56eb8223e80124bde97a39a65d31370037cf425042a1ae516e5888c8751388899ae65a8b561f091693c97 +docfiles size=2 + RELOC/doc/latex/pxpgfmark/LICENSE + RELOC/doc/latex/pxpgfmark/README details="Readme" +runfiles size=1 + RELOC/tex/latex/pxpgfmark/pxpgfmark.sty +catalogue-ctan /graphics/pgf/contrib/pxpgfmark +catalogue-license mit +catalogue-topics graphics-drv +catalogue-version 0.2 + +name pxpic +category Package +revision 57445 +shortdesc Draw pixel pictures +relocated 1 +longdesc With pxpic you draw pictures pixel by pixel. It was inspired by +longdesc a lovely post by Paulo Cereda, among other things (most notably +longdesc a beautiful duck) showcasing the use of characters from the +longdesc Mario video games by Nintendo in LaTeX. +containersize 2588 +containerchecksum f187fe6370e817ba7d3b6d7c0899bceaf898685d2ed2e1707ee18e0623d95489dbcfeacd1482ec540307ce5095f903e1499b4c01fb1634071f3edac626551c1e +doccontainersize 304304 +doccontainerchecksum 1ca68d3e7752fb37482c32cebaae0753c31284e593d3e161a46bab54d98ae564857ea80553e3937e3b7710036e722acc3eddc23fda4941079e050f20bf0ff5e1 +docfiles size=77 + RELOC/doc/latex/pxpic/README.md details="Readme" + RELOC/doc/latex/pxpic/pxpic.pdf details="Package documentation" +srccontainersize 11880 +srccontainerchecksum a9fbf50b12145c2169de1733862dbbec0870c0863caf3544117b8c87bb0dbe4d637ad8b8507102ce83b1f4fe2e6c03a704d289c8c7e15e74b8859b6988240a3f +srcfiles size=12 + RELOC/source/latex/pxpic/pxpic.dtx +runfiles size=3 + RELOC/tex/latex/pxpic/pxpic.sty +catalogue-contact-repository https://github.com/Skillmon/ltx_pxpic +catalogue-ctan /graphics/pxpic +catalogue-license lppl1.3c +catalogue-topics graphics graphics-in-tex +catalogue-version 1.2 + +name pxrubrica +category Package +revision 58168 +shortdesc Ruby annotations according to JIS X 4051 +relocated 1 +longdesc This package provides a function to add ruby annotations +longdesc (furigana) that follow the style conventional in Japanese +longdesc typography as described in the W3C technical note "Requirements +longdesc for Japanese Text Layout" ([JLREQ]) and the JIS specification +longdesc JIS X 4051. Starting with version 1.3, this package also +longdesc provides a function to add kenten (emphasis marks) to Japanese +longdesc text. +containersize 13660 +containerchecksum bde5699cc92196e844b052c9116bd081960a34b239bd9fe5271f0866be3c4edf0a8bf8932a99c440dc58db7624c58fc3af4e2d2c0f76230f1248da21ce4410a9 +doccontainersize 723764 +doccontainerchecksum df0b339e6ea2ac03d47161fe7eb278df31b391fb129f2f763f87e9e27a6b78f8da8172baab154e9b9f3b62e7fed88b400654a7bc47aaf0222a47f4746a48f5a8 +docfiles size=204 + RELOC/doc/platex/pxrubrica/LICENSE + RELOC/doc/platex/pxrubrica/README-ja.md details="Readme" language="ja" + RELOC/doc/platex/pxrubrica/README.md details="Readme" language="en" + RELOC/doc/platex/pxrubrica/pxrubrica-en.pdf details="Package documentation (English)" + RELOC/doc/platex/pxrubrica/pxrubrica-en.tex + RELOC/doc/platex/pxrubrica/pxrubrica.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/platex/pxrubrica/sample/test-jlreq.pdf + RELOC/doc/platex/pxrubrica/sample/test-jlreq.tex + RELOC/doc/platex/pxrubrica/sample/test-sample.pdf + RELOC/doc/platex/pxrubrica/sample/test-sample.tex + RELOC/doc/platex/pxrubrica/sample/test-sf.pdf + RELOC/doc/platex/pxrubrica/sample/test-sf.tex + RELOC/doc/platex/pxrubrica/sample/test-toc.pdf + RELOC/doc/platex/pxrubrica/sample/test-toc.tex +srccontainersize 38388 +srccontainerchecksum a51ae682aa72fc60d80c4f4ae9489d2cea5957dcb61d5ed09f505cd1023d9d40b89dc594cef7756c24b6a2aa9e11b5c3f53af178d0e885fa94344a8ace00d8f9 +srcfiles size=53 + RELOC/source/platex/pxrubrica/pxrubrica.dtx + RELOC/source/platex/pxrubrica/pxrubrica.ins +runfiles size=20 + RELOC/tex/platex/pxrubrica/pxrubrica.sty +catalogue-contact-home https://github.com/zr-tex8r/PXrubrica +catalogue-ctan /language/japanese/pxrubrica +catalogue-license mit +catalogue-topics japanese std-conform +catalogue-version 1.3d + +name pxtatescale +category Package +revision 43009 +shortdesc Patch to graphics driver for scaling in vertical direction of pTeX +relocated 1 +longdesc Patch for graphics driver 'dvipdfmx' to support correct scaling +longdesc in vertical direction of Japanese pTeX/upTeX. +containersize 1020 +containerchecksum 922aabc7fdd35d1b1a6199be0986ad6d42ffc0db138066a7b1607ec521cf22571abc752ce225c9d99e2e9f8685149a5b91c35d6914fbccdb293a2476797dbdc9 +doccontainersize 1620 +doccontainerchecksum be6998e53e5d8d92138e440de1c75e83671ea88316fb9b4dde0188dab198dc65301b4cd4f53368c277b782edf82f17ef89903eddfa6656669a5329a029907249 +docfiles size=2 + RELOC/doc/latex/pxtatescale/LICENSE + RELOC/doc/latex/pxtatescale/README details="Readme" +runfiles size=1 + RELOC/tex/latex/pxtatescale/pxtatescale.sty +catalogue-ctan /macros/latex/contrib/pxtatescale +catalogue-license mit +catalogue-topics graphics-drv japanese +catalogue-version 0.4 + +name pxtxalfa +category Package +revision 54080 +shortdesc Virtual maths alphabets based on pxfonts and txfonts +relocated 1 +longdesc The package provides virtual math alphabets based on pxfonts +longdesc and txfonts, with LaTeX support files and adjusted metrics. The +longdesc mathalpha package offers support for this collection. +execute addMap pxtx.map +containersize 9024 +containerchecksum 6d03f8d9be9d07643de2ef1f35fe30981861d6c230793912b3d093334260e53b3bae9ff178e97442425e527d1dbd0eac366fad16b0276d44378511ddd97eff52 +doccontainersize 36132 +doccontainerchecksum 0ed329847a91c8164883b873fc7a98cdb1571cc733d9d71ddd9bbe52b591a71b03cf0d6bfe83d63e41f6524e01f38a91c67d370c661e02816622dd56eacfd462 +docfiles size=13 + RELOC/doc/fonts/pxtxalfa/README details="Readme" + RELOC/doc/fonts/pxtxalfa/pxtxalfa.pdf details="Package documentation" + RELOC/doc/fonts/pxtxalfa/pxtxalfa.tex +runfiles size=28 + RELOC/fonts/map/dvips/pxtxalfa/pxtx.map + RELOC/fonts/tfm/public/pxtxalfa/pxb-ds.tfm + RELOC/fonts/tfm/public/pxtxalfa/pxr-ds.tfm + RELOC/fonts/tfm/public/pxtxalfa/rtxmia.tfm + RELOC/fonts/tfm/public/pxtxalfa/txb-cal.tfm + RELOC/fonts/tfm/public/pxtxalfa/txb-frak.tfm + RELOC/fonts/tfm/public/pxtxalfa/txb-of.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-cal.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-ds.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-frak.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-of.tfm + RELOC/fonts/vf/public/pxtxalfa/pxb-ds.vf + RELOC/fonts/vf/public/pxtxalfa/pxr-ds.vf + RELOC/fonts/vf/public/pxtxalfa/txb-cal.vf + RELOC/fonts/vf/public/pxtxalfa/txb-frak.vf + RELOC/fonts/vf/public/pxtxalfa/txb-of.vf + RELOC/fonts/vf/public/pxtxalfa/txr-cal.vf + RELOC/fonts/vf/public/pxtxalfa/txr-ds.vf + RELOC/fonts/vf/public/pxtxalfa/txr-frak.vf + RELOC/fonts/vf/public/pxtxalfa/txr-of.vf + RELOC/tex/latex/pxtxalfa/px-ds.sty + RELOC/tex/latex/pxtxalfa/pxtx-cal.sty + RELOC/tex/latex/pxtxalfa/pxtx-frak.sty + RELOC/tex/latex/pxtxalfa/tx-of.sty + RELOC/tex/latex/pxtxalfa/upx-ds.fd + RELOC/tex/latex/pxtxalfa/utx-cal.fd + RELOC/tex/latex/pxtxalfa/utx-frak.fd + RELOC/tex/latex/pxtxalfa/utx-of.fd +catalogue-ctan /fonts/pxtxalfa +catalogue-license lppl +catalogue-topics font font-maths font-virtual +catalogue-version 1 + +name pxufont +category Package +revision 53733 +shortdesc Emulate non-Unicode Japanese fonts using Unicode fonts +relocated 1 +longdesc The set of the Japanese logical fonts (JFMs) that are used as +longdesc standard fonts in pTeX and upTeX contains both Unicode JFMs and +longdesc non-Unicode JFMs. This bundle provides an alternative set of +longdesc non-Unicode JFMs that are tied to the virtual fonts (VFs) that +longdesc refer to the glyphs in the Unicode JFMs. Moreover it provides a +longdesc LaTeX package that redefines the NFSS settings of the Japanese +longdesc fonts of (u)pLaTeX so that the new set of non-Unicode JFMs will +longdesc be employed. As a whole, this bundle allows users to dispense +longdesc with the mapping setup on non-Unicode JFMs. Such a setup is +longdesc useful in particular when users want to use OpenType fonts +longdesc (such as Source Han Serif) that have a glyph encoding different +longdesc from Adobe-Japan1, because mapping setups from non-Unicode JFMs +longdesc to such physical fonts are difficult to prepare. +containersize 126608 +containerchecksum bbbd7c0724e4b9a77ef731a4be2d014086aca61c78a439912ea20a630785fd8695ab9f287e07d0899ead8fe90614a806b0928a8cccfbd1cfb71c94b9b3c1266b +doccontainersize 2240 +doccontainerchecksum 850e3e336e1bc3f60a89325c66de38ea1171a2ba2f4444382dae12373c509579a5c686887cbab42b147b69a206b4ceb43af83f8d47446c4bca47cade5f9bfaf2 +docfiles size=2 + RELOC/doc/latex/pxufont/LICENSE + RELOC/doc/latex/pxufont/README.md details="Readme" +runfiles size=14899 + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-goth10.tfm + RELOC/fonts/tfm/public/pxufont/zu-jis-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-jis.tfm + RELOC/fonts/tfm/public/pxufont/zu-jisg-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-jisg.tfm + RELOC/fonts/tfm/public/pxufont/zu-min10.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubymgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubymgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-tgoth10.tfm + RELOC/fonts/tfm/public/pxufont/zu-tmin10.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubymgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubymgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjge-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjge-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjml-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjml-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjge-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjge-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjml-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjml-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmr-v.tfm + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr5-v.vf + RELOC/fonts/vf/public/pxufont/zu-goth10.vf + RELOC/fonts/vf/public/pxufont/zu-jis-v.vf + RELOC/fonts/vf/public/pxufont/zu-jis.vf + RELOC/fonts/vf/public/pxufont/zu-jisg-v.vf + RELOC/fonts/vf/public/pxufont/zu-jisg.vf + RELOC/fonts/vf/public/pxufont/zu-min10.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubygotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubygotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubymgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubymgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-tgoth10.vf + RELOC/fonts/vf/public/pxufont/zu-tmin10.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubymgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubymgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminr-v.vf + RELOC/tex/latex/pxufont/pxufont-ruby.sty + RELOC/tex/latex/pxufont/pxufont.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXufont +catalogue-ctan /language/japanese/pxufont +catalogue-license mit +catalogue-topics japanese font-use font-cjk +catalogue-version 0.6 + +name pygmentex +category Package +revision 57190 +shortdesc Use Pygments to format code listings in documents +longdesc PygmenTeX is a Python-based LaTeX package that can be used for +longdesc typesetting code listings in a LaTeX document using Pygments. +longdesc Pygments is a generic syntax highlighter for general use in all +longdesc kinds of software such as forum systems, wikis or other +longdesc applications that need to prettify source code. +depend pygmentex.ARCH +containersize 7420 +containerchecksum 6dc3ca792953c15b2777457b62a08c8d3b0275df8f8da9442590f61b64cc0640ddeebd7190375dfdb8d4bbc8582ed6da5ab7035bb0ff6617a27c2ddc0824d523 +doccontainersize 594336 +doccontainerchecksum a4ef61d97ea11b6595ab94b68697091b88d4b1b83a150f7faf30863ef91e7d1681662410d7c45bad9426644b554fa078979d0a3b3c8baa11a6714d49b811f5d1 +docfiles size=173 + texmf-dist/doc/latex/pygmentex/Factorial.java + texmf-dist/doc/latex/pygmentex/README details="Readme" + texmf-dist/doc/latex/pygmentex/blueshade.png + texmf-dist/doc/latex/pygmentex/pygmentex_demo.c + texmf-dist/doc/latex/pygmentex/pygmentex_demo.delphi + texmf-dist/doc/latex/pygmentex/pygmentex_demo.hs + texmf-dist/doc/latex/pygmentex/pygmentex_demo.java + texmf-dist/doc/latex/pygmentex/pygmentex_demo.pas + texmf-dist/doc/latex/pygmentex/pygmentex_demo.pdf details="Package documentation" + texmf-dist/doc/latex/pygmentex/pygmentex_demo.py + texmf-dist/doc/latex/pygmentex/pygmentex_demo.tex +runfiles size=7 + texmf-dist/scripts/pygmentex/pygmentex.py + texmf-dist/tex/latex/pygmentex/pygmentex.sty +catalogue-ctan /macros/latex/contrib/pygmentex +catalogue-license lppl1.3 +catalogue-topics listing synt-hlt +catalogue-version 0.10 + +name pygmentex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pygmentex +containersize 340 +containerchecksum 6ebe5fe5c3d6d920e3dffee5067dcdce4d801e0e97eb70277ce0e38410b820d3991575625b4ccc982d89601b15552903a2e32d26fe905e34e1e29cb7f114ecbb +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pygmentex + +name pygmentex.amd64-freebsd +category Package +revision 34996 +shortdesc amd64-freebsd files of pygmentex +containersize 340 +containerchecksum 4bdebf24f7304000142842837bec9d99d521b021f859143256e80291075727987bae6b95ede4f863ed7d6b5605c6c557d7b15766fa1af9f95ce7cf4b322badf3 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pygmentex + +name pygmentex.amd64-netbsd +category Package +revision 34996 +shortdesc amd64-netbsd files of pygmentex +containersize 340 +containerchecksum c47bb71a8a3a82d4267e38d142db69896874463b3c442af8c75c9191bca1528b2d0d5f1bef703688815851a0449ab230228235987304eaa122c9e3cd896e8d64 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pygmentex + +name pygmentex.armhf-linux +category Package +revision 34996 +shortdesc armhf-linux files of pygmentex +containersize 340 +containerchecksum 87a59042dc3ec844d6d2724e0a5eb3f455d9275bd6fc1fd54903eb8e6cbe8143388c5c02a41012aa86a37421066da6c66a3876fdc2bbe37919b7dc45a4640790 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pygmentex + +name pygmentex.i386-cygwin +category Package +revision 34996 +shortdesc i386-cygwin files of pygmentex +containersize 340 +containerchecksum ed0d103d6e02118f8229e100c76ea71aa1b50a416ba6239cda4123aaef853aadd1f31d08f229ba5940ba2f4260486bbdcb0856c22889c5ed7da15eb3e6709144 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pygmentex + +name pygmentex.i386-freebsd +category Package +revision 34996 +shortdesc i386-freebsd files of pygmentex +containersize 344 +containerchecksum ca78df2ac1b6c67e8515aaa25e49764ac2d2b314b7e01c969cc7aa009cd2e8ec2b8bacef07107743043a7e38748f09405ead3c96275c3abacff18ecde5506313 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pygmentex + +name pygmentex.i386-linux +category Package +revision 34996 +shortdesc i386-linux files of pygmentex +containersize 340 +containerchecksum 95383e605fa4ab4dce266bcd2bdbd0cce4272b1df3915af1b354f6c0b8ecd51cc9339844f2e56db368ec519d78c3bf29fca7dbfb2e0d8c81b825283ee8a61c42 +binfiles arch=i386-linux size=1 + bin/i386-linux/pygmentex + +name pygmentex.i386-netbsd +category Package +revision 34996 +shortdesc i386-netbsd files of pygmentex +containersize 340 +containerchecksum ae4072fe4940f67125fe1c910b755f2de41f042c855957f8f239fb2a699bf672ccd1c6d5b974ea85d5e78c20941c873eea153cad4a3ff2e481388d9d1c321667 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pygmentex + +name pygmentex.i386-solaris +category Package +revision 34996 +shortdesc i386-solaris files of pygmentex +containersize 340 +containerchecksum 3bcff7ee794b3918099debba12bac96ff15ddeaef0f458d3bcbc34cce17614210438d906efb73908f89f93bf9eac51a1e325e138366ac0973e79f92cd78c791d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pygmentex + +name pygmentex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pygmentex +containersize 340 +containerchecksum 645ffa63f0544d1dc8370f156846b749f7a3708888f6a3e4bf51a1b66889435b8606d4ab4ba3fd8bc9442da0720eab9288b41e2d07d7a420ac63a3ab43e3837a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/pygmentex + +name pygmentex.win32 +category Package +revision 34996 +shortdesc win32 files of pygmentex +containersize 684 +containerchecksum 0b04226e50c632df65bf50c6222f823563f2eeca57372dc625e4e91f625d296279746f75f234f47299c283e6c65d85c4fcbd7828259667dd693e46e1b63c9809 +binfiles arch=win32 size=1 + bin/win32/pygmentex.exe + +name pygmentex.x86_64-cygwin +category Package +revision 34996 +shortdesc x86_64-cygwin files of pygmentex +containersize 340 +containerchecksum 9791b63325365af87c47f2db168414105786454e1a31d09b4b0a9d6822985ca277169948e8f232e870b9e895eb187fdedd0f52e896d47be9a45d2aa667633283 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pygmentex + +name pygmentex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pygmentex +containersize 348 +containerchecksum 2ff895caf0fa32f13bf9aa2301029118bfb1a25ed5df1ecd8da63b962fe75c726d5bf86d878d9f8bfb4f37e445ab5a95f3f79d2c90c4961422ebb5ef1d3e5336 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pygmentex + +name pygmentex.x86_64-linux +category Package +revision 34996 +shortdesc x86_64-linux files of pygmentex +containersize 340 +containerchecksum 079a17aec410560ea86d99970f285d5a137da3cdf452d1a55cd461617960c4027e4f08793dc940c021dbf2cb810c407f913230de5217031d8d5c2ac63ca97242 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pygmentex + +name pygmentex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pygmentex +containersize 348 +containerchecksum 61b594a202bc0df5d3d2afe7f30337c7576b20b99b6f9f47ed83b8126c363d76ffe8b11d1bf51ba95aa3fbe39bcf95c8cfc22d9e75df3c5b45286477c8acb005 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pygmentex + +name pygmentex.x86_64-solaris +category Package +revision 34996 +shortdesc x86_64-solaris files of pygmentex +containersize 340 +containerchecksum eaf2d9b1fc456c04869f7788570042006373f53ba46a4e07ea4e2b139280c8046f644911df4bca1b97d4e5b1a566c4e5483313eaa5bdff09eb86d6f2b66442d4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pygmentex + +name python +category Package +revision 27064 +shortdesc Embed Python code in LaTeX +relocated 1 +longdesc The package enables you to embed Python code in LaTeX, and +longdesc insert the script's output in the document. +containersize 1940 +containerchecksum 85c300c969fccdff036e2da59ada1040bee6f25c6a8ec3c173ce44084fb9fd812aab79b8fdc0b9fbe2ffbf9485abca57fc5d82caf4ac5a3ff922501b46dec164 +doccontainersize 864 +doccontainerchecksum 8f88b9bc84a71c430486e2e3d2b33a4436cb1ac1257b9ea5629708438b8ac7488839d52fc138e4959575fe13388aa475770a62ca070b4746de8b78c53d5119a1 +docfiles size=1 + RELOC/doc/latex/python/README details="Readme" +runfiles size=1 + RELOC/tex/latex/python/python.sty +catalogue-ctan /macros/latex/contrib/python +catalogue-license gpl +catalogue-topics callback +catalogue-version 0.21 + +name pythonhighlight +category Package +revision 43191 +shortdesc Highlighting of Python code, based on the listings package +relocated 1 +longdesc Highlighting of Python code, based on the listings package. +containersize 2180 +containerchecksum 1018d4383ba04f92d383d2c4f51d30f091528f7a89ff23614e0ebc9e488ef3cc8167de12a42e6a6465c2b3937d849bd5eecc94cab0a9b8003569b06ae2c91632 +doccontainersize 1444 +doccontainerchecksum 31297eb541060d760fd61ebe169b840cf182f8f857986aba5a2a578373037d3c99ee12ec9c707ab1f9d29564925821665997ea45f728273007f61a5f0bea5180 +docfiles size=2 + RELOC/doc/latex/pythonhighlight/LICENSE.rst + RELOC/doc/latex/pythonhighlight/README.md details="Readme" +runfiles size=2 + RELOC/tex/latex/pythonhighlight/pythonhighlight.sty +catalogue-also listings +catalogue-ctan /macros/latex/contrib/pythonhighlight +catalogue-license other-free +catalogue-topics listing + +name pythontex +category Package +revision 52174 +shortdesc Run Python from within a document, typesetting the results +longdesc The package allows you to enter Python code within a LaTeX +longdesc document, execute the code, and access its output in the +longdesc original document. Python code is only executed when it has +longdesc been modified, or when it meets user-specified criteria. Code +longdesc may be divided into user-defined sessions, which automatically +longdesc run in parallel. Errors and warnings are synchronized with the +longdesc LaTeX document, so that they refer to the document's line +longdesc numbers. External dependencies can be tracked, so that code is +longdesc re-executed when the data it depends on is modified. PythonTeX +longdesc also provides syntax highlighting for code in LaTeX documents +longdesc via the Pygments syntax highlighter. The package provides a +longdesc depythontex utility, that creates a copy of the document in +longdesc which all Python code has been replaced by its output. This is +longdesc useful for journal submissions, sharing documents, and +longdesc conversion to other formats. +depend pythontex.ARCH +containersize 66856 +containerchecksum 27a3196f89ae04eb992817800f30dd26b275b65a2f9272907a2cc6a66708ee00290c3e0083bb537f0ee0152c93aee50728ea1ddab672aa08dfcef5f089bcf2b9 +doccontainersize 1550244 +doccontainerchecksum cdc5046cef480514417874ef5343a39f9e1c377d0e1f00e9df4ca8746670f2b222636afd58a06ef63086c3479b4d516f9d14074aabc1fa7876b2fb4f6599bef4 +docfiles size=406 + texmf-dist/doc/latex/pythontex/NEWS.rst + texmf-dist/doc/latex/pythontex/README details="Readme" + texmf-dist/doc/latex/pythontex/pythontex.pdf details="Package documentation" + texmf-dist/doc/latex/pythontex/pythontex_gallery.pdf details="Gallery of use" + texmf-dist/doc/latex/pythontex/pythontex_gallery.tex + texmf-dist/doc/latex/pythontex/pythontex_quickstart.pdf details="Quick start documentation" + texmf-dist/doc/latex/pythontex/pythontex_quickstart.tex + texmf-dist/doc/latex/pythontex/syncpdb.py +srccontainersize 83716 +srccontainerchecksum 9acadbf5a18d56d24bd1300ff4b713325c43f163d2ac27e190461fbb74bbe023e31b2a3cb0bf3c6ead42c1275bfcbcbc8cc87914f623537e05773e9e641b7b03 +srcfiles size=98 + texmf-dist/source/latex/pythontex/depythontex.bat + texmf-dist/source/latex/pythontex/pythontex.bat + texmf-dist/source/latex/pythontex/pythontex.dtx + texmf-dist/source/latex/pythontex/pythontex.ins + texmf-dist/source/latex/pythontex/pythontex_install.bat +runfiles size=154 + texmf-dist/scripts/pythontex/depythontex.py + texmf-dist/scripts/pythontex/depythontex2.py + texmf-dist/scripts/pythontex/depythontex3.py + texmf-dist/scripts/pythontex/pythontex.py + texmf-dist/scripts/pythontex/pythontex2.py + texmf-dist/scripts/pythontex/pythontex3.py + texmf-dist/scripts/pythontex/pythontex_2to3.py + texmf-dist/scripts/pythontex/pythontex_engines.py + texmf-dist/scripts/pythontex/pythontex_install.py + texmf-dist/scripts/pythontex/pythontex_utils.py + texmf-dist/tex/latex/pythontex/pythontex.sty +catalogue-also perltex +catalogue-contact-repository https://github.com/gpoore/pythontex +catalogue-ctan /macros/latex/contrib/pythontex +catalogue-license lppl1.3 +catalogue-topics callback +catalogue-version 0.17 + +name pythontex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pythontex +containersize 364 +containerchecksum 59fa62e7eb4904d79ee4c66d7e1da31120d752f7413fc580e6c4bbfcd950a6b0fd3f391f5cdd04b2e76f4d4af9eb5f2ccdc6e2386000b4eb035f3a27bf5cd874 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/depythontex + bin/aarch64-linux/pythontex + +name pythontex.amd64-freebsd +category Package +revision 31638 +shortdesc amd64-freebsd files of pythontex +containersize 364 +containerchecksum 978b22d2f7b2850a31df524021b09dcaaa94176b270c875f91dc68d61b86901a409984ce274d791f24fcaa1d2ddd0d4cb3e31242580b7182afad8f9b8f445791 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/depythontex + bin/amd64-freebsd/pythontex + +name pythontex.amd64-netbsd +category Package +revision 31638 +shortdesc amd64-netbsd files of pythontex +containersize 364 +containerchecksum 7f5ff180b35aacda3819babc988b19153cf04f589df41829c6b274d6aa9d3f0329ae6a34eed8861246023aff1045a0c28b22a486ff8d67b4d7602f07838e3eb4 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/depythontex + bin/amd64-netbsd/pythontex + +name pythontex.armhf-linux +category Package +revision 31638 +shortdesc armhf-linux files of pythontex +containersize 364 +containerchecksum d1ee2be931deabbcf1ed8fcfce2422d4eda251d5e3fa653eb17bc45ec4f9e4774c8a2d2b8b3123270e11ab356c67668f89f2a5df361f1e4bd29a82b9b3c8b345 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/depythontex + bin/armhf-linux/pythontex + +name pythontex.i386-cygwin +category Package +revision 31638 +shortdesc i386-cygwin files of pythontex +containersize 360 +containerchecksum 737d26e507fc505566a16f7859fb4980497d87671d06b31b4862767f6ca80a6c55ee15791813e86b3a84bcd6117452aae89b940dec6edf61278f7067e3398ccb +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/depythontex + bin/i386-cygwin/pythontex + +name pythontex.i386-freebsd +category Package +revision 31638 +shortdesc i386-freebsd files of pythontex +containersize 364 +containerchecksum 84a506cbde7e21d8f748e6ff0e46b68e37bdf78adc5ae1ab57d091d07fee96ff9eb56254e1e8076cb5193901d68803a97b84093a73392d93b611eb14a3af4736 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/depythontex + bin/i386-freebsd/pythontex + +name pythontex.i386-linux +category Package +revision 31638 +shortdesc i386-linux files of pythontex +containersize 360 +containerchecksum c62917e422da0dd8c9e177483e48bc4897c8f4db3dc8e222462186ede2fe9cb9deae269e1112b40dd065a0b69dc5579a4d95f6ed7ab65ac09d3a015891f017fa +binfiles arch=i386-linux size=2 + bin/i386-linux/depythontex + bin/i386-linux/pythontex + +name pythontex.i386-netbsd +category Package +revision 31638 +shortdesc i386-netbsd files of pythontex +containersize 360 +containerchecksum 189457c8ec2d911595c7b90a0c421f7ea8a02b90a90225e1ac1a4c352a893fd4e51ae13f4ff62f4be90e378e8eb115242897f7258889a5fea55ac36bf2c7048f +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/depythontex + bin/i386-netbsd/pythontex + +name pythontex.i386-solaris +category Package +revision 31638 +shortdesc i386-solaris files of pythontex +containersize 364 +containerchecksum 44fa80d323d6065a6d5ae71df2da811d1a38ccbe7480acda634ea30350c0cb4e7c5e8ebcb5a73315ab0ffaf25b7ccb52e878dd7d324436a7592b1e2a7512ae24 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/depythontex + bin/i386-solaris/pythontex + +name pythontex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of pythontex +containersize 368 +containerchecksum 8d8f6c97310d5051e3ef68fcd8cba1b09d45d6f183cb3f49ccd5dfa1299ec10050e1638abeadb277a39fe843c591354d58639a6f3695f1763c3844011b4b2673 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/depythontex + bin/universal-darwin/pythontex + +name pythontex.win32 +category Package +revision 31638 +shortdesc win32 files of pythontex +containersize 700 +containerchecksum c1acde42224b0eec9497b15b65c6080183b6e9eb42f88c78ca23fe9bada9d6f6cc4c27213d8c67b24bea7d11e23c1e0dee422ef368fff2f969d7d42ca8800f34 +binfiles arch=win32 size=2 + bin/win32/depythontex.exe + bin/win32/pythontex.exe + +name pythontex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pythontex +containersize 364 +containerchecksum 8bc0a788d0624cfe70ca8196b863cec5f502fcebd1547c75a705f66fa31b954683f3f569ec46fb97b7438348af56f03bd364ebf676d32246ba59ed57a8908520 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/depythontex + bin/x86_64-cygwin/pythontex + +name pythontex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pythontex +containersize 372 +containerchecksum 270febd980b7ad15246cb24cd2e7fb997e1052e8be73a6168a24b1fefbdc711bc0a7725d6d2dd7bb813e1e2c1ba6742413280f49c4a105df62051d6f2e721fd6 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/depythontex + bin/x86_64-darwinlegacy/pythontex + +name pythontex.x86_64-linux +category Package +revision 31638 +shortdesc x86_64-linux files of pythontex +containersize 364 +containerchecksum d6f8d47872f3d2978917d74155adfd292a20b990c3b05a3c41860e5648226e258640662c08a3d803c8fcaf949bf0cc7e63d367b86b71a5ab99a1bf7161004f4a +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/depythontex + bin/x86_64-linux/pythontex + +name pythontex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pythontex +containersize 368 +containerchecksum 067c428c52090a6b495e468597cfd1e210464a789d3c6049705c60a9f906df547bb2a215d9b01c14671d8bc833def07b3664f6b2f519b31b6d6fd8adc0fceed3 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/depythontex + bin/x86_64-linuxmusl/pythontex + +name pythontex.x86_64-solaris +category Package +revision 31638 +shortdesc x86_64-solaris files of pythontex +containersize 364 +containerchecksum 9e570790f832795bb441834d78987edf470d83a1bc4759bb76e3c0097889c4f59204c074bf4c4370a987bd3bdabbec66e896d7861344f982629f907a3b09eba1 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/depythontex + bin/x86_64-solaris/pythontex + +name qcircuit +category Package +revision 48400 +shortdesc Macros to generate quantum ciruits +relocated 1 +longdesc The package supports those within the quantum information +longdesc community who typeset quantum circuits, using xy-pic package, +longdesc offering macros designed to help users generate circuits. +containersize 4452 +containerchecksum 72dc726d377bfa13b30d5440f65e3f451a717c32785c9338bc95107a3fd29326d5011ea31a6805fd751e276279b8bb577f2b4a488ad0f380ffad84fbe46e272e +doccontainersize 298344 +doccontainerchecksum cb4d00d575ed8f859722b97af7f15323af85e69b7276947c05770a6c745dbf0e4b3aa1546b3cc82d9555a5ce839b142ea8edd3da166d2c109bf6b829b2ebb74f +docfiles size=75 + RELOC/doc/latex/qcircuit/README.md details="Readme" + RELOC/doc/latex/qcircuit/qcircuit.pdf details="Package documentation" +runfiles size=4 + RELOC/tex/latex/qcircuit/qcircuit.sty +catalogue-contact-repository https://github.com/CQuIC/qcircuit +catalogue-ctan /graphics/qcircuit +catalogue-license gpl2 +catalogue-topics diagram-circ graphics-in-tex +catalogue-version 2.6.0 + +name qcm +category Package +revision 15878 +shortdesc A LaTeX2e class for making multiple choice questionnaires +relocated 1 +longdesc QCM is a package for making multiple choices questionnaires +longdesc under LaTeX2e ("QCM" is the French acronym for this style of +longdesc test). A special environment allows you to define questions and +longdesc possible answers. You can specify which answers are correct and +longdesc which are not. QCM not only formats the questions for you, but +longdesc also generates a 'form' (a grid that your students will have to +longdesc fill in), and a 'mask' (the same grid, only with correct +longdesc answers properly checked in). You can then print the mask on a +longdesc slide and correct the questionnaires more easily by +longdesc superimposing the mask on top of students' forms. QCM can also +longdesc typeset exam corrections automatically, and comes with support +longdesc for AUC-TeX. +containersize 3544 +containerchecksum 9fc1ac5b0b6fb819022f9e2ef625a73ed884ecd2c45b7c58283388ea0263d9f9c9045e14d9ee37e8a3c0036171284f30f7db5f99bacd01d4c65e1819bec6ab95 +doccontainersize 94864 +doccontainerchecksum d7935c763e9e5245eb68d915b39a2f91d785a1590a7cd807e0923d7d5763ef8216069bf1119f15f91521fd83786c86de7b227e90b6407d6799a6104fe466fd4a +docfiles size=33 + RELOC/doc/latex/qcm/NEWS + RELOC/doc/latex/qcm/README details="Readme" + RELOC/doc/latex/qcm/qcm.el + RELOC/doc/latex/qcm/qcm.pdf details="Package documentation" +srccontainersize 9308 +srccontainerchecksum 7efcc841f6c990e7fb1979bfeed28289ff0290b9ab2d54248628a3e52f0eb3c35b9a3b8f91a4b06231577a957d1009522d4c9843c103720f590cfb617289fd23 +srcfiles size=9 + RELOC/source/latex/qcm/qcm.dtx + RELOC/source/latex/qcm/qcm.ins +runfiles size=4 + RELOC/tex/latex/qcm/qcm.cls + RELOC/tex/latex/qcm/qcm.sty +catalogue-ctan /macros/latex/contrib/qcm +catalogue-license lppl +catalogue-topics exam +catalogue-version 2.1 + +name qobitree +category Package +revision 15878 +shortdesc LaTeX macros for typesetting trees +relocated 1 +longdesc Provides commands \branch and \leaf for specifying the elements +longdesc of the tree; you build up your tree with those commands, and +longdesc then issue the \tree command to typeset the whole. +containersize 2884 +containerchecksum cd229c1611f269f904d73d276b8b36fb60a373130a3b5bf78508daf85d5ce50cdc4841a25e30c5a0925344eefd93f638e635be2878478f575f32fc458fa9a0dd +doccontainersize 3656 +doccontainerchecksum b3b587bbe835456cb6298804cac2a8d61c85d4bad6550cd355e6a9ba155e7b691c5b2f5f919ded355b21dde9c4009ee30466bcfc5cb6d81e0af0fdeb97aa3b64 +docfiles size=4 + RELOC/doc/latex/qobitree/README details="Package documentation" + RELOC/doc/latex/qobitree/example.tex +runfiles size=6 + RELOC/tex/latex/qobitree/qobitree.tex +catalogue-ctan /macros/latex/contrib/qobitree +catalogue-license lppl +catalogue-topics tree + +name qpxqtx +category Package +revision 45797 +shortdesc Polish macros and fonts supporting Pagella/pxfonts and Termes/txfonts +relocated 1 +containersize 12932 +containerchecksum 7387592a338e7ba10942e4ed96364e36ca325040bff02cd69bf0f98d471775d38bd63e54bad494f64874e2fd0462762595c5796d7453aa6909fccc2d9d6bd27c +doccontainersize 7044 +doccontainerchecksum 6b6fc20f5ec1269d318813b1ad34020e2b5341ed8891c11d2eda6b84884b3782e992dd9dde16d14b2030f2b57e1146fb6da6e761a35b12a3d88e8d865285668d +docfiles size=16 + RELOC/doc/fonts/qpxqtx/00README + RELOC/doc/fonts/qpxqtx/p01tst.tex + RELOC/doc/fonts/qpxqtx/p02tst.tex + RELOC/doc/fonts/qpxqtx/qpxsymb.tex + RELOC/doc/fonts/qpxqtx/qpxtest.tex + RELOC/doc/fonts/qpxqtx/qtxsymb.tex + RELOC/doc/fonts/qpxqtx/qtxtest.tex + RELOC/doc/fonts/qpxqtx/t01tst.tex + RELOC/doc/fonts/qpxqtx/t02tst.tex +runfiles size=30 + RELOC/fonts/tfm/public/qpxqtx/qpxbmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qpxbmia.tfm + RELOC/fonts/tfm/public/qpxqtx/qpxmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qpxmia.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxbmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxbmia.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxmia.tfm + RELOC/fonts/vf/public/qpxqtx/qpxbmi.vf + RELOC/fonts/vf/public/qpxqtx/qpxbmia.vf + RELOC/fonts/vf/public/qpxqtx/qpxmi.vf + RELOC/fonts/vf/public/qpxqtx/qpxmia.vf + RELOC/fonts/vf/public/qpxqtx/qtxbmi.vf + RELOC/fonts/vf/public/qpxqtx/qtxbmia.vf + RELOC/fonts/vf/public/qpxqtx/qtxmi.vf + RELOC/fonts/vf/public/qpxqtx/qtxmia.vf + RELOC/tex/generic/qpxqtx/amspbold.tex + RELOC/tex/generic/qpxqtx/amsqpx.def + RELOC/tex/generic/qpxqtx/amsqpx.tex + RELOC/tex/generic/qpxqtx/amsqtx.def + RELOC/tex/generic/qpxqtx/amsqtx.tex + RELOC/tex/generic/qpxqtx/amstbold.tex + RELOC/tex/generic/qpxqtx/qpxmath.sty + RELOC/tex/generic/qpxqtx/qpxmath.tex + RELOC/tex/generic/qpxqtx/qtxmath.sty + RELOC/tex/generic/qpxqtx/qtxmath.tex + +name qrbill +category Package +revision 56190 +shortdesc Create QR bills using LaTeX +relocated 1 +longdesc This LaTeX package provides support for creating QR-bills for +longdesc the new Swiss payment standards. This open source +longdesc implementation is intended to offer a free option to support +longdesc these regulations and can be adapted for international use. +longdesc Packages loaded by qrbill are expl3, fontspec (except if one is +longdesc using a custom font setup), graphicx, scrbase, qrcode, iftex, +longdesc l3keys2e, and numprint. +containersize 6888 +containerchecksum a0b85af4d872348264b7a8ac673bbfc3f4e0a7c36fa7edfa2fba78ee144bdce908adff6d3c363182693bd4ad8a75c0cca978ecd52c1442656ec1cc72f1506f0c +doccontainersize 74584 +doccontainerchecksum 9aeafdc2506e7a885dbd1f54bc827f72c86b994bc766ef570ad82b16e960f54547bb6f970772dcd58b75304ae33c00d0d339a969c902fc75b8431037af9dd9b9 +docfiles size=22 + RELOC/doc/latex/qrbill/README.md details="Readme" + RELOC/doc/latex/qrbill/qrbill-letter-demo.tex + RELOC/doc/latex/qrbill/qrbill-standalone-demo.tex + RELOC/doc/latex/qrbill/qrbill.pdf details="Package documentation" +srccontainersize 11564 +srccontainerchecksum 9849b7e74ce53c526b8d28122852ec9c5ceb9873c1f57d067aaa8bfe09f09a6d996a45695a6e564bf395275b0b0e3de039651669e2c287cca1095cc628bd27ea +srcfiles size=12 + RELOC/source/latex/qrbill/qrbill.dtx + RELOC/source/latex/qrbill/qrbill.ins +runfiles size=9 + RELOC/tex/latex/qrbill/qrbill-vocab.csv + RELOC/tex/latex/qrbill/qrbill.sty + RELOC/tex/latex/qrbill/qrbill_swiss-cross.pdf + RELOC/tex/latex/qrbill/swiss.qrbill-cfg.tex +catalogue-contact-bugs https://github.com/peitex/qrbill/issues +catalogue-contact-repository https://github.com/peitex/qrbill +catalogue-ctan /macros/latex/contrib/qrbill +catalogue-license lppl1.3c +catalogue-topics qrcode invoice swiss expl3 +catalogue-version 1.02 + +name qrcode +category Package +revision 36065 +shortdesc Generate QR codes in LaTeX +relocated 1 +longdesc The package generates QR (Quick Response) codes in LaTeX, +longdesc without the need for PSTricks or any other graphical package. +containersize 19636 +containerchecksum 65ecc00d46d06f8a36cb1f170c12692cf7ef8c0cf9e68bbdc6a7da6b0a7f5fcda6a2e065b8a474609556518ab07c2d12f19a9fdaa0b6339aba94cf35184e26f9 +doccontainersize 245688 +doccontainerchecksum 406d1cf238b397412a57ed695a39af0ef32de007b94e8650cf591c63882d05d7df18061fbd2b350347c052091202a38de1ceef19f61fa58de38c2e73de6b01b2 +docfiles size=66 + RELOC/doc/latex/qrcode/README details="Readme" + RELOC/doc/latex/qrcode/qrcode.pdf details="Package documentation" +srccontainersize 26296 +srccontainerchecksum 3e344af4bcd4e0d2b49638c33177f600f1e3ff24416ad503f55b3376fe7323ab381c7ee695351923cfc06b54c9ba8b3d1f4705f5377164f2b43ee04ccc565955 +srcfiles size=30 + RELOC/source/latex/qrcode/qrcode.dtx + RELOC/source/latex/qrcode/qrcode.ins +runfiles size=24 + RELOC/tex/latex/qrcode/qrcode.sty +catalogue-also pst-barcode +catalogue-ctan /macros/latex/contrib/qrcode +catalogue-license lppl1.3 +catalogue-topics barcode qrcode rule +catalogue-version 1.51 + +name qsharp +category Package +revision 49722 +shortdesc Syntax highlighting for the Q# language +relocated 1 +longdesc The package provides syntax highlighting for the Q# language, a +longdesc domain-specific language for quantum programming. +containersize 1120 +containerchecksum 29aa0808112111d088f8795ec87ca3df6f2e10f0a8e91347ddc7101733aadc72ba90356f7e4b39fce6484e04975d3e151205a5d5272789ecd414cd0a6afc243b +doccontainersize 7208 +doccontainerchecksum 69d74a3ed755d16957a2a844ae624a15e18813fdf02595c2e4ae2dc0cf13b20a1db1c4f49c20db3e4d3343c586411a88c7ecfe6367c4c1efea1a8cb2730cf8f3 +docfiles size=7 + RELOC/doc/latex/qsharp/Install.ps1 + RELOC/doc/latex/qsharp/LICENSE + RELOC/doc/latex/qsharp/README.md details="Readme" +srccontainersize 2620 +srccontainerchecksum d8ad97902be6b5f29db2cdd7d27049407ebffe5efc8bf0f0ac64e64ed2e3df8f4fe86b8e023ae7dde4368740fdebf22ff6420a32854d5745e8fb147005788226 +srcfiles size=3 + RELOC/source/latex/qsharp/qsharp.dtx + RELOC/source/latex/qsharp/qsharp.ins +runfiles size=1 + RELOC/tex/latex/qsharp/qsharp.sty +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-license lppl1.3c +catalogue-topics synt-hlt +catalogue-version 0.3.1901.1401 + +name qstest +category Package +revision 15878 +shortdesc Bundle for unit tests and pattern matching +relocated 1 +longdesc This is the public release of the qstest bundle (written for +longdesc DocScape Publisher) (C) 2006, 2007 QuinScape GmbH. The bundle +longdesc contains the packages 'makematch' for matching patterns to +longdesc targets (with a generalization in the form of pattern lists and +longdesc keyword lists), and 'qstest' for performing unit tests, +longdesc allowing the user to run a number of logged tests ensuring the +longdesc consistency of values, properties and call sequences during +longdesc execution of test code. Both packages make extensive use of in +longdesc their package documentation, providing illustrated examples +longdesc that are automatically verified to work as expected. Check the +longdesc README file for details. +containersize 4872 +containerchecksum 1461a7e5a88a75d1976b8bf0b6b9a685c7e68bd5983ea1549b277627e20b8e7d0b890536c8e8357e168914220c168cc2be2e9a688b512e16d613107c50622f79 +doccontainersize 218496 +doccontainerchecksum a2e138b5de9012b637cc98b18e5aa64b2c9384f03beceda724c86f1e81e03b6da6b19de27fe15724463edc61520d035495f2f039a2d541b4761c44c55473d1c9 +docfiles size=68 + RELOC/doc/latex/qstest/README details="Readme" + RELOC/doc/latex/qstest/makematch-qs.tex + RELOC/doc/latex/qstest/makematch.pdf details="makematch Package documentation" + RELOC/doc/latex/qstest/qstest-qs.tex + RELOC/doc/latex/qstest/qstest.pdf details="qstest Package documentation" +srccontainersize 23592 +srccontainerchecksum 1ff5ae66e8620b298f4cb5ca4d53e420ed0e89e476edae48f1f37fb1785e8bf4693da410cf2149d690734ad11fcd669152ffa7a560bde94e923e772560f8ca19 +srcfiles size=27 + RELOC/source/latex/qstest/Makefile + RELOC/source/latex/qstest/makematch.drv + RELOC/source/latex/qstest/makematch.dtx + RELOC/source/latex/qstest/qstest.drv + RELOC/source/latex/qstest/qstest.dtx + RELOC/source/latex/qstest/qstest.ins +runfiles size=5 + RELOC/tex/latex/qstest/makematch.sty + RELOC/tex/latex/qstest/qstest.sty +catalogue-ctan /macros/latex/contrib/qstest +catalogue-license lppl +catalogue-topics units + +name qsymbols +category Package +revision 15878 +shortdesc Maths symbol abbreviations +relocated 1 +longdesc Provides macros for defining systematic mnemonic abbreviations, +longdesc starting with ` for math symbols and \" for arrows, using +longdesc standard symbols as well as those from the amsfonts bundle and +longdesc the stmaryrd package. +containersize 7680 +containerchecksum b910db8e0e33bbc111a95db914958a3261fa89061677d999876b026d25609326b83444a7c6b77ee4a39d60eaedff448ec662dddf9511e99c826a3bddbf0b2861 +doccontainersize 129428 +doccontainerchecksum c633094c09c291666f1953d8d8d8570d71b773e70f90c805cb01981117ea4212ce8cbd4ffabd9ca5aaee07637d19c6e627856115b3943f9d5c414034eee500ea +docfiles size=50 + RELOC/doc/latex/qsymbols/CATALOG + RELOC/doc/latex/qsymbols/COPYING + RELOC/doc/latex/qsymbols/MANIFEST + RELOC/doc/latex/qsymbols/README details="Readme" + RELOC/doc/latex/qsymbols/qsymbols.pdf details="Package documentation" + RELOC/doc/latex/qsymbols/qsymbols.tex +srccontainersize 1652 +srccontainerchecksum 5c88d0d929f6491b6b9df65ac3ce2be28ee5461d5cae5bc2ecaba64a9012ce4d84cf3f63bec19971ca2e8ec37fa869b8707c8d6ebb9e80f8302cc04127873962 +srcfiles size=1 + RELOC/source/latex/qsymbols/Makefile +runfiles size=7 + RELOC/tex/latex/qsymbols/qsymbols.sty +catalogue-ctan /macros/latex/contrib/qsymbols +catalogue-license gpl +catalogue-topics shortcut + +name qtree +category Package +revision 15878 +shortdesc Draw tree structures +relocated 1 +longdesc The package offers support for drawing tree diagrams, and is +longdesc especially suitable for linguistics use. It allows trees to be +longdesc specified in a simple bracket notation, automatically +longdesc calculates branch sizes, and supports both DVI/PostScript and +longdesc PDF output by use of pict2e facilities. The package is a +longdesc development of the existing qobitree package, offering a new +longdesc front end. +containersize 8156 +containerchecksum 9f381007c2526f51483d7c190cd7cf86cb399e95475841900ffa8f522d3da71f4f451b42562783d756e252e513ca1f9e9e8586517057a8f6b881cbbecb5c3987 +doccontainersize 209544 +doccontainerchecksum c16142acf0c3f9e4f347c9ceff7a6c29557c0c2c4d2232ce9df146279b3cd4e1019e703479f426709a3feeb6ac46fb91f7dcee8cad35b19c83c9893661322f96 +docfiles size=75 + RELOC/doc/latex/qtree/README details="Readme" + RELOC/doc/latex/qtree/qarrows.pdf details="Use of tree-dvips with qtree" language="en" + RELOC/doc/latex/qtree/qarrows.tex + RELOC/doc/latex/qtree/qtreenotes.pdf details="Package documentation" language="en" + RELOC/doc/latex/qtree/qtreenotes.tex +runfiles size=10 + RELOC/tex/latex/qtree/qtree.sty +catalogue-also tree-dvips +catalogue-ctan /macros/latex/contrib/qtree +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 3.1b + +name qualitype +category Package +revision 54512 +shortdesc The QualiType font collection +relocated 1 +longdesc These 45 fonts were created by QualiType. With the kind +longdesc permisison of John Colletti, these fonts have been released as +longdesc free and open-source. +containersize 2404264 +containerchecksum c507e8b712f2ce40474ebf2c072654f00d71f1c21156cecced7ed40ea9beac07790a67250ebb7a535c19a266573edb5dbf8d1fe4d661b7828428cd1c7574a1c9 +doccontainersize 26460 +doccontainerchecksum 20ddd865622520e4f9a7a1472c03f3c18bac039dbbe10849364a8ae1d0ee7d8771f30a02511a701962b2db25c79c74d3c2aa14f42951c7df9c0feb199092d510 +docfiles size=13 + RELOC/doc/fonts/qualitype/COPYING-QUALITYPE + RELOC/doc/fonts/qualitype/README details="Readme" + RELOC/doc/fonts/qualitype/qualitype-doc.pdf details="Package documentation" + RELOC/doc/fonts/qualitype/qualitype-doc.tex +runfiles size=1070 + RELOC/fonts/opentype/public/qualitype/QTAbbie.otf + RELOC/fonts/opentype/public/qualitype/QTAgateType-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTAgateType-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTAgateType.otf + RELOC/fonts/opentype/public/qualitype/QTAncientOlive-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTAncientOlive.otf + RELOC/fonts/opentype/public/qualitype/QTAntiquePost.otf + RELOC/fonts/opentype/public/qualitype/QTArabian.otf + RELOC/fonts/opentype/public/qualitype/QTArnieB.otf + RELOC/fonts/opentype/public/qualitype/QTArtiston.otf + RELOC/fonts/opentype/public/qualitype/QTAtchen.otf + RELOC/fonts/opentype/public/qualitype/QTAvanti-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTAvanti.otf + RELOC/fonts/opentype/public/qualitype/QTBasker-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTBasker-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTBasker.otf + RELOC/fonts/opentype/public/qualitype/QTBeckman.otf + RELOC/fonts/opentype/public/qualitype/QTBengal-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTBengal.otf + RELOC/fonts/opentype/public/qualitype/QTBlackForest.otf + RELOC/fonts/opentype/public/qualitype/QTBlimpo.otf + RELOC/fonts/opentype/public/qualitype/QTBodini-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTBodini-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTBodini.otf + RELOC/fonts/opentype/public/qualitype/QTBodiniPoster-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTBodiniPoster.otf + RELOC/fonts/opentype/public/qualitype/QTBookmann-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTBookmann-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTBookmann-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTBookmann.otf + RELOC/fonts/opentype/public/qualitype/QTBoulevard.otf + RELOC/fonts/opentype/public/qualitype/QTBrushStroke.otf + RELOC/fonts/opentype/public/qualitype/QTCaligulatype.otf + RELOC/fonts/opentype/public/qualitype/QTCanaithtype.otf + RELOC/fonts/opentype/public/qualitype/QTCascadetype.otf + RELOC/fonts/opentype/public/qualitype/QTCaslan-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTCaslan-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTCaslan-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTCaslan.otf + RELOC/fonts/opentype/public/qualitype/QTCaslanOpen.otf + RELOC/fonts/opentype/public/qualitype/QTCasual.otf + RELOC/fonts/opentype/public/qualitype/QTChanceryType-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTChanceryType-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTChanceryType.otf + RELOC/fonts/opentype/public/qualitype/QTChicagoland.otf + RELOC/fonts/opentype/public/qualitype/QTClaytablet.otf + RELOC/fonts/opentype/public/qualitype/QTCloisteredMonk.otf + RELOC/fonts/opentype/public/qualitype/QTCoronation.otf + RELOC/fonts/opentype/public/qualitype/QTDeuce.otf + RELOC/fonts/opentype/public/qualitype/QTDingBits.otf + RELOC/fonts/opentype/public/qualitype/QTDoghaus.otf + RELOC/fonts/opentype/public/qualitype/QTDoghausHeavy.otf + RELOC/fonts/opentype/public/qualitype/QTDoghausLight.otf + RELOC/fonts/opentype/public/qualitype/QTDublinIrish.otf + RELOC/fonts/opentype/public/qualitype/QTEraType-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTEraType.otf + RELOC/fonts/opentype/public/qualitype/QTEurotype-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTEurotype.otf + RELOC/fonts/opentype/public/qualitype/QTFloraline-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTFloraline.otf + RELOC/fonts/opentype/public/qualitype/QTFlorencia.otf + RELOC/fonts/opentype/public/qualitype/QTFraktur.otf + RELOC/fonts/opentype/public/qualitype/QTFrank.otf + RELOC/fonts/opentype/public/qualitype/QTFrankHeavy.otf + RELOC/fonts/opentype/public/qualitype/QTFrizQuad-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTFrizQuad.otf + RELOC/fonts/opentype/public/qualitype/QTFuture-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTFuture.otf + RELOC/fonts/opentype/public/qualitype/QTFuturePoster.otf + RELOC/fonts/opentype/public/qualitype/QTGaromand-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTGaromand-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTGaromand-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTGaromand.otf + RELOC/fonts/opentype/public/qualitype/QTGhoulFace.otf + RELOC/fonts/opentype/public/qualitype/QTGraphLite.otf + RELOC/fonts/opentype/public/qualitype/QTGraveure-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTGraveure.otf + RELOC/fonts/opentype/public/qualitype/QTGreece.otf + RELOC/fonts/opentype/public/qualitype/QTHandwriting.otf + RELOC/fonts/opentype/public/qualitype/QTHeidelbergType.otf + RELOC/fonts/opentype/public/qualitype/QTHelvet-Black.otf + RELOC/fonts/opentype/public/qualitype/QTHelvet-BoldOutline.otf + RELOC/fonts/opentype/public/qualitype/QTHelvetCnd-Black.otf + RELOC/fonts/opentype/public/qualitype/QTHelvetCnd-Light.otf + RELOC/fonts/opentype/public/qualitype/QTHelvetCnd.otf + RELOC/fonts/opentype/public/qualitype/QTHoboken.otf + RELOC/fonts/opentype/public/qualitype/QTHowardType.otf + RELOC/fonts/opentype/public/qualitype/QTHowardTypeFat.otf + RELOC/fonts/opentype/public/qualitype/QTImpromptu.otf + RELOC/fonts/opentype/public/qualitype/QTJupiter.otf + RELOC/fonts/opentype/public/qualitype/QTKooper-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTKooper.otf + RELOC/fonts/opentype/public/qualitype/QTKorrin-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTKorrin.otf + RELOC/fonts/opentype/public/qualitype/QTKung-Fu.otf + RELOC/fonts/opentype/public/qualitype/QTLautrecType.otf + RELOC/fonts/opentype/public/qualitype/QTLetterGoth-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTLetterGoth-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTLetterGoth-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTLetterGoth.otf + RELOC/fonts/opentype/public/qualitype/QTLinoscroll.otf + RELOC/fonts/opentype/public/qualitype/QTLinostroke.otf + RELOC/fonts/opentype/public/qualitype/QTLondonScroll.otf + RELOC/fonts/opentype/public/qualitype/QTMagicMarker.otf + RELOC/fonts/opentype/public/qualitype/QTMerryScript.otf + RELOC/fonts/opentype/public/qualitype/QTMilitary.otf + RELOC/fonts/opentype/public/qualitype/QTOKCorral-Cnd.otf + RELOC/fonts/opentype/public/qualitype/QTOKCorral-Ext.otf + RELOC/fonts/opentype/public/qualitype/QTOKCorral.otf + RELOC/fonts/opentype/public/qualitype/QTOldGoudy-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTOldGoudy-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTOldGoudy.otf + RELOC/fonts/opentype/public/qualitype/QTOptimum-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTOptimum-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTOptimum-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTOptimum.otf + RELOC/fonts/opentype/public/qualitype/QTPalatine-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTPalatine-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTPalatine.otf + RELOC/fonts/opentype/public/qualitype/QTPandora.otf + RELOC/fonts/opentype/public/qualitype/QTParisFrance.otf + RELOC/fonts/opentype/public/qualitype/QTPeignoir-Lite.otf + RELOC/fonts/opentype/public/qualitype/QTPeignoir.otf + RELOC/fonts/opentype/public/qualitype/QTPiltdown.otf + RELOC/fonts/opentype/public/qualitype/QTPristine-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTPristine-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTPristine-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTPristine.otf + RELOC/fonts/opentype/public/qualitype/QTRobotic2000.otf + RELOC/fonts/opentype/public/qualitype/QTSanDiego.otf + RELOC/fonts/opentype/public/qualitype/QTSchoolCentury-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTSchoolCentury-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTSchoolCentury-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTSchoolCentury.otf + RELOC/fonts/opentype/public/qualitype/QTSlogantype.otf + RELOC/fonts/opentype/public/qualitype/QTSnowCaps.otf + RELOC/fonts/opentype/public/qualitype/QTStoryTimeCaps.otf + RELOC/fonts/opentype/public/qualitype/QTTechtone-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTTechtone-BoldItalic.otf + RELOC/fonts/opentype/public/qualitype/QTTechtone-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTTechtone.otf + RELOC/fonts/opentype/public/qualitype/QTTheatre.otf + RELOC/fonts/opentype/public/qualitype/QTTimeOutline.otf + RELOC/fonts/opentype/public/qualitype/QTTumbleweed.otf + RELOC/fonts/opentype/public/qualitype/QTUSA-Uncial.otf + RELOC/fonts/opentype/public/qualitype/QTVagaRound-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTVagaRound.otf + RELOC/fonts/opentype/public/qualitype/QTWeise-Bold.otf + RELOC/fonts/opentype/public/qualitype/QTWeise-Italic.otf + RELOC/fonts/opentype/public/qualitype/QTWeise.otf + RELOC/fonts/opentype/public/qualitype/QTWestEnd.otf +catalogue-ctan /fonts/qualitype +catalogue-license ofl gpl2+ +catalogue-topics font font-body font-serif font-proportional font-otf font-supp font-sans font-collection font-novelty + +name quantikz +category Package +revision 54911 +shortdesc Draw quantum circuit diagrams +relocated 1 +longdesc The purpose of this package is to extend TikZ with the +longdesc functionality for drawing quantum circuit diagrams. +containersize 9792 +containerchecksum e31e50dc3f854f7e2914214efa945e881ecd7ef17eb9a5b8017d911b0ea7bb8f57029a956aea9afecce551c289f08d5c9faed5f9b785d26f25cfd52f64a2ec6f +doccontainersize 457104 +doccontainerchecksum aba9b0f6466f62bd806b5c02671d42d344c18a353f292c3193053908ef948801b0883bf9a47c51ff12b0059a2dc6040028bda01fe51f113ad576f0e8c90c95c6 +docfiles size=140 + RELOC/doc/latex/quantikz/README.md details="Readme" + RELOC/doc/latex/quantikz/quantikz.pdf details="Package documentation" + RELOC/doc/latex/quantikz/quantikz.tex +runfiles size=12 + RELOC/tex/latex/quantikz/quantikz.sty + RELOC/tex/latex/quantikz/tikzlibraryquantikz.code.tex +catalogue-also qcircuit +catalogue-ctan /graphics/pgf/contrib/quantikz +catalogue-license cc-by-4 +catalogue-topics graphics pgf-tikz diagram-circ +catalogue-version 0.9.6 + +name quantumarticle +category Package +revision 56862 +shortdesc Document class for submissions to the Quantum journal +relocated 1 +longdesc This package provides the preferred document class for papers +longdesc to be submitted to "Quantum -- the open journal of quantum +longdesc science". It is based on the widely used article document class +longdesc and designed to allow a seamless transition from documents +longdesc typeset with the article, revtex4-1, and elsarticle document +longdesc classes. The quantumarticle document class also offers an +longdesc option to remove the Quantum-related branding. In that way, +longdesc users appreciating the esthetics of this document class can use +longdesc it for their notes as well. +containersize 14560 +containerchecksum 2d06c5ba42e81ff65171a37ad78e6bc8331bb4eb294056d6955bd1cc48e8c257c6eccf1055772147f6435094b934ea6792ea638c9eca58e94f3c1e387ecf3375 +doccontainersize 702388 +doccontainerchecksum 6de1d9d40a6055f5e7282b532c6f4078d749620fc720c9d23841f5a335bd7bf5d37017ee82fff8f91811b2ea32b8792936592de20c9e48001bbc942f673f09d7 +docfiles size=192 + RELOC/doc/latex/quantumarticle/README.md details="Readme" + RELOC/doc/latex/quantumarticle/quantum-template.pdf details="Example of use (template)" + RELOC/doc/latex/quantumarticle/quantum-template.tex + RELOC/doc/latex/quantumarticle/quantumarticle.pdf details="Package documentation" + RELOC/doc/latex/quantumarticle/quantumarticle.tex +runfiles size=15 + RELOC/tex/latex/quantumarticle/quantumarticle.cls +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-license lppl1.3c +catalogue-topics class journalpub physics +catalogue-version 5.1 + +name quattrocento +category Package +revision 56020 +shortdesc Quattrocento and Quattrocento Sans fonts with LaTeX support +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Quattrocento and Quattrocento Sans families of +longdesc fonts, designed by Pablo Impallari; the fonts themselves are +longdesc also provided, in both TrueType and Type1 format. Quattrocento +longdesc is a classic typeface with wide and open letterforms, and great +longdesc x-height, which makes it very legible for body text at small +longdesc sizes. Tiny details that only show up at bigger sizes make it +longdesc also great for display use. Quattrocento Sans is the perfect +longdesc sans-serif companion for Quattrocento. +execute addMap quattrocento.map +containersize 729188 +containerchecksum 8ef86d388e28f0fcfd66bfbf190f4a997029224387d3c18e81f7f1790d6440aeff72125608b471817911cb2deec1f0641e7a1c166bd0e04b8ce550800169a691 +doccontainersize 142552 +doccontainerchecksum c4727b3aef74633921949c5efc9b7486cd3537fa8bc738b36be5005ba4dd599f907238a6ee6d1bca7907b1b23c64d1e7d32565959a2d172267bb0910339f09f7 +docfiles size=38 + RELOC/doc/fonts/quattrocento/OFL.txt + RELOC/doc/fonts/quattrocento/README details="Readme (the primary documentation)" + RELOC/doc/fonts/quattrocento/quattrocento-samples.pdf details="Font samples" + RELOC/doc/fonts/quattrocento/quattrocento-samples.tex +runfiles size=713 + RELOC/fonts/enc/dvips/quattrocento/qcntr_3fwis5.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_464xel.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_4btof3.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_564kqe.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_6abmaa.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_arxkdo.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_bwr4r4.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_cpzb4n.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_dn5k7b.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_ezrk6a.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_iyhp72.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_lten7n.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_lzgh2n.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_mamppr.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_mizmmx.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_mntdbg.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_qwkegf.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_rf6b27.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_tldjzh.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_vzn2dc.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_wczi5x.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_xvywtm.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_y54nu7.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_zievlx.enc + RELOC/fonts/enc/dvips/quattrocento/qcntr_zq54sp.enc + RELOC/fonts/map/dvips/quattrocento/quattrocento.map + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattro-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattroSans-Regular-sup-t1.tfm + RELOC/fonts/truetype/impallari/quattrocento/Quattro-BoldItalic.ttf + RELOC/fonts/truetype/impallari/quattrocento/Quattro-Italic.ttf + RELOC/fonts/truetype/impallari/quattrocento/Quattrocento-Bold.ttf + RELOC/fonts/truetype/impallari/quattrocento/Quattrocento-Regular.ttf + RELOC/fonts/truetype/impallari/quattrocento/QuattrocentoSans-Bold.ttf + RELOC/fonts/truetype/impallari/quattrocento/QuattrocentoSans-BoldItalic.ttf + RELOC/fonts/truetype/impallari/quattrocento/QuattrocentoSans-Italic.ttf + RELOC/fonts/truetype/impallari/quattrocento/QuattrocentoSans-Regular.ttf + RELOC/fonts/type1/impallari/quattrocento/Quattro-Bold.pfb + RELOC/fonts/type1/impallari/quattrocento/Quattro-BoldItalic.pfb + RELOC/fonts/type1/impallari/quattrocento/Quattro-Italic.pfb + RELOC/fonts/type1/impallari/quattrocento/Quattro-Regular.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattroSans-Bold.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattroSans-BoldItalic.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattroSans-Italic.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattroSans-Regular.pfb + RELOC/fonts/vf/impallari/quattrocento/Quattro-Bold-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Bold-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Bold-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-BoldItalic-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Italic-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Italic-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Italic-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Regular-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Regular-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Regular-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattro-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Bold-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Bold-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Bold-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Italic-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Italic-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Italic-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Regular-lf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Regular-lf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Regular-lf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattroSans-Regular-sup-t1.vf + RELOC/tex/latex/quattrocento/LY1Quattro-LF.fd + RELOC/tex/latex/quattrocento/LY1Quattro-Sup.fd + RELOC/tex/latex/quattrocento/LY1QuattroSans-LF.fd + RELOC/tex/latex/quattrocento/LY1QuattroSans-Sup.fd + RELOC/tex/latex/quattrocento/OT1Quattro-LF.fd + RELOC/tex/latex/quattrocento/OT1Quattro-Sup.fd + RELOC/tex/latex/quattrocento/OT1QuattroSans-LF.fd + RELOC/tex/latex/quattrocento/OT1QuattroSans-Sup.fd + RELOC/tex/latex/quattrocento/T1Quattro-LF.fd + RELOC/tex/latex/quattrocento/T1Quattro-Sup.fd + RELOC/tex/latex/quattrocento/T1QuattroSans-LF.fd + RELOC/tex/latex/quattrocento/T1QuattroSans-Sup.fd + RELOC/tex/latex/quattrocento/TS1Quattro-LF.fd + RELOC/tex/latex/quattrocento/TS1QuattroSans-LF.fd + RELOC/tex/latex/quattrocento/quattrocento.sty +catalogue-ctan /fonts/quattrocento +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-serif font-sans font-ttf font-type1 font-supp font-t1enc + +name quicktype +category Package +revision 42183 +shortdesc LaTeX package for quick typesetting +relocated 1 +longdesc Intended for the quick typesetting of basic documents using +longdesc LaTeX using shortcuts to existing commands and specific +longdesc commands for quick formatting and creation of tables and title +longdesc pages with a graphic image. +containersize 1024 +containerchecksum 4950c1c7a4536cb64d70fe8c08a69fd9336825973a7c8a669ba48bd66476888775d1ad288d34d4b83a9d674624960e3d17de1c972f52bd7f329eff971ec0f185 +doccontainersize 181576 +doccontainerchecksum 6e43ad0d932eb2237106fd991dcd25e5bd536cb64db5988c958b138af294fbc777dc6ce2c2b791e3875a2bdeaf5a10be7d15585b44e7487017925e0068e898f6 +docfiles size=47 + RELOC/doc/latex/quicktype/QT.png + RELOC/doc/latex/quicktype/Quicktype.pdf details="Package documentation" + RELOC/doc/latex/quicktype/QuicktypeSample.pdf + RELOC/doc/latex/quicktype/README.txt details="Readme" +runfiles size=1 + RELOC/tex/latex/quicktype/quicktype.sty +catalogue-ctan /macros/latex/contrib/quicktype +catalogue-license lppl1.3 +catalogue-topics shortcut +catalogue-version 0.1 + +name quiz2socrative +category Package +revision 52276 +shortdesc Prepare questions for socrative quizzes +relocated 1 +longdesc This is a LaTeX package for preparing multiple choice, +longdesc true/false, and short answer questions. Its main purpose is to +longdesc offer a tool to easily insert rather complicated mathematical +longdesc material in socrative quizzes (see https://socrative.com). The +longdesc package requires the following other LaTeX packages: calc, +longdesc etoolbox, graphicx, ifthen, listofitems, moresize, TikZ, +longdesc pgfmath, xcolor, and xparse. +containersize 2400 +containerchecksum f4fba8eb850a90288a9b3e7f4571f5df560e09e7cba608f7bf2bb3090db5a2c6bc7fc7240ef2e3cef9d37fe1a0105e74c4c63c39a7c1793a1fedc6f86772eac5 +doccontainersize 212988 +doccontainerchecksum a51cc19b7d13c0bd4f1ed07c6292940176104b5fb381dece7709a5bc1332edb4606cdd4a66ee5a4e4886754c4d274aeab40666eb45328dcc6c465a29a1c4ae29 +docfiles size=69 + RELOC/doc/latex/quiz2socrative/README.txt details="Readme" + RELOC/doc/latex/quiz2socrative/quiz2socrative-IT.pdf details="Package documentation" language="it" + RELOC/doc/latex/quiz2socrative/quiz2socrative-IT.tex + RELOC/doc/latex/quiz2socrative/sample-quiz2socrative-pdfQuiz.pdf details="Example (sample quiz)" language="it" + RELOC/doc/latex/quiz2socrative/sample-quiz2socrative-pdfQuiz.tex + RELOC/doc/latex/quiz2socrative/sample-quiz2socrative-socrativeQuiz+standalone.pdf + RELOC/doc/latex/quiz2socrative/sample-quiz2socrative-socrativeQuiz+standalone.tex +runfiles size=2 + RELOC/tex/latex/quiz2socrative/quiz2socrative.sty +catalogue-ctan /macros/latex/contrib/quiz2socrative +catalogue-license lppl1.3c +catalogue-topics exam +catalogue-version 1.0 + +name quotchap +category Package +revision 56926 +shortdesc Decorative chapter headings +relocated 1 +longdesc A package for creating decorative chapter headings with +longdesc quotations. Uses graphical and coloured output and by default +longdesc needs the "Adobe standard font set" (as supported by psnfss). +containersize 2936 +containerchecksum 7d94162630e53133b79e33b60abb7c4664d3e486da611e37d48593757f39b0526831cedd0c236ce9b4d8ffc85b35734acadc98236435345180b999d7ea68c1f9 +doccontainersize 292964 +doccontainerchecksum e2fa71ee21ad019ef785a3c74ddab5f232d3a6d1e9fcdcedb34c216eb5e6d44abbafcaae5d1c4557bc1e4aae92561a75ba2c3723707328a12cdb6ff4c1b72dbf +docfiles size=80 + RELOC/doc/latex/quotchap/README details="Readme" + RELOC/doc/latex/quotchap/document.pdf details="Sample document (chapter headings only)" + RELOC/doc/latex/quotchap/document.tex + RELOC/doc/latex/quotchap/quotchap.pdf details="Package documentation" +srccontainersize 7588 +srccontainerchecksum eed36464f1b04852e8af08c5fd91c42ccccbbaeccad565e6f338ed5c87b003b2dd1704e1dad0ce0e49651461b637e8ed613399a0ae8122081e9084e47704665a +srcfiles size=6 + RELOC/source/latex/quotchap/quotchap.dtx + RELOC/source/latex/quotchap/quotchap.ins +runfiles size=2 + RELOC/tex/latex/quotchap/quotchap.sty +catalogue-ctan /macros/latex/contrib/quotchap +catalogue-license gpl2 +catalogue-topics headings +catalogue-version 1.3 + +name quoting +category Package +revision 32818 +shortdesc Consolidated environment for displayed text +relocated 1 +longdesc As an alternative to the LaTeX standard environments quotation +longdesc and quote, the package provides a consolidated environment for +longdesc displayed text. First-line indentation may be activated by +longdesc adding a blank line before the quoting environment. A key-value +longdesc interface (using kvoptions) allows the user to configure font +longdesc properties and spacing and to control orphans within and after +longdesc the environment. +containersize 1832 +containerchecksum 44a9c726a5a9158fcd13fd93785101d2a9a940f34da3d52efd5be1a0467cd76aeaf4706b945a8de0b4e0b4a90740567cfad87f08aaa92e7d4eeae8eb9f7bbc73 +doccontainersize 307136 +doccontainerchecksum b3990965effff7529a7c18cdd3a08af337be3766ffe535feaf54db504a47b0f054af41511a635c3e70c34d3025df419af702d319240ee673f7462d2cf4ccbbc2 +docfiles size=76 + RELOC/doc/latex/quoting/README details="Readme" + RELOC/doc/latex/quoting/quoting.pdf details="Package documentation" +srccontainersize 8292 +srccontainerchecksum a50186cf1b8b0f55ffe4b2e8447b1232c14c6b36aaa4635bba464de1648ed01adbfa13d8a184bdda8398573b2b9132948577e47e252bcb1014761f4318a76ede +srcfiles size=7 + RELOC/source/latex/quoting/quoting.dtx + RELOC/source/latex/quoting/quoting.ins +runfiles size=1 + RELOC/tex/latex/quoting/quoting.sty +catalogue-ctan /macros/latex/contrib/quoting +catalogue-license lppl1.3 +catalogue-topics quotation +catalogue-version 0.1c + +name quotmark +category Package +revision 15878 +shortdesc Consistent quote marks +relocated 1 +longdesc The package provides a means of ensuring consistent quote marks +longdesc throughout your document. The style can be changed either via +longdesc package option or command, and the package detects language +longdesc selections (from the babel or ngerman packages), and uses the +longdesc punctuation marks appropriate for the current language. The +longdesc author now considers the package obsolete, and recommends use +longdesc of csquotes in its place. +containersize 5160 +containerchecksum 9f21ef20aa9354b1347f00a52df65ea691fe4a00b05b794815279c070d05544611ccd8773cb7c9f8146a3a135f3100a06aaec48acacba255bae9a0654a2a9b53 +doccontainersize 140616 +doccontainerchecksum 6507fcf8639e780ab844700f6356abd8eb69df6158ee638d8471a112159f95a3df8f358fa40479eefad0cf09c34fc37d9292904ae159f2a79fea5acb93f6e542 +docfiles size=48 + RELOC/doc/latex/quotmark/CHANGES + RELOC/doc/latex/quotmark/README details="Readme" + RELOC/doc/latex/quotmark/quotmark.pdf details="Package documentation" + RELOC/doc/latex/quotmark/sample.tex +srccontainersize 8952 +srccontainerchecksum bbc423a9d6f6fca00c5c8dd9ed5dc084d094898ad5b27397147c8dae1f3bcb8a09f137f1c2c7066fb92d1cab1f5d16681612a528fc28ec4e7901b660f6c8eee8 +srcfiles size=16 + RELOC/source/latex/quotmark/quotmark.dtx + RELOC/source/latex/quotmark/quotmark.ins +runfiles size=39 + RELOC/tex/latex/quotmark/quotmark-UKenglish.def + RELOC/tex/latex/quotmark/quotmark-USenglish.def + RELOC/tex/latex/quotmark/quotmark-afrikaans.def + RELOC/tex/latex/quotmark/quotmark-brazil.def + RELOC/tex/latex/quotmark/quotmark-bulgarian.def + RELOC/tex/latex/quotmark/quotmark-catalan.def + RELOC/tex/latex/quotmark/quotmark-croatian.def + RELOC/tex/latex/quotmark/quotmark-czech.def + RELOC/tex/latex/quotmark/quotmark-danish.def + RELOC/tex/latex/quotmark/quotmark-dutch.def + RELOC/tex/latex/quotmark/quotmark-estonian.def + RELOC/tex/latex/quotmark/quotmark-finnish.def + RELOC/tex/latex/quotmark/quotmark-frenchb.def + RELOC/tex/latex/quotmark/quotmark-germanb.def + RELOC/tex/latex/quotmark/quotmark-greek.def + RELOC/tex/latex/quotmark/quotmark-hebrew.def + RELOC/tex/latex/quotmark/quotmark-icelandic.def + RELOC/tex/latex/quotmark/quotmark-irish.def + RELOC/tex/latex/quotmark/quotmark-italian.def + RELOC/tex/latex/quotmark/quotmark-magyar.def + RELOC/tex/latex/quotmark/quotmark-ngermanb.def + RELOC/tex/latex/quotmark/quotmark-norsk.def + RELOC/tex/latex/quotmark/quotmark-polish.def + RELOC/tex/latex/quotmark/quotmark-portuges.def + RELOC/tex/latex/quotmark/quotmark-romanian.def + RELOC/tex/latex/quotmark/quotmark-russianb.def + RELOC/tex/latex/quotmark/quotmark-serbian.def + RELOC/tex/latex/quotmark/quotmark-slovak.def + RELOC/tex/latex/quotmark/quotmark-slovene.def + RELOC/tex/latex/quotmark/quotmark-sorbian.def + RELOC/tex/latex/quotmark/quotmark-spanish.def + RELOC/tex/latex/quotmark/quotmark-swedish.def + RELOC/tex/latex/quotmark/quotmark-swiss.def + RELOC/tex/latex/quotmark/quotmark-turkish.def + RELOC/tex/latex/quotmark/quotmark-ukraineb.def + RELOC/tex/latex/quotmark/quotmark-welsh.def + RELOC/tex/latex/quotmark/quotmark.sty +catalogue-ctan /macros/latex/contrib/quotmark +catalogue-license lppl +catalogue-topics quotation +catalogue-version 1.0 + +name quran +category Package +revision 57601 +shortdesc An easy way to typeset any part of The Holy Quran +relocated 1 +longdesc This package offers the user an easy way to typeset The Holy +longdesc Quran. It has been inspired by the lipsum and ptext packages +longdesc and provides several macros for typesetting the whole or any +longdesc part of the Quran based on its popular division, including +longdesc surah, ayah, juz, hizb, quarter, and page. Besides the Arabic +longdesc original, translations to English, German, French, and Persian +longdesc are provided, as well as an English transliteration. +containersize 1630924 +containerchecksum 6df94a192fe113d39dd1a8e3223f7261caeca26243c1a229d7fb2aa4a34e976e23865b7c680cf9ef768ae182a418da64d8a52a757fa4d9f242a4e34aa3048a6a +doccontainersize 511440 +doccontainerchecksum e8343ba6708d1268082192dfb0bbab200aa5a45da958d772dd18af21d466d069558755ef9d738a680537e7efbb1276c6c52125de0eec7222f4fe2089bd500d67 +docfiles size=142 + RELOC/doc/latex/quran/README details="Readme" + RELOC/doc/latex/quran/quran-doc.pdf details="Package documentation" + RELOC/doc/latex/quran/quran-doc.tex + RELOC/doc/latex/quran/quran-test.pdf details="Example of use" + RELOC/doc/latex/quran/quran-test.tex + RELOC/doc/latex/quran/quran-test1.pdf + RELOC/doc/latex/quran/quran-test1.tex + RELOC/doc/latex/quran/quran-test2.pdf + RELOC/doc/latex/quran/quran-test2.tex + RELOC/doc/latex/quran/quran.png +runfiles size=2688 + RELOC/tex/latex/quran/quran-transde.def + RELOC/tex/latex/quran/quran-transen.def + RELOC/tex/latex/quran/quran-transfa.def + RELOC/tex/latex/quran/quran-transfr.def + RELOC/tex/latex/quran/quran-translt.def + RELOC/tex/latex/quran/quran.sty + RELOC/tex/latex/quran/qurantext-de.translation.def + RELOC/tex/latex/quran/qurantext-en.translation.def + RELOC/tex/latex/quran/qurantext-en.transliteration.def + RELOC/tex/latex/quran/qurantext-fa.translation.def + RELOC/tex/latex/quran/qurantext-fr.translation.def + RELOC/tex/latex/quran/qurantext-simple.def + RELOC/tex/latex/quran/qurantext-uthmani-min.def + RELOC/tex/latex/quran/qurantext-uthmani.def +catalogue-also quran-de quran-ur quran-bn lipsum ptext +catalogue-contact-bugs https://github.com/javadr/quran/issues +catalogue-contact-repository https://github.com/javadr/quran +catalogue-ctan /macros/unicodetex/latex/quran +catalogue-license lppl1.3c +catalogue-topics arabic macro-supp xetex dummy-gen +catalogue-version 1.81 + +name quran-bn +category Package +revision 57602 +shortdesc Bengali translations to the quran package +relocated 1 +longdesc The package is prepared for typesetting some Bengali +longdesc translations of the Holy Quran. It adds two Bengali +longdesc translations to the quran package. +containersize 535064 +containerchecksum 1630d336c3be2cd93a338f572f96d35b4ea40862fa6dc3549a8e2b5bcc3b83e663592c9af362fc06a964e1206c0b27d43fda99ee1cd1af5d00f53ed45b52c0e9 +doccontainersize 145988 +doccontainerchecksum 871baeb8f1af5e622d587144095a57fe20cd74a5fc95831581aae2f327163bdeadccc84686a4892e85e038b5a3611139bdbe001fbc870341d83bc30d478b3929 +docfiles size=41 + RELOC/doc/latex/quran-bn/README details="Readme" + RELOC/doc/latex/quran-bn/quran-bn-doc.pdf details="Package documentation" + RELOC/doc/latex/quran-bn/quran-bn-doc.tex + RELOC/doc/latex/quran-bn/quran-bn-test.pdf details="Example of use" + RELOC/doc/latex/quran-bn/quran-bn-test.tex + RELOC/doc/latex/quran-bn/quran.png +runfiles size=1231 + RELOC/tex/latex/quran-bn/quran-bn.sty + RELOC/tex/latex/quran-bn/qurantext-bni.translation.def + RELOC/tex/latex/quran-bn/qurantext-bnii.translation.def +catalogue-also quran lipsum ptext +catalogue-contact-bugs https://github.com/javadr/quran-bn/issues +catalogue-contact-repository https://github.com/javadr/quran-bn +catalogue-ctan /macros/unicodetex/latex/quran-bn +catalogue-license lppl1.3 +catalogue-topics bengali macro-supp dummy-gen +catalogue-version 0.1 + +name quran-de +category Package +revision 54191 +shortdesc German translations to the quran package +relocated 1 +longdesc The package is prepared for typesetting some German +longdesc translations of the Holy Quran. It adds three more German +longdesc translations to the quran package. +containersize 620164 +containerchecksum d969c3fd171102e4c47bf4eca383a22498fb6e95a5f8be288a137e12e1c92adda9e92587c402ccf87fcb116597c6074e64eb70b8249b208e7d1bd684d6ffd6d3 +doccontainersize 129972 +doccontainerchecksum 4a371576e7754789ec67cde04f533ade561d770cbf410e31c8fdb737d127dd36e0f8f6a233512b147ffd5692acecc43e1977c76efe04b1a65de3c6297038a954 +docfiles size=37 + RELOC/doc/xelatex/quran-de/README details="Readme" + RELOC/doc/xelatex/quran-de/quran-de-doc.pdf details="Package documentation" + RELOC/doc/xelatex/quran-de/quran-de-doc.tex + RELOC/doc/xelatex/quran-de/quran-de-test.pdf details="Example of use" + RELOC/doc/xelatex/quran-de/quran-de-test.tex + RELOC/doc/xelatex/quran-de/quran.png +runfiles size=919 + RELOC/tex/xelatex/quran-de/quran-de.sty + RELOC/tex/xelatex/quran-de/qurantext-deii.translation.def + RELOC/tex/xelatex/quran-de/qurantext-deiii.translation.def + RELOC/tex/xelatex/quran-de/qurantext-deiv.translation.def +catalogue-also quran 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-license lppl1.3c +catalogue-topics german macro-supp xetex dummy-gen +catalogue-version 0.2 + +name quran-ur +category Package +revision 57597 +shortdesc Urdu translations to the quran package +relocated 1 +longdesc The package is prepared for typesetting some Urdu translations +longdesc of the Holy Quran. It adds eight Urdu translations to the quran +longdesc package. +containersize 1874644 +containerchecksum 217d3bdf7ae9391dd300ab0ef390dab34d83675be41c6049897914c24abacbde29d57a68e6321058d91cc63a1b5143bba3b15c7bccc8d55f50cc3efa0e3d4016 +doccontainersize 153360 +doccontainerchecksum 9be2743ee3d4e0cec70731f5ad5bc71c574ad122aff7b30ec50635a5c4d1c87801b324f048e141e2208bc59af5995b9ff166c7eaa06306817629600348f55cbe +docfiles size=43 + RELOC/doc/latex/quran-ur/README details="Readme" + RELOC/doc/latex/quran-ur/quran-ur-doc.pdf details="Package documentation" + RELOC/doc/latex/quran-ur/quran-ur-doc.tex + RELOC/doc/latex/quran-ur/quran-ur-test.pdf details="Example of use" + RELOC/doc/latex/quran-ur/quran-ur-test.tex + RELOC/doc/latex/quran-ur/quran.png +runfiles size=3434 + RELOC/tex/latex/quran-ur/quran-ur.sty + RELOC/tex/latex/quran-ur/qurantext-uri.translation.def + RELOC/tex/latex/quran-ur/qurantext-urii.translation.def + RELOC/tex/latex/quran-ur/qurantext-uriii.translation.def + RELOC/tex/latex/quran-ur/qurantext-uriv.translation.def + RELOC/tex/latex/quran-ur/qurantext-urv.translation.def + RELOC/tex/latex/quran-ur/qurantext-urvi.translation.def + RELOC/tex/latex/quran-ur/qurantext-urvii.translation.def + RELOC/tex/latex/quran-ur/qurantext-urviii.translation.def +catalogue-also quran lipsum ptext +catalogue-contact-bugs https://github.com/javadr/quran-ur/issues +catalogue-contact-repository https://github.com/javadr/quran-ur +catalogue-ctan /macros/unicodetex/latex/quran-ur +catalogue-license lppl1.3c +catalogue-topics urdu macro-supp dummy-gen +catalogue-version 0.21 + +name qyxf-book +category Package +revision 56319 +shortdesc Book Template for Qian Yuan Xue Fu +relocated 1 +longdesc qyxf-book is a LaTeX document class (template) developed by +longdesc Qian Yuan Xue Fu (QYXF), a student club of Xi'an Jiaotong +longdesc University (XJTU). Up to now, this template has been applied to +longdesc academic counselling material ("course helpers") written by +longdesc members of QYXF, including Solutions to University Physics: +longdesc https://qyxf.site/latest/Da Wu Ti Jie (Shang ).pdf Notes on +longdesc Computing Methods: https://qyxf.site/latest/Ji Suan Fang Fa Xie +longdesc Ying -v1.1.pdf Guide to Computer Programming: +longdesc https://qyxf.site/latest/Ji Suan Ji She Ji Cheng Xu Zhi Nan +longdesc .pdf Features of the template: Minimalistic document style, as +longdesc preferred for "course helpers". Several color schemes are +longdesc offered, and it is easy to customize your own scheme. Simple +longdesc interfaces for users to customize the style of preface, main +longdesc part and so on. Currently the template is only designed for +longdesc Chinese typesetting. +containersize 5180 +containerchecksum be1be15996d6db58200ced70e6b17d29ad015bd1f1ae1dccb7cb50e225e9150db76511fbec37d17711e10104322782f92bf9fedecf990fb4358fefc2df7a78e8 +doccontainersize 599896 +doccontainerchecksum 5bd3f6f9576ae2cacf3351db9cfe59ba519953a6e25e32b2ab4215a928d7a0f2903a9c75f9432c8fff3d9b7221d6ea09c439421eb5c5ec6830665d89836b9d63 +docfiles size=200 + RELOC/doc/latex/qyxf-book/LICENSE + RELOC/doc/latex/qyxf-book/README.md details="Readme (English)" + RELOC/doc/latex/qyxf-book/README.zh.md details="Readme (Chinese)" language="zh" + RELOC/doc/latex/qyxf-book/figure/color-scheme.jpg + RELOC/doc/latex/qyxf-book/figure/qyxf-cover.pdf + RELOC/doc/latex/qyxf-book/figure/qyxf-logo.pdf + RELOC/doc/latex/qyxf-book/figure/thumbnail.png + RELOC/doc/latex/qyxf-book/qyxf-book-doc.pdf details="User manual / example of use" language="zh" + RELOC/doc/latex/qyxf-book/qyxf-book-doc.tex +runfiles size=4 + RELOC/tex/latex/qyxf-book/qyxf-book.cls +catalogue-contact-bugs https://gitee.com/qyxf/qyxf-book/issues +catalogue-contact-repository https://gitee.com/qyxf/qyxf-book +catalogue-ctan /macros/latex/contrib/qyxf-book +catalogue-license mit +catalogue-topics class book-pub chinese +catalogue-version 3.1.0 + +name r_und_s +category Package +revision 15878 +catalogue r-und-s +shortdesc Chemical hazard codes +relocated 1 +longdesc The r_und_s package decodes the german 'R- und S-Satze', which +longdesc are numerically coded security advice for chemical substances +longdesc into plain text. This is, e.g., used to compose security sheets +longdesc or lab protocols and especially useful for students of +longdesc chemistry. There are four packages, giving texts in German, +longdesc English, French and Dutch. +containersize 15440 +containerchecksum 86b219305e4e085af2a22d34bc586253b5674abb18e257fa96bab1d45695f841020c0004f1da51fcfca0fd0b325e4043f2e368740841a5a2e8db774711ac6348 +doccontainersize 3584 +doccontainerchecksum 26e227f106bb9303c4823f0230b689d6ed883580051e1bd5ec2e16ad796a3e33df2caa389c309b21b010bb43b07e5ec1027d6c046af55193deb0e4d975288846 +docfiles size=2 + RELOC/doc/latex/r_und_s/README details="Readme" +runfiles size=31 + RELOC/tex/latex/r_und_s/eng_rs.sty + RELOC/tex/latex/r_und_s/eng_rs.tex + RELOC/tex/latex/r_und_s/fr_rs.sty + RELOC/tex/latex/r_und_s/fr_rs.tex + RELOC/tex/latex/r_und_s/nl_rs.sty + RELOC/tex/latex/r_und_s/nl_rs.tex + RELOC/tex/latex/r_und_s/r_und_s.sty + RELOC/tex/latex/r_und_s/r_und_s.tex +catalogue-also mhchem +catalogue-ctan /macros/latex/contrib/r_und_s +catalogue-license other-free +catalogue-topics safety-notice +catalogue-version 1.3i + +name ragged2e +category Package +revision 57638 +shortdesc Alternative versions of "ragged"-type commands +relocated 1 +longdesc The package defines new commands \Centering, \RaggedLeft, and +longdesc \RaggedRight and new environments Center, FlushLeft, and +longdesc FlushRight, which set ragged text and are easily configurable +longdesc to allow hyphenation (the corresponding commands in LaTeX, all +longdesc of whose names are lower-case, prevent hyphenation altogether). +containersize 2924 +containerchecksum 716cc6067273735be2f4c9922b043441076d37f7d08fac0603564c9cb8f082f5dd91bceb336ecb3ad69e6d9a88367067c71fd08678c1ff606c21109daa66a140 +doccontainersize 664008 +doccontainerchecksum ecc36350f01e86f63ca54a2ae5ca1ccd17851756731af3997d9b172753673f39c05e82d9b3f736896b2be1c971bdd0c700678a6d44aec2226a7f57bcdc085e51 +docfiles size=164 + RELOC/doc/latex/ragged2e/README.md details="Readme" + RELOC/doc/latex/ragged2e/ragged2e.pdf details="Package documentation" +srccontainersize 11392 +srccontainerchecksum 2a9a755a3f3978c3e9077e3c36eb642e18895e3bd5fce44af71d2fb094f1a46c3e61cce21940eba5b6d7a3d51aadf6229fd9e0941610e9bc42dfdeb67ee49514 +srcfiles size=13 + RELOC/source/latex/ragged2e/ragged2e.dtx + RELOC/source/latex/ragged2e/ragged2e.ins +runfiles size=3 + RELOC/tex/latex/ragged2e/ragged2e.sty +catalogue-also everysel +catalogue-contact-bugs https://gitlab.com/TeXhackse/ragged2e/issues +catalogue-contact-repository https://gitlab.com/TeXhackse/ragged2e +catalogue-ctan /macros/latex/contrib/ragged2e +catalogue-license lppl1.3c +catalogue-topics layout parshape +catalogue-version 3.0 + +name raleway +category Package +revision 42629 +shortdesc Use Raleway with TeX(-alike) systems +relocated 1 +longdesc The package provides the Raleway family in an easy to use way. +longdesc For XeLaTeX and LuaLaTeX users the original OpenType fonts are +longdesc used. The entire font family is included. +execute addMap Raleway.map +containersize 2336284 +containerchecksum 8ce708ec993b1405dc04ddd96b6d39da324799f404e2798448c12cd03749f11685f840ba4f986b1b0f7696f9141923f3b91f5318de634979720af5af5b07781c +doccontainersize 185360 +doccontainerchecksum eae288de26c57ac27172e83bc6985b0edf80ac88538561468924c34656f31507e008097a1e8452ce47729ab501493733a1c022440c31c34cd99f8211383e889c +docfiles size=92 + RELOC/doc/latex/raleway/LPPL.txt + RELOC/doc/latex/raleway/OFL.txt + RELOC/doc/latex/raleway/raleway-otf-specimen.pdf + RELOC/doc/latex/raleway/raleway-otf-specimen.tex + RELOC/doc/latex/raleway/raleway-type1-specimen.pdf + RELOC/doc/latex/raleway/raleway-type1-specimen.tex + RELOC/doc/latex/raleway/raleway.pdf details="Package documentation" + RELOC/doc/latex/raleway/raleway.tex +runfiles size=3129 + RELOC/fonts/enc/dvips/raleway/a_2bcjq6.enc + RELOC/fonts/enc/dvips/raleway/a_biciir.enc + RELOC/fonts/enc/dvips/raleway/a_bzmckq.enc + RELOC/fonts/enc/dvips/raleway/a_f3uqdf.enc + RELOC/fonts/enc/dvips/raleway/a_gvxmk7.enc + RELOC/fonts/enc/dvips/raleway/a_ioname.enc + RELOC/fonts/enc/dvips/raleway/a_k2dfwc.enc + RELOC/fonts/enc/dvips/raleway/a_mgzrni.enc + RELOC/fonts/enc/dvips/raleway/a_mzuigi.enc + RELOC/fonts/enc/dvips/raleway/a_oaf34p.enc + RELOC/fonts/enc/dvips/raleway/a_pcwse4.enc + RELOC/fonts/enc/dvips/raleway/a_sor5xn.enc + RELOC/fonts/enc/dvips/raleway/a_u6n666.enc + RELOC/fonts/enc/dvips/raleway/a_yqxcf3.enc + RELOC/fonts/map/dvips/raleway/Raleway.map + RELOC/fonts/opentype/impallari/raleway/Raleway-Black-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Black.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Bold-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Bold.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraBold-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraBold.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraLight-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraLight.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Light-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Light.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Medium-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Medium.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Regular-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Regular.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-SemiBold-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-SemiBold.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Thin-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Thin.otf + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ts1.tfm + RELOC/fonts/type1/impallari/raleway/Raleway-Black.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-BlackItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Bold.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-BoldItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraBold.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraBoldItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraLight.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraLightItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Italic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Light.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-LightItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Medium.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-MediumItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Regular.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-SemiBold.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-SemiBoldItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Thin.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ThinItalic.pfb + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-ts1.vf + RELOC/tex/latex/raleway/LY1Raleway-TLF.fd + RELOC/tex/latex/raleway/LY1Raleway-TOsF.fd + RELOC/tex/latex/raleway/OT1Raleway-TLF.fd + RELOC/tex/latex/raleway/OT1Raleway-TOsF.fd + RELOC/tex/latex/raleway/T1Raleway-TLF.fd + RELOC/tex/latex/raleway/T1Raleway-TOsF.fd + RELOC/tex/latex/raleway/TS1Raleway-TLF.fd + RELOC/tex/latex/raleway/TS1Raleway-TOsF.fd + RELOC/tex/latex/raleway/raleway-type1-autoinst.sty + RELOC/tex/latex/raleway/raleway.sty +catalogue-ctan /fonts/raleway +catalogue-license ofl +catalogue-topics font font-sans font-type1 font-otf font-supp +catalogue-version 1.4 + +name ran_toks +category Package +revision 57520 +shortdesc Randomise token strings +relocated 1 +longdesc The package provides means of randomising lists of tokens, or +longdesc lists of chunks of tokens. Two mechanisms for defining chunks +longdesc are provided: the \ranToks command accepts an argument +longdesc containing tokens to be randomised; and the \bRTVToks/\eRTVToks +longdesc commands delimit a collection of tokens for randomising; each +longdesc group inside a rtVw constitutes one of these (typically larger) +longdesc token sets. +containersize 5248 +containerchecksum 01bb17e3c2713e482670d3229878ba85bae5405476708b18367f0bfa85766b72b82471a8ff47993f88ef2bea72b1dc4019ed874185c94fab3171fe02f984c4c9 +doccontainersize 517980 +doccontainerchecksum 607924d3e8f09070318a5ef2354acd12fd0c57b3e7d42f45b84048f2cd0693b72811abe0485dfc45aab224c500fa4731111ae66c3e3aa25eaf27e1976b63d938 +docfiles size=159 + RELOC/doc/latex/ran_toks/README.md details="Readme" + RELOC/doc/latex/ran_toks/docs/ran_toks.pdf + RELOC/doc/latex/ran_toks/docs/rantoks_man.pdf details="Package documentation" + RELOC/doc/latex/ran_toks/docs/rantoks_man.tex + RELOC/doc/latex/ran_toks/examples/ctrl-build.tex + RELOC/doc/latex/ran_toks/examples/db1.tex + RELOC/doc/latex/ran_toks/examples/db2.tex + RELOC/doc/latex/ran_toks/examples/db3.tex + RELOC/doc/latex/ran_toks/examples/db4.tex + RELOC/doc/latex/ran_toks/examples/mc-db.tex + RELOC/doc/latex/ran_toks/examples/mc-dbu-ctrld.tex + RELOC/doc/latex/ran_toks/examples/mc-dbu.tex + RELOC/doc/latex/ran_toks/examples/mytext.verb + RELOC/doc/latex/ran_toks/examples/ran-toks.tex + RELOC/doc/latex/ran_toks/examples/rt-cb.tex + RELOC/doc/latex/ran_toks/examples/rt-tst-eqe.tex + RELOC/doc/latex/ran_toks/examples/rt-tst-qz.tex + RELOC/doc/latex/ran_toks/examples/viewDB.tex +srccontainersize 11904 +srccontainerchecksum 5aba0e7472f214e367dab1a664f61fddc4b2a4b3eeb5737f2b476d6a196f33ccc4d28a6d3ab00f85c41291b27ef0699f362460fb6a0fe60dd28db67138b9560b +srcfiles size=11 + RELOC/source/latex/ran_toks/ran_toks.dtx + RELOC/source/latex/ran_toks/ran_toks.ins +runfiles size=6 + RELOC/tex/latex/ran_toks/ran-toks.sty + RELOC/tex/latex/ran_toks/ran_toks.sty + RELOC/tex/latex/ran_toks/rt-dbapp.def +catalogue-ctan /macros/latex/contrib/ran_toks +catalogue-license lppl1 +catalogue-topics macro-supp + +name randbild +category Package +revision 15878 +shortdesc Marginal pictures +relocated 1 +longdesc Provides environments randbild to draw small marginal plots +longdesc (using the packages pstricks and pst-plot), and randbildbasis +longdesc (the same, only without the automatically drawn coordinate +longdesc system). +containersize 1552 +containerchecksum b4fac4fe105366ae1047a1d4225bfbe8ecfe6e05c29e955bc91d591f25ad6a8ba0e2b81848f27af96a1509a278864393c8874b14f30e64c8d5b69b9db811ec41 +doccontainersize 67312 +doccontainerchecksum fd8f83db389fa62ae8dd63a2c3bc8e4feb9beb6c56d7579fbd9e9065c399a73ad19563f22cdbe1dec78bd1c33056ed1cd4d9a534105b34a2ceae0cd8592326df +docfiles size=45 + RELOC/doc/latex/randbild/README details="Readme (bilingual)" + RELOC/doc/latex/randbild/randbild.pdf details="Benutzerdoku" language="de" +srccontainersize 5340 +srccontainerchecksum 6180472c45b6eb362076c50a6a813d5521fac11d92881639cfa3c7444fa456dbc7b453e4f94de147a635ce017bb21e30087ec7e6c39ead8778bbe9debb68a68b +srcfiles size=4 + RELOC/source/latex/randbild/randbild.dtx + RELOC/source/latex/randbild/randbild.ins +runfiles size=1 + RELOC/tex/latex/randbild/randbild.sty +catalogue-ctan /macros/latex/contrib/randbild +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 0.2 + +name random +category Package +revision 54723 +shortdesc Generating "random" numbers in TeX +relocated 1 +longdesc Generates pseudo-random integers in the range 1 to 2^{31}. +longdesc Macros are to provide random integers in a given range, or +longdesc random dimensions which can be used to provide random `real' +longdesc numbers, are also available. +containersize 2224 +containerchecksum a93eb4d5b526285da18105f67bef5cb4451b7b71be50581936a4718ad99360dfd8141ee9437d374c56eb3db3aad9af4ec8e1555a4a5b8654711bf64aea3f419b +doccontainersize 78384 +doccontainerchecksum f2aa83c5e34707ce9f7cb46e6f3b1632784ec741a68ba9faec0d323aba2054de55f184aa9f1120491bbc60db2040087c4b2dadbb9a4b3763b84358c1855974dc +docfiles size=21 + RELOC/doc/generic/random/README.md details="Readme" + RELOC/doc/generic/random/random-doc.pdf details="Package documentation" + RELOC/doc/generic/random/random-doc.tex +runfiles size=2 + RELOC/tex/generic/random/random.tex +catalogue-also lcg +catalogue-ctan /macros/generic/random +catalogue-license pd +catalogue-topics calculation random +catalogue-version 0.2 + +name randomlist +category Package +revision 45281 +shortdesc Deal with database, loop, and random in order to build personalized exercises +relocated 1 +longdesc The main aim of this package is to work on lists, especially +longdesc with random operations. The hidden aim is to build a personnal +longdesc collection of exercises with different data for each pupil. +containersize 4996 +containerchecksum 895eb116868ced533e23d398d0f17bda2f55a2cea52ec46bcfca4004b9411fade8817af4fc9d3d91b2ab2959ea24027266d8fcac0c77a64d2a4b88fbed5d56a4 +doccontainersize 391560 +doccontainerchecksum 4c0ebff9275bbd1c8550902735b4ef0d04dbd688bb1abdf124560defd2e5d0cc23171e8034fc67b5379d0ec30395b4433ababf3c3a244cbb5ca5f15005057f58 +docfiles size=128 + RELOC/doc/generic/randomlist/Makefile + RELOC/doc/generic/randomlist/README.txt details="Readme" + RELOC/doc/generic/randomlist/comets.dat + RELOC/doc/generic/randomlist/pupils.dat + RELOC/doc/generic/randomlist/pythagoras.dat + RELOC/doc/generic/randomlist/randomlist.pdf details="Package documentation" + RELOC/doc/generic/randomlist/test-fr.pdf + RELOC/doc/generic/randomlist/test-fr.tex + RELOC/doc/generic/randomlist/test.pdf + RELOC/doc/generic/randomlist/test.tex + RELOC/doc/generic/randomlist/testtex.pdf + RELOC/doc/generic/randomlist/testtex.tex +srccontainersize 18212 +srccontainerchecksum 3ccb29c8a6b815484929b7bf0e142090bca848d3f5562533380b71e1be3c9fff2d7ed00f39fa68a745442ad45e1b07e4ed38ef2db55a2bf341e6adb0ce51c373 +srcfiles size=20 + RELOC/source/generic/randomlist/randomlist.dtx + RELOC/source/generic/randomlist/randomlist.ins +runfiles size=6 + RELOC/tex/generic/randomlist/randomlist.sty + RELOC/tex/generic/randomlist/randomlist.tex +catalogue-ctan /macros/generic/randomlist +catalogue-license lppl1.3 +catalogue-topics list list-supp +catalogue-version 1.3 + +name randomwalk +category Package +revision 49513 +shortdesc Random walks using TikZ +relocated 1 +longdesc The randomwalk package provides a user command, \RandomWalk, to +longdesc draw random walks with a given number of steps. Lengths and +longdesc angles of the steps can be customized in various ways. The +longdesc package uses lcg for its 'random' numbers and PGF/TikZ for its +longdesc graphical output. +containersize 2196 +containerchecksum 3a1f08f41864cc3b855fc4a9f8aba298d92505231c728381f5c5aa29f21c73d6e10834ad589c114ae26ba97d092b33e9c83a30518a7f289aa0ec96c933471afd +doccontainersize 479868 +doccontainerchecksum 00c23d42132d4a47973871bb9a2054385681898d6cd7e0a7a47337808187855812d98535428f6e37a3eb2da13680ac4128fce38db670a87a66483f6ece044c8a +docfiles size=118 + RELOC/doc/latex/randomwalk/README.md details="Readme" + RELOC/doc/latex/randomwalk/randomwalk.pdf details="Package documentation" +srccontainersize 5092 +srccontainerchecksum 55bcb9c1acabef60ee605d9dbc0cf9d601a31528dcf444f2caf2f8b91867538549bd304b3a73b3bbefdc9e7ec82791264f054386c46b4fe67d20e8ff6a44ca8d +srcfiles size=5 + RELOC/source/latex/randomwalk/randomwalk.dtx + RELOC/source/latex/randomwalk/randomwalk.ins +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-license lppl1.3c +catalogue-topics graphics-in-tex calculation random expl3 +catalogue-version 0.6 + +name randtext +category Package +revision 15878 +shortdesc Randomise the order of characters in strings +relocated 1 +longdesc The package provides a single macro \randomize{TEXT} that +longdesc typesets the characters of TEXT in random order, such that the +longdesc resulting output appears correct, but most automated attempts +longdesc to read the file will misunderstand it. This function allows +longdesc one to include an email address in a TeX document and publish +longdesc it online without fear of email address harvesters or spammers +longdesc easily picking up the address. +containersize 2804 +containerchecksum 6cd20551f4b48d30d4c830da395873bd20e11b930336f4fac0f0ccf09c9a956d18107c45aa2b1ecea51d1fc4b0c0fabf06d436e247aac6ff58548cbfd31d35b2 +doccontainersize 672 +doccontainerchecksum 3bec31ca40816e7e86642e080021ab5faabb19656a15463f712e111485f1de00d698816e84b1ed7b63ea9380970d4e80b04aa0cf79442c7d1d77d5fa3f4d072a +docfiles size=1 + RELOC/doc/latex/randtext/README details="Readme" +runfiles size=2 + RELOC/tex/latex/randtext/randtext.sty +catalogue-ctan /macros/latex/contrib/randtext +catalogue-license lppl +catalogue-topics security + +name rank-2-roots +category Package +revision 48515 +shortdesc Draw (mathematical) rank 2 root systems +relocated 1 +longdesc This package concerns mathematical drawings arising in +longdesc representation theory. The purpose of this package is to ease +longdesc drawing of rank 2 root systems, with Weyl chambers, weight +longdesc lattices, and parabolic subgroups. Required packages are tikz, +longdesc etoolbox, expl3, pgfkeys, pgfopts, xparse, and xstring. +containersize 4028 +containerchecksum 43d76c8461a724c48e5e510701032c01a5bfa645734402b0fa0d0766f2d0cb7520f2e3d29d6c3abfe44ec369988445aab9216135f70c43a18fdec152cb4ae92b +doccontainersize 400892 +doccontainerchecksum f9e58f16b30b075b19929a9ad1ac0c47e53b2aea038e34db69dde6d64e1cf3281fda597499dd07aea03b3bb325c06a1c7abbfdca42a80f03fa2a3d272bf52e5b +docfiles size=110 + RELOC/doc/latex/rank-2-roots/README details="Readme" + RELOC/doc/latex/rank-2-roots/rank-2-roots.bib + RELOC/doc/latex/rank-2-roots/rank-2-roots.pdf details="Package documentation" + RELOC/doc/latex/rank-2-roots/rank-2-roots.tex +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-license lppl1.3c +catalogue-topics maths pgf-tikz +catalogue-version 1.0 + +name rccol +category Package +revision 15878 +shortdesc Decimal-centered optionally rounded numbers in tabular +relocated 1 +longdesc The rccol package provides decimal-centered numbers: +longdesc corresponding digits and decimal separators aligned. +longdesc Furthermore, rounding to the desired precision is possible. The +longdesc package makes use of the fltpoint package (as well as the LaTeX +longdesc required array package). +containersize 2160 +containerchecksum 0a712f0918b4c0e4cf8cc2a0d442a681c6cd4d00b50478751512ed4588f070566f005717196f694c8d07e79f8ab6a49be6ddbda8db71af65e30cfbbceeab6d2e +doccontainersize 143228 +doccontainerchecksum 56c43ee9f49764ce50da6b1b4fd736cfff16a1cf3907fc7189807e5c946f1c25c593ddc1aa22c2ce2e0799f7057efe2df35bfb9aef0fa1c31724110a352fe4cd +docfiles size=42 + RELOC/doc/latex/rccol/README details="Readme" + RELOC/doc/latex/rccol/rccol.pdf details="Package documentation" +srccontainersize 9172 +srccontainerchecksum bc0f7ee1a6fec9adf6d8ae77fb174fb0334030fcc504af46bb2cb88516c05b4b9539748b381a029b657f22d7ce6313b0f19471ef85b1064139e6cb7862c726e9 +srcfiles size=9 + RELOC/source/latex/rccol/rccol.dtx + RELOC/source/latex/rccol/rccol.ins +runfiles size=2 + RELOC/tex/latex/rccol/rccol.sty +catalogue-ctan /macros/latex/contrib/rccol +catalogue-license lppl1.2 +catalogue-topics table maths +catalogue-version 1.2c + +name rcs +category Package +revision 15878 +shortdesc Use RCS (revision control system) tags in LaTeX documents +relocated 1 +longdesc The rcs package utilizes the inclusion of RCS supplied data in +longdesc LaTeX documents. It's upward compatible to *all* rcs styles I +longdesc know of. In particular, you can easily access values of every +longdesc RCS field in your document put the checkin date on the +longdesc titlepage put RCS fields in a footline You can typeset revision +longdesc logs. Not in verbatim -- real LaTeX text! But you need a +longdesc configurable RCS for that. Refer to the user manual for more +longdesc detailed information. You can also configure the rcs package +longdesc easily to do special things for any keyword. This bundle comes +longdesc with a user manual, an internal interface description, full +longdesc documentation of the implementation, style information for +longdesc AUC-TeX, and test cases. +containersize 12512 +containerchecksum 4a9d7cbc5c16163a5866bcc3c9fae95d8fc42b27d0d8dd8ceaf32e2b568bf9ac6b710a4124cbd255f1f2d18fbcf66ae020cca58ce6d16c6c5eb6e0a85e288419 +doccontainersize 121328 +doccontainerchecksum 71430d5e481dac53c3b1d5f86ec589fd855c244c6717f31c16e2fe00507850779fed3ef43db2deb546ec5b99ffe775a10711f1fd59c022f4223a8d3327424cdf +docfiles size=52 + RELOC/doc/latex/rcs/CATALOG + RELOC/doc/latex/rcs/History + RELOC/doc/latex/rcs/INSTALL + RELOC/doc/latex/rcs/License + RELOC/doc/latex/rcs/MANIFEST + RELOC/doc/latex/rcs/README details="Readme" + RELOC/doc/latex/rcs/rcs-conf.pdf details="Package internal interfaces" + RELOC/doc/latex/rcs/rcs-user.pdf details="User documentation" +srccontainersize 23544 +srccontainerchecksum 3c2db69ab4106eac241e9126407e90d8b20cf3e186d50cabcb35041a68c1b670eb3bf9b571d00a52c8e4cd410cdd7cfb38e6bb4558560d46420d1074312910fa +srcfiles size=33 + RELOC/source/latex/rcs/Makefile + RELOC/source/latex/rcs/rcs.el + RELOC/source/latex/rcs/src/Diff + RELOC/source/latex/rcs/src/Imakefile + RELOC/source/latex/rcs/src/README + RELOC/source/latex/rcs/src/TODO + RELOC/source/latex/rcs/src/rcs-conf.tex + RELOC/source/latex/rcs/src/rcs-doc.sty + RELOC/source/latex/rcs/src/rcs-user.tex + RELOC/source/latex/rcs/src/rcs.doc + RELOC/source/latex/rcs/src/style/rcs.el + RELOC/source/latex/rcs/src/style/rcs.elc + RELOC/source/latex/rcs/src/test/Imakefile + RELOC/source/latex/rcs/src/test/Makefile + RELOC/source/latex/rcs/src/test/empty-log.tex + RELOC/source/latex/rcs/src/test/german.tex + RELOC/source/latex/rcs/src/test/log-error.tex + RELOC/source/latex/rcs/src/test/log.tex + RELOC/source/latex/rcs/src/test/rcsdef.tex + RELOC/source/latex/rcs/src/test/rcsid-param.tex + RELOC/source/latex/rcs/src/test/rcsid.tex + RELOC/source/latex/rcs/src/test/under_score.tex +runfiles size=9 + RELOC/tex/latex/rcs/rcs.sty +catalogue-also rcsinfo +catalogue-ctan /macros/latex/contrib/rcs +catalogue-license gpl +catalogue-topics version-control doc-mgmt + +name rcs-multi +category Package +revision 56291 +shortdesc Typeset RCS version control in multiple-file documents +relocated 1 +longdesc The package enables the user to typeset version control +longdesc information provided by RCS keywords (e.g., $ID: ... $) in +longdesc LaTeX documents that contain multiple TeX files. The package is +longdesc based on the author's svn-multi package. +containersize 3044 +containerchecksum 4b8cda573edfeed6f5ca2c993aa72c6cbe42f8705e42e9004f6dd4ef85e2e6bb4b9ee9b6a865ca7966ce70d685ceb5255e87545c2159feb30986ff8e896ca41c +doccontainersize 651132 +doccontainerchecksum a2a2cf87235015aeed11a1f924fd7d719e568c99890fe7434dd1ecf7853247e50f8fab4c7a800a19e4390c953d940107de009e74695248251d76f773d37cabb4 +docfiles size=180 + RELOC/doc/latex/rcs-multi/example.pdf + RELOC/doc/latex/rcs-multi/rcs-multi.pdf details="Package documentation" +srccontainersize 13580 +srccontainerchecksum 2f72796d40de09422a67cadb68a093d44b5cff71f51c33c681117891fae080bcba43baffc4a12a7daf8b486c75e8d20c8b86612d411af67458a1f7e3c69e1d75 +srcfiles size=14 + RELOC/source/latex/rcs-multi/Makefile + RELOC/source/latex/rcs-multi/example.tex + RELOC/source/latex/rcs-multi/rcs-multi.dtx + RELOC/source/latex/rcs-multi/rcs-multi.ins +runfiles size=3 + RELOC/tex/latex/rcs-multi/rcs-multi.sty +catalogue-also rcs rcsinfo +catalogue-contact-bugs https://sourceforge.net/p/rcs-multi/tickets/ +catalogue-contact-home https://sourceforge.net/p/rcs-multi/ +catalogue-contact-repository https://sourceforge.net/p/rcs-multi/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/rcs-multi +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 0.1a + +name rcsinfo +category Package +revision 15878 +shortdesc Support for the revision control system +relocated 1 +longdesc A package to extract RCS (Revision Control System) information +longdesc and use it in a LaTeX document. For users of LaTeX2HTML +longdesc rcsinfo.perl is included. +containersize 3120 +containerchecksum 6070a3f0b434b5339e527161b7c1e18dd21b23a9b57817a2699bc13369bf35110868e38d3e487b7b0b58ddb12699599a6e8ac4314b150ff2c8049ade5124f786 +doccontainersize 148308 +doccontainerchecksum c7d149405b9824f7fb9a453386477ee3ebb7e265b29a004eeab687695667a9e8ddd7ca91ffdb4fe7f60716e6c1f2b39004aae82777c58cb60532bb2ace2bc846 +docfiles size=48 + RELOC/doc/latex/rcsinfo/README details="Readme" + RELOC/doc/latex/rcsinfo/README-1.9 + RELOC/doc/latex/rcsinfo/rcsinfo.init + RELOC/doc/latex/rcsinfo/rcsinfo.pdf details="Package documentation" + RELOC/doc/latex/rcsinfo/rcsinfo.perl + RELOC/doc/latex/rcsinfo/rcsinfo2html.tex +srccontainersize 13612 +srccontainerchecksum bb38328d3124adb4ca1734912bd0fb15040e7d390d886d3817ed547d08e4f6e5a134db6e4279ab2cf0a5b8d0216afaea475c3dceed7381bbc84adbd63bbf3b82 +srcfiles size=16 + RELOC/source/latex/rcsinfo/Makefile + RELOC/source/latex/rcsinfo/rcsinfo.dtx + RELOC/source/latex/rcsinfo/rcsinfo.ins +runfiles size=4 + RELOC/tex/latex/rcsinfo/rcsinfo.cfg + RELOC/tex/latex/rcsinfo/rcsinfo.sty +catalogue-also rcs +catalogue-ctan /macros/latex/contrib/rcsinfo +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 1.11 + +name readablecv +category Package +revision 57433 +shortdesc A highly readable and good looking CV and letter class +relocated 1 +longdesc This class provides, what I have found, to be an extremely +longdesc attractive and highly readable CV which will lead to your CV +longdesc being read rather than disgarded. +containersize 3896 +containerchecksum 2165f742cfad485942ec3ce085c3f9eeb7de1b75028020f143661e69a8694ea4f321779c79ac04895771170310e85e4f9019a86ffea0cc4cce97eab2f4ae055a +doccontainersize 207536 +doccontainerchecksum 78d4721ac35a4361141f0a1d84a5d7d7a416976a1e8445f96c02963fbd924e86555f6c0c7a7beaba1573b9488086be4a3b65ae826ae7db3e16de6e386fee2fda +docfiles size=57 + RELOC/doc/latex/readablecv/README.md details="Readme" + RELOC/doc/latex/readablecv/ReadableCV.pdf details="Package documentation" + RELOC/doc/latex/readablecv/ReadableCV.tex + RELOC/doc/latex/readablecv/profilepic.jpg + RELOC/doc/latex/readablecv/sig.png +runfiles size=4 + RELOC/tex/latex/readablecv/ReadableCV.cls +catalogue-contact-home https://philipstone.co.uk/type.html +catalogue-ctan /macros/latex/contrib/readablecv +catalogue-license lppl1.3 +catalogue-topics class cv +catalogue-version 3.0 + +name readarray +category Package +revision 42467 +shortdesc Read, store and recall array-formatted data +relocated 1 +longdesc The package allows the user to input formatted data into +longdesc elements of a 2-D or 3-D array and to recall that data at will +longdesc by individual cell number. The data can be but need not be +longdesc numerical in nature. It can be, for example, formatted text. +longdesc While the package can be used for any application where indexed +longdesc data is called for, the package proves particularly useful when +longdesc elements of multiple arrays must be recallable and dynamically +longdesc combined at time of compilation, rather than in advance. +containersize 4252 +containerchecksum 34a1a576a560ec5a66fd8b358e9f594e1971124023e9f88e67e5dbf7ff775e3950071c5f4daa004f8e59549f245934e4dd8a82e4a2928bcb1e9fff99f2b3bdd9 +doccontainersize 487380 +doccontainerchecksum 61bf2960c1a0058a5a64a679b4c17ac0e754f09f2ca1847fcee4cb0b0b9a0dd07e252a534768fcf3b098217afc4c52a8f65120dcf43e69f0907fff9b8638af99 +docfiles size=132 + RELOC/doc/latex/readarray/README + RELOC/doc/latex/readarray/readarray.pdf details="Package documentation" + RELOC/doc/latex/readarray/readarray.tex +runfiles size=4 + RELOC/tex/latex/readarray/readarray.sty +catalogue-also getargs +catalogue-ctan /macros/latex/contrib/readarray +catalogue-license lppl1.3 +catalogue-topics data-manip +catalogue-version 2.0 + +name realboxes +category Package +revision 56291 +shortdesc Variants of common box-commands that read their content as real box and not as macro argument +relocated 1 +longdesc The package uses the author's package collectbox to define +longdesc variants of common box related macros which read the content as +longdesc real box and not as macro argument. This enables the use of +longdesc verbatim or other special material as part of this content. The +longdesc provided macros have the same names as the original versions +longdesc but start with an upper-case letter instead. The "long-form" +longdesc macros, like \Makebox, can also be used as environments, but +longdesc not the "short-form" macros, like \Mbox. However, normally the +longdesc long form uses the short form anyway when no optional arguments +longdesc are used. +containersize 3028 +containerchecksum fa998a9ec7865f65c96fdd2c7015646db01f72a6a3d291c98c726fa295fb883f0e6d7fceecb1276bd2668729bfeaf0a9f9eaae19913ed6af2f54530243205d16 +doccontainersize 175812 +doccontainerchecksum 43d982eeb7c7f6405b35c2b37ec20fc92fd46a1f3e1a1ac8fe69bc74dc5bcffb3bd50c791139621d9927b07fb80e78283f3e98d13a552c5bc29d5b147fa28b04 +docfiles size=48 + RELOC/doc/latex/realboxes/README details="Readme" + RELOC/doc/latex/realboxes/realboxes.pdf details="Package documentation" +srccontainersize 7416 +srccontainerchecksum 5976fa640a0c85e837a606e286ab50baea1a75283dea9a0d152a901ca2f565327c27a0f30539b7536bf00614cc998e1c7b8c6b8a28f22fbd121beeb8f4503b47 +srcfiles size=8 + RELOC/source/latex/realboxes/realboxes.dtx + RELOC/source/latex/realboxes/realboxes.ins +runfiles size=3 + RELOC/tex/latex/realboxes/realboxes.sty +catalogue-contact-bugs https://sourceforge.net/p/realboxes/tickets/ +catalogue-contact-home https://sourceforge.net/p/realboxes/ +catalogue-contact-repository https://sourceforge.net/p/realboxes/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/realboxes +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 0.2 + +name realhats +category Package +revision 52865 +shortdesc Put real hats on symbols instead of ^ +relocated 1 +longdesc This LaTeX package makes \hat put real hats on symbols. The +longdesc package depends on amsmath, calc, graphicx, ifthen, lcg, and +longdesc stackengine. +containersize 22444 +containerchecksum 9f5c32cf6efc957f8cf7b577c77d953f7969589fd487032807bb2fd2e6dbc0f5c14ff24bd5ce14dfc14b69bfcfe39519a0ca6cdb73351bcbae561a9a01c93180 +doccontainersize 111684 +doccontainerchecksum 681b327aa1c563436821fd7c2e736d2f45c419b0dda38abe86e146ccd9af80d3b1b57302608a42f4e0c1c744b00ba4aa6cb319c32fef5d6fb43e8fd4ba10f409 +docfiles size=31 + RELOC/doc/latex/realhats/README.md details="Readme" + RELOC/doc/latex/realhats/readme_images/hats.png + RELOC/doc/latex/realhats/realhats.pdf details="Package documentation" +srccontainersize 2672 +srccontainerchecksum be1f69bbc0bd6703ac5e2e56af54d14688d5a79aa0152f488faf86609fc0e530c0f3e31baf5c3be03593a4d826f8f06d5571453e9a55154116729956592cc08d +srcfiles size=3 + RELOC/source/latex/realhats/realhats.dtx + RELOC/source/latex/realhats/realhats.ins +runfiles size=18 + RELOC/tex/latex/realhats/hats/realhats-ash.pdf + RELOC/tex/latex/realhats/hats/realhats-beret.pdf + RELOC/tex/latex/realhats/hats/realhats-cowboy.pdf + RELOC/tex/latex/realhats/hats/realhats-crown.pdf + RELOC/tex/latex/realhats/hats/realhats-dunce.pdf + RELOC/tex/latex/realhats/hats/realhats-fez.pdf + RELOC/tex/latex/realhats/hats/realhats-makelatexgreatagain.pdf + RELOC/tex/latex/realhats/hats/realhats-santa.pdf + RELOC/tex/latex/realhats/hats/realhats-sombrero.pdf + RELOC/tex/latex/realhats/hats/realhats-tophat.pdf + RELOC/tex/latex/realhats/hats/realhats-witch.pdf + RELOC/tex/latex/realhats/realhats.sty +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-license mit +catalogue-topics amusements graphics graphics-incl +catalogue-version 5.0 + +name realscripts +category Package +revision 56594 +shortdesc Access OpenType subscript and superscript glyphs +relocated 1 +longdesc This small package replaces \textsuperscript and \textsubscript +longdesc commands by equivalent commands that use OpenType font features +longdesc to access appropriate glyphs if possible. The package also +longdesc patches LaTeX's default footnote command to use this new +longdesc \textsuperscript for footnote symbols. The package requires +longdesc fontspec running on either XeLaTeX or LuaLaTeX. The package +longdesc holds functions that were once parts of the xltxtra package, +longdesc which now loads realscripts by default. +containersize 1880 +containerchecksum fc0c686971c536b3490438e74322aec06371857a987bd70a6def7310441229fc4813d2080c5aa9b5e22cf78dc8ab1c3ed75b301acd987117d3e6f1f589f78981 +doccontainersize 104544 +doccontainerchecksum bddc4958f2c57e5e05fa31912a6c19ee123be463527f2e1121405194ac47b6a806790c204268bcf590785c927808b75305079ed44537ec84284c594d691c906d +docfiles size=28 + RELOC/doc/latex/realscripts/README.md details="Readme" + RELOC/doc/latex/realscripts/realscripts.pdf details="Package documentation" +srccontainersize 4468 +srccontainerchecksum 117c3dadf6aaf7a46a3290f6c49d23f62af1206e512bde7098068071e9edf00bc7da0fb34392b0911a4ae525eb0a99b946317d31d12d3312879debdfbb345a84 +srcfiles size=5 + RELOC/source/latex/realscripts/realscripts.dtx + RELOC/source/latex/realscripts/realscripts.ins +runfiles size=2 + RELOC/tex/latex/realscripts/realscripts.sty +catalogue-ctan /macros/unicodetex/latex/realscripts +catalogue-license lppl1.3 +catalogue-topics off subsup-pos +catalogue-version 0.3d + +name realtranspose +category Package +revision 56623 +shortdesc The "real" way to transpose a Matrix +relocated 1 +longdesc With realtranspose you can notate the transposition of a matrix +longdesc by rotating the symbols 90 degrees. This is a hommage to the +longdesc realhats package. +containersize 1552 +containerchecksum 413eb0a65d79521c81417afdb2d7f0ed8bc625d107d2fa19db84ae04a1f27f2da8f07fea27139dee411e1850d8646d63412eb581b08a9c4dd69c886457027cd1 +doccontainersize 89376 +doccontainerchecksum a2382dcfa84f3a2773ef6cfdd5a10bf23cd541927e2844419d75be6206ff5b42f37243ab2157ed5765c0f9c090340b6b75b35271157daa3440ee9d81ecdff9b7 +docfiles size=23 + RELOC/doc/latex/realtranspose/README.md details="Readme" + RELOC/doc/latex/realtranspose/realtranspose.pdf details="Package documentation" +srccontainersize 1540 +srccontainerchecksum 5fd124830f8e5e29cc9b1a2ef967a21c2065d183bb8ae1560b95e66b09d1248b8bb6a65e6321651c23d309c2508c05629c2b7740e8c57e4130d2f06b99347097 +srcfiles size=2 + RELOC/source/latex/realtranspose/realtranspose.dtx + RELOC/source/latex/realtranspose/realtranspose.ins +runfiles size=1 + RELOC/tex/latex/realtranspose/realtranspose.sty +catalogue-contact-bugs https://github.com/lquenti/realtranspose/issues +catalogue-contact-repository https://github.com/lquenti/realtranspose +catalogue-ctan /macros/latex/contrib/realtranspose +catalogue-license mit +catalogue-topics maths amusements +catalogue-version 1.1 + +name rec-thy +category Package +revision 58732 +shortdesc Commands to typeset recursion theory papers +relocated 1 +longdesc This package is designed to help mathematicians publishing +longdesc papers in the area of recursion theory (aka Computability +longdesc Theory) easily use standard notation. This includes easy +longdesc commands to denote Turing reductions, Turing functionals, c.e. +longdesc sets, stagewise computations, forcing and syntactic classes. +containersize 15068 +containerchecksum 6c7b66557d5d7b834c2838415744ee1da8eea05bd25292a9793b3a992174ff250f0f66b5ba09d962bc8d1abd0414ba0ef639539318ca1a30a877ef8c06a48a42 +doccontainersize 122696 +doccontainerchecksum a11ea08603dde4d2a8896c5ac392efc93de53f988b2d7dd458d06a66d91f8f014cb08b56349be4aae7d36dc29b47fb8d6a3e4d74978cddf85d12e596c42cf384 +docfiles size=49 + RELOC/doc/latex/rec-thy/README details="Readme" + RELOC/doc/latex/rec-thy/rec-thy.pdf details="Package documentation" + RELOC/doc/latex/rec-thy/rec-thy.tex +runfiles size=20 + RELOC/tex/latex/rec-thy/rec-thy.sty +catalogue-contact-repository https://github.com/TruePath/Recursion-Theory-Latex-Package +catalogue-ctan /macros/latex/contrib/rec-thy +catalogue-license pd +catalogue-topics maths expl3 +catalogue-version 3.7 + +name recipe +category Package +revision 54080 +shortdesc A LaTeX class to typeset recipes +relocated 1 +longdesc The layout design is relatively straightforward (and +longdesc traditional: see 'sample output' under 'documentation'); the +longdesc class uses the Bookman and the BrushScript-Italic fonts. +containersize 1956 +containerchecksum 03e9e48a2e423f36ccfbeb2e61ffc7c3588658a158c1729f697ce44d98079f104cdf1c17d85ffd5700a7532f762e22da0c4388350007eb13226cc0da43b08678 +doccontainersize 23600 +doccontainerchecksum 4dfd27cfbb4f5f5f45a5fce25fcbee4c9881990dba1009337f41e4080686e993246189595a7c28b8d56bdd2e81a70e9c6fefcfef0897736d5400888bb9fca210 +docfiles size=11 + RELOC/doc/latex/recipe/README details="Readme" + RELOC/doc/latex/recipe/sample.pdf details="Sample of output (Italian)" language="it" + RELOC/doc/latex/recipe/sample.tex +runfiles size=1 + RELOC/tex/latex/recipe/recipe.cls +catalogue-also recipecard recipebook +catalogue-ctan /macros/latex/contrib/recipe +catalogue-license pd +catalogue-topics cooking +catalogue-version 0.9 + +name recipebook +category Package +revision 37026 +shortdesc Typeset 5.5" x 8" recipes for browsing or printing +relocated 1 +longdesc This is a LaTeX2e class for typesetting recipes. It is designed +longdesc for typesetting one or two recipes per page, with dimensions of +longdesc 5.5" x 8.5". The hyperlinked table of contents (ToC) and page +longdesc numbers make browsing recipes convenient, and the pages can be +longdesc joined together or printed two per sheet to normal letterpaper +longdesc easily. The size was chosen to work in half-page 3-ring binder +longdesc cover sheets. +containersize 4080 +containerchecksum c030f81bac27221f24b275d689fc7cf80bd6d97ccfecb0c5d51876ae825871854d7729e123caef3735a7b2a5608f070ce170709c8a1723b5c740f05371c82154 +doccontainersize 927924 +doccontainerchecksum 0c9d803360e1ef65b38f5b66c6d3eba6e9c38c371a430e2cca371594935fda16a051d6d1ee33e787114747b9efc36475c6c92b2c8b199aa1a5b48e214f7a4643 +docfiles size=409 + RELOC/doc/latex/recipebook/LongSample.pdf details="Example (1)" + RELOC/doc/latex/recipebook/LongSample.tex + RELOC/doc/latex/recipebook/README details="Readme" + RELOC/doc/latex/recipebook/ShortSample.pdf details="Example (2)" + RELOC/doc/latex/recipebook/ShortSample.tex + RELOC/doc/latex/recipebook/images/Curried_butternut_squash_soup.jpg + RELOC/doc/latex/recipebook/images/Curried_chicken_and_rice.jpg + RELOC/doc/latex/recipebook/images/French_dip.jpg + RELOC/doc/latex/recipebook/images/Grilled_chicken_with_capers.jpg + RELOC/doc/latex/recipebook/images/Hawaiian_burgers.jpg + RELOC/doc/latex/recipebook/images/Italian_calzones.jpg + RELOC/doc/latex/recipebook/images/Pumpkin_pie_soup.jpg +runfiles size=4 + RELOC/tex/latex/recipebook/RecipeBook.cls +catalogue-also recipe recipecard +catalogue-ctan /macros/latex/contrib/recipebook +catalogue-license lppl1.3 +catalogue-topics cooking class + +name recipecard +category Package +revision 15878 +shortdesc Typeset recipes in note-card-sized boxes +relocated 1 +longdesc The recipecard class typesets recipes into note card sized +longdesc boxes that can then be cut out and pasted on to note cards. The +longdesc recipe then looks elegant and fits in the box of recipes. +containersize 2644 +containerchecksum 62778e7429aaa8e4bed6546c748a7e135c9edc4909508723e7931284c619d502e9efb0e6fa54c8c1d242858355c6d95bdc87959400c18a5648ef105035ace26f +doccontainersize 186552 +doccontainerchecksum 0e62ac28631ee072c9b0b5dfe9995744c381f17b14da5e9c8f4159fb274cf2a7662f0eed8f728ec5990a6a957de051304601acde2d171e696e79284ab2faeff3 +docfiles size=57 + RELOC/doc/latex/recipecard/README details="Package README" + RELOC/doc/latex/recipecard/recipecard.pdf details="Package documentation" + RELOC/doc/latex/recipecard/test2.pdf + RELOC/doc/latex/recipecard/test2.tex +srccontainersize 9372 +srccontainerchecksum d08838184d5d21107ee796835c95dd446242ea3433819229ab918a30e73a3e042e6f4cc8f75c144ced7a16391841177409567bdf3116632b0915ebe47378943d +srcfiles size=8 + RELOC/source/latex/recipecard/recipecard.dtx +runfiles size=2 + RELOC/tex/latex/recipecard/recipecard.cls +catalogue-also recipe recipebook +catalogue-ctan /macros/latex/contrib/recipecard +catalogue-license lppl +catalogue-topics cooking +catalogue-version 2.0 + +name rectopma +category Package +revision 19980 +shortdesc Recycle top matter +relocated 1 +longdesc Saves the arguments of \author and \title for reference (after +longdesc \maketitle) in a document. (\maketitle simply disposes of the +longdesc information, in the standard classes and some others.) +containersize 1628 +containerchecksum 17a297d7862eeb8c48788e40fd761fd42b37fa7b49b7447e00e828f1a7e0f2e411eee357507d79bfe0441c7feada9e06fb18ee5ce0af87e7aeec7ae618e22d83 +doccontainersize 115552 +doccontainerchecksum 27ae9a381a685373a980e13b9b5c3f6057f98224a7c9659edc0c056a6292e7289ed9772f3a503e8de3ea93b796f271dafeba57f6e240caaf738003e1ab848e46 +docfiles size=29 + RELOC/doc/latex/rectopma/TestTitle.pdf details="Package documentation (and usage example)" + RELOC/doc/latex/rectopma/TestTitle.tex +runfiles size=1 + RELOC/tex/latex/rectopma/rectopma.sty +catalogue-ctan /macros/latex/contrib/rectopma +catalogue-license lppl +catalogue-topics macro-supp + +name recycle +category Package +revision 15878 +shortdesc A font providing the "recyclable" logo +relocated 1 +longdesc This single-character font is provided as Metafont source, and +longdesc in Adobe Type 1 format. It is accompanied by a trivial LaTeX +longdesc package to use the logo at various sizes. +execute addMap recycle.map +containersize 9820 +containerchecksum 3bc28ed41a8205534d34593429429768bdfa64e61cc212017ba4be32f7a985e8d65ab296137cffbb7ad5be4dec90bbfd30d675ab314bb79ec0ea10b277c33d66 +doccontainersize 768 +doccontainerchecksum 3bbe68b48915c6fa662fb72072eb9e130613587e86d3d4172766c8fe690a995d23d252cbda9a226a7716c9da8741b3ed0e18eae1cab2f547d08265ee493a64dc +docfiles size=1 + RELOC/doc/fonts/recycle/README details="Readme" +runfiles size=8 + RELOC/fonts/map/dvips/recycle/recycle.map + RELOC/fonts/source/public/recycle/recycle.mf + RELOC/fonts/tfm/public/recycle/recycle.tfm + RELOC/fonts/type1/public/recycle/recycle.pfb + RELOC/tex/latex/recycle/recycle.sty +catalogue-ctan /fonts/recycle +catalogue-license gpl +catalogue-topics font font-mf font-type1 font-specialist + +name refcheck +category Package +revision 29128 +shortdesc Check references (in figures, table, equations, etc) +relocated 1 +longdesc The package checks references in a document, looking for +longdesc numbered but unlabelled equations, for labels which are not +longdesc used in the text, for unused bibliography references. It can +longdesc also display label names in text near corresponding numbers of +longdesc equations and/or bibliography references. +containersize 3616 +containerchecksum 46dde83ed04d4586eb6a2af393ab925aa7238a30c23f49ea33f0da331e2a5071447c5df22b31c2cd9b10bd37458794fe15e53e0e79f002bbcf95b0471d6a7d02 +doccontainersize 43356 +doccontainerchecksum a87b6ab25848571770bc8a7ac1f47e139c7a2abebf36b9c72b65bc66e02c14b23f7b0d2246c7160b7669460f52afd29063449c6659336f01f3e99df53cbb4428 +docfiles size=14 + RELOC/doc/latex/refcheck/README details="Readme" + RELOC/doc/latex/refcheck/refdemo.pdf details="Package demo" + RELOC/doc/latex/refcheck/refdemo.tex +runfiles size=3 + RELOC/tex/latex/refcheck/refcheck.sty +catalogue-ctan /macros/latex/contrib/refcheck +catalogue-license gpl +catalogue-topics label-ref debug-supp +catalogue-version 1.9.1 + +name refcount +category Package +revision 53164 +shortdesc Counter operations with label references +relocated 1 +longdesc Provides commands \setcounterref and \addtocounterref which use +longdesc the section (or whatever) number from the reference as the +longdesc value to put into the counter, as in: ...\label{sec:foo} ... +longdesc \setcounterref{foonum}{sec:foo} Commands \setcounterpageref and +longdesc \addtocounterpageref do the corresponding thing with the page +longdesc reference of the label. No .ins file is distributed; process +longdesc the .dtx with plain TeX to create one. +containersize 3040 +containerchecksum da914e64de5b70e124d9eb62148f5650c9445d2fdb94272ce622478b9aa50a4c7625be9c2152fffe9ff9fd87ee19319a0bc31ec5fd82839a479faec687de4af4 +doccontainersize 325408 +doccontainerchecksum 5324828978e3c8c14e9a28b86cbf87de175b9908f460ce6090bf19944557cfe82b112c6543d2878b54f4a16b1a9f3f3ffc66eddf1234c04b8852dbfa3ebaf27e +docfiles size=81 + RELOC/doc/latex/refcount/README.md + RELOC/doc/latex/refcount/refcount.pdf details="Package documentation" +srccontainersize 7464 +srccontainerchecksum 26c03363bd65be818d05792fc1c7e3a2e7e747a49382562eeebaefac35d5b4143b86bd46fce97fd4aa0f162ce7a1399e200f2593b3920091159bcfa08f0f8781 +srcfiles size=8 + RELOC/source/latex/refcount/refcount.dtx +runfiles size=3 + RELOC/tex/latex/refcount/refcount.sty +catalogue-contact-bugs https://github.com/ho-tex/refcount/issues +catalogue-contact-repository https://github.com/ho-tex/refcount +catalogue-ctan /macros/latex/contrib/refcount +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 3.6 + +name refenums +category Package +revision 44131 +shortdesc Define named items and provide back-references with that name +relocated 1 +longdesc The package provides commands to define enumerable items with a +longdesc number and a long name, which can be referenced later with the +longdesc name or just the short form. For instance, "Milestone M1: +longdesc Specification created" can be defined and later on be +longdesc referenced with 'M1' or 'M1 ("Specification created")'. The +longdesc text in the references is derived from the definition and also +longdesc rendered as hyperlink to the definition. +containersize 2180 +containerchecksum 7113ba67dcaf3ca2a070e42b4fa9660889bdf7803401cc0f8c3f9f62c59e467d9f637c526712bf9aa9fc7ac3df3c550a41f419de9cff375e24e68d102207e8af +doccontainersize 188004 +doccontainerchecksum 3511419e6507d2c5a7b48679e9220e63643b38f803e8a5d7046a55ea6b6f4827fdfabb74336fe61ba35628868a7f042ad472567e73351d13ab9568c508468a97 +docfiles size=56 + RELOC/doc/latex/refenums/LICENSE + RELOC/doc/latex/refenums/README.md details="Readme" + RELOC/doc/latex/refenums/README.pdf details="Package documentation" + RELOC/doc/latex/refenums/demo.pdf + RELOC/doc/latex/refenums/demo.tex + RELOC/doc/latex/refenums/test/demo-sec-param.tex +runfiles size=2 + RELOC/tex/latex/refenums/refenums.sty +catalogue-contact-repository https://github.com/koppor/refenums +catalogue-ctan /macros/latex/contrib/refenums +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.1.2 + +name reflectgraphics +category Package +revision 40612 +shortdesc Techniques for reflecting graphics +relocated 1 +longdesc The package provides a macro for reflecting images, in a number +longdesc of different ways, in pursuit of "more striking" graphics in a +longdesc document. +containersize 2308 +containerchecksum ad670c699d958eaf103db1ae65d79bad78dbb0677c7464144739fd67b63dc5acd3c298f81c81f258de477fe9f2d4a4177de887ce1c031ac9c701662167c1a5d6 +doccontainersize 236908 +doccontainerchecksum 78717728d537cf0dacaee67151cd7f19fef6fa031a856ac49a58bb576337690df4323c80e1ff0f318a4eda3689fbdbc2aa5a3bbcef69b957fc4615ff825e1e0a +docfiles size=69 + RELOC/doc/latex/reflectgraphics/README details="Readme" + RELOC/doc/latex/reflectgraphics/example.jpg + RELOC/doc/latex/reflectgraphics/reflectgraphics.pdf details="Package documentation" +srccontainersize 7788 +srccontainerchecksum f228c9e8dedcd7d261269c896b0ef1ebeb7efc18a0137fcd64765ec92b957eb634d8e0e2d4f6aceebf1760e65936c6bb1a7b706c852e6c220282448830b7f672 +srcfiles size=8 + RELOC/source/latex/reflectgraphics/reflectgraphics.dtx + RELOC/source/latex/reflectgraphics/reflectgraphics.ins +runfiles size=2 + RELOC/tex/latex/reflectgraphics/reflectgraphics.sty +catalogue-contact-repository https://bitbucket.org/oreiche/reflectgraphics +catalogue-ctan /macros/latex/contrib/reflectgraphics +catalogue-license lppl1.3 +catalogue-topics graphics-manip +catalogue-version 0.2c + +name refman +category Package +revision 15878 +shortdesc Format technical reference manuals +relocated 1 +longdesc Document classes (report- and article-style) for writing +longdesc technical reference manuals. It offers a wide left margin for +longdesc notes to the reader, like some of the manuals distributed by +longdesc Adobe. +containersize 9348 +containerchecksum 45f51a654703a7e749e7dbb08fd0ccedc86b5f264ce08b504ed11827799202583f81a4f3fe32dae0794e20cefe2e6bbd0ff8563955c3a85eac2642c307aaf332 +doccontainersize 643176 +doccontainerchecksum 560d70322bcedfd0ca6a10c161d3930d389e77fef25ed568f5a68ec87eaa63efd4f7dd2363bab283af00a49719c3c8ba38e8a35ca011ea349dd854a0698ec79f +docfiles size=211 + RELOC/doc/latex/refman/00Contents + RELOC/doc/latex/refman/lay_d2.tex + RELOC/doc/latex/refman/lay_e2.tex + RELOC/doc/latex/refman/layout_d.pdf details="Layout-Anderungen mit LaTeX" language="de" + RELOC/doc/latex/refman/layout_d.tex + RELOC/doc/latex/refman/layout_e.pdf details="Changing the layout with LaTeX" language="en" + RELOC/doc/latex/refman/layout_e.tex + RELOC/doc/latex/refman/refman.pdf details="Package documentation" + RELOC/doc/latex/refman/refman.upl details="README" +srccontainersize 28680 +srccontainerchecksum 722e2493c24738bf767b271183eb1422ab103b84dec17d28f615a52d9b35e1671d3745fc5a6fc97b2a9d7934f314fbc7dba9734af8e0c802cc6760940112230c +srcfiles size=33 + RELOC/source/latex/refman/refman.dtx + RELOC/source/latex/refman/refman.ins +runfiles size=18 + RELOC/tex/latex/refman/pagepc.sty + RELOC/tex/latex/refman/refart.cls + RELOC/tex/latex/refman/refrep.cls +catalogue-ctan /macros/latex/contrib/refman +catalogue-license lppl +catalogue-topics class +catalogue-version 2.0e + +name refstyle +category Package +revision 20318 +shortdesc Advanced formatting of cross references +relocated 1 +longdesc The package provides a consistent way of producing references +longdesc throughout a project. Enough flexibility is provided to make +longdesc local changes to a single reference. The user can configure +longdesc their own setup. The package offers a direct interface to +longdesc varioref (for use, for example, in large projects such as a +longdesc series of books, or a multivolume thesis written as a series of +longdesc documents), and name references from the nameref package may be +longdesc incorporated with ease. For large projects such as a series of +longdesc books or a multi volume thesis, written as freestanding +longdesc documents, a facility is provided to interface to the xr +longdesc package for external document references. +containersize 6140 +containerchecksum 15ab0ac1b41608ed2453bf1de27515aaeabd0b06a3e44fa3ced6b67f5e79cf237e92112848622303df2e174ae1e60b77ff31583837f3b12a447f8c4509891cbc +doccontainersize 671044 +doccontainerchecksum 9edca88347914ef7810c3b1639cb85f598963404620a99f81f5bd56d45b684e55bf179ba46a5a49953a88151251ec084fe6126fa3ce83d2635450bad25e07059 +docfiles size=192 + RELOC/doc/latex/refstyle/README + RELOC/doc/latex/refstyle/refconfig.pdf details="Configuration manual" + RELOC/doc/latex/refstyle/refstyle.pdf details="Users manual" +srccontainersize 21964 +srccontainerchecksum 9052f56bd87d9ecfb2bd09a3de7f1740837d1e0fea17eb2ff11c1bddc11ad2cdf3d9287167df61f0ebf1eeb4bdf7eed3b5a19b748ee8e560a7695e0418291a6f +srcfiles size=28 + RELOC/source/latex/refstyle/refconfig.dtx + RELOC/source/latex/refstyle/refstyle.dtx + RELOC/source/latex/refstyle/refstyle.ins +runfiles size=8 + RELOC/tex/latex/refstyle/refstyle.cfg + RELOC/tex/latex/refstyle/refstyle.sty +catalogue-ctan /macros/latex/contrib/refstyle +catalogue-license lppl +catalogue-topics label-ref +catalogue-version 0.5 + +name regcount +category Package +revision 19979 +shortdesc Display the allocation status of the TeX registers +relocated 1 +longdesc Adds a macro \rgcounts which displays the allocation status of +longdesc the TeX registers. The display is written into the .log file as +longdesc it is a bit verbose. An automatic call to \rgcounts is done at +longdesc \begin{document} and \end{document}. +containersize 1684 +containerchecksum 6481e37b45ec26aa270637b465d9fabef010c6717c0a402f0bc2afaf5dfcd877e46fd8699ff8fa39d80218e6f319e09acec1417a47fedefe6da5d90a81b2928d +doccontainersize 197208 +doccontainerchecksum 19215d4d4e22777b236f4226d82cebb1d0f8ced841cb33a4b275f0cb558c3addd4a1fd76d3aae9cac5e275695e197574145649be5f767372bd1bff13ec76cbb7 +docfiles size=50 + RELOC/doc/latex/regcount/readme details="Readme" + RELOC/doc/latex/regcount/regcount.pdf details="Package documentation" +srccontainersize 3792 +srccontainerchecksum 4b152aa79080914fa59e2b8a3103fea930ad3a0ab8959c570eba06ba36596d82ba58d03a4404cac9b2ebe3d073ca0eaff856a892b3d1e84d183a9ed60f32e42a +srcfiles size=4 + RELOC/source/latex/regcount/regcount.dtx + RELOC/source/latex/regcount/regcount.ins +runfiles size=1 + RELOC/tex/latex/regcount/regcount.sty +catalogue-ctan /macros/latex/contrib/regcount +catalogue-license lppl +catalogue-topics debug-supp +catalogue-version 1.0 + +name regexpatch +category Package +revision 58668 +shortdesc High level patching of commands +relocated 1 +longdesc The package generalises the macro patching commands provided by +longdesc P. Lehmann's etoolbox. The difference between this package and +longdesc its sibling xpatch is that this package sports a very powerful +longdesc \regexpatchcmd based on the l3regex module of the LaTeX3 +longdesc experimental packages. +containersize 3680 +containerchecksum 80b3be47155c8cd654d1b3ff7a1e261da826d97237b15733e6f63f6e3e9f1e40fb8f1cfbff48b38c4ca3acabdd3209147664aa8aa408b4601751f58d596c0f38 +doccontainersize 532336 +doccontainerchecksum 7cb6eaa1ba3e7ffcb80001b2380171204059907fa5345c3c684eb84861340f70590a8b5f1f3fb30a84516ccb2d49b3245a6a697b328157f7ed09bf9caa80982d +docfiles size=132 + RELOC/doc/latex/regexpatch/README details="Readme" + RELOC/doc/latex/regexpatch/regexpatch.pdf details="Package documentation" +srccontainersize 12568 +srccontainerchecksum bbe6ee9178c3f7d3272fd585f50f0ab66a86d38bbc65ba40a7deb8e22c6d300299c8f4203d3849b5f3c068f2194bc2ef0206ed0c0e5ebb3b235d8a83cd367d08 +srcfiles size=16 + RELOC/source/latex/regexpatch/regexpatch.dtx + RELOC/source/latex/regexpatch/regexpatch.ins +runfiles size=7 + RELOC/tex/latex/regexpatch/regexpatch.sty +catalogue-ctan /macros/latex/contrib/regexpatch +catalogue-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 0.2f + +name register +category Package +revision 54485 +shortdesc Typeset programmable elements in digital hardware (registers) +relocated 1 +longdesc This package is designed for typesetting the programmable +longdesc elements in digital hardware, i.e., registers. Such registers +longdesc typically have many fields and can be quite wide; they are thus +longdesc a challenge to typeset in a consistent manner. Register is +longdesc similar in some aspects to the bytefield and bitpattern +longdesc packages. Anyone doing hardware documentation using LaTeX +longdesc should examine those packages. Register requires version +longdesc 2001/07/25 or newer of the float package. An example Perl +longdesc module and script are provided, to convert the register +longdesc specifications into structures suitable for, say, a pre-silicon +longdesc test environment. +containersize 4648 +containerchecksum 709694065b22e33c9d3f8d859ba8632672bd5e3fcf6102d0915c203b4fa6773e0e78f02b1af537b3ff2eabab5dffdae40e0dce63232037c37d4e50ff325e8116 +doccontainersize 314992 +doccontainerchecksum 08ee956f1f667245f3dc63a27f10b898a03929302f68f1fe19bfa3cc923a890ca72795d4500b16da31e7f69d375fc60e5023ebe404f3ee8b0ecc289fb7a6af5c +docfiles size=83 + RELOC/doc/latex/register/README details="Readme" + RELOC/doc/latex/register/Reg_macro.pm + RELOC/doc/latex/register/reg_list.pl + RELOC/doc/latex/register/register.pdf details="Package documentation" +srccontainersize 15436 +srccontainerchecksum 9bccd74449f5b20fdaae9b1a6e9178a1849f711bee6ca23229c20bdb78f036a81d38a370cd8dbd0a092d0f9fbd0f97b71d61e81f337561e7345610e04412dcf3 +srcfiles size=15 + RELOC/source/latex/register/register.dtx + RELOC/source/latex/register/register.ins +runfiles size=5 + RELOC/tex/latex/register/register.sty +catalogue-ctan /macros/latex/contrib/register +catalogue-license lppl1.3 +catalogue-topics engineering comp-sci comp-net +catalogue-version 2.0 + +name regstats +category Package +revision 25050 +shortdesc Information about register use +relocated 1 +longdesc The package will report number of used registers (counter, +longdesc dimen, skip, muskip, box, token, input, output, math families, +longdesc languages, insertions), and will compare the number to the +longdesc maximum available number of such registers. +containersize 3648 +containerchecksum 95e68cf4ea4cbb34801a7412ef1ce87fd75d017681e43ccb86e56ff47494aaf95e3cdccb4f0c2ea6a276d99960df881857d9a138368fa6cd37d7f38554ad84dc +doccontainersize 398972 +doccontainerchecksum 1883f17190f3b24414dc8ef7f874cb50d682b5dcdf45f8bf95fd15b3347996de37a7839b727da4cdc9e39869ee1def31ed1b2be02e48bc68a81c0d2f8aef8be2 +docfiles size=105 + RELOC/doc/latex/regstats/README details="Readme" + RELOC/doc/latex/regstats/regstats-example.log + RELOC/doc/latex/regstats/regstats-example.pdf + RELOC/doc/latex/regstats/regstats-example.tex + RELOC/doc/latex/regstats/regstats.pdf details="Package documentation" +srccontainersize 13252 +srccontainerchecksum 4e7392bd85860ae971fcd06025f5753d7f2c815cb216d6a53eba1504c4f9de7fee9826807149826ee69c6776f17a0f0f537ffe7ad1be04597ce221d5cd8f7ff4 +srcfiles size=15 + RELOC/source/latex/regstats/regstats.drv + RELOC/source/latex/regstats/regstats.dtx + RELOC/source/latex/regstats/regstats.ins +runfiles size=4 + RELOC/tex/latex/regstats/regstats.sty +catalogue-also regcount +catalogue-ctan /macros/latex/contrib/regstats +catalogue-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 1.0h + +name reledmac +category Package +revision 58763 +shortdesc Typeset scholarly editions +relocated 1 +longdesc A package for typesetting scholarly critical editions, +longdesc replacing the established ledmac and eledmac packages. Ledmac +longdesc itself was a LaTeX port of the plain TeX EDMAC macros. The +longdesc package supports indexing by page and by line numbers, and +longdesc simple tabular- and array-style environments. The package is +longdesc distributed with the related reledpar package. +containersize 54940 +containerchecksum 9e735a11d0538d2590ef9f4daa93df54fa40678e668129b79aad193c65374895f4a11a519b714c7c3d65174af054853bc777fb4d5bdf41ef456c7896028b0d0b +doccontainersize 10224112 +doccontainerchecksum 7c4d169751893332c65cfcd25b4f9bdc902ddd5581d9df9787149762cdb623e63c580f959bb40c03c5d18c1356d461b94ea13255faf0fc75f49ee35fd6e68acb +docfiles size=3329 + RELOC/doc/latex/reledmac/README.md details="Readme" + RELOC/doc/latex/reledmac/doc-include/migrate-mac.dtx + RELOC/doc/latex/reledmac/doc-include/migrate-par.dtx + RELOC/doc/latex/reledmac/doc-more/latexmkrc + RELOC/doc/latex/reledmac/doc-more/makefile + RELOC/doc/latex/reledmac/doc-more/page-typesetting-columns.pdf + RELOC/doc/latex/reledmac/doc-more/page-typesetting-columns.tex + RELOC/doc/latex/reledmac/examples/1-criticalendnotes.pdf + RELOC/doc/latex/reledmac/examples/1-criticalendnotes.tex + RELOC/doc/latex/reledmac/examples/1-criticalnotes.pdf + RELOC/doc/latex/reledmac/examples/1-criticalnotes.tex + RELOC/doc/latex/reledmac/examples/1-sidenotes.pdf + RELOC/doc/latex/reledmac/examples/1-sidenotes.tex + RELOC/doc/latex/reledmac/examples/1-tabular.pdf + RELOC/doc/latex/reledmac/examples/1-tabular.tex + RELOC/doc/latex/reledmac/examples/1-verses-doublenumbering.pdf + RELOC/doc/latex/reledmac/examples/1-verses-doublenumbering.tex + RELOC/doc/latex/reledmac/examples/1-verses.pdf + RELOC/doc/latex/reledmac/examples/1-verses.tex + RELOC/doc/latex/reledmac/examples/2-antilabe.pdf + RELOC/doc/latex/reledmac/examples/2-antilabe.tex + RELOC/doc/latex/reledmac/examples/2-cross_referencing.pdf + RELOC/doc/latex/reledmac/examples/2-cross_referencing.tex + RELOC/doc/latex/reledmac/examples/2-footnote_spacing.pdf + RELOC/doc/latex/reledmac/examples/2-footnote_spacing.tex + RELOC/doc/latex/reledmac/examples/2-glossaries.pdf + RELOC/doc/latex/reledmac/examples/2-glossaries.tex + RELOC/doc/latex/reledmac/examples/2-indexing.pdf + RELOC/doc/latex/reledmac/examples/2-indexing.tex + RELOC/doc/latex/reledmac/examples/2-lemma_disambigution.pdf + RELOC/doc/latex/reledmac/examples/2-lemma_disambigution.tex + RELOC/doc/latex/reledmac/examples/2-line_numbers_in_header.pdf + RELOC/doc/latex/reledmac/examples/2-line_numbers_in_header.tex + RELOC/doc/latex/reledmac/examples/2-linespacing.pdf + RELOC/doc/latex/reledmac/examples/2-linespacing.tex + RELOC/doc/latex/reledmac/examples/2-manuscript-apparatus.pdf + RELOC/doc/latex/reledmac/examples/2-manuscript-apparatus.tex + RELOC/doc/latex/reledmac/examples/2-notes-width.pdf + RELOC/doc/latex/reledmac/examples/2-notes-width.tex + RELOC/doc/latex/reledmac/examples/2-one_series_per_pstart.pdf + RELOC/doc/latex/reledmac/examples/2-one_series_per_pstart.tex + RELOC/doc/latex/reledmac/examples/2-performances.pdf + RELOC/doc/latex/reledmac/examples/2-performances.tex + RELOC/doc/latex/reledmac/examples/2-reledmac-right-to-left.pdf + RELOC/doc/latex/reledmac/examples/2-reledmac-right-to-left.tex + RELOC/doc/latex/reledmac/examples/2-subdivision-number-in-header.pdf + RELOC/doc/latex/reledmac/examples/2-subdivision-number-in-header.tex + RELOC/doc/latex/reledmac/examples/2-titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/reledmac/examples/2-titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/reledmac/examples/2-titles_not_in_line_numbering.pdf + RELOC/doc/latex/reledmac/examples/2-titles_not_in_line_numbering.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_columns_different_languages.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_columns_different_languages.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_mwe.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_mwe.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_pages_different_languages_lualatex.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_pages_different_languages_lualatex.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_same_page_number_in_both_side.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_same_page_number_in_both_side.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted-nomax.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted-nomax.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_default.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_default.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax-shifted.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax-shifted.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nosync.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nosync.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_shifted.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_shifted.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column-continuous-numbering.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column-continuous-numbering.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_alignment.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_alignment.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_inside-outside-columns.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_inside-outside-columns.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_one_series_per_pstart.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_one_series_per_pstart.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_long_notes.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_long_notes.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_notes_leftpage.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_notes_leftpage.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_paragraph_separator_between.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_paragraph_separator_between.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_titles_not_in_line_numbering.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_titles_not_in_line_numbering.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_verse_text_between.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_verse_text_between.tex + RELOC/doc/latex/reledmac/examples/latexmkrc + RELOC/doc/latex/reledmac/examples/makefile + RELOC/doc/latex/reledmac/examples/reledmac.xdy + RELOC/doc/latex/reledmac/latexmkrc + RELOC/doc/latex/reledmac/makefile + RELOC/doc/latex/reledmac/migration.pdf + RELOC/doc/latex/reledmac/reledmac.pdf details="Package documentation" + RELOC/doc/latex/reledmac/reledpar.pdf +srccontainersize 208160 +srccontainerchecksum ec3823d10f63ce6bac7090acfbb8f1965704fddb1a8164b435f355090490ecb69beab7af79bac9f30abcb21276120e6cc86f05057a30c5884baecb8f421b0035 +srcfiles size=297 + RELOC/source/latex/reledmac/migration.dtx + RELOC/source/latex/reledmac/reledmac.dtx + RELOC/source/latex/reledmac/reledmac.ins + RELOC/source/latex/reledmac/reledpar.dtx + RELOC/source/latex/reledmac/reledpar.ins +runfiles size=99 + RELOC/tex/latex/reledmac/reledmac.sty + RELOC/tex/latex/reledmac/reledpar.sty +catalogue-also ednotes poemscol ledmac eledmac +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-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 2.37.2 + +name relenc +category Package +revision 22050 +shortdesc A "relaxed" font encoding +relocated 1 +longdesc LaTeX package providing a relaxed font encoding to make +longdesc available to a font designer more slots for insertion of +longdesc ligatures and accented characters. +containersize 11188 +containerchecksum d638db869698a6b564f1482c3ffbda561bac0da00e008b5b3ddcbe267587813042bd3d578ea871f5ef48a27309baf8e290413b65f99daa26ba7a8b2a1dc62050 +doccontainersize 26504 +doccontainerchecksum b5e81a7edf8e7d0c3be9ea46ffb2a43af5d58153ee91d656faba600d4082a8982706744ba1991c82ce8c119fd12fcc0eaee30353135338154b0445e48f33472f +docfiles size=26 + RELOC/doc/latex/relenc/README details="Readme" + RELOC/doc/latex/relenc/reldemo.tex + RELOC/doc/latex/relenc/relenc.tex + RELOC/doc/latex/relenc/zcmr8d.vf2 + RELOC/doc/latex/relenc/zcmr8d.vf3 + RELOC/doc/latex/relenc/zcmra.vf2 + RELOC/doc/latex/relenc/zcmra.vf3 +srccontainersize 26728 +srccontainerchecksum ef1a5c1034dfac3ed942354fad6a9e4cca44a33d2252120fe824bb41280453a6c8e00c259331e4159206f60e5043664bb4008e758d8b81dff06c7d68c3382e6a +srcfiles size=30 + RELOC/source/latex/relenc/relenc.dtx + RELOC/source/latex/relenc/relenc.ins + RELOC/source/latex/relenc/t1renc.dtx + RELOC/source/latex/relenc/t1rzcm.fdd +runfiles size=17 + RELOC/fonts/tfm/public/relenc/zcmr8d.tfm + RELOC/fonts/tfm/public/relenc/zcmra.tfm + RELOC/fonts/vf/public/relenc/zcmr8d.vf + RELOC/fonts/vf/public/relenc/zcmra.vf + RELOC/tex/latex/relenc/2sidedoc.sty + RELOC/tex/latex/relenc/ecsubzcm.sty + RELOC/tex/latex/relenc/relenc.sty + RELOC/tex/latex/relenc/t1renc.def + RELOC/tex/latex/relenc/t1rzcm.fd +catalogue-ctan /macros/latex/contrib/relenc +catalogue-license lppl1 +catalogue-topics font-devel + +name relsize +category Package +revision 30707 +shortdesc Set the font size relative to the current font size +relocated 1 +longdesc The basic command of the package is \relsize, whose argument is +longdesc a number of \magsteps to change size; from this are defined +longdesc commands \larger, \smaller, \textlarger, etc. +containersize 5716 +containerchecksum 90a4829b63d86214c44cadab6b9c9c114d6abfbd72dd4cd8bddb18add9b7fede2867f39d57b03ac9e7762950db71664767554b515b5409cc873d8b31aebb2c1c +doccontainersize 309064 +doccontainerchecksum 45b6e38a14c31d7387a99d78c395fd0cdab5ee8bbbe72f840d511d14f6af73f749649b48977e8a995c2ee375358677b31a97646c8162c5fe2ee6c286a05a20b8 +docfiles size=79 + RELOC/doc/latex/relsize/README details="Readme" + RELOC/doc/latex/relsize/relsize-doc.pdf details="Package documentation" + RELOC/doc/latex/relsize/relsize-doc.tex +runfiles size=4 + RELOC/tex/latex/relsize/relsize.sty +catalogue-ctan /macros/latex/contrib/relsize +catalogue-license pd +catalogue-topics font-sel macro-supp +catalogue-version 4.1 + +name reotex +category Package +revision 34924 +shortdesc Draw Reo Channels and Circuits +relocated 1 +longdesc The package defines macros and other utilities to design Reo +longdesc Circuits. The package requires PGF/TikZ support. +containersize 4116 +containerchecksum e97663d414291b3d0a009143ea370676bdc69b1897492ef86bd2092e47fcead566151f175676b4a19e196054ecd4a41706a74e9d4e6ba353d9e346786d04a2d9 +doccontainersize 200404 +doccontainerchecksum fbdfd00526129921896db36234343d991bba29b68adfdd06d9fce262a58b2cc544dbe49d28cb9722eff1fd03ba3a765e38368baeddff18e36bde436c56ce538d +docfiles size=56 + RELOC/doc/latex/reotex/README details="Readme" + RELOC/doc/latex/reotex/reotex.pdf details="Package documentation" + RELOC/doc/latex/reotex/reotex.tex +runfiles size=6 + RELOC/tex/latex/reotex/reotex.sty +catalogue-ctan /graphics/pgf/contrib/reotex +catalogue-license lppl +catalogue-topics diagram pgf-tikz +catalogue-version 1.1 + +name repeatindex +category Package +revision 24305 +shortdesc Repeat items in an index after a page or column break +relocated 1 +longdesc This Package repeats item of an index if a page or column break +longdesc occurs within a list of subitems. This helps to find out to +longdesc which main item a subitem belongs. +containersize 1904 +containerchecksum f700f201ff05d25fafde3eafd63ddb5aeba81dfe8be0dc4522a08459f35b3ab78cd06d215477ef5bd59c1dd6d1a05361ddfdc21159f3b6347f5a8271c4193192 +doccontainersize 1216 +doccontainerchecksum 031a5113799f662b88b2275f2f82467e2fd84ae58d18f4cb69e090aad7f2c8cb44eefc4c43f3fcda9e92de0c0027fd4ecaf9f152d33b73ebb69f06e6b4c8c1ae +docfiles size=2 + RELOC/doc/latex/repeatindex/README details="Readme" + RELOC/doc/latex/repeatindex/testrepeatindex.tex +runfiles size=3 + RELOC/makeindex/repeatindex/repeatindex.ist + RELOC/tex/latex/repeatindex/repeatindex.sty +catalogue-ctan /macros/latex/contrib/repeatindex +catalogue-license lppl +catalogue-topics index +catalogue-version 0.01 + +name repere +category Package +revision 51363 +shortdesc Diagrams for school mathematics +relocated 1 +longdesc This package provides MetaPost macros for drawing secondary +longdesc school mathematics figures in a coordinate system: axis, grids +longdesc points, vectors functions (curves, tangents, integrals, +longdesc sequences) statistic diagrams plane geometry (polygons, +longdesc circles) +containersize 16768 +containerchecksum 4bcfbea44ee34209ce95d6a64de3973eed864ac0e2453ab0afd8e1e05faa2d97fd8d90e90f4d2e1c8f1eb337321cba8c10b03975e1cd75aa32ec5c7373d54316 +doccontainersize 342484 +doccontainerchecksum 8a68f168573fa33ea635578aeeeb51060c3eae9f09ddd7dae1d49aca6de2a8eab7c857336eee1c17e2d4e1a7bb5f2440cd1901bf9aa61961966f727827cab38f +docfiles size=135 + RELOC/doc/metapost/repere/README.md details="Readme" + RELOC/doc/metapost/repere/repere-doc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/metapost/repere/repere-doc.tex +runfiles size=19 + RELOC/metapost/repere/repere.mp +catalogue-ctan /graphics/metapost/contrib/macros/repere +catalogue-license lppl1.3 +catalogue-topics teaching +catalogue-version 19.06 + +name repltext +category Package +revision 56433 +shortdesc Control how text gets copied from a PDF file +relocated 1 +longdesc The repltext package exposes to LaTeX a relatively obscure PDF +longdesc feature: replacement text. When replacement text is specified +longdesc for a piece of text, it is the replacement text, not the +longdesc typeset text that is copied and pasted. +containersize 1412 +containerchecksum a5deadeab45a6a2ab4732e91c26da32f276e2d5b35ff357faeb3361c917c3b47c81e59cb6934d052d3525df2a810510e6fa7a8b9e9d6d272c91b4b558de7132d +doccontainersize 426068 +doccontainerchecksum 0694a76754c98bcfb6999ddb96c368701556eb1de025af1ae32ab8e39361d18405fbd2c1438c1ebafd2cb06f2d9884afc08e1c94f57eaa89313f54d58a289808 +docfiles size=108 + RELOC/doc/latex/repltext/README details="Readme" + RELOC/doc/latex/repltext/repltext.pdf details="Package documentation" +srccontainersize 7104 +srccontainerchecksum 79a4c693599b0f20e4e1b2210f65dab3b1cc276bf3a661f385a2ec70c703846e881bebd2d6ae8913a007b832206e033f178c4017fc69ef099c3ff87f4b40f651 +srcfiles size=6 + RELOC/source/latex/repltext/repltext.dtx + RELOC/source/latex/repltext/repltext.ins +runfiles size=1 + RELOC/tex/latex/repltext/repltext.sty +catalogue-ctan /macros/latex/contrib/repltext +catalogue-license lppl1.3c +catalogue-topics pdf-feat +catalogue-version 1.1 + +name rerunfilecheck +category Package +revision 54841 +shortdesc Checksum based rerun checks on auxiliary files +relocated 1 +longdesc The package provides additional rerun warnings if some +longdesc auxiliary files have changed. It is based on MD5 checksum, +longdesc provided by pdfTeX. +depend atveryend +depend uniquecounter +containersize 3124 +containerchecksum 0ac228620001a42add1da0ea4ee7511413789e6c8e139a8a8a9f5cd0423893b324c1ca3644cef7b16bb5d2d4df26baa73b61d7aea2592b752e446b7185ff0cf5 +doccontainersize 313676 +doccontainerchecksum 5aac852ec67c34b6b2f7d040f7791ff9d706446b5b2a395177753d279718d5685a99b25a6f4121d532a395a29ead4f62d76760de48b0beb65adac0c08fbe281e +docfiles size=79 + RELOC/doc/latex/rerunfilecheck/README.md + RELOC/doc/latex/rerunfilecheck/rerunfilecheck-example.cfg + RELOC/doc/latex/rerunfilecheck/rerunfilecheck.pdf details="Package documentation" +srccontainersize 7320 +srccontainerchecksum 5201946b44007bc115cd7840f20c9948dd1a6e403290c301e5e735be80eb91c8913630d0d1e41343bdfefdd18ba0a247869d28ab152a21de67b932f1d181fa39 +srcfiles size=7 + RELOC/source/latex/rerunfilecheck/rerunfilecheck.dtx +runfiles size=3 + RELOC/tex/latex/rerunfilecheck/rerunfilecheck.sty +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-license lppl1.3 +catalogue-topics compilation +catalogue-version 1.9 + +name resphilosophica +category Package +revision 50935 +shortdesc Typeset articles for the journal Res Philosophica +relocated 1 +longdesc The bundle provides a class for typesetting articles for the +longdesc journal Res Philosophica. This work was commissioned by the +longdesc Saint Louis University. +containersize 12052 +containerchecksum 0ed9a50305132206585f322ba68fb514e0a4d566fc703a617cc6eda1de23b53820ee45231167f8b81aac826de732763e3c141a9ab65d13fac5d76e92d2101cde +doccontainersize 525148 +doccontainerchecksum 30739549cd7295186c10a54232e4ed57d6c2a589acf6f27ee758a40880e7a4178375835662b88bd78bd50ed0f695c71650003ae5ea78c63f5dcbefa15c5dd770 +docfiles size=138 + RELOC/doc/latex/resphilosophica/README details="Readme" + RELOC/doc/latex/resphilosophica/resphilosophica.bib + RELOC/doc/latex/resphilosophica/resphilosophica.pdf details="Package documentation" + RELOC/doc/latex/resphilosophica/rpsample.bib + RELOC/doc/latex/resphilosophica/rpsample.pdf + RELOC/doc/latex/resphilosophica/rpsample.tex +srccontainersize 17828 +srccontainerchecksum cfbaa18ff43da9287755c0cb3f218a57f034862ff9a63b3b77bc51e8171afc7c4042ee567230e7d1c263d7f993976bf4c2f3bfc055f0dd759b034d6d42d6df78 +srcfiles size=18 + RELOC/source/latex/resphilosophica/Makefile + RELOC/source/latex/resphilosophica/resphilosophica.dtx + RELOC/source/latex/resphilosophica/resphilosophica.ins +runfiles size=14 + RELOC/bibtex/bst/resphilosophica/resphilosophica.bst + RELOC/tex/latex/resphilosophica/resphilosophica.cls +catalogue-ctan /macros/latex/contrib/resphilosophica +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.35 + +name rest-api +category Package +revision 57068 +shortdesc Describing a rest api +relocated 1 +longdesc This LaTeX package provides macros to describe rest apis for +longdesc documentation purposes. The endpoints can hold the following +longdesc information: method description path parameter request body and +longdesc content type response body, content type and status code +containersize 2892 +containerchecksum a5a8f299d6feaaf4079e4a99fb84bdf7752016c92aaca0d0060692c13a7656c230e611e06bdb805712e7427d2e6cb599b96bee77e0c51ed769c4bc49cec32f1d +doccontainersize 142288 +doccontainerchecksum b823828c122f971101a161168cfbd489985c159278de80db86647b0c0adff207747b6877795ca97b27f541c7907aff90213feee61d4b039dffbb8b7514923e54 +docfiles size=39 + RELOC/doc/latex/rest-api/README.md details="Readme" + RELOC/doc/latex/rest-api/rest-api.pdf details="Package documentation" +srccontainersize 5324 +srccontainerchecksum 2869854fc933ed536ef425d8418303e3558ed8e0b3681c2d7042e1386b0069dcf70286ee732e0f8ace19cf6965e3bb046caa0384ce1423e1c71d9591012e5a10 +srcfiles size=8 + RELOC/source/latex/rest-api/rest-api.dtx + RELOC/source/latex/rest-api/rest-api.ins +runfiles size=4 + RELOC/tex/latex/rest-api/rest-api.sty +catalogue-contact-repository https://github.com/MusApfel/latex-describe-rest-api +catalogue-ctan /macros/latex/contrib/rest-api +catalogue-license lppl1.3c +catalogue-topics program-doc +catalogue-version 1.4 + +name resumecls +category Package +revision 54815 +shortdesc Typeset a resume both in English and Chinese +relocated 1 +longdesc A LaTeX document class to typeset a resume or CV both in +longdesc English and Chinese with more ease and flexibility. +containersize 1636 +containerchecksum 1ee39179bba50d32bd3d6d9a00dc9f77a9a2b1822e13958b15804307e36ca208eed327f4f8ac144418e2ccde8d9e248dcf4c72bd137bf440f956d60d0bb11634 +doccontainersize 157668 +doccontainerchecksum 23a3484a598f3b18763443fd4131a2e0278f17788aac6b640b00f0935c43ee7c3da5850892b525eb6bdbb9fb01d543f7a22b93cd5ffc64290ca0fa4f41a31354 +docfiles size=48 + RELOC/doc/xelatex/resumecls/README.md details="Readme" + RELOC/doc/xelatex/resumecls/example/Makefile + RELOC/doc/xelatex/resumecls/example/README.md details="Readme" + RELOC/doc/xelatex/resumecls/example/resume-common.tex + RELOC/doc/xelatex/resumecls/example/resume-en.pdf + RELOC/doc/xelatex/resumecls/example/resume-en.tex + RELOC/doc/xelatex/resumecls/example/resume-zh.pdf + RELOC/doc/xelatex/resumecls/example/resume-zh.tex + RELOC/doc/xelatex/resumecls/example/resume.bib + RELOC/doc/xelatex/resumecls/resumecls.pdf details="Package listing" +srccontainersize 4692 +srccontainerchecksum a2c0f2062f30675fd4c336f618e7f25e1abb2737aa98f5bcb499c5941ad4615246046f9b8a5aaa57d94ed3b40906a73985c2045f8e571c2d86cc0e7dd2c243da +srcfiles size=5 + RELOC/source/xelatex/resumecls/Makefile + RELOC/source/xelatex/resumecls/resumecls.dtx + RELOC/source/xelatex/resumecls/resumecls.ins +runfiles size=1 + RELOC/tex/xelatex/resumecls/resumecls.cls +catalogue-contact-announce https://github.com/huxuan/resumecls/releases +catalogue-contact-bugs https://github.com/huxuan/resumecls/issues +catalogue-contact-home https://github.com/huxuan/resumecls +catalogue-ctan /macros/xetex/latex/resumecls +catalogue-license lppl1.3 +catalogue-topics cv chinese class +catalogue-version 0.4.1 + +name resumemac +category Package +revision 15878 +shortdesc Plain TeX macros for resumes +relocated 1 +longdesc A set of macros is provided, together with an file that offers +longdesc an example of use. +containersize 3040 +containerchecksum f944441058cbe8468ed6646dcb10e09cbac78d5c7408c2a81f2531491739034e47da9fe8f45583008892740a57a2d36bbd1417f05f8d998bd79f886bfbad87bc +doccontainersize 1676 +doccontainerchecksum 5b89a7684cbe4da1c653d4a6253f82304b7b3634a9dc973e5f7da41967bdb034597e64a4fd82a922fac5ca62ee40e2ce35be6234deceb25000ff9103859e165b +docfiles size=2 + RELOC/doc/plain/resumemac/README + RELOC/doc/plain/resumemac/sample_resume.tex +runfiles size=2 + RELOC/tex/plain/resumemac/resumemac.tex +catalogue-ctan /macros/plain/contrib/resumemac +catalogue-license pd +catalogue-topics cv plain-ext + +name returntogrid +category Package +revision 48485 +shortdesc Semi-automatic grid typesetting +relocated 1 +longdesc returntogrid offers a few commands to get something like an +longdesc simple, semi-automatic grid typesetting. It does more or less +longdesc what the existing gridset package does. The main differences to +longdesc gridset are that returntogrid works also with LuaLaTeX and that +longdesc it has also a command to do some horizontal movements to get to +longdesc "tab" positions. +containersize 3948 +containerchecksum 751eddac662b8ca6d61edde7a25b11c357c497743aa0edff92be2a672fa13e4a92e6aaf40a8ed69853db642d656c3f54ad0af6cb35c94fe59cd540fa19f7b964 +doccontainersize 148880 +doccontainerchecksum 6f5eb1997e25ceaa7a8956ced78c584058cb8f9fc112f98c350ff996826188f9b7748b7bedc6c19ec0912894500a4743dc7542532317016ef3d295563c450889 +docfiles size=42 + RELOC/doc/latex/returntogrid/README.md details="Readme" + RELOC/doc/latex/returntogrid/returntogrid.pdf details="Package documentation" + RELOC/doc/latex/returntogrid/returntogrid.tex +runfiles size=4 + RELOC/tex/latex/returntogrid/returntogrid.lua + RELOC/tex/latex/returntogrid/returntogrid.sty +catalogue-also grid gridset +catalogue-contact-bugs https://github.com/u-fischer/returntogrid/issues +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-license lppl1.3c +catalogue-topics typeset-grid +catalogue-version 0.2 + +name reverxii +category Package +revision 24976 +shortdesc Playing Reversi in TeX +relocated 1 +longdesc Following the lead of xii.tex, this little (938 characters) +longdesc program that plays Reversi. (The program incorporates some +longdesc primitive AI.) +containersize 456 +containerchecksum fa6efb9655cda15356163a93ca89f2b6a114ea5bdc151774bc99910fabd3306781319f92a5b5728f29df136c73f994f49011e31ea9c1c01b4ef2fed10af10a93 +doccontainersize 206752 +doccontainerchecksum ff6b03b426de5508eb31fa5b2fe615fd5b7f0a6721e949bb48e1954c28cb547faa079461c0b1f885163bcba40c7f7d2a3fdc7dfb3946c08c308f5c37d33605a2 +docfiles size=55 + RELOC/doc/plain/reverxii/README details="Readme" + RELOC/doc/plain/reverxii/reverxii.pdf details="Package documentation" + RELOC/doc/plain/reverxii/reverxii.tex +catalogue-ctan /macros/plain/contrib/reverxii +catalogue-license lppl1.3 +catalogue-topics games frivolous + +name revquantum +category Package +revision 43505 +shortdesc Hacks to make writing quantum papers for revtex4-1 less painful +relocated 1 +longdesc This package provides a number of useful hacks to solve common +longdesc annoyances with the revtex4-1 package, and to define notation +longdesc in common use within quantum information. In doing so, it +longdesc imports and configures a number of commonly-available and used +longdesc packages, and where reasonable, provides fallbacks. It also +longdesc warns when users try to load packages which are known to be +longdesc incompatible with revtex4-1. +containersize 3948 +containerchecksum 0e69ce3a2a4a1c289d494e081cd28e9c14c84a45717880e92292cc94803783a350bbe33426c4f5e7ebf64e5b28876e656ab2f1ce681b86c27c7a3c6700563a41 +doccontainersize 252604 +doccontainerchecksum 16b8ff06bbc2155a853a26a0b622e3f89bb7d35439945948128fb37d342d293951526d415a3da9a01381f841dd61287317e52dddda8e8fa6e0eaa5d6a0006dc2 +docfiles size=65 + RELOC/doc/latex/revquantum/Install.ps1 + RELOC/doc/latex/revquantum/README.md details="Readme" + RELOC/doc/latex/revquantum/example.pdf details="Example of use" + RELOC/doc/latex/revquantum/example.tex + RELOC/doc/latex/revquantum/revquantum.pdf details="Package documentation" +srccontainersize 8792 +srccontainerchecksum 47e7a900aaa9198875acb1a0727bd30b64c0d41e9c33cd6240c29b8d67b17960f1ff05f717701385f627e6827881d365c01ed68b1adea8bd3e1b5423700f9bc6 +srcfiles size=8 + RELOC/source/latex/revquantum/revquantum.dtx + RELOC/source/latex/revquantum/revquantum.ins +runfiles size=3 + RELOC/tex/latex/revquantum/revquantum.sty +catalogue-ctan /macros/latex/contrib/revquantum +catalogue-license lppl1.3 +catalogue-topics physics journalpub +catalogue-version 0.11 + +name revtex +category Package +revision 56591 +shortdesc Styles for various Physics Journals +relocated 1 +longdesc Includes styles for American Physical Society, American +longdesc Institute of Physics, and Optical Society of America. The +longdesc distribution consists of the RevTeX class itself, and several +longdesc support packages. +containersize 69356 +containerchecksum 3ae6c843dea5ff9f91512a1b713aa2dd05f76d7116d2af3f005506864062a9d1e27888c33fc12aab96d5c566e9e7dcec0f91189f957bb4d2aa69953d6b10c316 +doccontainersize 4487388 +doccontainerchecksum 9110bca4c358d5364acddc8a04d95df821249bc93a9e811a4d94b703b6daf124962fcec404354bbecc32557ddb7ce67993a6dba7ebad514672dd586995cb23c0 +docfiles size=1455 + RELOC/doc/latex/revtex/README details="Package Readme" + RELOC/doc/latex/revtex/aip/aipguide4-2.pdf + RELOC/doc/latex/revtex/aip/aipguide4-2.tex + RELOC/doc/latex/revtex/aip4-2.pdf + RELOC/doc/latex/revtex/aps/apsguide4-2.pdf + RELOC/doc/latex/revtex/aps/apsguide4-2.tex + RELOC/doc/latex/revtex/auguide/auguide4-2.pdf + RELOC/doc/latex/revtex/auguide/auguide4-2.tex + RELOC/doc/latex/revtex/auguide/docs.sty + RELOC/doc/latex/revtex/auguide/summary4-2.pdf + RELOC/doc/latex/revtex/auguide/summary4-2.tex + RELOC/doc/latex/revtex/ltxdocext.pdf + RELOC/doc/latex/revtex/ltxfront.pdf + RELOC/doc/latex/revtex/ltxgrid.pdf + RELOC/doc/latex/revtex/ltxutil.pdf + RELOC/doc/latex/revtex/revtex4-2.pdf + RELOC/doc/latex/revtex/sample/aapm/aapmsamp.bib + RELOC/doc/latex/revtex/sample/aapm/aapmsamp.pdf + RELOC/doc/latex/revtex/sample/aapm/aapmsamp.tex + RELOC/doc/latex/revtex/sample/aapm/aapmtemplate.tex + RELOC/doc/latex/revtex/sample/aapm/fig_1.eps + RELOC/doc/latex/revtex/sample/aapm/fig_2.eps + RELOC/doc/latex/revtex/sample/aip/aipsamp.bib + RELOC/doc/latex/revtex/sample/aip/aipsamp.pdf + RELOC/doc/latex/revtex/sample/aip/aipsamp.tex + RELOC/doc/latex/revtex/sample/aip/aiptemplate.tex + RELOC/doc/latex/revtex/sample/aip/fig_1.eps + RELOC/doc/latex/revtex/sample/aip/fig_2.eps + RELOC/doc/latex/revtex/sample/aps/apssamp.bib + RELOC/doc/latex/revtex/sample/aps/apssamp.pdf + RELOC/doc/latex/revtex/sample/aps/apssamp.tex + RELOC/doc/latex/revtex/sample/aps/apstemplate.tex + RELOC/doc/latex/revtex/sample/aps/fig_1.eps + RELOC/doc/latex/revtex/sample/aps/fig_2.eps + RELOC/doc/latex/revtex/sample/aps/vid_1a.eps + RELOC/doc/latex/revtex/sample/aps/vid_1b.eps + RELOC/doc/latex/revtex/sample/sor/fig_1.eps + RELOC/doc/latex/revtex/sample/sor/fig_2.eps + RELOC/doc/latex/revtex/sample/sor/sorsamp.bib + RELOC/doc/latex/revtex/sample/sor/sorsamp.pdf + RELOC/doc/latex/revtex/sample/sor/sorsamp.tex + RELOC/doc/latex/revtex/sample/sor/sortemplate.tex +srccontainersize 195788 +srccontainerchecksum 88121fba6636f753b96ee19beea708d642c20292204e30e0be85dbf0e0af8e2e87386fe6596841e8c89861d2b4e6247913bf26fac35b1eeb33ebc0469e1be5bf +srcfiles size=280 + RELOC/source/latex/revtex/aip.dtx + RELOC/source/latex/revtex/aip4-2.dtx + RELOC/source/latex/revtex/ltxdocext.dtx + RELOC/source/latex/revtex/ltxfront.dtx + RELOC/source/latex/revtex/ltxgrid.dtx + RELOC/source/latex/revtex/ltxutil.dtx + RELOC/source/latex/revtex/revtex-bst.dtx + RELOC/source/latex/revtex/revtex4-2.dtx +runfiles size=214 + RELOC/bibtex/bst/revtex/aapmrev4-2.bst + RELOC/bibtex/bst/revtex/aipauth4-2.bst + RELOC/bibtex/bst/revtex/aipnum4-2.bst + RELOC/bibtex/bst/revtex/apsrev4-2.bst + RELOC/bibtex/bst/revtex/apsrmp4-2.bst + RELOC/tex/latex/revtex/aapm4-2.rtx + RELOC/tex/latex/revtex/aip4-2.rtx + RELOC/tex/latex/revtex/aps10pt4-2.rtx + RELOC/tex/latex/revtex/aps11pt4-2.rtx + RELOC/tex/latex/revtex/aps12pt4-2.rtx + RELOC/tex/latex/revtex/aps4-2.rtx + RELOC/tex/latex/revtex/apsrmp4-2.rtx + RELOC/tex/latex/revtex/ltxdocext.sty + RELOC/tex/latex/revtex/ltxfront.sty + RELOC/tex/latex/revtex/ltxgrid.sty + RELOC/tex/latex/revtex/ltxutil.sty + RELOC/tex/latex/revtex/reftest4-2.tex + RELOC/tex/latex/revtex/revsymb4-2.sty + RELOC/tex/latex/revtex/revtex4-2.cls + RELOC/tex/latex/revtex/sor4-2.rtx +catalogue-also revtex4-0 revtex4-1 +catalogue-contact-home https://journals.aps.org/revtex +catalogue-ctan /macros/latex/contrib/revtex +catalogue-license lppl1.3c +catalogue-topics physics journalpub class +catalogue-version 4.2e + +name revtex4 +category Package +revision 56589 +catalogue revtex4-0 +shortdesc Styles for various Physics Journals (old version) +relocated 1 +longdesc This is an old version of revtex, and is kept as a courtesy to +longdesc users having difficulty with the incompatibility of that latest +longdesc version. +containersize 47488 +containerchecksum cd1f83a7f2664c6002b93bf7ac3b5dfef4767b79f66cd03ed738e395027736d062d23f1a6a9354834093857d467664168295e615ed1c734b708c098943d7bf87 +doccontainersize 1485440 +doccontainerchecksum 3e74689745c65b4ae0aa5afc946983aad0507de7cd382db5cddfad6bd13e1414d5f72d7fa1308b3fb65b34eca82ae632b772690a67c643eca6a26490508f7597 +docfiles size=454 + RELOC/doc/latex/revtex4/DOWNLOAD + RELOC/doc/latex/revtex4/README details="Package Readme" + RELOC/doc/latex/revtex4/apssamp.bib + RELOC/doc/latex/revtex4/apssamp.tex + RELOC/doc/latex/revtex4/auguide.tex + RELOC/doc/latex/revtex4/differ.tex + RELOC/doc/latex/revtex4/docs.sty + RELOC/doc/latex/revtex4/fig_1.eps + RELOC/doc/latex/revtex4/fig_2.eps + RELOC/doc/latex/revtex4/ltxdocext.pdf + RELOC/doc/latex/revtex4/ltxgrid.pdf + RELOC/doc/latex/revtex4/ltxutil.pdf + RELOC/doc/latex/revtex4/revtex4.pdf + RELOC/doc/latex/revtex4/summary.tex + RELOC/doc/latex/revtex4/template.aps +srccontainersize 136108 +srccontainerchecksum 32be85786fab483ac0bf8ce8e0bb314a3920e17b3102ef7ad719a4e43c3fdae113089c76587ff2075f7bedd1a6dde3fae6123a0f346082aa7a7645e7c76538e5 +srcfiles size=165 + RELOC/source/latex/revtex4/ltxdocext.dtx + RELOC/source/latex/revtex4/ltxgrid.dtx + RELOC/source/latex/revtex4/ltxutil.dtx + RELOC/source/latex/revtex4/revtex4-bst.dtx + RELOC/source/latex/revtex4/revtex4.dtx + RELOC/source/latex/revtex4/revtex4.ins + RELOC/source/latex/revtex4/textcase.dtx +runfiles size=73 + RELOC/bibtex/bst/revtex4/apsrev.bst + RELOC/bibtex/bst/revtex4/apsrmp.bst + RELOC/tex/latex/revtex4/10pt.rtx + RELOC/tex/latex/revtex4/11pt.rtx + RELOC/tex/latex/revtex4/12pt.rtx + RELOC/tex/latex/revtex4/aps.rtx + RELOC/tex/latex/revtex4/revsymb.sty + RELOC/tex/latex/revtex4/revtex4.cls + RELOC/tex/latex/revtex4/rmp.rtx +catalogue-also revtex4-1 revtex +catalogue-contact-home https://journals.aps.org/revtex +catalogue-ctan /obsolete/macros/latex/contrib/revtex4-0 +catalogue-license lppl +catalogue-topics physics journalpub obsolete +catalogue-version 4.0a + +name revtex4-1 +category Package +revision 56590 +shortdesc Styles for various Physics Journals +relocated 1 +longdesc This is an old version of revtex, and is kept as a courtesy to +longdesc users having difficulty with the incompatibility of that latest +longdesc version. +containersize 61308 +containerchecksum 8c3e7c3845cd070ec51430a14a5b2d6f5b49821a837a6ac1f3a8889b353324479cf6121de0084b021c46722c425caa997b1b14df454f70bf7201ae4884de0f33 +doccontainersize 5428696 +doccontainerchecksum d17acddfc14e54d74b874d6d7599a3d20a2e314072a760b0d03ae7e17184e0264fc2d98f0d3b32109147f9b4e0a099e0c7f7e8747730a567d3a2b44d4e4d22f9 +docfiles size=1939 + RELOC/doc/latex/revtex4-1/00readme.tex + RELOC/doc/latex/revtex4-1/DOWNLOAD + RELOC/doc/latex/revtex4-1/README details="Package Readme" + RELOC/doc/latex/revtex4-1/aip.pdf + RELOC/doc/latex/revtex4-1/aip/aipguide4-1.pdf + RELOC/doc/latex/revtex4-1/aip/aipguide4-1.tex + RELOC/doc/latex/revtex4-1/aip/docs.sty + RELOC/doc/latex/revtex4-1/aps/apsguide4-1.pdf + RELOC/doc/latex/revtex4-1/aps/apsguide4-1.tex + RELOC/doc/latex/revtex4-1/auguide/auguide4-1.pdf + RELOC/doc/latex/revtex4-1/auguide/auguide4-1.tex + RELOC/doc/latex/revtex4-1/auguide/docs.sty + RELOC/doc/latex/revtex4-1/auguide/summary4-1.pdf + RELOC/doc/latex/revtex4-1/auguide/summary4-1.tex + RELOC/doc/latex/revtex4-1/auguide/whatsnew4-1.pdf + RELOC/doc/latex/revtex4-1/auguide/whatsnew4-1.tex + RELOC/doc/latex/revtex4-1/ltxdocext.pdf + RELOC/doc/latex/revtex4-1/ltxfront.pdf + RELOC/doc/latex/revtex4-1/ltxgrid.pdf + RELOC/doc/latex/revtex4-1/ltxutil.pdf + RELOC/doc/latex/revtex4-1/revtex4-1.pdf details="Package documentation" + RELOC/doc/latex/revtex4-1/sample/aip/aipsamp.bib + RELOC/doc/latex/revtex4-1/sample/aip/aipsamp.pdf + RELOC/doc/latex/revtex4-1/sample/aip/aipsamp.tex + RELOC/doc/latex/revtex4-1/sample/aip/aiptemplate.tex + RELOC/doc/latex/revtex4-1/sample/aip/fig_1.eps + RELOC/doc/latex/revtex4-1/sample/aip/fig_2.eps + RELOC/doc/latex/revtex4-1/sample/aps/apssamp.bib + RELOC/doc/latex/revtex4-1/sample/aps/apssamp.pdf + RELOC/doc/latex/revtex4-1/sample/aps/apssamp.tex + RELOC/doc/latex/revtex4-1/sample/aps/apstemplate.tex + RELOC/doc/latex/revtex4-1/sample/aps/fig_1.eps + RELOC/doc/latex/revtex4-1/sample/aps/fig_2.eps + RELOC/doc/latex/revtex4-1/sample/aps/vid_1a.eps + RELOC/doc/latex/revtex4-1/sample/aps/vid_1b.eps + RELOC/doc/latex/revtex4-1/source/aip.pdf + RELOC/doc/latex/revtex4-1/source/ltxdocext.pdf + RELOC/doc/latex/revtex4-1/source/ltxfront.pdf + RELOC/doc/latex/revtex4-1/source/ltxgrid.pdf + RELOC/doc/latex/revtex4-1/source/ltxutil.pdf + RELOC/doc/latex/revtex4-1/source/revtex4-1.pdf details="Package documentation" +srccontainersize 79740 +srccontainerchecksum d21d299085b7ce98e665cdd28754878c95beb7b0f0dbec970be3e39334bb520eee0ae4784cb4118b60edc0a92c6abb5bca8ad567cda65f5acdfd72449b15f2f9 +srcfiles size=109 + RELOC/source/latex/revtex4-1/aip.dtx + RELOC/source/latex/revtex4-1/revtex4-1-bst.dtx + RELOC/source/latex/revtex4-1/revtex4-1.dtx +runfiles size=140 + RELOC/bibtex/bst/revtex4-1/aipauth4-1.bst + RELOC/bibtex/bst/revtex4-1/aipnum4-1.bst + RELOC/bibtex/bst/revtex4-1/apsrev4-1.bst + RELOC/bibtex/bst/revtex4-1/apsrmp4-1.bst + RELOC/tex/latex/revtex4-1/aip4-1.rtx + RELOC/tex/latex/revtex4-1/aps10pt4-1.rtx + RELOC/tex/latex/revtex4-1/aps11pt4-1.rtx + RELOC/tex/latex/revtex4-1/aps12pt4-1.rtx + RELOC/tex/latex/revtex4-1/aps4-1.rtx + RELOC/tex/latex/revtex4-1/apsrmp4-1.rtx + RELOC/tex/latex/revtex4-1/revsymb4-1.sty + RELOC/tex/latex/revtex4-1/revtex4-1.cls +catalogue-also revtex4-0 revtex +catalogue-contact-home https://journals.aps.org/revtex +catalogue-ctan /obsolete/macros/latex/contrib/revtex4-1 +catalogue-license lppl1.3 +catalogue-topics physics journalpub obsolete +catalogue-version 4.1s + +name rgltxdoc +category Package +revision 53858 +shortdesc Common code for documentation of the author's packages +relocated 1 +longdesc This package combines several other packages and defines +longdesc additional macros and environments for documenting LaTeX code. +longdesc The package mainly serves the purpose of combining the +longdesc preferences used in the author's own package documentations. +longdesc However, others can use the package as well. Compatibility +longdesc between versions cannot be guaranteed, however. +containersize 3340 +containerchecksum 85b9166bb4408d3b1091b033455650fdf53b24c2fce821c872420191390a1bfbf457326a1a85aab1bf0d6c15765275337764f87adcb393464f2533e2462f10c3 +doccontainersize 161168 +doccontainerchecksum 5e35c6d1e6883c895d031f047fff1ededd4629158a8958b61fb6fcbd885c57797726f595894081b4933c78e5f346289a020424405e0dcae6df40b279b86395cb +docfiles size=42 + RELOC/doc/latex/rgltxdoc/README.md details="Readme" + RELOC/doc/latex/rgltxdoc/rgltxdoc.pdf details="Package documentation" +srccontainersize 9516 +srccontainerchecksum 8f94655ca8d0006aed02fa7e8fd28c5e3b8be6e92ab010a674d85bc88ce8f6e0120392540fcf5f7649a4af1e6bed4e0aec3d1d15cd095738beeb709fa2efe526 +srcfiles size=9 + RELOC/source/latex/rgltxdoc/rgltxdoc.dtx + RELOC/source/latex/rgltxdoc/rgltxdoc.ins +runfiles size=2 + RELOC/tex/latex/rgltxdoc/rgltxdoc.sty +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-license lppl1.2 +catalogue-topics doc-supp +catalogue-version 1.3 + +name ribbonproofs +category Package +revision 31137 +shortdesc Drawing ribbon proofs +relocated 1 +longdesc The package provides a way to draw "ribbon proofs" in LaTeX. A +longdesc ribbon proof is a diagrammatic representation of a mathematical +longdesc proof that a computer program meets its specification. These +longdesc diagrams are more human-readable, more scalable, and more +longdesc easily modified than the corresponding textual proofs. +containersize 11420 +containerchecksum 88d1ea87819bef7f8e70e0df273315981c28ffdbc00247431afb8b92959aa2e0a3e489b01f7571d30ffaf3606d240f25bee6487fc704f39417146a93403bcb3b +doccontainersize 335072 +doccontainerchecksum d0efb33c19d632253384182b562cf0e0aa10be81ce2336992c83ca7d25abce37c44b152cc8e928cdac90709cb99a4a5caf3ce8a631b13762aee7b39ad92da3a2 +docfiles size=93 + RELOC/doc/latex/ribbonproofs/README details="Readme" + RELOC/doc/latex/ribbonproofs/ribbonproofsmanual.pdf details="Package documentation" + RELOC/doc/latex/ribbonproofs/ribbonproofsmanual.tex +runfiles size=14 + RELOC/tex/latex/ribbonproofs/ribbonproofs.sty +catalogue-ctan /macros/latex/contrib/ribbonproofs +catalogue-license lppl1.3 +catalogue-topics proof +catalogue-version 1.0 + +name rjlparshap +category Package +revision 15878 +shortdesc Support for use of \parshape in LaTeX +relocated 1 +longdesc The package provides macros and environments that relieve the +longdesc programmer of some of the difficulties of using \parshape in +longdesc LaTeX macros. It does not actually calculate shapes in the way +longdesc that the shapepar package does. +containersize 1852 +containerchecksum 9a7f5f821635f110d9bad0015d9fdf489f836cc6ec0c101f63a3bf5bf9235d7446dad98db1325b0720bab85d68432f4cbdbc6dfc78456329a8c48b47d9212abb +doccontainersize 110516 +doccontainerchecksum 73987b63cd565766586dff08144bb9cfab13b7251053d5f008ccb7dd3091ec9d3bbe8ed92fd8e7dddce93afd13a649e68826468b87947a036a054fea76225921 +docfiles size=32 + RELOC/doc/latex/rjlparshap/README details="Readme" + RELOC/doc/latex/rjlparshap/rjlpshap.pdf details="Package documentation" +srccontainersize 7580 +srccontainerchecksum 37af8ef7c124fc331a4156b177578aed29b99777a0270ef819b896e5f6dac9b694c3a05ea439cdc21533a405bd052e071036682b0846905c09ce95c32a986dff +srcfiles size=8 + RELOC/source/latex/rjlparshap/rjlpshap.dtx + RELOC/source/latex/rjlparshap/rjlpshap.ins +runfiles size=2 + RELOC/tex/latex/rjlparshap/rjlpshap.sty +catalogue-ctan /macros/latex/contrib/rjlparshap +catalogue-license lppl1.2 +catalogue-topics micro-layout +catalogue-version 1.0 + +name rlepsf +category Package +revision 19082 +shortdesc Rewrite labels in EPS graphics +relocated 1 +longdesc A macro package for use with epsf.tex which allows PostScript +longdesc labels in an Encapsulated PostScript file to be replaced by TeX +longdesc labels. The package provides commands \relabel (simply replace +longdesc a PostScript string), \adjustrelabel (replace a PostScript +longdesc string, with position adjustment), and \extralabel (add a label +longdesc at given coordinates). You can, if you so choose, use the +longdesc facilities of the labelfig package in place of using +longdesc \extralabel. +containersize 3012 +containerchecksum 198037c1fd20eaa28b727054607241b7ada10c9dbf4d48cd36f295a8b51a7d4f94859d2349d3d4e831a74e0da025ccaaf91fb53a3074a704f7a3216bb7df0cf1 +doccontainersize 59272 +doccontainerchecksum fc06c857011fe01b07180c9530a334e021f5b9c034c65e15959e173a409670947c7aa406bf751d64d5d77d462139f4835824aa53203381d27d4ecb0e51463e7f +docfiles size=52 + RELOC/doc/generic/rlepsf/read.me + RELOC/doc/generic/rlepsf/rlepsdoc.ps details="Package documentation" +runfiles size=2 + RELOC/tex/generic/rlepsf/rlepsf.tex +catalogue-also psfrag +catalogue-ctan /macros/generic/rlepsf +catalogue-license lppl +catalogue-topics graphics + +name rmathbr +category Package +revision 57173 +shortdesc Repeating of math operator at the broken line and the new line in inline equations +relocated 1 +longdesc Repeating of math operators at the broken line and the new line +longdesc in inline equations is used in Cyrillic mathematical typography +longdesc (Russian for example), but unfortunately LaTeX does not provide +longdesc such an option. This package solves the problem by extending +longdesc ideas described in M. I. Grinchuk "TeX and Russian Traditions +longdesc of Typesetting", TUGboat 17(4) (1996) 385 and supports most of +longdesc LaTeX mathematical packages. See the documentation for details. +containersize 8656 +containerchecksum d1394e40203bc7a0adffd26587870ad4aca0faaff6226047cedd5ece5e55e6a99e56829a38ce40b6736c1f9a03b9bc4b337a0e4f9eadf0617ddc385a60372176 +doccontainersize 252508 +doccontainerchecksum e7c8d4f198399ac35e51a0d1c2c6ec420c746768de362a8179c0208325a45b11a8ba6445c2b7a433e7689e677505e3baa4b87d48a749bea5f3243d10f43deb83 +docfiles size=72 + RELOC/doc/latex/rmathbr/README details="Readme" + RELOC/doc/latex/rmathbr/rmathbr.pdf details="Package documentation" +srccontainersize 14392 +srccontainerchecksum 44e4859933c2a5f664feb1bd40ce1e51da845fed56b8594d3fcbbc814654c80b18d20760db3c2690fbfa74233523e4e8492471415154942cd2666cc52837a98f +srcfiles size=23 + RELOC/source/latex/rmathbr/rmathbr.dtx + RELOC/source/latex/rmathbr/rmathbr.ins +runfiles size=15 + RELOC/tex/latex/rmathbr/rmathbr.sty +catalogue-ctan /macros/latex/contrib/rmathbr +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.1.1 + +name rmpage +category Package +revision 54080 +shortdesc A package to help change page layout parameters in LaTeX +relocated 1 +longdesc The package lets you change page layout parameters in small +longdesc steps over a range of values using options. It can set +longdesc \textwidth appropriately for the main fount, and ensure that +longdesc the text fits inside the printable area of a printer. An +longdesc rmpage-formatted document can be typeset identically without +longdesc rmpage after a single cut and paste operation. Local +longdesc configuration can set defaults: for all documents; and by +longdesc class, by printer, and by paper size. The geometry package is +longdesc better if you want to set page layout parameters to particular +longdesc measurements. +containersize 61812 +containerchecksum 13c05ff27a2b5979102c80bf30cda04d72fd144ecf43359cafd427417ed9f8921332a0cbba704061847c9f1d740f795ee1135f6ba2ba183311496884189e3fec +doccontainersize 553688 +doccontainerchecksum e4de990151be0c984486b833b9f883d1f3412371fdbcc09900b89849b943800cb269fe0164695e95472b463bb4dc81b92fdc532dd59a9c3ba451fb961b89211e +docfiles size=194 + RELOC/doc/latex/rmpage/readme + RELOC/doc/latex/rmpage/rmpage-doc.pdf details="Package documentation" + RELOC/doc/latex/rmpage/rmpage-doc.tex + RELOC/doc/latex/rmpage/rmpage.tex + RELOC/doc/latex/rmpage/rmplocal.gfc +runfiles size=66 + RELOC/tex/latex/rmpage/rmpage.sty + RELOC/tex/latex/rmpage/rmpgen.cfg +catalogue-ctan /macros/latex/contrib/rmpage +catalogue-license gpl +catalogue-topics geometry +catalogue-version 0.92 + +name roboto +category Package +revision 54512 +shortdesc Support for the Roboto family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Roboto, RobotoCondensed, RobotoMono and +longdesc RobotoSlab families of fonts, designed by Christian Robertson +longdesc for Google. +execute addMap roboto.map +containersize 9903788 +containerchecksum 08e409a234850d70207bc7551d61bdfe40869af032bba2d81a99f7507d399badaeb9e8dd8d663127d01ec78520c7dbb1d60b5de8395ed5a180de2d7b8c59aef5 +doccontainersize 394584 +doccontainerchecksum f523a6017869c98991c766ea1ca3febc36e780fc66c0f9fbdd00036708865663670d6de178781489f49b2a0a0c7d3fc01c240fffe7cb06d6cb98fe355b15e549 +docfiles size=121 + RELOC/doc/fonts/roboto/COPYRIGHT.txt + RELOC/doc/fonts/roboto/ChangeLogLaTeX.txt + RELOC/doc/fonts/roboto/DESCRIPTION.en_us.html + RELOC/doc/fonts/roboto/LICENSE.txt + RELOC/doc/fonts/roboto/README details="Readme" + RELOC/doc/fonts/roboto/RobotoSpecimenBook.pdf + RELOC/doc/fonts/roboto/roboto-samples.pdf details="Font samples" + RELOC/doc/fonts/roboto/roboto-samples.tex +runfiles size=6831 + RELOC/fonts/enc/dvips/roboto/rbto_2cs4gp.enc + RELOC/fonts/enc/dvips/roboto/rbto_2ylw52.enc + RELOC/fonts/enc/dvips/roboto/rbto_35j2t6.enc + RELOC/fonts/enc/dvips/roboto/rbto_4jpen6.enc + RELOC/fonts/enc/dvips/roboto/rbto_5au2tj.enc + RELOC/fonts/enc/dvips/roboto/rbto_5wuobl.enc + RELOC/fonts/enc/dvips/roboto/rbto_5xgh2b.enc + RELOC/fonts/enc/dvips/roboto/rbto_6i2fao.enc + RELOC/fonts/enc/dvips/roboto/rbto_6rxeh6.enc + RELOC/fonts/enc/dvips/roboto/rbto_7juiin.enc + RELOC/fonts/enc/dvips/roboto/rbto_a4rth4.enc + RELOC/fonts/enc/dvips/roboto/rbto_adklll.enc + RELOC/fonts/enc/dvips/roboto/rbto_as7fdj.enc + RELOC/fonts/enc/dvips/roboto/rbto_b5rac7.enc + RELOC/fonts/enc/dvips/roboto/rbto_bsqqk2.enc + RELOC/fonts/enc/dvips/roboto/rbto_bzwjdb.enc + RELOC/fonts/enc/dvips/roboto/rbto_ddkove.enc + RELOC/fonts/enc/dvips/roboto/rbto_dfqeeu.enc + RELOC/fonts/enc/dvips/roboto/rbto_dqsbwe.enc + RELOC/fonts/enc/dvips/roboto/rbto_e24joy.enc + RELOC/fonts/enc/dvips/roboto/rbto_el2qpt.enc + RELOC/fonts/enc/dvips/roboto/rbto_ghuabv.enc + RELOC/fonts/enc/dvips/roboto/rbto_h6xohf.enc + RELOC/fonts/enc/dvips/roboto/rbto_hdhu7c.enc + RELOC/fonts/enc/dvips/roboto/rbto_hlrajr.enc + RELOC/fonts/enc/dvips/roboto/rbto_ifem6v.enc + RELOC/fonts/enc/dvips/roboto/rbto_ihpqsf.enc + RELOC/fonts/enc/dvips/roboto/rbto_imandq.enc + RELOC/fonts/enc/dvips/roboto/rbto_iqgrsz.enc + RELOC/fonts/enc/dvips/roboto/rbto_j2bk2t.enc + RELOC/fonts/enc/dvips/roboto/rbto_lhlrii.enc + RELOC/fonts/enc/dvips/roboto/rbto_ocbbsb.enc + RELOC/fonts/enc/dvips/roboto/rbto_ogts26.enc + RELOC/fonts/enc/dvips/roboto/rbto_q5hjoy.enc + RELOC/fonts/enc/dvips/roboto/rbto_qhmgos.enc + RELOC/fonts/enc/dvips/roboto/rbto_qulak4.enc + RELOC/fonts/enc/dvips/roboto/rbto_rehtu3.enc + RELOC/fonts/enc/dvips/roboto/rbto_s5b5bo.enc + RELOC/fonts/enc/dvips/roboto/rbto_schjax.enc + RELOC/fonts/enc/dvips/roboto/rbto_shbyjm.enc + RELOC/fonts/enc/dvips/roboto/rbto_swa2hd.enc + RELOC/fonts/enc/dvips/roboto/rbto_t46jwv.enc + RELOC/fonts/enc/dvips/roboto/rbto_t4kqic.enc + RELOC/fonts/enc/dvips/roboto/rbto_uf77so.enc + RELOC/fonts/enc/dvips/roboto/rbto_wkn3wn.enc + RELOC/fonts/enc/dvips/roboto/rbto_wttfgh.enc + RELOC/fonts/enc/dvips/roboto/rbto_wywsyy.enc + RELOC/fonts/enc/dvips/roboto/rbto_xzfhjt.enc + RELOC/fonts/enc/dvips/roboto/rbto_z4nc45.enc + RELOC/fonts/enc/dvips/roboto/rbto_zf56p3.enc + RELOC/fonts/enc/dvips/roboto/rbto_zfcuyn.enc + RELOC/fonts/map/dvips/roboto/roboto.map + RELOC/fonts/opentype/google/roboto/Roboto-Black.otf + RELOC/fonts/opentype/google/roboto/Roboto-BlackItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Bold.otf + RELOC/fonts/opentype/google/roboto/Roboto-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Italic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Light.otf + RELOC/fonts/opentype/google/roboto/Roboto-LightItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Medium.otf + RELOC/fonts/opentype/google/roboto/Roboto-MediumItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Regular.otf + RELOC/fonts/opentype/google/roboto/Roboto-Thin.otf + RELOC/fonts/opentype/google/roboto/Roboto-ThinItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Italic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-LightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Italic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-LightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Medium.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-MediumItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Thin.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-ThinItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Thin.otf + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ts1.tfm + RELOC/fonts/type1/google/roboto/Roboto-Black.pfb + RELOC/fonts/type1/google/roboto/Roboto-BlackItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Bold.pfb + RELOC/fonts/type1/google/roboto/Roboto-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Italic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Light.pfb + RELOC/fonts/type1/google/roboto/Roboto-LightItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Medium.pfb + RELOC/fonts/type1/google/roboto/Roboto-MediumItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Regular.pfb + RELOC/fonts/type1/google/roboto/Roboto-Thin.pfb + RELOC/fonts/type1/google/roboto/Roboto-ThinItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Italic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-LightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Italic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-LightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Medium.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-MediumItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Thin.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-ThinItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Thin.pfb + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-ts1.vf + RELOC/tex/latex/roboto/LGRRoboto-LF.fd + RELOC/tex/latex/roboto/LGRRoboto-OsF.fd + RELOC/tex/latex/roboto/LGRRoboto-TLF.fd + RELOC/tex/latex/roboto/LGRRoboto-TOsF.fd + RELOC/tex/latex/roboto/LGRRobotoMono-TLF.fd + RELOC/tex/latex/roboto/LGRRobotoSlab-TLF.fd + RELOC/tex/latex/roboto/LY1Roboto-LF.fd + RELOC/tex/latex/roboto/LY1Roboto-OsF.fd + RELOC/tex/latex/roboto/LY1Roboto-TLF.fd + RELOC/tex/latex/roboto/LY1Roboto-TOsF.fd + RELOC/tex/latex/roboto/LY1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/LY1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/OT1Roboto-LF.fd + RELOC/tex/latex/roboto/OT1Roboto-OsF.fd + RELOC/tex/latex/roboto/OT1Roboto-TLF.fd + RELOC/tex/latex/roboto/OT1Roboto-TOsF.fd + RELOC/tex/latex/roboto/OT1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/OT1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/T1Roboto-LF.fd + RELOC/tex/latex/roboto/T1Roboto-OsF.fd + RELOC/tex/latex/roboto/T1Roboto-TLF.fd + RELOC/tex/latex/roboto/T1Roboto-TOsF.fd + RELOC/tex/latex/roboto/T1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/T1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/TS1Roboto-LF.fd + RELOC/tex/latex/roboto/TS1Roboto-OsF.fd + RELOC/tex/latex/roboto/TS1Roboto-TLF.fd + RELOC/tex/latex/roboto/TS1Roboto-TOsF.fd + RELOC/tex/latex/roboto/TS1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/TS1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/roboto-mono.sty + RELOC/tex/latex/roboto/roboto.sty +catalogue-ctan /fonts/roboto +catalogue-license apache2 lppl +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 + +name robustcommand +category Package +revision 15878 +shortdesc Declare robust command, with \newcommand checks +relocated 1 +longdesc The package merely provides a variation of +longdesc \DeclareRobustCommand, which checks for the existence of a +longdesc command before declaring it robust. +containersize 1176 +containerchecksum 806f997cf6c0eceec0c8d9b8f8207014c4ab9243f8007fc688674af2fd778455a787b9cf998262fb7d0a92ba8e2ffb597d61950c22a6122ad957a62ea54d9a42 +doccontainersize 57844 +doccontainerchecksum 4d5c8a994edf816d39af12d7881793f0fda0223a3545559255674fa5a08f2d0fc9ad8ea2779b3c8bfe476966045f996b8b8f5da6fdd028188d28ae724c24a222 +docfiles size=19 + RELOC/doc/latex/robustcommand/README details="Readme" + RELOC/doc/latex/robustcommand/robustcommand.pdf details="Benutzerdoku" language="de" +srccontainersize 2852 +srccontainerchecksum 3dfb71a6a73f2ed968777eb1074d65773aaee7c1218b18fddd78e74a86f27d9cbf5fce79c41503c34e497b12543ec2e0c16d9f35d39b893e208a236fd66f4f50 +srcfiles size=3 + RELOC/source/latex/robustcommand/robustcommand.dtx + RELOC/source/latex/robustcommand/robustcommand.ins +runfiles size=1 + RELOC/tex/latex/robustcommand/robustcommand.sty +catalogue-ctan /macros/latex/contrib/robustcommand +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.1 + +name robustindex +category Package +revision 49877 +shortdesc Create index with pagerefs +relocated 1 +longdesc Third parties often change the page numbers without rerunning +longdesc makeindex. One would like to make the page numbers in the index +longdesc entries more robust. This bundle provides robustindex.sty and +longdesc robustglossary.sty, which use the \pageref mechanism to +longdesc maintain correct page numbers. +containersize 5032 +containerchecksum 3aeac1a43261302532d7b5ee309d6cd94f54a2b17954c023bc6a94fa89c51291f3c4fd3276b03aa3ec65f4e21556d302c81aec107fac5dcb477941cb474dbbf3 +doccontainersize 420516 +doccontainerchecksum aab461e990176e1d0cb82573edcfe11a4bf668b2d09edff05f673fa20d24ec76464495bebc64086fe3bb4411d5ec9590f43cd57949bedaa3366f6c7313359f56 +docfiles size=123 + RELOC/doc/latex/robustindex/README.md details="Readme" + RELOC/doc/latex/robustindex/multisample.pdf + RELOC/doc/latex/robustindex/multisample.tex + RELOC/doc/latex/robustindex/robustmanual.pdf details="Package documentation" + RELOC/doc/latex/robustindex/robustmanual.tex + RELOC/doc/latex/robustindex/robustsample.pdf details="Example of use" + RELOC/doc/latex/robustindex/robustsample.tex + RELOC/doc/latex/robustindex/stind.html +runfiles size=5 + RELOC/tex/latex/robustindex/robustglossary.sty + 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-license lppl1.2 +catalogue-topics index + +name roex +category Package +revision 45818 +catalogue mf-ps +shortdesc Metafont-PostScript conversions +relocated 1 +longdesc A Metafont support package including: epstomf, a tiny AWK +longdesc script for converting EPS files into Metafont; mftoeps for +longdesc generating (encapsulated) PostScript files readable, e.g., by +longdesc CorelDRAW, Adobe Illustrator and Fontographer; a collection of +longdesc routines (in folder progs) for converting Metafont-coded +longdesc graphics into encapsulated PostScript; and roex.mf, which +longdesc provides Metafont macros for removing overlaps and expanding +longdesc strokes. In mftoeps, Metafont writes PostScript code to a +longdesc log-file, from which it may be extracted by either TeX or AWK. +containersize 19996 +containerchecksum 7df2224f9970b72cfa1474898c057799fe42d717876eed864f35aab113d01dfb483edb71f7f4a0a98b6762bbc309ce6fb51e41dc222a6f19be2025f6448fb1cd +srccontainersize 8420 +srccontainerchecksum d89d02dd79142344334678f2d8ec4f34eb825532e8be9260cd08a43b28e1aa94ff5655c1c1eadb2f9a365e51693f6195a4851e1420072c867d8b2c0f1cbcbbb4 +srcfiles size=17 + RELOC/source/metafont/roex/0roex.doc + RELOC/source/metafont/roex/roexsamp/0roexsam.doc + RELOC/source/metafont/roex/roexsamp/es-01.mf + RELOC/source/metafont/roex/roexsamp/es-02.mf + RELOC/source/metafont/roex/roexsamp/es-03.mf + RELOC/source/metafont/roex/roexsamp/ro-01.mf + RELOC/source/metafont/roex/roexsamp/ro-02.mf + RELOC/source/metafont/roex/roexsamp/ro-03.mf + RELOC/source/metafont/roex/roexsamp/ro-04.mf + RELOC/source/metafont/roex/roexsamp/ro-05.mf + RELOC/source/metafont/roex/roexsamp/ro-06.mf + RELOC/source/metafont/roex/roexsamp/ro-07.mf + RELOC/source/metafont/roex/roexsamp/roes-01.mf + RELOC/source/metafont/roex/roexsamp/roes-02.mf + RELOC/source/metafont/roex/roexsamp/roes-03.mf + RELOC/source/metafont/roex/roexsamp/roes-04.mf +runfiles size=17 + RELOC/metafont/roex/roex.mf +catalogue-ctan /graphics/MF-PS +catalogue-license pd +catalogue-topics graphics-import + +name rojud +category Package +revision 56895 +shortdesc A font with the images of the counties of Romania +relocated 1 +longdesc This package provides a Type 1 font with images of the 42 +longdesc counties of Romania, constructed using a general method which +longdesc is described in detail in the documentation. The package name +longdesc is an abbreviation of "judetele Romaniei" (= counties of +longdesc Romania). +execute addMap rojud.map +containersize 333376 +containerchecksum cd7065dc6a916941a0fd05ea342d29499b6f7496d1934e06c49e7ea1a99c5be5cd515bbcbc2b5935ff8132adcc7b94e653d55de967700410ace55697f6fc156e +doccontainersize 187136 +doccontainerchecksum fb9c9f00433ba959ad8f7b5acc93b1e7b0db1cffec96b7c988eeaaae89ceecc815071a1e21f78d36279e529f4e9095602b1887d3c5d4164494be502cf4a19873 +docfiles size=50 + RELOC/doc/fonts/rojud/README.txt details="Readme" + RELOC/doc/fonts/rojud/rojud.pdf details="Package documentation" + RELOC/doc/fonts/rojud/rojud.tex + RELOC/doc/fonts/rojud/rows.tex +runfiles size=86 + RELOC/fonts/map/dvips/rojud/rojud.map + RELOC/fonts/tfm/public/rojud/rojud.tfm + RELOC/fonts/type1/public/rojud/rojud.pfb + RELOC/tex/latex/rojud/ot1rojud.fd + RELOC/tex/latex/rojud/rojud.sty + RELOC/tex/latex/rojud/turojud.fd +catalogue-ctan /fonts/rojud +catalogue-license lppl +catalogue-topics font font-type1 font-novelty +catalogue-version 1.2 + +name romanbar +category Package +revision 25005 +shortdesc Write roman number with "bars" +relocated 1 +longdesc 'Bars', in the present context, are lines above and below text +longdesc that abut with the text. Barred roman numerals are sometimes +longdesc found in publications. The package provides a function that +longdesc prints barred roman numerals (converting arabic numerals if +longdesc necessary). The package also provides a predicate \ifnumeric. +containersize 2296 +containerchecksum 205ed0508765e58397953f28e6a1172d8684f8063fbaaf4d741f4f092e1f652879b414a3225c87bac01e4d41f01c2b0a44632e0cb3088c5c174fdbe42cf25272 +doccontainersize 362420 +doccontainerchecksum a5fc8c5d6e6a584de4394c59f9bacddc23fbec8d4639a0476cc0814404f1413774fa2d6bae3d8438cad2eeaacb56405680c0c6bcc152a5e4155ecb73de72f07b +docfiles size=93 + RELOC/doc/latex/romanbar/README details="Readme" + RELOC/doc/latex/romanbar/romanbar-example.pdf details="Sample of usage" + RELOC/doc/latex/romanbar/romanbar-example.tex + RELOC/doc/latex/romanbar/romanbar.pdf details="Package documentation" +srccontainersize 9600 +srccontainerchecksum 9a96ef043dc3542251fab1dc299742b5c322518c61de8d365c290926f2365e5bd6b80a57fcaee19a30ad504ab51b2dcf71170303ab92eac97fe3db4a76dce08c +srcfiles size=10 + RELOC/source/latex/romanbar/romanbar.drv + RELOC/source/latex/romanbar/romanbar.dtx + RELOC/source/latex/romanbar/romanbar.ins +runfiles size=2 + RELOC/tex/latex/romanbar/romanbar.sty +catalogue-ctan /macros/latex/contrib/romanbar +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 1.0f + +name romanbarpagenumber +category Package +revision 36236 +shortdesc Typesetting roman page numbers +relocated 1 +longdesc The package romanbar allows to typeset roman numbers with bars. +longdesc This package allows you to use those roman numbers as page +longdesc number. +containersize 876 +containerchecksum 7c8fbfcd5e9ec9e306e7ac836fb4c82db3bc42179bf77502b5299c17c4d3ad515b9397016d600011eb24c5d9f2eda23a485634c5aca3a765653cce32d7bf82c5 +doccontainersize 213792 +doccontainerchecksum a46bbeef023b74c576da84f9791d4d6d47a08091b43c6bf6936c4e17ff54ab2bf5b517cbf1d07e59c077e0981ac989570265df1fde7237ff24727e33d6f1b71c +docfiles size=54 + RELOC/doc/latex/romanbarpagenumber/README details="Readme" + RELOC/doc/latex/romanbarpagenumber/romanbarpagenumber.pdf details="Package documentation" +srccontainersize 3144 +srccontainerchecksum 953af4fff1fe7e6b3e4bfb7447a0da7207f93d7377ce365bfdf563c9dead97860826c8f5b8dc491164437523e27a040fee5b95b58f09f248166268197233f89c +srcfiles size=3 + RELOC/source/latex/romanbarpagenumber/romanbarpagenumber.dtx + RELOC/source/latex/romanbarpagenumber/romanbarpagenumber.ins +runfiles size=1 + RELOC/tex/latex/romanbarpagenumber/romanbarpagenumber.sty +catalogue-also romanbar +catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/romanbarpagenumber +catalogue-ctan /macros/latex/contrib/romanbarpagenumber +catalogue-license lppl1.3 +catalogue-topics numbers page-nos +catalogue-version 1.0 + +name romande +category Package +revision 19537 +catalogue romandeadf +shortdesc Romande ADF fonts and LaTeX support +relocated 1 +longdesc Romande ADF is a serif font family with oldstyle figures, +longdesc designed as a substitute for Times, Tiffany or Caslon. The +longdesc family currently includes upright, italic and small-caps shapes +longdesc in each of regular and demi-bold weights and an italic script +longdesc in regular. The support package renames the fonts according to +longdesc the Karl Berry fontname scheme and defines four families. Two +longdesc of these primarily provide access to the "standard" or default +longdesc characters while the "alternate" families support alternate +longdesc characters, additional ligatures and the long s. The included +longdesc package files provide access to these features in LaTeX as +longdesc explained in the documentation. The LaTeX support requires the +longdesc nfssext-cfr and the xkeyval packages. +execute addMap yrd.map +containersize 471308 +containerchecksum 874883eb3592852dd6dfe2dc675a768bed8db80c0c617cad7c28bbefb2ca111adb410a584f75fad935bfec330765650ea9d0f73c8c5a9fe567526b5fb46ff17e +doccontainersize 279436 +doccontainerchecksum 708ffe5a4dccf8241eaee7d22787e0e30bbd10faa1cfd538836da676cbd4f67b16a80772f8a4cea08f59af6d41a697426c4a4254c481d13ac3a10157b2a679e0 +docfiles size=86 + RELOC/doc/fonts/romande/COPYING + RELOC/doc/fonts/romande/NOTICE.txt + RELOC/doc/fonts/romande/README details="Readme" + RELOC/doc/fonts/romande/manifest.txt + RELOC/doc/fonts/romande/romandeadf.pdf details="Package documentation" + RELOC/doc/fonts/romande/romandeadf.tex +srccontainersize 9684 +srccontainerchecksum 040b154c19ee55910b05d0bfe355bbf000403fcc5c536a081e4569390c599123d64000680cb847ad710204d1c33d7ceb0ab7ea049847ff4ad0762fd9c0acfeeb +srcfiles size=25 + RELOC/source/fonts/romande/reglyph-yrd.tex + RELOC/source/fonts/romande/romande-supp.etx + RELOC/source/fonts/romande/t1-romandeadf-alt.etx + RELOC/source/fonts/romande/t1-romandeadf.etx + RELOC/source/fonts/romande/ts1-euro.etx + RELOC/source/fonts/romande/yrd-drv.tex + RELOC/source/fonts/romande/yrd-map.tex +runfiles size=281 + RELOC/fonts/afm/arkandis/romande/yrdd8a.afm + RELOC/fonts/afm/arkandis/romande/yrddc8a.afm + RELOC/fonts/afm/arkandis/romande/yrddi8a.afm + RELOC/fonts/afm/arkandis/romande/yrdr8a.afm + RELOC/fonts/afm/arkandis/romande/yrdrc8a.afm + RELOC/fonts/afm/arkandis/romande/yrdri8a.afm + RELOC/fonts/afm/arkandis/romande/yrdriw8a.afm + RELOC/fonts/enc/dvips/romande/romande-supp.enc + RELOC/fonts/enc/dvips/romande/t1-romandeadf-alt.enc + RELOC/fonts/enc/dvips/romande/t1-romandeadf.enc + RELOC/fonts/enc/dvips/romande/ts1-euro-yrd.enc + RELOC/fonts/map/dvips/romande/yrd.map + RELOC/fonts/tfm/arkandis/romande/s-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrddc.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdrc.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/yrdd8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdd8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdda8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrddai8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrddc8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrddi8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrddi8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdr8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdr8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdra8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdrai8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdraiw8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdrc8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdri8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdri8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdriw8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdriw8t.tfm + RELOC/fonts/type1/arkandis/romande/yrdd8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdd8a.pfm + RELOC/fonts/type1/arkandis/romande/yrddc8a.pfb + RELOC/fonts/type1/arkandis/romande/yrddc8a.pfm + RELOC/fonts/type1/arkandis/romande/yrddi8a.pfb + RELOC/fonts/type1/arkandis/romande/yrddi8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdr8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdr8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdrc8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdrc8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdri8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdri8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdriw8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdriw8a.pfm + RELOC/fonts/vf/arkandis/romande/yrdd8c.vf + RELOC/fonts/vf/arkandis/romande/yrdd8t.vf + RELOC/fonts/vf/arkandis/romande/yrdda8t.vf + RELOC/fonts/vf/arkandis/romande/yrddai8t.vf + RELOC/fonts/vf/arkandis/romande/yrddc8t.vf + RELOC/fonts/vf/arkandis/romande/yrddi8c.vf + RELOC/fonts/vf/arkandis/romande/yrddi8t.vf + RELOC/fonts/vf/arkandis/romande/yrdr8c.vf + RELOC/fonts/vf/arkandis/romande/yrdr8t.vf + RELOC/fonts/vf/arkandis/romande/yrdra8t.vf + RELOC/fonts/vf/arkandis/romande/yrdrai8t.vf + RELOC/fonts/vf/arkandis/romande/yrdraiw8t.vf + RELOC/fonts/vf/arkandis/romande/yrdrc8t.vf + RELOC/fonts/vf/arkandis/romande/yrdri8c.vf + RELOC/fonts/vf/arkandis/romande/yrdri8t.vf + RELOC/fonts/vf/arkandis/romande/yrdriw8c.vf + RELOC/fonts/vf/arkandis/romande/yrdriw8t.vf + RELOC/tex/latex/romande/romande.sty + RELOC/tex/latex/romande/t1yrd.fd + RELOC/tex/latex/romande/t1yrda.fd + RELOC/tex/latex/romande/t1yrdaw.fd + RELOC/tex/latex/romande/t1yrdw.fd + RELOC/tex/latex/romande/ts1yrd.fd + RELOC/tex/latex/romande/ts1yrda.fd + RELOC/tex/latex/romande/ts1yrdaw.fd + RELOC/tex/latex/romande/ts1yrdw.fd +catalogue-contact-home http://arkandis.tuxfamily.org/ +catalogue-ctan /fonts/romandeadf +catalogue-license lppl +catalogue-topics font font-type1 +catalogue-version 1.008-v7-sc + +name romanneg +category Package +revision 20087 +shortdesc Roman page numbers negative +relocated 1 +longdesc Causes the page numbers in the DVI file (as defined by \count0) +longdesc to be negative when roman pagenumbering is in effect. +containersize 1208 +containerchecksum 4195303ca32b46d722bb148ce4079bbea7cec08fc74a7b0cb6232dcce517b7b5a10753be22fbaab62ec11d894955e1368f3a6dc2a2474cf9b9450e035bb73c11 +doccontainersize 184164 +doccontainerchecksum cd583b94911ed57e6c61689d437fb4a55a868813fad5791dfa7231b4cbd8b7d22cf4e6f3fe90e2cd36eb08202f4058abf93b5df2d74e1841070378dc9c31db64 +docfiles size=46 + RELOC/doc/latex/romanneg/romanneg.ltx + RELOC/doc/latex/romanneg/romanneg.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/latex/romanneg/romanneg.sty +catalogue-ctan /macros/latex/contrib/romanneg +catalogue-license pd +catalogue-topics page-nos + +name romannum +category Package +revision 15878 +shortdesc Generate roman numerals instead of arabic digits +relocated 1 +longdesc The romannum package changes LaTeX generated numbers to be +longdesc printed with roman numerals instead of arabic digits. It +longdesc requires the stdclsdv package. Users of the bookhands fonts may +longdesc find this package useful. +containersize 1684 +containerchecksum 06fb28ffcf6c8212ba3bea5e3fd93fe4a5394ce1cd3977556bdebb982888c2c0f7e45dc751f94b1ecf921c701fe6783166e73a595d5da55e874359b7a4065182 +doccontainersize 126676 +doccontainerchecksum 60caceb87b6d866c905685cd180f0deb73f400b33007e0589e1aa5a0b42ed948d88c672a620ebdd4d78bbf92aa81c1094e4d4d6afcb981747e65596711e112be +docfiles size=37 + RELOC/doc/latex/romannum/README details="Readme" + RELOC/doc/latex/romannum/romannum.pdf details="Package documentation" +srccontainersize 5784 +srccontainerchecksum dd1a19bdb63aad8f3c3458bc000933b9c0d04a3b331c37d84a9e7de4a7027b6cbed113038129a789f43d1049dd72acc432e6cebbce365277026d5e6b5cde328b +srcfiles size=6 + RELOC/source/latex/romannum/romannum.dtx + RELOC/source/latex/romannum/romannum.ins +runfiles size=2 + RELOC/tex/latex/romannum/romannum.sty +catalogue-ctan /macros/latex/contrib/romannum +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1.0b + +name rosario +category Package +revision 51688 +shortdesc Using the free Rosario fonts with LaTeX +relocated 1 +longdesc The package provides the files required to use the Rosario +longdesc fonts with LaTeX. Rosario is a set of four fonts provided by +longdesc Hector Gatti, Adobe Typekit & Omnibus-Type Team under the Open +longdesc Font License (OFL), version 1.1. The fonts are copyright (c) +longdesc 2012-2015, Omnibus-Type. +execute addMap Rosario.map +containersize 1387528 +containerchecksum e1e200c49ba98fb1d2bd5cd927ff209a1f72b9681b1cf3b49baa263985790f7d4854ac1cd9fedd464e2076488b3042456c7fede5648dd8ef23d1ba6701705437 +doccontainersize 499816 +doccontainerchecksum 1e5a12a62b7e62587b452d0f8926757b987e83a2980698deb94c6955cff1e45ef634ec8ac1c1051f6567db8a3de9fe8d4df23a5f80317ddfd2ba863ef15935c1 +docfiles size=125 + RELOC/doc/fonts/rosario/OFL.txt + RELOC/doc/fonts/rosario/README.md details="Readme" + RELOC/doc/fonts/rosario/Rosario.pdf details="Package documentation" +srccontainersize 7348 +srccontainerchecksum 4c7613a697439feba9e52ebe40dcbf738370f3ad5278ef0232f0e0e13ba9ac2c46d60233c8159c626b97b53af5238f75c096106b0b8529423d5fa3feaaf57a87 +srcfiles size=7 + RELOC/source/fonts/rosario/Rosario.dtx + RELOC/source/fonts/rosario/Rosario.ins +runfiles size=1236 + RELOC/fonts/enc/dvips/rosario/ros_24xxsv.enc + RELOC/fonts/enc/dvips/rosario/ros_2lqlus.enc + RELOC/fonts/enc/dvips/rosario/ros_2sgwql.enc + RELOC/fonts/enc/dvips/rosario/ros_3avctt.enc + RELOC/fonts/enc/dvips/rosario/ros_7npxgm.enc + RELOC/fonts/enc/dvips/rosario/ros_7yzfgj.enc + RELOC/fonts/enc/dvips/rosario/ros_bv7x5e.enc + RELOC/fonts/enc/dvips/rosario/ros_c6jprw.enc + RELOC/fonts/enc/dvips/rosario/ros_f6ejpj.enc + RELOC/fonts/enc/dvips/rosario/ros_fiyauo.enc + RELOC/fonts/enc/dvips/rosario/ros_flfbvu.enc + RELOC/fonts/enc/dvips/rosario/ros_h6jra2.enc + RELOC/fonts/enc/dvips/rosario/ros_hhbfoh.enc + RELOC/fonts/enc/dvips/rosario/ros_hlvv6p.enc + RELOC/fonts/enc/dvips/rosario/ros_jo7tnr.enc + RELOC/fonts/enc/dvips/rosario/ros_krtxg6.enc + RELOC/fonts/enc/dvips/rosario/ros_lwgukc.enc + RELOC/fonts/enc/dvips/rosario/ros_mq36jn.enc + RELOC/fonts/enc/dvips/rosario/ros_pxrm2a.enc + RELOC/fonts/enc/dvips/rosario/ros_ttjzpe.enc + RELOC/fonts/enc/dvips/rosario/ros_utd4ik.enc + RELOC/fonts/enc/dvips/rosario/ros_vgwtwr.enc + RELOC/fonts/enc/dvips/rosario/ros_wlsyn3.enc + RELOC/fonts/enc/dvips/rosario/ros_wxmaut.enc + RELOC/fonts/enc/dvips/rosario/ros_znhcko.enc + RELOC/fonts/map/dvips/rosario/Rosario.map + RELOC/fonts/opentype/public/rosario/Rosario-Bold.otf + RELOC/fonts/opentype/public/rosario/Rosario-BoldItalic.otf + RELOC/fonts/opentype/public/rosario/Rosario-Italic.otf + RELOC/fonts/opentype/public/rosario/Rosario-Light.otf + RELOC/fonts/opentype/public/rosario/Rosario-LightItalic.otf + RELOC/fonts/opentype/public/rosario/Rosario-Regular.otf + RELOC/fonts/opentype/public/rosario/Rosario-SemiBold.otf + RELOC/fonts/opentype/public/rosario/Rosario-SemiBoldItalic.otf + RELOC/fonts/tfm/public/rosario/Rosario-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/rosario/Rosario-Bold.pfb + RELOC/fonts/type1/public/rosario/Rosario-BoldItalic.pfb + RELOC/fonts/type1/public/rosario/Rosario-Italic.pfb + RELOC/fonts/type1/public/rosario/Rosario-Light.pfb + RELOC/fonts/type1/public/rosario/Rosario-LightItalic.pfb + RELOC/fonts/type1/public/rosario/Rosario-Regular.pfb + RELOC/fonts/type1/public/rosario/Rosario-SemiBold.pfb + RELOC/fonts/type1/public/rosario/Rosario-SemiBoldItalic.pfb + RELOC/fonts/vf/public/rosario/Rosario-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Light-tosf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/rosario/LY1Rosario-Dnom.fd + RELOC/tex/latex/rosario/LY1Rosario-Inf.fd + RELOC/tex/latex/rosario/LY1Rosario-LF.fd + RELOC/tex/latex/rosario/LY1Rosario-Numr.fd + RELOC/tex/latex/rosario/LY1Rosario-OsF.fd + RELOC/tex/latex/rosario/LY1Rosario-Sup.fd + RELOC/tex/latex/rosario/LY1Rosario-TLF.fd + RELOC/tex/latex/rosario/LY1Rosario-TOsF.fd + RELOC/tex/latex/rosario/OT1Rosario-Dnom.fd + RELOC/tex/latex/rosario/OT1Rosario-Inf.fd + RELOC/tex/latex/rosario/OT1Rosario-LF.fd + RELOC/tex/latex/rosario/OT1Rosario-Numr.fd + RELOC/tex/latex/rosario/OT1Rosario-OsF.fd + RELOC/tex/latex/rosario/OT1Rosario-Sup.fd + RELOC/tex/latex/rosario/OT1Rosario-TLF.fd + RELOC/tex/latex/rosario/OT1Rosario-TOsF.fd + RELOC/tex/latex/rosario/Rosario.sty + RELOC/tex/latex/rosario/T1Rosario-Dnom.fd + RELOC/tex/latex/rosario/T1Rosario-Inf.fd + RELOC/tex/latex/rosario/T1Rosario-LF.fd + RELOC/tex/latex/rosario/T1Rosario-Numr.fd + RELOC/tex/latex/rosario/T1Rosario-OsF.fd + RELOC/tex/latex/rosario/T1Rosario-Sup.fd + RELOC/tex/latex/rosario/T1Rosario-TLF.fd + RELOC/tex/latex/rosario/T1Rosario-TOsF.fd + RELOC/tex/latex/rosario/TS1Rosario-LF.fd + RELOC/tex/latex/rosario/TS1Rosario-OsF.fd + RELOC/tex/latex/rosario/TS1Rosario-TLF.fd + RELOC/tex/latex/rosario/TS1Rosario-TOsF.fd +catalogue-contact-home https://www.omnibus-type.com/fonts/rosario/ +catalogue-ctan /fonts/rosario +catalogue-license lppl1.3c +catalogue-topics font font-sans font-otf font-supp font-type1 +catalogue-version 2.1 + +name rotfloat +category Package +revision 18292 +shortdesc Rotate floats +relocated 1 +longdesc The float package provides commands to define new floats of +longdesc various styles (plain, boxed, ruled, and userdefined ones); the +longdesc rotating package provides new environments (sidewaysfigure and +longdesc sidewaystable) which are rotated by 90 or 270 degrees. But what +longdesc about new rotated floats, e.g. a rotated ruled one? This +longdesc package makes this possible; it builds a bridge between the two +longdesc packages and extends the commands from the float package to +longdesc define rotated versions of the new floats, too. +containersize 1528 +containerchecksum 2976812ba6d6bdb304d56c9f10f08c02aa8acceeeef6eb05ccd0ac7b3e3b86984794017627d8f939994ea0228bef5e9d6cab0b08843e87a840ee5c2390dd0bb7 +doccontainersize 214720 +doccontainerchecksum 020e080e047f20db45bf83ff32c267f5a10b7790adb64495d09ebb3795a55d953154b8afedcfa0214a77f11c35287b18949b8f1fb89b6ee51aac12a04832e922 +docfiles size=58 + RELOC/doc/latex/rotfloat/examples.tex + RELOC/doc/latex/rotfloat/rotfloat.pdf details="Package documentation" +srccontainersize 6108 +srccontainerchecksum b3b986dc11e30b68f75bfa371c85eded713f759f6fa0229857cc05172edd70caafd9124098813cdafd1f060fe57a6667326ee84445fade50bb6acf9d1cb6a95f +srcfiles size=6 + RELOC/source/latex/rotfloat/rotfloat.dtx + RELOC/source/latex/rotfloat/rotfloat.ins +runfiles size=1 + RELOC/tex/latex/rotfloat/rotfloat.sty +catalogue-ctan /macros/latex/contrib/rotfloat +catalogue-license lppl +catalogue-topics float +catalogue-version 1.2 + +name rotpages +category Package +revision 18740 +shortdesc Typeset sets of pages upside-down and backwards +relocated 1 +longdesc The rotpages package allows you to format documents where small +longdesc sets of pages are rotated by 180 degrees and rearranged, so +longdesc that they can be read by turning the printed copy upside-down. +longdesc It was developed for collecting exercises and solutions: using +longdesc the package, you can print the exercise text normally and the +longdesc solutions rotated. +containersize 2296 +containerchecksum a206e4147a68ad0ae750e18ee6a360d6ed2ac91785b75f8fecda4b63db695a36a9602da8dbec1310feed4072f952dc49f4d2c5d2817fe74477759aa55246177f +doccontainersize 125096 +doccontainerchecksum 2723d32029abfc773de8f26a1f08cb3535c5878f63effcb94fcc6a2f98f1a0f9ff3c53df8a4d9c1ce1f99b52b9fd7b2f5c919dd9cc915ea8266835aa85ddbda2 +docfiles size=57 + RELOC/doc/latex/rotpages/Documentation/rotpages-doc.pdf details="Package documentation" + RELOC/doc/latex/rotpages/Documentation/rotpages-doc.tex + RELOC/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.pdf + RELOC/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.tex + RELOC/doc/latex/rotpages/Examples/rotpages-fancy-ex.pdf + RELOC/doc/latex/rotpages/Examples/rotpages-fancy-ex.tex + RELOC/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.pdf + RELOC/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.tex + RELOC/doc/latex/rotpages/README details="Readme" +runfiles size=2 + RELOC/tex/latex/rotpages/rotpages.sty +catalogue-ctan /macros/latex/contrib/rotpages +catalogue-license lppl +catalogue-topics layout +catalogue-version 3.0 + +name roundbox +category Package +revision 29675 +shortdesc Round boxes in LaTeX +relocated 1 +longdesc This package implements a command \roundbox that can be used, +longdesc in LaTeX, for producing boxes, framed with rounded corners. +containersize 1508 +containerchecksum 078938229ca1ccba4c26f97eae59376afcee469629a7e8704d6e376d5bb256e8991ee1cff17f24e362772b78ed800b57bc6018b10e897daa73c142fafa1f62c7 +doccontainersize 884 +doccontainerchecksum cf0f56e42a82d6ab36fe6af2ba690024cb555192780c04ef1a01e71fd6cdfb803b0129aa95e304de4fc8c1e2d1015b14dbb6631d9773bdf463fa52c22209501f +docfiles size=1 + RELOC/doc/latex/roundbox/README details="Readme" +runfiles size=1 + RELOC/tex/latex/roundbox/roundbox.sty +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-license lppl1.3 +catalogue-topics boxing decoration +catalogue-version 0.2 + +name roundrect +category Package +revision 39796 +shortdesc MetaPost macros for highly configurable rounded rectangles (optionally with text) +relocated 1 +longdesc The roundrect macros for MetaPost provide ways to produce +longdesc rounded rectangles, which may or may not contain a title bar or +longdesc text (the title bar may itself contain text). They are +longdesc extremely configurable. +containersize 2200 +containerchecksum 01cdc4c8443c50a91dd408c52122e8ae65257344176227a508cb082f92d61bc02756d47e27f75d7862d3c87c26add2003604956ad00b448f63b4f6417c520ba6 +doccontainersize 284140 +doccontainerchecksum 35289692327bdc68acbd442588fbd37185f9e00e3e4ca78fe500474c53ef96542042cebd18cba7720bdca0b72f19384fd3b8afcf45447644bb3c560a1385595f +docfiles size=75 + RELOC/doc/metapost/roundrect/CHANGES + RELOC/doc/metapost/roundrect/README details="Readme" + RELOC/doc/metapost/roundrect/lppl.txt + RELOC/doc/metapost/roundrect/roundrect.pdf details="Package documentation" +srccontainersize 7076 +srccontainerchecksum 9866ae92b2c5f8c446ebca5c7afcdf3e8b52f12504b7d74c5ac4faa570a98ab6775c3ba5ad99d4300c1f9b7f92ffa423d5c73991ad47951a4e2bee3eb3bfe473 +srcfiles size=7 + RELOC/source/metapost/roundrect/roundrect.dtx + RELOC/source/metapost/roundrect/roundrect.ins +runfiles size=2 + RELOC/metapost/roundrect/roundrect.mp +catalogue-ctan /graphics/metapost/contrib/macros/roundrect +catalogue-license lppl1.3 +catalogue-topics graphics-mpost boxing +catalogue-version 2.2 + +name rrgtrees +category Package +revision 27322 +shortdesc Linguistic tree diagrams for Role and Reference Grammar (RRG) with LaTeX +relocated 1 +longdesc A set of LaTeX macros that makes it easy to produce linguistic +longdesc tree diagrams suitable for Role and Reference Grammar (RRG). +longdesc This package allows the construction of trees with crossing +longdesc lines, as is required by this theory for many languages. There +longdesc is no known limit on number of tree nodes or levels. Requires +longdesc the pst-node and pst-tree LaTeX packages. +containersize 3284 +containerchecksum cf80b48866e36b983527f0646c94fc9776ea799ac475a2c5879a4dcb3b3b0d052e061f871b6eb0a8c0fb1153c0a9f6f0ccfcfb1c6b8f3ff4839c3d454ea3e62c +doccontainersize 90388 +doccontainerchecksum 71992711c27e741403c5f7cc268e8597e2ea17abe42d953bf0c3caf255c0a8673f6210bb808fc70b741c694778f7cc7a45435afe39939b1377951e8e2343d73e +docfiles size=28 + RELOC/doc/latex/rrgtrees/Makefile + RELOC/doc/latex/rrgtrees/README details="Package README" + RELOC/doc/latex/rrgtrees/rrgtrees.pdf details="Package documentation" +srccontainersize 11056 +srccontainerchecksum 8ef5cf9dd617b1f37c57cb70e2aa7b3706d171eaca5e5498fbb3f653f409667a058254fd618681dc2af701d1d9e544d97ebb65c24081ecf1e40cd81f442183af +srcfiles size=9 + RELOC/source/latex/rrgtrees/rrgtrees.dtx + RELOC/source/latex/rrgtrees/rrgtrees.ins +runfiles size=3 + RELOC/tex/latex/rrgtrees/rrgtrees.sty +catalogue-ctan /macros/latex/contrib/rrgtrees +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.1 + +name rsc +category Package +revision 41923 +shortdesc BibTeX style for use with RSC journals +relocated 1 +longdesc The rsc package provides a BibTeX style in accordance with the +longdesc requirements of the Royal Society of Chemistry. It was +longdesc originally based on the file pccp.bst, but also implements a +longdesc number of styles from the achemso package. The package is now a +longdesc stub for the chemstyle package, which the author developed to +longdesc unify the writing of articles with a chemistry content. +containersize 7124 +containerchecksum abd1d24110722545b93cc16ff35b70c87f467193a33e8da2a04eaff354d89782911e42a46da5d380b9406f923c6fc48d38950d7346cfc799abc0660efa23db8b +doccontainersize 187208 +doccontainerchecksum 8569a90d7f5c532e366901d8bd2bab3d5a32d5b6d1c4cedcf179d1ae96a6c34ef5d294392f93fed589a55baf3ffddee2cd35a67c2aa8fc7e0477b47ce92eb411 +docfiles size=48 + RELOC/doc/latex/rsc/LICENSE.md + RELOC/doc/latex/rsc/README.md details="Readme" + RELOC/doc/latex/rsc/rsc.pdf details="Package documentation" +srccontainersize 14708 +srccontainerchecksum b3f097f76dcd1288a70d7aec88d7ae9fc58bb4b3f3a2589944c379aba887b3e7e6c2fd6b74b2a70de58e8cb078edc0d6ac0b1997078d0c322aca9928ba033202 +srcfiles size=14 + RELOC/source/latex/rsc/rsc.dtx +runfiles size=15 + RELOC/bibtex/bst/rsc/angew.bst + RELOC/bibtex/bst/rsc/rsc.bst + RELOC/tex/latex/rsc/rsc.sty +catalogue-ctan /macros/latex/contrib/rsc +catalogue-license lppl1.3 +catalogue-topics chemistry journalpub +catalogue-version 3.1f + +name rsfs +category Package +revision 15878 +shortdesc Ralph Smith's Formal Script font +relocated 1 +longdesc The fonts provide uppercase 'formal' script letters for use as +longdesc symbols in scientific and mathematical typesetting (in contrast +longdesc to the informal script fonts such as that used for the +longdesc 'calligraphic' symbols in the TeX maths symbol font). The fonts +longdesc are provided as Metafont source, and as derived Adobe Type 1 +longdesc format. LaTeX support, for using these fonts in mathematics, is +longdesc available via one of the packages calrsfs and mathrsfs. +execute addMixedMap rsfs.map +containersize 56092 +containerchecksum f5d52f49ead227b058841bb88571ae0d6fb40b95dd652536887acf13c0a5dc5b61e3813faaef2effc26539125c2776e113937a1612e7bc7146e7d5517b02aeb6 +doccontainersize 2280 +doccontainerchecksum 2d23715b38d90c686d7edae77f2a774041d3b679035e0399b7b6089f9b17db3ea4c6c3cdd655bb6e5f3a3cae782e30984c1fe89f5f263a0cd86b441c5376848a +docfiles size=2 + RELOC/doc/fonts/rsfs/README details="Readme" + RELOC/doc/fonts/rsfs/README.type1 +runfiles size=35 + RELOC/fonts/afm/public/rsfs/rsfs10.afm + RELOC/fonts/afm/public/rsfs/rsfs5.afm + RELOC/fonts/afm/public/rsfs/rsfs7.afm + RELOC/fonts/map/dvips/rsfs/rsfs.map + RELOC/fonts/source/public/rsfs/rsfs10.mf + RELOC/fonts/source/public/rsfs/rsfs5.mf + RELOC/fonts/source/public/rsfs/rsfs7.mf + RELOC/fonts/source/public/rsfs/script.mf + RELOC/fonts/source/public/rsfs/scriptu.mf + RELOC/fonts/tfm/public/rsfs/rsfs10.tfm + RELOC/fonts/tfm/public/rsfs/rsfs5.tfm + RELOC/fonts/tfm/public/rsfs/rsfs7.tfm + RELOC/fonts/type1/public/rsfs/rsfs10.pfb + RELOC/fonts/type1/public/rsfs/rsfs10.pfm + RELOC/fonts/type1/public/rsfs/rsfs5.pfb + RELOC/fonts/type1/public/rsfs/rsfs5.pfm + RELOC/fonts/type1/public/rsfs/rsfs7.pfb + RELOC/fonts/type1/public/rsfs/rsfs7.pfm + RELOC/tex/plain/rsfs/scrload.tex +catalogue-also rsfso +catalogue-ctan /fonts/rsfs +catalogue-license other-free +catalogue-topics font font-calligraphic font-mf font-type1 + +name rsfso +category Package +revision 37965 +shortdesc A mathematical calligraphic font based on rsfs +relocated 1 +longdesc The package provides virtual fonts and LaTeX support files for +longdesc mathematical calligraphic fonts based on the rsfs Adobe Type 1 +longdesc fonts (which must also be present for successful installation, +longdesc with the slant substantially reduced. The output is quite +longdesc similar to that from the Adobe Mathematical Pi script font. +execute addMap rsfso.map +containersize 3796 +containerchecksum ce6e600f2fd5ce1aba31092c43401feeadc7927d22ab630f0fb28f421bdea858fb9e382f4d0e36036f6f4ecbd1232265216c29b2edcd44583df6fb3340ce468d +doccontainersize 145708 +doccontainerchecksum ff045c68d70079df6d2b21368fe599beb9ac1ba0e339a8c448bd75565774c237520f79fd0e3d119209765eef29f5891dabf689c7756791a91bb7c7ea1d3dcf3e +docfiles size=38 + RELOC/doc/fonts/rsfso/README details="Readme" + RELOC/doc/fonts/rsfso/mh2scr0.png + RELOC/doc/fonts/rsfso/rsfso-doc.pdf details="Package documentation" + RELOC/doc/fonts/rsfso/rsfso-doc.tex +runfiles size=12 + RELOC/fonts/map/dvips/rsfso/rsfso.map + RELOC/fonts/tfm/public/rsfso/rrsfso10.tfm + RELOC/fonts/tfm/public/rsfso/rrsfso5.tfm + RELOC/fonts/tfm/public/rsfso/rrsfso7.tfm + RELOC/fonts/tfm/public/rsfso/rsfso10.tfm + RELOC/fonts/tfm/public/rsfso/rsfso5.tfm + RELOC/fonts/tfm/public/rsfso/rsfso7.tfm + RELOC/fonts/vf/public/rsfso/rsfso10.vf + RELOC/fonts/vf/public/rsfso/rsfso5.vf + RELOC/fonts/vf/public/rsfso/rsfso7.vf + RELOC/tex/latex/rsfso/rsfso.sty + RELOC/tex/latex/rsfso/ursfso.fd +catalogue-also calrsfs mathrsfs +catalogue-ctan /fonts/rsfso +catalogue-license lppl +catalogue-topics font font-virtual font-calligraphic +catalogue-version 1.02 + +name rterface +category Package +revision 30084 +shortdesc Access to R analysis from within a document +relocated 1 +longdesc The package mediates interaction between LaTeX and R; it allows +longdesc LaTeX to set R's parameters, and provides code to read R +longdesc output. +containersize 1664 +containerchecksum 3c3cd754ab17d03d50c35ec9824b76b9d4528276fe2b5a882d35df5537ca12f83956b2c596a269f9961f243bbd5e8c394c6f1bd508d07cecae50fa47bf05fd86 +doccontainersize 51296 +doccontainerchecksum c8c38026ce2bf2a996ba40062fe3bce797b381633e4aac50ec438bc9fb567f73ad1c4e764af3cdc816e62713d4f1dd8bf2ab1814b50d086811359e999103c7bf +docfiles size=19 + RELOC/doc/latex/rterface/README details="Readme" + RELOC/doc/latex/rterface/rterface.pdf details="Package documentation" + RELOC/doc/latex/rterface/rterface.tex +runfiles size=1 + RELOC/tex/latex/rterface/rterface.sty +catalogue-ctan /macros/latex/contrib/rterface +catalogue-license lppl1.2 +catalogue-topics callback statistics + +name rtkinenc +category Package +revision 20003 +shortdesc Input encoding with fallback procedures +relocated 1 +longdesc The rtkinenc package is functionally similar to the standard +longdesc LaTeX package inputenc: both set up active characters so that +longdesc an input character outside the range of 7-bit visible ASCII is +longdesc coverted into one or more corresponding LaTeX commands. The +longdesc main difference lies in that rtkinenc allows the user to +longdesc specify a fallback procedure to use when the text command +longdesc corresponding to some input character isn't available. Names of +longdesc commands in rtkinenc have been selected so that it can read +longdesc inputenc encoding definition files, and the aim is that +longdesc rtkinenc should be backwards compatible with inputenc. rtkinenc +longdesc is not a new version of inputenc though, nor is it part of +longdesc standard LaTeX. For an example of how rtkinenc is used, the +longdesc user may look at the tclldoc class. +containersize 2516 +containerchecksum a1f31a946838123b65124fc7220e77283cf89105ae439f1e851abfc3c30b6a6b7c83bebf676fe47de1dfa9668cfd22c638567ef9a097aa97dacef1f0e3ba1eb7 +doccontainersize 258108 +doccontainerchecksum f3e7b1e7c95af7bf89b58ac949ab5b3fc12d991a436e28196f748ae033c46446a0cb885943777f44af1fe5ad4aa579e0fc43676c44812b01cc64d85e4ae15e4d +docfiles size=65 + RELOC/doc/latex/rtkinenc/README.txt + RELOC/doc/latex/rtkinenc/rtkinenc-doc.pdf details="Package documentation" + RELOC/doc/latex/rtkinenc/rtkinenc-doc.tex +srccontainersize 6632 +srccontainerchecksum 9078c15d4c1531b9ca0b0ea6a2561815538de45dc33a9f8cd8f886cb7ced93a9fdf8296f409516480fb58861b599692982b503bd49568548b4d34743c44ca037 +srcfiles size=7 + RELOC/source/latex/rtkinenc/rtkinenc.dtx + RELOC/source/latex/rtkinenc/rtkinenc.ins +runfiles size=2 + RELOC/tex/latex/rtkinenc/rtkinenc.sty +catalogue-ctan /macros/latex/contrib/rtkinenc +catalogue-license lppl +catalogue-topics inputenc +catalogue-version 1.0 + +name rtklage +category Package +revision 15878 +catalogue ratex +shortdesc A package for German lawyers +relocated 1 +longdesc RATeX is a newly developed bundle of packages and classes +longdesc provided for German lawyers. Now in the early beginning it only +longdesc contains rtklage, a class to make lawsuits. +containersize 1464 +containerchecksum 6e39e34a7c293f503949da66f1d5ebc65ae0388dc56e87992e9fc4daff1a250196afe68150be14ee2ec3242393ce9e5ea7b681cba31b7ed1c2d58526f6506554 +doccontainersize 62656 +doccontainerchecksum 550c21bcd8af04041f1fac11f2be3ae2a1f01265ad6bf31243569820c7b8d83f32ccd0cdbcc4d5a7a5905ae9aa0512a449a1b2d6923affceb344152e6c12d72d +docfiles size=20 + RELOC/doc/latex/rtklage/README details="Readme" language="de" + RELOC/doc/latex/rtklage/bspklage.tex + RELOC/doc/latex/rtklage/rtklage.pdf details="Package documentation" language="de" +runfiles size=1 + RELOC/tex/latex/rtklage/rtklage.cls +catalogue-ctan /macros/latex/contrib/rtklage +catalogue-license lppl +catalogue-topics german legal + +name rubik +category Package +revision 46791 +shortdesc Document Rubik cube configurations and rotation sequences +longdesc The bundle provides four packages: rubikcube provides commands +longdesc for typesetting Rubik cubes and their transformations, +longdesc rubiktwocube provides commands for typesetting Rubik twocubes +longdesc and their transformations, rubikrotation which can process a +longdesc sequence of Rubik rotation moves, with the help of a Perl +longdesc package executed via \write18 (shell escape) commands, and +longdesc rubikpatterns, a collection of well known patterns and their +longdesc associated rotation sequences. +depend rubik.ARCH +containersize 39000 +containerchecksum 67931287ea126947b5b2d567ba355d44ce094b2b527288ce32329de4a73434be9a43cd520e6c24ef570a46a16c0edcf12212f46228ee1bcd2b8a8be7f9db3a7c +doccontainersize 3201592 +doccontainerchecksum 33d5c8210600cb4ce7b1313d1046f6644f0a6648f7ee9676d4d628d042f6501b5e92f2b56a31fbad6f637dc93a460a568be9e1335bd52bcea825f5772b2a9d51 +docfiles size=887 + texmf-dist/doc/latex/rubik/README.txt details="Readme" + texmf-dist/doc/latex/rubik/rubik-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figB.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figC.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figD.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figE.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figF.pdf + texmf-dist/doc/latex/rubik/rubikcube.pdf details="Rubikcube package documentation" + texmf-dist/doc/latex/rubik/rubikexamples.pdf details="Rubik examples" + texmf-dist/doc/latex/rubik/rubikexamples.sh + texmf-dist/doc/latex/rubik/rubikexamples.tex + texmf-dist/doc/latex/rubik/rubikpatterns-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubikpatterns.pdf details="Rubikpatterns package documentation" + texmf-dist/doc/latex/rubik/rubikpatternsLIST.pdf details="List of Rubik patterns" + texmf-dist/doc/latex/rubik/rubikpatternsLIST.sh + texmf-dist/doc/latex/rubik/rubikpatternsLIST.tex + texmf-dist/doc/latex/rubik/rubikrot-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubikrot-doc-figB.pdf + texmf-dist/doc/latex/rubik/rubikrot-doc-figC.pdf + texmf-dist/doc/latex/rubik/rubikrot-doc-figD.pdf + texmf-dist/doc/latex/rubik/rubikrotation.pdf details="Rubikrotation package documentation" + texmf-dist/doc/latex/rubik/rubikrotationPL.pdf + texmf-dist/doc/latex/rubik/rubiktwo-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubiktwocube.pdf details="Rubiktwocube package documentation" + texmf-dist/doc/man/man1/rubikrotation.1 + texmf-dist/doc/man/man1/rubikrotation.man1.pdf +srccontainersize 86520 +srccontainerchecksum 3159acbc71a007877c046f6c075bf271e031feb00cda04c1818e4490396c3fb0651f160c7a98d8d3391efccae6a5b1dfde2155c6bde1c463e1c7416107b4ab90 +srcfiles size=137 + texmf-dist/source/latex/rubik/rubikcube.dtx + texmf-dist/source/latex/rubik/rubikcube.ins + texmf-dist/source/latex/rubik/rubikexamples.bat + texmf-dist/source/latex/rubik/rubikpatterns.dtx + texmf-dist/source/latex/rubik/rubikpatterns.ins + texmf-dist/source/latex/rubik/rubikpatternsLIST.bat + texmf-dist/source/latex/rubik/rubikrotation.dtx + texmf-dist/source/latex/rubik/rubikrotation.ins + texmf-dist/source/latex/rubik/rubiktwocube.dtx + texmf-dist/source/latex/rubik/rubiktwocube.ins +runfiles size=65 + texmf-dist/scripts/rubik/rubikrotation.pl + texmf-dist/tex/latex/rubik/rubikcube.sty + texmf-dist/tex/latex/rubik/rubikpatterns.sty + texmf-dist/tex/latex/rubik/rubikrotation.sty + texmf-dist/tex/latex/rubik/rubiktwocube.sty +catalogue-ctan /macros/latex/contrib/rubik +catalogue-license lppl1.3 +catalogue-topics puzzle +catalogue-version 5.0 + +name rubik.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of rubik +containersize 348 +containerchecksum 05d1b8a1fdebe87cd8598c78477007090c8dec6b453903d4fadd04f317ea734270e41381dd0faf579d04c6100a4121b8497fe2d506f6faa13c7137d575fc2b27 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/rubikrotation + +name rubik.amd64-freebsd +category Package +revision 32919 +shortdesc amd64-freebsd files of rubik +containersize 348 +containerchecksum 3d5be4d62fc8c903bede5a7023466c129ce80707d36fdd2a1be4277c66a28c3d84b97b4072faad3a87a37aa68e5870f5e305fd3c957abddcbe2292f0630cf6f0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/rubikrotation + +name rubik.amd64-netbsd +category Package +revision 32919 +shortdesc amd64-netbsd files of rubik +containersize 348 +containerchecksum 2f530300a413fceec30d31b46bf99d5683f7e69b2ca20873c29c6ea0920b3b6f4fab91eb6d38e3c2c626cd0c0f0069151b7dd50caca4cc893ce0b6f4ff09c82c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/rubikrotation + +name rubik.armhf-linux +category Package +revision 32919 +shortdesc armhf-linux files of rubik +containersize 348 +containerchecksum 677a59994a820a8509809d3eeff84a60447c5e72ac576c5aadc5d788605c38e9a956f08960625d5c3794df12f4bad79ea6f7a098f0941404341c065f93bdf4bd +binfiles arch=armhf-linux size=1 + bin/armhf-linux/rubikrotation + +name rubik.i386-cygwin +category Package +revision 32919 +shortdesc i386-cygwin files of rubik +containersize 344 +containerchecksum 6ed07f4e1adfdb1bb6ab9a3fbdb34f7d3e413c8b762fb38684f55088578bb2acc2d199ed42bc01698f4fd34eff054e79052cf07384a2d8210c5da8503c3b3d95 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/rubikrotation + +name rubik.i386-freebsd +category Package +revision 32919 +shortdesc i386-freebsd files of rubik +containersize 348 +containerchecksum 838d3f3da8f3fd97487b6e2323f8350c64f3b0f326e9bb53b77476b9bc67253c9bc9b135996a4092e4fdb57b3941246840c4519e9c89d866f7dca59f89f76f9a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/rubikrotation + +name rubik.i386-linux +category Package +revision 32919 +shortdesc i386-linux files of rubik +containersize 348 +containerchecksum 5f0c4f73780e0aeae5e4e950242696d12ba3db322e7927cd7e97c26d0d06d333e289b851dc69f600ea21bb9ee9bcf570927c281703e2b905529ff84d2cee29a2 +binfiles arch=i386-linux size=1 + bin/i386-linux/rubikrotation + +name rubik.i386-netbsd +category Package +revision 32919 +shortdesc i386-netbsd files of rubik +containersize 348 +containerchecksum 4a8560b7a05ec8ba59d97ed29458c27b28c3b98727bca8fee041cdf2c9681139f58813249565e494fe2e48f4e5d666e58456ce548e13c26c889660dde8e77500 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/rubikrotation + +name rubik.i386-solaris +category Package +revision 32919 +shortdesc i386-solaris files of rubik +containersize 348 +containerchecksum 22a85666cb12e632d088deed22e7fc6cebc028afdf29597fab43dcdfc398004460fa1b67ab2c35e42a8e335a535dafcf9efd4108c6c19dd902dcddea549acc3e +binfiles arch=i386-solaris size=1 + bin/i386-solaris/rubikrotation + +name rubik.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of rubik +containersize 348 +containerchecksum df71c26dcf4c75c9fab7a09db9b588d7043cd92973f1e3085b469d400e25fa4366abf6f1c1b92cd4211d21482bab0e387d767f1be81633909467130ef3ca9879 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/rubikrotation + +name rubik.win32 +category Package +revision 32919 +shortdesc win32 files of rubik +containersize 684 +containerchecksum 9b517494fc20ee689649d3d501f8b6a0df2bcb7ab2d795063da3dff68c5fd39c63f736ebe833eb91e2171c3294980ed9ee96ca0ab17672bf58a9e18ae33aba59 +binfiles arch=win32 size=1 + bin/win32/rubikrotation.exe + +name rubik.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of rubik +containersize 348 +containerchecksum 8604f89df75ee26ce6e0f369d60eec42efd06440a2cbd8c4b51d25936f08e30c0960cb4fdcb6a8a2dfcf73f9b733623b9f0410c6e37f04e9fb613740615ceac9 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/rubikrotation + +name rubik.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of rubik +containersize 356 +containerchecksum f3927caeef48810ea0e28d8ee871548f7bb56e86e5f02d7ad8a56d2a6cc07e840bd66a47f35474866727bd283f8dba12a7f720b7003b43219f07799b0fbc64c1 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/rubikrotation + +name rubik.x86_64-linux +category Package +revision 32919 +shortdesc x86_64-linux files of rubik +containersize 348 +containerchecksum eb43266a9e5cbf24a8b64b50238376291349a964480afc371a342190367e10e337bd8e7bd19a8e9a288378fc14ef90af6ef98964c8e2ff747c8dfb11e34c4d64 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/rubikrotation + +name rubik.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of rubik +containersize 352 +containerchecksum 937a58d76b3a5bf5bbfc5ad9b65cbc2db23793b6a0a63205e6f5a515741b14b88a26f22e624d4dc7da2fc1f9c8d89ee19f1c47b219792bc637b536195850bd9d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/rubikrotation + +name rubik.x86_64-solaris +category Package +revision 32919 +shortdesc x86_64-solaris files of rubik +containersize 348 +containerchecksum b1da5dd6f1e7cdf9917ef574e6b9b2d414d5c4b6003f88e03c0c471455ad05b159f802974534d9d4c16e4abcf01b802e5f40b0189ec95b1301ad0ace462bb102 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/rubikrotation + +name ruhyphen +category Package +revision 21081 +shortdesc Russian hyphenation +relocated 1 +longdesc A collection of Russian hyphenation patterns supporting a +longdesc number of Cyrillic font encodings, including T2, UCY (Omega +longdesc Unicode Cyrillic), LCY, LWN (OT2), and koi8-r. +containersize 56732 +containerchecksum d681972cad53b86167f4800f78b5d25de305d2f3f604e6b41b481c432bb9f09a964720fed5b5052cb8a30148da1bdc76306d8edb2139018d83c331d3439de958 +srccontainersize 13656 +srccontainerchecksum df587bb8c81e73f70a93146d6c3a50c2a66b16084e8eab0b01e0aefb3ce073c6b6e812cfd8c5a1520f98ca58e2e2e0634877ca2987742eccc4d7340a7d62e23b +srcfiles size=15 + RELOC/source/generic/ruhyphen/BUGS + RELOC/source/generic/ruhyphen/Makefile + RELOC/source/generic/ruhyphen/README + RELOC/source/generic/ruhyphen/README.ruhyphal + RELOC/source/generic/ruhyphen/hyphen.rules + RELOC/source/generic/ruhyphen/mkcyryo + RELOC/source/generic/ruhyphen/reduce-patt + RELOC/source/generic/ruhyphen/sorthyph + RELOC/source/generic/ruhyphen/sortkoi8 + RELOC/source/generic/ruhyphen/trans +runfiles size=62 + RELOC/tex/generic/ruhyphen/catkoi.tex + RELOC/tex/generic/ruhyphen/cyryoal.tex + RELOC/tex/generic/ruhyphen/cyryoas.tex + RELOC/tex/generic/ruhyphen/cyryoct.tex + RELOC/tex/generic/ruhyphen/cyryodv.tex + RELOC/tex/generic/ruhyphen/cyryomg.tex + RELOC/tex/generic/ruhyphen/cyryovl.tex + RELOC/tex/generic/ruhyphen/cyryozn.tex + RELOC/tex/generic/ruhyphen/enrhm2.tex + RELOC/tex/generic/ruhyphen/hypht2.tex + RELOC/tex/generic/ruhyphen/koi2koi.tex + RELOC/tex/generic/ruhyphen/koi2lcy.tex + RELOC/tex/generic/ruhyphen/koi2ot2.tex + RELOC/tex/generic/ruhyphen/koi2t2a.tex + RELOC/tex/generic/ruhyphen/koi2ucy.tex + RELOC/tex/generic/ruhyphen/ruenhyph.tex + RELOC/tex/generic/ruhyphen/ruhyphal.tex + RELOC/tex/generic/ruhyphen/ruhyphas.tex + RELOC/tex/generic/ruhyphen/ruhyphct.tex + RELOC/tex/generic/ruhyphen/ruhyphdv.tex + RELOC/tex/generic/ruhyphen/ruhyphen.tex + RELOC/tex/generic/ruhyphen/ruhyphmg.tex + RELOC/tex/generic/ruhyphen/ruhyphvl.tex + RELOC/tex/generic/ruhyphen/ruhyphzn.tex +catalogue-ctan /language/hyphenation/ruhyphen +catalogue-license lppl +catalogue-topics hyphenation russian +catalogue-version 1.6 + +name ruler +category Package +revision 54251 +shortdesc A typographic ruler for TeX +relocated 1 +longdesc The file processes to produce (real) rulers; the author +longdesc suggests printing them on transparent plastic and trimming for +longdesc use as a "real" ruler. The rule widths are 0.05mm, which can be +longdesc challenging for (old) laser printers. +containersize 6620 +containerchecksum a0ac63735eee4be96fc368bece6eed80058b79689954780990e1da5632448203c4f99d9b13f541a89e523f4a531983d5fefd836b99ed64c2f177723c822f8749 +runfiles size=7 + RELOC/tex/generic/ruler/ruler.tex +catalogue-also pointruler +catalogue-ctan /macros/generic/misc/ruler.tex +catalogue-license gpl +catalogue-topics misc-support +catalogue-version 1.1 + +name rulerbox +category Package +revision 50984 +shortdesc Draw rulers around a box +relocated 1 +longdesc This is a LaTeX package for drawing rulers around a box. This +longdesc might be useful when showing the absolute size of something in +longdesc electronic documents, or designating the relative scale in +longdesc printed materials. +containersize 1776 +containerchecksum 197588dd36056d6b6e9f7772205cc44e81734cf63dfc83a7c987209df0c2b47f91f460d322df05f123768f3d10d9af8bcdda6619da394fdaf3367be88821a135 +doccontainersize 58888 +doccontainerchecksum b4de5828d5602845217726ded4d56ce6f4008a599bb1ddba89745ab39bfc2ba9ed3fcd1f636cff4743252a975a18ba07925f1e78f81fc8cc2ded80a7cf8b74b2 +docfiles size=18 + RELOC/doc/latex/rulerbox/README.md details="Readme" + RELOC/doc/latex/rulerbox/rulerbox.pdf details="Package documentation" + RELOC/doc/latex/rulerbox/rulerbox.tex +runfiles size=2 + RELOC/tex/latex/rulerbox/rulerbox.sty +catalogue-also fgruler +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-license lppl1.3c +catalogue-topics misc-support +catalogue-version 1.01 + +name rulercompass +category Package +revision 32392 +shortdesc A TikZ library for straight-edge and compass diagrams +relocated 1 +longdesc The package defines some commands and styles to support drawing +longdesc straight-edge and compass diagrams with TikZ. +containersize 3888 +containerchecksum 8f2e8d9a4d61c3c79e3ef29ae554db2696b9c374fe10f59fe2a4baea33c679a0678a95c30ea1d4310662bb5af6a1b02d88db7bb43610545b1ffb39fba19b5001 +doccontainersize 481212 +doccontainerchecksum 6077a3c137269e5be37b62879c394d800f4bc80cacd1d9600b2aa81503958e2fa29f0364db58c1418bc206db916f84f46cbcf70d0f30a9276a6e78d154150425 +docfiles size=123 + RELOC/doc/latex/rulercompass/README.txt + RELOC/doc/latex/rulercompass/rulercompass.pdf details="Code listing" + RELOC/doc/latex/rulercompass/rulercompass_doc.pdf details="Package documentation" + RELOC/doc/latex/rulercompass/rulercompass_doc.tex +srccontainersize 6072 +srccontainerchecksum 75765738f4d3b635468d8e1ebda805e0fc6e2bd3eccfbcc1594fcce89908834572aeec85fea189368d02d05ba1fff6d0e2bb454ad25bce2b92a45cffd74a979c +srcfiles size=7 + RELOC/source/latex/rulercompass/rulercompass.dtx + RELOC/source/latex/rulercompass/rulercompass.ins +runfiles size=4 + RELOC/tex/latex/rulercompass/tikzlibraryrulercompass.code.tex +catalogue-ctan /graphics/pgf/contrib/rulercompass +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex +catalogue-version 1 + +name runcode +category Package +revision 58908 +shortdesc Execute foreign source code and embed the result in the pdf file +relocated 1 +longdesc This LaTeX package executes programming source codes (including +longdesc all command line tools) from within LaTeX and embeds the output +longdesc in the resulting .pdf file. Many programming languages can be +longdesc easily used and any command-line executable can be invoked when +longdesc preparing the .pdf file from a .tex file. It is however +longdesc recommended to use this package in server-mode together with +longdesc the Python talk2stat package. Currently, this server-mode +longdesc supports Julia, MatLab, Python, and R. More languages will be +longdesc added. For more details and usage examples, refer to the +longdesc package's github repository. +containersize 3568 +containerchecksum d3ea947106e824d697e15f82466a36e36215a6a3b5c954cfd6250cb3a896e2de2ba6163cf9be5510bf4250a57809d27ae8c06915d9f601057608e7d57e08ea1e +doccontainersize 174012 +doccontainerchecksum 48e8847f7a50e14c809b08244cb9851c25a367799aa3ad673472a8e1b66aad2e4dc0ceaedc56fe2fb106c610f4fc825c10b05665a385ef7347bdc87a85338a0d +docfiles size=46 + RELOC/doc/latex/runcode/README details="Readme" + RELOC/doc/latex/runcode/runcode.pdf details="Package documentation" + RELOC/doc/latex/runcode/runcode.tex +runfiles size=3 + RELOC/tex/latex/runcode/runcode.sty +catalogue-contact-repository https://github.com/Ossifragus/runcode +catalogue-ctan /macros/latex/contrib/runcode +catalogue-license lppl1.3c +catalogue-topics exec-foreign callback +catalogue-version 1.1 + +name russ +category Package +revision 25209 +shortdesc LaTeX in Russian, without babel +relocated 1 +longdesc The package aims to facilitate Russian typesetting (based on +longdesc input using MicroSoft Code Page 1251). Russian hyphenation is +longdesc selected, and various mathematical commands are set up in +longdesc Russian style. Furthermore all Cyrillic letters' catcodes are +longdesc set to "letter", so that commands with Cyrillic letters in +longdesc their names may be defined. +containersize 25540 +containerchecksum 11bceea67aae767037d728ab7892eedab312e9477f1f9f7501f9702fca4ceea4e21bd575b1589fb545abdbdc5f5f5315243f77adb4c9b9a2507fb255481c5541 +doccontainersize 297660 +doccontainerchecksum 876cba326071d0f347d9a1a4c1eca692ca743729b9604a51bb5b53de96da6006ff24168040e77df60b1999cb22901b7318669c32378a869081956dde40974802 +docfiles size=89 + RELOC/doc/latex/russ/README details="Readme" language="en" + RELOC/doc/latex/russ/readme.RU.txt details="Readme" language="ru" + RELOC/doc/latex/russ/russ_doc.pdf details="Package documentation" language="ru" + RELOC/doc/latex/russ/russ_doc.tex +runfiles size=50 + RELOC/tex/latex/russ/russ.sty +catalogue-ctan /macros/latex/contrib/russ +catalogue-license lppl +catalogue-topics russian + +name rutitlepage +category Package +revision 51073 +shortdesc Radboud University Titlepage Package +relocated 1 +longdesc This is an unofficial LaTeX package to generate titlepages for +longdesc the Radboud University, Nijmegen. It uses official vector logos +longdesc from the university. This package requires the following other +longdesc LaTeX packages: geometry, graphicx, ifpdf, keyval, iflang, and, +longdesc optionnaly, babel-dutch. +containersize 2658316 +containerchecksum e071bf5dfcb8572dac3287394be5052ca04c6ec90182e306f020ad02c8f4db134c92b41f064423c1063fe5c1c465cf952a8d0d8fec4e917aba82f76850cf38c9 +doccontainersize 191808 +doccontainerchecksum e6884d2eaa6e5fc9448c033f1a48ee218f171d5fc16e7a977db89f7807c0bb6d1bb4c212ee489bd882d87149003d9aea2da3170045e165150bb8f7578b719107 +docfiles size=48 + RELOC/doc/latex/rutitlepage/README.md details="Readme" + RELOC/doc/latex/rutitlepage/rutitlepage.pdf details="Package documentation" +srccontainersize 3708 +srccontainerchecksum bff9526027292b6484d9a5ebe66d57400eace4fb94f39c97569aeda1c1dcb32e30ace085b07bfdac096ca0dcd587bd7ab8509190dfe9dcd08e4fa7d737fed66f +srcfiles size=4 + RELOC/source/latex/rutitlepage/rutitlepage.dtx + RELOC/source/latex/rutitlepage/rutitlepage.ins +runfiles size=1070 + RELOC/tex/latex/rutitlepage/rutitlepage-logo-bw.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-bw.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo-cmyk.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-cmyk.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-bw.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-bw.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-cmyk.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-cmyk.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo.pdf + RELOC/tex/latex/rutitlepage/rutitlepage.sty +catalogue-contact-bugs https://github.com/dopefishh/rutitlepage/issues +catalogue-contact-repository https://github.com/dopefishh/rutitlepage +catalogue-ctan /macros/latex/contrib/rutitlepage +catalogue-license lppl1.3 +catalogue-topics titlepage logo +catalogue-version 2.3 + +name rviewport +category Package +revision 23739 +shortdesc Relative Viewport for Graphics Inclusion +relocated 1 +longdesc Package graphicx provides a useful keyword viewport which +longdesc allows to show just a part of an image. However, one needs to +longdesc put there the actual coordinates of the viewport window. +longdesc Sometimes it is useful to have relative coordinates as +longdesc fractions of natural size. For example, one may want to print a +longdesc large image on a spread, putting a half on a verso page, and +longdesc another half on the next recto page. For this one would need a +longdesc viewport occupying exactly one half of the file's bounding box, +longdesc whatever the actual width of the image may be. This package +longdesc adds a new keyword rviewport to the graphicx package +longdesc specifiying Relative Viewport for graphics inclusion: a window +longdesc defined by the given fractions of the natural width and height +longdesc of the image. +containersize 1440 +containerchecksum eb4bd4e75f021db40119cb4d4334611fa80d26885dd4229ace652bf8dbd7b4647a6dc4f45c8be78ad8db0cf1001b7117ce3c38de2483f0dd96da05473543ac10 +doccontainersize 178752 +doccontainerchecksum 10f94dd8b29d354eda99e8c0f15b53baef80714f7212714a94070061e403d45fc5a97d25174f268a14b0f4c924af9b25c81131929c08be1ed9a4e62204f17c22 +docfiles size=73 + RELOC/doc/latex/rviewport/Makefile + RELOC/doc/latex/rviewport/README details="Readme" + RELOC/doc/latex/rviewport/rviewport.pdf details="Package documentation" + RELOC/doc/latex/rviewport/vitruvian.jpg +srccontainersize 3308 +srccontainerchecksum 25e91e8c4f52b1752b32293828d174fcf3cbf6491f38dc2c58be23ef7f2a84570c96606472ed89ed837951bd2ab9bd1e48d4a126beef160c14899b0e70240eb7 +srcfiles size=3 + RELOC/source/latex/rviewport/rviewport.dtx + RELOC/source/latex/rviewport/rviewport.ins +runfiles size=1 + RELOC/tex/latex/rviewport/rviewport.sty +catalogue-also graphicx +catalogue-ctan /macros/latex/contrib/rviewport +catalogue-license lppl +catalogue-topics graphics-incl +catalogue-version 1.0 + +name rvwrite +category Package +revision 19614 +shortdesc Increase the number of available output streams in LaTeX +relocated 1 +longdesc The package addresses, for LaTeX documents, the severe +longdesc limitation on the number of output streams that TeX provides. +longdesc The package uses a single TeX output stream, and writes +longdesc "marked-up" output to this stream. The user may then +longdesc post-process the marked-up output file, using LaTeX, and the +longdesc document's output appears as separate files, according to the +longdesc calls made to the package. The output to be post-processed uses +longdesc macros from the widely-available ProTeX package. +containersize 1540 +containerchecksum c187dcb7e1c72b727cfd0827a55d721c6a094679c1dae27438ed030209042b49c646af20e158900543369ca8ceee9896a9f36de76607f8514004df80e3be15fb +doccontainersize 80392 +doccontainerchecksum 545e5b96a2bb3646a7b4a6eb31d5192ef85dee9ac0b6859f6b414f26c5235651294f486bd132af112a2c6021d6843e6ffef8a8f79b7389b974227bc1eee16230 +docfiles size=26 + RELOC/doc/latex/rvwrite/Makefile + RELOC/doc/latex/rvwrite/README details="Readme" + RELOC/doc/latex/rvwrite/rvwrite-doc.pdf details="Package documentation" + RELOC/doc/latex/rvwrite/rvwrite-doc.tex + RELOC/doc/latex/rvwrite/test.tex +runfiles size=1 + RELOC/tex/latex/rvwrite/rvwrite.sty +catalogue-ctan /macros/latex/contrib/rvwrite +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.2 + +name ryersonsgsthesis +category Package +revision 50119 +shortdesc Ryerson School of Graduate Studies thesis template +relocated 1 +longdesc This package provides a LaTeX class and template files for +longdesc Ryerson School of Graduate Studies (SGS) theses. +containersize 4256 +containerchecksum 0846fb24c6b96cc30edf46d1311809e1170d3feb13b3c26be4dd330ef8dd856771f257ca197f562ed409815f0edb7e8ea744a38b9098b86a325eda9cd4ad360f +doccontainersize 68364 +doccontainerchecksum b0d57ce3dcab586fdc2e15f6c2291560c43dd772b693ec11e0678e083a1475c21b55601878cf938e666d0f8a5464ffb0b79281b62f4859200fc6cd67b33b8779 +docfiles size=24 + RELOC/doc/latex/ryersonsgsthesis/CHANGELOG.md + RELOC/doc/latex/ryersonsgsthesis/LICENSE + RELOC/doc/latex/ryersonsgsthesis/README.md details="Readme" + RELOC/doc/latex/ryersonsgsthesis/rsgs-example.bib + RELOC/doc/latex/ryersonsgsthesis/rsgs-example.pdf details="Example of use" + RELOC/doc/latex/ryersonsgsthesis/rsgs-example.tex + RELOC/doc/latex/ryersonsgsthesis/rsgs-glossary.tex +runfiles size=4 + RELOC/tex/latex/ryersonsgsthesis/ryersonSGSThesis.cls +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-license apache2 +catalogue-topics class dissertation +catalogue-version 1.0.3 + +name ryethesis +category Package +revision 33945 +shortdesc Class for Ryerson Unversity Graduate School requirements +relocated 1 +longdesc The class offers support for formatting a thesis, dissertation +longdesc or project according to Ryerson University's School of Graduate +longdesc Studies thesis formatting regulations. +containersize 4700 +containerchecksum 63988ab74eda81270f0e470f3b1d1c772b17668fd9c6526fd8d53f588da8e52d3690b4c3ee898f2b460f83ac44ab4c528a0c6c48abf1a1cbe21427fb4e678a1a +doccontainersize 449056 +doccontainerchecksum 03ef086a51a97ed93038338b99a516ba2898a0097326f4cff3c650c7035acc4bba7ee2fd6458c579a9f1af4ff31334dd22cc23b7004d08e58a259306ee1fbd8e +docfiles size=123 + RELOC/doc/latex/ryethesis/Makefile + RELOC/doc/latex/ryethesis/README details="Readme" + RELOC/doc/latex/ryethesis/figure1.pdf + RELOC/doc/latex/ryethesis/ryesample.bib + RELOC/doc/latex/ryethesis/ryesample.pdf details="Example output" + RELOC/doc/latex/ryethesis/ryesample.tex + RELOC/doc/latex/ryethesis/ryethesis.pdf details="Package documentation" +srccontainersize 12508 +srccontainerchecksum 0754857b37c510f7cc581201c516d3ca1f6e9ed9bcc0825968efbe728a281e2ec73f58f7415efdb07bcdaa66fbbab3178793907b3da17511e69044bbdb2d8aed +srcfiles size=13 + RELOC/source/latex/ryethesis/ryethesis.dtx + RELOC/source/latex/ryethesis/ryethesis.ins +runfiles size=5 + RELOC/tex/latex/ryethesis/ryethesis.cls +catalogue-also ryersonsgsthesis +catalogue-ctan /macros/latex/contrib/ryethesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 1.36 + +name sa-tikz +category Package +revision 32815 +shortdesc TikZ library to draw switching architectures +relocated 1 +longdesc The package provides a library that offers an easy way to draw +longdesc switching architectures and to customize their aspect. +containersize 5480 +containerchecksum e30f8b6dd6f082bd127077fc5040ffef53e2c2fe43afd023bf0fa9dd8094769e2d40734dcf412d477989b746e1e5141cc42cc082e9f5b26e5986cc91f8336ec1 +doccontainersize 891020 +doccontainerchecksum d6586a6196fa9ec8c70ff6410873604d987394ff09e93462548baa202f22bda479fb4f76f66fb710b8daeb7b34e455225c997f07cc9360a09c5cbc4c45697a5e +docfiles size=244 + RELOC/doc/latex/sa-tikz/README details="Readme" + RELOC/doc/latex/sa-tikz/pgfmanual-en-macros.tex + RELOC/doc/latex/sa-tikz/sa-tikz-doc.pdf details="Package documentation" + RELOC/doc/latex/sa-tikz/sa-tikz-doc.tex +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-license lppl1.3 +catalogue-topics graphics-use comp-net +catalogue-version 0.7a + +name sageep +category Package +revision 15878 +shortdesc Format papers for the annual meeting of EEGS +relocated 1 +longdesc The class provides formatting for papers for the annual meeting +longdesc of the Environmental and Engineering Geophysical Society (EEGS) +longdesc ("Application of Geophysics to Engineering and Environmental +longdesc Problems", known as SAGEEP). +containersize 7772 +containerchecksum d8e107109129636cf68d88c96a36de87b95dcfc4e154dae51a1145d7a0c58a17ca12e95b1b2fa1312c6c50c5cc02be35b23168d8eca69a7643695c38c5d0bcd6 +doccontainersize 282876 +doccontainerchecksum 7f92c14d432ca5960669a8faace80ff6d4e97d9a021281c847b7f19942f4c1a06da3657e8992998e91bd1d69398b3fe379da690f81be28cb4ddc3980262c56b5 +docfiles size=98 + RELOC/doc/latex/sageep/README details="Readme" + RELOC/doc/latex/sageep/sageep.bib + RELOC/doc/latex/sageep/sageep.pdf details="Package documentation" + RELOC/doc/latex/sageep/sageep_graphic2009.jpg + RELOC/doc/latex/sageep/sample.pdf details="Formatted sample" + RELOC/doc/latex/sageep/sample.tex +srccontainersize 6944 +srccontainerchecksum 25f06543efc104bdcfcd81fbae6182498f23a7d1d958671cac945f5442a59a71033bf3fd174bd41c438c7a6a066d41b1e4a375b559b14bff6e705ad2ca894b05 +srcfiles size=6 + RELOC/source/latex/sageep/Makefile + RELOC/source/latex/sageep/sageep.dtx + RELOC/source/latex/sageep/sageep.ins +runfiles size=9 + RELOC/bibtex/bst/sageep/sageep.bst + RELOC/tex/latex/sageep/sageep.cls +catalogue-ctan /macros/latex/contrib/sageep +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.0 + +name sanitize-umlaut +category Package +revision 53292 +shortdesc Sanitize umlauts for MakeIndex and pdfLaTeX +relocated 1 +longdesc This package sanitizes umlauts to be used directly in index +longdesc entries for MakeIndex and friends with pdfLaTeX. This means +longdesc that inside \index an umlaut can be used as "U or as U. In both +longdesc cases, the letter is written as "U into the raw index file for +longdesc correct processing with MakeIndex and pdfLaTeX. +containersize 1596 +containerchecksum 5dfdecb98f1be63d358cb029f7428cde40daae2aec1c991b345b5f8097862e43e85f329bd371624a2022c15231db2c4e86ee144c6c76edb9214725cfc90ca798 +doccontainersize 372588 +doccontainerchecksum eba6143a88ce245d1e67d0205f5ce69b86a17c598daf1faa42e0f4675af6674b6a3559ebe4267efa0919eecda642c2d3bbc7ebb5d8650a53fd8d3868241bc813 +docfiles size=111 + RELOC/doc/latex/sanitize-umlaut/CHANGES + RELOC/doc/latex/sanitize-umlaut/README details="Readme" + RELOC/doc/latex/sanitize-umlaut/german.ist + RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.doc.sty + RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.pdf details="Package documentation" + RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.tex +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-license lppl1.3 +catalogue-topics utf8-adapt enc-juggle index-proc +catalogue-version 1.10 + +name sankey +category Package +revision 58661 +shortdesc Draw Sankey diagrams with TikZ +relocated 1 +longdesc This package provides macros and an environment for creating +longdesc Sankey diagrams, i.e. flow diagrams in which the width of the +longdesc arrows is proportional to the flow rate. +containersize 9536 +containerchecksum be2f6f2ce386abeaba3537ac4f4c89b1c880241193661a3079f0603451ff8675409405717d5d8c34b7b6478d3b340c453929fa371ce2564215a7fd833749f1a8 +doccontainersize 922868 +doccontainerchecksum 4264cbfa8089740fbf05867886ac157383cc019eb61f9844158acd8fb7dd1a65b48fb648b8b4b258ae3c66e67f18a709502177aff35fd4f7ac3a676127258a9a +docfiles size=242 + RELOC/doc/latex/sankey/README details="Readme" + RELOC/doc/latex/sankey/sankey-example-energy.tex + RELOC/doc/latex/sankey/sankey-example1.tex + RELOC/doc/latex/sankey/sankey-example2.tex + RELOC/doc/latex/sankey/sankey-example3-variation.tex + RELOC/doc/latex/sankey/sankey-example3.tex + RELOC/doc/latex/sankey/sankey-example4.tex + RELOC/doc/latex/sankey/sankey.pdf details="Package documentation" +srccontainersize 27248 +srccontainerchecksum 9a43e7b6bd6ead59a6fc56e27546b998565b97ce9e83821df9042295e7cf031f5f2506bf6f8ea6dc2ff306fe827b50b48aa38b4c76b6ecb45ea5d16099dcd98b +srcfiles size=40 + RELOC/source/latex/sankey/sankey.dtx + RELOC/source/latex/sankey/sankey.ins +runfiles size=12 + RELOC/tex/latex/sankey/sankey-doc-preamble.sty + RELOC/tex/latex/sankey/sankey.sty + RELOC/tex/latex/sankey/tikzlibrarydubins.code.tex +catalogue-ctan /graphics/pgf/contrib/sankey +catalogue-license lppl1.3 gpl +catalogue-topics graphics diagram diagram-flow pgf-tikz +catalogue-version 3.0 + +name sanskrit +category Package +revision 55475 +shortdesc Sanskrit support +relocated 1 +longdesc A font and pre-processor suitable for the production of +longdesc documents written in Sanskrit. Type 1 versions of the fonts are +longdesc available. +containersize 16284 +containerchecksum c435f80d675ceceb104166c11c1aac700f29fb315a87f992fdaee079eb2b92b20c18cd4ccf5eec3a87ae0306084f386b89ed69dde775b7a0b574f0447692100d +doccontainersize 526860 +doccontainerchecksum 73109f0b792b81d86a4db8e4ece3817709e22f5d9f60a6a97238b94faa3f620476c77a2820154719c0829d5d476d44bd608802634d379042434644af107353a3 +docfiles size=156 + RELOC/doc/latex/sanskrit/README.md details="Readme" + RELOC/doc/latex/sanskrit/README.pdf + RELOC/doc/latex/sanskrit/build-ctan-dist.sh + RELOC/doc/latex/sanskrit/sktdoc.pdf details="Package documentation" + RELOC/doc/latex/sanskrit/sktdoc.skt +srccontainersize 22216 +srccontainerchecksum 6ddb854e0881d61e352bd4fd52ef1ae74b87475199a819433aa97ba720d88db0c52c045eaaf47833c82bc14e3937da7c40e060924cedfb370a1180148497996d +srcfiles size=28 + RELOC/source/latex/sanskrit/skt.c +runfiles size=40 + RELOC/fonts/source/public/sanskrit/skt10.mf + RELOC/fonts/source/public/sanskrit/skt8.mf + RELOC/fonts/source/public/sanskrit/skt9.mf + RELOC/fonts/source/public/sanskrit/sktb10.mf + RELOC/fonts/source/public/sanskrit/sktbs10.mf + RELOC/fonts/source/public/sanskrit/sktchars.mf + RELOC/fonts/source/public/sanskrit/sktdefs.mf + RELOC/fonts/source/public/sanskrit/sktf10.mf + RELOC/fonts/source/public/sanskrit/sktfs10.mf + RELOC/fonts/source/public/sanskrit/sktligs.mf + RELOC/fonts/source/public/sanskrit/skts10.mf + RELOC/fonts/tfm/public/sanskrit/skt10.tfm + RELOC/fonts/tfm/public/sanskrit/skt8.tfm + RELOC/fonts/tfm/public/sanskrit/skt9.tfm + RELOC/fonts/tfm/public/sanskrit/sktb10.tfm + RELOC/fonts/tfm/public/sanskrit/sktbs10.tfm + RELOC/fonts/tfm/public/sanskrit/sktf10.tfm + RELOC/fonts/tfm/public/sanskrit/sktfs10.tfm + RELOC/fonts/tfm/public/sanskrit/skts10.tfm + RELOC/tex/latex/sanskrit/ot1skt.fd + RELOC/tex/latex/sanskrit/skt.sty +catalogue-also devanagari +catalogue-ctan /language/sanskrit +catalogue-license lppl +catalogue-topics font font-mf indic sanskrit +catalogue-version 2.2.1 + +name sanskrit-t1 +category Package +revision 55475 +shortdesc Type 1 version of 'skt' fonts for Sanskrit +relocated 1 +longdesc The sanskrit-t1 font package provides Type 1 version of Charles +longdesc Wikner's skt font series for the Sanskrit language. +execute addMap skt.map +containersize 454128 +containerchecksum 50f7a12443730bb017334ed1bad840dd2086a0225586eeae02f1386f410ae802fd043b1ce8a90e495aac7bdb20e2a8532c4cf98d48f0fc32b96da24f28de26bc +doccontainersize 290432 +doccontainerchecksum 11a0bbb4212f72a18df5eb1ce1e2259774c6376a3c107fe32bed4176d23da2f5bda5cab71a7df618c67113ac9d65969ea8e680ab939c7c6cb2542ebd4c7e5efa +docfiles size=83 + RELOC/doc/fonts/sanskrit-t1/README details="Readme" + RELOC/doc/fonts/sanskrit-t1/sktdoc.pdf details="Package documentation" +runfiles size=127 + RELOC/fonts/map/dvips/sanskrit-t1/skt.map + RELOC/fonts/type1/public/sanskrit-t1/skt10.pfb + RELOC/fonts/type1/public/sanskrit-t1/skt8.pfb + RELOC/fonts/type1/public/sanskrit-t1/skt9.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktb10.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktbs10.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktf10.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktfs10.pfb + RELOC/fonts/type1/public/sanskrit-t1/skts10.pfb +catalogue-ctan /fonts/ps-type1/sanskrit +catalogue-license lppl +catalogue-topics font font-type1 indic sanskrit + +name sansmath +category Package +revision 17997 +shortdesc Maths in a sans font +relocated 1 +longdesc The package defines a new math version sans, and a command +longdesc \sansmath that behaves somewhat like \boldmath +containersize 3356 +containerchecksum 075b9a32512f191767bfc739b833497eed371c2078fc8511ba507b19e2744675bfb3caeda40da484ae559aaff44aa4f6b2f7f5baaeb0c30076654593216fa5e4 +doccontainersize 182264 +doccontainerchecksum 7923dcfcf20c945dc61af747000694c59c61982417307356ef2ee335f7a3eac7e44974a334072125ed4a3ec3b29caf342f15dfda1fdbc348a5e2cfb8a4dc2469 +docfiles size=48 + RELOC/doc/latex/sansmath/miscdoc.sty + RELOC/doc/latex/sansmath/sansmath.pdf details="Package documentation" + RELOC/doc/latex/sansmath/sansmath.tex +runfiles size=2 + RELOC/tex/latex/sansmath/sansmath.sty +catalogue-also sfmath +catalogue-ctan /macros/latex/contrib/sansmath +catalogue-license pd +catalogue-topics font-supp-maths +catalogue-version 1.1 + +name sansmathaccent +category Package +revision 53628 +shortdesc Correct placement of accents in sans-serif maths +relocated 1 +longdesc Sans serif maths (produced by the beamer class or the sfmath +longdesc package) often has accents positioned incorrectly. This package +longdesc fixes the positioning of such accents when the default font +longdesc (cmssi) is used for sans serif maths. It will have no effect if +longdesc used in a document that does not use the beamer class or the +longdesc sfmath package. +execute addMap sansmathaccent.map +containersize 10604 +containerchecksum 685b0c604978aac45efd75c37652471aa165bfbbf12dfa686320a6a9ef926f9043382333ecc26db6d2ff4d12732d135947145ba937eb6d01d4a4e9aa17784315 +doccontainersize 158040 +doccontainerchecksum c9bf7d65a232d668243df9867b2eca64e0288fd733c6b39ce200f64fc5b0a07c98ea6a971446f67f1766998e169c14a80eda71104c1653ed54d3865e6e145fc0 +docfiles size=44 + RELOC/doc/fonts/sansmathaccent/README details="Readme" + RELOC/doc/fonts/sansmathaccent/sansmathaccent.pdf details="Package documentation" + RELOC/doc/fonts/sansmathaccent/sansmathaccent.tex +runfiles size=19 + RELOC/fonts/map/dvips/sansmathaccent/sansmathaccent.map + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi10.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi12.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi17.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi8.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi9.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi10.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi12.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi17.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi8.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi9.tfm + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi10.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi12.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi17.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi8.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi9.vf + RELOC/tex/latex/sansmathaccent/ot1mathkerncmss.fd + RELOC/tex/latex/sansmathaccent/sansmathaccent.sty +catalogue-ctan /fonts/sansmathaccent +catalogue-license lppl1.3 +catalogue-topics font font-virtual font-supp-maths font-cm font-sans + +name sansmathfonts +category Package +revision 51356 +shortdesc Correct placement of accents in sans-serif maths +relocated 1 +longdesc Sans serif small caps and math fonts for use with Computer +longdesc Modern. +execute addMap sansmathfonts.map +containersize 4275192 +containerchecksum 71d70b034c7e0da6f8e1876c40ce2821e05cc814e5d8e1194f5a76c4b490d8d191bf6b3c9bb7fe880d0273ec8e1f3211bd335b526b154116d7ccdcdf0b61d0d5 +doccontainersize 268192 +doccontainerchecksum e61cc601588681dc29113391426cb345c207eefb04562ea6eb8369cdb8ec4844b0bab586ed91bb2a1506c49c5a60661748de95cf792b07fd52ba23cbe58d254d +docfiles size=70 + RELOC/doc/fonts/sansmathfonts/README details="Readme" + RELOC/doc/fonts/sansmathfonts/sansmathfonts.pdf details="Package documentation" + RELOC/doc/fonts/sansmathfonts/sansmathfonts.tex +runfiles size=1987 + RELOC/fonts/map/dvips/sansmathfonts/sansmathfonts.map + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibxcsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixicsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy10.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy5.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy6.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy7.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy8.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy9.mf + RELOC/fonts/source/public/sansmathfonts/cmssbxcsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsc8.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsc9.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsci10.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsci8.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsci9.mf + RELOC/fonts/source/public/sansmathfonts/cmssex10.mf + RELOC/fonts/source/public/sansmathfonts/cmssex7.mf + RELOC/fonts/source/public/sansmathfonts/cmssex8.mf + RELOC/fonts/source/public/sansmathfonts/cmssex9.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi10.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi5.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi6.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi7.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi8.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi9.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib10.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib5.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib6.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib7.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib8.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib9.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy10.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy5.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy6.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy7.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy8.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy9.mf + RELOC/fonts/source/public/sansmathfonts/cmssu10.mf + RELOC/fonts/source/public/sansmathfonts/cmssxicsc10.mf + RELOC/fonts/source/public/sansmathfonts/eczi.mf + RELOC/fonts/source/public/sansmathfonts/eczi0500.mf + RELOC/fonts/source/public/sansmathfonts/eczi0600.mf + RELOC/fonts/source/public/sansmathfonts/eczi0700.mf + RELOC/fonts/source/public/sansmathfonts/eczi0800.mf + RELOC/fonts/source/public/sansmathfonts/eczi0900.mf + RELOC/fonts/source/public/sansmathfonts/eczi1000.mf + RELOC/fonts/source/public/sansmathfonts/eczi1095.mf + RELOC/fonts/source/public/sansmathfonts/eczi1200.mf + RELOC/fonts/source/public/sansmathfonts/eczi1440.mf + RELOC/fonts/source/public/sansmathfonts/eczi1728.mf + RELOC/fonts/source/public/sansmathfonts/eczi2074.mf + RELOC/fonts/source/public/sansmathfonts/eczi2488.mf + RELOC/fonts/source/public/sansmathfonts/eczi2986.mf + RELOC/fonts/source/public/sansmathfonts/eczi3583.mf + RELOC/fonts/source/public/sansmathfonts/eczo.mf + RELOC/fonts/source/public/sansmathfonts/eczo0500.mf + RELOC/fonts/source/public/sansmathfonts/eczo0600.mf + RELOC/fonts/source/public/sansmathfonts/eczo0700.mf + RELOC/fonts/source/public/sansmathfonts/eczo0800.mf + RELOC/fonts/source/public/sansmathfonts/eczo0900.mf + RELOC/fonts/source/public/sansmathfonts/eczo1000.mf + RELOC/fonts/source/public/sansmathfonts/eczo1095.mf + RELOC/fonts/source/public/sansmathfonts/eczo1200.mf + RELOC/fonts/source/public/sansmathfonts/eczo1440.mf + RELOC/fonts/source/public/sansmathfonts/eczo1728.mf + RELOC/fonts/source/public/sansmathfonts/eczo2074.mf + RELOC/fonts/source/public/sansmathfonts/eczo2488.mf + RELOC/fonts/source/public/sansmathfonts/eczo2986.mf + RELOC/fonts/source/public/sansmathfonts/eczo3583.mf + RELOC/fonts/source/public/sansmathfonts/eczx.mf + RELOC/fonts/source/public/sansmathfonts/eczx0500.mf + RELOC/fonts/source/public/sansmathfonts/eczx0600.mf + RELOC/fonts/source/public/sansmathfonts/eczx0700.mf + RELOC/fonts/source/public/sansmathfonts/eczx0800.mf + RELOC/fonts/source/public/sansmathfonts/eczx0900.mf + RELOC/fonts/source/public/sansmathfonts/eczx1000.mf + RELOC/fonts/source/public/sansmathfonts/eczx1095.mf + RELOC/fonts/source/public/sansmathfonts/eczx1200.mf + RELOC/fonts/source/public/sansmathfonts/eczx1440.mf + RELOC/fonts/source/public/sansmathfonts/eczx1728.mf + RELOC/fonts/source/public/sansmathfonts/eczx2074.mf + RELOC/fonts/source/public/sansmathfonts/eczx2488.mf + RELOC/fonts/source/public/sansmathfonts/eczx2986.mf + RELOC/fonts/source/public/sansmathfonts/eczx3583.mf + RELOC/fonts/source/public/sansmathfonts/eczz.mf + RELOC/fonts/source/public/sansmathfonts/eczz0500.mf + RELOC/fonts/source/public/sansmathfonts/eczz0600.mf + RELOC/fonts/source/public/sansmathfonts/eczz0700.mf + RELOC/fonts/source/public/sansmathfonts/eczz0800.mf + RELOC/fonts/source/public/sansmathfonts/eczz0900.mf + RELOC/fonts/source/public/sansmathfonts/eczz1000.mf + RELOC/fonts/source/public/sansmathfonts/eczz1095.mf + RELOC/fonts/source/public/sansmathfonts/eczz1200.mf + RELOC/fonts/source/public/sansmathfonts/eczz1440.mf + RELOC/fonts/source/public/sansmathfonts/eczz1728.mf + RELOC/fonts/source/public/sansmathfonts/eczz2074.mf + RELOC/fonts/source/public/sansmathfonts/eczz2488.mf + RELOC/fonts/source/public/sansmathfonts/eczz2986.mf + RELOC/fonts/source/public/sansmathfonts/eczz3583.mf + RELOC/fonts/source/public/sansmathfonts/sans-IPiXi.mf + RELOC/fonts/source/public/sansmathfonts/sans-IPiXicsc.mf + RELOC/fonts/source/public/sansmathfonts/sans-amsya.mf + RELOC/fonts/source/public/sansmathfonts/sans-amsyb.mf + RELOC/fonts/source/public/sansmathfonts/sans-asymbols.mf + RELOC/fonts/source/public/sansmathfonts/sans-bigdel.mf + RELOC/fonts/source/public/sansmathfonts/sans-bigint.mf + RELOC/fonts/source/public/sansmathfonts/sans-bigop.mf + RELOC/fonts/source/public/sansmathfonts/sans-bsymbols.mf + RELOC/fonts/source/public/sansmathfonts/sans-calu.mf + RELOC/fonts/source/public/sansmathfonts/sans-csc.mf + RELOC/fonts/source/public/sansmathfonts/sans-greekl.mf + RELOC/fonts/source/public/sansmathfonts/sans-greeku.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathex.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathint.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathsl.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathsy.mf + RELOC/fonts/source/public/sansmathfonts/sans-roman.mf + RELOC/fonts/source/public/sansmathfonts/sans-romanu.mf + RELOC/fonts/source/public/sansmathfonts/sans-romms.mf + RELOC/fonts/source/public/sansmathfonts/sans-slantms.mf + RELOC/fonts/source/public/sansmathfonts/sans-sym.mf + RELOC/fonts/source/public/sansmathfonts/sans-symbol.mf + RELOC/fonts/source/public/sansmathfonts/sans-xbbold.mf + RELOC/fonts/source/public/sansmathfonts/sansfontbase.mf + RELOC/fonts/source/public/sansmathfonts/ssesint10.mf + RELOC/fonts/source/public/sansmathfonts/ssesint7.mf + RELOC/fonts/source/public/sansmathfonts/ssesint8.mf + RELOC/fonts/source/public/sansmathfonts/ssesint9.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam10.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam5.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam6.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam7.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam8.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam9.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm10.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm5.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm6.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm7.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm8.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm9.mf + RELOC/fonts/tfm/public/sansmathfonts/cmsmf10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibxcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbxcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbxcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsc8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsc9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsci10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsci8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsci9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssu10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssxicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint10.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint7.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint8.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint9.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam10.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam5.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam6.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam7.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam8.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam9.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm10.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm5.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm6.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm7.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm8.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm9.tfm + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibxcsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixicsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbxcsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsc8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsc9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsci10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsci8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsci9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssu10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxicsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi3583.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo3583.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx3583.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz3583.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint10.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint7.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint8.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint9.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam10.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam5.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam6.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam7.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam8.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam9.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm10.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm5.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm6.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm7.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm8.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm9.pfb + RELOC/fonts/vf/public/sansmathfonts/cmsmf10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbxcsc10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxicsc10.vf + RELOC/tex/latex/sansmathfonts/omlcmssm.fd + RELOC/tex/latex/sansmathfonts/omscmsssy.fd + RELOC/tex/latex/sansmathfonts/omxcmssex.fd + RELOC/tex/latex/sansmathfonts/ot1cmsmf.fd + RELOC/tex/latex/sansmathfonts/ot1xcmss.fd + RELOC/tex/latex/sansmathfonts/sansmathfonts.sty + RELOC/tex/latex/sansmathfonts/t1xcmss.fd + RELOC/tex/latex/sansmathfonts/ucmsmf.fd + RELOC/tex/latex/sansmathfonts/ussesint.fd + RELOC/tex/latex/sansmathfonts/ussmsa.fd + RELOC/tex/latex/sansmathfonts/ussmsb.fd + RELOC/tex/latex/sansmathfonts/uxcmss.fd +catalogue-ctan /fonts/sansmathfonts +catalogue-license lppl1.3c +catalogue-topics font font-cm font-sans font-proportional font-maths font-mf font-type1 font-supp + +name sapthesis +category Package +revision 48365 +shortdesc Typeset theses for Sapienza-University, Rome +relocated 1 +longdesc The class will typeset Ph.D., Master, and Bachelor theses that +longdesc adhere to the publishing guidelines of the Sapienza-University +longdesc of Rome. +containersize 46664 +containerchecksum 92253d6532c6740ae1bd25fdc76b566ea2d488f31e6a24f90e3b55ddc15d471b6c4ce5c4e7ef29c9a416d9810af49b04ab51530e9594c39beb19fffdc066a917 +doccontainersize 203504 +doccontainerchecksum a1d8c40975283a7301c1a842355149f4ae291fd7fd72cc5a44a292f96558b79bae734ec12a78b429c333aadd6f433e9603f7cc75a71eba84d42294461e87767f +docfiles size=95 + RELOC/doc/latex/sapthesis/README details="Readme" + RELOC/doc/latex/sapthesis/examples/Laurea.tex + RELOC/doc/latex/sapthesis/examples/LaureaMagistrale.tex + RELOC/doc/latex/sapthesis/examples/LaureaMagistrale_eng.tex + RELOC/doc/latex/sapthesis/examples/LaureaMagistrale_ita.tex + RELOC/doc/latex/sapthesis/examples/Laurea_ita.tex + RELOC/doc/latex/sapthesis/examples/Master.tex + RELOC/doc/latex/sapthesis/examples/PhD.tex + RELOC/doc/latex/sapthesis/examples/Specialization.tex + RELOC/doc/latex/sapthesis/examples/TFA.tex + RELOC/doc/latex/sapthesis/sapthesis-doc.pdf details="Package documentation" + RELOC/doc/latex/sapthesis/sapthesis-doc.tex + RELOC/doc/latex/sapthesis/sapthesis.layout +runfiles size=30 + RELOC/bibtex/bst/sapthesis/sapthesis.bst + RELOC/tex/latex/sapthesis/sapienza-MLblack-pos.pdf + RELOC/tex/latex/sapthesis/sapienza-MLred-pos.pdf + RELOC/tex/latex/sapthesis/sapthesis.cls +catalogue-ctan /macros/latex/contrib/sapthesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 4.1 + +name sasnrdisplay +category Package +revision 45963 +shortdesc Typeset SAS or R code or output +relocated 1 +longdesc The SASnRdisplay package serves as a front-end to listings, +longdesc which permits statisticians and others to import source code +longdesc and the results of their calculations or simulations into LaTeX +longdesc projects. The package is also capable of overloading the Sweave +longdesc and SASweave packages. +containersize 7312 +containerchecksum 58cac1a9ca8311c570f8261014a4cbc52b2b1386196d9c12de1f7f7ac780a163626a21081005bd4a02f70f95ad0e3873e844b8520104939e8b1116b674104ad9 +doccontainersize 211572 +doccontainerchecksum 5d6024b9bf8fe91cef2e0427f33d9fa8b5fff78e2721afc4884ee83a4ea302a5c7b3bfd38ad8be05ebf5b021885d13938bf9424369a44f5701b29ffb6c015d77 +docfiles size=61 + RELOC/doc/latex/sasnrdisplay/README details="Readme" + RELOC/doc/latex/sasnrdisplay/SASnRdisplay.pdf details="Package documentation" + RELOC/doc/latex/sasnrdisplay/SASnRdisplay.tex +runfiles size=7 + RELOC/tex/latex/sasnrdisplay/SASnRdisplay.cfg + RELOC/tex/latex/sasnrdisplay/SASnRdisplay.sty +catalogue-ctan /macros/latex/contrib/sasnrdisplay +catalogue-license lppl1.3 +catalogue-topics listing statistics +catalogue-version 0.95 + +name sauerj +category Package +revision 15878 +shortdesc A bundle of utilities by Jonathan Sauer +relocated 1 +longdesc The bundle consists of: a tool for collecting text for later +longdesc re-use, a tool for typesetting the "meta-information" within a +longdesc text, a tool for use in constructing macros with multiple +longdesc optional parameters, a package for multiple column parallel +longdesc texts, a tool for processing key-value structured lists, and +longdesc macros for typesetting a number as a German-language string. +containersize 5004 +containerchecksum a4fe5bad7f3d5c895d6166846100cabb1b59e5f37c06d21e451acbaeed0847ab93d9995e70209ab18cc55bf8c78a6c83cbbdd49a45a4cfe511cdad41baf3ddfb +doccontainersize 543096 +doccontainerchecksum 3ec0f5c2132a809b4f2f945255f0806508a3dfa3733119368ba59e4dcf5304ac9876ea5f05912faf926db651d1aaf4a3a1c40744fe7d3a077d8bd9dde2676754 +docfiles size=255 + RELOC/doc/latex/sauerj/README details="Readme" + RELOC/doc/latex/sauerj/collect.pdf + RELOC/doc/latex/sauerj/metainfo.pdf + RELOC/doc/latex/sauerj/optparams.pdf + RELOC/doc/latex/sauerj/parcolumns.pdf + RELOC/doc/latex/sauerj/processkv.pdf + RELOC/doc/latex/sauerj/zahl2string.pdf +srccontainersize 29484 +srccontainerchecksum 05d2adc3b802e3c338dd92818cf7ce4d3bd6964dba8522bf4628bfc2d13939bde47cd0892b4fb629270d5e9104b9577fe6e3ba6eb71ca60a07f5e6441b0f572b +srcfiles size=41 + RELOC/source/latex/sauerj/collect.dtx + RELOC/source/latex/sauerj/collect.ins + RELOC/source/latex/sauerj/metainfo.dtx + RELOC/source/latex/sauerj/metainfo.ins + RELOC/source/latex/sauerj/optparams.dtx + RELOC/source/latex/sauerj/optparams.ins + RELOC/source/latex/sauerj/parcolumns.dtx + RELOC/source/latex/sauerj/parcolumns.ins + RELOC/source/latex/sauerj/processkv.dtx + RELOC/source/latex/sauerj/processkv.ins + RELOC/source/latex/sauerj/zahl2string.dtx + RELOC/source/latex/sauerj/zahl2string.ins +runfiles size=8 + RELOC/tex/latex/sauerj/collect.sty + RELOC/tex/latex/sauerj/metainfo.sty + RELOC/tex/latex/sauerj/optparams.sty + RELOC/tex/latex/sauerj/parcolumns.sty + RELOC/tex/latex/sauerj/processkv.sty + RELOC/tex/latex/sauerj/zahl2string.sty +catalogue-ctan /macros/latex/contrib/sauerj +catalogue-license lppl +catalogue-topics collection + +name sauter +category Package +revision 13293 +shortdesc Wide range of design sizes for CM fonts +relocated 1 +longdesc Extensions, originally to the CM fonts, providing a +longdesc parameterization scheme to build Metafont fonts at true design +longdesc sizes, for a large range of sizes. The scheme has now been +longdesc extended to a range of other fonts, including the AMS fonts, +longdesc bbm, bbold, rsfs and wasy fonts. +containersize 12500 +containerchecksum 17fc32a3dae358be5215301abe13d9e865ff9f52f58cdc849d5fc80aeb1a79723d0a39282383086282fbddcaeda0fe586cd3043edd582e0addc0b223bc3ee756 +runfiles size=61 + RELOC/fonts/source/public/sauter/b-cmb.mf + RELOC/fonts/source/public/sauter/b-cmbsy.mf + RELOC/fonts/source/public/sauter/b-cmbx.mf + RELOC/fonts/source/public/sauter/b-cmbxsl.mf + RELOC/fonts/source/public/sauter/b-cmbxti.mf + RELOC/fonts/source/public/sauter/b-cmcsc.mf + RELOC/fonts/source/public/sauter/b-cmdunh.mf + RELOC/fonts/source/public/sauter/b-cmex.mf + RELOC/fonts/source/public/sauter/b-cmff.mf + RELOC/fonts/source/public/sauter/b-cmfi.mf + RELOC/fonts/source/public/sauter/b-cmfib.mf + RELOC/fonts/source/public/sauter/b-cminch.mf + RELOC/fonts/source/public/sauter/b-cmitt.mf + RELOC/fonts/source/public/sauter/b-cmmi.mf + RELOC/fonts/source/public/sauter/b-cmmib.mf + RELOC/fonts/source/public/sauter/b-cmr.mf + RELOC/fonts/source/public/sauter/b-cmsl.mf + RELOC/fonts/source/public/sauter/b-cmsltt.mf + RELOC/fonts/source/public/sauter/b-cmss.mf + RELOC/fonts/source/public/sauter/b-cmssbx.mf + RELOC/fonts/source/public/sauter/b-cmssdc.mf + RELOC/fonts/source/public/sauter/b-cmssi.mf + RELOC/fonts/source/public/sauter/b-cmssq.mf + RELOC/fonts/source/public/sauter/b-cmssqi.mf + RELOC/fonts/source/public/sauter/b-cmssxi.mf + RELOC/fonts/source/public/sauter/b-cmsy.mf + RELOC/fonts/source/public/sauter/b-cmtcsc.mf + RELOC/fonts/source/public/sauter/b-cmtex.mf + RELOC/fonts/source/public/sauter/b-cmti.mf + RELOC/fonts/source/public/sauter/b-cmtt.mf + RELOC/fonts/source/public/sauter/b-cmu.mf + RELOC/fonts/source/public/sauter/b-cmvtt.mf + RELOC/fonts/source/public/sauter/c-bmath.mf + RELOC/fonts/source/public/sauter/c-cmbx.mf + RELOC/fonts/source/public/sauter/c-cmex.mf + RELOC/fonts/source/public/sauter/c-cmff.mf + RELOC/fonts/source/public/sauter/c-cmmi.mf + RELOC/fonts/source/public/sauter/c-cmr.mf + RELOC/fonts/source/public/sauter/c-cmss.mf + RELOC/fonts/source/public/sauter/c-cmssbx.mf + RELOC/fonts/source/public/sauter/c-cmssq.mf + RELOC/fonts/source/public/sauter/c-cmsy.mf + RELOC/fonts/source/public/sauter/c-cmti.mf + RELOC/fonts/source/public/sauter/c-cmtt.mf + RELOC/fonts/source/public/sauter/c-sigma.mf +catalogue-ctan /fonts/cm/sauter +catalogue-license gpl +catalogue-topics font font-mf +catalogue-version 2.4 + +name sauterfonts +category Package +revision 15878 +shortdesc Use Sauter's fonts in LaTeX +relocated 1 +longdesc The package provides font definition files (plus a replacement +longdesc for the package exscale) to access many of the fonts in +longdesc Sauter's collection. These fonts are available in all point +longdesc sizes and look nicer for such "intermediate" document sizes as +longdesc 11pt. Also included is the package sbbm, an alternative to +longdesc access the bbm fonts. +containersize 3968 +containerchecksum 4d7e491a7a6a22fd6ad8f407cbc8c041434466850e2e5efd46897843281cb71e046fc6cb849cb091cbf05191c45c52a6cb3e0d806eccb9133fddda9c8f305969 +doccontainersize 624 +doccontainerchecksum 16647b89752d1871c798f80be91bacf375ae9a4d5199ef7417edb4ff019d7aae548fbbbbde47f84cd5c7c36ec4988ad1df82735f4aeaeb40180b07a86dceb5a7 +docfiles size=1 + RELOC/doc/latex/sauterfonts/README details="Readme" +srccontainersize 4908 +srccontainerchecksum d8379fb3c2dfc5dcd9fc5c22101855a27ef5de3ac377f1e6a56bfd397888c5f7f94dd37c24c6625a9dc40f15160721c468b5a5bbe8a35f98f983755889e250d8 +srcfiles size=6 + RELOC/source/latex/sauterfonts/sauterfonts.fdd + RELOC/source/latex/sauterfonts/sauterfonts.ins +runfiles size=30 + RELOC/tex/latex/sauterfonts/sbbm.sty + RELOC/tex/latex/sauterfonts/sexscale.sty + RELOC/tex/latex/sauterfonts/somlcmm.fd + RELOC/tex/latex/sauterfonts/somlcmr.fd + RELOC/tex/latex/sauterfonts/somscmr.fd + RELOC/tex/latex/sauterfonts/somscmsy.fd + RELOC/tex/latex/sauterfonts/somxcmex.fd + RELOC/tex/latex/sauterfonts/sot1cmdh.fd + RELOC/tex/latex/sauterfonts/sot1cmfib.fd + RELOC/tex/latex/sauterfonts/sot1cmfr.fd + RELOC/tex/latex/sauterfonts/sot1cmr.fd + RELOC/tex/latex/sauterfonts/sot1cmss.fd + RELOC/tex/latex/sauterfonts/sot1cmtt.fd + RELOC/tex/latex/sauterfonts/sot1cmvtt.fd + RELOC/tex/latex/sauterfonts/subbm.fd + RELOC/tex/latex/sauterfonts/subbmdh.fd + RELOC/tex/latex/sauterfonts/subbmfib.fd + RELOC/tex/latex/sauterfonts/subbmss.fd + RELOC/tex/latex/sauterfonts/subbmtt.fd + RELOC/tex/latex/sauterfonts/subbmvtt.fd + RELOC/tex/latex/sauterfonts/subbold.fd + RELOC/tex/latex/sauterfonts/sucmr.fd + RELOC/tex/latex/sauterfonts/sucmss.fd + RELOC/tex/latex/sauterfonts/sucmtt.fd + RELOC/tex/latex/sauterfonts/sulasy.fd + RELOC/tex/latex/sauterfonts/sumsa.fd + RELOC/tex/latex/sauterfonts/sumsb.fd + RELOC/tex/latex/sauterfonts/sursfs.fd + RELOC/tex/latex/sauterfonts/sustmry.fd + RELOC/tex/latex/sauterfonts/suwasy.fd +catalogue-ctan /macros/latex/contrib/sauterfonts +catalogue-license gpl +catalogue-topics font-supp + +name savefnmark +category Package +revision 15878 +shortdesc Save name of the footnote mark for reuse +relocated 1 +longdesc Sometimes the same footnote applies to more than one location +longdesc in a table. With this package the mark of a footnote can be +longdesc saved into a name, and re-used subsequently without creating +longdesc another footnote at the bottom. +containersize 1380 +containerchecksum 2d39c1246bc9c5c28222a6ce96b93bc0c1e93c3155f68f44843b5560b548191ad3b608f24b5c444b834fc441238a0d2174a9a8ec006f01b160f77159decfeeb0 +doccontainersize 173704 +doccontainerchecksum 9ca251e6d17373e5d6f308d2e75896aaa3e44d0f5883be65f7629f922f0eda296c963530e8fc1c80073e0706c2c72f97d062cd731481654c0564cdb695eaa86a +docfiles size=46 + RELOC/doc/latex/savefnmark/savefnmark.pdf details="Package documentation" +srccontainersize 3980 +srccontainerchecksum 984807d4efb4b24445dec6742e0328274527ef3c7ddb3df57a5d941531d1e634b5d672c9a510b62f7053d69c10668c311457b3a1065e1775f964e9a74ad027a2 +srcfiles size=5 + RELOC/source/latex/savefnmark/savefnmark.drv + RELOC/source/latex/savefnmark/savefnmark.dtx + RELOC/source/latex/savefnmark/savefnmark.ins +runfiles size=1 + RELOC/tex/latex/savefnmark/savefnmark.sty +catalogue-also fixfoot +catalogue-ctan /macros/latex/contrib/savefnmark +catalogue-license gpl +catalogue-topics footnote +catalogue-version 1.0 + +name savesym +category Package +revision 31565 +shortdesc Redefine symbols where names conflict +relocated 1 +longdesc There are a number of symbols (e.g., \Square) that are defined +longdesc by several packages. In order to typeset all the variants in a +longdesc document, we have to give the glyph a unique name. To do that, +longdesc we define \savesymbol{XXX}, which renames a symbol from \XXX to +longdesc \origXXX, and \restoresymbols{yyy}{XXX}, which renames \origXXX +longdesc back to \XXX and defines a new command, \yyyXXX, which +longdesc corresponds to the most recently loaded version of \XXX. +containersize 1356 +containerchecksum 212ea18ebb424f9b64ca9c75a783dee9ceebac09adcd6ff6c721d90796bf4121aa8710935529451e6f9a4de9c3cb5910b6c07d6fd6b7093c4b9904348f43a1fb +runfiles size=1 + RELOC/tex/latex/savesym/savesym.sty +catalogue-ctan /macros/latex/contrib/savesym/savesym.sty +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.2 + +name savetrees +category Package +revision 40525 +shortdesc Optimise the use of each page of a LaTeX document +relocated 1 +longdesc The goal of the savetrees package is to pack as much text as +longdesc possible onto each page of a LaTeX document. Admittedly, this +longdesc makes the document far less attractive. Nevertheless, savetrees +longdesc is a simple way to save paper when printing draft copies of a +longdesc document. It can also be useful when trying to meet a tight +longdesc page-length requirement for a conference or journal submission. +longdesc Most of the package options cover specific modifications to +longdesc typesetting rules, but there are also options subtle, moderate +longdesc and extreme options for the "broad brush" approach. +containersize 8612 +containerchecksum f31ac72f12ecbe2ab05bde14de907707988d6b9ba20414543b9176b71d2a0d5358a34348177857c56b961301678b612ee6f767d1b9cb671b9bab344bb8230e6d +doccontainersize 489504 +doccontainerchecksum 3e5cfb62d4020d32d9bab01b3df2ea1cb485240aea5eda3541d29cbe38487ed8b242a1eb2b9d15d08bd742390a8d8a25b584e110145dab330580e69e2287f181 +docfiles size=131 + RELOC/doc/latex/savetrees/README details="README" + RELOC/doc/latex/savetrees/savetrees.pdf details="Package documentation" + RELOC/doc/latex/savetrees/st-sample2e.pdf details="Package showcase" +srccontainersize 25844 +srccontainerchecksum 2dcc671cae73824a2e4cf10682f0ad7d6236f5e856267663f14864804587e1394fe12de5e3e54e5a64abb798c16014fab07a462584eac3a561f971496c58b5b0 +srcfiles size=28 + RELOC/source/latex/savetrees/savetrees.dtx + RELOC/source/latex/savetrees/savetrees.ins +runfiles size=12 + RELOC/bibtex/bst/savetrees/savetrees.bst + RELOC/tex/latex/savetrees/savetrees.bbx + RELOC/tex/latex/savetrees/savetrees.cbx + RELOC/tex/latex/savetrees/savetrees.sty +catalogue-ctan /macros/latex/contrib/savetrees +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 2.4 + +name scale +category Package +revision 15878 +shortdesc Scale document by sqrt(2) or magstep(2) +relocated 1 +longdesc A package to scale a document by sqrt(2) (or by \magstep{2}). +longdesc This is useful if you are preparing a document on, for example, +longdesc A5 paper and want to print on A4 paper to achieve a better +longdesc resolution. +containersize 1836 +containerchecksum 2d090a08c8f7d5d9b332f390b29b16e911f339071579cc09b954b2978df4b410ff3c47afd6b8bea0ce7eabac551b94f8630fdb7aaa4ef39f793748925157a19d +doccontainersize 7156 +doccontainerchecksum aa41f6de8baee992b123ed40086dd5d0aff63c187858502c66056a52f3b8bfb12a5b7dd15ae9279a224e9d67d717f3927e97f5879ab09ded9e0960a3eb910a90 +docfiles size=6 + RELOC/doc/latex/scale/COPYING + RELOC/doc/latex/scale/README details="Readme" +srccontainersize 3568 +srccontainerchecksum 387efffefb6774f50165a0c3242005a52418c5c9ac3ff6d1b87f696eef7af8a57a19a4efe6066e7939fcd76ff8ff9ce3ab4941d30d36c6bf30beeea1a95d4eac +srcfiles size=3 + RELOC/source/latex/scale/scale.dtx + RELOC/source/latex/scale/scale.ins +runfiles size=1 + RELOC/tex/latex/scale/scale.sty +catalogue-ctan /macros/latex/contrib/scale +catalogue-license gpl +catalogue-topics geometry +catalogue-version 1.1.2 + +name scalebar +category Package +revision 15878 +shortdesc Create scalebars for maps, diagrams or photos +relocated 1 +longdesc This is a small package to create scalebars for maps, diagrams +longdesc or photos. It was designed for use with cave maps but can be +longdesc used for anything from showing a scalebar in kilometres for +longdesc topographic maps to a scalebar in micrometres for an electron +longdesc microscope image. +containersize 1560 +containerchecksum 1e367f025943a56b6592238e2961f967beb1d5ff5b68ee83565b3926a392214557237e482ba0b174ddb2e6861e4690e636edef1a5fe0473c465a0deaa1e1bd0a +doccontainersize 49036 +doccontainerchecksum cada3793771a28c3ce30439c782d245b6b21cfa426d2268e7e072a8559a81692b6c4e9e26a8bd452fe5882f39e55fd061a1af4e9be362bdcdb1f6ff6bba781e2 +docfiles size=17 + RELOC/doc/latex/scalebar/README details="Package README" + RELOC/doc/latex/scalebar/scalebar_examples.pdf details="Package usage guide and examples" + RELOC/doc/latex/scalebar/scalebar_examples.tex +srccontainersize 6640 +srccontainerchecksum f6f3e8d007ab3efd6bf1d45b9e3af1fa846637a8b66226f9ae24d64b3be9938b547bc3879a33f44d465f8f62494d1f55141c713b18161ec4006ed76eaa52169e +srcfiles size=6 + RELOC/source/latex/scalebar/scalebar.dtx + RELOC/source/latex/scalebar/scalebar.ins +runfiles size=1 + RELOC/tex/latex/scalebar/scalebar.sty +catalogue-ctan /macros/latex/contrib/scalebar +catalogue-license lppl +catalogue-topics misc-support +catalogue-version 1.0 + +name scalerel +category Package +revision 42809 +shortdesc Constrained scaling and stretching of objects +relocated 1 +longdesc The package provides four commands for vertically scaling and +longdesc stretching objects. Its primary function is the ability to +longdesc scale/stretch and shift one object to conform to the size of a +longdesc specified second object. This feature can be useful in both +longdesc equations and schematic diagrams. Additionally, the scaling and +longdesc stretching commands offer constraints on maximum width and/or +longdesc minimum aspect ratio, which are often used to preserve +longdesc legibility or for the sake of general appearance. +containersize 3052 +containerchecksum 0b0a996bbed0fc185714f84e32c76e5a9277137d3d8dcc6b12b516afa97f3c80b2684c3c22af8717bb3e6acca267a3862c1244df7cb71eca61b10074fe1c3a89 +doccontainersize 330228 +doccontainerchecksum 1533997bed3ce5499a1285a6db03be20f28fe70b1ebbac5d117e692c53068ecbe7f8082cd5f93c753bbfc1eb4fb3b78372c7b14f5e2c636398f37dbc17972d97 +docfiles size=94 + RELOC/doc/latex/scalerel/README details="README" + RELOC/doc/latex/scalerel/scalerel.pdf details="Package documentation" + RELOC/doc/latex/scalerel/scalerel.tex +runfiles size=2 + RELOC/tex/latex/scalerel/scalerel.sty +catalogue-ctan /macros/latex/contrib/scalerel +catalogue-license lppl1.3 +catalogue-topics graphics-manip +catalogue-version 1.8 + +name scanpages +category Package +revision 42633 +shortdesc Support importing and embellishing scanned documents +relocated 1 +longdesc The bundle provides support for the process of creating +longdesc documents based on pre-TeX-era material that is available as +longdesc scanned pages, only. +execute addMap scanpages.map +containersize 4580 +containerchecksum e13f7849b2b1cbe9fc60fc2e3d3bb7f2879644c282e8664a5ec46b3143f4ac7fbd21f2976183ad410bf778a181d5063b23832734f0ff43a617c9020b16587fb6 +doccontainersize 133820 +doccontainerchecksum 34eb2549a4d809602cf69eb562fd3c03c8d3fc4063820ce41b52d733228a6a83ace819e5bb82e77cd3be3cb8093e7997377fadeded652d20509eecde458d9b78 +docfiles size=42 + RELOC/doc/latex/scanpages/README details="Readme" + RELOC/doc/latex/scanpages/pic1.pdf + RELOC/doc/latex/scanpages/pic2.pdf + RELOC/doc/latex/scanpages/replicate.plist + RELOC/doc/latex/scanpages/replicate.py + RELOC/doc/latex/scanpages/scanpages-doc.pdf details="Package documentation" + RELOC/doc/latex/scanpages/scanpages-doc.tex +runfiles size=6 + RELOC/fonts/map/dvips/scanpages/scanpages.map + RELOC/fonts/tfm/public/scanpages/scanwipe.tfm + RELOC/fonts/type1/public/scanpages/scanwipe.pfb + RELOC/tex/latex/scanpages/scanpages.sty + RELOC/tex/latex/scanpages/uscanwipe.fd +catalogue-ctan /macros/latex/contrib/scanpages +catalogue-license lppl1.3 +catalogue-topics misc-support +catalogue-version 1.05a + +name schedule +category Package +revision 51805 +shortdesc Weekly schedules +relocated 1 +longdesc Automatically format weekly schedules using LaTeX's picture +longdesc environment. It requires the packages calc and color. Its main +longdesc feature is the accuracy with which appointments are +longdesc represented: boxes drawn to represent a particular appointment +longdesc are accurate to the minute -- i.e., a 31-minute appointment +longdesc will have a box 1/30th longer than a 30-minute appointment. A +longdesc number of features are included to allow the user to customize +longdesc the output. +containersize 4656 +containerchecksum c7d58c5e4ecdef504e1d32934ccf2c71cd36b073af4031ee83b0d0a3b3393a40acc26dd4e057f426561903d0d08297bb2a9849cad2cc5a11b02e15a3983f0e1b +doccontainersize 243892 +doccontainerchecksum ca5f9e2b27f0b01531e82e64e99f816aaa52f5f340bc2fdefac367918d50c564cd178709428554a908951c117dbcf3d24753f84d864fcdc546129c3de25d7e77 +docfiles size=61 + RELOC/doc/latex/schedule/README.md details="Readme" + RELOC/doc/latex/schedule/schedule.pdf details="Package documentation" +srccontainersize 8040 +srccontainerchecksum e910feb417f9d1606b323a995026f3d3275523b4fcc53dd94d44c10b375ba13d322f32191dfec36b9606174240ec77de1b024c1f8ac14b94224d34e2aa0cdabc +srcfiles size=9 + RELOC/source/latex/schedule/schedule.dtx + RELOC/source/latex/schedule/schedule.ins +runfiles size=6 + RELOC/tex/latex/schedule/schedule.sty +catalogue-ctan /macros/latex/contrib/schedule +catalogue-license lppl1.3c +catalogue-topics planning timetable +catalogue-version 1.20 + +name schemabloc +category Package +revision 58212 +shortdesc Draw block diagrams, using TikZ +relocated 1 +longdesc The package provides a set of macros for constructing block +longdesc diagrams, using TikZ. (The blox package is an "English +longdesc translation" of this package.) +containersize 2304 +containerchecksum 8a6f093a5c6874c77d22a9e96e36593f00e382ac0679ddf33cfc62df912e82cea4bbf697286b7fd77d25dfd5b19cb37baf95fc1f8092bcd348a4da88a4501cb4 +doccontainersize 152312 +doccontainerchecksum fb70879aee58fc01d5b30903f2e65b49789d011d18987471a8cbd5e46d9b57cd01b813e5a90b686819e1c1e912cb37b2c9487518705d4f1bfb58b1e950502dea +docfiles size=56 + RELOC/doc/latex/schemabloc/README details="Readme" + RELOC/doc/latex/schemabloc/schemabloc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/schemabloc/schemabloc.tex +runfiles size=3 + RELOC/tex/latex/schemabloc/schemabloc.sty +catalogue-also blox +catalogue-ctan /graphics/pgf/contrib/schemabloc +catalogue-license lppl +catalogue-topics graphics diagram-block pgf-tikz +catalogue-version 1.5 + +name schemata +category Package +revision 58020 +shortdesc Print topical diagrams +relocated 1 +longdesc The package facilitates the creation of "topical schemata", +longdesc i.e. outlines that use braces (or facsimiles thereof) to +longdesc illustrate the breakdown of concepts and categories in +longdesc Scholastic thought from late medieval and early modern periods. +containersize 2216 +containerchecksum d3c6418c699bb624287d7de3d64695e721fba3e44eb99df02ef58c02c7478f12ca329153295e076a126748239a483e941af3e8d9ade86e3f15a134424c6f4e5e +doccontainersize 818684 +doccontainerchecksum 9f71ea989942daea92cce48f3a013fc1eca84ef4a36856e28f280f04efd21a0dd3cc5799f9308fb8fafe803c23106544ea85e2d094bf21f178158e30eab35b06 +docfiles size=262 + RELOC/doc/generic/schemata/README.md details="Readme" + RELOC/doc/generic/schemata/schemata.eps + RELOC/doc/generic/schemata/schemata.pdf details="Package documentation" + RELOC/doc/generic/schemata/schematest.tex +srccontainersize 22824 +srccontainerchecksum 55c041e627470133a7374e0a1f00079f5de58949a3c0e8d3c3c78857e7bac3d5afd33304d57f3c70dc98d682e4eec3f00e3624aa22a1310b56269b724df6c95b +srcfiles size=29 + RELOC/source/generic/schemata/Makefile + RELOC/source/generic/schemata/schemata.dtx +runfiles size=3 + RELOC/tex/generic/schemata/schemata.sty +catalogue-ctan /macros/generic/schemata +catalogue-license lppl1.3 +catalogue-topics philosophy theology diagram macro-gen +catalogue-version 1.4 + +name scheme-basic +category Scheme +revision 54191 +shortdesc basic scheme (plain and latex) +relocated 1 +longdesc This is the basic TeX Live scheme: it is a small set of files +longdesc sufficient to typeset plain TeX or LaTeX documents in +longdesc PostScript or PDF, using the Computer Modern fonts. This scheme +longdesc corresponds to collection-basic and collection-latex. +depend collection-basic +depend collection-latex +containersize 440 +containerchecksum 027a1cd0dd4fc5da2427864bb49fc885a00bec6e8a74da24ce9cd781c69bf4288ddfc3c790307ed48052a8fc00c1989d3939b253da6638370adbb1c43348749b + +name scheme-context +category Scheme +revision 54074 +shortdesc ConTeXt scheme +relocated 1 +longdesc This is the TeX Live scheme for installing ConTeXt. +depend Asana-Math +depend antt +depend ccicons +depend collection-context +depend collection-metapost +depend dejavu +depend eulervm +depend gentium-tug +depend iwona +depend kurier +depend ly1 +depend manfnt-font +depend marvosym +depend mflogo-font +depend poltawski +depend pxfonts +depend tex-gyre +depend tex-gyre-math +depend txfonts +depend wasy +depend xits +containersize 440 +containerchecksum 2bc94138102c5c4926b4199e09afc0ae66ed32de5030ac9f64290b8b98ce1c39a2197cbc3361d4eb56614552af21c0a67ef9f3dd0af0767f4e1f91d6023e5206 + +name scheme-full +category Scheme +revision 54074 +shortdesc full scheme (everything) +relocated 1 +longdesc This is the full TeX Live scheme: it installs everything +longdesc available. +depend collection-basic +depend collection-bibtexextra +depend collection-binextra +depend collection-context +depend collection-fontsextra +depend collection-fontsrecommended +depend collection-fontutils +depend collection-formatsextra +depend collection-games +depend collection-humanities +depend collection-langarabic +depend collection-langchinese +depend collection-langcjk +depend collection-langcyrillic +depend collection-langczechslovak +depend collection-langenglish +depend collection-langeuropean +depend collection-langfrench +depend collection-langgerman +depend collection-langgreek +depend collection-langitalian +depend collection-langjapanese +depend collection-langkorean +depend collection-langother +depend collection-langpolish +depend collection-langportuguese +depend collection-langspanish +depend collection-latex +depend collection-latexextra +depend collection-latexrecommended +depend collection-luatex +depend collection-mathscience +depend collection-metapost +depend collection-music +depend collection-pictures +depend collection-plaingeneric +depend collection-pstricks +depend collection-publishers +depend collection-texworks +depend collection-xetex +containersize 564 +containerchecksum bda507842fde5239d7f45169ff78690bd96066d1834cdcc6a0dcbd3e3439308c694ce4be6a91d1f155ebe5e29d46173fe13c83bcd4356969da95fb7cca1b4e38 + +name scheme-gust +category Scheme +revision 54074 +shortdesc GUST TeX Live scheme +relocated 1 +longdesc This is the GUST TeX Live scheme: it is a set of files +longdesc sufficient to typeset Polish plain TeX, LaTeX and ConTeXt +longdesc documents in PostScript or PDF. +depend Type1fonts +depend amslatex-primer +depend amstex +depend antt +depend bibtex8 +depend collection-basic +depend collection-context +depend collection-fontsrecommended +depend collection-fontutils +depend collection-langpolish +depend collection-latex +depend collection-latexrecommended +depend collection-metapost +depend collection-plaingeneric +depend collection-texworks +depend collection-xetex +depend comment +depend comprehensive +depend concrete +depend cyklop +depend dvidvi +depend dviljk +depend gustprog +depend impatient +depend iwona +depend metafont-beginners +depend metapost-examples +depend poltawski +depend seetexk +depend seminar +depend tds +depend tex4ht +depend texdoc +containersize 596 +containerchecksum 57928b06ade27a28ae171e90cbd60c315393adb38cfac93f61f4950cc344340f0837bad65a04b2a3bef08e9c5773509caa1302eb8c299e1327fd3a418e5f0a36 + +name scheme-infraonly +category Scheme +revision 54191 +shortdesc infrastructure-only scheme (no TeX at all) +relocated 1 +longdesc This is the TeX Live scheme for infrastructure only, with no +longdesc TeX engines at all. It is useful for automated testing, where +longdesc the actual programs and packages to be tested are installed +longdesc separately afterwards, with tlmgr install. +depend hyphen-base +depend kpathsea +depend texlive-scripts +depend texlive.infra +containersize 464 +containerchecksum f3e449bf0b34deb9ae776685f386245c4ca9644f2175ae51e9c62faa00e3cfac30fa2aa07fbd83b15b21d487ca368c09a18742d2434047783350698ced3b20b9 + +name scheme-medium +category Scheme +revision 54074 +shortdesc medium scheme (small + more packages and languages) +relocated 1 +longdesc This is the medium TeX Live collection: it contains plain TeX, +longdesc LaTeX, many recommended packages, and support for most European +longdesc languages. +depend collection-basic +depend collection-binextra +depend collection-context +depend collection-fontsrecommended +depend collection-fontutils +depend collection-langczechslovak +depend collection-langenglish +depend collection-langeuropean +depend collection-langfrench +depend collection-langgerman +depend collection-langitalian +depend collection-langpolish +depend collection-langportuguese +depend collection-langspanish +depend collection-latex +depend collection-latexrecommended +depend collection-luatex +depend collection-mathscience +depend collection-metapost +depend collection-plaingeneric +depend collection-texworks +depend collection-xetex +containersize 532 +containerchecksum fdfbbd8fc370bfb0ea35ed9f3137b62eddd3e54777963668b3dfe7af6328a92f37c74e190e7f506ec27a3efbe44458941360599a4061a2765d0072af56808d60 + +name scheme-minimal +category Scheme +revision 54191 +shortdesc minimal scheme (plain only) +relocated 1 +longdesc This is the minimal TeX Live scheme, with support for only +longdesc plain TeX. (No LaTeX macros.) LuaTeX is included because Lua +longdesc scripts are used in TeX Live infrastructure. This scheme +longdesc corresponds exactly to collection-basic. +depend collection-basic +containersize 424 +containerchecksum ac177b74d9d5b9fa599831275a4084a0eeb7b764a6ed837d8f14f8391f0e6c0757f7b2d4a8e71868e0c8ea4d497f29d78c4c73fb9e6311dbecf29626516bbf82 + +name scheme-small +category Scheme +revision 54191 +shortdesc small scheme (basic + xetex, metapost, a few languages) +relocated 1 +longdesc This is a small TeX Live scheme, corresponding to MacTeX's +longdesc BasicTeX variant. It adds XeTeX, MetaPost, various +longdesc hyphenations, and some recommended packages to scheme-basic. +depend babel-basque +depend babel-czech +depend babel-danish +depend babel-dutch +depend babel-english +depend babel-finnish +depend babel-french +depend babel-german +depend babel-hungarian +depend babel-italian +depend babel-norsk +depend babel-polish +depend babel-portuges +depend babel-spanish +depend babel-swedish +depend collection-basic +depend collection-latex +depend collection-latexrecommended +depend collection-metapost +depend collection-xetex +depend ec +depend eurosym +depend hyphen-basque +depend hyphen-czech +depend hyphen-danish +depend hyphen-dutch +depend hyphen-english +depend hyphen-finnish +depend hyphen-french +depend hyphen-german +depend hyphen-hungarian +depend hyphen-italian +depend hyphen-norwegian +depend hyphen-polish +depend hyphen-portuguese +depend hyphen-spanish +depend hyphen-swedish +depend lm +depend lualibs +depend luaotfload +depend luatexbase +depend revtex +depend synctex +depend times +depend tipa +depend ulem +depend upquote +depend zapfding +containersize 636 +containerchecksum 6267151dd73cb8b751ad47b79f9c698b465ad5ae5494d462cf5b3b4e7446a3c014a715381bc6a79eaacfd1ba6efb37c6c1bafbd5e1f82e8db751bbaa9a943013 + +name scheme-tetex +category Scheme +revision 54074 +shortdesc teTeX scheme (more than medium, but nowhere near full) +relocated 1 +longdesc TeX Live scheme nearly equivalent to the teTeX distribution +longdesc that was maintained by Thomas Esser. +depend SIunits +depend acronym +depend amslatex-primer +depend bbm +depend bbm-macros +depend bbold +depend bibtex8 +depend cmbright +depend collection-basic +depend collection-context +depend collection-fontsrecommended +depend collection-fontutils +depend collection-formatsextra +depend collection-langcjk +depend collection-langcyrillic +depend collection-langczechslovak +depend collection-langenglish +depend collection-langeuropean +depend collection-langfrench +depend collection-langgerman +depend collection-langgreek +depend collection-langitalian +depend collection-langother +depend collection-langpolish +depend collection-langportuguese +depend collection-langspanish +depend collection-latex +depend collection-latexrecommended +depend collection-mathscience +depend collection-metapost +depend collection-pictures +depend collection-plaingeneric +depend collection-pstricks +depend ctie +depend cweb +depend detex +depend dtl +depend dvi2tty +depend dvicopy +depend dvidvi +depend dviljk +depend eplain +depend eulervm +depend gentle +depend lshort-english +depend mltex +depend multirow +depend nomencl +depend patgen +depend pst-pdf +depend rsfs +depend seetexk +depend subfigure +depend supertabular +depend tamethebeast +depend tds +depend tex-refs +depend tie +depend web +depend xpdfopen +containersize 736 +containerchecksum 44bc102582ef5f6e0499efde6d3190b86988def41aa062a6239075b9371f6c9deef91e4f2bb299b3cc831dbcee9289fafd4c1c6d2a55a747d340fb580ae918e3 + +name scholax +category Package +revision 58733 +shortdesc Extension of TeXGyreSchola (New Century Schoolbook) with math support +relocated 1 +longdesc This package contains an extension of TeXGyreSchola with +longdesc extensive superiors, inferior figures, upright punctuation +longdesc glyphs added to the Italic face for a theorem font, plus +longdesc slanted and bold slanted faces. Math support is provided by one +longdesc of two options to newtxmath, one of which uses an adaptation of +longdesc the fourier math Greek letters. +execute addMap ScholaX.map +containersize 1884268 +containerchecksum 67818d34da2803257ae4de877eeb696d34eb887bd6ab54613793f4f1737ababa1fdb657162588c6ec353bf9604113403fbeae2203bf662b888f5197032e57924 +doccontainersize 334084 +doccontainerchecksum fb9cf815fb45cb513f8322597e1deefefc77c1829d2ae2f8cffb52a225bfb6fe9712be523ed861aca096bbe80317979dffcdfce87970b66fb403343a5e5e43af +docfiles size=182 + RELOC/doc/fonts/scholax/README details="Readme" + RELOC/doc/fonts/scholax/scholax-doc.pdf details="Package documentation" + RELOC/doc/fonts/scholax/scholax-doc.tex +runfiles size=1914 + RELOC/fonts/afm/public/scholax/NCXFourierBMI.afm + RELOC/fonts/afm/public/scholax/NCXFourierBMR.afm + RELOC/fonts/afm/public/scholax/NCXFourierMI.afm + RELOC/fonts/afm/public/scholax/NCXFourierMR.afm + RELOC/fonts/afm/public/scholax/NCXMathBMI.afm + RELOC/fonts/afm/public/scholax/NCXMathBRM.afm + RELOC/fonts/afm/public/scholax/NCXMathMI.afm + RELOC/fonts/afm/public/scholax/NCXMathRM.afm + RELOC/fonts/afm/public/scholax/TeXGyreScholaX-Bold.afm + RELOC/fonts/afm/public/scholax/TeXGyreScholaX-BoldItalic.afm + RELOC/fonts/afm/public/scholax/TeXGyreScholaX-BoldSlanted.afm + RELOC/fonts/afm/public/scholax/TeXGyreScholaX-Italic.afm + RELOC/fonts/afm/public/scholax/TeXGyreScholaX-Regular.afm + RELOC/fonts/afm/public/scholax/TeXGyreScholaX-Slanted.afm + RELOC/fonts/enc/dvips/scholax/zcs-ecth-osf.enc + RELOC/fonts/enc/dvips/scholax/zcs-ecth-tlf.enc + RELOC/fonts/enc/dvips/scholax/zcs-ot1-th-osf.enc + RELOC/fonts/enc/dvips/scholax/zcs-ot1-th-tlf.enc + RELOC/fonts/enc/dvips/scholax/zcs-texnansi-th-osf.enc + RELOC/fonts/enc/dvips/scholax/zcs-texnansi-th-tlf.enc + RELOC/fonts/enc/dvips/scholax/zcs_2p3dps.enc + RELOC/fonts/enc/dvips/scholax/zcs_2ulndi.enc + RELOC/fonts/enc/dvips/scholax/zcs_2zpiql.enc + RELOC/fonts/enc/dvips/scholax/zcs_3uk2yo.enc + RELOC/fonts/enc/dvips/scholax/zcs_72zhkj.enc + RELOC/fonts/enc/dvips/scholax/zcs_7xuij4.enc + RELOC/fonts/enc/dvips/scholax/zcs_aisocu.enc + RELOC/fonts/enc/dvips/scholax/zcs_c3rnvk.enc + RELOC/fonts/enc/dvips/scholax/zcs_c5ugpk.enc + RELOC/fonts/enc/dvips/scholax/zcs_czuex4.enc + RELOC/fonts/enc/dvips/scholax/zcs_dcwile.enc + RELOC/fonts/enc/dvips/scholax/zcs_dodlyj.enc + RELOC/fonts/enc/dvips/scholax/zcs_fn6vum.enc + RELOC/fonts/enc/dvips/scholax/zcs_heobe3.enc + RELOC/fonts/enc/dvips/scholax/zcs_ioc2dx.enc + RELOC/fonts/enc/dvips/scholax/zcs_jkq3qs.enc + RELOC/fonts/enc/dvips/scholax/zcs_k56gxg.enc + RELOC/fonts/enc/dvips/scholax/zcs_lewktp.enc + RELOC/fonts/enc/dvips/scholax/zcs_litts3.enc + RELOC/fonts/enc/dvips/scholax/zcs_mett7y.enc + RELOC/fonts/enc/dvips/scholax/zcs_mnnbkz.enc + RELOC/fonts/enc/dvips/scholax/zcs_qfh2v7.enc + RELOC/fonts/enc/dvips/scholax/zcs_ra2vxf.enc + RELOC/fonts/enc/dvips/scholax/zcs_t6txtr.enc + RELOC/fonts/enc/dvips/scholax/zcs_tpfstq.enc + RELOC/fonts/enc/dvips/scholax/zcs_ujimmk.enc + RELOC/fonts/enc/dvips/scholax/zcs_wg6py3.enc + RELOC/fonts/enc/dvips/scholax/zcs_wlo5nq.enc + RELOC/fonts/enc/dvips/scholax/zcs_wylu46.enc + RELOC/fonts/enc/dvips/scholax/zcs_x5uxyb.enc + RELOC/fonts/enc/dvips/scholax/zcs_xrqdd6.enc + RELOC/fonts/enc/dvips/scholax/zcs_xzuu25.enc + RELOC/fonts/enc/dvips/scholax/zcs_y6waxr.enc + RELOC/fonts/enc/dvips/scholax/zcs_zgzte3.enc + RELOC/fonts/map/dvips/scholax/ScholaX.map + RELOC/fonts/opentype/public/scholax/TeXGyreScholaX-Bold.otf + RELOC/fonts/opentype/public/scholax/TeXGyreScholaX-BoldItalic.otf + RELOC/fonts/opentype/public/scholax/TeXGyreScholaX-BoldSlanted.otf + RELOC/fonts/opentype/public/scholax/TeXGyreScholaX-Italic.otf + RELOC/fonts/opentype/public/scholax/TeXGyreScholaX-Regular.otf + RELOC/fonts/opentype/public/scholax/TeXGyreScholaX-Slanted.otf + RELOC/fonts/tfm/public/scholax/NCXFourierBMI.tfm + RELOC/fonts/tfm/public/scholax/NCXFourierBMR.tfm + RELOC/fonts/tfm/public/scholax/NCXFourierMI.tfm + RELOC/fonts/tfm/public/scholax/NCXFourierMR.tfm + RELOC/fonts/tfm/public/scholax/NCXMathBMI.tfm + RELOC/fonts/tfm/public/scholax/NCXMathBRM.tfm + RELOC/fonts/tfm/public/scholax/NCXMathMI.tfm + RELOC/fonts/tfm/public/scholax/NCXMathRM.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-ot1G.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-inf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-lf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-osf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-sup-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-ot1G.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-ot1G.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-inf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-inf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-inf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-lf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-osf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-sup-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-sup-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-sup-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-ot1G.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-t1.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/scholax/TeXGyreScholaX-Slanted-tosf-ts1.tfm + RELOC/fonts/tfm/public/scholax/zcs-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/scholax/zcs-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/scholax/zcs-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/scholax/zcs-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/scholax/zcs-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/scholax/zcs-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/scholax/zncbmi.tfm + RELOC/fonts/tfm/public/scholax/zncbmia.tfm + RELOC/fonts/tfm/public/scholax/zncfbmi.tfm + RELOC/fonts/tfm/public/scholax/zncfbmia.tfm + RELOC/fonts/tfm/public/scholax/zncfmi.tfm + RELOC/fonts/tfm/public/scholax/zncfmia.tfm + RELOC/fonts/tfm/public/scholax/zncmi.tfm + RELOC/fonts/tfm/public/scholax/zncmia.tfm + RELOC/fonts/type1/public/scholax/NCXFourierBMI.pfb + RELOC/fonts/type1/public/scholax/NCXFourierBMR.pfb + RELOC/fonts/type1/public/scholax/NCXFourierMI.pfb + RELOC/fonts/type1/public/scholax/NCXFourierMR.pfb + RELOC/fonts/type1/public/scholax/NCXMathBMI.pfb + RELOC/fonts/type1/public/scholax/NCXMathBRM.pfb + RELOC/fonts/type1/public/scholax/NCXMathMI.pfb + RELOC/fonts/type1/public/scholax/NCXMathRM.pfb + RELOC/fonts/type1/public/scholax/TeXGyreScholaX-Bold.pfb + RELOC/fonts/type1/public/scholax/TeXGyreScholaX-BoldItalic.pfb + RELOC/fonts/type1/public/scholax/TeXGyreScholaX-BoldSlanted.pfb + RELOC/fonts/type1/public/scholax/TeXGyreScholaX-Italic.pfb + RELOC/fonts/type1/public/scholax/TeXGyreScholaX-Regular.pfb + RELOC/fonts/type1/public/scholax/TeXGyreScholaX-Slanted.pfb + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-inf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-lf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-lf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-osf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-osf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-sup-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tlf-ot1G.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tlf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tosf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tlf-ot1G.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-inf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-lf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-lf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-lf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-osf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-osf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-sup-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-ot1G.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-BoldSlanted-tosf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-inf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-lf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-lf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-osf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-osf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-sup-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tlf-ot1G.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tlf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tosf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-inf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-lf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-lf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-osf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-osf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-sup-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tlf-ot1G.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tlf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tosf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-inf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-lf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-lf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-lf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-lf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-osf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-osf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-osf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-osf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-sup-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tlf-ot1G.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tlf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tlf-ts1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tosf-t1.vf + RELOC/fonts/vf/public/scholax/TeXGyreScholaX-Slanted-tosf-ts1.vf + RELOC/fonts/vf/public/scholax/zncbmi.vf + RELOC/fonts/vf/public/scholax/zncbmia.vf + RELOC/fonts/vf/public/scholax/zncfbmi.vf + RELOC/fonts/vf/public/scholax/zncfbmia.vf + RELOC/fonts/vf/public/scholax/zncfmi.vf + RELOC/fonts/vf/public/scholax/zncfmia.vf + RELOC/fonts/vf/public/scholax/zncmi.vf + RELOC/fonts/vf/public/scholax/zncmia.vf + RELOC/tex/latex/scholax/LY1TeXGyreScholaX-Inf.fd + RELOC/tex/latex/scholax/LY1TeXGyreScholaX-LF.fd + RELOC/tex/latex/scholax/LY1TeXGyreScholaX-OsF.fd + RELOC/tex/latex/scholax/LY1TeXGyreScholaX-Sup.fd + RELOC/tex/latex/scholax/LY1TeXGyreScholaX-TLF.fd + RELOC/tex/latex/scholax/LY1TeXGyreScholaX-TOsF.fd + RELOC/tex/latex/scholax/OT1TeXGyreScholaX-Inf.fd + RELOC/tex/latex/scholax/OT1TeXGyreScholaX-LF.fd + RELOC/tex/latex/scholax/OT1TeXGyreScholaX-OsF.fd + RELOC/tex/latex/scholax/OT1TeXGyreScholaX-Sup.fd + RELOC/tex/latex/scholax/OT1TeXGyreScholaX-TLF.fd + RELOC/tex/latex/scholax/OT1TeXGyreScholaX-TOsF.fd + RELOC/tex/latex/scholax/T1TeXGyreScholaX-Inf.fd + RELOC/tex/latex/scholax/T1TeXGyreScholaX-LF.fd + RELOC/tex/latex/scholax/T1TeXGyreScholaX-OsF.fd + RELOC/tex/latex/scholax/T1TeXGyreScholaX-Sup.fd + RELOC/tex/latex/scholax/T1TeXGyreScholaX-TLF.fd + RELOC/tex/latex/scholax/T1TeXGyreScholaX-TOsF.fd + RELOC/tex/latex/scholax/TS1TeXGyreScholaX-LF.fd + RELOC/tex/latex/scholax/TS1TeXGyreScholaX-OsF.fd + RELOC/tex/latex/scholax/TS1TeXGyreScholaX-TLF.fd + RELOC/tex/latex/scholax/TS1TeXGyreScholaX-TOsF.fd + RELOC/tex/latex/scholax/ly1zcsth-lf.fd + RELOC/tex/latex/scholax/ly1zcsth-osf.fd + RELOC/tex/latex/scholax/newtx-nc-subs.tex + RELOC/tex/latex/scholax/newtx-ncf-subs.tex + RELOC/tex/latex/scholax/omlzncfmi.fd + RELOC/tex/latex/scholax/omlzncmi.fd + RELOC/tex/latex/scholax/ot1zcsth-lf.fd + RELOC/tex/latex/scholax/ot1zcsth-osf.fd + RELOC/tex/latex/scholax/scholax.fontspec + RELOC/tex/latex/scholax/scholax.sty + RELOC/tex/latex/scholax/t1zcsth-lf.fd + RELOC/tex/latex/scholax/t1zcsth-osf.fd +catalogue-ctan /fonts/scholax +catalogue-license lppl +catalogue-topics font font-body font-maths font-serif font-proportional font-otf font-type1 font-supp font-t1enc +catalogue-version 1.030 + +name schooldocs +category Package +revision 55838 +shortdesc Various layout styles for school documents +relocated 1 +longdesc The purpose of this package is to provide several layout styles +longdesc for school documents. It is useful for exercise sheets, exams, +longdesc course materials. The package sets the page geometry +longdesc (dimensions of text and margins) and the title typesetting; the +longdesc various styles define the header, footer and title formatting. +longdesc Many features are freely configurable. +containersize 3028 +containerchecksum baaa044e2e70c65c91acbb5a2d1add045f24be9361bc4b1c4761a09974b070223144ed9b41a9e5c41cb1846a271cc3338b1f44ec7b8af35cd82e7cb7ee490236 +doccontainersize 904720 +doccontainerchecksum 6860607cbaa4205b41d0e4145c3579f6a40ba27a4047c1c614a2134fa2c34aae16fd4b56dce0720813f62ac7473711a32a2ff74d7cd5288694810942d99f9ca8 +docfiles size=226 + RELOC/doc/latex/schooldocs/README.md details="Readme" + RELOC/doc/latex/schooldocs/schooldocs-examples.pdf details="Example of use" + RELOC/doc/latex/schooldocs/schooldocs.pdf details="Package documentation" +srccontainersize 10336 +srccontainerchecksum 078875026c92538b9086945c6b3b4d3a8121e834b81156baba3d454f3f6bf199b484718c3da7dcca3da837bc345ca80ea311448680720a87150c40f2f629062d +srcfiles size=11 + RELOC/source/latex/schooldocs/schooldocs.dtx + RELOC/source/latex/schooldocs/schooldocs.ins +runfiles size=4 + RELOC/tex/latex/schooldocs/schooldocs.sty +catalogue-ctan /macros/latex/contrib/schooldocs +catalogue-license lppl1.3 +catalogue-topics exercise exam course-material +catalogue-version 1.0 + +name schule +category Package +revision 56683 +shortdesc Support for teachers at German schools +relocated 1 +longdesc The 'schule' bundle was built to provide packages and commands +longdesc that could be useful for documents in German schools. At the +longdesc moment its main focus lies on documents for informatics as a +longdesc school subject. An extension for physics is currently in +longdesc progress. Extensions for other subjects are welcome. For the +longdesc time being, the whole package splits up into individual +longdesc packages for informatics (including syntax diagrams, +longdesc Nassi-Shneiderman diagrams, sequence diagrams, object diagrams, +longdesc and class diagrams) as well as classes for written exams +longdesc (tests, quizzes, teaching observations, information sheets, +longdesc worksheets, and answer keys). +containersize 39696 +containerchecksum 7125beaddb825fca0c9ff686ab97fbe7cb3744b74bde693107e26fc2797ac9bd29146683174ac6d7703370cf7f5f09809165b2f371c56a8b27ae0de8980ab467 +doccontainersize 6242348 +doccontainerchecksum 11aa5b1eb25301e61f2438f4607cfba35721dcbb0904ce3fdb923f69f71b1f1e1ebc3a50706b09e306e2b9197194a3c6ebb12a1fa7dc27b94686df11be3501c2 +docfiles size=1976 + RELOC/doc/latex/schule/Abbildungen/table02600-026FF.pdf + RELOC/doc/latex/schule/Abbildungen/table02600-026FF.tex + RELOC/doc/latex/schule/Abbildungen/table02700-027BF.pdf + RELOC/doc/latex/schule/Abbildungen/table02700-027BF.tex + RELOC/doc/latex/schule/Abbildungen/table1F000-1F02F.pdf + RELOC/doc/latex/schule/Abbildungen/table1F000-1F02F.tex + RELOC/doc/latex/schule/Abbildungen/table1F030-1F09F.pdf + RELOC/doc/latex/schule/Abbildungen/table1F030-1F09F.tex + RELOC/doc/latex/schule/Abbildungen/table1F0A0-1F0FF.pdf + RELOC/doc/latex/schule/Abbildungen/table1F0A0-1F0FF.tex + RELOC/doc/latex/schule/Abbildungen/table1F300-1F5FF.pdf + RELOC/doc/latex/schule/Abbildungen/table1F300-1F5FF.tex + RELOC/doc/latex/schule/Abbildungen/table1F600-1F64F.pdf + RELOC/doc/latex/schule/Abbildungen/table1F600-1F64F.tex + RELOC/doc/latex/schule/Abbildungen/table1F680-1F6FF.pdf + RELOC/doc/latex/schule/Abbildungen/table1F680-1F6FF.tex + RELOC/doc/latex/schule/Beispiele/aufgabe-1.pdf + RELOC/doc/latex/schule/Beispiele/aufgabe-2.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab-abbott.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab-abbott.tex + RELOC/doc/latex/schule/Beispiele/beispiel-ab-formulare.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab-formulare.tex + RELOC/doc/latex/schule/Beispiele/beispiel-ab-schiefeebene.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab-schiefeebene.tex + RELOC/doc/latex/schule/Beispiele/beispiel-ab.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab.tex + RELOC/doc/latex/schule/Beispiele/beispiel-aufgabentemplates.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-aufgabentemplates.tex + RELOC/doc/latex/schule/Beispiele/beispiel-ib-hieroglyphen.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ib-hieroglyphen.tex + RELOC/doc/latex/schule/Beispiele/beispiel-kl.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-kl.tex + RELOC/doc/latex/schule/Beispiele/beispiel-leitprogramm.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-leitprogramm.tex + RELOC/doc/latex/schule/Beispiele/bsp-beamer.pdf + RELOC/doc/latex/schule/Beispiele/bsp-beamer.tex + RELOC/doc/latex/schule/Beispiele/bsp-beamerarticle.pdf + RELOC/doc/latex/schule/Beispiele/bsp-beamerarticle.tex + RELOC/doc/latex/schule/Beispiele/bsp-geschichte.pdf + RELOC/doc/latex/schule/Beispiele/bsp-geschichte.tex + RELOC/doc/latex/schule/Beispiele/bsp-pap.tikz + RELOC/doc/latex/schule/Beispiele/bsp-vocab.pdf + RELOC/doc/latex/schule/Beispiele/bsp-vocab.tex + RELOC/doc/latex/schule/Beispiele/hieroglyph-female.pdf + RELOC/doc/latex/schule/Beispiele/hieroglyph-male.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ab-dev.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ab-dev.tex + RELOC/doc/latex/schule/Beispiele/minimal-ab.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ab.tex + RELOC/doc/latex/schule/Beispiele/minimal-ib.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ib.tex + RELOC/doc/latex/schule/Beispiele/minimal-ka.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ka.tex + RELOC/doc/latex/schule/Beispiele/minimal-kl-et.pdf + RELOC/doc/latex/schule/Beispiele/minimal-kl-et.tex + RELOC/doc/latex/schule/Beispiele/minimal-kl-teilpunkte.pdf + RELOC/doc/latex/schule/Beispiele/minimal-kl-teilpunkte.tex + RELOC/doc/latex/schule/Beispiele/minimal-kl.pdf + RELOC/doc/latex/schule/Beispiele/minimal-kl.tex + RELOC/doc/latex/schule/README details="Readme (German)" language="de" + RELOC/doc/latex/schule/allgemeines.tex + RELOC/doc/latex/schule/beispiele.tex + RELOC/doc/latex/schule/changelog.tex + RELOC/doc/latex/schule/dev.tex + RELOC/doc/latex/schule/devFunktionen.tex + RELOC/doc/latex/schule/devModule.tex + RELOC/doc/latex/schule/devRichtlinien.tex + RELOC/doc/latex/schule/dokumenttypen.tex + RELOC/doc/latex/schule/fachGeschichte.tex + RELOC/doc/latex/schule/fachInformatik.tex + RELOC/doc/latex/schule/fachPhysik.tex + RELOC/doc/latex/schule/faecher.tex + RELOC/doc/latex/schule/faq.tex + RELOC/doc/latex/schule/lizenzen.tex + RELOC/doc/latex/schule/modulAufgaben.tex + RELOC/doc/latex/schule/modulBewertung.tex + RELOC/doc/latex/schule/modulFormat.tex + RELOC/doc/latex/schule/modulFormulare.tex + RELOC/doc/latex/schule/modulKuerzel.tex + RELOC/doc/latex/schule/modulLizenzen.tex + RELOC/doc/latex/schule/modulMetadaten.tex + RELOC/doc/latex/schule/modulPapiertypen.tex + RELOC/doc/latex/schule/modulSymbole.tex + RELOC/doc/latex/schule/modulTexte.tex + RELOC/doc/latex/schule/module.tex + RELOC/doc/latex/schule/schule-dokumentation.sty + RELOC/doc/latex/schule/schule.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/schule/schule.tex + RELOC/doc/latex/schule/source/Module/GENord/code.tex + RELOC/doc/latex/schule/source/Module/GENordLogbuch/code.tex + RELOC/doc/latex/schule/source/Module/GENordLogbuch/optionen.tex + RELOC/doc/latex/schule/source/Module/GENordLogbuch/pakete.tex + RELOC/doc/latex/schule/todo.tex + RELOC/doc/latex/schule/typAb.tex + RELOC/doc/latex/schule/typBeurteilung.tex + RELOC/doc/latex/schule/typFolie.tex + RELOC/doc/latex/schule/typKl.tex + RELOC/doc/latex/schule/typLeitprogramm.tex + RELOC/doc/latex/schule/typLzk.tex + RELOC/doc/latex/schule/typUb.tex + RELOC/doc/latex/schule/typUeb.tex + RELOC/doc/latex/schule/zusatzpaketRelaycircuit.tex + RELOC/doc/latex/schule/zusatzpaketSchuleAlt.tex + RELOC/doc/latex/schule/zusatzpakete.tex +runfiles size=119 + RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-4.xmp + RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-nc-sa-4.xmp + RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-nc-sa-eu-4.xmp + RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-sa-4.xmp + RELOC/tex/latex/schule/relaycircuit.sty + RELOC/tex/latex/schule/schule.fach.EvReligion.code.tex + RELOC/tex/latex/schule/schule.fach.Geschichte.code.tex + RELOC/tex/latex/schule/schule.fach.Geschichte.pakete.tex + RELOC/tex/latex/schule/schule.fach.Informatik.code.tex + RELOC/tex/latex/schule/schule.fach.Informatik.pakete.tex + RELOC/tex/latex/schule/schule.fach.Physik.pakete.tex + RELOC/tex/latex/schule/schule.mod.Aufgaben.code.tex + RELOC/tex/latex/schule/schule.mod.Aufgaben.optionen.tex + RELOC/tex/latex/schule/schule.mod.Aufgaben.pakete.tex + RELOC/tex/latex/schule/schule.mod.Bewertung.code.tex + RELOC/tex/latex/schule/schule.mod.Bewertung.optionen.tex + RELOC/tex/latex/schule/schule.mod.Bewertung.pakete.tex + RELOC/tex/latex/schule/schule.mod.Format.code.tex + RELOC/tex/latex/schule/schule.mod.Format.optionen.tex + RELOC/tex/latex/schule/schule.mod.Format.pakete.tex + RELOC/tex/latex/schule/schule.mod.Formulare.code.tex + RELOC/tex/latex/schule/schule.mod.Kuerzel.code.tex + RELOC/tex/latex/schule/schule.mod.Kuerzel.optionen.tex + RELOC/tex/latex/schule/schule.mod.Lizenzen.code.tex + RELOC/tex/latex/schule/schule.mod.Lizenzen.optionen.tex + RELOC/tex/latex/schule/schule.mod.Lizenzen.pakete.tex + RELOC/tex/latex/schule/schule.mod.Metadaten.code.tex + RELOC/tex/latex/schule/schule.mod.Metadaten.optionen.tex + RELOC/tex/latex/schule/schule.mod.Papiertypen.code.tex + RELOC/tex/latex/schule/schule.mod.Storycard.code.tex + RELOC/tex/latex/schule/schule.mod.Storycard.pakete.tex + RELOC/tex/latex/schule/schule.mod.Symbole.code.tex + RELOC/tex/latex/schule/schule.mod.Symbole.pakete.tex + RELOC/tex/latex/schule/schule.mod.Texte.code.tex + RELOC/tex/latex/schule/schule.mod.Texte.pakete.tex + RELOC/tex/latex/schule/schule.mod.genord.code.tex + RELOC/tex/latex/schule/schule.sty + RELOC/tex/latex/schule/schule.typ.Beurteilung.code.tex + RELOC/tex/latex/schule/schule.typ.Beurteilung.optionen.tex + RELOC/tex/latex/schule/schule.typ.Beurteilung.pakete.tex + RELOC/tex/latex/schule/schule.typ.ab.code.tex + RELOC/tex/latex/schule/schule.typ.ab.pakete.tex + RELOC/tex/latex/schule/schule.typ.folie.code.tex + RELOC/tex/latex/schule/schule.typ.folie.pakete.tex + RELOC/tex/latex/schule/schule.typ.kl.code.tex + RELOC/tex/latex/schule/schule.typ.kl.optionen.tex + RELOC/tex/latex/schule/schule.typ.kl.pakete.tex + RELOC/tex/latex/schule/schule.typ.leit.code.tex + RELOC/tex/latex/schule/schule.typ.leit.optionen.tex + RELOC/tex/latex/schule/schule.typ.leit.pakete.tex + RELOC/tex/latex/schule/schule.typ.lzk.code.tex + RELOC/tex/latex/schule/schule.typ.lzk.pakete.tex + RELOC/tex/latex/schule/schule.typ.ub.code.tex + RELOC/tex/latex/schule/schule.typ.ub.pakete.tex + RELOC/tex/latex/schule/schule.typ.ueb.code.tex + RELOC/tex/latex/schule/schule.typ.ueb.pakete.tex + RELOC/tex/latex/schule/schuleab.cls + RELOC/tex/latex/schule/schulealt.sty + RELOC/tex/latex/schule/schulein.cls + RELOC/tex/latex/schule/schuleit.cls + RELOC/tex/latex/schule/schulekl.cls + RELOC/tex/latex/schule/schulekl.sty + RELOC/tex/latex/schule/schuleub.cls + RELOC/tex/latex/schule/schuleue.cls + RELOC/tex/latex/schule/schulinf.sty + RELOC/tex/latex/schule/schullsg.cls + RELOC/tex/latex/schule/schullzk.cls + RELOC/tex/latex/schule/schullzk.sty + RELOC/tex/latex/schule/schulphy.sty + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-binnen.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-default.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-keinenummer.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-keinepunkte.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-keintitel.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-randpunkte.code.tex + 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-license lppl1.3 +catalogue-topics teaching class +catalogue-version 0.8.2 + +name schulmathematik +category Package +revision 58359 +shortdesc Commands and document classes for German-speaking teachers of mathematics and physics +relocated 1 +longdesc The schulmathematik bundle provides two LaTeX packages and six +longdesc document classes for German-speaking teachers of mathematics +longdesc and physics. +containersize 10188 +containerchecksum 283c5541f876edeea48201cff842d0d4b73ed1fff33f419371c9fd721cbd1711203f3449874d57573285a8e0e9a7386fcf586444030fee3c587b9d830ca2235d +doccontainersize 201444 +doccontainerchecksum 1f360107f14c7261c25c3806b4c5b762ec65b0d1818c4cc450784338119f0148b0319cdc3981c7cb29c776aa309f3b90782f28abde3c4b5cffe16e51bbc28f39 +docfiles size=63 + RELOC/doc/latex/schulmathematik/README details="Readme" + RELOC/doc/latex/schulmathematik/schulmathematik.pdf details="Package documentation" + RELOC/doc/latex/schulmathematik/schulmathematik.tex +runfiles size=17 + RELOC/tex/latex/schulmathematik/schulma-ab.cls + RELOC/tex/latex/schulmathematik/schulma-gutachten.cls + RELOC/tex/latex/schulmathematik/schulma-klausur.cls + RELOC/tex/latex/schulmathematik/schulma-komp.cls + RELOC/tex/latex/schulmathematik/schulma-mdlprf.cls + RELOC/tex/latex/schulmathematik/schulma-physik.sty + RELOC/tex/latex/schulmathematik/schulma-praes.cls + RELOC/tex/latex/schulmathematik/schulma.sty +catalogue-ctan /macros/latex/contrib/schulmathematik +catalogue-license lppl1.3 +catalogue-topics maths physics teaching +catalogue-version 1.1 + +name schulschriften +category Package +revision 35730 +shortdesc German "school scripts" from Suetterlin to the present day +relocated 1 +longdesc Das Paket enthalt im wesentlichen die Metafont-Quellfiles fur +longdesc die folgenden Schulausgangsschriften: Suetterlinschrift, +longdesc Deutsche Normalschrift, Lateinische Ausgangsschrift, +longdesc Schulausgangsschrift, Vereinfachte Ausgangsschrift. Damit ist +longdesc es moglich, beliebige deutsche Texte in diesen Schreibschriften +longdesc zu schreiben. +containersize 48980 +containerchecksum baedf984b1d1cfeae56af4b9530b81d90653eee334a90f2a9a83a871240592ed6267668b6974033cedfc1e73166232201eaae8e4876d38b9fd94919e8262336a +doccontainersize 720152 +doccontainerchecksum b43f16b38c0417b074b7f45bd42290f3434275c23c6031f293101d907c2004805168d86137190300daa1ca62dd1b25cd2f795e712868b36e454cda134f680bbb +docfiles size=972 + RELOC/doc/fonts/schulschriften/README details="Readme" + RELOC/doc/fonts/schulschriften/schulschriften.pdf details="Package documentation" + RELOC/doc/fonts/schulschriften/schulschriften.tex + RELOC/doc/fonts/schulschriften/schulschriften_ltx.tex + RELOC/doc/fonts/schulschriften/schulschriften_xpl.tex + RELOC/doc/fonts/schulschriften/wedn_fonttabelle.eps + RELOC/doc/fonts/schulschriften/wela_fonttabelle.eps + RELOC/doc/fonts/schulschriften/wesa_fonttabelle.eps + RELOC/doc/fonts/schulschriften/wesu_fonttabelle.eps + RELOC/doc/fonts/schulschriften/weva_fonttabelle.eps +runfiles size=307 + RELOC/fonts/source/public/schulschriften/wedn14.mf + RELOC/fonts/source/public/schulschriften/wedn14_def.mf + RELOC/fonts/source/public/schulschriften/wedn14_end.mf + RELOC/fonts/source/public/schulschriften/wedn14_gr.mf + RELOC/fonts/source/public/schulschriften/wedn14_kl.mf + RELOC/fonts/source/public/schulschriften/wedn14_lig.mf + RELOC/fonts/source/public/schulschriften/wedn14_sz.mf + RELOC/fonts/source/public/schulschriften/wednbx14.mf + RELOC/fonts/source/public/schulschriften/wednbxsl14.mf + RELOC/fonts/source/public/schulschriften/wedneb14.mf + RELOC/fonts/source/public/schulschriften/wednebsl14.mf + RELOC/fonts/source/public/schulschriften/wednsb14.mf + RELOC/fonts/source/public/schulschriften/wednsbsl14.mf + RELOC/fonts/source/public/schulschriften/wednsl14.mf + RELOC/fonts/source/public/schulschriften/wednub14.mf + RELOC/fonts/source/public/schulschriften/wednubsl14.mf + RELOC/fonts/source/public/schulschriften/wela14.mf + RELOC/fonts/source/public/schulschriften/wela14_def.mf + RELOC/fonts/source/public/schulschriften/wela14_end.mf + RELOC/fonts/source/public/schulschriften/wela14_gr.mf + RELOC/fonts/source/public/schulschriften/wela14_kl.mf + RELOC/fonts/source/public/schulschriften/wela14_lig.mf + RELOC/fonts/source/public/schulschriften/wela14_sz.mf + RELOC/fonts/source/public/schulschriften/welabx14.mf + RELOC/fonts/source/public/schulschriften/welabxsl14.mf + RELOC/fonts/source/public/schulschriften/welaeb14.mf + RELOC/fonts/source/public/schulschriften/welaebsl14.mf + RELOC/fonts/source/public/schulschriften/welasb14.mf + RELOC/fonts/source/public/schulschriften/welasbsl14.mf + RELOC/fonts/source/public/schulschriften/welasl14.mf + RELOC/fonts/source/public/schulschriften/welaub14.mf + RELOC/fonts/source/public/schulschriften/welaubsl14.mf + RELOC/fonts/source/public/schulschriften/wesa14.mf + RELOC/fonts/source/public/schulschriften/wesa14_def.mf + RELOC/fonts/source/public/schulschriften/wesa14_end.mf + RELOC/fonts/source/public/schulschriften/wesa14_gr.mf + RELOC/fonts/source/public/schulschriften/wesa14_kl.mf + RELOC/fonts/source/public/schulschriften/wesa14_lig.mf + RELOC/fonts/source/public/schulschriften/wesa14_sz.mf + RELOC/fonts/source/public/schulschriften/wesabx14.mf + RELOC/fonts/source/public/schulschriften/wesabxsl14.mf + RELOC/fonts/source/public/schulschriften/wesaeb14.mf + RELOC/fonts/source/public/schulschriften/wesaebsl14.mf + RELOC/fonts/source/public/schulschriften/wesasb14.mf + RELOC/fonts/source/public/schulschriften/wesasbsl14.mf + RELOC/fonts/source/public/schulschriften/wesasl14.mf + RELOC/fonts/source/public/schulschriften/wesaub14.mf + RELOC/fonts/source/public/schulschriften/wesaubsl14.mf + RELOC/fonts/source/public/schulschriften/wesu14.mf + RELOC/fonts/source/public/schulschriften/wesu14_def.mf + RELOC/fonts/source/public/schulschriften/wesu14_end.mf + RELOC/fonts/source/public/schulschriften/wesu14_gr.mf + RELOC/fonts/source/public/schulschriften/wesu14_kl.mf + RELOC/fonts/source/public/schulschriften/wesu14_lig.mf + RELOC/fonts/source/public/schulschriften/wesu14_sz.mf + RELOC/fonts/source/public/schulschriften/wesub14.mf + RELOC/fonts/source/public/schulschriften/wesubsl14.mf + RELOC/fonts/source/public/schulschriften/wesubx14.mf + RELOC/fonts/source/public/schulschriften/wesubxsl14.mf + RELOC/fonts/source/public/schulschriften/wesueb14.mf + RELOC/fonts/source/public/schulschriften/wesuebsl14.mf + RELOC/fonts/source/public/schulschriften/wesusb14.mf + RELOC/fonts/source/public/schulschriften/wesusbsl14.mf + RELOC/fonts/source/public/schulschriften/wesusl14.mf + RELOC/fonts/source/public/schulschriften/wesuub14.mf + RELOC/fonts/source/public/schulschriften/wesuubsl14.mf + RELOC/fonts/source/public/schulschriften/weva14.mf + RELOC/fonts/source/public/schulschriften/weva14_def.mf + RELOC/fonts/source/public/schulschriften/weva14_gr.mf + RELOC/fonts/source/public/schulschriften/weva14_kl.mf + RELOC/fonts/source/public/schulschriften/weva14_lig.mf + RELOC/fonts/source/public/schulschriften/weva14_sz.mf + RELOC/fonts/source/public/schulschriften/wevabx14.mf + RELOC/fonts/source/public/schulschriften/wevabxsl14.mf + RELOC/fonts/source/public/schulschriften/wevaeb14.mf + RELOC/fonts/source/public/schulschriften/wevaebsl14.mf + RELOC/fonts/source/public/schulschriften/wevasb14.mf + RELOC/fonts/source/public/schulschriften/wevasbsl14.mf + RELOC/fonts/source/public/schulschriften/wevasl14.mf + RELOC/fonts/source/public/schulschriften/wevaub14.mf + RELOC/fonts/source/public/schulschriften/wevaubsl14.mf + RELOC/fonts/tfm/public/schulschriften/wedn14.tfm + RELOC/fonts/tfm/public/schulschriften/wednbx14.tfm + RELOC/fonts/tfm/public/schulschriften/wednbxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wedneb14.tfm + RELOC/fonts/tfm/public/schulschriften/wednebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wednsb14.tfm + RELOC/fonts/tfm/public/schulschriften/wednsbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wednsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wednub14.tfm + RELOC/fonts/tfm/public/schulschriften/wednubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wela14.tfm + RELOC/fonts/tfm/public/schulschriften/welabx14.tfm + RELOC/fonts/tfm/public/schulschriften/welabxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/welaeb14.tfm + RELOC/fonts/tfm/public/schulschriften/welaebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/welasb14.tfm + RELOC/fonts/tfm/public/schulschriften/welasbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/welasl14.tfm + RELOC/fonts/tfm/public/schulschriften/welaub14.tfm + RELOC/fonts/tfm/public/schulschriften/welaubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesa14.tfm + RELOC/fonts/tfm/public/schulschriften/wesabx14.tfm + RELOC/fonts/tfm/public/schulschriften/wesabxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaeb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesasb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesasbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesasl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaub14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesu14.tfm + RELOC/fonts/tfm/public/schulschriften/wesub14.tfm + RELOC/fonts/tfm/public/schulschriften/wesubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesubx14.tfm + RELOC/fonts/tfm/public/schulschriften/wesubxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesueb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesuebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesusb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesusbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesusl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesuub14.tfm + RELOC/fonts/tfm/public/schulschriften/wesuubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/weva14.tfm + RELOC/fonts/tfm/public/schulschriften/wevabx14.tfm + RELOC/fonts/tfm/public/schulschriften/wevabxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaeb14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevasb14.tfm + RELOC/fonts/tfm/public/schulschriften/wevasbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevasl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaub14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaubsl14.tfm + RELOC/tex/latex/schulschriften/schulschriften_lin.sty + RELOC/tex/latex/schulschriften/schulschriften_ltx.sty + RELOC/tex/latex/schulschriften/t1wedn.fd + RELOC/tex/latex/schulschriften/t1wela.fd + RELOC/tex/latex/schulschriften/t1wesa.fd + RELOC/tex/latex/schulschriften/t1wesu.fd + RELOC/tex/latex/schulschriften/t1weva.fd + RELOC/tex/latex/schulschriften/wedn.sty + RELOC/tex/latex/schulschriften/wela.sty + RELOC/tex/latex/schulschriften/wesa.sty + RELOC/tex/latex/schulschriften/wesu.sty + RELOC/tex/latex/schulschriften/weva.sty +catalogue-ctan /fonts/schulschriften +catalogue-license lppl +catalogue-topics font font-calligraphic font-mf +catalogue-version 4 + +name schwalbe-chess +category Package +revision 53305 +shortdesc Typeset the German chess magazine "Die Schwalbe" +relocated 1 +longdesc The package is based on chess-problem-diagrams, which in its +longdesc turn has a dependency on the bartel-chess-fonts. +containersize 7228 +containerchecksum 42f04e0fc134e4b429a7ddc2397e3c61ac1ff648670497f6ccbeb391748635c54648ab56645849a81b0002aec1a3f9ea74db631ab45972f69f2bde2dc92444fd +doccontainersize 190900 +doccontainerchecksum f5ff7c4a235cb5fca0a9d0c9e347c3e2a997c1994e56dab7b9410483935253d09fb72fc678c15e63465de6fe25db7a7dcf7dc445a594711f2072020379b87df5 +docfiles size=56 + RELOC/doc/latex/schwalbe-chess/README details="Readme" + RELOC/doc/latex/schwalbe-chess/schwalbe.pdf details="Package documentation (German)" language="de" +srccontainersize 14908 +srccontainerchecksum 653d06a3e25c1990e8f0b0a703c661fab8db592e757d101e340ba494ca88b61077b1eafa44885a162632831c8f5a0ab945d81679206aca0df96b035cf62f0a7f +srcfiles size=17 + RELOC/source/latex/schwalbe-chess/schwalbe.dtx + RELOC/source/latex/schwalbe-chess/schwalbe.ins +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-license lppl1.2 +catalogue-topics journalpub games class +catalogue-version 2.7 + +name scientific-thesis-cover +category Package +revision 47923 +shortdesc Provides cover page and affirmation at the end of a thesis +relocated 1 +longdesc Institutions require a cover page and an affirmation at the end +longdesc of a thesis. This package provides both. +containersize 4916 +containerchecksum 2427c534ad767f1e8f319aa24744346d4a0a39f73d93c779dc89d3cd0abfd683d7a33c81026c4a5823ad686084f026193c917ff173d639dfac2c99350a819c59 +doccontainersize 131328 +doccontainerchecksum 31bc280c96b87b079a7dfb6a0c2ff1a03f80c5a047bc2c11b9fb192c50b8e51a65cb3fd5c043c37124afe2383a611f38accd91d6202416451b3eb34bfe855077 +docfiles size=41 + RELOC/doc/latex/scientific-thesis-cover/CHANGELOG.md + RELOC/doc/latex/scientific-thesis-cover/README.TEXLIVE + RELOC/doc/latex/scientific-thesis-cover/README.md details="Readme" + RELOC/doc/latex/scientific-thesis-cover/demo.tex + RELOC/doc/latex/scientific-thesis-cover/scientific-thesis-cover.pdf details="Package documentation" +srccontainersize 532 +srccontainerchecksum ac14306fa7591f6fa684dd8fb6d7c7335b6ce5c8e3099d80286f05a9f378b4d430b1210fec9c071aa8a4e430ff6cae9ea712ea504cc575e89b02751c02e60bd6 +srcfiles size=1 + RELOC/source/latex/scientific-thesis-cover/release.bat +runfiles size=5 + RELOC/tex/latex/scientific-thesis-cover/scientific-thesis-cover.sty +catalogue-contact-bugs https://github.com/latextemplates/scientific-thesis-cover/issues +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-license lppl1.3c +catalogue-topics dissertation journalpub scientific-docs +catalogue-version 4.0.2 + +name sciposter +category Package +revision 15878 +shortdesc Make posters of ISO A3 size and larger +relocated 1 +longdesc This collection of files contains LaTeX packages for posters of +longdesc ISO A3 size and larger (ISO A0 is the default size). American +longdesc paper sizes and custom paper are supported. In particular, +longdesc sciposter.cls defines a document class which allows cutting and +longdesc pasting most of an article to a poster without any editing +longdesc (save reducing the size) -- see the manual. Sciposter does work +longdesc for LaTeX, not just pdfLaTeX. However, xdvi produces strange +longdesc results, though a recent version of dvips does create good +longdesc ps-files from the dvi files. Also note that logos must either +longdesc be put in the current working directory or in the directories +longdesc of your LaTeX distribution. For some reason graphicspath +longdesc settings are ignored. +containersize 6612 +containerchecksum 1a4292c9fb6dd8a8780968c69ee70a88dd5d1c5d81df9a32e22e08c9115528d8af634a1681fb1672664d57f80ab333a1b811a9c0e17597afdc358988e14fae93 +doccontainersize 160588 +doccontainerchecksum 6ea102c2318e30080224684693806e16008f946a01fe9e1d232a871f231100d1491324a3ab0260746a61a10125afff6b20072c1a49c8da279a4c0b477361e46b +docfiles size=176 + RELOC/doc/latex/sciposter/README details="Readme" + RELOC/doc/latex/sciposter/sciposterexample/auto/sciposter-example.el + RELOC/doc/latex/sciposter/sciposterexample/blocks1.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks1a.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1a.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks1mx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1mx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks1vx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1vx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks2.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks2.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks2mx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks2mx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3mx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3mx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3op.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3op.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3openvx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3rec.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3rec.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3vx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3vx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3a.eps + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3a.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vy.eps + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vy.pdf + RELOC/doc/latex/sciposter/sciposterexample/sciposter-example.tex + RELOC/doc/latex/sciposter/scipostermanual.pdf details="Package manual" +runfiles size=16 + RELOC/tex/latex/sciposter/paperb0.cfg + RELOC/tex/latex/sciposter/paperb1.cfg + RELOC/tex/latex/sciposter/paperb2.cfg + RELOC/tex/latex/sciposter/paperb3.cfg + RELOC/tex/latex/sciposter/papercustom.cfg + RELOC/tex/latex/sciposter/paperra0.cfg + RELOC/tex/latex/sciposter/paperra1.cfg + RELOC/tex/latex/sciposter/paperra2.cfg + RELOC/tex/latex/sciposter/sciposter.cls +catalogue-also a0poster +catalogue-ctan /macros/latex/contrib/sciposter +catalogue-license lppl +catalogue-topics poster +catalogue-version 1.18 + +name sclang-prettifier +category Package +revision 35087 +shortdesc Prettyprinting SuperCollider source code +relocated 1 +longdesc Built on top of the listings package, the package allows +longdesc effortless prettyprinting of SuperCollider source code in +longdesc documents typeset with LaTeX & friends. +containersize 2248 +containerchecksum 77f8909b870fbaa4f1a0414f75f08ac602051d26c0c935be8661be8820a0b77734b614b9f5c8333b1f1fd12f57a6ee3c4c403f151bc60300e454673a2a4235c2 +doccontainersize 513152 +doccontainerchecksum 7680fa17762f17d2d7f3c9d3062bd194394bbbfbee36e4704e8b95b2be568cab51fd1dac9d90c6034919b3ec61f75f0f7689478c16f53ac7b4ee820768eaffa8 +docfiles size=127 + RELOC/doc/latex/sclang-prettifier/README details="Readme" + RELOC/doc/latex/sclang-prettifier/sclang-prettifier.pdf details="Package documentation" +srccontainersize 9276 +srccontainerchecksum 8a9188cccf4eece9844156747bdf8414bd42227cdb64ae79ce2e95c729ebed16c9af14abb943cb1caaaebb693bde4d39e39d1302afc0595444d16b3bafa98131 +srcfiles size=8 + RELOC/source/latex/sclang-prettifier/sclang-prettifier.dtx + RELOC/source/latex/sclang-prettifier/sclang-prettifier.ins +runfiles size=2 + RELOC/tex/latex/sclang-prettifier/sclang-prettifier.sty +catalogue-also listings +catalogue-ctan /macros/latex/contrib/sclang-prettifier +catalogue-license lppl1.3 +catalogue-topics listing synt-hlt +catalogue-version 0.1 + +name scontents +category Package +revision 53504 +shortdesc Stores LaTeX contents in memory or files +relocated 1 +longdesc This package stores valid LaTeX code in memory (sequences) +longdesc using the l3seq module of expl3. The stored content (including +longdesc verbatim) can be used as many times as desired in the document, +longdesc additionally can be written to external files if desired. +containersize 8844 +containerchecksum 3db5230a958ab9fc7cbc644e13e9861823f9a55c5426a9b3fc2c483e86f62369f4cbba869c2a0874684fe2d8ce1a6b0e8feb53b1a4c1d7d9fe94893a51c8ea03 +doccontainersize 358504 +doccontainerchecksum 1d9c515aa099baa507fb776492c59d94397e49ff8ed95de49ca8ef6b91ddf3a7a1e9df0484b2b9100d71788951f9016b9c5318778207d1c973c91867dc2107ae +docfiles size=93 + RELOC/doc/latex/scontents/README.md details="Readme" + RELOC/doc/latex/scontents/scontents.pdf details="Package documentation" +srccontainersize 29576 +srccontainerchecksum 9a0f8133b8e7b04e4919ed4b32e0666ca6c31bf52449b5aef26ab36d9d20518981df40a4a59a8d38f1bfd364b19a4b9d6238f0b3f68f7e7c932d4bd68dda2d06 +srcfiles size=34 + RELOC/source/latex/scontents/scontents.dtx + RELOC/source/latex/scontents/scontents.ins +runfiles size=16 + RELOC/tex/context/third/scontents/t-scontents.mkiv + RELOC/tex/generic/scontents/scontents-code.tex + RELOC/tex/generic/scontents/scontents.tex + RELOC/tex/latex/scontents/scontents.sty +catalogue-contact-bugs https://github.com/pablgonz/scontents/issues +catalogue-contact-repository https://github.com/pablgonz/scontents +catalogue-ctan /macros/latex/contrib/scontents +catalogue-license lppl1.3c +catalogue-topics file-mgmt expl3 +catalogue-version 1.9 + +name scratch +category Package +revision 50073 +shortdesc Draw programs like "scratch" +relocated 1 +longdesc This package is now obsolete. From now on, scratch at +longdesc scratch.mit.edu is now version3 with a new design. Please, use +longdesc the "scratch3" package to draw blocks with the new design. This +longdesc package permits to draw program charts in the style of the +longdesc scatch project (scratch.mit.edu). It depends on the other LaTeX +longdesc packages TikZ and simplekv. +containersize 8388 +containerchecksum fcee832dbad22e76387bbd10f7ea8e3127a6fac45ea1b42feb183506cd5c89c258cafb052d75e4d14b431a57e638fc84fc751bbb8fa700420197a0d2e33ead48 +doccontainersize 506808 +doccontainerchecksum af7057f28ac0539a555db5774d3d29e01ba10fa78744712a5d76f95229c45022f682c321a551cb5070ab3e370b2d9e861c0b04b73365e828fe665b3f8aeb7730 +docfiles size=131 + RELOC/doc/latex/scratch/README details="Readme" + RELOC/doc/latex/scratch/scratch-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/scratch/scratch-fr.tex +runfiles size=13 + RELOC/tex/latex/scratch/scratch.sty +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-license lppl1.3c +catalogue-topics games pgf-tikz obsolete +catalogue-version 0.41 + +name scratch3 +category Package +revision 56258 +shortdesc Draw programs like "scratch" +relocated 1 +longdesc This package permits to draw program charts in the style of the +longdesc scatch project (scratch.mit.edu). It depends on the other LaTeX +longdesc packages TikZ and simplekv. +containersize 8748 +containerchecksum 40d781fcb2ba3628e6e7825d48873917c6a138b46ec2b5c5be894639c1ada93eb3632e17e5be6dbb9974d092f3b75c891dccb33cd93fbdb61dc3261400065d2e +doccontainersize 518596 +doccontainerchecksum 93fecddc8a36f4ed1c302939678e314b178b600b5983754a9bf7b2b343a8e61174dd7c9aa7926c9c93714045e3e8b9fecc77889562f2f407fe2494283265d69e +docfiles size=134 + RELOC/doc/latex/scratch3/README details="Readme" + RELOC/doc/latex/scratch3/scratch3-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/scratch3/scratch3-fr.tex +runfiles size=12 + RELOC/tex/latex/scratch3/scratch3.sty +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-license lppl1.3c +catalogue-topics games pgf-tikz +catalogue-version 0.18 + +name scratchx +category Package +revision 44906 +shortdesc Include Scratch programs in LaTeX documents +relocated 1 +longdesc This package can be used to include every kind of Scratch +longdesc program in LaTeX documents. This may be particularly useful for +longdesc Math Teachers and IT specialists. The package depends on the +longdesc following other LaTeX packages: calc, fp, ifsym, multido, tikz, +longdesc xargs, and xstring. +containersize 7280 +containerchecksum 793c4e96cedd97ca37b7906b6a9e78bb06f39572ddfb57d8e4b54dd9b2846b31bbdd835fe1a93517d1430448571a30d26fa8ad7cad0aa3fab6ca526bacb605b6 +doccontainersize 427720 +doccontainerchecksum c87994e90a748fa8afba91b443850a2d9f555ff4ac6b264107b42981e078b6966e8cbffd75f071f3f69a78c9b9aa10db65c3e855a4920f3b732446df01da7d6c +docfiles size=130 + RELOC/doc/latex/scratchx/Explanations_ScratchX.pdf details="Package documentation" + RELOC/doc/latex/scratchx/Explanations_ScratchX.tex + RELOC/doc/latex/scratchx/Explications_ScratchX.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/scratchx/Explications_ScratchX.tex + RELOC/doc/latex/scratchx/README.txt details="Readme" +runfiles size=10 + RELOC/tex/latex/scratchx/ScratchX.sty +catalogue-ctan /macros/latex/contrib/scratchx +catalogue-license lppl1.3c +catalogue-topics games pgf-tikz +catalogue-version 1.1 + +name screenplay +category Package +revision 27223 +shortdesc A class file to typeset screenplays +relocated 1 +longdesc The class implements the format recommended by the Academy of +longdesc Motion Picture Arts and Sciences. +containersize 2764 +containerchecksum d14dd76c4b1abd9ff7adbef7e4c3bc1f732156dc2d989787bed7382e0288c44dcde18ce05143e6af03ebe83c753bd2b6682cb4f56c73934ca4209a114eb9e3ef +doccontainersize 154500 +doccontainerchecksum ed723ffc17a98c8d4a8c960f56a3550ea74db84fdd06d26b08b5c46b12310fdb9b7b7719ffa25e8ddd21f17642f5f64f1c96327066a131c468cee8ff185cb199 +docfiles size=52 + RELOC/doc/latex/screenplay/COPYING + RELOC/doc/latex/screenplay/README details="Package README" + RELOC/doc/latex/screenplay/example.tex + RELOC/doc/latex/screenplay/screenplay.pdf details="Package documentation" + RELOC/doc/latex/screenplay/test.pdf details="Example script" + RELOC/doc/latex/screenplay/test.tex +srccontainersize 17316 +srccontainerchecksum f6ada6c467c3a9d11096928dc31c7f71131f0b40146a697bda2a3e194c86070a776323c76c8b6da0edd247f8fcd1a65c286801a7353bb53bc6aa364bb7a75944 +srcfiles size=14 + RELOC/source/latex/screenplay/screenplay.dtx + RELOC/source/latex/screenplay/screenplay.ins +runfiles size=3 + RELOC/tex/latex/screenplay/hardmarg.sty + RELOC/tex/latex/screenplay/screenplay.cls +catalogue-also scripttex screenplay-pkg +catalogue-ctan /macros/latex/contrib/screenplay +catalogue-license gpl +catalogue-topics drama-script class +catalogue-version 1.6 + +name screenplay-pkg +category Package +revision 44965 +shortdesc Package version of the screenplay document class +relocated 1 +longdesc This package implements the tools of the screenplay document +longdesc class in the form of a package so that screenplay fragments can +longdesc be included within another document class. For full +longdesc documentation of the available commands, please consult the +longdesc screenplay class documentation in addition to the included +longdesc package documentation. +containersize 2524 +containerchecksum 974795ca0b4a286077e38f4b3b120cf9fe243d450b87b8397adec2c5425b865cdfbe70b86b815d513edb6ae7051d9ad3003fcd6a15b5b02b624dcd4ee0534164 +doccontainersize 163776 +doccontainerchecksum 9aa4407d1b317442dd76f762af5b673460bbbcec89e47835521688085183e00ba9dbb70dc9e86a95235bd9a32da701c846ceb2985dc70894ca8abe334428a532 +docfiles size=45 + RELOC/doc/latex/screenplay-pkg/README details="Readme" + RELOC/doc/latex/screenplay-pkg/screenplay-pkg-example.pdf details="Example of use" + RELOC/doc/latex/screenplay-pkg/screenplay-pkg-example.tex + RELOC/doc/latex/screenplay-pkg/screenplay-pkg.pdf details="Package documentation" + RELOC/doc/latex/screenplay-pkg/screenplay-pkg.tex +runfiles size=2 + RELOC/tex/latex/screenplay-pkg/screenplay-pkg.sty +catalogue-also screenplay +catalogue-ctan /macros/latex/contrib/screenplay-pkg +catalogue-license lppl1.3 +catalogue-topics drama-script +catalogue-version 1.1 + +name scrjrnl +category Package +revision 27810 +shortdesc Typeset diaries or journals +relocated 1 +longdesc A class, based on scrbook, designed for typesetting diaries, +longdesc journals or devotionals. +containersize 2608 +containerchecksum 39198edddb3a3ce24bdc0d9cc6f5d7ff204b142c200a9ce36060bb016f1e1e1750b83210a91f1eec90a205c5a4923704bdc0e44876c462eb768355407597a05c +doccontainersize 122072 +doccontainerchecksum bf6dc1704ce60f9323b68d39502fe95d4eaf8409bf65c278e64deb1ff80aaa84f16e294ab08629466b6f8c0ca02ec03142abdf3fe0a43f862352d0ec55dd410a +docfiles size=33 + RELOC/doc/latex/scrjrnl/README details="Readme" + RELOC/doc/latex/scrjrnl/example.pdf details="Example of use (with lipsum)" + RELOC/doc/latex/scrjrnl/scrjrnl.pdf details="Package documentation" +srccontainersize 4896 +srccontainerchecksum 05b0a8e50efd2f21699c3bd476cd308e02267a6dc2a9cd480e0f7b2e6d9633c830927c54eaf75e4d329a8f6a8d3993782ecfe2add7b450016f7e7bc92aea1b2e +srcfiles size=5 + RELOC/source/latex/scrjrnl/scrjrnl.dtx + RELOC/source/latex/scrjrnl/scrjrnl.ins +runfiles size=2 + RELOC/tex/latex/scrjrnl/scrjrnl.cls +catalogue-ctan /macros/latex/contrib/scrjrnl +catalogue-license lppl1.3 +catalogue-topics journ-personal class +catalogue-version 0.1 + +name scrlayer-fancyhdr +category Package +revision 58746 +shortdesc Combining package fancyhdr with KOMA-Script's scrlayer +relocated 1 +longdesc This LaTeX package uses KOMA-Script's scrlayer to redefine the +longdesc page styles of package fancyhdr. This allows the combination of +longdesc features of fancyhdr with features of scrlayer. Before +longdesc KOMA-Script v3.33 scrlayer-fancyhdr was part of KOMA-Script +longdesc itself. +containersize 1420 +containerchecksum a8ad12d27eae43023f8cfd3d32dc22705e38869d9fa38bcc85a955334cc5f328c0b9a6db2070876cc5fd7dfd5c2bc24f1cc45b39fe90b62ecd3893c458399ee3 +doccontainersize 244532 +doccontainerchecksum d531044dd22635bca73e3ad22c5e523cada7e448269cb6f655a973302d7968cb463efc551fce33afda588a0fe0800d33bca601d736e7c97cd8fe00bb2e3c378f +docfiles size=62 + RELOC/doc/latex/scrlayer-fancyhdr/LICENSE.md + RELOC/doc/latex/scrlayer-fancyhdr/README.md details="Readme" + RELOC/doc/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.pdf details="Package documentation" +srccontainersize 11100 +srccontainerchecksum 3bd0f2660293521eb094ab307e4ce0b685472b7f92656c5ddf027539649bfe3dffcf5fc4a53220ceafde62d0ac9180aa1a5285984dfc2d2d735ab201161b932a +srcfiles size=11 + RELOC/source/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.dtx +runfiles size=1 + RELOC/tex/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.sty +catalogue-contact-announce https://github.com/komascript/scrlayer-fancyhdr/wiki +catalogue-contact-bugs https://github.com/komascript/scrlayer-fancyhdr/issues +catalogue-contact-home https://github.com/komascript/scrlayer-fancyhdr +catalogue-contact-repository https://github.com/komascript/scrlayer-fancyhdr.git +catalogue-ctan /macros/latex/contrib/scrlayer-fancyhdr +catalogue-license lppl1.3c +catalogue-topics page-hf +catalogue-version 0.2.1 + +name scrlttr2copy +category Package +revision 56733 +shortdesc A letter class option file for the automatic creation of copies +relocated 1 +longdesc The file copy.lco provides the new class option "copy" for the +longdesc KOMA-Script letter class scrlttr2. If the option "copy" is +longdesc given, all pages of a specific letter are duplicated with +longdesc background text marking as copies. +containersize 1876 +containerchecksum 5b2f1c1c86a8b3df5bb4d5edfc002ff80449d2cdcf6ec7aea3732d0ba8e6bcaa105675f9f37dd5280d3b9061400d8edc0c67460ac9f1541159484aa51b851fc2 +doccontainersize 88404 +doccontainerchecksum 04728375909e27e0814f9c2dee14697711ceba7b132ee6de63f257e2a6c3eff11a8e808d7929bbd0c9346b459afec57dd62d523314381c0c19a5e2b8b3650f20 +docfiles size=24 + RELOC/doc/latex/scrlttr2copy/README.md details="Readme" + RELOC/doc/latex/scrlttr2copy/letter-copy-test.pdf details="Example document" + RELOC/doc/latex/scrlttr2copy/letter-copy-test.tex +runfiles size=1 + RELOC/tex/latex/scrlttr2copy/copy.lco +catalogue-contact-bugs https://github.com/rolfn/scrlttr2copy/issues +catalogue-contact-home https://github.com/rolfn/scrlttr2copy +catalogue-contact-repository https://github.com/rolfn/scrlttr2copy +catalogue-ctan /macros/latex/contrib/scrlttr2copy +catalogue-license lppl1.3 +catalogue-topics letter +catalogue-version 0.3a + +name scsnowman +category Package +revision 54080 +shortdesc Snowman variants using TikZ +relocated 1 +longdesc This LaTeX package provides a command \scsnowman which can +longdesc display many variants of "snowman" ("yukidaruma" in Japanese). +longdesc TikZ is required for drawing these snowmen. +containersize 6124 +containerchecksum 61d9ae5c1632d4fcf5058fd1bb004cadb1a1becfe75d00335509c68624a62cae6780528e2633c89e9a742ea885b207efe5e36d85c402bfd98825dbc8630f200a +doccontainersize 480336 +doccontainerchecksum 542deda691600da9cbea070436c5eb8eda2670cdfee2ac5d46d241a50de87ee6d89062c9f5c0e55341a5ea0224e44472fad867503470c3b52b6729f470b09972 +docfiles size=130 + RELOC/doc/latex/scsnowman/LICENSE + RELOC/doc/latex/scsnowman/Makefile + RELOC/doc/latex/scsnowman/README.md details="Readme" + RELOC/doc/latex/scsnowman/scsnowman-sample.pdf details="Sample of use" language="ja" + RELOC/doc/latex/scsnowman/scsnowman-sample.tex + RELOC/doc/latex/scsnowman/scsnowman-zrtest.pdf + RELOC/doc/latex/scsnowman/scsnowman-zrtest.tex + RELOC/doc/latex/scsnowman/scsnowman.pdf details="Package documentation" + RELOC/doc/latex/scsnowman/scsnowman.tex +runfiles size=9 + RELOC/tex/latex/scsnowman/scsnowman-normal.def + RELOC/tex/latex/scsnowman/scsnowman.sty + RELOC/tex/latex/scsnowman/sctkzsym-base.sty +catalogue-contact-repository https://github.com/aminophen/scsnowman +catalogue-ctan /graphics/pgf/contrib/scsnowman +catalogue-license bsd2 +catalogue-topics amusements graphics pgf-tikz +catalogue-version 1.2d + +name sdaps +category Package +revision 54678 +shortdesc LaTeX support files for SDAPS +relocated 1 +longdesc This bundle contains LaTeX classes and packages to create +longdesc machine readable questionnaires. Metadata is generated for the +longdesc whole document and it is possible to process created forms +longdesc fully automatically using the SDAPS main program. Features +longdesc include: PDF Form generation Advanced array like layouting Can +longdesc flow over multiple pages and repeats the header automatically +longdesc Optional document wide alignment of array environments Has +longdesc complex layout features like rotating the headers to safe space +longdesc Ability to exchange rows and columns on the fly Different +longdesc question types: Freeform text Single/multiple choice questions +longdesc Range questions Layouting questions in rows or columns +longdesc Possibility to pre-fill questionnaires from LaTeX Documentation +longdesc can be found online at https://sdaps.org/class-doc. +containersize 31940 +containerchecksum 506507e08aa6d3e4408c50bad4541feed8bd491f668ba10de131b4ecece0b23ed6666a117e6b5826e7a2e7e0cbe6b64072a5ed5b090d9c2568354ea7a50922d3 +doccontainersize 779648 +doccontainerchecksum 8c98eda0586c02497fbf4a2a0125064b1200f1b16506c720d8103b88b2256e517eb5553d2027fb4a1d8fd711e640b045a9e3a90f152e957b5c3dc6df53509424 +docfiles size=248 + RELOC/doc/latex/sdaps/README details="Readme" + RELOC/doc/latex/sdaps/sdapsarray.pdf + RELOC/doc/latex/sdaps/sdapsbase.pdf details="Package documentation" + RELOC/doc/latex/sdaps/sdapsclassic.pdf + RELOC/doc/latex/sdaps/sdapslayout.pdf + RELOC/doc/latex/sdaps/sdapspdf.pdf +srccontainersize 29356 +srccontainerchecksum 3c6687e548f86f4a96f88264841e33b670d6dcbbdf7debdda2e1d8751ba58abf1e56005f3ac2160f3bf88bd113fee7b72a186ebba3b30c40521ed0f52e7dbbcb +srcfiles size=49 + RELOC/source/latex/sdaps/sdapsarray.dtx + RELOC/source/latex/sdaps/sdapsarray.ins + RELOC/source/latex/sdaps/sdapsbase.dtx + RELOC/source/latex/sdaps/sdapsbase.ins + RELOC/source/latex/sdaps/sdapsclassic.dtx + RELOC/source/latex/sdaps/sdapsclassic.ins + RELOC/source/latex/sdaps/sdapslayout.dtx + RELOC/source/latex/sdaps/sdapslayout.ins + RELOC/source/latex/sdaps/sdapspdf.dtx + RELOC/source/latex/sdaps/sdapspdf.ins +runfiles size=58 + RELOC/tex/latex/sdaps/sdapsarray.sty + RELOC/tex/latex/sdaps/sdapsbase.sty + RELOC/tex/latex/sdaps/sdapsclassic.cls + RELOC/tex/latex/sdaps/sdapscode128.tex + RELOC/tex/latex/sdaps/sdapslayout.sty + RELOC/tex/latex/sdaps/sdapspdf.sty + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Brazilian.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Dutch.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-English.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Finnish.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-French.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-German.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Italian.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Norsk.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Polish.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Portuguese.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Romanian.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Sinhala.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Spanish.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Swedish.dict + RELOC/tex/latex/sdaps/translator-sdaps-dictionary-Ukrainian.dict +catalogue-contact-home https://sdaps.org +catalogue-contact-repository https://github.com/sdaps/sdaps-class/ +catalogue-ctan /macros/latex/contrib/sdaps +catalogue-license lppl1.3c +catalogue-topics class macro-supp package-devel exam pdf-forms table-long +catalogue-version 1.9.8 + +name sdrt +category Package +revision 15878 +shortdesc Macros for Segmented Discourse Representation Theory +relocated 1 +longdesc The package provides macros to produce the 'Box notation' of +longdesc SDRT (and DRT), to draw trees representing discourse relations, +longdesc and finally to have an easy access to various mathematical +longdesc symbols used in that theory, mostly with automatic mathematics +longdesc mode, so they work the same in formulae and in text. +containersize 2680 +containerchecksum 6faa9948e5bb4369fefad7d2b1a5f2bf39baf8b98e8ad3b8f61ade2001b431894ddfbd61e2f1ec73ed767b102f79f8357d965a5c3805c082d8d88bda29e10c6b +doccontainersize 178944 +doccontainerchecksum 570795dd0c4fe0450e628f61e43d05f3e969488890eab2ee1364712e812d839c7b3185c7ddbd27c44c486e234afe36aceb4824e828cb0c9253e8e5479b0b6c15 +docfiles size=61 + RELOC/doc/latex/sdrt/README details="Readme" + RELOC/doc/latex/sdrt/sdrt-doc.pdf details="Package documentation" + RELOC/doc/latex/sdrt/sdrt-doc.tex +runfiles size=3 + RELOC/tex/latex/sdrt/sdrt.sty +catalogue-ctan /macros/latex/contrib/sdrt +catalogue-license lppl +catalogue-topics linguistic +catalogue-version 1.0 + +name sduthesis +category Package +revision 41401 +shortdesc Thesis Template of Shandong University +relocated 1 +longdesc Thesis Template of Shandong University. +containersize 1230616 +containerchecksum 10f1c0a749b9b30dda0e1c7dce4ef2fdd29220b4d77d03b8e71d8c3a460a73c98f8d16e27e6bbab07a66bf7a23cc9d3bf2b12db523232df1142a8563e0068ed8 +doccontainersize 1565692 +doccontainerchecksum afa02606e7df5655ef46b59e92dc54bec9e8f05deb1d9ecd8a0546ee068f2595620cc8dd39d04ea8db53ac7f2e9983ff01ac2646b6946fd3619db64a0bdad332 +docfiles size=404 + RELOC/doc/latex/sduthesis/LICENSE + RELOC/doc/latex/sduthesis/LICENSE.md + RELOC/doc/latex/sduthesis/README details="Readme" + RELOC/doc/latex/sduthesis/README.md + RELOC/doc/latex/sduthesis/sduthesis-demo.pdf details="Package documentation (demo thesis)" language="zh" + RELOC/doc/latex/sduthesis/sduthesis-demo.tex + RELOC/doc/latex/sduthesis/sduthesis.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 24124 +srccontainerchecksum 2c4dddfd7a6fa27ebb4e48e61f8d2887e116eab174e13d9b41efc9b7a3c2f5d5770f000b4acc4275fa82d54ad5ef2129bf614478d11b24a359a38a03d38caa76 +srcfiles size=20 + RELOC/source/latex/sduthesis/sduthesis.dtx + RELOC/source/latex/sduthesis/sduthesis.ins +runfiles size=422 + RELOC/tex/latex/sduthesis/figures/SDU.pdf + RELOC/tex/latex/sduthesis/figures/SDULogo.pdf + RELOC/tex/latex/sduthesis/figures/SDUWords.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-baotuquan.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-hongloujiaotang.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-ruanjianyuan.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-xianzhidadao.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-zhixinlou.jpg + RELOC/tex/latex/sduthesis/sduthesis-cover.def + RELOC/tex/latex/sduthesis/sduthesis-statement.def + RELOC/tex/latex/sduthesis/sduthesis.cls +catalogue-contact-repository https://github.com/Liam0205/sduthesis +catalogue-ctan /macros/latex/contrib/sduthesis +catalogue-license lppl1.3 +catalogue-topics dissertation class chinese +catalogue-version 1.2.1 + +name secdot +category Package +revision 20208 +shortdesc Section numbers with trailing dots +relocated 1 +longdesc Makes the numbers of \section commands come out with a trailing +longdesc dot. Includes a command whereby the same can be made to happen +longdesc with other sectioning commands. +containersize 1572 +containerchecksum 7fb101dcd377cb5e3d1dca352d266af419c6fd83e4f2d1701a3d598e69e8e7f70afc9791a76337f4833da612cf07989ef244af1b24eb62ee59dd5f76225aa037 +doccontainersize 256480 +doccontainerchecksum 7ca1b4102c6f92bfc6dd0571c489852dc5c1df4a58530aea490098192ee256a4df7e0bbee20adff78c2b35dfe39b8cd3f821c5e45dc6d78ab4865b6f08ad8488 +docfiles size=64 + RELOC/doc/latex/secdot/secdot.ltx + RELOC/doc/latex/secdot/secdot.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/latex/secdot/secdot.sty +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-license lppl +catalogue-topics headings +catalogue-version 1.0 + +name secnum +category Package +revision 53657 +shortdesc A macro to format section numbering intuitively +relocated 1 +longdesc This package provides a macro \setsecnum to format section +longdesc numbering intuitively. \setsecnum{1.1.1} will set the section +longdesc numbering format to arabic.arabic.arabic and the depth to 3. +longdesc The package uses LaTeX3. +containersize 1732 +containerchecksum 8e54eb92f9f9c2a07f50e11fc3c68bc39fe4da3eabee3658f24b76c85e8effa8c4cf72a26dc30a8fff9a002a5f66fa1cf349f2ff5ef1dc51eec7c1ae3c0ffe15 +doccontainersize 382656 +doccontainerchecksum e9c44b617d479f9850ad0e408c1c2edc36025f2e1f1e812ecc8370586b22c9aa05f74381e0fa6b1ab39f239bb18e53cc4665482f2b1f3f3057fbeac0f01945d2 +docfiles size=95 + RELOC/doc/latex/secnum/README.md details="Readme" + RELOC/doc/latex/secnum/secnum.pdf details="Package documentation" +srccontainersize 4184 +srccontainerchecksum eb4e6c55332e822b4e0b36fcafbe9fcc8a52e3cc5bad9abf538aa87ce6e0318123c0030f5b6e041701b07abc5cd6ba95a7629eff07c27f220e2188c8f6e4b7e4 +srcfiles size=4 + RELOC/source/latex/secnum/secnum.dtx +runfiles size=2 + RELOC/tex/latex/secnum/secnum.sty +catalogue-contact-repository https://github.com/GauSyu/secnum +catalogue-ctan /macros/latex/contrib/secnum +catalogue-license lppl1.3c +catalogue-topics headings expl3 + +name section +category Package +revision 20180 +shortdesc Modifying section commands in LaTeX +relocated 1 +longdesc The package implements a pretty extensive scheme to make more +longdesc manageable the business of configuring LaTeX output. +containersize 9860 +containerchecksum 8b3eaecd49f8b7046bc35df079541121d76757bc2a1b6a6ffa24357a20e9ec4bf5a7b65fae1673401ebf363e46ecffe3c64a2de9aac104594b2b111cd10426f2 +doccontainersize 357024 +doccontainerchecksum 91defb5391b9e607cfaf74ac3abe53127ddec379d7a7c052f5c8f776bcef1728010a94ef7b590ddac8df140ee11fff4fd843bdbe1a13efd322a9a939ea2df39b +docfiles size=92 + RELOC/doc/latex/section/section-doc.pdf details="Package documentation" + RELOC/doc/latex/section/section-doc.tex +runfiles size=8 + RELOC/tex/latex/section/section.sty +catalogue-ctan /macros/latex/contrib/section +catalogue-license lppl +catalogue-topics headings + +name sectionbox +category Package +revision 37749 +shortdesc Create fancy boxed ((sub)sub)sections +relocated 1 +longdesc Sectionbox is a LaTeX package for putting fancy colored boxes +longdesc around sections, subsections, and subsubsections, especially +longdesc for use in posters, etc. It was designed with the sciposter +longdesc class in mind, and certainly works with that class and with +longdesc derived classes. +containersize 1856 +containerchecksum d1a4da6a59c0411baaa785c58350c1d5be9c1081e0344d8a61fc009f49a1b751a09f358ba1baa3b645de4eff7d69e3781d8b44d90738105c0f56723da36efdb3 +doccontainersize 192044 +doccontainerchecksum 80ae58336eabd8169781c3c30b42b2583f78ffa4093a7d3f9d9e9c6e31a3fb8f457fd42d56f2ff75b2ff3c38b537642dd6f254e54b3112538657a37b3b4e0410 +docfiles size=57 + RELOC/doc/latex/sectionbox/README details="Readme" + RELOC/doc/latex/sectionbox/example/000074Bpatspec.png + RELOC/doc/latex/sectionbox/example/000074Bzones.jpg + RELOC/doc/latex/sectionbox/example/000175Bpatspec.png + RELOC/doc/latex/sectionbox/example/000175Bzones.jpg + RELOC/doc/latex/sectionbox/example/002000AApatspec.png + RELOC/doc/latex/sectionbox/example/002000AAzones.jpg + RELOC/doc/latex/sectionbox/example/README.TEXLIVE + RELOC/doc/latex/sectionbox/example/lambda2.jpg + RELOC/doc/latex/sectionbox/example/orig.jpg + RELOC/doc/latex/sectionbox/example/sectionboxexample.bib + RELOC/doc/latex/sectionbox/example/sectionboxexample.tex + RELOC/doc/latex/sectionbox/sectionboxmanual.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/latex/sectionbox/sectionbox.sty +catalogue-ctan /macros/latex/contrib/sectionbox +catalogue-license lppl +catalogue-topics decoration +catalogue-version 1.01 + +name sectionbreak +category Package +revision 50339 +shortdesc LaTeX support for section breaks +relocated 1 +longdesc This package provides LaTeX support for section breaks, used +longdesc mainly in fiction books to signal changes in a story, like +longdesc changes in time, location, etc. It supports the asterism +longdesc symbol, text content, or custom macros as the section break +longdesc mark symbol. +containersize 1332 +containerchecksum 4b2c26642ba346acce5aff9678bf94f76d85005464f80eaae862a522bcbfa34c1671af79671982a91208ef104a21a532d851dcc785b5c40de4fe462d12488832 +doccontainersize 50844 +doccontainerchecksum a98eede394708bf612f593e00c58b5500a35b5173381c1f149d0be29b49fe95f5162602177b7d4f23c5b5312d7cdf47ea6ced8bc285853d2b7d77926a6ca66b0 +docfiles size=17 + RELOC/doc/latex/sectionbreak/CHANGELOG.md + RELOC/doc/latex/sectionbreak/README.md details="Readme" + RELOC/doc/latex/sectionbreak/sectionbreak-doc.pdf details="Package documentation" + RELOC/doc/latex/sectionbreak/sectionbreak-doc.tex + RELOC/doc/latex/sectionbreak/sectionbreak-example.tex +runfiles size=1 + RELOC/tex/latex/sectionbreak/sectionbreak.sty +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-license lppl1.3 +catalogue-topics decoration headings +catalogue-version 0.1d + +name sectsty +category Package +revision 15878 +shortdesc Control sectional headers +relocated 1 +longdesc A LaTeX2e package to help change the style of any or all of +longdesc LaTeX's sectional headers in the article, book, or report +longdesc classes. Examples include the addition of rules above or below +longdesc a section title. +containersize 4852 +containerchecksum 7e164b14f29a385f8a97e09ad124c347a154e316ac2eb41e0bf9f161d44f2782995fe271b5472ef90dfa4ffdd5495de81090b44f5777243ea76c9f75fcbde2b4 +doccontainersize 216820 +doccontainerchecksum 69d7fc032c06d015d7a6e6d2273c5240b146062565882fca0ddf5b7b795b788207bc9b478366a0a40e4acf223b07482f5cf41a65dd9b37047bcbf12566f6a826 +docfiles size=57 + RELOC/doc/latex/sectsty/sectsty.pdf details="Package documentation" +srccontainersize 21356 +srccontainerchecksum fc79d4c7c437d9c5ff7d8dc62439242cb772f250527ca099cd1180e58742a9ff42e7c63776c24fa5563c95b5d2bccd97df0e1c086869bbcf5ff2ed8ff5297bf4 +srcfiles size=23 + RELOC/source/latex/sectsty/sectsty.dtx + RELOC/source/latex/sectsty/sectsty.ins +runfiles size=6 + RELOC/tex/latex/sectsty/sectsty.sty +catalogue-also titlesec +catalogue-ctan /macros/latex/contrib/sectsty +catalogue-license lppl +catalogue-topics headings +catalogue-version 2.0.2 + +name seealso +category Package +revision 43595 +shortdesc Improve the performance of \see macros with makeindex +relocated 1 +longdesc The package amends the \see and \seealso macros that are used +longdesc in building indexes with makeindex, to deal with repetitions, +longdesc and to ensure page numbers are present in the actual index +longdesc entries. on these indirecty +containersize 2240 +containerchecksum 4d52687aa57245d3be55bf486b100d61fe2e2d979447c2f123f566c3aeb13657e531ace55fe5d00eab57cebe89cfd3729a71dc7177831b5192b8c0fde452d7df +doccontainersize 251844 +doccontainerchecksum 6baba95b6b08ef95f2966d227161ea39a4084b46371967057266ddae155b115fbe4fcf148e1afc4629e33f54d0329ebb6169f1be4fdcb801d869b212d056cc61 +docfiles size=64 + RELOC/doc/latex/seealso/README + RELOC/doc/latex/seealso/seealso.pdf details="Package documentation" +srccontainersize 11592 +srccontainerchecksum 981ed17cba32b2bdc4848c099038193dba2b39d04210cbb2851400044654234c75c160f9c775af2fad6b76b80c85c782fe6ea75a61728ab67193dcf414b0b4d8 +srcfiles size=11 + RELOC/source/latex/seealso/seealso.dtx + RELOC/source/latex/seealso/seealso.ins +runfiles size=2 + RELOC/tex/latex/seealso/seealso.sty +catalogue-ctan /macros/latex/contrib/seealso +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 1.2 + +name seetexk +category TLCore +revision 57972 +catalogue dvibook +shortdesc Utilities for manipulating DVI files +longdesc The collection comprises: dvibook, which will rearrange the +longdesc pages of a DVI file into 'signatures' as used when printing a +longdesc book; dviconcat, for concatenating pages of DVI file(s); +longdesc dviselect, which will select pages from one DVI file to create +longdesc a new DVI file; dvitodvi, which will rearrange the pages of a +longdesc DVI file to create a new file; and libtex, a library for +longdesc manipulating the files, from the old SeeTeX project. The +longdesc utilities are provided as C source with Imakefiles, and an +longdesc MS-DOS version of dvibook is also provided. +depend seetexk.ARCH +containersize 616 +containerchecksum 1f217550f7455a82dd1771556045e10a39138eebddc90f4d38a274d56d9072501d94476c6045012f3c5cda43aea71924268fd222895079b225d893df3b78fa97 +doccontainersize 70108 +doccontainerchecksum 1b36ac131e25541123a7d18e9a5e3cb1fccab04ffca1b0d1e5a036a26de99fb05e6745d43cac6dc76a295eac5503f90eafdb2b40f96c88836123b5b599a47e2e +docfiles size=27 + texmf-dist/doc/man/man1/dvibook.1 + texmf-dist/doc/man/man1/dvibook.man1.pdf + texmf-dist/doc/man/man1/dviconcat.1 + texmf-dist/doc/man/man1/dviconcat.man1.pdf + texmf-dist/doc/man/man1/dviselect.1 + texmf-dist/doc/man/man1/dviselect.man1.pdf + texmf-dist/doc/man/man1/dvitodvi.1 + texmf-dist/doc/man/man1/dvitodvi.man1.pdf +catalogue-ctan /dviware/dvibook +catalogue-license other-free +catalogue-topics dvi-proc + +name seetexk.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of seetexk +containersize 25560 +containerchecksum 727e80b9062f69d9363442c4b69aaf3c575abdb103f5af263140aa426c9f857d1f038e5e010f3cc35340f38d496e655107f111ce8271ad248030a5744f002c44 +binfiles arch=aarch64-linux size=29 + bin/aarch64-linux/dvibook + bin/aarch64-linux/dviconcat + bin/aarch64-linux/dviselect + bin/aarch64-linux/dvitodvi + +name seetexk.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of seetexk +containersize 42456 +containerchecksum 36f4784c773aa0dbb48a41072445dedb9129a4c9be8a1ee4dfb9122765b0d2bd1039d15958751e14fc75978e5371a29973d6f0c85eeb857ddaf840877e7b849f +binfiles arch=amd64-freebsd size=48 + bin/amd64-freebsd/dvibook + bin/amd64-freebsd/dviconcat + bin/amd64-freebsd/dviselect + bin/amd64-freebsd/dvitodvi + +name seetexk.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of seetexk +containersize 31516 +containerchecksum 9c064ba23a7c8596fb8e1bd84c43cb655eccd8c959d460f03b3c2c3d6924637b0486012ae744ea9b984223ba6a6fbbfee2ae77558b7b72580ff817506f57492e +binfiles arch=amd64-netbsd size=40 + bin/amd64-netbsd/dvibook + bin/amd64-netbsd/dviconcat + bin/amd64-netbsd/dviselect + bin/amd64-netbsd/dvitodvi + +name seetexk.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of seetexk +containersize 21252 +containerchecksum 64650d909d1fca40a501241ec67181dd397e27d257dc2791453d08d99947e4f4a5a06f0252a7ceba877f46b2b1b8457809f4b5bb109eccb0ca0a642eb28b7df9 +binfiles arch=armhf-linux size=24 + bin/armhf-linux/dvibook + bin/armhf-linux/dviconcat + bin/armhf-linux/dviselect + bin/armhf-linux/dvitodvi + +name seetexk.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of seetexk +containersize 23124 +containerchecksum 60928a6d136791f316a64122d65929805dbc0d91ddcea9142f5057c70fd5c6dfcef31407e101b8baeb4f4893104c78fa9f9fad44b363f360c77842bf9fbfb796 +binfiles arch=i386-cygwin size=29 + bin/i386-cygwin/dvibook.exe + bin/i386-cygwin/dviconcat.exe + bin/i386-cygwin/dviselect.exe + bin/i386-cygwin/dvitodvi.exe + +name seetexk.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of seetexk +containersize 36048 +containerchecksum e4c05b97875658c7fe7a933615849ccbd7fc0d6888752c85083c780ee78db10862a70308ed1ec3f2086203897209597b8a3840863d17a8c6112d907084f1425f +binfiles arch=i386-freebsd size=40 + bin/i386-freebsd/dvibook + bin/i386-freebsd/dviconcat + bin/i386-freebsd/dviselect + bin/i386-freebsd/dvitodvi + +name seetexk.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of seetexk +containersize 26796 +containerchecksum 0111d5ccb4feaf64deadcda7265c40956c8edb01c7e06548f1f54586aa9987de8f71210ab8dfe8c0b85654069a75de7840461156995fb357a36ba9fc4412965d +binfiles arch=i386-linux size=26 + bin/i386-linux/dvibook + bin/i386-linux/dviconcat + bin/i386-linux/dviselect + bin/i386-linux/dvitodvi + +name seetexk.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of seetexk +containersize 27208 +containerchecksum 69b0d560d28bf4d6ef9297c3d6585be053fd7cdf909d9cdf943d456f67b002715cac027e31be436f2994584c83a26e7710a8272486765ae03fce6443cb31901e +binfiles arch=i386-netbsd size=34 + bin/i386-netbsd/dvibook + bin/i386-netbsd/dviconcat + bin/i386-netbsd/dviselect + bin/i386-netbsd/dvitodvi + +name seetexk.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of seetexk +containersize 37360 +containerchecksum 824ce77da080033accd809a3d2151db7f97514574ab5263645604a24c1c008f3df83415c4a2377e95bab38c1f152f8e0fcb63f4dca22d24d985923a0d889ed42 +binfiles arch=i386-solaris size=36 + bin/i386-solaris/dvibook + bin/i386-solaris/dviconcat + bin/i386-solaris/dviselect + bin/i386-solaris/dvitodvi + +name seetexk.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of seetexk +containersize 66780 +containerchecksum b7bafa4c68589ab61cf31c93772efc608623b87de4da3e59bfbee3fd96ae4c833b431d72942308fd6ab4f2502ffef91817a6b0df1fd683773f9bc5e2a43e96c0 +binfiles arch=universal-darwin size=152 + bin/universal-darwin/dvibook + bin/universal-darwin/dviconcat + bin/universal-darwin/dviselect + bin/universal-darwin/dvitodvi + +name seetexk.win32 +category TLCore +revision 58783 +shortdesc win32 files of seetexk +containersize 26656 +containerchecksum 19a7cf157216411097797131939ebc0341d2042f52e80759e3038c6dabb5bd9d51c7aad11b99dd3f7a2aeec150e5169e361683d28fa153ab2b38b7b5af3a4183 +binfiles arch=win32 size=27 + bin/win32/dvibook.exe + bin/win32/dviconcat.exe + bin/win32/dviselect.exe + bin/win32/dvitodvi.exe + +name seetexk.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of seetexk +containersize 26016 +containerchecksum 2de5456b6c26e071a6c1bdd9d86485fb027002d8a669c778e6e7a838f0b8c1bb45d88f60d31e9322141bb1a74d7c5761fad9dcc0df260725422b53befd6f2305 +binfiles arch=x86_64-cygwin size=28 + bin/x86_64-cygwin/dvibook.exe + bin/x86_64-cygwin/dviconcat.exe + bin/x86_64-cygwin/dviselect.exe + bin/x86_64-cygwin/dvitodvi.exe + +name seetexk.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of seetexk +containersize 29888 +containerchecksum a3f9c9f5e8bf02d30277b5bb4bc55754014547cf6b4b72baecb9b0989b7b27a0cc4405fb1816a4abd807e8eeae59e0a4065475f17989718a81d80fb009fe41e2 +binfiles arch=x86_64-darwinlegacy size=33 + bin/x86_64-darwinlegacy/dvibook + bin/x86_64-darwinlegacy/dviconcat + bin/x86_64-darwinlegacy/dviselect + bin/x86_64-darwinlegacy/dvitodvi + +name seetexk.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of seetexk +containersize 27536 +containerchecksum 9d42fc604b0157ab496878eecfc265e9e4886b69317830955c4047a8b8105dba5700e5046eb18d9fa66f6edffbbb2306be08d9d55774d942526faa95ae7358c7 +binfiles arch=x86_64-linux size=27 + bin/x86_64-linux/dvibook + bin/x86_64-linux/dviconcat + bin/x86_64-linux/dviselect + bin/x86_64-linux/dvitodvi + +name seetexk.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of seetexk +containersize 31228 +containerchecksum b5adf92ee50db357a95214d7a0c161352fafa5e9e3f61150f1469db52d685af3ad33d12dd1b91a3677e15efc626bfecfcb6d9c2c676de4facbbec37adfe212c8 +binfiles arch=x86_64-linuxmusl size=33 + bin/x86_64-linuxmusl/dvibook + bin/x86_64-linuxmusl/dviconcat + bin/x86_64-linuxmusl/dviselect + bin/x86_64-linuxmusl/dvitodvi + +name seetexk.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of seetexk +containersize 36464 +containerchecksum 72ed0499d7b2f73f991763a89e0aef5480d473febcfd47bb1cbdcbc22b2e260c6728bbd7c4fd43cba1804ebe1018f2a22ccdfce93da7e109319b9c506f3b3c39 +binfiles arch=x86_64-solaris size=36 + bin/x86_64-solaris/dvibook + bin/x86_64-solaris/dviconcat + bin/x86_64-solaris/dviselect + bin/x86_64-solaris/dvitodvi + +name selectp +category Package +revision 20185 +shortdesc Select pages to be output +relocated 1 +longdesc Defines a command \outputonly, whose argument is a list of +longdesc pages to be output. With the command present (before +longdesc \begin{document}), only those pages are output. This package +longdesc was inspired by code published by Knuth in TUGboat 8(2) (July +longdesc 1987). +containersize 4196 +containerchecksum 1674c9c9d7afbc851f8c4fad1b46a1ec18161eb48375d892c947416ee97791addf92f75a69090c95a0f08bbaac1a7a745af93a7bcf91e2e0f8117ed3f3106dc9 +doccontainersize 280200 +doccontainerchecksum 7c99f0400841cb1d88af4c239f43eaec7c0b2358c2e581866d4361cd86b9eff413bc9e07d8df630ddff8d4f37193896bd430f4c357d9cc04591295f18ebd09aa +docfiles size=70 + RELOC/doc/latex/selectp/selectp-doc.pdf details="Package documentation" + RELOC/doc/latex/selectp/selectp-doc.tex +runfiles size=3 + RELOC/tex/latex/selectp/selectp.sty +catalogue-also selectpage pagesel +catalogue-ctan /macros/latex/contrib/selectp +catalogue-license pd +catalogue-topics page-control +catalogue-version 1.0 + +name selinput +category Package +revision 53098 +shortdesc Semi-automatic detection of input encoding +relocated 1 +longdesc This package selects the input encoding by specifying pairs of +longdesc input characters and their glyph names. +containersize 2548 +containerchecksum 41888a394e4c9adc60242e4c689b272a7b4e2a2db2e4824e0068a305cdae59c1edd46b0a9e45909cf29381f240693234330fb3488be68831136f8f04a72faca6 +doccontainersize 536588 +doccontainerchecksum 918b0b2bbb8230a482418c56de8081bb455980e178843b0ea84b18435c1fbfcd50a71cd0491b89c5797a374479060175219333bbde2ab28b5147cb5c3fd65ff3 +docfiles size=133 + RELOC/doc/latex/selinput/README.md + RELOC/doc/latex/selinput/selinput.pdf details="Package documentation" +srccontainersize 6840 +srccontainerchecksum c6b2c23826216a5c479c3cb3de1685dd4d695422ec67fa7109e7a1adb46dd7ad8cd21138a480e8e13bce1c4184fea0153114f338a5754778b22dc173d6f9445d +srcfiles size=6 + RELOC/source/latex/selinput/selinput.dtx +runfiles size=2 + RELOC/tex/latex/selinput/selinput.sty +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-license lppl1.3 +catalogue-topics inputenc +catalogue-version 1.6 + +name selnolig +category Package +revision 38721 +shortdesc Selectively disable typographic ligatures +relocated 1 +longdesc The package suppresses typographic ligatures selectively, i.e., +longdesc based on predefined search patterns. The search patterns focus +longdesc on ligatures deemed inappropriate because they span morpheme +longdesc boundaries. For example, the word shelfful, which is mentioned +longdesc in the TeXbook as a word for which the ff ligature might be +longdesc inappropriate, is automatically typeset as shelf\/ful rather +longdesc than as shel{ff}ul. For English and German language documents, +longdesc the package provides extensive rules for the selective +longdesc suppression of so-called "common" ligatures. These comprise the +longdesc ff, fi, fl, ffi, and ffl ligatures as well as the ft and fft +longdesc ligatures. Other f-ligatures, such as fb, fh, fj and fk, are +longdesc suppressed globally, while exceptions are made for names and +longdesc words of non-English/German origin, such as Kafka and fjord. +longdesc For English language documents, the package further provides +longdesc ligature suppression macros for a number of so-called +longdesc "discretionary" or "rare" ligatures such as ct, st, and sp. The +longdesc package requires use of a recent LuaLaTeX format (for example +longdesc those from TeX Live 2012 or 2013, or MiKTeX 2.9). +containersize 54008 +containerchecksum 8b01d1b6f4e6f83efbfc603be7c510d3c8435559b1272f3e8beae7d0de04ac889e04d539c689abfbfb8af5ff2d04c38459320fec333a122c3b60a1a79a0b115a +doccontainersize 509908 +doccontainerchecksum afc1a84aa85f3da5e5d121de0ee37f5347527985b3a9ae75abf0e51edc1d5371e831b5ffc7218d9863b8ff717554c6f469adec908f02f5d9be3bd4f6e45fc1ac +docfiles size=166 + RELOC/doc/lualatex/selnolig/README details="Readme" + RELOC/doc/lualatex/selnolig/gpp-ft.fea + RELOC/doc/lualatex/selnolig/selnolig-bugreport.tex + RELOC/doc/lualatex/selnolig/selnolig-english-test.pdf + RELOC/doc/lualatex/selnolig/selnolig-english-test.tex + RELOC/doc/lualatex/selnolig/selnolig-english-wordlist.tex + RELOC/doc/lualatex/selnolig/selnolig-german-test.pdf + RELOC/doc/lualatex/selnolig/selnolig-german-test.tex + RELOC/doc/lualatex/selnolig/selnolig-german-wordlist.tex + RELOC/doc/lualatex/selnolig/selnolig.pdf details="Package documentation" + RELOC/doc/lualatex/selnolig/selnolig.tex +runfiles size=59 + RELOC/tex/lualatex/selnolig/selnolig-english-hyphex.sty + RELOC/tex/lualatex/selnolig/selnolig-english-patterns.sty + RELOC/tex/lualatex/selnolig/selnolig-german-hyphex.sty + RELOC/tex/lualatex/selnolig/selnolig-german-patterns.sty + RELOC/tex/lualatex/selnolig/selnolig.lua + RELOC/tex/lualatex/selnolig/selnolig.sty +catalogue-contact-repository https://github.com/micoloretan/selnolig +catalogue-ctan /macros/luatex/latex/selnolig +catalogue-license lppl1.3 +catalogue-topics typesetting luatex +catalogue-version 0.302 + +name semantex +category Package +revision 56863 +shortdesc Semantic, keyval-based mathematics +relocated 1 +longdesc The SemanTeX package for LaTeX delivers a more semantic, +longdesc systematized way of writing mathematics, compared to the +longdesc classical math syntax in LaTeX. The system uses keyval syntax, +longdesc and the user can define their own keys and customize the system +longdesc down to the last detail. At the same time, care has been taken +longdesc to make the syntax as simple, natural, practical, and +longdesc lightweight as possible. Furthermore, the package has a +longdesc companion package, called stripsemantex, which allows you to +longdesc completely strip your documents of SemanTeX markup to prepare +longdesc them e.g. for publication. The package is still in beta, but is +longdesc considered feature-complete and more or less stable, so using +longdesc it at this point should be safe. Still, suggestions, ideas, and +longdesc bug reports are more than welcome! +depend semtex +containersize 23004 +containerchecksum d09b5dc2e6b8031c03b59254b442a8c5502cacd2d24c91f47ae6243cf5908062e79ab0e7a521c2208848ae7f9acb147716cd8a399b362a91a5cfdec87e213814 +doccontainersize 390728 +doccontainerchecksum 829286b336f1d05afa9561d3937fa526b6062b03950b3f350fb4fc586f45fa253d93939b6432685a08c967eb85c053d07c6fe3e08126869ef63fb43bd0acd992 +docfiles size=134 + RELOC/doc/latex/semantex/README.md details="Readme" + RELOC/doc/latex/semantex/semantex.pdf details="Package documentation" + RELOC/doc/latex/semantex/semantex.tex +runfiles size=59 + RELOC/tex/latex/semantex/semantex.sty + RELOC/tex/latex/semantex/stripsemantex.lua + RELOC/tex/latex/semantex/stripsemantex.sty +catalogue-ctan /macros/latex/contrib/semantex +catalogue-license lppl1.3c +catalogue-topics maths expl3 +catalogue-version 0.463 + +name semantic +category Package +revision 15878 +shortdesc Help for writing programming language semantics +relocated 1 +longdesc Eases the typesetting of notation of semantics and compilers. +longdesc Includes T-diagrams, various derivation symbols and inference +longdesc trees. +containersize 6616 +containerchecksum d49c22d4982a33177fdd73c5ff15a68e663c3ff1ec9a45a40e5a8364371a25b536dd6c1dd963296ae998760178833b5f2c357119f41e7bb5a72061f0f9ad23fa +doccontainersize 357820 +doccontainerchecksum 21e9a7efd9fd6dc28be30f284285cc8c13b266eb03c9212b30f97b761c1383e1fb84a18e92437d331d3963068a68c61276cc1fd3446807bedc954a490fc490aa +docfiles size=96 + RELOC/doc/latex/semantic/semantic.pdf details="Package documentation" +srccontainersize 32236 +srccontainerchecksum 4d513b6c9b320b9ddd8ec92fd8eae079134d351170122833e99557fdec7510938d8ef856c52e0a862a8cb8cdffa3894c160dfe085452e0cffc49db4d3fac6a79 +srcfiles size=30 + RELOC/source/latex/semantic/semantic.dtx + RELOC/source/latex/semantic/semantic.ins +runfiles size=10 + RELOC/tex/latex/semantic/infernce.sty + RELOC/tex/latex/semantic/ligature.sty + RELOC/tex/latex/semantic/reserved.sty + RELOC/tex/latex/semantic/semantic.sty + RELOC/tex/latex/semantic/shrthand.sty + RELOC/tex/latex/semantic/tdiagram.sty +catalogue-ctan /macros/latex/contrib/semantic +catalogue-license lppl +catalogue-topics comp-sci +catalogue-version 2.0 + +name semantic-markup +category Package +revision 53607 +shortdesc Meaningful semantic markup in the spirit of the Text Encoding Initiative +relocated 1 +longdesc The package provides simple commands to allow authors +longdesc (especially scholars in the humanities) to write with a focus +longdesc on content rather than presentation. The commands are inspired +longdesc by the XML elements of the Text Encoding Initiative. Commands +longdesc like \term and \foreign are aliases for \emph. \quoted and +longdesc \soCalled are aliases for quoting commands. These commands +longdesc could be easily redefined for different formats. The package +longdesc also provides a footnote environment so that long footnotes can +longdesc be more cleanly separated from the main text. Because the +longdesc author is a music scholar, the package also includes some +longdesc macros for musical symbols and other basic notations for +longdesc musical analysis. +containersize 2500 +containerchecksum f795c901ec0b133520cde8e269364977638d410d6d06207d868e6151e7f43a4d3c54a73780237e2dfb86b9077b0724fccbd7e9121d51a64034f4bd604a38008a +doccontainersize 270076 +doccontainerchecksum f1498e628054e91f7b0ecc0fea7c926aa55d7bec56c3c13ebcc5073f96df84e8c1e255532f9ec72b8133d21511e4f5f2996d95c39c15cb74ae39fffa87d5a785 +docfiles size=69 + RELOC/doc/latex/semantic-markup/README details="Readme" + RELOC/doc/latex/semantic-markup/semantic-markup.pdf details="Package documentation" + RELOC/doc/latex/semantic-markup/semantic-markup.tex +runfiles size=2 + RELOC/tex/latex/semantic-markup/semantic-markup.sty +catalogue-ctan /macros/latex/contrib/semantic-markup +catalogue-license lppl1.3 +catalogue-topics humanities linguistic + +name semaphor +category Package +revision 18651 +shortdesc Semaphore alphabet font +relocated 1 +longdesc These fonts represent semaphore in a highly schematic, but very +longdesc clear, fashion. The fonts are provided as Metafont source, and +longdesc in both OpenType and Adobe Type 1 formats. +execute addMixedMap semaf.map +containersize 244948 +containerchecksum b8741be1544d8ab488632e05464cf607069f0d09df7a727bc05d06175dc16bff461d551e7130e01edbb53863d56fbf4cd0cc9085c51186e19e5f2fae986b400b +doccontainersize 266760 +doccontainerchecksum ef0c85ca5e86a17d59c03255d679d54cc8fb36eec02c8546f29e1c514408559788d1dbe3ac7565224b320b71e9ad77979b1092fb0f098a1c48c3a7093b72b172 +docfiles size=75 + RELOC/doc/fonts/semaphor/README details="Readme" + RELOC/doc/fonts/semaphor/example.pdf details="Listing of semaphor letters" + RELOC/doc/fonts/semaphor/example.tex + RELOC/doc/fonts/semaphor/test-context.pdf + RELOC/doc/fonts/semaphor/test-context.tex +runfiles size=714 + RELOC/fonts/afm/public/semaphor/smfb10.afm + RELOC/fonts/afm/public/semaphor/smfbsl10.afm + RELOC/fonts/afm/public/semaphor/smfeb10.afm + RELOC/fonts/afm/public/semaphor/smfebsl10.afm + RELOC/fonts/afm/public/semaphor/smfer10.afm + RELOC/fonts/afm/public/semaphor/smfesl10.afm + RELOC/fonts/afm/public/semaphor/smfett10.afm + RELOC/fonts/afm/public/semaphor/smfpb10.afm + RELOC/fonts/afm/public/semaphor/smfpbsl10.afm + RELOC/fonts/afm/public/semaphor/smfpr10.afm + RELOC/fonts/afm/public/semaphor/smfpsl10.afm + RELOC/fonts/afm/public/semaphor/smfptt10.afm + RELOC/fonts/afm/public/semaphor/smfr10-1.afm + RELOC/fonts/afm/public/semaphor/smfr10-2.afm + RELOC/fonts/afm/public/semaphor/smfr10.afm + RELOC/fonts/afm/public/semaphor/smfsl10.afm + RELOC/fonts/afm/public/semaphor/smftt10.afm + RELOC/fonts/enc/dvips/semaphor/smfb10.enc + RELOC/fonts/enc/dvips/semaphor/smfbsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfeb10.enc + RELOC/fonts/enc/dvips/semaphor/smfebsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfer10.enc + RELOC/fonts/enc/dvips/semaphor/smfesl10.enc + RELOC/fonts/enc/dvips/semaphor/smfett10.enc + RELOC/fonts/enc/dvips/semaphor/smfpb10.enc + RELOC/fonts/enc/dvips/semaphor/smfpbsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfpr10.enc + RELOC/fonts/enc/dvips/semaphor/smfpsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfptt10.enc + RELOC/fonts/enc/dvips/semaphor/smfr10.enc + RELOC/fonts/enc/dvips/semaphor/smfsl10.enc + RELOC/fonts/enc/dvips/semaphor/smftt10.enc + RELOC/fonts/map/dvips/semaphor/semaf.map + RELOC/fonts/opentype/public/semaphor/smfb10.otf + RELOC/fonts/opentype/public/semaphor/smfbsl10.otf + RELOC/fonts/opentype/public/semaphor/smfeb10.otf + RELOC/fonts/opentype/public/semaphor/smfebsl10.otf + RELOC/fonts/opentype/public/semaphor/smfer10.otf + RELOC/fonts/opentype/public/semaphor/smfesl10.otf + RELOC/fonts/opentype/public/semaphor/smfett10.otf + RELOC/fonts/opentype/public/semaphor/smfpb10.otf + RELOC/fonts/opentype/public/semaphor/smfpbsl10.otf + RELOC/fonts/opentype/public/semaphor/smfpr10.otf + RELOC/fonts/opentype/public/semaphor/smfpsl10.otf + RELOC/fonts/opentype/public/semaphor/smfptt10.otf + RELOC/fonts/opentype/public/semaphor/smfr10.otf + RELOC/fonts/opentype/public/semaphor/smfsl10.otf + RELOC/fonts/opentype/public/semaphor/smftt10.otf + RELOC/fonts/source/public/semaphor/Makefile + RELOC/fonts/source/public/semaphor/README + RELOC/fonts/source/public/semaphor/metafont/semaf.mf + RELOC/fonts/source/public/semaphor/metafont/smfbf10.mf + RELOC/fonts/source/public/semaphor/metafont/smfebf10.mf + RELOC/fonts/source/public/semaphor/metafont/smfer10.mf + RELOC/fonts/source/public/semaphor/metafont/smfesl10.mf + RELOC/fonts/source/public/semaphor/metafont/smfett10.mf + RELOC/fonts/source/public/semaphor/metafont/smfpbf10.mf + RELOC/fonts/source/public/semaphor/metafont/smfpr10.mf + RELOC/fonts/source/public/semaphor/metafont/smfpsl10.mf + RELOC/fonts/source/public/semaphor/metafont/smfptt10.mf + RELOC/fonts/source/public/semaphor/metafont/smfr10.mf + RELOC/fonts/source/public/semaphor/metafont/smfsl10.mf + RELOC/fonts/source/public/semaphor/metafont/smftt10.mf + RELOC/fonts/source/public/semaphor/pfb2otf.pe + RELOC/fonts/source/public/semaphor/semaf.mp + RELOC/fonts/source/public/semaphor/smfb10.mp + RELOC/fonts/source/public/semaphor/smfbsl10.mp + RELOC/fonts/source/public/semaphor/smfeb10.mp + RELOC/fonts/source/public/semaphor/smfebsl10.mp + RELOC/fonts/source/public/semaphor/smfer10.mp + RELOC/fonts/source/public/semaphor/smfesl10.mp + RELOC/fonts/source/public/semaphor/smfett10.mp + RELOC/fonts/source/public/semaphor/smfpb10.mp + RELOC/fonts/source/public/semaphor/smfpbsl10.mp + RELOC/fonts/source/public/semaphor/smfpr10.mp + RELOC/fonts/source/public/semaphor/smfpsl10.mp + RELOC/fonts/source/public/semaphor/smfptt10.mp + RELOC/fonts/source/public/semaphor/smfr10.mp + RELOC/fonts/source/public/semaphor/smfsl10.mp + RELOC/fonts/source/public/semaphor/smftt10.mp + RELOC/fonts/tfm/public/semaphor/smfb10.tfm + RELOC/fonts/tfm/public/semaphor/smfbsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfeb10.tfm + RELOC/fonts/tfm/public/semaphor/smfebsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfer10.tfm + RELOC/fonts/tfm/public/semaphor/smfesl10.tfm + RELOC/fonts/tfm/public/semaphor/smfett10.tfm + RELOC/fonts/tfm/public/semaphor/smfpb10.tfm + RELOC/fonts/tfm/public/semaphor/smfpbsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfpr10.tfm + RELOC/fonts/tfm/public/semaphor/smfpsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfptt10.tfm + RELOC/fonts/tfm/public/semaphor/smfr10.tfm + RELOC/fonts/tfm/public/semaphor/smfsl10.tfm + RELOC/fonts/tfm/public/semaphor/smftt10.tfm + RELOC/fonts/type1/public/semaphor/smfb10.pfb + RELOC/fonts/type1/public/semaphor/smfb10.pfm + RELOC/fonts/type1/public/semaphor/smfbsl10.pfb + RELOC/fonts/type1/public/semaphor/smfbsl10.pfm + RELOC/fonts/type1/public/semaphor/smfeb10.pfb + RELOC/fonts/type1/public/semaphor/smfeb10.pfm + RELOC/fonts/type1/public/semaphor/smfebsl10.pfb + RELOC/fonts/type1/public/semaphor/smfebsl10.pfm + RELOC/fonts/type1/public/semaphor/smfer10.pfb + RELOC/fonts/type1/public/semaphor/smfer10.pfm + RELOC/fonts/type1/public/semaphor/smfesl10.pfb + RELOC/fonts/type1/public/semaphor/smfesl10.pfm + RELOC/fonts/type1/public/semaphor/smfett10.pfb + RELOC/fonts/type1/public/semaphor/smfett10.pfm + RELOC/fonts/type1/public/semaphor/smfpb10.pfb + RELOC/fonts/type1/public/semaphor/smfpb10.pfm + RELOC/fonts/type1/public/semaphor/smfpbsl10.pfb + RELOC/fonts/type1/public/semaphor/smfpbsl10.pfm + RELOC/fonts/type1/public/semaphor/smfpr10.pfb + RELOC/fonts/type1/public/semaphor/smfpr10.pfm + RELOC/fonts/type1/public/semaphor/smfpsl10.pfb + RELOC/fonts/type1/public/semaphor/smfpsl10.pfm + RELOC/fonts/type1/public/semaphor/smfptt10.pfb + RELOC/fonts/type1/public/semaphor/smfptt10.pfm + RELOC/fonts/type1/public/semaphor/smfr10.pfb + RELOC/fonts/type1/public/semaphor/smfr10.pfm + RELOC/fonts/type1/public/semaphor/smfsl10.pfb + RELOC/fonts/type1/public/semaphor/smfsl10.pfm + RELOC/fonts/type1/public/semaphor/smftt10.pfb + RELOC/fonts/type1/public/semaphor/smftt10.pfm + RELOC/tex/context/third/semaphor/t-type-semaf.tex + RELOC/tex/latex/semaphor/il2semaf.fd + RELOC/tex/latex/semaphor/semaf.fd + RELOC/tex/plain/semaphor/semaf.tex +catalogue-ctan /fonts/semaphor +catalogue-license gpl +catalogue-topics font font-mf font-type1 font-otf font-specialist + +name semesterplanner +category Package +revision 56841 +shortdesc Create beautiful semester timetables and more +relocated 1 +longdesc This package defines several useful environments for a +longdesc beautiful printable semester plan. It includes a timetable +longdesc (which is using the schedule-Package) as well as appointments, +longdesc deadlines, and exams. The package requires color, TikZ, +longdesc schedule, and fontawesome. Furthermore, documents need to be +longdesc compiled with LuaLaTeX. +containersize 1900 +containerchecksum 26c7b18796dee2f703f22ace3aae21b38f98d9250b1896a3cfe5214b42551ae3fe4accd9e8bf905109c05169370317608e23363f4bb512e794cfaa528b645119 +doccontainersize 76732 +doccontainerchecksum 32c29aad8acf63e60f07262930f267a295daf9498621c48f0b9697fe31e4dffc63c8992b5c5f60b1d61188de893421906aa3abf160a79c6dd5429eca87c03fb1 +docfiles size=29 + RELOC/doc/lualatex/semesterplanner/README.md details="Readme" + RELOC/doc/lualatex/semesterplanner/semesterplanner.pdf details="Package documentation" +srccontainersize 2944 +srccontainerchecksum 709556569a5defa5240781ac1bcac0af6e9cacc0016d6ff057a4414a67c69cf8d11a17c716748dfdc81fc31c2bdee230c9c4adb7c4978ccba20b7330db47ea81 +srcfiles size=3 + RELOC/source/lualatex/semesterplanner/semesterplanner.dtx + RELOC/source/lualatex/semesterplanner/semesterplanner.ins +runfiles size=1 + RELOC/tex/lualatex/semesterplanner/semesterplanner.sty +catalogue-contact-bugs https://github.com/nlschn/semesterplanner/issues +catalogue-contact-repository https://github.com/nlschn/semesterplanner +catalogue-ctan /macros/luatex/latex/semesterplanner +catalogue-license lppl1.3 +catalogue-topics planning calendar luatex +catalogue-version 1.0 + +name seminar +category Package +revision 34011 +shortdesc Make overhead slides +relocated 1 +longdesc A class that produces overhead slides (transparencies), with +longdesc many facilities. The class requires availability of the +longdesc fancybox package. Seminar is also the basis of other classes, +longdesc such as prosper. In fact, seminar is not nowadays reckoned a +longdesc good basis for a presentation -- users are advised to use more +longdesc recent classes such as powerdot or beamer, both of which are +longdesc tuned to 21st-century presentation styles. Note that the +longdesc seminar distribution relies on the xcomment package, which was +longdesc once part of the bundle, but now has a separate existence. +containersize 29936 +containerchecksum 63173000935f741b7d1e7dab2fa0091bcb758ba36dfca0b6c745ae165f6b5f3aeea7972319078f175e231d3e0ebd3454d2241a2bc4f0f36ee51bac7bb7287a56 +doccontainersize 356048 +doccontainerchecksum 0bc4ea04a561c8a8c17f4f6ea493fa98e12e93cefd58b0aeeb0b09823f2b97028d945f1c9199fd1a5ab10e0b695079a8d97608474a4d04640496737640a9993c +docfiles size=157 + RELOC/doc/latex/seminar/Changes + RELOC/doc/latex/seminar/README details="Readme" + RELOC/doc/latex/seminar/run.sh + RELOC/doc/latex/seminar/sem-code.tex + RELOC/doc/latex/seminar/sem-make.tex + RELOC/doc/latex/seminar/seminar-doc.pdf details="Package documentation" + RELOC/doc/latex/seminar/seminar-doc.tex + RELOC/doc/latex/seminar/seminar.bg3 + RELOC/doc/latex/seminar/seminar.con + RELOC/doc/latex/seminar/seminar.doc + RELOC/doc/latex/seminar/semlayer.doc + RELOC/doc/latex/seminar/semsamp1.pdf + RELOC/doc/latex/seminar/semsamp1.tex + RELOC/doc/latex/seminar/semsamp2.pdf + RELOC/doc/latex/seminar/semsamp2.tex + RELOC/doc/latex/seminar/semsamp3.pdf + RELOC/doc/latex/seminar/semsamp3.tex +runfiles size=48 + RELOC/tex/latex/seminar/npsfont.sty + RELOC/tex/latex/seminar/sem-a4.sty + RELOC/tex/latex/seminar/sem-dem.sty + RELOC/tex/latex/seminar/sem-page.sty + RELOC/tex/latex/seminar/semcolor.sty + RELOC/tex/latex/seminar/semhelv.sty + RELOC/tex/latex/seminar/seminar.bg2 + RELOC/tex/latex/seminar/seminar.bug + RELOC/tex/latex/seminar/seminar.cls + RELOC/tex/latex/seminar/seminar.sty + RELOC/tex/latex/seminar/semlayer.sty + RELOC/tex/latex/seminar/semlcmss.sty + RELOC/tex/latex/seminar/semrot.sty + RELOC/tex/latex/seminar/slidesec.sty + RELOC/tex/latex/seminar/tvz-code.sty + RELOC/tex/latex/seminar/tvz-hax.sty + RELOC/tex/latex/seminar/tvz-user.sty +catalogue-also foiltex slidenotes +catalogue-ctan /macros/latex/contrib/seminar +catalogue-license lppl1.2 +catalogue-topics presentation +catalogue-version 1.62 + +name semioneside +category Package +revision 15878 +shortdesc Put only special contents on left-hand pages in two sided layout +relocated 1 +longdesc This package supports the preparation of semi one sided +longdesc documents. That is, two sided documents, where all text is +longdesc output on right-hand pages--as in a one-sided documents--and +longdesc only special contents are output on left-hand pages on user +longdesc request, e.g., floating objects. +containersize 1204 +containerchecksum cb3f20a7f766681f9b7748ea3a816fcd477e6685a159b071502716c708e0e1d5a2a33a5b210cd1e2a684a288d07079870ad243218dd74e80853a227fd445c884 +doccontainersize 129076 +doccontainerchecksum 8d6b1ada214f99028ea9843b4d5a85a8a974a9ab52e8a7d9338d25341282d6f1c8ca4e7a24271ec20bc4be781f418f2ffb558ef4fe6e6f42d165bb24650b54da +docfiles size=40 + RELOC/doc/latex/semioneside/README + RELOC/doc/latex/semioneside/example.tex + RELOC/doc/latex/semioneside/figure.mp + RELOC/doc/latex/semioneside/semioneside.pdf details="Package documentation" +srccontainersize 6308 +srccontainerchecksum 1b8d0d90db12b52add0f7dae10cb16bac8a9260e0a6783762908a07a014dca294ea6c631ceac3a5d063705cf39fd1a57ce6b99f72c5da4d57d4a30cdafd25767 +srcfiles size=6 + RELOC/source/latex/semioneside/semioneside.dtx + RELOC/source/latex/semioneside/semioneside.ins +runfiles size=1 + RELOC/tex/latex/semioneside/semioneside.sty +catalogue-ctan /macros/latex/contrib/semioneside +catalogue-license lppl +catalogue-topics layout +catalogue-version 0.41 + +name semproc +category Package +revision 37568 +shortdesc Seminar proceedings +relocated 1 +longdesc The package provides functionality for typesetting seminar +longdesc proceedings based on KOMA-Script's scrreprt class and etoc. It +longdesc offers an alternative to \chapter that typesets the speaker and +longdesc if necessary the typist of the notes for the talk in question. +longdesc Moreover, the class provides two types of table of contents. A +longdesc global table of contents showing only the talks of the seminar +longdesc and the respective speakers and a local table of contents for +longdesc each talk showing the sections and subsections of the +longdesc respective talk. +containersize 2616 +containerchecksum ac78e19197af3c72863ee4ca94842d596189d37c2d559ac1254f70fda1011943ddd7ce17b48f183b839a6610f8d7dbded2a0f2a18453823a0c0044a70841dcf2 +doccontainersize 364736 +doccontainerchecksum 2c7e2a40348b098037001928d6f21f5a66c23967dc63296ce26736b006a46f9d9536fae9480c1f0d0db72ed59973a6140471bb110702fd5cb997fafe03133dee +docfiles size=92 + RELOC/doc/latex/semproc/README.txt + RELOC/doc/latex/semproc/example.bib + RELOC/doc/latex/semproc/example.tex + RELOC/doc/latex/semproc/semproc.hd + RELOC/doc/latex/semproc/semproc.pdf details="Package documentation" +srccontainersize 6888 +srccontainerchecksum 7faf073ad7da9627b59509f41056df76658875d04651321389b3ae789e2d704691e494726635161eeab97786b8c8d6cd322e3ba83b3e1a779ff3d10a752fb51f +srcfiles size=7 + RELOC/source/latex/semproc/semproc.dtx + RELOC/source/latex/semproc/semproc.ins +runfiles size=2 + RELOC/tex/latex/semproc/semproc.cls +catalogue-ctan /macros/latex/contrib/semproc +catalogue-license lppl1.3 +catalogue-topics semproc +catalogue-version 0.1 + +name semtex +category Package +revision 56530 +shortdesc Deals with stripped SemanTeX documents +relocated 1 +longdesc This package is a small LaTeX package that adds a collection of +longdesc simple macros for parentheses and bullets. It exists for one +longdesc purpose only: To be loaded by documents which were originally +longdesc typeset using the package SemanTeX, but which have been +longdesc stripped of SemanTeX markup using the package stripsemantex +longdesc which is part of SemanTeX. Therefore, unless your document is +longdesc one of those, simply don't use this package. And even if your +longdesc document is one of those, there is a good chance you will not +longdesc have to load it after all. In most cases, you will be able to +longdesc replace the macros it provides by macros from other packages. +containersize 1196 +containerchecksum 10d2b93b30581cede982f5d7ec1ee5bf6f60406e27e1750f2bc6b6dfe0f683ca922a762fafac0d5d037687c0a98188617ee48bb51ea132ccde7cd1c33bbdf273 +doccontainersize 65952 +doccontainerchecksum 316df9ed5f2d058e6c28e5e8e5f4bc3ed64439409d1ae1c608b2a75a23c40d438b657642093cb723b23da4f14382f1080aaa3a9a49d8ce143e26e494a3e7b3e9 +docfiles size=19 + RELOC/doc/latex/semtex/README.md details="Readme" + RELOC/doc/latex/semtex/semtex.pdf details="Package documentation" + RELOC/doc/latex/semtex/semtex.tex +runfiles size=1 + RELOC/tex/latex/semtex/semtex.sty +catalogue-ctan /macros/latex/contrib/semtex +catalogue-license lppl1.3c +catalogue-topics maths expl3 +catalogue-version 0.45 + +name sepfootnotes +category Package +revision 41732 +shortdesc Support footnotes and endnotes from separate files +relocated 1 +longdesc The package supports footnotes and endnotes from separate +longdesc files. This is achieved with commands \sepfootnotecontent and +longdesc \sepfootnote; the former defines the content of a note, while +longdesc the latter typesets that note. +containersize 2372 +containerchecksum a7333a9779ebca371aeef0a1348968d8b4649ca037e88f6e8a6f5224d13265202c8de8d2ce5dd89de170ddc348cfb04f5df92e249c122a608efa8fbab4daba98 +doccontainersize 207656 +doccontainerchecksum eb7d70eaec4bf58c85964f7a3692da09894c898f712a119fc0ffa42429be2e53b96ed6f569fcd37aff170d2b953543992bcc693e264ee1ec542c435be2723414 +docfiles size=59 + RELOC/doc/latex/sepfootnotes/README details="Readme" + RELOC/doc/latex/sepfootnotes/sepfootnotes.pdf details="Package documentation" + RELOC/doc/latex/sepfootnotes/sepfootnotes.tex +runfiles size=3 + RELOC/tex/latex/sepfootnotes/sepfootnotes.sty +catalogue-ctan /macros/latex/contrib/sepfootnotes +catalogue-license lppl1.3 +catalogue-topics footnote +catalogue-version 0.3c + +name sepnum +category Package +revision 20186 +shortdesc Print numbers in a "friendly" format +relocated 1 +longdesc Provides a command to print a number with (potentially +longdesc different) separators every three digits in the parts either +longdesc side of the decimal point (the point itself is also +longdesc configurable). The macro is fully expandable and not fragile +longdesc (unless one of the separators is). There is also a command +longdesc \sepnumform, that may be used when defining \the<counter> +longdesc macros. +containersize 2680 +containerchecksum 4ba90558d397f0c047ffeb01620d2d5ed4bc38431ddbd75d9a381fac58360d78270b8f22e761693a8a39176d1ab92c9da3b6bf92aaaa90b8ee20490f5b70f50d +doccontainersize 354104 +doccontainerchecksum 080b081b101ea57480e4c958e997f5b10d22c5de56a60c1f415248ba0564046560650ae589b29c73d185fa88334a26ca3412e996fcc1214ef0b9d20e71bf18fa +docfiles size=87 + RELOC/doc/latex/sepnum/sepnum-doc.pdf details="Package documentation" + RELOC/doc/latex/sepnum/sepnum-doc.tex +runfiles size=2 + RELOC/tex/latex/sepnum/sepnum.sty +catalogue-also comma numprint +catalogue-ctan /macros/latex/contrib/sepnum +catalogue-license lppl +catalogue-topics numbers +catalogue-version 2.0 + +name seqsplit +category Package +revision 15878 +shortdesc Split long sequences of characters in a neutral way +relocated 1 +longdesc When one needs to type long sequences of letters (such as in +longdesc base-sequences in genes) or of numbers (such as calculations of +longdesc transcendental numbers), there's no obvious break points to be +longdesc found. The package provides a command \seqsplit, which makes +longdesc its argument splittable anywhere, and then leaves the TeX +longdesc paragraph-maker to do the splitting. While the package may +longdesc obviously be used to typeset DNA sequences, the user may +longdesc consider the dnaseq as a rather more powerful alternative. +containersize 1296 +containerchecksum 02413d104e12aad40f093731e2d28d0354216d3d57e6f811609f398b8122bdbf906f78cef38f355562efb4e7df6dca314f8548d8d8c03a2a9404addc42f0e1f3 +doccontainersize 110396 +doccontainerchecksum 0c49425b619ac62da4eb2392c51cb7726d9bab008910a88ec36b866717c8ac341be0903e3014ed36a30ac701fafc453a0e319470f2f65eb6775d6ff52b9f07e9 +docfiles size=33 + RELOC/doc/latex/seqsplit/README + RELOC/doc/latex/seqsplit/seqsplit.pdf details="Package documentation" +srccontainersize 5408 +srccontainerchecksum 7349cf842e7142c5c13e46d16acc35535cf34be8a4985f9a581a4338ca54beffbd80fe2820123652f3ffc868bcfe1c995200ab918c99b19d6c2ee339b61354e3 +srcfiles size=6 + RELOC/source/latex/seqsplit/Makefile + RELOC/source/latex/seqsplit/seqsplit.dtx + RELOC/source/latex/seqsplit/seqsplit.ins +runfiles size=1 + RELOC/tex/latex/seqsplit/seqsplit.sty +catalogue-ctan /macros/latex/contrib/seqsplit +catalogue-license lppl +catalogue-topics hyph-pseudo +catalogue-version 0.1 + +name serbian-apostrophe +category Package +revision 23799 +shortdesc Commands for Serbian words with apostrophes +relocated 1 +longdesc The package provides a collection of commands (whose names are +longdesc Serbian words) whose expansion is the Serbian word with +longdesc appropriate apostrophes. +containersize 10988 +containerchecksum 4e3998b6c3f5578929204c0b5f131b0ad4526057b50811253b6a90367327c63af5bec386aef54ae6c80be7a1ecdcc6875bbdca532fab864e61837cf16855750f +doccontainersize 462196 +doccontainerchecksum 38c8ac74b304ac992bad807f2727a3e75a727a77c5bfe5042e24a39ad305162e828ca0333963a3f91c5f26ca0324e7feea97dc6ab84c1cfdb6c26b05ed5f4fd5 +docfiles size=131 + RELOC/doc/latex/serbian-apostrophe/README details="Readme" + RELOC/doc/latex/serbian-apostrophe/apostrophe-list.pdf details="List of word commands and their expansion" + RELOC/doc/latex/serbian-apostrophe/apostrophe-list.tex + RELOC/doc/latex/serbian-apostrophe/serbian-apostrophe.pdf details="Package documentation" + RELOC/doc/latex/serbian-apostrophe/serbian-apostrophe.tex +runfiles size=18 + RELOC/tex/latex/serbian-apostrophe/serbian-apostrophe.sty +catalogue-ctan /language/serbian/filipovic/serbian-apostrophe +catalogue-license lppl1.3 +catalogue-topics serbian + +name serbian-date-lat +category Package +revision 23446 +shortdesc Updated date typesetting for Serbian +relocated 1 +longdesc Babel defines dates for Serbian texts, in Latin script. The +longdesc style it uses does not match current practices. The present +longdesc package defines a \date command that solves the problem. +containersize 776 +containerchecksum 420b77a36a08e75f8020edffed704ff0398115a6bfe694fa46957ad8b35c58435ecde4c16176a72bbcbcd16139502f8fb679399852bfc9000df6d5f305fbb04e +doccontainersize 352304 +doccontainerchecksum 5c10fe13a4e1d6117ebfe8d737d50047dc97483c7a0cc287a9e79d367af50ec1cbdc0800161919b92c6d82774c9e756970db71344259028c254fbf2c1fe86219 +docfiles size=94 + RELOC/doc/latex/serbian-date-lat/README details="Readme" + RELOC/doc/latex/serbian-date-lat/SerbianDateLat.pdf details="Package documentation" + RELOC/doc/latex/serbian-date-lat/SerbianDateLat.tex + RELOC/doc/latex/serbian-date-lat/TestDateLat.pdf + RELOC/doc/latex/serbian-date-lat/TestDateLat.tex +runfiles size=1 + RELOC/tex/latex/serbian-date-lat/serbian-date-lat.sty +catalogue-ctan /language/serbian/filipovic/serbian-date-lat +catalogue-license gpl2 +catalogue-topics serbian + +name serbian-def-cyr +category Package +revision 23734 +shortdesc Serbian cyrillic localization +relocated 1 +longdesc This package provides abstract, chapter, title, date etc, for +longdesc serbian language in cyrillic scripts in T2A encoding and cp1251 +longdesc code pages. +containersize 1820 +containerchecksum 6cbd1da1160519914db1a2269a54f1f81442d84750b15179e4a0f4e5373512c959542a789ef39a2803b68030bd6a8001fde777e907e85852703ff696ec9e5113 +doccontainersize 235684 +doccontainerchecksum 0f2a2fb44eaef8e0eb01e12260fa310d661501c3e1dacde2882199ce4bd5323c837704fd50e8db5b4ba567a38038b37be28fd834874262de2e3ad36b65816498 +docfiles size=66 + RELOC/doc/latex/serbian-def-cyr/README details="Readme" + RELOC/doc/latex/serbian-def-cyr/proba.pdf + RELOC/doc/latex/serbian-def-cyr/proba.tex + RELOC/doc/latex/serbian-def-cyr/usage.pdf details="Package documentation" + RELOC/doc/latex/serbian-def-cyr/usage.tex +runfiles size=1 + RELOC/tex/latex/serbian-def-cyr/serbian-def-cyr.sty +catalogue-ctan /macros/latex/contrib/serbian-def-cyr +catalogue-license lppl1.3 +catalogue-topics serbian + +name serbian-lig +category Package +revision 53127 +shortdesc Control ligatures in Serbian +relocated 1 +longdesc The package suppresses fi and fl (and other ligatures) in +longdesc Serbian text written using Roman script. +containersize 8708 +containerchecksum d9b5d42c565d5704ab516302534238961ad42e971d3c3b4b4672d4cc19927ac22a871735d88c362b753640d457597911fa269ec30edb5c1c0af96820299c6720 +doccontainersize 416972 +doccontainerchecksum 6ed0551c176ddd34e1a4eb4449fd78ca38c166efd41b31c78dc1e192a714fdc81b195cf83587f256462b610681136b69960867d5f1a571a5b1b47256fca88f05 +docfiles size=122 + RELOC/doc/latex/serbian-lig/Changes.txt + RELOC/doc/latex/serbian-lig/README.txt details="Readme" + RELOC/doc/latex/serbian-lig/lig-list.pdf + RELOC/doc/latex/serbian-lig/lig-list.tex + RELOC/doc/latex/serbian-lig/serbian-lig.pdf details="Package documentation" + RELOC/doc/latex/serbian-lig/serbian-lig.tex +runfiles size=20 + RELOC/tex/latex/serbian-lig/serbian-lig.sty +catalogue-ctan /language/serbian/filipovic/serbian-lig +catalogue-license lppl1.3 +catalogue-topics serbian + +name sesamanuel +category Package +revision 36613 +shortdesc Class and package for sesamath books or paper +relocated 1 +longdesc The package contains a sesamanuel class which could be used to +longdesc compose a student's classroom book with LaTeX, and also a +longdesc sesamanuelTIKZ style to be used for TikZ pictures in the +longdesc sesamath book. +containersize 28800 +containerchecksum bb7b38ff9e6494fb3150602008a66df5fd8c35dcb52a2da196cd177bcffeb40e284fa493b296f01f22864a5bf25d89fb4c079ff4d9fffacdf37dfc9de9256518 +doccontainersize 858604 +doccontainerchecksum cd144c93693367bdda658fb1ecd424715849fa57f0aded627125db2703947c8b5886df9ec08595592b6900327b42e8cff00f0c69967075321bd7cd1064054f3b +docfiles size=279 + RELOC/doc/latex/sesamanuel/Lisez.moi details="Readme" language="fr" + RELOC/doc/latex/sesamanuel/logotex.eps + RELOC/doc/latex/sesamanuel/read.me + RELOC/doc/latex/sesamanuel/sesamanuel.pdf details="Package documentation" language="fr" + RELOC/doc/latex/sesamanuel/sesamath-doc-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/sesamanuel/sesamath-doc-fr.tex + RELOC/doc/latex/sesamanuel/tiger.eps +srccontainersize 66020 +srccontainerchecksum 4a5dd4a8da6a8719f47d4b4bfb5e3a6c0e1498369fbcf7f9fd48304906bbff383793329959b69f13a75bcf3d01b888325c23079b4503aa779f464c2864560416 +srcfiles size=103 + RELOC/source/latex/sesamanuel/sesamanuel.dtx + RELOC/source/latex/sesamanuel/sesamanuel.ins +runfiles size=61 + RELOC/tex/latex/sesamanuel/sesamanuel.cls + RELOC/tex/latex/sesamanuel/sesamanuel.sty + RELOC/tex/latex/sesamanuel/sesamanuelTIKZ.sty +catalogue-ctan /macros/latex/contrib/sesamanuel +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.6 + +name sesstime +category Package +revision 49750 +shortdesc Session and timing information in lecture notes +relocated 1 +longdesc This LaTeX2e package makes it possible to add timing marks to +longdesc lecture notes in order to help managing the time available for +longdesc presenting a given section of the document. It also provides +longdesc tools to record and estimate the progress throughout the +longdesc course. +containersize 3552 +containerchecksum 5c5ab4808645230c6563a08b8243f27fad02a76fa56296f4c7e1b17d2140ad0c9ab0b6ed02e27240f596113019afbed52dc5a9f5efd874ba7783c921b81416c9 +doccontainersize 314264 +doccontainerchecksum 93b986ea6853761fae06b297b951a7a46ffee403a4fc980aa1afb7cc42c15fe753797eecbacacbfb49b0119ac9e24dc105975acf72852eb0265dc4586f397bc2 +docfiles size=84 + RELOC/doc/latex/sesstime/README.txt details="Readme" + RELOC/doc/latex/sesstime/sesstime.pdf details="Package documentation" + RELOC/doc/latex/sesstime/stimsamp.tex + RELOC/doc/latex/sesstime/stimsmp3.tex + RELOC/doc/latex/sesstime/stimsmp4.tex +srccontainersize 15500 +srccontainerchecksum 8f3200ab63d77bf24aa9b2cd51ac460f086cb82599e9099b41614f039cf569f4fba23f2dcd59174623037046bacfd5a11ff59f140b09f373edb6346292db7910 +srcfiles size=18 + RELOC/source/latex/sesstime/sesstime.dtx + RELOC/source/latex/sesstime/sesstime.ins +runfiles size=4 + RELOC/tex/latex/sesstime/sesstime.sty +catalogue-ctan /macros/latex/contrib/sesstime +catalogue-license lppl1.3 +catalogue-topics teaching +catalogue-version 1.12 + +name setdeck +category Package +revision 40613 +shortdesc Typeset cards for Set +relocated 1 +longdesc The package will typeset cards for use in a game of Set. +containersize 2528 +containerchecksum 817474bc928883f4bbe97391a477bf492a4e339879fc85d7aec3ca932f9b46c310f8fec5b732deb2196c705c2bd3a22721376ea8289a1bbdc12555447f12f757 +doccontainersize 62808 +doccontainerchecksum c27f7ab563f35293ee6019560f643d562ff2bf06747402930c767031a8dccffac0ebae9cd16b9e3009b5883f594c541ccf4c38883aa89f4256f7db83e378e1e9 +docfiles size=17 + RELOC/doc/latex/setdeck/README details="Readme" + RELOC/doc/latex/setdeck/setdeck.pdf details="Package documentation" + RELOC/doc/latex/setdeck/setdeck.tex +runfiles size=12 + RELOC/tex/latex/setdeck/setdeck.sty +catalogue-ctan /graphics/pgf/contrib/setdeck +catalogue-license gpl3 +catalogue-topics games pgf-tikz +catalogue-version 0.1 + +name setspace +category Package +revision 24881 +shortdesc Set space between lines +relocated 1 +longdesc Provides support for setting the spacing between lines in a +longdesc document. Package options include singlespacing, +longdesc onehalfspacing, and doublespacing. Alternatively the spacing +longdesc can be changed as required with the \singlespacing, +longdesc \onehalfspacing, and \doublespacing commands. Other size +longdesc spacings also available. +containersize 7584 +containerchecksum d7e7f2ea7ea8ad3c0b2437a04a965a25b37d96fcc03e92a524f823e80316569db67ca4b1d9313c27e487d4914f4a7e1b4d088ba8fb6c1cb27040552cbb4c8697 +doccontainersize 932 +doccontainerchecksum 6af94bda31c7276e7872286a1199363dc1de52c04f8cc8eb5825abda675657454f1349b619309014e934a9e5d3b80dd8d4b7a590c05d6ca2993ad3d8ceabd7fe +docfiles size=2 + RELOC/doc/latex/setspace/README details="Readme" + RELOC/doc/latex/setspace/setspace-test.tex +runfiles size=6 + RELOC/tex/latex/setspace/setspace.sty +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-license lppl1.3 +catalogue-topics line-space +catalogue-version 6.7a + +name seuthesis +category Package +revision 33042 +shortdesc LaTeX template for theses at Southeastern University +relocated 1 +longdesc This template is for theses at Southeastern University, +longdesc Nanjing, China. +containersize 10520 +containerchecksum a36006ff6a093cd589a0e328c60e7e78afc160ab45746e562a43a8944b2ab331643261f56890497b70449f76be43c0b226642cc5570dccfe0d6240181b20bcb3 +doccontainersize 2221748 +doccontainerchecksum 5bbc5770bc42c62da7ca569b10558dc02bbe7fda2a463a3a2a78bc76fda3f1d0e7023c311f62a91bef73ae3c4026561403284404acc6bc72cb2e308ad4092ab8 +docfiles size=1154 + RELOC/doc/latex/seuthesis/Makefile + RELOC/doc/latex/seuthesis/a3cover/A3cover.tex + RELOC/doc/latex/seuthesis/a3cover/A4cover.tex + RELOC/doc/latex/seuthesis/a3cover/a3cover.bat + RELOC/doc/latex/seuthesis/a3cover/a3cover.sh + RELOC/doc/latex/seuthesis/a3cover/a4cover.bat + RELOC/doc/latex/seuthesis/a3cover/a4cover.sh + RELOC/doc/latex/seuthesis/a3cover/bookspine_hor.tex + RELOC/doc/latex/seuthesis/a3cover/bookspine_ver.tex + RELOC/doc/latex/seuthesis/figures/back-cover.png + RELOC/doc/latex/seuthesis/figures/doctor-hwzs.pdf + RELOC/doc/latex/seuthesis/figures/doctor.png + RELOC/doc/latex/seuthesis/figures/engineering.png + RELOC/doc/latex/seuthesis/figures/front-cover.jpg + RELOC/doc/latex/seuthesis/figures/master-hwzs.pdf + RELOC/doc/latex/seuthesis/figures/master.png + RELOC/doc/latex/seuthesis/figures/seu-badge-logo.eps + RELOC/doc/latex/seuthesis/figures/seu-badge-logo.pdf + RELOC/doc/latex/seuthesis/figures/seu-color-logo.png + RELOC/doc/latex/seuthesis/figures/seu-text-logo.eps + RELOC/doc/latex/seuthesis/figures/seu-text-logo.png + RELOC/doc/latex/seuthesis/sample-bachelor.pdf + RELOC/doc/latex/seuthesis/sample-doctor.pdf + RELOC/doc/latex/seuthesis/sample-master.pdf + RELOC/doc/latex/seuthesis/sample.tex + RELOC/doc/latex/seuthesis/seuthesis.bib + RELOC/doc/latex/seuthesis/seuthesis.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/seuthesis/zharticle/scrsize9pt.clo + RELOC/doc/latex/seuthesis/zharticle/zharticle.bst + RELOC/doc/latex/seuthesis/zharticle/zharticle.cfg + RELOC/doc/latex/seuthesis/zharticle/zharticle.cls +srccontainersize 18188 +srccontainerchecksum a442b5ca4e1e8a4a3f8d331e5575066a8c63d1521d1f774fa7d386a8e42b09a2c4727fae1f0a51a31c6a98c173113349738caac8991d50e4459082a874fed1ad +srcfiles size=16 + RELOC/source/latex/seuthesis/seuthesis.dtx + RELOC/source/latex/seuthesis/seuthesis.ins +runfiles size=22 + RELOC/bibtex/bst/seuthesis/seuthesis.bst +catalogue-also seuthesix +catalogue-contact-repository https://github.com/seucs/seuthesis +catalogue-ctan /macros/latex/contrib/seuthesis +catalogue-license gpl3 +catalogue-topics dissertation class +catalogue-version 2.1.2 + +name seuthesix +category Package +revision 40088 +shortdesc LaTeX class for theses at Southeast University, Nanjing, China +relocated 1 +longdesc This project provides a LaTeX document class as well as a +longdesc bibliography style file for typesetting theses at the Southeast +longdesc University, Nanjing, China. It is based on the seuthesis +longdesc package which, according to the author of seuthesix, is buggy +longdesc and has not been maintained for some time. +containersize 9908 +containerchecksum 8f2aa388faf3fc41cdda54ac44631dc2f0737b727f3af27c41bc268223d2f3f6353dc24f067ec487fe5f3ced5c7837ee6f60d46de3950a3a3c9573df77cc725a +doccontainersize 3026736 +doccontainerchecksum 1d54dacc742d558af5fb006cb4f26e073bbf6a3a572b7e81fbacf691995a4a96c72251225fb7cff598c930a4c9984d0d01d080c797f202f7e30aced20b8b3e5b +docfiles size=1770 + RELOC/doc/latex/seuthesix/LICENCE + RELOC/doc/latex/seuthesix/README details="Readme" + RELOC/doc/latex/seuthesix/figures/back-cover.png + RELOC/doc/latex/seuthesix/figures/doctor-hwzs.pdf + RELOC/doc/latex/seuthesix/figures/doctor.png + RELOC/doc/latex/seuthesix/figures/engineering.png + RELOC/doc/latex/seuthesix/figures/front-cover.jpg + RELOC/doc/latex/seuthesix/figures/lxfbook.jpg + RELOC/doc/latex/seuthesix/figures/master-hwzs.pdf + RELOC/doc/latex/seuthesix/figures/master.png + RELOC/doc/latex/seuthesix/figures/seu-badge-logo.eps + RELOC/doc/latex/seuthesix/figures/seu-badge-logo.pdf + RELOC/doc/latex/seuthesix/figures/seu-color-logo.png + RELOC/doc/latex/seuthesix/figures/seu-text-logo.eps + RELOC/doc/latex/seuthesix/figures/seu-text-logo.png + RELOC/doc/latex/seuthesix/figures/seu_logo.jpg + RELOC/doc/latex/seuthesix/make_pdf.sh + RELOC/doc/latex/seuthesix/makefile_engineering.sh + RELOC/doc/latex/seuthesix/makefile_masters.sh + RELOC/doc/latex/seuthesix/makefile_phd.sh + RELOC/doc/latex/seuthesix/rules.pdf + RELOC/doc/latex/seuthesix/sample_engineering.pdf + RELOC/doc/latex/seuthesix/sample_engineering.tex + RELOC/doc/latex/seuthesix/sample_masters.pdf + RELOC/doc/latex/seuthesix/sample_masters.tex + RELOC/doc/latex/seuthesix/sample_phd.pdf + RELOC/doc/latex/seuthesix/sample_phd.tex + RELOC/doc/latex/seuthesix/seuthesix.bib + RELOC/doc/latex/seuthesix/seuthesix.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/seuthesix/seuthesix.tex +srccontainersize 548 +srccontainerchecksum fbc848315e2b76ac915aa6abc0a9e7bf2f63c4af716ccf65c9af3ae05e049952703c1f86db97a5825b92f43dc2d1163e6544c30fcfce4b672272b4ba9057c171 +srcfiles size=4 + RELOC/source/latex/seuthesix/make_pdf.bat + RELOC/source/latex/seuthesix/makefile_engineering.bat + RELOC/source/latex/seuthesix/makefile_masters.bat + RELOC/source/latex/seuthesix/makefile_phd.bat +runfiles size=11 + RELOC/bibtex/bst/seuthesix/seuthesix.bst + RELOC/tex/latex/seuthesix/seuthesix.cfg + RELOC/tex/latex/seuthesix/seuthesix.cls +catalogue-also seuthesis +catalogue-contact-repository https://github.com/zhimengfan1990/seuthesix +catalogue-ctan /macros/latex/contrib/seuthesix +catalogue-license gpl3 +catalogue-topics dissertation class +catalogue-version 1.0.1 + +name sexam +category Package +revision 46628 +shortdesc Package for typesetting arabic exam scripts +relocated 1 +longdesc The package provides a modified version of the exam package +longdesc made compatible with XeLaTeX/polyglossia to typesetting arabic +longdesc exams. +containersize 2480 +containerchecksum 60fc18bf706b787b9bc59d1ff12e62fc3b69f5c6815a629f6743c8ff3fbbb2948c145278805888b235756beac5dde5613c10fe4ce20bb6536b4a3d77a2713569 +doccontainersize 992712 +doccontainerchecksum 0d2d5e2e5214622ea6b398c0b0f7a297a3f247ef3df0ed696c6faed94527b2edb6564c917d182177f8f3b44d7cd0e14ef4ac186c89113ad74e3ea70475ce1179 +docfiles size=359 + RELOC/doc/xelatex/sexam/01.JPG + RELOC/doc/xelatex/sexam/10.png + RELOC/doc/xelatex/sexam/11.png + RELOC/doc/xelatex/sexam/2.JPG + RELOC/doc/xelatex/sexam/3.JPG + RELOC/doc/xelatex/sexam/4.JPG + RELOC/doc/xelatex/sexam/6.JPG + RELOC/doc/xelatex/sexam/7.JPG + RELOC/doc/xelatex/sexam/8.JPG + RELOC/doc/xelatex/sexam/9.JPG + RELOC/doc/xelatex/sexam/README.txt details="Readme" + RELOC/doc/xelatex/sexam/bac_template-DZ.pdf + RELOC/doc/xelatex/sexam/bac_template-DZ.tex + RELOC/doc/xelatex/sexam/exam_with_sexam_ar-DZ.pdf + RELOC/doc/xelatex/sexam/exam_with_sexam_ar-DZ.tex + RELOC/doc/xelatex/sexam/exam_with_wexam_ar-DZ.pdf + RELOC/doc/xelatex/sexam/exam_with_wexam_ar-DZ.tex + RELOC/doc/xelatex/sexam/sexam_wexam_doc_ar.pdf details="Package documentation" language="ar-dz" + RELOC/doc/xelatex/sexam/sexam_wexam_doc_ar.tex +runfiles size=3 + RELOC/tex/xelatex/sexam/bacex.sty + RELOC/tex/xelatex/sexam/sexam.sty + RELOC/tex/xelatex/sexam/wexam.sty +catalogue-also exam +catalogue-ctan /macros/xetex/latex/sexam +catalogue-license lppl1.3 +catalogue-topics exam arabic class +catalogue-version 1 + +name sf298 +category Package +revision 41653 +shortdesc Standard form 298 +relocated 1 +longdesc A LaTeX package for generating a completed standard form 298 +longdesc (Rev. 8-98) as prescribed by ANSI Std. Z39.18 for report +longdesc documentation as part of a document delivered, for instance, on +longdesc a U.S. government contract. +containersize 6988 +containerchecksum c9a262481a01019010a645c321c675bc93e3e0c6627b693bce53a808bc9366d7915c19f97871786001fbf61b589f2cef274aba005681f9b32094644568d0f2ec +doccontainersize 420024 +doccontainerchecksum 03b1d51626e6ec0b076f4c2fb5b34daf490a671df69edef7235a6c8c77b2475e79604c7d49aed3c7d756c9fb781a7398a27596ab9b183b942119ee86385ec612 +docfiles size=106 + RELOC/doc/latex/sf298/Makefile + RELOC/doc/latex/sf298/README.txt details="Readme" + RELOC/doc/latex/sf298/sample298.tex + RELOC/doc/latex/sf298/sf298.pdf details="Package documentation" +srccontainersize 22544 +srccontainerchecksum af4d0437e6c79c7bf0975f8e14bd8f19675223849b04b9e7b1d526ccc70a8a4a6d6773f86f9ddbcb98329368eff8c7f41cab4f2468f0100b8f5f840288184826 +srcfiles size=24 + RELOC/source/latex/sf298/sf298.dtx + RELOC/source/latex/sf298/sf298.ins +runfiles size=7 + RELOC/tex/latex/sf298/sf298.sty +catalogue-ctan /macros/latex/contrib/sf298 +catalogue-license lppl1.2 +catalogue-topics report-like +catalogue-version 1.3 + +name sffms +category Package +revision 15878 +shortdesc Typesetting science fiction/fantasy manuscripts +relocated 1 +longdesc The class is designed for typesetting science fiction and +longdesc fantasy manuscripts. Sffms now includes several options for +longdesc specific publishers as well as extensive documentation aimed at +longdesc new LaTeX users. +containersize 3376 +containerchecksum ea7fbce545b9e9dc8b804e293239fdd491bf1293875fa841afc5a33ddcac7acddf243194e36f8958df4d23c71ad9b83348fda57dc261f211b49fc137b66ff6b2 +doccontainersize 156244 +doccontainerchecksum e1702249f2516dde93887403833f9261f73e90ce04bb97d4052de1a28b9f5bcd5729d1d9a68759ea92271b46cbbebed39565e8c30248af4c894c347e4b9b75a9 +docfiles size=52 + RELOC/doc/latex/sffms/README details="Readme" + RELOC/doc/latex/sffms/blind.tex + RELOC/doc/latex/sffms/sffms_manual.pdf details="Package documentation" +srccontainersize 15740 +srccontainerchecksum 50fec199dddd2509682af8910db1cecaba7359be24a1666e156715e4613571c6f48c27eb813efaab2d6a4fd01e0e9d110021a42afca501a75a2ee02f7c80499e +srcfiles size=13 + RELOC/source/latex/sffms/sffms.dtx + RELOC/source/latex/sffms/sffms.ins +runfiles size=4 + RELOC/tex/latex/sffms/sffdumb.sty + RELOC/tex/latex/sffms/sffms.cls + RELOC/tex/latex/sffms/sffsmart.sty +catalogue-ctan /macros/latex/contrib/sffms +catalogue-license lppl +catalogue-topics class publisher +catalogue-version 2.0 + +name sfg +category Package +revision 20209 +shortdesc Draw signal flow graphs +relocated 1 +longdesc Defines some commands to draw signal flow graphs as used by +longdesc electrical and electronics engineers and graph theorists. +longdesc Requires fp and pstricks packages (and a relatively fast +longdesc machine). +containersize 6172 +containerchecksum d90305b5fbac3e06bc3195b802b4ef78f7c6cfb4f0592dfd300839dd608150e1ad08fc7479fe6d8df4f2429ad6b7f81692d9723dde198991fc9626565cb38578 +doccontainersize 388384 +doccontainerchecksum 26c17b606f0cfb4e199755f7f16eec16cbe379a786a88bec2d77d983d17107d86bf8da23474bc3450f8467d18028f2f41a314c83565916cf3ac3e97c5c079267 +docfiles size=100 + RELOC/doc/latex/sfg/Changes + RELOC/doc/latex/sfg/README details="Readme" + RELOC/doc/latex/sfg/sfg-doc.pdf details="Package documentation" + RELOC/doc/latex/sfg/sfg-doc.tex + RELOC/doc/latex/sfg/sfg_test.tex +runfiles size=6 + RELOC/tex/latex/sfg/sfg.sty +catalogue-ctan /macros/latex/contrib/sfg +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 0.91 + +name sfmath +category Package +revision 15878 +shortdesc Sans-serif mathematics +relocated 1 +longdesc sfmath is a simple package for sans serif maths in documents. +longdesc After including the package, all maths of the current document +longdesc is displayed with sans serif fonts. +containersize 4472 +containerchecksum 7ba73610785c9270e8741ba0137701677575e38cac79976d89e2f5768804ff52117c5fcbaab9b260be522f174458a18d2d70d82c2da201e7fd6a91fe4bbdf6fb +runfiles size=5 + RELOC/tex/latex/sfmath/sfmath.sty +catalogue-also sansmath +catalogue-ctan /macros/latex/contrib/sfmath/sfmath.sty +catalogue-license lppl +catalogue-topics font-maths maths +catalogue-version 0.8 + +name sgame +category Package +revision 30959 +shortdesc LaTeX style for typesetting strategic games +relocated 1 +longdesc Formats strategic games. For a 2x2 game, for example, the +longdesc input: \begin{game}{2}{2} &$L$ &$M$\\ $T$ &$2,2$ &$2,0$\\ $B$ +longdesc &$3,0$ &$0,9$ \end{game} produces output with (a) boxes around +longdesc the payoffs, (b) payoff columns of equal width, and (c) payoffs +longdesc vertically centered within the boxes. Note that the game +longdesc environment will not work in the argument of another command. +containersize 4560 +containerchecksum 60e1c4d7f68bd6d39e081d49bfa1ecfa7dc56b940172719b4d6d0f2e87456c4b511ac29bb1884f7c290e7b226eb6ecae8f2ce4de3f7f5fbbd21934c440395ab7 +doccontainersize 69168 +doccontainerchecksum 29f4ee374c7b9d07274fb6f622c0769ff6977ce522ae25fa24571c0b7e60f1e120e4e26d37c6c340372fc0a2dde71a25121fa9538a35aa100e21637d5c79c874 +docfiles size=28 + RELOC/doc/latex/sgame/README + RELOC/doc/latex/sgame/sgame.pdf details="Package documentation" + RELOC/doc/latex/sgame/sgame.tex +runfiles size=8 + RELOC/tex/latex/sgame/sgame.sty + 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-license lppl +catalogue-topics games +catalogue-version 2.15 + +name shade +category Package +revision 22212 +shortdesc Shade pieces of text +relocated 1 +longdesc The package provides a shaded backdrop to a box of text. It +longdesc uses a Metafont font (provided) which generates to appropriate +longdesc shading dependent on the resolution used in the Metafont +longdesc printer parameters. +containersize 1652 +containerchecksum 968be382e1f82029e7e06f5ed34473fc20fd38dc758b97fec6dbf015ca13c3604dd6b7638dcad2f80be474ad001c47ec86e75e8d9947bde26053873376e9e068 +doccontainersize 14040 +doccontainerchecksum 0c9ec337ed4c9bba949e6b449368868856d652b2f5ac7c70dd08a9daaf8a3ed3be4008a91c003c731c97f7e4132f571c44ea9d4a4529f7b0ac9be11a673310ff +docfiles size=9 + RELOC/doc/generic/shade/README details="Readme" + RELOC/doc/generic/shade/description.pdf details="Description of the algorithm:" language="en" + RELOC/doc/generic/shade/description.tex +runfiles size=2 + RELOC/fonts/source/public/shade/shade.mf + RELOC/tex/generic/shade/shade.tex +catalogue-also shadebox +catalogue-ctan /macros/generic/shade +catalogue-license lppl1 +catalogue-topics decoration +catalogue-version 1 + +name shadethm +category Package +revision 53350 +shortdesc Theorem environments that are shaded +relocated 1 +longdesc Extends the \newtheorem command. If you say +longdesc \newshadetheorem{theorem}{Theorem} in the preamble then your +longdesc regular \begin{theorem} .. \end{theorem} will produce a theorem +longdesc statement in a shaded box. It supports all the options of +longdesc \newtheorem, including forms \newshadetheorem{..}[..]{..} and +longdesc \newshadetheorem{..}{..}[..]. Environments declared using the +longdesc package require their body to remain on one page; the mdframed +longdesc package can frame and shade theorems, and its environments +longdesc break at the end of a page; users are generally recommended, +longdesc therefore, to use mdframed. In the same spirit, the author told +longdesc us in January 2020: "These materials are obsolete. There are a +longdesc number of more recent, more powerful packages that have +longdesc capabilities that greatly extend the simple ones here. A new +longdesc project should use one of those. These files only continue to +longdesc be available to help people who are working with an old +longdesc project." +containersize 7540 +containerchecksum b9e15e017332eeadd3324afb858ab15a820e23da59f5bf7ea57dac719b9864304effd092c3cb2f25a6f29f22dd2b6f2585279edab4d77c62256582c66be550c3 +doccontainersize 360628 +doccontainerchecksum c24f37f7f864283f9ced1da1728dd7ae137395ecda3010aeff8ad778b96723224df77755f8f71f7672f5870ad6832a22bce47bec88ae51d0992e39c0a00c8caa +docfiles size=94 + RELOC/doc/latex/shadethm/1st_read.me + RELOC/doc/latex/shadethm/README details="Readme" + RELOC/doc/latex/shadethm/shadetest.pdf + RELOC/doc/latex/shadethm/shadetest.tex + RELOC/doc/latex/shadethm/shadethm-doc.pdf details="Package documentation" + RELOC/doc/latex/shadethm/shadethm-doc.tex +runfiles size=8 + RELOC/tex/latex/shadethm/colored.sth + RELOC/tex/latex/shadethm/shadein.sth + RELOC/tex/latex/shadethm/shadethm.sty +catalogue-ctan /macros/latex/contrib/shadethm +catalogue-license lppl +catalogue-topics maths-theorem decoration + +name shadow +category Package +revision 20312 +shortdesc Shadow boxes +relocated 1 +longdesc Defines a command \shabox (analgous to \fbox), and supporting +longdesc mechanisms. +containersize 1948 +containerchecksum 885bca1090b93545f59b387e952998f65dee0931fb5b680d06667c3bb8172e2aad37e840942b9495134b421bb40b871633eb5de941b3a257618751e789128ca6 +doccontainersize 223584 +doccontainerchecksum 402e64195e247cd2c5106e3bd621705b80c006b2f6cf0b1da14ea459acb7dd97e2ebeda87ec118be3e73bf76edebe3067330498a2875c52c4248add70d7a0a25 +docfiles size=56 + RELOC/doc/latex/shadow/shadow-doc.pdf details="Package documentation" + RELOC/doc/latex/shadow/shadow-doc.tex +runfiles size=2 + RELOC/tex/latex/shadow/shadow.sty +catalogue-also fancybox +catalogue-ctan /macros/latex/contrib/shadow +catalogue-license lppl +catalogue-topics decoration + +name shadowtext +category Package +revision 26522 +shortdesc Produce text with a shadow behind it +relocated 1 +longdesc The package introduces a command \shadowtext, which adds a drop +longdesc shadow to the text that is given as its argument. The colour +longdesc and positioning of the shadow are customisable. +containersize 1484 +containerchecksum 59ab708b0f8987838cafe864cdcd68aad5aceb7cb4b3ab2b479ec4fbd15e268ba4fdd1b0143b7c247cc186a825d99ad810839221a391eafd5146f0a46865e23d +doccontainersize 145128 +doccontainerchecksum a89bd6ab160e364af06e26d9bbb88988c286befb5dfe4e4bdfc7c511811ef4a1ef630708d4a7ff32cb0ab6831dbee54d49a84376ee9366bd422d5689d86db404 +docfiles size=38 + RELOC/doc/latex/shadowtext/README details="Readme" + RELOC/doc/latex/shadowtext/shadowtext.pdf details="Package documentation" + RELOC/doc/latex/shadowtext/shadowtext.tex +runfiles size=1 + RELOC/tex/latex/shadowtext/shadowtext.sty +catalogue-ctan /macros/latex/contrib/shadowtext +catalogue-license lppl +catalogue-topics decoration +catalogue-version 0.3 + +name shapepar +category Package +revision 30708 +shortdesc A macro to typeset paragraphs in specific shapes +relocated 1 +longdesc \shapepar is a macro to typeset paragraphs in a specific shape. +longdesc The size is adjusted automatically so that the entire shape is +longdesc filled with text. There may not be displayed maths or +longdesc '\vadjust' material (no \vspace) in the argument of \shapepar. +longdesc The macros work for both LaTeX and plain TeX. For LaTeX, +longdesc specify \usepackage{shapepar}; for Plain, \input shapepar.sty. +longdesc \shapepar works in terms of user-defined shapes, though the +longdesc package does provide some predefined shapes: so you can form +longdesc any paragraph into the form of a heart by putting +longdesc \heartpar{sometext...} inside your document. The tedium of +longdesc creating these polygon definitions may be alleviated by using +longdesc the shapepatch extension to transfig which will convert xfig +longdesc output to \shapepar polygon form. +containersize 15972 +containerchecksum 407fb09d162a3f361c7182f23b010d25bf5d0d4d645780c1c9679be422a50f7181a8184ea391505d258afda822059f0d7d60ad24321adffa05f37d56d0376605 +doccontainersize 169100 +doccontainerchecksum 4db069b9e52935f0ef1463e40999b7f7893ae12b68f6bb07a105f83199b839e6ca3366b7367f6b38f79c4febfbf3a8c1f88115244f59a306870fa4617ade478a +docfiles size=59 + RELOC/doc/generic/shapepar/README.shapepar details="Package README" + RELOC/doc/generic/shapepar/proshap.py + RELOC/doc/generic/shapepar/shapepar.ltx + RELOC/doc/generic/shapepar/shapepar.pdf details="Package documentation" +runfiles size=16 + RELOC/tex/generic/shapepar/Canflagshape.def + RELOC/tex/generic/shapepar/TeXshape.def + RELOC/tex/generic/shapepar/candleshape.def + RELOC/tex/generic/shapepar/dropshape.def + RELOC/tex/generic/shapepar/shapepar.sty + RELOC/tex/generic/shapepar/triangleshapes.def +catalogue-ctan /macros/latex/contrib/shapepar +catalogue-license other-free +catalogue-topics micro-layout +catalogue-version 2.2 + +name shapes +category Package +revision 42428 +shortdesc Draw polygons, reentrant stars, and fractions in circles with MetaPost +relocated 1 +longdesc The shapes set of macros allows drawing regular polygons; their +longdesc corresponding reentrant stars in all their variations; and +longdesc fractionally filled circles (useful for visually demonstrating +longdesc the nature of fractions) in MetaPost. +containersize 1888 +containerchecksum 4e082b6b61ae9f2d02c6bdf7fe5beeb6b6384b2718c1644b945b175bc17c951ec7890fe7e81eb59faea4ae86da93eaf51467450cd61d223e734408e624bd8abb +doccontainersize 183000 +doccontainerchecksum 2c295a28748f8df117a5abf16a758b079d7481f579e1bb571fc758bae505860e1a1b82f9615259b14359eb4ea8f43be82de6ae6d761225ea76bc0da167b6786c +docfiles size=51 + RELOC/doc/metapost/shapes/CHANGES + RELOC/doc/metapost/shapes/README details="Readme" + RELOC/doc/metapost/shapes/lppl.txt + RELOC/doc/metapost/shapes/shapes.pdf details="Package documentation" +srccontainersize 4620 +srccontainerchecksum 58ccff2be6db013bb66e606ebec52b0f86b4ab3e2066d9191f18da0534d2187fe6a3944cf179b6b807025182cbd40be8c24f190c5938bf4e4264ba492a845be1 +srcfiles size=5 + RELOC/source/metapost/shapes/shapes.dtx + RELOC/source/metapost/shapes/shapes.ins +runfiles size=2 + RELOC/metapost/shapes/shapes.mp +catalogue-ctan /graphics/metapost/contrib/macros/shapes +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.1 + +name shdoc +category Package +revision 41991 +shortdesc Float environment to document the shell commands of a terminal session +relocated 1 +longdesc The package provides a simple, though fancy float environment +longdesc to document terminal sessions -- like command executions or +longdesc shell operations. The look and feel of the package output +longdesc imitates the look of a shell prompt. +containersize 2996 +containerchecksum e72e5d88966ab88ce2ea331f2989a949f3da30cb1066a0501fe8770f077f8aaf15803d9337ab266374364fdb7b35507c6d3cd181e1fb472f6d39b6ef94c08c1f +doccontainersize 543984 +doccontainerchecksum 38c3a7302edd2e38e3196b4d3935bc001f83fc71ed50ca8c3563ccf82e9e0729c65baf0b95db0ac637cd037cd572ba557586bc85230ff6014f63a8fe0602d9d1 +docfiles size=137 + RELOC/doc/latex/shdoc/README details="Readme" + RELOC/doc/latex/shdoc/README.txt + RELOC/doc/latex/shdoc/avrdude-log.save + RELOC/doc/latex/shdoc/shdoc.pdf details="Package documentation" + RELOC/doc/latex/shdoc/shreformat.sh +srccontainersize 16536 +srccontainerchecksum 8de0b05b8cfaf13d3f3c1192c718f5663bc5d1e5d9f67395956bc18d8f97c6acd0811660c02c3dd087f617098d0ec810a69dc31a20e157fde69431eaae4047c4 +srcfiles size=17 + RELOC/source/latex/shdoc/shdoc.dtx + RELOC/source/latex/shdoc/shdoc.ins +runfiles size=3 + RELOC/tex/latex/shdoc/shdoc.sty +catalogue-ctan /macros/latex/contrib/shdoc +catalogue-license lppl1.3 +catalogue-topics synt-hlt float listing +catalogue-version 2.1b + +name shipunov +category Package +revision 52334 +shortdesc A collection of LaTeX packages and classes +relocated 1 +longdesc The bundle collects packages and classes, along with one +longdesc bibliography style and examples and scripts for converting TeX +longdesc files. Many of the files in the collection are designed to +longdesc support field biologists and/or Russian writers, while others +longdesc have wider application. The collection includes: add2 - Save +longdesc trees. Quick way to fit as many as possible into one page. Good +longdesc for handouts. altverse - Typesetting verses. Straightforward +longdesc typesetting, using the xtab package to aid layout. autolist - +longdesc More lists. A means to define various sorts of list. biokey - +longdesc Flexible identification key tables in LaTeX. The package +longdesc provides straightforward macros to typeset sets of biological +longdesc identification keys. Layout is flexible, and the macros will be +longdesc useful in other disciplines. biolist - List observed species. +longdesc Pretty formatting of species lists of flora and fauna. boldline +longdesc - Heavier lines in tables. The package provides commands +longdesc replacing \hline and \cline, as well as a table preamble +longdesc element that generates heavy lines. cassete (with one 't') - +longdesc Print labels for audio cassettes. This is a LaTeX2e class file +longdesc (the only other cassette package on CTAN is cassette (with two +longdesc 't'), written for Plain TeX). classif2 - Biological +longdesc classification tables. The package defines an environment +longdesc classif that simplifies the process of typesetting +longdesc classification tables. dline - Double line on the left of text. +longdesc drcaps - Simple dropped capitals. The package offers simple +longdesc macros for dropped capitals, in a couple of forms. etiketka - +longdesc Class for typesetting business-card-sized information +longdesc (including business cards). flower - Typesetting lists of +longdesc flower formulas. isyntax - Interactively check LaTeX file +longdesc syntax. numerus - Spell numbers in Russian words. punct - +longdesc Within italicized text, punctuation is still straight, this is +longdesc typographically more aesthetic. qqru - Universal quotation +longdesc marks, for Russian and English. It is able also to convert +longdesc uniform typewriter "quotes" into left or right typographic +longdesc quotes. rusnat - Bibliography style file, now deprecated. +longdesc sltables - Simplified tables for LaTeX. These macros develop +longdesc the concepts of the stables, which are designed to offer table +longdesc macros whose use is "as simple as one might hope". Some would +longdesc claim that LaTeX's built-in table specifications are as simple +longdesc as one might hope, but this package offers many short-cuts and +longdesc optimization of the mechanisms of tables. starfn - Stars as +longdesc footnote marks. textfrac - Simple slanted fractions. +containersize 19652 +containerchecksum e31326135e93eaddf9f07eb0a746c83b9b6b7a7569daccc2b4ae0439664ce4a9cb2edaedc0e3ff727a4896fea43411c9cef0f3fb8455b1616de04e03b54b257a +doccontainersize 3039828 +doccontainerchecksum 3c04f8dec84f3ad87572f6c180ec783f9a879b887b4c7f860097ac03b297dd7c4a4385cb402ea0b7f09176d711050ca7813e51607cf7bba871e191ec35d9af88 +docfiles size=882 + RELOC/doc/latex/shipunov/NEWS + RELOC/doc/latex/shipunov/README details="Readme" language="en" + RELOC/doc/latex/shipunov/README.doc + RELOC/doc/latex/shipunov/add2-ex.pdf + RELOC/doc/latex/shipunov/add2-ex.tex + RELOC/doc/latex/shipunov/altverse-ex-en.pdf + RELOC/doc/latex/shipunov/altverse-ex-en.tex + RELOC/doc/latex/shipunov/altverse-ex1-ru.pdf + RELOC/doc/latex/shipunov/altverse-ex1-ru.tex + RELOC/doc/latex/shipunov/altverse-ex2-ru.pdf + RELOC/doc/latex/shipunov/altverse-ex2-ru.tex + RELOC/doc/latex/shipunov/altverse-ex3-ru.pdf + RELOC/doc/latex/shipunov/altverse-ex3-ru.tex + RELOC/doc/latex/shipunov/autolist-ex-en.pdf + RELOC/doc/latex/shipunov/autolist-ex-en.tex + RELOC/doc/latex/shipunov/autolist-ex-ru.pdf + RELOC/doc/latex/shipunov/autolist-ex-ru.tex + RELOC/doc/latex/shipunov/biokey-doc-en.pdf + RELOC/doc/latex/shipunov/biokey-doc-en.tex + RELOC/doc/latex/shipunov/biokey-ex-en.pdf + RELOC/doc/latex/shipunov/biokey-ex-en.tex + RELOC/doc/latex/shipunov/biokey2html-doc-en.pdf + RELOC/doc/latex/shipunov/biokey2html-doc-en.tex + RELOC/doc/latex/shipunov/biokey2html-ex-en.html + RELOC/doc/latex/shipunov/biokey2html-ex-en1.pdf + RELOC/doc/latex/shipunov/biokey2html-ex-en2.pdf + RELOC/doc/latex/shipunov/biolist-ex-en.pdf + RELOC/doc/latex/shipunov/biolist-ex-en.tex + RELOC/doc/latex/shipunov/boldline-ex-en.pdf + RELOC/doc/latex/shipunov/boldline-ex-en.tex + RELOC/doc/latex/shipunov/cassete-ex-ru.pdf + RELOC/doc/latex/shipunov/cassete-ex-ru.tex + RELOC/doc/latex/shipunov/classif2-ex-en.pdf + RELOC/doc/latex/shipunov/classif2-ex-en.tex + RELOC/doc/latex/shipunov/dline-ex.pdf + RELOC/doc/latex/shipunov/dline-ex.tex + RELOC/doc/latex/shipunov/drcaps-ex-en.pdf + RELOC/doc/latex/shipunov/drcaps-ex-en.tex + RELOC/doc/latex/shipunov/etiketka-ex-ru.pdf + RELOC/doc/latex/shipunov/etiketka-ex-ru.tex + RELOC/doc/latex/shipunov/etiketka-ex1-en.pdf + RELOC/doc/latex/shipunov/etiketka-ex1-en.tex + RELOC/doc/latex/shipunov/etiketka-ex2-en.pdf + RELOC/doc/latex/shipunov/etiketka-ex2-en.tex + RELOC/doc/latex/shipunov/exam-ex.pdf + RELOC/doc/latex/shipunov/exam-ex.tex + RELOC/doc/latex/shipunov/field-form-ex1-ru.pdf + RELOC/doc/latex/shipunov/field-form-ex1-ru.tex + RELOC/doc/latex/shipunov/field-form-ex2-ru.pdf + RELOC/doc/latex/shipunov/field-form-ex2-ru.tex + RELOC/doc/latex/shipunov/flower-ex-en.pdf + RELOC/doc/latex/shipunov/flower-ex-en.tex + RELOC/doc/latex/shipunov/isyntax-ex-en.tex + RELOC/doc/latex/shipunov/lecture-slides-ex.pdf + RELOC/doc/latex/shipunov/lecture-slides-ex.tex + RELOC/doc/latex/shipunov/numerus-ex-ru.pdf + RELOC/doc/latex/shipunov/numerus-ex-ru.tex + RELOC/doc/latex/shipunov/punct-ex-en.pdf + RELOC/doc/latex/shipunov/punct-ex-en.tex + RELOC/doc/latex/shipunov/qqru-ex-en.pdf + RELOC/doc/latex/shipunov/qqru-ex-en.tex + RELOC/doc/latex/shipunov/qqru-ex-ru.pdf + RELOC/doc/latex/shipunov/qqru-ex-ru.tex + RELOC/doc/latex/shipunov/review.pdf + RELOC/doc/latex/shipunov/review.tex + RELOC/doc/latex/shipunov/rusnat-doc-ru.pdf + RELOC/doc/latex/shipunov/rusnat-doc-ru.tex + RELOC/doc/latex/shipunov/rusnat-ex-ru.bib + RELOC/doc/latex/shipunov/rusnat-ex1-ru.pdf + RELOC/doc/latex/shipunov/rusnat-ex1-ru.tex + RELOC/doc/latex/shipunov/rusnat-ex2-ru.pdf + RELOC/doc/latex/shipunov/rusnat-ex2-ru.tex + RELOC/doc/latex/shipunov/rusnat_bst.readme + RELOC/doc/latex/shipunov/scripts/abs2rel.pl + RELOC/doc/latex/shipunov/scripts/biokey2html.bat + RELOC/doc/latex/shipunov/scripts/biokey2html.sh + RELOC/doc/latex/shipunov/scripts/biokey2html1.pl + RELOC/doc/latex/shipunov/scripts/biokey2html2.pl + RELOC/doc/latex/shipunov/scripts/biokey2html3.pl + RELOC/doc/latex/shipunov/scripts/txt2qq.pl + RELOC/doc/latex/shipunov/sltables-doc-en.pdf + RELOC/doc/latex/shipunov/sltables-doc-en.tex + RELOC/doc/latex/shipunov/starfn-ex-ru.pdf + RELOC/doc/latex/shipunov/starfn-ex-ru.tex + RELOC/doc/latex/shipunov/textfrac-ex.pdf + RELOC/doc/latex/shipunov/textfrac-ex.tex +runfiles size=28 + RELOC/bibtex/bst/shipunov/rusnat.bst + RELOC/tex/latex/shipunov/add2-shipunov.sty + RELOC/tex/latex/shipunov/altverse.sty + RELOC/tex/latex/shipunov/autolist.sty + RELOC/tex/latex/shipunov/biokey.sty + RELOC/tex/latex/shipunov/biolist.sty + RELOC/tex/latex/shipunov/boldline.sty + RELOC/tex/latex/shipunov/cassete.cls + RELOC/tex/latex/shipunov/classif2.sty + RELOC/tex/latex/shipunov/dline-shipunov.sty + RELOC/tex/latex/shipunov/drcaps.sty + RELOC/tex/latex/shipunov/etiketka.cls + RELOC/tex/latex/shipunov/flower.sty + RELOC/tex/latex/shipunov/isyntax.sty + RELOC/tex/latex/shipunov/numerus.sty + RELOC/tex/latex/shipunov/punct.sty + RELOC/tex/latex/shipunov/qqru-shipunov.sty + RELOC/tex/latex/shipunov/sltables.sty + RELOC/tex/latex/shipunov/starfn.sty + RELOC/tex/latex/shipunov/textfrac-shipunov.sty +catalogue-ctan /macros/latex/contrib/shipunov +catalogue-license lppl1.3 +catalogue-topics collection +catalogue-version 1.2 + +name shobhika +category Package +revision 50555 +shortdesc An OpenType Devanagari font designed for scholars +relocated 1 +longdesc This package provides a free, open source, Unicode compliant, +longdesc OpenType font with support for Devanagari, Latin, and Cyrillic +longdesc scripts. It is available in two weights--regular and bold. The +longdesc font is designed with over 1600 Devanagari glyphs, including +longdesc support for over 1100 conjunct consonants, as well as vedic +longdesc accents. The Latin component of the font not only supports a +longdesc wide range of characters required for Roman transliteration of +longdesc Sanskrit, but also provides a subset of regularly used +longdesc mathematical symbols for scholars working with scientific and +longdesc technical documents. The project has been launched under the +longdesc auspices of the Science and Heritage Initiative (SandHI) at IIT +longdesc Bombay, and builds upon the following two fonts for its +longdesc Devanagari and Latin components respectively: (i) Yashomudra by +longdesc Rajya Marathi Vikas Samstha, and (ii) PT Serif by ParaType. We +longdesc would like to thank both these organisations for releasing +longdesc their fonts under the SIL Open Font Licence, which has enabled +longdesc us to create Shobhika. +containersize 421140 +containerchecksum 86050c89e5939b8ffc2148f9269a48dc66f8adf396cb883a7018a1a8f123cb602f216f652f56715bebbdb7b0577a8d0cc799c847898543a4cbd22e478524b127 +doccontainersize 26936 +doccontainerchecksum f5d9d05f54876bab260043e698fd746c95b59b04ea5b2df7244b11af30bb78e5cbb6e3511bb75d775e1bc649082575192ccbcb68fcd32b9816879b5cbf3277ba +docfiles size=14 + RELOC/doc/fonts/shobhika/AUTHORS.txt + RELOC/doc/fonts/shobhika/CONTRIBUTORS.txt + RELOC/doc/fonts/shobhika/Copyright.txt + RELOC/doc/fonts/shobhika/OFL.txt + RELOC/doc/fonts/shobhika/README.md details="Readme" + RELOC/doc/fonts/shobhika/shobhika.pdf details="Font samples" + RELOC/doc/fonts/shobhika/shobhika.tex +runfiles size=176 + RELOC/fonts/opentype/public/shobhika/Shobhika-Bold.otf + RELOC/fonts/opentype/public/shobhika/Shobhika-Regular.otf +catalogue-contact-bugs https://github.com/Sandhi-IITBombay/Shobhika/issues +catalogue-contact-repository https://github.com/Sandhi-IITBombay/Shobhika +catalogue-ctan /fonts/shobhika +catalogue-license ofl +catalogue-topics font font-cyrillic font-indic font-multilingual font-otf +catalogue-version 1.05 + +name short-math-guide +category Package +revision 46126 +shortdesc Guide to using amsmath and related packages to typeset mathematical notation with LaTeX +relocated 1 +longdesc The Short Math Guide is intended to be a concise introduction +longdesc to the use of the facilities provided by amsmath and various +longdesc other LaTeX packages for typesetting mathematical notation. +longdesc Originally created by Michael Downes of the American +longdesc Mathematical Society based only on amsmath, it has been brought +longdesc up to date with references to related packages and other useful +longdesc information. +containersize 612 +containerchecksum 6e2c131cb3a2ce85a6718a8dab1cc52fa5dab7a3db34575dcfb0a33e6a3f3ba6025eccb82a2e07a198243bd24c5070a931e591003a768c4a057f70659e442155 +doccontainersize 563828 +doccontainerchecksum 0feaf4b3cafbac8fc78855250dc39858b0b8326b803c851efd831f36476dac2f1ce86083c11476e36ac88b44a2a8d25094f9203c774044306536fcb2b261a184 +docfiles size=154 + RELOC/doc/latex/short-math-guide/README details="Readme" + 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-license lppl1.3c +catalogue-topics maths documentation maths-doc +catalogue-version 2.0 + +name shortmathj +category Package +revision 54407 +shortdesc Automatically shortify titles of mathematical journals +relocated 1 +longdesc This small dummy package just contains a simple list of full +longdesc and short journal names aswritten in AMS standard: +longdesc https://mathscinet.ams.org/msnhtml/serials.pdf +containersize 47360 +containerchecksum f0fe218b38efd961d1f67db265797a01ff4fc28daf0df5f23d9eb2f009961449d6dd3ae953c800af377265cf7f77f707cc35b0c413d93b232502d33b60fdc224 +doccontainersize 120008 +doccontainerchecksum d402e9fd56f8567a79158decc200547e4b68a171c4fa53ca2d9efc2377e9ea1aa61155f53e66de6668a4523177464638412adb4b402a8127436826fbacf24ebb +docfiles size=35 + RELOC/doc/latex/shortmathj/README.md details="Readme" + RELOC/doc/latex/shortmathj/biblatex-shortmathj-examples.bib + RELOC/doc/latex/shortmathj/index.js + RELOC/doc/latex/shortmathj/package.json + RELOC/doc/latex/shortmathj/shortmathj-biblatex-mwe.pdf details="Package documentation" + RELOC/doc/latex/shortmathj/shortmathj-biblatex-mwe.tex + RELOC/doc/latex/shortmathj/shortmathj.template.sty +runfiles size=108 + RELOC/tex/latex/shortmathj/shortmathj.sty +catalogue-contact-bugs https://gitlab.com/Nickkolok/latex-shortmathj/issues +catalogue-contact-repository https://gitlab.com/Nickkolok/latex-shortmathj +catalogue-ctan /macros/latex/contrib/shortmathj +catalogue-license lppl1.3c +catalogue-topics biblatex journalpub +catalogue-version 0.5.0 + +name shorttoc +category Package +revision 15878 +shortdesc Table of contents with different depths +relocated 1 +longdesc A package to create another table of contents with a different +longdesc depth, useful in large documents where a detailed table of +longdesc contents should be accompanied by a shorter one, giving only a +longdesc general overview of the main topics in the document. +containersize 1344 +containerchecksum 6e78bca7425e0b23d7520af19494d9de303b86fae7a013ef85b2d512ee86be1f478ede2293650b435ab579811e444b570995e2ae8720afc60b42c0c26d7489a6 +doccontainersize 192508 +doccontainerchecksum 03090924cdde619877b271fbd70761035b5da1f2278a3642b471a86e83559da316558a752d85716242001f40ca403a985d036750218e78d873a4920905c5a652 +docfiles size=52 + RELOC/doc/latex/shorttoc/00readme details="Package README" + RELOC/doc/latex/shorttoc/shorttoc.pdf details="Package documentation" +srccontainersize 3876 +srccontainerchecksum 2841e846e2e691864e3412c52c3cb2130462b2b94f01ab9ccfba7cad05392db2b63ce3cd3ce60896a7861969ea20fdd3b1918a69e122316149af3fddf1b9c492 +srcfiles size=4 + RELOC/source/latex/shorttoc/shorttoc.dtx + RELOC/source/latex/shorttoc/shorttoc.ins +runfiles size=1 + RELOC/tex/latex/shorttoc/shorttoc.sty +catalogue-ctan /macros/latex/contrib/shorttoc +catalogue-license lppl +catalogue-topics toc-etc +catalogue-version 1.3 + +name show2e +category Package +revision 15878 +shortdesc Variants of \show for LaTeX2e +relocated 1 +longdesc This small package aims at making debugging (especially in an +longdesc interactive way) easier, by providing \show variants suited to +longdesc LaTeX2e commands (whether with optional arguments or robust) +longdesc and environments. The variant commands also display the +longdesc internal macros used by such commands, if any. The \showcs +longdesc variant helps with macros with exotic names. +containersize 1216 +containerchecksum 702d0913a299b68bedec15c697868a70f058957dbd3a2dd2c503bc21c8a250dc7601e6348080bb394a38108bcd2f5ee67796a888183aa181c9f88a72e7666580 +doccontainersize 61116 +doccontainerchecksum a427f7126ded4251c255fcaf2c381f7c00d0d0e55253804cbe631ac59be1bd51e7ba2ee51110af86bcee27d73698bb7baa323fef8e23a41000928b242b0be282 +docfiles size=23 + RELOC/doc/latex/show2e/README details="Readme" + RELOC/doc/latex/show2e/show2e-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/show2e/show2e.pdf details="Package documentation (English)" language="en" +srccontainersize 4340 +srccontainerchecksum 3a6bb6fbc35b5f6b1cae00d5c63c16ea13af270cbf90f57761f71076b26130272924154b8b0aac60cda41d27b75db4f1edfc82101f38b29e9641a4e02cb6c2a2 +srcfiles size=3 + RELOC/source/latex/show2e/show2e.dtx +runfiles size=1 + RELOC/tex/latex/show2e/show2e.sty +catalogue-ctan /macros/latex/contrib/show2e +catalogue-license lppl +catalogue-topics debug-supp +catalogue-version 1.0 + +name showcharinbox +category Package +revision 29803 +shortdesc Show characters inside a box +relocated 1 +longdesc The package typesets a character inside a box, showing where +longdesc reference point is, and displaying width, height, and depth +longdesc information of the character. The output is like that on page +longdesc 63 of "The TeXBook" or page 101 of "The METAFONTbook". The +longdesc package itself is motivated by Knuth's macros in the file +longdesc manmac.tex. Users should note that using a small size for the +longdesc character inside the box does not make any sense: use a large +longdesc size. +containersize 1952 +containerchecksum 9cb18e80701d22e167b026767068e0fc0a7b6c4cdbc9014991f10ecd76d37614983591c931972584c50e0d6e35abee70ae3079f7dd8c855d33d1e4ea06693d25 +doccontainersize 72044 +doccontainerchecksum 47dc7121ed852931bdc5bc38b7fb4dfda6616b8b0ce649d90da71c7a4cb6084ddd69e07596dd4179b5654fa9a54fcedef6949ac4778b449ad14740058e237dad +docfiles size=20 + RELOC/doc/latex/showcharinbox/README details="Readme" + RELOC/doc/latex/showcharinbox/showcharinbox.pdf details="Package documentation" +srccontainersize 3668 +srccontainerchecksum 0c3ee2d6c00183936b57ba8e44d274baae8d90b8c089f6b5f3384c5928c703f22c87ac2781a8399189e028d6503c3e154499e85ac6b1ae69c7cb27eb29ee11a3 +srcfiles size=4 + RELOC/source/latex/showcharinbox/showcharinbox.dtx + RELOC/source/latex/showcharinbox/showcharinbox.ins +runfiles size=1 + RELOC/tex/latex/showcharinbox/showcharinbox.sty +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-license lppl1.3 +catalogue-topics font-devel +catalogue-version 0.1 + +name showdim +category Package +revision 28918 +shortdesc Variants on printing dimensions +relocated 1 +longdesc A package for LaTeX providing a number of commands for printing +longdesc the value of a TeX dimension. For example, +longdesc \tenthpt{\baselineskip} yields the current value of +longdesc \baselineskip rounded to the nearest tenth of a point. +containersize 1652 +containerchecksum 07c409f3d30def6894a787d9c2f7366abf6ee4248386e9d5b2e4f7858d692c7cd3e72871ff02c73a39a190ac36ccbaf5fe16e8e1b7b328be80a9ba041d12feb7 +doccontainersize 928 +doccontainerchecksum ba76568009149bec7484b4dbe7bede8e516a2c2ad20c77c70f0357e865c66751aa4f3d8c92c59effa1ac12e03b3b8c500c65708547ddf52458b0ce90def8fc98 +docfiles size=1 + RELOC/doc/latex/showdim/README +runfiles size=1 + RELOC/tex/latex/showdim/showdim.sty +catalogue-ctan /macros/latex/contrib/showdim/showdim.sty +catalogue-license lppl +catalogue-topics debug-supp +catalogue-version 1.2 + +name showexpl +category Package +revision 57414 +shortdesc Typesetting LaTeX source code +relocated 1 +longdesc This package provides a way to typeset LaTeX source code and +longdesc the related result in the same document. +containersize 4184 +containerchecksum d42f5d3570f252295a25c130c9ec9a94abaf9f28038fca163423a0aa44afee4f354aa2dced3ccd173e698a5da6ccfaa8284096742ba04b03f5aebf8fc502426c +doccontainersize 604612 +doccontainerchecksum a3f12a43edc3ffa5556bec25b8527fdb039aaa704b2ea37c723cff367d453b0ac53b14c1eff41bf6d3961cf1d4f11b70349c03d253336421031ef0ba81b56561 +docfiles size=156 + RELOC/doc/latex/showexpl/README.md details="README file" + RELOC/doc/latex/showexpl/result-picture.pdf + RELOC/doc/latex/showexpl/showexpl-test.pdf details="Package example" + RELOC/doc/latex/showexpl/showexpl-test.tex + RELOC/doc/latex/showexpl/showexpl.pdf details="Package documentation" +srccontainersize 9180 +srccontainerchecksum 52ff44163115b6ffa5a8e181739df2c8c5619a32af0aa7bfc773d84b12c0e85a67bf87823ae0dd47f7d40d9e12fb8bde039b935555a1cc220dcbf49d182f6da3 +srcfiles size=9 + RELOC/source/latex/showexpl/showexpl.dtx + RELOC/source/latex/showexpl/showexpl.ins +runfiles size=4 + RELOC/tex/latex/showexpl/showexpl.sty +catalogue-contact-bugs https://github.com/rolfn/showexpl/issues +catalogue-contact-repository https://github.com/rolfn/showexpl +catalogue-ctan /macros/latex/contrib/showexpl +catalogue-license lppl1.2 +catalogue-topics listing macro-demo +catalogue-version 0.3s + +name showhyphens +category Package +revision 39787 +shortdesc Show all possible hyphenations in LuaLaTeX +relocated 1 +longdesc With this package, LuaLaTeX will indicate all possible +longdesc hyphenations in the printed output. +containersize 1784 +containerchecksum e3dc83cf25d0006e4ed0b2181a7cfaa81a2c7d6a7152d9202b2d9ccc876a773045abcb055709a33d69f1efd80c11edd642364e13fde7991730755d944c35afe4 +doccontainersize 86248 +doccontainerchecksum 2e87bf2fb7eb014d28e44634fa8c307bcbfa4e774c1b279a5242b3c99e569dc1eb64d5f0ba30958d0ca84c5c2bd770ce3de81af98981a3e01a2c5bc8575c9e02 +docfiles size=28 + RELOC/doc/lualatex/showhyphens/README details="Readme" + RELOC/doc/lualatex/showhyphens/showhyphens-doc.pdf details="Package documentation" + RELOC/doc/lualatex/showhyphens/showhyphens-doc.tex + RELOC/doc/lualatex/showhyphens/showhyphens-sample.pdf details="Sample output" +runfiles size=1 + RELOC/tex/lualatex/showhyphens/showhyphens.sty +catalogue-ctan /macros/luatex/latex/showhyphens +catalogue-license mit +catalogue-topics hyph-gen luatex +catalogue-version 0.5c + +name showlabels +category Package +revision 41322 +shortdesc Show label commands in the margin +relocated 1 +longdesc This package helps you keep track of all the labels you define, +longdesc by putting the name of new labels into the margin whenever the +longdesc \label command is used. The package allows you to do the same +longdesc thing for other commands. The only one for which this is +longdesc obviously useful is the \cite command, but it's easy to do it +longdesc for others, such as the \ref or \begin commands. +containersize 3180 +containerchecksum 4d805bcd319df51219c956fce18fffe3b91aad3f468f54f5b6fd9ca15f8c24df10e1092252ba6870fd406c024deb054c60d7f64dfef7194c45b92a8a78a9da1d +doccontainersize 169108 +doccontainerchecksum 0a8cf29e85526e92df738364607e31927223458a969c117d40a0e9cf3470e5c4050107b9fe915ad2a23720a2dd4f5faa1d43d9737b9b7a6f6105de3a36e9888b +docfiles size=53 + RELOC/doc/latex/showlabels/README details="Readme" + RELOC/doc/latex/showlabels/VERSION + RELOC/doc/latex/showlabels/lppl.txt + RELOC/doc/latex/showlabels/showlabels.html details="Package documentation (HTML)" + RELOC/doc/latex/showlabels/showlabels.pdf details="Package documentation (PDF)" + RELOC/doc/latex/showlabels/style.css +srccontainersize 12656 +srccontainerchecksum eb0dd894327bd6f4591a3a57c52af10e73ae07f7d933ff3310012d46b09d1572adac0eb6a8a22ff03ced5f7832a017b58ef809d5fd914103fb569b42cfb2abfa +srcfiles size=12 + RELOC/source/latex/showlabels/showlabels.drv + RELOC/source/latex/showlabels/showlabels.dtx + RELOC/source/latex/showlabels/showlabels.ins +runfiles size=3 + RELOC/tex/latex/showlabels/showlabels.sty +catalogue-ctan /macros/latex/contrib/showlabels +catalogue-license lppl1.3 +catalogue-topics label-ref bibtex-supp macro-supp +catalogue-version 1.8 + +name showtags +category Package +revision 20336 +shortdesc Print the tags of bibliography entries +relocated 1 +longdesc Prints the tag right-aligned on each line of the bibliography. +containersize 2052 +containerchecksum b70dc03f22838dab65631d39d8690897d4a5c71b5451775e85cdc3ff600d63afc29bd28e49aa64a5a2467143f4a84d62f5a2a9af4a8365e0a867d6a46e9de93b +doccontainersize 211912 +doccontainerchecksum 3e1efebe8edd469e66b18aea9d9a3614b753a43ac61f5a31b57fccc1b45047aaaee8f80d156932671f9ae7457fc627732f1f72c65fca42946280c1182d8960de +docfiles size=53 + RELOC/doc/latex/showtags/showtags-doc.pdf details="Package documentation" + RELOC/doc/latex/showtags/showtags-doc.tex +runfiles size=2 + RELOC/tex/latex/showtags/showtags.sty +catalogue-ctan /macros/latex/contrib/showtags +catalogue-license pd +catalogue-topics bibtex-supp +catalogue-version 1.05 + +name shtthesis +category Package +revision 57740 +shortdesc An unofficial LaTeX thesis template for ShanghaiTech University +relocated 1 +longdesc This package, forked from ucasthesis, is an unofficial LaTeX +longdesc thesis template for ShanghaiTech University and satisfies all +longdesc format requirements of the school. The user just needs to set +longdesc \documentclass{shtthesis} and to set up mandatory information +longdesc via \shtsetup, then his or her thesis document will be typeset +longdesc properly. +containersize 11540 +containerchecksum 50a81503c33b2d38f04315335c4184f8949b23e0a535297b611c1c28248a87871ca288c1953db0edefa50cc4de238b270400a47e530339601207bb9cc2560429 +doccontainersize 2179340 +doccontainerchecksum e4817b159e7b449f440750bb9bf2fc479f61e0532bfb832b34af989bddaada5d45be5a1be7dc24baca11c0338c4fb91219454b93f9024eef5dc861f2caf844f4 +docfiles size=558 + RELOC/doc/latex/shtthesis/CHANGELOG.md + RELOC/doc/latex/shtthesis/LICENSE + RELOC/doc/latex/shtthesis/README.md details="Readme" + RELOC/doc/latex/shtthesis/shtthesis-user-guide.pdf details="Package documentation" language="zh" + RELOC/doc/latex/shtthesis/shtthesis-user-guide.tex +runfiles size=13 + RELOC/tex/latex/shtthesis/shtthesis.cls +catalogue-contact-announce https://github.com/lirundong/shtthesis/releases +catalogue-contact-bugs https://github.com/lirundong/shtthesis/issues +catalogue-contact-repository https://github.com/lirundong/shtthesis +catalogue-ctan /macros/latex/contrib/shtthesis +catalogue-license gpl3 +catalogue-topics dissertation class chinese +catalogue-version 0.3.2 + +name shuffle +category Package +revision 15878 +shortdesc A symbol for the shuffle product +relocated 1 +longdesc The bundle provides a LaTeX package and a font (as Metafont +longdesc source) for the shuffle product which is used in some part of +longdesc mathematics and physics. +containersize 3644 +containerchecksum 62b456ae961d34908fc25cc085bfa04d39e70f2641d65dc8e0eda419ec96a328798cc258162ebe065285f3ee1088e6076525ccbd8c0f7c0800024f371bdee65d +doccontainersize 279692 +doccontainerchecksum 1b6427fa0cf98651a219f1cf6f15a400c09ea924bf0dcea7d48ce0665a5f1828ad64513f87089ea48d02d489d8020c90c661bac60c069601be437c77364813d4 +docfiles size=74 + RELOC/doc/latex/shuffle/README details="Readme" + RELOC/doc/latex/shuffle/shuffle.pdf details="Package documentation" +srccontainersize 3264 +srccontainerchecksum 250729a95e91eef9c1f9b5364aa3b0a1f03a75805845c773f82b26c3782764d6f866f33391aed2f0cbb167d016b06593c015e6fb2aa9b7ababf33f215fb92647 +srcfiles size=3 + RELOC/source/latex/shuffle/shuffle.dtx + RELOC/source/latex/shuffle/shuffle.ins +runfiles size=9 + RELOC/fonts/source/public/shuffle/shuffle.mf + RELOC/fonts/source/public/shuffle/shuffle10.mf + RELOC/fonts/source/public/shuffle/shuffle7.mf + RELOC/fonts/tfm/public/shuffle/shuffle10.tfm + RELOC/fonts/tfm/public/shuffle/shuffle7.tfm + RELOC/tex/latex/shuffle/Ushuffle.fd + RELOC/tex/latex/shuffle/shuffle.sty +catalogue-ctan /fonts/shuffle +catalogue-license pd +catalogue-topics maths physics +catalogue-version 1.0 + +name sidecap +category Package +revision 15878 +shortdesc Typeset captions sideways +relocated 1 +longdesc Defines environments called SCfigure and SCtable (analogous to +longdesc figure and table) to typeset captions sideways. Options include +longdesc outercaption, innercaption, leftcaption and rightcaption. +containersize 3448 +containerchecksum c0b775c16ea9acc7de952c6d08d49f57ac4517d5a78e822255176ee1f570c17d584b34821a255ec10e7fbb9334fc7904147bc4d613ad4db9553a3917f737b924 +doccontainersize 151364 +doccontainerchecksum 5bee3d448386a2bd508dcae495c6fb83806542680db7c5fe8cf35ea09a955df01e5c01fa64c28b64f0bb9a3dc0411fc68a835e1b0ae9d46c1387f544538d26de +docfiles size=47 + RELOC/doc/latex/sidecap/README details="Readme" + RELOC/doc/latex/sidecap/sc-test-common.tex + RELOC/doc/latex/sidecap/sc-test1.tex + RELOC/doc/latex/sidecap/sc-test2.tex + RELOC/doc/latex/sidecap/sc-test3.tex + RELOC/doc/latex/sidecap/sc-test4.tex + RELOC/doc/latex/sidecap/sc-test5.tex + RELOC/doc/latex/sidecap/sc-test6.tex + RELOC/doc/latex/sidecap/sidecap.pdf details="Package documentation" +srccontainersize 8216 +srccontainerchecksum b69fcf81ba9d05c20c64b7d71369ff25a0cc8185c914935cc986635ccf1ca9ce709cbe2f12f5e671a5b946f121950b3f6c6edb9d28e736959c5ccdf7fdbea405 +srcfiles size=9 + RELOC/source/latex/sidecap/Makefile + RELOC/source/latex/sidecap/sidecap.dtx + RELOC/source/latex/sidecap/sidecap.ins +runfiles size=3 + RELOC/tex/latex/sidecap/sidecap.sty +catalogue-ctan /macros/latex/contrib/sidecap +catalogue-license lppl +catalogue-topics caption rotation +catalogue-version 1.6f + +name sidenotes +category Package +revision 54524 +shortdesc Typeset notes containing rich content, in the margin +relocated 1 +longdesc The package allows typesetting of texts with notes, figures, +longdesc citations, captions and tables in the margin. This is common +longdesc (for example) in science text books. +containersize 4444 +containerchecksum 6cf38305b919deca31761f1420c18a0ffb5ba18e045515af058e9b7d73535730117f757f16a8030d97247378efa46428ed9f28757524b650a96133aae6fe4e11 +doccontainersize 304908 +doccontainerchecksum db5f8666987eeb2c8e29426a91bc731f8c380176b3f0285c4c4ca8554b91c85af52d0ebe16d57cdb558d8c7d1e97c6f169addb12a57a107c00ff36486dd2d218 +docfiles size=79 + RELOC/doc/latex/sidenotes/README details="Readme" + RELOC/doc/latex/sidenotes/caesar_example.pdf + RELOC/doc/latex/sidenotes/caesar_example.tex + RELOC/doc/latex/sidenotes/sidenotes.pdf details="Package documentation" +srccontainersize 5992 +srccontainerchecksum 6d237c8df983f2a3d056038067039c45604086a377cdf02b9adc0e1c125619ff911165891d27be7e30466d3cda03f62c32bc7edc73152460d21443a5cc6886f5 +srcfiles size=6 + RELOC/source/latex/sidenotes/sidenotes.dtx + RELOC/source/latex/sidenotes/sidenotes.ins +runfiles size=4 + RELOC/tex/latex/sidenotes/caesar_book.cls + RELOC/tex/latex/sidenotes/sidenotes.sty +catalogue-also footmisc +catalogue-ctan /macros/latex/contrib/sidenotes +catalogue-license lppl1.3 +catalogue-topics marginal +catalogue-version 1.00a + +name sides +category Package +revision 15878 +shortdesc A LaTeX class for typesetting stage plays +relocated 1 +longdesc This is a LaTeX class for typesetting stage plays, based on the +longdesc plari class written by Antti-Juhani Kaijanaho in 1998. It has +longdesc been updated and several formatting changes have been made to +longdesc it--most noticibly there are no longer orphans. +containersize 3100 +containerchecksum 739e26e0c0b77d75e91f2a3a18996aa55ee1163a2bee6d489db4ba3b0864b51572c55ec53441946f16cb87694425d09e613abd2223fba2941fea4be137341b10 +doccontainersize 46528 +doccontainerchecksum 653a8472a278bb1d33d9f86559398b62e32b521c6ce8dd977dbbc4f44183e37b95378ea4b29356948735c42925f9ed25153cc6a9009341ff01d80befe2bcddb3 +docfiles size=15 + RELOC/doc/latex/sides/README details="Readme" + RELOC/doc/latex/sides/sides-sample.pdf details="A (distressing) sample play" + RELOC/doc/latex/sides/sides-sample.tex +runfiles size=2 + RELOC/tex/latex/sides/sides.cls +catalogue-also dramatist +catalogue-ctan /macros/latex/contrib/sides +catalogue-license gpl +catalogue-topics drama-script + +name signchart +category Package +revision 39707 +shortdesc Create beautifully typeset sign charts +relocated 1 +longdesc The package allows users to easily typeset beautiful looking +longdesc sign charts directly into their (La)TeX document. +containersize 1756 +containerchecksum d379bb1a9fecc06f4e48419d0f4f49e50b6b276e15e64992ee7e154154eefc24e71c060066de3bf9e97da6c8e62b78208f3a01918150cd2ef51231b5abaee44e +doccontainersize 308744 +doccontainerchecksum 7b140f890f3342ba6b2d25385dcae6925d8e445a862af703578f455b73c69cb71f4b9b5a933ac8b1a16178874f71c80d124c352b5aff4d7bf3dad6f1aa5a3874 +docfiles size=77 + RELOC/doc/latex/signchart/README.txt details="Readme" + RELOC/doc/latex/signchart/signchart.pdf details="Package documentation" +srccontainersize 3856 +srccontainerchecksum c2f141c1e0a279d5a76cddf97d5dcf24e35cb219d0a0114d5d2f91a6b24bde3b900b168225cc6afa4c623c9011bd373388799a0448ff588ffefadf7109a24af6 +srcfiles size=4 + RELOC/source/latex/signchart/signchart.dtx + RELOC/source/latex/signchart/signchart.ins +runfiles size=1 + RELOC/tex/latex/signchart/signchart.sty +catalogue-ctan /macros/latex/contrib/signchart +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.01 + +name silence +category Package +revision 27028 +shortdesc Selective filtering of error messages and warnings +relocated 1 +longdesc The package allows the user to filter out unwanted warnings and +longdesc error messages issued by LaTeX, packages and classes, so they +longdesc won't pop out when there's nothing one can do about them. +longdesc Filtering goes from the very broad ("avoid all messages by such +longdesc and such") to the fine-grained ("avoid messages that begin +longdesc with..."). Messages may be saved to an external file for later +longdesc reference. +containersize 3620 +containerchecksum 95f4f095e0f70dcd11482be4f6d52c5ea7a06ad820c08386ad956b9bb9ad593410e59fe9bb5904c3242594d466c495e7793718d4cb707ed3edd1d17ac3c1c1a8 +doccontainersize 466940 +doccontainerchecksum 988df943eaf9337145d081de38ac22389bbffd3e94408b1cbb5de7605cccb47e2fa837813d4647c339d978b5b9b3e82e6d9859b840e89c09c95dd9572db0601b +docfiles size=116 + RELOC/doc/latex/silence/README details="Readme" + RELOC/doc/latex/silence/silence-doc.pdf details="Package documentation" +srccontainersize 17724 +srccontainerchecksum 7a628ca9efcc34863f064783a1e65e7bfee2a735a2457413d5b938e50b823fdfc6137f56041885e2c4910119ac756a5d6eecff91d9e99eb2bb85d2cd73f273b3 +srcfiles size=18 + RELOC/source/latex/silence/silence-doc.dtx + RELOC/source/latex/silence/silence.ins +runfiles size=5 + RELOC/tex/latex/silence/silence.sty +catalogue-ctan /macros/latex/contrib/silence +catalogue-license lppl +catalogue-topics compilation +catalogue-version 1.5b + +name simple-resume-cv +category Package +revision 43057 +shortdesc Template for a simple resume or curriculum vitae (CV), in XeLaTeX +relocated 1 +longdesc Template for a simple resume or curriculum vitae (CV), in +longdesc XeLaTeX. Simple template that can be further customized or +longdesc extended, with numerous examples. +containersize 3432 +containerchecksum 996341ce711f6f9a68ccd7e0b315da98eed8f4737d44b8dbd9881c2a76c8ef2d04b1c956333b0e33997d57e0b62bcb2485029283bb4f4711c2f8e38c177755d7 +doccontainersize 96196 +doccontainerchecksum a380b2a498bde69cef1ba2401e16886d35edb40e3338963bcbd6e862da3e54f547e7900a18f668515b3ff178462a4ea0d41bc228b6b6e7ea8b0693e295231e92 +docfiles size=29 + RELOC/doc/xelatex/simple-resume-cv/CV.pdf details="Package documentation" + RELOC/doc/xelatex/simple-resume-cv/CV.tex + RELOC/doc/xelatex/simple-resume-cv/LICENSE + RELOC/doc/xelatex/simple-resume-cv/README.md details="Readme" +runfiles size=3 + RELOC/tex/xelatex/simple-resume-cv/simpleresumecv.cls +catalogue-ctan /macros/xetex/latex/simple-resume-cv +catalogue-license pd +catalogue-topics cv class + +name simple-thesis-dissertation +category Package +revision 43058 +shortdesc Template for a simple thesis or dissertation (Ph.D. or master's degree) or technical report, in XeLaTeX +relocated 1 +longdesc Template for a simple thesis or dissertation (Ph.D. or master's +longdesc degree) or technical report, in XeLaTeX. Simple template that +longdesc can be further customized or extended, with numerous examples. +longdesc Consistent style for figures, tables, mathematical theorems, +longdesc definitions, lemmas, etc. +containersize 5208 +containerchecksum 201826e649acbc8dde933da3d141408ef3e4f3bc5daffbd520a19885af612f17de2618fe7e8c78a419b6e5e4eeeaa36a2fcb3db6f610df2189e01e0b4a66e9e3 +doccontainersize 198560 +doccontainerchecksum 8dd82147b1096f728fd52a56c39309d0f421abdd972a1297b88b516e0a5ecf8387a3accc508047bcd3996ab81d778dbdd221934e2bb4c96e1ef2a59cd0fc6995 +docfiles size=70 + RELOC/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.odg + RELOC/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.pdf + RELOC/doc/xelatex/simple-thesis-dissertation/LICENSE + RELOC/doc/xelatex/simple-thesis-dissertation/README.md details="Readme" + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-BackMatter.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-ChapAbbr.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-Intro.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-Summary.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-FrontMatter.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis.bib + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis.pdf details="Package documentation" + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis.tex +runfiles size=5 + RELOC/tex/xelatex/simple-thesis-dissertation/simplethesisdissertation.cls +catalogue-ctan /macros/xetex/latex/simple-thesis-dissertation +catalogue-license pd +catalogue-topics dissertation class + +name simplebnf +category Package +revision 56761 +shortdesc A simple package to format Backus-Naur form (BNF) +relocated 1 +longdesc This package provides a simple way to format Backus-Naur form +longdesc (BNF). The included bnfgrammar environment parses BNF +longdesc expressions (possibly annotated), so users can write readable +longdesc BNF expressions in their documents. The package requires expl3, +longdesc xparse, and mathtools. +containersize 2204 +containerchecksum f306851371767da793a60cb604776aa7f537401a3dcbdca899b347d090baee3d3e6d28550f8d95a287e722a92550137f9241d2c207d955b47fe0b392a44b5ed8 +doccontainersize 135860 +doccontainerchecksum cd4c3786d953669b53e9a3b5f6e13591ed67efcfbda7eac37f3e7c3709a8b6599f3e9f363e91658019fc03b91c4ed190ed40c81cc9e935bee697a77b51f4238a +docfiles size=36 + RELOC/doc/latex/simplebnf/LICENSE + RELOC/doc/latex/simplebnf/README.md details="Readme" + RELOC/doc/latex/simplebnf/simplebnf-doc.pdf details="Package documentation" + RELOC/doc/latex/simplebnf/simplebnf-doc.tex +runfiles size=2 + RELOC/tex/latex/simplebnf/simplebnf.sty +catalogue-also backnaur +catalogue-contact-repository https://github.com/Zeta611/simplebnf +catalogue-contact-support https://github.com/Zeta611/simplebnf/issues +catalogue-ctan /macros/latex/contrib/simplebnf +catalogue-license mit +catalogue-topics expl3 formal-spec +catalogue-version 0.2.0 + +name simplecd +category Package +revision 29260 +shortdesc Simple CD, DVD covers for printing +relocated 1 +longdesc The package provides printable cut-outs for various CD, DVD and +longdesc other disc holders. The name of the package comes from its +longdesc implementation and ease of use; it was designed just for text +longdesc content, but since the text is placed in a \parbox in a tabular +longdesc environment cell, a rather wide range of things may be placed. +containersize 6232 +containerchecksum 5fe4024ce7991242fd60b8a87c88605f68ef9595895857b56981b35dabe96c97f9af684fc5ca9c3089ba96791e076512ccd549ce70071d215eaed4e731145b30 +doccontainersize 915604 +doccontainerchecksum 5cd208f8869dc989542bf028c216fbddec5bfb285ffc18c25cfea928035946e903cc2b61de630125d8e8deea772f7f20cab552505538eaa5d3aecaef8192abec +docfiles size=249 + RELOC/doc/latex/simplecd/README details="Readme" + RELOC/doc/latex/simplecd/examples.pdf + RELOC/doc/latex/simplecd/examples.tex + RELOC/doc/latex/simplecd/simplecd.pdf details="Package documentation" +srccontainersize 17260 +srccontainerchecksum 9b26b5fb78bfeb1115af219615c7bcf2ee85c5878ff18807444642e103abccda517c3d701bdfd655f5f9e3d1dc0374c316db96d5d7b0ab9addad74b8d7ecb5f3 +srcfiles size=25 + RELOC/source/latex/simplecd/simplecd.dtx + RELOC/source/latex/simplecd/simplecd.ins +runfiles size=9 + RELOC/tex/latex/simplecd/simplecd.sty +catalogue-also cd cdcover +catalogue-ctan /macros/latex/contrib/simplecd +catalogue-license lppl1.2 +catalogue-topics covers covers +catalogue-version 1.4 + +name simplecv +category Package +revision 35537 +shortdesc A simple class for writing curricula vitae +relocated 1 +longdesc A derivative of the cv class available to lyx users (renamed to +longdesc avoid the existing cv package). +containersize 2112 +containerchecksum c67e9200925ac86386efaab35a8edbf20f0fda700c00c3b0350eadbe62f39fc02f502493a73acc768a4727ad1162561d7baf38193d57d1fefb4c8083ebe38c35 +doccontainersize 292656 +doccontainerchecksum dbf087e0659f11b4dc0cf40a6826cc45f48b8155d9148262877a0d51f5766888780698d792f055666766f029ac6f5384b41c0fc41e1c84548582e665eccc0f20 +docfiles size=74 + RELOC/doc/latex/simplecv/README details="Readme" + RELOC/doc/latex/simplecv/simplecv.pdf details="Package documentation" + RELOC/doc/latex/simplecv/testcv.pdf details="Sample of use" + RELOC/doc/latex/simplecv/testcv.tex +srccontainersize 5844 +srccontainerchecksum cc8f96dbb9c99cf9567171e65276d18bc8faf4fa9980ca1fb60fb5fe1ab250d462c22af29105501d72ac7ff0421104be78f097bf6afe8b88dfe48932ac19fd70 +srcfiles size=5 + RELOC/source/latex/simplecv/simplecv.dtx + RELOC/source/latex/simplecv/simplecv.ins +runfiles size=2 + RELOC/tex/latex/simplecv/simplecv.cls +catalogue-ctan /macros/latex/contrib/simplecv +catalogue-license lppl +catalogue-topics cv lyx class +catalogue-version 1.6a + +name simpleinvoice +category Package +revision 45673 +shortdesc Easy typesetting of invoices +relocated 1 +longdesc This package lets you easily typeset professional-looking +longdesc invoices. The user specifies the content of the invoice by +longdesc different \setPROPERTY commands, and an invoice is generated +longdesc automatically with the \makeinvoice command. +containersize 2420 +containerchecksum 8d3d905dd9dc418503bde7cd51c90ff6fc6f688502ff871040f9eb6bf96b6c1ef999d3dd98b16c8739ce9518a22a8e99a23b5cc66c437504b3837c30ea19cca1 +doccontainersize 224844 +doccontainerchecksum 81e5ff2bf76f2b35549feb9b6336bd04b9273d4e6b951ee327101d4e5a5d3c429276735238b63c3b2ee03466b477ca2d7990a68615c1d0eee4f12a37d6b65472 +docfiles size=100 + RELOC/doc/latex/simpleinvoice/LICENSE + RELOC/doc/latex/simpleinvoice/README.md details="Readme" + RELOC/doc/latex/simpleinvoice/doc/examples/english.pdf + RELOC/doc/latex/simpleinvoice/doc/examples/english.tex + RELOC/doc/latex/simpleinvoice/doc/examples/norwegian.pdf + RELOC/doc/latex/simpleinvoice/doc/examples/norwegian.tex + RELOC/doc/latex/simpleinvoice/doc/simpleinvoice.pdf details="Package documentation" + RELOC/doc/latex/simpleinvoice/doc/simpleinvoice.tex +runfiles size=2 + RELOC/tex/latex/simpleinvoice/simpleinvoice.sty +catalogue-contact-repository https://github.com/mathialo/simpleinvoice/ +catalogue-ctan /macros/latex/contrib/simpleinvoice +catalogue-license gpl3 +catalogue-topics invoice + +name simplekv +category Package +revision 54915 +shortdesc A simple key/value system for TeX and LaTeX +relocated 1 +longdesc The package provides a simple key/value system for TeX and +longdesc LaTeX. +containersize 2908 +containerchecksum e24f82c6cf65677bee7a55e43c731c26fc05bceb5add86fb79cfbf0d05d09aba34f6cb0c72074a012096875bccc4a51360eed584e3b812e88d772b22676504de +doccontainersize 332620 +doccontainerchecksum 8a92af8cecf0d3be86c5a2f1abc4b1ad675f920956a99cf3a99bed61eaa56655eff0f3a2cefc728252dc7c346fbb4fea17a49a4eb4f2e9722409784aeb92a364 +docfiles size=85 + RELOC/doc/generic/simplekv/README details="Readme" + RELOC/doc/generic/simplekv/simplekv-fr.pdf details="Package documentation" language="fr" + RELOC/doc/generic/simplekv/simplekv-fr.tex +runfiles size=4 + RELOC/tex/generic/simplekv/simplekv.sty + RELOC/tex/generic/simplekv/simplekv.tex +catalogue-contact-bugs https://framagit.org/unbonpetit/simplekv/issues +catalogue-contact-repository https://framagit.org/unbonpetit/simplekv/tree/master +catalogue-ctan /macros/generic/simplekv +catalogue-license lppl1.3c +catalogue-topics keyval +catalogue-version 0.2 + +name simpleoptics +category Package +revision 54080 +shortdesc Drawing lenses and mirrors for optical diagrams +relocated 1 +longdesc This package provides some of macros for drawing simple lenses +longdesc and mirrors for use in optical diagrams. +containersize 1100 +containerchecksum c5e87774fa8003af6e1c81a83e9f63d71934723bf1dc7aebc553c838e30463d0b7dd3a41f76a644ca291cf7f59e50366e291cf1bb618a1321df4157f6ecea987 +doccontainersize 83472 +doccontainerchecksum 55c29a218edad811dd2c8d2109ec70d4ee95570db0336fda88e74456fd8c6d549cd3355ccada4fe55097b6c074082fb4dfa57ddcd6559ff5e8bb7e67d70fa376 +docfiles size=28 + RELOC/doc/latex/simpleoptics/README details="Readme" + RELOC/doc/latex/simpleoptics/simpleoptics.pdf details="Package documentation" + RELOC/doc/latex/simpleoptics/simpleoptics.tex +runfiles size=2 + RELOC/tex/latex/simpleoptics/simpleoptics.sty +catalogue-also tikz-optics +catalogue-ctan /graphics/pgf/contrib/simpleoptics +catalogue-license lppl1.3c +catalogue-topics pgf-tikz physics +catalogue-version 1.1.1 + +name simpler-wick +category Package +revision 39074 +shortdesc Simpler Wick contractions +relocated 1 +longdesc In every quantum field theory course, there will be a chapter +longdesc about Wick's theorem and how it can be used to convert a very +longdesc large product of many creation and annihilation operators into +longdesc something more tractable and normal ordered. The contractions +longdesc are denoted with a square bracket over the operators which are +longdesc being contracted, which used to be rather annoying to typeset +longdesc in LaTeX as the only other package available was simplewick, +longdesc which is rather unwieldy. This package provides a simpler +longdesc syntax for Wick contractions. +containersize 2612 +containerchecksum 2bead248c2380e19fb19012ba2cf7a41fdd113f48a372011c27ebac0820236500c5e49e5235e2c52fcc5a0f9c79f61cbf76a5d6de86322bc40382f5499216783 +doccontainersize 58000 +doccontainerchecksum d8a45e06707d3e6c39e36d83020f0a2d4654cab508d91e47022320e67454d08958cfd6d3872c5ae40539f29b03080915e136746452afb9f2e74fe8be2ec20bc1 +docfiles size=27 + RELOC/doc/latex/simpler-wick/LICENSE + RELOC/doc/latex/simpler-wick/README.md details="Readme" + RELOC/doc/latex/simpler-wick/simpler-wick.pdf details="Package documentation" + RELOC/doc/latex/simpler-wick/simpler-wick.tex +runfiles size=2 + RELOC/tex/latex/simpler-wick/simpler-wick.sty +catalogue-also simplewick +catalogue-contact-repository https://jp-ellis.github.io/projects/simpler-wick/ +catalogue-ctan /macros/latex/contrib/simpler-wick +catalogue-license lppl1.3 +catalogue-topics physics +catalogue-version 1.0.0 + +name simplewick +category Package +revision 15878 +shortdesc Simple Wick contractions +relocated 1 +longdesc The package provides a simple means of drawing Wick +longdesc contractions above and below expressions. +containersize 2348 +containerchecksum 86aab23f8d19e9fa5a6251f8f725ada87b66a71a3024253d8b56f3edcc20f26695b2194b710f691ff9ed0713c993a8652447674ec84d4084c3354791244a6f10 +doccontainersize 71624 +doccontainerchecksum bf0c3b8724ed8cc41635f45001fa04f655a7b37792c5b0e632578b066649c3bde1f894c3ab739ea2bb49f6e4f65e63fd7cd7d515ea15b53ab5894778a7918d13 +docfiles size=22 + RELOC/doc/latex/simplewick/README + RELOC/doc/latex/simplewick/simplewick.pdf details="Package documentation" +srccontainersize 4412 +srccontainerchecksum 45d26e7044fe0928eb8e572f0333bee64c008c2e4d1536a0145939ce0f3392961e72bd7fc70c35b2607b2a241249d13e44e433b373b57898193185a808f128d4 +srcfiles size=5 + RELOC/source/latex/simplewick/simplewick.dtx + RELOC/source/latex/simplewick/simplewick.ins +runfiles size=2 + RELOC/tex/latex/simplewick/simplewick.sty +catalogue-also simpler-wick +catalogue-ctan /macros/latex/contrib/simplewick +catalogue-license gpl +catalogue-topics physics +catalogue-version 1.2a + +name simplified-latex +category Package +revision 20620 +shortdesc A Simplified Introduction to LaTeX +relocated 1 +longdesc An accessible introduction for the beginner. +containersize 380 +containerchecksum 31313aede3900675d183bfcff0045df5fa7719b982df1822823c15d645c7ef64c0b46e0f1690d98d30b2a6057e082684f23cb61a490fb2217887d0f20231ce73 +doccontainersize 942836 +doccontainerchecksum f5bf92ed89cfc83f306cd4b2599446a11b73f73a0b82afbd0f441e26d837e6f436913bd2df18585c5e215fa0504bfee3d5d4f5ef4da8925161f85c70c14045e6 +docfiles size=261 + RELOC/doc/latex/simplified-latex/README details="Readme" + 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-license lppl +catalogue-topics tut-latex + +name simplivre +category Package +revision 58414 +shortdesc Write your books in a simple and clear way +relocated 1 +longdesc This package provides a LaTeX class for typesetting books with +longdesc a simple and clear design. Currently, it has native support to +longdesc English, French, and Chinese typesetting. It compiles with +longdesc either XeLaTeX or LuaLaTeX. This is part of the minimalist +longdesc class series and depends on minimalist.sty from the minimalist +longdesc package. The package name "simplivre" is taken from the French +longdesc words "simple" and "livre" (= "book"). +depend minimalist +containersize 3072 +containerchecksum cdcaa2083a2005e7b3dfb3b2e931a49da6f18c7860fad8dd0411bf88251a799836b6032382e661611487f6cd549a1d916977542f448ac689d976dd194c0a49a3 +doccontainersize 271784 +doccontainerchecksum 8bacd8834d8b54707d564b2a16a4f7d177205e9ab9704d2a47a42be399c0bf5e0ca1728f1b44e48e3957a69285615587df40d3ce9f98147bbb692ec06ac7875b +docfiles size=78 + RELOC/doc/latex/simplivre/LICENSE + RELOC/doc/latex/simplivre/README.md details="Readme" + RELOC/doc/latex/simplivre/simplivre-doc-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/simplivre/simplivre-doc-cn.tex + RELOC/doc/latex/simplivre/simplivre-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/simplivre/simplivre-doc-en.tex +runfiles size=2 + RELOC/tex/latex/simplivre/simplivre.cls +catalogue-also minimalist +catalogue-contact-repository https://github.com/Jinwen-XU/minimalist +catalogue-ctan /macros/unicodetex/latex/simplivre +catalogue-license lppl1.3c +catalogue-topics class book-pub chinese + +name simurgh +category Package +revision 31719 +shortdesc Typeset Parsi in LuaLaTeX +relocated 1 +longdesc The package provides an automatic and unified interface for +longdesc Parsi typesetting in LaTeX, using the LuaTeX engine. The +longdesc project to produce this system is dedicated to Ferdowsi The +longdesc Great. +containersize 246476 +containerchecksum 11b77f831aff6796e41ccf2024496ae1c9d4b9b5f4c029daf33e0eb4b4fd3d1e5c78137b945e3c9fe7a16380365fb88165a46e614dc3078657ce025a55f90d44 +doccontainersize 136908 +doccontainerchecksum 30ddd7a9bbf3f568ad4876336228842651d8f95eb5f21df81ac524b99a7a695e68e0469f79867668dc3b9913cf223b72a22f6a0d0c818233c081ba90ac67de1a +docfiles size=58 + RELOC/doc/lualatex/simurgh/ChangeLog + RELOC/doc/lualatex/simurgh/README.doc + RELOC/doc/lualatex/simurgh/simurgh-doc.pdf details="Package documentation" + RELOC/doc/lualatex/simurgh/simurgh-doc.tex + RELOC/doc/lualatex/simurgh/simurgh-logo.pdf + RELOC/doc/lualatex/simurgh/simurgh-logo.tex +runfiles size=1054 + RELOC/tex/lualatex/simurgh/simurgh-abjad.sty + RELOC/tex/lualatex/simurgh/simurgh-adadi.sty + RELOC/tex/lualatex/simurgh/simurgh-algorithm.sty + RELOC/tex/lualatex/simurgh/simurgh-algorithmic.sty + RELOC/tex/lualatex/simurgh/simurgh-amsart.sty + RELOC/tex/lualatex/simurgh/simurgh-amsbook.sty + RELOC/tex/lualatex/simurgh/simurgh-amsmath.sty + RELOC/tex/lualatex/simurgh/simurgh-amstext.sty + RELOC/tex/lualatex/simurgh/simurgh-amsthm.sty + RELOC/tex/lualatex/simurgh/simurgh-array.sty + RELOC/tex/lualatex/simurgh/simurgh-article.sty + RELOC/tex/lualatex/simurgh/simurgh-artikel1.sty + RELOC/tex/lualatex/simurgh/simurgh-artikel2.sty + RELOC/tex/lualatex/simurgh/simurgh-artikel3.sty + RELOC/tex/lualatex/simurgh/simurgh-arydshln.sty + RELOC/tex/lualatex/simurgh/simurgh-backref.sty + RELOC/tex/lualatex/simurgh/simurgh-bidi.sty + RELOC/tex/lualatex/simurgh/simurgh-boek.sty + RELOC/tex/lualatex/simurgh/simurgh-boek3.sty + RELOC/tex/lualatex/simurgh/simurgh-book.sty + RELOC/tex/lualatex/simurgh/simurgh-bookest.sty + RELOC/tex/lualatex/simurgh/simurgh-caption3.sty + RELOC/tex/lualatex/simurgh/simurgh-char-def.lua + RELOC/tex/lualatex/simurgh/simurgh-char-ini.lua + RELOC/tex/lualatex/simurgh/simurgh-chkeng.sty + RELOC/tex/lualatex/simurgh/simurgh-clss.sty + RELOC/tex/lualatex/simurgh/simurgh-counters.sty + RELOC/tex/lualatex/simurgh/simurgh-cptns.sty + RELOC/tex/lualatex/simurgh/simurgh-doc.cls + RELOC/tex/lualatex/simurgh/simurgh-empheq.sty + RELOC/tex/lualatex/simurgh/simurgh-extarticle.sty + RELOC/tex/lualatex/simurgh/simurgh-extbook.sty + RELOC/tex/lualatex/simurgh/simurgh-extletter.sty + RELOC/tex/lualatex/simurgh/simurgh-extreport.sty + RELOC/tex/lualatex/simurgh/simurgh-fleqn.sty + RELOC/tex/lualatex/simurgh/simurgh-fonts.sty + RELOC/tex/lualatex/simurgh/simurgh-footnotes.sty + RELOC/tex/lualatex/simurgh/simurgh-ftnxtra.sty + RELOC/tex/lualatex/simurgh/simurgh-glossaries.sty + RELOC/tex/lualatex/simurgh/simurgh-harfi.sty + RELOC/tex/lualatex/simurgh/simurgh-jalalical.sty + RELOC/tex/lualatex/simurgh/simurgh-leqno.sty + RELOC/tex/lualatex/simurgh/simurgh-letter.sty + RELOC/tex/lualatex/simurgh/simurgh-lettrine.sty + RELOC/tex/lualatex/simurgh/simurgh-loader.sty + RELOC/tex/lualatex/simurgh/simurgh-ltx.sty + RELOC/tex/lualatex/simurgh/simurgh-mathdigitspec.sty + RELOC/tex/lualatex/simurgh/simurgh-memoir.sty + RELOC/tex/lualatex/simurgh/simurgh-minitoc.sty + RELOC/tex/lualatex/simurgh/simurgh-natbib.sty + RELOC/tex/lualatex/simurgh/simurgh-pkgs.sty + RELOC/tex/lualatex/simurgh/simurgh-poem.sty + RELOC/tex/lualatex/simurgh/simurgh-rapport1.sty + RELOC/tex/lualatex/simurgh/simurgh-rapport3.sty + RELOC/tex/lualatex/simurgh/simurgh-refrep.sty + RELOC/tex/lualatex/simurgh/simurgh-report.sty + RELOC/tex/lualatex/simurgh/simurgh-scrartcl.sty + RELOC/tex/lualatex/simurgh/simurgh-scrbook.sty + RELOC/tex/lualatex/simurgh/simurgh-scrlettr.sty + RELOC/tex/lualatex/simurgh/simurgh-scrreprt.sty + RELOC/tex/lualatex/simurgh/simurgh-shellescape.sty + RELOC/tex/lualatex/simurgh/simurgh-tags.sty + RELOC/tex/lualatex/simurgh/simurgh-tartibi.sty + RELOC/tex/lualatex/simurgh/simurgh-tools.sty + RELOC/tex/lualatex/simurgh/simurgh-unibidi-core.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi-ini.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi-math.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi.sty + RELOC/tex/lualatex/simurgh/simurgh.sty +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-license gpl2 +catalogue-topics persian luatex +catalogue-version 0.01b + +name sitem +category Package +revision 22136 +shortdesc Save the optional argument of \item +relocated 1 +longdesc The package modifies \item commands to save the optional +longdesc argument in a box. +containersize 1004 +containerchecksum 64a34fcf0769ed4ab4b201facc056b890a89009e1847e9ca65fb405e1c1144225e8fff59c1a906341521bba5d39e3338900a9a35aff5bb716a5aff5e6aa4d49a +doccontainersize 73456 +doccontainerchecksum af74d7b4f4dfce45e543494344fa32f4f4d55435034cc1b23b24b333f89d54d0b8c9d0a1247561bb7182d3841fb04b7b3531be847a6fed3db212497ef2ccec3c +docfiles size=20 + RELOC/doc/latex/sitem/sitem.pdf details="Package documentation" +srccontainersize 1428 +srccontainerchecksum 9aa058eac9367ea31804b5c2983873f16d1c74f598fb0967f43257a963a38aeb7d578ddd596dbee87d942d87ece9188c6fe0f5e8734751325121195d9d348769 +srcfiles size=2 + RELOC/source/latex/sitem/sitem.dtx + RELOC/source/latex/sitem/sitem.ins +runfiles size=1 + RELOC/tex/latex/sitem/sitem.sty +catalogue-ctan /macros/latex/contrib/sitem +catalogue-license lppl1.3 +catalogue-topics list +catalogue-version 1.0 + +name siunitx +category Package +revision 58909 +shortdesc A comprehensive (SI) units package +relocated 1 +longdesc Typesetting values with units requires care to ensure that the +longdesc combined mathematical meaning of the value plus unit +longdesc combination is clear. In particular, the SI units system lays +longdesc down a consistent set of units with rules on how they are to be +longdesc used. However, different countries and publishers have +longdesc differing conventions on the exact appearance of numbers (and +longdesc units). A number of LaTeX packages have been developed to +longdesc provide consistent application of the various rules: SIunits, +longdesc sistyle, unitsdef and units are the leading examples. The +longdesc numprint package provides a large number of number-related +longdesc functions, while dcolumn and rccol provide tools for +longdesc typesetting tabular numbers. The siunitx package takes the best +longdesc from the existing packages, and adds new features and a +longdesc consistent interface. A number of new ideas have been +longdesc incorporated, to fill gaps in the existing provision. The +longdesc package also provides backward-compatibility with SIunits, +longdesc sistyle, unitsdef and units. The aim is to have one package to +longdesc handle all of the possible unit-related needs of LaTeX users. +longdesc The package relies on LaTeX 3 support from the l3kernel and +longdesc l3packages bundles. +depend l3kernel +depend l3packages +containersize 34728 +containerchecksum 1b5766cf67cfafc1179570b4463812274cbb8d3c54e09e707907d57d697599832080a52027e7d459047fb084dedaaa6774eca8af0f68090fa1cf3c16f125402b +doccontainersize 636932 +doccontainerchecksum a12c9311581f1096c052d9fdce7d987e9b3a559369a5d0c0a07778e1d5ca8669617620bfc81e54c05f30f329b0f7040b159bd3144197ec0ca5b69e2a04772039 +docfiles size=166 + RELOC/doc/latex/siunitx/CHANGELOG.md + RELOC/doc/latex/siunitx/README.md details="Readme" + RELOC/doc/latex/siunitx/siunitx.pdf details="User manual" +srccontainersize 103384 +srccontainerchecksum 83ad306d973ff33ca327bb5f35ef019471967d3798f341bf5ae384244b448729afcf6602291cc94f56ec0b8ee2b52e32e3023e4b4c049537b5a7f254f5e78dd9 +srcfiles size=151 + RELOC/source/latex/siunitx/siunitx.dtx +runfiles size=78 + RELOC/tex/latex/siunitx/siunitx-abbreviations.cfg + RELOC/tex/latex/siunitx/siunitx-binary.cfg + RELOC/tex/latex/siunitx/siunitx-version-1.cfg + RELOC/tex/latex/siunitx/siunitx.sty +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-license lppl1.3c +catalogue-topics units scientific-docs expl3 +catalogue-version 2.8e + +name skak +category Package +revision 46259 +shortdesc Fonts and macros for typesetting chess games +relocated 1 +longdesc This package provides macros and fonts in Metafont format which +longdesc can be used to typeset chess games using PGN, and to show +longdesc diagrams of the current board in a document. The package builds +longdesc on work by Piet Tutelaers -- the main novelty is the use of PGN +longdesc for input instead of the more cumbersome coordinate notation +longdesc (g1f3 becomes the more readable Nf3 in PGN). An Adobe Type 1 +longdesc implementation of skak's fonts is available as package skaknew; +longdesc an alternative chess notational scheme is available in package +longdesc texmate, and a general mechanism for selecting chess fonts is +longdesc provided in chessfss. +containersize 20744 +containerchecksum 7bf473f1f35fa05c1cc7cccec212b035619382ce850c287a6b0734cd52182046df35133bd919a335532db9fd5327d2038ce1c3e98342055d93a5dc3b16028697 +doccontainersize 200108 +doccontainerchecksum 443d98538fb732bfe9f3df26e05e46be54641006df255d3084697301cfa93f48cb8d307a9a5b58f25742b96065658f446b52968c3bd8ce14fdc864f32cb920e4 +docfiles size=90 + RELOC/doc/latex/skak/ChangeLog.md + RELOC/doc/latex/skak/LICENSE + RELOC/doc/latex/skak/README + RELOC/doc/latex/skak/THANKS + RELOC/doc/latex/skak/WC-2004-S-00007.tex + RELOC/doc/latex/skak/andreas_wilm_1.tex + RELOC/doc/latex/skak/angletst.tex + RELOC/doc/latex/skak/debug_storegame.tex + RELOC/doc/latex/skak/demo-symbols.tex + RELOC/doc/latex/skak/fen_with_black.tex + RELOC/doc/latex/skak/font.tex + RELOC/doc/latex/skak/font2.tex + RELOC/doc/latex/skak/hightest.tex + RELOC/doc/latex/skak/informator.pdf + RELOC/doc/latex/skak/ingo-bug1.tex + RELOC/doc/latex/skak/longmove_king_bug.tex + RELOC/doc/latex/skak/longmoves.tex + RELOC/doc/latex/skak/promotion_problem_Ulrike.tex + RELOC/doc/latex/skak/refman.pdf + RELOC/doc/latex/skak/region.tex + RELOC/doc/latex/skak/show.tex + RELOC/doc/latex/skak/skakdoc.pdf + RELOC/doc/latex/skak/special.map + RELOC/doc/latex/skak/test1.tex + RELOC/doc/latex/skak/test2.tex + RELOC/doc/latex/skak/test_capture.tex + RELOC/doc/latex/skak/tuggame.pdf +runfiles size=38 + RELOC/fonts/source/public/skak/skak10.mf + RELOC/fonts/source/public/skak/skak15.mf + RELOC/fonts/source/public/skak/skak20.mf + RELOC/fonts/source/public/skak/skak30.mf + RELOC/fonts/source/public/skak/skakbase.mf + RELOC/fonts/source/public/skak/skakbrikker.mf + RELOC/fonts/source/public/skak/skakf10.mf + RELOC/fonts/source/public/skak/skakf10b.mf + RELOC/fonts/source/public/skak/skakinf.mf + RELOC/fonts/tfm/public/skak/skak10.tfm + RELOC/fonts/tfm/public/skak/skak15.tfm + RELOC/fonts/tfm/public/skak/skak20.tfm + RELOC/fonts/tfm/public/skak/skak30.tfm + RELOC/fonts/tfm/public/skak/skakf10.tfm + RELOC/fonts/tfm/public/skak/skakf10b.tfm + RELOC/tex/latex/skak/skak.fd + RELOC/tex/latex/skak/skak.sty +catalogue-ctan /fonts/chess/skak +catalogue-license lppl +catalogue-topics font font-mf font-chess games +catalogue-version 1.5.3 + +name skaknew +category Package +revision 20031 +shortdesc The skak chess fonts redone in Adobe Type 1 +relocated 1 +longdesc This package offers Adobe Type 1 versions of the fonts provided +longdesc as Metafont source by the skak bundle. +execute addMap SkakNew.map +containersize 160064 +containerchecksum 879107f0bb96441082ccc4afb560e4fd0f625e7fb7cab84ebbd642af1ef180bc27540eb9ff26c689039dd6abb11e9b88bcea30d5b1e75b40f0e3499c981ae6e2 +doccontainersize 316212 +doccontainerchecksum 8c26115910f2e9a9ae28e1b6c0933db3308c9f59eb151bb37b23de3f0f790b9726aef895def0826e00928b75753d925c5c9db0a6b91ebf7035fad5a4e473a315 +docfiles size=90 + RELOC/doc/fonts/skaknew/README details="Readme" + RELOC/doc/fonts/skaknew/SkakNew.pdf details="Package documentation" + RELOC/doc/fonts/skaknew/SkakNew.tex + RELOC/doc/fonts/skaknew/fonttables.pdf details="Font tables" + RELOC/doc/fonts/skaknew/install.vtex +runfiles size=72 + RELOC/fonts/afm/public/skaknew/AlphaDia.afm + RELOC/fonts/afm/public/skaknew/SkakNew-Diagram.afm + RELOC/fonts/afm/public/skaknew/SkakNew-DiagramT.afm + RELOC/fonts/afm/public/skaknew/SkakNew-Figurine.afm + RELOC/fonts/afm/public/skaknew/SkakNew-FigurineBold.afm + RELOC/fonts/map/dvips/skaknew/SkakNew.map + RELOC/fonts/opentype/public/skaknew/AlphaDia.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-Diagram.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-DiagramT.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-Figurine.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-FigurineBold.otf + RELOC/fonts/tfm/public/skaknew/AlphaDia.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-Diagram.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-DiagramT.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-Figurine.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-FigurineBold.tfm + RELOC/fonts/type1/public/skaknew/AlphaDia.inf + RELOC/fonts/type1/public/skaknew/AlphaDia.pfb + RELOC/fonts/type1/public/skaknew/AlphaDia.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.inf + RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.pfb + RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.inf + RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.pfb + RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.inf + RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.pfb + RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.inf + RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfb + 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-license lppl +catalogue-topics font font-type1 font-chess games + +name skb +category Package +revision 22781 +shortdesc Tools for a repository of long-living documents +relocated 1 +longdesc The package provides macros that help to build a document +longdesc repository for long living documents. It focuses on structure +longdesc and re-use of text, code, figures etc. The basic concept is +longdesc first to separate structure from content (i.e., text about a +longdesc topic from the structure it is presented by) and then +longdesc separating the content from the actual published document, thus +longdesc enabling easy re-use of text blocks in different publications +longdesc (i.e., text about a protocol in a short article about this +longdesc protocol as well as in a book about many protocols); all +longdesc without constantly copying or changing text. As a side effect, +longdesc using the document classes provided, it hides a lot of LaTeX +longdesc from someone who just wants to write articles and books. +containersize 6468 +containerchecksum 5c2e0e7310898e258505cf438ad91650fbcef6b720e9d05b9ddd241ceca3eea0ccc3a71b6ac38acee58d8e205b8352ad7abbdc277596ac74f6a5cf0ca805a0d7 +doccontainersize 1398720 +doccontainerchecksum 29aa9629f84a481cee1871b92b49e1a34683092759864f1e612ef4f7b3862a9ddf567b2d20fae3f99d5946de43055de2dae8ad326000e344383c854eb9ff4f20 +docfiles size=558 + RELOC/doc/latex/skb/HISTORY.TXT + RELOC/doc/latex/skb/LICENSE.TXT + RELOC/doc/latex/skb/MANIFEST.TXT + RELOC/doc/latex/skb/README details="Readme" + RELOC/doc/latex/skb/TODO.TXT + RELOC/doc/latex/skb/makefile + RELOC/doc/latex/skb/skb.pdf details="Implementation details" + RELOC/doc/latex/skb/user-guide.pdf details="User guide" + RELOC/doc/latex/skb/user-guide/database/acronyms.tex + RELOC/doc/latex/skb/user-guide/database/bibliography.tex + RELOC/doc/latex/skb/user-guide/database/bibtex-styles.bbx + RELOC/doc/latex/skb/user-guide/database/bibtex/article.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/book.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/collection.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/conference.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/inbook.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/incollection.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/inproceedings.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/manual.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/misc.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/online.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/proceedings.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/report.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/standard.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/techreport.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/unpublished.bib + RELOC/doc/latex/skb/user-guide/examples/example-toc.tex + RELOC/doc/latex/skb/user-guide/examples/example.tex + RELOC/doc/latex/skb/user-guide/examples/figure-classic.tex + RELOC/doc/latex/skb/user-guide/examples/listings.tex + RELOC/doc/latex/skb/user-guide/examples/optional-text.tex + RELOC/doc/latex/skb/user-guide/examples/paths.tex + RELOC/doc/latex/skb/user-guide/examples/rebuild.tex + RELOC/doc/latex/skb/user-guide/examples/skbconfig.tex + RELOC/doc/latex/skb/user-guide/examples/skbem.tex + RELOC/doc/latex/skb/user-guide/examples/skbfigure.tex + RELOC/doc/latex/skb/user-guide/examples/skbheading.tex + RELOC/doc/latex/skb/user-guide/examples/skbinput.tex + RELOC/doc/latex/skb/user-guide/examples/skbslide.tex + RELOC/doc/latex/skb/user-guide/examples/skbslidecite.tex + RELOC/doc/latex/skb/user-guide/examples/used-options.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/baf.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/complete.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/exa-doc.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/publish-art.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/publish.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/repository.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/skb-distribution.tex + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-0.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-1.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-10.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-11.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-12.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-13.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-14.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-2.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-3.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-4.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-5.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-6.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-7.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-8.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-9.pdf + RELOC/doc/latex/skb/user-guide/repository/abstract.tex + RELOC/doc/latex/skb/user-guide/repository/applicability.tex + RELOC/doc/latex/skb/user-guide/repository/exa-doc/documentation.tex + RELOC/doc/latex/skb/user-guide/repository/example-article.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config-cmd.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config-opt-table.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config-opt.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/distribution.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/folders.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/installation.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/rebuild.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/start.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/used-options.tex + RELOC/doc/latex/skb/user-guide/repository/intent.tex + RELOC/doc/latex/skb/user-guide/repository/manual/acr-bib.tex + RELOC/doc/latex/skb/user-guide/repository/manual/figures.tex + RELOC/doc/latex/skb/user-guide/repository/manual/figures2.tex + RELOC/doc/latex/skb/user-guide/repository/manual/headings-and-files.tex + RELOC/doc/latex/skb/user-guide/repository/manual/listing.tex + RELOC/doc/latex/skb/user-guide/repository/manual/lists.tex + RELOC/doc/latex/skb/user-guide/repository/manual/manual.tex + RELOC/doc/latex/skb/user-guide/repository/manual/optional-text.tex + RELOC/doc/latex/skb/user-guide/repository/manual/path-commands.tex + RELOC/doc/latex/skb/user-guide/repository/manual/pdfinfo.tex + RELOC/doc/latex/skb/user-guide/repository/manual/skbem.tex + RELOC/doc/latex/skb/user-guide/repository/manual/skbfigure-opt-table.tex + RELOC/doc/latex/skb/user-guide/repository/manual/skbinput-opt-table.tex + RELOC/doc/latex/skb/user-guide/repository/manual/slides.tex + RELOC/doc/latex/skb/user-guide/repository/manual/slides2.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-cs.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-final.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-baf.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-pc.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-pc2.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate.tex + RELOC/doc/latex/skb/user-guide/repository/story/long.tex + RELOC/doc/latex/skb/user-guide/repository/story/long2.tex + RELOC/doc/latex/skb/user-guide/repository/story/short.tex + RELOC/doc/latex/skb/user-guide/repository/title.tex + RELOC/doc/latex/skb/user-guide/slides/about.tex + RELOC/doc/latex/skb/user-guide/slides/applicability.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-tex1.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-tex2.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-tex3.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-toc.tex + RELOC/doc/latex/skb/user-guide/slides/intent.tex + RELOC/doc/latex/skb/user-guide/slides/manual-acrbib.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures-exa.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures-exna.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures-opt.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures.tex + RELOC/doc/latex/skb/user-guide/slides/manual-haf.tex + RELOC/doc/latex/skb/user-guide/slides/manual-listings.tex + RELOC/doc/latex/skb/user-guide/slides/manual-lists.tex + RELOC/doc/latex/skb/user-guide/slides/manual-optional-text.tex + RELOC/doc/latex/skb/user-guide/slides/manual-paths.tex + RELOC/doc/latex/skb/user-guide/slides/manual-pdfinfo.tex + RELOC/doc/latex/skb/user-guide/slides/manual-skbem.tex + RELOC/doc/latex/skb/user-guide/slides/manual-slides1.tex + RELOC/doc/latex/skb/user-guide/slides/manual-slides2.tex + RELOC/doc/latex/skb/user-guide/slides/separate-cs.tex + RELOC/doc/latex/skb/user-guide/slides/separate-parts-baf.tex + RELOC/doc/latex/skb/user-guide/slides/separate-parts-pc1.tex + RELOC/doc/latex/skb/user-guide/slides/separate-parts-pc2.tex + RELOC/doc/latex/skb/user-guide/slides/separate.tex + RELOC/doc/latex/skb/user-guide/slides/start-config-cmd.tex + RELOC/doc/latex/skb/user-guide/slides/start-config-opt.tex + RELOC/doc/latex/skb/user-guide/slides/start-distribution.tex + RELOC/doc/latex/skb/user-guide/slides/start-folders.tex + RELOC/doc/latex/skb/user-guide/slides/start-installation.tex + RELOC/doc/latex/skb/user-guide/slides/start-rebuild1.tex + RELOC/doc/latex/skb/user-guide/slides/start-rebuild2.tex + RELOC/doc/latex/skb/user-guide/slides/start-used-options.tex + RELOC/doc/latex/skb/user-guide/slides/story-long1.tex + RELOC/doc/latex/skb/user-guide/slides/story-long2.tex + RELOC/doc/latex/skb/user-guide/slides/story-short.tex + RELOC/doc/latex/skb/user-guide/ug-slides-anim.tex + RELOC/doc/latex/skb/user-guide/ug-slides-load.tex + RELOC/doc/latex/skb/user-guide/ug-slides-noanim.tex + RELOC/doc/latex/skb/user-guide/ug-slides-notes.tex + RELOC/doc/latex/skb/user-guide/user-guide-load.tex + RELOC/doc/latex/skb/user-guide/user-guide.tex +srccontainersize 21144 +srccontainerchecksum fd0f3a1d4cf3fa189ef0fc8bbbb35586a39aabbc733fba3aa9d3fc48d920c416316a4a19d88583ea42b1a4c38baf4ec75cf0eec78b68a5434f3ac4578d56ea9f +srcfiles size=30 + RELOC/source/latex/skb/skb.dtx + RELOC/source/latex/skb/skb.ins +runfiles size=12 + RELOC/tex/latex/skb/skb.cfg + RELOC/tex/latex/skb/skb.sty + RELOC/tex/latex/skb/skbarticle.cls + RELOC/tex/latex/skb/skbbeamer.cls + RELOC/tex/latex/skb/skbbook.cls + RELOC/tex/latex/skb/skblncsbeamer.cls + RELOC/tex/latex/skb/skblncsppt.cls + RELOC/tex/latex/skb/skbmoderncv.cls +catalogue-contact-repository http://sourceforge.net/projects/latex-skb +catalogue-ctan /macros/latex/contrib/skb +catalogue-license lppl1.3 +catalogue-topics archival +catalogue-version 0.52 + +name skdoc +category Package +revision 56950 +shortdesc Documentation and extraction for packages and document classes +relocated 1 +longdesc The class provides the functionality and implementation of +longdesc packages and document classes. It is loosely based on the ydoc +longdesc and ltxdoc classes, but has a number of incompatible +longdesc differences. The class defines a MacroCode environment which +longdesc offers an alternative to the usual docstrip method of +longdesc installing packages. It has the ability to generate both +longdesc documentation and code in a single run of a single file. +containersize 9720 +containerchecksum d00944f58e9842c0d1841b73fb1936dc14655f07d51c60140581d597a93a0e9ce9fe65941cc343979e549620edec6a8339cca6089df068d932e1344556c3449c +doccontainersize 324360 +doccontainerchecksum 481e590c14396f3318999524157f8e5a8dafd0b6f553414d3ee09cb0dec6d356c2b422b6598b613ec4d29b35f27a59024dc9e5bcb49ea2643205f37c616788d6 +docfiles size=81 + RELOC/doc/latex/skdoc/README details="Readme" + RELOC/doc/latex/skdoc/skdoc.pdf details="Package documentation" +srccontainersize 27656 +srccontainerchecksum 70343ccef329a3dce81aca0c0253b42450e7eae4560b58d69d9f12d7ef32d25023d5f09208f22f7d65414a089d2992c28079dfb708ab701803cb42fe41480691 +srcfiles size=32 + RELOC/source/latex/skdoc/Makefile + RELOC/source/latex/skdoc/skdoc.dtx +runfiles size=13 + RELOC/tex/latex/skdoc/skdoc.cls +catalogue-ctan /macros/latex/contrib/skdoc +catalogue-license lppl1.3 +catalogue-topics doc-supp class +catalogue-version 1.5d + +name skeldoc +category Package +revision 57922 +shortdesc Placeholders for unfinished documents +relocated 1 +longdesc This package lets you produce placeholder elements for +longdesc documents under development, similar to the skeleton screens +longdesc used while loading contents in many applications and websites. +longdesc It also has a mechanism for attaching explanatory endnotes to +longdesc these placeholders, or to anything else in your document. The +longdesc same note mechanism can also be used with ordinary content, +longdesc e.g., as a to-do mechanism. +containersize 6252 +containerchecksum 2bc1374e969e5b32e9a88b8240a94eac90066514c8dfcb91196a13a3774d200cb8a412fd490b581ba18e9e0047596d30296206b0607316554a361b6103ee33f3 +doccontainersize 223836 +doccontainerchecksum 13cb76835ff1eed119d8514aae495d6adaf8b4c3db17c660af29624247cba9c37d4f6991d6a99c566972e4032f14d62c21fb4f31b856c49de40d0a87def1cf95 +docfiles size=59 + RELOC/doc/latex/skeldoc/LICENSE + RELOC/doc/latex/skeldoc/README.md details="Readme" + RELOC/doc/latex/skeldoc/skeldoc.pdf details="Package documentation" + RELOC/doc/latex/skeldoc/skeldoc.tex +runfiles size=7 + RELOC/tex/latex/skeldoc/skeldoc.sty +catalogue-contact-bugs https://github.com/mlhetland/skeldoc.sty/issues +catalogue-contact-repository https://github.com/mlhetland/skeldoc.sty +catalogue-ctan /macros/latex/contrib/skeldoc +catalogue-license mit +catalogue-topics dummy-gen editorial notes rule expl3 +catalogue-version 0.1.2 + +name skeycommand +category Package +revision 24652 +shortdesc Create commands using parameters and keyval in parallel +relocated 1 +longdesc The package provides tools for defining LaTeX commands and +longdesc environments using combinations of parameters and keys. All the +longdesc facilities of the ltxkeys and skeyval packages are available to +longdesc the user of skeycommand. +containersize 4876 +containerchecksum 0aabcf0a47ffbdaa2f88bfb970f844df36cfa30f2e5ff02cbd9dba2179fd871c2ae1f979a99e70f3f7f2ab2589b7ecbaa6f999352559100bfaefcbe7f6ec16a8 +doccontainersize 328064 +doccontainerchecksum 26f7e544e9b1b75fe7131d409c3083c39914424c66051e46535de5415383d82e48a3e2c1d35e34e5bac624a034f2e14623c8cd5b6844707b09fd531daaf7c544 +docfiles size=100 + RELOC/doc/latex/skeycommand/README details="Readme" + RELOC/doc/latex/skeycommand/skeycommand-guide.cfg + RELOC/doc/latex/skeycommand/skeycommand-guide.pdf details="Package documentation" + RELOC/doc/latex/skeycommand/skeycommand-guide.tex +runfiles size=5 + RELOC/tex/latex/skeycommand/skeycommand.sty +catalogue-also skeyval +catalogue-ctan /macros/latex/contrib/skeycommand +catalogue-license lppl1.3 +catalogue-topics keyval macro-supp +catalogue-version 0.4 + +name skeyval +category Package +revision 30560 +shortdesc Key-value parsing combining features of xkeyval and pgfkeys +relocated 1 +longdesc The package integrates the features of xkeyval and of pgfkeys +longdesc by introducing a new type of handlers. Style keys, links, +longdesc changing key callbacks and values on the fly, and other +longdesc features of pgfkeys are introduced in a new context. +containersize 99184 +containerchecksum 151a705f5e62dc80e8a470a7ce39cf197933452a35b296e70790d7ec0f6667f24acbc0c643db6c402ca1e9b9735f34be388efca5a5e5951725e8f00bb8d2833f +doccontainersize 328384 +doccontainerchecksum 97bf20706cd14e0b479221c6ed96e56754aca13d7b72f1d7bedec6117d159caca2a4e9a931d3d8311f593a538985d8e4e5bb9d5a76a653d72aa8d094a66e9e92 +docfiles size=114 + RELOC/doc/latex/skeyval/README details="Readme" + RELOC/doc/latex/skeyval/skeyval-pokayoke1.pdf + RELOC/doc/latex/skeyval/skeyval-pokayoke1.tex + RELOC/doc/latex/skeyval/skeyval-pokayoke2.pdf + RELOC/doc/latex/skeyval/skeyval-pokayoke2.tex + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.aux + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.log + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.pdf + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.tex +runfiles size=148 + RELOC/tex/latex/skeyval/skeyval-bc.sty + RELOC/tex/latex/skeyval/skeyval-core.tex + RELOC/tex/latex/skeyval/skeyval-for.tex + RELOC/tex/latex/skeyval/skeyval-ltxcmds.tex + RELOC/tex/latex/skeyval/skeyval-ltxpatch.sty + RELOC/tex/latex/skeyval/skeyval-pstkey.sty + RELOC/tex/latex/skeyval/skeyval-pstkey.tex + RELOC/tex/latex/skeyval/skeyval-testclass.cls + RELOC/tex/latex/skeyval/skeyval-testpkg.sty + RELOC/tex/latex/skeyval/skeyval-view.sty + RELOC/tex/latex/skeyval/skeyval.sty +catalogue-also skeycommand +catalogue-ctan /macros/latex/contrib/skeyval +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 1.3 + +name skills +category Package +revision 56734 +shortdesc Create proficiency tests +relocated 1 +longdesc This package attempts to make it easy for even a LaTeX novice +longdesc to prepare proficiency tests, especially in combination with +longdesc the exam document class. Thus, almost all command names are +longdesc very similar. After defining skills in the preamble or in an +longdesc external file, they are declared using labels, and can +longdesc optionally be set as global skills. A skills table is generated +longdesc to summarize the evaluated competencies and to allow for +longdesc writing down the resulting proficiency level. A user's guide +longdesc attempts to explain all of the possibilities in a readable way, +longdesc with many examples. +containersize 3564 +containerchecksum 0719d385343a79a261409a07d659c0fba4f861e69b082278b1442a12408bc3601de789575fdf566ce280a2699dc10b28aada80d490396498fa9a6bbc8d064eb9 +doccontainersize 75196 +doccontainerchecksum 9b2339a50fbc759d9e5bc907a4d8dca2f06293d5a5f38602213a859dfc34da1715105b2b5a46e82a23f71b741e4db713b0044f345767a1f87c32526b57fb0103 +docfiles size=26 + RELOC/doc/latex/skills/README.md details="Readme" + RELOC/doc/latex/skills/skillsdoc.pdf details="User guide" + RELOC/doc/latex/skills/skillsdoc.tex +runfiles size=3 + RELOC/tex/latex/skills/skills.sty +catalogue-contact-bugs https://framagit.org/pagiraud/skills/-/issues +catalogue-contact-repository https://framagit.org/pagiraud/skills +catalogue-ctan /macros/latex/contrib/skills +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 1.0.0 + +name skmath +category Package +revision 52411 +shortdesc Extensions to the maths command repertoir +relocated 1 +longdesc The package provides a selection of new maths commands and +longdesc improved re-definitions of existing commands. +containersize 3572 +containerchecksum 6cbc67d9a6fb9cb6a3d8da38ff83bbb6dbd28c5e3e81a07a1b7292472d9064f321206ebd4ac1917d80f138f9b9cf91c008b8e3eac27ef0a77ff2073cab08eab1 +doccontainersize 304460 +doccontainerchecksum ce579b82a84f81169bf1a6cc37fff0c2e7c4e1570d0cbe2eb143dc8ac6dc082fa3cdaecae5a31791aa590c89fb74a58a4451811ec66d38eaa146520ff16e7471 +docfiles size=76 + RELOC/doc/latex/skmath/README details="Readme" + RELOC/doc/latex/skmath/skmath.pdf details="Package documentation" +srccontainersize 8580 +srccontainerchecksum d5101fecf8963f78b9e202c9d537723dbea069558cb764fc66344862cbcedfd81ecd3d923ee2f8b1167a65f8325e2f1fd66f16089a92ab419a580ca7313fa484 +srcfiles size=9 + RELOC/source/latex/skmath/skmath.tex +runfiles size=4 + RELOC/tex/latex/skmath/skmath.sty +catalogue-ctan /macros/latex/contrib/skmath +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.5a + +name skrapport +category Package +revision 52412 +shortdesc 'Simple' class for reports, etc. +relocated 1 +longdesc The class is intended for simple documents (e.g., reports +longdesc handed in as coursework and the like). The class is small and +longdesc straightforward; its design was inspired by that of the PracTeX +longdesc journal style. +containersize 12736 +containerchecksum 60ee0f76dbf9e1539c08a97cf25cf14d2fbf02527facc3764c57cf0812a67d740d5c3148a4a7e76a6880717166c935b34bcf38de0b4f7d02df9c1ab50046a2ed +doccontainersize 289336 +doccontainerchecksum 986bb0ce679b69bd9a0958b6d4d1a3fac49ac6a5e31bafa5d556ac28c2bc3d0d8c892e998791e74172ec86c5899acba2cbd193dfc685e7dcb0b5d47b4c2e3576 +docfiles size=72 + RELOC/doc/latex/skrapport/README details="Readme" + RELOC/doc/latex/skrapport/skrapport.pdf details="Package documentation" +srccontainersize 31356 +srccontainerchecksum b2f63eda57ec7ecbac63c6f0b2dcc2175bde5618db88cd6270a27466178c39209418a94470d6f78b8ea22c5e6ce8d3dfc178f52cba943f9ccc98fea447ade818 +srcfiles size=40 + RELOC/source/latex/skrapport/skrapport.tex +runfiles size=26 + RELOC/tex/latex/skrapport/skrapport-colortheme-cruelwater.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-default.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-skdoc.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-unscathed.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-violet.sty + RELOC/tex/latex/skrapport/skrapport-size-common.sty + RELOC/tex/latex/skrapport/skrapport-size10pt.clo + RELOC/tex/latex/skrapport/skrapport-size11pt.clo + RELOC/tex/latex/skrapport/skrapport-size12pt.clo + RELOC/tex/latex/skrapport/skrapport.cls +catalogue-contact-bugs https://github.com/urdh/skrapport/issues +catalogue-contact-repository https://github.com/urdh/skrapport +catalogue-ctan /macros/latex/contrib/skrapport +catalogue-license lppl1.3 +catalogue-topics class +catalogue-version 0.12k + +name skull +category Package +revision 51907 +shortdesc A font to draw a skull +relocated 1 +longdesc The font (defined in Metafont) defines a single character, a +longdesc black solid skull. A package is supplied to make this character +longdesc available as a symbol in maths mode. +containersize 1752 +containerchecksum 261ba31f30fa26e25f82dfe60ff7600c71db51f1dee68a5c094fa8a746995ee9031e41c0f24a4e83aec52c603cbea71a0773cae63481f167b81abdfb0ac3f782 +srccontainersize 2276 +srccontainerchecksum 3967550eb9af93aaa3fb9c623437e2c6ceb90f52f20533832aae3be91c719a774e3fe6a51f4d1543d6547479a2efa6c1965f0870174cfcd5c93cef0c20aecddc +srcfiles size=2 + RELOC/source/fonts/skull/skull.dtx + RELOC/source/fonts/skull/skull.ins +runfiles size=3 + RELOC/fonts/source/public/skull/skull.mf + RELOC/fonts/tfm/public/skull/skull.tfm + RELOC/tex/latex/skull/skull.sty +catalogue-ctan /fonts/skull +catalogue-license gpl +catalogue-topics font font-mf font-novelty +catalogue-version 0.1 + +name slantsc +category Package +revision 25007 +shortdesc Access different-shaped small-caps fonts +relocated 1 +longdesc This package enables the use of small capitals in different +longdesc font shapes, e.g., slanted or bold slanted for all fonts that +longdesc provide appropriate font shapes. (Note that a separate .fd file +longdesc is needed to define font shapes such as 'scsl' or 'scit'.) +containersize 1296 +containerchecksum 45d92cb8f2a5aeaecc9945ce2778f2fa330b703ea0efb2deb4407ac17d30ad3a3e1ae7966474af28a7816dee18254422fe7c72c50f11f47cd52a54522f05fec3 +doccontainersize 386948 +doccontainerchecksum 8f856a45e3088d2047157bc87d60a16b6c6e481334f4ee81a23e4cb8ecf53d1113849877ffb24ee4516dfba228c10c9974b0b0a148020d64e3069ed7a2d12750 +docfiles size=99 + RELOC/doc/latex/slantsc/ChangeLog + RELOC/doc/latex/slantsc/Makefile + RELOC/doc/latex/slantsc/README details="Readme" + RELOC/doc/latex/slantsc/getversion.tex + RELOC/doc/latex/slantsc/slantsc.pdf details="Package documentation" + RELOC/doc/latex/slantsc/testslantsc.tex +srccontainersize 4648 +srccontainerchecksum 7e2af37c07b8ccae052c84ade3ad49fb4d93fb5fd97a5387b1ea8af523167f21d48e3961df58c7a93dfbd07f09ed1140839e48a57b3149dfa713e5945081f200 +srcfiles size=6 + RELOC/source/latex/slantsc/slantsc.dtx + RELOC/source/latex/slantsc/slantsc.ins +runfiles size=1 + RELOC/tex/latex/slantsc/slantsc.sty +catalogue-ctan /macros/latex/contrib/slantsc +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 2.11 + +name slideshow +category Package +revision 15878 +shortdesc Generate slideshow with MetaPost +relocated 1 +longdesc The package provides a means of creating presentations in +longdesc MetaPost, without intervention from other utilities (except a +longdesc distiller). Such an arrangement has its advantages (though +longdesc there are disadvantages too). +containersize 8544 +containerchecksum f7bd44c9720512297f15ff6cee1c49ca52c29fc206f739e6aa447e778fed00a64e282aeab9d42b215cac69a64ab39f3919433bd0640d30d55ac540e2dde07967 +doccontainersize 105052 +doccontainerchecksum d271c1f9e7b9c45694463982da8c9542fea326d7e191a705e92f5b423e054c3f926768d2209844ddabbe75eb610d4a5cb05ffd53098cdca9e35328c865027eff +docfiles size=42 + RELOC/doc/metapost/slideshow/slideshow.txt + RELOC/doc/metapost/slideshow/sshowex.pdf + RELOC/doc/metapost/slideshow/sshowex2.pdf + RELOC/doc/metapost/slideshow/sshowex3.pdf + RELOC/doc/metapost/slideshow/sshowintro.pdf details="Presentation about package" +runfiles size=10 + RELOC/metapost/slideshow/pathalong.mp + RELOC/metapost/slideshow/slideshow.mp + RELOC/metapost/slideshow/sshowex.mp + RELOC/metapost/slideshow/sshowex2.mp + RELOC/metapost/slideshow/sshowex3.mp + RELOC/metapost/slideshow/sshowintro.mp +catalogue-ctan /graphics/metapost/contrib/macros/slideshow +catalogue-license other-free +catalogue-topics presentation +catalogue-version 1.0 + +name smalltableof +category Package +revision 20333 +shortdesc Create listoffigures etc. in a single chapter +relocated 1 +longdesc The package allows you to create a list of figures and list of +longdesc tables in a chapter named 'List' that contains separate +longdesc sections for each list of figures, tables, etc. +containersize 996 +containerchecksum 50a4878bddc55e1b05ede3e770aad31f6c56b81f9e6d0a536ece25729e3c5a9a1720068534f26a9c224c101f0e0d833478f1a5c3b12759d7c3ffce027bbd5edd +doccontainersize 177112 +doccontainerchecksum ca62aa29f6ad62f149dd9c5077ee2b14ed69d8a750f33d3de274ae275e5d1528482e58140a78b0917cf02a879206194e24a6beecd33060544abb50dd6fc564a6 +docfiles size=45 + RELOC/doc/latex/smalltableof/README details="Readme (French)" language="fr" + RELOC/doc/latex/smalltableof/smalltableof-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/smalltableof/smalltableof-doc-fr.tex +runfiles size=1 + RELOC/tex/latex/smalltableof/smalltableof.sty +catalogue-ctan /macros/latex/contrib/smalltableof +catalogue-license lppl +catalogue-topics toc-etc + +name smartdiagram +category Package +revision 42781 +shortdesc Generate diagrams from lists +relocated 1 +longdesc The package will create 'smart' diagrams from lists of items, +longdesc for simple documents and for presentations. +containersize 6524 +containerchecksum 322589506d1cdaa30dd9f97b419347fba0d617a3ad35fd15fe91611b10382c595598ce1111a287f5b1aef617595cba77b53490da7744b23942f072f522a68ef1 +doccontainersize 258768 +doccontainerchecksum 1cc7abaed3dcdb11fca675bea8e458f1879bda4ac72278566a9247ec2cb0016f10467e3120e9ef688c5674af05559bff39862d4b3292596f0dafd5e13672a14f +docfiles size=67 + RELOC/doc/latex/smartdiagram/README details="Readme" + RELOC/doc/latex/smartdiagram/smartdiagram.pdf details="Package documentation" +srccontainersize 16864 +srccontainerchecksum a1141f82e32b444951bac9fa0fd119e59cc2389577cd05cc19702582c64972602215648e727ccb338565edafb0116f6c50a033d9c3ce8664e97f392148f888d1 +srcfiles size=26 + RELOC/source/latex/smartdiagram/smartdiagram.dtx + RELOC/source/latex/smartdiagram/smartdiagram.ins +runfiles size=15 + RELOC/tex/latex/smartdiagram/smartdiagram.sty + RELOC/tex/latex/smartdiagram/smartdiagramlibraryadditions.code.tex + RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.commands.code.tex + RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.definitions.code.tex + RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.styles.code.tex +catalogue-ctan /graphics/pgf/contrib/smartdiagram +catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 0.3b + +name smartref +category Package +revision 20311 +shortdesc Extend LaTeX's \ref capability +relocated 1 +longdesc The package extends the LaTeX labelling system: whenever a +longdesc label is set, the values of counters (selected by the user) are +longdesc recorded, along with the label. The value of these counters can +longdesc be recalled with a command similar to \pageref. The package +longdesc also adds commands \s[name]ref (for each counter [name] that +longdesc the user has selected); these commands display something only +longdesc if the value of the [name] counter is changed from when the +longdesc label was set. Many commands are provided to serve as a macro +longdesc programming environment for using the extended labels. +containersize 3100 +containerchecksum 149dd95ca0677a4e273df64a589d1424b8dd89983adf3a3ef81f8236d1b594d35b851b4255fd9f0d05b4feb82db59d816408e3ca59f2b86b73a5724a8e937367 +doccontainersize 319192 +doccontainerchecksum 07eaecd9e924e5912e8e3a3ba6479412282e1408cbb59699b9e83006768c4042b173d38da2e8dd2c707b392cb48d99e4be25985023db4de80d69450fe95a338b +docfiles size=82 + RELOC/doc/latex/smartref/README details="Readme and command details" + RELOC/doc/latex/smartref/smartref-doc.pdf details="Package documentation" + RELOC/doc/latex/smartref/smartref-doc.tex +runfiles size=3 + RELOC/tex/latex/smartref/byname.sty + RELOC/tex/latex/smartref/smartref.sty +catalogue-also zref +catalogue-ctan /macros/latex/contrib/smartref +catalogue-license lppl +catalogue-topics label-ref counter-mgmt +catalogue-version 1.9 + +name smartunits +category Package +revision 39592 +shortdesc Converting between common metric and Imperial units +relocated 1 +longdesc This LaTeX package implements a \SmartUnit macro for converting +longdesc between (some) metric and Imperial units. The package requires +longdesc pgfkeys and siunitx. +containersize 3408 +containerchecksum d4c23a39d79cb5c0ba700da40b916ac6072e612d0e5b8ea1c189100cfe56fe77c9d1ff742d92fc44450255048d96f2e1dc2b5f0e098e56aad5efcdd423fec608 +doccontainersize 340260 +doccontainerchecksum e85b83a090b3e352a0faa61ee0f3dfc84d3f2fad8f1ef503aef7bf571e706575b19c1da394b09e69968b10fff2542b5b749a895eb17e84ce1293273532d2e241 +docfiles size=90 + RELOC/doc/latex/smartunits/README.md details="Readme" + RELOC/doc/latex/smartunits/smartunits.pdf details="Package documentation" + RELOC/doc/latex/smartunits/smartunits.tex +runfiles size=3 + RELOC/tex/latex/smartunits/smartunits.sty +catalogue-ctan /macros/latex/contrib/smartunits +catalogue-license lppl1.3 +catalogue-topics units misc-conv +catalogue-version 1.2 + +name smflatex +category Package +revision 58910 +shortdesc Classes for Societe mathematique de France publications +relocated 1 +longdesc The Societe mathematique de France provides a set of classes, +longdesc packages and BibTeX styles that are used in its publications. +longdesc They are based on AMS classes (whose code is sometimes +longdesc recopied) and mainly 'upward-compatible'. Their main features +longdesc are: quite different design; new environments for typesetting +longdesc some information in two languages (altabstract, alttitle, +longdesc altkeywords); if necessary, use of babel (option frenchb) and +longdesc deactivation of some features of frenchb. Includes smfart.cls, +longdesc smfbook.cls, smfplain.bst, smfalpha.bst, amongst others. +containersize 28272 +containerchecksum 3723047537c97c42f23eaf15dd95941092300a86a5072cf261c2d9a4fdc09d17e3c09cefc6a1f632996b45300cfc5e3266dba4130decf4f6d33063b0b7f45d0f +doccontainersize 828572 +doccontainerchecksum a0ead1f76c26126c3cf00bd735ae8002648ac874511de92a73b756197328af3d81d66697c0fb3d210047570dd267b5c975b26a7c6e42b0fa61b9b77a29bbf113 +docfiles size=273 + RELOC/doc/latex/smflatex/README details="Readme" + RELOC/doc/latex/smflatex/smf-edoc.pdf details="Readme" + RELOC/doc/latex/smflatex/smf-edoc.tex + RELOC/doc/latex/smflatex/smf-fdoc.pdf details="Readme" language="fr" + RELOC/doc/latex/smflatex/smf-fdoc.tex + RELOC/doc/latex/smflatex/smfdoc.tex +srccontainersize 51112 +srccontainerchecksum 99a45d290c450301108b032830b02c81d3487ebb281f19f17826df8ed267dada23b5bb039874f97de29850c1d33bb775097d53d7e4d8d4373de9143219aa57aa +srcfiles size=64 + RELOC/source/latex/smflatex/smflatex.dtx + RELOC/source/latex/smflatex/smflatex.ins +runfiles size=53 + RELOC/bibtex/bst/smflatex/smfalpha.bst + RELOC/bibtex/bst/smflatex/smfplain.bst + RELOC/tex/latex/smflatex/smfart.cls + RELOC/tex/latex/smflatex/smfbib.sty + RELOC/tex/latex/smflatex/smfbook.cls + RELOC/tex/latex/smflatex/smfbull.sty + RELOC/tex/latex/smflatex/smfenum.sty + RELOC/tex/latex/smflatex/smfgen.sty + RELOC/tex/latex/smflatex/smfhyperref.sty + RELOC/tex/latex/smflatex/smfmulti.sty + RELOC/tex/latex/smflatex/smfthm.sty +catalogue-ctan /macros/latex/contrib/smflatex +catalogue-license lppl1.3c +catalogue-topics journalpub french +catalogue-version 1.6 + +name snapshot +category Package +revision 56735 +shortdesc List the external dependencies of a LaTeX document +relocated 1 +longdesc The snapshot package helps the owner of a LaTeX document obtain +longdesc a list of the external dependencies of the document, in a form +longdesc that can be embedded at the top of the document. It provides a +longdesc snapshot of the current processing context of the document, +longdesc insofar as it can be determined from inside LaTeX. If a +longdesc document contains such a dependency list, then it becomes +longdesc possible to arrange that the document be processed always with +longdesc the same versions of everything, in order to ensure the same +longdesc output. This could be useful for someone wanting to keep a +longdesc LaTeX document on hand and consistently reproduce an identical +longdesc DVI file from it, on the fly; or for someone wanting to shield +longdesc a document during the final stages of its production cycle from +longdesc unexpected side effects of routine upgrades to the TeX system. +containersize 5496 +containerchecksum 2b9bba924070f81319758c4b8a8e85533ff5099e901598248d5a645aba249e7158587e7d90072d3e8fa4d544d09f800b94aa415117683a8bb8c6d7ff642c313d +doccontainersize 237516 +doccontainerchecksum b1dda7b3fa9195e5d0e425a4b7facc75f8737446b65b29cd5f3c954dad348055c8544968b3c68f9b2256e8d827ae73b54b765d23b958abc383bef072d9eacfe7 +docfiles size=60 + RELOC/doc/latex/snapshot/README + RELOC/doc/latex/snapshot/snapshot.pdf details="Package documentation" +srccontainersize 14884 +srccontainerchecksum ae57330c3c69e82c638e07ca7d2d011838a85ae79f3f16fcb8909076f375da51f2b1d3487aadf55cf93306c035099397fa826a7bd9654e6756cde66d2138b15b +srcfiles size=15 + RELOC/source/latex/snapshot/snapshot.dtx + RELOC/source/latex/snapshot/snapshot.ins +runfiles size=5 + RELOC/tex/latex/snapshot/snapshot.sty +catalogue-also bundledoc +catalogue-contact-home https://www.ams.org/arc/resources/snapshot-about.html +catalogue-ctan /macros/latex/contrib/snapshot +catalogue-license lppl1.3c +catalogue-topics file-mgmt archival +catalogue-version 2.14 + +name snotez +category Package +revision 57147 +shortdesc Typeset notes, in the margin +relocated 1 +longdesc The package provides a macro \sidenote, that places a note in +longdesc the margin of the document, with its baseline aligned with the +longdesc baseline in the body of the document. These sidenotes are +longdesc numbered (both in the text, and on the notes themselves). The +longdesc package loads the package etoolbox, pgfopts, marginnote and +longdesc perpage. +containersize 3148 +containerchecksum f55e6af23e02c4a56827b405cefff308087be9a78c1c171b4d8a20d9669cff44d43cb60f522694708b39b8b010576ab0ea6ad2d2355f5b9113ba9e19ef913a87 +doccontainersize 447892 +doccontainerchecksum b68442cfbe57907bf3bd1843cfd4006fc3fd0947d5ff06c18afa50d206f4f2890f7e804f55bb9a3c4f16677deca81f3fc41c75bcc5fa4d55e4aec23a644a86ec +docfiles size=115 + RELOC/doc/latex/snotez/README details="Readme" + RELOC/doc/latex/snotez/snotez_en.pdf details="Package documentation" + RELOC/doc/latex/snotez/snotez_en.tex +runfiles size=3 + RELOC/tex/latex/snotez/snotez.sty +catalogue-also sidenotes +catalogue-contact-bugs https://github.com/cgnieder/snotez/issues +catalogue-contact-repository https://github.com/cgnieder/snotez/ +catalogue-ctan /macros/latex/contrib/snotez +catalogue-license lppl1.3c +catalogue-topics marginal +catalogue-version 0.5a + +name songbook +category Package +revision 18136 +shortdesc Package for typesetting song lyrics and chord books +relocated 1 +longdesc The package provides an all purpose songbook style. Three types +longdesc of output may be created from a single input file: "words and +longdesc chords" books for the musicians to play from, "words only" +longdesc songbooks for the congregation to sing from, and overhead +longdesc transparency masters for congregational use. The package will +longdesc also print a table of contents, an index sorted by title and +longdesc first line, and an index sorted by key, or by artist/composer. +longdesc The package attempts to handle songs in multiple keys, as well +longdesc as songs in multiple languages. +containersize 9680 +containerchecksum 06f81b35318ee9844565f622b5ecfb0f323373f14acfed3fdd042a244537c313fcc974c8cc556011baed16c5a7f90b8163342d36e360749db240e6eb639351b0 +doccontainersize 1248060 +doccontainerchecksum a8d98e2d3b90ebfc4e8df53ebaf92f2d0deb95034bf234dfeaef1d38213af9a36e38d48599e6e78a7e87fb966de87db821f4de7a6fd50f57c1afb515050bb510 +docfiles size=438 + RELOC/doc/latex/songbook/LesserGPL.txt + RELOC/doc/latex/songbook/README details="Readme" + RELOC/doc/latex/songbook/contrib/CarolBook/CarolBook.tex + RELOC/doc/latex/songbook/contrib/CarolBook/CarolBookOH.pdf + RELOC/doc/latex/songbook/contrib/CarolBook/CarolBookWB.pdf + RELOC/doc/latex/songbook/contrib/README details="Readme" + RELOC/doc/latex/songbook/contrib/crd2sb/NothingButTheBlood.crd + RELOC/doc/latex/songbook/contrib/crd2sb/crd2sb + RELOC/doc/latex/songbook/contrib/crd2sb/crd2sb.txt + RELOC/doc/latex/songbook/contrib/modulate + RELOC/doc/latex/songbook/contrib/texchord.sty + RELOC/doc/latex/songbook/install.txt + RELOC/doc/latex/songbook/mksbadx + RELOC/doc/latex/songbook/mksbkdx + RELOC/doc/latex/songbook/mksbtdx + RELOC/doc/latex/songbook/sample-sb.tex + RELOC/doc/latex/songbook/sampleAdx.pdf + RELOC/doc/latex/songbook/sampleAdx.tex + RELOC/doc/latex/songbook/sampleCBK.pdf + RELOC/doc/latex/songbook/sampleCSBK.pdf + RELOC/doc/latex/songbook/sampleKdx.pdf + RELOC/doc/latex/songbook/sampleKdx.tex + RELOC/doc/latex/songbook/sampleOH.pdf + RELOC/doc/latex/songbook/sampleTdx.pdf + RELOC/doc/latex/songbook/sampleTdx.tex + RELOC/doc/latex/songbook/sampleToc.pdf + RELOC/doc/latex/songbook/sampleToc.tex + RELOC/doc/latex/songbook/sampleWBK.pdf + RELOC/doc/latex/songbook/songbook.pdf details="Package documentation" +srccontainersize 43224 +srccontainerchecksum 57fed8f034e860787cd72b2acece0a491832acc526964c75060258db6bd46d77a551b967af41bfeae47d83ab97e4d6c2799c0f4ade405a43812126acc1b3d390 +srcfiles size=51 + RELOC/source/latex/songbook/songbook.dtx + RELOC/source/latex/songbook/songbook.ins +runfiles size=15 + RELOC/makeindex/songbook/songbook.ist + RELOC/tex/latex/songbook/conditionals.sty + RELOC/tex/latex/songbook/songbook.sty +catalogue-contact-home http://rath.ca/Misc/Songbook/ +catalogue-ctan /macros/latex/contrib/songbook +catalogue-license lgpl2.1 +catalogue-topics music chords +catalogue-version 4.5 + +name songs +category Package +revision 51494 +shortdesc Produce song books for church or fellowship +relocated 1 +longdesc The package provides a means of producing beautiful song books +longdesc for church or fellowship. It offers: a very easy chord-entry +longdesc syntax; multiple modes (words-only; words+chords; slides; +longdesc handouts); measure bars; guitar tablatures; automatic +longdesc transposition; scripture quotations; multiple indexes (sorted +longdesc by title, author, important lyrics, or scripture references); +longdesc and projector-style output generation, for interactive use. A +longdesc set of example documents is provided. +containersize 20712 +containerchecksum dd1309fda1a7bff1236707cb45047dd5adc582d3e3f509f211af7a30c0469cde704773af48fed379a29307201d9781150487821219f76d45d556f1d27e420c08 +doccontainersize 1166396 +doccontainerchecksum 72c374aab68334b050a5d801299179c8484b6fa46db8c8e20b9fceef3cb9a8c0c1dc51de93f34115d4e34767233179c5872054cd03ea3e622abb63a49ad81f24 +docfiles size=408 + RELOC/doc/latex/songs/README details="Readme" + RELOC/doc/latex/songs/history.txt + RELOC/doc/latex/songs/license.txt + RELOC/doc/latex/songs/sample/Makefile + RELOC/doc/latex/songs/sample/chordbook.tex + RELOC/doc/latex/songs/sample/lyricbook.tex + RELOC/doc/latex/songs/sample/slidebook.tex + RELOC/doc/latex/songs/sample/songs.sbd + RELOC/doc/latex/songs/sample/transparencies.tex + RELOC/doc/latex/songs/songidx/bible.can + RELOC/doc/latex/songs/songidx/catholic.can + RELOC/doc/latex/songs/songidx/greek.can + RELOC/doc/latex/songs/songidx/protestant.can + RELOC/doc/latex/songs/songidx/songidx.lua + RELOC/doc/latex/songs/songidx/tanakh.can + RELOC/doc/latex/songs/songs.pdf details="Package documentation" +srccontainersize 94680 +srccontainerchecksum 016d389033589ab9334180edf70321858ba3b6000d8f560a18631e13ef28130f4b39aed81f7ddf0a178540a463789955d14620b37b7979ac0ea6abeec77d29bd +srcfiles size=105 + RELOC/source/latex/songs/Makefile + RELOC/source/latex/songs/songs.dtx + RELOC/source/latex/songs/songs.ins +runfiles size=26 + RELOC/tex/latex/songs/songs.sty +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-license gpl2 +catalogue-topics music chords +catalogue-version 3.1 + +name sort-by-letters +category Package +revision 27128 +shortdesc Bibliography styles for alphabetic sorting +relocated 1 +longdesc This bundle contains several bibliography styles for separating +longdesc a document's references by the first letter of the first +longdesc author/editor in the bibliography entry. The styles are adapted +longdesc from standard ones or from natbib ones. +containersize 11200 +containerchecksum 41e7db4a4c5242493aeb099ca103f4540e038b1e91ec0296629f4dab1ad013f98b26b664c7d661dd2f53c1e5c749509763c46f51bb823225a104c125a9f75f4d +doccontainersize 1520 +doccontainerchecksum e2b6c68a42b9364d44dfa06ea93d8c8ea2444d97a3cf3c111065b720d3706b36315a7c8650877f1d6a2a72c1aa42268af4f17fc4632032e1e3c0a2d0fa08e577 +docfiles size=1 + RELOC/doc/bibtex/sort-by-letters/README details="Readme" +runfiles size=48 + RELOC/bibtex/bst/sort-by-letters/abbrv-letters.bst + RELOC/bibtex/bst/sort-by-letters/alpha-letters.bst + RELOC/bibtex/bst/sort-by-letters/apalike-letters.bst + RELOC/bibtex/bst/sort-by-letters/frplainnat-letters.bst + RELOC/bibtex/bst/sort-by-letters/plain-letters.bst + RELOC/bibtex/bst/sort-by-letters/plainnat-letters.bst + RELOC/bibtex/bst/sort-by-letters/siam-letters.bst +catalogue-also alphabib +catalogue-ctan /biblio/bibtex/contrib/sort-by-letters +catalogue-license other-free +catalogue-topics bibtex-sty + +name soton +category Package +revision 16215 +shortdesc University of Southampton-compliant slides +relocated 1 +longdesc The bundle contains two packages: soton-palette which defines +longdesc colour-ways, and soton-beamer, which uses the colours to +longdesc produce compliant presentations. +containersize 1384 +containerchecksum 59e9e0bd127e44e1a80ff7dccf1fecb18b34a54c379a46632b13f82d80648229daa54c4655575c52ee718b02277c4e2b264451f8d3fe58abd60e593d0826c97b +doccontainersize 480 +doccontainerchecksum de9b03e8626535d2633af3884e373d8b25fe6d203af75382cf329aeb7b79c745f94c6d08d49a69b42172f4bad3cab2048fadcc4ad826a1c1126425a40289ecdc +docfiles size=1 + RELOC/doc/latex/soton/README details="Readme" +runfiles size=2 + RELOC/tex/latex/soton/soton-beamer.sty + RELOC/tex/latex/soton/soton-palette.sty +catalogue-ctan /macros/latex/contrib/soton +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.1 + +name soul +category Package +revision 56495 +shortdesc Hyphenation for letterspacing, underlining, and more +relocated 1 +longdesc Provides hyphenatable spacing out (letterspacing), underlining, +longdesc striking out, etc., using the TeX hyphenation algorithm to find +longdesc the proper hyphens automatically. The package also provides a +longdesc mechanism that can be used to implement similar tasks, that +longdesc have to treat text syllable by syllable. This is shown in two +longdesc examples. The package itself does not support UTF-8 input in +longdesc ordinary (PDF)LaTeX; some UTF-8 support is offered by package +longdesc soulutf8 +containersize 5976 +containerchecksum 91b2f65fa3cc1ead06d4450c273d279c8d3428a71fd895beb8b675b76b02139ed8db2d01f64352ed26bd13428c0aef8b0e542d39e8ffe6afb31d05d0f63bdd72 +doccontainersize 308320 +doccontainerchecksum 282fb6039f870e869f650ad2c4523dd4222c9d5c01359c6242c33c2b4d29b494e0c047e67ec44adc0830043ab0594d49e9251c6c9b256ff9709e9764d7432e19 +docfiles size=96 + RELOC/doc/generic/soul/soul.pdf details="Package documentation" + RELOC/doc/generic/soul/soul.txt +srccontainersize 35876 +srccontainerchecksum 0dba1d0c988a6e66b34b897337480588da1466c672e9423d2370a18403cdee587916c969b04169f86a1818be27574aec3f26111b8b431338ca93e51436471bf2 +srcfiles size=35 + RELOC/source/generic/soul/Makefile + RELOC/source/generic/soul/soul.dtx + RELOC/source/generic/soul/soul.ins +runfiles size=6 + RELOC/tex/generic/soul/soul.sty +catalogue-ctan /macros/generic/soul +catalogue-license lppl +catalogue-topics underline letterspace macro-gen +catalogue-version 2.4 + +name soulpos +category Package +revision 52663 +shortdesc A fancy means of underlining +relocated 1 +longdesc The package combines the use of soul with the savepos mechanism +longdesc of current pdfTeX so that the user can create (almost) +longdesc arbitrary underlining and similar "decorations", including +longdesc rules, leaders and even pictures (pgf, pstricks, etc.). Unlike +longdesc soul underlines, which are built by repeating small elements, +longdesc here each chunk of text to be underlined is a single element. +depend oberdiek +depend soul +containersize 3200 +containerchecksum 1187494b2c65535c47f88f2387df8cf4f835222ad19718a4fc6ba7c4dd9a30d7d6aeb972f35b5c9350b873056b87a6a93ced5f69ded272c6aac82e467da6cd81 +doccontainersize 164048 +doccontainerchecksum 10a6999a68ebe21d4e9621a11c63154dc720332cefe8f64728b51dbabfdcda2f638e456c517374bf892b21354f3fca8a746c1539e5745ac42a0228d900b19700 +docfiles size=44 + RELOC/doc/latex/soulpos/README.md details="Readme" + RELOC/doc/latex/soulpos/soulpos.pdf details="Package documentation" + RELOC/doc/latex/soulpos/soulpos.tex +runfiles size=2 + RELOC/tex/latex/soulpos/soulpos.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos +catalogue-ctan /macros/latex/contrib/soulpos +catalogue-license mit +catalogue-topics underline letterspace +catalogue-version 1.1 + +name soulutf8 +category Package +revision 53163 +shortdesc Permit use of UTF-8 characters in soul +relocated 1 +longdesc This package extends package soul and adds some support for +longdesc UTF-8. Namely the input encodings in 'utf8.def' from package +longdesc inputenc and 'utf8x.def' from package ucs are supported. +containersize 3948 +containerchecksum 777ebf7b4215b9a6e31ec284d27345de2ffc7c5d303db0e21bd31376692e528688deac59c2b49b84bf2088ab42523523adc284dd1d8fd5aaf7a074923bf7be9e +doccontainersize 347016 +doccontainerchecksum eb3c81518312b6c0cc5b622bbf2b7ae954e42b2a813097d8c3fa681daea0a24c9df14d189ca5d5f2adcbfe479029bb985c3d85278beb6d9694bd61aaefd32103 +docfiles size=87 + RELOC/doc/latex/soulutf8/README.md + RELOC/doc/latex/soulutf8/soulutf8.pdf details="Package documentation" +srccontainersize 8044 +srccontainerchecksum a6b804099f59c6d67b5abe4146577f608176569ca4cd92fd27d43878ee012165ac65acdbf462f8a84d4e6a8d6e61c5bf7f0f5d0dc667ff97656a5d7fbf159997 +srcfiles size=9 + RELOC/source/latex/soulutf8/soulutf8.dtx +runfiles size=5 + RELOC/tex/generic/soulutf8/soulutf8.sty +catalogue-contact-bugs https://github.com/ho-tex/soul/issues +catalogue-contact-repository https://github.com/ho-tex/soul +catalogue-ctan /macros/latex/contrib/soulutf8 +catalogue-license lppl1.3 +catalogue-topics underline letterspace +catalogue-version 1.2 + +name soup +category Package +revision 50815 +shortdesc Generate alphabet soup puzzles +relocated 1 +longdesc Generate alphabet soup puzzles (aka word search puzzles), and +longdesc variations using numbers or other symbols. Provides macros to +longdesc generate an alphabet soup style puzzle (also known as word +longdesc search puzzles or "find-the-word" puzzles). Allow creating +longdesc numbersoup and soups with custom symbol sets. +containersize 3424 +containerchecksum 478c8cba8623b184db1c9237b7a805219bf1ffb7ef45280fecf7cd75a1720ca0ea2e1e1ad73465ee20dbc2bbaf14667d4707524edbc073dd4fbd0537dbeca8c2 +doccontainersize 113216 +doccontainerchecksum 318cb98167123bf8d9a5f80db8e31a31f6f61536e938da3b68efc0dfec6722bc898d8295d32896c24d2842b262f22f70e08014c07755b6728dbb2040f64aef5e +docfiles size=30 + RELOC/doc/latex/soup/README.md details="Readme" + RELOC/doc/latex/soup/soup.pdf details="Package documentation" +srccontainersize 7288 +srccontainerchecksum 41d74f1e6812f4b56b44e3a80abb398baf9eef5c6a361de98a1237fc6931952460450f3780f682d35bf9bc718d2902c9d82ce15994144b2a133dcda46b531774 +srcfiles size=8 + RELOC/source/latex/soup/soup.dtx + RELOC/source/latex/soup/soup.ins +runfiles size=4 + RELOC/tex/latex/soup/soup.sty +catalogue-ctan /macros/latex/contrib/soup +catalogue-license lppl1.3 +catalogue-topics cwpuzzle games puzzle +catalogue-version 1.0.2 + +name sourcecodepro +category Package +revision 54512 +shortdesc Use SourceCodePro with TeX(-alike) systems +relocated 1 +longdesc The font is an open-source Monospaced development from Adobe. +longdesc The package provides fonts (in both Adobe Type 1 and OpenType +longdesc formats) and macros supporting their use in LaTeX (Type 1) and +longdesc XeLaTeX/LuaLaTeX (OTF). +execute addMap SourceCodePro.map +containersize 3704732 +containerchecksum 98ae07aa0c29c1c1cf2e181b1a5d68f85736b90b8f381bc9c1a2368cea2b8c62fb0c8007f5ce6b53b8e87195b8b0859c54bb2656cb7361119c29ed87d9259c62 +doccontainersize 569496 +doccontainerchecksum e786d75bedbf5c5d155a69fda50e9fe6fe07914ca01aa10d7ab66800cd37a4bdfeb543ad34c9ca2eec53de226e68d7a1849a9a0510291d135001c5228f19e2e8 +docfiles size=277 + RELOC/doc/latex/sourcecodepro/LICENSE.txt + RELOC/doc/latex/sourcecodepro/README.md details="Readme" + RELOC/doc/latex/sourcecodepro/sourcecodepro-otf-specimen.pdf + RELOC/doc/latex/sourcecodepro/sourcecodepro-otf-specimen.tex + RELOC/doc/latex/sourcecodepro/sourcecodepro-type1-specimen.pdf + RELOC/doc/latex/sourcecodepro/sourcecodepro-type1-specimen.tex + RELOC/doc/latex/sourcecodepro/sourcecodepro.pdf details="Package documentation" + RELOC/doc/latex/sourcecodepro/sourcecodepro.tex +runfiles size=1903 + RELOC/fonts/enc/dvips/sourcecodepro/a_3iph7b.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_4bagdb.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_4jrrta.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_6samag.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_beydf2.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_bzs6pp.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_ciozbc.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_cy5ftw.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_d56bnw.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_fhxzui.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_fnt2zo.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_fy4e5k.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_gog54w.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_gufhru.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_h3vs4v.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_j24bgz.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_jjp77t.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_ljusoa.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_lutrty.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_lxssho.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_mjxvy6.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_n5gv3r.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_npftpj.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_o4vjd2.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_pyiqqv.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_snirjt.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_tadnvb.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_uio74x.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_v5qca6.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_xmlzny.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_yyete5.enc + RELOC/fonts/map/dvips/sourcecodepro/SourceCodePro.map + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Black.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-BlackIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Bold.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-BoldIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-ExtraLight.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-ExtraLightIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Light.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-LightIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Medium.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-MediumIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Regular.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-RegularIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Semibold.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-SemiboldIt.otf + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1.tfm + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Black.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-BlackIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Bold.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-BoldIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-ExtraLight.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-ExtraLightIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-It.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Light.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-LightIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Medium.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-MediumIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Regular.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Semibold.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-SemiboldIt.pfb + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1.vf + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/TS1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/TS1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/sourcecodepro-type1-autoinst.sty + RELOC/tex/latex/sourcecodepro/sourcecodepro.sty +catalogue-ctan /fonts/sourcecodepro +catalogue-license ofl lppl +catalogue-topics font font-sans font-mono font-otf font-type1 font-t1enc +catalogue-version 2.7 + +name sourcesanspro +category Package +revision 54892 +shortdesc Use SourceSansPro with TeX(-alike) systems +relocated 1 +longdesc The font is an open-source Sans-Serif development from Adobe. +longdesc The package provides fonts (in both Adobe Type 1 and OpenType +longdesc formats) and macros supporting their use in LaTeX (Type 1) and +longdesc XeLaTeX/LuaLaTeX (OTF). +execute addMap SourceSansPro.map +containersize 5153396 +containerchecksum 0511dcf736273d80f7143c9dad96dd9f631b016183b4078243ed061d35889fea62e50c5f48e9842ffae7b654fd2e08a21d1c46403e56349c0b515ff2eb62e164 +doccontainersize 671484 +doccontainerchecksum 174def8872588c27b8f90b3c384ee356aec43e4e42014bb1c02d648d8b309dfa8fb9cea03f65fa9bd86dc3ff1e64483f1312dbaca6e212f65d2d379a1d9935e3 +docfiles size=327 + RELOC/doc/latex/sourcesanspro/LICENSE.txt + RELOC/doc/latex/sourcesanspro/LPPL.txt + RELOC/doc/latex/sourcesanspro/README.md details="Readme" + RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.pdf + RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.tex + RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.pdf + RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.tex + RELOC/doc/latex/sourcesanspro/sourcesanspro.pdf details="Package documentation" + RELOC/doc/latex/sourcesanspro/sourcesanspro.tex +runfiles size=4747 + RELOC/fonts/enc/dvips/sourcesanspro/a_3x2gk5.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_3yibv2.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_46wjfg.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_4blavb.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_4hbp34.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_4jropk.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_5ponh6.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_65vrnz.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_6qpf2n.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_77nslr.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_7n4q7u.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ahahpn.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_bkdqh2.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_c3pynx.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_cgcyrm.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_cqavns.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_dbwo4p.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ea4zg5.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_emkxm5.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ercdtc.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_f2tdxs.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_fbyhkd.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ghwomg.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_gpgjtc.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_gvn2fe.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_i5t6gn.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ivdnq2.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_kjpvhx.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ktnhmk.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_lhxooi.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_li5oiy.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_msbdn3.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_nxd2w7.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_o3uzeo.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_oazma5.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_oph6lb.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ordpq2.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_p7zagl.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_q6ppsi.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_qthovn.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_sj7g2w.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_svsr4s.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_t773hb.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ufai4b.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_vauq2g.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_wp5x3v.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ywoy3g.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_zphccl.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_zypyw7.enc + RELOC/fonts/map/dvips/sourcesanspro/SourceSansPro.map + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Black.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-BlackIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Bold.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-BoldIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-ExtraLight.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-ExtraLightIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Light.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-LightIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Regular.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-RegularIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Semibold.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-SemiboldIt.otf + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1.tfm + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Black.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-BlackIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Bold.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-BoldIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-ExtraLight.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-ExtraLightIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-It.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Light.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-LightIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Regular.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Semibold.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-SemiboldIt.pfb + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1.vf + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/sourcesanspro-type1-autoinst.sty + RELOC/tex/latex/sourcesanspro/sourcesanspro.sty +catalogue-ctan /fonts/sourcesanspro +catalogue-license ofl lppl1.3 +catalogue-topics font font-sans font-proportional font-type1 font-otf font-supp font-t1enc +catalogue-version 2.8 + +name sourceserifpro +category Package +revision 54512 +shortdesc Use SourceSerifPro with TeX(-alike) systems +relocated 1 +longdesc This package provides Source Serif Pro for LaTeX. It includes +longdesc both Type1 and OpenType fonts and selects the latter when using +longdesc XeLaTeX or LuaLaTeX. +execute addMap SourceSerifPro.map +containersize 3673368 +containerchecksum 5125dc5b72d960fefffcc4c8651f3d176c18c32d111440a16a0319f90b8dc973a4af0e20fc3b571578184e31749312c0c1f0ec3bba36b3715a3c59fc03768d65 +doccontainersize 542680 +doccontainerchecksum c469f7beb0e99c8a9891c4222171525004c63e9feeaea9be57e663541ba4e2f259d2a3674f3029e4609fc08292d749f005f971bfcc542115d53e1845a02680f8 +docfiles size=261 + RELOC/doc/latex/sourceserifpro/LICENSE.txt + RELOC/doc/latex/sourceserifpro/sourceserifpro-otf-specimen.pdf + RELOC/doc/latex/sourceserifpro/sourceserifpro-otf-specimen.tex + RELOC/doc/latex/sourceserifpro/sourceserifpro-type1-specimen.pdf + RELOC/doc/latex/sourceserifpro/sourceserifpro-type1-specimen.tex + RELOC/doc/latex/sourceserifpro/sourceserifpro.pdf details="Package documentation" + RELOC/doc/latex/sourceserifpro/sourceserifpro.tex +runfiles size=4622 + RELOC/fonts/enc/dvips/sourceserifpro/a_3wqk3b.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_5mjl2d.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_5ts2b6.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_6lyhkv.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_a6i6f2.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_abavx3.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_an4p3v.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_bdm2ki.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_bizpe5.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_brdplf.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_dc746j.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_etdltz.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_flbt57.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_g6m65j.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_gtvdgc.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_jevuw6.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_l72wii.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_lnjzcs.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_lseshj.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_meqgh4.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_mjlzxh.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_n7bg2c.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_nan7a4.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_nqu667.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_nx47sx.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_ob4xxw.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_oi66c4.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_oprvft.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_osimgj.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_osnaur.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_qiz27h.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_r74etr.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_rlbtkr.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_s5phdg.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_s6kslv.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_sboynu.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_sonlso.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_sor56s.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_tf7hcc.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_uima5p.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_upudw7.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_vbwd4w.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_vnu3m6.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_z6lp4v.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_ztztxn.enc + RELOC/fonts/map/dvips/sourceserifpro/SourceSerifPro.map + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Black.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-BlackIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Bold.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-BoldIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-ExtraLight.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Light.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-LightIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Regular.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-RegularIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Semibold.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-SemiboldIt.otf + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ts1.tfm + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Black.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-BlackIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Bold.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-BoldIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-ExtraLight.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-It.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Light.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-LightIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Regular.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Semibold.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-SemiboldIt.pfb + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ts1.vf + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Dnom.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Numr.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Sup.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Dnom.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Numr.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Sup.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Dnom.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Numr.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Sup.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/sourceserifpro-type1-autoinst.sty + RELOC/tex/latex/sourceserifpro/sourceserifpro.sty +catalogue-contact-bugs https://github.com/silkeh/latex-sourceserifpro/issues +catalogue-contact-repository https://github.com/silkeh/latex-sourceserifpro +catalogue-ctan /fonts/sourceserifpro +catalogue-license ofl lppl1.3 +catalogue-topics font font-serif font-type1 font-otf font-t1enc font-proportional +catalogue-version 1.4 + +name spacingtricks +category Package +revision 56840 +shortdesc Dealing with some spacing issues +relocated 1 +longdesc This package provides macros for dealing with some spacing +longdesc issues, e.g. centering a single line, making a variable strut, +longdesc indenting a block, typesetting a compact list, placing two +longdesc boxes side by side with vertical adjustment. +containersize 1628 +containerchecksum 9cb9ef080cb14f9a4c7004221cdf8f3d5b90a74ba90a37960b6efa3a33aed501a68e2d8ae23d3262e8fb17816e4565e26722b78e1caa14b7455199e52d8fd3cd +doccontainersize 98196 +doccontainerchecksum d5ab0e38687f00099830015bc469060e6e7a96ef5a199b0352e4a6ce82d50ff6df0b04de20bd683a03d9980a3c45c63905043177fd8ca9cf1f009e978d5dc12f +docfiles size=32 + RELOC/doc/latex/spacingtricks/README.md details="Readme" + RELOC/doc/latex/spacingtricks/spacingtricks.pdf details="Package documentation" +srccontainersize 8472 +srccontainerchecksum dcdc75265a9cf0131cf90beae018f35a54fdd201a641368c5380f82258e7c1bb5a680d1b104146c886df56f148921db0ca304063b2cc9532b0aa32b3288812c7 +srcfiles size=7 + RELOC/source/latex/spacingtricks/spacingtricks.dtx + RELOC/source/latex/spacingtricks/spacingtricks.ins +runfiles size=1 + RELOC/tex/latex/spacingtricks/spacingtricks.sty +catalogue-ctan /macros/latex/contrib/spacingtricks +catalogue-license lppl1.3 +catalogue-topics typesetting footnote list layout abbrev +catalogue-version 1.3 + +name spalign +category Package +revision 42225 +shortdesc Typeset matrices and arrays with spaces and semicolons as delimiters +relocated 1 +longdesc Typeset matrices and arrays with spaces and semicolons as +longdesc delimiters. The purpose of this package is to decrease the +longdesc number of keystrokes needed to typeset small amounts of aligned +longdesc material (matrices, arrays, etc.). It provides a facility for +longdesc typing alignment environments and macros with spaces as the +longdesc alignment delimiter and semicolons (by default) as the +longdesc end-of-row indicator. For instance, typeset a matrix using +longdesc \spalignmat{1 12 -3; 24 -2 2; 0 0 1}, or a vector using +longdesc \spalignvector{22 \frac{1}{2} -14}. This package also contains +longdesc utility macros for typesetting augmented matrices, vectors, +longdesc arrays, systems of equations, and more, and is easily +longdesc extendable to other situations that use alignments. People who +longdesc have to typeset a large number of matrices (like linear algebra +longdesc teachers) should find this package to be a real time saver. +containersize 2848 +containerchecksum 6e00399e0940778a6ed8326abce14f15836bcb69f8e7c67d06cdf8567330ce0482a213c7b65c2662e0fddc47ce7b684a640e133017eca314b59eefc278eb6425 +doccontainersize 120216 +doccontainerchecksum 534f2c39076a6ff243a8e4cffe353a569b493b90fc1bdcc3db43229dda3955f013de15ce1db7beb38bc9b8d972c7430a24d64c263041c82e84c799f446faab0a +docfiles size=35 + RELOC/doc/latex/spalign/README.md details="Readme" + RELOC/doc/latex/spalign/spalign.pdf details="Package documentation" +srccontainersize 12044 +srccontainerchecksum 3a12b34469bbefd61112b7338c8b5d440de46837632a695b52ae18e4f297d6ac0cde7ae71db7bb0a7bd3db0aeaa83e78f33a60e4dd496cf9c0ccda1a297b4ae9 +srcfiles size=13 + RELOC/source/latex/spalign/spalign.dtx + RELOC/source/latex/spalign/spalign.ins +runfiles size=3 + RELOC/tex/latex/spalign/spalign.sty +catalogue-ctan /macros/latex/contrib/spalign +catalogue-license lppl1.3 +catalogue-topics maths matrix maths-syseqn maths-theorem typeset-grid + +name spark-otf +category Package +revision 51005 +shortdesc Support OpenType Spark fonts +relocated 1 +longdesc The package supports the free fonts from "After the Flood" +longdesc which are available from AtF Spark. The following fonts are +longdesc supported: Spark -- Bar -- Medium Spark -- Bar -- Narrow Spark +longdesc -- Bar -- Thin Spark -- Dot-line -- Medium Spark -- Dot -- +longdesc Medium Spark -- Dot -- Small +containersize 2068 +containerchecksum 863587da0d6a03267dd36437b112be4a1391537d7186db0f9acae2d5c3721b2a303d7b2ca86d47a619b9265930fb4795f87522498cd34c80d057ef56d1b8daa2 +doccontainersize 104112 +doccontainerchecksum 2b3a9fab8e29c1fd9bf1b3a3f729d4d728fd22d6dba86aa746febac2eafe59df1afe65f557c9e3c816983eeeab8d798bb4f54712be8f5590706bcc49a2e50199 +docfiles size=33 + RELOC/doc/fonts/spark-otf/Changes + RELOC/doc/fonts/spark-otf/README.md details="Readme" + RELOC/doc/fonts/spark-otf/spark-otf-doc.bib + RELOC/doc/fonts/spark-otf/spark-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/spark-otf/spark-otf-doc.tex +runfiles size=2 + RELOC/tex/latex/spark-otf/spark-otf.sty +catalogue-ctan /fonts/spark-otf +catalogue-license lppl1.3 +catalogue-topics font-absent font-symbol font-otf font-use +catalogue-version 0.05 + +name sparklines +category Package +revision 42821 +shortdesc Drawing sparklines: intense, simple, wordlike graphics +relocated 1 +longdesc Sparklines are intense, simple, wordlike graphics (so named by +longdesc Edward Tufte). In lieu of a more detailed introduction, +longdesc Professor Tufte's site has an early release of a chapter on +longdesc sparklines. A PHP implementation may be found at SourceForge. A +longdesc sparkline can be added using the sparkline environment. Also, +longdesc you can add sparkling rectangles for the median and special +longdesc sparkling dots in red or blue. The package requires pdfLaTeX; +longdesc sparklines cannot appear in a dvi file. The sparklines package +longdesc uses pgf, and does not work with pictex. +containersize 2624 +containerchecksum 5dc74f46a819a6539034d570d4bc11403cb9f4617e2e6e373cced6cf335630e4e5a3d919041ac67a8b114b2d53c56871239b67a6acd6bc47f8c6130171d84824 +doccontainersize 140580 +doccontainerchecksum 4db42aec14145d4b73fce7940563f6771c3d994955006cceac7c93c9d5d5e2200fddf6d83d15e4dde0385f982c0ee85fc844914d80aa249c3ac2e86a49369b38 +docfiles size=38 + RELOC/doc/latex/sparklines/README + RELOC/doc/latex/sparklines/sparklines.pdf details="Package documentation" + RELOC/doc/latex/sparklines/sparklines.tex +runfiles size=2 + RELOC/tex/latex/sparklines/sparklines.sty +catalogue-ctan /graphics/sparklines +catalogue-license lppl +catalogue-topics graphics-in-tex +catalogue-version 1.7 + +name spath3 +category Package +revision 57842 +shortdesc Manipulate "soft paths" in PGF +relocated 1 +longdesc The spath3 library provides methods for manipulating the "soft +longdesc paths" of TikZ/PGF. Packaged with it are two TikZ libraries +longdesc that make use of the methods provided. These are libraries for +longdesc drawing calligraphic paths and for drawing knot diagrams. +containersize 21472 +containerchecksum f6e1dde75534c8f29db02afca9ebbf288d55bfe3468aaab889ec8bac8519c2183026354a17a709accf9a7de6047e8cc4ce2be072dd5a5f27175a0259547af92b +doccontainersize 1371428 +doccontainerchecksum fbc4ad198e31907bac75115e232aad20ea3e29d5485f17d199e20fda6fc721447b03c404aa664b4668ed588f8fac88d654a536087d6511363c5e95cef69f8ce3 +docfiles size=406 + RELOC/doc/latex/spath3/README details="Readme" + RELOC/doc/latex/spath3/README.txt + RELOC/doc/latex/spath3/calligraphy.pdf details="Use for calligraphy" + RELOC/doc/latex/spath3/calligraphy.tex + RELOC/doc/latex/spath3/knots.pdf details="Use for knot (and similar) diagrams" + RELOC/doc/latex/spath3/knots.tex + RELOC/doc/latex/spath3/spath3.pdf + RELOC/doc/latex/spath3/spath3.tex + RELOC/doc/latex/spath3/spath3_code.pdf details="Package documentation" +srccontainersize 31740 +srccontainerchecksum 173c53c0bfdbe07fa17326a14249e7df2b7a20be58b6e9f7572b075b5c38242443b161f038da9778b0fbf5d91ba71a3eb868b0f8105c0019ec7fa125ae8889c3 +srcfiles size=66 + RELOC/source/latex/spath3/spath3_code.dtx + RELOC/source/latex/spath3/spath3_code.ins +runfiles size=60 + RELOC/tex/latex/spath3/spath3.sty + RELOC/tex/latex/spath3/tikzlibrarycalligraphy.code.tex + RELOC/tex/latex/spath3/tikzlibraryknots.code.tex + RELOC/tex/latex/spath3/tikzlibraryspath3.code.tex +catalogue-contact-bugs https://github.com/loopspace/spath3/issues +catalogue-contact-home https://github.com/loopspace/spath3 +catalogue-contact-repository https://github.com/loopspace/spath3 +catalogue-ctan /graphics/pgf/contrib/spath3 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz graphics-curve expl3 +catalogue-version 2.4 + +name spectral +category Package +revision 57296 +shortdesc Spectral fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Spectral family of fonts, designed by +longdesc Jean-Baptiste Levee at the Production Type digital type design +longdesc agency. Spectral is a new and versatile serif face available in +longdesc seven weights of roman and italic, with small caps. +execute addMap spectral.map +containersize 3545232 +containerchecksum 46f6aba88425deb74e921ceafa578e9e8c467a5f9ada72b1372f6e70957946adb56bb05700a839249b2387472f4059a2dfbf4b83cb9979a4936442dac5c9258c +doccontainersize 80960 +doccontainerchecksum 6166a19151b57d2fe23833a5583b838fff6af01d96c1056bd79532af45efa8cb58f75d9c2993c7512f69fc7716d746d16de8bc5b2143cb07790cd19997bba5bc +docfiles size=24 + RELOC/doc/fonts/spectral/OFL.txt + RELOC/doc/fonts/spectral/README details="Readme" + RELOC/doc/fonts/spectral/spectral-samples.pdf details="Font samples" + RELOC/doc/fonts/spectral/spectral-samples.tex +runfiles size=5348 + RELOC/fonts/enc/dvips/spectral/spctrl_2aac4b.enc + RELOC/fonts/enc/dvips/spectral/spctrl_3w4m5o.enc + RELOC/fonts/enc/dvips/spectral/spctrl_4pmhlc.enc + RELOC/fonts/enc/dvips/spectral/spctrl_557mkd.enc + RELOC/fonts/enc/dvips/spectral/spctrl_5nvskg.enc + RELOC/fonts/enc/dvips/spectral/spctrl_7723dm.enc + RELOC/fonts/enc/dvips/spectral/spctrl_7yrmk2.enc + RELOC/fonts/enc/dvips/spectral/spctrl_afnhyv.enc + RELOC/fonts/enc/dvips/spectral/spctrl_aqo46g.enc + RELOC/fonts/enc/dvips/spectral/spctrl_euyf7f.enc + RELOC/fonts/enc/dvips/spectral/spctrl_f72vab.enc + RELOC/fonts/enc/dvips/spectral/spctrl_fjos6u.enc + RELOC/fonts/enc/dvips/spectral/spctrl_fx5a3s.enc + RELOC/fonts/enc/dvips/spectral/spctrl_gjclhi.enc + RELOC/fonts/enc/dvips/spectral/spctrl_grm5gg.enc + RELOC/fonts/enc/dvips/spectral/spctrl_idimeu.enc + RELOC/fonts/enc/dvips/spectral/spctrl_jbpxno.enc + RELOC/fonts/enc/dvips/spectral/spctrl_jn4bsu.enc + RELOC/fonts/enc/dvips/spectral/spctrl_kxtkh6.enc + RELOC/fonts/enc/dvips/spectral/spctrl_li2pym.enc + RELOC/fonts/enc/dvips/spectral/spctrl_n2dqb2.enc + RELOC/fonts/enc/dvips/spectral/spctrl_nmk6rb.enc + RELOC/fonts/enc/dvips/spectral/spctrl_nnruvf.enc + RELOC/fonts/enc/dvips/spectral/spctrl_pfe23f.enc + RELOC/fonts/enc/dvips/spectral/spctrl_ph2c4v.enc + RELOC/fonts/enc/dvips/spectral/spctrl_qkttcp.enc + RELOC/fonts/enc/dvips/spectral/spctrl_ti2bo2.enc + RELOC/fonts/enc/dvips/spectral/spctrl_tljjuh.enc + RELOC/fonts/enc/dvips/spectral/spctrl_vm23tp.enc + RELOC/fonts/enc/dvips/spectral/spctrl_y3a2sk.enc + RELOC/fonts/map/dvips/spectral/spectral.map + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Light-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-orn-u--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-orn-u.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/production/spectral/Spectral-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/truetype/production/spectral/Spectral-Bold.ttf + RELOC/fonts/truetype/production/spectral/Spectral-BoldItalic.ttf + RELOC/fonts/truetype/production/spectral/Spectral-ExtraBold.ttf + RELOC/fonts/truetype/production/spectral/Spectral-ExtraBoldItalic.ttf + RELOC/fonts/truetype/production/spectral/Spectral-ExtraLight.ttf + RELOC/fonts/truetype/production/spectral/Spectral-ExtraLightItalic.ttf + RELOC/fonts/truetype/production/spectral/Spectral-Italic.ttf + RELOC/fonts/truetype/production/spectral/Spectral-Light.ttf + RELOC/fonts/truetype/production/spectral/Spectral-LightItalic.ttf + RELOC/fonts/truetype/production/spectral/Spectral-Medium.ttf + RELOC/fonts/truetype/production/spectral/Spectral-MediumItalic.ttf + RELOC/fonts/truetype/production/spectral/Spectral-Regular.ttf + RELOC/fonts/truetype/production/spectral/Spectral-SemiBold.ttf + RELOC/fonts/truetype/production/spectral/Spectral-SemiBoldItalic.ttf + RELOC/fonts/type1/production/spectral/Spectral-Bold.pfb + RELOC/fonts/type1/production/spectral/Spectral-BoldItalic.pfb + RELOC/fonts/type1/production/spectral/Spectral-ExtraBold.pfb + RELOC/fonts/type1/production/spectral/Spectral-ExtraBoldItalic.pfb + RELOC/fonts/type1/production/spectral/Spectral-ExtraLight.pfb + RELOC/fonts/type1/production/spectral/Spectral-ExtraLightItalic.pfb + RELOC/fonts/type1/production/spectral/Spectral-Italic.pfb + RELOC/fonts/type1/production/spectral/Spectral-Light.pfb + RELOC/fonts/type1/production/spectral/Spectral-LightItalic.pfb + RELOC/fonts/type1/production/spectral/Spectral-Medium.pfb + RELOC/fonts/type1/production/spectral/Spectral-MediumItalic.pfb + RELOC/fonts/type1/production/spectral/Spectral-Regular.pfb + RELOC/fonts/type1/production/spectral/Spectral-SemiBold.pfb + RELOC/fonts/type1/production/spectral/Spectral-SemiBoldItalic.pfb + RELOC/fonts/vf/production/spectral/Spectral-Bold-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Bold-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Italic-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Light-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Medium-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-Regular-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-orn-u.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/production/spectral/Spectral-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/spectral/LY1Spectral-LF.fd + RELOC/tex/latex/spectral/LY1Spectral-OsF.fd + RELOC/tex/latex/spectral/LY1Spectral-Sup.fd + RELOC/tex/latex/spectral/LY1Spectral-TLF.fd + RELOC/tex/latex/spectral/LY1Spectral-TOsF.fd + RELOC/tex/latex/spectral/OT1Spectral-LF.fd + RELOC/tex/latex/spectral/OT1Spectral-OsF.fd + RELOC/tex/latex/spectral/OT1Spectral-Sup.fd + RELOC/tex/latex/spectral/OT1Spectral-TLF.fd + RELOC/tex/latex/spectral/OT1Spectral-TOsF.fd + RELOC/tex/latex/spectral/T1Spectral-LF.fd + RELOC/tex/latex/spectral/T1Spectral-OsF.fd + RELOC/tex/latex/spectral/T1Spectral-Sup.fd + RELOC/tex/latex/spectral/T1Spectral-TLF.fd + RELOC/tex/latex/spectral/T1Spectral-TOsF.fd + RELOC/tex/latex/spectral/TS1Spectral-LF.fd + RELOC/tex/latex/spectral/TS1Spectral-OsF.fd + RELOC/tex/latex/spectral/TS1Spectral-TLF.fd + RELOC/tex/latex/spectral/TS1Spectral-TOsF.fd + RELOC/tex/latex/spectral/USpectral-Orn.fd + RELOC/tex/latex/spectral/spectral.sty +catalogue-contact-development https://github.com/productiontype/Spectral +catalogue-ctan /fonts/spectral +catalogue-license ofl lppl +catalogue-topics font font-body font-serif font-proportional font-ttf font-type1 font-supp font-t1enc + +name spectralsequences +category Package +revision 50072 +shortdesc Print spectral sequence diagrams using PGF/TikZ +relocated 1 +longdesc The package is a specialized tool built on top of PGF/TikZ for +longdesc drawing spectral sequences. It provides a powerful, concise +longdesc syntax for specifying the data of a spectral sequence, and then +longdesc allows the user to print various pages of spectral sequences, +longdesc automatically choosing which subset of the classes, +longdesc differentials, and structure lines to display on each page. It +longdesc also handles most of the details of the layout. At the same +longdesc time, it is extremely flexible. spectralsequences is closely +longdesc integrated with TikZ to ensure that users can take advantage of +longdesc as much as possible of its expressive power. It is possible to +longdesc turn off most of the automated layout features and draw +longdesc replacements using TikZ commands. The package also provides a +longdesc carefully designed error reporting system intended to ensure +longdesc that it is as clear as possible what is going wrong. +containersize 69124 +containerchecksum 71677e3cba37f228acc096ae916793cf214f90d30809019efc67ba0793b5176da1a3fe8fab592ca80a077164948c4be777237f71e895515e519f399534cc0cd6 +doccontainersize 2635988 +doccontainerchecksum 80eda3718c3cb2daf9f3a96a6def78011be1d7882eb50db692c2d34332a5aa79a44e0201445f67d1623bcfc3618f79f6d158a98a91572796674071143f017789 +docfiles size=903 + RELOC/doc/latex/spectralsequences/README.md details="Readme" + RELOC/doc/latex/spectralsequences/examples/ANSS-S_2.pdf + RELOC/doc/latex/spectralsequences/examples/ANSS-S_2.tex + RELOC/doc/latex/spectralsequences/examples/ANSS-S_3.pdf + RELOC/doc/latex/spectralsequences/examples/ANSS-S_3.tex + RELOC/doc/latex/spectralsequences/examples/ASS-S_2.pdf + RELOC/doc/latex/spectralsequences/examples/ASS-S_2.tex + RELOC/doc/latex/spectralsequences/examples/ASS-S_3.pdf + RELOC/doc/latex/spectralsequences/examples/ASS-S_3.tex + RELOC/doc/latex/spectralsequences/examples/ASS-tmf_2.pdf + RELOC/doc/latex/spectralsequences/examples/ASS-tmf_2.tex + RELOC/doc/latex/spectralsequences/examples/HFPSS-EO2_3.pdf + RELOC/doc/latex/spectralsequences/examples/HFPSS-EO2_3.tex + RELOC/doc/latex/spectralsequences/examples/HFPSS-KO.pdf + RELOC/doc/latex/spectralsequences/examples/HFPSS-KO.tex + RELOC/doc/latex/spectralsequences/examples/J_RPinfty.pdf + RELOC/doc/latex/spectralsequences/examples/J_RPinfty.tex + RELOC/doc/latex/spectralsequences/examples/MaySS-bo-A1.pdf + RELOC/doc/latex/spectralsequences/examples/MaySS-bo-A1.tex + RELOC/doc/latex/spectralsequences/examples/MaySS-tmf-A2.pdf + RELOC/doc/latex/spectralsequences/examples/MaySS-tmf-A2.tex + RELOC/doc/latex/spectralsequences/examples/SSS-KF3n.pdf + RELOC/doc/latex/spectralsequences/examples/SSS-KF3n.tex + RELOC/doc/latex/spectralsequences/examples/SSS-KZ3.pdf + RELOC/doc/latex/spectralsequences/examples/SSS-KZ3.tex + RELOC/doc/latex/spectralsequences/examples/hatcher.pdf + RELOC/doc/latex/spectralsequences/examples/hatcher.tex + RELOC/doc/latex/spectralsequences/examples/unstable_ASS_SO.pdf + RELOC/doc/latex/spectralsequences/examples/unstable_ASS_SO.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-KORP8.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-class-page2a.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-class-page2b.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-imJ.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-insert.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-tikz.tex + RELOC/doc/latex/spectralsequences/manual/pgfmanual-en-macros.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequences-howitworks.pdf + RELOC/doc/latex/spectralsequences/manual/spectralsequences-howitworks.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual-draftmode.pdf + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual-layoutcharts.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual.pdf details="Package documentation" + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanualpreamble.tex + RELOC/doc/latex/spectralsequences/manual/sseqmanualtest.tex +runfiles size=98 + RELOC/tex/latex/spectralsequences/spectralsequences.sty + RELOC/tex/latex/spectralsequences/sseqcheckdefinitions.code.tex + RELOC/tex/latex/spectralsequences/sseqdrawing.code.tex + RELOC/tex/latex/spectralsequences/sseqforeach.code.tex + RELOC/tex/latex/spectralsequences/sseqkeys.code.tex + RELOC/tex/latex/spectralsequences/sseqloadstore.code.tex + RELOC/tex/latex/spectralsequences/sseqmacromakers.code.tex + RELOC/tex/latex/spectralsequences/sseqmain.code.tex + RELOC/tex/latex/spectralsequences/sseqmessages.code.tex + RELOC/tex/latex/spectralsequences/sseqparsers.code.tex +catalogue-contact-repository https://github.com/hoodmane/spectralsequences +catalogue-ctan /graphics/pgf/contrib/spectralsequences +catalogue-license lppl +catalogue-topics pgf-tikz +catalogue-version 1.2.2 + +name spelling +category Package +revision 30715 +shortdesc Support for spell-checking of LuaTeX documents +relocated 1 +longdesc The package aids spell-checking of TeX documents compiled with +longdesc the LuaTeX engine. It can give visual feedback in PDF output +longdesc similar to WYSIWYG word processors. The package relies on an +longdesc external spell-checker application to check spelling of a text +longdesc file and to output a list of bad spellings. The package should +longdesc work with most spell-checkers, even dumb, TeX-unaware ones. +containersize 14072 +containerchecksum ec32c627f52e1cc08f893aff21d43519ac30169772e82793525cfd61c302883c9c0c8444f2d51cd03a94f55e1ad589afac1a404a47b87ebbe7855acde887e511 +doccontainersize 142556 +doccontainerchecksum a51b8fb45701d318dd9b9736830b83ac34c84b781d61a3a247263167d527aad7cdb6e1917ce260d09e0304fba38bb2e2a25288f75aa2335bef479918036e1221 +docfiles size=50 + RELOC/doc/luatex/spelling/CHANGES details="Record of changes" + RELOC/doc/luatex/spelling/LICENSE + RELOC/doc/luatex/spelling/README details="Readme" + RELOC/doc/luatex/spelling/spelling-doc-lst-lua.tex + RELOC/doc/luatex/spelling/spelling-doc.bad + RELOC/doc/luatex/spelling/spelling-doc.pdf details="Package documentation" + RELOC/doc/luatex/spelling/spelling-doc.tex +runfiles size=19 + RELOC/scripts/spelling/spelling-main.lua + RELOC/scripts/spelling/spelling-recurse.lua + RELOC/scripts/spelling/spelling-stage-1.lua + RELOC/scripts/spelling/spelling-stage-2.lua + RELOC/scripts/spelling/spelling-stage-3.lua + RELOC/scripts/spelling/spelling-stage-4.lua + RELOC/tex/luatex/spelling/spelling.sty +catalogue-ctan /macros/luatex/generic/spelling +catalogue-license lppl1.3 +catalogue-topics luatex spell +catalogue-version 0.41 + +name sphack +category Package +revision 20842 +shortdesc Patch LaTeX kernel spacing macros +relocated 1 +longdesc Change the kernel internal \@bsphack/\@esphack so that it is +longdesc also invisible in vertical mode. +containersize 2216 +containerchecksum b2cd588384770e0d95bf6e5c6b67df0ba8160e0a01e3f64932d67debcf9fa836212aafc78c79b8d28aae8124a25aff73f4846db514dbfc0a65a519eba75fc52a +doccontainersize 243456 +doccontainerchecksum 6b490ee2e736a6bf1ddf32d5db605ab5fe77f079d585c2e377bda73a688a7de575b99d56c6626d9888c395f6a4d181cd0b42e77dd5673c8456bb0e029510b8d9 +docfiles size=61 + RELOC/doc/latex/sphack/sphack-doc.pdf details="Package documentation" + RELOC/doc/latex/sphack/sphack-doc.tex +runfiles size=2 + RELOC/tex/latex/sphack/sphack.sty +catalogue-ctan /macros/latex/contrib/sphack +catalogue-license other-free +catalogue-topics macro-supp + +name sphdthesis +category Package +revision 34374 +shortdesc LaTeX template for writing PhD Thesis +relocated 1 +longdesc The package provides a LaTeX document class for writing a PhD +longdesc thesis. The author developed it while writing his PhD thesis in +longdesc School of Computing (SoC), National University of Singapore +longdesc (NUS). By default, the class adheres to the NUS Guidelines on +longdesc Format of Research Thesis Submitted For Examination. However, +longdesc the class for conformation to a different guideline should not +longdesc be difficult. +containersize 6208 +containerchecksum 44c467fc1de689bc198acfa224aa1109c47bcdfce8b161673752f73d59877465b0c4b87f1fcd4a8f589a78fb05ef5efd42edaff2fbfe7910a1ab7b409d9a7e5f +doccontainersize 550152 +doccontainerchecksum cfcd8c02c68a990cda426d737914d195c78d98e0b8c9765128aa8319d47d27163e7d072ea50d312a394b85e8ac1e580dcbd204fcf6b670b4dc519d1f09ce8d72 +docfiles size=167 + RELOC/doc/latex/sphdthesis/LICENSE + RELOC/doc/latex/sphdthesis/README details="Readme" + RELOC/doc/latex/sphdthesis/SPhdThesis.pdf details="Package documentation" + RELOC/doc/latex/sphdthesis/SPhdThesis.tex + RELOC/doc/latex/sphdthesis/example/SPhdThesis.cls + RELOC/doc/latex/sphdthesis/example/abstract.tex + RELOC/doc/latex/sphdthesis/example/acknowledgments.tex + RELOC/doc/latex/sphdthesis/example/algorithm.tex + RELOC/doc/latex/sphdthesis/example/biblio.bib + RELOC/doc/latex/sphdthesis/example/border.pdf + RELOC/doc/latex/sphdthesis/example/chapter1.tex + RELOC/doc/latex/sphdthesis/example/figure.tex + RELOC/doc/latex/sphdthesis/example/table.tex + RELOC/doc/latex/sphdthesis/example/thesis.pdf + RELOC/doc/latex/sphdthesis/example/thesis.tex +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-license pd +catalogue-topics dissertation +catalogue-version 1.0 + +name spie +category Package +revision 15878 +shortdesc Support for formatting SPIE Proceedings manuscripts +relocated 1 +longdesc A class and a BibTeX style are provided. +containersize 10116 +containerchecksum 282ee645ea5022fc0e325bf211b358236f07c6509883a254fa4e1ca0728fd73a4be8889e4919eb5e0ea9c203300359808b4d141d71d0c158a71a3d10d982264f +doccontainersize 134192 +doccontainerchecksum 1242f49f1499b798977eace516487543c23dca36471b1e49a2b1377a84083f40a3d5a2e316624f8ac458b61c2cfa406fc3580209c9629739dabaa2fa35e6b806 +docfiles size=44 + RELOC/doc/latex/spie/README details="Readme" + RELOC/doc/latex/spie/article.pdf details="Template and guidelines for authors" + RELOC/doc/latex/spie/article.tex + RELOC/doc/latex/spie/mcr3b.eps +runfiles size=10 + RELOC/bibtex/bib/spie/report.bib + RELOC/bibtex/bst/spie/spiebib.bst + RELOC/tex/latex/spie/spie.cls +catalogue-contact-home http://public.lanl.gov/kmh/spie/ +catalogue-ctan /macros/latex/contrib/spie +catalogue-license lppl +catalogue-topics confproc +catalogue-version 3.25 + +name spix +category Package +revision 55933 +shortdesc Yet another TeX compilation tool: simple, human readable, no option, no magic +longdesc SpiX offers a way to store information about the compilation +longdesc process for a tex file inside the tex file itself. Just write +longdesc the commands as comments in the tex files, and SpiX will +longdesc extract and run those commands. Everything is stored in the tex +longdesc file (so that you are not missing some piece of information +longdesc that is located somewhere else), in a human-readable format (no +longdesc need to know SpiX to understand it). +depend spix.ARCH +containersize 2276 +containerchecksum c8128bbee3f0dfbc009e74e46427c394a2c354eea63fc1abe6efd426aee8d0c091fefceb14de8ad97556686be702552a3ef5a10d540a57c1e8bcdaae9be8f22b +doccontainersize 1551716 +doccontainerchecksum 3a1fc0f7186c0662271a5add51f08f0173c9d0f80cac632a484a30c8774fb3c4385edea2ecf184b2898d20431b7944c0a2e863bc4242ee4270b67eb4d8f3573d +docfiles size=391 + texmf-dist/doc/man/man1/spix.1 + texmf-dist/doc/man/man1/spix.man1.pdf + texmf-dist/doc/support/spix/CHANGELOG.md + texmf-dist/doc/support/spix/LICENSE.txt + texmf-dist/doc/support/spix/README.md details="Readme" + texmf-dist/doc/support/spix/spix.pdf details="Package documentation" +runfiles size=2 + texmf-dist/scripts/spix/spix.py +catalogue-contact-bugs https://framagit.org/spalax/spix/issues +catalogue-contact-repository https://framagit.org/spalax/spix +catalogue-contact-support https://framagit.org/spalax/spix/issues +catalogue-ctan /support/spix +catalogue-license gpl3+ +catalogue-topics compilation +catalogue-version 1.1.0 + +name spix.aarch64-linux +category Package +revision 55933 +shortdesc aarch64-linux files of spix +containersize 336 +containerchecksum d0a4a5afbb272a44802ec7b80f557636a5403cc8d0685e8760d7b19b477cc73d5bee0f9cf854dc2e5e7a28c809e306d91d55e8ba7ac86716f692e1f6950f1691 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/spix + +name spix.amd64-freebsd +category Package +revision 55933 +shortdesc amd64-freebsd files of spix +containersize 336 +containerchecksum 67895ade972295441af9a0995796f0f5ccd8a55439b450e87c1a00c2c3bafddfc7983684013739e9b1bfc684f31eebc631707b65eaa345237058d1de4521e54f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/spix + +name spix.amd64-netbsd +category Package +revision 55933 +shortdesc amd64-netbsd files of spix +containersize 336 +containerchecksum 3cdc3bc0c79a3302bf8415e89f149e1ecf8e42d22f72cbf518769f7e11a3bac59630dadf85ac7beb48ef7103b18807afcdf9bd29697ae831cb7dcf774c281cdb +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/spix + +name spix.armhf-linux +category Package +revision 55933 +shortdesc armhf-linux files of spix +containersize 336 +containerchecksum a23a4c8c6c2e00b4f3c10ed36856de2978c0bd9d2ba350a46ac2583fa9cf3371caefc3bf4270a840592876549778eb6b7253ce1e7b02de547d0ec2ee5b51662c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/spix + +name spix.i386-cygwin +category Package +revision 55933 +shortdesc i386-cygwin files of spix +containersize 336 +containerchecksum e4b3b7618037e3b059b5dd8cae38b63a927bd6d6b96f731ef29547a165fc3a4839caf3badc635ace2388c33c192f99ebb63e16ecbc0e7c54aca023a2d626ecc0 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/spix + +name spix.i386-freebsd +category Package +revision 55933 +shortdesc i386-freebsd files of spix +containersize 336 +containerchecksum 3a2d2b8b219f08097dc83445c81baea6f9d9128ea5fda37a1162e9e9531ed364f84c2abdb70835c2c7c31931e9ae9c5166e59323d81e33a0257f3cc2c12c6a22 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/spix + +name spix.i386-linux +category Package +revision 55933 +shortdesc i386-linux files of spix +containersize 336 +containerchecksum 2ae124fff8455bed4aa2bb8c9710ce1594fab1c35f5f936216151ac7d3baef58b3ba6eaf27f04835458549ac91474ef8071853bfb6a7b21301a106fa1a798400 +binfiles arch=i386-linux size=1 + bin/i386-linux/spix + +name spix.i386-netbsd +category Package +revision 55933 +shortdesc i386-netbsd files of spix +containersize 336 +containerchecksum 60b08135ef5bb96bf9812dbd493cb84def42c7128dc7755314ddf10754165783ca261a6c216b645794878df4051b188f6888a175e1de7cd1a288c199c8dc1e27 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/spix + +name spix.i386-solaris +category Package +revision 55933 +shortdesc i386-solaris files of spix +containersize 336 +containerchecksum 568ff24759455ed0980333d8cbcd1fa22d701340bd641cad011a187991a5d15213c9e7c3bdde84767b26badf7174d44a27b7c4bf87d3844767f0eb85d42bd1fe +binfiles arch=i386-solaris size=1 + bin/i386-solaris/spix + +name spix.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of spix +containersize 340 +containerchecksum 76622469db2378a73c26c998cb7b8fec2f7aa2ca5d21351df7fccc2ad35f2c219116c02c3a3325166dcb288142783006ca20fd3e9d52e90d28be1d846111bd06 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/spix + +name spix.win32 +category Package +revision 55933 +shortdesc win32 files of spix +containersize 676 +containerchecksum a696c18d8e1ebdbdb0765c12f7861c71ce909f70d60e2fd864f22f2ff412f28b966d4793044c21547ab9183923da132b8f2b69ca67f69362ac969adba5c3b4bb +binfiles arch=win32 size=1 + bin/win32/spix.exe + +name spix.x86_64-cygwin +category Package +revision 55933 +shortdesc x86_64-cygwin files of spix +containersize 340 +containerchecksum 6798f20ce2e1db404818266f80c5be15ad0005f71be66e9dd76616d24d844e331eebcccbf427f7a0052280d4247edde807afcbed0ecc891f045760ba38567973 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/spix + +name spix.x86_64-darwinlegacy +category Package +revision 55933 +shortdesc x86_64-darwinlegacy files of spix +containersize 348 +containerchecksum 91bf31208ab46719c5102ddd9ae0e35a7f1ac6c00dd749f5f8f0d2c74fa187eb217398f0f3a275ad7919d9f5c6159e95899fee5bf27fe52d8a9fee03d7782415 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/spix + +name spix.x86_64-linux +category Package +revision 55933 +shortdesc x86_64-linux files of spix +containersize 340 +containerchecksum 87621b27cd001da84a9329df834fb63eb5c58c31a891ffecd98512965ade42556d043c87abbbeb3c57794191b40497ef8ea0f4f35c9cd053d37c5b6918e90f72 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/spix + +name spix.x86_64-linuxmusl +category Package +revision 55933 +shortdesc x86_64-linuxmusl files of spix +containersize 344 +containerchecksum f71510169f0d34c17778b8fed1e869c5ae517f4245f3fa1c9fa10ca93ace03a7fc26bfaa4d1c7f7e414a9fcf3eba83bc0d5381829189d7d27c83611b139249ee +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/spix + +name spix.x86_64-solaris +category Package +revision 55933 +shortdesc x86_64-solaris files of spix +containersize 336 +containerchecksum aef7d42d50bb56786cd37c1ee3410c54b04ca879b6a396057fee89b6d29ee1261a6f72d949a65be2e5335f667558af8548e1841e26f0f1a8abe6f94daaf76095 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/spix + +name splines +category Package +revision 15878 +shortdesc MetaPost macros for drawing cubic spline interpolants +relocated 1 +longdesc This is a small package of macros for creating cubic spline +longdesc interpolants in MetaPost or Metafont. Given a list of points +longdesc the macros can produce a closed or a relaxed spline joining +longdesc them. Given a list of function values y_j at x_j, the result +longdesc would define the graph of a cubic spline interpolating function +longdesc y=f(x), which is either periodic or relaxed. +containersize 2416 +containerchecksum f040046978cf51bbaf3347406e224fe60a85f449c1fac1703e7a2d936140b099c14ffd488ebe4c3d932b35a8380f943250734a054ea5165ed26b2be712ad577c +doccontainersize 87904 +doccontainerchecksum 08532f43fb7aac979e78d30f27f36047d7b70733ef6bdd65d26a40e6818f2b73852d4a6ac5eeae8cd29fc86e1630d2ba068b9707666f66a13e2090a6da81ac25 +docfiles size=27 + RELOC/doc/metapost/splines/README details="Package README" + RELOC/doc/metapost/splines/splines.pdf details="Package documentation" +srccontainersize 6084 +srccontainerchecksum dd23ff4702f70ca2f29950e2e1c915dc96f9b0951b6f00ff94371ff80fe60f20d8de517a9d9157db9518cb51f96f1f52b8cd7f080af7760c926c5d29649844e0 +srcfiles size=5 + RELOC/source/metapost/splines/splines.dtx + RELOC/source/metapost/splines/splines.ins +runfiles size=3 + RELOC/metapost/splines/splines.mp + RELOC/metapost/splines/testsplines.mp +catalogue-ctan /graphics/metapost/contrib/macros/splines +catalogue-license lppl1.3 +catalogue-topics graphics-mpost +catalogue-version 0.2 + +name splitbib +category Package +revision 15878 +shortdesc Split and reorder your bibliography +relocated 1 +longdesc This package enables you to split a bibliography into several +longdesc categories and subcategories. It does not depend on BibTeX: any +longdesc bibliography may be split and reordered. +containersize 4852 +containerchecksum 2936732fdcebff683e240e139ba6e1e4268dc72e427bd30af0590cc3dd7dcc8dd49eaf6f007e549efc5c429fbcea2b37f9e68040d1ffb023162c571341abdb40 +doccontainersize 143484 +doccontainerchecksum df266ae77aaccf91b08931c57b01a9eefffe6a469c4cc549ce41640dc9c9041676539e1302aecfed88d19baef277f507ede8ba6f794dae6ea4745b1338459d14 +docfiles size=42 + RELOC/doc/latex/splitbib/README details="Readme" + RELOC/doc/latex/splitbib/splitbib.pdf details="Package documentation" +srccontainersize 11124 +srccontainerchecksum 72a8da016f943df7f5e2d7cb05cd1a64e222ec0c3be784ac21e6aa5f571c9e76cc3e8a5716444aa1033d5127af8d82df5cd632a884fe17f08c55e08d38956e3c +srcfiles size=14 + RELOC/source/latex/splitbib/splitbib.dtx + RELOC/source/latex/splitbib/splitbib.ins +runfiles size=7 + RELOC/tex/latex/splitbib/splitbib.sty +catalogue-ctan /macros/latex/contrib/splitbib +catalogue-license lppl +catalogue-topics cite-supp +catalogue-version 1.17 + +name splitindex +category Package +revision 39766 +shortdesc Unlimited number of indexes +longdesc SplitIndex consists of a LaTeX package, splitidx, and a small +longdesc program, splitindex. The package may be used to produce one +longdesc index or several indexes. Without splitindex (for example, +longdesc using the index package), the number of indexes is limited by +longdesc the number of TeX's output streams. But using the program you +longdesc may use even more than 16 indexes: splitidx outputs only a +longdesc single file \jobname.idx and the program splits that file into +longdesc several raw index files and calls your favorite index processor +longdesc for each of the files. +depend splitindex.ARCH +containersize 8084 +containerchecksum 858033eadfa82b4e40a388356f64002370a5f4fc2c95565eae90c68373f708a3c9827fc4e0ba8094659382aba4e5925cba86632733b15d85ea6a82f73ace8737 +doccontainersize 442388 +doccontainerchecksum c8dd92e955fcccf71b412d9750fff7b6f214e929ddf194a6496a79a146f4837af3d773ed3f2303546727cc4a8fb9d5366dd75b64d3877e6121ce20315f71997a +docfiles size=114 + texmf-dist/doc/latex/splitindex/README details="Readme" + texmf-dist/doc/latex/splitindex/install.txt + texmf-dist/doc/latex/splitindex/manifest.txt + texmf-dist/doc/latex/splitindex/splitidx.pdf details="Package documentation" + texmf-dist/doc/man/man1/splitindex.1 + texmf-dist/doc/man/man1/splitindex.man1.pdf +srccontainersize 24252 +srccontainerchecksum 8aa928bdf6f2e8fb6274c1fe8d0b4567d03a1c6ffbd078726bf6a36ff1bdab981d5150cf0250602a64d2a0a9be92695fdd399c04d041b7a9579a7d3a71910151 +srcfiles size=29 + texmf-dist/source/latex/splitindex/install.sh + texmf-dist/source/latex/splitindex/splitidx.dtx + texmf-dist/source/latex/splitindex/splitidx.ins + texmf-dist/source/latex/splitindex/splitindex.c + texmf-dist/source/latex/splitindex/splitindex.java +runfiles size=10 + texmf-dist/scripts/splitindex/splitindex.pl + texmf-dist/scripts/splitindex/splitindex.tlu + texmf-dist/scripts/splitindex/splitindex_main.tlu + texmf-dist/tex/generic/splitindex/splitindex.tex + texmf-dist/tex/latex/splitindex/splitidx.sty +catalogue-ctan /macros/latex/contrib/splitindex +catalogue-license lppl +catalogue-topics index-multi index +catalogue-version 1.2c + +name splitindex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of splitindex +containersize 344 +containerchecksum 597ab388e3f37d66dbf85d87bc91fdf971b420e57b1ccb93ec00c7529fe9c6d52a53835beee9463ef11a5585099cdfe7fdb2c04cc7864560f4b4cdf99d22d9b2 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/splitindex + +name splitindex.amd64-freebsd +category Package +revision 29688 +shortdesc amd64-freebsd files of splitindex +containersize 344 +containerchecksum 8b447ca0f0e43024ca4f260b6d1283900d1bff78fe57cb065c41f3904b8f08394fa8f827f2c00d858053938c5931bb2c0ff21c9d6d9c7679bed390f1084a19df +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/splitindex + +name splitindex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of splitindex +containersize 344 +containerchecksum 83a09488ff6497aa999f5e2d1aa7159936aad38cf3f17587d11bedb07eec46eae0c057148632421178c066b4836b981d7d539276f757f76d224803f0d906feb6 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/splitindex + +name splitindex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of splitindex +containersize 344 +containerchecksum 0d16db703cae4444d0b6dd35aa531bfb586fd143f3fb45a05f348e69a3369633e535df12bd105a91fa3287f7b9e3192a181f5a029243788634af0c15a8b47911 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/splitindex + +name splitindex.i386-cygwin +category Package +revision 29688 +shortdesc i386-cygwin files of splitindex +containersize 340 +containerchecksum 990bfdf7e2965d28bf2c514e839e0aa2fa5b26177eccab3542e608924f6e3a11b26aa86084b970de2da1b92ee88959dc172079939e07a5cbefff841502930e19 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/splitindex + +name splitindex.i386-freebsd +category Package +revision 29688 +shortdesc i386-freebsd files of splitindex +containersize 344 +containerchecksum e9fcd4be380388deb9fd13513cc72d58335b58741a806473692d9c7f0a6579a5f9669affe69a147b2a28a5569a6bc00ada4c598dfcd788c4be582270417b15a8 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/splitindex + +name splitindex.i386-linux +category Package +revision 29688 +shortdesc i386-linux files of splitindex +containersize 344 +containerchecksum 662f86f37cc1a41fce855794fcd169d75cdd7fc18524303a85705f2ba21d1426cef67d784afa7db7d934012ea4060544c70c605621f364a5c4ce7eb09e34d5d9 +binfiles arch=i386-linux size=1 + bin/i386-linux/splitindex + +name splitindex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of splitindex +containersize 344 +containerchecksum b9db07b1826e5864b8616beec23c0ece8b77ea372cbeba8139229fe4eab59b53dde420741cbbdfc1261537110c330d3d1f9b94e22b063633cd50320fc37a8008 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/splitindex + +name splitindex.i386-solaris +category Package +revision 29688 +shortdesc i386-solaris files of splitindex +containersize 344 +containerchecksum 4106ce2ecce161de57f735c43064548ea149ab47c9003444662d0ee75a362106a30ea1ff7d9384b3d4e2209c5c10c24ed5dddc3fd6a8ef269aa23d155b320188 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/splitindex + +name splitindex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of splitindex +containersize 344 +containerchecksum b227fea95ecb2454184a2aa0c132c5bf653d55b2e0face61166aa03521832a45a47953349c34ffcf66db26d80edc951434a7d406ca27d224dfb12a205b32d35e +binfiles arch=universal-darwin size=1 + bin/universal-darwin/splitindex + +name splitindex.win32 +category Package +revision 15404 +shortdesc win32 files of splitindex +containersize 688 +containerchecksum 1d66c05e385fac18df6db7acbf7317e2307c4a55712ef2ba8cbba27fe276ad3138f6b792623bca2e444beeddf075cc09f3fb7c8ba9745e567816106d4ec304d0 +binfiles arch=win32 size=1 + bin/win32/splitindex.exe + +name splitindex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of splitindex +containersize 344 +containerchecksum c86305ce621b51d715eb6b92f68db26ea8446d4cb7aa63383af8815d66a07eb01443e3c46a33cb99c072350685a7391c3052f430fbe67cd6b49fb76dce00ff23 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/splitindex + +name splitindex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of splitindex +containersize 352 +containerchecksum 58c14e0ad695635361ab4f0da2b038bd6ef2aad87eeed38703bbc47b8bbce44c9ec4429b374f9f8d4bcad8fa3579724be27e895a511137da85417be94f8145bb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/splitindex + +name splitindex.x86_64-linux +category Package +revision 29688 +shortdesc x86_64-linux files of splitindex +containersize 344 +containerchecksum 345192d4510da26ff6d9cb2353f892e7111d02d16918d0ebd310ee554d076e35cb96074066fa50baf341c11dc267ff8666e78b9eaa7e86a75e754e68a91a1371 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/splitindex + +name splitindex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of splitindex +containersize 348 +containerchecksum 1d5a03d064c499d4b5386142837d70e7a173fc8266088a9bfec24469452b7241fdf00457599886b514c96342105426b81580f445c15d8c8f91ee2d7a767c9305 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/splitindex + +name splitindex.x86_64-solaris +category Package +revision 29688 +shortdesc x86_64-solaris files of splitindex +containersize 344 +containerchecksum f2433a6b7d94c71d65363e8394024cc5bf90eddff96ecc7b99b52d9e1a8702048fed6ed9b695d99b6837810520627da0e71853106f9537ce25cd73b0198bd57d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/splitindex + +name spot +category Package +revision 22408 +shortdesc Spotlight highlighting for Beamer +relocated 1 +longdesc The package allows dramatic highlighting of words and phrases +longdesc by painting shapes around them. It is chiefly intended for use +longdesc in Beamer presentations, but it can be used in other document +longdesc classes as well. +containersize 2520 +containerchecksum 95a7bf0a9e04e7157fe27499a7a2d2bf3e8d86f284e9c2d150c40b5efc1786d4820af20ccde7f5b649a775d7a13d25a78347138a200335fc0b9e4165dd3e1f0e +doccontainersize 233272 +doccontainerchecksum 26ee8b13622a46078e8199c818dc353801af36afdbf67707a6942202fa458e7cbe9a000a4ea022d0dc4ec6ddb3a63c6adadf240cf207778765e47b2db636ea5b +docfiles size=64 + RELOC/doc/latex/spot/README details="Readme" + RELOC/doc/latex/spot/spot.pdf details="Package documentation" +srccontainersize 9784 +srccontainerchecksum 96438aef76ade4df7f4f49d819f96792a28dcf3a0f5e50498f854c047a7754accd31d679d034886eafbfd32c0d4eb941e8a888a1ea94fb332b8b48912d0f673f +srcfiles size=9 + RELOC/source/latex/spot/spot.dtx + RELOC/source/latex/spot/spot.ins +runfiles size=2 + RELOC/tex/latex/spot/spot.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/spot +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.1 + +name spotcolor +category Package +revision 15878 +shortdesc Spot colours for pdfLaTeX +relocated 1 +longdesc This package provides procedures for using spot colours in +longdesc LaTeX documents and the generated pdf files. Predefined +longdesc templates for PANTONE and HKS colour spaces are included but +longdesc new ones can easily be defined. +containersize 8944 +containerchecksum 6748982e7007323414dd8ca5f1ede105bb2bfd0b0f8d2f83c8731926628c094c8c08f0cf4ddadbaa209e182f8af83ed6fb761142ecbb97371752473b33c44ffa +doccontainersize 57820 +doccontainerchecksum 4055f42161bd45dee74974358eabda875e9a3d62690fec0486748cd7fe974af133c24e56bcfd240c6928334fd9c7e1e6a6935c45b974760b41f7ce080d44f568 +docfiles size=99 + RELOC/doc/latex/spotcolor/README details="Readme" + RELOC/doc/latex/spotcolor/readme.pdf details="Package documentation" + RELOC/doc/latex/spotcolor/readme.tcp + RELOC/doc/latex/spotcolor/readme.tex +runfiles size=27 + RELOC/tex/latex/spotcolor/spotcolor.sty + RELOC/tex/latex/spotcolor/spotcolorhks.tex + RELOC/tex/latex/spotcolor/spotcolorpantone.tex +catalogue-ctan /macros/latex/contrib/spotcolor +catalogue-license lppl +catalogue-topics colour +catalogue-version 1.2 + +name spreadtab +category Package +revision 50147 +shortdesc Spreadsheet features for LaTeX tabular environments +relocated 1 +longdesc The package allows the user to construct tables in a manner +longdesc similar to a spreadsheet. The cells of a table have row and +longdesc column indices and these can be used in formulas to generate +longdesc values in other cells. +containersize 21928 +containerchecksum e662188fc94f3f31031238a9b20ce617b01adb65dfcb5ba00cc0f90555a151957747e9b24803436d0815528d945e3a65684ebffc04dc5de2552989c81bc80846 +doccontainersize 1089920 +doccontainerchecksum e7e1184c6d5013a5f991325e1f47b509b90f32022530281263bd5b1c0d9c9082a872f9b6ece3198ccdca555e1187546762c8fb4fcec9a75f72894f6fb49825c4 +docfiles size=343 + RELOC/doc/latex/spreadtab/README details="Readme" + RELOC/doc/latex/spreadtab/spreadtab-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/spreadtab/spreadtab-en.tex + RELOC/doc/latex/spreadtab/spreadtab-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/spreadtab/spreadtab-fr.tex +runfiles size=25 + RELOC/tex/latex/spreadtab/spreadtab.sty +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-license lppl1.3c +catalogue-topics table +catalogue-version 0.5 + +name spverbatim +category Package +revision 15878 +shortdesc Allow line breaks within \verb and verbatim output +relocated 1 +longdesc LaTeX's \verb macro treats its argument as an unbreakable unit +longdesc of text. This can lead to poor typesetting, especially when the +longdesc argument is long. The spverbatim package provides an \spverb +longdesc macro that is analogous to \verb and an spverbatim environment +longdesc that is analogous to verbatim with the difference being that +longdesc \spverb and spverbatim allow LaTeX to break lines at space +longdesc characters. +containersize 1196 +containerchecksum 0b26e941f77264ae2db7cdcf2c4459c26601f6079e0bad24a3ea0edbd22157c324bbf50426a794655dc1aee710092cd9b662bb401838186e42657fcef5c1121f +doccontainersize 101460 +doccontainerchecksum 245825f18ae835b984eb6474b927a579f80b6c6feefbfe02a53f8b7ea5a48023e1bdb43b39f090afe4ae42937d053cbebfec6ff97d7732d754287401a95fc641 +docfiles size=30 + RELOC/doc/latex/spverbatim/README details="Readme" + RELOC/doc/latex/spverbatim/spverbatim.pdf details="Package documentation" +srccontainersize 3612 +srccontainerchecksum 23f8eb04b0debee1c9babc4ee6720740a4e64a28969365c27c96113cd777e0565b19d8f6db233470cc600733b1831463881d86eaf4b4119cf60bd3fbbf3d0597 +srcfiles size=4 + RELOC/source/latex/spverbatim/spverbatim.dtx + RELOC/source/latex/spverbatim/spverbatim.ins +runfiles size=1 + RELOC/tex/latex/spverbatim/spverbatim.sty +catalogue-ctan /macros/latex/contrib/spverbatim +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 1.0 + +name sr-vorl +category Package +revision 39529 +shortdesc Class for Springer books +relocated 1 +longdesc This package provides a LaTeX class and templates for books to +longdesc be published at Springer Gabler Research, Springer Vieweg +longdesc Research, Springer Spektrum Research, Springer VS Research, or +longdesc Springer VS Forschung. It may be used to produce monographs in +longdesc different formats and "several-authors-books" fitting the +longdesc conditions of the aforementioned publishers. +containersize 3720 +containerchecksum 135186b501bcf2a9b338ff13e330401ae3ca39db4225f639549cc929991d2177804b44ddbaec805ec1cd56982b140cec4625e7564fad7f4de89d2c2e06ad60d8 +doccontainersize 447828 +doccontainerchecksum a65dc0b7a12b5435d753aeeaca7643747c94463835cf1706e042710272cc0eef66d4f5f827c99034f9126bcbbf7e41293196f9ee29ed3f9961b9af27e2879747 +docfiles size=115 + RELOC/doc/latex/sr-vorl/README details="Readme" + RELOC/doc/latex/sr-vorl/backmatter_sr-vorl.tex + RELOC/doc/latex/sr-vorl/frontmatter_sr-vorl.tex + RELOC/doc/latex/sr-vorl/hauptdatei_sr-vorl.tex + RELOC/doc/latex/sr-vorl/mainmatter_sr-vorl.tex + RELOC/doc/latex/sr-vorl/sr-vorl.pdf details="Package documentation" +srccontainersize 17404 +srccontainerchecksum f41d126426035fa0d1cf6564d9eb4966618a1c8f805bca3097a5f7e72c62a12c9d8e39b6830f9b1e356940b67bd99803e869d849949854a1a17da4c7ba971195 +srcfiles size=17 + RELOC/source/latex/sr-vorl/sr-vorl.dtx + RELOC/source/latex/sr-vorl/sr-vorl.ins +runfiles size=3 + RELOC/tex/latex/sr-vorl/sr-vorl.cls +catalogue-ctan /macros/latex/contrib/springer/sr-vorl +catalogue-license lppl1.3 +catalogue-topics book-pub class +catalogue-version 1.1 + +name srbook-mem +category Package +revision 45818 +catalogue serbian-book +shortdesc Support for use of memoir in Serbian +relocated 1 +longdesc The package provides a number of commands for adjusting memoir +longdesc output to Serbian style. +containersize 1084 +containerchecksum 5cae41da74957078b2b0ed38c9fa4186006f24abca804b879641b4bff5324950b1a59296c5733fcadd2ef05661ff1dba8cd7d9a2c5f9e2a5c6bc1e6d993ff218 +doccontainersize 263956 +doccontainerchecksum 5e06fb85b3398cc65372fc0c82eaae3d807c6c908eedbfa8f4ea593ea6213790c3fe9c5142990a9b7d4c267ed01cd61aef4fb950a0c2b51424b0ef5e1f2aa520 +docfiles size=76 + RELOC/doc/latex/srbook-mem/README details="Readme" + RELOC/doc/latex/srbook-mem/SerbianBookMem.pdf details="Package documentation" + RELOC/doc/latex/srbook-mem/SerbianBookMem.tex + RELOC/doc/latex/srbook-mem/Test.pdf + RELOC/doc/latex/srbook-mem/Test.tex + RELOC/doc/latex/srbook-mem/TestLight.pdf + RELOC/doc/latex/srbook-mem/TestLight.tex +runfiles size=1 + RELOC/tex/latex/srbook-mem/srbook-mem.sty +catalogue-ctan /macros/latex/contrib/srbook-mem +catalogue-license gpl +catalogue-topics book-pub serbian + +name srcltx +category Package +revision 15878 +shortdesc Jump between DVI and TeX files +relocated 1 +longdesc Provides a \special insertion into generated .dvi files +longdesc allowing one to jump from the .dvi file to the .tex source and +longdesc back again (given a .dvi viewer that supports this, such as Yap +longdesc or xdvi version 22.38 or later). This was originally written by +longdesc Aleksander Simonic, the author of the WinEdt shell. +containersize 2344 +containerchecksum 2edad3f8b56fafc034d94a3e3240190a8f4f1a1054c9b81d6dd9fa5426abaec0b29118f7bbec909ffc3534693b8941fd4e44b6670d7dbcb852fa3a056ba63fad +doccontainersize 109796 +doccontainerchecksum 1f8428bccf142790a3221d470fb66dcfba40552da0d8aeb9cab62732c5a5ee0af3a565774e29822ebcf0c1e4d7a2bfffc61a0944b762ffbb7ff4e8901a61ab48 +docfiles size=33 + RELOC/doc/latex/srcltx/README details="Package Readme" + RELOC/doc/latex/srcltx/srcltx.pdf details="Package documentation" +srccontainersize 8676 +srccontainerchecksum 497aa5f6bd5dcbb354a4abf74bf8276898148f42083a0657ac9dfeb4374038b4f8003b3ace3b4d65b2a08334c1cccafda371e8546def7e44f823212c257d42a3 +srcfiles size=8 + RELOC/source/latex/srcltx/srcltx.dtx + RELOC/source/latex/srcltx/srcltx.ins +runfiles size=3 + RELOC/tex/latex/srcltx/srcltx.sty + RELOC/tex/latex/srcltx/srctex.sty +catalogue-ctan /macros/latex/contrib/srcltx +catalogue-license pd +catalogue-topics debug-supp +catalogue-version 1.6 + +name srcredact +category Package +revision 38710 +shortdesc A tool for redacting sources +longdesc This package provides a tool to keep a master source, +longdesc consisting of different "chunks" intended for different +longdesc audiences. The tool allows to extract the versions intended for +longdesc different audiences and to incorporate the changes made in any +longdesc of these versions into the master document. This work was +longdesc commissioned by the Consumer Financial Protection Bureau, +longdesc United States Treasury. +depend srcredact.ARCH +containersize 4240 +containerchecksum 9e11ed88fbbfc0130f43fdecd8fb0b3eecbdf50eb33bdca57bd34c860cdfe84dcd560371efba4cb261e65aaf4577306f478d1c43ed89152e7e21fd627eb7328d +doccontainersize 384380 +doccontainerchecksum dba9916acf75e800af1e581b4276e82bfe4c421a500a400773354766b37849568c1f19752a75983374ca41f793903f9776423888215f00376db1e0f5f3b3dbbc +docfiles size=203 + texmf-dist/doc/man/man1/srcredact.1 + texmf-dist/doc/man/man1/srcredact.man1.pdf + texmf-dist/doc/support/srcredact/Makefile + texmf-dist/doc/support/srcredact/README details="Readme" + texmf-dist/doc/support/srcredact/srcredact.pdf details="Package documentation" + texmf-dist/doc/support/srcredact/srcredact.pod + texmf-dist/doc/support/srcredact/srcredact.tex + texmf-dist/doc/support/srcredact/twain-edited.tex + texmf-dist/doc/support/srcredact/twain1-default.pdf + texmf-dist/doc/support/srcredact/twain1-default.tex + texmf-dist/doc/support/srcredact/twain1-nobonds.pdf + texmf-dist/doc/support/srcredact/twain1-nobonds.tex + texmf-dist/doc/support/srcredact/twain1-uppercase.pdf + texmf-dist/doc/support/srcredact/twain1-uppercase.tex + texmf-dist/doc/support/srcredact/twain1.tex + texmf-dist/doc/support/srcredact/twain2-default.pdf + texmf-dist/doc/support/srcredact/twain2-default.tex + texmf-dist/doc/support/srcredact/twain2-nobonds.pdf + texmf-dist/doc/support/srcredact/twain2-nobonds.tex + texmf-dist/doc/support/srcredact/twain2-uppercase.pdf + texmf-dist/doc/support/srcredact/twain2-uppercase.tex + texmf-dist/doc/support/srcredact/twain2.tex +runfiles size=3 + texmf-dist/scripts/srcredact/srcredact.pl +catalogue-ctan /support/srcredact +catalogue-license gpl2 +catalogue-topics cond-comp +catalogue-version 1.0 + +name srcredact.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of srcredact +containersize 344 +containerchecksum b563ab8959bcd2366a3b7ff70f11477e7d53b45ef6336b9c29fdbdc1e783d135624c4fae65e420f9cba27bfcd98164151b9e6950bb2d30214d0c8110a0d6d35c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/srcredact + +name srcredact.amd64-freebsd +category Package +revision 38710 +shortdesc amd64-freebsd files of srcredact +containersize 344 +containerchecksum e477b056b20dac19f0e2c88e0ee7fde8eee45c4b7c27a959c3183f2a10e1153b625a6684e105f6e70a665558ac4a924f152c04211c8a8ba69a048a8797fe2c43 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/srcredact + +name srcredact.amd64-netbsd +category Package +revision 38710 +shortdesc amd64-netbsd files of srcredact +containersize 340 +containerchecksum befafe2b95b307f4b1d89a7f8e438647c687f8d68d87dc8a45ad0d940df3568d80f62ab954157285c5e7564764fa31eb52870b22270a79a4404a722f73eac442 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/srcredact + +name srcredact.armhf-linux +category Package +revision 38710 +shortdesc armhf-linux files of srcredact +containersize 340 +containerchecksum a176b2669baf38b90c0aaa94d1322acbce24ec2bf360333d3e381b4f5f6c1f8fbdc481d786d7eaa199bd30eed65a962cb6e88e4a1cbc1416f2f992f11dbfe781 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/srcredact + +name srcredact.i386-cygwin +category Package +revision 38710 +shortdesc i386-cygwin files of srcredact +containersize 336 +containerchecksum 63f21d722a509af23985fd49074bb9bbd395a5d9f0e7adf077f7d5b6121de3df953d176cd7ba9b22887a29b14482ea4429d90f5ce7778ea0286bc012c72ed0b7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/srcredact + +name srcredact.i386-freebsd +category Package +revision 38710 +shortdesc i386-freebsd files of srcredact +containersize 344 +containerchecksum e92e58127e0b79ba6ba24c5d1f33e399656eda9284f351768e27308471b9a78b2ccc93c89ea89424e028f02d6cc28f55f63d2cfe3858e0fd2a715e7bba68b6a4 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/srcredact + +name srcredact.i386-linux +category Package +revision 38710 +shortdesc i386-linux files of srcredact +containersize 344 +containerchecksum 94d72ff5f3aab525c3b6d0b82ac9622dff36e493be6859e3821fcaece59b3ae3b371d2ee53e76c2c7cec7201402f3c5867e1dce6e1f62ba2249ab8abe3c2cfd5 +binfiles arch=i386-linux size=1 + bin/i386-linux/srcredact + +name srcredact.i386-netbsd +category Package +revision 38710 +shortdesc i386-netbsd files of srcredact +containersize 340 +containerchecksum 5e7db6ee44e9b3ebc27588a09d8acf8b79642769ebd6bc390b57ee426297bf47c9c4d695a71deeabecb6ab2d080ef7ba9f732c250a7fbf46cb7ac5aab9ad6dc0 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/srcredact + +name srcredact.i386-solaris +category Package +revision 38710 +shortdesc i386-solaris files of srcredact +containersize 340 +containerchecksum b9093f8c774fd1700049e3756d505ea1115dd252a67983e9855ff8703afe506015d65391ac38ed3d82257ff77de11d936b69f57c4519c9be7a498e22821d3688 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/srcredact + +name srcredact.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of srcredact +containersize 344 +containerchecksum f3414f56e093b5330d56f0b3d0cf671c23a97436491fba775125716f2df73a15dbef705356d91e5bd1f4a76871c3c5fc64d22aaaf4dd86ec749231a430dc3cb2 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/srcredact + +name srcredact.win32 +category Package +revision 38710 +shortdesc win32 files of srcredact +containersize 684 +containerchecksum 8736d8d3d36f4e2d321f913831f4ecd28ecf4c97d1f2d425f04b5777d1b5a871d31b7105f8fb4fbee41d1599b5c2b15364dd4fa4b9443b6d3cb8d1c44ee85668 +binfiles arch=win32 size=1 + bin/win32/srcredact.exe + +name srcredact.x86_64-cygwin +category Package +revision 38710 +shortdesc x86_64-cygwin files of srcredact +containersize 344 +containerchecksum ef21610e47c5d5a1437cc79570c36c69d48a3bd905a6c2c9d988b07073b16114cac5ae807b6b6f383ae1bcfa61ca6627b7862116761c5b5de0ce58218f479259 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/srcredact + +name srcredact.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of srcredact +containersize 348 +containerchecksum f290920edd5998ee675a2161dd6718f65e8c00e7946096598eba1de3910a9c51b55d2114f15057e159411baec954205858e6af2f344d17b101cb3bfffa452df4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/srcredact + +name srcredact.x86_64-linux +category Package +revision 38710 +shortdesc x86_64-linux files of srcredact +containersize 340 +containerchecksum 1f3b9e8d45d1fd51e575b87e17adb46d197642237e35a9697fbe7ea7eb76a76eee6089903bb84d3868148b5ab175650001da8eb1c9b61a647f63a64b00c4af5f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/srcredact + +name srcredact.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of srcredact +containersize 348 +containerchecksum 86e5e28a205e68127261213365ffbeba0b3898492d013f8535baa7e9aab012062eb1eabd64237d77882fba442d771b905c5c6a8cd2a2d65fa687197f6364c39b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/srcredact + +name srcredact.x86_64-solaris +category Package +revision 38710 +shortdesc x86_64-solaris files of srcredact +containersize 340 +containerchecksum 21737c264b7ce73832e659a4c2beb7e7410937e8c6a90666d49a0c32a37774c98fd237d1d4e008efb6f0cd80a4122d0ff01171f28c77da2f3c31ffde752b1090 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/srcredact + +name srdp-mathematik +category Package +revision 58734 +shortdesc Typeset Austrian SRDP in mathematics +relocated 1 +longdesc This package provides basic commands for the defined formats of +longdesc the Austrian sRDP (Standardisierte Reife- und Diplomprufung) in +longdesc mathematics. Furthermore, it includes ways to implement answers +longdesc in the tex file which can optionally be displayed in the pdf +longdesc file, and it offers a way to vary the answers in order to +longdesc create different groups (e. g. for tests) easily. +containersize 7456 +containerchecksum c6a37c722985c09980fb6487f46603a2b7475ce1d2bda4ab9eaea36c106fe19146b6b961e9406b76aea626ef0d09babb25193340a87bf4fc428c0a3314e04f34 +doccontainersize 147900 +doccontainerchecksum 7886d6da7321cfc19f364b730a54def58250138d81538a74512416a8adceea299a36b517a0ac0b660041b85a9f9f2ef2125d613f3efc899b73d6717d69d81163 +docfiles size=57 + RELOC/doc/latex/srdp-mathematik/README.txt details="Readme" + RELOC/doc/latex/srdp-mathematik/srdp-mathematik.pdf details="Package documentation" + RELOC/doc/latex/srdp-mathematik/srdp-mathematik.tex +runfiles size=18 + RELOC/tex/latex/srdp-mathematik/srdp-mathematik.sty +catalogue-ctan /macros/latex/contrib/srdp-mathematik +catalogue-license lppl1.3c +catalogue-topics exam maths std-conform +catalogue-version 1.9.0 + +name sseq +category Package +revision 31585 +shortdesc Typesetting spectral sequence charts +relocated 1 +longdesc The package provides commands to draw spectral sequence +longdesc diagrams, providing facilities for clipping and arranging +longdesc multiple symbols so that they do not overlap. The package is +longdesc built using pgf, and shares that systems large demands for TeX +longdesc system memory. Its geometric commands are based on a turtle +longdesc graphics model, and control structures such as loops and +longdesc conditionals are available. +containersize 8160 +containerchecksum 25d3d2af859d8ce83f7449470be02bc4bc77b8ac49c4e10f49fdca51b0a85488f01cbf5f826b07fba12806c932125a35197be2c7bcc330f9b6f51a331fbc77c6 +doccontainersize 215196 +doccontainerchecksum 3b5516fa412aa19fe8f3d23706b3046b6af698e8307db32cb895fb13eb876032c5c3fc908a69f0e18efc2ac5802a95957246d58248dd05e1fe25409d46a8bd20 +docfiles size=53 + RELOC/doc/latex/sseq/sseq.pdf details="Package documentation" +srccontainersize 16176 +srccontainerchecksum b86247430a144ef73ce271b904096368291a6581de3e1c7627d38751c102256e77d82963d86956d9a9dc8e2fa16aa6b8b0a15dd02b4468cda88f70b19e856711 +srcfiles size=17 + RELOC/source/latex/sseq/sseq.dtx + RELOC/source/latex/sseq/sseq.ins +runfiles size=10 + RELOC/tex/latex/sseq/sseq.sty +catalogue-ctan /macros/latex/contrib/sseq +catalogue-license lppl +catalogue-topics maths +catalogue-version 2.01 + +name sslides +category Package +revision 32293 +shortdesc Slides with headers and footers +relocated 1 +longdesc The class provides a variant of the LaTeX standard slides +longdesc class, in which the user may add headers and footers to the +longdesc slide. +containersize 1116 +containerchecksum 5809b9968b16d35d5f76f185687c683512883942f8ff3537a7dafef3a76e5fb017a4bed36dfd102fb5edb93648148861c78f6f7e93aaea8c5cbc8113c05278a7 +doccontainersize 22356 +doccontainerchecksum 4a0fde19b43390f80d6d671933ba51b0be854d774d6f35f3e8fb33653ef7784df85871dc4fdec03f2c734e819af6c1098e8be152e0bd42740ec2f4ae53c38f4a +docfiles size=12 + RELOC/doc/latex/sslides/land-sample-slide.pdf details="Sample (landscape) slides" + RELOC/doc/latex/sslides/land-sample-slide.tex + RELOC/doc/latex/sslides/port-sample-slide.pdf + RELOC/doc/latex/sslides/port-sample-slide.tex +runfiles size=1 + RELOC/tex/latex/sslides/sslides.cls +catalogue-ctan /macros/latex/contrib/sslides +catalogue-license lppl1.3 +catalogue-topics presentation + +name stack +category Package +revision 15878 +shortdesc Tools to define and use stacks +relocated 1 +longdesc The package provides a small set of commands to implement +longdesc stacks independently of TeX's own stack. As an example of how +longdesc the stacks might be used, the documentation offers a small +longdesc "relinput" package that implements the backbone of the import +longdesc package. +containersize 1812 +containerchecksum 897ca71e1a8531485d9807743e4549a994f5e6e22dbb9a958466d4bfc7fb1b4579af0d7ef701146b8142c394fcbfca70bfdf28779530e487a0ec868c77985c23 +srccontainersize 4104 +srccontainerchecksum d10c0b9555df5643d266cfcbc51970cb7d606c80053225e4c3891b49f59fd9831c89f8be97d41e3e70b8855defb2af709190631e71a470a061959486162d5ed1 +srcfiles size=4 + RELOC/source/latex/stack/stack.dtx + RELOC/source/latex/stack/stack.ins +runfiles size=2 + RELOC/tex/latex/stack/relinput.sty + RELOC/tex/latex/stack/stack.sty +catalogue-ctan /macros/latex/contrib/stack +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.00 + +name stackengine +category Package +revision 53843 +shortdesc Highly customised stacking of objects, insets, baseline changes, etc +relocated 1 +longdesc The package provides a versatile way to stack objects +longdesc vertically in a variety of customizable ways. A number of +longdesc useful macros are provided, all of which make use of the +longdesc stackengine core. +depend listofitems +containersize 5064 +containerchecksum 13ce66f2a3335c62db5bb2872596480572e106e1cd594d8b787684f1fd3ea4b57ee015737e7e5dd053b526bf52b6ad20a84f4d4db49d9b888f55ad5b637894c4 +doccontainersize 339824 +doccontainerchecksum 8a32a4a5e75023ab1750a6e85cb23b919f44ee838d24c0883fd4b8945d57a9e3a91b456503642544676eb4100de68a0ba4547d8e2c45a0ae90b3ab7b36acaf6d +docfiles size=102 + RELOC/doc/latex/stackengine/README details="Readme" + RELOC/doc/latex/stackengine/stackengine.pdf details="Package documentation" + RELOC/doc/latex/stackengine/stackengine.tex +runfiles size=4 + RELOC/tex/latex/stackengine/stackengine.sty +catalogue-ctan /macros/latex/contrib/stackengine +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 4.01 + +name stage +category Package +revision 53915 +shortdesc A LaTeX class for stage plays +relocated 1 +longdesc Stage.cls is a LaTeX class for creating plays of any length in +longdesc a standard manuscript format for production and submission. +containersize 2824 +containerchecksum 3e59c8794ba63b4ed5ff0a0e99fadfba4371a93ec2076a818dc0c84b00b5f555ddd09caa89128ef52f59bf888609a045c522adb24417040a321407e4d7d2b679 +doccontainersize 153640 +doccontainerchecksum f047288e15f2ded21da1a6e1288951f3ff480c60b31dd3e43aff030e8a3fb111d87ce13b5f98a07e03123ac4f0a81e3661dfb433b389f088e8318134a5677712 +docfiles size=41 + RELOC/doc/latex/stage/README details="Package README" + RELOC/doc/latex/stage/stage-documentation.pdf details="Package documentation" + RELOC/doc/latex/stage/stage-documentation.tex +srccontainersize 420 +srccontainerchecksum f69a495f6e49bdccef6d69e5740bb548d1f5f10cedc86865a16e4110dc78ce32176e96432fedb8247500357099e6ce3e88e6de71ab1510e470b4c32ca40d7f18 +srcfiles size=1 + RELOC/source/latex/stage/Makefile +runfiles size=2 + RELOC/tex/latex/stage/stage.cls +catalogue-contact-bugs https://github.com/rrthomas/stage/issues +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-license lppl1.3 +catalogue-topics drama-script +catalogue-version 1.01 + +name standalone +category Package +revision 56291 +shortdesc Compile TeX pictures stand-alone or as part of a document +relocated 1 +longdesc A class and package is provided which allows TeX pictures or +longdesc other TeX code to be compiled standalone or as part of a main +longdesc document. Special support for pictures with beamer overlays is +longdesc also provided. The package is used in the main document and +longdesc skips extra preambles in sub-files. The class may be used to +longdesc simplify the preamble in sub-files. By default the preview +longdesc package is used to display the typeset code without margins. +longdesc The behaviour in standalone mode may adjusted using a +longdesc configuration file standalone.cfg to redefine the standalone +longdesc environment. +containersize 11884 +containerchecksum d9fd4051c18908b69041805c4a4c631a14d8e3c35b6161ca6731962f2ad0d343db3d1dcf6a8e012d6a96971b3e0a0f00204634ac9c836b3bd28c0a96e132d946 +doccontainersize 270488 +doccontainerchecksum 5e1696289be97de97c4c68cf81933bd15ed542e3943b9a718d8f04c8ea16b9a31ddeaf5360e45d356110c7e6663872f354302cb07ca38bf0900380f575ea76bd +docfiles size=68 + RELOC/doc/latex/standalone/README details="Readme" + RELOC/doc/latex/standalone/standalone.pdf details="Package documentation" +srccontainersize 38568 +srccontainerchecksum a921b3956908990f216f5d8da1449e7a47c4d74f34284f2c58b7c3cfa601c57de880d78e3680947349f3b5d20e0366f020d70b7c1348a9a374d2d0b57b58ef9c +srcfiles size=47 + RELOC/source/latex/standalone/standalone.dtx + RELOC/source/latex/standalone/standalone.ins +runfiles size=18 + RELOC/tex/latex/standalone/standalone.cfg + RELOC/tex/latex/standalone/standalone.cls + RELOC/tex/latex/standalone/standalone.sty + RELOC/tex/plain/standalone/standalone.tex +catalogue-also combine docmute includex newclude +catalogue-contact-bugs https://sourceforge.net/p/standalone/tickets/ +catalogue-contact-home https://sourceforge.net/p/standalone/ +catalogue-contact-repository https://sourceforge.net/p/standalone/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/standalone +catalogue-license lppl1.3 +catalogue-topics subdocs class +catalogue-version 1.3a + +name stanli +category Package +revision 54512 +shortdesc TikZ Library for Structural Analysis +relocated 1 +longdesc stanli is a STructural ANalysis LIbrary based on PGF/TikZ. +longdesc Creating new assignments and tests, at university, is usually a +longdesc very time-consuming task, especially when this includes drawing +longdesc graphics. In the field of structural engineering, those small +longdesc structures are a key part for teaching. This package permits to +longdesc create such 2D and 3D structures in a very fast and simple way. +containersize 9720 +containerchecksum 2273ba6dc99762490a0cd7af09edd5c4a511ace7317e62874535946bafa69c14f02663afa21fbc54753d1b5d3884858ae93e4790de7dfe4a829e4cc4ecf4e004 +doccontainersize 461048 +doccontainerchecksum e4405c8903478ad2b8a5c524666e2fd4aa99dc34dae2d15ace5de7ca4713a6964467f18d4ae2b73c02316bc7d0e51f12e82312544e2e44d50eb3e4ca51671ebc +docfiles size=153 + RELOC/doc/latex/stanli/README.md details="Readme" + RELOC/doc/latex/stanli/stanli.pdf details="Package documentation" + RELOC/doc/latex/stanli/stanli.tex +runfiles size=20 + RELOC/tex/latex/stanli/stanli.sty +catalogue-ctan /graphics/pgf/contrib/stanli +catalogue-license gpl lppl1.3 +catalogue-topics pgf-tikz engineering +catalogue-version 3.0 + +name starfont +category Package +revision 19982 +shortdesc The StarFont Sans astrological font +relocated 1 +longdesc The package contains StarFontSans and StarFontSerif, two +longdesc public-domain astrological fonts designed by Anthony I.P. Owen, +longdesc and the appropriate macros to use them with TeX and LaTeX. The +longdesc fonts are supplied both in the original TrueType Format and in +longdesc Adobe Type 1 format. +execute addMap starfont.map +containersize 179532 +containerchecksum 1f45f97813f5e51b45e1cbd3246b877aad823895a4b087294d0754c560db5796d8b4f9d09972b5c90c4c569db82a2d70bd1c39a9dfe6e1fcc4e0deeceb44f876 +doccontainersize 494536 +doccontainerchecksum def94e1e2995e20e282d9319f763ddbc5e152a48c18ba98ef4d168e69a9a6deb5d7d87923a3259553f990f2da73c78929858852c6165acf7a94a6010382f786b +docfiles size=138 + RELOC/doc/fonts/starfont/COPYING + RELOC/doc/fonts/starfont/Makefile + RELOC/doc/fonts/starfont/README details="Readme" + RELOC/doc/fonts/starfont/STRFNSAN.TTF + RELOC/doc/fonts/starfont/STRFNSER.TTF + RELOC/doc/fonts/starfont/starfont.pdf details="Package documentation" + RELOC/doc/fonts/starfont/starfont.tex + RELOC/doc/fonts/starfont/table.pdf +runfiles size=57 + RELOC/fonts/afm/public/starfont/starfont.afm + RELOC/fonts/afm/public/starfont/strfnser.afm + RELOC/fonts/map/dvips/starfont/starfont.map + RELOC/fonts/tfm/public/starfont/fstr8x.tfm + RELOC/fonts/tfm/public/starfont/fsts8x.tfm + RELOC/fonts/type1/public/starfont/starfont.pfb + RELOC/fonts/type1/public/starfont/strfnser.pfb + RELOC/tex/latex/starfont/starfont.sty +catalogue-ctan /fonts/ps-type1/starfont +catalogue-license pd +catalogue-topics font astrology font-specialist font-ttf +catalogue-version 1.2 + +name startex +category Package +revision 35718 +shortdesc An XML-inspired format for student use +relocated 1 +longdesc A TeX format designed to help students write short reports and +longdesc essays. It provides the user with a suitable set of commands +longdesc for such a task. It is also more robust than plain TeX and +longdesc LaTeX. +containersize 10172 +containerchecksum 840a60057867ea8439c0497eb22dbd8ca8c8a2375887d74ea383a8a356d5de34a389db3df5f4c41082683d1108a0f88cb31c25e4c3a56a27e45b8ff5b62da4b5 +doccontainersize 511988 +doccontainerchecksum d2076580253889e51a07ebd094daeb10a9ebbf2d9154d288460a84d7b2a581b849d1433a442d8eb911a9d2110e87ae4eb0628567b50eac95cf9c6866d3c34b3f +docfiles size=186 + RELOC/doc/otherformats/startex/INSTALL + RELOC/doc/otherformats/startex/README details="Readme" + RELOC/doc/otherformats/startex/README.TEXLIVE + RELOC/doc/otherformats/startex/guide.pdf details="Beginner's guide" + RELOC/doc/otherformats/startex/ideas.pdf details="TUG'96 paper" + RELOC/doc/otherformats/startex/startex.bib + RELOC/doc/otherformats/startex/startex.pdf details="Documented source code" +srccontainersize 25196 +srccontainerchecksum af1bdf22db048334823bdd18fd87fd8729c0bb4cb729ee53271f7e0b9ec4cea243840657e1a8ebba61728755d022d37495ef40f9962ce8e203d402b71d2d45cd +srcfiles size=26 + RELOC/source/startex/startex/startex.dtx + RELOC/source/startex/startex/startex.ins +runfiles size=17 + RELOC/makeindex/startex/stxglo.ist + RELOC/makeindex/startex/stxind.ist + RELOC/tex/startex/a4-article.stx + RELOC/tex/startex/article.stx + RELOC/tex/startex/ifi-article.stx + RELOC/tex/startex/ifi-artikkel.stx + RELOC/tex/startex/startex.lan + RELOC/tex/startex/startex.tex +catalogue-ctan /macros/startex +catalogue-license pd +catalogue-topics format +catalogue-version 1.04 + +name startlatex2e +category Package +revision 56809 +shortdesc A guide to getting started with LaTeX2e +relocated 1 +longdesc "Getting Started with LaTeX2e" is a short document aimed at +longdesc helping complete novices with LaTeX create a document, format +longdesc the text, then compile it into PostScript or pdf format. It +longdesc contains information on writing the preamble, formatting the +longdesc text, creating tables and inserting figures. +containersize 496 +containerchecksum e8946fbe61c9c52a3fe5cc7b6b4adfdd8a90312fc146f331f0dff774e819ed1a789ad047c2587816b7b8568f4a520b2c0600a4b39ff3586254bfb6f15db28b79 +doccontainersize 243844 +doccontainerchecksum 767c9defb727f206c8e2090a1501e8435bf77859b6546690c7a8d1cb6481ae4c576346449fe760423eaf126858e521b020404cbe84ab2f02c95f07e1af8f93c5 +docfiles size=83 + RELOC/doc/latex/startlatex2e/README details="Readme" + RELOC/doc/latex/startlatex2e/StartLaTeX2e.pdf details="The document itself" + RELOC/doc/latex/startlatex2e/StartLaTeX2e.tex +catalogue-ctan /info/startlatex2e +catalogue-license lppl1.3 +catalogue-topics tut-latex + +name statex +category Package +revision 20306 +shortdesc Statistics style +relocated 1 +longdesc A package defining many macros for items of significance in +longdesc statistical presentations. An updated, but incompatible, +longdesc version of the package is available: statex2. +containersize 4884 +containerchecksum 66fb0e346ddd4902ac98a90fb7d0b0193d8c8166aa30774dca1f5b6007a3e19c3b98e25bbc88abc379e199720b6c9a2c73caabbc515db2a54b2a8b437c5b270a +doccontainersize 177212 +doccontainerchecksum 9851bb7e2e9af03affa1f4b5750817543be9e985e02d06ca4908ee1ebcf0eea2b8d75a25cefdde3492efc52d86be5bde6fc2f6a99f935c183cf3fc9041ee0e25 +docfiles size=45 + RELOC/doc/latex/statex/statex-example.pdf details="Package documentation (by example)" + RELOC/doc/latex/statex/statex-example.tex +runfiles size=4 + RELOC/tex/latex/statex/statex.sty +catalogue-ctan /macros/latex/contrib/statex +catalogue-license lppl +catalogue-topics statistics +catalogue-version 1.6 + +name statex2 +category Package +revision 23961 +shortdesc Statistics style +relocated 1 +longdesc The package defines many macros for items of significance in +longdesc statistical presentations. It represents a syntax-incompatible +longdesc upgrade of statex. +containersize 5296 +containerchecksum dc823a25cdc70bac79c69e721feba69883a99e9e0a5b211398ff0682af4fe4bb1c4a7feeaecfc7c12d2df876b8aab6be0cb8868df8b8eaaa10850042615226a7 +doccontainersize 177524 +doccontainerchecksum 6f0b45577bd4383359dbeb592c3f9e3c1a66d1b2540cf6027ffaa20f8f644316cf2feb0e585f42801b43b529632efdea52fc2c83f2a6d9347cd443da27259646 +docfiles size=45 + RELOC/doc/latex/statex2/statex2-example.pdf details="Package documentation (by example)" + RELOC/doc/latex/statex2/statex2-example.tex +runfiles size=5 + RELOC/tex/latex/statex2/statex2.sty +catalogue-ctan /macros/latex/contrib/statex2 +catalogue-license lppl +catalogue-topics statistics +catalogue-version 2.1 + +name statistics +category Package +revision 52212 +shortdesc Compute and typeset statistics tables and graphics +relocated 1 +longdesc The 'statistics' package can compute and typeset statistics +longdesc like frequency tables, cumulative distribution functions +longdesc (increasing or decreasing, in frequency or absolute count +longdesc domain), from the counts of individual values, or ranges, or +longdesc even the raw value list with repetitions. It can also compute +longdesc and draw a bar diagram in case of individual values, or, when +longdesc the data repartition is known from ranges, an histogram or the +longdesc continuous cumulative distribution function. You can ask +longdesc 'statistics' to display no result, selective results or all of +longdesc them. Similarly 'statistics' can draw only some parts of the +longdesc graphs. Every part of the generated tables or graphics is +longdesc customizable. +containersize 8416 +containerchecksum b0f2c288a57cc64c72bd2b862cd6c40b62e7404c4733b25af64b43d008b277417bc72a4398734e5620e6d2b9f97b401c1d54ee69b0a1ad5947ecba798ecfe0b2 +doccontainersize 439308 +doccontainerchecksum 9d3f7b94c6d144b89c1c947645e4e071933b402e350ef6405d533bdb0a6aed650b215a135976410fbd3a68ceb0fdaf6c877f2d7435680f8c70f3a2209c0808bc +docfiles size=117 + RELOC/doc/latex/statistics/LICENSE + RELOC/doc/latex/statistics/README.md details="Readme" + RELOC/doc/latex/statistics/statistics.pdf details="Package documentation" +srccontainersize 23728 +srccontainerchecksum a0ea1a189cda9472bf87996d4c191ab84ea824f3034a66d8e23982a1824aa78221fa368b3c8bd696ce58b65280599617c5ccfe4ef97fab8227148e90cc7f3e4e +srcfiles size=32 + RELOC/source/latex/statistics/statistics.dtx + RELOC/source/latex/statistics/statistics.ins +runfiles size=15 + RELOC/tex/latex/statistics/statistics.sty +catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/statistics/issues +catalogue-contact-development https://gitlab.com/frnchfrgg-latex/statistics +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-license gpl3+ +catalogue-topics maths statistics +catalogue-version 2.2 + +name statistik +category Package +revision 20334 +shortdesc Store statistics of a document +relocated 1 +longdesc The package counts the numbers of pages per chapter, and stores +longdesc the results in a separate file; the format of the file is +longdesc selectable. +containersize 2164 +containerchecksum 2d2455227b5db15235763c4fa677b549380d66f2485d1d53c2c607f96bb4b4a176ae9868419351f691f3efc3117e6e54be3317040f2a6f8d1d105cb86709f86a +doccontainersize 94864 +doccontainerchecksum 88b28820b5d2a4a304c26658e27da7d673bf430a6be3ddf46f5eb3103abb7e8d20b03e30b65b88583960f9cf3dbebb9088330621b99e1eb9f2f28c0684638240 +docfiles size=28 + RELOC/doc/latex/statistik/sta_cvs.tex + RELOC/doc/latex/statistik/sta_mytable.tex + RELOC/doc/latex/statistik/sta_tab.tex + RELOC/doc/latex/statistik/sta_textable.tex + RELOC/doc/latex/statistik/sta_xml.tex + RELOC/doc/latex/statistik/statistik.pdf details="Package documentation" +srccontainersize 4544 +srccontainerchecksum d37bf82f0830e14c500af27146a1ae1a80bf4aee3bb272429c7c2351366e2fdb51b7ba16ab6459b7cbb8abe2d37870b7bcb3fa43582e588c7cbbb889ac1e3859 +srcfiles size=5 + RELOC/source/latex/statistik/statistik.dtx + RELOC/source/latex/statistik/statistik.ins +runfiles size=2 + RELOC/tex/latex/statistik/statistik.sty +catalogue-ctan /macros/latex/contrib/statistik +catalogue-license gpl +catalogue-topics doc-mgmt +catalogue-version 0.03 + +name statmath +category Package +revision 46925 +shortdesc A LaTeX package for simple use of statistical notation +relocated 1 +longdesc The package offers anumber of notational conventions to be used +longdesc in applied and theoretical papers in statistics which are +longdesc currently lacking in the popular amsmath package. The seasoned +longdesc LaTeX user will see that the provided commands are simple, +longdesc almost trivial, but will hopefully offer less cluttered +longdesc preambles as well as a welcome help for novice users. +containersize 1712 +containerchecksum 128532a808c4f8cae9ad03d19d9f70673427f9335d298d4840776ecf59a78b0051de64093f00510ef34c61d3e2ab900d4494f800eff8183a4c8451bf90a1424f +doccontainersize 205828 +doccontainerchecksum 14754afa159041c359c85d31d8cf3483789b02a7057f59f6772455ff7dfbaaf81e793db3bbdb8d1a67e25de7a00f32c22089e2cc908cb1c2e0abf6a17eceb7fc +docfiles size=52 + RELOC/doc/latex/statmath/README details="Readme" + RELOC/doc/latex/statmath/statmath.pdf details="Package documentation" +srccontainersize 3544 +srccontainerchecksum 67329fcd533335927638057bdafd76c3db6e49abbc23c63027623397ab35450ba811acf61c5b3ef299077cc92a14df3f0d66076a8f8a2d009ef9e4828ebb533e +srcfiles size=5 + RELOC/source/latex/statmath/statmath.dtx + RELOC/source/latex/statmath/statmath.ins +runfiles size=2 + RELOC/tex/latex/statmath/statmath.sty +catalogue-contact-bugs https://github.com/ankargren/statmath/issues +catalogue-contact-home https://github.com/ankargren/statmath +catalogue-ctan /macros/latex/contrib/statmath +catalogue-license lppl1.3 +catalogue-topics statistics +catalogue-version 0.1 + +name staves +category Package +revision 15878 +shortdesc Typeset Icelandic staves and runic letters +relocated 1 +longdesc This package contains all the necessary tools to typeset the +longdesc "magical" Icelandic staves plus the runic letters used in +longdesc Iceland. Included are a font in Adobe Type 1 format and LaTeX +longdesc support. +execute addMap icelandic.map +containersize 121996 +containerchecksum f6a1aea97a3293ffb514ccc526faa71ea5ea3ab32990da8725cc3ff998d15a2909001976d9705ba13110fbde869001bec2f286e58c05f1fe31f345ecd5882482 +doccontainersize 230488 +doccontainerchecksum b839484325cc6d06a407ea685dd705b3616d1e87f22d4a625c20dbc507647b602417a085328f9ba886766ee0fca2516da397c742198569477bc1009271a4db23 +docfiles size=74 + RELOC/doc/fonts/staves/README details="Package README" + RELOC/doc/fonts/staves/staves.pdf details="Package documentation" + RELOC/doc/fonts/staves/symbols.pdf details="List of symbols" +srccontainersize 3748 +srccontainerchecksum 9dbe40efcd1699cc9267b739bc1b182fc0e5dc23ae52d19ea89c1742b815e4ea9b7612e4fb80aeb83f3d9206ab408cb0ca3fcb99c85883fb86f89f3ac26f0b5d +srcfiles size=4 + RELOC/source/latex/staves/staves.dtx + RELOC/source/latex/staves/staves.ins +runfiles size=34 + RELOC/fonts/map/dvips/staves/icelandic.map + RELOC/fonts/tfm/public/staves/icelandic.tfm + RELOC/fonts/type1/public/staves/icelandic.pfb + RELOC/tex/latex/staves/staves.sty +catalogue-ctan /language/staves +catalogue-license lppl +catalogue-topics font font-type1 font-rune icelandic + +name stdclsdv +category Package +revision 15878 +shortdesc Provide sectioning information for package writers +relocated 1 +longdesc The stdclsdv package is designed for package writers who need +longdesc to know what sectioning divsions are provided by the document's +longdesc class. It also provides a version of \CheckCommand that sets a +longdesc flag rather than printing a warning. +containersize 1500 +containerchecksum 88d8abc04d10f029a9ce0fe9025497afe3eba3dcc300631fd37baa8174bdec8dff44fbde07599ac8dd6635be27294c359c77178690a4e6c97f41d15f9d2abbd4 +doccontainersize 127960 +doccontainerchecksum 8321d823ffa159071f66d87d38fa38ba3af03f6c69999a041d765f0fda8549547da4b8eae86efce82109679284dd912f2c5494b5ef6e76c73c467cf4eb87aa2b +docfiles size=38 + RELOC/doc/latex/stdclsdv/README details="Readme" + RELOC/doc/latex/stdclsdv/stdclsdv.pdf details="Package documentation" +srccontainersize 5384 +srccontainerchecksum 4a9987bcbb557b7923c6c2a5c58dd117fd7b56f58b3df55154514075b68bc59a8928fdfe275dbf328ab2bd5b6608b193ad5ff07b95e7bfd2d79eb632837e5469 +srcfiles size=5 + RELOC/source/latex/stdclsdv/stdclsdv.dtx + RELOC/source/latex/stdclsdv/stdclsdv.ins +runfiles size=1 + RELOC/tex/latex/stdclsdv/stdclsdv.sty +catalogue-ctan /macros/latex/contrib/stdclsdv +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.1a + +name stdpage +category Package +revision 15878 +shortdesc Standard pages with n lines of at most m characters each +relocated 1 +longdesc For translations, proofreading, journal contributions etc. +longdesc standard pages are used. Those standard pages consist of a +longdesc fixed number of lines and characters per line. This package +longdesc produces pages with n lines of at most m characters each. For +longdesc instance the German "Normseite": 60 lines of 30 characters +longdesc each. +containersize 2076 +containerchecksum a3835f211b744dd88e0238a01f0a5f960305f7eb92bbd9e3437474971173e66c84cbee1d5ab3f1aa1097a262a258b79085fd0d86884bcf3acc4017e7885968cc +doccontainersize 102708 +doccontainerchecksum 77510670a49db00b185e6b502d07bd85f9ca18bedeed86277c7d51abb582f40c793c665f2ab87435e90380f7f6f740b64c937d2171531a419ccc59bed197b90f +docfiles size=31 + RELOC/doc/latex/stdpage/README details="Package README" + RELOC/doc/latex/stdpage/stdpage-test.tex + RELOC/doc/latex/stdpage/stdpage.pdf details="Package documentation" +srccontainersize 7392 +srccontainerchecksum 2973110831807b73409be0082c5aa281b176dbe7174b736cb9703b0c75ee918d1135fdf0513bca5dc48bb996d0067c9201702b76212eb632073f9b0a17b00d55 +srcfiles size=6 + RELOC/source/latex/stdpage/stdpage.dtx + RELOC/source/latex/stdpage/stdpage.ins +runfiles size=2 + RELOC/tex/latex/stdpage/stdpage.sty +catalogue-ctan /macros/latex/contrib/stdpage +catalogue-license lppl1.2 +catalogue-topics geometry +catalogue-version 0.6 + +name stealcaps +category Package +revision 46434 +shortdesc "Steal" small capitals +relocated 1 +longdesc This little package is mainly meant to be used when there is a +longdesc (TrueType or OpenType) font that does not provide real small +longdesc capitals. As a workaround, this package helps to borrow, or +longdesc "steal", the small capitals from another font. This might also +longdesc be useful in the rare case that someone does not like the +longdesc present small capitals, and wants to change them, or likes +longdesc those from another font better. To achieve the borrowing, one +longdesc only needs to load the package and specify the name of the +longdesc target font via the from option. Package dependencies: pgfopts, +longdesc iftex, fontspec. +containersize 1548 +containerchecksum 83296141df9f56d0e38d04bcc948cb4a9b5e308f5a71ef3080b4b53392792d42c142a2cc5b69140233d6f00bcf7804dd1c9dff686df3debbca857d765d7639b7 +doccontainersize 2993416 +doccontainerchecksum 3dd77d36d16fbfaf10993bf36c1a286506b6f80b795c721ce15b7854453af0b6041c586bbb653e7707eb057664885a9027135d199a9df7b748d23c6106175477 +docfiles size=743 + RELOC/doc/latex/stealcaps/README.md details="Readme" + RELOC/doc/latex/stealcaps/stealcaps.pdf details="Package documentation" + RELOC/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip + RELOC/doc/latex/stealcaps/testfile/brelaregular.otf + RELOC/doc/latex/stealcaps/testfile/stealcapitals-test.pdf + RELOC/doc/latex/stealcaps/testfile/stealcapitals-test.tex +srccontainersize 3280 +srccontainerchecksum 8afa57a79a3bb38a04ebb681df5c7976e9ea275e379c00308b6672459ac61ebfe745f16d334beb4d3627438487446f638bd00788d60fd68b22f0026a7a87d4d8 +srcfiles size=3 + RELOC/source/latex/stealcaps/stealcaps.dtx + RELOC/source/latex/stealcaps/stealcaps.ins +runfiles size=1 + RELOC/tex/latex/stealcaps/stealcaps.sty +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-license lppl1.3c +catalogue-topics font-supp font-use +catalogue-version 1.0 + +name steinmetz +category Package +revision 15878 +shortdesc Print Steinmetz notation +relocated 1 +longdesc The steinmetz package provides a command for typesetting +longdesc complex numbers in the Steinmetz notation used in +longdesc electrotechnics as: <modulus>;<argument or phase inside an +longdesc angle symbol> The package makes use of pict2e. +containersize 1352 +containerchecksum 8ff095645447f9349d2b35ab5ccde72109eddcd85ad3c9de262833320ffcbe94c2fb08df5323c69fc64cdf173ee7193ce2ce887f1c033997455a33f290cf1884 +doccontainersize 102708 +doccontainerchecksum e409db74c366c5f49011a6e21355150e3e97d16c1e3a7fcbf06cc8aa0db2c01288dfc60b3c79e539936077e452c40dd601490be8976c57d01f9a5a88a3798093 +docfiles size=31 + RELOC/doc/latex/steinmetz/README details="Readme" + RELOC/doc/latex/steinmetz/steinmetz-test.tex + RELOC/doc/latex/steinmetz/steinmetz.pdf details="Package documentation" +srccontainersize 4880 +srccontainerchecksum c18fde06e32eb4155921bdd7e4dca7ca108139859545c638f562f82deb6feec904a53870c929482504ddf28858ce5ad3c5abf4148b3bfec0193f260af432ebe9 +srcfiles size=4 + RELOC/source/latex/steinmetz/steinmetz.dtx + RELOC/source/latex/steinmetz/steinmetz.ins +runfiles size=1 + RELOC/tex/latex/steinmetz/steinmetz.sty +catalogue-ctan /macros/latex/contrib/steinmetz +catalogue-license lppl +catalogue-topics engineering maths +catalogue-version 1.0 + +name stellenbosch +category Package +revision 36696 +shortdesc Stellenbosch thesis bundle +relocated 1 +longdesc The usthesis class/style files are provided to typeset reports, +longdesc theses and dissertations that conform to the requirements of +longdesc the Engineering Faculty of the University of Stellenbosch. The +longdesc class file usthesis.cls is based on the standard LaTeX book +longdesc class, while usthesis.sty is a style file to be loaded on top +longdesc of the very powerful memoir class. Both options give identical +longdesc output, but the benefit of the using memoir is that it has many +longdesc additional command and environments for formatting and +longdesc processing of a document. Usthesis is primarily concerned with +longdesc the formatting of the front matter such as the title page, +longdesc abstract, etc. and a decent page layout on A4 paper. It also +longdesc works together with the babel package to provide language +longdesc options to typeset documents in Afrikaans or in English. +longdesc Additional packages are provided for bibliographic matter, note +longdesc title pages, lists of symbols, as well as various graphic files +longdesc for logos. +containersize 703392 +containerchecksum 44b6b8149d4a5aa34ce4bc2e9e66b9bd3a1381b17ffea213b5d0f3afe5b71a62a3b85b4feb6caee4711119fbe27d46b3fcbad2a892e662ee9aac184336677d0a +doccontainersize 3071164 +doccontainerchecksum 6af215b7af75e04bf24ecf9f83c6e4b5a12013a84435e65872d4d84dadfc2231d341153b05f069d9ca927370a686b6642f4654c9924521f5d93d0d1772f48059 +docfiles size=835 + RELOC/doc/latex/stellenbosch/CHANGELOG + RELOC/doc/latex/stellenbosch/README details="Bundle README" language="en" + RELOC/doc/latex/stellenbosch/USbib-1.0.pdf details="USbib package documentation" language="en" + RELOC/doc/latex/stellenbosch/USlogos-4.0.pdf + RELOC/doc/latex/stellenbosch/USnomencl-1.1.pdf details="USnomencl package documentation" language="en" + RELOC/doc/latex/stellenbosch/USsummary-1.0a.pdf details="USsummary package documentation" language="en" + RELOC/doc/latex/stellenbosch/USthesis-5.0.pdf details="Class/package documentation" language="en" + RELOC/doc/latex/stellenbosch/UStitle-1.0.pdf details="UStitle package documentation" language="en" + RELOC/doc/latex/stellenbosch/templates/masters-sample.zip + RELOC/doc/latex/stellenbosch/templates/report-sample.zip +srccontainersize 415320 +srccontainerchecksum a4df0b0c1adc1477be9a8a0d2ee3c03c152e3a2a9c9bff5337accace9562a0b117f2ddd09ecf29bfef99ab3bf0a4a394f8780ef57fb693d98fc269cad2f940d0 +srcfiles size=108 + RELOC/source/latex/stellenbosch/USbib-1.0-scr.zip + RELOC/source/latex/stellenbosch/USlogos-4.0-src.zip + RELOC/source/latex/stellenbosch/USnomencl-1.1-src.zip + RELOC/source/latex/stellenbosch/USsummary-1.0a-src.zip + RELOC/source/latex/stellenbosch/USthesis-5.0-src.zip + RELOC/source/latex/stellenbosch/UStitle-1.0-src.zip +runfiles size=384 + RELOC/bibtex/bst/stellenbosch/usmeg-a.bst + RELOC/bibtex/bst/stellenbosch/usmeg-n.bst + RELOC/bibtex/bst/stellenbosch/ussagus.bst + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW-top.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW-top.pdf + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW.pdf + RELOC/tex/latex/stellenbosch/logos/USEngLogo-top.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo-top.pdf + RELOC/tex/latex/stellenbosch/logos/USEngLogo.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo.pdf + RELOC/tex/latex/stellenbosch/logos/UScrest-BW.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-BW.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest-WM.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-WM.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest-stack.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-stack.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest-top.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-top.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest.eps + RELOC/tex/latex/stellenbosch/logos/UScrest.jpg + RELOC/tex/latex/stellenbosch/logos/USleaf-BW.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-BW.pdf + RELOC/tex/latex/stellenbosch/logos/USleaf-gold.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-gold.pdf + RELOC/tex/latex/stellenbosch/logos/USleaf-grey.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-grey.pdf + RELOC/tex/latex/stellenbosch/logos/USleaf-maroon.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-maroon.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-left.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-left.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-stack.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-stack.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-top.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-top.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-left.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-left.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-stack.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-stack.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-top.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-top.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo.eps + RELOC/tex/latex/stellenbosch/logos/USlogo.pdf + RELOC/tex/latex/stellenbosch/usbib.afr + RELOC/tex/latex/stellenbosch/usbib.eng + RELOC/tex/latex/stellenbosch/usbib.sty + RELOC/tex/latex/stellenbosch/usnomencl.sty + RELOC/tex/latex/stellenbosch/ussummary.sty + RELOC/tex/latex/stellenbosch/usthesis.afr + RELOC/tex/latex/stellenbosch/usthesis.cls + RELOC/tex/latex/stellenbosch/usthesis.eng + RELOC/tex/latex/stellenbosch/usthesis.sty + RELOC/tex/latex/stellenbosch/ustitle.sty +catalogue-ctan /macros/latex/contrib/stellenbosch +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 11a + +name step +category Package +revision 57307 +shortdesc A free Times-like font +relocated 1 +longdesc The STEP fonts are a free Times-like (i.e., Times replacement) +longdesc font family, implementing a design first created for The Times +longdesc of London in 1932. These fonts are meant to be compatible in +longdesc design with Adobe's digitization of Linotype Times, commonly +longdesc used in publishing. The fonts were forked from XITS/STIX and +longdesc Type 1 support is provided for legacy TeX engines. +execute addMap STEP.map +containersize 1296664 +containerchecksum d1f19415ceeefb879a3b4017fa286e5e5806e193fc75159b515fe21a9a6093c6a95d04e2e2e3c7ee457edb8ad717b88043c58727fb3924cb192e05aec12c5c07 +doccontainersize 36316 +doccontainerchecksum bbf49f36bf7588c83e237d58d49ff7453c368cbe7e3a32c431944a2249c0dd75c2c1081d10bc2279e0836384602268ad163ffa3eb7108cd28a6c510a18f001c5 +docfiles size=14 + RELOC/doc/fonts/step/README details="Readme" + RELOC/doc/fonts/step/STEP-COPYING + RELOC/doc/fonts/step/step-fonts.pdf details="Package documentation" + RELOC/doc/fonts/step/step-fonts.tex +runfiles size=901 + RELOC/fonts/enc/dvips/step/a_2b3rql.enc + RELOC/fonts/enc/dvips/step/a_2gbaam.enc + RELOC/fonts/enc/dvips/step/a_3o23m2.enc + RELOC/fonts/enc/dvips/step/a_3ovlch.enc + RELOC/fonts/enc/dvips/step/a_3rxxvm.enc + RELOC/fonts/enc/dvips/step/a_3yxiof.enc + RELOC/fonts/enc/dvips/step/a_47wiac.enc + RELOC/fonts/enc/dvips/step/a_4otmjh.enc + RELOC/fonts/enc/dvips/step/a_4zqdxy.enc + RELOC/fonts/enc/dvips/step/a_574n7u.enc + RELOC/fonts/enc/dvips/step/a_5mws5y.enc + RELOC/fonts/enc/dvips/step/a_5xnggg.enc + RELOC/fonts/enc/dvips/step/a_6auynr.enc + RELOC/fonts/enc/dvips/step/a_6tnupk.enc + RELOC/fonts/enc/dvips/step/a_6vnxue.enc + RELOC/fonts/enc/dvips/step/a_6vypkz.enc + RELOC/fonts/enc/dvips/step/a_7if24z.enc + RELOC/fonts/enc/dvips/step/a_7r4wrj.enc + RELOC/fonts/enc/dvips/step/a_7xgfe3.enc + RELOC/fonts/enc/dvips/step/a_aevneq.enc + RELOC/fonts/enc/dvips/step/a_ahbw5k.enc + RELOC/fonts/enc/dvips/step/a_arx325.enc + RELOC/fonts/enc/dvips/step/a_az2atq.enc + RELOC/fonts/enc/dvips/step/a_bmbu3p.enc + RELOC/fonts/enc/dvips/step/a_bonk4u.enc + RELOC/fonts/enc/dvips/step/a_bt7ykx.enc + RELOC/fonts/enc/dvips/step/a_ccwxvq.enc + RELOC/fonts/enc/dvips/step/a_cqqmgz.enc + RELOC/fonts/enc/dvips/step/a_ds5txz.enc + RELOC/fonts/enc/dvips/step/a_e4dxwh.enc + RELOC/fonts/enc/dvips/step/a_enu25g.enc + RELOC/fonts/enc/dvips/step/a_euweyh.enc + RELOC/fonts/enc/dvips/step/a_f2t6y6.enc + RELOC/fonts/enc/dvips/step/a_f5fqnw.enc + RELOC/fonts/enc/dvips/step/a_fdcm6h.enc + RELOC/fonts/enc/dvips/step/a_ffybip.enc + RELOC/fonts/enc/dvips/step/a_fha2fn.enc + RELOC/fonts/enc/dvips/step/a_fwzjjs.enc + RELOC/fonts/enc/dvips/step/a_g5azuq.enc + RELOC/fonts/enc/dvips/step/a_gbbiod.enc + RELOC/fonts/enc/dvips/step/a_gl5exx.enc + RELOC/fonts/enc/dvips/step/a_gnavrk.enc + RELOC/fonts/enc/dvips/step/a_gwrxgc.enc + RELOC/fonts/enc/dvips/step/a_gwwgis.enc + RELOC/fonts/enc/dvips/step/a_h6i53a.enc + RELOC/fonts/enc/dvips/step/a_hgebca.enc + RELOC/fonts/enc/dvips/step/a_hnzbfi.enc + RELOC/fonts/enc/dvips/step/a_inbzfq.enc + RELOC/fonts/enc/dvips/step/a_jhwfjo.enc + RELOC/fonts/enc/dvips/step/a_jothuw.enc + RELOC/fonts/enc/dvips/step/a_k7io4a.enc + RELOC/fonts/enc/dvips/step/a_kht4zk.enc + RELOC/fonts/enc/dvips/step/a_kv7n4v.enc + RELOC/fonts/enc/dvips/step/a_l3aktj.enc + RELOC/fonts/enc/dvips/step/a_laf3gm.enc + RELOC/fonts/enc/dvips/step/a_lihfjg.enc + RELOC/fonts/enc/dvips/step/a_mjsrji.enc + RELOC/fonts/enc/dvips/step/a_mkgnjm.enc + RELOC/fonts/enc/dvips/step/a_mmhgd3.enc + RELOC/fonts/enc/dvips/step/a_mpy73s.enc + RELOC/fonts/enc/dvips/step/a_msql4j.enc + RELOC/fonts/enc/dvips/step/a_n6yyi4.enc + RELOC/fonts/enc/dvips/step/a_nk3vlt.enc + RELOC/fonts/enc/dvips/step/a_nm3vu2.enc + RELOC/fonts/enc/dvips/step/a_nm54me.enc + RELOC/fonts/enc/dvips/step/a_np5cf6.enc + RELOC/fonts/enc/dvips/step/a_nys5r4.enc + RELOC/fonts/enc/dvips/step/a_oqx7v6.enc + RELOC/fonts/enc/dvips/step/a_owwokh.enc + RELOC/fonts/enc/dvips/step/a_ptac7y.enc + RELOC/fonts/enc/dvips/step/a_q3sghv.enc + RELOC/fonts/enc/dvips/step/a_qboisw.enc + RELOC/fonts/enc/dvips/step/a_r2xedm.enc + RELOC/fonts/enc/dvips/step/a_rcc5m6.enc + RELOC/fonts/enc/dvips/step/a_rcz4zw.enc + RELOC/fonts/enc/dvips/step/a_rgssq4.enc + RELOC/fonts/enc/dvips/step/a_rx4otu.enc + RELOC/fonts/enc/dvips/step/a_smf27h.enc + RELOC/fonts/enc/dvips/step/a_sycgav.enc + RELOC/fonts/enc/dvips/step/a_tatosb.enc + RELOC/fonts/enc/dvips/step/a_tded26.enc + RELOC/fonts/enc/dvips/step/a_timzpm.enc + RELOC/fonts/enc/dvips/step/a_tmbyhw.enc + RELOC/fonts/enc/dvips/step/a_tpegoz.enc + RELOC/fonts/enc/dvips/step/a_tqaent.enc + RELOC/fonts/enc/dvips/step/a_trfpj6.enc + RELOC/fonts/enc/dvips/step/a_u5xlv2.enc + RELOC/fonts/enc/dvips/step/a_uda4d5.enc + RELOC/fonts/enc/dvips/step/a_udjv2r.enc + RELOC/fonts/enc/dvips/step/a_uip2yp.enc + RELOC/fonts/enc/dvips/step/a_uki32u.enc + RELOC/fonts/enc/dvips/step/a_umr5bj.enc + RELOC/fonts/enc/dvips/step/a_vca5tb.enc + RELOC/fonts/enc/dvips/step/a_vmnawy.enc + RELOC/fonts/enc/dvips/step/a_w7y2wc.enc + RELOC/fonts/enc/dvips/step/a_wf6bkr.enc + RELOC/fonts/enc/dvips/step/a_wmhjje.enc + RELOC/fonts/enc/dvips/step/a_wql5wd.enc + RELOC/fonts/enc/dvips/step/a_wzfdme.enc + RELOC/fonts/enc/dvips/step/a_x7ixiy.enc + RELOC/fonts/enc/dvips/step/a_xfoc2o.enc + RELOC/fonts/enc/dvips/step/a_xnivr2.enc + RELOC/fonts/enc/dvips/step/a_xscnug.enc + RELOC/fonts/enc/dvips/step/a_xxqp46.enc + RELOC/fonts/enc/dvips/step/a_xy7ndg.enc + RELOC/fonts/enc/dvips/step/a_y3uxyj.enc + RELOC/fonts/enc/dvips/step/a_ya3dy4.enc + RELOC/fonts/enc/dvips/step/a_ylmzrw.enc + RELOC/fonts/enc/dvips/step/a_zbkikv.enc + RELOC/fonts/map/dvips/step/STEP.map + RELOC/fonts/opentype/public/step/STEP-Bold.otf + RELOC/fonts/opentype/public/step/STEP-BoldItalic.otf + RELOC/fonts/opentype/public/step/STEP-Italic.otf + RELOC/fonts/opentype/public/step/STEP-Regular.otf + RELOC/fonts/tfm/public/step/STEP-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-sup-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tlf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-Bold-tosf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-t3.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-sup-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tlf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-BoldItalic-tosf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-sup-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tlf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-Italic-tosf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-dnom-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-inf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-numr-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-sup-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-sc-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tlf-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t2b--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t2c--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-sc-ts3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-t3--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-t3.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/step/STEP-Regular-tosf-ts3.tfm + RELOC/fonts/type1/public/step/STEP-Bold.pfb + RELOC/fonts/type1/public/step/STEP-BoldItalic.pfb + RELOC/fonts/type1/public/step/STEP-Italic.pfb + RELOC/fonts/type1/public/step/STEP-Regular.pfb + RELOC/fonts/vf/public/step/STEP-Bold-sup-lgr.vf + RELOC/fonts/vf/public/step/STEP-Bold-sup-ly1.vf + RELOC/fonts/vf/public/step/STEP-Bold-sup-t1.vf + RELOC/fonts/vf/public/step/STEP-Bold-sup-t3.vf + RELOC/fonts/vf/public/step/STEP-Bold-tlf-lgr.vf + RELOC/fonts/vf/public/step/STEP-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/step/STEP-Bold-tlf-t1.vf + RELOC/fonts/vf/public/step/STEP-Bold-tlf-t3.vf + RELOC/fonts/vf/public/step/STEP-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/step/STEP-Bold-tosf-lgr.vf + RELOC/fonts/vf/public/step/STEP-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/step/STEP-Bold-tosf-t1.vf + RELOC/fonts/vf/public/step/STEP-Bold-tosf-t3.vf + RELOC/fonts/vf/public/step/STEP-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/step/STEP-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/step/STEP-Italic-sup-lgr.vf + RELOC/fonts/vf/public/step/STEP-Italic-sup-ly1.vf + RELOC/fonts/vf/public/step/STEP-Italic-sup-t1.vf + RELOC/fonts/vf/public/step/STEP-Italic-tlf-lgr.vf + RELOC/fonts/vf/public/step/STEP-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/step/STEP-Italic-tlf-t1.vf + RELOC/fonts/vf/public/step/STEP-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/step/STEP-Italic-tosf-lgr.vf + RELOC/fonts/vf/public/step/STEP-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/step/STEP-Italic-tosf-t1.vf + RELOC/fonts/vf/public/step/STEP-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/step/STEP-Regular-dnom-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-dnom-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-dnom-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-inf-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-inf-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-inf-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-inf-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-numr-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-numr-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-numr-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-numr-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-sup-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-sup-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-sup-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-sup-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-t2c.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-sc-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-t2a.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-t2b.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-t2c.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-sc-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-t1.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-t3.vf + RELOC/fonts/vf/public/step/STEP-Regular-tosf-ts1.vf + RELOC/tex/latex/step/LGRSTEP-Inf.fd + RELOC/tex/latex/step/LGRSTEP-Sup.fd + RELOC/tex/latex/step/LGRSTEP-TLF.fd + RELOC/tex/latex/step/LGRSTEP-TOsF.fd + RELOC/tex/latex/step/LY1STEP-Inf.fd + RELOC/tex/latex/step/LY1STEP-Sup.fd + RELOC/tex/latex/step/LY1STEP-TLF.fd + RELOC/tex/latex/step/LY1STEP-TOsF.fd + RELOC/tex/latex/step/OT1STEP-Inf.fd + RELOC/tex/latex/step/OT1STEP-Sup.fd + RELOC/tex/latex/step/OT1STEP-TLF.fd + RELOC/tex/latex/step/OT1STEP-TOsF.fd + RELOC/tex/latex/step/T1STEP-Inf.fd + RELOC/tex/latex/step/T1STEP-Sup.fd + RELOC/tex/latex/step/T1STEP-TLF.fd + RELOC/tex/latex/step/T1STEP-TOsF.fd + RELOC/tex/latex/step/T2ASTEP-Inf.fd + RELOC/tex/latex/step/T2ASTEP-Sup.fd + RELOC/tex/latex/step/T2ASTEP-TLF.fd + RELOC/tex/latex/step/T2ASTEP-TOsF.fd + RELOC/tex/latex/step/T2BSTEP-Inf.fd + RELOC/tex/latex/step/T2BSTEP-Sup.fd + RELOC/tex/latex/step/T2BSTEP-TLF.fd + RELOC/tex/latex/step/T2BSTEP-TOsF.fd + RELOC/tex/latex/step/T2CSTEP-Inf.fd + RELOC/tex/latex/step/T2CSTEP-Sup.fd + RELOC/tex/latex/step/T2CSTEP-TLF.fd + RELOC/tex/latex/step/T2CSTEP-TOsF.fd + RELOC/tex/latex/step/T3STEP-Inf.fd + RELOC/tex/latex/step/T3STEP-Sup.fd + RELOC/tex/latex/step/T3STEP-TLF.fd + RELOC/tex/latex/step/T3STEP-TOsF.fd + RELOC/tex/latex/step/TS1STEP-TLF.fd + RELOC/tex/latex/step/TS1STEP-TOsF.fd + RELOC/tex/latex/step/TS3STEP-Inf.fd + RELOC/tex/latex/step/TS3STEP-Sup.fd + RELOC/tex/latex/step/TS3STEP-TLF.fd + RELOC/tex/latex/step/TS3STEP-TOsF.fd + RELOC/tex/latex/step/step.sty +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-license ofl +catalogue-topics font-greek font-cyrillic font-multilingual font font-body font-serif font-proportional font-otf font-type1 font-supp font-t1enc +catalogue-version 2.0.5 + +name stepgreek +category Package +revision 57074 +shortdesc A free Times/Elsevier-style Greek font +relocated 1 +longdesc This is a beta version of the STEP Greek font. Only a regular +longdesc face is available at present, though there are plans to add +longdesc italic, bold and bold italic in the future. The font only +longdesc supports LGR in TeX and is meant to serve as a Greek complement +longdesc to a Times-like font such as STEP. The font supports polytonic +longdesc Greek. +execute addMap STEPGreekTest.map +containersize 451624 +containerchecksum c322bb089a887b36c4008502160f0970ff2ca33f05391010adc38c12726b2079085bb1775934597fa1758effee14eda76647b886644971e7c40a451154e446f9 +doccontainersize 2856 +doccontainerchecksum c3f4c2b1ea06a012ba4d5f5ca72faa0a6c1b4ae5c132b17bda0b6bb895f34e555724f93cd791fad8c6ff846027dbedd723f874ae1e772de95c64bf54f5fa0265 +docfiles size=3 + RELOC/doc/fonts/stepgreek/README details="Readme" + RELOC/doc/fonts/stepgreek/STEP-COPYING +runfiles size=137 + RELOC/fonts/enc/dvips/stepgreek/a_ewwrtj.enc + RELOC/fonts/enc/dvips/stepgreek/a_ntxmjl.enc + RELOC/fonts/enc/dvips/stepgreek/a_uo326q.enc + RELOC/fonts/enc/dvips/stepgreek/a_voidup.enc + RELOC/fonts/enc/dvips/stepgreek/a_wkkjyg.enc + RELOC/fonts/map/dvips/stepgreek/STEPGreekTest.map + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/stepgreek/STEPGreekTest-Regular-tosf-sc-lgr.tfm + RELOC/fonts/type1/public/stepgreek/STEPGreekTest-Regular.pfb + RELOC/fonts/vf/public/stepgreek/STEPGreekTest-Regular-sup-lgr.vf + RELOC/fonts/vf/public/stepgreek/STEPGreekTest-Regular-tlf-lgr.vf + RELOC/fonts/vf/public/stepgreek/STEPGreekTest-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/public/stepgreek/STEPGreekTest-Regular-tosf-lgr.vf + RELOC/fonts/vf/public/stepgreek/STEPGreekTest-Regular-tosf-sc-lgr.vf + RELOC/tex/latex/stepgreek/LGRSTEPGreekTest-Sup.fd + RELOC/tex/latex/stepgreek/LGRSTEPGreekTest-TLF.fd + RELOC/tex/latex/stepgreek/LGRSTEPGreekTest-TOsF.fd +catalogue-ctan /fonts/stepgreek +catalogue-license ofl +catalogue-topics font font-greek font-type1 font-supp +catalogue-version 3.0b1 + +name stex +category Package +revision 50489 +shortdesc An Infrastructure for Semantic Preloading of LaTeX Documents +relocated 1 +longdesc The sTeX package collection is a version of TeX/LaTeX that +longdesc allows to markup TeX/LaTeX documents semantically without +longdesc leaving the document format, essentially turning it into a +longdesc document format for mathematical knowledge management (MKM). +containersize 41256 +containerchecksum 43d9cb084f47b1fc2bfab9eb11ec9253fda495f29640d333c00de5d7a5681bf37e0331002938e141679b0ab10345e23d5cbff19cb33fbfa01d25be62295b18dc +doccontainersize 5856944 +doccontainerchecksum 3e936e5905f5dac9a16030af94037398c60b6b79feeb6180af4b7542eb8293a681a213115dd082d9e2df8264771d6d92544e6ec514cf40cf4a136cf74a0a6e51 +docfiles size=1816 + RELOC/doc/latex/stex/cmath/README details="Readme" + RELOC/doc/latex/stex/cmath/cmath.pdf + RELOC/doc/latex/stex/dcm/README details="Readme" + RELOC/doc/latex/stex/dcm/dcm.pdf + RELOC/doc/latex/stex/example/Makefile + RELOC/doc/latex/stex/example/README details="Readme" + RELOC/doc/latex/stex/example/background/Makefile + RELOC/doc/latex/stex/example/background/all.pdf + RELOC/doc/latex/stex/example/background/all.tex + RELOC/doc/latex/stex/example/background/functions.omdoc + RELOC/doc/latex/stex/example/background/functions.pdf + RELOC/doc/latex/stex/example/background/functions.tex + RELOC/doc/latex/stex/example/background/post.tex + RELOC/doc/latex/stex/example/background/pre.tex + RELOC/doc/latex/stex/example/background/reals.pdf + RELOC/doc/latex/stex/example/background/reals.tex + RELOC/doc/latex/stex/example/paper/Makefile + RELOC/doc/latex/stex/example/paper/continuous.pdf + RELOC/doc/latex/stex/example/paper/continuous.tex + RELOC/doc/latex/stex/example/paper/differentiable.pdf + RELOC/doc/latex/stex/example/paper/differentiable.tex + RELOC/doc/latex/stex/example/paper/intro.pdf + RELOC/doc/latex/stex/example/paper/intro.tex + RELOC/doc/latex/stex/example/paper/paper.tex + RELOC/doc/latex/stex/hwexam/README details="Readme" + RELOC/doc/latex/stex/hwexam/hwexam.pdf + RELOC/doc/latex/stex/metakeys/README details="Readme" + RELOC/doc/latex/stex/metakeys/metakeys.pdf + RELOC/doc/latex/stex/mikoslides/README details="Readme" + RELOC/doc/latex/stex/mikoslides/mikoslides.pdf + RELOC/doc/latex/stex/modules/README details="Readme" + RELOC/doc/latex/stex/modules/modules.pdf + RELOC/doc/latex/stex/omdoc/README details="Readme" + RELOC/doc/latex/stex/omdoc/omdoc.pdf + RELOC/doc/latex/stex/omtext/README details="Readme" + RELOC/doc/latex/stex/omtext/omtext.pdf + RELOC/doc/latex/stex/presentation/README details="Readme" + RELOC/doc/latex/stex/presentation/presentation.pdf + RELOC/doc/latex/stex/problem/README details="Readme" + RELOC/doc/latex/stex/problem/problem.pdf + RELOC/doc/latex/stex/rfdmeta/README details="Readme" + RELOC/doc/latex/stex/rfdmeta/certification.pdf + RELOC/doc/latex/stex/rfdmeta/certification.tex + RELOC/doc/latex/stex/rfdmeta/rdfmeta.pdf + RELOC/doc/latex/stex/smglom/README details="Readme" + RELOC/doc/latex/stex/smglom/smglom.pdf + RELOC/doc/latex/stex/smultiling/README details="Readme" + RELOC/doc/latex/stex/smultiling/smultiling.pdf + RELOC/doc/latex/stex/sproof/README details="Readme" + RELOC/doc/latex/stex/sproof/sproof.pdf + RELOC/doc/latex/stex/sref/README details="Readme" + RELOC/doc/latex/stex/sref/book.pdf + RELOC/doc/latex/stex/sref/book.tex + RELOC/doc/latex/stex/sref/idc.pdf + RELOC/doc/latex/stex/sref/idc.tex + RELOC/doc/latex/stex/sref/idcmain.tex + RELOC/doc/latex/stex/sref/scr.pdf + RELOC/doc/latex/stex/sref/scr.tex + RELOC/doc/latex/stex/sref/scrmain.tex + RELOC/doc/latex/stex/sref/sref.pdf + RELOC/doc/latex/stex/statements/README details="Readme" + RELOC/doc/latex/stex/statements/statements.pdf + RELOC/doc/latex/stex/stex/README details="Readme" + RELOC/doc/latex/stex/stex/stex.pdf details="Package documentation" + RELOC/doc/latex/stex/structview/README details="Readme" + RELOC/doc/latex/stex/structview/structview.pdf + RELOC/doc/latex/stex/tikzinput/README details="Readme" + RELOC/doc/latex/stex/tikzinput/tikzinput.pdf + RELOC/doc/latex/stex/workaddress/README details="Readme" + RELOC/doc/latex/stex/workaddress/workaddress.pdf +srccontainersize 495572 +srccontainerchecksum 5cf2ccb75d699f86a095481c4fdefe0d2a981340d3df72c09ddfc4acd3798a35546674eca62c8aea07431b50edd643c514af901d86513a3e5d0d3af9588f24ed +srcfiles size=628 + RELOC/source/latex/stex/bin/Modparse.pm + RELOC/source/latex/stex/bin/README + RELOC/source/latex/stex/bin/checksum + RELOC/source/latex/stex/bin/filedate + RELOC/source/latex/stex/bin/installFonts.sh + RELOC/source/latex/stex/bin/sms + RELOC/source/latex/stex/cmath/cmath.dtx + RELOC/source/latex/stex/cmath/cmath.ins + RELOC/source/latex/stex/dcm/dcm.dtx + RELOC/source/latex/stex/dcm/dcm.ins + RELOC/source/latex/stex/hwexam/hwexam.dtx + RELOC/source/latex/stex/hwexam/hwexam.ins + RELOC/source/latex/stex/lib/bib/extcrossrefs.bib + RELOC/source/latex/stex/lib/bib/extpubs.bib + RELOC/source/latex/stex/lib/bib/kwarccrossrefs.bib + RELOC/source/latex/stex/lib/bib/kwarcpubs.bib + RELOC/source/latex/stex/lib/make/Makefile + RELOC/source/latex/stex/lib/make/Makefile.base.in + RELOC/source/latex/stex/lib/make/Makefile.base.vars + RELOC/source/latex/stex/lib/make/Makefile.in + RELOC/source/latex/stex/lib/make/Makefile.latex.in + RELOC/source/latex/stex/lib/make/Makefile.latex.vars + RELOC/source/latex/stex/lib/make/Makefile.latexml.in + RELOC/source/latex/stex/lib/make/Makefile.latexml.vars + RELOC/source/latex/stex/lib/make/Makefile.subdirs + RELOC/source/latex/stex/lib/make/Makefile.vars + RELOC/source/latex/stex/lib/make/README + RELOC/source/latex/stex/metakeys/metakeys.dtx + RELOC/source/latex/stex/metakeys/metakeys.ins + RELOC/source/latex/stex/mikoslides/mikoslides.dtx + RELOC/source/latex/stex/mikoslides/mikoslides.ins + RELOC/source/latex/stex/modules/modules.dtx + RELOC/source/latex/stex/modules/modules.ins + RELOC/source/latex/stex/omdoc/omdoc.dtx + RELOC/source/latex/stex/omdoc/omdoc.ins + RELOC/source/latex/stex/omtext/omtext.dtx + RELOC/source/latex/stex/omtext/omtext.ins + RELOC/source/latex/stex/presentation/presentation.dtx + RELOC/source/latex/stex/presentation/presentation.ins + RELOC/source/latex/stex/problem/problem.dtx + RELOC/source/latex/stex/problem/problem.ins + RELOC/source/latex/stex/rfdmeta/rdfmeta.dtx + RELOC/source/latex/stex/rfdmeta/rdfmeta.ins + RELOC/source/latex/stex/smglom/smglom.dtx + RELOC/source/latex/stex/smglom/smglom.ins + RELOC/source/latex/stex/smultiling/smultiling.dtx + RELOC/source/latex/stex/smultiling/smultiling.ins + RELOC/source/latex/stex/sproof/sproof.dtx + RELOC/source/latex/stex/sproof/sproof.ins + RELOC/source/latex/stex/sref/sref.dtx + RELOC/source/latex/stex/sref/sref.ins + RELOC/source/latex/stex/statements/statements.dtx + RELOC/source/latex/stex/statements/statements.ins + RELOC/source/latex/stex/stex/stex.dtx + RELOC/source/latex/stex/stex/stex.ins + RELOC/source/latex/stex/structview/structview.dtx + RELOC/source/latex/stex/structview/structview.ins + RELOC/source/latex/stex/tikzinput/tikzinput.dtx + RELOC/source/latex/stex/tikzinput/tikzinput.ins + RELOC/source/latex/stex/workaddress/workaddress.dtx + RELOC/source/latex/stex/workaddress/workaddress.ins +runfiles size=50 + RELOC/tex/latex/stex/cmath/cmath.sty + RELOC/tex/latex/stex/dcm/dcm.sty + RELOC/tex/latex/stex/hwexam/hwexam.cls + RELOC/tex/latex/stex/hwexam/hwexam.sty + RELOC/tex/latex/stex/metakeys/metakeys.sty + RELOC/tex/latex/stex/mikoslides/beamerthemeJacobs.sty + RELOC/tex/latex/stex/mikoslides/cc-by-sa.png + RELOC/tex/latex/stex/mikoslides/cc_somerights.png + RELOC/tex/latex/stex/mikoslides/dangerous-bend.png + RELOC/tex/latex/stex/mikoslides/jacobs-logo.png + RELOC/tex/latex/stex/mikoslides/mikoslides.cls + RELOC/tex/latex/stex/mikoslides/mikoslides.sty + RELOC/tex/latex/stex/mikoslides/shading-l2r.png + RELOC/tex/latex/stex/modules/modules.sty + RELOC/tex/latex/stex/omdoc/omdoc.cls + RELOC/tex/latex/stex/omdoc/omdoc.sty + RELOC/tex/latex/stex/omtext/omtext.sty + RELOC/tex/latex/stex/presentation/presentation.sty + RELOC/tex/latex/stex/problem/problem.sty + RELOC/tex/latex/stex/rfdmeta/rdfmeta.sty + RELOC/tex/latex/stex/smglom/smglom.cls + RELOC/tex/latex/stex/smultiling/smultiling.sty + RELOC/tex/latex/stex/sproof/sproof.sty + RELOC/tex/latex/stex/sref/sref.sty + RELOC/tex/latex/stex/statements/statements.sty + RELOC/tex/latex/stex/stex/stex.sty + RELOC/tex/latex/stex/structview/structview.sty + RELOC/tex/latex/stex/tikzinput/tikzinput.sty + RELOC/tex/latex/stex/workaddress/workaddress.sty +catalogue-contact-announce https://lists.informatik.uni-erlangen.de/mailman/listinfo/stex +catalogue-contact-bugs https://github.com/KWARC/sTeX/issues +catalogue-contact-development https://lists.informatik.uni-erlangen.de/mailman/listinfo/stex +catalogue-contact-home https://github.com/KWARC/sTeX +catalogue-contact-repository https://github.com/KWARC/sTeX +catalogue-ctan /macros/latex/contrib/stex +catalogue-license lppl +catalogue-topics struc-mkup format + +name stickstoo +category Package +revision 57193 +shortdesc A reworking of STIX2 +relocated 1 +longdesc SticksToo is a reworking of the STIX2 fonts with support files +longdesc focussing on enhancements of support for LaTeX users wishing to +longdesc be able to access more of its features. A companion addition to +longdesc the newtxmath package (version 1.55) provides a matching math +longdesc package using STIX2 letters (Roman and Greek) with newtxmath +longdesc symbols. +execute addMap SticksTooText.map +containersize 2667960 +containerchecksum 5da4a3d412ee4c015e0f15939edf71bd8dd16f218ca3d8d236cb071554af2dac9fb4e71de4b18626578134e94262582dfb62071c1cc4af5ef2fb6111b6430d92 +doccontainersize 557228 +doccontainerchecksum 0a36ffbe112993a90054e3ba413725abb4259e10a3f439eff694c05ce8b99592e7d1001fda13cf49d1ce0e89f388e1726962b58e74e13eea4b918ee85303b24a +docfiles size=156 + RELOC/doc/fonts/stickstoo/OFL-FAQ.txt + RELOC/doc/fonts/stickstoo/OFL.txt + RELOC/doc/fonts/stickstoo/README details="Readme" + RELOC/doc/fonts/stickstoo/stickstoo-doc.pdf details="Package documentation" + RELOC/doc/fonts/stickstoo/stickstoo-doc.tex +runfiles size=6094 + RELOC/fonts/afm/public/stickstoo/SticksTooText-Bold.afm + RELOC/fonts/afm/public/stickstoo/SticksTooText-BoldItalic.afm + RELOC/fonts/afm/public/stickstoo/SticksTooText-Italic.afm + RELOC/fonts/afm/public/stickstoo/SticksTooText-Regular.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-Bold.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-BoldItalic.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-Italic.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-Regular.afm + RELOC/fonts/enc/dvips/stickstoo/stx2-ot1.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_3t3wpf.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_3vezss.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_4fcdhj.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_57cumc.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_5xzouo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_7bhcze.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_7fpfyw.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_ao4o3i.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_b3i2vo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_bg3hea.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_btooep.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_c34sac.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_dbm33u.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_eexofg.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_eqh7z7.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_gbmh45.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_gxpwoy.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_hfcbd6.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_irreni.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_iximus.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_m7frfq.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_nb7tts.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_nl7rkm.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_noim42.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_opxk4k.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_pu4fsw.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_pwkoq7.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_qdtmbx.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_quvxut.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_rejbux.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_rfrl5v.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_sdn3a4.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_slv267.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_srw4fv.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_t6nmmd.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_tu2ozo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_uab2xo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_uhazou.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_uofyr3.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_v3a2cx.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_vydqhu.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_w6fsfr.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wfth6k.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wwmqdh.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wwolpm.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wxq2z6.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_y4oioo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_ym7moh.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_zscetg.enc + RELOC/fonts/enc/dvips/stickstoo/stx2i-ot1.enc + RELOC/fonts/map/dvips/stickstoo/SticksTooText.map + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2bmi.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2bmia.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2mi.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2mia.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-Bold.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-BoldItalic.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-Italic.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-Regular.tfm + RELOC/fonts/type1/public/stickstoo/SticksTooText-Bold.pfb + RELOC/fonts/type1/public/stickstoo/SticksTooText-BoldItalic.pfb + RELOC/fonts/type1/public/stickstoo/SticksTooText-Italic.pfb + RELOC/fonts/type1/public/stickstoo/SticksTooText-Regular.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-Bold.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-BoldItalic.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-Italic.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-Regular.pfb + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2bmi.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2bmia.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2mi.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2mia.vf + RELOC/tex/latex/stickstoo/LY1SticksTooText-Dnom.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-Inf.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-Numr.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-Sup.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Dnom.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Inf.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Numr.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Sup.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Dnom.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Inf.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Numr.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Sup.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/stickstootext.sty +catalogue-ctan /fonts/stickstoo +catalogue-license ofl lppl1.3 +catalogue-topics font font-body font-serif font-proportional font-maths font-type1 font-supp font-t1enc +catalogue-version 1.034 + +name stix +category Package +revision 54512 +shortdesc OpenType Unicode maths fonts +relocated 1 +longdesc The STIX fonts are a suite of unicode OpenType fonts containing +longdesc a complete set of mathematical glyphs. As of April 2018 this +longdesc package is considered obsolete. See stix2-otf and stix2-type1 +longdesc instead. +execute addMap stix.map +containersize 2595396 +containerchecksum 7e639f7a534e24afd9d009e224d87c9c2a502cbc77ff882c6dcc9ca0bff512f849d1f3e658dff8badab3843a658171b88ab66d8e731392dc456f9c5f4e032318 +doccontainersize 1838228 +doccontainerchecksum b01c3dfaa96a6bbcaa83e803514c8090546dcdd54595d7c66a1ac280286f5baa98947fe9d513da3d8baa1e83cdd174443751fc79c07cf66093af4e9044fd9010 +docfiles size=591 + RELOC/doc/fonts/stix/README details="Readme" + RELOC/doc/fonts/stix/STIX_Font_1.1.1-latex_Release_Documentation.doc + RELOC/doc/fonts/stix/STIX_Font_1.1.1-latex_Release_Documentation.pdf + RELOC/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.doc + RELOC/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.pdf + RELOC/doc/fonts/stix/STIX_Font_License_2010.txt + RELOC/doc/fonts/stix/stix.pdf details="Package documentation" +srccontainersize 27808 +srccontainerchecksum 594af38fdb72d632c36cf6ae6165518553b10127281ef8a6ec71f4ced16481f2582a13f1f6f0ee98e900c3147c574647c508f7c9e51afdc57ce68614a394d007 +srcfiles size=52 + RELOC/source/fonts/stix/stix.dtx + RELOC/source/fonts/stix/stix.fdd +runfiles size=1021 + RELOC/fonts/enc/dvips/stix/stix-extra1.enc + RELOC/fonts/enc/dvips/stix/stix-extra2.enc + RELOC/fonts/enc/dvips/stix/stix-extra3.enc + RELOC/fonts/enc/dvips/stix/stix-ot1.enc + RELOC/fonts/enc/dvips/stix/stix-ot2.enc + RELOC/fonts/enc/dvips/stix/stix-t1.enc + RELOC/fonts/enc/dvips/stix/stix-ts1.enc + RELOC/fonts/map/dvips/stix/stix.map + RELOC/fonts/opentype/public/stix/STIX-Bold.otf + RELOC/fonts/opentype/public/stix/STIX-BoldItalic.otf + RELOC/fonts/opentype/public/stix/STIX-Italic.otf + RELOC/fonts/opentype/public/stix/STIX-Regular.otf + RELOC/fonts/opentype/public/stix/STIXMath-Regular.otf + RELOC/fonts/tfm/public/stix/ot1-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneral.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneralsc-bold.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneralsc.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneralsc-bold.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneralsc.tfm + RELOC/fonts/tfm/public/stix/stix-extra1.tfm + RELOC/fonts/tfm/public/stix/stix-extra2.tfm + RELOC/fonts/tfm/public/stix/stix-extra3.tfm + RELOC/fonts/tfm/public/stix/stix-mathbb-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathbb.tfm + RELOC/fonts/tfm/public/stix/stix-mathbbit-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathbbit.tfm + RELOC/fonts/tfm/public/stix/stix-mathcal-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathcal.tfm + RELOC/fonts/tfm/public/stix/stix-mathex-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathex.tfm + RELOC/fonts/tfm/public/stix/stix-mathfrak-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathfrak.tfm + RELOC/fonts/tfm/public/stix/stix-mathit-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathit.tfm + RELOC/fonts/tfm/public/stix/stix-mathrm-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathrm.tfm + RELOC/fonts/tfm/public/stix/stix-mathscr-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathscr.tfm + RELOC/fonts/tfm/public/stix/stix-mathsf-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathsf.tfm + RELOC/fonts/tfm/public/stix/stix-mathsfit-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathsfit.tfm + RELOC/fonts/tfm/public/stix/stix-mathtt-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathtt.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneralsc-bold.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneralsc.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral.tfm + RELOC/fonts/type1/public/stix/STIXGeneral-Bold.pfb + RELOC/fonts/type1/public/stix/STIXGeneral-BoldItalic.pfb + RELOC/fonts/type1/public/stix/STIXGeneral-Italic.pfb + RELOC/fonts/type1/public/stix/STIXGeneral-Regular.pfb + RELOC/fonts/type1/public/stix/stix-mathbb-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathbb.pfb + RELOC/fonts/type1/public/stix/stix-mathbbit-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathbbit.pfb + RELOC/fonts/type1/public/stix/stix-mathcal-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathcal.pfb + RELOC/fonts/type1/public/stix/stix-mathex-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathex.pfb + RELOC/fonts/type1/public/stix/stix-mathfrak-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathfrak.pfb + RELOC/fonts/type1/public/stix/stix-mathit-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathit.pfb + RELOC/fonts/type1/public/stix/stix-mathrm-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathrm.pfb + RELOC/fonts/type1/public/stix/stix-mathscr-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathscr.pfb + RELOC/fonts/type1/public/stix/stix-mathsf-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathsf.pfb + RELOC/fonts/type1/public/stix/stix-mathsfit-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathsfit.pfb + RELOC/fonts/type1/public/stix/stix-mathtt-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathtt.pfb + RELOC/fonts/vf/public/stix/ot1-stixgeneralsc-bold.vf + RELOC/fonts/vf/public/stix/ot1-stixgeneralsc.vf + RELOC/fonts/vf/public/stix/ot2-stixgeneralsc-bold.vf + RELOC/fonts/vf/public/stix/ot2-stixgeneralsc.vf + RELOC/fonts/vf/public/stix/t1-stixgeneralsc-bold.vf + RELOC/fonts/vf/public/stix/t1-stixgeneralsc.vf + RELOC/tex/latex/stix/ls1stix.fd + RELOC/tex/latex/stix/ls1stixbb.fd + RELOC/tex/latex/stix/ls1stixfrak.fd + RELOC/tex/latex/stix/ls1stixscr.fd + RELOC/tex/latex/stix/ls1stixsf.fd + RELOC/tex/latex/stix/ls2stix.fd + RELOC/tex/latex/stix/ls2stixcal.fd + RELOC/tex/latex/stix/ls2stixex.fd + RELOC/tex/latex/stix/ls2stixtt.fd + RELOC/tex/latex/stix/ot1stix.fd + RELOC/tex/latex/stix/ot2stix.fd + RELOC/tex/latex/stix/stix.sty + RELOC/tex/latex/stix/t1stix.fd + RELOC/tex/latex/stix/ts1stix.fd +catalogue-also xits stix2-otf stix2-type1 +catalogue-contact-home http://www.stixfonts.org/ +catalogue-ctan /fonts/stix +catalogue-license ofl lppl1.3 +catalogue-topics font font-serif font-otf font-type1 font-maths font-symbol-maths font-bbd +catalogue-version 1.1.3 + +name stix2-otf +category Package +revision 58735 +shortdesc OpenType Unicode text and maths fonts +relocated 1 +longdesc The Scientific and Technical Information eXchange (STIX) fonts +longdesc are intended to satisfy the demanding needs of authors, +longdesc publishers, printers, and others working in the scientific, +longdesc medical, and technical fields. They combine a comprehensive +longdesc Unicode-based collection of mathematical symbols and alphabets +longdesc with a set of text faces suitable for professional publishing. +longdesc The fonts are available royalty-free under the SIL Open Font +longdesc License. +containersize 1382984 +containerchecksum b966a7d18a471f13b5eb85115566ef4aa7c894b142561a46144e5cda6a0198dfcd83b776d19d605cffe482d07a4ac9d80acde7879892381e1a266e7af4f9f72e +doccontainersize 1252812 +doccontainerchecksum 15e370d490eb01022877ce01cb8e9954af89553bd0cb2b404820c8744271d13ea32c75d2971abed4cc64a692184fb0fe369bc97bf870524599b2011fec3bfec2 +docfiles size=481 + RELOC/doc/fonts/stix2-otf/AUTHORS.txt + RELOC/doc/fonts/stix2-otf/CONTRIBUTORS.txt + RELOC/doc/fonts/stix2-otf/FONTLOG.txt + RELOC/doc/fonts/stix2-otf/Math-features.tex + RELOC/doc/fonts/stix2-otf/OFL-FAQ.txt + RELOC/doc/fonts/stix2-otf/OFL.txt + RELOC/doc/fonts/stix2-otf/README.md details="Readme" + RELOC/doc/fonts/stix2-otf/STIXTwoMath-Regular.pdf details="Unicode Charts for STIX Two Math Regular" + RELOC/doc/fonts/stix2-otf/STIXTwoMath-Regular.tex + RELOC/doc/fonts/stix2-otf/STIXTwoText-Regular.pdf details="Unicode Charts for STIX Two Text Regular" + RELOC/doc/fonts/stix2-otf/STIXTwoText-Regular.tex + RELOC/doc/fonts/stix2-otf/Text-features.tex + RELOC/doc/fonts/stix2-otf/intro.tex +runfiles size=814 + RELOC/fonts/opentype/public/stix2-otf/STIXTwoMath-Regular.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-Bold.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-BoldItalic.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-Italic.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-Medium.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-MediumItalic.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-Regular.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-SemiBold.otf + RELOC/fonts/opentype/public/stix2-otf/STIXTwoText-SemiBoldItalic.otf +catalogue-also stickstoo +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-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.12 + +name stix2-type1 +category Package +revision 57448 +shortdesc Type1 versions of the STIX Two OpenType fonts +relocated 1 +longdesc The stix2 package provides minimal support for using the STIX +longdesc Two fonts with versions of TeX that are limited to TFM files, +longdesc Type 1 PostScript fonts, and 8-bit font encodings. Version +longdesc 2.0.0 of the STIX fonts are being released in this format in +longdesc hopes of easing the transition from legacy TeX engines to +longdesc modern fully Unicode-compatible systems. The Type 1 versions +longdesc are merely a repackaging of the original OpenType versions and +longdesc should not be viewed as independent entities. Some glyphs that +longdesc are traditionally available in TeX math fonts are not yet +longdesc available in the STIX Two OpenType fonts. In such cases, we +longdesc have chosen to omit them from the stix2 package rather than +longdesc create incompatibilities between the OpenType and Type 1 +longdesc versions. In addition, while development of the OpenType +longdesc versions is ongoing, no further updates are planned to the Type +longdesc 1 versions of the fonts. +execute addMap stix2.map +containersize 3110736 +containerchecksum 802ea99ccb3b8e2e727537113843846dd6629f722508219be88cddd9e7f1e6f67a1bf48ae3a61c51991ec91ba5c543467d3aaba64116e4be08707def58c70f34 +doccontainersize 1393108 +doccontainerchecksum b4f1e6e8962fd77ecaf0df94b156783d9f77c07231e6cc258e04c26a8190dcd0a3175c71bd3a1187ad6cc083595ee80925712f12e0f838c474ac93701b47401e +docfiles size=1063 + RELOC/doc/fonts/stix2-type1/README.md details="Readme" + RELOC/doc/fonts/stix2-type1/ot1-stix2text-bold.pl + RELOC/doc/fonts/stix2-type1/ot1-stix2text-bolditalic.pl + RELOC/doc/fonts/stix2-type1/ot1-stix2text-italic.pl + RELOC/doc/fonts/stix2-type1/ot1-stix2text.pl + RELOC/doc/fonts/stix2-type1/ot1-stix2textsc-bold.pl + RELOC/doc/fonts/stix2-type1/ot1-stix2textsc.pl + RELOC/doc/fonts/stix2-type1/ot2-stix2text-bold.pl + RELOC/doc/fonts/stix2-type1/ot2-stix2text-bolditalic.pl + RELOC/doc/fonts/stix2-type1/ot2-stix2text-italic.pl + RELOC/doc/fonts/stix2-type1/ot2-stix2text.pl + RELOC/doc/fonts/stix2-type1/ot2-stix2textsc-bold.pl + RELOC/doc/fonts/stix2-type1/ot2-stix2textsc.pl + RELOC/doc/fonts/stix2-type1/stix2-mathbb.pl + RELOC/doc/fonts/stix2-type1/stix2-mathbbit.pl + RELOC/doc/fonts/stix2-type1/stix2-mathcal.pl + RELOC/doc/fonts/stix2-type1/stix2-mathex.pl + RELOC/doc/fonts/stix2-type1/stix2-mathfrak-bold.pl + RELOC/doc/fonts/stix2-type1/stix2-mathfrak.pl + RELOC/doc/fonts/stix2-type1/stix2-mathit-bold.pl + RELOC/doc/fonts/stix2-type1/stix2-mathit.pl + RELOC/doc/fonts/stix2-type1/stix2-mathrm-bold.pl + RELOC/doc/fonts/stix2-type1/stix2-mathrm.pl + RELOC/doc/fonts/stix2-type1/stix2-mathscr-bold.pl + RELOC/doc/fonts/stix2-type1/stix2-mathscr.pl + RELOC/doc/fonts/stix2-type1/stix2-mathsf-bold.pl + RELOC/doc/fonts/stix2-type1/stix2-mathsf.pl + RELOC/doc/fonts/stix2-type1/stix2-mathsfit-bold.pl + RELOC/doc/fonts/stix2-type1/stix2-mathsfit.pl + RELOC/doc/fonts/stix2-type1/stix2-mathtt.pl + RELOC/doc/fonts/stix2-type1/stix2.pdf details="Package documentation" + RELOC/doc/fonts/stix2-type1/t1-stix2text-bold.pl + RELOC/doc/fonts/stix2-type1/t1-stix2text-bolditalic.pl + RELOC/doc/fonts/stix2-type1/t1-stix2text-italic.pl + RELOC/doc/fonts/stix2-type1/t1-stix2text.pl + RELOC/doc/fonts/stix2-type1/t1-stix2textsc-bold.pl + RELOC/doc/fonts/stix2-type1/t1-stix2textsc.pl + RELOC/doc/fonts/stix2-type1/ts1-stix2text-bold.pl + RELOC/doc/fonts/stix2-type1/ts1-stix2text-bolditalic.pl + RELOC/doc/fonts/stix2-type1/ts1-stix2text-italic.pl + RELOC/doc/fonts/stix2-type1/ts1-stix2text.pl +srccontainersize 28092 +srccontainerchecksum 5963bee636210eb89d31ea8d5954468fe9959429d516fb988c8ceab3c591f53b47a5a77df8f10d8e20f136adbf2fe23f546fa62b1768db7164ed74fcf706a228 +srcfiles size=52 + RELOC/source/fonts/stix2-type1/stix2.dtx + RELOC/source/fonts/stix2-type1/stix2.fdd + RELOC/source/fonts/stix2-type1/stix2.ins +runfiles size=930 + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathbb.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathbbit.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathcal.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathex.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathfrak-bold.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathfrak.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathit-bold.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathit.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathrm-bold.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathrm.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathscr-bold.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathscr.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathsf-bold.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathsf.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathsfit-bold.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathsfit.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-mathtt.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-ot1.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-ot1sc.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-ot2.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-ot2sc.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-t1.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-t1sc.enc + RELOC/fonts/enc/dvips/stix2-type1/stix2-ts1.enc + RELOC/fonts/map/dvips/stix2-type1/stix2.map + RELOC/fonts/tfm/public/stix2-type1/ot1-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/ot1-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2-type1/ot1-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2-type1/ot1-stix2text.tfm + RELOC/fonts/tfm/public/stix2-type1/ot1-stix2textsc-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/ot1-stix2textsc.tfm + RELOC/fonts/tfm/public/stix2-type1/ot2-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/ot2-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2-type1/ot2-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2-type1/ot2-stix2text.tfm + RELOC/fonts/tfm/public/stix2-type1/ot2-stix2textsc-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/ot2-stix2textsc.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathbb.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathbbit.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathcal.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathex.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathfrak-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathfrak.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathit-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathit.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathrm-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathrm.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathscr-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathscr.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathsf-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathsf.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathsfit-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathsfit.tfm + RELOC/fonts/tfm/public/stix2-type1/stix2-mathtt.tfm + RELOC/fonts/tfm/public/stix2-type1/t1-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/t1-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2-type1/t1-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2-type1/t1-stix2text.tfm + RELOC/fonts/tfm/public/stix2-type1/t1-stix2textsc-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/t1-stix2textsc.tfm + RELOC/fonts/tfm/public/stix2-type1/ts1-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2-type1/ts1-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2-type1/ts1-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2-type1/ts1-stix2text.tfm + RELOC/fonts/type1/public/stix2-type1/STIX2Math.pfb + RELOC/fonts/type1/public/stix2-type1/STIX2Text-Bold.pfb + RELOC/fonts/type1/public/stix2-type1/STIX2Text-BoldItalic.pfb + RELOC/fonts/type1/public/stix2-type1/STIX2Text-Italic.pfb + RELOC/fonts/type1/public/stix2-type1/STIX2Text-Regular.pfb + RELOC/tex/latex/stix2-type1/ls1stix2.fd + RELOC/tex/latex/stix2-type1/ls1stix2bb.fd + RELOC/tex/latex/stix2-type1/ls1stix2frak.fd + RELOC/tex/latex/stix2-type1/ls1stix2scr.fd + RELOC/tex/latex/stix2-type1/ls1stix2sf.fd + RELOC/tex/latex/stix2-type1/ls2stix2.fd + RELOC/tex/latex/stix2-type1/ls2stix2cal.fd + RELOC/tex/latex/stix2-type1/ls2stix2ex.fd + RELOC/tex/latex/stix2-type1/ls2stix2tt.fd + RELOC/tex/latex/stix2-type1/ot1stix2.fd + RELOC/tex/latex/stix2-type1/ot2stix2.fd + RELOC/tex/latex/stix2-type1/stix2.sty + RELOC/tex/latex/stix2-type1/t1stix2.fd + RELOC/tex/latex/stix2-type1/ts1stix2.fd +catalogue-also stickstoo +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-license ofl lppl1.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.2 + +name stmaryrd +category Package +revision 22027 +shortdesc St Mary Road symbols for theoretical computer science +relocated 1 +longdesc The fonts were originally distributed as Metafont sources only, +longdesc but Adobe Type 1 versions are also now available. Macro support +longdesc is provided for use under LaTeX; the package supports the +longdesc "only" option (provided by the somedefs package) to restrict +longdesc what is loaded, for those who don't need the whole font. +execute addMixedMap stmaryrd.map +containersize 166148 +containerchecksum 8abe58b84fff2f4fd6846b6c267f3b245fb1dfc2f38d0db54ce7cd9d456abd07627247613073f09dcf7e11e3e9c5940d8ff657327232ce638abc6babcc5b3d77 +doccontainersize 78724 +doccontainerchecksum caf883d1c5021b52d6471c4c2145e708ac3c05c8944eaae621a3ea7b602b683ba2ef2bc0052f9caf67adc1415e7db02b5b55d3642ed82727a926ec193dd984f4 +docfiles size=28 + RELOC/doc/fonts/stmaryrd/INSTALL + RELOC/doc/fonts/stmaryrd/README details="Original README:" + RELOC/doc/fonts/stmaryrd/README.hoekwater + RELOC/doc/fonts/stmaryrd/stmaryrd.pdf details="Package and font documentation" +srccontainersize 6248 +srccontainerchecksum ebefe2836daed0dd4db99517af0f40c73f0a7b19453d5415c80ae6cf723f4ec4e4ae6f9700a21722b4c0d9b8507c58a596697017893716111b46222f54676aa2 +srcfiles size=7 + RELOC/source/fonts/stmaryrd/stmaryrd.dtx + RELOC/source/fonts/stmaryrd/stmaryrd.ins +runfiles size=98 + RELOC/fonts/afm/public/stmaryrd/stmary10.afm + RELOC/fonts/afm/public/stmaryrd/stmary5.afm + RELOC/fonts/afm/public/stmaryrd/stmary6.afm + RELOC/fonts/afm/public/stmaryrd/stmary7.afm + RELOC/fonts/afm/public/stmaryrd/stmary8.afm + RELOC/fonts/afm/public/stmaryrd/stmary9.afm + RELOC/fonts/map/dvips/stmaryrd/stmaryrd.map + RELOC/fonts/source/public/stmaryrd/stmary10.mf + RELOC/fonts/source/public/stmaryrd/stmary5.mf + RELOC/fonts/source/public/stmaryrd/stmary6.mf + RELOC/fonts/source/public/stmaryrd/stmary7.mf + RELOC/fonts/source/public/stmaryrd/stmary8.mf + RELOC/fonts/source/public/stmaryrd/stmary9.mf + RELOC/fonts/source/public/stmaryrd/stmaryaj.mf + RELOC/fonts/source/public/stmaryrd/stmaryba.mf + RELOC/fonts/source/public/stmaryrd/stmarych.mf + RELOC/fonts/source/public/stmaryrd/stmaryjg.mf + RELOC/fonts/source/public/stmaryrd/stmaryrd.mf + RELOC/fonts/tfm/public/stmaryrd/stmary10.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary5.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary6.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary7.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary8.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary9.tfm + RELOC/fonts/type1/public/stmaryrd/stmary10.pfb + RELOC/fonts/type1/public/stmaryrd/stmary10.pfm + RELOC/fonts/type1/public/stmaryrd/stmary5.pfb + RELOC/fonts/type1/public/stmaryrd/stmary5.pfm + RELOC/fonts/type1/public/stmaryrd/stmary6.pfb + RELOC/fonts/type1/public/stmaryrd/stmary6.pfm + RELOC/fonts/type1/public/stmaryrd/stmary7.pfb + RELOC/fonts/type1/public/stmaryrd/stmary7.pfm + RELOC/fonts/type1/public/stmaryrd/stmary8.pfb + RELOC/fonts/type1/public/stmaryrd/stmary8.pfm + RELOC/fonts/type1/public/stmaryrd/stmary9.pfb + RELOC/fonts/type1/public/stmaryrd/stmary9.pfm + RELOC/tex/latex/stmaryrd/Ustmry.fd + RELOC/tex/latex/stmaryrd/stmaryrd.sty +catalogue-ctan /fonts/stmaryrd +catalogue-license lppl +catalogue-topics comp-theory font font-symbol-maths font-mf font-type1 + +name storebox +category Package +revision 56291 +shortdesc Storing information for reuse +relocated 1 +longdesc The package provides "store boxes" whose user interface matches +longdesc that of normal LaTeX "save boxes", except that the content of a +longdesc store box appears at most once in the output PDF file, however +longdesc often it is used. The present version of the package supports +longdesc pdfLaTeX and LuaLaTeX; when DVI is output, store boxes behave +longdesc the same as save boxes. +containersize 2996 +containerchecksum 68feeea2592f31d3aed2b8431ab9e6c15d61151d3db7f59d54d6904e8db0f11c424b22ea6ff99e19032688c7910debed25280dde11f7a5858186772f118f0a18 +doccontainersize 194352 +doccontainerchecksum 08116b59ab292150381e1dc3e766d5ac7fbe8e1ec7a32236af4ebbd6ed410f76fff74648477615dddb8bf55281fdf918bafd25c04bab4d2be08b86c5b937a5f7 +docfiles size=49 + RELOC/doc/latex/storebox/README details="Readme" + RELOC/doc/latex/storebox/storebox.pdf details="Package documentation" +srccontainersize 6220 +srccontainerchecksum bfc6c15b82ec637d8a76f705b7e443c734fc274b6de15d93dbc5b96eb35653e7a24a1f2abc628ef0d314ea791e04d1db9efe3f8e481cfb40a30fb0a345a82e38 +srcfiles size=7 + RELOC/source/latex/storebox/storebox.dtx + RELOC/source/latex/storebox/storebox.ins +runfiles size=4 + RELOC/tex/latex/storebox/storebox-pgf.sty + RELOC/tex/latex/storebox/storebox.sty +catalogue-contact-bugs https://sourceforge.net/p/storebox/tickets/ +catalogue-contact-home https://sourceforge.net/projects/storebox/ +catalogue-contact-repository https://sourceforge.net/p/storebox/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/storebox +catalogue-license lppl1.3 +catalogue-topics pdf-feat macro-supp +catalogue-version 1.3a + +name storecmd +category Package +revision 24431 +shortdesc Store the name of a defined command in a container +relocated 1 +longdesc The package provides macros for command definition that save +longdesc the name of the command being defined in a file or a macro +longdesc container. The list could be useful for spelling exceptions in +longdesc text editors that do not support TeX syntax. +containersize 3304 +containerchecksum 1987e3cffafe007d9f3cb9e0d53fcc648eca40140f5188dcb0202a0916296651c1ab02fc589339fc51999b56bfa4a06b29701aa598ec03f51d7b1ee66ecfde7f +doccontainersize 242396 +doccontainerchecksum feacd83403672380cc2cfe90ada2704f98bef63e905740f8f8d50767f86ddf95478efc38fb38fccadad172f27db56045f50a6af4a487f0c5cd2b6ebb5e7666f7 +docfiles size=71 + RELOC/doc/latex/storecmd/README details="Readme" + RELOC/doc/latex/storecmd/storecmd-example.tex + RELOC/doc/latex/storecmd/storecmd-guide.pdf details="Package documentation" + RELOC/doc/latex/storecmd/storecmd-guide.tex +runfiles size=3 + RELOC/tex/latex/storecmd/storecmd.sty +catalogue-ctan /macros/latex/contrib/storecmd +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.0.2 + +name stricttex +category Package +revision 56320 +shortdesc Strictly balanced brackets and numbers in command names +relocated 1 +longdesc This is a small, LuaLaTeX-only package providing you with +longdesc three, sometimes useful features: It allows you to make +longdesc brackets [...] "strict", meaning that each [ must be balanced +longdesc by a ]. It allows you to use numbers in command names, so that +longdesc you can do stuff like \newcommand\pi12{\pi_{12}}. It allows you +longdesc to use numbers and primes in command names, so that you can do +longdesc stuff like \newcommand\pi'12{\pi '_{12}}. +containersize 1880 +containerchecksum 5e823dde4f0b902f59327be2f41dabbe19f569d5d05941deda33b44664b736c9ec687e98a04635c6f2af2a0f894ad162bcc4b866e52b88e5db55228d4a35538a +doccontainersize 57536 +doccontainerchecksum 9853efc6722d028c1ccbd90bdba2b4045c45b384e7fef1949ab51b7d2e6d29f1ea2c55c3a4a580a42faae9e03d38de258528af3e37c78f61ef8704798be5ccb4 +docfiles size=17 + RELOC/doc/lualatex/stricttex/README.md details="Readme" + RELOC/doc/lualatex/stricttex/stricttex.pdf details="Package documentation" + RELOC/doc/lualatex/stricttex/stricttex.tex +runfiles size=3 + RELOC/tex/lualatex/stricttex/stricttex.lua + RELOC/tex/lualatex/stricttex/stricttex.sty +catalogue-ctan /macros/luatex/latex/stricttex +catalogue-license lppl1.3c +catalogue-topics luatex typeset-tool +catalogue-version 0.2beta + +name stringenc +category Package +revision 52982 +shortdesc Converting a string between different encodings +relocated 1 +longdesc This package provides \StringEncodingConvert for converting a +longdesc string between different encodings. Both LaTeX and plain-TeX +longdesc are supported. +containersize 23376 +containerchecksum a776ddb2378bea0880d7c17e1a87db5f66645c5856243e49de1c56bc427213098afbca34773a44ad955a0014b969c59454d3a0c0ec371d213481668f5f784ca4 +doccontainersize 664768 +doccontainerchecksum a4f182559d37e45ca8b6c50656d2d520e3f0bf1ab63dc6477cd6e3abe6cbb5c4b89d779c380997b167019aae6fb12ae68d5fe37ea0c08945e3383f5d9905bf31 +docfiles size=178 + RELOC/doc/latex/stringenc/README.md + RELOC/doc/latex/stringenc/stringenc.pdf details="Package documentation" +srccontainersize 30628 +srccontainerchecksum 3febbaa990eb691af640df745f36e289a7f2bfe6f52259d6693c6c9991d719e79edbd14b35c1eba5a9033b203531fceb4164303bd6a3dbab7238b814bdb5eda6 +srcfiles size=77 + RELOC/source/latex/stringenc/stringenc.dtx +runfiles size=108 + RELOC/tex/generic/stringenc/se-ascii-print.def + RELOC/tex/generic/stringenc/se-ascii.def + RELOC/tex/generic/stringenc/se-clean7bit.def + RELOC/tex/generic/stringenc/se-cp1250.def + RELOC/tex/generic/stringenc/se-cp1251.def + RELOC/tex/generic/stringenc/se-cp1252.def + RELOC/tex/generic/stringenc/se-cp1257.def + RELOC/tex/generic/stringenc/se-cp437.def + RELOC/tex/generic/stringenc/se-cp850.def + RELOC/tex/generic/stringenc/se-cp852.def + RELOC/tex/generic/stringenc/se-cp855.def + RELOC/tex/generic/stringenc/se-cp858.def + RELOC/tex/generic/stringenc/se-cp865.def + RELOC/tex/generic/stringenc/se-cp866.def + RELOC/tex/generic/stringenc/se-dec-mcs.def + RELOC/tex/generic/stringenc/se-iso-8859-1.def + RELOC/tex/generic/stringenc/se-iso-8859-10.def + RELOC/tex/generic/stringenc/se-iso-8859-11.def + RELOC/tex/generic/stringenc/se-iso-8859-13.def + RELOC/tex/generic/stringenc/se-iso-8859-14.def + RELOC/tex/generic/stringenc/se-iso-8859-15.def + RELOC/tex/generic/stringenc/se-iso-8859-16.def + RELOC/tex/generic/stringenc/se-iso-8859-2.def + RELOC/tex/generic/stringenc/se-iso-8859-3.def + RELOC/tex/generic/stringenc/se-iso-8859-4.def + RELOC/tex/generic/stringenc/se-iso-8859-5.def + RELOC/tex/generic/stringenc/se-iso-8859-6.def + RELOC/tex/generic/stringenc/se-iso-8859-7.def + RELOC/tex/generic/stringenc/se-iso-8859-8.def + RELOC/tex/generic/stringenc/se-iso-8859-9.def + RELOC/tex/generic/stringenc/se-koi8-r.def + RELOC/tex/generic/stringenc/se-mac-centeuro.def + RELOC/tex/generic/stringenc/se-mac-cyrillic.def + RELOC/tex/generic/stringenc/se-mac-roman.def + RELOC/tex/generic/stringenc/se-nextstep.def + RELOC/tex/generic/stringenc/se-pdfdoc.def + RELOC/tex/generic/stringenc/se-utf16le.def + RELOC/tex/generic/stringenc/se-utf32be.def + RELOC/tex/generic/stringenc/se-utf32le.def + RELOC/tex/generic/stringenc/se-utf8.def + RELOC/tex/generic/stringenc/stringenc.sty +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-license lppl1.3 +catalogue-topics enc-juggle +catalogue-version 1.12 + +name stringstrings +category Package +revision 57097 +shortdesc String manipulation for cosmetic and programming application +relocated 1 +longdesc The package provides a large and sundry set of macros for the +longdesc manipulation of strings. The macros are developed not merely +longdesc for cosmetic application (such as changing the case of letters +longdesc and string substitution), but also for programming applications +longdesc such as character look-ahead, argument parsing, conditional +longdesc tests on various string conditions, etc. The macros were +longdesc designed all to be expandable (note that things such as +longdesc \uppercase and \lowercase are not expandable), so that the +longdesc macros may be strung together sequentially and nested (after a +longdesc fashion) to achieve rather complex manipulations. +containersize 9224 +containerchecksum fbc29bbf65e7d4a1fd367b03490f73bf44349427f6c1a7e826135ee9092c9b592a4cf23454919e0bcc74dc59d3a6ad072dea16096e4850780ff295dc3caacc48 +doccontainersize 381756 +doccontainerchecksum 1779de4af914b69ab258bc1f69a807c12f750e5919936c78ace4496f86200bfc4c3146dffbb27ac5977c2e8d41ec8d0139cf2a2560ba7c627dacd70b34cc69ea +docfiles size=105 + RELOC/doc/latex/stringstrings/README details="Readme" + RELOC/doc/latex/stringstrings/stringstrings.pdf details="Package documentation" +srccontainersize 33268 +srccontainerchecksum 94cf26d431d3638f769166c999e3dff156bd37e02a7099129f1259b7259be95896b694a64fea657aefce22f3a1e98ec2bbbf0f6f85171ccf977068ddafbb8078 +srcfiles size=40 + RELOC/source/latex/stringstrings/stringstrings.dtx + RELOC/source/latex/stringstrings/stringstrings.ins +runfiles size=15 + RELOC/tex/latex/stringstrings/stringstrings.sty +catalogue-also getargs +catalogue-ctan /macros/latex/contrib/stringstrings +catalogue-license lppl1.3 +catalogue-topics text-manip +catalogue-version 1.24 + +name structmech +category Package +revision 58985 +shortdesc A TikZ command set for structural mechanics drawings +relocated 1 +longdesc This package provides a collection of TikZ commands that allow +longdesc users to draw basic elements in material/structural mechanics. +longdesc It is thus possible to draw member forces, nodal +longdesc forces/displacements, various boundary conditions, internal +longdesc force distributions, etc. +containersize 3688 +containerchecksum 4b4bfc5962b57792e34f22f19f8127a048ffc4428eccded53452b165d11d798866f4dfb477dc87f3be52e074ffef9e13e496894bb14e4ad1876b09852efc7f69 +doccontainersize 142568 +doccontainerchecksum 48623a95193f3613d16b82a0df650b1bfcbf62bb1fc7f2fbe2b878199eae01d89a5ca9d151931ae16eceeb1d47dd835086f3eb46b0b3bd36133835e797eee4a6 +docfiles size=51 + RELOC/doc/latex/structmech/LICENSE + RELOC/doc/latex/structmech/README.md details="Readme" + RELOC/doc/latex/structmech/structmech.pdf details="Package documentation" + RELOC/doc/latex/structmech/structmech.tex +runfiles size=6 + RELOC/tex/latex/structmech/structmech.sty +catalogue-contact-bugs https://github.com/TLCFEM/structmech/issues +catalogue-contact-home https://github.com/TLCFEM/structmech +catalogue-ctan /graphics/pgf/contrib/structmech +catalogue-license gpl3+ +catalogue-topics pgf-tikz physics +catalogue-version 1.1 + +name struktex +category Package +revision 47931 +shortdesc Draw Nassi-Shneiderman charts +relocated 1 +longdesc Even in the age of OOP one must develop algorithms. +longdesc Nassi-Shneiderman charts are a well known tool to describe an +longdesc algorithm in a graphical way. The package offers some macros +longdesc for generating those charts in a LaTeX document. The package +longdesc provides the most important elements of a Nassi-Shneiderman +longdesc charts, including processing blocks, loops, mapping conventions +longdesc for alternatives, etc. The charts are drawn using the picture +longdesc environment (using pict2e for preference). +containersize 10100 +containerchecksum 3d81817eac5cc8b8bd468537406db6a26fecdaad1db269c2ceed582cae84fc2b549eaf527d4c356be7d4f2f16f9db4746251e9b69db0f0fc3cc8acd9f39d1f50 +doccontainersize 785284 +doccontainerchecksum 261a9f7ef5036bc8eebb87ba503b604b158647e82e88844758be506ac5d389103661f681689a836c0048529446bad0d6537a6fc6ba273dd2ed29abee40336360 +docfiles size=232 + RELOC/doc/latex/struktex/LIESMICH.md details="LIESMICH file" language="de" + RELOC/doc/latex/struktex/README.md details="Readme" + RELOC/doc/latex/struktex/struktex-test-0.nss + RELOC/doc/latex/struktex/struktex-test-1.tex + RELOC/doc/latex/struktex/struktex-test-2.tex + RELOC/doc/latex/struktex/struktex-test-3.tex + RELOC/doc/latex/struktex/struktex-test-4.tex + RELOC/doc/latex/struktex/struktex.de.pdf details="Package documentation" language="de" + RELOC/doc/latex/struktex/struktex.el + RELOC/doc/latex/struktex/struktex.en.pdf details="Package documentation" language="en" + RELOC/doc/latex/struktex/struktex.makemake + RELOC/doc/latex/struktex/struktex.mk +srccontainersize 65696 +srccontainerchecksum 98b06394519aafc81a565c7b12fb1ad86856ca447cb5ccae14aacc95bded9663a72bea301e7f5998eb9cc2a6358c978881736e564c3672eef456c6c44efcce0c +srcfiles size=74 + RELOC/source/latex/struktex/struktex.dtx + RELOC/source/latex/struktex/struktex.ins +runfiles size=14 + RELOC/tex/latex/struktex/strukdoc.sty + RELOC/tex/latex/struktex/struktex.sty + RELOC/tex/latex/struktex/struktxf.sty + RELOC/tex/latex/struktex/struktxp.sty +catalogue-also pict2e +catalogue-ctan /macros/latex/contrib/struktex +catalogue-license lppl1.2 +catalogue-topics diagram-flow +catalogue-version 2.3c-0-g7d3fc5b + +name sttools +category Package +revision 56774 +shortdesc Various macros +relocated 1 +longdesc A collection of tools and macros, providing: miscellaneous +longdesc float control, page styles for floats, multipage tabulars, even +longdesc columns at end of twocolumn region, switching between one- and +longdesc two-column anywhere, simulating the effect of "midfloats", a +longdesc package to manipulate numerical lists and arrays. +containersize 13432 +containerchecksum d9707fc22ad26d291288debdb2d9bb492175dade76ed398c3c0ffd1d4ba256d8c691bc2fb9d537ff01af4de7bf1352d4b1f62cc6c54afa8c02eea8b69185382b +doccontainersize 764344 +doccontainerchecksum b32bd4fa10599b3ace5bc8e1b2dae79750aace26a98806de275fdd358554b6f26fde48c9e7b0fbb108de0a771728a68f6c09fa9c568a5e2fce7b9aaa1fb1f58f +docfiles size=231 + RELOC/doc/latex/sttools/README.md details="Readme" + RELOC/doc/latex/sttools/cuted.pdf + RELOC/doc/latex/sttools/floatpag.pdf + RELOC/doc/latex/sttools/flushend.pdf + RELOC/doc/latex/sttools/midfloat.pdf + RELOC/doc/latex/sttools/stabular.pdf + RELOC/doc/latex/sttools/stfloats.pdf + RELOC/doc/latex/sttools/sttools.pdf details="Overview of the bundle" + RELOC/doc/latex/sttools/texsort.pdf +srccontainersize 21348 +srccontainerchecksum 56a096fbc8f28a0ea2f1ef31ebf277204319eaf6fb9bfcbd5449d24b2689a111f192ee1c723adcf8800c9ca2069c934cde8d0bdefae473e6eced2b043b7fd8d8 +srcfiles size=42 + RELOC/source/latex/sttools/cuted.dtx + RELOC/source/latex/sttools/floatpag.dtx + RELOC/source/latex/sttools/flushend.dtx + RELOC/source/latex/sttools/midfloat.dtx + RELOC/source/latex/sttools/stabular.dtx + RELOC/source/latex/sttools/stfloats.dtx + RELOC/source/latex/sttools/sttools.dtx + RELOC/source/latex/sttools/sttools.ins + RELOC/source/latex/sttools/texsort.dtx +runfiles size=28 + RELOC/tex/latex/sttools/cuted.sty + RELOC/tex/latex/sttools/floatpag.sty + RELOC/tex/latex/sttools/flushend.sty + RELOC/tex/latex/sttools/midfloat.sty + RELOC/tex/latex/sttools/stabular.sty + RELOC/tex/latex/sttools/stfloats.sty + RELOC/tex/latex/sttools/texsort.sty +catalogue-ctan /macros/latex/contrib/sttools +catalogue-license lppl1.3 +catalogue-topics collection +catalogue-version 2.1 + +name stubs +category Package +revision 19440 +shortdesc Create tear-off stubs at the bottom of a page +relocated 1 +longdesc The \stubs command creates as many repetitions as possible of +longdesc its argument, at the bottom of the page; these stubs may be +longdesc used (for example) for contact information. +containersize 1720 +containerchecksum 13d9fbb0eb8fed9b92f1307db189e9f65df92470d0ed21a0c84dea2f53ebd1b4d665919372476b737184df4f9faab0a982e681a0f9cb5a99e40b5f80194d448e +doccontainersize 23904 +doccontainerchecksum a427047460a92a436b21c23c112bc4ed8608a9916b613530e5ee5cc56bc833a18c6336943ccba475b7854269680eb7d685bdf2f0641478e46cc4e8fd9a6e8260 +docfiles size=14 + RELOC/doc/latex/stubs/COPYING + RELOC/doc/latex/stubs/README + RELOC/doc/latex/stubs/README.TEXLIVE + RELOC/doc/latex/stubs/changelog.txt + RELOC/doc/latex/stubs/stubs_ex.pdf details="Example of use" + RELOC/doc/latex/stubs/stubs_ex.tex +runfiles size=1 + RELOC/tex/latex/stubs/stubs.sty +catalogue-ctan /macros/latex/contrib/stubs +catalogue-license gpl +catalogue-topics advert +catalogue-version 0.1.1 + +name studenthandouts +category Package +revision 43516 +shortdesc Management and styling of student handout projects +relocated 1 +longdesc This package can be used to generate a single master document +longdesc that contains a set of individual student handouts. The package +longdesc has two main functions. First, it provides a simple framework +longdesc for organizing handout source code, and supplies a set of +longdesc import management tools for selectively importing a subset of +longdesc the handouts into the master document. Selective import is +longdesc convenient when compilation of all of the handouts is +longdesc unnecessary, for example when working on a new handout. As a +longdesc secondary feature, the package defines a basic visual style for +longdesc handouts. This style can be easily changed. +containersize 4352 +containerchecksum 2a7d8cab28b58a26633fec5845498a2987763f61b896fb747d97521b569786f114d80979956a9b9c2b94b61f01677101248a1a4c1735415703398b57306b6c15 +doccontainersize 318548 +doccontainerchecksum 10e3ff558cd5c544d82a61bc67be8b7ed0c9ec9b01550bd3d1c9d3265d1de7153832983593c0be6f5a990d33063b065b397e4ab6b7ed12b0ea79e9e49e0a68f6 +docfiles size=91 + RELOC/doc/latex/studenthandouts/README details="Readme" + RELOC/doc/latex/studenthandouts/samplecode/worksheets.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-1-1.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-1-2.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-1-3.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-2-1.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-2-2.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-3-1.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-3-2.tex + RELOC/doc/latex/studenthandouts/studenthandouts-doc.pdf details="Package documentation" + RELOC/doc/latex/studenthandouts/studenthandouts-doc.tex +runfiles size=3 + RELOC/tex/latex/studenthandouts/studenthandouts.sty +catalogue-ctan /macros/latex/contrib/studenthandouts +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.0 + +name sty2dtx +category Package +revision 56291 +shortdesc Create a .dtx file from a .sty file +longdesc The package provides a Perl script that converts a .sty file +longdesc (LaTeX package) to .dtx format (documented LaTeX source), by +longdesc surrounding macro definitions with macro and macrocode +longdesc environments. The macro name is automatically inserted as an +longdesc argument to the macro environemnt. Code lines outside macro +longdesc definitions are wrapped only in macrocode environments. Empty +longdesc lines are removed. The script should not be thought to be fool +longdesc proof and 100% accurate but rather as a good start to the +longdesc business of making a .dtx file from an undocumented style file. +longdesc Full .dtx files are generated. A template based on the skeleton +longdesc file from 'dtxtut' is used. User level macros are added +longdesc automatically to the 'Usage' section of the .dtx file. A +longdesc corresponding .ins file can be generated as well. +depend sty2dtx.ARCH +containersize 8720 +containerchecksum a7e42340744a348c88bb3cde7e23d428259f4fe7c644093e4bdabf8c49bc7f9c929a2271cd14daed9be233a04f62b60602a9fa778d05b11dba716d886286e8e1 +doccontainersize 151548 +doccontainerchecksum 2fb33ea4fcc9b5e940b46cb1b53cb56692528d8926d9bf22d3615958946763a63be101a5cf146a14ade43e2dce11b8fc25866d563d844570863dce54f48472b5 +docfiles size=43 + texmf-dist/doc/man/man1/sty2dtx.1 + texmf-dist/doc/man/man1/sty2dtx.man1.pdf + texmf-dist/doc/support/sty2dtx/README details="Readme" + texmf-dist/doc/support/sty2dtx/sty2dtx.pdf +runfiles size=8 + texmf-dist/scripts/sty2dtx/sty2dtx.pl +catalogue-also makedtx +catalogue-contact-bugs https://sourceforge.net/p/sty2dtx/tickets/ +catalogue-contact-home https://sourceforge.net/p/sty2dtx/ +catalogue-contact-repository https://sourceforge.net/p/sty2dtx/code/ci/default/tree/ +catalogue-ctan /support/sty2dtx +catalogue-license gpl3 +catalogue-topics package-devel +catalogue-version 2.3 + +name sty2dtx.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of sty2dtx +containersize 340 +containerchecksum 5513b1db13d6f95e8585195fc4e0cf1a2e78c7288dc64149bba132de897f7d9ec61fd0b1bf9015f6b6dca1ef80d7b12dde10b47937399fedea37c8952140eb92 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/sty2dtx + +name sty2dtx.amd64-freebsd +category Package +revision 21215 +shortdesc amd64-freebsd files of sty2dtx +containersize 344 +containerchecksum 1796704b05b7db2274d53da2efd15b1033e06d6af752d978caae9346c11e924a551b16956c1a148bfd1b76275d946a4400a4ee8b4674e1befedb0d3259d4aa30 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/sty2dtx + +name sty2dtx.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of sty2dtx +containersize 340 +containerchecksum 4f441df5e6b06b65e1bcdded4837ef1ab5cbe2ecf320834760d661c19807cfd9bcbc569ee0ea2b707a096f3232441fad05ea3ad4e90809d0ded15780828acd31 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/sty2dtx + +name sty2dtx.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of sty2dtx +containersize 340 +containerchecksum 80cdefa3609834c196d739983010ebef83080f4cd94a601f2710ff411970047b250d43bade5a8bc662d78f9363a78483705441466a1087da74cf64d9111c7d1d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/sty2dtx + +name sty2dtx.i386-cygwin +category Package +revision 21215 +shortdesc i386-cygwin files of sty2dtx +containersize 340 +containerchecksum cbca0441d505adf28ffe8940d9d5bded9fce126e013dd1f8e1c413025719aa3105b0ccbc6df74c86b407369e5026dca73c4450c88f010a21adc5c6565ae1042b +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/sty2dtx + +name sty2dtx.i386-freebsd +category Package +revision 21215 +shortdesc i386-freebsd files of sty2dtx +containersize 340 +containerchecksum 8ad97814bade7028367e9d1b6ecacfb972c3d627ab6a1c143f71b1b3c0ec8e627a92398a308b4e2cc15b787d5ec475d76318d3dc3a5ba685bbabd5dccb95213b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/sty2dtx + +name sty2dtx.i386-linux +category Package +revision 21215 +shortdesc i386-linux files of sty2dtx +containersize 340 +containerchecksum ce73b1321d7dba48b4decd8142dab2b64189d053ca4787b074b4f846e0a8cf36755f7117aab2a978d5d1e8bf3c18fd1b5cf3e49eadef2bdcfa50e8d979133744 +binfiles arch=i386-linux size=1 + bin/i386-linux/sty2dtx + +name sty2dtx.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of sty2dtx +containersize 340 +containerchecksum d1b9b8adafd7c52341a8b48638019688efd9c41df61751bdbfcb4983f1acdd95b99d7d9f3aeeed1dd690412164a318e801e449ef9822116a78493d3409f0d0ca +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/sty2dtx + +name sty2dtx.i386-solaris +category Package +revision 21215 +shortdesc i386-solaris files of sty2dtx +containersize 340 +containerchecksum ffefd473cba005de712a95a0a836415970772ea75ca6fabf776e81662d1d9a0e2f9873083ce3f94f7e92ea28400076b35c338b9a245dfa60d7706ee0e93202a6 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/sty2dtx + +name sty2dtx.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of sty2dtx +containersize 340 +containerchecksum 2e0a3cef5843c61d4a71fa058ad2b486326d511c40525f49a07083bb022369edd523257939d15b3c15908ecb2642015d3b8695d790a85791ddcfec097ba095e1 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/sty2dtx + +name sty2dtx.win32 +category Package +revision 21215 +shortdesc win32 files of sty2dtx +containersize 680 +containerchecksum de8418cb30fea8228b11fe638086954c9684f41e0978731ec87f14eeb193ab2d96d1af4c54d266193fe77354ed88f13197500721b904e6587194ef0b1261db64 +binfiles arch=win32 size=1 + bin/win32/sty2dtx.exe + +name sty2dtx.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of sty2dtx +containersize 344 +containerchecksum c66f52454f3908898159bdbfefd6bd5b6f1d3184d76831f1b84c1af1685319387f2434312bbe6c5d8b6bd5cb3d45a995b957d7c0be8637b13d0706cca26e6ee8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/sty2dtx + +name sty2dtx.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of sty2dtx +containersize 352 +containerchecksum a1ec9dfd12be90bb8ece8a53706ec1b00d476bba6bc384e2d640d47d49b6fd1a028fb3a6bc4267a964c091b230c23c2d60ecd389ed8959e8d799c6679b9604d4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/sty2dtx + +name sty2dtx.x86_64-linux +category Package +revision 21215 +shortdesc x86_64-linux files of sty2dtx +containersize 340 +containerchecksum ea675926db6dde5dfabb1e688b2bd1b6ed0b3db4a3d02defb5ce4db15e7d9a99269da31e8dff78285a19197333973bc04b00ef429b0beeefd809c1d371d5f37b +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/sty2dtx + +name sty2dtx.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of sty2dtx +containersize 344 +containerchecksum bb08e3de75e0ef49d6b433fc30bd454e934aa81907bf8ec578e80d2679aaf766c9a7d913da41c80cdb5411edde553c0689dba5049849a41c03216a79f79fcd43 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/sty2dtx + +name sty2dtx.x86_64-solaris +category Package +revision 21215 +shortdesc x86_64-solaris files of sty2dtx +containersize 340 +containerchecksum c07e73b141df36e37e7006b62a448113104092877dae7ced982d55d6389c0c59f5ef35794b661eb498049054a887478d9254cfadd67d248f211f2005d2a97bb8 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/sty2dtx + +name suanpan +category Package +revision 15878 +shortdesc MetaPost macros for drawing Chinese and Japanese abaci +relocated 1 +longdesc These macros are described in Denis Roegel: MetaPost macros for +longdesc drawing Chinese and Japanese abaci, TUGboat (volume 30, number +longdesc 1, 2009, pages 74-79) +containersize 4528 +containerchecksum a9fd27694ea7491321580ee325f8b151bbcfcf6da14ecce85b6d4e68b09cdf125c810a5170aacc966835fad8f2aaefd78916920cc3e896cad7738d026450ed83 +doccontainersize 544 +doccontainerchecksum 667d3c5590468170acfded106a2a468d9abe7b4b34a9b56d153d401a60e8f24bce99a4f6c5f2761572a42b85c7faae5741ee5b6f22c3f1004e6d6685463b9350 +docfiles size=2 + RELOC/doc/metapost/suanpan/README details="Readme" + RELOC/doc/metapost/suanpan/article.txt +runfiles size=5 + RELOC/metapost/suanpan/abacus.mp + RELOC/metapost/suanpan/suanpan.mp +catalogue-ctan /graphics/metapost/contrib/macros/suanpan +catalogue-license lppl +catalogue-topics games mp-use + +name subdepth +category Package +revision 15878 +shortdesc Unify maths subscript height +relocated 1 +longdesc This package is based on code (posted long ago to comp.text.tex +longdesc by Donald Arseneau) to equalise the height of subscripts in +longdesc maths. The default behaviour is to place subscripts slightly +longdesc lower when there is a superscript as well, but this can look +longdesc odd in some situations. +containersize 1644 +containerchecksum 7328742873abc42d2b9916161ca43e339e03ac1fd34479e93d9eccc98a065e95cffbc920395dd6f90d90989d29840cbdf2ca87dd1d0b293dfae66abbdc6e2d3a +doccontainersize 95520 +doccontainerchecksum 6bda8b822a4f1ac2a181ce34f739449bfb976a4450a54589e0cb4a64a0f1ff358a469fc88a37639104f731671ec474088968ab3dc95552a2d92a073d91857668 +docfiles size=28 + RELOC/doc/latex/subdepth/README details="Readme" + RELOC/doc/latex/subdepth/subdepth.pdf details="Package documentation" +srccontainersize 3636 +srccontainerchecksum 6a63a2d62dbc47d41e78004792e5c9e6ae7b2f3c435e95bc9969bbce109293a8257d4913a5b1959d95163c9aaae557daad53e950c5313faafbd8fb8d0de2c367 +srcfiles size=4 + RELOC/source/latex/subdepth/subdepth.dtx + RELOC/source/latex/subdepth/subdepth.ins +runfiles size=1 + RELOC/tex/latex/subdepth/subdepth.sty +catalogue-ctan /macros/latex/contrib/subdepth +catalogue-license lppl +catalogue-topics subsup-pos maths +catalogue-version 0.1 + +name subdocs +category Package +revision 51480 +shortdesc Multifile documents +relocated 1 +longdesc This is an experimental package aiming to provide a different +longdesc approach for multidocument works (mainly, books with a document +longdesc per chapter). Unlike the \include mechanism, every subdocument +longdesc is a complete normal LaTeX document and may be typeset +longdesc separately. What the package does is sharing the .aux files. +longdesc The present release is an alpha version, and no attempt has yet +longdesc been made to allow it to work with, say, hyperref. +containersize 2884 +containerchecksum a38c6e9bad66582914ad4acdae213e37c2bd5658d5e16482a1700f5869762b489f85b61fdb70c04578319f2772c974267b7c9a4e302c34df87f3a01128caf949 +doccontainersize 1160 +doccontainerchecksum 46bde174536e96bb78ba40990ae3b4b8cc1fe2ef26803b193afe2fccfc05bdb6644a548a712522596786847a8fe6071a52599a17ea52134bbed2e5495bbc401e +docfiles size=1 + RELOC/doc/latex/subdocs/README.md details="Readme" +runfiles size=2 + RELOC/tex/latex/subdocs/subdocs.sty +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-license mit +catalogue-topics subdocs +catalogue-version 0.1 + +name subeqn +category Package +revision 15878 +shortdesc Package for subequation numbering +relocated 1 +longdesc Sometimes it is necessary to be able to refer to subexpressions +longdesc of an equation. In order to do that these subexpressions should +longdesc be numbered. In standard LaTeX there is no provision for this. +longdesc To solve this problem Stephen Gildea once wrote subeqn.sty for +longdesc LaTeX 2.09; Donald Arsenau rewrote the macros and Johannes +longdesc Braams made them available for LaTeX2e. Note that this package +longdesc is not compatible with the package subeqnarray (written by +longdesc Johannes Braams), but it can be used together with the LaTeX +longdesc class options leqno and fleqn. +containersize 1604 +containerchecksum 7d04ceeb8f75cae074f9bff3e8d0aac4b529d199343c59fae7715d1023aebc3cbf2b45614e0d5ef0a95ff9bca4ff9e8318c4ddd86ceaec42d271f8c0f71282cb +doccontainersize 79832 +doccontainerchecksum 09f902bf3b4c8e2e1f9d805102c170b2bf2f4de067cdd590b22fde6b58f4e3042d0b14d362e0af587f9fff9e2c8789bb8af4b329bbfd721ca7dce8af01612c50 +docfiles size=25 + RELOC/doc/latex/subeqn/manifest.txt + RELOC/doc/latex/subeqn/subeqn.pdf details="Package documentation" + RELOC/doc/latex/subeqn/subeqn.tex +srccontainersize 3652 +srccontainerchecksum f1f7229f058a7dd80a67f18692fad36601015ad6bd7994775b573193d74c0ff7f175397ad446384cb74b3797f9f17605ce2d381327249ab9e36ae0aab756d09d +srcfiles size=4 + RELOC/source/latex/subeqn/subeqn.dtx + RELOC/source/latex/subeqn/subeqn.ins +runfiles size=1 + RELOC/tex/latex/subeqn/subeqn.sty +catalogue-also subeqnarray +catalogue-ctan /macros/latex/contrib/subeqn +catalogue-license lppl +catalogue-topics maths +catalogue-version 2.0b + +name subeqnarray +category Package +revision 15878 +shortdesc Equation array with sub numbering +relocated 1 +longdesc This package defines the subeqnarray and subeqnarray* +longdesc environments, which behave like the corresponding eqnarray and +longdesc eqnarray* environments, except that the individual lines are +longdesc numbered like 1a, 1b, 1c, etc. To refer to these numbers an +longdesc extra label command \slabel is provided. Users are urged to +longdesc consider the alignment capabilities of the amsmath bundle, +longdesc which produce better results than eqnarray-related macros. +containersize 2296 +containerchecksum 846d822661b903328ee7b199df6bd7fe5b606c13a185cbb6e6fcccf3b009f2b94396bfc3f9e4b8eb5052688536867dee06c6b9571e051d477415e1ac999fc162 +doccontainersize 112308 +doccontainerchecksum 9f47b8fb760b51a87ce5f9728e9ff76dbbc10ae009e04c9bc0c91133941e5b528e09e5034156b1dc5ff9a0c74446b548bb69c389486e68a4b8a79a7c9ed1a7f7 +docfiles size=33 + RELOC/doc/latex/subeqnarray/manifest.txt + RELOC/doc/latex/subeqnarray/subeqnarray.pdf details="Package documentation" + RELOC/doc/latex/subeqnarray/subeqnarray.tex +srccontainersize 5068 +srccontainerchecksum f41086ca65c7821167acada640a11768da429158b4da7caa398db254be156dfb291281b1e2f4f4f58f04c0c8041c45efd2072ddc40db8673808b83b3ca09a93f +srcfiles size=5 + RELOC/source/latex/subeqnarray/subeqnarray.dtx + RELOC/source/latex/subeqnarray/subeqnarray.ins +runfiles size=2 + RELOC/tex/latex/subeqnarray/subeqnarray.sty +catalogue-also subeqn +catalogue-ctan /macros/latex/contrib/subeqnarray +catalogue-license lppl +catalogue-topics maths-syseqn +catalogue-version 2.1c + +name subfig +category Package +revision 15878 +shortdesc Figures broken into subfigures +relocated 1 +longdesc The package provides support for the manipulation and reference +longdesc of small or 'sub' figures and tables within a single figure or +longdesc table environment. It is convenient to use this package when +longdesc your subfigures are to be separately captioned, referenced, or +longdesc are to be included in the List-of-Figures. A new \subfigure +longdesc command is introduced which can be used inside a figure +longdesc environment for each subfigure. An optional first argument is +longdesc used as the caption for that subfigure. This package supersedes +longdesc the subfigure package (which is no longer maintained). The name +longdesc was changed since the package is not completely backward +longdesc compatible with the older package The major advantage of the +longdesc new package is that the user interface is keyword/value driven +longdesc and easier to use. To ease the transition from the subfigure +longdesc package, the distribution includes a configuration file +longdesc (subfig.cfg) which nearly emulates the subfigure package. The +longdesc functionality of the package is provided by the (more recent +longdesc still) subcaption package. +containersize 6896 +containerchecksum ec7ae149b99fecae3b4ee7cf600811dcec9bc44eac762b5480c6df48b725db3c08a87922edb7a524d7d2b748bf7d25482e155fd40080cea9ac62f2575bf61d15 +doccontainersize 453616 +doccontainerchecksum 8cb67139bc1063fc4d5482b51f1c3ad690c85d4f7e022a99059a7b20176bbdc97a44af23756fa220b3f7f7afdf039c4a7b672700012e96b98ee25ebb9e5c99b5 +docfiles size=181 + RELOC/doc/latex/subfig/README details="Readme" + RELOC/doc/latex/subfig/ltxdoc.cfg + RELOC/doc/latex/subfig/subfig.pdf details="Package documentation" + RELOC/doc/latex/subfig/test1.tex + RELOC/doc/latex/subfig/test2.tex + RELOC/doc/latex/subfig/test3.tex + RELOC/doc/latex/subfig/test4.tex + RELOC/doc/latex/subfig/test5.tex + RELOC/doc/latex/subfig/test6.tex + RELOC/doc/latex/subfig/test7.tex +srccontainersize 43120 +srccontainerchecksum 44e7113550dcac4b14ddab03ad5ba4bc86cb3a4dcb14a31f73e5caf0b02f9f3bd56fd9d18ddae002a981e9680bc6fae5850ed07ee94e60d858647136cf9243eb +srcfiles size=50 + RELOC/source/latex/subfig/Makefile + RELOC/source/latex/subfig/subfig.dtx + RELOC/source/latex/subfig/subfig.ins +runfiles size=8 + RELOC/tex/latex/subfig/altsf.cfg + RELOC/tex/latex/subfig/subfig.sty +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-license lppl +catalogue-topics caption subfloat +catalogue-version 1.3 + +name subfigmat +category Package +revision 20308 +shortdesc Automates layout when using the subfigure package +relocated 1 +longdesc Defines an array/matrix-type environment that is used with the +longdesc subfigure package to automate the placement of subfigures (or +longdesc tables or text). The subfigures are placed left-to-right, +longdesc top-to-bottom. +containersize 2592 +containerchecksum d607d2e79b3b0d6e99c8577daa577aa25a0a7d9aecc00c8b7026ef3a923b0e2815837d257599dcfdb1e5320305f492bf17845f5c6cd487b476e789c5140e01c3 +doccontainersize 286940 +doccontainerchecksum 6cfbc274a466796ed0478e9c43cf68d51bbf5379691ea6848968c48cabcfd54525075727463905e48b64946df9822cd10903c562a2f7d546b3d2cd2e9ef11db4 +docfiles size=72 + RELOC/doc/latex/subfigmat/subfigmat-doc.pdf details="Package documentation" + RELOC/doc/latex/subfigmat/subfigmat-doc.tex +runfiles size=2 + RELOC/tex/latex/subfigmat/subfigmat.sty +catalogue-ctan /macros/latex/contrib/subfigmat +catalogue-license lppl +catalogue-topics matrix float +catalogue-version 1.0 + +name subfigure +category Package +revision 15878 +shortdesc Deprecated: Figures divided into subfigures +relocated 1 +longdesc Provides support for the manipulation and reference of small or +longdesc 'sub' figures and tables within a single figure or table +longdesc environment. It is convenient to use this package when your +longdesc subfigures are to be separately captioned, referenced, or are +longdesc to be included in the List-of-Figures. A new \subfigure command +longdesc is introduced which can be used inside a figure environment for +longdesc each subfigure. An optional first argument is used as the +longdesc caption for that subfigure. The package is now considered +longdesc obsolete: it was superseded by subfig, but users may find the +longdesc more recent subcaption package more satisfactory. +containersize 4868 +containerchecksum d4ca2ef4c52c84ddda85ee95328c9d3e97ef601db4f08ea508bc53393e3b2722224273ac63f749d6a922c7b42787e932d7f60ed3ceb03667fcf8fc591d4ac97f +doccontainersize 344716 +doccontainerchecksum 46c2950db73fb557e81887f605b866827b6ae7e027a684f0d24cb3f9d5962a3d83aad97b84e61617381af8d0949057df17ef45d629e992e51c80bce3474cc742 +docfiles size=106 + RELOC/doc/latex/subfigure/README details="Readme" + RELOC/doc/latex/subfigure/ltxdoc.cfg + RELOC/doc/latex/subfigure/subfigure.pdf details="Package documentation" + RELOC/doc/latex/subfigure/test.tex + RELOC/doc/latex/subfigure/test2.tex + RELOC/doc/latex/subfigure/test3.tex + RELOC/doc/latex/subfigure/test4.tex + RELOC/doc/latex/subfigure/test5.tex +srccontainersize 36364 +srccontainerchecksum 1295290b8c5cc814f6cbadc2be418413d35a0a1cfd313a69b05fc8e5e47ecf5da0cbba73b81f499f0085a55b7e783b9bd82b29ce1072792fa34e422596a117c7 +srcfiles size=41 + RELOC/source/latex/subfigure/Makefile + RELOC/source/latex/subfigure/subfigure.dtx + RELOC/source/latex/subfigure/subfigure.ins +runfiles size=5 + RELOC/tex/latex/subfigure/subfigure.cfg + RELOC/tex/latex/subfigure/subfigure.sty +catalogue-also subfloat +catalogue-ctan /obsolete/macros/latex/contrib/subfigure +catalogue-license lppl +catalogue-topics caption subfloat obsolete +catalogue-version 2.1.5 + +name subfiles +category Package +revision 56977 +shortdesc Individual typesetting of subfiles of a "main" document +relocated 1 +longdesc Using this package the user can handle multi-file projects more +longdesc comfortably, making it possible to both process the subsidiary +longdesc files by themselves and to process the main file that includes +longdesc them, without making any changes to either. +depend import +containersize 2284 +containerchecksum 8f842b0debcae3110f0a4b2f59047cd55c2726d128bf3e159f2745a4b8a645c3f8471fe218ca34c32f2b35d42d1c5023a25f09fc3bf0c1a4f0c33197776b1cec +doccontainersize 236484 +doccontainerchecksum f54f52c5cee01b7ae8e01bff5a4d828b5c6708c31f2cf40d7e83c8a91c4c597945695dd7062b6088d3f91f7a9858e3227c850d658ae7a7bf94392e00e3eaf9c7 +docfiles size=59 + RELOC/doc/latex/subfiles/README details="Readme" + RELOC/doc/latex/subfiles/subfiles.pdf details="Package documentation" +srccontainersize 9080 +srccontainerchecksum 2623a0ec244722c1e3194d9ff1237305c1b7bf8c3baf6f60edd69b165bbd5ea83fb73ad23bf9aac1937b4ecf1059754e798eb2c97f7bab5d550fabbe84b752c0 +srcfiles size=9 + RELOC/source/latex/subfiles/subfiles.dtx + RELOC/source/latex/subfiles/subfiles.ins +runfiles size=3 + RELOC/tex/latex/subfiles/subfiles.cls + RELOC/tex/latex/subfiles/subfiles.sty +catalogue-also combine standalone +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-license lppl1.3 +catalogue-topics subdocs class +catalogue-version 2.2 + +name subfloat +category Package +revision 29349 +shortdesc Sub-numbering for figures and tables +relocated 1 +longdesc This package enables sub-numbering of floats (figures and +longdesc tables) similar to the subequations-environment of the amsmath +longdesc package. The subfloat package is not to be confused with the +longdesc subfig package which generates sub-figures within one normal +longdesc figure, and manages their placement; subfloat only affects +longdesc captions and numbering. +containersize 2032 +containerchecksum d5bd48fe7634ef6deec540595fd23aea21d95d7c68d053bc65eeebc950e35064add73e5b81e92d3a3d4a4dc938448d9c9a27bd0f1a625e4a9f425d4e2d55f237 +doccontainersize 89332 +doccontainerchecksum 400b9b272e51cd9fa7370f1cf7cb354dc1235fc41d57fb07061dd08b44e06cfc17d38c1be3fd5bafb5ed6bd0404660c46c9bbbfd2fb852297f283be85424c088 +docfiles size=30 + RELOC/doc/latex/subfloat/ChangeLog + RELOC/doc/latex/subfloat/README details="Readme" + RELOC/doc/latex/subfloat/install.sh + RELOC/doc/latex/subfloat/subfloat.pdf details="Package documentation" +srccontainersize 7148 +srccontainerchecksum e72b55996a07665b1deb038c5924e7a71c7b7aea761a1420d4c38d64c1ee98b8663b4a996ae39a869cb12b6ef99efd09c989f937bee18f05a1eba57856dc686f +srcfiles size=10 + RELOC/source/latex/subfloat/Makefile + RELOC/source/latex/subfloat/subfloat.dtx + RELOC/source/latex/subfloat/subfloat.ins +runfiles size=2 + RELOC/tex/latex/subfloat/subfloat.sty +catalogue-ctan /macros/latex/contrib/subfloat +catalogue-license lppl +catalogue-topics subfloat +catalogue-version 2.14 + +name substances +category Package +revision 40989 +shortdesc A database of chemicals +relocated 1 +longdesc The package provides the means to create a database-like file +longdesc that contains data of various chemicals. These data may be +longdesc retrieved in the document; an index of the chemicals mentioned +longdesc in the document can be created.. +containersize 4780 +containerchecksum c7e3d72a506242b79e99c531bc550c81081d59c5a850af52ca3b86054a5eae42f9f1ac5c7808f54c404bee829f4cafaa1807c46ac7b994cd0f88ade1aec94c5a +doccontainersize 578964 +doccontainerchecksum b2900ddbd6f8618522db171c5fb8b35ce5e5ab6b51fde609a18e6b5656437709772dba683767ad23ce955463a869c483e5e3fe81e1f9b5f7523f4f0cdb87a4d9 +docfiles size=152 + RELOC/doc/latex/substances/README details="Readme" + RELOC/doc/latex/substances/substances-examples.sub + RELOC/doc/latex/substances/substances_en.pdf details="Package documentation" + RELOC/doc/latex/substances/substances_en.tex +runfiles size=6 + RELOC/tex/latex/substances/substances-default.def + RELOC/tex/latex/substances/substances.sty +catalogue-ctan /macros/latex/contrib/substances +catalogue-license lppl1.3 +catalogue-topics chemistry expl3 +catalogue-version 0.2a + +name substitutefont +category Package +revision 32066 +shortdesc Easy font substitution +relocated 1 +longdesc Many free fonts are extensions of a basic font family with new +longdesc glyphs or shapes. Such fonts may be given a new name due to +longdesc licence reasons or to the creator's preference. The package +longdesc facilitates the task of setting up a font family as substitute +longdesc for another one, using its \substitutefont command. +containersize 1604 +containerchecksum d060c12b1283ebcf314d6f9f6efd2ed94151ae7030a3d6e424478b2e2cd05753260837f1b9c5003735e27a7eba0313f29263e9a8a8892264bec131bbe07ef9d1 +doccontainersize 1430388 +doccontainerchecksum ce241b95d029651d2de4464880f7f59e4909939697537cf5257bc2e132a476147263c8e9253ddd1fd35fd62dba73cf4d0d06d41bde26b11776b83c456adb0fb4 +docfiles size=374 + RELOC/doc/latex/substitutefont/README details="Readme" + RELOC/doc/latex/substitutefont/cyrillic-lm-lgc.pdf + RELOC/doc/latex/substitutefont/cyrillic-lm-lgc.tex + RELOC/doc/latex/substitutefont/cyrillic-paratype.pdf + RELOC/doc/latex/substitutefont/cyrillic-paratype.tex + RELOC/doc/latex/substitutefont/greek-palatino-didot.pdf + RELOC/doc/latex/substitutefont/greek-palatino-didot.tex + RELOC/doc/latex/substitutefont/greek-times-artemisia.pdf + RELOC/doc/latex/substitutefont/greek-times-artemisia.tex + RELOC/doc/latex/substitutefont/substitutefont-doc.html + RELOC/doc/latex/substitutefont/substitutefont-test.pdf + RELOC/doc/latex/substitutefont/substitutefont-test.tex + RELOC/doc/latex/substitutefont/substitutefont.sty.html +runfiles size=1 + RELOC/tex/latex/substitutefont/substitutefont.sty +catalogue-ctan /macros/latex/contrib/substitutefont +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 0.1.4 + +name substr +category Package +revision 16117 +shortdesc Deal with substrings in strings +relocated 1 +longdesc The package provides commands to deal with substrings of +longdesc strings. Macros are provided to: determine if one string is a +longdesc substring of another, return the parts of a string before or +longdesc after a substring, and count the number of occurrences of a +longdesc substring. +containersize 2040 +containerchecksum 979aaff088f7bd521e2af3f008fd6fb9dc908ec7c9f3963ab7b6338ece92b2a7eebbf9b4974ab87f73cc71ecf7ba92c25d22be8d1fdd297d066da72f61ad1d4f +doccontainersize 17760 +doccontainerchecksum 97adaaa986a8540364cd6901448eb47bfbe9d53842f412100696621c55d2209807d0d527c8126d9df7b5b38b0ba2f0598e79a467934d9069fe96a2d9125b701f +docfiles size=8 + RELOC/doc/latex/substr/ChangeLog + RELOC/doc/latex/substr/README details="Readme" + RELOC/doc/latex/substr/testsubstr.pdf + RELOC/doc/latex/substr/testsubstr.tex +runfiles size=2 + RELOC/tex/latex/substr/substr.sty +catalogue-ctan /macros/latex/contrib/substr +catalogue-license lppl1 +catalogue-topics macro-supp +catalogue-version 1.2 + +name subsupscripts +category Package +revision 16080 +shortdesc A range of sub- and superscript commands +relocated 1 +longdesc The package provides a comprehensive and flexible set of +longdesc commands for combinations of left and right sub- and +longdesc superscripts. +containersize 896 +containerchecksum a1578fb66e6068955c4aa69b8ccb951e79fe55616ceaac8d5f01b62d8c6e862d816e0e1ff6c387bad8b8416a3993699872b0ee3df4f432a733ded0eaa60424fe +doccontainersize 101524 +doccontainerchecksum b1424b69633b1c09fde52a38c2e50b6c744671292875688b295586bfcd340283c03a122c83298e8be9bf714201db35f0000c41720a6db49cc09591ae69a3d176 +docfiles size=31 + RELOC/doc/latex/subsupscripts/README details="Readme" + RELOC/doc/latex/subsupscripts/SubSupScripts.pdf details="Package documentation" + RELOC/doc/latex/subsupscripts/SubSupScripts.tex +runfiles size=1 + RELOC/tex/latex/subsupscripts/subsupscripts.sty +catalogue-ctan /macros/latex/contrib/subsupscripts +catalogue-license lppl +catalogue-topics subsup-pos maths physics +catalogue-version 1.0 + +name subtext +category Package +revision 51273 +shortdesc Easy text-style subscripts in math mode +relocated 1 +longdesc This LaTeX package gives easy access to text-style subscripts +longdesc in math mode by providing an optional argument to _. This is +longdesc implemented by using the \text{} command from the amstext +longdesc package. +containersize 1180 +containerchecksum 0ab32328d346bddddd37094ec086727222bd386bd24c1aa164aaa0cba85d60cf6be2aa26d64bd0bcf63f49b0188e79a7212e8b98d2d7400f828ccf10f60272f3 +doccontainersize 43244 +doccontainerchecksum cd3fdf312f2bd7d30c3aee67309220e8e75d20ea69ffcb17106812f0423791dbeb26a8ddd3621cd48e6b3cab5c910083f49aa18b439d9f8114c08002cdf8826b +docfiles size=21 + RELOC/doc/latex/subtext/COPYING + RELOC/doc/latex/subtext/README details="Readme" + RELOC/doc/latex/subtext/subtext.pdf details="Package documentation" + RELOC/doc/latex/subtext/subtext.tex +runfiles size=1 + RELOC/tex/latex/subtext/subtext.sty +catalogue-ctan /macros/latex/contrib/subtext +catalogue-license gpl3 +catalogue-topics maths +catalogue-version 1.1 + +name sudoku +category Package +revision 15878 +shortdesc Create sudoku grids +relocated 1 +longdesc The sudoku package provides an environment for typesetting +longdesc sudoku grids. A sudoku puzzle is a 9x9 grid where some of the +longdesc squares in the grid contain numbers. The rules are simple: +longdesc every column can only contain the digits 1 to 9, every row can +longdesc only contain the digits 1 to 9 and every 3x3 box can only +longdesc contain the digits 1 to 9. More information, including help and +longdesc example puzzles, can be found at sudoku.org.uk. This site also +longdesc has blank sudoku grids (or worksheets), but you will not need +longdesc to print them from there if you have this package installed. +containersize 1864 +containerchecksum a5a9ed2ec9a5eb2cfe973094c6bfca609923ee14ec51916051985bcb2533d1f6670776877252f50a2f16fb54e3318adb15fde907182da215d1db81327fee313b +doccontainersize 54904 +doccontainerchecksum 7e1fc099e6f84e0e22f6e479bfc611ebb8668fd1391c07f877abf4455579248b99108c9b6224da3a0abec4e0853ac8ba8f817e80832629a1d3b624b16394c29f +docfiles size=19 + RELOC/doc/latex/sudoku/CHANGES + RELOC/doc/latex/sudoku/README details="Readme" + RELOC/doc/latex/sudoku/sudoku.pdf details="Package documentation" +srccontainersize 4356 +srccontainerchecksum 05e89ce1f640ed336d8d7447681517b6fb827fed72e8245998c0b11f7f767b8f20e9688f3740223213fed0e860c9304748a11fe94b1a8244697c79a0db54d441 +srcfiles size=4 + RELOC/source/latex/sudoku/sudoku.dtx + RELOC/source/latex/sudoku/sudoku.ins +runfiles size=1 + RELOC/tex/latex/sudoku/sudoku.sty +catalogue-ctan /macros/latex/contrib/sudoku +catalogue-license lppl +catalogue-topics games +catalogue-version 1.0 + +name sudokubundle +category Package +revision 15878 +shortdesc A set of sudoku-related packages +relocated 1 +longdesc The bundle provides three packages: printsudoku, which provides +longdesc a command \sudoku whose argument is the name of a file +longdesc containing a puzzle specification; solvesudoku, which attempts +longdesc to find a solution to the puzzle in the file named in the +longdesc argument; and createsudoku, which uses the random package to +longdesc generate a puzzle according to a bunch of parameters that the +longdesc user sets via macros. The bundle comes with a set of +longdesc ready-prepared puzzle files. +containersize 8244 +containerchecksum da5c7954dda7fb8076d9b2fbd8a379e416a162ce0039a0566799bba0ddea975f3b951b7615cf50819440b46c419277a080b6e1c3c514e73483b4f81420a4b6d4 +doccontainersize 281764 +doccontainerchecksum 6878ae9a2734e5efb51f04fe24cc30546a2c812ccfd5ae62cbbbc94496a081b03f7d2bfcfa6c7edd610cd6eccd741c3dcc3441a6d437eea5f310865dd13d30f9 +docfiles size=97 + RELOC/doc/latex/sudokubundle/README details="Readme" + RELOC/doc/latex/sudokubundle/somesudoku.tex + RELOC/doc/latex/sudokubundle/sudokubundle.pdf details="Package documentation" +srccontainersize 27196 +srccontainerchecksum 00b0b27e9b97dcca17113d8f314480b2617d18603bf022631f6553f2b8a7c4e7d30e1718cfe4ce1ede7996d7ebe7905d25480c6516df4b3df65403346c050beb +srcfiles size=36 + RELOC/source/latex/sudokubundle/sudokubundle.dtx + RELOC/source/latex/sudokubundle/sudokubundle.ins +runfiles size=14 + RELOC/tex/latex/sudokubundle/createsudoku.sty + RELOC/tex/latex/sudokubundle/printsudoku.sty + RELOC/tex/latex/sudokubundle/solvesudoku.sty +catalogue-also sudoku +catalogue-ctan /macros/latex/contrib/sudokubundle +catalogue-license lppl +catalogue-topics games +catalogue-version 1.0a + +name suftesi +category Package +revision 57650 +shortdesc A document class for typesetting theses, books and articles +relocated 1 +longdesc The class can be used to typeset any kind of book (originally +longdesc designed for use in the humanities). +containersize 14104 +containerchecksum 831ef011581a27693ec114b66e1f5a80f0605f4228eb31755d9ca202a7b1881530be2ea89b1ba9d0b71ddca88c109da20919d65e5705adac143fb381f19a4180 +doccontainersize 990468 +doccontainerchecksum bf83d581ee054dbc74c2f685c9461bf6233b674a49d2b4d7a989c51f28728b25f3fff7c2f9c53110bb00b91a10b5f978ecb9180d2d5ba93cd6cd01f0be0cc4ec +docfiles size=363 + RELOC/doc/latex/suftesi/README details="Readme" + RELOC/doc/latex/suftesi/suftesi.pdf details="Package documentation" language="en" + RELOC/doc/latex/suftesi/templates.zip +srccontainersize 40176 +srccontainerchecksum 8c4ce79fefe4ad379cbc97dca4d6e046c266c5abc46e2e8422abe145e74199c7518d0c2523015a06eef3f1350880dc2a259c488c60c1a2610b10fdb372dce342 +srcfiles size=52 + RELOC/source/latex/suftesi/suftesi.dtx +runfiles size=24 + RELOC/tex/latex/suftesi/suftesi.cls +catalogue-ctan /macros/latex/contrib/suftesi +catalogue-license lppl1.3 +catalogue-topics book-pub class dissertation +catalogue-version 3.0.2 + +name sugconf +category Package +revision 58752 +shortdesc SAS(R) user group conference proceedings document class +relocated 1 +longdesc The class may be used to typeset articles to be published in +longdesc the proceedings of SAS(R) User group conferences and workshops. +longdesc The layout produced by the class is based on that published by +longdesc SAS Institute (2021). +containersize 2608 +containerchecksum db7082941e64a24fd7b04fd48dae2b78d67314f7483256278a8d8eceb5aeea77e24bea7e7ebb9e3742fed7cbb4add6a5d97281819ccf307b102b8265d00723f6 +doccontainersize 73408 +doccontainerchecksum 4a64c9ff5c9350b80601052093baf0d9ebddf24de17c9ded5cffb299b94cb6b4e6f0beb03c058b8a7a4c4f7cfea118cf8e95b797881ad9f77e879b228ecc2165 +docfiles size=28 + RELOC/doc/latex/sugconf/README details="Readme" + RELOC/doc/latex/sugconf/banner-sgf-2021.png + RELOC/doc/latex/sugconf/sugconf-skeleton.pdf details="Example of use (1)" + RELOC/doc/latex/sugconf/sugconf-skeleton.tex + RELOC/doc/latex/sugconf/sugconf-template.pdf details="Example of use (2)" + RELOC/doc/latex/sugconf/sugconf-template.tex +runfiles size=2 + RELOC/tex/latex/sugconf/sugconf.cls +catalogue-ctan /macros/latex/contrib/conferences/sugconf +catalogue-license lppl +catalogue-topics class journalpub doc-templ std-conform + +name superiors +category Package +revision 51909 +shortdesc Attach superior figures to a font family +relocated 1 +longdesc The package allows the attachment of an arbitrary superior +longdesc figures font to a font family that lacks one. (Superior figures +longdesc are commonly used as footnote markers.) Two superior figures +longdesc fonts are provided--one matching Times, the other matching +longdesc Libertine. +execute addMap superiors.map +containersize 10164 +containerchecksum 783d14d75daa63d108fcf870004a46680c643699ccc7256906a06fc7ca4482ebcee14f120209bd488d5c2890a3c8c33d132a0eb23d4b93d04deb05eca6bd0970 +doccontainersize 327664 +doccontainerchecksum f96d441d9dbd470023c1ecfe3912336f696dea7dcaf7b3c052aabf9c702869cd0ea27a28ffbd34294149c98d5bc23fe004871faafdfc1eb72fcc4fe2e2591d82 +docfiles size=93 + RELOC/doc/fonts/superiors/README details="Readme" + RELOC/doc/fonts/superiors/libfoot0-crop.pdf + RELOC/doc/fonts/superiors/libfoot1-crop.pdf + RELOC/doc/fonts/superiors/stempelfoot0-crop.pdf + RELOC/doc/fonts/superiors/stempelfoot1-crop.pdf + RELOC/doc/fonts/superiors/superiors-doc.pdf details="Package documentation" + RELOC/doc/fonts/superiors/superiors-doc.tex +runfiles size=7 + RELOC/fonts/enc/dvips/superiors/sups.enc + RELOC/fonts/map/dvips/superiors/superiors.map + RELOC/fonts/tfm/public/superiors/libertinesups.tfm + RELOC/fonts/type1/public/superiors/libertinesups.pfb + RELOC/tex/latex/superiors/superiors.sty +catalogue-ctan /fonts/superiors +catalogue-license lppl +catalogue-topics font font-symbol font-type1 font-supp +catalogue-version 1.06 + +name supertabular +category Package +revision 53658 +shortdesc A multi-page tables package +relocated 1 +longdesc The package was a predecessor of longtable; the newer package +longdesc (designed on quite different principles) is easier to use and +longdesc more flexible, in many cases, but supertabular retains its +longdesc usefulness in a few situations where longtable has problems. +containersize 3960 +containerchecksum 68ff94c82b9986983b0a8b0c1e60301067aa20c92c2576e6d0a9b9060d4db48e2770334ae941b6b7fd1a4914098e2125f324e0d5284da52b523a7616552604be +doccontainersize 259052 +doccontainerchecksum 0a36abcb782ea20b3c45d5c42a55fb41c04c3707c9c5b0166f90b7494032376d6756f827f1293cf998b56a84192aed36b6224e4abe14646557d130427f3bb63d +docfiles size=70 + RELOC/doc/latex/supertabular/CATALOG + RELOC/doc/latex/supertabular/ChangeLog + RELOC/doc/latex/supertabular/MANIFEST + RELOC/doc/latex/supertabular/README details="Package documentation" + RELOC/doc/latex/supertabular/supertabular.pdf details="Package documentation" +srccontainersize 13472 +srccontainerchecksum 1c84cbac59404c9f2e1adca379d24168ee4a7f1639110c3c8c5031a17025efb06608a9e8e703395727d1cc4ddb8de87932af14da71475e16d850b78fd5de0b52 +srcfiles size=17 + RELOC/source/latex/supertabular/supertabular.dtx + RELOC/source/latex/supertabular/supertabular.ins +runfiles size=4 + RELOC/tex/latex/supertabular/supertabular.sty +catalogue-also xtab +catalogue-ctan /macros/latex/contrib/supertabular +catalogue-license lppl1.3c +catalogue-topics table table-long +catalogue-version 4.1g + +name suppose +category Package +revision 58819 +shortdesc Abbreviate the word "Suppose" +relocated 1 +longdesc This package provides commands for abbreviating the word +longdesc "Suppose" in six fonts and with other variations. The author +longdesc recommends only using these commands when the immediately +longdesc succeeding strings are mathematical in nature. He does not +longdesc recommend using them in formal work. The package requires +longdesc amsmath, amsfonts, and graphicx. +containersize 2216 +containerchecksum 2a38f9cde5456c19f66cf9ba1feea38f0bc984f1682a2b96671aef1fa0a302e6448d84965d5dab7a2e3c7f8af7691b7d3d4a3a682215bf6509af4e022710e6e4 +doccontainersize 196768 +doccontainerchecksum e75042a55c93a317214e5691734cd22cff0f9a7891cb7e7705c24b57f39d8ae223030b8fcca3a246a83b2cc6af73e8881c415dfc676fd7de224d43ba98d70ee7 +docfiles size=53 + RELOC/doc/latex/suppose/README.md details="Readme" + RELOC/doc/latex/suppose/suppose-doc.pdf details="Package documentation" + RELOC/doc/latex/suppose/suppose-doc.tex +runfiles size=3 + RELOC/tex/latex/suppose/suppose.sty +catalogue-ctan /macros/latex/contrib/suppose +catalogue-license lppl1.3c +catalogue-topics maths abbrev +catalogue-version 1.2.1 + +name susy +category Package +revision 19440 +shortdesc Macros for SuperSymmetry-related work +relocated 1 +longdesc The package provides abbreviations of longer expressions. +containersize 944 +containerchecksum 406a172dfb787c833d8d71e74cde627fad5dc168a1be7a71c4d0006e2f0a6625738ec11f99c9215af6973b101e17abe8eb8355206bdaa18ab3fa6328d7ea42bd +doccontainersize 744 +doccontainerchecksum f802ccdadb5ac2bd96ff27396b020798ac023889f751bc3a286392f62341ee6ac50486899f4e633b90b85320f1bbb679dfba98aa3746d01f0220f07cf65549f6 +docfiles size=2 + RELOC/doc/latex/susy/README + RELOC/doc/latex/susy/README.TEXLIVE +runfiles size=1 + RELOC/tex/latex/susy/susy.sty +catalogue-ctan /macros/latex/contrib/susy +catalogue-license lppl +catalogue-topics shortcut physics + +name svg +category Package +revision 57010 +shortdesc Include and extract SVG pictures in LaTeX documents +relocated 1 +longdesc This bundle contains the two packages svg and svg-extract. The +longdesc svg package is intended for the automated integration of SVG +longdesc graphics into LaTeX documents. Therefore the capabilities +longdesc provided by Inkscape -- or more precisely its command line tool +longdesc -- are used to export the text within an SVG graphic to a +longdesc separate file, which is then rendered by LaTeX. For this +longdesc purpose the two commands \includesvg and \includeinkscape are +longdesc provided which are very similar to the \includegraphics command +longdesc of the graphicx package. In addition, the package svg-extract +longdesc allows the extraction of these graphics into independent files +longdesc in different graphic formats, exactly as it is rendered within +longdesc the LaTeX document, using either ImageMagick or Ghostscript. +containersize 14120 +containerchecksum fd2c051969ea85b2e5c2818292128044038003456f8019efc3c6decb7e811f3eeeed6f3505cb661ee2b4768fa7715f5b3aff4583124d6cc99fef5c5f6a2fed77 +doccontainersize 1077424 +doccontainerchecksum 84f35fd26786e57a8eea08af996d6edc93116529ab364e2b2e23ea6826748435d8487264438f7ff6b44b6d6975e0f18b1f27599e0e554b3d664055296e8fb0d7 +docfiles size=439 + RELOC/doc/latex/svg/LICENSE.md + RELOC/doc/latex/svg/README.md details="Readme" + RELOC/doc/latex/svg/root.C + RELOC/doc/latex/svg/root.svg + RELOC/doc/latex/svg/svg-example.svg + RELOC/doc/latex/svg/svg-preamble.tex + RELOC/doc/latex/svg/svg.pdf details="Package documentation" +srccontainersize 43032 +srccontainerchecksum 834958e4f8a0d8102ff88af0c499455c9bdcf61b0bd2795e25a07507c55ad6e7a5bcd131bbac48e463bd93b4bf49dee9aebe46a8999d75c24218a332814d5974 +srcfiles size=55 + RELOC/source/latex/svg/svg.dtx +runfiles size=21 + RELOC/tex/latex/svg/svg-extract.sty + RELOC/tex/latex/svg/svg.sty +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-license lppl1.3c +catalogue-topics graphics graphics-incl graphics-import +catalogue-version 2.02k + +name svg-inkscape +category Package +revision 32199 +shortdesc How to include an SVG image in LaTeX using Inkscape +relocated 1 +longdesc The document demonstrates the use of SVG images in LaTeX +longdesc documents. Using the "PDF+LaTeX output" option of Inkscape, it +longdesc is possible to include SVG in documents, in which LaTeX +longdesc typesets the text. This results in uniform text style +longdesc throughout the document, including text in images; moreover, +longdesc LaTeX commands may be used in the image's text, providing such +longdesc things as mathematics and references. The document also +longdesc describes how to automate the conversion from SVG to PDF+LaTeX +longdesc using Inkscape. +containersize 648 +containerchecksum e1708206e6fe85271e729ee8c9bf952f45af662a54ad2e816b449fed263fefd8527529ea777b85a50f736d0ec7875afcb3059ed2ac81afd45c54ccdc687c3979 +doccontainersize 197212 +doccontainerchecksum 609d1a7d2256461a749c3a74ac5dffdb7efec999faa15315872f4e61884933cf47c380bfd8eba53de491494cb498a45ba263dc889fa0fd337c48f82842fa6bdd +docfiles size=90 + RELOC/doc/latex/svg-inkscape/InkscapePDFLaTeX.pdf details="The document itself" + RELOC/doc/latex/svg-inkscape/InkscapePDFLaTeX.tex + RELOC/doc/latex/svg-inkscape/README details="Readme" + RELOC/doc/latex/svg-inkscape/image-normal.pdf + RELOC/doc/latex/svg-inkscape/image.pdf + RELOC/doc/latex/svg-inkscape/image.pdf_tex + RELOC/doc/latex/svg-inkscape/image.svg +catalogue-also svg +catalogue-ctan /info/svg-inkscape +catalogue-license lppl1.3 +catalogue-topics graphics-prep + +name svgcolor +category Package +revision 15878 +shortdesc Define SVG named colours +relocated 1 +longdesc The package defines the W3C Scalable Vector Graphics (SVG) +longdesc colour names for use with both the color and PSTricks packages. +containersize 3452 +containerchecksum 617a880e8e94e781819a8ab3a169325e667a18afd83a10f070a56dd9f1813153d8f52cbc3322c264ee249c0e70080421a9e1debf844ecbc7ea6c2368a6ac67e2 +doccontainersize 1380 +doccontainerchecksum 02a28da03f72cd85f30f73282558bd3aa05a82318cc90f56af6ff8ae29e1f205d3c05553598b88ea13206b4d54f64ca36d5a6a8d6f8913e08c185c7bce6011ea +docfiles size=1 + RELOC/doc/latex/svgcolor/README details="Readme" +runfiles size=4 + RELOC/tex/latex/svgcolor/svgcolor.sty +catalogue-ctan /macros/latex/contrib/svgcolor +catalogue-license lppl +catalogue-topics colour +catalogue-version 1.0 + +name svn +category Package +revision 15878 +shortdesc Typeset Subversion keywords +relocated 1 +longdesc The svn package lets you typeset (in LaTeX) the value of +longdesc Subversion keywords. It is approximately an equivalent to the +longdesc rcs package, but for Subversion rather than CVS. Details of +longdesc Subversion (a replacement for CVS) is available from the +longdesc project's home site. +containersize 1616 +containerchecksum a64768b2c5931ba6b9e0b910d7bdc1473a7dbc01a70e41fbda46b4064ca1c41592f3d704496199e41ff27ac4d0ccfad56d9d89e536176010e35c1c8f56312454 +doccontainersize 441216 +doccontainerchecksum 123ce3eda16e4a1c44a85c6d2ef2bf4e5f6b9e9d939cf66eee52ad1326f06b35c457f4df054956dc16c169031909f2ea93aca380d2ba080f6049795a841dc34e +docfiles size=112 + RELOC/doc/latex/svn/README details="Package README" + RELOC/doc/latex/svn/svn.pdf details="Package documentation" +srccontainersize 7644 +srccontainerchecksum 0033fe1be2ede6984cbc0397c20187cc03520b5d893f7ae239bb688354d7198c4e96cfed09dcdffe7160769f6dafc9995d77f8f0f9def753048d4ecb8231ee69 +srcfiles size=7 + RELOC/source/latex/svn/Makefile + RELOC/source/latex/svn/svn.dtx + RELOC/source/latex/svn/svn.ins +runfiles size=1 + RELOC/tex/latex/svn/svn.sty +catalogue-also svninfo svn-multi +catalogue-ctan /macros/latex/contrib/svn +catalogue-license lppl1.3 +catalogue-topics version-control doc-mgmt +catalogue-version 43 + +name svn-multi +category Package +revision 56291 +shortdesc Subversion keywords in multi-file LaTeX documents +longdesc This package lets you typeset keywords of the version control +longdesc system Subversion inside your LaTeX files anywhere you like. +longdesc Unlike the otherwise similar package svn the use of multiple +longdesc files for one LaTeX document is well supported. The package +longdesc uses the author's filehook and currfile packages. The package +longdesc interacts with an external Perl script, to retrieve information +longdesc necessary for the required output. +depend svn-multi.ARCH +containersize 12464 +containerchecksum 237955b5606c5c4fbca7a5c06d4cb1b180ad33647d39337a6814c95a43ecb84004715f3b639353608bd52a64ee3ea70f392ba831ff64499b5162aed64a85da9d +doccontainersize 401628 +doccontainerchecksum 2ae2947a0b15e82a9b241a757ffc60cf5a5be04bb49c4ae5ef7de9dcf9e1ef4082c83e2a57058dd431d16c56eae7647ec4c43dd47a4f0c2a925f4f989a7f6844 +docfiles size=104 + texmf-dist/doc/latex/svn-multi/README details="Readme" + texmf-dist/doc/latex/svn-multi/example_chap1.tex + texmf-dist/doc/latex/svn-multi/example_main.tex + texmf-dist/doc/latex/svn-multi/group_example.tex + texmf-dist/doc/latex/svn-multi/svn-multi.pdf details="Package documentation" + texmf-dist/doc/support/svn-multi/svn-multi-pl.pdf details="Perl script documentation" +srccontainersize 39000 +srccontainerchecksum 45e948ed51554b3b12b883238b628ab6dc43a0ae6a0eea093399d1f771bfc368b2839c568a7183abc3a8cdf687095692e0063cac26869c2fc2b89087096b412e +srcfiles size=42 + texmf-dist/source/latex/svn-multi/svn-multi-pl.dtx + texmf-dist/source/latex/svn-multi/svn-multi.dtx + texmf-dist/source/latex/svn-multi/svn-multi.ins +runfiles size=15 + texmf-dist/scripts/svn-multi/svn-multi.pl + texmf-dist/tex/latex/svn-multi/svn-multi.sty + texmf-dist/tex/latex/svn-multi/svnkw.sty +catalogue-also svn svninfo +catalogue-contact-bugs https://sourceforge.net/p/svn-multi/tickets/ +catalogue-contact-home https://sourceforge.net/p/svn-multi/ +catalogue-contact-repository https://sourceforge.net/p/svn-multi/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/svn-multi +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 2.4d + +name svn-multi.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of svn-multi +containersize 344 +containerchecksum ec309c96373770dd627ee6f615f9b0145a79b2a3735514b9519e0093698ee4a72f4cc5abd67b86ba9f285ed41cb5c5281554b2629df7512bfdad36e4c63f6499 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/svn-multi + +name svn-multi.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of svn-multi +containersize 344 +containerchecksum 4db61d83104465a207e29e61eb12ecd189e691cd1cbf07e41e4ce159f2870c6ea6ab07afd684c6c1e03012c34b6111513c25a82115727e6787cdb4d44c1da527 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/svn-multi + +name svn-multi.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of svn-multi +containersize 340 +containerchecksum 4f1d5983b4bc20a23795d720c0f17f6c3751213ad02c4c71fd403a4bda36f1539829731cbfc9a8c35abfa98b763f294b4857893ff26ff6ccc69c8b313a1080e0 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/svn-multi + +name svn-multi.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of svn-multi +containersize 340 +containerchecksum a50dd4fa60f9f880fe4e0de13c1b00fbbacb9a2bbeeab66d94f3a3a43b22819d654152eb939e68d8ab12fc6f95eddffaf669bd2ddffeb8ba51f63ed838630c16 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/svn-multi + +name svn-multi.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of svn-multi +containersize 340 +containerchecksum 75255ac80c3a7f949532ed8f84f7f5022fba352947b2aee3fd0a4c8c00a7a372c349b1c05961ebd02872abc31745858ae0d357a847fbae8f7df96a8079140897 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/svn-multi + +name svn-multi.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of svn-multi +containersize 344 +containerchecksum 27a03aef15800d712f2b4b21c20eff0520f00a4f94c2989920d2a6ca928bcc31e34eb0e8b183e940e5ecd83aef407e2d208c78300650365ffdb0f8f23bccab50 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/svn-multi + +name svn-multi.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of svn-multi +containersize 344 +containerchecksum e0f956594f4798238772cb37ab5d3aaf32413fd8f9f3ccb65349c4a21c56de76cf66e5c0e451dc5f451882147e95f410a52376c06bb8ff455a9298879dd98e7f +binfiles arch=i386-linux size=1 + bin/i386-linux/svn-multi + +name svn-multi.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of svn-multi +containersize 344 +containerchecksum 522e3721c507e1212a927b3e4f996847430c2c211001cf54f29d94959f32c8eca156d25e1b946eecdbec17bc79146f8abf393771195783895f5287512e37f60a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/svn-multi + +name svn-multi.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of svn-multi +containersize 344 +containerchecksum b02f1c9384d3afbf3deb21e327e426e3ff055e48bff8ca0ffa43f052ae197cae11170a4974df5e5dd30a6488ec50733767e9c8887d7917867eb532008e145955 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/svn-multi + +name svn-multi.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of svn-multi +containersize 344 +containerchecksum d1bada3f858c3f9005471c3720cd44ee4074d972da8435fe2446288b6c57b390d892e788278f98ba1cba2dd822a580696635e0356a36e17a58900ee10a86012f +binfiles arch=universal-darwin size=1 + bin/universal-darwin/svn-multi + +name svn-multi.win32 +category Package +revision 15404 +shortdesc win32 files of svn-multi +containersize 684 +containerchecksum 3cbc1fbcd5c116b6787b787a2f5c7ed4743e9fe97b9787f92358b3a6dae84bac9a00e81729992b195d496409bdeb14ef59e3bdd87018b731efee27e8221db78e +binfiles arch=win32 size=1 + bin/win32/svn-multi.exe + +name svn-multi.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of svn-multi +containersize 344 +containerchecksum cb997fd2e6b3763a1243d4fbc60211c1455d95fd2f763f380c59e18c1d56539a412929f907437a3949bb0e60152213e7f327fcbd00ebf01f928bcec9fffeaf40 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/svn-multi + +name svn-multi.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of svn-multi +containersize 352 +containerchecksum 4e69b6b4a0e5398a76ff93137590d5280e440e47523c50e319ea75a9b424a6f5f4a93dd520c918cc5512f75d9d2493b55ace0a29001c1d75bc1bbfad9190c71d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/svn-multi + +name svn-multi.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of svn-multi +containersize 344 +containerchecksum ef74acf61df44e3996e3e6765a5897744187c7144176eacfdc8fd6fba7ed2388c96922a3a9c6fae965064450f898241de10dc75e97bd3ecde6bb72d258b080f7 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/svn-multi + +name svn-multi.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of svn-multi +containersize 348 +containerchecksum abc3846b6a0fdf02dc4414f64f9c016ed9feffed43bd8c072419e89438ddce63ae319fafecbe8ab0e4cb13c6920bc9db0accd8fefa16f0f4a5abd49149fd839b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/svn-multi + +name svn-multi.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of svn-multi +containersize 344 +containerchecksum cebed4a05452fd33c1b559d5b2b52add324d7dfbbeead8838624342176690f6b857fdfd4b18779dbdef46776ed31a513b1992072fdff4574f1daace60a61cc01 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/svn-multi + +name svn-prov +category Package +revision 56291 +shortdesc Subversion variants of \Provides... macros +relocated 1 +longdesc The package introduces Subversion variants of the standard +longdesc LaTeX macros \ProvidesPackage, \ProvidesClass and \ProvidesFile +longdesc where the file name and date is extracted from Subversion Id +longdesc keywords. The file name may also be given explicitly as an +longdesc optional argument. +containersize 2420 +containerchecksum 0ac31432d148e5b05cadb041ee238fdd27b695a5be2e9553d062084443f97b961e1d9530ce3e5bc0b97ca8cc1bedecf9abb6f189f4e75184816e4ca36f8117d8 +doccontainersize 242148 +doccontainerchecksum 78e6d352d0e19c48d98edb5e5b12ddae32e906cf0693ca3b57ecc9647dd5dde7a6dab394160b9242f2503a7dde54505fff4d38687a06689a463b152e6708f70c +docfiles size=74 + RELOC/doc/latex/svn-prov/svn-prov.pdf details="Package documentation" +srccontainersize 9996 +srccontainerchecksum e67a24270a79b47c853c492b2d72b451a9041e6202fcbe59c20c5203dccaf8d865215a01cf48aebacd8367e2d5a7d1f2efafa93e729d7d3d7269c4d008bce7a1 +srcfiles size=10 + RELOC/source/latex/svn-prov/Makefile + RELOC/source/latex/svn-prov/svn-prov.dtx + RELOC/source/latex/svn-prov/svn-prov.ins +runfiles size=2 + RELOC/tex/latex/svn-prov/svn-prov.sty +catalogue-contact-bugs https://sourceforge.net/p/svn-prov/tickets/ +catalogue-contact-home https://sourceforge.net/p/svn-prov/ +catalogue-contact-repository https://sourceforge.net/p/svn-prov/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/svn-prov +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 3.1862 + +name svninfo +category Package +revision 17554 +shortdesc Typeset Subversion keywords +relocated 1 +longdesc A package for incorporating the values of Subversion keywords +longdesc into typeset documents. Information about Subversion (a +longdesc replacement for CVS) is available from +longdesc http://subversion.tigris.org/ +containersize 3940 +containerchecksum efb2b358bbf5a05b17a591114d0f45a38ff42837751d00b88183265d9bf595ba39377fc53dfe69ca01ae8c1776e6d4ded9c0f636e0e697b946f1d193b39c1537 +doccontainersize 258436 +doccontainerchecksum f8f20578da98d54181475d23be625a80c35af5e464fdcfca80643f8701a029bfdf03cfb13ec42be34312eafc372e42e5bbb4260aaa5066fe004b2fd6fcb2acc7 +docfiles size=70 + RELOC/doc/latex/svninfo/README details="Readme" + RELOC/doc/latex/svninfo/svninfo.init + RELOC/doc/latex/svninfo/svninfo.pdf details="Package documentation" +srccontainersize 12712 +srccontainerchecksum 7ce865a81c8fcd47ff2cf00b5304e40ca0d534ee63b23cf24eb716926f3258a8081ec6aa9bf160a3fce741f1dab6c62e069ada8f5298f9a354d92c34ab36058b +srcfiles size=14 + RELOC/source/latex/svninfo/Makefile + RELOC/source/latex/svninfo/svninfo.dtx + RELOC/source/latex/svninfo/svninfo.ins +runfiles size=5 + RELOC/tex/latex/svninfo/svninfo.cfg + RELOC/tex/latex/svninfo/svninfo.sty +catalogue-also svn svn-multi svn-prov +catalogue-ctan /macros/latex/contrib/svninfo +catalogue-license lppl1 +catalogue-topics version-control doc-mgmt +catalogue-version 0.7.4 + +name svrsymbols +category Package +revision 50019 +shortdesc A font with symbols for use in physics texts +relocated 1 +longdesc The svrsymbols package is a LaTeX interface to the SVRsymbols +longdesc font. The glyphs of this font are ideograms that have been +longdesc designed for use in physics texts. Some symbols are standard +longdesc and some are entirely new. +execute addMap svrsymbols.map +containersize 67560 +containerchecksum 1fadd5259d527daf316502aae6072865b9c6e2efc1ab92f4bc0c3d1070ca4dd863b8f7366c9e6909b7885858c1745cd723003a9f4bd28e8208889da2c21f18d3 +doccontainersize 58768 +doccontainerchecksum 6ff7b9c1efa4b59c453b42fd37dc66e3c79912ff0bf9765b2745fd0cd946a4cfc4a063fc943d1b5919368f8a5809eef5cb7f3a4bf3b6cbdf8200f42180d21f92 +docfiles size=18 + RELOC/doc/fonts/svrsymbols/README details="Readme" + RELOC/doc/fonts/svrsymbols/svrsymbols.pdf details="Package documentation" + RELOC/doc/fonts/svrsymbols/svrsymbols.tex +srccontainersize 3936 +srccontainerchecksum 916ca0f14ff1b9ae99fc609c41fa655eef39bb053ad39274dbe43167dbeed06ebbb9990cde6c040fcbf9b432b4ff89651195df094aa9c35bc172e7932917148d +srcfiles size=4 + RELOC/source/fonts/svrsymbols/svrsymbols.dtx + RELOC/source/fonts/svrsymbols/svrsymbols.ins +runfiles size=26 + RELOC/fonts/afm/public/svrsymbols/SVRsymbols.afm + RELOC/fonts/map/dvips/svrsymbols/svrsymbols.map + RELOC/fonts/opentype/public/svrsymbols/SVRsymbols.otf + RELOC/fonts/tfm/public/svrsymbols/SVRsymbols.tfm + RELOC/fonts/type1/public/svrsymbols/SVRsymbols.pfb + RELOC/tex/latex/svrsymbols/svrsymbols.sty +catalogue-ctan /fonts/svrsymbols +catalogue-license lppl1.3c +catalogue-topics font font-maths font-symbol-maths physics +catalogue-version 2.0b + +name swebib +category Package +revision 15878 +shortdesc Swedish bibliography styles +relocated 1 +longdesc The bundle contains Swedish versions of the standard +longdesc bibliography styles, and of the style plainnat. The styles +longdesc should be funtionally equivalent to the corresponding original +longdesc styles, apart from the Swedish translations. The styles do not +longdesc implement Swedish collation. +containersize 6892 +containerchecksum c34174a73f2264bd0963bc6932f6ce840a84d3c48ec9aeae9f7f92ce25ce5f55dc2e4c05d1eaee54c18b4c0ef9adcf494310cdf0a3e1d73031910b75a6db30c8 +doccontainersize 492 +doccontainerchecksum a3db201554a0b828cfc72d47a22b777fd7b44b25c361a4d8f032cc62658780628e83f6eabfbf342b867fda335c1ddc228347f5fc66651193c8229e0bc6e46f67 +docfiles size=1 + RELOC/doc/latex/swebib/README details="Readme" +runfiles size=27 + RELOC/bibtex/bst/swebib/sweabbrv.bst + RELOC/bibtex/bst/swebib/swealpha.bst + RELOC/bibtex/bst/swebib/sweplain.bst + RELOC/bibtex/bst/swebib/sweplnat.bst + RELOC/bibtex/bst/swebib/sweunsrt.bst +catalogue-ctan /biblio/bibtex/contrib/swebib +catalogue-license lppl1.2 +catalogue-topics bibtex-sty swedish + +name swfigure +category Package +revision 57213 +shortdesc Insert large images that do not fit into a single page +relocated 1 +longdesc Five different display modes are defined in order to place in a +longdesc document large figures that do not fit into a single page. A +longdesc single user macro is defined to handle all five display modes. +containersize 4120 +containerchecksum 128965eab86a5028904bb2486c7adfead525ccc26a912cd4f69b63a11e18fadb3f8b0f42a9ba3e8296952afd3be0be052fa721a0edd6df320827acda82e6271a +doccontainersize 1547640 +doccontainerchecksum 968b87d733ec7bfabab4a7996482c54b184e8e46c8f5e30078e9c8957923c2fda3f136b65d5b1be392b62fce5fd1e016066dd86d42da3e43997b04a723a491fd +docfiles size=651 + RELOC/doc/latex/swfigure/DFscreenshot.pdf + RELOC/doc/latex/swfigure/FSFakeA3.pdf + RELOC/doc/latex/swfigure/FSFakeA3horiz.pdf + RELOC/doc/latex/swfigure/FSFakeA3margins.pdf + RELOC/doc/latex/swfigure/HSfakeimage.jpg + RELOC/doc/latex/swfigure/NFfakeimage.jpg + RELOC/doc/latex/swfigure/README.txt details="Readme" + RELOC/doc/latex/swfigure/RFfakeimage.jpg + RELOC/doc/latex/swfigure/SWfakeImage.jpg + RELOC/doc/latex/swfigure/THFake.pdf + RELOC/doc/latex/swfigure/VSSfake.jpg + RELOC/doc/latex/swfigure/VSfakeimage.jpg + RELOC/doc/latex/swfigure/swfigure-examples.pdf details="Example of use" + RELOC/doc/latex/swfigure/swfigure-examples.tex + RELOC/doc/latex/swfigure/swfigure.pdf details="Package documentation" +srccontainersize 20900 +srccontainerchecksum fa34afb85d7380539e283d5f1aca26468c31b6d631d28618a3cde73e3bfa493a3106f4321a5cbe172d86ef547165fc255f02f44957b28abf15c1b08d36e72952 +srcfiles size=18 + RELOC/source/latex/swfigure/swfigure.dtx +runfiles size=5 + RELOC/tex/latex/swfigure/swfigure.sty +catalogue-ctan /macros/latex/contrib/swfigure +catalogue-license lppl1.3c +catalogue-topics graphics-incl +catalogue-version 0.9.18 + +name swimgraf +category Package +revision 25446 +shortdesc Graphical/textual representations of swimming performances +relocated 1 +longdesc The package provides two macros that produce representations of +longdesc a swimmer's performances. The user records data in a text file +longdesc and specifies as arguments of the macros the date range of +longdesc interest. The macros extract the relevant information from the +longdesc file and process it: \swimgraph produces a graph of the times +longdesc in a single swimming event (specified as an argument), plotting +longdesc long course and short course times in separate lines. Records +longdesc and qualifying times, stored in text files, may optionally be +longdesc included on the graph. \swimtext produces a written record of +longdesc the times in all events. Files of current world and Canadian +longdesc records are included. The package requires the PSTricks and +longdesc keyval packages. For attractive output it also requires a +longdesc colour output device. +containersize 11364 +containerchecksum d4bd2097892db6467ae1c80032e4ff5f39e3da81f45ecf472d350297687609ff37b8498de9e44405ad9c7dd7b483599c844672233d289c6cc4ed1e2b9e2bb842 +doccontainersize 51084 +doccontainerchecksum 2394080a393e2a0cc8e8299dc4debbcc7548186a714454c87662c22a371308c7e8e6705c9dcbf6eca632f2f80788a733f9d5a9f3fddb2f46167fd50654c5bcdc +docfiles size=46 + RELOC/doc/latex/swimgraf/100br1.pdf + RELOC/doc/latex/swimgraf/100br1.tex + RELOC/doc/latex/swimgraf/100br2.pdf + RELOC/doc/latex/swimgraf/100br2.tex + RELOC/doc/latex/swimgraf/README details="Readme" + RELOC/doc/latex/swimgraf/README.TEXLIVE + RELOC/doc/latex/swimgraf/fcanada.dat + RELOC/doc/latex/swimgraf/fcanada11.dat + RELOC/doc/latex/swimgraf/fcanada12.dat + RELOC/doc/latex/swimgraf/fcanada13.dat + RELOC/doc/latex/swimgraf/fcanada14.dat + RELOC/doc/latex/swimgraf/fcanada15.dat + RELOC/doc/latex/swimgraf/fcanada16.dat + RELOC/doc/latex/swimgraf/fcanada17.dat + RELOC/doc/latex/swimgraf/fontario10.dat + RELOC/doc/latex/swimgraf/fontario11.dat + RELOC/doc/latex/swimgraf/fontario12.dat + RELOC/doc/latex/swimgraf/fontario13.dat + RELOC/doc/latex/swimgraf/fontario14.dat + RELOC/doc/latex/swimgraf/fontario15.dat + RELOC/doc/latex/swimgraf/fontario16.dat + RELOC/doc/latex/swimgraf/fontario17.dat + RELOC/doc/latex/swimgraf/fontario8.dat + RELOC/doc/latex/swimgraf/fontario9.dat + RELOC/doc/latex/swimgraf/fworld.dat + RELOC/doc/latex/swimgraf/mcanada.dat + RELOC/doc/latex/swimgraf/mworld.dat + RELOC/doc/latex/swimgraf/sample1.dat + RELOC/doc/latex/swimgraf/sample2.dat + RELOC/doc/latex/swimgraf/text1.pdf + RELOC/doc/latex/swimgraf/text1.tex + RELOC/doc/latex/swimgraf/text2.pdf + RELOC/doc/latex/swimgraf/text2.tex +runfiles size=13 + RELOC/tex/latex/swimgraf/swimgraf.cfg + RELOC/tex/latex/swimgraf/swimgraf.sty +catalogue-ctan /macros/latex/contrib/swimgraf +catalogue-license lppl +catalogue-topics data-disp + +name swrule +category Package +revision 54267 +shortdesc Lines thicker in the middle than at the ends +relocated 1 +longdesc Defines commands that create rules split into a (specified) +longdesc number of pieces, whose size varies to produce the effect of a +longdesc rule that swells in its centre. +containersize 1512 +containerchecksum fbb2a8fd060e41340a876595310b54d069cf808d4e2eacba0d913732fe45a3cea698c1e6e229dd152666f7b509eca424d17378c74ad14edd0d5f08ec85c6c65a +runfiles size=1 + RELOC/tex/generic/swrule/swrule.sty +catalogue-ctan /macros/generic/misc/swrule.sty +catalogue-license other-free +catalogue-topics decoration + +name syllogism +category Package +revision 15878 +shortdesc Typeset syllogisms in LaTeX +relocated 1 +longdesc The package provides a simple, configurable, way for neatly +longdesc typesetting syllogisms and syllogistic-like arguments, composed +longdesc of two premises and a conclusion. +containersize 2728 +containerchecksum 6f74e300794afa114da0f498bf70a389500bd2346bd0bd3d9ecf0f30d6167bfc9ea094024039775c649f5feeaa4b62384072ff26fc0c0fb426634912f440999a +doccontainersize 310384 +doccontainerchecksum 1d2f3cfb453a4964b0e64a486a7c466731fec93e3a4210b216ebe9bc311923f055bbb903c26b5177c34a16a343e5f4e1a0643c7f6bf635dc0762182185f6e362 +docfiles size=95 + RELOC/doc/latex/syllogism/Examples.pdf + RELOC/doc/latex/syllogism/Examples.tex + RELOC/doc/latex/syllogism/README details="Readme" + RELOC/doc/latex/syllogism/syllogism.pdf details="Package documentation" + RELOC/doc/latex/syllogism/syllogism.tex +runfiles size=3 + RELOC/tex/latex/syllogism/syllogism.sty +catalogue-ctan /macros/latex/contrib/syllogism +catalogue-license lppl +catalogue-topics logic +catalogue-version 1.2 + +name symbol +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap usy.map +containersize 36132 +containerchecksum d942031f4a865c9db3f1deb68e9468132e811c88a4de67661a25431506a8ea41b2a9cd36ae0855208802d5b7cd4495b3cc27e9e18996dbf96f2529fecf4683e0 +runfiles size=25 + RELOC/dvips/symbol/config.usy + RELOC/fonts/afm/adobe/symbol/psyb.afm + RELOC/fonts/afm/adobe/symbol/psyr.afm + RELOC/fonts/afm/urw/symbol/usyr.afm + RELOC/fonts/map/dvips/symbol/usy.map + RELOC/fonts/tfm/adobe/symbol/psyr.tfm + RELOC/fonts/tfm/monotype/symbol/msyr.tfm + RELOC/fonts/tfm/urw35vf/symbol/usyr.tfm + RELOC/fonts/type1/urw/symbol/usyr.pfb + RELOC/fonts/type1/urw/symbol/usyr.pfm + RELOC/tex/latex/symbol/uusy.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name sympytexpackage +category Package +revision 57090 +catalogue sympytex +shortdesc Include symbolic computation (using sympy) in documents +relocated 1 +longdesc The bundle supports inclusion of symbolic-python (sympy) +longdesc expressions, as well as graphical output from the sympy +longdesc plotting module (or from matplotlib). +containersize 3636 +containerchecksum 9a1fa177703dbed088861ff47e5b53f3c0f433abe15d471d181368c52e0cdae7350090ce5cb3c25d4ca816d1132eb009359977ada3f3c0b5c3b80bc0873f8110 +doccontainersize 1844 +doccontainerchecksum 0013c9c1e21f70e36e6b30f12d777f9f78b727ee1beb2f893133248fffb75f0bc4523c0787c0e292f197ce1c01b5f37b34c33ae97ed713bd900848657d803c59 +docfiles size=2 + RELOC/doc/latex/sympytexpackage/README details="Readme" + RELOC/doc/latex/sympytexpackage/README.TEXLIVE +srccontainersize 17084 +srccontainerchecksum 45df3251efd8a8e5669f72b83fc8c07c9df777ec90bdae9b8a92ff3c1875fe623574365f69162cc4c2f89e4fc7ea32dd1ac0ce164ee804799496be25466a12bc +srcfiles size=15 + RELOC/source/latex/sympytexpackage/sympytexpackage.dtx + RELOC/source/latex/sympytexpackage/sympytexpackage.ins +runfiles size=4 + RELOC/scripts/sympytexpackage/sympytex.py + RELOC/tex/latex/sympytexpackage/sympytex.sty +catalogue-contact-bugs https://github.com/tmolteno/SympyTeX/issues +catalogue-contact-repository https://github.com/tmolteno/SympyTeX +catalogue-ctan /macros/latex/contrib/sympytexpackage +catalogue-license gpl2 +catalogue-topics callback +catalogue-version 0.3 + +name synctex +category TLCore +revision 54074 +shortdesc engine-level feature synchronizing output and source +longdesc SyncTeX allows navigating between the TeX source and (usually +longdesc PDF) output, in both directions, given a SyncTeX-aware front +longdesc end. It is compiled into most engines and can be enabled with +longdesc the --synctex=1 option. It is developed as part of TeX Live. +depend synctex.ARCH +containersize 464 +containerchecksum 1cc1900df90ceebc6865ce7c4a4befc86d1aa5aeb0f19808526a6cb369d7bd2ecf3c4789817da937e84fdf1fa3c921660e64e3e8a8e215d4f6dd97b2371743c5 +doccontainersize 41740 +doccontainerchecksum 37b7f0e3b86494715763c0d230a076aeec1f41ad658432099871d26b933cd8d0e8e831064cbe462a31a30260004c6dfe9b6b4d555d281d909615910470a2b1ef +docfiles size=17 + texmf-dist/doc/man/man1/synctex.1 + texmf-dist/doc/man/man1/synctex.man1.pdf + texmf-dist/doc/man/man5/synctex.5 + texmf-dist/doc/man/man5/synctex.man5.pdf + +name synctex.aarch64-linux +category TLCore +revision 58149 +shortdesc aarch64-linux files of synctex +containersize 71160 +containerchecksum 104c568c84b6cbe7fe16c5303ff061292dd2c0c383d5947ed484670538cd2b822b632096a0053cfa6bbfc10836636ab24933330841f708ebe166e3254fe3bf17 +binfiles arch=aarch64-linux size=49 + bin/aarch64-linux/synctex + +name synctex.amd64-freebsd +category TLCore +revision 58156 +shortdesc amd64-freebsd files of synctex +containersize 77920 +containerchecksum 4cfe9547c5b36363903fc61907ea904330e2567d82b9e67380a529fa9c84b6f2932ec6c0f90de3659e49d93a1cdb0e37e5ec037d6c611fa49f5ee1a602f5444e +binfiles arch=amd64-freebsd size=51 + bin/amd64-freebsd/synctex + +name synctex.amd64-netbsd +category TLCore +revision 58145 +shortdesc amd64-netbsd files of synctex +containersize 65416 +containerchecksum a9d4bb5a25aab4ff11d5997f4fe2eb18d0e35c87a644ad02e4481d45f9a00027cd77fc26358ee6fc4243b5050417b11387175b883fa58612d4d1fc94d2cc2808 +binfiles arch=amd64-netbsd size=59 + bin/amd64-netbsd/synctex + +name synctex.armhf-linux +category TLCore +revision 58180 +shortdesc armhf-linux files of synctex +containersize 61672 +containerchecksum 7ee1c40aea7730a32c4e6d1120116abc8d8e9bf4d809c947250af2fe2f96e6f76a6c98842be551a031f30e6cec5da72c4432c1f98c4e0986fc5dc8f0d042c15e +binfiles arch=armhf-linux size=40 + bin/armhf-linux/synctex + +name synctex.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of synctex +containersize 73136 +containerchecksum ee65a1eadb01f4098ed2a7a16ab3017b2428444f25cadce134ef42d8abe395b0c226c073fcb70b0c9e6d062c9b70fe1964fb3790a978a23c1332d5f3528975dd +binfiles arch=i386-cygwin size=45 + bin/i386-cygwin/synctex.exe + +name synctex.i386-freebsd +category TLCore +revision 58156 +shortdesc i386-freebsd files of synctex +containersize 72768 +containerchecksum 744502e1809521f9d327310f44e93558df402b4193a296ab54ef7f4e2e44e8a94334e702a7f1958c39ffa810d8049602727d5a14f522e3e3fb6b7555460397c8 +binfiles arch=i386-freebsd size=45 + bin/i386-freebsd/synctex + +name synctex.i386-linux +category TLCore +revision 58136 +shortdesc i386-linux files of synctex +containersize 76204 +containerchecksum 8766137daeec796d6d1669d65b79762f467db39a9856c60cc67a5875fa621d44bac48cf4db475a516bc923a91f95c93535c89d18f423615e91b07d39c276e99a +binfiles arch=i386-linux size=47 + bin/i386-linux/synctex + +name synctex.i386-netbsd +category TLCore +revision 58145 +shortdesc i386-netbsd files of synctex +containersize 62240 +containerchecksum 415f6a3cdbfd690ca43fb3ef2db24dfd08f0464b0b98a57e9d2022f528fde8cce54a46f9180bc049acf739e70f1a14aa1f8c5738aee3cab0b7e299950246fa30 +binfiles arch=i386-netbsd size=52 + bin/i386-netbsd/synctex + +name synctex.i386-solaris +category TLCore +revision 58156 +shortdesc i386-solaris files of synctex +containersize 69152 +containerchecksum 2bdc44fd80073772206fe366ec2a66e6bc807e06a427964157ba488e2e38be12de85734197f508ebecd0e33a1074dc9da8fa525be3f3f37e1ad8332923d67d52 +binfiles arch=i386-solaris size=39 + bin/i386-solaris/synctex + +name synctex.universal-darwin +category TLCore +revision 58157 +shortdesc universal-darwin files of synctex +containersize 133616 +containerchecksum 5be0a5394ede820e1f666d78db5801522c762a76372bda6ad97842fbf4e01f1fe321f6aa7e8aa01ac791190236d50a6710a4dfd00bd1c1588a9b9caff2906254 +binfiles arch=universal-darwin size=115 + bin/universal-darwin/synctex + +name synctex.win32 +category TLCore +revision 58783 +shortdesc win32 files of synctex +containersize 133472 +containerchecksum 892e36cea18af5f6cd9bdfd4ccc8be9a0564e6a16dab45df478674670e62823db235a0d1037c762215a2d2b225a5230f57264e447c0116c4539173a734654c05 +binfiles arch=win32 size=74 + bin/win32/synctex.exe + +name synctex.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of synctex +containersize 72148 +containerchecksum e932034b9b225cb0bc9cfbd296234c7c06303129eabdaea30f07f5bc519c71826a11a463e85b6b1298c5d100d0bdd658299e1285e87951b4b098d5edaf05516e +binfiles arch=x86_64-cygwin size=44 + bin/x86_64-cygwin/synctex.exe + +name synctex.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of synctex +containersize 67524 +containerchecksum 89986c63a2f1e574944deab48443e0fabadf14585f9c4ac548194b25387ec82f6a854b7c1216c2c5ca3912e641bdf7eeeae26649aaaf273afb96473cf99a17bc +binfiles arch=x86_64-darwinlegacy size=42 + bin/x86_64-darwinlegacy/synctex + +name synctex.x86_64-linux +category TLCore +revision 58136 +shortdesc x86_64-linux files of synctex +containersize 72812 +containerchecksum 5dad93eb9940981b98ee72ccb08f051b8ead5c9d1c12ffb66264a648221a323cf67f80d1821d9d24683fd766e3dd8ec0cf86e59ef3b75f69ff185a81c5d71739 +binfiles arch=x86_64-linux size=46 + bin/x86_64-linux/synctex + +name synctex.x86_64-linuxmusl +category TLCore +revision 58136 +shortdesc x86_64-linuxmusl files of synctex +containersize 74536 +containerchecksum db172eeeb64e76c5922e7afbf8e571793c7066a43d2d63ed48f8cbef0ca9febc3e5ca7fe23341fc6d2056616400a474c4dc3fbda7044a658fd49a91823994993 +binfiles arch=x86_64-linuxmusl size=48 + bin/x86_64-linuxmusl/synctex + +name synctex.x86_64-solaris +category TLCore +revision 58156 +shortdesc x86_64-solaris files of synctex +containersize 75080 +containerchecksum b5f2d984686cb3d916d3383b023aaab567896c42e68f03114e71b3b3ec8cdb03e41ae1a73ec604c31c27becec055ed5120b9c05da3e121d1e78eea2dfb3138ff +binfiles arch=x86_64-solaris size=46 + bin/x86_64-solaris/synctex + +name synproof +category Package +revision 15878 +shortdesc Easy drawing of syntactic proofs +relocated 1 +longdesc The package provides a set of macros based on PSTricks that +longdesc will enable you to draw syntactic proofs easily (inspired by +longdesc the Gamut books). Very few commands are needed, however fine +longdesc tuning of the various parameters (dimensions) can still be +longdesc achieved through "key=value" pairs. +containersize 2200 +containerchecksum 934235e8eb4ca51a906ca287c5524cc3b0b69c649b47a9fa0fc2c9fd664199eb6fce835d435e97e0b24bd0662ee68b8db471e3546c4bdb402bfcc19b1fd02c50 +doccontainersize 61492 +doccontainerchecksum 9a12fab29c7c0118bd97a7af1585ae97c5086e7a1e9529624b7fa43a723151e00537b9488a42628d7f6e93b87d092fe0dd18476c7d232e3ee74597186a92585b +docfiles size=21 + RELOC/doc/latex/synproof/README details="Readme" + RELOC/doc/latex/synproof/synproof-doc.pdf details="Package documentation" + RELOC/doc/latex/synproof/synproof-doc.tex +runfiles size=2 + RELOC/tex/latex/synproof/synproof.sty +catalogue-ctan /macros/latex/contrib/synproof +catalogue-license lppl +catalogue-topics logic linguistic +catalogue-version 1.0 + +name syntax +category Package +revision 15878 +catalogue syntax2 +shortdesc Creation of syntax diagrams +relocated 1 +longdesc Create syntax diagrams using special environments and commands +longdesc to represent the diagram structure. +containersize 2632 +containerchecksum be1e049a98cd7e45cec9675e707575107af9c613028012b8fbfa658c6c9cbbac5782d3a7111f37edc719fb90e7c168c9a98a3d30a4c997b6ac4ed0691fc7fdc3 +doccontainersize 104576 +doccontainerchecksum 7d0754c08081abc9867d0d40fc910ae5f8b34518004bf698dddc184f0b514d75a7feb3085870cf8322b3d6f3bc4c32ab50acdaeb56b574bf41604a18c23a6656 +docfiles size=35 + RELOC/doc/latex/syntax/README details="Package README" language="de" + RELOC/doc/latex/syntax/syntaxintro.pdf details="Introduction to the package" language="de" + RELOC/doc/latex/syntax/syntaxintro.tex + RELOC/doc/latex/syntax/syntaxtest.pdf + RELOC/doc/latex/syntax/syntaxtest.tex +runfiles size=3 + RELOC/tex/latex/syntax/syntax.tex +catalogue-also syntax-mdw +catalogue-ctan /macros/latex/contrib/syntax +catalogue-license gpl +catalogue-topics syntax diagram + +name syntaxdi +category Package +revision 56685 +shortdesc Create "railroad" syntax diagrams +relocated 1 +longdesc This package provides TikZ styles for creating special syntax +longdesc diagrams known as "railroad" diagrams. The package was +longdesc originally distributed as part of the schule bundle. +containersize 1340 +containerchecksum 79d5df672a25ed58919b7e054be992986edc8484348388d5eb318dfa99fc55ad3c452d6924c857c1bfb46361d59fe1d4e38cf84c9cfecd241f7d0c9d184f7995 +doccontainersize 187844 +doccontainerchecksum a7c370c6b6c3877098e5cb216c4e82d382dfba0627de6abbca8f4e1bc6f94f53f11bac7456be213fa632d501dbabe910ef94680cb2cb20549c292ec5ffe79451 +docfiles size=48 + RELOC/doc/latex/syntaxdi/README details="Readme" + RELOC/doc/latex/syntaxdi/syntaxdi.pdf details="Package documentation" + RELOC/doc/latex/syntaxdi/syntaxdi.tex +runfiles size=1 + RELOC/tex/latex/syntaxdi/syntaxdi.sty +catalogue-ctan /graphics/pgf/contrib/syntaxdi +catalogue-license lppl1.3 +catalogue-topics graphics diagram diagram-flow pgf-tikz +catalogue-version 0.8.2 + +name syntrace +category Package +revision 15878 +shortdesc Labels for tracing in a syntax tree +relocated 1 +longdesc This package adds support for traces in trees created using +longdesc either the synttree or the qtree package. The package provides +longdesc two commands (\traceLabel and \traceReference) to set and use a +longdesc trace. +containersize 1496 +containerchecksum 613c70859eb0c710c43fa4a62fe8b8d38a407ffe94c532d80927d00fd47c17b6570040f5d9ace5035f4dc53deef97419f52ecdf021ab11d5629445153b85ebd2 +doccontainersize 48700 +doccontainerchecksum 0349aba5e1455a6676cda43c7981677cfadf77b9898a79d90104808e77cd351f219392a91f83b670f7f1801babf53854f8719c32b8da112fde849b7b120e2327 +docfiles size=17 + RELOC/doc/latex/syntrace/README + RELOC/doc/latex/syntrace/syntrace.pdf details="Package documentation" +srccontainersize 2684 +srccontainerchecksum a6b5e08c1eae9b6c631f2d2316bf0d2afba452be7f8aed0d6f9724dedc7d50785ef09e1f29986d2cf869988e3b5c59332cd2b44d185b298e59333131413314f3 +srcfiles size=3 + RELOC/source/latex/syntrace/syntrace.dtx + RELOC/source/latex/syntrace/syntrace.ins +runfiles size=1 + RELOC/tex/latex/syntrace/syntrace.sty +catalogue-ctan /macros/latex/contrib/syntrace +catalogue-license lppl +catalogue-topics tree +catalogue-version 1.1 + +name synttree +category Package +revision 16252 +shortdesc Typeset syntactic trees +relocated 1 +longdesc A package to typeset syntactic trees such as those used in +longdesc Chomsky's Generative grammar, based on a description of the +longdesc structure of the tree. +containersize 3568 +containerchecksum 3fa23536373a41957d985e5a0aac744473459d195c1e7e00e60f2b4aeab15d8f150bc76fab05068d5ae4994ce52ba4dc35380ab042cc9917a23962b2f0a7094a +doccontainersize 133628 +doccontainerchecksum 164c74dfacdb0cafab112d270b15ad0b7c58be0e8d65c5ce08f80182971b63026584c5c071988d9b7053f99b9d81c893f8b103a3145f1128ffad880259a16264 +docfiles size=41 + RELOC/doc/latex/synttree/README details="Readme" + RELOC/doc/latex/synttree/synttree.pdf details="Package documentation" +srccontainersize 10124 +srccontainerchecksum 3fcb8ccf6da19cb01f6a80f97bf98a84c86ca7d06a95b193cbb4b33968c80cd842554ab8d5a9127af0434b9abc83f2cbff428bf1bb976fba01e56d5770f6e20d +srcfiles size=10 + RELOC/source/latex/synttree/synttree.dtx + RELOC/source/latex/synttree/synttree.ins +runfiles size=4 + RELOC/tex/latex/synttree/synttree.sty +catalogue-ctan /macros/latex/contrib/synttree +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.4.2 + +name systeme +category Package +revision 55015 +shortdesc Format systems of equations +relocated 1 +longdesc The package allows you to enter systems of equations or +longdesc inequalities in an intuitive way, and produces typeset output +longdesc where the terms and signs are aligned vertically. The package +longdesc works with plain TeX or LaTeX, but e-TeX is required. Cette +longdesc petite extension permet de saisir des systemes d'equations ou +longdesc inequations de facon intuitive, et produit un affichage ou les +longdesc termes et les signes sont alignes verticalement. +containersize 7368 +containerchecksum 5ddd525564a009104ef2f345b6513c08423868a91105381c66372176f41875fba24f0d27ceb648daee113514bb22a3e68d5134fce82394f3e7159af68cb81703 +doccontainersize 85044 +doccontainerchecksum 9a3fe5864af37878b861220ebdb6613635dcfd563a0149ebeaf0c725af608d8f24f5d2e799b19546f82299dd38e2a4695b6b08d056fad1ec2f8a134326915325 +docfiles size=27 + RELOC/doc/generic/systeme/README + RELOC/doc/generic/systeme/systeme_fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/systeme/systeme_fr.tex +runfiles size=8 + RELOC/tex/generic/systeme/systeme.sty + RELOC/tex/generic/systeme/systeme.tex +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-license lppl1.3c +catalogue-topics maths maths-syseqn simplified +catalogue-version 0.34 + +name t-angles +category Package +revision 15878 +shortdesc Draw tangles, trees, Hopf algebra operations and other pictures +relocated 1 +longdesc A LaTeX2e package for drawing tangles, trees, Hopf algebra +longdesc operations and other pictures. It is based on emTeX or TPIC +longdesc \specials. Therefore, it can be used with the most popular +longdesc drivers, including emTeX drivers, dviwin, xdvi and dvips, and +longdesc (using some code from ConTeXt) it may also be used with +longdesc pdfLaTeX. +containersize 5684 +containerchecksum dae9953288c0067e233ca26d2d5e7ea32207790eb16bcff2f0f56180dd9a65e70c234de48652d053a858ec92940c3c5fea10c699c697b65a249a8c84fa050b71 +doccontainersize 117652 +doccontainerchecksum 32dc9adfda93bee5e61eb062e6970f6e093a09016a6ddf32f82d110b7717916fcc92f961c8be682958d1f3f345e02ad49cde4a85ad4a0d0add08a0bc80109d8f +docfiles size=39 + RELOC/doc/latex/t-angles/README details="Readme" + RELOC/doc/latex/t-angles/t-manual.pdf details="Package documentation" + RELOC/doc/latex/t-angles/t-manual.tex +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-license gpl +catalogue-topics maths graphics-in-tex + +name t1utils +category TLCore +revision 57972 +shortdesc Simple Type 1 font manipulation programs +longdesc A collection of simple programs for manipulating Adobe Type 1 +longdesc fonts, comprising: - t1ascii: convert PFB (binary) to PFA +longdesc (ascii) fonts; - t1binary: convert PFA to PFB fonts; - +longdesc t1disasm: convert PFA or PFB fonts to human-readable and +longdesc -editable format; - t1asm: reassemble such editable formats to +longdesc a font; - t1unmac: extract font resources from a Macintosh font +longdesc file; and - t1mac: generate a Macintosh font from a Type 1 +longdesc font. +depend t1utils.ARCH +containersize 592 +containerchecksum 9065b22ec60747b603c758c3bae67ff06759ebf97c979028ac940a1b773e3a20f5f249a4a61b7564038dcda3c72ef635315e64a3b8692501cc8f6c30ff7fa989 +doccontainersize 94444 +doccontainerchecksum 34eacd2f14282108ba41d49cc68c066e12383c4873c9cb8a2389300f9c5685b3f3d7d0626e33008d28c229f8311daf2404b2bfa164fa550184f1e856163ab386 +docfiles size=38 + texmf-dist/doc/man/man1/t1ascii.1 + texmf-dist/doc/man/man1/t1ascii.man1.pdf + texmf-dist/doc/man/man1/t1asm.1 + texmf-dist/doc/man/man1/t1asm.man1.pdf + texmf-dist/doc/man/man1/t1binary.1 + texmf-dist/doc/man/man1/t1binary.man1.pdf + texmf-dist/doc/man/man1/t1disasm.1 + texmf-dist/doc/man/man1/t1disasm.man1.pdf + texmf-dist/doc/man/man1/t1mac.1 + texmf-dist/doc/man/man1/t1mac.man1.pdf + texmf-dist/doc/man/man1/t1unmac.1 + texmf-dist/doc/man/man1/t1unmac.man1.pdf +catalogue-contact-home http://www.lcdf.org/~eddietwo/type/#t1utils +catalogue-ctan /fonts/utilities/t1utils +catalogue-license pd +catalogue-topics ps-manip + +name t1utils.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of t1utils +containersize 40048 +containerchecksum e8e429cb7bdc2ea3c16a33099d69f6cbb184404965cee73a21c8834a1442c52d9d82278658abf315b54066ef7943ee479220b1c0f0c0d1347aed633514d7ec8a +binfiles arch=aarch64-linux size=64 + bin/aarch64-linux/t1ascii + bin/aarch64-linux/t1asm + bin/aarch64-linux/t1binary + bin/aarch64-linux/t1disasm + bin/aarch64-linux/t1mac + bin/aarch64-linux/t1unmac + +name t1utils.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of t1utils +containersize 51700 +containerchecksum a606c1764479eccb7d31b4a01a2fd5e58698404b2af6d9c6ec66c50878f25a3aea13015ffa1e57cbdce6fbaf1a4e2c39668bf8e8b2a3fbd920c677263a6ed1c5 +binfiles arch=amd64-freebsd size=82 + bin/amd64-freebsd/t1ascii + bin/amd64-freebsd/t1asm + bin/amd64-freebsd/t1binary + bin/amd64-freebsd/t1disasm + bin/amd64-freebsd/t1mac + bin/amd64-freebsd/t1unmac + +name t1utils.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of t1utils +containersize 40032 +containerchecksum c07da2460c0f53697b8ee9649d830d6e3aa457444b080f463fb08856bc0752195fa225d5c59970ca1231e7e101eb35ace34f7d6c8bafeb0277ea53e5cdb5d13b +binfiles arch=amd64-netbsd size=82 + bin/amd64-netbsd/t1ascii + bin/amd64-netbsd/t1asm + bin/amd64-netbsd/t1binary + bin/amd64-netbsd/t1disasm + bin/amd64-netbsd/t1mac + bin/amd64-netbsd/t1unmac + +name t1utils.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of t1utils +containersize 32248 +containerchecksum d0119e69f7bf30ebd09fc2dc322f8101e753f00b3941f14bf3efc3384a077edb54aa9e76e48fc50cc17425151e9e8dc89470ba1819cd16aa27321c103f66605f +binfiles arch=armhf-linux size=53 + bin/armhf-linux/t1ascii + bin/armhf-linux/t1asm + bin/armhf-linux/t1binary + bin/armhf-linux/t1disasm + bin/armhf-linux/t1mac + bin/armhf-linux/t1unmac + +name t1utils.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of t1utils +containersize 36388 +containerchecksum badd004d541acd5a6280d52e49020cc4b19e9cf397378a65bf7d9d1eca46e840541b5961c513700cdb31371f1de2d7c6ca2fb7302a821cfbb39d71e0ea240644 +binfiles arch=i386-cygwin size=64 + bin/i386-cygwin/t1ascii.exe + bin/i386-cygwin/t1asm.exe + bin/i386-cygwin/t1binary.exe + bin/i386-cygwin/t1disasm.exe + bin/i386-cygwin/t1mac.exe + bin/i386-cygwin/t1unmac.exe + +name t1utils.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of t1utils +containersize 46980 +containerchecksum ff6762978ab7643860a7ac5fae3c8d3007fe929ee31acf5785f779fcef43508227b41fd88c153a448e311a4418119e271edfc18eb0c60a76dcc6d227e72567cd +binfiles arch=i386-freebsd size=70 + bin/i386-freebsd/t1ascii + bin/i386-freebsd/t1asm + bin/i386-freebsd/t1binary + bin/i386-freebsd/t1disasm + bin/i386-freebsd/t1mac + bin/i386-freebsd/t1unmac + +name t1utils.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of t1utils +containersize 41472 +containerchecksum 763ebd4fc0cea90f3d03a31630121510b552e966cbb8f845af0b6f382c2b90f529f496d135dce78c0db0a6f185bb79cf9025264f845901006608c9519c9b087a +binfiles arch=i386-linux size=59 + bin/i386-linux/t1ascii + bin/i386-linux/t1asm + bin/i386-linux/t1binary + bin/i386-linux/t1disasm + bin/i386-linux/t1mac + bin/i386-linux/t1unmac + +name t1utils.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of t1utils +containersize 36848 +containerchecksum d1e4836136b1a831d86c0bbea2ac325a385b29fbc076e8b963508131e84858b8172230c6788ab40b55d1c6baac4201c9cd03227f19581dc501f31af7d1f19009 +binfiles arch=i386-netbsd size=69 + bin/i386-netbsd/t1ascii + bin/i386-netbsd/t1asm + bin/i386-netbsd/t1binary + bin/i386-netbsd/t1disasm + bin/i386-netbsd/t1mac + bin/i386-netbsd/t1unmac + +name t1utils.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of t1utils +containersize 42080 +containerchecksum 625b5c43404185890a54fc7d7ab2a49367f1b103d7bea7d6a70299e0d89334f9cd6014f8a757cd55c26986905a0ddb0185f29f5a306dc483d81727461f886227 +binfiles arch=i386-solaris size=58 + bin/i386-solaris/t1ascii + bin/i386-solaris/t1asm + bin/i386-solaris/t1binary + bin/i386-solaris/t1disasm + bin/i386-solaris/t1mac + bin/i386-solaris/t1unmac + +name t1utils.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of t1utils +containersize 104728 +containerchecksum cf043510abe5f36be6983df3f7c3aaa1883f1152ecbf31335a138eead952b95ee5b595124ca5de78c3525e122789f90d7deb4f65caf88ab3177f7fe8325da052 +binfiles arch=universal-darwin size=276 + bin/universal-darwin/t1ascii + bin/universal-darwin/t1asm + bin/universal-darwin/t1binary + bin/universal-darwin/t1disasm + bin/universal-darwin/t1mac + bin/universal-darwin/t1unmac + +name t1utils.win32 +category TLCore +revision 57883 +shortdesc win32 files of t1utils +containersize 35772 +containerchecksum 3beee05d06190fa6110d5d72a6a2c638f25303fcd5b69f4345014acca92e838923f544886854c032d2dacbc6fefea31540a4e8141c2552163278ef365db069b3 +binfiles arch=win32 size=47 + bin/win32/t1ascii.exe + bin/win32/t1asm.exe + bin/win32/t1binary.exe + bin/win32/t1disasm.exe + bin/win32/t1mac.exe + bin/win32/t1unmac.exe + +name t1utils.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of t1utils +containersize 36904 +containerchecksum f9cf91d7a7bfd2753d7cbc1a90c2669ac5905de0b02326452eff2f976ff646ed89d3719feba1d5b4b61e2b3ded28d8562770bc1df2efe25670937d7b691a4de6 +binfiles arch=x86_64-cygwin size=59 + bin/x86_64-cygwin/t1ascii.exe + bin/x86_64-cygwin/t1asm.exe + bin/x86_64-cygwin/t1binary.exe + bin/x86_64-cygwin/t1disasm.exe + bin/x86_64-cygwin/t1mac.exe + bin/x86_64-cygwin/t1unmac.exe + +name t1utils.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of t1utils +containersize 39644 +containerchecksum 7a0f07a40fb78ca3ccb9b5aa530581bcfb3b69a0b96102462e326215fc9dba49e1afc1f7aefd0e18940912dd20bbb05cb675381765394dd27a149e145f152593 +binfiles arch=x86_64-darwinlegacy size=61 + bin/x86_64-darwinlegacy/t1ascii + bin/x86_64-darwinlegacy/t1asm + bin/x86_64-darwinlegacy/t1binary + bin/x86_64-darwinlegacy/t1disasm + bin/x86_64-darwinlegacy/t1mac + bin/x86_64-darwinlegacy/t1unmac + +name t1utils.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of t1utils +containersize 42460 +containerchecksum 5444ab057c1a7b45e287bbd82b45152f40a593de58ead7ea17ed900cd19f5ea9792149f05cf06839439d853dd0c2d7fc167466f485ef79c8a985cb3621e32ca0 +binfiles arch=x86_64-linux size=64 + bin/x86_64-linux/t1ascii + bin/x86_64-linux/t1asm + bin/x86_64-linux/t1binary + bin/x86_64-linux/t1disasm + bin/x86_64-linux/t1mac + bin/x86_64-linux/t1unmac + +name t1utils.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of t1utils +containersize 43336 +containerchecksum 914236dc97746b893405ee03d6839fe5f977e776f41ceab5334cb1a8a5edf43f022a14ce2ea79371f9d5e07450f3bbbe3f4c0211577eda32e97ffadb5becc94c +binfiles arch=x86_64-linuxmusl size=66 + bin/x86_64-linuxmusl/t1ascii + bin/x86_64-linuxmusl/t1asm + bin/x86_64-linuxmusl/t1binary + bin/x86_64-linuxmusl/t1disasm + bin/x86_64-linuxmusl/t1mac + bin/x86_64-linuxmusl/t1unmac + +name t1utils.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of t1utils +containersize 46000 +containerchecksum 0bd817e4789bc745cdc19cf61d60817c9825a29885fc6e1087993179ecfb26f09b75fb50fbd22be2446e93f895e715434fdc19ef7340924d2d0f191a7a4919da +binfiles arch=x86_64-solaris size=69 + bin/x86_64-solaris/t1ascii + bin/x86_64-solaris/t1asm + bin/x86_64-solaris/t1binary + bin/x86_64-solaris/t1disasm + bin/x86_64-solaris/t1mac + bin/x86_64-solaris/t1unmac + +name t2 +category Package +revision 47870 +shortdesc Support for using T2 encoding +relocated 1 +longdesc The T2 bundle provides a variety of separate support functions +longdesc for using Cyrillic characters in LaTeX: the mathtext package, +longdesc for using Cyrillic letters 'transparently' in formulae; the +longdesc citehack package, for using Cyrillic (or indeed any non-ascii) +longdesc characters in citation keys; support for Cyrillic in BibTeX; +longdesc support for Cyrillic in Makeindex; and various items of font +longdesc support. +containersize 27072 +containerchecksum 9a47581909735a9ba582b71a132c925beab45cbfeb0201c93d138c35670fdf65580e6dc20d9498458e01eba7088c81d67cce329465e4763235e3f3404959c5c6 +doccontainersize 28752 +doccontainerchecksum 8c30658eab02eb576963a6a2f722b143444abf5d286473f165b6cab84c75ef703462a1841121a5d12cf822b150ce8c23a96256754a2d662fbe6c451a058333ef +docfiles size=67 + RELOC/doc/generic/t2/Makefile + RELOC/doc/generic/t2/OT2uni.map + RELOC/doc/generic/t2/README details="Readme" + RELOC/doc/generic/t2/T2Auni.map + RELOC/doc/generic/t2/T2Buni.map + RELOC/doc/generic/t2/T2Cuni.map + RELOC/doc/generic/t2/X2uni.map + RELOC/doc/generic/t2/amscyr.txt + RELOC/doc/generic/t2/broken1.txt + RELOC/doc/generic/t2/broken2.txt + RELOC/doc/generic/t2/cyrcset7.txt + RELOC/doc/generic/t2/cyrcset8.txt + RELOC/doc/generic/t2/cyrcsets.ind + RELOC/doc/generic/t2/etc/amsppt.diff + RELOC/doc/generic/t2/etc/mathtext.dtx + RELOC/doc/generic/t2/etc/mathtext.ins + RELOC/doc/generic/t2/etc/rubibtex/README details="Readme" + RELOC/doc/generic/t2/etc/rubibtex/rubibtex + RELOC/doc/generic/t2/etc/rubibtex/rubibtex.bat + RELOC/doc/generic/t2/etc/rubibtex/rubibtex.old + RELOC/doc/generic/t2/etc/rubibtex/rubibtex.sed + RELOC/doc/generic/t2/etc/ruinpenc + RELOC/doc/generic/t2/etc/rumkidx/README details="Readme" + RELOC/doc/generic/t2/etc/rumkidx/rumakeindex + RELOC/doc/generic/t2/etc/rumkidx/rumkidx1.sed + RELOC/doc/generic/t2/etc/rumkidx/rumkidx2.sed + RELOC/doc/generic/t2/etc/rumkidx/rumkidx3.sed + RELOC/doc/generic/t2/etc/rumkidx/rumkidxd.bat + RELOC/doc/generic/t2/etc/rumkidx/rumkidxw.bat + RELOC/doc/generic/t2/etc/t2filter.c + RELOC/doc/generic/t2/etc/utf-8/test-utf8.tex + RELOC/doc/generic/t2/etc/utf-8/utf-8.def + RELOC/doc/generic/t2/etc/utf-8/utfcyr.def + RELOC/doc/generic/t2/etc/utf-8/utflat.def + RELOC/doc/generic/t2/examples/example1.tex + RELOC/doc/generic/t2/examples/example2.tex + RELOC/doc/generic/t2/examples/example3.tex + RELOC/doc/generic/t2/examples/example4.tex + RELOC/doc/generic/t2/examples/example5.tex + RELOC/doc/generic/t2/make-enc.pl + RELOC/doc/generic/t2/mkencs.sh + RELOC/doc/generic/t2/mtcyr.txt + RELOC/doc/generic/t2/t2cyr.txt + RELOC/doc/generic/t2/t2lat.txt + RELOC/doc/generic/t2/urwcyr.txt +runfiles size=109 + RELOC/fonts/enc/t2/t2a-mod1.enc + RELOC/fonts/enc/t2/t2a-mod2.enc + RELOC/fonts/enc/t2/t2a.enc + RELOC/fonts/enc/t2/t2b.enc + RELOC/fonts/enc/t2/t2c.enc + RELOC/fonts/enc/t2/x2.enc + RELOC/tex/generic/t2/cyrfinst/6r.etx + RELOC/tex/generic/t2/cyrfinst/README + RELOC/tex/generic/t2/cyrfinst/cyrillic.mtx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyc.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyci.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcycij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcycj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyctt.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyi.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyitt.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcytt.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2c.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2cj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2i.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2ij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2j.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ac.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2acj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ai.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2aij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2aj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bc.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bcj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bi.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2cc.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ccj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ci.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2cij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2cj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2c.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2cj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2i.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2ij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2j.etx + RELOC/tex/generic/t2/cyrfinst/etc/alias-cmc.tex + RELOC/tex/generic/t2/cyrfinst/etc/alias-wncy.tex + RELOC/tex/generic/t2/cyrfinst/etc/cyralias.tex + RELOC/tex/generic/t2/cyrfinst/etc/fnstcorr.tex + RELOC/tex/generic/t2/cyrfinst/etc/showenc + RELOC/tex/generic/t2/cyrfinst/lcy-hi.etx + RELOC/tex/generic/t2/cyrfinst/lcy.etx + RELOC/tex/generic/t2/cyrfinst/ot2.etx + RELOC/tex/generic/t2/cyrfinst/t2a.etx + RELOC/tex/generic/t2/cyrfinst/t2b.etx + RELOC/tex/generic/t2/cyrfinst/t2c.etx + RELOC/tex/generic/t2/cyrfinst/x2.etx + RELOC/tex/latex/t2/citehack.sty + RELOC/tex/latex/t2/mathtext.sty + RELOC/tex/latex/t2/misccorr.sty +catalogue-ctan /macros/latex/contrib/t2 +catalogue-license lppl +catalogue-topics fontenc cyrillic + +name tabfigures +category Package +revision 25202 +shortdesc Maintain vertical alignment of figures +relocated 1 +longdesc Knuth designed his original fonts with tabular figures (figures +longdesc whose width is uniform); this makes some layout problems rather +longdesc simple. In more recent times, fonts (such as Minion Pro), which +longdesc offer proportionally spaced figures, are increasingly being +longdesc used. The package provides mechanisms whereby such proportional +longdesc figures may still be aligned in tabular style (for example, in +longdesc the table of contents). +containersize 2172 +containerchecksum d2a1fe985a74427888995437beaafa62b5def851d6f2a7788ead9cddbfcefd7206366a6711f29e85d2705c0d787bfc88accc56c93b827fa372ebd9cfc562f2c6 +doccontainersize 246772 +doccontainerchecksum 5b2c7c5bd350c3dba68117151f3cfd6eac8f0e7ed602b44406ff9d15a79dd7de7e0ec303b1163e3c882412c86adc48afac6c9653cf1fbff86e7cf6a7ce852c94 +docfiles size=61 + RELOC/doc/latex/tabfigures/README details="Readme" + RELOC/doc/latex/tabfigures/tabfigures.pdf details="Package documentation" +srccontainersize 5452 +srccontainerchecksum 78602de26e50e0d9ee43b8289a96a3639904bdf79983d4633d6c11af1c8215d1e77649f640ecc6b3f37cce30e6cc6b4c204e2cec58a3454c8b8486104eb17922 +srcfiles size=5 + RELOC/source/latex/tabfigures/tabfigures.dtx + RELOC/source/latex/tabfigures/tabfigures.ins +runfiles size=2 + RELOC/tex/latex/tabfigures/tabfigures.sty +catalogue-ctan /macros/latex/contrib/tabfigures +catalogue-license lppl1.3 +catalogue-topics font-use typesetting +catalogue-version 1.1 + +name table-fct +category Package +revision 41849 +shortdesc Draw a variations table of functions and a convexity table of its graph +relocated 1 +longdesc Draw a variations table of functions and a convexity table of +longdesc its graph This version offers two environnements, to draw +longdesc variations table of a function and a convexity table of its +longdesc graph. +containersize 2308 +containerchecksum a6300b1989f536fecb27d300bc0b27afd93f7f72b894fdb87bae5b0756ab241985ee2e5b4c0b68d1b2cc5611aafdb62b300fe40e2a08df5f6b11774f13309756 +doccontainersize 880 +doccontainerchecksum a9108cee93e6c7250643636619f923659d468a2148f5b04168fb08738d85e794c1050fef8152fb95d114551f6967c955f3d6f548e1ede37711b98b1362e9910a +docfiles size=2 + RELOC/doc/latex/table-fct/README details="Readme" + RELOC/doc/latex/table-fct/README.TEXLIVE +runfiles size=4 + RELOC/tex/latex/table-fct/table-fct.sty +catalogue-ctan /graphics/table-fct +catalogue-license lppl1.3 +catalogue-topics graphics +catalogue-version 1.1 + +name tableaux +category Package +revision 42413 +shortdesc Construct tables of signs and variations +relocated 1 +longdesc The package uses PSTricks; the user may define the width of the +longdesc table, the number of lines and the height of each line. +longdesc Placement of labels within the boxes may be absolute, or as a +longdesc percentage of the width; various other controls are available. +containersize 2920 +containerchecksum 1846fe9da749b92700be07c094556fd296d47123df3a5d6823570056e6ce2ca8ef365b70f6ab2a8577602d1be338867fd2610403f89729dd51632d404951f84f +doccontainersize 57272 +doccontainerchecksum cfa58a8e76dd61659f6c13ea6b3f97ae484715b735028c513576312dfa7dfe92c8c15a0858077e3ff2399807274dd5a836182ea65b948a976f6384bd8d1b19d6 +docfiles size=25 + RELOC/doc/latex/tableaux/exemples.pdf details="Further examples (comments in French)" language="fr" + RELOC/doc/latex/tableaux/exemples.tex + RELOC/doc/latex/tableaux/tableau.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tableaux/tableau.tex +runfiles size=3 + RELOC/tex/latex/tableaux/minimum.sty + RELOC/tex/latex/tableaux/tableau.sty +catalogue-also tablor tkz-tab tableauvariations tabvar +catalogue-ctan /macros/latex/contrib/tableaux +catalogue-license lppl +catalogue-topics maths-tabvar + +name tablefootnote +category Package +revision 32804 +shortdesc Permit footnotes in tables +relocated 1 +longdesc The package provides the command \tablefootnote to be used in a +longdesc table or sidewaystable environment, where \footnote will not +longdesc work (and when using \footnotemark and \footnotetext, and +longdesc adjusting the counter as necessary, is too much work). +containersize 4056 +containerchecksum 90812cecdbb464592b17b8faf4d81b221844a354b0a3d3ea30cb72d0b56c4ff7eee701caf113e13586315ce846d30de6ce8d5028966f2c310527e34e8ec90464 +doccontainersize 505020 +doccontainerchecksum 712c1ab696f5924058f4ea6ce12e3ff14fcbf79a78328259c4b9acfdaad33e9e4dddf36dbb322598f09a8fa3ca75d68b474fe1a4bcd4d25752704e0c4e6ba5d7 +docfiles size=128 + RELOC/doc/latex/tablefootnote/README details="Readme" + RELOC/doc/latex/tablefootnote/tablefootnote-example.pdf details="Demonstration and outline of use" + RELOC/doc/latex/tablefootnote/tablefootnote-example.tex + RELOC/doc/latex/tablefootnote/tablefootnote.pdf details="Package documentation" +srccontainersize 16288 +srccontainerchecksum 70456471a5997592668198463d1e44af464e9c24619c09d186c952c5afe2bc5171d5c29442820b267d1782a966fbe63997694427f1c870d14ec6194ac99ded52 +srcfiles size=20 + RELOC/source/latex/tablefootnote/tablefootnote.drv + RELOC/source/latex/tablefootnote/tablefootnote.dtx + RELOC/source/latex/tablefootnote/tablefootnote.ins +runfiles size=5 + RELOC/tex/latex/tablefootnote/tablefootnote.sty +catalogue-ctan /macros/latex/contrib/tablefootnote +catalogue-license lppl1.3 +catalogue-topics table footnote +catalogue-version 1.1c + +name tableof +category Package +revision 48815 +shortdesc Tagging tables of contents +relocated 1 +longdesc The package provides the commands to flag chapters or sections +longdesc (or anything else destined to become a TOC line). The command +longdesc \nexttocwithtags{req1,req2,...}{excl1,excl2,...} specifies +longdesc which tags are to be required and which ones are to be excluded +longdesc by the next \tableofcontents (or equivalent) command. In a +longdesc document that uses a class where \tableofcontents may only be +longdesc used once, the command +longdesc \tableoftaggedcontents{req1,req2,...}{excl1,excl2,...} may be +longdesc used to provide several tables. +containersize 2528 +containerchecksum 3eb5dd3a3399825a85280c79c9f013dc9615a534e475d64777ec84924c9257aa930b7fe677a85c32b158b4099d5b61f306ea54f610fa1c9db42764fbf5b683da +doccontainersize 56988 +doccontainerchecksum 609011dc53d37fbad2abf84531ab99d8f60b636222debdf0466b33ed85964326b688a7e5d957500a970e1e974d5fbcf1dfc198e146360b6d43b58f6f3d67c845 +docfiles size=15 + RELOC/doc/latex/tableof/README.md details="Readme" + RELOC/doc/latex/tableof/tableof.pdf details="Package documentation" +srccontainersize 10884 +srccontainerchecksum b55b6834b7dcc3ba83f3e8620ffa9ee66b0a6962a4c1b95d7b74ac164300334db89f432af7407268d00190e79333fb3e305074feaf116344957a5a986c842d17 +srcfiles size=10 + RELOC/source/latex/tableof/tableof.dtx + RELOC/source/latex/tableof/tableof.ins +runfiles size=2 + RELOC/tex/latex/tableof/tableof.sty +catalogue-ctan /macros/latex/contrib/tableof +catalogue-license lppl1.3 +catalogue-topics toc-etc +catalogue-version 1.4b + +name tablestyles +category Package +revision 34495 +shortdesc Styles for tables with new commands +relocated 1 +longdesc This package tries to introduce a separation of text and style +longdesc in tables by defining reusable table commands and a simple +longdesc interface to define a style for a table. Furthermore the +longdesc package defines commonly used column styles and a bugfix +longdesc command for lists in tables. +containersize 2112 +containerchecksum 429d9e66e9dcc06814e75b08d1fcc9630de6cc614337c73fdc06588479e47e7df72dfab33a91fb7cb230f9e1ed0bade3d8e56fa423c1f2fcf0bac6f246620069 +doccontainersize 452888 +doccontainerchecksum 43c5dedd804a0aec1b7ad289d8113bca94d6fac7e9b5b8628880e2d7d7e4f0e29cde12864747cfcdf24ceeee0e143652c2acb2b448bfce0630b6915e2bed237c +docfiles size=113 + RELOC/doc/latex/tablestyles/README details="Readme" + RELOC/doc/latex/tablestyles/tablestyles.pdf details="Package documentation" +srccontainersize 9872 +srccontainerchecksum 26b5e4b276a202ba2b351287ce310b52a256659c55f88f68259ec358636c117d36dd8834542d385450c531d4db1d5e42e053a11e2a9c21c43fc72ce38c453072 +srcfiles size=12 + RELOC/source/latex/tablestyles/tablestyles.dtx + RELOC/source/latex/tablestyles/tablestyles.ins +runfiles size=2 + RELOC/tex/latex/tablestyles/tablestyles.sty +catalogue-ctan /macros/latex/contrib/tablestyles +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 0.1 + +name tablists +category Package +revision 15878 +shortdesc Tabulated lists of short items +relocated 1 +longdesc This package offers environments and commands for one-level and +longdesc two-level lists of short items (e.g., exercises in textbooks). +longdesc The environments support optional arguments of item numbering +longdesc similar to the enumerate or paralist packages. +containersize 2756 +containerchecksum ed0ebef871c7bdffe93e2cc38b823dd13376c53e4388daa8aa1198cb213010594c9bfe468ec0e42901df2dbd1b938e7f037cf49ef2cf6d9ff3bc53502b220a14 +doccontainersize 211336 +doccontainerchecksum afcfa520702fd873b4deb7c4acfbd4290262a0df133c87f01698d20b8d17fd5b5932384124f49fb4d90155da284b873bb3ee1a2281955449f8ca2f278c38d39f +docfiles size=69 + RELOC/doc/latex/tablists/README details="README file" + RELOC/doc/latex/tablists/tablists-rus.pdf + RELOC/doc/latex/tablists/tablists-rus.tex + RELOC/doc/latex/tablists/tablists.pdf details="Package documentation" +srccontainersize 8040 +srccontainerchecksum 34ff94c3adfff4188daf4ff906721833dd925c84f107867d7931fe66c58ea8a8438737065f64a9aaf57acb0eeac9e17e8388dee7a0af93476f5add226d4481e7 +srcfiles size=8 + RELOC/source/latex/tablists/tablists.dtx +runfiles size=2 + RELOC/tex/latex/tablists/tablists.sty +catalogue-ctan /macros/latex/contrib/tablists +catalogue-license lppl +catalogue-topics list-enum +catalogue-version 0.0e + +name tablor +category Package +revision 31855 +shortdesc Create tables of signs and of variations +relocated 1 +longdesc The package allows the user to use the computer algebra system +longdesc XCAS to generate tables of signs and of variations (the actual +longdesc plotting of the tables uses the MetaPost macro package +longdesc tableauVariations). Tables with forbidden regions may be +longdesc developed using the package. A configuration file permits some +longdesc configuration of the language to be used in the diagrams. The +longdesc tablor package requires that shell escape be enabled. +containersize 12620 +containerchecksum 64169a74a787f8877d41d5e32c42e5659950854a1e20cc05103b3ed58c54fb800a9af0701a40a6c5b75553b86d675fbda51948106cac464785c3d46aac77c979 +doccontainersize 449356 +doccontainerchecksum 77a6d1b47337f015dbfd39074e1dae417c3bea3c9635955c6518d691ff336854cdd7587af54640282b45f5bf3885044d3b6789a0a73f39a726aeaf0afd27c883 +docfiles size=293 + RELOC/doc/latex/tablor/Figures/TSav-105.mp + RELOC/doc/latex/tablor/Figures/capture.eps + RELOC/doc/latex/tablor/Figures/tablor_Tab.0 + RELOC/doc/latex/tablor/Figures/tablor_Tab.1 + RELOC/doc/latex/tablor/Figures/tablor_Tab.10 + RELOC/doc/latex/tablor/Figures/tablor_Tab.105 + RELOC/doc/latex/tablor/Figures/tablor_Tab.11 + RELOC/doc/latex/tablor/Figures/tablor_Tab.12 + RELOC/doc/latex/tablor/Figures/tablor_Tab.13 + RELOC/doc/latex/tablor/Figures/tablor_Tab.14 + RELOC/doc/latex/tablor/Figures/tablor_Tab.15 + RELOC/doc/latex/tablor/Figures/tablor_Tab.16 + RELOC/doc/latex/tablor/Figures/tablor_Tab.17 + RELOC/doc/latex/tablor/Figures/tablor_Tab.18 + RELOC/doc/latex/tablor/Figures/tablor_Tab.19 + RELOC/doc/latex/tablor/Figures/tablor_Tab.2 + RELOC/doc/latex/tablor/Figures/tablor_Tab.20 + RELOC/doc/latex/tablor/Figures/tablor_Tab.21 + RELOC/doc/latex/tablor/Figures/tablor_Tab.22 + RELOC/doc/latex/tablor/Figures/tablor_Tab.23 + RELOC/doc/latex/tablor/Figures/tablor_Tab.24 + RELOC/doc/latex/tablor/Figures/tablor_Tab.25 + RELOC/doc/latex/tablor/Figures/tablor_Tab.26 + RELOC/doc/latex/tablor/Figures/tablor_Tab.27 + RELOC/doc/latex/tablor/Figures/tablor_Tab.28 + RELOC/doc/latex/tablor/Figures/tablor_Tab.29 + RELOC/doc/latex/tablor/Figures/tablor_Tab.3 + RELOC/doc/latex/tablor/Figures/tablor_Tab.30 + RELOC/doc/latex/tablor/Figures/tablor_Tab.31 + RELOC/doc/latex/tablor/Figures/tablor_Tab.32 + RELOC/doc/latex/tablor/Figures/tablor_Tab.33 + RELOC/doc/latex/tablor/Figures/tablor_Tab.35 + RELOC/doc/latex/tablor/Figures/tablor_Tab.36 + RELOC/doc/latex/tablor/Figures/tablor_Tab.37 + RELOC/doc/latex/tablor/Figures/tablor_Tab.38 + RELOC/doc/latex/tablor/Figures/tablor_Tab.39 + RELOC/doc/latex/tablor/Figures/tablor_Tab.4 + RELOC/doc/latex/tablor/Figures/tablor_Tab.40 + RELOC/doc/latex/tablor/Figures/tablor_Tab.41 + RELOC/doc/latex/tablor/Figures/tablor_Tab.42 + RELOC/doc/latex/tablor/Figures/tablor_Tab.43 + RELOC/doc/latex/tablor/Figures/tablor_Tab.44 + RELOC/doc/latex/tablor/Figures/tablor_Tab.45 + RELOC/doc/latex/tablor/Figures/tablor_Tab.47 + RELOC/doc/latex/tablor/Figures/tablor_Tab.48 + RELOC/doc/latex/tablor/Figures/tablor_Tab.49 + RELOC/doc/latex/tablor/Figures/tablor_Tab.5 + RELOC/doc/latex/tablor/Figures/tablor_Tab.50 + RELOC/doc/latex/tablor/Figures/tablor_Tab.51 + RELOC/doc/latex/tablor/Figures/tablor_Tab.52 + RELOC/doc/latex/tablor/Figures/tablor_Tab.53 + RELOC/doc/latex/tablor/Figures/tablor_Tab.54 + RELOC/doc/latex/tablor/Figures/tablor_Tab.55 + RELOC/doc/latex/tablor/Figures/tablor_Tab.56 + RELOC/doc/latex/tablor/Figures/tablor_Tab.57 + RELOC/doc/latex/tablor/Figures/tablor_Tab.6 + RELOC/doc/latex/tablor/Figures/tablor_Tab.7 + RELOC/doc/latex/tablor/Figures/tablor_Tab.8 + RELOC/doc/latex/tablor/Figures/tablor_Tab.9 + RELOC/doc/latex/tablor/Figures/tablor_Tab.mp + RELOC/doc/latex/tablor/README details="Readme (English)" language="en" + RELOC/doc/latex/tablor/README-fr.txt details="Readme (French)" language="fr" + RELOC/doc/latex/tablor/auto/tablor-xetex.el + RELOC/doc/latex/tablor/auto/tablor.el + RELOC/doc/latex/tablor/tablor.html + RELOC/doc/latex/tablor/tablor.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tablor/tablor.tex +runfiles size=48 + RELOC/tex/latex/tablor/tablor-xetex.sty + RELOC/tex/latex/tablor/tablor.cfg + RELOC/tex/latex/tablor/tablor.sty +catalogue-also tabvar tkz-tab tableaux tableauvariations +catalogue-ctan /macros/latex/contrib/tablor +catalogue-license lppl +catalogue-topics maths-tabvar +catalogue-version 4.07-g + +name tabls +category Package +revision 17255 +shortdesc Better vertical spacing in tables and arrays +relocated 1 +longdesc Modifies LaTeX's array and tabular environments to keep text +longdesc from touching other text or hlines above or below. Several new +longdesc parameters are defined and some standard macros are re-defined. +longdesc The package slows down compilation of tables, since each entry +longdesc is boxed twice. +containersize 4348 +containerchecksum 1a341985ae61f047694470d19d4e192b4f4e01c0bb595d91b1f80080eed3077be4e40b431cc05b1bb482f18c30bf36e6076542f2cf37a49dd6b065b0fe044bca +doccontainersize 226408 +doccontainerchecksum f458058964660b2b1ff2a61ff8ff2ffcfe7ab103e9714cb1e7c307a8bd39c5a1a6990683c4ed7aa401cbe9b9dcc083dfbadd80a5aa00bcd64c0fb72638cf71f2 +docfiles size=59 + RELOC/doc/latex/tabls/miscdoc.sty + RELOC/doc/latex/tabls/tabls.pdf details="Package documentation" + RELOC/doc/latex/tabls/tabls.tex +runfiles size=3 + RELOC/tex/latex/tabls/tabls.sty +catalogue-also cellspace +catalogue-ctan /macros/latex/contrib/tabls +catalogue-license other-free +catalogue-topics table +catalogue-version 3.5 + +name tablvar +category Package +revision 51543 +shortdesc Typesetting pretty tables of signs and variations according to French usage +relocated 1 +longdesc This is a complete and easy-to-use package for typesetting +longdesc pretty tables of signs and variations according to French +longdesc usage. The syntax is similar to that of the array environment +longdesc and uses intuitive position commands. Arrows are drawn +longdesc automatically (using PSTricks by default or TikZ as an option). +longdesc Macros are provided for drawing twin bars, single bars crossing +longdesc the zeros, areas where the function is not defined, or placing +longdesc special values. Several features of the variation tables can be +longdesc customized. +containersize 3640 +containerchecksum c0401c0ce273b59da6877f231b06f3e4da572a6531fb6c587e29a00bb0f53edcabc725453c2ad1dbe6ba0458721a7e4b04182fcaaeed46208a760a5dff9651d9 +doccontainersize 172576 +doccontainerchecksum 3bb104a3f50375d2e96f908126268bd3bcb3e371fdd339ed7bdad9dbbf714480b89a4a11625a2b537e09f214eccdabf6c0faee84dec4591f0627783481eff20a +docfiles size=55 + RELOC/doc/latex/tablvar/README.md details="Readme" + RELOC/doc/latex/tablvar/tablvar.pdf details="Package documentation" language="fr" +srccontainersize 15776 +srccontainerchecksum cfa218cf1dee3830f72af6996b1a5666d65a8729f65a8a652744bed84204122a65d514f539c2d50537c3529fdb9555ad5c5a2698f4459e11976e4b9640c8cfa9 +srcfiles size=17 + RELOC/source/latex/tablvar/tablvar.dtx + RELOC/source/latex/tablvar/tablvar.ins +runfiles size=3 + RELOC/tex/latex/tablvar/tablvar.sty +catalogue-ctan /macros/latex/contrib/tablvar +catalogue-license lppl1.3 +catalogue-topics maths-tabvar maths french +catalogue-version 1.2 + +name tabriz-thesis +category Package +revision 51729 +shortdesc A template for the University of Tabriz +relocated 1 +longdesc The package offers a document class for typesetting theses and +longdesc dissertations at the University of Tabriz. The class requires +longdesc use of XeLaTeX. +containersize 3504 +containerchecksum b1e93632159fa6b5ce46a13b6d2bbd3115a09fd7c6908a8465934e37feb0633eea827fa1ba8521d91a0d30492135a428463f6aa99cca0c6fe7db640d1310c6ae +doccontainersize 217336 +doccontainerchecksum e56f4a93c7cdc68c227791a21fbb06e44193e9681e677f383d19994c714bdb8d0487f9550c0c94a78890f54c7342aa777349770b4ad04b58e191fa62b31a3462 +docfiles size=170 + RELOC/doc/latex/tabriz-thesis/README details="Readme" + RELOC/doc/latex/tabriz-thesis/appendix1.tex + RELOC/doc/latex/tabriz-thesis/chapter1.tex + RELOC/doc/latex/tabriz-thesis/chapter2.tex + RELOC/doc/latex/tabriz-thesis/chapter3.tex + RELOC/doc/latex/tabriz-thesis/dicen2fa.tex + RELOC/doc/latex/tabriz-thesis/dicfa2en.tex + RELOC/doc/latex/tabriz-thesis/en-title.tex + RELOC/doc/latex/tabriz-thesis/fa-title.tex + RELOC/doc/latex/tabriz-thesis/logo.jpg + RELOC/doc/latex/tabriz-thesis/references.tex + RELOC/doc/latex/tabriz-thesis/tabriz-thesis.pdf details="Package documentation" language="fa" + RELOC/doc/latex/tabriz-thesis/tabriz-thesis.tex + RELOC/doc/xelatex/tabriz-thesis/README details="Readme" + RELOC/doc/xelatex/tabriz-thesis/appendix1.tex + RELOC/doc/xelatex/tabriz-thesis/chapter1.tex + RELOC/doc/xelatex/tabriz-thesis/chapter2.tex + RELOC/doc/xelatex/tabriz-thesis/chapter3.tex + RELOC/doc/xelatex/tabriz-thesis/dicen2fa.tex + RELOC/doc/xelatex/tabriz-thesis/dicfa2en.tex + RELOC/doc/xelatex/tabriz-thesis/en-title.tex + RELOC/doc/xelatex/tabriz-thesis/fa-title.tex + RELOC/doc/xelatex/tabriz-thesis/logo.jpg + RELOC/doc/xelatex/tabriz-thesis/references.tex + RELOC/doc/xelatex/tabriz-thesis/tabriz-thesis.pdf details="Package documentation" language="fa" + RELOC/doc/xelatex/tabriz-thesis/tabriz-thesis.tex +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-license lppl1.3 +catalogue-topics class dissertation persian xetex +catalogue-version 1.1 + +name tabstackengine +category Package +revision 46848 +shortdesc "Tabbing" front-end to stackengine +relocated 1 +longdesc The package provides a front end to the stackengine package, to +longdesc allow tabbed stacking. In most cases, an existing stackengine +longdesc command may be prepended with the word "tabbed", "align" or +longdesc "tabular" to create a new tabbed version of a stacking macro. +longdesc In addition, hooks in the package's parser that tabbed strings +longdesc of data may be parsed, extracted, and reconstituted (not +longdesc requiring use of any stacking constructions). +containersize 5168 +containerchecksum 2f6245d65a7d711d598b894c8acfd8d2a032ae210eabfa219934e8fa086bbe3edef81e73092234e5528f9f62a6856546aaec7eafe5572eded155ca8fa5fc3999 +doccontainersize 582016 +doccontainerchecksum 6ce0b2ec254e44bca6f6cb746d4e3762735e9bb85e561df7628d3a2e2e35ddaac1635c825f27900d06badeb310535e73c84495e24748c1181825fd61fb03105d +docfiles size=157 + RELOC/doc/latex/tabstackengine/README details="Readme" + RELOC/doc/latex/tabstackengine/tabstackengine.pdf details="Package documentation" + RELOC/doc/latex/tabstackengine/tabstackengine.tex +runfiles size=6 + RELOC/tex/latex/tabstackengine/tabstackengine.sty +catalogue-ctan /macros/latex/contrib/tabstackengine +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 2.10 + +name tabto-generic +category Package +revision 15878 +shortdesc "Tab" to a measured position in the line +relocated 1 +longdesc \tabto{<length>} moves the typesetting position to <length> +longdesc from the left margin of the paragraph. If the typesetting +longdesc position is already further along, \tabto starts a new line. +containersize 1256 +containerchecksum 5b3bd8081ec6800c96ce4b4cbdd8091578ad1df2b625fb2792202a6c31f3f126d612f99f04802d82d490cb529e03e63f98b01c7842ec0df69b48c2fc289108fa +runfiles size=1 + RELOC/tex/generic/tabto-generic/tabto.tex +catalogue-also tabto-ltx +catalogue-ctan /macros/generic/misc/tabto.tex +catalogue-license pd +catalogue-topics layout + +name tabto-ltx +category Package +revision 54080 +shortdesc "Tab" to a measured position in the line +relocated 1 +longdesc \tabto{<length>} moves the typesetting position to <length> +longdesc from the left margin of the paragraph. If the typesetting +longdesc position is already further along, \tabto starts a new line; +longdesc the command \tabto* will move position backwards if necessary, +longdesc so that previous text may be overwritten. The command +longdesc \TabPositions may be used to define a set of tabbing positions, +longdesc after which the command \tab advances typesetting position to +longdesc the next defined 'tab stop'. +containersize 3476 +containerchecksum 8654a7e3b49bbfe6e861a6f757d8553f78149e7187809b03f6854f2173143e10195385d9e8b35510e49a5f941b27a5796070d6db1183b58e4eb71c452d4a34e7 +doccontainersize 53812 +doccontainerchecksum 35e98681472b9d6fefa25a534385133d630f072a75a045c9adfc4b0e775095609ece27322e3fe8af451db03c0ac3b63141c3cc7272924ff758a8985389040a31 +docfiles size=17 + RELOC/doc/latex/tabto-ltx/README + RELOC/doc/latex/tabto-ltx/tabto-doc.pdf details="Package documentation" + RELOC/doc/latex/tabto-ltx/tabto-doc.tex +runfiles size=2 + RELOC/tex/latex/tabto-ltx/tabto.sty +catalogue-alias tabto +catalogue-also tabto-generic +catalogue-ctan /macros/latex/contrib/tabto +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 1.4 + +name tabu +category Package +revision 56615 +shortdesc Flexible LaTeX tabulars +relocated 1 +longdesc The package provides an environment, tabu, which will make any +longdesc sort of tabular (that doesn't need to split across pages), and +longdesc an environment longtabu which provides the facilities of tabu +longdesc in a modified longtable environment. (Note that this latter +longdesc offers an enhancement of ltxtable.) The package requires the +longdesc array package, and needs e-TeX to run (since array.sty is +longdesc present in every conforming distribution of LaTeX, and since +longdesc every publicly available LaTeX format is built using e-TeX, the +longdesc requirements are provided by default on any reasonable system). +longdesc The package also requires xcolor for coloured rules in tables, +longdesc and colortbl for coloured cells. The longtabu environment +longdesc further requires that longtable be loaded. The package itself +longdesc does not load any of these packages for the user. The tabu +longdesc environment may be used in place of tabular, tabular* and +longdesc tabularx environments, as well as the array environment in +longdesc maths mode. It overloads tabularx's X-column specification, +longdesc allowing a width specification, alignment (l, r, c and j) and +longdesc column type indication (p, m and b). \begin{tabu} to <dimen> +longdesc specifies a target width, and \begin{tabu} spread <dimen> +longdesc enlarges the environment's "natural" width. +depend varwidth +containersize 23896 +containerchecksum cee6894fac19a98293402b714cc52eaf8ec0b9965a8e9ab9f5125388a2e4709e5d33063286eac9e45a3470f551d1aeeb41d09623b5dddd6563c1c462c2582ba3 +doccontainersize 1458872 +doccontainerchecksum 9e10613a8ca8b29d61ab5a394ece8e25e0e8abea4b7a70b01382935650c86e9554712635c78f3b097afc5f9560cef2fceb984b383826e206233c28144f332c2f +docfiles size=618 + RELOC/doc/latex/tabu/README.md details="Readme" + RELOC/doc/latex/tabu/tabu.pdf details="Package documentation" +srccontainersize 76076 +srccontainerchecksum 7b88f0fee52dead2555b4dcc11699ff167207f210f663faccccc1f951e40a53a5a572840c43070d4f86bd183c5e0d9e456c548013160a39264bcda10e71ca49d +srcfiles size=86 + RELOC/source/latex/tabu/tabu.dtx +runfiles size=29 + RELOC/tex/latex/tabu/tabu.sty +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-license lppl1.3 +catalogue-topics table table-long +catalogue-version 2.9 + +name tabularborder +category Package +revision 17885 +shortdesc Remove excess space at left and right of tabular +relocated 1 +longdesc The tabular environment is changed so that the outer +longdesc \tabcolseps are compensated and a \hline has the same length as +longdesc the text. No @{} is needed. +containersize 1496 +containerchecksum a30f668ea84238df674c079fea6b05878776b26b4f6465385e26b01b16181825a8cc20767fa45eda8e7870d272875bc9664aed145885dd655d15258aa072ebb7 +doccontainersize 99284 +doccontainerchecksum f0376dfe99c68523332be0e83c0a186d7e3051862fac22785b4ba1273673fb9b1776654a127ba1c617af67063763e5837723ca2f23b3f7dd012628bd40ad0604 +docfiles size=29 + RELOC/doc/latex/tabularborder/tabularborder.pdf details="Package documentation" +srccontainersize 4216 +srccontainerchecksum 862ea87bf23f2e4f42bc15fb82d9e417b4e51d7fbd555383cb985892b9b40734b38dc4f0dfb09790040c64791beb2cb2c6bbd2df9373c75438929be011748978 +srcfiles size=5 + RELOC/source/latex/tabularborder/tabularborder.dtx + RELOC/source/latex/tabularborder/tabularborder.ins +runfiles size=1 + RELOC/tex/latex/tabularborder/tabularborder.sty +catalogue-ctan /macros/latex/contrib/tabularborder +catalogue-license lppl1.2 +catalogue-topics table +catalogue-version 1.0a + +name tabularcalc +category Package +revision 15878 +shortdesc Calculate formulas in a tabular environment +relocated 1 +longdesc Given a list of numbers and one (or more) formulas, the package +longdesc offers an easy syntax to build a table of values, i.e., a +longdesc tabular in which the first row contains the list of numbers, +longdesc and the other rows contain the calculated values of the +longdesc formulas for each number of the list. The table may be built +longdesc either horizontally or vertically and is fully customizable. +containersize 4964 +containerchecksum 7535398538d6802c4e70858028ce6e7414aa8a88336e71f90f7f909d015bf896eeb5e6652cc5bc5a2bb384bc25d280d8cd6506f7ba05823c20dda04fb3adf0ba +doccontainersize 789972 +doccontainerchecksum 7e35cad1507cfb62117aaddae77c3faa5d19c4e320193afa0054415e84d49833ba64afdf743b6241d611dbb4d45c6a532779293924f20b6c748659a361d6f30d +docfiles size=261 + RELOC/doc/latex/tabularcalc/README details="Readme" + RELOC/doc/latex/tabularcalc/tabularcalc_doc_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/tabularcalc/tabularcalc_doc_en.tex + RELOC/doc/latex/tabularcalc/tabularcalc_doc_fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tabularcalc/tabularcalc_doc_fr.tex + RELOC/doc/latex/tabularcalc/tabularcalc_doc_vn.pdf + RELOC/doc/latex/tabularcalc/tabularcalc_doc_vn.tex +runfiles size=5 + RELOC/tex/latex/tabularcalc/tabularcalc.sty +catalogue-ctan /macros/latex/contrib/tabularcalc +catalogue-license lppl +catalogue-topics table +catalogue-version 0.2 + +name tabularew +category Package +revision 15878 +shortdesc A variation on the tabular environment +relocated 1 +longdesc The package offers a modification of the tabular environment, +longdesc which deals with the problem of column heads that are +longdesc significantly wider than the body of the column. +containersize 2128 +containerchecksum 512851ce7641e0904dd25ab8a5cd5ac0dd281154067e09c4389fa3d6f330d30099dc60b252de4ebee52a2cf28d6b7d10bcf63fe4ab1472238db35754adc1dba6 +doccontainersize 142128 +doccontainerchecksum 4b5b8aca9d9be8cc6618d9393278f8da2069341a982cf6cda9e561b64bc158e5c08cf9257b592f82134cd74ce0b69682e15339d9068d9fedcdb26626dc2b8a7b +docfiles size=43 + RELOC/doc/latex/tabularew/README details="Readme" + RELOC/doc/latex/tabularew/tabularew.pdf details="Package documentation" +srccontainersize 7140 +srccontainerchecksum 9779876bfc65936043b0b4918784888acc68a8e8aec3b5eab6eea5cba3fea10ff0f696d1c38f68b37227cc086ca519630a96b945b33e3c1b853ee8ad95ec08bb +srcfiles size=7 + RELOC/source/latex/tabularew/tabularew.dtx + RELOC/source/latex/tabularew/tabularew.ins +runfiles size=2 + RELOC/tex/latex/tabularew/tabularew.sty +catalogue-ctan /macros/latex/contrib/tabularew +catalogue-license lppl +catalogue-topics table +catalogue-version 0.1 + +name tabulary +category Package +revision 34368 +shortdesc Tabular with variable width columns balanced +relocated 1 +longdesc The package defines a tabular*-like environment, tabulary, +longdesc taking a 'total width' argument as well as the column +longdesc specifications. The environment uses column types L, C, R and J +longdesc for variable width columns (\raggedright', \centering, +longdesc \raggedleft, and normally justified). In contrast to tabularx's +longdesc X columns, the width of each column is weighted according to +longdesc the natural width of the widest cell in the column. +containersize 4032 +containerchecksum 2c873a3840d8bf06a095ff3106b317ae6acfb8498d47b0229a37e247e0e0a9df80300759d65d13ebc9defb15d1cde0aa1e956d2f88bebab3311af459be47df0a +doccontainersize 255704 +doccontainerchecksum b619c6b3dce1421ad4f06ab5e6f0ecaa6dc4f55076b66303a4e5409b42a4a9e34d218251177234dc0f3dac13046638a75623db0094978badc4db93083660f5e9 +docfiles size=64 + RELOC/doc/latex/tabulary/README + RELOC/doc/latex/tabulary/tabulary.pdf details="Package documentation" +srccontainersize 8372 +srccontainerchecksum aa075526ddc2f793676ff45e9d37f02251660cec33b3f4a74da23e725181e48b2103fef16adcd6d622ea2c422a5fda1d46cd9fa1c35bbd72f06f77d05f3b4c58 +srcfiles size=9 + RELOC/source/latex/tabulary/tabulary.dtx + RELOC/source/latex/tabulary/tabulary.ins +runfiles size=4 + RELOC/tex/latex/tabulary/tabulary.sty +catalogue-ctan /macros/latex/contrib/tabulary +catalogue-license lppl +catalogue-topics table +catalogue-version 0.10 + +name tabvar +category Package +revision 28908 +shortdesc Typesetting tables showing variations of functions +relocated 1 +longdesc This LaTeX package is meant to ease the typesetting of tables +longdesc showing variations of functions as they are used in France. +execute addMap tabvar.map +containersize 8888 +containerchecksum c03d57d066a5955ffe24900f97de82f9bd96d8ebc20ff7b9c11c1e5a858d8f4a50b171f687e041d629a7dbf43da708bd03aa0405419c9879b9a5bddf23021cb7 +doccontainersize 590652 +doccontainerchecksum 700e42e3e8d37e1b4e11af90f8f76bc2c3234984aa39b229138b5bd86418797bb8102b4624a43d3ca1738a7f848f1e09164c077d7224819250c7e034c10b4103 +docfiles size=151 + RELOC/doc/latex/tabvar/README details="Readme" + RELOC/doc/latex/tabvar/demo.pdf details="Package demo" + RELOC/doc/latex/tabvar/demo.tex + RELOC/doc/latex/tabvar/tabvar.pdf details="Package documentation (French)" language="fr" +srccontainersize 11240 +srccontainerchecksum 2f20de4b18e444112088d089c92675f3f5ed4f93c1e630b708e3e88a777aa38e2c84d98ec0605a7e446cfc7a99c346190b559e72f4735c7d776151e76a38a987 +srcfiles size=10 + RELOC/source/latex/tabvar/tabvar.dtx + RELOC/source/latex/tabvar/tabvar.ins +runfiles size=13 + RELOC/fonts/afm/public/tabvar/tabvar.afm + RELOC/fonts/map/dvips/tabvar/tabvar.map + RELOC/fonts/tfm/public/tabvar/tabvar.tfm + RELOC/fonts/type1/public/tabvar/tabvar.pfb + RELOC/metapost/tabvar/tabvar.mp + RELOC/tex/latex/tabvar/tabvar.1 + RELOC/tex/latex/tabvar/tabvar.2 + RELOC/tex/latex/tabvar/tabvar.3 + RELOC/tex/latex/tabvar/tabvar.cfg + RELOC/tex/latex/tabvar/tabvar.sty +catalogue-also tablor tableaux tableauvariations tkz-tab +catalogue-ctan /macros/latex/contrib/tabvar +catalogue-license lppl1.3 +catalogue-topics maths-tabvar +catalogue-version 1.7 + +name tagging +category Package +revision 52064 +shortdesc Document configuration with tags +relocated 1 +longdesc The package allows the user to generate multiple documents from +longdesc a single source, by marking pieces of the document with tags +longdesc and specifying which marked pieces to include or exclude. +containersize 1292 +containerchecksum 8947ad0dc443891e0b5a395a27d2857acb5879821443ff64cb0b15b99eea7a69401ba165b26565bac1b0036032d49241504ea2e008106a85cdd896aa28abd9e4 +doccontainersize 114580 +doccontainerchecksum 06d470576136a96edb69bf595e55f16416da552a5f4a84980ff5393689cb58246d4fbe62b979c22b85c5abc58b926d9be63cd0ec734b43c653a0d0a5c4b04d8a +docfiles size=33 + RELOC/doc/latex/tagging/README details="Readme" + RELOC/doc/latex/tagging/tagging.pdf details="Package documentation" + RELOC/doc/latex/tagging/tagging.tex +runfiles size=1 + RELOC/tex/latex/tagging/tagging.sty +catalogue-contact-bugs https://github.com/Hightor/tagging/issues +catalogue-contact-repository https://github.com/Hightor/tagging +catalogue-ctan /macros/latex/contrib/tagging +catalogue-license lppl1.3 +catalogue-topics cond-comp +catalogue-version 1.1.0.1 + +name tagpair +category Package +revision 42138 +shortdesc Word-by-word glosses, translations, and bibliographic attributions +relocated 1 +longdesc This package provides environments and commands for pairing +longdesc lines, bottom lines, and tagged lines, intended to be used in +longdesc particular for word-by-word glosses, translations, and +longdesc bibliographic attributions, respectively. This LaTeX package is +longdesc inspired by Marcel R. van der Goot's classic Plain TeX macros +longdesc in gloss.tex. +containersize 1244 +containerchecksum 146c2e957965fb7ad9976a4b3b6c40d28b8d0cdaf0c8b9627f51dd55ba88b32ad7490bf000bb853a416b5dcc091243b9d6e92999431327a05879adcf89809d7f +doccontainersize 68912 +doccontainerchecksum af9dcc1c1dd0a5e44d3f436569cf5d36f8154b70219340dd914feb3d8c036164f1bd70eeb6819bb51a06c0f5c5dcab1b3ede8be4b4d22b2536529474d0d841ab +docfiles size=26 + RELOC/doc/latex/tagpair/COPYING + RELOC/doc/latex/tagpair/ChangeLog + RELOC/doc/latex/tagpair/README details="Readme" + RELOC/doc/latex/tagpair/sample.pdf details="Sample of use" + RELOC/doc/latex/tagpair/sample.tex + RELOC/doc/latex/tagpair/tagpair.pdf details="Package documentation" + RELOC/doc/latex/tagpair/tagpair.tex +runfiles size=1 + RELOC/tex/latex/tagpair/tagpair.sty +catalogue-ctan /macros/latex/contrib/tagpair +catalogue-license lppl1.3 +catalogue-topics text-layout +catalogue-version 1.1 + +name tagpdf +category Package +revision 57954 +shortdesc Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX +relocated 1 +longdesc The package offers tools to experiment with tagging and +longdesc accessibility using pdfLaTeX and LuaTaX. It is not intended for +longdesc production use, but allows the user to try out how difficult it +longdesc is to tag some structures. +containersize 21048 +containerchecksum ed62165f65bbcb159d727a41a02473ba32523f2d8f256a7ada5634fab4cfb1d037eff900dbbf271c7efbad78b306c71a9104dad1fb47662fee85f850afcaa450 +doccontainersize 596684 +doccontainerchecksum 3630a123d98ebe9efd15729beb88e5a7d6c92fa485d416d2023a9d732feaf54548649551a9b428ac1fa25824cbbbfcbdd11b5920509985847a0e8f922f433580 +docfiles size=860 + RELOC/doc/latex/tagpdf/README.md details="Readme" + RELOC/doc/latex/tagpdf/ex-AF-file.pdf + RELOC/doc/latex/tagpdf/ex-AF-file.tex + RELOC/doc/latex/tagpdf/ex-alt-actualtext-luatex.pdf + RELOC/doc/latex/tagpdf/ex-alt-actualtext.tex + RELOC/doc/latex/tagpdf/ex-attribute-luatex.pdf + RELOC/doc/latex/tagpdf/ex-attribute.pdf + RELOC/doc/latex/tagpdf/ex-attribute.tex + RELOC/doc/latex/tagpdf/ex-formula-problem-luatex.pdf + RELOC/doc/latex/tagpdf/ex-formula-problem.tex + RELOC/doc/latex/tagpdf/ex-mc-manual-para-split.pdf + RELOC/doc/latex/tagpdf/ex-mc-manual-para-split.tex + RELOC/doc/latex/tagpdf/ex-patch-list-luatex.pdf + RELOC/doc/latex/tagpdf/ex-patch-list.tex + RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma-luatex.pdf + RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma.pdf + RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma.tex + RELOC/doc/latex/tagpdf/ex-patch-sectioning-memoir.pdf + RELOC/doc/latex/tagpdf/ex-patch-sectioning-memoir.tex + RELOC/doc/latex/tagpdf/ex-softhyphen.pdf + RELOC/doc/latex/tagpdf/ex-softhyphen.tex + RELOC/doc/latex/tagpdf/ex-spaceglyph-listings.pdf + RELOC/doc/latex/tagpdf/ex-spaceglyph-listings.tex + RELOC/doc/latex/tagpdf/ex-structure-luatex.pdf + RELOC/doc/latex/tagpdf/ex-structure.tex + RELOC/doc/latex/tagpdf/ex-tagpdf-template.pdf + RELOC/doc/latex/tagpdf/ex-tagpdf-template.tex + RELOC/doc/latex/tagpdf/example-input-file.tex + RELOC/doc/latex/tagpdf/link-figure-input.tex + RELOC/doc/latex/tagpdf/pac3.PNG + RELOC/doc/latex/tagpdf/tagpdf.bib + RELOC/doc/latex/tagpdf/tagpdf.pdf details="Package documentation" + RELOC/doc/latex/tagpdf/tagpdf.tex +srccontainersize 22772 +srccontainerchecksum 9bef63a003833525c6b1a6e983ba53f362eb818b0ddc1006a0eda80a27ee46a1ca90b321bbce1e5cc83d67493f74db04d63f6d50b90863915b574c1ab0da7300 +srcfiles size=31 + RELOC/source/latex/tagpdf/tagpdf-backend.dtx + RELOC/source/latex/tagpdf/tagpdf-checks.dtx + RELOC/source/latex/tagpdf/tagpdf-mc.dtx + RELOC/source/latex/tagpdf/tagpdf-roles.dtx + RELOC/source/latex/tagpdf/tagpdf-space.dtx + RELOC/source/latex/tagpdf/tagpdf-struct.dtx + RELOC/source/latex/tagpdf/tagpdf-tree.dtx + RELOC/source/latex/tagpdf/tagpdf.dtx + RELOC/source/latex/tagpdf/tagpdf.ins +runfiles size=35 + RELOC/tex/latex/tagpdf/tagpdf-attr-code.sty + RELOC/tex/latex/tagpdf/tagpdf-checks-code.sty + RELOC/tex/latex/tagpdf/tagpdf-deprecated.def + RELOC/tex/latex/tagpdf/tagpdf-luatex.def + RELOC/tex/latex/tagpdf/tagpdf-mc-code-generic.sty + RELOC/tex/latex/tagpdf/tagpdf-mc-code-lua.sty + RELOC/tex/latex/tagpdf/tagpdf-mc-code-shared.sty + RELOC/tex/latex/tagpdf/tagpdf-pdftex.def + RELOC/tex/latex/tagpdf/tagpdf-roles-code.sty + RELOC/tex/latex/tagpdf/tagpdf-space-code.sty + RELOC/tex/latex/tagpdf/tagpdf-struct-code.sty + RELOC/tex/latex/tagpdf/tagpdf-tree-code.sty + RELOC/tex/latex/tagpdf/tagpdf-user.sty + RELOC/tex/latex/tagpdf/tagpdf.lua + RELOC/tex/latex/tagpdf/tagpdf.sty + RELOC/tex/latex/tagpdf/tagpdfdocu-patches.sty +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-license lppl1.3c +catalogue-topics tagged-pdf accessible +catalogue-version 0.80 + +name talk +category Package +revision 42428 +shortdesc A LaTeX class for presentations +relocated 1 +longdesc The talk document class allows you to create slides for screen +longdesc presentations or printing on transparencies. It also allows you +longdesc to print personal notes for your talk. You can create overlays +longdesc and display structure information (current section / +longdesc subsection, table of contents) on your slides. The main feature +longdesc that distinguishes talk from other presentation classes like +longdesc beamer or prosper is that it allows the user to define an +longdesc arbitrary number of slide styles and switch between these +longdesc styles from slide to slide. This way the slide layout can be +longdesc adapted to the slide content. For example, the title or +longdesc contents page of a talk can be given a slightly different +longdesc layout than the other slides. The talk class makes no +longdesc restrictions on the slide design whatsoever. The entire look +longdesc and feel of the presentation can be defined by the user. The +longdesc style definitions should be put in a separate sty file. +longdesc Currently the package comes with only one set of pre-defined +longdesc slide styles (greybars.sty). Contributions from people who are +longdesc artistically more gifted than the author are more than welcome! +containersize 4676 +containerchecksum 371c640254994616744b2bd0c9b4040415392bb2a3adfbe5f4656faaea5bf3e7d2d4ab35373a65a857fd57112f7fc628321492d5bf7c5b052e0026c277663d7d +doccontainersize 131060 +doccontainerchecksum d6a641789923559a94b0077d718e56258804caa1dec0c9ea0f9d010e92ffc361884664ac22b07b95d20f464d18ac76301a718430d8f1ee30172489cae3b844ae +docfiles size=45 + RELOC/doc/latex/talk/README details="Readme" + RELOC/doc/latex/talk/example.tex + RELOC/doc/latex/talk/talkdoc.pdf details="Package documentation" + RELOC/doc/latex/talk/talkdoc.tex +srccontainersize 556 +srccontainerchecksum 10661b5ee41914bdc60b5ab38c887087d6529b976a3acdbf95bf80160c6e432fe6f8a4d6030711f5672f8aea564fd23ada09f92b0e3a2a05ede903026d24bb36 +srcfiles size=1 + RELOC/source/latex/talk/Makefile +runfiles size=5 + RELOC/tex/latex/talk/sidebars.sty + RELOC/tex/latex/talk/talk.cls +catalogue-also seminar foiltex +catalogue-ctan /macros/latex/contrib/talk +catalogue-license lppl +catalogue-topics presentation +catalogue-version 1.1 + +name tamefloats +category Package +revision 27345 +shortdesc Experimentally use \holdinginserts with LaTeX floats +relocated 1 +longdesc LaTeX's figures, tables, and \marginpars are dangerous for +longdesc footnotes (and probably also \enlargethispage). Here is a +longdesc proposal (a 'patch' package) to help, by using \holdinginserts +longdesc in a simple way. It replaces the original problem with a new +longdesc one -- it is an experiment to find out whether the new problem +longdesc is less bad (or it is just a contribution to the discussion, +longdesc maybe just a summary of previous work). The files provide +longdesc further information. +containersize 4372 +containerchecksum bd45962a9caa5b098b6a6a5c0bd3fb964e13cf2744a5fc960a97910183799d532aba24d5f4774ac29eef14bf1439e285010b2e22641167c826d5a36262fc39ef +doccontainersize 2236 +doccontainerchecksum 2b9d013fcb93682e9be0fb1758fc871b4784eef72a0892383a35073aa177ac29acfda5e54b6a919379b43a3dd0fb0b22dd44476857665efb59b2e9cf27bb679a +docfiles size=4 + RELOC/doc/latex/tamefloats/README.txt details="Readme" + RELOC/doc/latex/tamefloats/deml3541.tex + RELOC/doc/latex/tamefloats/fltfltdk.tex + RELOC/doc/latex/tamefloats/newbug.tex +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-license lppl1.3 +catalogue-topics experimental float +catalogue-version 0.42 + +name tamethebeast +category Package +revision 15878 +shortdesc A manual about bibliographies and especially BibTeX +relocated 1 +longdesc An (as-complete-as-possible) manual about bibliographies in +longdesc LaTeX, and thus mainly about BibTeX. +containersize 436 +containerchecksum 75a71590f1d905bd2a78b508d66936975eeacbfa32e850f599e94efa92da2b043edb8b0899b7027268fa131d94283c13432d4c4126afb79d1615bd538af52436 +doccontainersize 811124 +doccontainerchecksum 0df79f434714deefd60b9b9d32dfbd47ac7e560c26ec0d02465538eefbc779f0252aef235ae2e0a2d2d634d618bb52c73b31c229b5245866239776c742ebe69a +docfiles size=264 + RELOC/doc/bibtex/tamethebeast/CHANGES + RELOC/doc/bibtex/tamethebeast/Makefile + RELOC/doc/bibtex/tamethebeast/README details="Readme" + RELOC/doc/bibtex/tamethebeast/idxstyle.ist + RELOC/doc/bibtex/tamethebeast/local.bib + RELOC/doc/bibtex/tamethebeast/ttb_en.pdf details="Package documentation" + RELOC/doc/bibtex/tamethebeast/ttb_en.sec1.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec2.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec3.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec4.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec5.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.tex + RELOC/doc/bibtex/tamethebeast/ttb_style.sty +catalogue-ctan /info/bibtex/tamethebeast +catalogue-license lppl1.3 +catalogue-topics bibtex-doc +catalogue-version 1.4 + +name tap +category Package +revision 31731 +shortdesc TeX macros for typesetting complex tables +relocated 1 +longdesc The package offers a simple notation for pretty complex tables +longdesc (to Michael J. Ferguson's credit). With PostScript, the package +longdesc allows shaded/coloured tables, diagonal rules, etc. The package +longdesc is supposed to work with both Plain and LaTeX. An AWK converter +longdesc from ASCII semigraphic tables to TAP notation is included. +containersize 10672 +containerchecksum 07ca34ae47976c65deba5443052001406390befb6dc675af7651141505f088e2f67f39648f14a94f70788eda79221efb05c2246d1991811e697e88c7408f6cf6 +doccontainersize 27740 +doccontainerchecksum a61b861cdac25c0d8c7d48f67abb9eed88458d0d55e8afb706adabfbed0d1e7c7159fcf000b8012885f82f849ee965bf6a2607f1b67f2d9191f59f8538147230 +docfiles size=46 + RELOC/doc/generic/tap/0README.TAP details="Readme" + RELOC/doc/generic/tap/0tapdoc.inf + RELOC/doc/generic/tap/circ.eps + RELOC/doc/generic/tap/circmag.eps + RELOC/doc/generic/tap/epsfx.tex + RELOC/doc/generic/tap/tapanch.100 + RELOC/doc/generic/tap/tapanch.mp + RELOC/doc/generic/tap/tapcv/sampdos/0sampdos.inf + RELOC/doc/generic/tap/tapcv/sampdos/post1.tex + RELOC/doc/generic/tap/tapcv/sampdos/post2.tex + RELOC/doc/generic/tap/tapcv/sampdos/prea1.tex + RELOC/doc/generic/tap/tapcv/sampdos/prea2.tex + RELOC/doc/generic/tap/tapcv/sampdos/prea3.tex + RELOC/doc/generic/tap/tapcv/sampdos/tapcv0.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv1.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv2.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv3.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv4.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv5.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv6.raw + RELOC/doc/generic/tap/tapcv/sampdos/tcv.bat + RELOC/doc/generic/tap/tapcv/sampdos/tcv_.bat + RELOC/doc/generic/tap/tapcv/tapcv.awk + RELOC/doc/generic/tap/tapdoc.tex + RELOC/doc/generic/tap/tapxamp1.tex + RELOC/doc/generic/tap/tapxamp2.tex +runfiles size=9 + RELOC/tex/generic/tap/tap.tex +catalogue-ctan /macros/generic/tables/tap077.zip +catalogue-license pd +catalogue-topics table +catalogue-version 0.77 + +name tapir +category Package +revision 20484 +shortdesc A simple geometrical font +relocated 1 +longdesc Tapir is a simple geometrical font mostly created of line and +longdesc circular segments with constant thickness. The font is +longdesc available as Metafont source and in Adobe Type 1 format. The +longdesc character set contains all characters in the range 0-127 (as in +longdesc cmr10), accented characters used in the Czech, Slovak and +longdesc Polish languages. +containersize 51876 +containerchecksum f3d93c9ad813008fa72cbe317d244bca9a70855c20f327d22d1720b79d70019af0f5d8aef237fc78a598a545f44a4612f1e5a7622b34247044ab230bd42eed5d +doccontainersize 53796 +doccontainerchecksum a32573ba9df3d0b30e796f7bdd03e63ba8a96559380895b8db2d33fd9812c8b781b75d19a12a24405c52df13acd9a5f2e925da64b019e92a124d143345bb5bb9 +docfiles size=16 + RELOC/doc/fonts/tapir/readme details="Readme" + RELOC/doc/fonts/tapir/readme.pdf details="Package documentation" +runfiles size=49 + RELOC/fonts/source/public/tapir/tap-enc.mf + RELOC/fonts/source/public/tapir/tap.mf + RELOC/fonts/type1/public/tapir/tap.pfb +catalogue-contact-home http://mitek.webpark.cz/ +catalogue-ctan /fonts/tapir +catalogue-license gpl +catalogue-topics font-mf font-type1 font czech polish slovak +catalogue-version 0.2 + +name tasks +category Package +revision 57835 +shortdesc Horizontally columned lists +relocated 1 +longdesc The reason for the creation of the tasks environment was an +longdesc unwritten agreement in German maths textbooks (especially +longdesc (junior) high school textbooks) to organize exercises in +longdesc columns counting horizontally rather than vertically. This is +longdesc what the tasks package helps to achieve. +containersize 7388 +containerchecksum 995da480ba215f79bf989524f3fe8d66919529aa8cd9bf40d5e42276f3fa0ec27c4a0da51281b8070dd956af1cf80403fdea0916d39e54a9f21796c16773ebc5 +doccontainersize 479388 +doccontainerchecksum 2ac26058e157163991fee0704d4f22e8f0480a22391f029e29aeb5fb76772955b753ba29261db58918391129e24c5a31efaae6273aab653ef13a34f863347dfc +docfiles size=123 + RELOC/doc/latex/tasks/README details="Readme" + RELOC/doc/latex/tasks/tasks-manual.pdf details="Package documentation" + RELOC/doc/latex/tasks/tasks-manual.tex +runfiles size=9 + RELOC/tex/latex/tasks/tasks.cfg + RELOC/tex/latex/tasks/tasks.sty +catalogue-contact-bugs https://github.com/cgnieder/tasks/issues/ +catalogue-contact-repository https://github.com/cgnieder/tasks/ +catalogue-ctan /macros/latex/contrib/tasks +catalogue-license lppl1.3c +catalogue-topics list list-enum expl3 +catalogue-version 1.3a + +name tcldoc +category Package +revision 22018 +catalogue tclldoc +shortdesc Doc/docstrip for tcl +relocated 1 +longdesc The tclldoc package and class simplify the application of the +longdesc doc/docstrip style of literate programming with Dr. John +longdesc Ousterhout's Tool Command Language (Tcl, pronounced "tickle", +longdesc a.k.a. The Cool Language). The tclldoc package is a bit like +longdesc the doc package is for LaTeX, whereas the tclldoc class more +longdesc parallels the ltxdoc class. +containersize 7004 +containerchecksum 82348df3f6dcedc17a3cd50f709d01b1f2b0e4be9345e63d40ee6ad2aff908f97c7d19d586431e3fe8399a8d076505ceaadb5afe0116093240a6e59a335934c9 +doccontainersize 462992 +doccontainerchecksum 61f24f628c2b62c02e08e1a2a3a2fd917d057baaf977e7837b1f62e4331e370b83f8a0b00e679c86ddb1893d21af13211185502ed7bb19699d4f33356d3a3a0d +docfiles size=178 + RELOC/doc/latex/tcldoc/README.txt details="Readme" + RELOC/doc/latex/tcldoc/examples/README.txt details="Readme" + RELOC/doc/latex/tcldoc/examples/parsetcl.dtx + RELOC/doc/latex/tcldoc/examples/parsetcl.ins + RELOC/doc/latex/tcldoc/examples/pdf.dtx + RELOC/doc/latex/tcldoc/examples/pdf.ins + RELOC/doc/latex/tcldoc/tclldoc.pdf details="Package documentation" + RELOC/doc/latex/tcldoc/tools/README.txt details="Readme" + RELOC/doc/latex/tcldoc/tools/eemenu.dtx + RELOC/doc/latex/tcldoc/tools/eemenu.ins + RELOC/doc/latex/tcldoc/tools/sourcedtx.dtx + RELOC/doc/latex/tcldoc/tools/sourcedtx.ins +srccontainersize 41140 +srccontainerchecksum 44a8d3661061ab7dd828fe1cfa8342384e2cd20f5338d54fb0a79516a2cf686a3a6d2a1648d18a4d0c1395a60fe8f8a7b5af0d0c2edc38385852117f408f9e26 +srcfiles size=41 + RELOC/source/latex/tcldoc/tclldoc.dtx + RELOC/source/latex/tcldoc/tclldoc.ins +runfiles size=9 + RELOC/tex/latex/tcldoc/tcldoc.cls + RELOC/tex/latex/tcldoc/tcldoc.sty + RELOC/tex/latex/tcldoc/tclldoc.cls + RELOC/tex/latex/tcldoc/tclldoc.sty +catalogue-ctan /macros/latex/contrib/tclldoc +catalogue-license lppl +catalogue-topics listing doc-supp class +catalogue-version 2.40 + +name tcolorbox +category Package +revision 56610 +shortdesc Coloured boxes, for LaTeX examples and theorems, etc +relocated 1 +longdesc This package provides an environment for coloured and framed +longdesc text boxes with a heading line. Optionally, such a box may be +longdesc split in an upper and a lower part; thus the package may be +longdesc used for the setting of LaTeX examples where one part of the +longdesc box displays the source code and the other part shows the +longdesc output. Another common use case is the setting of theorems. The +longdesc package supports saving and reuse of source code and text +longdesc parts. The package depends on the pgf, verbatim, environ, and +longdesc etoolbox packages. +containersize 230544 +containerchecksum 70647656ee420fcb3c832e8552c2340229b0586a638f7c55404f96f20dcb3e8fd2c561a44ece09e6f507a3c4e2be189aa4cb3a3c4d8bc338ca4396e5d4b9416d +doccontainersize 4716812 +doccontainerchecksum 5ec6c748b48b0166555437e0f75203e616e43a8b15787890b00d36df7c86de1971d2a876c5e7228f60f9ccd2e14c7b30ec061f35127a76f6194722c7103c9c0f +docfiles size=2321 + RELOC/doc/latex/tcolorbox/Basilica_5.png + RELOC/doc/latex/tcolorbox/CHANGES + RELOC/doc/latex/tcolorbox/README details="Readme" + RELOC/doc/latex/tcolorbox/lichtspiel.jpg + RELOC/doc/latex/tcolorbox/tcolorbox-example-poster.pdf + RELOC/doc/latex/tcolorbox/tcolorbox-example-poster.tex + RELOC/doc/latex/tcolorbox/tcolorbox-example.pdf details="Examples of use" + RELOC/doc/latex/tcolorbox/tcolorbox-example.tex + RELOC/doc/latex/tcolorbox/tcolorbox-tutorial-poster.pdf details="Tutorial: Poster creation with tcolorbox" + RELOC/doc/latex/tcolorbox/tcolorbox-tutorial-poster.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.abstract.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.beamer.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.bib + RELOC/doc/latex/tcolorbox/tcolorbox.doc.breakable.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.coreoptions.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.documentation.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.external.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.filling.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.fitting.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.graphics.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.hooks.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.index.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.initoptions.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.intro.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.listings.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.magazine.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.picturecredits.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.poster.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.quickref.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.raster.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.recording.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.references.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_main.sty + RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_snippet.sty + RELOC/doc/latex/tcolorbox/tcolorbox.doc.sidebyside.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.skins.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.technical.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.theorems.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.verbatim.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.vignette.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.xparse.tex + RELOC/doc/latex/tcolorbox/tcolorbox.pdf details="Package documentation" + RELOC/doc/latex/tcolorbox/tcolorbox.tex +runfiles size=143 + RELOC/tex/latex/tcolorbox/blueshade.png + RELOC/tex/latex/tcolorbox/crinklepaper.png + RELOC/tex/latex/tcolorbox/goldshade.png + RELOC/tex/latex/tcolorbox/pink_marble.png + RELOC/tex/latex/tcolorbox/tcbbreakable.code.tex + RELOC/tex/latex/tcolorbox/tcbdocumentation.code.tex + RELOC/tex/latex/tcolorbox/tcbexternal.code.tex + RELOC/tex/latex/tcolorbox/tcbfitting.code.tex + RELOC/tex/latex/tcolorbox/tcbhooks.code.tex + RELOC/tex/latex/tcolorbox/tcblistings.code.tex + RELOC/tex/latex/tcolorbox/tcblistingscore.code.tex + RELOC/tex/latex/tcolorbox/tcblistingsutf8.code.tex + RELOC/tex/latex/tcolorbox/tcbmagazine.code.tex + RELOC/tex/latex/tcolorbox/tcbminted.code.tex + RELOC/tex/latex/tcolorbox/tcbposter.code.tex + RELOC/tex/latex/tcolorbox/tcbprocessing.code.tex + RELOC/tex/latex/tcolorbox/tcbraster.code.tex + RELOC/tex/latex/tcolorbox/tcbskins.code.tex + RELOC/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex + RELOC/tex/latex/tcolorbox/tcbtheorems.code.tex + RELOC/tex/latex/tcolorbox/tcbvignette.code.tex + RELOC/tex/latex/tcolorbox/tcbxparse.code.tex + RELOC/tex/latex/tcolorbox/tcolorbox.sty +catalogue-contact-bugs https://github.com/T-F-S/tcolorbox/issues +catalogue-ctan /macros/latex/contrib/tcolorbox +catalogue-license lppl1.3 +catalogue-topics boxing colour verbatim listing macro-demo +catalogue-version 4.42 + +name tdclock +category Package +revision 33043 +shortdesc A ticking digital clock package for PDF output +relocated 1 +longdesc A ticking digital clock package to be used in Pdf-LaTeX +longdesc documents, for example in presentations. +containersize 3944 +containerchecksum 29e2e50d9fa432b08ea730b8a12228cd2bd3eefe61946e576a262bab06a966c0b28c13d48b1074a838a1a567f9797a943282d17e936db146f15e7631261761fe +doccontainersize 244100 +doccontainerchecksum 139c82690e2c9b695a10a6f3e6f94a54c3ae4d4a929ddc18763e248114926554206fb4c007ed758695476de3750ffc1dce3db75efdf2598434f27abd1ac84baa +docfiles size=70 + RELOC/doc/latex/tdclock/Changelog + RELOC/doc/latex/tdclock/README details="Readme" + RELOC/doc/latex/tdclock/tdclock-beamer-example.pdf details="Example Usage" + RELOC/doc/latex/tdclock/tdclock-beamer-example.tex + RELOC/doc/latex/tdclock/tdclock-doc.pdf details="Package documentation" + RELOC/doc/latex/tdclock/tdclock-doc.tex +runfiles size=5 + RELOC/tex/latex/tdclock/tdclock.sty +catalogue-also analogclock +catalogue-ctan /macros/latex/contrib/tdclock +catalogue-license gpl2 +catalogue-topics date-time +catalogue-version 2.5 + +name tds +category Package +revision 15878 +shortdesc The TeX Directory Structure standard +relocated 1 +longdesc Defines a structure for placement of TeX-related files on an +longdesc hierarchical file system, in a way that is well-defined, and is +longdesc readily implementable. +containersize 488 +containerchecksum 20b739d69ba9804c12761c0eb76c0b7961657d2ba2fb00db9d083022279cca2b2b176fc7aaba11fceb77da4b7a23ba53c80e98a492fb4929adb545d56f5e8958 +doccontainersize 232652 +doccontainerchecksum ab08ea4220a30ac896add47e5422dbf2ff3eb65c3c89e90c87983c5dff75dfae6fc4d6f8cda58f2da51dae505f537ea07cee0e2378da845c20e790f8a1724f7c +docfiles size=129 + RELOC/doc/generic/tds/ChangeLog + RELOC/doc/generic/tds/Makefile + RELOC/doc/generic/tds/README details="Readme" + RELOC/doc/generic/tds/index.html + RELOC/doc/generic/tds/tds.dvi + RELOC/doc/generic/tds/tds.html details="The standard, converted to HTML" + RELOC/doc/generic/tds/tds.pdf details="The standard specification" + RELOC/doc/generic/tds/tds.sed + RELOC/doc/generic/tds/tds.tex + RELOC/doc/generic/tds/tds2texi.el + RELOC/doc/generic/tds/tdsguide.cls +catalogue-contact-home http://tug.org/tds/ +catalogue-ctan /tds +catalogue-license other-free +catalogue-topics std-spec +catalogue-version 1.1 + +name tdsfrmath +category Package +revision 15878 +shortdesc Macros for French teachers of mathematics +relocated 1 +longdesc A collection of macros for French maths teachers in colleges +longdesc and lycees (and perhaps elsewhere). It is hoped that the +longdesc package will facilitate the everyday use of LaTeX by +longdesc mathematics teachers. +containersize 5480 +containerchecksum f2c7a19dc327230f46320c695eaf40e9ff17088a709e38ec7f8de23f5c0cbeb18f606bd41625a1229734dacc80edba9d052c21620f7cdf213f60e915b6128010 +doccontainersize 717616 +doccontainerchecksum 9b0e747f90b75f372f04eddfb1c17dc73c3ef6a95d576077790b23bb496cee07afd3af5d1a53581872255c4e71b933949beae909591d0e1c407d9efc3f1d227d +docfiles size=201 + RELOC/doc/latex/tdsfrmath/LISEZMOI details="Lisez-moi" language="fr" + RELOC/doc/latex/tdsfrmath/README details="Readme" language="en" + RELOC/doc/latex/tdsfrmath/tdsfrmath.pdf details="Package documentation (French)" language="fr" +srccontainersize 33688 +srccontainerchecksum f44f98be464973ef3596d6e0d77e508280b597e4010b2c94620aad0ff950c8328ba1d4bbcf22e0f71f091c311d9b99dd979c73c182debeedd90ab14bea9e1d7a +srcfiles size=32 + RELOC/source/latex/tdsfrmath/Makefile + RELOC/source/latex/tdsfrmath/tdsfrmath.dtx + RELOC/source/latex/tdsfrmath/tdsfrmath.ins +runfiles size=7 + RELOC/tex/latex/tdsfrmath/suite.sto + RELOC/tex/latex/tdsfrmath/taupe.sto + RELOC/tex/latex/tdsfrmath/tdsfrmath.sty +catalogue-ctan /macros/latex/contrib/tdsfrmath +catalogue-license lppl +catalogue-topics maths +catalogue-version 1.3 + +name technics +category Package +revision 29349 +shortdesc A package to format technical documents +relocated 1 +longdesc The package provides a very simple LaTeX document template, in +longdesc the hope that this use of LaTeX will become attractive to +longdesc typical word processor users. (Presentation is as if it were a +longdesc class; users are expected to start from a template document.) +containersize 1792 +containerchecksum 8eb9eab801bd83fbf0d9365c36a202f909cbcd49b8da6887f3e26aa3fcd047b8085e0b405f0f5fa7f2b5ea0ef21a9956114ecaa7934e1b46b1abe55583d5e759 +doccontainersize 80880 +doccontainerchecksum 2158bee41c25a1fbbf8c963e3364cf7d08e160aa895f54c77ceeaab7da6963232af61b4c7349d1be7f0aa84097bc7c00cac7748bdb8ba523a899b9e7cf6ed11d +docfiles size=31 + RELOC/doc/latex/technics/png2eps.sh + RELOC/doc/latex/technics/rf-logo.zip + RELOC/doc/latex/technics/technics.pdf details="Package documentation" + RELOC/doc/latex/technics/technics.tex + RELOC/doc/latex/technics/view-dvi.sh + RELOC/doc/latex/technics/vmlinux.eps + RELOC/doc/latex/technics/vmlinux.png +runfiles size=1 + RELOC/tex/latex/technics/technics.sty +catalogue-ctan /macros/latex/contrib/technics +catalogue-license lppl +catalogue-topics doc-templ +catalogue-version 1.0 + +name technion-thesis-template +category Package +revision 49889 +shortdesc Template for theses on the Technion graduate school +relocated 1 +longdesc This is a template for writing a thesis according to the +longdesc Technion specifications. +containersize 6760 +containerchecksum 5e9c6bd47744601258bef52102acdfc744e0dd1219a7236a5710d6dd98ba5ebf1061bd6070c5d02707a7c8b895e362db51f48ee081126bcd9a99e523c6b9e5c0 +doccontainersize 120248 +doccontainerchecksum bcc290eae933b00cb32af0da6d31c6190f3b38d02a599fec7f8cbfcdb6f8737380d4c440911b08de5d768d9925526a63521c97c20a8c075ce8e9500dd3a62c24 +docfiles size=49 + RELOC/doc/xelatex/technion-thesis-template/Example/abbrev.tex + RELOC/doc/xelatex/technion-thesis-template/Example/abstract.tex + RELOC/doc/xelatex/technion-thesis-template/Example/acknowledgments.tex + RELOC/doc/xelatex/technion-thesis-template/Example/appendix.tex + RELOC/doc/xelatex/technion-thesis-template/Example/chapfirst.tex + RELOC/doc/xelatex/technion-thesis-template/Example/chapsecond.tex + RELOC/doc/xelatex/technion-thesis-template/Example/discussion.tex + RELOC/doc/xelatex/technion-thesis-template/Example/habstract.tex + RELOC/doc/xelatex/technion-thesis-template/Example/hacknowledgments.tex + RELOC/doc/xelatex/technion-thesis-template/Example/introduction.tex + RELOC/doc/xelatex/technion-thesis-template/Example/main.pdf details="Example of use" + RELOC/doc/xelatex/technion-thesis-template/Example/main.tex + RELOC/doc/xelatex/technion-thesis-template/Example/mybib.bib + RELOC/doc/xelatex/technion-thesis-template/Example/technionThesisMacros.sty + RELOC/doc/xelatex/technion-thesis-template/README.md details="Readme" +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-license cc-by-4 +catalogue-topics dissertation class +catalogue-version 1.0 + +name ted +category Package +revision 15878 +shortdesc A (primitive) token list editor +relocated 1 +longdesc Just like sed is a stream editor, ted is a token list editor. +longdesc Actually, it is not as powerfull as sed, but its main feature +longdesc is that it really works with tokens, not only characters. The +longdesc ted package provides two user macros: \Substitute and +longdesc \ShowTokens. The first is maybe the most useful: it performs +longdesc substitutions in token lists (even inside braces). The second +longdesc displays each token of the list (one per line) with its catcode +longdesc (in the list, not just the current one), and can be useful for +longdesc debugging or for TeX learners. Ted is designed to work well +longdesc even if strange tokens (that is, unusual {charcode, catcode} +longdesc pairs or tokens with a confusing meaning) occur in the list. +containersize 3148 +containerchecksum 42b0fcded19e05d5cf316fdfc0f1f6474816b656a57bfb5214a76f47e644bc16a42bfa95a21b80251723e2c30651a284d873d898e84c277922120a9169d274df +doccontainersize 165928 +doccontainerchecksum a36387e2520d7afadeb270f7393ef45ac1b26673840d541a50ecf864304d529b24be7d107070c96cfa123801284ffc53c9daa60753640fcd2ad6367f88887069 +docfiles size=53 + RELOC/doc/latex/ted/README details="Readme" + RELOC/doc/latex/ted/ted-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/ted/ted.pdf details="Package documentation (English)" +srccontainersize 15216 +srccontainerchecksum b134ab90045781a2a686206d4de20ebf63ffd678d47d81815365f67eecce60984d7e17e3b9098e42f06876b1f711609bfa4133efb4b74705f25ba0e4323984bf +srcfiles size=13 + RELOC/source/latex/ted/ted.dtx +runfiles size=3 + RELOC/tex/latex/ted/ted.sty +catalogue-also patch +catalogue-ctan /macros/latex/contrib/ted +catalogue-license lppl +catalogue-topics debug-supp +catalogue-version 1.06 + +name templates-fenn +category Package +revision 15878 +shortdesc Templates for TeX usage +relocated 1 +longdesc A set of templates for using LaTeX packages that the author +longdesc uses, comprising: - scrlttr2.tex: a letter, written with +longdesc scrlttr2.cls from the KOMA-Script bundle; - dinbrief.tex: a +longdesc letter according to the German (DIN) standards, written with +longdesc dinbrief.cls; - kbrief.tex: a brief memo ('Kurzbrief') to +longdesc accompany enclosures, as used in German offices, again based on +longdesc dinbrief; - vermerk.tex: a general form for taking down notes +longdesc on events in the office; and - diabetes.tex: a diary for the +longdesc basis-bolus insulin therapy of diabetes mellitus, using +longdesc scrartcl.cls from the KOMA-Script bundle. +containersize 704 +containerchecksum cc61496f15f9c4060c8d42de23e3bf6f6d2be02d3a8b4fb761f2fda4a9c3565d74bf1f107dd9371e096bef79ddbdef56d2e696cd84cb4fe39a41986b8ffbbc78 +doccontainersize 5992 +doccontainerchecksum 2a96b0963b2d09edd3f6a6866ae298001e6ccd4e96b98a9002df6e6718284a786b63761441c287ddd63dd5eba636fcb8ce9769d498962ffe2565e771902755e1 +docfiles size=10 + RELOC/doc/latex/templates-fenn/diabetes.tex + RELOC/doc/latex/templates-fenn/dinbrief.tex + RELOC/doc/latex/templates-fenn/kbrief.tex + RELOC/doc/latex/templates-fenn/scrlttr2.tex + RELOC/doc/latex/templates-fenn/scrlttr2en.tex + RELOC/doc/latex/templates-fenn/templates-fenn-de.txt details="Package documentation (German)" language="de" + RELOC/doc/latex/templates-fenn/templates-fenn-en.txt details="Package documentation (English)" language="en" + RELOC/doc/latex/templates-fenn/vermerk.tex +catalogue-contact-home http://www.juergenfenn.de/tex.html +catalogue-ctan /info/templates/fenn +catalogue-license lppl +catalogue-topics doc-templ + +name templates-sommer +category Package +revision 15878 +shortdesc Templates for TeX usage +relocated 1 +longdesc A set of templates for using LaTeX packages that the author +longdesc uses, comprising: - Hausarbeit.tex: for students of the +longdesc Lehrstuhl Volkskunde an der Friedrich-Schiller-Universitat +longdesc Jena; - Psycho-Dipl.tex: for diploma theses in psychology. +containersize 508 +containerchecksum 55b47c4718786fd4910d099878d5808288e83714567adbdbceea32a76e92f7e36c3f850d8597b297445a6ff428d1d0dbaf9209a387485eca0fb1a85f4909ed59 +doccontainersize 14424 +doccontainerchecksum 543b5cce4842dc6b084d90f9bf4e3c19c18a690ebe85379d9d93a5998fed06272bcac4cb3ae44f965614962827b9926fec3439322e38a720c134133a88cd94f0 +docfiles size=14 + RELOC/doc/latex/templates-sommer/Hausarbeit.bib + RELOC/doc/latex/templates-sommer/Hausarbeit.tex + RELOC/doc/latex/templates-sommer/Logo.jpg + RELOC/doc/latex/templates-sommer/Psycho-Dipl.bib + 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-license lppl +catalogue-topics doc-templ + +name templatetools +category Package +revision 34495 +shortdesc Commands useful in LaTeX templates +relocated 1 +longdesc The package provides a collection of tools, which are helpful +longdesc for the creation of a LaTeX template if conditional paths for +longdesc code execution are required. All the commands work both in the +longdesc preamble and in the document. +containersize 2104 +containerchecksum 16abbf8e5c8972961d112cba712f927be24fca191467677bf27d76ba30c2eba8cd237842b003b9cf45247a122294d517b14a4bf5b4938eedaf3055ffdd22c05a +doccontainersize 440152 +doccontainerchecksum 54d696f510cc75384703f750a8c532eb2a0d46e02821fd9126daac52ed1b39859882d475758cc1ff7fd6257211e49ee0fc5c06dbb2e13e83d4584523064cf19f +docfiles size=109 + RELOC/doc/latex/templatetools/README details="Readme" + RELOC/doc/latex/templatetools/templatetools.pdf details="Package documentation" +srccontainersize 6684 +srccontainerchecksum 685e379f557b683adcf198fb0a6f962b1da431e004470d5fc53c8815f4e7048e73d6851ae1792d78fa322f8efc5375d40c8f3c79404a8feb4a229df2fadf154f +srcfiles size=8 + RELOC/source/latex/templatetools/templatetools.dtx + RELOC/source/latex/templatetools/templatetools.ins +runfiles size=2 + RELOC/tex/latex/templatetools/templatetools.sty +catalogue-ctan /macros/latex/contrib/templatetools +catalogue-license lppl1.3 +catalogue-topics doc-templ + +name tempora +category Package +revision 39596 +shortdesc Greek and Cyrillic to accompany Times +relocated 1 +longdesc This package, derived from TemporaLGCUni by Alexej Kryukov, is +longdesc meant as a companion to Times text font packages, providing +longdesc Greek and Cyrillic in matching weights and styles. OpenType and +longdesc Type1 fonts are provided, with LaTeX support files giving +longdesc essentially complete LGR coverage of monotonic, polytonic and +longdesc ancient Greek, and almost full T2A coverage of Cyrillic. +execute addMap tempora.map +containersize 1260752 +containerchecksum 0e1cc1a13f7937e5497f454b15ca66e0975b784b80223a902bf12a9587abdfdb56116b100e04306b1999e053b7c3716b32e1183dd7e6624162611f3b70388df6 +doccontainersize 250588 +doccontainerchecksum 18259e25b2c9f2a9cfbce9a9303d8827af069bbe2a7ade5c14518ce2c19dc973a86fadaa99b2abc8bc65644ee5371c745abba03cca76a685382b7d8b6d20bc6e +docfiles size=67 + RELOC/doc/fonts/tempora/COPYING + RELOC/doc/fonts/tempora/README details="Readme" + RELOC/doc/fonts/tempora/tempora-doc.pdf details="Package documentation" + RELOC/doc/fonts/tempora/tempora-doc.tex +runfiles size=1163 + RELOC/fonts/afm/public/tempora/Tempora-Bold.afm + RELOC/fonts/afm/public/tempora/Tempora-BoldItalic.afm + RELOC/fonts/afm/public/tempora/Tempora-Italic.afm + RELOC/fonts/afm/public/tempora/Tempora-Regular.afm + RELOC/fonts/enc/dvips/tempora/lgr-tempora.enc + RELOC/fonts/enc/dvips/tempora/lgr-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/ot2-tempora.enc + RELOC/fonts/enc/dvips/tempora/ot2-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/t2a-tempora.enc + RELOC/fonts/enc/dvips/tempora/t2a-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/t2b-tempora.enc + RELOC/fonts/enc/dvips/tempora/t2b-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/t2c-tempora.enc + RELOC/fonts/enc/dvips/tempora/t2c-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/tmp_6rqc3d.enc + RELOC/fonts/enc/dvips/tempora/tmp_ac5xuc.enc + RELOC/fonts/enc/dvips/tempora/tmp_aq2g6w.enc + RELOC/fonts/enc/dvips/tempora/tmp_arnbc6.enc + RELOC/fonts/enc/dvips/tempora/tmp_jglahm.enc + RELOC/fonts/enc/dvips/tempora/tmp_m6t7eu.enc + RELOC/fonts/enc/dvips/tempora/tmp_mdnuug.enc + RELOC/fonts/enc/dvips/tempora/tmp_q3dzgc.enc + RELOC/fonts/enc/dvips/tempora/tmp_v6f3ze.enc + RELOC/fonts/enc/dvips/tempora/tmp_xvqxbr.enc + RELOC/fonts/enc/dvips/tempora/tmp_y4r4km.enc + RELOC/fonts/enc/dvips/tempora/tmp_yz5x6b.enc + RELOC/fonts/map/dvips/tempora/tempora.map + RELOC/fonts/opentype/public/tempora/Tempora-Bold.otf + RELOC/fonts/opentype/public/tempora/Tempora-BoldItalic.otf + RELOC/fonts/opentype/public/tempora/Tempora-Italic.otf + RELOC/fonts/opentype/public/tempora/Tempora-Regular.otf + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ts1.tfm + RELOC/fonts/type1/public/tempora/Tempora-Bold.pfb + RELOC/fonts/type1/public/tempora/Tempora-BoldItalic.pfb + RELOC/fonts/type1/public/tempora/Tempora-Italic.pfb + RELOC/fonts/type1/public/tempora/Tempora-Regular.pfb + RELOC/fonts/vf/public/tempora/Tempora-Bold-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tosf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tosf-ts1.vf + RELOC/tex/latex/tempora/OT1Tempora-Sup.fd + RELOC/tex/latex/tempora/OT1Tempora-TLF.fd + RELOC/tex/latex/tempora/OT1Tempora-TOsF.fd + RELOC/tex/latex/tempora/T1Tempora-Sup.fd + RELOC/tex/latex/tempora/T1Tempora-TLF.fd + RELOC/tex/latex/tempora/T1Tempora-TOsF.fd + RELOC/tex/latex/tempora/TS1Tempora-TLF.fd + RELOC/tex/latex/tempora/TS1Tempora-TOsF.fd + RELOC/tex/latex/tempora/lgrtempora-tlf.fd + RELOC/tex/latex/tempora/lgrtempora-tosf.fd + RELOC/tex/latex/tempora/ot2tempora-tlf.fd + RELOC/tex/latex/tempora/ot2tempora-tosf.fd + RELOC/tex/latex/tempora/t2atempora-tlf.fd + RELOC/tex/latex/tempora/t2atempora-tosf.fd + RELOC/tex/latex/tempora/t2btempora-tlf.fd + RELOC/tex/latex/tempora/t2btempora-tosf.fd + RELOC/tex/latex/tempora/t2ctempora-tlf.fd + RELOC/tex/latex/tempora/t2ctempora-tosf.fd + RELOC/tex/latex/tempora/tempora.fontspec + RELOC/tex/latex/tempora/tempora.sty +catalogue-also txfonts newtx +catalogue-ctan /fonts/tempora +catalogue-license gpl2 +catalogue-topics font font-cyrillic font-greek font-otf font-type1 font-serif +catalogue-version 1.05 + +name tengwarscript +category Package +revision 34594 +shortdesc LaTeX support for using Tengwar fonts +relocated 1 +longdesc The package provides "mid-level" access to tengwar fonts, +longdesc providing good quality output. Each tengwar sign is represented +longdesc by a command, which will place the sign nicely in relation to +longdesc previous signs. A transcription package is available from the +longdesc package's home page: writing all those tengwar commands would +longdesc quickly become untenable. The package supports the use of a +longdesc wide variety of tengwar fonts that are available from the net; +longdesc metric and map files are provided for all the supported fonts. +containersize 32276 +containerchecksum c6a29d928b1f25dc4b8893f9fc803f3a5deef9e8e9aa4803153fbae5cdd7170eea819eafba8a165203e48c8b2f443c55ce682df9f7e968ab621f2cf7eb082108 +doccontainersize 472140 +doccontainerchecksum 35825a4c1cac91c088daea643e8a8901f0c3ea15c44e8a9328883c22c1fddab95fb32a65372af3979698f81e68d77b34764a1c5748460a28396480075cb594d1 +docfiles size=146 + RELOC/doc/latex/tengwarscript/COPYING + RELOC/doc/latex/tengwarscript/README details="Readme" + RELOC/doc/latex/tengwarscript/install-tengwar-scripts.sh + RELOC/doc/latex/tengwarscript/quetta.eps + RELOC/doc/latex/tengwarscript/quetta.pdf + RELOC/doc/latex/tengwarscript/tengfonts.pdf details="Font sampler" + RELOC/doc/latex/tengwarscript/tengfonts.tex + RELOC/doc/latex/tengwarscript/tengtest.pdf details="Crib sheet and tests" + RELOC/doc/latex/tengwarscript/tengtest.tex + RELOC/doc/latex/tengwarscript/tengwarscript.pdf details="Package manual" +srccontainersize 24200 +srccontainerchecksum 4afbd079f20f9989a817acf49b46409bfab6ba0b328249eedf428a5a11e127fedc6c763c87db08b8b7c453562400878ea0c54d6d66c6bb7d407aa498a78dda38 +srcfiles size=74 + RELOC/source/latex/tengwarscript/tengwarscript.dtx + RELOC/source/latex/tengwarscript/tengwarscript.ins +runfiles size=125 + RELOC/fonts/enc/dvips/tengwarscript/tengwaralt.enc + RELOC/fonts/enc/dvips/tengwarscript/tengwarcap.enc + RELOC/fonts/enc/dvips/tengwarscript/tengwarscript.enc + RELOC/fonts/map/dvips/tengwarscript/tengwarscript.map + RELOC/fonts/tfm/public/tengwarscript/Elfica32.tfm + RELOC/fonts/tfm/public/tengwarscript/Parmaite.tfm + RELOC/fonts/tfm/public/tengwarscript/Parmaite_alt.tfm + RELOC/fonts/tfm/public/tengwarscript/Parmaite_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarFormal12.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarFormalA12.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarFormal_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarGothika050.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldor.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorAlt.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals1.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals2.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldor_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenya.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaAlt.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals1.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals2.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenya_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarin.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinAlt.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals1.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals2.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarin_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarTelerin.tfm + RELOC/fonts/tfm/public/tengwarscript/UnicodeParmaite.tfm + RELOC/fonts/tfm/public/tengwarscript/tngan.tfm + RELOC/fonts/tfm/public/tengwarscript/tngan_full.tfm + RELOC/fonts/tfm/public/tengwarscript/tngana.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganab.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganabi.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganai.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganb.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganb_full.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganbi.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganbi_full.tfm + RELOC/fonts/tfm/public/tengwarscript/tngani.tfm + RELOC/fonts/tfm/public/tengwarscript/tngani_full.tfm + RELOC/fonts/vf/public/tengwarscript/Parmaite_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarFormal_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarNoldor_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarQuenya_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarSindarin_full.vf + RELOC/fonts/vf/public/tengwarscript/tngan_full.vf + RELOC/fonts/vf/public/tengwarscript/tnganb_full.vf + RELOC/fonts/vf/public/tengwarscript/tnganbi_full.vf + RELOC/fonts/vf/public/tengwarscript/tngani_full.vf + RELOC/tex/latex/tengwarscript/annatar.cfg + RELOC/tex/latex/tengwarscript/annatarbold.cfg + RELOC/tex/latex/tengwarscript/annatarbolditalic.cfg + RELOC/tex/latex/tengwarscript/annataritalic.cfg + RELOC/tex/latex/tengwarscript/elfica.cfg + RELOC/tex/latex/tengwarscript/formal.cfg + RELOC/tex/latex/tengwarscript/gothika.cfg + RELOC/tex/latex/tengwarscript/noldor.cfg + RELOC/tex/latex/tengwarscript/noldorcapI.cfg + RELOC/tex/latex/tengwarscript/noldorcapII.cfg + RELOC/tex/latex/tengwarscript/parmaite.cfg + RELOC/tex/latex/tengwarscript/quenya.cfg + RELOC/tex/latex/tengwarscript/quenyacapI.cfg + RELOC/tex/latex/tengwarscript/quenyacapII.cfg + RELOC/tex/latex/tengwarscript/sindarin.cfg + RELOC/tex/latex/tengwarscript/sindarincapI.cfg + RELOC/tex/latex/tengwarscript/sindarincapII.cfg + RELOC/tex/latex/tengwarscript/teleri.cfg + RELOC/tex/latex/tengwarscript/tengwarscript.sty + RELOC/tex/latex/tengwarscript/unicodeparmaite.cfg +catalogue-ctan /macros/latex/contrib/tengwarscript +catalogue-license lppl +catalogue-topics font-invented font-supp +catalogue-version 1.3.1 + +name tensind +category Package +revision 51481 +shortdesc Typeset tensors +relocated 1 +longdesc Typesets tensors with dots filling gaps and fine tuning of +longdesc index placement. +containersize 2708 +containerchecksum fc20b6f6b705218b82b5788582d8b017be783e42c87b3f35e7aa99a8215ab0168b7da899c73ef1ebc282bedd5c715e69ed9e1c19b94d9b6369ba8e9986b5c5d6 +doccontainersize 219304 +doccontainerchecksum 12e443e2ffe876732759ddf91c8948e9cfcebc3c1c96949c51f090e15dadfbcaf801e488c8d043855b576404207612ae91d982279cf0b29bd73d4a5d1528bb6c +docfiles size=56 + RELOC/doc/latex/tensind/README.md details="Readme" + RELOC/doc/latex/tensind/tensind.pdf details="Package documentation" + RELOC/doc/latex/tensind/tensind.tex +runfiles size=2 + RELOC/tex/latex/tensind/tensind.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos +catalogue-ctan /macros/latex/contrib/tensind +catalogue-license mit +catalogue-topics maths subsup-pos +catalogue-version 1.1 + +name tensor +category Package +revision 15878 +shortdesc Typeset tensors +relocated 1 +longdesc A package which allows the user to set tensor-style super- and +longdesc subscripts with offsets between successive indices. It supports +longdesc the typesetting of tensors with mixed upper and lower indices +longdesc with spacing, also typset preposed indices. This is a complete +longdesc revision and extension of the original 'tensor' package by Mike +longdesc Piff. +containersize 2004 +containerchecksum 8f048f9c72eb693bf9e75e6ebda2901eb6b6add654b1f89651d54eb9416559c2455436f5e825160bfce220c790e00aa3a6f95a4557b3fdc880bade768dd36c05 +doccontainersize 90232 +doccontainerchecksum d9ec6b7b49d028a5a405f16c8cdb54873d92d3a0968b7df38aad44da607c8ea8cdcac45cce63b0bd2258a2a89787e2388b2375189636b93bf643055c0b9f86fd +docfiles size=28 + RELOC/doc/latex/tensor/README details="Package README" + RELOC/doc/latex/tensor/tensor.pdf details="Package documentation" +srccontainersize 7272 +srccontainerchecksum fb246320405988579412cb8afc3f0f0951bd6ca09974c3f38c83979ff195e16e43c1852bca5097e8e4b07039230d3c019117234d4bb77eb75e70bedbc796ab3a +srcfiles size=7 + RELOC/source/latex/tensor/tensor.dtx + RELOC/source/latex/tensor/tensor.ins +runfiles size=2 + RELOC/tex/latex/tensor/tensor.sty +catalogue-also tensind +catalogue-ctan /macros/latex/contrib/tensor +catalogue-license lppl +catalogue-topics subsup-pos maths +catalogue-version 2.1 + +name termcal +category Package +revision 22514 +shortdesc Print a class calendar +relocated 1 +longdesc This package is intended to print a term calendar for use in +longdesc planning a class. It has a flexible mechanism for specifying +longdesc which days of the week are to be included and for inserting +longdesc text either regularly on the same day each week, or on selected +longdesc days, or for a series of consecutive days. It also has a +longdesc flexible mechanism for specifing class and nonclass days. Text +longdesc may be inserted into consecutive days so that it automatically +longdesc flows around nonclass days. +containersize 2616 +containerchecksum f28ee31f06cf2b3119df8010aa6a8312d5365452e19c3a278db7bee3bdeafe9ae0d3b07decdf1a104d8eb763abc5e02ff0e6c7030dce924596ac89d8e9508e13 +doccontainersize 75500 +doccontainerchecksum 44f54dedd59afad78eea60ccfd43805dca1a4dc87a3d827e0fda26db15505dec18d91cf0629ec937dcf3eb14d1244f80559a0fa1ef09b30288bf687099fcec1f +docfiles size=25 + RELOC/doc/latex/termcal/Contents + RELOC/doc/latex/termcal/README details="Readme" + RELOC/doc/latex/termcal/termcal.pdf details="Package documentation" +srccontainersize 7624 +srccontainerchecksum 0dd39a06088a0bd2bbcc3a9d6715816368deb07c55c85897f7c49d23553ff941f5f68d7b0ebf8fc54c4fd4d2bb8a510cec3ac9d9b509f27aeee29696c75a7ef2 +srcfiles size=8 + RELOC/source/latex/termcal/termcal.dtx + RELOC/source/latex/termcal/termcal.ins +runfiles size=2 + RELOC/tex/latex/termcal/termcal.sty +catalogue-also calendar kalender plcalendar +catalogue-ctan /macros/latex/contrib/termcal +catalogue-license lppl1 +catalogue-topics calendar +catalogue-version 1.8 + +name termcal-de +category Package +revision 47111 +shortdesc German localization for termcal +relocated 1 +longdesc This package provides a German localization to the termcal +longdesc package written by Bill Mitchell, which is intended to print a +longdesc term calendar for use in planning a class. termcal-de depends +longdesc on the following other packages: termcal, pgfkeys, pgfopts, +longdesc datetime2, and datetime2-german. +containersize 2164 +containerchecksum 9d4d0be3e26dc69fa3986fbe41099330e97cdd4d3aa0b12a180657577ef839878aea9e546a5651cdd0ea45e7af3968c5b83b509ad5bb3ef210d42af5c00fd91b +doccontainersize 107488 +doccontainerchecksum 48f0ec01526f75e9e2b8369f8b30bbd8e4f093cc91fd5b485a36e225de35fa0afc750508b6533f2ec82ef123805788e40e98d5459dc85a73bef675162e682fa7 +docfiles size=28 + RELOC/doc/latex/termcal-de/README.md details="Readme" + RELOC/doc/latex/termcal-de/termcal-de-doc.pdf details="Package documentation" +srccontainersize 9640 +srccontainerchecksum 51d257533f7897d6b605a2ac26f323e3c241cb6920b329387f1be3bfc8444e98570f2dc4f86e78e81f5838204a90a7f79074989737005f035e076c41be74f4a3 +srcfiles size=12 + RELOC/source/latex/termcal-de/termcal-de-doc-example1.dtx + RELOC/source/latex/termcal-de/termcal-de-doc-example2.dtx + RELOC/source/latex/termcal-de/termcal-de-doc.dtx + RELOC/source/latex/termcal-de/termcal-de.dtx + RELOC/source/latex/termcal-de/termcal-de.ins +runfiles size=2 + RELOC/tex/latex/termcal-de/termcal-de.sty +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-license lppl1.3c +catalogue-topics calendar german +catalogue-version 2.0 + +name termlist +category Package +revision 18923 +shortdesc Label any kind of term with a continuous counter +relocated 1 +longdesc The termlist package provides environments to indent and label +longdesc any kind of terms with a continuous number. Candidate terms may +longdesc appear inside an equation or eqnarray environment. +containersize 1232 +containerchecksum 799d5fbfb9b055e8674a244ecaac65c2f0412a4c173e6608fff946544142d851d8dbba02505fa8be21bc37b15acc2ba99a6f0dc77a13dd241fedea1c1b38dec9 +doccontainersize 160640 +doccontainerchecksum 14add37c32500f246eea2a3219b58a232c9a8f41cf3cf5a0d1d2aaf4cba4d700c1ba5379b037fe10cfc06385ff0a7d0925b46beeef15dff2502142e56f37e597 +docfiles size=43 + RELOC/doc/latex/termlist/README details="Readme" + RELOC/doc/latex/termlist/termlist.pdf details="Package documentation" +srccontainersize 4356 +srccontainerchecksum 2d6a14828ca29c08d0b08f33749deaafef88ec73bdd72450468b5332e95c83ccc5d29d0a154a6cc49a04ca0a9e5a17d0f28f25139d928b87cb14a2059d51d848 +srcfiles size=4 + RELOC/source/latex/termlist/termlist.dtx +runfiles size=1 + RELOC/tex/latex/termlist/termlist.sty +catalogue-ctan /macros/latex/contrib/termlist +catalogue-license lppl +catalogue-topics label-ref +catalogue-version 1.1 + +name termmenu +category Package +revision 37700 +shortdesc The package provides support for terminal-based menus using expl3 +relocated 1 +longdesc When writing programs, it's often required to present the user +longdesc with a list of options/actions. The user is then expected to +longdesc select one of these options for the program to process. +longdesc termmenu provides this mechanism for TeX. It requires only +longdesc expl3 support, thus the l3kernel and l3packages are both +longdesc required. +containersize 2016 +containerchecksum 5c3d4ac4a2bab5e18453b9de0b372b364981444df3550c3a195a8fee841a6d76e73835096ff1b71a37f5e5acf0fd2777dbc8846be9345f99b004adb560ced517 +doccontainersize 473824 +doccontainerchecksum 029f4ae3b57e0b226883e66030db2d3c41cffc0a4dbd4f8b3662562fd566d8a09b7aa0c83d98f7fb0cdfbd1226c5dde9c93211565292f037e5b5554e9a5d02b4 +docfiles size=117 + RELOC/doc/generic/termmenu/README details="Readme" + RELOC/doc/generic/termmenu/termmenu.pdf details="Package documentation" +srccontainersize 6808 +srccontainerchecksum 56c1396e90a4c1db5dd28ae96c6f3ebe0310c163d7fdb2cb4e3ade78b522b349fba0bd43556165c282bedcab167241033b065feaac4c4a5e3dc2d8a8a55dca61 +srcfiles size=7 + RELOC/source/generic/termmenu/termmenu.dtx + RELOC/source/generic/termmenu/termmenu.ins +runfiles size=2 + RELOC/tex/generic/termmenu/termmenu.tex +catalogue-ctan /macros/generic/termmenu +catalogue-license lppl1.3 +catalogue-topics comp-mgmt expl3 + +name testhyphens +category Package +revision 38928 +shortdesc Testing hyphenation patterns +relocated 1 +longdesc The package may be used for testing hyphenation patterns or for +longdesc controlling that specific words are hyphenated as expected. +longdesc This package implements some old TUGboat code to adapt it to +longdesc LaTeX with some enhancements. It differs form \showhyphens, +longdesc because it typesets its output on the document's output file. +longdesc It also works with xelatex, where \showhyphens requires a +longdesc workaround. +containersize 2044 +containerchecksum c16a9299721c571ce9bdc91e4ed4cc54c973b43fed5189d2f377b2a9143d94d3eeba6bd6b728e3df92a5436b3e2c5e07a21d4a6af0210bf87784d40d96caa42c +doccontainersize 383684 +doccontainerchecksum 44cc1d9afa4e12ef2dc1f7be2d7718fa33b80e5ee16c7396053690bfea6246f444b50cb044d314ec677436a3559ff1ba9fa227acb446db37bacaa2829c309b2b +docfiles size=96 + RELOC/doc/latex/testhyphens/README details="Readme" + RELOC/doc/latex/testhyphens/manifest.txt + RELOC/doc/latex/testhyphens/testhyphens.pdf details="Package documentation" +srccontainersize 8036 +srccontainerchecksum 2f84528ee4ca5d8434b0042f7b24908ff97c45f27580a5b59bfe226b195c295d4fa546fe240acb981db6deba970e2b020d38c00e6bbf5a0cc1b3caf2b3cbd506 +srcfiles size=6 + RELOC/source/latex/testhyphens/testhyphens.dtx +runfiles size=1 + RELOC/tex/latex/testhyphens/testhyphens.sty +catalogue-ctan /macros/latex/contrib/testhyphens +catalogue-license lppl1.3 +catalogue-topics hyphenation +catalogue-version 0.7 + +name testidx +category Package +revision 52213 +shortdesc Dummy text for testing index styles and indexing applications +relocated 1 +longdesc This is a LaTeX package that provides a command to produce +longdesc dummy text interspersed with \index commands to test an index +longdesc style or indexing application. The dummy text is mostly in +longdesc English, but includes extended Latin characters provided either +longdesc through LaTeX accent commands or directly with UTF-8 +longdesc characters, depending on the setup, to allow for testing +longdesc extended Latin alphabets. The supplementary package +longdesc testidx-glossaries.sty uses the indexing interface provided by +longdesc the glossaries package. +containersize 27180 +containerchecksum 003179c0efebe0bb84cf1ddc80db6d905af6cbbbf59753b4102e5f7a760b5e7c90057976e2d0aac138b001e2a211da8758f8e2285866ac34c8287e1d3b82d1e4 +doccontainersize 3342856 +doccontainerchecksum deab83c1eb6f77b379b38bc81e680e18b9fb02a4b147363e05646849af1fe402249c50a8eb41e6ecf60fb1cc505cd82593ae90c356cd4bf43fa5685cf5162f44 +docfiles size=1362 + RELOC/doc/latex/testidx/CHANGES + RELOC/doc/latex/testidx/README details="Readme" + RELOC/doc/latex/testidx/samples/sample-idx-a4.pdf + RELOC/doc/latex/testidx/samples/sample-idx-a4.tex + RELOC/doc/latex/testidx/samples/sample-idx-amsmath.pdf + RELOC/doc/latex/testidx/samples/sample-idx-amsmath.tex + RELOC/doc/latex/testidx/samples/sample-idx-babel-german.pdf + RELOC/doc/latex/testidx/samples/sample-idx-babel-german.tex + RELOC/doc/latex/testidx/samples/sample-idx-german.pdf + RELOC/doc/latex/testidx/samples/sample-idx-german.tex + RELOC/doc/latex/testidx/samples/sample-idx-hyp.pdf + RELOC/doc/latex/testidx/samples/sample-idx-hyp.tex + RELOC/doc/latex/testidx/samples/sample-idx-letter.pdf + RELOC/doc/latex/testidx/samples/sample-idx-letter.tex + RELOC/doc/latex/testidx/samples/sample-idx-lua.pdf + RELOC/doc/latex/testidx/samples/sample-idx-lua.tex + RELOC/doc/latex/testidx/samples/sample-idx-subset.pdf + RELOC/doc/latex/testidx/samples/sample-idx-subset.tex + RELOC/doc/latex/testidx/samples/sample-idx-t1.pdf + RELOC/doc/latex/testidx/samples/sample-idx-t1.tex + RELOC/doc/latex/testidx/samples/sample-idx-utf8.pdf + RELOC/doc/latex/testidx/samples/sample-idx-utf8.tex + RELOC/doc/latex/testidx/samples/sample-idx-xe-digraphs.pdf + RELOC/doc/latex/testidx/samples/sample-idx-xe-digraphs.tex + RELOC/doc/latex/testidx/samples/sample-idx-xe.pdf + RELOC/doc/latex/testidx/samples/sample-idx-xe.tex + RELOC/doc/latex/testidx/samples/sample-idx.pdf + RELOC/doc/latex/testidx/samples/sample-idx.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls-xe.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls-xe.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-desc.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-desc.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-xe-digraphs.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-xe-digraphs.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-xindy.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-xindy.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss.tex + RELOC/doc/latex/testidx/samples/sample-noidxgloss.pdf + RELOC/doc/latex/testidx/samples/sample-noidxgloss.tex + RELOC/doc/latex/testidx/testidx-code.pdf details="Code documentation" + RELOC/doc/latex/testidx/testidx-glossaries-diglyphs-utf8.bib + RELOC/doc/latex/testidx/testidx-glossaries-diglyphs.tex + RELOC/doc/latex/testidx/testidx-glossaries-markers.bib + RELOC/doc/latex/testidx/testidx-glossaries-mathsym.bib + RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs-utf8.bib + RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs.bib + RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs.tex + RELOC/doc/latex/testidx/testidx-glossaries-numbers.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples-ascii.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples-utf8.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples.tex + RELOC/doc/latex/testidx/testidx-manual.pdf details="User manual" + RELOC/doc/latex/testidx/testidx-manual.tex +srccontainersize 51648 +srccontainerchecksum de09a92aefaff5ad23898b7b5c4ef447280c3664eb468c433161cc82bb040f2c3fb265ec976f4d985914804a96422748b2dc20863805e066cfefb976110a1a6b +srcfiles size=98 + RELOC/source/latex/testidx/testidx.dtx + RELOC/source/latex/testidx/testidx.ins +runfiles size=48 + RELOC/tex/latex/testidx/testidx-glossaries.sty + RELOC/tex/latex/testidx/testidx.sty +catalogue-also blindtext +catalogue-ctan /macros/latex/contrib/testidx +catalogue-license lppl1.3 +catalogue-topics index dummy-gen +catalogue-version 1.2 + +name tetragonos +category Package +revision 49732 +shortdesc Four-Corner codes of Chinese characters +relocated 1 +longdesc This is a XeLaTeX package for mapping Chinese characters to +longdesc their codes in the Four-Corner Method. +containersize 207756 +containerchecksum dbb37eec17d41633d951b3202289289bffd9bf9a8f509cfbb7f98baab9b7e684e7d7fbfb5f50ce41251d09d9f0ea81fd9e68fa91984e788e5e43f8e398463fff +doccontainersize 108080 +doccontainerchecksum f55cba055574e78934b8766f02de08f417f625042627c2c1e64cb7fe39ecb1e3553d5b862afe521f4d65805713c856ab000e3db3b7fc906266886f2ebec490a6 +docfiles size=31 + RELOC/doc/xelatex/tetragonos/README.md details="Readme" + RELOC/doc/xelatex/tetragonos/tetragonos-example.tex + RELOC/doc/xelatex/tetragonos/tetragonos.pdf details="Package documentation" language="zh" + RELOC/doc/xelatex/tetragonos/tetragonos.tex +runfiles size=376 + RELOC/tex/xelatex/tetragonos/tetragonos-database.def + RELOC/tex/xelatex/tetragonos/tetragonos.sty +catalogue-contact-bugs https://github.com/Mikumikunisiteageru/tetragonos/issues +catalogue-contact-home https://github.com/Mikumikunisiteageru/tetragonos +catalogue-ctan /macros/xetex/latex/tetragonos +catalogue-license lppl1.3c +catalogue-topics chinese +catalogue-version 1 + +name teubner +category Package +revision 57684 +shortdesc Philological typesetting of classical Greek +relocated 1 +longdesc An extension to babel greek option for typesetting classical +longdesc Greek with a philological approach. The package works with the +longdesc author's greek fonts using the 'Lispiakos' font shape derived +longdesc from that of the fonts used in printers' shops in Lispia. The +longdesc package name honours the publisher B.G. Teubner +longdesc Verlaggesellschaft whose Greek text publications are of high +longdesc quality. +containersize 9644 +containerchecksum 9f83b38366047a36b064162abce047026bf71341ab4d0ae1f3f827b1b73e790d25a5deaa1a5c724c80a75a081d82ffbc6e24b1b41c5c09efe4e10ffbd1ed5a65 +doccontainersize 1051276 +doccontainerchecksum 16e3c96b9a6da29e06a80cf1e98cb2b993d1f98b5827ab05cacba7f29dc1e28dfb704d096295bdf6b995408d83ad42af6b8a59eecc78be41a4e5219fded64627 +docfiles size=278 + RELOC/doc/latex/teubner/README details="Readme" + RELOC/doc/latex/teubner/teubner-doc.pdf details="User manual" + RELOC/doc/latex/teubner/teubner-doc.tex + RELOC/doc/latex/teubner/teubner.pdf details="Package documentation" + RELOC/doc/latex/teubner/teubner.txt +srccontainersize 40464 +srccontainerchecksum 807b8754730c20c0327eee6bef45a83ff8ba8134477fbecd4b5f3cc9c0ad95bad74a698c12a0906d0211a4d9a0b0a0ac3d74864db375e42879cc32821c363e23 +srcfiles size=43 + RELOC/source/latex/teubner/teubner.dtx +runfiles size=14 + RELOC/tex/latex/teubner/teubner.sty + RELOC/tex/latex/teubner/teubnertx.sty +catalogue-ctan /macros/latex/contrib/teubner +catalogue-license lppl1.3c +catalogue-topics greek multilingual-addon +catalogue-version 5.4 + +name tex +category TLCore +revision 57972 +shortdesc A sophisticated typesetting engine +longdesc TeX is a typesetting system that incorporates a macro +longdesc processor. A TeX source document specifies or incorporates a +longdesc number of macro definitions that instruct the TeX engine how to +longdesc typeset the document. The TeX engine also uses font metrics +longdesc generated by Metafont, or by any of several other mechanisms +longdesc that incorporate fonts from other sources into an environment +longdesc suitable for TeX. TeX has been, and continues, a basis and an +longdesc inspiration for several other programs, including e-TeX and +longdesc PDFTeX. The distribution includes the source of Knuth's TeX +longdesc book; this source is there to read, as an example of writing +longdesc TeX -- it should not be processed without Knuth's direct +longdesc permission. +depend cm +depend hyphen-base +depend knuth-lib +depend kpathsea +depend plain +depend tex.ARCH +execute AddFormat name=tex engine=tex options="tex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain +containersize 896 +containerchecksum e38f62fcc5ccee22a909eae5ea196e055eae59eedc652ce9788a3b4520995e97f64c683f1ba940853a06030a7ea6f1d749ed4dda1cb30433f87f5f9cdce5a9a7 +doccontainersize 43540 +doccontainerchecksum 3056263569276ca7a62ccb03542eac99b648d36c398ded17204a2624f06920c506985aedd1a639a48bc60af6394d091cdfd9ec44000730bd8e8c83c2234bb569 +docfiles size=27 + texmf-dist/doc/man/man1/initex.1 + texmf-dist/doc/man/man1/initex.man1.pdf + texmf-dist/doc/man/man1/tex.1 + texmf-dist/doc/man/man1/tex.man1.pdf +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/tex +catalogue-license knuth +catalogue-topics engine +catalogue-version 3.141592653 + +name tex-ewd +category Package +revision 15878 +shortdesc Macros to typeset calculational proofs and programs in Dijkstra's style +relocated 1 +longdesc Edsger W. Dijkstra and others suggest a unique style to present +longdesc mathematical proofs and to construct programs. This package +longdesc provides macros that support calculational proofs and +longdesc Dijkstra's "guarded command language". +containersize 3388 +containerchecksum 9850acafe002f1b6b147d00aee55e4cd9c1813edbea0f570282119fd8b2f134d3a48c113cc9957c69905c4e88a06097c45829026342d7ec88838870eedd7fc44 +doccontainersize 7684 +doccontainerchecksum 05f6414dd2309401d1800e2b053d7907703e144f829c2e7623a7c98c1313da50c0a659c25fa0d9a0fcb8b50891c575b47d8fb8a90b925e105ed9a6f8c45b8667 +docfiles size=8 + RELOC/doc/generic/tex-ewd/README details="Readme" + RELOC/doc/generic/tex-ewd/bsdlic.txt + RELOC/doc/generic/tex-ewd/p0.tex + RELOC/doc/generic/tex-ewd/t1.tex +runfiles size=2 + RELOC/tex/generic/tex-ewd/dotnot.tex +catalogue-ctan /macros/generic/tex-ewd +catalogue-license bsd +catalogue-topics maths + +name tex-font-errors-cheatsheet +category Package +revision 18314 +shortdesc Cheat sheet outlining the most common TeX font errors +relocated 1 +longdesc This is a compact three-pages document highlighting the TeX +longdesc flow of integrating fonts, and explains how some of the most +longdesc common font-related error messages occur. Also, hints are given +longdesc on how to address those. +containersize 548 +containerchecksum 403b4faae7b16b1eea5a4d2a7d77bcd8a6e7a7b5be54299b79635280be8f82f59d281380754a0bd1b9e53ff4fb534fb3bca0cf8bbe1cf0ee88ee4d925fba103d +doccontainersize 219316 +doccontainerchecksum adc72626fcb4c5a9285ad4a7cfd1c6b984f1aa26c7732f35cdc241f7b00d623f6b646e878317f30d10b9f47f4eee33e923538be58f3c15bee668f4fe652f0170 +docfiles size=62 + RELOC/doc/latex/tex-font-errors-cheatsheet/README details="Readme" + RELOC/doc/latex/tex-font-errors-cheatsheet/tex-font-cheatsheet.pdf details="Package documentation" + 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-license lppl +catalogue-topics tut-cheat +catalogue-version 0.1 + +name tex-gyre +category Package +revision 48058 +shortdesc TeX Fonts extending freely available URW fonts +relocated 1 +longdesc The TeX-GYRE bundle consists of six font families: TeX Gyre +longdesc Adventor is based on the URW Gothic L family of fonts (which is +longdesc derived from ITC Avant Garde Gothic, designed by Herb Lubalin +longdesc and Tom Carnase). TeX Gyre Bonum is based on the URW Bookman L +longdesc family (from Bookman Old Style, designed by Alexander +longdesc Phemister). TeX Gyre Chorus is based on URW Chancery L Medium +longdesc Italic (from ITC Zapf Chancery, designed by Hermann Zapf in +longdesc 1979). TeX-Gyre Cursor is based on URW Nimbus Mono L (based on +longdesc Courier, designed by Howard G. Kettler in 1955, for IBM). TeX +longdesc Gyre Heros is based on URW Nimbus Sans L (from Helvetica, +longdesc prepared by Max Miedinger, with Eduard Hoffmann in 1957). TeX +longdesc Gyre Pagella is based on URW Palladio L (from Palatino, +longdesc designed by Hermann Zapf in the 1940s). TeX Gyre Schola is +longdesc based on the URW Century Schoolbook L family (from Century +longdesc Schoolbook, designed by Morris Fuller Benton for the American +longdesc Type Founders). TeX Gyre Termes is based on the URW Nimbus +longdesc Roman No9 L family of fonts (from Times New Roman, designed by +longdesc Stanley Morison together with Starling Burgess and Victor +longdesc Lardent and first offered by Monotype). The constituent +longdesc standard faces of each family have been greatly extended +longdesc (though Chorus omits Greek support and has no small-caps +longdesc family). Each family is available in Adobe Type 1 and Open Type +longdesc formats, and LaTeX support (for use with a variety of +longdesc encodings) is provided. Vietnamese characters were added by Han +longdesc The Thanh. There are companion maths fonts for several of these +longdesc designs, listed in the TeX Gyre Math package. +execute addMap qag.map +execute addMap qbk.map +execute addMap qcr.map +execute addMap qcs.map +execute addMap qhv.map +execute addMap qpl.map +execute addMap qtm.map +execute addMap qzc.map +containersize 7748428 +containerchecksum 7e8ab25cd563e2be7f333f5f4232a7d64e9cd8ef2b5b898ad5e33af96d455f3bb0214184650dde76770cb95f3bfc6b10f35286e0263e52a6f43affa289920327 +doccontainersize 6673112 +doccontainerchecksum ebfea3bfa958175078b78ee0f2ea36a4de289b967f8fc900268dce7b3d356d2faae9d9a1123c48a06e3ec78b05863626fa97cb3e249d1b87c036fe00c194ceec +docfiles size=2369 + RELOC/doc/fonts/tex-gyre/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Adventor.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Bonum.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Chorus.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Cursor.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Heros.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Pagella.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Schola.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Termes.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Adventor.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Bonum.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Chorus.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Cursor.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Heros.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Pagella.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Schola.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Termes.txt + RELOC/doc/fonts/tex-gyre/goadb999.nam + RELOC/doc/fonts/tex-gyre/qag-hist.txt + RELOC/doc/fonts/tex-gyre/qag-info.pdf + RELOC/doc/fonts/tex-gyre/qbk-hist.txt + RELOC/doc/fonts/tex-gyre/qbk-info.pdf + RELOC/doc/fonts/tex-gyre/qbk-test.pdf + RELOC/doc/fonts/tex-gyre/qbk-test.tex + RELOC/doc/fonts/tex-gyre/qbkb.fea + RELOC/doc/fonts/tex-gyre/qbkbi.fea + RELOC/doc/fonts/tex-gyre/qbkr.fea + RELOC/doc/fonts/tex-gyre/qbkri.fea + RELOC/doc/fonts/tex-gyre/qcr-hist.txt + RELOC/doc/fonts/tex-gyre/qcr-info.pdf + RELOC/doc/fonts/tex-gyre/qcr-test.pdf + RELOC/doc/fonts/tex-gyre/qcr-test.tex + RELOC/doc/fonts/tex-gyre/qcrb.fea + RELOC/doc/fonts/tex-gyre/qcrbi.fea + RELOC/doc/fonts/tex-gyre/qcrr.fea + RELOC/doc/fonts/tex-gyre/qcrri.fea + RELOC/doc/fonts/tex-gyre/qcs-hist.txt + RELOC/doc/fonts/tex-gyre/qcs-info.pdf + RELOC/doc/fonts/tex-gyre/qcs-test.pdf + RELOC/doc/fonts/tex-gyre/qcs-test.tex + RELOC/doc/fonts/tex-gyre/qcsb.fea + RELOC/doc/fonts/tex-gyre/qcsbi.fea + RELOC/doc/fonts/tex-gyre/qcsr.fea + RELOC/doc/fonts/tex-gyre/qcsri.fea + RELOC/doc/fonts/tex-gyre/qhv-hist.txt + RELOC/doc/fonts/tex-gyre/qhv-info.pdf + RELOC/doc/fonts/tex-gyre/qhv-test.pdf + RELOC/doc/fonts/tex-gyre/qhv-test.tex + RELOC/doc/fonts/tex-gyre/qhvb.fea + RELOC/doc/fonts/tex-gyre/qhvbi.fea + RELOC/doc/fonts/tex-gyre/qhvcb.fea + RELOC/doc/fonts/tex-gyre/qhvcbi.fea + RELOC/doc/fonts/tex-gyre/qhvcr.fea + RELOC/doc/fonts/tex-gyre/qhvcri.fea + RELOC/doc/fonts/tex-gyre/qhvr.fea + RELOC/doc/fonts/tex-gyre/qhvri.fea + RELOC/doc/fonts/tex-gyre/qpl-hist.txt + RELOC/doc/fonts/tex-gyre/qpl-info.pdf + RELOC/doc/fonts/tex-gyre/qtm-hist.txt + RELOC/doc/fonts/tex-gyre/qtm-info.pdf + RELOC/doc/fonts/tex-gyre/qtm-test.pdf + RELOC/doc/fonts/tex-gyre/qtm-test.tex + RELOC/doc/fonts/tex-gyre/qtmb.fea + RELOC/doc/fonts/tex-gyre/qtmbi.fea + RELOC/doc/fonts/tex-gyre/qtmr.fea + RELOC/doc/fonts/tex-gyre/qtmri.fea + RELOC/doc/fonts/tex-gyre/qzc-hist.txt + RELOC/doc/fonts/tex-gyre/qzc-info.pdf + RELOC/doc/fonts/tex-gyre/qzc-test.pdf + RELOC/doc/fonts/tex-gyre/qzc-test.tex + RELOC/doc/fonts/tex-gyre/qzcmi.fea +srccontainersize 1016896 +srccontainerchecksum 68a06261fed419e106e8f6958a38bb0f5b78c3ee10b8b68365b3bf9925360cf726c4715954590f0b0b86faadfe636f50bce0ebf4b3b00162ffb4df54a2adc803 +srcfiles size=3204 + RELOC/source/fonts/tex-gyre/texgyreadventor-bold.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-bold.sfd + RELOC/source/fonts/tex-gyre/texgyreadventor-bolditalic.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-bolditalic.sfd + RELOC/source/fonts/tex-gyre/texgyreadventor-italic.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-italic.sfd + RELOC/source/fonts/tex-gyre/texgyreadventor-regular.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-regular.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-bold.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-bold.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-bolditalic.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-bolditalic.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-italic.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-italic.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-regular.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-regular.sfd +runfiles size=6656 + RELOC/fonts/afm/public/tex-gyre/qagb.afm + RELOC/fonts/afm/public/tex-gyre/qagbi.afm + RELOC/fonts/afm/public/tex-gyre/qagr.afm + RELOC/fonts/afm/public/tex-gyre/qagri.afm + RELOC/fonts/afm/public/tex-gyre/qbkb.afm + RELOC/fonts/afm/public/tex-gyre/qbkbi.afm + RELOC/fonts/afm/public/tex-gyre/qbkr.afm + RELOC/fonts/afm/public/tex-gyre/qbkri.afm + RELOC/fonts/afm/public/tex-gyre/qcrb.afm + RELOC/fonts/afm/public/tex-gyre/qcrbi.afm + RELOC/fonts/afm/public/tex-gyre/qcrr.afm + RELOC/fonts/afm/public/tex-gyre/qcrri.afm + RELOC/fonts/afm/public/tex-gyre/qcsb.afm + RELOC/fonts/afm/public/tex-gyre/qcsbi.afm + RELOC/fonts/afm/public/tex-gyre/qcsr.afm + RELOC/fonts/afm/public/tex-gyre/qcsri.afm + RELOC/fonts/afm/public/tex-gyre/qhvb.afm + RELOC/fonts/afm/public/tex-gyre/qhvbi.afm + RELOC/fonts/afm/public/tex-gyre/qhvcb.afm + RELOC/fonts/afm/public/tex-gyre/qhvcbi.afm + RELOC/fonts/afm/public/tex-gyre/qhvcr.afm + RELOC/fonts/afm/public/tex-gyre/qhvcri.afm + RELOC/fonts/afm/public/tex-gyre/qhvr.afm + RELOC/fonts/afm/public/tex-gyre/qhvri.afm + RELOC/fonts/afm/public/tex-gyre/qplb.afm + RELOC/fonts/afm/public/tex-gyre/qplbi.afm + RELOC/fonts/afm/public/tex-gyre/qplr.afm + RELOC/fonts/afm/public/tex-gyre/qplri.afm + RELOC/fonts/afm/public/tex-gyre/qtmb.afm + RELOC/fonts/afm/public/tex-gyre/qtmbi.afm + RELOC/fonts/afm/public/tex-gyre/qtmr.afm + RELOC/fonts/afm/public/tex-gyre/qtmri.afm + RELOC/fonts/afm/public/tex-gyre/qzcmi.afm + RELOC/fonts/enc/dvips/tex-gyre/q-cs-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-cs.enc + RELOC/fonts/enc/dvips/tex-gyre/q-csm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-csm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-cszc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-ec-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-ec.enc + RELOC/fonts/enc/dvips/tex-gyre/q-l7x-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-l7x.enc + RELOC/fonts/enc/dvips/tex-gyre/q-l7xzc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qx-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qx.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qxm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qxm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qxzc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rmm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rmm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rmzc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-t5-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-t5.enc + RELOC/fonts/enc/dvips/tex-gyre/q-texnansi-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-texnansi.enc + RELOC/fonts/enc/dvips/tex-gyre/q-texnansizc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-ts1.enc + RELOC/fonts/map/dvips/tex-gyre/qag-cs.map + RELOC/fonts/map/dvips/tex-gyre/qag-ec.map + RELOC/fonts/map/dvips/tex-gyre/qag-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qag-qx.map + RELOC/fonts/map/dvips/tex-gyre/qag-rm.map + RELOC/fonts/map/dvips/tex-gyre/qag-t5.map + RELOC/fonts/map/dvips/tex-gyre/qag-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qag-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qag.map + RELOC/fonts/map/dvips/tex-gyre/qbk-cs.map + RELOC/fonts/map/dvips/tex-gyre/qbk-ec.map + RELOC/fonts/map/dvips/tex-gyre/qbk-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qbk-qx.map + RELOC/fonts/map/dvips/tex-gyre/qbk-rm.map + RELOC/fonts/map/dvips/tex-gyre/qbk-t5.map + RELOC/fonts/map/dvips/tex-gyre/qbk-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qbk-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qbk.map + RELOC/fonts/map/dvips/tex-gyre/qcr-cs.map + RELOC/fonts/map/dvips/tex-gyre/qcr-ec.map + RELOC/fonts/map/dvips/tex-gyre/qcr-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qcr-qx.map + RELOC/fonts/map/dvips/tex-gyre/qcr-rm.map + RELOC/fonts/map/dvips/tex-gyre/qcr-t5.map + RELOC/fonts/map/dvips/tex-gyre/qcr-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qcr-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qcr.map + RELOC/fonts/map/dvips/tex-gyre/qcs-cs.map + RELOC/fonts/map/dvips/tex-gyre/qcs-ec.map + RELOC/fonts/map/dvips/tex-gyre/qcs-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qcs-qx.map + RELOC/fonts/map/dvips/tex-gyre/qcs-rm.map + RELOC/fonts/map/dvips/tex-gyre/qcs-t5.map + RELOC/fonts/map/dvips/tex-gyre/qcs-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qcs-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qcs.map + RELOC/fonts/map/dvips/tex-gyre/qhv-cs.map + RELOC/fonts/map/dvips/tex-gyre/qhv-ec.map + RELOC/fonts/map/dvips/tex-gyre/qhv-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qhv-qx.map + RELOC/fonts/map/dvips/tex-gyre/qhv-rm.map + RELOC/fonts/map/dvips/tex-gyre/qhv-t5.map + RELOC/fonts/map/dvips/tex-gyre/qhv-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qhv-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qhv.map + RELOC/fonts/map/dvips/tex-gyre/qpl-cs.map + RELOC/fonts/map/dvips/tex-gyre/qpl-ec.map + RELOC/fonts/map/dvips/tex-gyre/qpl-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qpl-qx.map + RELOC/fonts/map/dvips/tex-gyre/qpl-rm.map + RELOC/fonts/map/dvips/tex-gyre/qpl-t5.map + RELOC/fonts/map/dvips/tex-gyre/qpl-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qpl-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qpl.map + RELOC/fonts/map/dvips/tex-gyre/qtm-cs.map + RELOC/fonts/map/dvips/tex-gyre/qtm-ec.map + RELOC/fonts/map/dvips/tex-gyre/qtm-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qtm-qx.map + RELOC/fonts/map/dvips/tex-gyre/qtm-rm.map + RELOC/fonts/map/dvips/tex-gyre/qtm-t5.map + RELOC/fonts/map/dvips/tex-gyre/qtm-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qtm-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qtm.map + RELOC/fonts/map/dvips/tex-gyre/qzc-cs.map + RELOC/fonts/map/dvips/tex-gyre/qzc-ec.map + RELOC/fonts/map/dvips/tex-gyre/qzc-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qzc-qx.map + RELOC/fonts/map/dvips/tex-gyre/qzc-rm.map + RELOC/fonts/map/dvips/tex-gyre/qzc-t5.map + RELOC/fonts/map/dvips/tex-gyre/qzc-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qzc-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qzc.map + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrechorus-mediumitalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-regular.otf + RELOC/fonts/tfm/public/tex-gyre/cs-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qzcmi.tfm + RELOC/fonts/type1/public/tex-gyre/qagb.pfb + RELOC/fonts/type1/public/tex-gyre/qagb.pfm + RELOC/fonts/type1/public/tex-gyre/qagbi.pfb + RELOC/fonts/type1/public/tex-gyre/qagbi.pfm + RELOC/fonts/type1/public/tex-gyre/qagr.pfb + RELOC/fonts/type1/public/tex-gyre/qagr.pfm + RELOC/fonts/type1/public/tex-gyre/qagri.pfb + RELOC/fonts/type1/public/tex-gyre/qagri.pfm + RELOC/fonts/type1/public/tex-gyre/qbkb.pfb + RELOC/fonts/type1/public/tex-gyre/qbkb.pfm + RELOC/fonts/type1/public/tex-gyre/qbkbi.pfb + RELOC/fonts/type1/public/tex-gyre/qbkbi.pfm + RELOC/fonts/type1/public/tex-gyre/qbkr.pfb + RELOC/fonts/type1/public/tex-gyre/qbkr.pfm + RELOC/fonts/type1/public/tex-gyre/qbkri.pfb + RELOC/fonts/type1/public/tex-gyre/qbkri.pfm + RELOC/fonts/type1/public/tex-gyre/qcrb.pfb + RELOC/fonts/type1/public/tex-gyre/qcrb.pfm + RELOC/fonts/type1/public/tex-gyre/qcrbi.pfb + RELOC/fonts/type1/public/tex-gyre/qcrbi.pfm + RELOC/fonts/type1/public/tex-gyre/qcrr.pfb + RELOC/fonts/type1/public/tex-gyre/qcrr.pfm + RELOC/fonts/type1/public/tex-gyre/qcrri.pfb + RELOC/fonts/type1/public/tex-gyre/qcrri.pfm + RELOC/fonts/type1/public/tex-gyre/qcsb.pfb + RELOC/fonts/type1/public/tex-gyre/qcsb.pfm + RELOC/fonts/type1/public/tex-gyre/qcsbi.pfb + RELOC/fonts/type1/public/tex-gyre/qcsbi.pfm + RELOC/fonts/type1/public/tex-gyre/qcsr.pfb + RELOC/fonts/type1/public/tex-gyre/qcsr.pfm + RELOC/fonts/type1/public/tex-gyre/qcsri.pfb + RELOC/fonts/type1/public/tex-gyre/qcsri.pfm + RELOC/fonts/type1/public/tex-gyre/qhvb.pfb + RELOC/fonts/type1/public/tex-gyre/qhvb.pfm + RELOC/fonts/type1/public/tex-gyre/qhvbi.pfb + RELOC/fonts/type1/public/tex-gyre/qhvbi.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcb.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcb.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcbi.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcbi.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcr.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcr.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcri.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcri.pfm + RELOC/fonts/type1/public/tex-gyre/qhvr.pfb + RELOC/fonts/type1/public/tex-gyre/qhvr.pfm + RELOC/fonts/type1/public/tex-gyre/qhvri.pfb + RELOC/fonts/type1/public/tex-gyre/qhvri.pfm + RELOC/fonts/type1/public/tex-gyre/qplb.pfb + RELOC/fonts/type1/public/tex-gyre/qplb.pfm + RELOC/fonts/type1/public/tex-gyre/qplbi.pfb + RELOC/fonts/type1/public/tex-gyre/qplbi.pfm + RELOC/fonts/type1/public/tex-gyre/qplr.pfb + RELOC/fonts/type1/public/tex-gyre/qplr.pfm + RELOC/fonts/type1/public/tex-gyre/qplri.pfb + RELOC/fonts/type1/public/tex-gyre/qplri.pfm + RELOC/fonts/type1/public/tex-gyre/qtmb.pfb + RELOC/fonts/type1/public/tex-gyre/qtmb.pfm + RELOC/fonts/type1/public/tex-gyre/qtmbi.pfb + RELOC/fonts/type1/public/tex-gyre/qtmbi.pfm + RELOC/fonts/type1/public/tex-gyre/qtmr.pfb + RELOC/fonts/type1/public/tex-gyre/qtmr.pfm + RELOC/fonts/type1/public/tex-gyre/qtmri.pfb + RELOC/fonts/type1/public/tex-gyre/qtmri.pfm + RELOC/fonts/type1/public/tex-gyre/qzcmi.pfb + RELOC/fonts/type1/public/tex-gyre/qzcmi.pfm + RELOC/tex/latex/tex-gyre/il2qag.fd + RELOC/tex/latex/tex-gyre/il2qbk.fd + RELOC/tex/latex/tex-gyre/il2qcr.fd + RELOC/tex/latex/tex-gyre/il2qcs.fd + RELOC/tex/latex/tex-gyre/il2qhv.fd + RELOC/tex/latex/tex-gyre/il2qhvc.fd + RELOC/tex/latex/tex-gyre/il2qpl.fd + RELOC/tex/latex/tex-gyre/il2qtm.fd + RELOC/tex/latex/tex-gyre/il2qzc.fd + RELOC/tex/latex/tex-gyre/l7xqag.fd + RELOC/tex/latex/tex-gyre/l7xqbk.fd + RELOC/tex/latex/tex-gyre/l7xqcr.fd + RELOC/tex/latex/tex-gyre/l7xqcs.fd + RELOC/tex/latex/tex-gyre/l7xqhv.fd + RELOC/tex/latex/tex-gyre/l7xqhvc.fd + RELOC/tex/latex/tex-gyre/l7xqpl.fd + RELOC/tex/latex/tex-gyre/l7xqtm.fd + RELOC/tex/latex/tex-gyre/l7xqzc.fd + RELOC/tex/latex/tex-gyre/ly1qag.fd + RELOC/tex/latex/tex-gyre/ly1qbk.fd + RELOC/tex/latex/tex-gyre/ly1qcr.fd + RELOC/tex/latex/tex-gyre/ly1qcs.fd + RELOC/tex/latex/tex-gyre/ly1qhv.fd + RELOC/tex/latex/tex-gyre/ly1qhvc.fd + RELOC/tex/latex/tex-gyre/ly1qpl.fd + RELOC/tex/latex/tex-gyre/ly1qtm.fd + RELOC/tex/latex/tex-gyre/ly1qzc.fd + RELOC/tex/latex/tex-gyre/ot1qag.fd + RELOC/tex/latex/tex-gyre/ot1qbk.fd + RELOC/tex/latex/tex-gyre/ot1qcr.fd + RELOC/tex/latex/tex-gyre/ot1qcs.fd + RELOC/tex/latex/tex-gyre/ot1qhv.fd + RELOC/tex/latex/tex-gyre/ot1qhvc.fd + RELOC/tex/latex/tex-gyre/ot1qpl.fd + RELOC/tex/latex/tex-gyre/ot1qtm.fd + RELOC/tex/latex/tex-gyre/ot1qzc.fd + RELOC/tex/latex/tex-gyre/ot4qag.fd + RELOC/tex/latex/tex-gyre/ot4qbk.fd + RELOC/tex/latex/tex-gyre/ot4qcr.fd + RELOC/tex/latex/tex-gyre/ot4qcs.fd + RELOC/tex/latex/tex-gyre/ot4qhv.fd + RELOC/tex/latex/tex-gyre/ot4qhvc.fd + RELOC/tex/latex/tex-gyre/ot4qpl.fd + RELOC/tex/latex/tex-gyre/ot4qtm.fd + RELOC/tex/latex/tex-gyre/ot4qzc.fd + RELOC/tex/latex/tex-gyre/qbookman.sty + RELOC/tex/latex/tex-gyre/qcourier.sty + RELOC/tex/latex/tex-gyre/qpalatin.sty + RELOC/tex/latex/tex-gyre/qswiss.sty + RELOC/tex/latex/tex-gyre/qtimes.sty + RELOC/tex/latex/tex-gyre/qxqag.fd + RELOC/tex/latex/tex-gyre/qxqbk.fd + RELOC/tex/latex/tex-gyre/qxqcr.fd + RELOC/tex/latex/tex-gyre/qxqcs.fd + RELOC/tex/latex/tex-gyre/qxqhv.fd + RELOC/tex/latex/tex-gyre/qxqhvc.fd + RELOC/tex/latex/tex-gyre/qxqpl.fd + RELOC/tex/latex/tex-gyre/qxqtm.fd + RELOC/tex/latex/tex-gyre/qxqzc.fd + RELOC/tex/latex/tex-gyre/qzapfcha.sty + RELOC/tex/latex/tex-gyre/t1qag.fd + RELOC/tex/latex/tex-gyre/t1qbk.fd + RELOC/tex/latex/tex-gyre/t1qcr.fd + RELOC/tex/latex/tex-gyre/t1qcs.fd + RELOC/tex/latex/tex-gyre/t1qhv.fd + RELOC/tex/latex/tex-gyre/t1qhvc.fd + RELOC/tex/latex/tex-gyre/t1qpl.fd + RELOC/tex/latex/tex-gyre/t1qtm.fd + RELOC/tex/latex/tex-gyre/t1qzc.fd + RELOC/tex/latex/tex-gyre/t5qag.fd + RELOC/tex/latex/tex-gyre/t5qbk.fd + RELOC/tex/latex/tex-gyre/t5qcr.fd + RELOC/tex/latex/tex-gyre/t5qcs.fd + RELOC/tex/latex/tex-gyre/t5qhv.fd + RELOC/tex/latex/tex-gyre/t5qhvc.fd + RELOC/tex/latex/tex-gyre/t5qpl.fd + RELOC/tex/latex/tex-gyre/t5qtm.fd + RELOC/tex/latex/tex-gyre/t5qzc.fd + RELOC/tex/latex/tex-gyre/tgadventor.sty + RELOC/tex/latex/tex-gyre/tgbonum.sty + RELOC/tex/latex/tex-gyre/tgchorus.sty + RELOC/tex/latex/tex-gyre/tgcursor.sty + RELOC/tex/latex/tex-gyre/tgheros.sty + RELOC/tex/latex/tex-gyre/tgpagella.sty + RELOC/tex/latex/tex-gyre/tgschola.sty + RELOC/tex/latex/tex-gyre/tgtermes.sty + RELOC/tex/latex/tex-gyre/ts1qag.fd + RELOC/tex/latex/tex-gyre/ts1qbk.fd + RELOC/tex/latex/tex-gyre/ts1qcr.fd + RELOC/tex/latex/tex-gyre/ts1qcs.fd + RELOC/tex/latex/tex-gyre/ts1qhv.fd + RELOC/tex/latex/tex-gyre/ts1qhvc.fd + RELOC/tex/latex/tex-gyre/ts1qpl.fd + RELOC/tex/latex/tex-gyre/ts1qtm.fd + 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-license gfl +catalogue-topics font font-otf font-type1 font-collection +catalogue-version 2.501 + +name tex-gyre-math +category Package +revision 41264 +shortdesc Maths fonts to match tex-gyre text fonts +relocated 1 +longdesc TeX-Gyre-Math is a collection of maths fonts to match the text +longdesc fonts of the TeX-Gyre collection. The collection is available +longdesc in OpenType format, only; fonts conform to the developing +longdesc standards for OpenType maths fonts. TeX-Gyre-Math-Bonum (to +longdesc match TeX-Gyre-Bonum), TeX-Gyre-Math-Pagella (to match +longdesc TeX-Gyre-Pagella), TeX-Gyre-Math-Schola (to match +longdesc TeX-Gyre-Schola) and TeX-Gyre-Math-Termes (to match +longdesc TeX-Gyre-Termes) fonts are provided. +containersize 1182712 +containerchecksum a50a9eaa30cfd7754ae702a3bd6fced2d07fac858215b913945665940c71a0aafd2b59a0d0baa0fb9d5090773ef69a86864cc11126a5e30adc3d0e94cdbd2594 +doccontainersize 436052 +doccontainerchecksum cd346226dc36bb4fb5324a43dfab7790cd80ec6bba992849dfcca74ea6fe8d85fe7e0ac66408a41ac1ef644e6b32c9b06d337c4f394fbfd8fba4153fbc1abfe9 +docfiles size=179 + RELOC/doc/fonts/tex-gyre-math/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/tex-gyre-math/INSTALL.txt + RELOC/doc/fonts/tex-gyre-math/LICENSE-DejaVu.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Bonum-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-DejaVu-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Pagella-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Schola-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Termes-Math.txt + RELOC/doc/fonts/tex-gyre-math/README details="Readme" + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Bonum-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-DejaVu-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Pagella-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Schola-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Termes-Math.txt + RELOC/doc/fonts/tex-gyre-math/math-test-context.tex + RELOC/doc/fonts/tex-gyre-math/math-test.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_dejavu_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_dejavu_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.tex + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_dejavu_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_dejavu_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.tex +srccontainersize 474164 +srccontainerchecksum 3c58821e5307257578ec149317cb621331aafa00bfa465eeb055f1f93691ce57a489a32a7eea068b12b70228433031de33c0ffe36b0e8e10b368e0ef5e33fe24 +srcfiles size=780 + RELOC/source/fonts/tex-gyre-math/texgyredejavu-math.sfd +runfiles size=681 + RELOC/fonts/opentype/public/tex-gyre-math/texgyrebonum-math.otf + RELOC/fonts/opentype/public/tex-gyre-math/texgyredejavu-math.otf + RELOC/fonts/opentype/public/tex-gyre-math/texgyrepagella-math.otf + 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-license gfl +catalogue-topics font font-collection font-maths font-otf + +name tex-ini-files +category Package +revision 40533 +shortdesc Model TeX format creation files +relocated 1 +longdesc This bundle provides a collection of model .ini files for +longdesc creating TeX formats. These files are commonly used to +longdesc introduced distribution-dependent variations in formats. They +longdesc are also used to allow existing format source files to be used +longdesc with newer engines, for example to adapt the plain e-TeX source +longdesc file to work with XeTeX and LuaTeX. +containersize 3264 +containerchecksum c053ad3aaa49224f26999112b3f5f28eb6ba34cd130cb54ab5ce67971632d41a8470c361e4471f9d75831d230737a0197186b05c25a9b401286bb4d5525b12a2 +doccontainersize 1336 +doccontainerchecksum c44315e35793a1e77b621af53061c25605fbc5ffce2f07fe52bc5e58f4db0e9252cdb1935c14d8dc632bf1b84c18f3ec18506c5415831ad230c7a314f4f7b670 +docfiles size=1 + RELOC/doc/generic/tex-ini-files/README.md details="Readme" +runfiles size=8 + RELOC/tex/generic/tex-ini-files/dvilualatex.ini + RELOC/tex/generic/tex-ini-files/dviluatex.ini + RELOC/tex/generic/tex-ini-files/lualatex.ini + RELOC/tex/generic/tex-ini-files/luatex.ini + RELOC/tex/generic/tex-ini-files/luatexconfig.tex + RELOC/tex/generic/tex-ini-files/pdftexconfig.tex + RELOC/tex/generic/tex-ini-files/xelatex.ini + RELOC/tex/generic/tex-ini-files/xetex.ini +catalogue-ctan /macros/generic/tex-ini-files +catalogue-license pd +catalogue-topics latex3 + +name tex-label +category Package +revision 16372 +shortdesc Place a classification on each page of a document +relocated 1 +longdesc Enables the user to place a 'classification' label on each +longdesc page, at the bottom to the right of the page number +containersize 940 +containerchecksum 513310d4dc5240d0b290d0acc941455ba64e069d19c223670d05a632033aba8de367d5dce6acf073af4df476876d3ee414dcf9f1f579738bf9bdfe6738c19d36 +doccontainersize 36596 +doccontainerchecksum bc705cf6812515923d60cf44b75830bd3ea78f078c9ef88ded3e94f060155e1fbf5dc1485cbaa8530e1f10b41b421e70bcec6c61066ee98b498aba7ea8799dc4 +docfiles size=14 + RELOC/doc/latex/tex-label/README details="Readme" + RELOC/doc/latex/tex-label/tex-label-demo.pdf details="Example of use" + RELOC/doc/latex/tex-label/tex-label-demo.tex + RELOC/doc/latex/tex-label/tex-label-doc.pdf details="Package documentation" + RELOC/doc/latex/tex-label/tex-label-doc.tex +srccontainersize 420 +srccontainerchecksum 07c29de4e85fc21404dad1da3a01a5037b641526110fe5410899c60aeae6a92836de322895afc83824df60f431955a4da959c4d4c21cf17dc32929f445cc1ed8 +srcfiles size=1 + RELOC/source/latex/tex-label/Makefile +runfiles size=1 + RELOC/tex/latex/tex-label/tex-label.sty +catalogue-ctan /macros/latex/contrib/tex-label +catalogue-license lppl1.3 +catalogue-topics security + +name tex-locale +category Package +revision 48500 +shortdesc Localisation support for TeX and LaTeX documents +relocated 1 +longdesc This package uses both tracklang and texosquery to look up the +longdesc locale information from the operating system and provide +longdesc commands that can access locale-dependent information, such as +longdesc the currency symbol and decimal separator. The file +longdesc tex-locale.tex provides generic TeX code. The LaTeX package +longdesc tex-locale.sty can additionally load babel or polyglossia with +longdesc the locale's language setting, as well as various other +longdesc packages such as fontspec (XeLaTeX/LuaLaTeX) or fontenc + +longdesc inputenc (pdfLaTeX). +containersize 12328 +containerchecksum 0e3aca622bb6fb49a06a3aea1d997414add9272dd39c10c3a1d80956dece59882993b24366a1126acab80f8a7c8328a30756f727210f829f5eb838ac0b9cb1a6 +doccontainersize 940332 +doccontainerchecksum d3898da3687603b1f1f3f2f5b203d01c985ab0c3e39eeb05dc7c855c14fad8b73649777e4a0b7844c242bc8946cab80b585987eda37a1c10e3ba75c6955fee23 +docfiles size=245 + RELOC/doc/generic/tex-locale/CHANGES + RELOC/doc/generic/tex-locale/README details="Readme" + RELOC/doc/generic/tex-locale/samples/sample-locale-xe.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xe.tex + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx.tex + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx2.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx2.tex + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx3.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx3.tex + RELOC/doc/generic/tex-locale/samples/sample-locale.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale.tex + RELOC/doc/generic/tex-locale/samples/sample-locale2.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale2.tex + RELOC/doc/generic/tex-locale/tex-locale.pdf details="Package documentation" +srccontainersize 44596 +srccontainerchecksum b24a01b9845f79a86c12911e71ef179a4dd8f5a8284d067b760a8ac3cb906cbf2465ae3617e0196d9163348f3a865fea4e5869adac9921088b13d738803f87f4 +srcfiles size=74 + RELOC/source/latex/tex-locale/tex-locale.dtx + RELOC/source/latex/tex-locale/tex-locale.ins +runfiles size=23 + RELOC/tex/generic/tex-locale/tex-locale.tex + RELOC/tex/latex/tex-locale/tex-locale-encodings.def + RELOC/tex/latex/tex-locale/tex-locale-scripts-enc.def + RELOC/tex/latex/tex-locale/tex-locale-support.def + RELOC/tex/latex/tex-locale/tex-locale.sty +catalogue-ctan /macros/generic/tex-locale +catalogue-license lppl1.3 +catalogue-topics env-query sys-supp +catalogue-version 1.0 + +name tex-nutshell +category Package +revision 58471 +shortdesc A short document about TeX principles +relocated 1 +longdesc This document is meant for users who are looking for +longdesc information about the basics of TeX. Its main goal is its +longdesc brevity. The pure TeX features are described, no features +longdesc provided by macro extensions. Only the last section gives a +longdesc summary of plain TeX macros. +containersize 512 +containerchecksum 63075927692bcb796c0aaa29303682f9bcd0984e41a344a4dbe7c21ac467ea2fbb5ea952655373e877d8125c676b867f8f26786bc3e40eafddc446a0e92ba4e6 +doccontainersize 265580 +doccontainerchecksum 0e73d7735132f81ffe5aec90254e640e3da839da8fa6b5e72afbc45266cdd806f0c1ac5ef0d88b1a2e606164f37ca5086082f1e12af28726847e39fd5bd61387 +docfiles size=87 + RELOC/doc/plain/tex-nutshell/README details="Readme" + RELOC/doc/plain/tex-nutshell/tex-nutshell.pdf details="The document itself" + RELOC/doc/plain/tex-nutshell/tex-nutshell.tex +catalogue-ctan /info/tex-nutshell +catalogue-license pd +catalogue-topics documentation tut-plaintex +catalogue-version 0.6 + +name tex-overview +category Package +revision 41403 +shortdesc An overview of the development of TeX +relocated 1 +longdesc The document gives a short overview of TeX and its children, as +longdesc well as the macro packages LaTeX and ConTeXt. +containersize 432 +containerchecksum 1217aeba55d723dad2843509ad3adf205090298f2362ba4ce23d73ec581e439c344f055281a95f82bd8cec298c77da012cf892e60369562238bba7f8b8d258a1 +doccontainersize 260424 +doccontainerchecksum 0cd9941afc0e50d3d936f5ba1f9d2c7f16244899982ff7eaa44bb019653b5e4e142edc1ee608ca1664636c77178dd8a02f4625a2216a019e770651a718f0a27b +docfiles size=79 + RELOC/doc/latex/tex-overview/README.md details="Readme" + RELOC/doc/latex/tex-overview/tex-overview-aux.tex + 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-license lppl1.3 +catalogue-topics documentation +catalogue-version 0.2 + +name tex-ps +category Package +revision 15878 +shortdesc TeX to PostScript generic macros and add-ons +relocated 1 +longdesc TeX to PostScript generic macros and add-ons: transformations +longdesc of EPS files, prepress preparation, color separation, mirror, +longdesc etc. +containersize 21404 +containerchecksum cc616b501be7c0724646d5e0f326a5729df8f4cb0c4070f92bdd3b5b370e496efd6208b3ec8b2387713810b9764c75525689f434b7f482a83fb0b8e9b0383cb6 +doccontainersize 246188 +doccontainerchecksum 2f82f63954c1407c2caa9c39a538ed1cffeabfde8ac0506906f0f28430d12e18d858040ee66f2326cad3fa758c23d1ed490b70c5d18eb68b699b7ddd0afd15d1 +docfiles size=94 + RELOC/doc/generic/tex-ps/cmyk-hax/README + RELOC/doc/generic/tex-ps/cmyk-hax/cmyk-doc.pdf + RELOC/doc/generic/tex-ps/cmyk-hax/fountain.eps + RELOC/doc/generic/tex-ps/cmyk-hax/gdansk.eps + RELOC/doc/generic/tex-ps/cmyk-hax/rules.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sam1-sep.bat + RELOC/doc/generic/tex-ps/cmyk-hax/sample1.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sample2.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sample3.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sample4.tex + RELOC/doc/generic/tex-ps/cmyk-hax/screen.eps + RELOC/doc/generic/tex-ps/poligraf/README + RELOC/doc/generic/tex-ps/poligraf/kol-cmyk.eps + RELOC/doc/generic/tex-ps/poligraf/sample.tex + RELOC/doc/generic/tex-ps/poligraf/samplelx.tex +runfiles size=24 + RELOC/dvips/tex-ps/crops.pro + RELOC/dvips/tex-ps/mirr.hd + RELOC/dvips/tex-ps/separate.pro + RELOC/tex/generic/tex-ps/cmyk-hax.tex + RELOC/tex/generic/tex-ps/epsfx.tex + RELOC/tex/generic/tex-ps/poligraf.sty + RELOC/tex/generic/tex-ps/trans.tex +catalogue-also epsfx cmyk-hax trans mirr poligraf +catalogue-ctan /macros/generic/TeX-PS +catalogue-license pd +catalogue-topics ps-manip + +name tex-refs +category Package +revision 57349 +catalogue tex-references +shortdesc References for TeX and Friends +relocated 1 +longdesc This is an ongoing project with the aim of providing a help +longdesc file for LaTeX (and its friends like ConTeXt, MetaPost, +longdesc Metafont, etc.) using a state-of-the-art source format, aka +longdesc DocBook/XML. +containersize 488 +containerchecksum aa03714a0ebb90c7431935608851c504080f8985db3bbba98cbfa9b957e0a3fbb87de8e0119bfdcc996d664aa46bb943c6f90b36c4408a42f14fcc8387508df6 +doccontainersize 423944 +doccontainerchecksum f033d8d8bfafdece7b79c8417bce19dde484adbaa958497c0b4426448e6ebbfe8dcda07a34c336c3abe038447ea9e5177bce4660c9b8be36b0f94d02fc7a41d5 +docfiles size=314 + RELOC/doc/generic/tex-refs/README details="Readme" + RELOC/doc/generic/tex-refs/tex-refs-0.4.1.tar.bz2 + RELOC/doc/generic/tex-refs/tex-refs.css + RELOC/doc/generic/tex-refs/tex-refs.epub + RELOC/doc/generic/tex-refs/tex-refs.html details="The references themselves" + RELOC/doc/generic/tex-refs/tex-refs.txt +catalogue-ctan /info/tex-references +catalogue-license other-free +catalogue-topics documentation +catalogue-version 0.4.8 + +name tex-virtual-academy-pl +category Package +revision 34177 +shortdesc TeX usage web pages, in Polish +relocated 1 +longdesc TeX Virtual Academy is a bundle of Polish documentation in HTML +longdesc format about TeX and Co. It contains information for beginners, +longdesc LaTeX packages, descriptions, etc. +containersize 520 +containerchecksum b9358f50caf39d274c1684d4514fef0439e015588431883955f7aec63d35f7176ed61671f72cda7ae28125b2a977f25ae66b028b21017f106d8f78bbfc7df109 +doccontainersize 1080060 +doccontainerchecksum aa73261fb0ffdbb7cdbf85df354490a72bd95e4d98e4a497e98666e6f5533a7f05a7132533db044ba993d86e03fc21825bc6fa7f262e5a0bcdb6de8114d38eee +docfiles size=837 + RELOC/doc/generic/tex-virtual-academy-pl/README details="Readme" + RELOC/doc/generic/tex-virtual-academy-pl/context/context.html + RELOC/doc/generic/tex-virtual-academy-pl/context/tytuly.html + RELOC/doc/generic/tex-virtual-academy-pl/cototex.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/back.gif + RELOC/doc/generic/tex-virtual-academy-pl/fonty/font-abc.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/fonts_inst.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/index.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/nfss.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-info.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-table1.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-table2.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/tpstyle.css + RELOC/doc/generic/tex-virtual-academy-pl/gify/artykul.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/context.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/cop.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/grupa.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/gust.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/gustloge.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/indexowanie.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/latex2e.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/lew-7vs.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/lew.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/mail.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/podpis.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/prog.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/tex.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/texologia.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/wa.gif + RELOC/doc/generic/tex-virtual-academy-pl/idx/day.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/decode.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/dies.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/fig1.gif + RELOC/doc/generic/tex-virtual-academy-pl/idx/flags.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/id.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/index.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/jedn.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/lang.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/lower.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/mil.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/mon.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/name.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/order.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/plmindex.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/porzadek.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/program.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/setki.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/spec.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/tex-idx.gif + RELOC/doc/generic/tex-virtual-academy-pl/idx/toascii.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/typy.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/tys.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/upper.html + RELOC/doc/generic/tex-virtual-academy-pl/index.html + RELOC/doc/generic/tex-virtual-academy-pl/kuchnia/hist.html + RELOC/doc/generic/tex-virtual-academy-pl/kuchnia/tex.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/latex2e.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/description.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/description.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enum_p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enum_p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enumerate.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enumerate.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/item_p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/item_p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/itemize.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/itemize.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/klopoty.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/list.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/lista_p.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/porzadek.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/standard.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttab.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/BAhhline.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN2.PNG + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN5.PNG + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN7.PNG + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/accent.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/accents.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/acromake.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/acromake.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/afterpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/alltt.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/arabic.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/array.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/balance.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbma.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbmb.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk3.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk4.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk5.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk6.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk7.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk8.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk9.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blkarray.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bophook.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/boxedminipage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/boxm.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/capt-of.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/caption.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/caption2.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/case1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/case2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cases.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ccapt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ccaption.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/changebar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/chapterbib.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cite.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/color.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/color.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/colortbl.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/comma.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cuted.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dblcol.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dblfnote.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dcolumn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/delarray.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/delarray.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq10.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq11.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq12.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq13.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq14.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq15.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq8.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq9.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/diam.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dotseqn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dotseqn.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dow.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/drftcite.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dropp1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dropping.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn10.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn11.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn12.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn13.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn14.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn15.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn16.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn17.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn3.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn4.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn6.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn8.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn9.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ellipsis.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/endfloat.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enum.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enumerate.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enumitem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/epsfig.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/everyship.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/expdlist.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/exscale.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/extmath.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/extramarks.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb8.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancybox.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancyhdr.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancyheading.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/filecontents.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flafter.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/float.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/floatflt.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/floatpag.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flt2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fltpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flushend.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fn2end.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpara.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpara.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpos.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footnpag.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fp.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/framed.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ftnright.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geometry.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/graphicx.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/graphpaper.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp8.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harpoon.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/heart.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/here.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hhline.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hhline.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hyperref.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/indentfirst.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/index.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/labeldeb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lastpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lcg.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/legend.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/letter.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/letterspace.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/listpart.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/localloc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/longtable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lscape.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltablex.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltabptch.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltxtable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/macro.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/macro_t.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/manyfoot.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/manyfoot1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/minitoc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/moje_typy.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/moreverb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/mparhack.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multibox.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multibox.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multicol.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/mycss.css + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/num.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/numprint.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/nut.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oldst1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oldstyle.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oubraces.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfscreen.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfslide.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pfnote.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/plain.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/printtim.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pstcol.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/q1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/qobitree.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ragged2e.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/regcount.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/relsize.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/removefromreset.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotate.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotating.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotbox.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/selectpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadepar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadetheorem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadethm.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadethm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadow.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shapepar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shedbox.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shortvrb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/showkeys.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sidecap.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/squa.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stmaryrd.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sube1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqna.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqnarray.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfig.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfigure.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfloat.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sublabel.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sublabel.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subscript.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/supertabular.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb_n.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb_w.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/tabularx.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/tabularx.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/theorem.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/theorem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/threeparttable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/time.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/umoline.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/undertilde-1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/undertilde.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/url.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbatim.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbdef.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/version.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vfrlocal.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vmargin.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vrbexin.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vrflocal.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wiggly.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wmcropmark.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wrapf.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wrapfig.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xr.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xtab.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/chap.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_chap.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_sec.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/spis.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/spis.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/chapter.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/count.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/liczniki.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/num.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p3.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p4.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p5.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p6.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p7.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/part.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/poziom.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/s.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/sect.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tc.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tca.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tl.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tl.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tr.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tr.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tx.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tx.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/index.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/latex-pl.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/mex.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/spw.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/tetex.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/web2c.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-0wst1.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1coto.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1kazio.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1przyg.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1zece.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/bib.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/spis.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/tex.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/title.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/auctex.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-1.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-2.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-3.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-4.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-5.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-6.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-7.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-8.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/dvidvi.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/dvistro1.gif + RELOC/doc/generic/tex-virtual-academy-pl/prog/dvistro2.gif + RELOC/doc/generic/tex-virtual-academy-pl/prog/hyph.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/prog.html + RELOC/doc/generic/tex-virtual-academy-pl/tex/fermat.gif + RELOC/doc/generic/tex-virtual-academy-pl/tex/odsylacze.html + RELOC/doc/generic/tex-virtual-academy-pl/tex/tex.html + RELOC/doc/generic/tex-virtual-academy-pl/tex/tex_key.html + 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-license fdl +catalogue-topics documentation polish-doc + +name tex.aarch64-linux +category TLCore +revision 58389 +shortdesc aarch64-linux files of tex +containersize 175256 +containerchecksum 354deffab49db602cdb3231d7947ccfcdfa26eae3da370ee70b08246649b92e850a9dafc0513275d986dd3701b01879f84b6933fda6fa752daafe31ea61942b1 +binfiles arch=aarch64-linux size=113 + bin/aarch64-linux/initex + bin/aarch64-linux/tex + +name tex.amd64-freebsd +category TLCore +revision 58388 +shortdesc amd64-freebsd files of tex +containersize 231528 +containerchecksum 907ec52ceda611c8c601cdd821efa152fba931541929a3f28a6de3de67992adcc4bf4f5d42cbbf568679901bcc884902393d6128415027b6696230d2eaa6eb0b +binfiles arch=amd64-freebsd size=151 + bin/amd64-freebsd/initex + bin/amd64-freebsd/tex + +name tex.amd64-netbsd +category TLCore +revision 58386 +shortdesc amd64-netbsd files of tex +containersize 156368 +containerchecksum aad8090fdc8edd6302499864c1f34677a89b8c272f4f2814e0e620c95d20b80495d1d45b8cdbbe4c577b35ac57e4f9e11c1d50ce7067c210153717fffb780fc4 +binfiles arch=amd64-netbsd size=115 + bin/amd64-netbsd/initex + bin/amd64-netbsd/tex + +name tex.armhf-linux +category TLCore +revision 58428 +shortdesc armhf-linux files of tex +containersize 149084 +containerchecksum 9f832158c02f6684a0eb0d6a9d71c9a575a57febb2fa32136728d8fc6dba6a9b2532e6480caa30a011b872ff44fdecd1fd92210502f3cb1157a9a8d75c5138d5 +binfiles arch=armhf-linux size=86 + bin/armhf-linux/initex + bin/armhf-linux/tex + +name tex.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of tex +containersize 144544 +containerchecksum ff3ea5524f85b673769787cc8ab3337093e3000e9eb9d5d7020643a1de37079ac0a013a9526c2a0c82ffd106cb98333cb6491cf9b7054399dc12d173e5eb253c +binfiles arch=i386-cygwin size=94 + bin/i386-cygwin/initex + bin/i386-cygwin/tex.exe + +name tex.i386-freebsd +category TLCore +revision 58388 +shortdesc i386-freebsd files of tex +containersize 173856 +containerchecksum 8d54afc127d4a4eaa82d2cb777247962f7b47a3b5e6a54eb9e36b717a81c1c607de46e9c478ef1b5da86f400d8b4ae194d4cacee31d1493dd5db9391b96d06fd +binfiles arch=i386-freebsd size=136 + bin/i386-freebsd/initex + bin/i386-freebsd/tex + +name tex.i386-linux +category TLCore +revision 58378 +shortdesc i386-linux files of tex +containersize 169216 +containerchecksum ad903106169d8c58facfe5ef6ccd7b5971be2c19d085d1d0cae824d0aea607a291c861723be1d13c7d9ef8a9caad4de909b1a882ec94a95e62e5c0d25ef945cc +binfiles arch=i386-linux size=102 + bin/i386-linux/initex + bin/i386-linux/tex + +name tex.i386-netbsd +category TLCore +revision 58386 +shortdesc i386-netbsd files of tex +containersize 128536 +containerchecksum dd3dec2496dc04b60c7b701ace48942701e34a1d22da745c758416416d89333ba42617b946e3ab5af310d09c8704eb1159611624f190341e2d80ed5748d9b844 +binfiles arch=i386-netbsd size=105 + bin/i386-netbsd/initex + bin/i386-netbsd/tex + +name tex.i386-solaris +category TLCore +revision 58388 +shortdesc i386-solaris files of tex +containersize 164816 +containerchecksum a9817dc6f30bfbbe9ea7f440b56e432e86a40b71e59425898168d3151d384871725d66187312000d528a1c46cb0b9d5e15f6bb1e4f8f8444535c7bca9c32c5af +binfiles arch=i386-solaris size=94 + bin/i386-solaris/initex + bin/i386-solaris/tex + +name tex.universal-darwin +category TLCore +revision 58418 +shortdesc universal-darwin files of tex +containersize 435528 +containerchecksum a7be896bcec7fa2cd159ed6002fdac3cf5cf2d6ff3d993365c30778865477e5cff6be75cd2f204f9639f3b70626f8a9cd0fc268df9ede13ddd35c99b178a7aed +binfiles arch=universal-darwin size=333 + bin/universal-darwin/initex + bin/universal-darwin/tex + +name tex.win32 +category TLCore +revision 59028 +shortdesc win32 files of tex +containersize 133076 +containerchecksum b5365192590f94e7be8d760ef93c1a27b233a4fc35eafed0a754499c7bf6164cfe7fe721454a34c6c39495abe1a0a86328231d9ddb81245be1e602a55647fff7 +binfiles arch=win32 size=76 + bin/win32/initex.exe + bin/win32/tex.dll + bin/win32/tex.exe + +name tex.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of tex +containersize 171028 +containerchecksum e8794cb24a97a5a49bae227853ce6296c7e43f71a8fa241154c383f3ca0e3b15efa28d7ac244543eff92edfc805592875471532b16bda87291f8d285f25f0efc +binfiles arch=x86_64-cygwin size=96 + bin/x86_64-cygwin/initex + bin/x86_64-cygwin/tex.exe + +name tex.x86_64-darwinlegacy +category TLCore +revision 58388 +shortdesc x86_64-darwinlegacy files of tex +containersize 170520 +containerchecksum ff146ae3fde7ea2ef9154494225502398a9f5b7a6756e7a856f5239c227d92684bda201bc974e8c47d4e86d07473d718e709c90f296bc93b11700526a046830a +binfiles arch=x86_64-darwinlegacy size=92 + bin/x86_64-darwinlegacy/initex + bin/x86_64-darwinlegacy/tex + +name tex.x86_64-linux +category TLCore +revision 58378 +shortdesc x86_64-linux files of tex +containersize 176388 +containerchecksum 1a6d9bc9f6e2e626649e38e231cb95318a2f99e5253e9a07ff99ca592c9d1f4536c5fe8c2030a91087627a0dfc3418f3675f30ecd2c54c957910f109f67e3e55 +binfiles arch=x86_64-linux size=95 + bin/x86_64-linux/initex + bin/x86_64-linux/tex + +name tex.x86_64-linuxmusl +category TLCore +revision 58378 +shortdesc x86_64-linuxmusl files of tex +containersize 187064 +containerchecksum 8b4eed71fbc7eef1d591131beb57174fabc2919d768782f0e03278bcace410c29448f131e2021608f18d903def74efb3e86354466cc154c040299ddfe2ec20ad +binfiles arch=x86_64-linuxmusl size=107 + bin/x86_64-linuxmusl/initex + bin/x86_64-linuxmusl/tex + +name tex.x86_64-solaris +category TLCore +revision 58388 +shortdesc x86_64-solaris files of tex +containersize 192736 +containerchecksum 5e3e928ddb617b98a66a56480978ee2507bc0d7bda1c6ce72731e9e7b4c26f1d72797aa18ec973b4ae8e12b94c441d0b889f6db62912f5bbe277bbfb5d6a2181 +binfiles arch=x86_64-solaris size=107 + bin/x86_64-solaris/initex + bin/x86_64-solaris/tex + +name tex4ebook +category Package +revision 56878 +shortdesc Convertor from LaTeX to ebook formats +longdesc This is a bundle of lua scripts and LaTeX packages for +longdesc conversion of LaTeX files to ebook formats such as epub, mobi +longdesc and epub3. tex4ht is used as conversion engine. +depend tex4ebook.ARCH +containersize 16960 +containerchecksum 9ef3a2b820f1f7015b61b8cff017affbf8cdc07fb1d4c39f629e46e2457a08875dd83252526e75465ec75a42d6580b7ec75b085455e5ba62dd14dd13a898a8f2 +doccontainersize 88140 +doccontainerchecksum 0a01620564aa41d076a998910eff5a1fc45b7a0f2a3b2f606191e1442c49ed6685c8ac51a099834da2765de030d2f099a79fd03d6aebe08f78837f18638bc9d2 +docfiles size=33 + texmf-dist/doc/support/tex4ebook/README details="Readme" + texmf-dist/doc/support/tex4ebook/changelog.tex + texmf-dist/doc/support/tex4ebook/readme.tex + texmf-dist/doc/support/tex4ebook/tex4ebook-doc.pdf details="Package documentation" + texmf-dist/doc/support/tex4ebook/tex4ebook-doc.tex + texmf-dist/doc/support/tex4ebook/tex4ebook-tidyconf.conf +runfiles size=20 + texmf-dist/scripts/tex4ebook/tex4ebook + texmf-dist/scripts/tex4ebook/tex4ebook-exec_azw.lua + texmf-dist/scripts/tex4ebook/tex4ebook-exec_azw3.lua + texmf-dist/scripts/tex4ebook/tex4ebook-exec_epub.lua + texmf-dist/scripts/tex4ebook/tex4ebook-exec_epub3.lua + texmf-dist/scripts/tex4ebook/tex4ebook-exec_mobi.lua + texmf-dist/tex/latex/tex4ebook/tex4ebook-epub3.4ht + texmf-dist/tex/latex/tex4ebook/tex4ebook.4ht + texmf-dist/tex/latex/tex4ebook/tex4ebook.sty +catalogue-contact-bugs https://github.com/michal-h21/tex4ebook/issues +catalogue-contact-repository https://github.com/michal-h21/tex4ebook +catalogue-ctan /support/tex4ebook +catalogue-license lppl1.3 +catalogue-topics ebook +catalogue-version 0.3c + +name tex4ebook.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of tex4ebook +containersize 340 +containerchecksum b217c101b948aacd5b7a69f713ec1ad4d2f492c8ba800242a9e1220206276cb7d971331dd4ff57064495fb677e57905c0790566cb573055fadc3c284f99584a0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/tex4ebook + +name tex4ebook.amd64-freebsd +category Package +revision 37771 +shortdesc amd64-freebsd files of tex4ebook +containersize 340 +containerchecksum 0d811c8830e60503f801ffecaf3760b4ecf5fd016aaa82f24a3c011dde61f47a71d773bf1c46e88b450c983e3f57cbd1561a0b1aa0f6468164a6a58da0ba1442 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/tex4ebook + +name tex4ebook.amd64-netbsd +category Package +revision 37771 +shortdesc amd64-netbsd files of tex4ebook +containersize 340 +containerchecksum 2bf1919c5d0fc6ec5f15ae2446f8c13dc8f2e2a8fde0aed330e3a7b170139e8e2f3e43b81b2a78e0cb82867891e2d4b3c1c7f9d45c4f882305755e619d2c4906 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/tex4ebook + +name tex4ebook.armhf-linux +category Package +revision 37771 +shortdesc armhf-linux files of tex4ebook +containersize 340 +containerchecksum 6d6c2c3e018c293cd52ec96b3e95f0b77324a1f9e946fad7e812dc50c26817e65183d2252b538612b5c0dd1e8904592f3c8f14111bb07848add8600f3c7e383d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/tex4ebook + +name tex4ebook.i386-cygwin +category Package +revision 37771 +shortdesc i386-cygwin files of tex4ebook +containersize 336 +containerchecksum be76dc4b72009ee6756ac08f9428660a1fbc9b03ac6d803725feb228883e84ad365ec9d21a1dae1453cf32c882044131a3de55bc2daa8953aae69977322c7650 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/tex4ebook + +name tex4ebook.i386-freebsd +category Package +revision 37771 +shortdesc i386-freebsd files of tex4ebook +containersize 340 +containerchecksum c03ec474180141e4bafe9f3e85290dd0efa003e980b88198fd2aeecedb64d024a692cfb9fb20cde6d5a7831a12643df03c65974ee4a3ae2333b18a7563417756 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/tex4ebook + +name tex4ebook.i386-linux +category Package +revision 37771 +shortdesc i386-linux files of tex4ebook +containersize 340 +containerchecksum 3a41ab468791fd84084b2395b091ce0ae33845b07e896a314ef67791fbc485ee8c499bdd7b07d311a933b66fb7b84ddf9d5f4626ccbded63c41c492333cae982 +binfiles arch=i386-linux size=1 + bin/i386-linux/tex4ebook + +name tex4ebook.i386-netbsd +category Package +revision 37771 +shortdesc i386-netbsd files of tex4ebook +containersize 340 +containerchecksum ecaef5637232f60f55c9619657668e8394c4dfae995b315ab805935f6b0e4a9a777abd9616a71d17c6fbe8eb994e1696e81d757bba2e11edc63bf9573d1c5597 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/tex4ebook + +name tex4ebook.i386-solaris +category Package +revision 37771 +shortdesc i386-solaris files of tex4ebook +containersize 340 +containerchecksum 0cd64e3d601c45d12e5180e4a8403da2b49c44cbadd487535cdc8bbc1f5336c6b6ef26aa04df158d4573e737f4ddc88884312f0d51f10b7a92c243872bbdf567 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/tex4ebook + +name tex4ebook.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of tex4ebook +containersize 340 +containerchecksum 6b61ea8679eb9cc8dc255d7c0bee404f0d82090fb4b2126b2fc978e2f6ddc8183383d24873797348e77ee033c93e76e768d8cfdc092a5e7377f7d92a734b88aa +binfiles arch=universal-darwin size=1 + bin/universal-darwin/tex4ebook + +name tex4ebook.win32 +category Package +revision 37771 +shortdesc win32 files of tex4ebook +containersize 684 +containerchecksum a09fa5d0d8797cbe40b0925dffa8d4f177175400719558a9d3c26be44989c2b46f6e792ef8b247efd74e242816f539ae302b63dab71be6d419454ebc9a5a2868 +binfiles arch=win32 size=1 + bin/win32/tex4ebook.exe + +name tex4ebook.x86_64-cygwin +category Package +revision 37771 +shortdesc x86_64-cygwin files of tex4ebook +containersize 340 +containerchecksum e3a9dcd5f35a34533905241a31f7924ba39c758141d449b3db5ee00b99240240a3d40ee6508117242b26ab4c2b500d370d705b48b4b518b4b04f907ac21af586 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/tex4ebook + +name tex4ebook.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of tex4ebook +containersize 348 +containerchecksum 36b46aaf77c363e1f9f7830327d31e8e6b21b85d7e6bdca5854f20170884f5da2ee64b4bc66dc4a387481460908e0eb029224cea8af7440b530d9f8542f1120b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/tex4ebook + +name tex4ebook.x86_64-linux +category Package +revision 37771 +shortdesc x86_64-linux files of tex4ebook +containersize 340 +containerchecksum 99a43ad76caf33d2ecc215bb8861edab835e642f5ad421c801908d0ec033f2a1560fe623b947b69860fd2b39d9b787289d50a33e5e909c3dc7ef44f135094454 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/tex4ebook + +name tex4ebook.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of tex4ebook +containersize 344 +containerchecksum 2f51866a24bf978c3271ad9c3ba4c721ca8141c6dca0590781d7416ce88d62b15525f547f7d324fa4b68bee042e985dda43e71918230bf3d2a5230e1303c7948 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/tex4ebook + +name tex4ebook.x86_64-solaris +category Package +revision 37771 +shortdesc x86_64-solaris files of tex4ebook +containersize 340 +containerchecksum 6a961d0fd7e939816dcbc1b4e9d9e51b6094d77015e65ab384c3885baee0b8c456877a1f26b86f6ac1930ad88ef2fdafb56af39a7e44d55281497f1e90a1bf5b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/tex4ebook + +name tex4ht +category Package +revision 59071 +shortdesc Convert (La)TeX to HTML/XML +longdesc A converter from TeX and LaTeX to SGML-based formats such as +longdesc (X)HTML, MathML, OpenDocument, and DocBook, providing a +longdesc configurable (La)TeX-based authoring system for hypertext. +longdesc TeX4ht does not parse (La)TeX source (so that it avoids the +longdesc difficulties encountered by many other converters, arising from +longdesc the irregularity of (La)TeX syntax). Instead, TeX4ht uses +longdesc (La)TeX itself (with myriad macro modifications) to produce a +longdesc helper DVI file that it can then process. This technique allows +longdesc TeX4ht to approach the robustness characteristic of +longdesc restricted-syntax systems such as hyperlatex and gellmu. Note +longdesc that CTAN no longer holds the definitive sources of the +longdesc package: see the 'Readme' file. +depend tex4ht.ARCH +containersize 906804 +containerchecksum 7b4b31d69cceb108946f27a549e5ccee1657dba4ba1733e7b271544ec6c457d2e19b83aa5468e26f0b81992b2a5f22b251de7867a658f82b3214ded4f29077bb +doccontainersize 136384 +doccontainerchecksum eadf79734ea3df71f2f6f0d8a901c77bc1a9616a437424163bff2c7f1c6b6c6fa76dff71fb0b591d145a3862a7db1596308187cba4706ec45e0f19a3cc62e38b +docfiles size=260 + texmf-dist/doc/generic/tex4ht/Makefile + texmf-dist/doc/generic/tex4ht/README details="Readme" + texmf-dist/doc/generic/tex4ht/TeX4ht-doc.tex + texmf-dist/doc/generic/tex4ht/bugfixes.html + texmf-dist/doc/generic/tex4ht/index.html + texmf-dist/doc/generic/tex4ht/jhsample.tex + texmf-dist/doc/generic/tex4ht/mml-issues.html + texmf-dist/doc/generic/tex4ht/mml.html + texmf-dist/doc/generic/tex4ht/mn-bug.html + texmf-dist/doc/generic/tex4ht/mn-commands.html + texmf-dist/doc/generic/tex4ht/mn-htf.html + texmf-dist/doc/generic/tex4ht/mn-index.html + texmf-dist/doc/generic/tex4ht/mn-mswin.html + texmf-dist/doc/generic/tex4ht/mn-port.html + texmf-dist/doc/generic/tex4ht/mn-upgrade.html + texmf-dist/doc/generic/tex4ht/mn.css + texmf-dist/doc/generic/tex4ht/mn.html details="Package documentation" + texmf-dist/doc/generic/tex4ht/mn0x.png + texmf-dist/doc/generic/tex4ht/mn10.html + texmf-dist/doc/generic/tex4ht/mn11.html + texmf-dist/doc/generic/tex4ht/mn12.html + texmf-dist/doc/generic/tex4ht/mn13.html + texmf-dist/doc/generic/tex4ht/mn14.html + texmf-dist/doc/generic/tex4ht/mn15.html + texmf-dist/doc/generic/tex4ht/mn16.html + texmf-dist/doc/generic/tex4ht/mn17.html + texmf-dist/doc/generic/tex4ht/mn18.html + texmf-dist/doc/generic/tex4ht/mn19.html + texmf-dist/doc/generic/tex4ht/mn1x.png + texmf-dist/doc/generic/tex4ht/mn2.html + texmf-dist/doc/generic/tex4ht/mn20.html + texmf-dist/doc/generic/tex4ht/mn21.html + texmf-dist/doc/generic/tex4ht/mn22.html + texmf-dist/doc/generic/tex4ht/mn24.html + texmf-dist/doc/generic/tex4ht/mn25.html + texmf-dist/doc/generic/tex4ht/mn27.html + texmf-dist/doc/generic/tex4ht/mn29.html + texmf-dist/doc/generic/tex4ht/mn2x.png + texmf-dist/doc/generic/tex4ht/mn3.html + texmf-dist/doc/generic/tex4ht/mn30.html + texmf-dist/doc/generic/tex4ht/mn32.html + texmf-dist/doc/generic/tex4ht/mn33.html + texmf-dist/doc/generic/tex4ht/mn34.html + texmf-dist/doc/generic/tex4ht/mn35.html + texmf-dist/doc/generic/tex4ht/mn36.html + texmf-dist/doc/generic/tex4ht/mn37.html + texmf-dist/doc/generic/tex4ht/mn38.html + texmf-dist/doc/generic/tex4ht/mn39.html + texmf-dist/doc/generic/tex4ht/mn3x.png + texmf-dist/doc/generic/tex4ht/mn4.html + texmf-dist/doc/generic/tex4ht/mn40.html + texmf-dist/doc/generic/tex4ht/mn41.html + texmf-dist/doc/generic/tex4ht/mn42.html + texmf-dist/doc/generic/tex4ht/mn44.html + texmf-dist/doc/generic/tex4ht/mn45.html + texmf-dist/doc/generic/tex4ht/mn46.html + texmf-dist/doc/generic/tex4ht/mn47.html + texmf-dist/doc/generic/tex4ht/mn48.html + texmf-dist/doc/generic/tex4ht/mn49.html + texmf-dist/doc/generic/tex4ht/mn4x.png + texmf-dist/doc/generic/tex4ht/mn5.html + texmf-dist/doc/generic/tex4ht/mn50.html + texmf-dist/doc/generic/tex4ht/mn51.html + texmf-dist/doc/generic/tex4ht/mn52.html + texmf-dist/doc/generic/tex4ht/mn53.html + texmf-dist/doc/generic/tex4ht/mn54.html + texmf-dist/doc/generic/tex4ht/mn55.html + texmf-dist/doc/generic/tex4ht/mn56.html + texmf-dist/doc/generic/tex4ht/mn5x.png + texmf-dist/doc/generic/tex4ht/mn6x.png +srccontainersize 1204676 +srccontainerchecksum ca78387d73af725b7965d07dce7f860687eff64e91415edcb50d4c61362286dbcac0305b30a2c508ec992922bb10466f9a777e4e2c4f215368255e360c2e8026 +srcfiles size=3622 + texmf-dist/source/generic/tex4ht/ChangeLog + texmf-dist/source/generic/tex4ht/Makefile + texmf-dist/source/generic/tex4ht/README + texmf-dist/source/generic/tex4ht/checklog.lua + texmf-dist/source/generic/tex4ht/common-code.tex + texmf-dist/source/generic/tex4ht/common-info.tex + texmf-dist/source/generic/tex4ht/common.tex + texmf-dist/source/generic/tex4ht/extra-bin/vcss + texmf-dist/source/generic/tex4ht/extra-bin/xmllint + texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex + texmf-dist/source/generic/tex4ht/t1fontmake.lua + texmf-dist/source/generic/tex4ht/t1fontsample.tex + texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex + texmf-dist/source/generic/tex4ht/tex4ht-auto-script.tex + texmf-dist/source/generic/tex4ht/tex4ht-bibtex2.tex + texmf-dist/source/generic/tex4ht/tex4ht-c.tex + texmf-dist/source/generic/tex4ht/tex4ht-cond4ht.tex + texmf-dist/source/generic/tex4ht/tex4ht-cpright.tex + texmf-dist/source/generic/tex4ht/tex4ht-dir.m4 + texmf-dist/source/generic/tex4ht/tex4ht-docbook-xtpipes.tex + texmf-dist/source/generic/tex4ht/tex4ht-docbook.tex + texmf-dist/source/generic/tex4ht/tex4ht-env.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-4hf.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-cjk-utf8.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-cjk.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-ebgaramond.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-fourier.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-libertine.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-modern.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-newtx.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-spectral.tex + texmf-dist/source/generic/tex4ht/tex4ht-htcmd.tex + texmf-dist/source/generic/tex4ht/tex4ht-html-speech-xtpipes.tex + texmf-dist/source/generic/tex4ht/tex4ht-html-speech.tex + texmf-dist/source/generic/tex4ht/tex4ht-html0.tex + texmf-dist/source/generic/tex4ht/tex4ht-html32.tex + texmf-dist/source/generic/tex4ht/tex4ht-html4.tex + texmf-dist/source/generic/tex4ht/tex4ht-html5.tex + texmf-dist/source/generic/tex4ht/tex4ht-info-html4.tex + texmf-dist/source/generic/tex4ht/tex4ht-info-javahelp.tex + texmf-dist/source/generic/tex4ht/tex4ht-info-mml.tex + texmf-dist/source/generic/tex4ht/tex4ht-info-ooffice.tex + texmf-dist/source/generic/tex4ht/tex4ht-info-svg.tex + texmf-dist/source/generic/tex4ht/tex4ht-info.tex + texmf-dist/source/generic/tex4ht/tex4ht-jats.tex + texmf-dist/source/generic/tex4ht/tex4ht-javahelp-xtpipes.tex + texmf-dist/source/generic/tex4ht/tex4ht-javahelp.tex + texmf-dist/source/generic/tex4ht/tex4ht-jsmath.tex + texmf-dist/source/generic/tex4ht/tex4ht-jsml-xtpipes.tex + texmf-dist/source/generic/tex4ht/tex4ht-jsml.tex + texmf-dist/source/generic/tex4ht/tex4ht-mathjax.tex + texmf-dist/source/generic/tex4ht/tex4ht-mathltx.tex + texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex + texmf-dist/source/generic/tex4ht/tex4ht-mathplayer.tex + texmf-dist/source/generic/tex4ht/tex4ht-mkht.tex + texmf-dist/source/generic/tex4ht/tex4ht-moz.tex + texmf-dist/source/generic/tex4ht/tex4ht-oo-xtpipes.tex + texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex + texmf-dist/source/generic/tex4ht/tex4ht-ooimpress.tex + texmf-dist/source/generic/tex4ht/tex4ht-options.tex + texmf-dist/source/generic/tex4ht/tex4ht-sty.tex + texmf-dist/source/generic/tex4ht/tex4ht-svg.tex + texmf-dist/source/generic/tex4ht/tex4ht-t4ht.tex + texmf-dist/source/generic/tex4ht/tex4ht-tei.tex + texmf-dist/source/generic/tex4ht/tex4ht-unicode.tex + texmf-dist/source/generic/tex4ht/tex4ht-word.tex + texmf-dist/source/generic/tex4ht/tex4ht-xhtml-xtpipes.tex + texmf-dist/source/generic/tex4ht/tex4ht-xhtmml-xtpipes.tex + texmf-dist/source/generic/tex4ht/wripro.tex + texmf-dist/source/generic/tex4ht/xtpipes.tex +runfiles size=9795 + texmf-dist/scripts/tex4ht/ht.sh + texmf-dist/scripts/tex4ht/htcontext.sh + texmf-dist/scripts/tex4ht/htcopy.pl + texmf-dist/scripts/tex4ht/htlatex.sh + texmf-dist/scripts/tex4ht/htmex.sh + texmf-dist/scripts/tex4ht/htmove.pl + texmf-dist/scripts/tex4ht/httex.sh + texmf-dist/scripts/tex4ht/httexi.sh + texmf-dist/scripts/tex4ht/htxelatex.sh + texmf-dist/scripts/tex4ht/htxetex.sh + texmf-dist/scripts/tex4ht/mk4ht.pl + texmf-dist/scripts/tex4ht/xhlatex.sh + texmf-dist/tex/generic/tex4ht/2up.4ht + texmf-dist/tex/generic/tex4ht/8859-6.4ht + texmf-dist/tex/generic/tex4ht/CJK.4ht + texmf-dist/tex/generic/tex4ht/IEEEtran.4ht + texmf-dist/tex/generic/tex4ht/JHEP.4ht + texmf-dist/tex/generic/tex4ht/ProTex.4ht + texmf-dist/tex/generic/tex4ht/SIunits.4ht + texmf-dist/tex/generic/tex4ht/TextBook.4ht + texmf-dist/tex/generic/tex4ht/aa.4ht + texmf-dist/tex/generic/tex4ht/abidir.4ht + texmf-dist/tex/generic/tex4ht/abstract.4ht + texmf-dist/tex/generic/tex4ht/accents.4ht + texmf-dist/tex/generic/tex4ht/acm_proc_article-sp.4ht + texmf-dist/tex/generic/tex4ht/adjustbox.4ht + texmf-dist/tex/generic/tex4ht/afterpage.4ht + texmf-dist/tex/generic/tex4ht/alatex.4ht + texmf-dist/tex/generic/tex4ht/algorithm.4ht + texmf-dist/tex/generic/tex4ht/algorithmic.4ht + texmf-dist/tex/generic/tex4ht/algorithmicx.4ht + texmf-dist/tex/generic/tex4ht/alltt.4ht + texmf-dist/tex/generic/tex4ht/alphanum.4ht + texmf-dist/tex/generic/tex4ht/amsart.4ht + texmf-dist/tex/generic/tex4ht/amsbook.4ht + texmf-dist/tex/generic/tex4ht/amsbsy.4ht + texmf-dist/tex/generic/tex4ht/amscd.4ht + texmf-dist/tex/generic/tex4ht/amsdtx.4ht + texmf-dist/tex/generic/tex4ht/amsfonts.4ht + texmf-dist/tex/generic/tex4ht/amsldoc.4ht + texmf-dist/tex/generic/tex4ht/amsmath.4ht + texmf-dist/tex/generic/tex4ht/amsopn.4ht + texmf-dist/tex/generic/tex4ht/amsppt.4ht + texmf-dist/tex/generic/tex4ht/amsproc.4ht + texmf-dist/tex/generic/tex4ht/amssymb.4ht + texmf-dist/tex/generic/tex4ht/amstex.4ht + texmf-dist/tex/generic/tex4ht/amstex1.4ht + texmf-dist/tex/generic/tex4ht/amstext.4ht + texmf-dist/tex/generic/tex4ht/amsthm.4ht + texmf-dist/tex/generic/tex4ht/animate.4ht + texmf-dist/tex/generic/tex4ht/aoutput.4ht + texmf-dist/tex/generic/tex4ht/apa-a.4ht + texmf-dist/tex/generic/tex4ht/apa.4ht + texmf-dist/tex/generic/tex4ht/apacite.4ht + texmf-dist/tex/generic/tex4ht/appendix.4ht + texmf-dist/tex/generic/tex4ht/aps.4ht + texmf-dist/tex/generic/tex4ht/arabicore.4ht + texmf-dist/tex/generic/tex4ht/array.4ht + texmf-dist/tex/generic/tex4ht/article.4ht + texmf-dist/tex/generic/tex4ht/austrian.4ht + texmf-dist/tex/generic/tex4ht/authblk.4ht + texmf-dist/tex/generic/tex4ht/awesomebox.4ht + texmf-dist/tex/generic/tex4ht/babel.4ht + texmf-dist/tex/generic/tex4ht/beamer.4ht + texmf-dist/tex/generic/tex4ht/beamerbasefont.4ht + texmf-dist/tex/generic/tex4ht/beamerbasetoc.4ht + texmf-dist/tex/generic/tex4ht/beton.4ht + texmf-dist/tex/generic/tex4ht/biblatex-chicago.4ht + texmf-dist/tex/generic/tex4ht/biblatex-hooks.4ht + texmf-dist/tex/generic/tex4ht/biblatex.4ht + texmf-dist/tex/generic/tex4ht/bibtex.4ht + texmf-dist/tex/generic/tex4ht/bibtex2.4ht + texmf-dist/tex/generic/tex4ht/bibtopic.4ht + texmf-dist/tex/generic/tex4ht/bm.4ht + texmf-dist/tex/generic/tex4ht/book.4ht + texmf-dist/tex/generic/tex4ht/booktabs.4ht + texmf-dist/tex/generic/tex4ht/boxedminipage.4ht + texmf-dist/tex/generic/tex4ht/braket.4ht + texmf-dist/tex/generic/tex4ht/bussproofs.4ht + texmf-dist/tex/generic/tex4ht/byname.4ht + texmf-dist/tex/generic/tex4ht/caption-hooks.4ht + texmf-dist/tex/generic/tex4ht/caption.4ht + texmf-dist/tex/generic/tex4ht/catalan.4ht + texmf-dist/tex/generic/tex4ht/catchfile-sty-hooks.4ht + texmf-dist/tex/generic/tex4ht/cgloss4e.4ht + texmf-dist/tex/generic/tex4ht/chapterbib.4ht + texmf-dist/tex/generic/tex4ht/chessboard.4ht + texmf-dist/tex/generic/tex4ht/chicago.4ht + texmf-dist/tex/generic/tex4ht/cleveref-hooks.4ht + texmf-dist/tex/generic/tex4ht/cleveref.4ht + texmf-dist/tex/generic/tex4ht/color.4ht + texmf-dist/tex/generic/tex4ht/colortbl.4ht + texmf-dist/tex/generic/tex4ht/combine.4ht + texmf-dist/tex/generic/tex4ht/cond4ht.4ht + texmf-dist/tex/generic/tex4ht/context.4ht + texmf-dist/tex/generic/tex4ht/covington.4ht + texmf-dist/tex/generic/tex4ht/cp1250.4ht + texmf-dist/tex/generic/tex4ht/cp1252.4ht + texmf-dist/tex/generic/tex4ht/cp1256.4ht + texmf-dist/tex/generic/tex4ht/cp437.4ht + texmf-dist/tex/generic/tex4ht/cp437de.4ht + texmf-dist/tex/generic/tex4ht/cp850.4ht + texmf-dist/tex/generic/tex4ht/cp852.4ht + texmf-dist/tex/generic/tex4ht/cp862.4ht + texmf-dist/tex/generic/tex4ht/cp865.4ht + texmf-dist/tex/generic/tex4ht/croatian.4ht + texmf-dist/tex/generic/tex4ht/csquotes.4ht + texmf-dist/tex/generic/tex4ht/ctex-hooks.4ht + texmf-dist/tex/generic/tex4ht/ctex.4ht + texmf-dist/tex/generic/tex4ht/curve.4ht + texmf-dist/tex/generic/tex4ht/czech.4ht + texmf-dist/tex/generic/tex4ht/danish.4ht + texmf-dist/tex/generic/tex4ht/dcolumn.4ht + texmf-dist/tex/generic/tex4ht/debug.4ht + texmf-dist/tex/generic/tex4ht/diagram.4ht + texmf-dist/tex/generic/tex4ht/diagrams.4ht + texmf-dist/tex/generic/tex4ht/doc.4ht + texmf-dist/tex/generic/tex4ht/docbook-math.4ht + texmf-dist/tex/generic/tex4ht/docbook-mml.4ht + texmf-dist/tex/generic/tex4ht/docbook.4ht + texmf-dist/tex/generic/tex4ht/dratex.4ht + texmf-dist/tex/generic/tex4ht/dsfont.4ht + texmf-dist/tex/generic/tex4ht/dutch.4ht + texmf-dist/tex/generic/tex4ht/dvipdf.4ht + texmf-dist/tex/generic/tex4ht/dvips.4ht + texmf-dist/tex/generic/tex4ht/dvipsnam.4ht + texmf-dist/tex/generic/tex4ht/dvipsone.4ht + texmf-dist/tex/generic/tex4ht/elsart.4ht + texmf-dist/tex/generic/tex4ht/emacspeak.4ht + texmf-dist/tex/generic/tex4ht/emulateapj.4ht + texmf-dist/tex/generic/tex4ht/endfloat.4ht + texmf-dist/tex/generic/tex4ht/endnotes.4ht + texmf-dist/tex/generic/tex4ht/english.4ht + texmf-dist/tex/generic/tex4ht/enumerate.4ht + texmf-dist/tex/generic/tex4ht/enumitem.4ht + texmf-dist/tex/generic/tex4ht/epigraph.4ht + texmf-dist/tex/generic/tex4ht/eplain.4ht + texmf-dist/tex/generic/tex4ht/epsf.4ht + texmf-dist/tex/generic/tex4ht/epsfig.4ht + texmf-dist/tex/generic/tex4ht/errata.4ht + texmf-dist/tex/generic/tex4ht/esopic-hooks.4ht + texmf-dist/tex/generic/tex4ht/esperant.4ht + texmf-dist/tex/generic/tex4ht/esperanto.4ht + texmf-dist/tex/generic/tex4ht/estonian.4ht + texmf-dist/tex/generic/tex4ht/eucal.4ht + texmf-dist/tex/generic/tex4ht/euler.4ht + texmf-dist/tex/generic/tex4ht/europecv.4ht + texmf-dist/tex/generic/tex4ht/eurosym.4ht + texmf-dist/tex/generic/tex4ht/everyshi.4ht + texmf-dist/tex/generic/tex4ht/exam.4ht + texmf-dist/tex/generic/tex4ht/exerquiz-hooks.4ht + texmf-dist/tex/generic/tex4ht/exerquiz.4ht + texmf-dist/tex/generic/tex4ht/exerqz.4ht + texmf-dist/tex/generic/tex4ht/expl3-hooks.4ht + texmf-dist/tex/generic/tex4ht/extarticle.4ht + texmf-dist/tex/generic/tex4ht/extbook.4ht + texmf-dist/tex/generic/tex4ht/extletter.4ht + texmf-dist/tex/generic/tex4ht/extproc.4ht + texmf-dist/tex/generic/tex4ht/extreport.4ht + texmf-dist/tex/generic/tex4ht/fancybox.4ht + texmf-dist/tex/generic/tex4ht/fancyhdr-hooks.4ht + texmf-dist/tex/generic/tex4ht/fancyvrb.4ht + texmf-dist/tex/generic/tex4ht/fig4tex.4ht + texmf-dist/tex/generic/tex4ht/finnish.4ht + texmf-dist/tex/generic/tex4ht/fleqn.4ht + texmf-dist/tex/generic/tex4ht/float.4ht + texmf-dist/tex/generic/tex4ht/floatflt.4ht + texmf-dist/tex/generic/tex4ht/floatpag.4ht + texmf-dist/tex/generic/tex4ht/foils.4ht + texmf-dist/tex/generic/tex4ht/fontmath.4ht + texmf-dist/tex/generic/tex4ht/fontspec-4ht.lua + texmf-dist/tex/generic/tex4ht/fontspec-hooks.4ht + texmf-dist/tex/generic/tex4ht/fontspec-luatex.4ht + texmf-dist/tex/generic/tex4ht/fontspec-xetex.4ht + texmf-dist/tex/generic/tex4ht/fontspec.4ht + texmf-dist/tex/generic/tex4ht/footmisc.4ht + texmf-dist/tex/generic/tex4ht/footnote-dw.4ht + texmf-dist/tex/generic/tex4ht/framed.4ht + texmf-dist/tex/generic/tex4ht/francais.4ht + texmf-dist/tex/generic/tex4ht/french.4ht + texmf-dist/tex/generic/tex4ht/frenchb.4ht + texmf-dist/tex/generic/tex4ht/g-brief.4ht + texmf-dist/tex/generic/tex4ht/galician.4ht + texmf-dist/tex/generic/tex4ht/gauss.4ht + texmf-dist/tex/generic/tex4ht/geometry.4ht + texmf-dist/tex/generic/tex4ht/german.4ht + texmf-dist/tex/generic/tex4ht/germanb.4ht + texmf-dist/tex/generic/tex4ht/gloss-french.4ht + texmf-dist/tex/generic/tex4ht/gloss.4ht + texmf-dist/tex/generic/tex4ht/glossaries.4ht + texmf-dist/tex/generic/tex4ht/glossary.4ht + texmf-dist/tex/generic/tex4ht/go.4ht + texmf-dist/tex/generic/tex4ht/graphics-hooks.4ht + texmf-dist/tex/generic/tex4ht/graphics.4ht + texmf-dist/tex/generic/tex4ht/graphicx.4ht + texmf-dist/tex/generic/tex4ht/greek.4ht + texmf-dist/tex/generic/tex4ht/harvard.4ht + texmf-dist/tex/generic/tex4ht/hebrew.4ht + texmf-dist/tex/generic/tex4ht/hebtex.4ht + texmf-dist/tex/generic/tex4ht/hewrite.4ht + texmf-dist/tex/generic/tex4ht/holtxdoc.4ht + texmf-dist/tex/generic/tex4ht/html-jsmath.4ht + texmf-dist/tex/generic/tex4ht/html-mltx.4ht + texmf-dist/tex/generic/tex4ht/html-mml.4ht + texmf-dist/tex/generic/tex4ht/html-speech-math.4ht + texmf-dist/tex/generic/tex4ht/html-speech.4ht + texmf-dist/tex/generic/tex4ht/html0.4ht + texmf-dist/tex/generic/tex4ht/html32-math.4ht + texmf-dist/tex/generic/tex4ht/html32.4ht + texmf-dist/tex/generic/tex4ht/html4-l2-url.4ht + texmf-dist/tex/generic/tex4ht/html4-math.4ht + texmf-dist/tex/generic/tex4ht/html4-russian-accents.4ht + texmf-dist/tex/generic/tex4ht/html4-svg.4ht + texmf-dist/tex/generic/tex4ht/html4-uni.4ht + texmf-dist/tex/generic/tex4ht/html4.4ht + texmf-dist/tex/generic/tex4ht/html5.4ht + texmf-dist/tex/generic/tex4ht/htmlw.4ht + texmf-dist/tex/generic/tex4ht/hypcap.4ht + texmf-dist/tex/generic/tex4ht/hyperref-hooks.4ht + texmf-dist/tex/generic/tex4ht/hyperref.4ht + texmf-dist/tex/generic/tex4ht/idxmake.4ht + texmf-dist/tex/generic/tex4ht/ifthen.4ht + texmf-dist/tex/generic/tex4ht/imakeidx-hooks.4ht + texmf-dist/tex/generic/tex4ht/imakeidx.4ht + texmf-dist/tex/generic/tex4ht/index.4ht + texmf-dist/tex/generic/tex4ht/info4ht.4ht + texmf-dist/tex/generic/tex4ht/infoht4.4ht + texmf-dist/tex/generic/tex4ht/infojh.4ht + texmf-dist/tex/generic/tex4ht/infomml.4ht + texmf-dist/tex/generic/tex4ht/infoof.4ht + texmf-dist/tex/generic/tex4ht/infosvg.4ht + texmf-dist/tex/generic/tex4ht/inputenc.4ht + texmf-dist/tex/generic/tex4ht/italian.4ht + texmf-dist/tex/generic/tex4ht/jats.4ht + texmf-dist/tex/generic/tex4ht/javahelp-a.4ht + texmf-dist/tex/generic/tex4ht/javahelp.4ht + texmf-dist/tex/generic/tex4ht/jeep.4ht + texmf-dist/tex/generic/tex4ht/jsmath.4ht + texmf-dist/tex/generic/tex4ht/jsml-math.4ht + texmf-dist/tex/generic/tex4ht/jsml.4ht + texmf-dist/tex/generic/tex4ht/jurabib.4ht + texmf-dist/tex/generic/tex4ht/koi8-r.4ht + texmf-dist/tex/generic/tex4ht/latex.4ht + texmf-dist/tex/generic/tex4ht/latex209.4ht + texmf-dist/tex/generic/tex4ht/latex2man.4ht + texmf-dist/tex/generic/tex4ht/latin1.4ht + texmf-dist/tex/generic/tex4ht/latin2.4ht + texmf-dist/tex/generic/tex4ht/lb.4ht + texmf-dist/tex/generic/tex4ht/letter.4ht + texmf-dist/tex/generic/tex4ht/lettrine.4ht + texmf-dist/tex/generic/tex4ht/lfeenc.4ht + texmf-dist/tex/generic/tex4ht/lineno.4ht + texmf-dist/tex/generic/tex4ht/linguex.4ht + texmf-dist/tex/generic/tex4ht/listings.4ht + texmf-dist/tex/generic/tex4ht/llncs-a.4ht + texmf-dist/tex/generic/tex4ht/llncs.4ht + texmf-dist/tex/generic/tex4ht/lncse-a.4ht + texmf-dist/tex/generic/tex4ht/lncse.4ht + texmf-dist/tex/generic/tex4ht/longdiv.4ht + texmf-dist/tex/generic/tex4ht/longtable.4ht + texmf-dist/tex/generic/tex4ht/ltugboat-a.4ht + texmf-dist/tex/generic/tex4ht/ltugboat.4ht + texmf-dist/tex/generic/tex4ht/ltugproc-a.4ht + texmf-dist/tex/generic/tex4ht/ltugproc.4ht + texmf-dist/tex/generic/tex4ht/ltxguide.4ht + texmf-dist/tex/generic/tex4ht/m-tex4ht.tex + texmf-dist/tex/generic/tex4ht/magyar.4ht + texmf-dist/tex/generic/tex4ht/makeidx.4ht + texmf-dist/tex/generic/tex4ht/manju.4ht + texmf-dist/tex/generic/tex4ht/manmac.4ht + texmf-dist/tex/generic/tex4ht/mathjax-latex-4ht.4ht + texmf-dist/tex/generic/tex4ht/mathltx.4ht + texmf-dist/tex/generic/tex4ht/mathml.4ht + texmf-dist/tex/generic/tex4ht/mathplayer.4ht + texmf-dist/tex/generic/tex4ht/mathtools.4ht + texmf-dist/tex/generic/tex4ht/mdframed.4ht + texmf-dist/tex/generic/tex4ht/mdwlist.4ht + texmf-dist/tex/generic/tex4ht/mdwtab.4ht + texmf-dist/tex/generic/tex4ht/memoir.4ht + texmf-dist/tex/generic/tex4ht/mempatch.4ht + texmf-dist/tex/generic/tex4ht/mex.4ht + texmf-dist/tex/generic/tex4ht/mfpic.4ht + texmf-dist/tex/generic/tex4ht/microtype.4ht + texmf-dist/tex/generic/tex4ht/minitoc.4ht + texmf-dist/tex/generic/tex4ht/minted-sty-hooks.4ht + texmf-dist/tex/generic/tex4ht/minted.4ht + texmf-dist/tex/generic/tex4ht/mkht-scripts.4ht + texmf-dist/tex/generic/tex4ht/mkht.4ht + texmf-dist/tex/generic/tex4ht/mktex4ht.4ht + texmf-dist/tex/generic/tex4ht/mla.4ht + texmf-dist/tex/generic/tex4ht/mls.4ht + texmf-dist/tex/generic/tex4ht/moreverb.4ht + texmf-dist/tex/generic/tex4ht/mozilla.4ht + texmf-dist/tex/generic/tex4ht/multicol.4ht + texmf-dist/tex/generic/tex4ht/multind.4ht + texmf-dist/tex/generic/tex4ht/multirow.4ht + texmf-dist/tex/generic/tex4ht/mwart.4ht + texmf-dist/tex/generic/tex4ht/mwbk.4ht + texmf-dist/tex/generic/tex4ht/mwrep.4ht + texmf-dist/tex/generic/tex4ht/nameref.4ht + texmf-dist/tex/generic/tex4ht/natbib.4ht + texmf-dist/tex/generic/tex4ht/newcomputermodern-hooks.4ht + texmf-dist/tex/generic/tex4ht/ngerman.4ht + texmf-dist/tex/generic/tex4ht/ngermanb.4ht + texmf-dist/tex/generic/tex4ht/nicefrac.4ht + texmf-dist/tex/generic/tex4ht/nomencl.4ht + texmf-dist/tex/generic/tex4ht/norsk.4ht + texmf-dist/tex/generic/tex4ht/ntheorem.4ht + texmf-dist/tex/generic/tex4ht/onmouseover.4ht + texmf-dist/tex/generic/tex4ht/ooffice-mml.4ht + texmf-dist/tex/generic/tex4ht/ooffice.4ht + texmf-dist/tex/generic/tex4ht/ooimpress.4ht + texmf-dist/tex/generic/tex4ht/osudeG.4ht + texmf-dist/tex/generic/tex4ht/ot4enc.4ht + texmf-dist/tex/generic/tex4ht/overcite.4ht + texmf-dist/tex/generic/tex4ht/overpic.4ht + texmf-dist/tex/generic/tex4ht/paralist.4ht + texmf-dist/tex/generic/tex4ht/parallel.4ht + texmf-dist/tex/generic/tex4ht/path.4ht + texmf-dist/tex/generic/tex4ht/pb-diagram.4ht + texmf-dist/tex/generic/tex4ht/pctable.4ht + texmf-dist/tex/generic/tex4ht/pctex32.4ht + texmf-dist/tex/generic/tex4ht/pd1enc.4ht + texmf-dist/tex/generic/tex4ht/pdfbase-hooks.4ht + texmf-dist/tex/generic/tex4ht/pgf.4ht + texmf-dist/tex/generic/tex4ht/picins.4ht + texmf-dist/tex/generic/tex4ht/pictex.4ht + texmf-dist/tex/generic/tex4ht/pifont.4ht + texmf-dist/tex/generic/tex4ht/plain.4ht + texmf-dist/tex/generic/tex4ht/polish.4ht + texmf-dist/tex/generic/tex4ht/polski.4ht + texmf-dist/tex/generic/tex4ht/polyglossia-hooks.4ht + texmf-dist/tex/generic/tex4ht/polyglossia.4ht + texmf-dist/tex/generic/tex4ht/portuges.4ht + texmf-dist/tex/generic/tex4ht/powerdot-a.4ht + texmf-dist/tex/generic/tex4ht/powerdot.4ht + texmf-dist/tex/generic/tex4ht/proof.4ht + texmf-dist/tex/generic/tex4ht/prosper-a.4ht + texmf-dist/tex/generic/tex4ht/prosper.4ht + texmf-dist/tex/generic/tex4ht/psfig.4ht + texmf-dist/tex/generic/tex4ht/pst-all.4ht + texmf-dist/tex/generic/tex4ht/pst-jtree.4ht + texmf-dist/tex/generic/tex4ht/pstricks.4ht + texmf-dist/tex/generic/tex4ht/pythontex.4ht + texmf-dist/tex/generic/tex4ht/quoting.4ht + texmf-dist/tex/generic/tex4ht/reading.4ht + texmf-dist/tex/generic/tex4ht/report.4ht + texmf-dist/tex/generic/tex4ht/res-a.4ht + texmf-dist/tex/generic/tex4ht/res.4ht + texmf-dist/tex/generic/tex4ht/resume.4ht + texmf-dist/tex/generic/tex4ht/revsymb.4ht + texmf-dist/tex/generic/tex4ht/revtex4.4ht + texmf-dist/tex/generic/tex4ht/rlbabel.4ht + texmf-dist/tex/generic/tex4ht/romanian.4ht + texmf-dist/tex/generic/tex4ht/rotating.4ht + texmf-dist/tex/generic/tex4ht/russianb.4ht + texmf-dist/tex/generic/tex4ht/savetrees-hooks.4ht + texmf-dist/tex/generic/tex4ht/scottish.4ht + texmf-dist/tex/generic/tex4ht/scrartcl.4ht + texmf-dist/tex/generic/tex4ht/scrbook.4ht + texmf-dist/tex/generic/tex4ht/scrjura.4ht + texmf-dist/tex/generic/tex4ht/scrreprt.4ht + texmf-dist/tex/generic/tex4ht/sectionbreak.4ht + texmf-dist/tex/generic/tex4ht/seminar-a.4ht + texmf-dist/tex/generic/tex4ht/seminar.4ht + texmf-dist/tex/generic/tex4ht/seslideb.4ht + texmf-dist/tex/generic/tex4ht/showfonts.4ht + texmf-dist/tex/generic/tex4ht/showframe-hooks.4ht + texmf-dist/tex/generic/tex4ht/sig-alternate.4ht + texmf-dist/tex/generic/tex4ht/sistyle.4ht + texmf-dist/tex/generic/tex4ht/skak.4ht + texmf-dist/tex/generic/tex4ht/slides.4ht + texmf-dist/tex/generic/tex4ht/slidesec.4ht + texmf-dist/tex/generic/tex4ht/slovak.4ht + texmf-dist/tex/generic/tex4ht/slovene.4ht + texmf-dist/tex/generic/tex4ht/soul.4ht + texmf-dist/tex/generic/tex4ht/spanish.4ht + texmf-dist/tex/generic/tex4ht/splitidx.4ht + texmf-dist/tex/generic/tex4ht/srcltx.4ht + texmf-dist/tex/generic/tex4ht/subcaption.4ht + texmf-dist/tex/generic/tex4ht/subeqnarray.4ht + texmf-dist/tex/generic/tex4ht/subfigure.4ht + texmf-dist/tex/generic/tex4ht/subscript.4ht + texmf-dist/tex/generic/tex4ht/supertabular.4ht + texmf-dist/tex/generic/tex4ht/sverb.4ht + texmf-dist/tex/generic/tex4ht/svg-option.4ht + texmf-dist/tex/generic/tex4ht/svg.4ht + texmf-dist/tex/generic/tex4ht/svgnam.4ht + texmf-dist/tex/generic/tex4ht/swedish.4ht + texmf-dist/tex/generic/tex4ht/syntax.4ht + texmf-dist/tex/generic/tex4ht/t2benc.4ht + texmf-dist/tex/generic/tex4ht/tabu.4ht + texmf-dist/tex/generic/tex4ht/tabularx.4ht + texmf-dist/tex/generic/tex4ht/tabulary-a.4ht + texmf-dist/tex/generic/tex4ht/tabulary.4ht + texmf-dist/tex/generic/tex4ht/tcilatex.4ht + texmf-dist/tex/generic/tex4ht/tcolorbox.4ht + texmf-dist/tex/generic/tex4ht/tei-math.4ht + texmf-dist/tex/generic/tex4ht/tei-mml.4ht + texmf-dist/tex/generic/tex4ht/tei-mmltei.4ht + texmf-dist/tex/generic/tex4ht/tei.4ht + texmf-dist/tex/generic/tex4ht/tex4ht.4ht + texmf-dist/tex/generic/tex4ht/tex4ht.sty + texmf-dist/tex/generic/tex4ht/texinfo.4ht + texmf-dist/tex/generic/tex4ht/texpower.4ht + texmf-dist/tex/generic/tex4ht/textures.4ht + texmf-dist/tex/generic/tex4ht/th4.4ht + texmf-dist/tex/generic/tex4ht/theorem.4ht + texmf-dist/tex/generic/tex4ht/tikz-hooks.4ht + texmf-dist/tex/generic/tex4ht/titlesec.4ht + texmf-dist/tex/generic/tex4ht/titling.4ht + texmf-dist/tex/generic/tex4ht/tocloft.4ht + texmf-dist/tex/generic/tex4ht/tuenc-luatex.4ht + texmf-dist/tex/generic/tex4ht/tuenc-xetex-input.4ht + texmf-dist/tex/generic/tex4ht/tuenc-xetex.4ht + texmf-dist/tex/generic/tex4ht/tugboat.4ht + texmf-dist/tex/generic/tex4ht/turkish.4ht + texmf-dist/tex/generic/tex4ht/ucs.4ht + texmf-dist/tex/generic/tex4ht/ukraineb.4ht + texmf-dist/tex/generic/tex4ht/ulem.4ht + texmf-dist/tex/generic/tex4ht/unicode.4ht + texmf-dist/tex/generic/tex4ht/url.4ht + texmf-dist/tex/generic/tex4ht/usepackage-fontspec.4ht + texmf-dist/tex/generic/tex4ht/usepackage.4ht + texmf-dist/tex/generic/tex4ht/ushort.4ht + texmf-dist/tex/generic/tex4ht/usorbian.4ht + texmf-dist/tex/generic/tex4ht/utf8.4ht + texmf-dist/tex/generic/tex4ht/utf8x.4ht + texmf-dist/tex/generic/tex4ht/vanilla.4ht + texmf-dist/tex/generic/tex4ht/varioref.4ht + texmf-dist/tex/generic/tex4ht/verbatim.4ht + texmf-dist/tex/generic/tex4ht/verbatimfiles.4ht + texmf-dist/tex/generic/tex4ht/verse.4ht + texmf-dist/tex/generic/tex4ht/vowel.4ht + texmf-dist/tex/generic/tex4ht/web.4ht + texmf-dist/tex/generic/tex4ht/welsh.4ht + texmf-dist/tex/generic/tex4ht/wrapfig.4ht + texmf-dist/tex/generic/tex4ht/writer.4ht + texmf-dist/tex/generic/tex4ht/xcolor-hooks.4ht + texmf-dist/tex/generic/tex4ht/xcolor.4ht + texmf-dist/tex/generic/tex4ht/xecjk-hooks.4ht + texmf-dist/tex/generic/tex4ht/xr-hooks.4ht + texmf-dist/tex/generic/tex4ht/xr-hyper.4ht + texmf-dist/tex/generic/tex4ht/xr.4ht + texmf-dist/tex/generic/tex4ht/xrhyper-hooks.4ht + texmf-dist/tex/generic/tex4ht/xy.4ht + texmf-dist/tex4ht/base/unix/tex4ht.env + texmf-dist/tex4ht/base/win32/tex4ht.env + texmf-dist/tex4ht/bin/tex4ht.jar + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramondInitials-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramondInitials-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/fncmib.htf + texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/fncmii.htf + texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/fncmiib.htf + texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/futmib.htf + texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/futmii.htf + texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/futmiib.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi0.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi01.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi015.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi017.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi025.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi027.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi03.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi035.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi037.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi05.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi07.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi1.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi15.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi17.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi2.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi25.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi27.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi3.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi35.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi37.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi5.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi7.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi0.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi01.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi015.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi017.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi02.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi025.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi027.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi03.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi035.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi037.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi05.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi07.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi1.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi15.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi17.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi2.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi25.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi27.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi3.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi35.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi37.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi5.htf + texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlmi7.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumT-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTB-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTBO-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Biolinum_T/LinBiolinumTI-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Display_T/LinLibertineDisplayT-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Initials_T/LinLibertineIT-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Initials_T/LinLibertineIT-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Initials_T/LinLibertineIT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Initials_T/LinLibertineIT-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMT-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMTB-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMTB-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMTB-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T/LinLibertineMTB-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTBO-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_Mono_T_/LinLibertineMTO-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineT-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTB-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTBI-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTI-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZ-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-BoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-BoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-BoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-Italic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-Italic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-Italic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxbmi5.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxbmi7.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxmi.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxmi5.htf + texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxmi7.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-BoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Italic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Regular-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraBold/Spectral-ExtraBoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLight-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-Light-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Light/Spectral-LightItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-Medium-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_Medium/Spectral-MediumItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-orn-u.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Spectral_SemiBold/Spectral-SemiBoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermes/ts1-qtmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermes/ts1-qtmr.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermes/ts1-qtmri.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Bold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Bold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Bold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb9c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb9d.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb9e.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbi9c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbi9d.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbi9e.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbo9c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbo9d.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futbo9e.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futr9e.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futri9c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futri9d.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futri9e.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futro9c.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futro9d.htf + texmf-dist/tex4ht/ht-fonts/alias/Utopia/futro9e.htf + texmf-dist/tex4ht/ht-fonts/alias/XCharterMath/zchbmia.htf + texmf-dist/tex4ht/ht-fonts/alias/XCharterMath/zchmia.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagdo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagk.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagko.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkdi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkl.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkli.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8u.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8u.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8u.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbon.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvron.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplb8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplbi8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplr8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplri8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbon.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvron.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmbm.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmby.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrm.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrv.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmry.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7m.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7v.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7y.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrr8re.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrre.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbu.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrre.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplru.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplr8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrc7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcjo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrjo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/psyro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrr8re.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmrre.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfchan/rpzcmi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/rpzdr.htf + texmf-dist/tex4ht/ht-fonts/alias/ae/ae.htf + texmf-dist/tex4ht/ht-fonts/alias/ae/aetcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurb.htf + texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurm.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/antpb.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/antpbi.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/antpri.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/anttb.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/anttri.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/el-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ex-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/exp-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/greek-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/rm-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/sy-anttrz.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t2a-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t2b-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t2c-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t5-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ts1-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/wncy-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealbattar.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmateen.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmohanadb.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmothnna.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealyermook.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aearab.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aecortoba.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aedimnah.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aefurat.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aegranada.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aegraph.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aehani.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aekayrawan.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aekhalid.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aemashq.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aemetal.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aenada.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aenagham.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aenice.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aeostorah.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aeouhod.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aepetra.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aerehan.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aesalem.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aeshado.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aesharjah.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aesindibad.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aetarablus.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aetholoth.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/homa.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/nazlib.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/titr.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/favb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/favbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/favri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmbi7m.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmr7y.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmri7m.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fveb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fveb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fver8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fver8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fvero8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fvero8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fvmr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fvmr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pccsc.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcmi.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcr.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcti.htf + texmf-dist/tex4ht/ht-fonts/alias/chartervn/bchri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/chess/chess10f.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm01.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm02.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm03.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm04.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm05.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm06.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm07.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm08.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm09.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm10.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm11.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm12.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm13.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm14.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm15.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm16.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm17.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm18.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm19.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm20.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm21.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm22.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm23.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm24.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm25.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm26.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm27.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm28.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm29.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm30.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm31.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm32.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm33.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm34.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm35.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm36.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm37.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm38.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm39.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm40.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm41.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm42.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm43.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm44.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm45.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm46.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm47.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm48.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm49.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm50.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm51.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm52.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm53.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm54.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm55.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmb.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcs.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcss.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcti.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcyr.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmdunh.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmff.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmfi.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmitt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmss.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmssq.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmtex.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmu.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnr.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/wncyi.htf + texmf-dist/tex4ht/ht-fonts/alias/coch/zcochmia.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccmi.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccr.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccsl.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccti.htf + texmf-dist/tex4ht/ht-fonts/alias/cs/csti.htf + texmf-dist/tex4ht/ht-fonts/alias/cs/cstt.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feybl.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feybo.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feybr.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feyml.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feymo.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/cs-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ec-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/qx-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/qx-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/t5-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcb.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcitt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmctt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcu.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmdunh.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmff.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmss.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssdc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmti.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtti.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wbxipa.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wslipa.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/dc.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/dccc.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/ec.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/eccc.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/ecxc.htf + texmf-dist/tex4ht/ht-fonts/alias/erew/zutbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/erew/zutbmia.htf + texmf-dist/tex4ht/ht-fonts/alias/erew/zutmi.htf + texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeuex.htf + texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeur.htf + texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeus.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeub.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubi.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubis.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubit.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubs.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubt.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuri.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuris.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurit.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurs.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurt.htf + texmf-dist/tex4ht/ht-fonts/alias/fourier-orns/futboorn.htf + texmf-dist/tex4ht/ht-fonts/alias/fourier-orns/futborn.htf + texmf-dist/tex4ht/ht-fonts/alias/fourier-orns/futcorn.htf + texmf-dist/tex4ht/ht-fonts/alias/fourier-orns/futroorn.htf + texmf-dist/tex4ht/ht-fonts/alias/fourier-orns/futsoorn.htf + texmf-dist/tex4ht/ht-fonts/alias/fourier-orns/futsorn.htf + texmf-dist/tex4ht/ht-fonts/alias/futb-sup/futb-sup.htf + texmf-dist/tex4ht/ht-fonts/alias/futbi-sup/futbi-sup.htf + texmf-dist/tex4ht/ht-fonts/alias/futc-sup/futc-sup.htf + texmf-dist/tex4ht/ht-fonts/alias/futc9c/futc9c.htf + texmf-dist/tex4ht/ht-fonts/alias/futc9d/futc9d.htf + texmf-dist/tex4ht/ht-fonts/alias/futc9e/futc9e.htf + texmf-dist/tex4ht/ht-fonts/alias/futrc9e/futrc9e.htf + texmf-dist/tex4ht/ht-fonts/alias/futrci9d/futrci9d.htf + texmf-dist/tex4ht/ht-fonts/alias/futrci9e/futrci9e.htf + texmf-dist/tex4ht/ht-fonts/alias/futri-sup/futri-sup.htf + texmf-dist/tex4ht/ht-fonts/alias/futs-sup/futs-sup.htf + texmf-dist/tex4ht/ht-fonts/alias/futs9c/futs9c.htf + texmf-dist/tex4ht/ht-fonts/alias/futs9d/futs9d.htf + texmf-dist/tex4ht/ht-fonts/alias/futs9e/futs9e.htf + texmf-dist/tex4ht/ht-fonts/alias/futsc9d/futsc9d.htf + texmf-dist/tex4ht/ht-fonts/alias/futsc9e/futsc9e.htf + texmf-dist/tex4ht/ht-fonts/alias/futsci9d/futsci9d.htf + texmf-dist/tex4ht/ht-fonts/alias/futsci9e/futsci9e.htf + texmf-dist/tex4ht/ht-fonts/alias/futsi-sup/futsi-sup.htf + texmf-dist/tex4ht/ht-fonts/alias/futsi9c/futsi9c.htf + texmf-dist/tex4ht/ht-fonts/alias/futsi9d/futsi9d.htf + texmf-dist/tex4ht/ht-fonts/alias/futsi9e/futsi9e.htf + texmf-dist/tex4ht/ht-fonts/alias/futso9c/futso9c.htf + texmf-dist/tex4ht/ht-fonts/alias/futso9d/futso9d.htf + texmf-dist/tex4ht/ht-fonts/alias/futso9e/futso9e.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou94.htf + texmf-dist/tex4ht/ht-fonts/alias/greek/ibygrk/fibo.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/cjheblsm.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/deads.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/hcaption.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/oldjaf.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjheblsm.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjhebltx.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/telav.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwona.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/mi-iwona.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbi.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbl.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbx.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcci.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcit.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsi.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsl.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcso.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcss.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcst.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsx.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcti.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tctt.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcui.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvi.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvt.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwona/cs-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ex-iwona/ex-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/exp-iwona/exp-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/greek-iwona/greek-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/mi-iwona/mi-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwona/qx-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/rm-iwona/rm-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/sy-iwona/sy-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t2a-iwona/t2a-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t2b-iwona/t2b-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t2c-iwona/t2c-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwona/t5-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/wncy-iwona/wncy-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/latex/lcmss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/labi.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/labx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lait.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lass.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/latc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lati.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/latt.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/laxc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbcc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbrm.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbti.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lccc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcrm.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcti.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lctt.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldcc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldrm.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldti.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldtt.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxl.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-8r.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-00.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-01.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-02.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-03.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-04.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-05.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-20.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-21.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-22.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-23.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-24.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-25.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-26.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-27.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-circle.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-e1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-8r.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-00.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-01.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-02.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-03.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-04.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-05.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-20.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-21.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-23.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-25.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-26.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-circle.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlrc-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlrc-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-8r.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-00.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-01.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-02.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-03.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-04.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-05.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-20.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-21.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-22.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-23.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-25.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-27.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/cs-lmcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-ec/ec-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/lm-qx.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/qx-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmin/cminch.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmrm/cmr.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmsc/cmcscsl.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csin/csinch.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csb.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/cssl.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csss.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssdc.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssi.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssq.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssqi.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csu.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csitt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cssltt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cstcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-plrm/plss.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-t5psn/vntcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmex.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmmi.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmsy.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/cork-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmvt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/rm-lmt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/rm-lmvt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/ts1-.htf + texmf-dist/tex4ht/ht-fonts/alias/marvosym/fmvri8x.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7v.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbi7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchri7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurbo.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurmo.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7v.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/blex.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/blmi.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/blsy.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtex.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtmi.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsy.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsyn.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Bold-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Bold-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-BoldItalic-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-BoldItalic-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Italic-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Italic-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxtm/ntx-Italic-osf-th-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxtm/ntx-Italic-osf-th-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/ntxtm/ntx-Italic-osf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/fplmbb.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7m.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7y.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7m.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7v.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7y.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plb.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plbxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/pldunh.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plex.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plff.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plfi.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plitt.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plr.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plsy.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plti.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/pltt.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plu.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1x.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1xbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1xsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pcx.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbex.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbexa.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmi1.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmia.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsya.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxex.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmi1.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmia.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsy.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsya.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxpplb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxr.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmri.htf + texmf-dist/tex4ht/ht-fonts/alias/sw/arial.htf + texmf-dist/tex4ht/ht-fonts/alias/sw/cour.htf + texmf-dist/tex4ht/ht-fonts/alias/sw/times.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-BoldSC-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-RegularSC-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-RegularItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-RegularItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cinzel-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cinzel-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cinzel-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CinzelDecorative-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CinzelDecorative-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CinzelDecorative-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-BoldOblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-Oblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-BoldOblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-Oblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-BoldOblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-Oblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-Upright-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-Upright-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-Upright-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-Upright-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bla-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bla-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BlaIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BlaIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bol-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bol-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BolIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BolIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Hai-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Hai-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-HaiIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-HaiIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Lig-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Lig-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-LigIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-LigIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Reg-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Reg-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-RegIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-RegIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineIT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-LightIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-UltraBdIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-UltraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibBol-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibBolIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibReg-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OverlockSC-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-BoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-Slanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Caption-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-CaptionBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-CaptionBoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-CaptionSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Narrow-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-NarrowBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-NarrowBoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-NarrowSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-BoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-BoldUprightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Caption-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-CaptionItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-CaptionSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-CaptionUprightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Slanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-UprightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoRegular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoRegular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-BoldCond-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-BoldCondIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Cond-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-CondItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tlf-t1--base.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tlf-t1--base.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tlf-t1--base.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Roman-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Roman-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxg-r-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxg-ro-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxm-r-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxm-ro-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-scla-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-scla-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylyb-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylybi-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylyr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylyri-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xbtt/t1xbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xbtt/t1xbttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xbtt/tyxbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xbtt/tyxbttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xbttsc/t1xbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xbttsc/tyxbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xtt/t1xttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xtt/tyxttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xttsc/t1xttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/t1xttsc/tyxttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/tcxbtt/tcxbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/tcxbtt/tcxbttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/times.htf + texmf-dist/tex4ht/ht-fonts/alias/times/ptmr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/tipa/tipx.htf + texmf-dist/tex4ht/ht-fonts/alias/tipa/xipa.htf + texmf-dist/tex4ht/ht-fonts/alias/txbexas/ntxbexa.htf + texmf-dist/tex4ht/ht-fonts/alias/txbmiaX/ntx-Bold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/txbmiaX/ntx-Bold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/txbmiaX/ntx-Bold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/txbmiaX/zncbmia.htf + texmf-dist/tex4ht/ht-fonts/alias/txbsyb/ntxbsym.htf + texmf-dist/tex4ht/ht-fonts/alias/txbsyc/ntxbsyc.htf + texmf-dist/tex4ht/ht-fonts/alias/txbsys/ntxbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/txbsys/ntxbsy7.htf + texmf-dist/tex4ht/ht-fonts/alias/txbtt/txbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/txbtt/txbttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txbttsc/txbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/pxbsyc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbss.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbsso.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxsssl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvbo.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvro.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmbo.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmri.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmro.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1x.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxss.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxsssl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxtt.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbex.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txex.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txexa.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmia.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txss.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsssl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsy.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsya.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyx.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txmiaX/ntx-Regular-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/txmiaX/ntx-Regular-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/txmiaX/ntx-Regular-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/txmiaX/zncmia.htf + texmf-dist/tex4ht/ht-fonts/alias/txsys/ntxsy.htf + texmf-dist/tex4ht/ht-fonts/alias/txsys/ntxsy7.htf + texmf-dist/tex4ht/ht-fonts/alias/txtt/txttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txttsc/txttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/arevvn/fav.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txbtt8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txbttsc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txbttsl8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txtt.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txtt8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txttsc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txttsl8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/classicovn/uop.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/cmbrightvn/vncm.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/comicsansvn/comic.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/concretevn/vncc.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/garamondvn/ugm.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/grotesqvn/ugq.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1b8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1r8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1rc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1ri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-ant.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/fplrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagd8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagk8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagkc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagko8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkd8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkl8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkli8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uzcmi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/utopiavn/put.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/vnr/vn.htf + texmf-dist/tex4ht/ht-fonts/aliase/mathtime/mtsy-bs.htf + texmf-dist/tex4ht/ht-fonts/ascii/manfnt/manfnt.htf + texmf-dist/tex4ht/ht-fonts/cp1256/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmbx.4es + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmmi.4es + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmti.4es + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmtt.4es + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1201.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1202.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1203.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1204.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1205.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1206.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1207.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1208.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1209.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1210.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1211.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1212.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1213.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1214.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1215.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1216.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1217.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1218.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1219.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1220.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1221.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1222.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1223.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1224.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1225.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1226.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1227.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1228.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1229.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1230.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1231.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1232.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1233.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1234.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1235.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1236.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1237.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1238.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1239.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1240.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1241.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1242.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1243.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1244.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1245.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1246.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1247.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1248.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1249.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1250.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1251.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1252.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1253.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1254.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1255.htf + texmf-dist/tex4ht/ht-fonts/gb2312/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/gbk/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/html-speech/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/uni/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chess.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chessf.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/fselch.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/cm/cminch.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/devanagari/dvng.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/euro/zpeur.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1bla.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1whi.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2bla.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2whi.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/ipa/wsuipa.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blex-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blmi-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blsy-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtex-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtmi-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsy-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsyn-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bicigh.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthh.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthv.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/ps2mf/times-ps.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/curr.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/times-sw.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/tibetan/ctib.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyatip.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybsql.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybtip.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xydash.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyebut.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xymisc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/2/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/2/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/5/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnr.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnti.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbx.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbxti.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmccsc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kminch.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmitt.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmr.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmtcsc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/wncsc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/5/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/ht-fonts/iso8859/6/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/6/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/7/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/hclassic.htf + texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/jerus.htf + texmf-dist/tex4ht/ht-fonts/jsml/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/koi/8r/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/koi/8r/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/ht-fonts/mozilla/charset/mnemonic/unicode.4hf + texmf-dist/tex4ht/ht-fonts/mozilla/charset/native/unicode.4hf + texmf-dist/tex4ht/ht-fonts/mozilla/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/ooffice/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/share/adobe/helvetic/phvr8z.htf + texmf-dist/tex4ht/ht-fonts/symbol/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmr.htf + texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmti.htf + texmf-dist/tex4ht/ht-fonts/symbol/hebrew/hclassic.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blex-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blmi-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blsy-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtex-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtmi-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsy-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsyn-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/Baskervaldx/zbvbmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/Baskervaldx/zbvmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/Century_Schoolbook_L/pncr8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/Century_Schoolbook_L/pncr8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Century_Schoolbook_L/pncrc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Italic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Italic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Italic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-titling-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-titling-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-titling-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramondInitials-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Extension/fourier-mex.htf + texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Letters/fncmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Letters/futmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Symbols/fncsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Symbols/futsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/LibertineMath/nxlbmi02.htf + texmf-dist/tex4ht/ht-fonts/unicode/LibertineMath/nxlbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/LibertineMath/nxlmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTB-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTI-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Biolinum_T/LinBiolinumTI-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Display_T/LinLibertineDisplayT-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Display_T/LinLibertineDisplayT-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Display_T/LinLibertineDisplayT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Display_T/LinLibertineDisplayT-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Display_T/LinLibertineDisplayT-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Initials_T/LinLibertineIT-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Initials_T/LinLibertineIT-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Initials_T/LinLibertineIT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Initials_T/LinLibertineIT-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Mono_T/LinLibertineMTB-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Mono_T/LinLibertineMTB-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Mono_T/LinLibertineMTB-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Mono_T/LinLibertineMTB-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Mono_T/LinLibertineMTB-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Mono_T/LinLibertineMTB-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_Mono_T/LinLibertineMTB-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineT-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineT-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineT-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineT-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineT-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTB-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTBI-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTBI-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTBI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTBI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTBI-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTI-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTI-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTI-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZ-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZ-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZ-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZ-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Linux_Libertine_T/LinLibertineTZI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibBol-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibBol-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibBol-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibBolIta-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibBolIta-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibBolIta-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibIta-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibIta-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibIta-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibReg-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibReg-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibReg-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/NCXFourierMath/zncfbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/NCXFourierMath/zncfmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/NewTXMath/ntx-BoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/NewTXMath/ntx-Italic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Nimbus_Roman_No9_L/tcxsl.htf + texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermes/ts1-qtmb.htf + texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntx-Bold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntx-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntxdenoms-Regular-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntxdenoms-Regular-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntxdenoms-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/URW_Chancery_L/pzcmi7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/URW_Chancery_L/pzcmi8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/URW_Chancery_L/pzcmi8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/URW_Chancery_L/pzcmi8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Utopia/futr8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/Utopia/futr8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Utopia/futr9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/Utopia/futr9d.htf + texmf-dist/tex4ht/ht-fonts/unicode/Utopia/futrc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrr7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrrc7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8u.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pplrc8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmb8z.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmrc8z.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpsycmrv.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmr.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpzccmry.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplb9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplrc9t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplri9t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/symbol/psyr.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmr8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmri7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmro.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrre.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/rptmrrn.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/zapfding/pzdr.htf + texmf-dist/tex4ht/ht-fonts/unicode/ae/aecsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/cyrillic/wncyr.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/euex.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufb.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufm.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusb.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusm.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msam.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msbm.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/antpr.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/anttr.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/ec-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/mi-antt.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/qx-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/sy-antt.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/sy-anttlz.htf + texmf-dist/tex4ht/ht-fonts/unicode/arabi/aehor.htf + texmf-dist/tex4ht/ht-fonts/unicode/arabi/nazli.htf + texmf-dist/tex4ht/ht-fonts/unicode/arev/favr8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/bbold/bbold.htf + texmf-dist/tex4ht/ht-fonts/unicode/bitstrea/charter/bchr8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmn.htf + texmf-dist/tex4ht/ht-fonts/unicode/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/unicode/chess/chess.htf + texmf-dist/tex4ht/ht-fonts/unicode/chess/chessf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1201.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1202.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1203.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1204.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1205.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1206.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1207.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1208.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1209.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1210.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1211.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1212.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1213.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1214.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1215.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1216.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1217.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1218.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1219.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1220.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1221.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1222.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1223.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1224.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1225.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1226.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1227.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1228.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1229.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1230.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1231.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1232.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1233.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1234.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1235.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1236.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1237.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1238.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1239.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1240.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1241.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1242.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1243.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1244.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1245.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1246.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1247.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1248.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1249.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1250.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1251.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1252.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1253.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1254.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1255.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong01.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong02.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong03.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong04.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong05.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong06.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong07.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong08.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong09.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong10.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong11.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong12.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong13.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong14.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong15.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong16.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong17.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong18.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong19.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong20.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong21.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong22.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong23.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong24.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong25.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong26.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong27.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong28.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong29.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong30.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong31.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong32.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong33.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong34.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong35.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong36.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong37.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong38.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong39.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong40.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong41.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong42.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong43.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong44.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong45.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong46.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong47.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong48.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong49.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong50.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong51.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong52.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong53.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong54.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong55.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong56.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong57.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong58.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong59.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong60.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong61.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong62.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong63.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong64.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong65.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong66.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong67.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong68.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong69.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong70.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong71.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong72.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong73.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong74.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong75.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong76.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong77.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong78.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong79.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong80.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong81.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong82.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong83.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong84.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong85.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong86.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong87.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong88.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong89.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong90.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong91.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong92.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong93.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong94.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong25.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong27.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong28.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong32.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong35.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong90.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong92.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong93.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong94.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song01.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song02.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song03.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song04.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song05.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song06.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song07.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song08.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song09.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song10.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song11.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song12.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song13.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song14.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song15.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song16.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song17.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song18.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song19.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song20.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song21.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song22.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song23.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song24.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song25.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song26.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song27.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song28.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song29.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song30.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song31.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song32.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song33.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song34.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song35.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song36.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song37.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song38.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song39.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song40.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song41.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song42.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song43.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song44.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song45.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song46.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song47.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song48.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song49.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song50.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song51.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song52.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song53.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song54.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song55.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song56.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song57.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song58.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song59.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song60.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song61.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song62.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song63.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song64.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song65.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song66.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song67.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song68.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song69.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song70.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song71.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song72.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song73.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song74.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song75.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song76.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song77.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song78.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song79.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song80.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song81.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song82.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song83.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song84.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song85.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song86.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song87.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song88.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song89.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song90.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song91.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song92.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song93.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song94.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song95.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song96.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song97.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song98.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song99.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songaa.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songab.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songac.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songad.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songae.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songaf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songba.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbe.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songca.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songce.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songde.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songea.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songeb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songec.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songed.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songee.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songef.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfa.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfe.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songff.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmex.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmtcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmti.htf + texmf-dist/tex4ht/ht-fonts/unicode/coch/zcochbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/concrete/cccsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cs/cscsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cs/csr.htf + texmf-dist/tex4ht/ht-fonts/unicode/currency/feymr.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/cs-cyklop.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/cs-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/ec-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/ly1-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/qx-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/qx-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/t5-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/t5-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbx.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbxti.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmccsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/dstroke/dsrom.htf + texmf-dist/tex4ht/ht-fonts/unicode/dstroke/esint.htf + texmf-dist/tex4ht/ht-fonts/unicode/ebg/ntxebgbmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/ebg/ntxebgbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/ebg/ntxebgmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/ebg/ntxebgmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/ec/eccc-uni.htf + texmf-dist/tex4ht/ht-fonts/unicode/erewMath/zutmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/fourier-orns/futrorn.htf + texmf-dist/tex4ht/ht-fonts/unicode/futr-sup/futr-sup.htf + texmf-dist/tex4ht/ht-fonts/unicode/futrc9d/futrc9d.htf + texmf-dist/tex4ht/ht-fonts/unicode/futrd8t/futrd8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/greek/ibygrk/fibr.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/cjhebltx.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/crml.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/fr.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/hclassic.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/jerus.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/redis.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shold.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shscr.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shstk.htf + texmf-dist/tex4ht/ht-fonts/unicode/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/ec-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/ex-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/exp-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/greek-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/rm-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/sy-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2a-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2b-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2c-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/wncy-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/jknappen/tc/tcrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/latex/lasy.htf + texmf-dist/tex4ht/ht-fonts/unicode/latex/lcircle.htf + texmf-dist/tex4ht/ht-fonts/unicode/latex/line.htf + texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/lacc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-22.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-24.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-27.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-8x.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-lgi.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-00.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-01.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-02.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-03.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-04.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-05.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-20.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-21.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-22.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-23.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-24.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-25.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-26.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-27.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-8x.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-circle.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-e1.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlrc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlri-xl-26.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlri-xl-e1.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/cs-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/el-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/el-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/l7x-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/l7x-lmcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ec.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-qxtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmin.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmit.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmitt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csin.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cssc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cstt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plin.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plit.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plitt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-pltt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-t5psn.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-t5.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-texnansi.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/texnansi-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/rm-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/t5-lmcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/marvosym/fmvr8x.htf + texmf-dist/tex4ht/ht-fonts/unicode/math/rsfs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathdesign/mdbchr7v.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blex-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blmi-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blsy-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtex-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtmi-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtsyn-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mflogo/logo.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/SkakNew.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/cmman.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/ifsym.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/wasy.htf + texmf-dist/tex4ht/ht-fonts/unicode/ntxsups/ntxsups-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/ntxsups/ntxsups-Regular-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/ntxsups/ntxsups-Regular-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/ntxsups/ntxsups-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/ntxtm/ntx-Italic-tlf-th-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/ntxtm/ntx-Italic-tlf-th-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/ntxtm/ntx-Italic-tlf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/plbsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/plinch.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/pltcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/pltex.htf + texmf-dist/tex4ht/ht-fonts/unicode/public/bbding.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxbsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxexa.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxr.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpcxr.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxb.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxpplr.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/stickstooMath/ntxstx2bmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/stickstooMath/ntxstx2bmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/stickstooMath/ntxstx2mi.htf + texmf-dist/tex4ht/ht-fonts/unicode/stmaryrd/stmary.htf + texmf-dist/tex4ht/ht-fonts/unicode/stxickstooMath/ntxstx2mia.htf + texmf-dist/tex4ht/ht-fonts/unicode/t1xtt/t1xtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/t1xtt/tyxtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/tcxtt/tcxtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/tibetan/ctib.htf + texmf-dist/tex4ht/ht-fonts/unicode/tipa/tipa.htf + texmf-dist/tex4ht/ht-fonts/unicode/tipa/xipx.htf + texmf-dist/tex4ht/ht-fonts/unicode/txbexs/ntxbexx.htf + texmf-dist/tex4ht/ht-fonts/unicode/txbmiaX/ntx-Bold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/txbmiaX/ntxbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/txbsys/ntxbsy5.htf + texmf-dist/tex4ht/ht-fonts/unicode/txexas/ntxexa.htf + texmf-dist/tex4ht/ht-fonts/unicode/txexs/ntxexx.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtcxr.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtcxss.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtx.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtxsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/t1xsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/tcxb.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txb.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbexa.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/tyxsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txmiaX/ntx-Regular-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/txmiaX/ntxmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/txsyb/ntxsym.htf + texmf-dist/tex4ht/ht-fonts/unicode/txsyc/ntxsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txsys/ntxsy5.htf + texmf-dist/tex4ht/ht-fonts/unicode/txtt/txtt.htf + texmf-dist/tex4ht/ht-fonts/utf8/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/viqr/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/viscii/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/win/1251/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/win/1251/cm/sauter/wnti.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbx.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbxti.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmccsc.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/wncsc.htf + texmf-dist/tex4ht/ht-fonts/win/1251/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/xtpipes/docbook.4xt + texmf-dist/tex4ht/xtpipes/htspk.4xt + texmf-dist/tex4ht/xtpipes/javahelp.4xt + texmf-dist/tex4ht/xtpipes/jsml.4xt + texmf-dist/tex4ht/xtpipes/oo-math.4xt + texmf-dist/tex4ht/xtpipes/oo-text.4xt + texmf-dist/tex4ht/xtpipes/xhtml.4xt + texmf-dist/tex4ht/xtpipes/xhtmml.4xt + texmf-dist/tex4ht/xtpipes/xtpipes-default.4xt + texmf-dist/tex4ht/xtpipes/xtpipes-map.dtd + texmf-dist/tex4ht/xtpipes/xtpipes.dtd +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=tex4ht +catalogue-contact-home https://tug.org/tex4ht +catalogue-contact-repository https://puszcza.gnu.org.ua/projects/tex4ht/ +catalogue-contact-support https://lists.tug.org/tex4ht +catalogue-ctan /support/TeX4ht +catalogue-license lppl +catalogue-topics cvt-html + +name tex4ht.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of tex4ht +containersize 84256 +containerchecksum e21524b807950f290534bc66154ed505f836fa817a49eff67418ab71fa1bc9443b51af29294ba343384e2bad348da58eb6833cc3cfc4f4d732f919d6adfab27f +binfiles arch=aarch64-linux size=75 + bin/aarch64-linux/ht + bin/aarch64-linux/htcontext + bin/aarch64-linux/htlatex + bin/aarch64-linux/htmex + bin/aarch64-linux/httex + bin/aarch64-linux/httexi + bin/aarch64-linux/htxelatex + bin/aarch64-linux/htxetex + bin/aarch64-linux/mk4ht + bin/aarch64-linux/t4ht + bin/aarch64-linux/tex4ht + bin/aarch64-linux/xhlatex + +name tex4ht.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of tex4ht +containersize 109184 +containerchecksum bb979865e83f75d817812758761084c9c8126529d54ec4115a04aed20beadec7e8d911c9f55f2954392dd9a533cd96aade7b56ae0548cd6f75bf156eb143ae6d +binfiles arch=amd64-freebsd size=91 + bin/amd64-freebsd/ht + bin/amd64-freebsd/htcontext + bin/amd64-freebsd/htlatex + bin/amd64-freebsd/htmex + bin/amd64-freebsd/httex + bin/amd64-freebsd/httexi + bin/amd64-freebsd/htxelatex + bin/amd64-freebsd/htxetex + bin/amd64-freebsd/mk4ht + bin/amd64-freebsd/t4ht + bin/amd64-freebsd/tex4ht + bin/amd64-freebsd/xhlatex + +name tex4ht.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of tex4ht +containersize 87364 +containerchecksum d21419094e9c5a54c0375deaf564e6f60d11ff8b6509bfe2c8601b4d8e5f0c4628281b4f39bd64d589bde5fb261fb477674a77febf0f9d46d886958998eb43ce +binfiles arch=amd64-netbsd size=96 + bin/amd64-netbsd/ht + bin/amd64-netbsd/htcontext + bin/amd64-netbsd/htlatex + bin/amd64-netbsd/htmex + bin/amd64-netbsd/httex + bin/amd64-netbsd/httexi + bin/amd64-netbsd/htxelatex + bin/amd64-netbsd/htxetex + bin/amd64-netbsd/mk4ht + bin/amd64-netbsd/t4ht + bin/amd64-netbsd/tex4ht + bin/amd64-netbsd/xhlatex + +name tex4ht.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of tex4ht +containersize 69944 +containerchecksum 6c276247523ff31ee7249aa29b53ded1435f1cd00c40b3a095e358f4a84043883353a9bd4be3c6540d7a1ea9a3e199289c298bfd6dc16b1d1b0ef7227a28e727 +binfiles arch=armhf-linux size=65 + bin/armhf-linux/ht + bin/armhf-linux/htcontext + bin/armhf-linux/htlatex + bin/armhf-linux/htmex + bin/armhf-linux/httex + bin/armhf-linux/httexi + bin/armhf-linux/htxelatex + bin/armhf-linux/htxetex + bin/armhf-linux/mk4ht + bin/armhf-linux/t4ht + bin/armhf-linux/tex4ht + bin/armhf-linux/xhlatex + +name tex4ht.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of tex4ht +containersize 51080 +containerchecksum b004e48cba17cf1405692b2e4bc788678b919cb605c7baa81ffa87baf92e8b7d18686644f92ac8ee97962ce71fa272b35cf4aa89a96b5c07f666a3c996e625f4 +binfiles arch=i386-cygwin size=42 + bin/i386-cygwin/ht + bin/i386-cygwin/htcontext + bin/i386-cygwin/htlatex + bin/i386-cygwin/htmex + bin/i386-cygwin/httex + bin/i386-cygwin/httexi + bin/i386-cygwin/htxelatex + bin/i386-cygwin/htxetex + bin/i386-cygwin/mk4ht + bin/i386-cygwin/t4ht.exe + bin/i386-cygwin/tex4ht.exe + bin/i386-cygwin/xhlatex + +name tex4ht.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of tex4ht +containersize 93092 +containerchecksum 7628a85b2306b8b1592896f9aa23561caaa0f5e815c002e7ac4306797d51badc0360f7c442c7b0e4a4e4956450edd6374f06a514839463a7827d8818bb8c2d71 +binfiles arch=i386-freebsd size=81 + bin/i386-freebsd/ht + bin/i386-freebsd/htcontext + bin/i386-freebsd/htlatex + bin/i386-freebsd/htmex + bin/i386-freebsd/httex + bin/i386-freebsd/httexi + bin/i386-freebsd/htxelatex + bin/i386-freebsd/htxetex + bin/i386-freebsd/mk4ht + bin/i386-freebsd/t4ht + bin/i386-freebsd/tex4ht + bin/i386-freebsd/xhlatex + +name tex4ht.i386-linux +category Package +revision 57878 +shortdesc i386-linux files of tex4ht +containersize 89116 +containerchecksum ed1e4e6a44d3848c59e9689ef73c07775a2a507d48cab3cd300f9541e7a7449be24b59aa37fdb7df34b8b92a21011ad0a6407ca19026c762e6049c5be2d57d66 +binfiles arch=i386-linux size=79 + bin/i386-linux/ht + bin/i386-linux/htcontext + bin/i386-linux/htlatex + bin/i386-linux/htmex + bin/i386-linux/httex + bin/i386-linux/httexi + bin/i386-linux/htxelatex + bin/i386-linux/htxetex + bin/i386-linux/mk4ht + bin/i386-linux/t4ht + bin/i386-linux/tex4ht + bin/i386-linux/xhlatex + +name tex4ht.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of tex4ht +containersize 76196 +containerchecksum 36a0a00eba3e9f94abf478131dafe79bb131b06ea6efe4dedb8ed90dea7db0ef5d0554de93094e9f321f47d97e0572c6819452411a330f666734ee824cb1fd87 +binfiles arch=i386-netbsd size=89 + bin/i386-netbsd/ht + bin/i386-netbsd/htcontext + bin/i386-netbsd/htlatex + bin/i386-netbsd/htmex + bin/i386-netbsd/httex + bin/i386-netbsd/httexi + bin/i386-netbsd/htxelatex + bin/i386-netbsd/htxetex + bin/i386-netbsd/mk4ht + bin/i386-netbsd/t4ht + bin/i386-netbsd/tex4ht + bin/i386-netbsd/xhlatex + +name tex4ht.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of tex4ht +containersize 83896 +containerchecksum c1f91703c3971905ab6520cea22b366a816bf37800f90a688d97326a483af899f6947f419b6ac15669836dcedff27f4ef75ff485ebb1420f82b261b85c6e1d93 +binfiles arch=i386-solaris size=69 + bin/i386-solaris/ht + bin/i386-solaris/htcontext + bin/i386-solaris/htlatex + bin/i386-solaris/htmex + bin/i386-solaris/httex + bin/i386-solaris/httexi + bin/i386-solaris/htxelatex + bin/i386-solaris/htxetex + bin/i386-solaris/mk4ht + bin/i386-solaris/t4ht + bin/i386-solaris/tex4ht + bin/i386-solaris/xhlatex + +name tex4ht.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of tex4ht +containersize 185088 +containerchecksum 075ac815399569dc7f740d7b369b72dbda9a7480c4def94b267e9c13925b36a42116d8cbac7725ed50d724bf9520820a80e1d28101315ff29f63301c26b5f784 +binfiles arch=universal-darwin size=188 + bin/universal-darwin/ht + bin/universal-darwin/htcontext + bin/universal-darwin/htlatex + bin/universal-darwin/htmex + bin/universal-darwin/httex + bin/universal-darwin/httexi + bin/universal-darwin/htxelatex + bin/universal-darwin/htxetex + bin/universal-darwin/mk4ht + bin/universal-darwin/t4ht + bin/universal-darwin/tex4ht + bin/universal-darwin/xhlatex + +name tex4ht.win32 +category Package +revision 58783 +shortdesc win32 files of tex4ht +containersize 57760 +containerchecksum af0ad6feb323996923ce9cb1a93d9c8e55a8cccad2ede5259340151324e398b1ee2de84d8644da40467a77a0a686df39f58cd178e2d1e965c4fc18b30ad7d1be +binfiles arch=win32 size=51 + bin/win32/ht.bat + bin/win32/ht.exe + bin/win32/htcontext.bat + bin/win32/htcontext.exe + bin/win32/htlatex.bat + bin/win32/htlatex.exe + bin/win32/htmex.bat + bin/win32/htmex.exe + bin/win32/httex.bat + bin/win32/httex.exe + bin/win32/httexi.bat + bin/win32/httexi.exe + bin/win32/htxelatex.bat + bin/win32/htxelatex.exe + bin/win32/htxetex.bat + bin/win32/htxetex.exe + bin/win32/mk4ht.exe + bin/win32/t4ht.exe + bin/win32/tex4ht.exe + bin/win32/xhlatex.bat + bin/win32/xhlatex.exe + +name tex4ht.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of tex4ht +containersize 58360 +containerchecksum f1f325d0f02682e671b70696773c7d103cab13d152d53603391b7a61bd4ec8491ea877170428b6ac271f5f1b884609c864a2a00fd870319907ee97e0b02686bb +binfiles arch=x86_64-cygwin size=42 + bin/x86_64-cygwin/ht + bin/x86_64-cygwin/htcontext + bin/x86_64-cygwin/htlatex + bin/x86_64-cygwin/htmex + bin/x86_64-cygwin/httex + bin/x86_64-cygwin/httexi + bin/x86_64-cygwin/htxelatex + bin/x86_64-cygwin/htxetex + bin/x86_64-cygwin/mk4ht + bin/x86_64-cygwin/t4ht.exe + bin/x86_64-cygwin/tex4ht.exe + bin/x86_64-cygwin/xhlatex + +name tex4ht.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of tex4ht +containersize 84832 +containerchecksum a7fdb7d8bfa1ce3a6425f28d8264882f31df2d0d2ed81e54a5b953828eba9e30e09e207bf3da0f123d8411fd9cd476757d72514174b963563391c8f680294557 +binfiles arch=x86_64-darwinlegacy size=73 + bin/x86_64-darwinlegacy/ht + bin/x86_64-darwinlegacy/htcontext + bin/x86_64-darwinlegacy/htlatex + bin/x86_64-darwinlegacy/htmex + bin/x86_64-darwinlegacy/httex + bin/x86_64-darwinlegacy/httexi + bin/x86_64-darwinlegacy/htxelatex + bin/x86_64-darwinlegacy/htxetex + bin/x86_64-darwinlegacy/mk4ht + bin/x86_64-darwinlegacy/t4ht + bin/x86_64-darwinlegacy/tex4ht + bin/x86_64-darwinlegacy/xhlatex + +name tex4ht.x86_64-linux +category Package +revision 57878 +shortdesc x86_64-linux files of tex4ht +containersize 92628 +containerchecksum 71aa44bf19e515ae4219d1698d8d75776909b242994f6110d601a4bd2cc5a1a612d06534cd4c54db8e528490d0a991e0bf732663c507412a091828ca02828477 +binfiles arch=x86_64-linux size=73 + bin/x86_64-linux/ht + bin/x86_64-linux/htcontext + bin/x86_64-linux/htlatex + bin/x86_64-linux/htmex + bin/x86_64-linux/httex + bin/x86_64-linux/httexi + bin/x86_64-linux/htxelatex + bin/x86_64-linux/htxetex + bin/x86_64-linux/mk4ht + bin/x86_64-linux/t4ht + bin/x86_64-linux/tex4ht + bin/x86_64-linux/xhlatex + +name tex4ht.x86_64-linuxmusl +category Package +revision 57878 +shortdesc x86_64-linuxmusl files of tex4ht +containersize 94868 +containerchecksum 0e097e41da8d1480f5e2a06b00d3478097767e3a8b816168312a3985f2789a33dda627f2d843d7b93a7293bd3f1e3339596e2b50eefec2e79c5ebd97a7d3ae97 +binfiles arch=x86_64-linuxmusl size=77 + bin/x86_64-linuxmusl/ht + bin/x86_64-linuxmusl/htcontext + bin/x86_64-linuxmusl/htlatex + bin/x86_64-linuxmusl/htmex + bin/x86_64-linuxmusl/httex + bin/x86_64-linuxmusl/httexi + bin/x86_64-linuxmusl/htxelatex + bin/x86_64-linuxmusl/htxetex + bin/x86_64-linuxmusl/mk4ht + bin/x86_64-linuxmusl/t4ht + bin/x86_64-linuxmusl/tex4ht + bin/x86_64-linuxmusl/xhlatex + +name tex4ht.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of tex4ht +containersize 95240 +containerchecksum 2ba36c276e52acf2e8f4da038ab551a510851f2c112a76144ea25b5bc1f7690efe40be3640aaff85402565617a9f09be0091a4ef1d4e45dc4b9d5dbd4ef90e84 +binfiles arch=x86_64-solaris size=77 + bin/x86_64-solaris/ht + bin/x86_64-solaris/htcontext + bin/x86_64-solaris/htlatex + bin/x86_64-solaris/htmex + bin/x86_64-solaris/httex + bin/x86_64-solaris/httexi + bin/x86_64-solaris/htxelatex + bin/x86_64-solaris/htxetex + bin/x86_64-solaris/mk4ht + bin/x86_64-solaris/t4ht + bin/x86_64-solaris/tex4ht + bin/x86_64-solaris/xhlatex + +name texapi +category Package +revision 54080 +shortdesc Macros to write format-independent packages +relocated 1 +longdesc Texapi provides utility macros to write format-independent (and +longdesc -aware) packages. It is similar in spirit to the etoolbox, +longdesc except that it isn't tied to LaTeX. Tools include: engine and +longdesc format detection, expansion control, command definition and +longdesc manipulation, various testing macros, string operations, and +longdesc highly customizable while and for loops. The package requires +longdesc e-TeX (and, should you want to compile its documentation, the +longdesc pitex package is also needed). +containersize 7416 +containerchecksum e964e090b4bf4e924166d0fbd8daa2087a300d4da9d993bcabc624dc78c3f2db9984f2aa851740e61706af213d112cb32e80795ec2cd4e23a69c13ed92fd91d2 +doccontainersize 148348 +doccontainerchecksum 0f3886e76090beb0dcf295ba875b9ddcd950da4d50da710f1b4417ffc7c1ceb48223a20d7cc93cac3cbe2f19edcfaa74c801096fce33c55e9fbc6c57b1897b22 +docfiles size=48 + RELOC/doc/generic/texapi/README details="Readme" + RELOC/doc/generic/texapi/texapi-doc.pdf details="Package documentation" + RELOC/doc/generic/texapi/texapi-doc.tex +runfiles size=8 + RELOC/tex/generic/texapi/texapi.tex +catalogue-ctan /macros/generic/texapi +catalogue-license lppl +catalogue-topics macro-supp etex +catalogue-version 1.04 + +name texbytopic +category Package +revision 15878 +shortdesc Freed version of the book TeX by Topic +relocated 1 +longdesc An invaluable book, originally published by Addison-Wesley (who +longdesc have released their copyright -- their version of the book went +longdesc out of print in the 1990s). The book describes itself as "a +longdesc TeXnician's reference", and covers the way TeX (the engine) +longdesc works in as much detail as most ordinary TeX programmers will +longdesc ever need to know. A printed copy of the book may be had (for a +longdesc modest price) via lulu.com (see the package home page for +longdesc details). +containersize 680 +containerchecksum d6d7373a50b85b4dcf30f9d6cd1f3ec3a4cbbe72f53158387b99ab5cae5372d1c7a7954d03a0ee06b9af6df9784cd9a06f73658a6286a737674f5046883a9ab6 +doccontainersize 1132796 +doccontainerchecksum 29b3ea490b6c67a4c1d6dd2b744978536e3b847beda3a901873db7723c7c21ae4063b800d30d2d009e77a0e6fb199a3fb0d16d1f7f8d9a09722cfd7702c73c67 +docfiles size=559 + RELOC/doc/plain/texbytopic/README details="Readme" + RELOC/doc/plain/texbytopic/TeXbyTopic.pdf details="The book itself" + RELOC/doc/plain/texbytopic/TeXbyTopic.tex + RELOC/doc/plain/texbytopic/figflow.tex + RELOC/doc/plain/texbytopic/glossary.tex + RELOC/doc/plain/texbytopic/tables.tex + RELOC/doc/plain/texbytopic/tex.bib +catalogue-contact-home http://www.eijkhout.net/texbytopic/texbytopic.html +catalogue-ctan /info/texbytopic +catalogue-license fdl +catalogue-topics book-src tut-plaintex ref-latex + +name texcount +category Package +revision 49013 +shortdesc Count words in a LaTeX document +longdesc TeXcount is a Perl script that counts words in the text of +longdesc LaTeX files. It has rules for handling most of the common +longdesc macros, and can provide colour-coded output showing which parts +longdesc of the text have been counted. The package script is available +longdesc as a Web service via its home page. +depend texcount.ARCH +containersize 35908 +containerchecksum 82f51346d9474270af6374cc1619ca005206b1bd729ce1559b8b66e361b184a192c7fbe085216a3a64e656197756593f7d76e52437ac562fd33bf09504b0f58f +doccontainersize 559548 +doccontainerchecksum 5141bdf4378cf87a19933945d6742427f4467dc73d92f4a470e34474232dbb2f60c4d8db065f812481520f1aa2f8a90d7e97dfc83f0f089d10386847f64f4d94 +docfiles size=191 + texmf-dist/doc/support/texcount/README.md details="Readme" + texmf-dist/doc/support/texcount/doc/QuickReference.pdf details="Quick reference" + texmf-dist/doc/support/texcount/doc/QuickReference.tex + texmf-dist/doc/support/texcount/doc/TeXcount.pdf details="Package documentation" + texmf-dist/doc/support/texcount/doc/TeXcount.tex + texmf-dist/doc/support/texcount/doc/TechDoc.pdf + texmf-dist/doc/support/texcount/doc/TechDoc.tex + texmf-dist/doc/support/texcount/doc/macros.tex + texmf-dist/doc/support/texcount/doc/sub_addrules.tex + texmf-dist/doc/support/texcount/doc/sub_options.tex + texmf-dist/doc/support/texcount/doc/sub_ruletypes.tex + texmf-dist/doc/support/texcount/doc/sub_tc_other.tex +runfiles size=34 + texmf-dist/scripts/texcount/texcount.pl +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-license lppl +catalogue-topics word-count +catalogue-version 3.1.1 + +name texcount.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texcount +containersize 340 +containerchecksum 71d84b59cbe66869aff8eba5ef14bc76001a4c0c9d43abffd80ff60842f198091cc1649378d40f5bcc15678da22eff688e6db8320fb8b59778452c2adbaef958 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texcount + +name texcount.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texcount +containersize 340 +containerchecksum b279d9052ad1210f31766662194cfd5b10cd760f8385a1ca1852b2e34f689edb17525d2108b30c5583638278d6b08440d42a25b249f91b3f4abba24a80a3ac53 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texcount + +name texcount.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texcount +containersize 340 +containerchecksum b818a21e444a22c0c208feb98433954c81565a7eee9d4fdf922ed8592c90cb3e8f67b3dee58c15d05710adea2967d31421f0d09ea19a44099b9f95b33b0c38e0 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texcount + +name texcount.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texcount +containersize 340 +containerchecksum 6704f8e561d39ff4e59b87b765f096749e4b4fd8d9b9016b1787611fc59eb43a246344a301b9525bfd2dc4f7edd68e654009cd8ecf334a068b7903bb91edcf72 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texcount + +name texcount.i386-cygwin +category Package +revision 13103 +shortdesc i386-cygwin files of texcount +containersize 340 +containerchecksum 4c7e9842e80160793bd96e31a225ecb47d52072109adc747f5feba0e8ffb75ec3e82bf5514c92ee0bba0199d333fafe53c79148d7cce0e489c8bbeca0f36f0cd +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texcount + +name texcount.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texcount +containersize 340 +containerchecksum 88b6647012c18576664c8c832bb1a5bc69d141a6feebe61db69358f63185148d40c5b17724272fdb2214b88fb4639a71743f4de5dc6bab718452c6516096ce4a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texcount + +name texcount.i386-linux +category Package +revision 13013 +shortdesc i386-linux files of texcount +containersize 340 +containerchecksum 6ac2079df859862ff7be88fbcb6bd9c550e57d7b5567534f3629591cc9912fa6927f7fe7083ce61588c0762cbd133ba7956507168b0bfe57f066e1486b27d952 +binfiles arch=i386-linux size=1 + bin/i386-linux/texcount + +name texcount.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texcount +containersize 340 +containerchecksum 4b10f7713cfb3e112a264919b206e77d2079cef27c0a91024e8a16040633c311793e1832777f3c779359f036eba8e77e56b8658916a586d537d27e33de80c14b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texcount + +name texcount.i386-solaris +category Package +revision 13013 +shortdesc i386-solaris files of texcount +containersize 340 +containerchecksum 73f84cc3057101bdc428b2e350bfb7706c080e8d68b91b19f7ec45a3c8e092359f5f0677a60d6ae6a1c1e5f63a836bf43b5757ec8489b0aad9c4c304909a924e +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texcount + +name texcount.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texcount +containersize 340 +containerchecksum 6ff4421cece57ff3e8e0718c4826a6d5890c71315b3e7f1428c0cc66a27e99d7917147c90082861d79a713ab31e395922af8ee45ebbf68d99bf428ba49ce5083 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texcount + +name texcount.win32 +category Package +revision 15404 +shortdesc win32 files of texcount +containersize 684 +containerchecksum ac70c3ec9a89ddf896a005c0bccaa2dca6bafd72347b65b3f9b832fc5f7bf305aad0a0ef5b8d227f1879465cd6d05e005bb92f8561d0a1f0578e528805c61964 +binfiles arch=win32 size=1 + bin/win32/texcount.exe + +name texcount.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texcount +containersize 344 +containerchecksum a1877b3cb8c79a2194b78ebd72f7168cf506d19d2c91a7f6fb4a466fef9002629b89d588c9a0524d3f108ab9784a473122401ec335f40591907d94457c49b77b +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texcount + +name texcount.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texcount +containersize 348 +containerchecksum 3c7e9ca34963367045be3167287ad74ab7d1b99ec03004987fbec7fd26c9f1029eaf241149e7e4102c8610bf77e0a977ff1c18767f94e58061d65a6750ee03bf +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texcount + +name texcount.x86_64-linux +category Package +revision 13013 +shortdesc x86_64-linux files of texcount +containersize 340 +containerchecksum 5d4823ce741a1ca092b01ac1f24cb02dbe9a1053978e5dbac69281b173cda93dd1414b6c900e9bb21209e6af1c1af79001454241a3d325b0ab38bfde78094ec0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texcount + +name texcount.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texcount +containersize 344 +containerchecksum 8d91ac9ed87e828554e1eef5c71eb01a1d81fce4be718281120f274ffb5c98f9d4b176a9bb0851db592f594cb747ce11f11e8dce0167ecf7a7af57fac530b6b8 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texcount + +name texcount.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texcount +containersize 340 +containerchecksum 984b7ced9c990323e4ec19ff363d9c19379567dcfa6572c557f5571eca9d58621d454b5e3b243ac15b4de9ea10c1a80909b3435d2cc162fc3f45eab8aa052c38 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texcount + +name texdate +category Package +revision 49362 +shortdesc Date printing, formatting, and manipulation in TeX +relocated 1 +longdesc TeX and LaTeX provide few facilities for dates by default, +longdesc though many packages have filled this gap. This package fills +longdesc it, as well, with a pure TeX-primitive implementation. It can +longdesc print dates, advance them by numbers of days, weeks, or months, +longdesc determine the weekday automatically (with an algorithm cribbed +longdesc from the dayofweek.tex file written by Martin Minow), and print +longdesc them in (mostly) arbitrary format. It can also print calendars +longdesc (monthly and yearly) automatically, and can be easily localized +longdesc for non-English languages. +containersize 3976 +containerchecksum c6f34d5ab0c54f799669c4c44e8c6e00381796ca76b9d2e8352a749effe65b9ffd6ebd139998ab9267d1e54da6471f5f38cc6931f7ff046882261cd5e5440bc7 +doccontainersize 256872 +doccontainerchecksum 2338dd99b32a1b2e04326e888b718f595a26848bbef17206f92a0a0f26556edddc3e0a06327d86e72fcb3e55270bcdff846cab3bfc37cbd61115b601164fc10e +docfiles size=69 + RELOC/doc/generic/texdate/CHANGES + RELOC/doc/generic/texdate/README details="Readme" + RELOC/doc/generic/texdate/lppl.txt + RELOC/doc/generic/texdate/texdate.pdf details="Package documentation" +srccontainersize 11800 +srccontainerchecksum 30a5c6401d66e7fc2cf0300341c7007881945fdfb267ce4c1f9930f6cb84d04d7895df613215be27da15e307baff361cba6bd4b530ac78f352b74aa81bb94356 +srcfiles size=13 + RELOC/source/generic/texdate/texdate.dtx + RELOC/source/generic/texdate/texdate.ins +runfiles size=6 + RELOC/tex/generic/texdate/texdate.sty +catalogue-ctan /macros/generic/texdate +catalogue-license lppl1.3c +catalogue-topics date-time +catalogue-version 2.0 + +name texdef +category Package +revision 56466 +shortdesc Display the definitions of TeX commands +longdesc This (Perl) script displays the definitions of (La)TeX command +longdesc sequences/macros. Various options allow the selection of the +longdesc used class as well as package files and other factors that may +longdesc influence the definition (before/after the preamble, inside an +longdesc environment, ...). The script creates a temporary TeX file +longdesc which is then compiled using (La)TeX to find the '\meaning' of +longdesc the command sequence. The result is formatted and presented to +longdesc the user. Length or number command sequences (dimensions, +longdesc \char..., count registers, ...) are recognized and the +longdesc contained value is also shown (using \the). Special definitions +longdesc like protected macros are also recognized and the underlying +longdesc macros are shown as well. The script will show plain TeX +longdesc definitions by default. LaTeX and ConTeXt are supported, +longdesc including flavours (pdf(La)TeX, Lua(La)TeX, Xe(La)TeX, ...). +longdesc The flavour can be selected using a command line option, or via +longdesc the script name: latexdef will use LaTeX as default, etc. +depend texdef.ARCH +containersize 9468 +containerchecksum cc85ae5298a72c337c1c4571f2af698b62b182521cc65d0ffa459b89121e9eeae7d6f033456278ec6f61f91cbc2a6feed18005786e5b9943a8b0893111e61017 +doccontainersize 156088 +doccontainerchecksum dbb3516132d0779f657a051b0140491d8baf1bd6ddbeef92d94414a791894696d9ce39d49b3cd689dfcea2d387a221e1b27cb486764b011c7068d7a1d352f679 +docfiles size=42 + texmf-dist/doc/support/texdef/CHANGELOG + texmf-dist/doc/support/texdef/INSTALL + texmf-dist/doc/support/texdef/README details="Readme" + texmf-dist/doc/support/texdef/texdef.pdf details="Package documentation" +srccontainersize 4884 +srccontainerchecksum ebf0284c4c8fdc35c8b6895f054d5055568a5e4b8edb061c91da4627b017dc7cb033943c11390f3d05923761a617354ea56ef95d3bf1a02cde66e55ecd734e1d +srcfiles size=4 + texmf-dist/source/support/texdef/texdef.tex +runfiles size=9 + texmf-dist/scripts/texdef/texdef.pl +catalogue-contact-bugs https://sourceforge.net/p/texdef/tickets/ +catalogue-contact-home https://sourceforge.net/projects/texdef/ +catalogue-contact-repository https://sourceforge.net/p/texdef/code/ +catalogue-ctan /support/texdef +catalogue-license gpl3 +catalogue-topics debug-supp +catalogue-version 1.9 + +name texdef.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of texdef +containersize 368 +containerchecksum 4d2f548857393f55d8fcf00780930a8dd720a4d0588947b6fe64803ef915a09f924685e14fe9db378c12742806c71a17034494ff389d06185928c6c9a8366dfa +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/latexdef + bin/aarch64-linux/texdef + +name texdef.amd64-freebsd +category Package +revision 45011 +shortdesc amd64-freebsd files of texdef +containersize 368 +containerchecksum 40ff164f987a013d5770eb1ef6d67d4f6f85412e7fc91b567bc9ba05684bc4c15928d1a0547facc4651225cb30a99a88dc9da48d3e0ec2e5d7b94320b7a94b51 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/latexdef + bin/amd64-freebsd/texdef + +name texdef.amd64-netbsd +category Package +revision 45011 +shortdesc amd64-netbsd files of texdef +containersize 364 +containerchecksum e467a21caf8b263b3a1465dbcec66b9f3eeb0b9bb594bee24e41908cda127a21cb3b7daf789308b4a8e1a666bd5c19c761d0054080727d067efbd034d0163145 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/latexdef + bin/amd64-netbsd/texdef + +name texdef.armhf-linux +category Package +revision 45011 +shortdesc armhf-linux files of texdef +containersize 368 +containerchecksum 5d73ac637c7f3a7ffb82fecb4f8b2c9ff9f35f8284482fecdc2e5b0973deb5d073cade966fafa5185684563880678a94ac44523b13fa5f81db786f75d31df345 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/latexdef + bin/armhf-linux/texdef + +name texdef.i386-cygwin +category Package +revision 45011 +shortdesc i386-cygwin files of texdef +containersize 360 +containerchecksum cbaa5c433370725b0c0a845d729964c329471487fd6f434252aff194ac2fa2043b5c969d3e0ca62c0a0c219d7be364edc381a4a0c456d9dea10678e5f3a48fea +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/latexdef + bin/i386-cygwin/texdef + +name texdef.i386-freebsd +category Package +revision 45011 +shortdesc i386-freebsd files of texdef +containersize 368 +containerchecksum e02d4810d6d6060a2133cd6712bfb246901e1588ddc8e6692f102e16f58b2f45bf1db53eb6a1b9ce4e62e74104309fbf96dce291fe41d40fbc5c1ea7ffe6bcdc +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/latexdef + bin/i386-freebsd/texdef + +name texdef.i386-linux +category Package +revision 45011 +shortdesc i386-linux files of texdef +containersize 364 +containerchecksum d8c079d44b28752c66f39b63771c3c9ca94bb932156f68edaba6070b9b2a57c398a2c06dae3ecbf95be350b87eb4abcb493c6f509a0322d5873eff99f31a5a94 +binfiles arch=i386-linux size=2 + bin/i386-linux/latexdef + bin/i386-linux/texdef + +name texdef.i386-netbsd +category Package +revision 45011 +shortdesc i386-netbsd files of texdef +containersize 364 +containerchecksum fa7b31cddb0181187ae8bf9e44e0921a739bc7ed5111a7a28b8d75c5c656606c1ede1704a3bc9414227362c97421f03c8983886a51804b013bc10fd01d50457c +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/latexdef + bin/i386-netbsd/texdef + +name texdef.i386-solaris +category Package +revision 45011 +shortdesc i386-solaris files of texdef +containersize 368 +containerchecksum 69fc0355538bf5ead2b55a3e08bc973e710dfb2c5878c3ec3ce07469c224cd1a7a51c01f26ab2e210dde598a305771723a16386de9876903cdf6b16626f92cbd +binfiles arch=i386-solaris size=2 + bin/i386-solaris/latexdef + bin/i386-solaris/texdef + +name texdef.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texdef +containersize 364 +containerchecksum 69ec41f2e80b8b773225bbca7a19b3e54c046c31d60d5e86b897d6d1920598c0b2a34b607bad9706a06b7995162bb567cdd39666267eac8e4cb1fdf096867f90 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/latexdef + bin/universal-darwin/texdef + +name texdef.win32 +category Package +revision 45011 +shortdesc win32 files of texdef +containersize 704 +containerchecksum f1253afa06877ef2bcca2952aee932721d8b4d5ea99b974c8206300ca322df99bfc5a14490c4c8e48d67ef2da032e1dae55f938c93e3f2870fa00da5e481c362 +binfiles arch=win32 size=2 + bin/win32/latexdef.exe + bin/win32/texdef.exe + +name texdef.x86_64-cygwin +category Package +revision 45011 +shortdesc x86_64-cygwin files of texdef +containersize 368 +containerchecksum 2fa76d1e12e892c6337ca694ac4c000705a7cb73d424445fbae79578f41255546b891facfa60445fe0bbd031d4ee0270d3e661a9008d7fb80205a59a28c9f4a0 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/latexdef + bin/x86_64-cygwin/texdef + +name texdef.x86_64-darwinlegacy +category Package +revision 45011 +shortdesc x86_64-darwinlegacy files of texdef +containersize 376 +containerchecksum 192be9c1a533ae7541c9a8bfc17867ebb40f7d34627518fe63f242918b474394e0fba36bbb6da049ade9861a0910cd30862bf9ff6d02431d65ad45b00f2e3dee +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/latexdef + bin/x86_64-darwinlegacy/texdef + +name texdef.x86_64-linux +category Package +revision 45011 +shortdesc x86_64-linux files of texdef +containersize 364 +containerchecksum 8f33ce18c99882f8b20b4f001a2ced349654a2c8ed36ef1d4177871676bf55a642f72652793ce2a41622a6270f8107cf261fa762ebbaf796412143ab19cd19bc +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/latexdef + bin/x86_64-linux/texdef + +name texdef.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texdef +containersize 372 +containerchecksum 80f213238f95b1d96a7077f4931a66c3f1bf4d545bb116621578c4d8a5f4913ba1a99e4f4af1c78f731f3fc5b59757805fe76f09b2d7832a6b5da1b5bcd9655c +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/latexdef + bin/x86_64-linuxmusl/texdef + +name texdef.x86_64-solaris +category Package +revision 45011 +shortdesc x86_64-solaris files of texdef +containersize 368 +containerchecksum 767c7853ae68794a1d0c20ce49af94cebd651674e890b60d04a3b8bed8e40fdf82d7246cb222a6029c84ca533865f4ca9a28365c285743f5da344a1d2b16dd70 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/latexdef + bin/x86_64-solaris/texdef + +name texdiff +category Package +revision 29752 +shortdesc Compare documents and produce tagged merge +longdesc Two files are compared and a new TeX file is output. When the +longdesc output file is processed with (La)TeX it marks new changes with +longdesc blue and old text with red with a strike-through line. +longdesc Furthermore, passages with changes are marked at the margin +longdesc with grey bars by the LaTeX changebar package. +depend texdiff.ARCH +containersize 7172 +containerchecksum 26fa84b3090d641efb186947ce4d1d89c30a2c224cfc8fa759da3ba7ec9cc113c0ed4afc1c3d0fa5f9d0a88af4f9b3001d57651df6b5be6e0234fb78ec4f252a +doccontainersize 10296 +doccontainerchecksum d458fa8db6433b4c7fbd23a16f9be53c2c822e396e7f50844cfa6acdd2a08acf8efdd0bd946c8fdc09ca8aa28d1eb25708d3719184634abced92ea5c94d9a948 +docfiles size=6 + texmf-dist/doc/man/man1/texdiff.1 + texmf-dist/doc/man/man1/texdiff.man1.pdf + texmf-dist/doc/support/texdiff/README details="Readme" +runfiles size=5 + texmf-dist/scripts/texdiff/texdiff +catalogue-also ltxdiff +catalogue-contact-home http://www.markdoll.de/texdiff/ +catalogue-ctan /support/texdiff +catalogue-license artistic +catalogue-topics editorial +catalogue-version 0.4 + +name texdiff.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texdiff +containersize 336 +containerchecksum 06ec7b07dd2057627bc7bc92993de71469f8119d29f32c49462d95aeb27d4044bbe047908ea4b94d3f93dfb8e0a23846c6e36f82cab644ccf075d63f78b88905 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdiff + +name texdiff.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texdiff +containersize 340 +containerchecksum 41a890548aa70e30b540189469c09ee2fe1a15f831acf076ae5cab40758a8deda24028ad641269c07e19b5d9a8976186f43803df67985b038c1535a981139580 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdiff + +name texdiff.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texdiff +containersize 336 +containerchecksum 371462296b49d69083a459b732032432302381bdc8241314030ef819895a4f6b0f6b4321174de8612daccaf7dd911b179cfe55ff2cde2c20dffc8b215c0b512b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdiff + +name texdiff.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texdiff +containersize 336 +containerchecksum 7cff575aa832283d82e52aff831cce528b51d2cb1ece8de32e63789526f19bea2f7816ebe25fac069ae14a604953bfefc95afbd9b5787beae1ac2105eb705050 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdiff + +name texdiff.i386-cygwin +category Package +revision 15506 +shortdesc i386-cygwin files of texdiff +containersize 336 +containerchecksum 1d44781a8c6a16458af0fd291d16a8c6191b0b17c00fae0c359f699afe60cf004b29e18c5905ac555427bcb255aec74c39c57f8f3f10f19f04e06671e3d15c18 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdiff + +name texdiff.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texdiff +containersize 340 +containerchecksum eb43e7f03760b8f4f307cfd7f0bb11ccd32069b0e179e60fd9d90d99f94d8180e822af9ec58e1610a1ce885e91df26227e1c44ec968120851ebd691fec949a6e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdiff + +name texdiff.i386-linux +category Package +revision 15506 +shortdesc i386-linux files of texdiff +containersize 336 +containerchecksum 914ab16ad0b0306389c823b371ee5b223d81e8bd8698e61de81c67728c0f6097624468cc908dbb4decfd8ef07c0413b51e8d9f8c83fcd23d62f9c8948650d789 +binfiles arch=i386-linux size=1 + bin/i386-linux/texdiff + +name texdiff.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texdiff +containersize 336 +containerchecksum 71c800ab424264571059ff0b7b8730015900a4ea2acb29ddcb093f6b76e9dd078f8e6af5f527ae5ee36d3ef31e8e094b55c959da8499fcca1ce7b2e1c0990c35 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdiff + +name texdiff.i386-solaris +category Package +revision 15506 +shortdesc i386-solaris files of texdiff +containersize 336 +containerchecksum 5b57dcd53b8e77f5c165a36227e821cf581b50db5c2d62499bebbcc4a7c14d66b8908b336d8afc43c99e3026833766d45f3c3a2a0c4cae8db108e2104620b3e7 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdiff + +name texdiff.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texdiff +containersize 336 +containerchecksum 74fec0dff6b7815e263843119d488a8fff96940f56e607173162fb011faee804de2b2ee35c3462555e148fe524c0c030233e8ee74f7f78665fdc4742ddf4d05a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texdiff + +name texdiff.win32 +category Package +revision 15506 +shortdesc win32 files of texdiff +containersize 684 +containerchecksum bdaf06cca1793cbcf8bcf9a794266001bfad0eb0bec1ef9737d88bdb26794a84dcf2edf6a7c167d140e88fbf77b129ffeeb471c6386db5287a3324b1faf0655b +binfiles arch=win32 size=1 + bin/win32/texdiff.exe + +name texdiff.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texdiff +containersize 340 +containerchecksum 11ead673fee96d5d77a740f77538bb4d7ff25815c5a1095d455ddf525b591f28dac66e93b68568ad911bda45cd434957d1b8618b63aa3bfc865b3a88425c00b0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdiff + +name texdiff.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texdiff +containersize 344 +containerchecksum 0b1909709ed62ce753d4f8f8a284f2f16b783f6c7aadcb91fdde1c38d41012d37b7d16083a287416ff0696d2e407702653187f78536c273aa2e4b3d7f43f786b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdiff + +name texdiff.x86_64-linux +category Package +revision 15506 +shortdesc x86_64-linux files of texdiff +containersize 336 +containerchecksum 54015561a76b09f8c06cd64a61e20ad436ee75b58ed59a3ec063594da4756a761645bad851bb1f75288944cdd836c270aaf0def2e2c2bc72ddb36ee1834f1476 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdiff + +name texdiff.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texdiff +containersize 340 +containerchecksum 38708c08b70861f28e398557791f3771a4c7506f4bc0b7db20beb8aaff36db4030434c3ee2e386b80a7265d46206c3a192d454dac8ceb76b098d115ceba1cdeb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdiff + +name texdiff.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texdiff +containersize 340 +containerchecksum a366f2b680f8b299cb351beeb474a00cef6fbeff4f8e18780e408a5ef9f63314f96e0b78cf444a95750aa9f0c8ca281cf9111da7ba7e813b79cda21014587f1b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdiff + +name texdirflatten +category Package +revision 55064 +shortdesc Collect files related to a LaTeX job in a single directory +longdesc The Perl script parses a LaTeX file recursively, scanning all +longdesc child files, and collects details of any included and other +longdesc data files. These component files, are then all put into a +longdesc single directory (thus "flattening" the document's directory +longdesc tree). +depend texdirflatten.ARCH +containersize 4836 +containerchecksum 3cd6cf4d9ff3a1a3daef0bd5a998417696f6645cb54679e99e5424ebbe3926c45acad7b999ee4371392a7ba13fe3f2899438ce66efca7829c7aa1eaef84aa6e5 +doccontainersize 11016 +doccontainerchecksum 1114dce13ac47c4352e968f42e89582b62b2702bc25ce3a9a4fd766b3bd63607e11eab52d19bc9f809b2b67cd92153c4f591632cfc72dcaf1c0a1b1cfb416b11 +docfiles size=6 + texmf-dist/doc/man/man1/texdirflatten.1 + texmf-dist/doc/man/man1/texdirflatten.man1.pdf + texmf-dist/doc/support/texdirflatten/README details="Readme" +runfiles size=3 + texmf-dist/scripts/texdirflatten/texdirflatten +catalogue-contact-announce https://github.com/cengique/texdirflatten +catalogue-contact-bugs https://github.com/cengique/texdirflatten/issues +catalogue-contact-development https://github.com/cengique/texdirflatten +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-license artistic +catalogue-topics file-mgmt archival +catalogue-version 1.3 + +name texdirflatten.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texdirflatten +containersize 344 +containerchecksum aa831163adf08d56466c37b832271f600efeb69d31e81353b6475386f0ebe732d7cb3e8e6bed213765c795bd72f61fd47938a17f377055aa28ef83b09d2cf50f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdirflatten + +name texdirflatten.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texdirflatten +containersize 344 +containerchecksum 511938e49dc419f48445ca1ad65048cfe4a580eb092b99c0ea4be44555c7dbef3042c37e9eb3b18c729a1999cdd72475f91f586e5da8b9643821cd8ff91f1094 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdirflatten + +name texdirflatten.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texdirflatten +containersize 340 +containerchecksum 69eb20646a3c59212fba3cade6a4ca419b87e9e27ff87a294e64531c41213f5c6696178bd9b4d06543e5121154d1594f70eb29ec22a692e98c24d64937463f90 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdirflatten + +name texdirflatten.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texdirflatten +containersize 340 +containerchecksum fcb7c72a63afc80cacdf759e38b26d0f9a1dd3a22116a38c889f1546db984c412e1aed63b1086fd0d9ad01853512f8e54cd0f13e96f1c7ca28f7a09a3dc7c7a2 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdirflatten + +name texdirflatten.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of texdirflatten +containersize 340 +containerchecksum 70469d5a726b67e05b1e135128880634b065c50c79db03d0ff2da0446772b49b3a262099af6ec8835eafa61f408d91da630a58ee4d5be2fb978f11736ebaaf82 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdirflatten + +name texdirflatten.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texdirflatten +containersize 344 +containerchecksum f4a6724008ecf1fc91f406a3a6598bd42f027e5cf68cb3c0ab0187349a604af203edf97944d87789a28f509b19088d2bec23e851da4a0aef8ba889865e5bdd96 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdirflatten + +name texdirflatten.i386-linux +category Package +revision 12782 +shortdesc i386-linux files of texdirflatten +containersize 344 +containerchecksum c0df17b236f854e9a7a872167f96ec2a584a662d7380ced4a0a8a542a6122e713515b6fd0ca9dcdcd3658ee8020bf7b4359aed2c61970d72228780d8c52810bd +binfiles arch=i386-linux size=1 + bin/i386-linux/texdirflatten + +name texdirflatten.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texdirflatten +containersize 344 +containerchecksum a9602f1130689132ab3fcdea698ba3258f70f0442e964a1d882f3e43146d3ddb91524289324af0ed2b07242dd357b107861f16da665d370f56a6e3591746ccdc +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdirflatten + +name texdirflatten.i386-solaris +category Package +revision 12782 +shortdesc i386-solaris files of texdirflatten +containersize 344 +containerchecksum 6d442e438d96cd6cefe0f04b33dc91a37a73ee1c07c7cf81ee7b7b1d54eef2ca7e7fe0d07213df13d8123133c8a9d7bf4353076210d2b81a7e984d536a071691 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdirflatten + +name texdirflatten.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texdirflatten +containersize 344 +containerchecksum 9ed03767f6502d5a5f1937c347845be5d11a9f7748da0084ee84aae5c506a28d929aa5bc163a0af657f19b4698af77bd9d11f7e069be2c06b9f2c7714e17c2be +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texdirflatten + +name texdirflatten.win32 +category Package +revision 15404 +shortdesc win32 files of texdirflatten +containersize 692 +containerchecksum d1ed5738b38e35cd0bb2b48cb177a7d34989ed6b877dda343df9b4a54a8da273668aa59acbbd7872e7d29de5c8f3583c99697c81c9e9d4a2f96d5d04188a6620 +binfiles arch=win32 size=1 + bin/win32/texdirflatten.exe + +name texdirflatten.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texdirflatten +containersize 344 +containerchecksum 0de641af3256645099ba95f7ef071e73175ea44bc0402e2e0d4a8117afbb1f93d9e5be6bdc8f545c1f5cd92aae382b21e619789cf8f766bdfab24006d9e55bef +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdirflatten + +name texdirflatten.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texdirflatten +containersize 352 +containerchecksum 34ec35c848b31b18c938d86719dce7e72824890deb2f6f46d84fda30b4efab4868c6718fcba2b951db2bf131b21c8c0f83c496915ff81aea040a406bc2f6b3a3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdirflatten + +name texdirflatten.x86_64-linux +category Package +revision 12782 +shortdesc x86_64-linux files of texdirflatten +containersize 344 +containerchecksum 44247b7e4049053789ea839d5ee13093797f155086d566f302ef161ca645652f44b0e7ce20fd3579c56528f41c5f3d71d1ad62ac8f5422ceda25d8a5f5174397 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdirflatten + +name texdirflatten.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texdirflatten +containersize 348 +containerchecksum 33215ac8ec2cd931787eb38fef891a64cf7ec19fa0cb4c8a24da7759259890ced46367d5b0e92eebed8f4bda34c11fc1822ba65e3d2fc67c322c033ad1d3ca16 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdirflatten + +name texdirflatten.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texdirflatten +containersize 344 +containerchecksum 4527ef89a1d9ab921772ba7e2b9d16b0587632ea6538b2a8727fcf5b0272ef7cf8c7aa1ee42ad6632e0c5089c2d3938cbf5d1a801f8e44b7e7e7a15c5ae1cb7d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdirflatten + +name texdoc +category TLCore +revision 58477 +shortdesc Documentation access for TeX Live +longdesc texdoc is a Lua script providing easy access to the +longdesc documentation in TeX Live: PDF, DVI, plain text files, and +longdesc more. Viewing and other configuration can be extensively +longdesc customized. It is distributed with TeX Live; MiKTeX provides a +longdesc program by the same name to do the same job, but its +longdesc implementation is unrelated. +depend kpathsea +depend texdoc.ARCH +containersize 26808 +containerchecksum ace120045a48c29b207e94fa6a08956b63f4994374fbe5572a1e655046408126d094c0c89f9bb0350a6619b54912a89f4f72bd177451c84a9c3d182eddd9b5de +doccontainersize 134156 +doccontainerchecksum ac14e4a9f5bc96d8d3baf1d8ff41dd1c996838cb6e8e5aad5c6e9bda0a93af9e7c5a86d6da7b5bd6342e866c48babe76023c659a36234a2a0b5787a84c389c4e +docfiles size=52 + texmf-dist/doc/man/man1/texdoc.1 + texmf-dist/doc/man/man1/texdoc.man1.pdf + texmf-dist/doc/support/texdoc/COPYING + texmf-dist/doc/support/texdoc/NEWS + texmf-dist/doc/support/texdoc/README.md details="Readme" + texmf-dist/doc/support/texdoc/texdoc-doc.cls + texmf-dist/doc/support/texdoc/texdoc.pdf details="Package documentation" + texmf-dist/doc/support/texdoc/texdoc.tex +runfiles size=30 + texmf-dist/scripts/texdoc/texdoc.tlu + texmf-dist/scripts/texdoc/texdoclib-alias.tlu + texmf-dist/scripts/texdoc/texdoclib-cli.tlu + texmf-dist/scripts/texdoc/texdoclib-config.tlu + texmf-dist/scripts/texdoc/texdoclib-const.tlu + texmf-dist/scripts/texdoc/texdoclib-score.tlu + texmf-dist/scripts/texdoc/texdoclib-search.tlu + texmf-dist/scripts/texdoc/texdoclib-util.tlu + texmf-dist/scripts/texdoc/texdoclib-view.tlu + texmf-dist/scripts/texdoc/texdoclib.tlu + texmf-dist/texdoc/texdoc.cnf +catalogue-also texdoctk +catalogue-contact-bugs https://github.com/TeX-Live/texdoc/issues +catalogue-contact-home https://tug.org/texdoc/ +catalogue-contact-repository https://github.com/TeX-Live/texdoc +catalogue-contact-support https://lists.tug.org/texdoc +catalogue-ctan /support/texdoc +catalogue-license gpl +catalogue-topics view-doc +catalogue-version 3.3 + +name texdoc.aarch64-linux +category TLCore +revision 47948 +shortdesc aarch64-linux files of texdoc +containersize 340 +containerchecksum ae7ddc0a25ff1320380e04b6139f82184eca10cd15134f3bc5c0d0be6fbda19418137226cad886cb294f0cd33bcba625fb9b7a5d5193ab7ade099677995b3bde +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdoc + +name texdoc.amd64-freebsd +category TLCore +revision 47948 +shortdesc amd64-freebsd files of texdoc +containersize 344 +containerchecksum fe00524ec8c90a66cc928d3c0f453937e35d7754d74cd7b73db54b4a0d0d8ae5dc2e280801587e622a8edd77591ecb1f34ff580812a88fe1feef5a191773328a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdoc + +name texdoc.amd64-netbsd +category TLCore +revision 47948 +shortdesc amd64-netbsd files of texdoc +containersize 340 +containerchecksum ad6b863fd16a8c3f9309ea88b2f9809eb4142f4c5c6888a8e7133b28e44e239723f2265c49283ca8de89ab7270b7f98c1df09b3e56f20778a8d46f9d847b9def +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdoc + +name texdoc.armhf-linux +category TLCore +revision 47948 +shortdesc armhf-linux files of texdoc +containersize 340 +containerchecksum 3d63f1585dbee7c20cb2043fb9cc369039e89c8fa1d89c904d7cbf207e654c3cbf29d3e1164e058f5cc0060eeb18a94954a1ecf703213b76b362a9bec26fe43b +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdoc + +name texdoc.i386-cygwin +category TLCore +revision 47948 +shortdesc i386-cygwin files of texdoc +containersize 336 +containerchecksum 400afe75ca64bf1a127790a076e0e5b2f8c6584603f650b20e348b69b48aa97612efa76d9a7a7fa0ffbb4694667f9b410a84828354b1f065262ae7dfc9ecdce4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdoc + +name texdoc.i386-freebsd +category TLCore +revision 47948 +shortdesc i386-freebsd files of texdoc +containersize 340 +containerchecksum 630a89ad37f3a5e8e0ebf2c7baa032cb1b0fab45cde10717cb4ca4db6e5df0e8a754016eb31fb870d5b98eb4dcc838ad71c34a90b3e92ad64d3cd8ac6903bece +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdoc + +name texdoc.i386-linux +category TLCore +revision 47948 +shortdesc i386-linux files of texdoc +containersize 340 +containerchecksum f5892a2059d7d6d4c0dcc838276aa8fd07b2d16b467c0ddfc8fce43183d885453e04c6e767dc652e19ea736d34c355b22af6cfba71261acee668038d84851b91 +binfiles arch=i386-linux size=1 + bin/i386-linux/texdoc + +name texdoc.i386-netbsd +category TLCore +revision 47948 +shortdesc i386-netbsd files of texdoc +containersize 340 +containerchecksum 7d922e61c44b5df2cad4b29d88c8bf8e9238c3edc08217a48f797ac0836ab0c4ee0d3fa25268dfa6453f25cc5ae2556e2fd4aa67df9b2943ec50e069c5fd6685 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdoc + +name texdoc.i386-solaris +category TLCore +revision 47948 +shortdesc i386-solaris files of texdoc +containersize 340 +containerchecksum 74469498c2f85c7d34210fe89265301af799e3126dc1dfc62164ae91fe21f5b4637bfc02f643474f4444ba95a70d1a0cf7cd380376b131227a71ca0d31ae10ed +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdoc + +name texdoc.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of texdoc +containersize 340 +containerchecksum e6afb179f3baff3867a8e28b7962e062c4aaf648ced536e5d1e987405270f88dc74cd9203e07d8178abbbd8fdc237a28871e4689709413db1b38e7fea7b760fe +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texdoc + +name texdoc.win32 +category TLCore +revision 47948 +shortdesc win32 files of texdoc +containersize 680 +containerchecksum b03dc5aae34e0bd841c27883dc15af7c9a0f759027f1a04cc775894b8dc6bed0f2e91e881fc606d4a59c51245aa010219487ec55cfd9f27672838397e24593b9 +binfiles arch=win32 size=1 + bin/win32/texdoc.exe + +name texdoc.x86_64-cygwin +category TLCore +revision 47948 +shortdesc x86_64-cygwin files of texdoc +containersize 344 +containerchecksum e16a558b8c714a44b8aec8b22f1fcba503d4388422320b5541d2467228af4a1365631df4a41ea95689b21d76bc83398759ea54a23853078003d9e7ec301521f1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdoc + +name texdoc.x86_64-darwinlegacy +category TLCore +revision 47948 +shortdesc x86_64-darwinlegacy files of texdoc +containersize 348 +containerchecksum c8655bb9a73e31f9bc749897da3000c5771c19d369ecc7a01f7960cbd3793ca718ed35a7dcb978dea9151be701c2f9e5e3f672a2b2650337ae41f8120d306334 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdoc + +name texdoc.x86_64-linux +category TLCore +revision 47948 +shortdesc x86_64-linux files of texdoc +containersize 340 +containerchecksum d2b66ccccab24076063facd08b7689151f7d42f6be63ef6b02e336626c4279df0ab94e96716f1e5079f351c6612f860de0b554bb2da21c01d38e70927dd0cf2c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdoc + +name texdoc.x86_64-linuxmusl +category TLCore +revision 47948 +shortdesc x86_64-linuxmusl files of texdoc +containersize 344 +containerchecksum 3cc93e41becc25f3a35f5b5319cb71970bf75edec85237a2e82e20474eaa736c5ecc595bf33a4b80786e94cb855383daab6c88403b762810ac329e7c446dcdeb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdoc + +name texdoc.x86_64-solaris +category TLCore +revision 47948 +shortdesc x86_64-solaris files of texdoc +containersize 340 +containerchecksum d37143e8a7b39403bb182d9ff243c999be5e366ec980bd0c7fecc1dfc1197750150bc75431245f07d424c3243c065ffd8d8e7e5da26786c6a24e750d5e561bc6 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdoc + +name texdoctk +category TLCore +revision 54557 +shortdesc Easy access to package documentation +longdesc A Perl/Tk-based GUI for easy access to package documentation +longdesc for TeX on Unix platforms; the databases it uses are based on +longdesc the texmf/doc subtrees of teTeX, but database files for local +longdesc configurations with modified/extended directories can be +longdesc derived from them. Note that texdoctk is not a viewer itself, +longdesc but an interface for finding documentation files and opening +longdesc them with the appropriate viewer; so it relies on appropriate +longdesc programs to be installed on the system. However, the choice of +longdesc these programs can be configured by the sysadmin or user. Now +longdesc only distributed as part of TeX Live, which includes a Windows +longdesc executable. +depend kpathsea +depend texdoctk.ARCH +containersize 26828 +containerchecksum 6fee47f51fe3d98051d7098d17e3c5c37b3969fc5a2c78bd5d5a2b97f9de97cdbaaeda274792d1bbc10653bf1d3daf6447c66a13b4b31f8e80d26e433c405936 +doccontainersize 30728 +doccontainerchecksum 54fe4ca2618e4b8d6eb1f5590745fbb6ed6264a9e6ab4b34040bac52062ce4d7e8214a4fa3010cb6c78ad0003afcc3f929b112528940396973647a6672a0422e +docfiles size=11 + texmf-dist/doc/man/man1/texdoctk.1 + texmf-dist/doc/man/man1/texdoctk.man1.pdf +runfiles size=27 + texmf-dist/scripts/texdoctk/texdoctk.pl + texmf-dist/texdoctk/texdocrc-win32.defaults + texmf-dist/texdoctk/texdocrc.defaults + texmf-dist/texdoctk/texdoctk.dat +catalogue-also texdoc +catalogue-license gpl +catalogue-topics view-doc +catalogue-version 0.6.0 + +name texdoctk.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of texdoctk +containersize 344 +containerchecksum 0d39e99ffc0886f56cc12485beac0d619aaac678ba50df2645718909d28211afb9add807b931dc4aa6ed84ccd7af60620aa4a7d8c43588a288d2598cb90dc5ff +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdoctk + +name texdoctk.amd64-freebsd +category TLCore +revision 29785 +shortdesc amd64-freebsd files of texdoctk +containersize 344 +containerchecksum 4966896bbdd5d1fe99adfe9c8f2f84c77742f136879c097c418737d2b1ac0a65f7c48dd4a53f1a0a040a11c3b5c944fa94da518c9d1d1943f623325b3af15ec1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdoctk + +name texdoctk.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of texdoctk +containersize 340 +containerchecksum 9f74fdfd32d35debd551b8627ad067ffd7cd5c8765e96ac71818f4a7dc9626414fb9d3db15c223b9ba5346ff819c9f140859667c7c5ca7ce42d175eb7f207e28 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdoctk + +name texdoctk.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of texdoctk +containersize 340 +containerchecksum 2d3405048185ce3f7f8a67e6cfaf883a065b3a60acfb21779e941d821b0d476e3dacee5f49025b96f9fe0575495e7776da239c4de5926dcd2bdc57247040e123 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdoctk + +name texdoctk.i386-cygwin +category TLCore +revision 29836 +shortdesc i386-cygwin files of texdoctk +containersize 340 +containerchecksum facd8bcb82cf0e37e0a0677c3b9d5fbdf66628dd37cc63f52d49eef868dfb2ff7076a6b10df3339c92d0b883da3db0d630a070fbe927520710a0c6584521634a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdoctk + +name texdoctk.i386-freebsd +category TLCore +revision 29785 +shortdesc i386-freebsd files of texdoctk +containersize 340 +containerchecksum c4eabf244b724925b746640663169e06ea58600ef99ebd6865851d32f44798c205ee06562826b54336622c8b2beb949b0052367eefecc1235b43c07fc989345c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdoctk + +name texdoctk.i386-linux +category TLCore +revision 29741 +shortdesc i386-linux files of texdoctk +containersize 340 +containerchecksum 4c9ca86090d2f7949caaf37b42e66342749ecfe619ee80ef454758a22e40b91b83bc1342c4b0e14d918263f94ae16e818cbcc9e71369775075934ec6cd66a4d0 +binfiles arch=i386-linux size=1 + bin/i386-linux/texdoctk + +name texdoctk.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of texdoctk +containersize 340 +containerchecksum a7a47fa0137eb47f637df8bae892aada5758cbc93e0dbf58a1ecc219ed11644857be799382ede2c70a307932ab83a0090569cc26f3b15d265b26ffef3b9f2c65 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdoctk + +name texdoctk.i386-solaris +category TLCore +revision 29806 +shortdesc i386-solaris files of texdoctk +containersize 340 +containerchecksum 002e94fed830a40743b474df87f1682f411de6d1b9cdfa22dc1c10700c9f44120b1cdf209d254689564b93725d07f9bdf8108bc77c6aa65fa050a2acc0d18a99 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdoctk + +name texdoctk.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of texdoctk +containersize 340 +containerchecksum 934b94a52795d30174b438e101e76685b9e9d2c03a5fc6b4df0ca7ab79e78207848ac7f255c6c58450fa8ae4fa02f30170bf83b374de7c9b4bffae07aee011f7 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texdoctk + +name texdoctk.win32 +category TLCore +revision 18918 +shortdesc win32 files of texdoctk +containersize 2008 +containerchecksum f82158ef9eef0972fe1d9cafac26261acb53c17035592d2267ebea85b3945d40f7782abe4d79162bdf10f998748db779c86362fca759dbc3f800a7014209e875 +binfiles arch=win32 size=2 + bin/win32/texdoctk.exe + +name texdoctk.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of texdoctk +containersize 344 +containerchecksum af85bc5965596b8f984d66f9dc9851a0e9af29fa775b5dd2176f50aa0dd06ee0c0148a2a778df13542e367ecf157be769bcf5b6ed269321290492bd1aacf3edb +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdoctk + +name texdoctk.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of texdoctk +containersize 348 +containerchecksum ef21e7532c653565fac7c1592e7368e71ffa2c0a5b9461043bc3bcad601d3a1015c2eb65fe976f3e26ea2f34b6b8cbd59980ef2b716b5f5a2cf1fe52157b119f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdoctk + +name texdoctk.x86_64-linux +category TLCore +revision 29820 +shortdesc x86_64-linux files of texdoctk +containersize 340 +containerchecksum 3d45517e2573b7eee9d7963d5a30e9f28e096dd0ef05a979827d8dc0acac4ab99061c686c5daf48790231813b7149665e3f3c7c96d2cdf56302a06b7f8fb8b1d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdoctk + +name texdoctk.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of texdoctk +containersize 348 +containerchecksum 4f160f2dd7aece8413f7af233ebad49ce35c2007ede0595eaf552cf6163c44bc1e5b982381a505fa20e4a94c3777736d2ee753ebcfcd501f3f1c666bcedff4d0 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdoctk + +name texdoctk.x86_64-solaris +category TLCore +revision 29807 +shortdesc x86_64-solaris files of texdoctk +containersize 340 +containerchecksum 927a7c31b49fc3bbb8124c93bcbd278a475fb49fd16d1be2b3448e162b0b12037c0bad326bb35e42bff7ec24fbf51da5486a07655fca8e2834ebe8798f06459b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdoctk + +name texdraw +category Package +revision 51030 +shortdesc Graphical macros, using embedded PostScript +relocated 1 +longdesc TeXdraw is a set of macro definitions for TeX, which allow the +longdesc user to produce PostScript drawings from within TeX and LaTeX. +longdesc TeXdraw has been designed to be extensible. Drawing 'segments' +longdesc are relocatable, self-contained units. Using a combination of +longdesc TeX's grouping mechanism and the gsave/grestore mechanism in +longdesc PostScript, drawing segments allow for local changes to the +longdesc scaling and line parameters. Using TeX's macro definition +longdesc capability, new drawing commands can be constructed from +longdesc drawing segments. +containersize 15548 +containerchecksum 30cc546b259f93bec3f5d3efea5e73cdf7e34f9f76cac8946d82fff3123abb6f5bc7c70c48987bab24e154c56f6145fef0680b416e7cf2aaa79f5aa673600f59 +doccontainersize 243680 +doccontainerchecksum 28a7028a28749e2d7c8b5176dd473b749230750fe1ead78a731c9f4a40db299c4bd034be18e0587ab1dd79b6b0802abff19d12fdf44dab5e1a64e26d48185771 +docfiles size=126 + RELOC/doc/info/texdraw.info + RELOC/doc/support/texdraw/ChangeLog + RELOC/doc/support/texdraw/Makefile + RELOC/doc/support/texdraw/README details="Readme" + RELOC/doc/support/texdraw/examples/txdexamp.latex + RELOC/doc/support/texdraw/examples/txdexamp.tex + RELOC/doc/support/texdraw/test/ttexdraw.tex + RELOC/doc/support/texdraw/texdraw.pdf details="Package documentation" + RELOC/doc/support/texdraw/texdraw.texi +runfiles size=19 + RELOC/tex/generic/texdraw/blockdiagram.tex + RELOC/tex/generic/texdraw/texdraw.sty + RELOC/tex/generic/texdraw/texdraw.tex + RELOC/tex/generic/texdraw/txdps.tex + RELOC/tex/generic/texdraw/txdtools.tex +catalogue-ctan /graphics/texdraw +catalogue-license cc-by-4 +catalogue-topics graphics-in-tex +catalogue-version v2r3 + +name texfot +category Package +revision 59040 +shortdesc Filter clutter from the output of a TeX run +longdesc The package provides a small Perl script to filter the online +longdesc output from a TeX run, attempting to show only those messages +longdesc which probably deserve some change in the source. The TeX +longdesc invocation itself need not change. +depend texfot.ARCH +containersize 6320 +containerchecksum 101a37bb79e58f25c2a9198f1327ca911ab292578fb7d80769cee8d0b4459bec9e3b49addd64ac1064523de0685a595c4bce86cb272fd02294d3168b3db28bf4 +doccontainersize 32296 +doccontainerchecksum 883a70368bbc9797e7e2967a4c451f6ab735cba63d92d1ec65ce954cfdf7235ca2ad4291dd2fb50cc09eb0e6c3831e6befd67839ba9b9c522f1199f995cae772 +docfiles size=13 + texmf-dist/doc/man/man1/texfot.1 + texmf-dist/doc/man/man1/texfot.man1.pdf + texmf-dist/doc/support/texfot/README details="Readme" +runfiles size=4 + texmf-dist/scripts/texfot/texfot.pl +catalogue-ctan /support/texfot +catalogue-license pd +catalogue-topics comp-mgmt +catalogue-version 1.43 + +name texfot.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texfot +containersize 340 +containerchecksum 3380486f45523d143a59bb07470673681de4efdc296056bcbe02d41db869bf55ef530adaf84b2d631054d6b49c12c87973476a6f95ba04a0d4ec0573922a1208 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texfot + +name texfot.amd64-freebsd +category Package +revision 33155 +shortdesc amd64-freebsd files of texfot +containersize 340 +containerchecksum aaf3fda96afedbae81c9c9f705fe3bc61393d35dcd429bb192c70a05629b6382b26bf56bf542e64fa533552b2ff78ae9c96a49a0f81b61ede737d85d789e359d +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texfot + +name texfot.amd64-netbsd +category Package +revision 33155 +shortdesc amd64-netbsd files of texfot +containersize 336 +containerchecksum 3d2c73362e51474ce8f117ada8216388f7b7ff7b4d2eb81b222a3f8fb48aadf4bee21afb117eed3f6b89ad62d776a994019200afe26519b1fdb4c27e5be88415 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texfot + +name texfot.armhf-linux +category Package +revision 33155 +shortdesc armhf-linux files of texfot +containersize 336 +containerchecksum 8f691f5a0a8af6cad6b761804f743a1b4bb913d7870e79fbd1de2a04a43a11817b96f9eec45de0be76c3780b6b423357d400f7d543cebae9aa96a7de7d4ad30d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texfot + +name texfot.i386-cygwin +category Package +revision 33155 +shortdesc i386-cygwin files of texfot +containersize 336 +containerchecksum 8883c4b4a4b222e3eb8f9ab181b696505cacd675de66a59f263589d5af3c00d65c51724335192ece630b09980490ef6ec84b9aba6db2de401f830e3c89d0e4bc +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texfot + +name texfot.i386-freebsd +category Package +revision 33155 +shortdesc i386-freebsd files of texfot +containersize 340 +containerchecksum 220688b9b26823606983cbf0cd8315afdcdd735b823cc14a1233bad6a93db0d02276bf363612fcfd1058d23e17654e01fb825cb563813f74ede290fe7f4d951b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texfot + +name texfot.i386-linux +category Package +revision 33155 +shortdesc i386-linux files of texfot +containersize 340 +containerchecksum 0ba383b819ba3b9b3cfdc8415f1c0e95afbed31dec1ea6a913d1310fc0e3e6354ea45084b8b513c50bff8c9ac9dbb0cd38b24f2fde2971b15ddd84f3efa6409c +binfiles arch=i386-linux size=1 + bin/i386-linux/texfot + +name texfot.i386-netbsd +category Package +revision 33155 +shortdesc i386-netbsd files of texfot +containersize 336 +containerchecksum fbc6da687705084169344a6bcb1a0dfad6f473cc49f23c7c23b66c5ca34285856c61189d7b9bc2255a9c88a5b76b9cdf41dad82b5ba83c4f7688bbc32a577e9d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texfot + +name texfot.i386-solaris +category Package +revision 33155 +shortdesc i386-solaris files of texfot +containersize 340 +containerchecksum 294a90083e697c7970b694ce788d7811bd1a4026a9e83418046a1d943bb4918f300f36d77a9cc7c97a48c2516eb43c4908fa5248ba9ce842dd2a39d507855599 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texfot + +name texfot.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texfot +containersize 340 +containerchecksum 6162ae59da3af1ba7c988faa0514143172fd140dd2d721e859d6411c97bfc971468b7aa01eb8ac0e770eaa79b810b2aaf77e107cd967f8124105b81e48373909 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texfot + +name texfot.win32 +category Package +revision 33155 +shortdesc win32 files of texfot +containersize 684 +containerchecksum c1b4eb2cdb93c91794010087c8ab3a6493da26785c50aebc5fc43f671c67ec4769736fb299a81fa9be3eef4e49ac7377a72fdcd7c2e451bad1d86cc8d9c01e37 +binfiles arch=win32 size=1 + bin/win32/texfot.exe + +name texfot.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texfot +containersize 340 +containerchecksum 49acc9b1afb74212eb4d6d2d52614a6f88b6a74a089480f048274eb4b5923941f0b891fe700ab4ee94697a2de957ad9815fb19581aa5a217df8a253675e0cb65 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texfot + +name texfot.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texfot +containersize 348 +containerchecksum e6b6032fe158cd8c770329c659c0661ea8705fb9eae4979e6b1fd32a3cfc644670ebc3f76e76c81149945684adac15f2bd355b8586d973a579048e37b75a3da7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texfot + +name texfot.x86_64-linux +category Package +revision 33155 +shortdesc x86_64-linux files of texfot +containersize 336 +containerchecksum 6791108a4e2c8bdb7fc613aba3a55880f80e32d9aa57069f2ea9ccc4758362601a32093d3fb562801c11b9604a55618b75c349212e333a4d6e827afde5ac689f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texfot + +name texfot.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texfot +containersize 344 +containerchecksum 99aed0da46a14cc3654cfc855165ee9ba7544298deae53b18df7cccd860890c776e464dbfb70a3375ec5a3678443e72803687a99ab926d393fd96e14eb651855 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texfot + +name texfot.x86_64-solaris +category Package +revision 33155 +shortdesc x86_64-solaris files of texfot +containersize 340 +containerchecksum fd805ace455f4f72971183bea7ac14964d7fb8e44ba52e290c9bd92aabb6d61605020b4f903b10dfcf44d495b6565cba1888fd6e095a0f3888f7e42508db8f44 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texfot + +name texilikechaps +category Package +revision 28553 +shortdesc Format chapters with a texi-like format +relocated 1 +longdesc The package enables the user to reduce the size of the rather +longdesc large chapter headings in standard classes into a texi-like +longdesc smaller format. Details of the format may be controlled with +longdesc internal commands. +containersize 1956 +containerchecksum b65e737c138a176e6674612dda6b066a9953d8b737fe2e947eb10c058d6b67eb27f154a3ca4f346481f4dc077fddc2c95cc302762a9e9eaa2f0f1d23160bd4be +runfiles size=1 + RELOC/tex/latex/texilikechaps/texilikechaps.sty +catalogue-ctan /macros/latex/contrib/misc/texilikechaps.sty +catalogue-license lppl +catalogue-topics headings +catalogue-version 1.0a + +name texilikecover +category Package +revision 15878 +shortdesc A cover-page package, like TeXinfo +relocated 1 +longdesc The package creates document cover pages, like those that +longdesc TeXinfo produces. +containersize 956 +containerchecksum fc73ce5601a10d638ea78fe815978d395001a73be75084539498644ac7f3fea0f3a57e95bd80e5f38659891adfd9c817e6068acfe04972a836938d733e0d4382 +runfiles size=1 + RELOC/tex/latex/texilikecover/texilikecover.sty +catalogue-ctan /macros/latex/contrib/misc/texilikecover.sty +catalogue-license lppl +catalogue-topics covers +catalogue-version 0.1 + +name texinfo +category Package +revision 57911 +shortdesc Texinfo documentation system +relocated 1 +longdesc Texinfo is the preferred format for documentation in the GNU +longdesc project; the format may be used to produce online or printed +longdesc output from a single source. The Texinfo macros may be used to +longdesc produce printable output using TeX; other programs in the +longdesc distribution offer online interactive use (with hypertext +longdesc linkages in some cases). Note that a developers' snapshot of +longdesc the latest release of the Texinfo macros may be found in the +longdesc Texinfo 'latest' package. +containersize 98652 +containerchecksum 9bcff364b4f7e505f4301d54f8acd5fa248dabafe246c649abf4f229ad12c2e041935684741717e29f22a02ed3181b5619a3ddfe6e2047b16f928ab69b1b4295 +runfiles size=109 + RELOC/tex/texinfo/texinfo.ini + RELOC/tex/texinfo/texinfo.tex + RELOC/tex/texinfo/txi-cs.tex + RELOC/tex/texinfo/txi-de.tex + RELOC/tex/texinfo/txi-en.tex + RELOC/tex/texinfo/txi-es.tex + RELOC/tex/texinfo/txi-fr.tex + RELOC/tex/texinfo/txi-it.tex + RELOC/tex/texinfo/txi-nb.tex + RELOC/tex/texinfo/txi-nl.tex + RELOC/tex/texinfo/txi-nn.tex + RELOC/tex/texinfo/txi-pl.tex + RELOC/tex/texinfo/txi-pt.tex + RELOC/tex/texinfo/txi-ru.tex + RELOC/tex/texinfo/txi-sr.tex + RELOC/tex/texinfo/txi-tr.tex + RELOC/tex/texinfo/txi-uk.tex +catalogue-contact-home http://www.gnu.org/software/texinfo/ +catalogue-ctan /macros/texinfo/texinfo +catalogue-license gpl +catalogue-topics doc-supp format +catalogue-version 5.1 + +name texlive-common +category TLCore +revision 59073 +shortdesc TeX Live documentation (common elements) +relocated 1 +postaction shortcut type=menu name="TeX Live documentation" cmd=TEXDIR/texmf-dist/doc/texlive/index.html +containersize 348 +containerchecksum 4b34ce5639e3d7d47f4c8be4e90abe43c2cee611ab3aaf57da6f34420c1a20af7f5e3ab449beeebbac7e9ebd40288e4becb20814a144557179f2bb85cb3a49c4 +doccontainersize 577640 +doccontainerchecksum 4871c4ac92808de513174af31f4150d105e7e2b1e06e7cce5dba878424d8ff7fc6e7aa46694157b45e7e19e6f11cbbcd5e4350b32cf4455f0ad3542b60d5c674 +docfiles size=188 + RELOC/doc/texlive/index.html + RELOC/doc/texlive/install-tl.html + RELOC/doc/texlive/texlive-common/advanced-lnx.png + RELOC/doc/texlive/texlive-common/basic-w32.png + RELOC/doc/texlive/texlive-common/examples/ex5.tex + RELOC/doc/texlive/texlive-common/examples/ex6.tex + RELOC/doc/texlive/texlive-common/examples/ex6a.tex + RELOC/doc/texlive/texlive-common/examples/ex6b.tex + RELOC/doc/texlive/texlive-common/examples/ex6c.tex + RELOC/doc/texlive/texlive-common/nsis_installer.png + RELOC/doc/texlive/texlive-common/stdcoll.png + RELOC/doc/texlive/texlive-common/tlcockpit-packages.png + RELOC/doc/texlive/texlive-common/tlmgr-gui.png + RELOC/doc/texlive/texlive-common/tlshell-macos.png + RELOC/doc/texlive/texlive-common/tray-menu.png + RELOC/doc/texlive/tlmgr.html + +name texlive-cz +category TLCore +revision 54496 +shortdesc TeX Live manual (Czech/Slovak) +relocated 1 +containersize 280 +containerchecksum d4332dc9fe838cc3dd6bf28bbde16f0f41b6f7f75877c358fadae2584cbd1d1fc4fe810569ac5c26dde3eba1fd26447eb6928fc8533a1c4304309a83b734131d +doccontainersize 1197876 +doccontainerchecksum ecfc4149bddfb665c6f48e65b719cc3d2240d0be151bec94676a188da08a203e84443b4c8e77590476c3194fae55ea23753a248c6f60ddd0b27895dea703a219 +docfiles size=424 + RELOC/doc/texlive/texlive-cz/Makefile + RELOC/doc/texlive/texlive-cz/csquote.sty + RELOC/doc/texlive/texlive-cz/live4ht.cfg + RELOC/doc/texlive/texlive-cz/tex-live.css + RELOC/doc/texlive/texlive-cz/texlive-cz.css + RELOC/doc/texlive/texlive-cz/texlive-cz.html + RELOC/doc/texlive/texlive-cz/texlive-cz.pdf + RELOC/doc/texlive/texlive-cz/texlive-cz.tex + +name texlive-de +category TLCore +revision 58648 +shortdesc TeX Live manual (German) +relocated 1 +containersize 272 +containerchecksum eb70ac7400ce4cbc18d3ddf2c37dffa175d0af2a8eb36bfa17b9868e606d1be7b1994496143e1a1444d17f2e2ac1c20cade92485cb846aa16a52974dd9692a6e +doccontainersize 1554012 +doccontainerchecksum d51df93981312475c5c4b4976e4de00441d6ed4ea9e51d30d5c8360e314417f9b33c5804acae3c6d50c714bc76966120de37095b3ef33c78c06744ca17e3855e +docfiles size=619 + RELOC/doc/texlive/texlive-de/Makefile + RELOC/doc/texlive/texlive-de/advanced-lnx.png + RELOC/doc/texlive/texlive-de/basic-w32.png + RELOC/doc/texlive/texlive-de/install-lnx-main.png + RELOC/doc/texlive/texlive-de/lmsy10-40.png + RELOC/doc/texlive/texlive-de/nsis_installer.png + RELOC/doc/texlive/texlive-de/nsisinstaller.png + RELOC/doc/texlive/texlive-de/psview.png + RELOC/doc/texlive/texlive-de/stdcoll.png + RELOC/doc/texlive/texlive-de/texlive-de-html.css + RELOC/doc/texlive/texlive-de/texlive-de-html.tex + RELOC/doc/texlive/texlive-de/texlive-de.css + RELOC/doc/texlive/texlive-de/texlive-de.html + RELOC/doc/texlive/texlive-de/texlive-de.pdf + RELOC/doc/texlive/texlive-de/texlive-de.tex + RELOC/doc/texlive/texlive-de/tlcockpit-packages.png + RELOC/doc/texlive/texlive-de/tlmgr-general-options.png + RELOC/doc/texlive/texlive-de/tlmgr-gui.png + RELOC/doc/texlive/texlive-de/tlmgr-paper-options.png + RELOC/doc/texlive/texlive-de/tlshell-macos.png + RELOC/doc/texlive/texlive-de/tray-menu.png + RELOC/doc/texlive/texlive-de/wizard-w32.png + +name texlive-docindex +category TLCore +revision 59083 +shortdesc top-level TeX Live doc.html, etc. +longdesc These files are regenerated as needed, which is often, so we +longdesc make them a separate package. See the tl-update-auto script for +longdesc the process. +containersize 388 +containerchecksum 3cf73604111a0db40c1f11bfa867001fdbd4bace6a0f2c3baadda3b513f0136c16d1daea289580051c61f1f2f77d2768131012946a2483b6f9e9663ad851ccaf +doccontainersize 174864 +doccontainerchecksum a4d2edd00d2ffdb0b7d6800e3fc20bbc60d2fe417a5246525c67825eba40830c1c1fe081687debc10179420319071d02a95b68ade2649e3afc6f51c871773eab +docfiles size=348 + doc.html + +name texlive-en +category TLCore +revision 59056 +shortdesc TeX Live manual (English) +relocated 1 +containersize 276 +containerchecksum 815a16b86ef0b8086b5a56bd43b2997cd6692aa4ca6fa9236510a1297ede24baec671af196797c2bfb0ee3a614dd8fe54043cbe2c3ce048bb42fbfa231a54300 +doccontainersize 1937260 +doccontainerchecksum 2319817120e11f7aaca1e2ed617ec72da9919d2452151fc79d40ed28f86364a17f27ae28ce9a5de825c750669d5625cd4cc6bf72a0bb5e94e3c1caa963879d5a +docfiles size=1459 + RELOC/doc/info/tlbuild.info + RELOC/doc/texlive/texlive-en/.dict.pws + RELOC/doc/texlive/texlive-en/Makefile + RELOC/doc/texlive/texlive-en/README + RELOC/doc/texlive/texlive-en/archive/bv-live.tex + RELOC/doc/texlive/texlive-en/archive/bvoutln.sty + RELOC/doc/texlive/texlive-en/archive/changemail + RELOC/doc/texlive/texlive-en/archive/l.pl + RELOC/doc/texlive/texlive-en/archive/live-2003.tex + RELOC/doc/texlive/texlive-en/archive/live-2004.tex + RELOC/doc/texlive/texlive-en/archive/live-2005.tex + RELOC/doc/texlive/texlive-en/archive/live-2007.tex + RELOC/doc/texlive/texlive-en/archive/live-2008.tex + RELOC/doc/texlive/texlive-en/archive/live-2009.tex + RELOC/doc/texlive/texlive-en/archive/live-2010.tex + RELOC/doc/texlive/texlive-en/archive/live-2011.tex + RELOC/doc/texlive/texlive-en/archive/live-2012.tex + RELOC/doc/texlive/texlive-en/archive/live-2013.tex + RELOC/doc/texlive/texlive-en/archive/live-2014.tex + RELOC/doc/texlive/texlive-en/archive/live-2015.tex + RELOC/doc/texlive/texlive-en/archive/live-2016.tex + RELOC/doc/texlive/texlive-en/archive/live-2017.tex + RELOC/doc/texlive/texlive-en/archive/live-2018.tex + RELOC/doc/texlive/texlive-en/archive/live-2019.tex + RELOC/doc/texlive/texlive-en/archive/live-2020.tex + RELOC/doc/texlive/texlive-en/archive/live-tl7.tex + RELOC/doc/texlive/texlive-en/archive/live4ht.cfg-2004 + RELOC/doc/texlive/texlive-en/archive/mod.pl + RELOC/doc/texlive/texlive-en/archive/nocites.tex + RELOC/doc/texlive/texlive-en/archive/picture.tex + RELOC/doc/texlive/texlive-en/archive/split.pl + RELOC/doc/texlive/texlive-en/archive/status.pl + RELOC/doc/texlive/texlive-en/archive/tex-live.bib + RELOC/doc/texlive/texlive-en/archive/tex-live.bst + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2003 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2004 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2005 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2007 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2008 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2009 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2010 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2014 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2015 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2016 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2017 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2018 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2019 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2020 + RELOC/doc/texlive/texlive-en/archive/texlive.pl + RELOC/doc/texlive/texlive-en/live4ht.cfg + RELOC/doc/texlive/texlive-en/tex-live.css + RELOC/doc/texlive/texlive-en/tex-live.sty + RELOC/doc/texlive/texlive-en/texlive-en.css + RELOC/doc/texlive/texlive-en/texlive-en.html + RELOC/doc/texlive/texlive-en/texlive-en.pdf + RELOC/doc/texlive/texlive-en/texlive-en.tex + RELOC/doc/texlive/tlbuild/tlbuild.html + RELOC/doc/texlive/tlbuild/tlbuild.pdf + +name texlive-es +category TLCore +revision 58221 +shortdesc TeX Live manual (Spanish) +relocated 1 +containersize 276 +containerchecksum 899baa7c3fc2ac174fca5e06ed37306d00d95683e75a2529ec657b9fa23ee3ca9e101679c5646fc1182762cef65ee6ab445fb0e12d543428a1facd5b708bb039 +doccontainersize 3667820 +doccontainerchecksum 2c4fd6aae61efa3c9f2c51590bc2d86c391c11cbf2844d1f6c36fb69cea46c1bccb82d861a157ea50973cba7107fc6bb44b3035b98e2703a601c4ec84e280e19 +docfiles size=1911 + RELOC/doc/texlive/texlive-es/Makefile + RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.tex + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.css + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.tex + RELOC/doc/texlive/texlive-es/archive/2019/texlive-es.css + RELOC/doc/texlive/texlive-es/archive/2019/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2019/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2019/texlive-es.tex + RELOC/doc/texlive/texlive-es/archive/2020/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2020/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2020/texlive-es.tex + RELOC/doc/texlive/texlive-es/tex-live.css + RELOC/doc/texlive/texlive-es/texlive-es.css + RELOC/doc/texlive/texlive-es/texlive-es.html + RELOC/doc/texlive/texlive-es/texlive-es.pdf + RELOC/doc/texlive/texlive-es/texlive-es.tex + +name texlive-fr +category TLCore +revision 58579 +shortdesc TeX Live manual (French) +relocated 1 +containersize 272 +containerchecksum 17fe7383de6528d9f57b98694a8635aa77886e1b8c51c673ee24ccbcc9bd4dfbb59146f6693f126e5bd23acbfd112a771b948897529c2856505f6f84f3b1e6ce +doccontainersize 1379000 +doccontainerchecksum f74e92d2a5509da3d74435a86cedac62659d15f49cc5f29464586f70013dfe31585cbfda34ccd1a33e71945cdbc43461a24c578953022af3ebb2b41aaa15082d +docfiles size=480 + RELOC/doc/texlive/texlive-fr/Makefile + RELOC/doc/texlive/texlive-fr/live4ht.cfg + RELOC/doc/texlive/texlive-fr/notes + RELOC/doc/texlive/texlive-fr/tex-live.css + RELOC/doc/texlive/texlive-fr/texlive-fr.css + RELOC/doc/texlive/texlive-fr/texlive-fr.html + RELOC/doc/texlive/texlive-fr/texlive-fr.pdf + RELOC/doc/texlive/texlive-fr/texlive-fr.tex + +name texlive-it +category TLCore +revision 58653 +shortdesc TeX Live manual (Italian) +relocated 1 +containersize 276 +containerchecksum 22874afcd046572176439818fd3a1c2200d00c0e184adc4fcbfa90b2ecc88dac7f5b28eb95c74bd546fd7472fcfdb2c5b74e5b1b5d08ffe4d4a5aa5f924da698 +doccontainersize 1307232 +doccontainerchecksum 0c0d3585bb2c12476751bc5dafb5ea5e10dcaf5149b98e823e607d7a99e5bd9dfd698d73950ecb1efe353435ba2f88be2c45e18c6cde2245df90cebfdbad4417 +docfiles size=449 + RELOC/doc/texlive/texlive-it/Makefile + RELOC/doc/texlive/texlive-it/texlive-it.html + RELOC/doc/texlive/texlive-it/texlive-it.pdf + RELOC/doc/texlive/texlive-it/texlive-it.tex + +name texlive-ja +category TLCore +revision 58581 +shortdesc TeX Live manual (Japanese) +relocated 1 +containersize 276 +containerchecksum d1d9ac0e82802d1021d7644b83f81395e9cecbfabcd4bf8b37c77d108b5a1b9ae10fb4bef628adffaefef34279b521b1b883c4bb98e657bcddc6d7326fe4ee7b +doccontainersize 1845596 +doccontainerchecksum 1445ec4257d202f77452df48e70105e423e048ae9150ad70acbcfea350f8b8686ca395e9452d40eedbd6824df7a2d8560c5c761fc867cdda0d2ba9182eba5f16 +docfiles size=539 + RELOC/doc/texlive/texlive-ja/Makefile + RELOC/doc/texlive/texlive-ja/img/advanced-macos-ja.png + RELOC/doc/texlive/texlive-ja/img/basic-macos-ja.png + RELOC/doc/texlive/texlive-ja/img/stdcoll-ja.png + RELOC/doc/texlive/texlive-ja/img/tlshell-macos-ja.png + RELOC/doc/texlive/texlive-ja/texlive-ja.pdf + RELOC/doc/texlive/texlive-ja/texlive-ja.sty + RELOC/doc/texlive/texlive-ja/texlive-ja.tex + +name texlive-msg-translations +category TLCore +revision 59050 +shortdesc translations of the TeX Live installer and TeX Live Manager +longdesc This package contains the translated messages of the TeX Live +longdesc installer and TeX Live Manager. For information on creating or +longdesc updating translations, see +longdesc http://tug.org/texlive/doc.html#install-tl-xlate. +containersize 146428 +containerchecksum 55f1b16743b49bbc97a0a8749ede1850fdf8ebb133bb192b99d0d979a6097bf4feebb2121a5eebeea7579febea00014bae569b65592cc6a0b77cafd965767601 +runfiles size=364 + tlpkg/translations/README + tlpkg/translations/cs.po + tlpkg/translations/da.po + tlpkg/translations/de.po + tlpkg/translations/es.po + tlpkg/translations/fr.po + tlpkg/translations/it.po + tlpkg/translations/ja.po + tlpkg/translations/messages.pot + tlpkg/translations/nl.po + tlpkg/translations/pl.po + tlpkg/translations/pt_BR.po + tlpkg/translations/ru.po + tlpkg/translations/sk.po + tlpkg/translations/sl.po + tlpkg/translations/sr.po + tlpkg/translations/translators + tlpkg/translations/uk.po + tlpkg/translations/vi.po + tlpkg/translations/zh_CN.po + tlpkg/translations/zh_TW.po + +name texlive-pl +category TLCore +revision 58649 +shortdesc TeX Live manual (Polish) +relocated 1 +containersize 276 +containerchecksum d2d548ea077b26ebcff1e75070b3638c3b2e0210c8bb9869706adbe8e321e3db4fe1429af06a070c7dd586baf652372cf019416807ae90808d36169848ab4349 +doccontainersize 976100 +doccontainerchecksum c373d58f0a5d958e81ad2f968585711d74b513693d2e7125422abba3bc26957aa0eea3bfa81c46bce839358db1978da5bfc7de9f38bd847c0e3a9ff4fdf7c3b1 +docfiles size=375 + RELOC/doc/texlive/texlive-pl/Makefile + RELOC/doc/texlive/texlive-pl/live4ht.cfg + RELOC/doc/texlive/texlive-pl/tex-live.css + RELOC/doc/texlive/texlive-pl/texlive-pl.css + RELOC/doc/texlive/texlive-pl/texlive-pl.html + RELOC/doc/texlive/texlive-pl/texlive-pl.pdf + RELOC/doc/texlive/texlive-pl/texlive-pl.tex + +name texlive-ru +category TLCore +revision 58426 +shortdesc TeX Live manual (Russian) +relocated 1 +containersize 276 +containerchecksum 7658ab0d98a505eda9a86e9ecd64b0e35d9cd332b03066b46825c2a6252b9aa8edb24eb4af2bfc267127b349f741709ada836104dbfc2becadfd97d22e737365 +doccontainersize 958120 +doccontainerchecksum 40e8b29f29ed61addc2b9e7ce4b73d12bf2e59f1c50c65e59e9c8cac5e6c3ef264ce2071b0d54e15f5029c101a51d0efcda0144e113aaedc714eb1300aa9635d +docfiles size=376 + RELOC/doc/texlive/texlive-ru/Makefile + RELOC/doc/texlive/texlive-ru/live4ht.cfg + RELOC/doc/texlive/texlive-ru/tex-live.css + RELOC/doc/texlive/texlive-ru/texlive-ru.css + RELOC/doc/texlive/texlive-ru/texlive-ru.html + RELOC/doc/texlive/texlive-ru/texlive-ru.pdf + RELOC/doc/texlive/texlive-ru/texlive-ru.tex + +name texlive-scripts +category TLCore +revision 59083 +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-scripts.ARCH +depend texlive.infra +execute addMap mathpple.map +postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat +containersize 107216 +containerchecksum 9b172ad7074c07c5295fbbc24afb21d45231b95a56c40cb0fa320c42f9b93120f0820396d24ffc4c67554c6b695b45731a6ecc1c5975f545e5a16c41ed5e53e4 +doccontainersize 218532 +doccontainerchecksum ea88cf467d8c67c754f83a547bdc9e50af029992d51f9a8c2ca23790dbe88244e0da79c5911086a799d11501638bccc9d86dffd754de10626340ec7ec0e39d3b +docfiles size=137 + texmf-dist/doc/man/man1/fmtutil-sys.1 + texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf + texmf-dist/doc/man/man1/fmtutil-user.1 + texmf-dist/doc/man/man1/fmtutil-user.man1.pdf + texmf-dist/doc/man/man1/fmtutil.1 + texmf-dist/doc/man/man1/fmtutil.man1.pdf + texmf-dist/doc/man/man1/install-tl.1 + texmf-dist/doc/man/man1/install-tl.man1.pdf + texmf-dist/doc/man/man1/mktexfmt.1 + texmf-dist/doc/man/man1/mktexfmt.man1.pdf + texmf-dist/doc/man/man1/mktexmf.1 + texmf-dist/doc/man/man1/mktexmf.man1.pdf + texmf-dist/doc/man/man1/mktexpk.1 + texmf-dist/doc/man/man1/mktexpk.man1.pdf + texmf-dist/doc/man/man1/mktextfm.1 + texmf-dist/doc/man/man1/mktextfm.man1.pdf + texmf-dist/doc/man/man1/texhash.1 + texmf-dist/doc/man/man1/texhash.man1.pdf + texmf-dist/doc/man/man1/updmap-sys.1 + texmf-dist/doc/man/man1/updmap-sys.man1.pdf + texmf-dist/doc/man/man1/updmap-user.1 + texmf-dist/doc/man/man1/updmap-user.man1.pdf + texmf-dist/doc/man/man1/updmap.1 + texmf-dist/doc/man/man1/updmap.man1.pdf + texmf-dist/doc/man/man5/fmtutil.cnf.5 + texmf-dist/doc/man/man5/fmtutil.cnf.man5.pdf + texmf-dist/doc/man/man5/updmap.cfg.5 + texmf-dist/doc/man/man5/updmap.cfg.man5.pdf +runfiles size=156 + install-tl + texmf-dist/dvips/tetex/config.builtin35 + texmf-dist/dvips/tetex/config.dfaxhigh + texmf-dist/dvips/tetex/config.dfaxlo + texmf-dist/dvips/tetex/config.download35 + texmf-dist/dvips/tetex/config.gsftopk + texmf-dist/dvips/tetex/config.maxmem + texmf-dist/dvips/tetex/config.outline + texmf-dist/dvips/tetex/config.pdf + texmf-dist/dvips/tetex/config.pk + texmf-dist/dvips/tetex/config.www + texmf-dist/fonts/enc/dvips/tetex/09fbbfac.enc + texmf-dist/fonts/enc/dvips/tetex/0ef0afca.enc + texmf-dist/fonts/enc/dvips/tetex/10037936.enc + texmf-dist/fonts/enc/dvips/tetex/1b6d048e.enc + texmf-dist/fonts/enc/dvips/tetex/71414f53.enc + texmf-dist/fonts/enc/dvips/tetex/74afc74c.enc + texmf-dist/fonts/enc/dvips/tetex/aae443f0.enc + texmf-dist/fonts/enc/dvips/tetex/b6a4d7c7.enc + texmf-dist/fonts/enc/dvips/tetex/bbad153f.enc + texmf-dist/fonts/enc/dvips/tetex/d9b29452.enc + texmf-dist/fonts/enc/dvips/tetex/f7b6d320.enc + texmf-dist/fonts/enc/dvips/tetex/mtex.enc + texmf-dist/fonts/map/dvips/tetex/Makefile + texmf-dist/fonts/map/dvips/tetex/README + texmf-dist/fonts/map/dvips/tetex/base14flags.ltx + texmf-dist/fonts/map/dvips/tetex/base14flags.tex + texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map + texmf-dist/fonts/map/dvips/tetex/dvips35.map + texmf-dist/fonts/map/dvips/tetex/mathpple.map + texmf-dist/fonts/map/dvips/tetex/pdftex35.map + texmf-dist/fonts/map/dvips/tetex/ps2pk35.map + texmf-dist/scripts/texlive/fmtutil-sys.sh + texmf-dist/scripts/texlive/fmtutil-user.sh + texmf-dist/scripts/texlive/fmtutil.pl + texmf-dist/scripts/texlive/mktexlsr.pl + texmf-dist/scripts/texlive/mktexmf + texmf-dist/scripts/texlive/mktexpk + texmf-dist/scripts/texlive/mktextfm + texmf-dist/scripts/texlive/rungs.tlu + texmf-dist/scripts/texlive/updmap-sys.sh + texmf-dist/scripts/texlive/updmap-user.sh + texmf-dist/scripts/texlive/updmap.pl + texmf-dist/web2c/updmap.cfg + tlpkg/installer/ctan-mirrors.pl + tlpkg/installer/install-menu-extl.pl + tlpkg/installer/install-menu-text.pl + tlpkg/installer/install-tl-gui.tcl + +name texlive-scripts-extra +category TLCore +revision 54744 +shortdesc TeX Live scripts +longdesc Miscellaneous scripts maintained as part of TeX Live, but not +longdesc important for the infrastructure. Thus, this is not part of +longdesc scheme-infraonly or tlcritical, just a normal package. +depend texlive-scripts-extra.ARCH +containersize 23540 +containerchecksum e46691aa10b961d2359359fdf00ebc86a1b881b3d1126c52f3863343d21eba00110cd9500fb03a4a9544a3d8fb443bbdc90aa2f6216b8e62a3edb0acc58e4c75 +doccontainersize 195144 +doccontainerchecksum 56f9be73e3318ea684c536b90645b572caf437b16339104bcedfb7517c94745a514a8e185033c2338aeccae868a123a5a137b9b07b20d661fa473bde2c28797b +docfiles size=107 + texmf-dist/doc/man/man1/allcm.1 + texmf-dist/doc/man/man1/allcm.man1.pdf + texmf-dist/doc/man/man1/allec.1 + texmf-dist/doc/man/man1/allec.man1.pdf + texmf-dist/doc/man/man1/allneeded.1 + texmf-dist/doc/man/man1/allneeded.man1.pdf + texmf-dist/doc/man/man1/dvi2fax.1 + texmf-dist/doc/man/man1/dvi2fax.man1.pdf + texmf-dist/doc/man/man1/dvired.1 + texmf-dist/doc/man/man1/dvired.man1.pdf + texmf-dist/doc/man/man1/e2pall.1 + texmf-dist/doc/man/man1/e2pall.man1.pdf + texmf-dist/doc/man/man1/kpsepath.1 + texmf-dist/doc/man/man1/kpsepath.man1.pdf + texmf-dist/doc/man/man1/kpsetool.1 + texmf-dist/doc/man/man1/kpsetool.man1.pdf + texmf-dist/doc/man/man1/kpsewhere.1 + texmf-dist/doc/man/man1/kpsewhere.man1.pdf + texmf-dist/doc/man/man1/kpsexpand.1 + texmf-dist/doc/man/man1/kpsexpand.man1.pdf + texmf-dist/doc/man/man1/mkocp.1 + texmf-dist/doc/man/man1/mkocp.man1.pdf + texmf-dist/doc/man/man1/mkofm.1 + texmf-dist/doc/man/man1/mkofm.man1.pdf + texmf-dist/doc/man/man1/ps2frag.1 + texmf-dist/doc/man/man1/ps2frag.man1.pdf + texmf-dist/doc/man/man1/pslatex.1 + texmf-dist/doc/man/man1/pslatex.man1.pdf + texmf-dist/doc/man/man1/texconfig-sys.1 + texmf-dist/doc/man/man1/texconfig-sys.man1.pdf + texmf-dist/doc/man/man1/texconfig.1 + texmf-dist/doc/man/man1/texconfig.man1.pdf + texmf-dist/doc/man/man1/texlinks.1 + texmf-dist/doc/man/man1/texlinks.man1.pdf +runfiles size=36 + texmf-dist/scripts/texlive-extra/allcm.sh + texmf-dist/scripts/texlive-extra/allneeded.sh + texmf-dist/scripts/texlive-extra/dvi2fax.sh + texmf-dist/scripts/texlive-extra/dvired.sh + texmf-dist/scripts/texlive-extra/e2pall.pl + texmf-dist/scripts/texlive-extra/kpsetool.sh + texmf-dist/scripts/texlive-extra/kpsewhere.sh + texmf-dist/scripts/texlive-extra/ps2frag.sh + texmf-dist/scripts/texlive-extra/pslatex.sh + texmf-dist/scripts/texlive-extra/texconfig-dialog.sh + texmf-dist/scripts/texlive-extra/texconfig-sys.sh + texmf-dist/scripts/texlive-extra/texconfig.sh + texmf-dist/scripts/texlive-extra/texlinks.sh + texmf-dist/texconfig/README + texmf-dist/texconfig/g/generic + texmf-dist/texconfig/tcfmgr + texmf-dist/texconfig/tcfmgr.map + texmf-dist/texconfig/v/vt100 + texmf-dist/texconfig/x/xterm + +name texlive-scripts-extra.aarch64-linux +category TLCore +revision 53577 +shortdesc aarch64-linux files of texlive-scripts-extra +containersize 916 +containerchecksum 480aaf1adaa6b61eeb35752a780dd174cc2e7e3642af7529794244e84c764bff2f2fb2dea07978f74a2ac446e0080b12d81a84fc6e876505f3ac1aa3c07afdd2 +binfiles arch=aarch64-linux size=18 + bin/aarch64-linux/allcm + bin/aarch64-linux/allec + bin/aarch64-linux/allneeded + bin/aarch64-linux/dvi2fax + bin/aarch64-linux/dvired + bin/aarch64-linux/e2pall + bin/aarch64-linux/kpsepath + bin/aarch64-linux/kpsetool + bin/aarch64-linux/kpsewhere + bin/aarch64-linux/kpsexpand + bin/aarch64-linux/mkocp + bin/aarch64-linux/mkofm + bin/aarch64-linux/ps2frag + bin/aarch64-linux/pslatex + bin/aarch64-linux/texconfig + bin/aarch64-linux/texconfig-dialog + bin/aarch64-linux/texconfig-sys + bin/aarch64-linux/texlinks + +name texlive-scripts-extra.amd64-freebsd +category TLCore +revision 53577 +shortdesc amd64-freebsd files of texlive-scripts-extra +containersize 924 +containerchecksum 52fd3b31628f853ce3335d33d38ef4a0ab123109b241394f44e3d40249497faaddf874e4a4752045e30bd5d3090fd181451cd211616aca0902efe7dcbb05391f +binfiles arch=amd64-freebsd size=18 + bin/amd64-freebsd/allcm + bin/amd64-freebsd/allec + bin/amd64-freebsd/allneeded + bin/amd64-freebsd/dvi2fax + bin/amd64-freebsd/dvired + bin/amd64-freebsd/e2pall + bin/amd64-freebsd/kpsepath + bin/amd64-freebsd/kpsetool + bin/amd64-freebsd/kpsewhere + bin/amd64-freebsd/kpsexpand + bin/amd64-freebsd/mkocp + bin/amd64-freebsd/mkofm + bin/amd64-freebsd/ps2frag + bin/amd64-freebsd/pslatex + bin/amd64-freebsd/texconfig + bin/amd64-freebsd/texconfig-dialog + bin/amd64-freebsd/texconfig-sys + bin/amd64-freebsd/texlinks + +name texlive-scripts-extra.amd64-netbsd +category TLCore +revision 53577 +shortdesc amd64-netbsd files of texlive-scripts-extra +containersize 916 +containerchecksum a07c65af8456f2432bbe691cd6430a0ab55b7c721997bba70d6665c341208b6eb0833684ebffb957afd9bad397aed7a06ba71d4279accb0070955d160e15bd40 +binfiles arch=amd64-netbsd size=18 + bin/amd64-netbsd/allcm + bin/amd64-netbsd/allec + bin/amd64-netbsd/allneeded + bin/amd64-netbsd/dvi2fax + bin/amd64-netbsd/dvired + bin/amd64-netbsd/e2pall + bin/amd64-netbsd/kpsepath + bin/amd64-netbsd/kpsetool + bin/amd64-netbsd/kpsewhere + bin/amd64-netbsd/kpsexpand + bin/amd64-netbsd/mkocp + bin/amd64-netbsd/mkofm + bin/amd64-netbsd/ps2frag + bin/amd64-netbsd/pslatex + bin/amd64-netbsd/texconfig + bin/amd64-netbsd/texconfig-dialog + bin/amd64-netbsd/texconfig-sys + bin/amd64-netbsd/texlinks + +name texlive-scripts-extra.armhf-linux +category TLCore +revision 53577 +shortdesc armhf-linux files of texlive-scripts-extra +containersize 912 +containerchecksum 207efb902805233d576be8a2df05f91ad6a8e532ab78169828a4e171fd679cd7d644a20e5e6faf5261d4487d5212a0a592d464375fdab615a9ffbc5091d71d66 +binfiles arch=armhf-linux size=18 + bin/armhf-linux/allcm + bin/armhf-linux/allec + bin/armhf-linux/allneeded + bin/armhf-linux/dvi2fax + bin/armhf-linux/dvired + bin/armhf-linux/e2pall + bin/armhf-linux/kpsepath + bin/armhf-linux/kpsetool + bin/armhf-linux/kpsewhere + bin/armhf-linux/kpsexpand + bin/armhf-linux/mkocp + bin/armhf-linux/mkofm + bin/armhf-linux/ps2frag + bin/armhf-linux/pslatex + bin/armhf-linux/texconfig + bin/armhf-linux/texconfig-dialog + bin/armhf-linux/texconfig-sys + bin/armhf-linux/texlinks + +name texlive-scripts-extra.i386-cygwin +category TLCore +revision 53577 +shortdesc i386-cygwin files of texlive-scripts-extra +containersize 916 +containerchecksum 01e7a58ec5a557e9a97f0257c64e58dc97f62f7e9fc180ce01a1525534af890ee6b754b0159496c4a72fe87499b87d206dab1d7be7414d82b9897612ff7778f1 +binfiles arch=i386-cygwin size=18 + bin/i386-cygwin/allcm + bin/i386-cygwin/allec + bin/i386-cygwin/allneeded + bin/i386-cygwin/dvi2fax + bin/i386-cygwin/dvired + bin/i386-cygwin/e2pall + bin/i386-cygwin/kpsepath + bin/i386-cygwin/kpsetool + bin/i386-cygwin/kpsewhere + bin/i386-cygwin/kpsexpand + bin/i386-cygwin/mkocp + bin/i386-cygwin/mkofm + bin/i386-cygwin/ps2frag + bin/i386-cygwin/pslatex + bin/i386-cygwin/texconfig + bin/i386-cygwin/texconfig-dialog + bin/i386-cygwin/texconfig-sys + bin/i386-cygwin/texlinks + +name texlive-scripts-extra.i386-freebsd +category TLCore +revision 53577 +shortdesc i386-freebsd files of texlive-scripts-extra +containersize 920 +containerchecksum 55c1977d0ab728ccb650521fce44090a4b518e26d7ed947d81410bc7d248c6595c3f2bbce967df5830d5fc106216d9d77c36af5c9118772044d3c0e51590c0a2 +binfiles arch=i386-freebsd size=18 + bin/i386-freebsd/allcm + bin/i386-freebsd/allec + bin/i386-freebsd/allneeded + bin/i386-freebsd/dvi2fax + bin/i386-freebsd/dvired + bin/i386-freebsd/e2pall + bin/i386-freebsd/kpsepath + bin/i386-freebsd/kpsetool + bin/i386-freebsd/kpsewhere + bin/i386-freebsd/kpsexpand + bin/i386-freebsd/mkocp + bin/i386-freebsd/mkofm + bin/i386-freebsd/ps2frag + bin/i386-freebsd/pslatex + bin/i386-freebsd/texconfig + bin/i386-freebsd/texconfig-dialog + bin/i386-freebsd/texconfig-sys + bin/i386-freebsd/texlinks + +name texlive-scripts-extra.i386-linux +category TLCore +revision 53577 +shortdesc i386-linux files of texlive-scripts-extra +containersize 924 +containerchecksum 80ff8a520eefea225472d137c28aa5f7618e7c7e849d33b576fbce4d4dc331ce74475f202274f5b52c49a5067c39138579a9241902116b2190d2213b7ac7362b +binfiles arch=i386-linux size=18 + bin/i386-linux/allcm + bin/i386-linux/allec + bin/i386-linux/allneeded + bin/i386-linux/dvi2fax + bin/i386-linux/dvired + bin/i386-linux/e2pall + bin/i386-linux/kpsepath + bin/i386-linux/kpsetool + bin/i386-linux/kpsewhere + bin/i386-linux/kpsexpand + bin/i386-linux/mkocp + bin/i386-linux/mkofm + bin/i386-linux/ps2frag + bin/i386-linux/pslatex + bin/i386-linux/texconfig + bin/i386-linux/texconfig-dialog + bin/i386-linux/texconfig-sys + bin/i386-linux/texlinks + +name texlive-scripts-extra.i386-netbsd +category TLCore +revision 53577 +shortdesc i386-netbsd files of texlive-scripts-extra +containersize 912 +containerchecksum 025eb9c836f86bff653981b955b39ccfec2355e5d60aaa2e30d56d540ef201dfd6def75865cfaa61c69572bc03f89527a6597e9b68cdb846cba923218d501eb9 +binfiles arch=i386-netbsd size=18 + bin/i386-netbsd/allcm + bin/i386-netbsd/allec + bin/i386-netbsd/allneeded + bin/i386-netbsd/dvi2fax + bin/i386-netbsd/dvired + bin/i386-netbsd/e2pall + bin/i386-netbsd/kpsepath + bin/i386-netbsd/kpsetool + bin/i386-netbsd/kpsewhere + bin/i386-netbsd/kpsexpand + bin/i386-netbsd/mkocp + bin/i386-netbsd/mkofm + bin/i386-netbsd/ps2frag + bin/i386-netbsd/pslatex + bin/i386-netbsd/texconfig + bin/i386-netbsd/texconfig-dialog + bin/i386-netbsd/texconfig-sys + bin/i386-netbsd/texlinks + +name texlive-scripts-extra.i386-solaris +category TLCore +revision 53577 +shortdesc i386-solaris files of texlive-scripts-extra +containersize 920 +containerchecksum add1650bb30e1ac9f3f8b8c15ce283b9a75aa34c4023790692e6b2521d25371023db42315e1c5df97618c0eb2f29f67e1a6fa8fa871610a99d6e7414470f6c7b +binfiles arch=i386-solaris size=18 + bin/i386-solaris/allcm + bin/i386-solaris/allec + bin/i386-solaris/allneeded + bin/i386-solaris/dvi2fax + bin/i386-solaris/dvired + bin/i386-solaris/e2pall + bin/i386-solaris/kpsepath + bin/i386-solaris/kpsetool + bin/i386-solaris/kpsewhere + bin/i386-solaris/kpsexpand + bin/i386-solaris/mkocp + bin/i386-solaris/mkofm + bin/i386-solaris/ps2frag + bin/i386-solaris/pslatex + bin/i386-solaris/texconfig + bin/i386-solaris/texconfig-dialog + bin/i386-solaris/texconfig-sys + bin/i386-solaris/texlinks + +name texlive-scripts-extra.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of texlive-scripts-extra +containersize 900 +containerchecksum 520f75d358acc989a8967381fbd97058dc5a74b4c93d321cb91ccc8a8f38e4186a8d0735d4c9fb1c53bb6ed58c90e23d8b0602f838afb8093211b6dbb3e121ed +binfiles arch=universal-darwin size=18 + bin/universal-darwin/allcm + bin/universal-darwin/allec + bin/universal-darwin/allneeded + bin/universal-darwin/dvi2fax + bin/universal-darwin/dvired + bin/universal-darwin/e2pall + bin/universal-darwin/kpsepath + bin/universal-darwin/kpsetool + bin/universal-darwin/kpsewhere + bin/universal-darwin/kpsexpand + bin/universal-darwin/mkocp + bin/universal-darwin/mkofm + bin/universal-darwin/ps2frag + bin/universal-darwin/pslatex + bin/universal-darwin/texconfig + bin/universal-darwin/texconfig-dialog + bin/universal-darwin/texconfig-sys + bin/universal-darwin/texlinks + +name texlive-scripts-extra.win32 +category TLCore +revision 58783 +shortdesc win32 files of texlive-scripts-extra +containersize 4732 +containerchecksum b8c3cfaa4282e40fef9f9d9145d80aeb85c74790e26c950711f16882349e83fb5939965ab23259bdb77180ccf8de7244ba9a59cfe95230c299a0bef66c65476d +binfiles arch=win32 size=5 + bin/win32/e2pall.exe + bin/win32/mkocp.exe + bin/win32/mkofm.exe + +name texlive-scripts-extra.x86_64-cygwin +category TLCore +revision 53577 +shortdesc x86_64-cygwin files of texlive-scripts-extra +containersize 916 +containerchecksum ebeddaecbafcf7cb441a66607d80c9da7dc52f4cc5b6980ab90e0a24c1c4d9a864d86b9eacce52fe010ecd4279a56f794b1cdce0f73f4507903bf9a8e0b9aec8 +binfiles arch=x86_64-cygwin size=18 + bin/x86_64-cygwin/allcm + bin/x86_64-cygwin/allec + bin/x86_64-cygwin/allneeded + bin/x86_64-cygwin/dvi2fax + bin/x86_64-cygwin/dvired + bin/x86_64-cygwin/e2pall + bin/x86_64-cygwin/kpsepath + bin/x86_64-cygwin/kpsetool + bin/x86_64-cygwin/kpsewhere + bin/x86_64-cygwin/kpsexpand + bin/x86_64-cygwin/mkocp + bin/x86_64-cygwin/mkofm + bin/x86_64-cygwin/ps2frag + bin/x86_64-cygwin/pslatex + bin/x86_64-cygwin/texconfig + bin/x86_64-cygwin/texconfig-dialog + bin/x86_64-cygwin/texconfig-sys + bin/x86_64-cygwin/texlinks + +name texlive-scripts-extra.x86_64-darwinlegacy +category TLCore +revision 53577 +shortdesc x86_64-darwinlegacy files of texlive-scripts-extra +containersize 924 +containerchecksum 1d7b186be64386845fcc9f08ece398b0796cf4b3050d04da8305c15d62eefac4d4388a60eb4851cbf7a77ff30452414c82c7c77e6e8d1577a236cf4980c39129 +binfiles arch=x86_64-darwinlegacy size=18 + bin/x86_64-darwinlegacy/allcm + bin/x86_64-darwinlegacy/allec + bin/x86_64-darwinlegacy/allneeded + bin/x86_64-darwinlegacy/dvi2fax + bin/x86_64-darwinlegacy/dvired + bin/x86_64-darwinlegacy/e2pall + bin/x86_64-darwinlegacy/kpsepath + bin/x86_64-darwinlegacy/kpsetool + bin/x86_64-darwinlegacy/kpsewhere + bin/x86_64-darwinlegacy/kpsexpand + bin/x86_64-darwinlegacy/mkocp + bin/x86_64-darwinlegacy/mkofm + bin/x86_64-darwinlegacy/ps2frag + bin/x86_64-darwinlegacy/pslatex + bin/x86_64-darwinlegacy/texconfig + bin/x86_64-darwinlegacy/texconfig-dialog + bin/x86_64-darwinlegacy/texconfig-sys + bin/x86_64-darwinlegacy/texlinks + +name texlive-scripts-extra.x86_64-linux +category TLCore +revision 53577 +shortdesc x86_64-linux files of texlive-scripts-extra +containersize 924 +containerchecksum c9e580753e56d7bdfed2c601a1afa942a50ffc8e58cc885a5f2b379d2ef76fab48eb5a592b82192588c353f4ee28943d50768f1c50a18597a6694cbd418db18d +binfiles arch=x86_64-linux size=18 + bin/x86_64-linux/allcm + bin/x86_64-linux/allec + bin/x86_64-linux/allneeded + bin/x86_64-linux/dvi2fax + bin/x86_64-linux/dvired + bin/x86_64-linux/e2pall + bin/x86_64-linux/kpsepath + bin/x86_64-linux/kpsetool + bin/x86_64-linux/kpsewhere + bin/x86_64-linux/kpsexpand + bin/x86_64-linux/mkocp + bin/x86_64-linux/mkofm + bin/x86_64-linux/ps2frag + bin/x86_64-linux/pslatex + bin/x86_64-linux/texconfig + bin/x86_64-linux/texconfig-dialog + bin/x86_64-linux/texconfig-sys + bin/x86_64-linux/texlinks + +name texlive-scripts-extra.x86_64-linuxmusl +category TLCore +revision 53577 +shortdesc x86_64-linuxmusl files of texlive-scripts-extra +containersize 916 +containerchecksum 39b24842d430a2324f51950747b7fa941d44b971c74d8bdd3c298e8695a158c7c23f4be2864a31b9b32968d315422ecddf10b14571f3d63b0e74d38ec59bc5c0 +binfiles arch=x86_64-linuxmusl size=18 + bin/x86_64-linuxmusl/allcm + bin/x86_64-linuxmusl/allec + bin/x86_64-linuxmusl/allneeded + bin/x86_64-linuxmusl/dvi2fax + bin/x86_64-linuxmusl/dvired + bin/x86_64-linuxmusl/e2pall + bin/x86_64-linuxmusl/kpsepath + bin/x86_64-linuxmusl/kpsetool + bin/x86_64-linuxmusl/kpsewhere + bin/x86_64-linuxmusl/kpsexpand + bin/x86_64-linuxmusl/mkocp + bin/x86_64-linuxmusl/mkofm + bin/x86_64-linuxmusl/ps2frag + bin/x86_64-linuxmusl/pslatex + bin/x86_64-linuxmusl/texconfig + bin/x86_64-linuxmusl/texconfig-dialog + bin/x86_64-linuxmusl/texconfig-sys + bin/x86_64-linuxmusl/texlinks + +name texlive-scripts-extra.x86_64-solaris +category TLCore +revision 53577 +shortdesc x86_64-solaris files of texlive-scripts-extra +containersize 924 +containerchecksum f96cb3935b40686304567ede435d2ad4b5a60a30c66817a120dffbc93bd5c5e50257f2134a1604a1a5fe0c7169322811cdc927089428e7fbdaaa75aac55ed72f +binfiles arch=x86_64-solaris size=18 + bin/x86_64-solaris/allcm + bin/x86_64-solaris/allec + bin/x86_64-solaris/allneeded + bin/x86_64-solaris/dvi2fax + bin/x86_64-solaris/dvired + bin/x86_64-solaris/e2pall + bin/x86_64-solaris/kpsepath + bin/x86_64-solaris/kpsetool + bin/x86_64-solaris/kpsewhere + bin/x86_64-solaris/kpsexpand + bin/x86_64-solaris/mkocp + bin/x86_64-solaris/mkofm + bin/x86_64-solaris/ps2frag + bin/x86_64-solaris/pslatex + bin/x86_64-solaris/texconfig + bin/x86_64-solaris/texconfig-dialog + bin/x86_64-solaris/texconfig-sys + bin/x86_64-solaris/texlinks + +name texlive-scripts.aarch64-linux +category TLCore +revision 55172 +shortdesc aarch64-linux files of texlive-scripts +containersize 588 +containerchecksum f42b2d260459477c2691e37ebedcb8a8c70df2d4699275fd75f0f9bb2bd6ed40edd49e68afe67c38fe72eb463443e650c4926ebcda52ca08c8f12ee3d1ac01e8 +binfiles arch=aarch64-linux size=13 + bin/aarch64-linux/fmtutil + bin/aarch64-linux/fmtutil-sys + bin/aarch64-linux/fmtutil-user + bin/aarch64-linux/man + bin/aarch64-linux/mktexfmt + bin/aarch64-linux/mktexmf + bin/aarch64-linux/mktexpk + bin/aarch64-linux/mktextfm + bin/aarch64-linux/rungs + bin/aarch64-linux/texhash + bin/aarch64-linux/updmap + bin/aarch64-linux/updmap-sys + bin/aarch64-linux/updmap-user + +name texlive-scripts.amd64-freebsd +category TLCore +revision 55172 +shortdesc amd64-freebsd files of texlive-scripts +containersize 592 +containerchecksum 185374e71dff788bba327be28aaee945fa24d6d504086fa78b613eb2146c09a4c45cf982244012b73c2607e0b165729f00a17420cb40dc1ab75a803ab8ba0cde +binfiles arch=amd64-freebsd size=13 + bin/amd64-freebsd/fmtutil + bin/amd64-freebsd/fmtutil-sys + bin/amd64-freebsd/fmtutil-user + bin/amd64-freebsd/man + bin/amd64-freebsd/mktexfmt + bin/amd64-freebsd/mktexmf + bin/amd64-freebsd/mktexpk + bin/amd64-freebsd/mktextfm + bin/amd64-freebsd/rungs + bin/amd64-freebsd/texhash + bin/amd64-freebsd/updmap + bin/amd64-freebsd/updmap-sys + bin/amd64-freebsd/updmap-user + +name texlive-scripts.amd64-netbsd +category TLCore +revision 55172 +shortdesc amd64-netbsd files of texlive-scripts +containersize 588 +containerchecksum 917f7265ddaedcdead5157a25dec7982b0afe1aeca479ff02fa4c4faf338aa588c967eb295d1d505d4371c32911a4b0eb0b7ee7ee1ebd0f1ef25ae706610865b +binfiles arch=amd64-netbsd size=13 + bin/amd64-netbsd/fmtutil + bin/amd64-netbsd/fmtutil-sys + bin/amd64-netbsd/fmtutil-user + bin/amd64-netbsd/man + bin/amd64-netbsd/mktexfmt + bin/amd64-netbsd/mktexmf + bin/amd64-netbsd/mktexpk + bin/amd64-netbsd/mktextfm + bin/amd64-netbsd/rungs + bin/amd64-netbsd/texhash + bin/amd64-netbsd/updmap + bin/amd64-netbsd/updmap-sys + bin/amd64-netbsd/updmap-user + +name texlive-scripts.armhf-linux +category TLCore +revision 55172 +shortdesc armhf-linux files of texlive-scripts +containersize 592 +containerchecksum 865462f93f7ed15101334e3d8d8f6891ed79504e8307e0ffd5be3b10eb7421628e9a988dcf2f81709d9a4b9faf329ee39aeb241b622352c1635c6f2de3e7928b +binfiles arch=armhf-linux size=13 + bin/armhf-linux/fmtutil + bin/armhf-linux/fmtutil-sys + bin/armhf-linux/fmtutil-user + bin/armhf-linux/man + bin/armhf-linux/mktexfmt + bin/armhf-linux/mktexmf + bin/armhf-linux/mktexpk + bin/armhf-linux/mktextfm + bin/armhf-linux/rungs + bin/armhf-linux/texhash + bin/armhf-linux/updmap + bin/armhf-linux/updmap-sys + bin/armhf-linux/updmap-user + +name texlive-scripts.i386-cygwin +category TLCore +revision 55172 +shortdesc i386-cygwin files of texlive-scripts +containersize 592 +containerchecksum cff68cd2cabff016bbb74de7e258f520f3e6c4eb02bc384e7c2f34631dbe7ec9f454bf2f0003340eaaff78978b2e09611e2ff6bb84982e421b8f6062a1747c78 +binfiles arch=i386-cygwin size=13 + bin/i386-cygwin/fmtutil + bin/i386-cygwin/fmtutil-sys + bin/i386-cygwin/fmtutil-user + bin/i386-cygwin/man + bin/i386-cygwin/mktexfmt + bin/i386-cygwin/mktexmf + bin/i386-cygwin/mktexpk + bin/i386-cygwin/mktextfm + bin/i386-cygwin/rungs + bin/i386-cygwin/texhash + bin/i386-cygwin/updmap + bin/i386-cygwin/updmap-sys + bin/i386-cygwin/updmap-user + +name texlive-scripts.i386-freebsd +category TLCore +revision 55172 +shortdesc i386-freebsd files of texlive-scripts +containersize 592 +containerchecksum 3c8117b02ec260ad40be343210d6829712a994dd60cebf9ee931ad54bec9c24761210b72d3b4850967ed92cc107254ec9924a4cee544252027d357faac39bcec +binfiles arch=i386-freebsd size=13 + bin/i386-freebsd/fmtutil + bin/i386-freebsd/fmtutil-sys + bin/i386-freebsd/fmtutil-user + bin/i386-freebsd/man + bin/i386-freebsd/mktexfmt + bin/i386-freebsd/mktexmf + bin/i386-freebsd/mktexpk + bin/i386-freebsd/mktextfm + bin/i386-freebsd/rungs + bin/i386-freebsd/texhash + bin/i386-freebsd/updmap + bin/i386-freebsd/updmap-sys + bin/i386-freebsd/updmap-user + +name texlive-scripts.i386-linux +category TLCore +revision 55172 +shortdesc i386-linux files of texlive-scripts +containersize 588 +containerchecksum 51fcbb0453a3e2ccf4afef744701942b1b63d9915f35d8de0a88d0fcea602c6e2338fa6b96cf002bd1d5d02bafe857ae51de03e7d1cdb52643c8b62a5e1d9b52 +binfiles arch=i386-linux size=13 + bin/i386-linux/fmtutil + bin/i386-linux/fmtutil-sys + bin/i386-linux/fmtutil-user + bin/i386-linux/man + bin/i386-linux/mktexfmt + bin/i386-linux/mktexmf + bin/i386-linux/mktexpk + bin/i386-linux/mktextfm + bin/i386-linux/rungs + bin/i386-linux/texhash + bin/i386-linux/updmap + bin/i386-linux/updmap-sys + bin/i386-linux/updmap-user + +name texlive-scripts.i386-netbsd +category TLCore +revision 55172 +shortdesc i386-netbsd files of texlive-scripts +containersize 592 +containerchecksum e8388f9a61db42a1276f5ef9047d885d24bf05caeb26a24596abb09d966ca6fefb3375879a20d2004542cf8705e515bae10e6759ac2daa649c08448b128860a3 +binfiles arch=i386-netbsd size=13 + bin/i386-netbsd/fmtutil + bin/i386-netbsd/fmtutil-sys + bin/i386-netbsd/fmtutil-user + bin/i386-netbsd/man + bin/i386-netbsd/mktexfmt + bin/i386-netbsd/mktexmf + bin/i386-netbsd/mktexpk + bin/i386-netbsd/mktextfm + bin/i386-netbsd/rungs + bin/i386-netbsd/texhash + bin/i386-netbsd/updmap + bin/i386-netbsd/updmap-sys + bin/i386-netbsd/updmap-user + +name texlive-scripts.i386-solaris +category TLCore +revision 55172 +shortdesc i386-solaris files of texlive-scripts +containersize 588 +containerchecksum 2fb310480ba958b8cf6ee943021a85c09e3b93f364934878268e285dcc6d848e5df2fa0f0edd9bf1c99c70ff6e2c3584f892ed86a9644fbf46a3cc7addece2d0 +binfiles arch=i386-solaris size=13 + bin/i386-solaris/fmtutil + bin/i386-solaris/fmtutil-sys + bin/i386-solaris/fmtutil-user + bin/i386-solaris/man + bin/i386-solaris/mktexfmt + bin/i386-solaris/mktexmf + bin/i386-solaris/mktexpk + bin/i386-solaris/mktextfm + bin/i386-solaris/rungs + bin/i386-solaris/texhash + bin/i386-solaris/updmap + bin/i386-solaris/updmap-sys + bin/i386-solaris/updmap-user + +name texlive-scripts.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of texlive-scripts +containersize 572 +containerchecksum 48490aa11d6b3cf386b628d4eb3ec73a2f8b5a41a1e715efc7cef249e44b610671fb8bc4e25f47cca7aca47dee5d0ccdac6229c15331ec6d6a54177a9b6c06d7 +binfiles arch=universal-darwin size=13 + bin/universal-darwin/fmtutil + bin/universal-darwin/fmtutil-sys + bin/universal-darwin/fmtutil-user + bin/universal-darwin/man + bin/universal-darwin/mktexfmt + bin/universal-darwin/mktexmf + bin/universal-darwin/mktexpk + bin/universal-darwin/mktextfm + bin/universal-darwin/rungs + bin/universal-darwin/texhash + bin/universal-darwin/updmap + bin/universal-darwin/updmap-sys + bin/universal-darwin/updmap-user + +name texlive-scripts.win32 +category TLCore +revision 58829 +shortdesc win32 files of texlive-scripts +containersize 36308 +containerchecksum 79231b3b328dbbb9e32c28a466d7afa982b2c4e8a584ef324bc79b12d2bdb7b0737b2393adcdb9896b1f98dab004c82f726a9f442ab6ebef8bcb113bb5a56a6c +binfiles arch=win32 size=40 + bin/win32/fmtutil-sys.exe + bin/win32/fmtutil-user.exe + bin/win32/fmtutil.exe + bin/win32/mktexfmt.exe + bin/win32/mktexmf.exe + bin/win32/mktexpk.exe + bin/win32/mktextfm.exe + bin/win32/rungs.exe + bin/win32/texhash.exe + bin/win32/updmap-sys.exe + bin/win32/updmap-user.exe + bin/win32/updmap.exe + install-tl-windows.bat + tl-tray-menu.exe + tlpkg/installer/tl-cmd.bat + tlpkg/installer/tl-tray-menu.ini + +name texlive-scripts.x86_64-cygwin +category TLCore +revision 55172 +shortdesc x86_64-cygwin files of texlive-scripts +containersize 588 +containerchecksum 198d75e8723986769b6af3e0fa8a5075e6cf30cccded63b098a0415d96b7a93ab69ebb4e0b3b77e1e5771b810d126f3467b2ccfd9119c93b20a68a5438931488 +binfiles arch=x86_64-cygwin size=13 + bin/x86_64-cygwin/fmtutil + bin/x86_64-cygwin/fmtutil-sys + bin/x86_64-cygwin/fmtutil-user + bin/x86_64-cygwin/man + bin/x86_64-cygwin/mktexfmt + bin/x86_64-cygwin/mktexmf + bin/x86_64-cygwin/mktexpk + bin/x86_64-cygwin/mktextfm + bin/x86_64-cygwin/rungs + bin/x86_64-cygwin/texhash + bin/x86_64-cygwin/updmap + bin/x86_64-cygwin/updmap-sys + bin/x86_64-cygwin/updmap-user + +name texlive-scripts.x86_64-darwinlegacy +category TLCore +revision 55117 +shortdesc x86_64-darwinlegacy files of texlive-scripts +containersize 592 +containerchecksum e8355ee745e80e4f68a795f297482c96e6fab4d619190c7b753776688a80a633c15d233643813b92c163ac3db36e158980d004442ce184e88dc6bb171951b934 +binfiles arch=x86_64-darwinlegacy size=13 + bin/x86_64-darwinlegacy/fmtutil + bin/x86_64-darwinlegacy/fmtutil-sys + bin/x86_64-darwinlegacy/fmtutil-user + bin/x86_64-darwinlegacy/man + bin/x86_64-darwinlegacy/mktexfmt + bin/x86_64-darwinlegacy/mktexmf + bin/x86_64-darwinlegacy/mktexpk + bin/x86_64-darwinlegacy/mktextfm + bin/x86_64-darwinlegacy/rungs + bin/x86_64-darwinlegacy/texhash + bin/x86_64-darwinlegacy/updmap + bin/x86_64-darwinlegacy/updmap-sys + bin/x86_64-darwinlegacy/updmap-user + +name texlive-scripts.x86_64-linux +category TLCore +revision 55172 +shortdesc x86_64-linux files of texlive-scripts +containersize 592 +containerchecksum 4fcfbb98e6a880498a5127f7b62fa2633c7ba29523cf00cfe06d34a2f351e916275e78f603e131bf61bd4b4c46f8f547d42aba2849355959144a2ae04b3876e3 +binfiles arch=x86_64-linux size=13 + bin/x86_64-linux/fmtutil + bin/x86_64-linux/fmtutil-sys + bin/x86_64-linux/fmtutil-user + bin/x86_64-linux/man + bin/x86_64-linux/mktexfmt + bin/x86_64-linux/mktexmf + bin/x86_64-linux/mktexpk + bin/x86_64-linux/mktextfm + bin/x86_64-linux/rungs + bin/x86_64-linux/texhash + bin/x86_64-linux/updmap + bin/x86_64-linux/updmap-sys + bin/x86_64-linux/updmap-user + +name texlive-scripts.x86_64-linuxmusl +category TLCore +revision 55172 +shortdesc x86_64-linuxmusl files of texlive-scripts +containersize 596 +containerchecksum e6a5809c0d6df15ac6cddfdeb75ce3e05170e6017ca3a15599c93e2c6c1a0ae28f1e6d2c61cc15d3e593df5a873c83a94da8f48bd2f1ba33aa2429444d595a10 +binfiles arch=x86_64-linuxmusl size=13 + bin/x86_64-linuxmusl/fmtutil + bin/x86_64-linuxmusl/fmtutil-sys + bin/x86_64-linuxmusl/fmtutil-user + bin/x86_64-linuxmusl/man + bin/x86_64-linuxmusl/mktexfmt + bin/x86_64-linuxmusl/mktexmf + bin/x86_64-linuxmusl/mktexpk + bin/x86_64-linuxmusl/mktextfm + bin/x86_64-linuxmusl/rungs + bin/x86_64-linuxmusl/texhash + bin/x86_64-linuxmusl/updmap + bin/x86_64-linuxmusl/updmap-sys + bin/x86_64-linuxmusl/updmap-user + +name texlive-scripts.x86_64-solaris +category TLCore +revision 55172 +shortdesc x86_64-solaris files of texlive-scripts +containersize 592 +containerchecksum 29a295d3b479893cdfbd51c183a274f1952bf6d5476305e7793fca2ff8d9745e43ee0a01d3be899fbc01006b497ba83cbfd43b011a743a84a9e3f6ff318ab448 +binfiles arch=x86_64-solaris size=13 + bin/x86_64-solaris/fmtutil + bin/x86_64-solaris/fmtutil-sys + bin/x86_64-solaris/fmtutil-user + bin/x86_64-solaris/man + bin/x86_64-solaris/mktexfmt + bin/x86_64-solaris/mktexmf + bin/x86_64-solaris/mktexpk + bin/x86_64-solaris/mktextfm + bin/x86_64-solaris/rungs + bin/x86_64-solaris/texhash + bin/x86_64-solaris/updmap + bin/x86_64-solaris/updmap-sys + bin/x86_64-solaris/updmap-user + +name texlive-sr +category TLCore +revision 54594 +shortdesc TeX Live manual (Serbian) +relocated 1 +containersize 272 +containerchecksum de99d6d13c6b68f8327c0b72dd3ab8aef92d07085f3eb59d94aaf8901d11d542c0795a33cb2bff1ff0dfb1acc99e43fc767150956abd873536a7d4e3b8f031f7 +doccontainersize 1101040 +doccontainerchecksum 4e07f6f015a023af113822e409e03405f49b9786f854308c14f2060cac75d8420ddab090696044860be75f1337b6d3b6e7a45fc0d56969b0894efce3a8c60ae7 +docfiles size=453 + RELOC/doc/texlive/texlive-sr/Makefile + RELOC/doc/texlive/texlive-sr/README-SR.txt + RELOC/doc/texlive/texlive-sr/images/tl2019-install-tl-advanced-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2019-install-tl-basic-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2019-install-tl-collections-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2019-tlmgr-tl-old-gui-sr.png + RELOC/doc/texlive/texlive-sr/texlive-sr.css + RELOC/doc/texlive/texlive-sr/texlive-sr.html + RELOC/doc/texlive/texlive-sr/texlive-sr.pdf + RELOC/doc/texlive/texlive-sr/texlive-sr.sty + RELOC/doc/texlive/texlive-sr/texlive-sr.tex + +name texlive-zh-cn +category TLCore +revision 54490 +shortdesc TeX Live manual (Chinese) +relocated 1 +containersize 276 +containerchecksum 1a7e43528c2dac5c623943b1b268b99f0db6a4876f50c5386a8ea160b8b5e066604d34c0a53cee25cc3f839eb7f4be177e3d98ed51c83c77df6293c77a02e0ab +doccontainersize 1088132 +doccontainerchecksum 534c505455c5f9c73803c140a340df2882a97516e15f52c5b65695b7c626404336a0e4f6190155b5bda1b9a86d7f4d44ac294bccec791ec6701e56d13c00d71d +docfiles size=302 + RELOC/doc/texlive/texlive-zh-cn/Makefile + RELOC/doc/texlive/texlive-zh-cn/README-live.ZH-CN + RELOC/doc/texlive/texlive-zh-cn/tex-live-zh-cn.sty + RELOC/doc/texlive/texlive-zh-cn/texlive-zh-cn.pdf + RELOC/doc/texlive/texlive-zh-cn/texlive-zh-cn.tex + +name texlive.infra +category TLCore +revision 58938 +shortdesc basic TeX Live infrastructure +longdesc This package contains the files needed to get tlmgr running: +longdesc perl modules, xz binaries, plus (sometimes) tar, wget, lz4, and +longdesc various other support files. This package also represents the +longdesc tlcritical recovery scripts. The standalone installer is close, +longdesc but not the same; it's defined in 00texlive.installer. +depend texlive.infra.ARCH +containersize 228208 +containerchecksum 6c92900b06718143c50d33595adbc0bc2829b6ee508c2d29d9ae241bc8dd08e64aa54d522c11bfb2e03e0b684ffc3fb09cca435ba29bcc04cd4a746afdb5cfcb +doccontainersize 207600 +doccontainerchecksum f9e59ff1cc0da2248fe2c302c970e9b3e2698a451c38ce2549bcb803178f7669a1457e633a1e7e75b79f9ab094870210a52aa979e20b119d0e927f7dc45ba1a8 +docfiles size=138 + README + README.usergroups + index.html + readme-html.dir/readme.cs.html + readme-html.dir/readme.de.html + readme-html.dir/readme.en.html + readme-html.dir/readme.es.html + readme-html.dir/readme.fr.html + readme-html.dir/readme.it.html + readme-html.dir/readme.ja.html + readme-html.dir/readme.pl.html + readme-html.dir/readme.pt-br.html + readme-html.dir/readme.ru.html + readme-html.dir/readme.sk.html + readme-html.dir/readme.sr.html + readme-html.dir/readme.vi.html + readme-html.dir/readme.zh-cn.html + readme-txt.dir/README.CS + readme-txt.dir/README.DE + readme-txt.dir/README.EN + readme-txt.dir/README.ES + readme-txt.dir/README.FR + readme-txt.dir/README.IT + readme-txt.dir/README.JA + readme-txt.dir/README.PL + readme-txt.dir/README.PT-BR + readme-txt.dir/README.RU + readme-txt.dir/README.RU-cp1251 + readme-txt.dir/README.RU-koi8 + readme-txt.dir/README.SK + readme-txt.dir/README.SR + readme-txt.dir/README.VI + readme-txt.dir/README.ZH-CN + texmf-dist/doc/man/man1/mktexlsr.1 + texmf-dist/doc/man/man1/mktexlsr.man1.pdf + texmf-dist/doc/man/man1/tlmgr.1 + texmf-dist/doc/man/man1/tlmgr.man1.pdf + texmf-dist/scripts/texlive/NEWS + tlpkg/README + tlpkg/installer/COPYING.MinGW-runtime.txt +runfiles size=262 + LICENSE.CTAN + LICENSE.TL + release-texlive.txt + texmf-dist/scripts/texlive/mktexlsr + texmf-dist/scripts/texlive/tl-errmess.vbs + texmf-dist/scripts/texlive/tlmgr.pl + texmf-dist/scripts/texlive/tlmgrgui.pl + texmf-dist/scripts/texlive/uninstall-win32.pl + texmf-dist/scripts/texlive/uninstq.vbs + texmf-dist/web2c/fmtutil-hdr.cnf + texmf-dist/web2c/updmap-hdr.cfg + tlpkg/TeXLive/TLConfFile.pm + tlpkg/TeXLive/TLConfig.pm + tlpkg/TeXLive/TLCrypto.pm + tlpkg/TeXLive/TLDownload.pm + tlpkg/TeXLive/TLPDB.pm + tlpkg/TeXLive/TLPOBJ.pm + tlpkg/TeXLive/TLPSRC.pm + tlpkg/TeXLive/TLPaper.pm + tlpkg/TeXLive/TLTREE.pm + tlpkg/TeXLive/TLUtils.pm + tlpkg/TeXLive/TLWinGoo.pm + tlpkg/TeXLive/TeXCatalogue.pm + tlpkg/TeXLive/trans.pl + tlpkg/gpg/pubring.gpg + tlpkg/gpg/random_seed + tlpkg/gpg/secring.gpg + tlpkg/gpg/tl-key-extension.txt + tlpkg/gpg/trustdb.gpg + tlpkg/installer/config.guess + +name texlive.infra.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of texlive.infra +containersize 82732 +containerchecksum 50de5963b3dad7b08525821fa037d30154704f1a101646cc5ec6dfbcd1e488585062df16176c71823134e3b1c70f0b9ab1402f93d5ab9f2f4b068998e1bbc169 +binfiles arch=aarch64-linux size=49 + bin/aarch64-linux/mktexlsr + bin/aarch64-linux/tlmgr + tlpkg/installer/xz/xz.aarch64-linux + +name texlive.infra.amd64-freebsd +category TLCore +revision 58165 +shortdesc amd64-freebsd files of texlive.infra +containersize 342980 +containerchecksum de2d8ba6ea6fdd68d4154c623f3b5c61b20057cb2c4d7ba15c0098183e15ffd47d1cd94132b8fdc0ff46c1251b0f8689818700d829c11564ddf51fea9147c56b +binfiles arch=amd64-freebsd size=265 + bin/amd64-freebsd/mktexlsr + bin/amd64-freebsd/tlmgr + tlpkg/installer/lz4/lz4.amd64-freebsd + tlpkg/installer/wget/wget.amd64-freebsd + tlpkg/installer/xz/xz.amd64-freebsd + +name texlive.infra.amd64-netbsd +category TLCore +revision 58183 +shortdesc amd64-netbsd files of texlive.infra +containersize 357788 +containerchecksum 991592cedbf78e6fc88de51a03c54c5fca7ac21c2a8d0f80f345b732b0724d7248db2d1098ab22ba351604907dfdbcbaa760deb07498eb051a86ee779b3168f4 +binfiles arch=amd64-netbsd size=228 + bin/amd64-netbsd/mktexlsr + bin/amd64-netbsd/tlmgr + tlpkg/installer/lz4/lz4.amd64-netbsd + tlpkg/installer/wget/wget.amd64-netbsd + tlpkg/installer/xz/xz.amd64-netbsd + +name texlive.infra.armhf-linux +category TLCore +revision 57956 +shortdesc armhf-linux files of texlive.infra +containersize 159560 +containerchecksum 31326d9c0ed50fab9a8f309623b6a127867c9c2b7198179f0b878eb1adc089df5af5b3ee9ed06caf5343415ed0bdee47f87906cf66994902f1f165a5379451bf +binfiles arch=armhf-linux size=101 + bin/armhf-linux/mktexlsr + bin/armhf-linux/tlmgr + tlpkg/installer/lz4/lz4.armhf-linux + tlpkg/installer/xz/xz.armhf-linux + +name texlive.infra.i386-cygwin +category TLCore +revision 57940 +shortdesc i386-cygwin files of texlive.infra +containersize 169248 +containerchecksum 3dfaff0239e4272c3e7772b5d969a0cc6fb843ca7edb2cb1b3dd5eeb8bc536cff58f063b7b51c0049f5b929afd9d5134c5f6e567883dca612ccf899d0b7b1bb5 +binfiles arch=i386-cygwin size=107 + bin/i386-cygwin/mktexlsr + bin/i386-cygwin/tlmgr + tlpkg/installer/lz4/lz4.i386-cygwin.exe + tlpkg/installer/xz/xz.i386-cygwin.exe + +name texlive.infra.i386-freebsd +category TLCore +revision 58166 +shortdesc i386-freebsd files of texlive.infra +containersize 310740 +containerchecksum d4a26576ee9f185aaa4b8f2f2404dd4af62bebc1ad77c216b0231175e4dfe518c629dda2e1e88536bc4f2535f19abc14f8f93b3b567cc67d85870a8d6511ab04 +binfiles arch=i386-freebsd size=227 + bin/i386-freebsd/mktexlsr + bin/i386-freebsd/tlmgr + tlpkg/installer/lz4/lz4.i386-freebsd + tlpkg/installer/wget/wget.i386-freebsd + tlpkg/installer/xz/xz.i386-freebsd + +name texlive.infra.i386-linux +category TLCore +revision 57933 +shortdesc i386-linux files of texlive.infra +containersize 155748 +containerchecksum c252c9dbef9a0d6d31a85039bb605e663e338bd487981246fcbfc2a9a5b48eef2692337dc31575c84b8db910ddc57da70570a5abb5c8c3bc9746f47fe1851196 +binfiles arch=i386-linux size=96 + bin/i386-linux/mktexlsr + bin/i386-linux/tlmgr + tlpkg/installer/lz4/lz4.i386-linux + tlpkg/installer/xz/xz.i386-linux + +name texlive.infra.i386-netbsd +category TLCore +revision 58183 +shortdesc i386-netbsd files of texlive.infra +containersize 344784 +containerchecksum d094bb490cdfb328cba11e15c0c199ccd1f05c33fa7d8a8b197b697cee6f158f498f470282b7bc2711f537b06a18b32e314d06202c9aa6f7efe8bc446825006f +binfiles arch=i386-netbsd size=219 + bin/i386-netbsd/mktexlsr + bin/i386-netbsd/tlmgr + tlpkg/installer/lz4/lz4.i386-netbsd + tlpkg/installer/wget/wget.i386-netbsd + tlpkg/installer/xz/xz.i386-netbsd + +name texlive.infra.i386-solaris +category TLCore +revision 58212 +shortdesc i386-solaris files of texlive.infra +containersize 306488 +containerchecksum c8627ea0dcf3d36ce293f130b573c5b909dec968efab82c337aa539c7f962e9fe685ff8045639875f0457aebe75e32e157d08bf5c83edb78f4443c451e737880 +binfiles arch=i386-solaris size=211 + bin/i386-solaris/mktexlsr + bin/i386-solaris/tlmgr + tlpkg/installer/lz4/lz4.i386-solaris + tlpkg/installer/wget/wget.i386-solaris + tlpkg/installer/xz/xz.i386-solaris + +name texlive.infra.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of texlive.infra +containersize 644044 +containerchecksum 3923162b0ee7adb2ec3d5d2e773e72373e198e6fbdf03f8d4c14ce1bd5d6b0633f23f717725e8eb4ac4a0399fe38f9a8dc819310fba4f81e08266445d0073617 +binfiles arch=universal-darwin size=481 + bin/universal-darwin/mktexlsr + bin/universal-darwin/tlmgr + tlpkg/installer/lz4/lz4.universal-darwin + tlpkg/installer/wget/wget.universal-darwin + tlpkg/installer/xz/xz.universal-darwin + +name texlive.infra.win32 +category TLCore +revision 58810 +shortdesc win32 files of texlive.infra +containersize 2759064 +containerchecksum ea3ad1e9f7c1ce14bd421e29363c5ffe2c01a532e22570362b2237929e6488180359dbd0c216018c432550f71e56463907450504eae9e32912ff5d6950cf649f +binfiles arch=win32 size=1587 + bin/win32/mktexlsr.exe + bin/win32/runscript.dll + bin/win32/runscript.exe + bin/win32/runscript.tlu + bin/win32/tlmgr.bat + bin/win32/wrunscript.exe + tlpkg/installer/curl/curl-ca-bundle.crt + tlpkg/installer/curl/curl.exe + tlpkg/installer/lz4/lz4.exe + tlpkg/installer/tar.exe + tlpkg/installer/wget/wget.exe + tlpkg/installer/xz/xz.exe + +name texlive.infra.x86_64-cygwin +category TLCore +revision 57940 +shortdesc x86_64-cygwin files of texlive.infra +containersize 180056 +containerchecksum c052348185f08a05da5da99252f837654318e59630a89aec0fe9e8704a4f725e21a887e673b86deeb6d8787696ff5d7b2a073a42bb5e544c4603980961fdd5ac +binfiles arch=x86_64-cygwin size=111 + bin/x86_64-cygwin/mktexlsr + bin/x86_64-cygwin/tlmgr + tlpkg/installer/lz4/lz4.x86_64-cygwin.exe + tlpkg/installer/xz/xz.x86_64-cygwin.exe + +name texlive.infra.x86_64-darwinlegacy +category TLCore +revision 58164 +shortdesc x86_64-darwinlegacy files of texlive.infra +containersize 326744 +containerchecksum 113dcc28a9c9df46680831a624ca4820bc3eea8dea371039ff58049f971407a5e88920aae2a2ab5693e31233de4da0290379d7390fbcca3cf0a0b17712431b61 +binfiles arch=x86_64-darwinlegacy size=221 + bin/x86_64-darwinlegacy/mktexlsr + bin/x86_64-darwinlegacy/tlmgr + tlpkg/installer/lz4/lz4.x86_64-darwinlegacy + tlpkg/installer/wget/wget.x86_64-darwinlegacy + tlpkg/installer/xz/xz.x86_64-darwinlegacy + +name texlive.infra.x86_64-linux +category TLCore +revision 57933 +shortdesc x86_64-linux files of texlive.infra +containersize 145504 +containerchecksum 3611f63adc970c8737414cf9b024165520f03b40eb60dcaddba70b3706b1c6d2e57b718dc29f2466ccae258d04660d483504886e535ee9062ceeb0114ca17cf3 +binfiles arch=x86_64-linux size=85 + bin/x86_64-linux/mktexlsr + bin/x86_64-linux/tlmgr + tlpkg/installer/lz4/lz4.x86_64-linux + tlpkg/installer/xz/xz.x86_64-linux + +name texlive.infra.x86_64-linuxmusl +category TLCore +revision 53254 +shortdesc x86_64-linuxmusl files of texlive.infra +containersize 536824 +containerchecksum 4ec14b45fbe8c5972cb313fe46eb16984310cdbe5dd618ddf3d72fac98d48e19c83b4d11426c5700c56393d2ee08c8c518f30cf5e904a24638566872809c9071 +binfiles arch=x86_64-linuxmusl size=474 + bin/x86_64-linuxmusl/mktexlsr + bin/x86_64-linuxmusl/tlmgr + tlpkg/installer/lz4/lz4.x86_64-linuxmusl + tlpkg/installer/wget/wget.x86_64-linuxmusl + tlpkg/installer/xz/xz.x86_64-linuxmusl + +name texlive.infra.x86_64-solaris +category TLCore +revision 58212 +shortdesc x86_64-solaris files of texlive.infra +containersize 332292 +containerchecksum a852ddfa048af6881717254ea2e159323fa0875beaaa3f572401ad894b6c2f745729e257b659336c5a0ee3adf2c8913f65024e0555307d337d046b376dbab791 +binfiles arch=x86_64-solaris size=248 + bin/x86_64-solaris/mktexlsr + bin/x86_64-solaris/tlmgr + tlpkg/installer/lz4/lz4.x86_64-solaris + tlpkg/installer/wget/wget.x86_64-solaris + tlpkg/installer/xz/xz.x86_64-solaris + +name texliveonfly +category Package +revision 55777 +shortdesc On-the-fly download of missing TeX live packages +longdesc The package provides a script that performs 'on the fly' +longdesc downloads of missing packages, while a document is being +longdesc compiled. (This feature is already available in the MikTeX +longdesc distribution for Windows machines.) To use the script, replace +longdesc your (LaTeX) compilation command with texliveonfly.py file.tex +longdesc (default options are --engine=pdflatex and +longdesc --arguments="-synctex=1 -interaction=nonstopmode", which may +longdesc all be changed). The script is designed to work on Linux +longdesc distributions. +depend texliveonfly.ARCH +containersize 6132 +containerchecksum 63353a768b700ea11982e9552046dfd1dc3d844883f03099833cabe2af5ccddecebd7ef737fbcd256c90304174165a4d283d4912f8311508e61c723d751619a7 +doccontainersize 700 +doccontainerchecksum 46d57a6ebd68a56d55ccddc68006693fcbad8ed8f809243a3ffac7adb82da58cbc28239b57556d5d8d6388ea034b6571557588ff9365d4891145d5cc3fabfaea +docfiles size=1 + texmf-dist/doc/support/texliveonfly/README details="Readme" +runfiles size=5 + texmf-dist/scripts/texliveonfly/texliveonfly.py +catalogue-ctan /support/texliveonfly +catalogue-license gpl3 +catalogue-topics install-mgmt + +name texliveonfly.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texliveonfly +containersize 344 +containerchecksum e87a171789bfd3ebfa26988e9c0b9d028a30b734c5d43c4bf4496531b156de0887f49e7eb110572ff67a7b7f03bc0dc5cb0939949df119bc69306422d2d14a41 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texliveonfly + +name texliveonfly.amd64-freebsd +category Package +revision 24062 +shortdesc amd64-freebsd files of texliveonfly +containersize 344 +containerchecksum 00d989b9191adfd4387bc11e633eceae73759100e223a25738c9bfe7642b9c25f490ed11e929408b56950c3a35ee56e698d12ec493cd8a579ca7273b6cb428bb +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texliveonfly + +name texliveonfly.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texliveonfly +containersize 344 +containerchecksum 25867c8359faf04506cc6d9d4cf7b325bd9a5f1e52e27c3f62f9fafae2847a31f7f60f840a40eddd9e1da1f00742f07a3f12cd974e8bae2aca2dad3cd791244f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texliveonfly + +name texliveonfly.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texliveonfly +containersize 344 +containerchecksum 1b22cc157eb393e8fa2af93cc3064a9fd687c44631c0838b5574236883c95bb8dec7f46f957d10b619ba69914e9b27123b1e5d50d4bba56878743f19c863faae +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texliveonfly + +name texliveonfly.i386-cygwin +category Package +revision 24062 +shortdesc i386-cygwin files of texliveonfly +containersize 344 +containerchecksum 810b373b4956f56ccd989e04c287df150ea97159f53c8af06872e52f633b3cfb1f5fc7b6f05dfa78a5f97d9deb078278d733789912d817f05c8271227325d566 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texliveonfly + +name texliveonfly.i386-freebsd +category Package +revision 24062 +shortdesc i386-freebsd files of texliveonfly +containersize 348 +containerchecksum 99d1eed7a6a29426bf95f9a8060e234c33b8fbef4caa6dd71232a7e750fe92fabc3310462c986ecf60056f43bc9f62fbcbe1478d27857bd72c39d6b46ce30d7d +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texliveonfly + +name texliveonfly.i386-linux +category Package +revision 24062 +shortdesc i386-linux files of texliveonfly +containersize 344 +containerchecksum 085f4b8949556bd9d1dc99fa6267d75964e5c5f4718c6f6c2580670ffcb1d0c206e490bff0a1560b597528a310f1407f3a07b2cbce36bb361d886a7de48a0431 +binfiles arch=i386-linux size=1 + bin/i386-linux/texliveonfly + +name texliveonfly.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texliveonfly +containersize 344 +containerchecksum 33fa4dfa0421aafee1fc02efedbd29b16cc22af8c79c5c6ddb69ac9de1bf4fffe8c6809cfae518a4755f8ffe8bfec185b9f4b5858c6844511fe1532eafa320d7 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texliveonfly + +name texliveonfly.i386-solaris +category Package +revision 24062 +shortdesc i386-solaris files of texliveonfly +containersize 344 +containerchecksum 28fb5c4ecd4cd017fba408512de48f707508d86428334f9bfee9464dbf72757418cdf65eefeff7049f3afd6ab4b34768fd65bd4b45c398aaeb7a9b0a25a3c769 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texliveonfly + +name texliveonfly.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texliveonfly +containersize 348 +containerchecksum 124fc29242894e0e0608ccd3f54bcecd8a37d2e87b32689cc64f4c05e79cfd82cd243ddb821c1a620c1e2d9a461fcfd403ee1fc1d8ee3e176c7775eec1057046 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texliveonfly + +name texliveonfly.win32 +category Package +revision 24062 +shortdesc win32 files of texliveonfly +containersize 688 +containerchecksum 00a147553e234ef7aa13d5fdb14c603a94ed54e57cea63dbd1b12cae76cc2b0e1cfd7c011180b04bf76622a5a0293c077910f5ee1ba9246d35e96569a5f48af5 +binfiles arch=win32 size=1 + bin/win32/texliveonfly.exe + +name texliveonfly.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texliveonfly +containersize 344 +containerchecksum f04cbd1a1cb4e03ec4d56efa2fd4b25bac5d2014b500439639af37fe87dfacf20b2ba29c53b9d33dcc224e6e659f1a100488c1422ff155c824322c9fe4b6522a +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texliveonfly + +name texliveonfly.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texliveonfly +containersize 352 +containerchecksum cc718527b59ec71e11bc84cd3634767dde287f442c593ee51412ab1f54879f408e03a31dfa136c2f27bbfffbba24c063a7936f7e01f7130af62e27e9f2b0a6a3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texliveonfly + +name texliveonfly.x86_64-linux +category Package +revision 24062 +shortdesc x86_64-linux files of texliveonfly +containersize 344 +containerchecksum 408999116542cdeca540692510f27b151057c43b2def2367c62c9f211a2a85aebb7754bd1e299e804742d08cf94e0db4a2cc3dd70c739a2ea3b3e3e49b6aa189 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texliveonfly + +name texliveonfly.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texliveonfly +containersize 352 +containerchecksum 0d5c46ceee1ac671bd85fd1f99e3a497a937eafbe88865bccce3de7c8ddc3d11b0751709399ecbb75536bb93163588806d4938471a78c8d675249592b6c6633a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texliveonfly + +name texliveonfly.x86_64-solaris +category Package +revision 24062 +shortdesc x86_64-solaris files of texliveonfly +containersize 344 +containerchecksum d6ca18903e22738dd78ce319879df988a73802102f1c631c50c455f667c957fbf89d73f7b7faa6fe3c6b2c63bd3bf7c0716899dd9ecf4f269367a34eae3c92af +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texliveonfly + +name texloganalyser +category Package +revision 54526 +shortdesc Analyse TeX logs +longdesc This perl script allows the user to extract (and display) +longdesc elements of the log file. +depend texloganalyser.ARCH +containersize 4180 +containerchecksum 85f491af4a3867283d56bc2d98ebcf491e622008b3a70bb2cae03b9deb38170e1c73088d109445fac11fcce6e10aac57f42f03066580a79c978dd19af1f74caa +doccontainersize 760 +doccontainerchecksum 8eb890f880dc56d37e29e2f0bb3228e36031d45010677097136d40959ba7ec0cdd10b5056169325f481318f137a9de2f180438f1716bfa12705fcf0db315e3cb +docfiles size=1 + texmf-dist/doc/support/texloganalyser/README details="Readme" +runfiles size=4 + texmf-dist/scripts/texloganalyser/texloganalyser +catalogue-ctan /support/texloganalyser +catalogue-license bsd +catalogue-topics log-manip +catalogue-version 0.11 + +name texloganalyser.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texloganalyser +containersize 344 +containerchecksum 3b04ea85cf835b29e892c5d0aed9ce144963e02e5b6d0191fb87863f345b0e23eec29b6e929afbd62b7c14103fd38880eb2e5c8cc37be44055917ae0494c7ff1 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texloganalyser + +name texloganalyser.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texloganalyser +containersize 344 +containerchecksum 181dde004680b9d393f08c5f27e40f7a92de5079e07006702402abdc42085cb2651f3cfe68f79d5e81d68affbec7d5c19ee4781fb4f43abb06a86b35aedb5892 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texloganalyser + +name texloganalyser.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texloganalyser +containersize 344 +containerchecksum 3c4847332799e302dd7f9d05387a07f96f5837e8ef4ee1148033aa16d8d04a334ad90bbf00ffbd44a0ede230fd9d6dc1902a9757cd9846534532b6c7f1053aea +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texloganalyser + +name texloganalyser.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texloganalyser +containersize 344 +containerchecksum 47192f4c3387edd367e1b9cafc54d2b3046ad97fddbf09ca845f2cbfbd77b14c7d8f86ad9891a931f28c55b66308217d68efd24d26a9735d1cb8509c68bb1cf7 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texloganalyser + +name texloganalyser.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of texloganalyser +containersize 340 +containerchecksum ec0d3e98b1cc4848b741e53efeca460eea9e90bf9867e55769b2f86a02c02d0570bc4ac2f48e7c061f30d033710d89982c4baa2d4144ae0615bd2b0f17a9c01b +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texloganalyser + +name texloganalyser.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texloganalyser +containersize 344 +containerchecksum d1d72996ff1ee0ada7e376f321a90be994a895812a938643b9a90d21108803f164a5846cc92d7a3ac518234f7fceba08c1980d1a701fcc92f5f2bc5c881ecc7b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texloganalyser + +name texloganalyser.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of texloganalyser +containersize 344 +containerchecksum 0aa932eff54bb1e842a153712e72614979aa6bd6e3f64a761ab1c261eecfcb2ecd06253728ee9ce21b599b61775d0a423408507ca9968056713f81f56163508b +binfiles arch=i386-linux size=1 + bin/i386-linux/texloganalyser + +name texloganalyser.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texloganalyser +containersize 344 +containerchecksum 690d67e853afde704296ff3edddab4217460985ec0f3431d2461bf3605cfe04ea97b06fc9937bf2e18f817b53ce8d076337515d1c8c5804321159a7b113aeb3a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texloganalyser + +name texloganalyser.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of texloganalyser +containersize 344 +containerchecksum e8ff956240c948ddc5646370de7b4e61ee45f8bf6ce485d30e55fe6291400cda593ef7a292d60ebb17fa545824164703c7308d778b6b8d88311aebba142b33c4 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texloganalyser + +name texloganalyser.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texloganalyser +containersize 340 +containerchecksum f46379f38fc4f1dd4f9641c406d2b66c1911ad63b16e90e55ec2d63928111b144aa1c3f1b2951a7c0e8d2ffb248eb7181539725f9791a29fae99f064c6951d6d +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texloganalyser + +name texloganalyser.win32 +category Package +revision 15404 +shortdesc win32 files of texloganalyser +containersize 692 +containerchecksum 293dcf9679eb09bf361463c4ce26e762f173b154df2d4692ad9e6a85deed9edd1f647ea9e011a2cc484c336df3b4bf68009a9db31a72a12a736b309c2f969dac +binfiles arch=win32 size=1 + bin/win32/texloganalyser.exe + +name texloganalyser.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texloganalyser +containersize 344 +containerchecksum 14d240d7c6833ef1a5614db942659993f34192dc18f2724857960f64f0379fa8890e23207c3f5a8b1f40b4b173156d13acaf4cc4e950db4c9c33b4f12e5542d0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texloganalyser + +name texloganalyser.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texloganalyser +containersize 352 +containerchecksum a6b61978ec49e26c0e79fd6c2b8c0415711380e5492258b14ae59ab7c8478cf65442bfb9ebaa2a9f2f891de515082772538d5a8c3bb919631d23bfa1bde709a4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texloganalyser + +name texloganalyser.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of texloganalyser +containersize 344 +containerchecksum f528315a820e989cc6f9824336f4dcc2ece6f1673e018dc7ba2a4b39d02aa7ffd0205c5d58df3b4c2c25dacafb09d2921772021db981866929f01e41c1112f63 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texloganalyser + +name texloganalyser.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texloganalyser +containersize 348 +containerchecksum 41b6af18b74500cbeb4e4c5cf1484482c567ae71077e58bd0e571a2dd4d1375bd2076412cb1df2e028986c7082ba686d82b5da91aa803a4fb9de2860f19908ab +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texloganalyser + +name texloganalyser.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texloganalyser +containersize 344 +containerchecksum a14d86a5267e04a76abd8f45f196ee727bcd1be12e83a02d8866a6482f33060e45e1f70437bd6b9316157940d0a7501ec079fa778e7b92379172163a8c3bd6a5 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texloganalyser + +name texlogos +category Package +revision 19083 +shortdesc Ready-to-use LaTeX logos +relocated 1 +longdesc TeXlogos defines an assortment of frequently used logos not +longdesc contained in base LaTeX itself. The Metafont, MetapostAMS, +longdesc BibTeX and SliTeX logos are defined, as long as you have the +longdesc appropriate CM/Logo/AMS fonts. Currency symbols Euro, Cent, +longdesc Yen, Won and Naira are defined so as not to need TS1-encoded +longdesc fonts. Also defined are the C++ logo, with the '+' signs +longdesc properly positioned, and the logo of the Vienna University +longdesc Business Administration Center (BWZ). +containersize 1960 +containerchecksum d3b5f5ea0dd90e925bffc1ac0f790848d1c2abe50003e2591c8efb219b4a205d48e4420d2000b3de15b1ff9d4d0bd9e083ba1694d4ee34febd68f8db0df16ea2 +runfiles size=2 + RELOC/tex/latex/texlogos/texlogos.sty +catalogue-also hologo +catalogue-ctan /macros/latex/contrib/texlogos/texlogos.sty +catalogue-license lppl +catalogue-topics logo +catalogue-version 1.3.1 + +name texmate +category Package +revision 15878 +shortdesc Comprehensive chess annotation in LaTeX +relocated 1 +longdesc TeXmate formats chess games from very simple ascii input. The +longdesc clean "1. e4 e5; 2. Nf3 Nc6; 3. Bb5 a6" will produce the same +longdesc results as the sloppier "1 e4 e5; Nf3 Nc6 3.. Bb5 a6". The +longdesc resulting format is fully customizable. There are 4 levels of +longdesc commentary: 1 is the main game, 2-3 are commentaries. Each has +longdesc its fonts, punctuation marks, etc., and these are also +longdesc customizable. The package includes a tool for the creation of +longdesc diagrams. The package works in conjunction with skak to produce +longdesc diagrams of the current position automatically. For chess +longdesc fonts, the package uses the chessfss system. +containersize 6000 +containerchecksum 52c35f096426385f229b7ddb66c8ec2a20539bbad6296f2bdd230c2da79edf5668fdde0fc7ebac7099a414b622b31309fa7f610564c8212602f71dca7193c597 +doccontainersize 233672 +doccontainerchecksum dc1ca347bfb0ba8c54403e643b4052604f98b39ced23d092808cb221e930384f49d1c34794a933b0a05c7691ef04158688653ce69eb8a4b72e9172b4254954ee +docfiles size=82 + RELOC/doc/latex/texmate/README + RELOC/doc/latex/texmate/texmate2manual.pdf details="Package documentation" + RELOC/doc/latex/texmate/texmate2manual.tex +srccontainersize 6644 +srccontainerchecksum b75362c3b748021934052ef38b9f95ad7047804d5100b2a00bd8f9e396103d2d641f1fc5a3c636cb42ed66fa88488f6c69d3b188e3a55f715df2d19c05331889 +srcfiles size=9 + RELOC/source/latex/texmate/texmate.dtx + RELOC/source/latex/texmate/texmate.ins +runfiles size=7 + RELOC/tex/latex/texmate/texmate.sty +catalogue-ctan /macros/latex/contrib/texmate +catalogue-license lppl +catalogue-topics games +catalogue-version 2 + +name texments +category Package +revision 15878 +shortdesc Using the Pygments highlighter in LaTeX +relocated 1 +longdesc A package which allows to use the Pygments highlighter inside +longdesc LaTeX documents. Pygments supports syntax colouring of over 50 +longdesc types of files, and ships with multiple colour schemes. +containersize 1352 +containerchecksum 6b0bc365ff7ba6a8118a4e83350e73d5c4dc40e6c30a0ed3267f0f20178a08264866bd016aa3a9da72d4f27a20bf7e8f658417561468294745b78911ff46fd4a +doccontainersize 87000 +doccontainerchecksum 67b7843546704e9b48f6ffe75a33ab68a5d8ededf3cd45ca329c6ca5ffcc783f4ecb9a663fc4eb94fb554e3c43e753512f82dc8f2f7924c1bf4bb8942aabf749 +docfiles size=26 + RELOC/doc/latex/texments/README details="Readme" + RELOC/doc/latex/texments/texments.pdf details="Package documentation" +srccontainersize 4868 +srccontainerchecksum 92d2216144fcbcc96907fd09ece64428684476ab8e9f3a0c60e898f9f4cf7e0627fb145adbd8186d56a6d5a21563c41d62871e860ad51d9b74e5a0f6441a44de +srcfiles size=4 + RELOC/source/latex/texments/texments.dtx + RELOC/source/latex/texments/texments.ins +runfiles size=1 + RELOC/tex/latex/texments/texments.sty +catalogue-also minted verbments +catalogue-ctan /macros/latex/contrib/texments +catalogue-license lppl +catalogue-topics listing +catalogue-version 0.2.0 + +name texnegar +category Package +revision 57692 +shortdesc Kashida justification in XeLaTeX and LuaLaTeX +relocated 1 +longdesc In some cursive scripts such as Persian or Arabic, kashida is +longdesc used to create justification. In this type of justification +longdesc characters are elongated rather than expanding spaces between +longdesc words. The kashida justification in xepersian has many bugs. +longdesc Also it has problems with some fonts. The xepersian-hm package +longdesc was the first attempt to fix these bugs in xepersian, which +longdesc uses the XeTeX engine. This package extends the kashida +longdesc justification to be used with the LuaTeX engine, too. +longdesc Explanation of the package name: Negar, in Persian, is the +longdesc present stem of negaashtan meaning to design, to paint, to +longdesc write; and as a noun it means "sweetheart, idol, beloved, +longdesc figuratively referring to a beautiful woman, pattern, painting, +longdesc and artistic design". +containersize 14600 +containerchecksum 09e4b3753d99fb4f99c150da87f5602dad5a28778f9489e67f6e4e45d5f9dbdf0edac43826c1a162280e9399d28d050b5ff230713b2e45cc2804f21a76dba0f6 +doccontainersize 2104876 +doccontainerchecksum 403e75ef47ffc6da77e4d61dcc95419932d2b62ebb0c107cf612a195b0e2a24862139a518ead801ee15f56546c44bf9cf0e56aad7b4d8a7ede8529063aa745d1 +docfiles size=1525 + RELOC/doc/latex/texnegar/INSTALL.txt + RELOC/doc/latex/texnegar/README.txt details="Readme" + RELOC/doc/latex/texnegar/doc-ligature-texnegar.pdf + RELOC/doc/latex/texnegar/doc-ligature-xep.pdf + RELOC/doc/latex/texnegar/doc-samples-glyph.pdf + RELOC/doc/latex/texnegar/doc-samples-hrule.pdf + RELOC/doc/latex/texnegar/doc-samples-xep.pdf + RELOC/doc/latex/texnegar/texnegar-doc.ltx + RELOC/doc/latex/texnegar/texnegar-doc.pdf details="User documentation" + RELOC/doc/latex/texnegar/texnegar-luatex-glyph.pdf + RELOC/doc/latex/texnegar/texnegar-luatex-glyph.tex + RELOC/doc/latex/texnegar/texnegar-luatex-leaders-glyph.pdf + RELOC/doc/latex/texnegar/texnegar-luatex-leaders-glyph.tex + RELOC/doc/latex/texnegar/texnegar-luatex-leaders-hrule.pdf + RELOC/doc/latex/texnegar/texnegar-luatex-leaders-hrule.tex + RELOC/doc/latex/texnegar/texnegar-xetex-bidi-glyph.pdf + RELOC/doc/latex/texnegar/texnegar-xetex-bidi-glyph.tex + RELOC/doc/latex/texnegar/texnegar-xetex-bidi-leaders-glyph.pdf + RELOC/doc/latex/texnegar/texnegar-xetex-bidi-leaders-glyph.tex + RELOC/doc/latex/texnegar/texnegar-xetex-bidi-leaders-hrule.pdf + RELOC/doc/latex/texnegar/texnegar-xetex-bidi-leaders-hrule.tex + RELOC/doc/latex/texnegar/texnegar-xetex-xepersian-glyph.pdf + RELOC/doc/latex/texnegar/texnegar-xetex-xepersian-glyph.tex + RELOC/doc/latex/texnegar/texnegar-xetex-xepersian-leaders-glyph.pdf + RELOC/doc/latex/texnegar/texnegar-xetex-xepersian-leaders-glyph.tex + RELOC/doc/latex/texnegar/texnegar-xetex-xepersian-leaders-hrule.pdf + RELOC/doc/latex/texnegar/texnegar-xetex-xepersian-leaders-hrule.tex + RELOC/doc/latex/texnegar/texnegar.pdf details="Source code documentation" + RELOC/doc/latex/texnegar/xepersian-XB.pdf + RELOC/doc/latex/texnegar/xepersian-XB.tex +srccontainersize 17216 +srccontainerchecksum 9785ac1b0a7ce4f33458bfb3acc203098c8985d6381eec5c610de16b22e2e60ecb386bb5b98da0f9f082b901b9dee096135c5c2a38d5233e92fb09413de214f9 +srcfiles size=26 + RELOC/source/latex/texnegar/texnegar.dtx + RELOC/source/latex/texnegar/texnegar.ins +runfiles size=28 + RELOC/tex/latex/texnegar/texnegar-char-table.lua + RELOC/tex/latex/texnegar/texnegar-common-kashida.tex + RELOC/tex/latex/texnegar/texnegar-ini.lua + RELOC/tex/latex/texnegar/texnegar-ini.tex + RELOC/tex/latex/texnegar/texnegar-luatex-kashida.lua + RELOC/tex/latex/texnegar/texnegar-luatex.sty + RELOC/tex/latex/texnegar/texnegar-xetex-kashida.tex + RELOC/tex/latex/texnegar/texnegar-xetex.sty + RELOC/tex/latex/texnegar/texnegar.lua + RELOC/tex/latex/texnegar/texnegar.sty +catalogue-contact-bugs https://bitbucket.org/dma8hm1334/texnegar/issues +catalogue-contact-home https://dma8hm1334.bitbucket.io +catalogue-contact-repository https://bitbucket.org/dma8hm1334/texnegar +catalogue-ctan /macros/unicodetex/latex/texnegar +catalogue-license lppl1.3c +catalogue-topics arabic persian expl3 +catalogue-version 0.1e + +name texonly +category Package +revision 50985 +shortdesc A sample document in Plain TeX +relocated 1 +longdesc A file written with TeX, not using any packgages or sty-files, +longdesc to be compiled with TeX or pdfTeX only, not with LaTeX et al. +containersize 456 +containerchecksum a51d7288abaa3bd03e8f3816eaf2d7f8931340e95e3897ea4a63ae3d251277a78e71ae66b617da6cc81a8100c9ffe64a1c9142369c67d58daf200ab2ed7c9682 +doccontainersize 73548 +doccontainerchecksum 5f03987ce079f21801f08a7e325a36c6f1065f5cc32ff2dbec7989bdd3a6b3c54ade8f96a71e19553972d3c36454a08b007adf3287a7be7972a8b3ce6961778a +docfiles size=22 + RELOC/doc/plain/texonly/README.md details="Readme" + RELOC/doc/plain/texonly/texonly2.pdf details="Package documentation" language="de-de" + RELOC/doc/plain/texonly/texonly2.tex +catalogue-also gentle +catalogue-ctan /info/texonly +catalogue-license lppl1.3c +catalogue-topics tut-plaintex +catalogue-version 2 + +name texosquery +category Package +revision 53676 +shortdesc Cross-platform Java application to query OS information +longdesc This package provides a cross-platform Java application to +longdesc query OS information designed for use in TeX's shell escape +longdesc mechanism. The application can query the following: locale and +longdesc codeset current working directory user home directory temporary +longdesc directory OS name, arch and version Current date and time in +longdesc PDF format (for TeX formats that don't provide +longdesc \pdfcreationdate) Date-time stamp of a file in PDF format (for +longdesc TeX formats that don't provide \pdffilemoddate) Size of a file +longdesc in bytes (for TeX formats that don't provide \pdffilesize) +longdesc Contents of a directory (captured as a list) Directory contents +longdesc filtered by regular expression (captured as a list) URI of a +longdesc file Canonical path of a file All paths use a forward slash as +longdesc directory divider so results can be used, for example, in +longdesc commands like \includegraphics. There are files provided for +longdesc easy access in TeX documents: texosquery.tex: generic TeX code +longdesc texosquery.sty: LaTeX package This provides commands to run +longdesc texosquery using TeX's shell escape mechanism and capture the +longdesc result in a control sequence. The category code of most of +longdesc TeX's default special characters (and some other potentially +longdesc problematic characters) is temporarily changed to 12 while +longdesc reading the result. +depend texosquery.ARCH +containersize 170304 +containerchecksum d454a95139920c24404a501ad3bbde4ae8e809e0f0b6b7c32053d375e0cac31d81087a53d65ab067c9c6dfd988ae90429adbc5d7cd2e1b23f41f46dbf6a25056 +doccontainersize 503224 +doccontainerchecksum 51bc4e5a9f62b4526198b380fa69dd2d79ff69ccf0915aef4269d890fed057c4130ccca65e0c279e58ebfb72347d627b186534138f9c4bc8d395677c73a2a0fc +docfiles size=130 + texmf-dist/doc/support/texosquery/CHANGES + texmf-dist/doc/support/texosquery/README.md details="Readme" + texmf-dist/doc/support/texosquery/texosquery.pdf details="Package documentation" +srccontainersize 71404 +srccontainerchecksum 5ed0dddadb7e8f406635d7a2cc309a030826607a76b4520b1f47a07affb603d96577118ba1fb5b9797322aa49a68616acbbcdde39bc8538c54c5d2fa1aebe510 +srcfiles size=127 + texmf-dist/source/support/texosquery/java/FileListType.java + texmf-dist/source/support/texosquery/java/FilePathSortComparator.java + texmf-dist/source/support/texosquery/java/FileSortComparator.java + texmf-dist/source/support/texosquery/java/FileSortType.java + texmf-dist/source/support/texosquery/java/FileWalkVisitor.java + texmf-dist/source/support/texosquery/java/Manifest-jre5.txt + texmf-dist/source/support/texosquery/java/Manifest-jre7.txt + texmf-dist/source/support/texosquery/java/Manifest-jre8.txt + texmf-dist/source/support/texosquery/java/QueryAction.java + texmf-dist/source/support/texosquery/java/QueryActionType.java + texmf-dist/source/support/texosquery/java/TeXOSQuery.java + texmf-dist/source/support/texosquery/java/TeXOSQueryJRE5.java + texmf-dist/source/support/texosquery/java/TeXOSQueryJRE7.java + texmf-dist/source/support/texosquery/java/TeXOSQueryJRE8.java + texmf-dist/source/support/texosquery/texosquery-jre5.batch + texmf-dist/source/support/texosquery/texosquery-jre8.batch + texmf-dist/source/support/texosquery/texosquery.batch + texmf-dist/source/support/texosquery/texosquery.dtx + texmf-dist/source/support/texosquery/texosquery.ins +runfiles size=72 + texmf-dist/scripts/texosquery/texosquery-jre5.jar + texmf-dist/scripts/texosquery/texosquery-jre5.sh + texmf-dist/scripts/texosquery/texosquery-jre8.jar + texmf-dist/scripts/texosquery/texosquery-jre8.sh + texmf-dist/scripts/texosquery/texosquery.jar + texmf-dist/scripts/texosquery/texosquery.sh + texmf-dist/tex/latex/texosquery/texosquery.cfg + texmf-dist/tex/latex/texosquery/texosquery.sty + texmf-dist/tex/latex/texosquery/texosquery.tex +catalogue-contact-repository https://github.com/nlct/texosquery +catalogue-ctan /support/texosquery +catalogue-license lppl1.3 +catalogue-topics sys-supp +catalogue-version 1.7 + +name texosquery.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texosquery +containersize 384 +containerchecksum 1b9b43dcda148f066b387905a1838bf6c80a234323a5d5dddd675dbff90a7e94cc5690aa9bee3ed591515d86167b9790bec0b4e66a52f35b69c7021e38ea274e +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/texosquery + bin/aarch64-linux/texosquery-jre5 + bin/aarch64-linux/texosquery-jre8 + +name texosquery.amd64-freebsd +category Package +revision 43596 +shortdesc amd64-freebsd files of texosquery +containersize 384 +containerchecksum ca41bb8071e31b3e93fd6a230c06eb46e23f6fbd81b8524bf7b587a30026378b2670ade66bbc5624825ea13ef5d60b60206797870794d24480bf3632d542d1dc +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/texosquery + bin/amd64-freebsd/texosquery-jre5 + bin/amd64-freebsd/texosquery-jre8 + +name texosquery.amd64-netbsd +category Package +revision 43596 +shortdesc amd64-netbsd files of texosquery +containersize 380 +containerchecksum 8acbc016b85c9b1823da4a2479db82f7c342b1c678c30a0d3a465c0e3c90cffb261f11570a7053418a63de85b2d5fb94c3610d04fd8dd54425188aeb91da9a8a +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/texosquery + bin/amd64-netbsd/texosquery-jre5 + bin/amd64-netbsd/texosquery-jre8 + +name texosquery.armhf-linux +category Package +revision 43596 +shortdesc armhf-linux files of texosquery +containersize 384 +containerchecksum 176393ffbd300fe5624dec531fefce31b4964f25f8c971ca45755f6297dcff04b2dc09cfd0b95b5c86ef669ceea869c8698b8c78057c7edfee36458e10a37936 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/texosquery + bin/armhf-linux/texosquery-jre5 + bin/armhf-linux/texosquery-jre8 + +name texosquery.i386-cygwin +category Package +revision 43596 +shortdesc i386-cygwin files of texosquery +containersize 380 +containerchecksum 95c73c14fcf01b1032e9dfbc0ce0cb180c43d5f4fbfec5817a67a00b7b3e9491b16ada933ebfe9d7d01b103610df7e1aae6e58eec9ce175598ae8b254dc735da +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/texosquery + bin/i386-cygwin/texosquery-jre5 + bin/i386-cygwin/texosquery-jre8 + +name texosquery.i386-freebsd +category Package +revision 43596 +shortdesc i386-freebsd files of texosquery +containersize 384 +containerchecksum cfe81b5972353ded4e4d54bb573250927997aa3a93a4e8c738757d7b4ef0ddb36bd10ac3b1d456783a581d18cdc2f3e96fd76cada46fe5e4db92bbbdcebc9d38 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/texosquery + bin/i386-freebsd/texosquery-jre5 + bin/i386-freebsd/texosquery-jre8 + +name texosquery.i386-linux +category Package +revision 43596 +shortdesc i386-linux files of texosquery +containersize 380 +containerchecksum 21f5e0370f6c012cf7cb9eb649572f07a84fdcf89cca9346c0383c3f6a95cd053c1397ddf2eb4686fbbe91e2be5bd194713e5eced17969c79bfbbd424ab55468 +binfiles arch=i386-linux size=3 + bin/i386-linux/texosquery + bin/i386-linux/texosquery-jre5 + bin/i386-linux/texosquery-jre8 + +name texosquery.i386-netbsd +category Package +revision 43596 +shortdesc i386-netbsd files of texosquery +containersize 380 +containerchecksum e2558e56c1df62a3983d3e69bd7599f8e34dd9b5c0b77b8efbda0753884f89678c5ca5d529ccb641477657583f98635f0b97af9ab6f7d6f448e6e43400b2b7d4 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/texosquery + bin/i386-netbsd/texosquery-jre5 + bin/i386-netbsd/texosquery-jre8 + +name texosquery.i386-solaris +category Package +revision 43596 +shortdesc i386-solaris files of texosquery +containersize 380 +containerchecksum 67e443f74811a889d1ad99eefcefb9e870bbf1e0fa7226651447f4065b2b55fcd30b1e4320b67f86c0f1fa93bf0bbc229fb7215176ed8d854c071c068eaeeddf +binfiles arch=i386-solaris size=3 + bin/i386-solaris/texosquery + bin/i386-solaris/texosquery-jre5 + bin/i386-solaris/texosquery-jre8 + +name texosquery.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texosquery +containersize 380 +containerchecksum 6a00e4ebcbc78a36f6cbc6ffd59ad4595b719cb50c9175d476ce1d3bd6492dbab5d52135fc310c69d8ac58754d219211f34347f156df103b705b87e1f3465f1b +binfiles arch=universal-darwin size=3 + bin/universal-darwin/texosquery + bin/universal-darwin/texosquery-jre5 + bin/universal-darwin/texosquery-jre8 + +name texosquery.win32 +category Package +revision 43601 +shortdesc win32 files of texosquery +containersize 712 +containerchecksum 1940f414bd28dfe866606a01903cf289826be32a007c2d578228d30a3a13fba5a7092de90aeae3d9541f26bae6ee0993a36f7148142f6dcab3deceda4df7b318 +binfiles arch=win32 size=3 + bin/win32/texosquery-jre5.exe + bin/win32/texosquery-jre8.exe + bin/win32/texosquery.exe + +name texosquery.x86_64-cygwin +category Package +revision 43596 +shortdesc x86_64-cygwin files of texosquery +containersize 384 +containerchecksum 5dad51ba702e1ce3652426345ac981da49c392b69a24eb4929cddab0f2c236dcecd32af2752b8cd61d5a02aae00bc5985d930668c3767ecfddac7b422ac96e0b +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/texosquery + bin/x86_64-cygwin/texosquery-jre5 + bin/x86_64-cygwin/texosquery-jre8 + +name texosquery.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texosquery +containersize 388 +containerchecksum 61a8dfd01a6dbef15e9d46f6f5c8225a24d2601bfaa129a7e8628557aefc02c11999f377c0b6c516eb14acc3e81e3872caef477444d73a124c426717220cb40d +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/texosquery + bin/x86_64-darwinlegacy/texosquery-jre5 + bin/x86_64-darwinlegacy/texosquery-jre8 + +name texosquery.x86_64-linux +category Package +revision 43596 +shortdesc x86_64-linux files of texosquery +containersize 380 +containerchecksum 70a2c2968c961489271605f575fb359ad24597f35f2b328004ea83fbf20e5fa241f24ea0fa8345b914ad5444916b5ba0882cb5c02dd7d4ec1186974cba5d4cc4 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/texosquery + bin/x86_64-linux/texosquery-jre5 + bin/x86_64-linux/texosquery-jre8 + +name texosquery.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texosquery +containersize 388 +containerchecksum e922e6de64bc9e31a9031afe9500356770cfe9ea170c9620b94b6eca00b6fcc2626114438c653ee5edc9418282db834826736601dc869de59c7349ecc58460e5 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/texosquery + bin/x86_64-linuxmusl/texosquery-jre5 + bin/x86_64-linuxmusl/texosquery-jre8 + +name texosquery.x86_64-solaris +category Package +revision 43596 +shortdesc x86_64-solaris files of texosquery +containersize 384 +containerchecksum 59fbc59145421a38be50434d3b6635282ed0087ae5efc9ca8f3e8a5a953cf8b9d1791e0be2cfba382e55f7689ce49ff42f834a1bb3f3da489d06f7234ed4c7e0 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/texosquery + bin/x86_64-solaris/texosquery-jre5 + bin/x86_64-solaris/texosquery-jre8 + +name texplate +category Package +revision 56083 +shortdesc A tool for creating document structures based on templates +longdesc TeXplate is a tool for creating document structures based on +longdesc templates. The application name is a word play on TeX and +longdesc template, so the purpose seems quite obvious: we want to +longdesc provide an easy and straightforward framework for reducing the +longdesc typical code boilerplate when writing TeX documents. Also note +longdesc that one can easily extrapolate the use beyond articles and +longdesc theses: the application is powerful enough to generate any +longdesc text-based structure, given that a corresponding template +longdesc exists. +depend texplate.ARCH +containersize 3031472 +containerchecksum dc7f998438ad699af41d1a83214ba5b62399c5390ad1672b40ecaf9bc48fd04ca91bf4ceb1bf75c89351d612d8c9f0acd3bd145b5560673bb864fdb4c18375f2 +doccontainersize 110368 +doccontainerchecksum 620f820e08f000032608280ad4e93d5aabbcf6e42008c1f74d2b876d5fd67724ca1d6ce22d6046184cd4e0ec205f4aad767a24db79d11e6c40269df32b5644b6 +docfiles size=35 + texmf-dist/doc/support/texplate/README.md details="Readme" + texmf-dist/doc/support/texplate/texplate-manual.pdf details="Package documentation" + texmf-dist/doc/support/texplate/texplate-manual.tex +srccontainersize 8428 +srccontainerchecksum e87854021487832cecab1cb8a5585d44c25a80c52ed4d020cebaae9b7c1c938c3ffd43ed51a1910442440131e4d8f6acf2af095b58d2a119ea279e3de78736b6 +srcfiles size=21 + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/Main.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/TemplateProcessing.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/exceptions/InvalidKeySetException.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/exceptions/InvalidTemplateException.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/exceptions/TemplateMergingException.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/Configuration.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/Template.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/CSVListHandler.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/FileReaderHandler.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/Handler.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/MergingUtils.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/MessageUtils.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/PathUtils.kt + texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/ValidatorUtils.kt + texmf-dist/source/support/texplate/main/resources/org/islandoftex/texplate/templates/texplate-article.toml + texmf-dist/source/support/texplate/main/resources/org/islandoftex/texplate/templates/texplate-standalone.toml +runfiles size=822 + texmf-dist/scripts/texplate/texplate.jar + texmf-dist/scripts/texplate/texplate.sh +catalogue-contact-bugs https://gitlab.com/islandoftex/texplate/issues +catalogue-contact-repository https://gitlab.com/islandoftex/texplate +catalogue-ctan /support/texplate +catalogue-license bsd3 +catalogue-topics doc-gen gentex doc-templ +catalogue-version 1.0.3 + +name texplate.aarch64-linux +category Package +revision 53444 +shortdesc aarch64-linux files of texplate +containersize 336 +containerchecksum 831509fd57c47b9fb80bddb3b8f13f0865dc58522e3682a4e27c25bac04abd1b1c99dee036d0ec3afbe939e6faf0ab585b0cb5f520eede7194842b7e11e5cf43 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texplate + +name texplate.amd64-freebsd +category Package +revision 53444 +shortdesc amd64-freebsd files of texplate +containersize 340 +containerchecksum c14d3b8fa870e498034f220aaa3f5a8d5592f8a4665e7a82677ea4cb29b8e17f64e9735c89f876a36540a64d82c6b5e526fc9b5cd21350d11b95291715a6d7a5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texplate + +name texplate.amd64-netbsd +category Package +revision 53444 +shortdesc amd64-netbsd files of texplate +containersize 340 +containerchecksum 180bcf0763ec52ae7d456c4797c3601dd538d404760648972d7502cb689c54980286601a416ae2a9dfe364d4ef673f78c9f3736c7f4eecdf9e7d707aee69666a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texplate + +name texplate.armhf-linux +category Package +revision 53444 +shortdesc armhf-linux files of texplate +containersize 336 +containerchecksum d320e71a7e08762c8432c1ae7d564a55a297f338e5af6241ced27c50016edfc7fe459b7391426b0548c579729ff5cad5cdf1080022111989f10a7243122885f0 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texplate + +name texplate.i386-cygwin +category Package +revision 53444 +shortdesc i386-cygwin files of texplate +containersize 336 +containerchecksum 3b22156cba0c8f31e26a1dc148ac0ae3d9f42dec12e7e1a520e3600bebd0733bc1299ceab372327449943465a1d01b68caf6438119d1235b82d19c42359f8456 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texplate + +name texplate.i386-freebsd +category Package +revision 53444 +shortdesc i386-freebsd files of texplate +containersize 340 +containerchecksum e69e3cd2fee1c998526005ac4c4276c28035c15e7241c3e922c45b78626023a68a89c9e4477986a66f6f51d940fd825790270da9450925ba0d42c555975454b2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texplate + +name texplate.i386-linux +category Package +revision 53444 +shortdesc i386-linux files of texplate +containersize 340 +containerchecksum 2ea971bbaeab27c7c5af59bf38eec68fc8282744fb19d7a2f2abc5f8dae16e77b9c31ebd81be2b69f8cc5eb60e68a39477e93841ee9085d631f063a7e775bb23 +binfiles arch=i386-linux size=1 + bin/i386-linux/texplate + +name texplate.i386-netbsd +category Package +revision 53444 +shortdesc i386-netbsd files of texplate +containersize 336 +containerchecksum 01cac8d4289a1839aeea6abd4b2d12b42f528ee40a8418cc034b332398559c3472ce8590a1862419e2ab8a86728177f3be0a4d5fc993aa5c4ac38494427df4d5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texplate + +name texplate.i386-solaris +category Package +revision 53444 +shortdesc i386-solaris files of texplate +containersize 340 +containerchecksum 84121bb25c1769ee7491b0f0201b8031d6b2618dd1831cb34544aad4f307ab9e6d624bbae8f3e566e930d9c7c7231891b326866ca96f34514e00698209ac7629 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texplate + +name texplate.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texplate +containersize 340 +containerchecksum 95f64530d444b24136965bab49bcd1a189a95824a02b8cee7a7d5f536bfbb5fb3af69f72229b494d9b27e24a6cc7eb41fbbcd1aacb8e19c21ccf06725c413de7 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texplate + +name texplate.win32 +category Package +revision 53444 +shortdesc win32 files of texplate +containersize 680 +containerchecksum 1b90b1f46888aa2808ba6dd0c55c840f80679d8d5accc6d6600893caa33f8b07793e45c92e3ea96ded5e751d5e7707d771a2b180c7623b417618b28ae64ca767 +binfiles arch=win32 size=1 + bin/win32/texplate.exe + +name texplate.x86_64-cygwin +category Package +revision 53444 +shortdesc x86_64-cygwin files of texplate +containersize 340 +containerchecksum e31eb956ddd79d195e50c1e7c21d481ffaadb7d1dbdedc39252f8f17e23af56b7421c159dbc7e5717e3b60724655d95311e058aa0d0f3ca5edfa6f6e94df4703 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texplate + +name texplate.x86_64-darwinlegacy +category Package +revision 53444 +shortdesc x86_64-darwinlegacy files of texplate +containersize 348 +containerchecksum 2e6eb16925e3f9be665881802bf69d83759fb691cafc594f2bfcae8ca7dc4fae64b2d5b7f470d34878fdbc9bff6a7fcbbd29a0bee26da97ec7e18ed06634c748 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texplate + +name texplate.x86_64-linux +category Package +revision 53444 +shortdesc x86_64-linux files of texplate +containersize 340 +containerchecksum ec76777d51f505e4bc3acca4f188d7695a445fdc33b39d212311c76672d42ee60d72d11cb7e383b0022fbd8e2e1a8e299ce47035b8db670276ba1a0bb2acb059 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texplate + +name texplate.x86_64-linuxmusl +category Package +revision 53444 +shortdesc x86_64-linuxmusl files of texplate +containersize 344 +containerchecksum 26e552c3607a15c94077b6fa89468322dc418ce5cbf632227579ee8cd53a499c1a843d093961e88cf326388048b5f39168e514276580ffcbd3e4359ac17e54df +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texplate + +name texplate.x86_64-solaris +category Package +revision 53444 +shortdesc x86_64-solaris files of texplate +containersize 340 +containerchecksum 03fb00fbd29fdba7d66f9f736ddf687e178c8a5f896127eddf7263979234863e849d650632fdd9c9d9ce65e127d6706dcdc4ffd22318027b21b50f33bd81c69e +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texplate + +name texpower +category Package +revision 29349 +shortdesc Create dynamic online presentations with LaTeX +relocated 1 +longdesc TeXPower is a bundle of packages intended to provide an +longdesc all-inclusive environment for designing pdf screen +longdesc presentations to be viewed in full-screen mode, especially for +longdesc projecting `online' with a video beamer. For some of its core +longdesc functions, it uses code derived from ppower4 packages. It is, +longdesc however, not a complete environment in itself: it relies on an +longdesc existing class for preparing slides (such as foiltex or +longdesc seminar) or another package such as pdfslide. +depend tpslifonts +containersize 40504 +containerchecksum 7e2efadabaf173fd30c592cbcd2338563b8690048ccaffd86efb079a04b7b95c8ab113b99205cbb2912eae3a709a110d7b152270422cf2cbfd2ab85d42f12d69 +doccontainersize 330264 +doccontainerchecksum e61965b5e31b487daba383a4e6ebc0dba85475f8cade2faae6adb8576ec7ec544b518a6e0e105aa185ff82fd6aba7a9ea4abda2a9446d52f5b3acdb42580e315 +docfiles size=267 + RELOC/doc/latex/texpower/00readme.txt + RELOC/doc/latex/texpower/01install.txt + RELOC/doc/latex/texpower/02changes.txt + RELOC/doc/latex/texpower/FAQ-display.tex + RELOC/doc/latex/texpower/FAQ-printout.tex + RELOC/doc/latex/texpower/MakeExamples.sh + RELOC/doc/latex/texpower/__TPcfg.tex + RELOC/doc/latex/texpower/__TPindexing.tex + RELOC/doc/latex/texpower/__TPpreamble.tex + RELOC/doc/latex/texpower/bckwrdexample.tex + RELOC/doc/latex/texpower/bgndexample.tex + RELOC/doc/latex/texpower/contrib/00readme.txt + RELOC/doc/latex/texpower/contrib/config.landscapeplus + RELOC/doc/latex/texpower/contrib/tpmultiinc.tar + RELOC/doc/latex/texpower/divexample.tex + RELOC/doc/latex/texpower/dummy.java + RELOC/doc/latex/texpower/fancyexample.tex + RELOC/doc/latex/texpower/fig-1.mps + RELOC/doc/latex/texpower/fig-2.mps + RELOC/doc/latex/texpower/fig-3.mps + RELOC/doc/latex/texpower/foilsdemo.tex + RELOC/doc/latex/texpower/fulldemo.tex + RELOC/doc/latex/texpower/hilitexample.tex + RELOC/doc/latex/texpower/ifmslidemo.tex + RELOC/doc/latex/texpower/manual.pdf details="Manual" + RELOC/doc/latex/texpower/manual.tex + RELOC/doc/latex/texpower/mathexample.tex + RELOC/doc/latex/texpower/panelexample.tex + RELOC/doc/latex/texpower/parexample.tex + RELOC/doc/latex/texpower/pdfscrdemo.tex + RELOC/doc/latex/texpower/pdfslidemo.tex + RELOC/doc/latex/texpower/picexample.tex + RELOC/doc/latex/texpower/picltxexample.tex + RELOC/doc/latex/texpower/picpsexample.tex + RELOC/doc/latex/texpower/pp4sldemo.tex + RELOC/doc/latex/texpower/prosperdemo.tex + RELOC/doc/latex/texpower/seminardemo.tex + RELOC/doc/latex/texpower/simpledemo.tex + RELOC/doc/latex/texpower/slidesdemo.tex + RELOC/doc/latex/texpower/spanelexample.tex + RELOC/doc/latex/texpower/tabexample.tex + RELOC/doc/latex/texpower/tpslifonts.zip + RELOC/doc/latex/texpower/tpslifonts/00readme.txt + RELOC/doc/latex/texpower/tpslifonts/01install.txt + RELOC/doc/latex/texpower/tpslifonts/Makefile + RELOC/doc/latex/texpower/tpslifonts/slifontsexample.tex + RELOC/doc/latex/texpower/tpslifonts/tpslifonts.dtx + RELOC/doc/latex/texpower/tpslifonts/tpslifonts.ins + RELOC/doc/latex/texpower/verbexample.tex +srccontainersize 111840 +srccontainerchecksum 3add8eeda886ce6422d3b7ea53a55dc69bb2f5c2e64cdede105a7b4756b008807bef6245ddc2596b45809311874e566263c51e98ec6751b4db9d3c5c5f58efd3 +srcfiles size=172 + RELOC/source/latex/texpower/Makefile + RELOC/source/latex/texpower/powersem.dtx + RELOC/source/latex/texpower/texpower-addons.dtx + RELOC/source/latex/texpower/texpower-cfg.dtx + RELOC/source/latex/texpower/texpower-doc.dtx + RELOC/source/latex/texpower/texpower.dtx + RELOC/source/latex/texpower/tpbundle.ins + RELOC/source/latex/texpower/tplists.dtx +runfiles size=67 + RELOC/tex/latex/texpower/automata.sty + RELOC/tex/latex/texpower/fixseminar.sty + RELOC/tex/latex/texpower/powersem.cls + RELOC/tex/latex/texpower/texpower.sty + RELOC/tex/latex/texpower/tpcolors.cfg + RELOC/tex/latex/texpower/tplists.sty + RELOC/tex/latex/texpower/tpoptions.cfg + RELOC/tex/latex/texpower/tppstcol.sty + RELOC/tex/latex/texpower/tpsem-a4.sty + RELOC/tex/latex/texpower/tpsettings.cfg +catalogue-also prosper beamer +catalogue-contact-repository http://texpower.sourceforge.net/ +catalogue-ctan /macros/latex/contrib/texpower +catalogue-license gpl +catalogue-topics presentation +catalogue-version 0.2 + +name texproposal +category Package +revision 43151 +shortdesc A proposal prototype for LaTeX promotion in Chinese universities +relocated 1 +longdesc This package contains the original source code and necessary +longdesc attachment of the document "Proposal for Offering TeX Courses +longdesc and Relevant Resources in Chongqing University". This proposal +longdesc could be helpful if one is considering to suggest his/her +longdesc university or company to use TeX (or LaTeX, or XeLaTeX) as a +longdesc typesetting system, especially for Chinese universities and +longdesc companies. The present proposal mainly explains the importance +longdesc and necessity of introducing TeX, a typesetting system often +longdesc used in academic writing, to students and teachers. This +longdesc proposal starts from a brief introduction of TeX, then steps +longdesc further into its fascinating application to academic writing +longdesc and dissertation formatting. Finally, a set of possible +longdesc implementation strategies with regard to the proper +longdesc introduction of TeX and relevant resources to our university, +longdesc is proposed. +containersize 872 +containerchecksum 19265b32271b8603d8baf8b16f043c3228606230c1151a33e243e493b6306faa839860f2b07ec9d5d43c57f49e984134e760342bc6302186924e5c95cc1f3380 +doccontainersize 2152096 +doccontainerchecksum 70c04643ced459099ae095c88c0316e96c75e99bba0877198c7800d3b5cc9ac872f74b36adfb03dde968150abb3cb99131fb52ecaff56dfbf1aa85379718a74f +docfiles size=785 + RELOC/doc/latex/texproposal/LICENSE.md + RELOC/doc/latex/texproposal/README.md details="Readme" + RELOC/doc/latex/texproposal/contents/OtherUsages.tex + RELOC/doc/latex/texproposal/contents/acceptFinalProj.tex + RELOC/doc/latex/texproposal/contents/conclusion.tex + RELOC/doc/latex/texproposal/contents/ctanMirror.tex + RELOC/doc/latex/texproposal/contents/finalYearDemands.tex + RELOC/doc/latex/texproposal/contents/introduction.tex + RELOC/doc/latex/texproposal/contents/journalDemands.tex + RELOC/doc/latex/texproposal/contents/texCourses.tex + RELOC/doc/latex/texproposal/contents/whatistex.tex + RELOC/doc/latex/texproposal/cqunumerical.bst + RELOC/doc/latex/texproposal/figures/CQU-Example.pdf + RELOC/doc/latex/texproposal/figures/CQUThesis-poster.pdf + RELOC/doc/latex/texproposal/figures/TeX-Word-Diff.pdf + RELOC/doc/latex/texproposal/figures/TeX-Word-Vote.pdf + RELOC/doc/latex/texproposal/figures/pubfig0.pdf + RELOC/doc/latex/texproposal/ref/bluescas.bib + RELOC/doc/latex/texproposal/ref/nanmu.bib + RELOC/doc/latex/texproposal/scripts/cover.tex + RELOC/doc/latex/texproposal/texproposal.pdf details="The document itself" language="zh" + RELOC/doc/latex/texproposal/texproposal.sty + RELOC/doc/latex/texproposal/texproposal.tex +catalogue-contact-repository https://github.com/CQUtug/TeXProposal +catalogue-ctan /info/texproposal +catalogue-license other-free +catalogue-topics chinese-doc +catalogue-version 1.4 + +name texshade +category Package +revision 58789 +shortdesc Package for setting nucleotide and peptide alignments +relocated 1 +longdesc TeXshade is alignment shading software completely written in +longdesc TeX/LaTeX; it can process multiple sequence alignments in the +longdesc .MSF and the .ALN file formats. In addition to common shading +longdesc algorithms, it provides special shading modes showing +longdesc functional aspects, e.g. charge or hydropathy, and a wide range +longdesc of commands for handling shading colours, text styles, labels, +longdesc legends; it even allows the user to define completely new +longdesc shading modes. TeXshade combines highest flexibility with TeX +longdesc output quality -- all in a bundle that does not demand +longdesc excessive development time of the user. +containersize 61740 +containerchecksum e42833c13430228e775bc1a0310d47f72044ef5ba6bfb71a011acb0247506f372619639e0bd51d3f9b629d382175a4d59fe6d400ffa55124c60a2ef8206f7459 +doccontainersize 921548 +doccontainerchecksum a0b6a162432841cceb5a344250335d630222129a1e47dde01ad4df4fd38c4b147a138c9344d7e95153e01047fad7624e9c05022bc0f4601f800ee1f8f7953bb9 +docfiles size=323 + RELOC/doc/latex/texshade/AQP1.phd + RELOC/doc/latex/texshade/AQP1.top + RELOC/doc/latex/texshade/AQP2spec.ALN + RELOC/doc/latex/texshade/AQPDNA.MSF + RELOC/doc/latex/texshade/AQP_HMM.ext + RELOC/doc/latex/texshade/AQP_HMM.sgl + RELOC/doc/latex/texshade/AQP_TC.asc + RELOC/doc/latex/texshade/AQP_sequence_logo_1FX8.cmd + RELOC/doc/latex/texshade/AQP_subfamily_logo_1FX8.cmd + RELOC/doc/latex/texshade/AQPpro.MSF + RELOC/doc/latex/texshade/README details="Readme" + RELOC/doc/latex/texshade/ciliate.cod + RELOC/doc/latex/texshade/standard.cod + RELOC/doc/latex/texshade/texshade.pdf details="Package documentation" language="en" +srccontainersize 152840 +srccontainerchecksum f37d1837938ee3cd2451f4a797bcb1dfd933cfaaea53a58a52503bb9cf2288e5ec53c977b6f54382fbba398b9ddfe9bdb6226db75e0bafe19eeb8e916d7a8e3c +srcfiles size=284 + RELOC/source/latex/texshade/texshade.dtx + RELOC/source/latex/texshade/texshade.ins +runfiles size=165 + RELOC/tex/latex/texshade/texshade.def + RELOC/tex/latex/texshade/texshade.sty +catalogue-ctan /macros/latex/contrib/texshade +catalogue-license gpl2 +catalogue-topics chemistry molbio +catalogue-version 1.26 + +name texsis +category Package +revision 45678 +shortdesc Plain TeX macros for Physicists +longdesc TeXsis is a TeX macro package which provides useful features +longdesc for typesetting research papers and related documents. For +longdesc example, it includes support specifically for: Automatic +longdesc numbering of equations, figures, tables and references; +longdesc Simplified control of type sizes, line spacing, footnotes, +longdesc running headlines and footlines, and tables of contents, +longdesc figures and tables; Specialized document formats for research +longdesc papers, preprints and "e-prints", conference proceedings, +longdesc theses, books, referee reports, letters, and memoranda; +longdesc Simplified means of constructing an index for a book or thesis; +longdesc Easy to use double column formatting; Specialized environments +longdesc for lists, theorems and proofs, centered or non-justified text, +longdesc and listing computer code; Specialized macros for easily +longdesc constructing ruled tables. TeXsis was originally developed for +longdesc physicists, but others may also find it useful. It is +longdesc completely compatible with Plain TeX. +depend cm +depend hyphen-base +depend knuth-lib +depend plain +depend tex +depend texsis.ARCH +execute AddFormat name=texsis engine=pdftex options="-translate-file=cp227.tcx texsis.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain +containersize 111124 +containerchecksum 7309726b33eadf8290e596aab50bb1af95600a067338b352c1ac092643a8c6d4142180d0146abbbb828a38fb08fdd9ae03da6572e6c221afcd151a51430a423e +doccontainersize 130016 +doccontainerchecksum 2a4979a10514ccd589b331ff34a677a4e22adbeea73d6112c9a14392b3ee75a8cdb292b008b160792b3d00b812834afa7e0211db860c41f1beb69bbc900fdb90 +docfiles size=135 + texmf-dist/doc/man/man1/texsis.1 + texmf-dist/doc/man/man1/texsis.man1.pdf + texmf-dist/doc/otherformats/texsis/base/COPYING + texmf-dist/doc/otherformats/texsis/base/Example.tex + texmf-dist/doc/otherformats/texsis/base/Fonts.tex + texmf-dist/doc/otherformats/texsis/base/INSTALL + texmf-dist/doc/otherformats/texsis/base/Install.tex + texmf-dist/doc/otherformats/texsis/base/MANIFEST + texmf-dist/doc/otherformats/texsis/base/Manual.fgl + texmf-dist/doc/otherformats/texsis/base/Manual.ref + texmf-dist/doc/otherformats/texsis/base/Manual.tbl + texmf-dist/doc/otherformats/texsis/base/Manual.tex + texmf-dist/doc/otherformats/texsis/base/NEWS + texmf-dist/doc/otherformats/texsis/base/README details="Readme" + texmf-dist/doc/otherformats/texsis/base/TXSapxF.doc + texmf-dist/doc/otherformats/texsis/base/TXScover.doc + texmf-dist/doc/otherformats/texsis/base/TXSdcol.doc + texmf-dist/doc/otherformats/texsis/base/TXSdoc.doc + texmf-dist/doc/otherformats/texsis/base/TXSdoc0.doc + texmf-dist/doc/otherformats/texsis/base/TXSdocM.doc + texmf-dist/doc/otherformats/texsis/base/TXSend.doc + texmf-dist/doc/otherformats/texsis/base/TXSenvmt.doc + texmf-dist/doc/otherformats/texsis/base/TXSeqns.doc + texmf-dist/doc/otherformats/texsis/base/TXSfigs.doc + texmf-dist/doc/otherformats/texsis/base/TXSfmts.doc + texmf-dist/doc/otherformats/texsis/base/TXSfonts.doc + texmf-dist/doc/otherformats/texsis/base/TXSinstl.doc + texmf-dist/doc/otherformats/texsis/base/TXSintro.doc + texmf-dist/doc/otherformats/texsis/base/TXSletr.doc + texmf-dist/doc/otherformats/texsis/base/TXSmisc.doc + texmf-dist/doc/otherformats/texsis/base/TXSprns.doc + texmf-dist/doc/otherformats/texsis/base/TXSrefs.doc + texmf-dist/doc/otherformats/texsis/base/TXSrevs.doc + texmf-dist/doc/otherformats/texsis/base/TXSruled.doc + texmf-dist/doc/otherformats/texsis/base/TXSsects.doc + texmf-dist/doc/otherformats/texsis/base/TXSsite.000 + texmf-dist/doc/otherformats/texsis/base/TXSsymb.doc + texmf-dist/doc/otherformats/texsis/base/TXStags.doc + texmf-dist/doc/otherformats/texsis/base/index.tex + texmf-dist/doc/otherformats/texsis/base/letr + texmf-dist/doc/otherformats/texsis/base/penguin.eps + texmf-dist/doc/otherformats/texsis/base/penguin2.eps + texmf-dist/doc/otherformats/texsis/base/texsis.el + texmf-dist/doc/otherformats/texsis/base/texsis.lsm +runfiles size=142 + texmf-dist/bibtex/bst/texsis/texsis.bst + texmf-dist/tex/texsis/base/AIP.txs + texmf-dist/tex/texsis/base/CVformat.txs + texmf-dist/tex/texsis/base/Elsevier.txs + texmf-dist/tex/texsis/base/Exam.txs + texmf-dist/tex/texsis/base/Formletr.txs + texmf-dist/tex/texsis/base/IEEE.txs + texmf-dist/tex/texsis/base/PhysRev.txs + texmf-dist/tex/texsis/base/Spanish.txs + texmf-dist/tex/texsis/base/Swedish.txs + texmf-dist/tex/texsis/base/TXSconts.tex + texmf-dist/tex/texsis/base/TXSdcol.tex + texmf-dist/tex/texsis/base/TXSenvmt.tex + texmf-dist/tex/texsis/base/TXSeqns.tex + texmf-dist/tex/texsis/base/TXSfigs.tex + texmf-dist/tex/texsis/base/TXSfmts.tex + texmf-dist/tex/texsis/base/TXSfonts.tex + texmf-dist/tex/texsis/base/TXShead.tex + texmf-dist/tex/texsis/base/TXSinit.tex + texmf-dist/tex/texsis/base/TXSletr.tex + texmf-dist/tex/texsis/base/TXSmacs.tex + texmf-dist/tex/texsis/base/TXSmemo.tex + texmf-dist/tex/texsis/base/TXSprns.tex + texmf-dist/tex/texsis/base/TXSrefs.tex + texmf-dist/tex/texsis/base/TXSruled.tex + texmf-dist/tex/texsis/base/TXSsects.tex + texmf-dist/tex/texsis/base/TXSsite.tex + texmf-dist/tex/texsis/base/TXSsymb.tex + texmf-dist/tex/texsis/base/TXStags.tex + texmf-dist/tex/texsis/base/TXStitle.tex + texmf-dist/tex/texsis/base/Tablebod.txs + texmf-dist/tex/texsis/base/WorldSci.txs + texmf-dist/tex/texsis/base/color.txs + texmf-dist/tex/texsis/base/nuclproc.txs + texmf-dist/tex/texsis/base/printfont.txs + texmf-dist/tex/texsis/base/spine.txs + texmf-dist/tex/texsis/base/texsis.tex + texmf-dist/tex/texsis/base/thesis.txs + texmf-dist/tex/texsis/base/twin.txs + texmf-dist/tex/texsis/config/texsis.ini +catalogue-ctan /macros/texsis +catalogue-license lppl +catalogue-topics physics format +catalogue-version 2.18 + +name texsis.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texsis +containersize 324 +containerchecksum dd494c6cf8d481139e17402e8af880b8918750243a1c01b6aeaa69e1ebdd804ac72b2e87a4d4fab4a57f9b4f488ff3ed7d0bd3ca1a7b19e2a7e80edd4df4817e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texsis + +name texsis.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texsis +containersize 324 +containerchecksum 9fe1c6f65fc6bfd344c0f1d1cdeebe384519dcf428849b70e1bd6868543e98c8611378b232b8ae8f9e91b3b3b99a5188d8f560001a82356832647573d77ac25e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texsis + +name texsis.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texsis +containersize 324 +containerchecksum b45b72043f5d0c8c741ca49a3a906e58a9a342a3325d6942b3bc96b46ea15350c42174a3ed948d19fa538f46f86306e5e827758fe40a1cf0b725638f394c3877 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texsis + +name texsis.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texsis +containersize 324 +containerchecksum a137d58698be313eb46a2a24b0ea0e1375fdb55af5aad7679fc5b9b6122abdb9fe029ebf818bbcbf727ed902098e8f15003efcfedd41af3bdfba807db5580143 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texsis + +name texsis.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of texsis +containersize 324 +containerchecksum df3ba60393feca16612835a058c6868e806271e576905e3cf1d0e7942022c9dac1dde3237381e1974052658ab3c3e58b446a609fc2d116443aea6a5c8c8aecc7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texsis + +name texsis.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texsis +containersize 324 +containerchecksum c38dcf3b4d9908c43f9694a987a8b2a106098eb9b55f3b04c935a8ee504b963772700a7712c193b3de978eded47bf80a409503853f03f5dccb96640f899b5a0d +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texsis + +name texsis.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of texsis +containersize 320 +containerchecksum cae6dc2e33a4f9b4a4ed91d044463f878c45807000d215b14a67c0b0f4748219cc59c00bebc5f9a83731ae8ec25d16938c6efe180d263f9f0dc3dd092b856232 +binfiles arch=i386-linux size=1 + bin/i386-linux/texsis + +name texsis.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texsis +containersize 320 +containerchecksum 9899af6b5dd52b9cb342f6f19cc9fe3bb47acba912f7d5aa1feb8034eea73949d76cdc730b7584e8405355b5d2dfefaa467207a4bed273d62d7f250ae197c448 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texsis + +name texsis.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of texsis +containersize 320 +containerchecksum c176541a88b35fb09e44f49a4354f9f12be93b71ae0660e7afadbff70a56b8e2a722112efa8611facba98436c6fdd1fd9cdf41570e90175ea07cd16448a69b0a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texsis + +name texsis.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of texsis +containersize 320 +containerchecksum 3bcee7eea567bdd7d5113dc041824345bf4d16499714ad9dd4547a3f2a757ab0bc89ff197ffc4f6eaff2a3f03643c37b01e778062c431f0681e5e96be56dd94d +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texsis + +name texsis.win32 +category Package +revision 57883 +shortdesc win32 files of texsis +containersize 864 +containerchecksum 02c6f63cb1a7b898b11a991d4a344f2f0b678a1887b5a37be9096753585fe50468804ae23b45205019c9ca4bb3f356840c40379b583935ac54b0c1a203c0b277 +binfiles arch=win32 size=1 + bin/win32/texsis.exe + +name texsis.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texsis +containersize 328 +containerchecksum 01a53dbce3f587d8ab843ddfd4b1abb530e02010d88d60ad0e06b0dc76f0db6042c2b19fae00d5370a72df9d04927a4a04bc433597a447386c9c45fcae97e3d8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texsis + +name texsis.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texsis +containersize 332 +containerchecksum 164ff7722955e3244d59355294c8293c0dfe4aef84d5dd58074142337723e0510437836d9f61e8628005896b69d41f075fafa90c9d50c57a03ac4b0cf38d5d4e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texsis + +name texsis.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of texsis +containersize 320 +containerchecksum b2224c1f50890c32a31cf924fe66e88a2c350210ab77be87278dbd2b94152480fa76dc5db0cde6a3e0577be06dd950e79e8e4dce7fe1b5e6df1eae5d74bdc771 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texsis + +name texsis.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texsis +containersize 324 +containerchecksum 6febc737122761f78d4126f85460dc0da02c45ec232f2020997bc4934504be3dc2316a6b5763121fc5cd4fd6a8ddf2a3e5442961e075e95faa5912fe6300be31 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texsis + +name texsis.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texsis +containersize 324 +containerchecksum e2cb92a5f17721fe8fc797f0ca386aea05e9320a59470dbc9ae494c3c92125307137b3509b918a10c4807d7a3f1db0392ea583c2c91cc7e1ca8819c658db3f8b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texsis + +name textcase +category Package +revision 52092 +shortdesc Case conversion ignoring mathematics, etc +relocated 1 +longdesc The textcase package offers commands \MakeTextUppercase and +longdesc \MakeTextLowercase are similar to the standard \MakeUppercase +longdesc and \MakeLowercase, but they do not change the case of any +longdesc sections of mathematics, or the arguments of \cite, \label and +longdesc \ref commands within the argument. A further command +longdesc \NoCaseChange does nothing but suppress case change within its +longdesc argument, so to force uppercase of a section including an +longdesc environment, one might say: +longdesc \MakeTextUppercase{...\NoCaseChange{\begin{foo}} +longdesc ...\NoCaseChange{\end{foo}}...} +containersize 1508 +containerchecksum 9cb8145b46343c34c4ac7c7ec64dc6d69f08e329cfae2c1ac41902a74e92cee715b5b171bbf26b92efc0a8a4500d11d317d8c927ffee623450b39e4ee6555483 +doccontainersize 193892 +doccontainerchecksum 737c03d99e03a188c80aa8478abb64f05e6a3241185d03746682bf3c5e2e48ed8181e46d1b10c9170b98882bafcfe61e37a0409d42d2506125e9515bc44f0e2c +docfiles size=49 + RELOC/doc/latex/textcase/README details="Readme" + RELOC/doc/latex/textcase/textcase.pdf details="Package documentation" +srccontainersize 4828 +srccontainerchecksum 2f68a69bb41a0af207522cf554fdbc8858a675b8f9c97e72836bf62d69640aa55aafdc70b8f014ee3bfd526f155695722d4191b70b570b309bc789622b19b53a +srcfiles size=5 + RELOC/source/latex/textcase/textcase.dtx + RELOC/source/latex/textcase/textcase.ins +runfiles size=1 + RELOC/tex/latex/textcase/textcase.sty +catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues +catalogue-contact-repository https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/latex/contrib/textcase +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.00 + +name textfit +category Package +revision 20591 +shortdesc Fit text to a desired size +relocated 1 +longdesc Package to fit text to a given width or height by scaling the +longdesc font. For example: \scaletowidth{3in}{This}. (The job is done +longdesc by calculating a magstep and applying it to the current font; +longdesc thus "This" will be very tall, as well as very wide; to scale +longdesc in just one dimension, use the facilities of the graphicx +longdesc package.) +containersize 2204 +containerchecksum 96638c0bd5cb14b629f03e4b6a3266160c75bcf05d871ce3d4262ac1c070d9efc0532411f5d8774f97362b148ef6cd1c5dd5253e72e3aebb542fdf14aa6d78fb +doccontainersize 162372 +doccontainerchecksum b88df8c99662a182483fc6d12d33d0bac5f6a32c84be700146d048b799045800cbb69b21599e5debac122995800b0e48fd82395c498a58df503395fcedc92228 +docfiles size=43 + RELOC/doc/latex/textfit/README details="Readme" + RELOC/doc/latex/textfit/makefile + RELOC/doc/latex/textfit/manifest + RELOC/doc/latex/textfit/textfit.pdf +srccontainersize 3592 +srccontainerchecksum cde6e37b48b1aa49811fd5ec29cf094c7b49d690fb4d884edc358bd3a8a5bf58a815e539eb5e56a95616f54b0737dde09e312c0d2baf37498ead691d4fe1dd72 +srcfiles size=4 + RELOC/source/latex/textfit/textfit.dtx + RELOC/source/latex/textfit/textfit.ins +runfiles size=2 + RELOC/tex/latex/textfit/textfit.sty +catalogue-ctan /macros/latex/contrib/textfit +catalogue-license lppl1.3 +catalogue-topics fit-to-size +catalogue-version 5 + +name textglos +category Package +revision 30788 +shortdesc Typeset and index linguistic gloss abbreviations +relocated 1 +longdesc The package provides a set of macros for in-line linguistic +longdesc examples (as opposed to interlinear glossing, set apart from +longdesc the main text). It prevents hyphenated examples from breaking +longdesc across lines and consistently formats phonemic examples, +longdesc orthographic examples, and more. +containersize 1832 +containerchecksum 1652260a3e946a8847ceb7f937893bad27a24737d9b3573466f7369ce9cdbf900af0ef6c7f0bf3033200664da736e8232c3fbf6db61bb7d51acec1010d13a3e0 +doccontainersize 421316 +doccontainerchecksum 922ce1569fce889bc4608e9a5da4a45b7c3d2e80303ac36167efe6767c266844664de00384447e288da70383fe91261e5914394a6fdf8644349f785600271e5e +docfiles size=105 + RELOC/doc/latex/textglos/README details="Readme" + RELOC/doc/latex/textglos/README.txt + RELOC/doc/latex/textglos/textglos.pdf details="Package documentation" +srccontainersize 7652 +srccontainerchecksum 0dc80a20fcb8926b9bf586808bff2403452e43471983d0bf49bebd310d2bf78cb1e61cd4674f7bfcf86d94ee083d2c8e0099554858549dc5c6703d0f4ca57dbb +srcfiles size=6 + RELOC/source/latex/textglos/textglos.dtx + RELOC/source/latex/textglos/textglos.ins +runfiles size=1 + RELOC/tex/latex/textglos/textglos.sty +catalogue-ctan /macros/latex/contrib/textglos +catalogue-license lppl1.3 +catalogue-topics linguistic +catalogue-version 1.0 + +name textgreek +category Package +revision 44192 +shortdesc Upright greek letters in text +relocated 1 +longdesc Use upright greek letters as text symbols, e.g. \textbeta. +depend greek-fontenc +containersize 2624 +containerchecksum 2370f666c2cef43a579e32a755675431717ccfb4bad6f30261a6c67e0617816ffc272c25e0d076d91c4047c41926c92ae375507f36f2fab01673bd7e708f5188 +doccontainersize 459404 +doccontainerchecksum 9107ca31b645977d56a3b1e37f7b12f0302b1b2531bd2a21883f7931831e70c4383beae77469aab4663253da3109cdd9c53589cbab95f7f0126389d12509127f +docfiles size=136 + RELOC/doc/latex/textgreek/README details="Readme" + RELOC/doc/latex/textgreek/textgreek.pdf details="Package documentation" +srccontainersize 8180 +srccontainerchecksum 367b63cd318c1e69944444f4cab82af7a7b1dde667d6469ade4c6433960b21a6f8922280d5a46e96fc88ddf4c2d5d3f3a440b55045a67512459208ae181bda96 +srcfiles size=8 + RELOC/source/latex/textgreek/textgreek.dtx + RELOC/source/latex/textgreek/textgreek.ins +runfiles size=3 + RELOC/tex/latex/textgreek/textgreek.sty +catalogue-ctan /macros/latex/contrib/textgreek +catalogue-license lppl +catalogue-topics text-symbol +catalogue-version 0.7 + +name textmerg +category Package +revision 20677 +shortdesc Merge text in TeX and LaTeX +relocated 1 +longdesc Repetetively produce documents from a fixed part and a variable +longdesc part. Such an operation is commonly used as "mail merge" to +longdesc produce mail shots. +containersize 1928 +containerchecksum 5ef9048849bd2515c1af0ff41d0b5189715b375464c15d4708e0152d99f01839c462a0c9d0a9a12f401375d38e2c53a0f0c314e6905e1bfb3171296448bab649 +doccontainersize 253648 +doccontainerchecksum 05a087347db5dce688065f56c106d022f3ac30d27ee5d2f420e7658c5b81df66549cda86193f3ce4fb2cbeaad37abe7eb32b984d00d4f25dd0ad51433f8d7a01 +docfiles size=68 + RELOC/doc/generic/textmerg/results.dat + RELOC/doc/generic/textmerg/silly.dat + RELOC/doc/generic/textmerg/textmerg.pdf details="Package documentation" + RELOC/doc/generic/textmerg/textmerg.tex + RELOC/doc/generic/textmerg/tmexamp1.tex + RELOC/doc/generic/textmerg/tmexamp2.tex + RELOC/doc/generic/textmerg/tmexampp.tex +srccontainersize 9948 +srccontainerchecksum bec01fd7721b5fcc61ac934ebffc3936492817662f4445f082601fe4b7aad576448d33b7ec16ce400c8185704e60238c56bb9e8e31c3b445503673145c0cfadd +srcfiles size=9 + RELOC/source/generic/textmerg/textmerg.drv + RELOC/source/generic/textmerg/textmerg.dtx + RELOC/source/generic/textmerg/textmerg.ins +runfiles size=2 + RELOC/tex/generic/textmerg/textmerg.sty +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-license pd +catalogue-topics doc-gen +catalogue-version 2.01 + +name textopo +category Package +revision 23796 +shortdesc Annotated membrane protein topology plots +relocated 1 +longdesc A LaTeX package for setting shaded and annotated membrane +longdesc protein topology plots and helical wheels. +containersize 31844 +containerchecksum 89a415b1040ff44f62c452e61abf9a5760929953ff0a4740080f79e8343b2b4f4eef9340e5a83fded39a000947dbe7f2916fb18624c4512c5ab58171708de268 +doccontainersize 578472 +doccontainerchecksum 80bd54a9843fae371884b87710094f72926d5ad8a7e40308e9aa753b01533d3e649ff94831ea75aed264b5f9f5df482e157a1563dc85ab2976cbf9260425c5ce +docfiles size=190 + RELOC/doc/latex/textopo/AQP1.SP + RELOC/doc/latex/textopo/AQP1.hmm + RELOC/doc/latex/textopo/AQP1.phd + RELOC/doc/latex/textopo/AQP1.swp + RELOC/doc/latex/textopo/AQP1.tpo + RELOC/doc/latex/textopo/AQP2spec.ALN + RELOC/doc/latex/textopo/AQPpro.MSF + RELOC/doc/latex/textopo/AQPpro1.shd + RELOC/doc/latex/textopo/textopo.pdf details="Package documentation" + RELOC/doc/latex/textopo/textopo.txt details="Notes on the distribution" +srccontainersize 81908 +srccontainerchecksum d426490fee0b747726dfd7df1f6f72677c9aee3d8ba56ec04dd55037aef563297d16d08a821c2e9a1493c5c29ad6b52c5af23b6bb1f4adec754bf530beb81571 +srcfiles size=123 + RELOC/source/latex/textopo/textopo.dtx + RELOC/source/latex/textopo/textopo.ins +runfiles size=67 + RELOC/tex/latex/textopo/biotex.sty + RELOC/tex/latex/textopo/textopo.def + RELOC/tex/latex/textopo/textopo.sty +catalogue-ctan /macros/latex/contrib/textopo +catalogue-license gpl +catalogue-topics molbio chemistry +catalogue-version 1.5 + +name textpath +category Package +revision 15878 +shortdesc Setting text along a path with MetaPost +relocated 1 +longdesc This MetaPost package provides macros to typeset text along a +longdesc free path with the help of LaTeX, thereby preserving kerning +longdesc and allowing for 8-bit input (accented characters). +containersize 4328 +containerchecksum 7780972480a1355a05cbcca3c46f3e5284b120a93ed2265f0fcceb6965f55ed793756cf96df63aa8da589dd12fe1b8127bd470077b9f9dda758238ced566b3e6 +doccontainersize 237628 +doccontainerchecksum 5507082be0235ec2253ddc0b03e239607b9d140952799684e5193e4d3d584846d33a59aa9b1630d058f17cacf7cedd2fe0a180b40207ea8f10947b534784fc02 +docfiles size=77 + RELOC/doc/metapost/textpath/CHANGES + RELOC/doc/metapost/textpath/README details="README file" + RELOC/doc/metapost/textpath/textpath.pdf details="Package documentation" + RELOC/doc/metapost/textpath/textpath.tex + RELOC/doc/metapost/textpath/textpathfigs.mp + RELOC/doc/metapost/textpath/textpathfigs.tex +runfiles size=5 + RELOC/metapost/textpath/textpath.mp + RELOC/tex/latex/textpath/textpathmp.sty +catalogue-also pst-text +catalogue-ctan /graphics/metapost/contrib/macros/textpath +catalogue-license lppl +catalogue-topics graphics-text +catalogue-version 1.6 + +name textpos +category Package +revision 56441 +shortdesc Place boxes at arbitrary positions on the LaTeX page +relocated 1 +longdesc A package to facilitate placement of boxes at absolute +longdesc positions on the LaTeX page. There are several reasons why this +longdesc might be useful, an important one being to help the creation of +longdesc large-format conference posters. The package depends on +longdesc everyshi and keyval. +containersize 4196 +containerchecksum b7213e61a54addaafac6bf831273a000bf300939d74311e25a1412744e2baabcc35594b084a9ccb6eb5e8b91b105e0acf97686323f89f0623a8ee9749e33bbf9 +doccontainersize 331632 +doccontainerchecksum 45d9b91df10531c4fa45d9eb668613417baf132f3153ef6fa4de27292730580c46eaf722e6998f9d8129e37db3f5f8828bd70eefd9a74e88571290f95b04eef7 +docfiles size=102 + RELOC/doc/latex/textpos/LICENCE + RELOC/doc/latex/textpos/README details="Package README" + RELOC/doc/latex/textpos/VERSION-1.10 + RELOC/doc/latex/textpos/examples/README.examples + RELOC/doc/latex/textpos/examples/t1.tex + RELOC/doc/latex/textpos/examples/t10.tex + RELOC/doc/latex/textpos/examples/t11.tex + RELOC/doc/latex/textpos/examples/t2.tex + RELOC/doc/latex/textpos/examples/t3.tex + RELOC/doc/latex/textpos/examples/t4.tex + RELOC/doc/latex/textpos/examples/t5.tex + RELOC/doc/latex/textpos/examples/t6.tex + RELOC/doc/latex/textpos/examples/t7.tex + RELOC/doc/latex/textpos/examples/t8.tex + RELOC/doc/latex/textpos/examples/t9.tex + RELOC/doc/latex/textpos/niepraschk-eso-pic.pdf details="Demo file: textpos with eso-pic" + RELOC/doc/latex/textpos/niepraschk-eso-pic.tex + RELOC/doc/latex/textpos/textpos-example.tex + RELOC/doc/latex/textpos/textpos.html details="Version history, etc. (HTML)" + RELOC/doc/latex/textpos/textpos.pdf details="Package documentation (PDF)" +srccontainersize 24148 +srccontainerchecksum 6f917452d588253acf6576a4603b6e4513c9c5b951e2440879d4a68e6d413b9ebeaeac92b0b03636d094f7758400694481bd52a68cfd5fb92431809eb4271eaf +srcfiles size=22 + RELOC/source/latex/textpos/textpos.drv + RELOC/source/latex/textpos/textpos.dtx + RELOC/source/latex/textpos/textpos.ins +runfiles size=4 + RELOC/tex/latex/textpos/textpos.sty +catalogue-contact-home https://nxg.me.uk/dist/textpos/ +catalogue-contact-repository https://code.nxg.name/nxg/tex/textpos/ +catalogue-ctan /macros/latex/contrib/textpos +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 1.10 + +name textualicomma +category Package +revision 48474 +shortdesc Use the textual comma character as decimal separator in math mode +relocated 1 +longdesc The package is based on the icomma package, and intended as a +longdesc solution for situations where the text comma character discerns +longdesc from the math comma character, e. g. when fonts whithout math +longdesc support are involved. Escaping to text mode every time a comma +longdesc is used in math mode may slow down the compilation process. +containersize 2008 +containerchecksum 044ef3451267bcb74d3e4162d19915b1b7f2fac337af6faae7d3dcd630bc9be8484fa155a3579ad5245ce1f07578d8faada2e6a67830edb09b332714a95f2e9e +doccontainersize 118032 +doccontainerchecksum 6e6c380eb0169878a34d3d40fea47bc57885c7ea378ffd2d2a7e9bf26826dd922f67a02e74d6c78801cecb87b18de3ab52b7600623de39c53954ed568c57eadf +docfiles size=30 + RELOC/doc/latex/textualicomma/README.md details="Readme" + RELOC/doc/latex/textualicomma/textualicomma-doc.pdf details="Package documentation" +srccontainersize 5352 +srccontainerchecksum 69f6594a039c9b367e48430927298768f816ba31a7bcc41036111963c5e9059dfbde6b771ab7dcbfddb6e40dc49b2daa1d1ae04625a31ae44b8ba340c42d3f58 +srcfiles size=6 + RELOC/source/latex/textualicomma/textualicomma-doc.dtx + RELOC/source/latex/textualicomma/textualicomma.dtx + RELOC/source/latex/textualicomma/textualicomma.ins +runfiles size=1 + RELOC/tex/latex/textualicomma/textualicomma.sty +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-license lppl1.3c +catalogue-topics typesetting maths +catalogue-version 1.1 + +name texvc +category Package +revision 46844 +shortdesc Use MediaWiki LaTeX commands +relocated 1 +longdesc User MediaWiki LaTeX commands to copy and past formulae from +longdesc MediaWiki to LaTeX documents. +containersize 1544 +containerchecksum cc149d490180e58e9796ae0bc962e51794400384671eee53c932acef88512a129dc3d87ea4378247813acbd3ead010014ab71bd1717b6edb0bef4b7856be8aeb +doccontainersize 252440 +doccontainerchecksum e8639a2ffdd2d40b27545c3f4265e473bfbd81a028632a082199fb0dba7ea0b0468bdae488a9eeea63578bdd610f7e16d4f4da846f9316dabf5645af95fc8cab +docfiles size=67 + RELOC/doc/latex/texvc/LICENSE + RELOC/doc/latex/texvc/README.md details="Readme" + RELOC/doc/latex/texvc/texvc.pdf details="Package documentation" +srccontainersize 4016 +srccontainerchecksum 4bbcf12af602c328084e76e339d9ca33c205f08faf489be3008fa5fe0b424631e940baee1da9144fafac42e09fd2d27a7726c16e159cfe24c70d32ae1014d198 +srcfiles size=7 + RELOC/source/latex/texvc/texvc.dtx + RELOC/source/latex/texvc/texvc.ins +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-license lppl1.3 +catalogue-topics foreign-import +catalogue-version 1.1 + +name texware +category TLCore +revision 57972 +shortdesc Utility programs for use with TeX +longdesc Basic utitility programs, comprising: dvitype, which converts a +longdesc TeX output (DVI) file to a plain text file (see also the DVI +longdesc Text Language suite); pooltype, which converts a TeX-suite +longdesc program's "pool" (string) file into human-readable form; and +longdesc tftopl and pltotf, which convert TeX Font Metric (TFM) file to +longdesc human readable Property List (PL) files and vice versa. +depend texware.ARCH +containersize 636 +containerchecksum 981a66b9f52d53ca1b9a5059d5cacdb325663a5eaf6ea5c15902e687bcfee894005b274064f662252a0689222c62937c2841ee2aef5e38cfd88f2169f7b01893 +doccontainersize 34408 +doccontainerchecksum 3ddb71949ce4c8dd406f65e547a5099851c9b8ba00aec1fa65ca3f40093c49d34ea13955e3970683d1937569d0dbd3d6abca65fef8bf15f255063703262421ca +docfiles size=13 + texmf-dist/doc/man/man1/dvitype.1 + texmf-dist/doc/man/man1/dvitype.man1.pdf + texmf-dist/doc/man/man1/pooltype.1 + texmf-dist/doc/man/man1/pooltype.man1.pdf +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/texware +catalogue-license pd +catalogue-topics debug-supp + +name texware.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of texware +containersize 48864 +containerchecksum 1d708d258a049a11a09e85b4167354cd93d281cb853cc2b234ef6817d96f861d3f3c358bfc9dfa5fda3fa9ce4346b034349b29df232d9a996d0328ec7db0d73f +binfiles arch=aarch64-linux size=36 + bin/aarch64-linux/dvitype + bin/aarch64-linux/pooltype + +name texware.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of texware +containersize 54412 +containerchecksum 27eff6e112640f94bc50519a1e82d775992f61d3b421c0ea7865f0ed2ea7085a3c0cbc365e610aa894b9593874e7b1ec4a0183bc36f0e99e920da83cab885246 +binfiles arch=amd64-freebsd size=36 + bin/amd64-freebsd/dvitype + bin/amd64-freebsd/pooltype + +name texware.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of texware +containersize 47856 +containerchecksum 835054003dbedcade36a4c1760d6e76856db06c786565728fe5893d1eecb728a2ec1bf73a6dcfc583ab2311421bc764d8512965e8d73c02cca14c1f46895a1cd +binfiles arch=amd64-netbsd size=42 + bin/amd64-netbsd/dvitype + bin/amd64-netbsd/pooltype + +name texware.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of texware +containersize 40948 +containerchecksum 5c21b1723ae5533fbf64b5ff3fe2ead25e3013d2f978fac2f85b06e7178dbf3a76616b76e7319eac3700ff263eff6f411de9ed3aee67b26b66f85a2d00c1d3c4 +binfiles arch=armhf-linux size=28 + bin/armhf-linux/dvitype + bin/armhf-linux/pooltype + +name texware.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of texware +containersize 17948 +containerchecksum 35ae1efde1350593f1f68f1f536c991e5cf1ac2494e972174b52177b6bfd9a42088573653e2a537e8df280b2af97b1171addb52e34a6e1203a785d29944c817b +binfiles arch=i386-cygwin size=15 + bin/i386-cygwin/dvitype.exe + bin/i386-cygwin/pooltype.exe + +name texware.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of texware +containersize 46640 +containerchecksum f7214db13cb10757dad6130c0706faccb354925a2a3450462f327e1dcb17e180622fb26da74b921cc91f918d7763575036e69029e7996d0ee4f745acfb07a3e5 +binfiles arch=i386-freebsd size=31 + bin/i386-freebsd/dvitype + bin/i386-freebsd/pooltype + +name texware.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of texware +containersize 50844 +containerchecksum 26f2997ac4f1372a6790e490bfd672551f41fbed6639c3fe0cc290d4f2d722a6228c8b7ce99f3c9654bd3684d6c444be5f6c43a1fa71e40391d40939630bc13d +binfiles arch=i386-linux size=36 + bin/i386-linux/dvitype + bin/i386-linux/pooltype + +name texware.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of texware +containersize 43192 +containerchecksum 45bfd1ce49c7cc2e1c6e43c380c23db30558e228cc80e43c7e57fdbf7aa7ca2308987a72e94d3910a4b27c15df99d4cb32414c460a260a6ed847001f7462bfa7 +binfiles arch=i386-netbsd size=40 + bin/i386-netbsd/dvitype + bin/i386-netbsd/pooltype + +name texware.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of texware +containersize 50728 +containerchecksum aec94405528a2338e1120aff896aeeb95276d10f9dfbf81537fcc4ff655f6e48798198aeb7042e2b56f9d1c11eff4b03ea4038fa1d39829cfda6dbd8cd5789d4 +binfiles arch=i386-solaris size=34 + bin/i386-solaris/dvitype + bin/i386-solaris/pooltype + +name texware.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of texware +containersize 102656 +containerchecksum add2a947d73004e714daccd321c059fe26b664344dfda2a90766837bb7e7f0dc5149ca4ddb6afdfa4474813801c26846545c1d135888ed5ee3094b10237bc338 +binfiles arch=universal-darwin size=113 + bin/universal-darwin/dvitype + bin/universal-darwin/pooltype + +name texware.win32 +category TLCore +revision 58783 +shortdesc win32 files of texware +containersize 18864 +containerchecksum eddcae6d3361b63fef95f61fce0cdde2fd6653448491e639a46cca70cada14d45c6151a1ce36b6799078a92ec0d27f019f3b5729828c0bb835ea3bdfd4ac59a2 +binfiles arch=win32 size=12 + bin/win32/dvitype.exe + bin/win32/pooltype.exe + +name texware.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of texware +containersize 20628 +containerchecksum f9ca92f07bfa40f2fffdd7021cbbff2c6130695f6d6e6ace65a0af11c8e110da783434bca491492c4bc98b0502e34be766a79d5df1c7b7e5c8047856cd504cae +binfiles arch=x86_64-cygwin size=15 + bin/x86_64-cygwin/dvitype.exe + bin/x86_64-cygwin/pooltype.exe + +name texware.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of texware +containersize 50592 +containerchecksum f7501303514b0bed82dd9bfde13402dbbf089cc1d7ddb21b18ec4007868685f5720cd00e8f81cf4426abff0a453250e8d4a9384647daaca17c18944306eaa4ca +binfiles arch=x86_64-darwinlegacy size=35 + bin/x86_64-darwinlegacy/dvitype + bin/x86_64-darwinlegacy/pooltype + +name texware.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of texware +containersize 50156 +containerchecksum e910d3a52d1c0c2d168368b1ddc160132f475cb2e03905803c86a7f7242d298175efd126e4c208032336c6f750518daa5cac63634abd3754f28fcb49d4e00036 +binfiles arch=x86_64-linux size=33 + bin/x86_64-linux/dvitype + bin/x86_64-linux/pooltype + +name texware.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of texware +containersize 55484 +containerchecksum eca7e00b683da8cc0eabc5ebf655163e44f997585fd25fff310f4625a72e58a208eb2ee7b0a1e87b0d57dedc0e842b4b13ac1c1f80016008961da97a54e859c7 +binfiles arch=x86_64-linuxmusl size=38 + bin/x86_64-linuxmusl/dvitype + bin/x86_64-linuxmusl/pooltype + +name texware.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of texware +containersize 56068 +containerchecksum 9503469c23cdf10abb9b53e513a093fa3e11f6931145563d29e74c656936b56ec954f92b3c84717d7dda66847f8b30c4591b350aa2e483fb78cbfbca696f530a +binfiles arch=x86_64-solaris size=39 + bin/x86_64-solaris/dvitype + bin/x86_64-solaris/pooltype + +name texworks +category TLCore +revision 54074 +shortdesc friendly cross-platform front end +longdesc See http://tug.org/texworks for information and downloads. TeX +longdesc Live includes executables and support files only for Windows. +depend texworks.ARCH +postaction fileassoc extension=.cls filetype=TL.TeXworks.edit +postaction fileassoc extension=.sty filetype=TL.TeXworks.edit +postaction fileassoc extension=.tex filetype=TL.TeXworks.edit +postaction filetype name=TL.TeXworks.edit cmd='"TEXDIR/bin/win32/texworks.exe" "%1"' +postaction shortcut type=menu name="TeXworks editor" cmd=TEXDIR/bin/win32/texworks.exe +containersize 492 +containerchecksum 4867a2f6ca333fc42d774154179f438970d392857b0f631f58211b7174c4b56c7fe9c43cac534cac1828d3edf18069fa781d4760ca472a99b5abfe4c7a6f72c9 +doccontainersize 736 +doccontainerchecksum 554afc96a17b407e415d85138e4074b6f1f82ab8e918db6e4d2e2dfa44e67b0d10ac1b548ceffeadc245de28b564cc4c4c431ec9d9c92241d1f500477fc72a64 +docfiles size=1 + texmf-dist/doc/texworks/README + +name texworks.win32 +category TLCore +revision 58285 +shortdesc win32 files of texworks +containersize 17923264 +containerchecksum 0bddc66f264242fca0a391f5c422d3c55de88334a4f32c2677593e96287076e23ba14acaf43ddfe424aa2d7ab11450bf6a8c0cfd5177c5bce81d7f08358a35da +binfiles arch=win32 size=14459 + bin/win32/texworks.exe + tlpkg/texworks/COPYING + tlpkg/texworks/README.txt + tlpkg/texworks/share/fonts/README + tlpkg/texworks/share/fonts/d050000l.pfb + tlpkg/texworks/share/fonts/s050000l.pfb + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-3 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-4 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-5 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-6 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-7 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-B5pc + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-ETen-B5 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS1-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS1-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETHK-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETHK-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETen-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETen-B5-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETen-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETenms-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETenms-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdla-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdla-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdlb-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdlb-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKgccs-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKgccs-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm314-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm314-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm471-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm471-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKscs-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKscs-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UCS2-B5pc + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UCS2-ETen-B5 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-3 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-4 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-5 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-GBK-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-GBpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK-EUC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK2K-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK2K-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBKp-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBKp-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBTpc-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBTpc-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UCS2-GBK-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UCS2-GBpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78ms-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78ms-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/83pv-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90ms-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90ms-RKSJ-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90ms-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90msp-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90msp-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-3 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-4 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-5 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-6 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-7 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-90ms-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-90pv-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-PS-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-PS-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hankaku + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hiragana + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Katakana + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/NWP-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/NWP-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Roman + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UCS2-90ms-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UCS2-90pv-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-HW-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-HW-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISPro-UCS2-HW-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISPro-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISPro-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX0213-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX0213-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX02132004-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX02132004-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/WP-Symbol + tlpkg/texworks/share/poppler/cMap/Adobe-Japan2/Adobe-Japan2-0 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-0 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-1 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-2 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-3 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-4 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-5 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-6 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-7 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-8 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-9 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/Adobe-KR-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-KR/UniAKR-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-KR/UniAKR-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-KR/UniAKR-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-KSCms-UHC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-KSCpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-Johab-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-Johab-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-HW-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-HW-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UCS2-KSCms-UHC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UCS2-KSCpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF8-V + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-CNS1 + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-GB1 + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-Japan1 + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-Korea1 + tlpkg/texworks/share/poppler/nameToUnicode/Bulgarian + tlpkg/texworks/share/poppler/nameToUnicode/Greek + tlpkg/texworks/share/poppler/nameToUnicode/Thai + tlpkg/texworks/share/poppler/unicodeMap/Big5 + tlpkg/texworks/share/poppler/unicodeMap/Big5ascii + tlpkg/texworks/share/poppler/unicodeMap/EUC-CN + tlpkg/texworks/share/poppler/unicodeMap/EUC-JP + tlpkg/texworks/share/poppler/unicodeMap/GBK + tlpkg/texworks/share/poppler/unicodeMap/ISO-2022-CN + tlpkg/texworks/share/poppler/unicodeMap/ISO-2022-JP + tlpkg/texworks/share/poppler/unicodeMap/ISO-2022-KR + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-6 + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-7 + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-8 + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-9 + tlpkg/texworks/share/poppler/unicodeMap/KOI8-R + tlpkg/texworks/share/poppler/unicodeMap/Latin2 + tlpkg/texworks/share/poppler/unicodeMap/Shift-JIS + tlpkg/texworks/share/poppler/unicodeMap/TIS-620 + tlpkg/texworks/share/poppler/unicodeMap/Windows-1255 + tlpkg/texworks/texworks-help/TeXworks-manual/en/Acknowledgements.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/AdvanceduseScripting.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Beyondthismanual.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/CompilingTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/CustomizingTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Firststeps.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/GoingfurtherEditingtools.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/GoingfurtherOthertools.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Installation.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Introduction.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Regularexpressions.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/bibname.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/contentsname.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/LMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/Linux.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/Mac.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/MacCmdKey.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/MacOptKey.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/RMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/TeXworks.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/Windows.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/cmsy10-c-41.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/cmsy10-c-4d.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/cmsy10-c-53.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/consoleOutput.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/errorParsingScript.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/example.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/iconAbortTypesetting.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/iconTypeset.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index0x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index1x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index2x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index3x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index4x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index5x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index6x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index7x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index8x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/interface-summary.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/replaceDialog.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/toolbar1.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/toolbar2.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/index.css + tlpkg/texworks/texworks-help/TeXworks-manual/en/index.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index10.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index11.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index12.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index13.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index14.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index15.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index16.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index17.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index18.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index19.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index2.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index21.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index22.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index23.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index24.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index25.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index26.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index27.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index28.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index30.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index31.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index32.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index34.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index35.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index38.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index39.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index40.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index41.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index42.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index44.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index45.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index46.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index47.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index48.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index49.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index5.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index6.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index8.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/indexname.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/manual.css + tlpkg/texworks/texworks-help/TeXworks-manual/en/tw-help-title.txt + tlpkg/texworks/texworks-help/TeXworks-manual/fr/AdaptationdeTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Allerplusloinautresoutils.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Allerplusloinoutilsdedition.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Audeladecemanuel.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/CompilerTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Expressionsregulieres.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Installation.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Introduction.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Priseenmain.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Remerciements.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/UsageavancelesScripts.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/bibname.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/contentsname.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/LMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/Linux.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/Mac.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/MacCmdKey.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/RMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/TeXworks.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/Windows.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/cmsy10-c-41.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/cmsy10-c-4d.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/cmsy10-c-53.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/consoleOutput.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/ec-lmr12-19.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/errorParsingScript.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/example.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/iconAbortTypesetting.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/iconTypeset.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index0x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index1x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index2x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index3x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index4x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index5x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index6x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index7x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index8x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/interface-Tw.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/rechremp.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/toolbar1.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/toolbar2.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index.css + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index11.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index12.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index13.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index14.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index15.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index16.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index17.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index18.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index19.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index2.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index20.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index21.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index23.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index24.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index25.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index26.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index27.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index28.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index29.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index30.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index31.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index33.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index34.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index35.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index37.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index38.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index41.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index42.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index43.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index44.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index45.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index46.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index48.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index49.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index5.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index50.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index51.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index52.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index53.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index6.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index7.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index9.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/indexname.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/manual.css + tlpkg/texworks/texworks-help/TeXworks-manual/fr/tw-help-title.txt + tlpkg/texworks/texworks.exe + +name tfrupee +category Package +revision 20770 +shortdesc A font offering the new (Indian) Rupee symbol +relocated 1 +longdesc The package provides LaTeX support for the (Indian) Rupee +longdesc symbol font, created by TechFat. The original font has been +longdesc converted to Adobe Type 1 format, and simple LaTeX support +longdesc written for its use. +execute addMap tfrupee.map +containersize 601352 +containerchecksum ee935ea5c6563fd8da4f403a1c3583b289b64e212aed4b9e3703ec345dc47c5521d291e1ae0a10c9aec2ebfed407fbf14e804bf51ae4c4a1e03046fc7cd0ad5c +doccontainersize 113240 +doccontainerchecksum 19da18d665a8369e58a26d4e979d5fd6c8b3187dfba97a281008627aeb8c5ee824dc2ad3f5c94c3b35c67fe28a646f44aa5f532912de5f5640b0a7d56afec2f8 +docfiles size=37 + RELOC/doc/fonts/tfrupee/LICENSE + RELOC/doc/fonts/tfrupee/README details="Readme" + RELOC/doc/fonts/tfrupee/tfrupee.pdf details="Package documentation" + RELOC/doc/fonts/tfrupee/tfrupee.tex +srccontainersize 538548 +srccontainerchecksum 30133dbf65f1a33f79ad8b2c8ee84ff376b39d12cf0d48c4e72e86b393e0d55f5768c7af5f5f3f6ff1d78fe2c7d4f2b09d2980107dd5aa1d94fb5ea27545ee9d +srcfiles size=1020 + RELOC/source/fonts/tfrupee/tfrupee.sfd +runfiles size=191 + RELOC/fonts/afm/public/tfrupee/tfrupee.afm + RELOC/fonts/map/dvips/tfrupee/tfrupee.map + RELOC/fonts/tfm/public/tfrupee/tfrupee.tfm + RELOC/fonts/type1/public/tfrupee/tfrupee.pfb + RELOC/tex/latex/tfrupee/tfrupee.sty +catalogue-ctan /fonts/tfrupee +catalogue-license gpl3 +catalogue-topics font font-type1 font-specialist +catalogue-version 1.02 + +name thaienum +category Package +revision 44140 +shortdesc Thai labels in enumerate environments +relocated 1 +longdesc This LaTeX package provides a command to use Thai numerals or +longdesc characters as labels in enumerate environments. Once the +longdesc package is loaded with \usepackage{thaienum} you can use labels +longdesc such as \thainum* or \thaimultialph* in conjunction with the +longdesc package enumitem. Concrete examples are given in the +longdesc documentation. +containersize 1556 +containerchecksum 25f6bd1e6e9586b261721b66b6b193c07f60dc074f7b7b1911b0a8ba4f33815c86945bcb3946ffe153f70f0dbaeec4dca8e5574f8369c754a6151fc271029f3b +doccontainersize 184444 +doccontainerchecksum 246dbb624a2e2e30bd5468c2596e7b3f7183c7dd9d03eda42fbed88fe51f16b53801ed39f85590d2739a93d48bc413fce5c52685d5425615f650b19f56013261 +docfiles size=58 + RELOC/doc/latex/thaienum/README.md details="Readme" + RELOC/doc/latex/thaienum/thaienum.pdf details="Package documentation" + RELOC/doc/latex/thaienum/thaienum.pre.tex + RELOC/doc/latex/thaienum/thaienum.tex +runfiles size=1 + RELOC/tex/latex/thaienum/thaienum.sty +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-license lppl1.3 +catalogue-topics thai list-enum numbers +catalogue-version 0.2 + +name thaispec +category Package +revision 58019 +shortdesc Thai Language Typesetting in XeLaTeX +relocated 1 +longdesc This package allows you to input Thai characters directly to +longdesc LaTeX documents and choose any (system wide) Thai fonts for +longdesc typesetting in XeLaTeX. It also tries to appropriately justify +longdesc paragraphs with no more external tools. Required packages are +longdesc fontspec, ucharclasses, polyglossia, setspace, kvoptions, +longdesc xstring, and xpatch. +containersize 3240 +containerchecksum 02434f56fcc8ab499b4f80439fe9099d5dedef00d6dd295dfc47644a7b1397486a419e1ae2b89a0aefd9cb3a093974158a72a2eb2921d25df3231a7628897968 +doccontainersize 86548 +doccontainerchecksum 26b88ea1b87d8391b8864011449116df3fccbbb978aa76e6cc51dfa893eac87851ee10b1320350de57103b80c6bfb30ca97dd1cdf13014157ea35eaff780843b +docfiles size=23 + RELOC/doc/latex/thaispec/README.md details="Readme" + RELOC/doc/latex/thaispec/thaispec.pdf details="Package documentation (Thai)" language="th" +srccontainersize 7068 +srccontainerchecksum e79096902654f302311ab531f8ead3ab9852323ed774fd217aff94c0e1ce456c01a5d8a28854b7c5d65d0274318a22cacd4dc04a00498eaacd92f538f20f6013 +srcfiles size=7 + RELOC/source/latex/thaispec/thaispec.dtx + RELOC/source/latex/thaispec/thaispec.ins +runfiles size=3 + RELOC/tex/latex/thaispec/thaispec.sty +catalogue-contact-home https://github.com/epsilonxe/LaTeX/tree/master/package/thaispec +catalogue-ctan /language/thai/thaispec +catalogue-license lppl1.3 +catalogue-topics thai xetex +catalogue-version 2021.03.01 + +name thalie +category Package +revision 51789 +shortdesc Typeset drama plays +relocated 1 +longdesc The package provides tools to typeset drama plays. It defines +longdesc commands to introduce characters' lines, to render stage +longdesc directions, to divide a play into acts and scenes and to build +longdesc the dramatis personae automatically. +containersize 5056 +containerchecksum 193f59cc9fcad15ca4fd52e011152a08066329ed496ad55d4245f232a701692b8c3a33f24d457358d696ec540041beb90ef37696a77b1685f22f15031665585f +doccontainersize 428224 +doccontainerchecksum 104972514a171a25557b5a0ba6501be9556f77eb7fdedc60843797ba7fc53873b75cbf4e470dfb76866e6042f77c5c39ae86367a119f64b34a18183eb0ef1be8 +docfiles size=111 + RELOC/doc/latex/thalie/CHANGELOG.md + RELOC/doc/latex/thalie/LICENSE.txt + RELOC/doc/latex/thalie/README.md details="Readme" + RELOC/doc/latex/thalie/thalie.pdf details="Package documentation" +srccontainersize 18596 +srccontainerchecksum 31b0a6d7452e3b5b8affa9e4e89146c90b7e9f2af60eb7f741d4bc5722147c0ca2a902fb61b23d9a47c3bc32e2e5b38a170f3a194049cd8a1009a7d4cc199995 +srcfiles size=19 + RELOC/source/latex/thalie/thalie.dtx + RELOC/source/latex/thalie/thalie.ins +runfiles size=9 + RELOC/tex/latex/thalie/thalie-english.trsl + RELOC/tex/latex/thalie/thalie-fallback.trsl + RELOC/tex/latex/thalie/thalie-french.trsl + RELOC/tex/latex/thalie/thalie-german.trsl + RELOC/tex/latex/thalie/thalie.sty +catalogue-also drama dramatist play +catalogue-contact-bugs https://framagit.org/spalax/thalie/issues +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-license lppl1.3 +catalogue-topics drama-script +catalogue-version 0.10b + +name theanodidot +category Package +revision 54512 +shortdesc TheanoDidot fonts with LaTeX support +relocated 1 +longdesc This package provides the TheanoDidot font designed by Alexey +longdesc Kryukov, in both TrueType and Type1 formats, with support for +longdesc both traditional and modern LaTeX processors. An +longdesc artificially-emboldened variant has been provided but there are +longdesc no italic variants. The package is named after Theano, a famous +longdesc Ancient Greek woman philosopher, who was first a student of +longdesc Pythagoras, and supposedly became his wife. The Didot family +longdesc were active as designers for about 100 years in the 18th and +longdesc 19th centuries. They were printers, publishers, typeface +longdesc designers, inventors and intellectuals. Around 1800 the Didot +longdesc family owned the most important print shop and font foundry in +longdesc France. Pierre Didot, the printer, published a document with +longdesc the typefaces of his brother, Firmin Didot, the typeface +longdesc designer. The strong clear forms of this alphabet display +longdesc objective, rational characteristics and are representative of +longdesc the time and philosophy of the Enlightenment. +execute addMap TheanoDidot.map +containersize 377204 +containerchecksum daeb092b73d0a9aac15c917aa72bee060fdf879aae0c2df9b391822f765983f0c048b1a15643a3aa7075e3c5a51eeabdb06ebf3b568930d7edb8e64bbf8f473c +doccontainersize 44204 +doccontainerchecksum 77c32df3bf56f8d38f27823eca098c968b203fb1ca2e4682f76a4071821952631b0187893f4636879808903e262bd2b01b53a50b517cc7098011d9f0262739d0 +docfiles size=14 + RELOC/doc/fonts/theanodidot/README details="Readme" + RELOC/doc/fonts/theanodidot/SILOpenFontLicense.txt + RELOC/doc/fonts/theanodidot/theanodidot-samples.pdf details="Package documentation" + RELOC/doc/fonts/theanodidot/theanodidot-samples.tex +runfiles size=210 + RELOC/fonts/enc/dvips/theanodidot/thdid_alkcdl.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_ertqq3.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_f66p55.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_izaajv.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_k6ngqv.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_lqxlns.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_oiucyb.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_whuz6y.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_xgfkyc.enc + RELOC/fonts/enc/dvips/theanodidot/thdid_zj2gif.enc + RELOC/fonts/map/dvips/theanodidot/TheanoDidot.map + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/theanodidot/TheanoDidot-Regular-tosf-ts1.tfm + RELOC/fonts/truetype/public/theanodidot/TheanoDidot-Bold.ttf + RELOC/fonts/truetype/public/theanodidot/TheanoDidot-Regular.ttf + RELOC/fonts/type1/public/theanodidot/TheanoDidot-Bold.pfb + RELOC/fonts/type1/public/theanodidot/TheanoDidot-Regular.pfb + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Bold-tlf-t1.vf + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Bold-tosf-t1.vf + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Regular-tlf-t1.vf + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Regular-tosf-t1.vf + RELOC/fonts/vf/public/theanodidot/TheanoDidot-Regular-tosf-ts1.vf + RELOC/tex/latex/theanodidot/LGRTheanoDidot-TLF.fd + RELOC/tex/latex/theanodidot/LGRTheanoDidot-TOsF.fd + RELOC/tex/latex/theanodidot/LY1TheanoDidot-TLF.fd + RELOC/tex/latex/theanodidot/LY1TheanoDidot-TOsF.fd + RELOC/tex/latex/theanodidot/OT1TheanoDidot-TLF.fd + RELOC/tex/latex/theanodidot/OT1TheanoDidot-TOsF.fd + RELOC/tex/latex/theanodidot/T1TheanoDidot-TLF.fd + RELOC/tex/latex/theanodidot/T1TheanoDidot-TOsF.fd + RELOC/tex/latex/theanodidot/TS1TheanoDidot-TLF.fd + RELOC/tex/latex/theanodidot/TS1TheanoDidot-TOsF.fd + RELOC/tex/latex/theanodidot/TheanoDidot.sty +catalogue-contact-development https://github.com/akryukov/theano +catalogue-ctan /fonts/theanodidot +catalogue-license lppl ofl +catalogue-topics font font-body font-serif font-proportional font-greek font-multilingual font-type1 font-ttf font-supp font-t1enc + +name theanomodern +category Package +revision 54512 +shortdesc Theano Modern fonts with LaTeX support +relocated 1 +longdesc This package provides the TheanoModern font designed by Alexey +longdesc Kryukov, in both TrueType and Type1 formats, with support for +longdesc both traditional and modern LaTeX processors. An +longdesc artificially-emboldened variant has been provided but there are +longdesc no italic variants. The package is named after Theano, a famous +longdesc Ancient Greek woman philosopher, who was first a student of +longdesc Pythagoras, and supposedly became his wife. +execute addMap TheanoModern.map +containersize 401128 +containerchecksum a306f5b0145c1304157403de3a1ba0e0c350b1cb2bf467c5fbc5a0f4427622029c1c37b6b139f4e0fcdd145f30a979fe821353eb0782a0fdbaac6d614d041b78 +doccontainersize 33260 +doccontainerchecksum c2181c14b43a5a9670ed13e9f2828c4effabaf06a9377789c3510072c779251e3d857bbbc5655bd0285cd7f05b23c0a669292f4ef5667dfb35ae89ea70cd838a +docfiles size=12 + RELOC/doc/fonts/theanomodern/README details="Readme" + RELOC/doc/fonts/theanomodern/SILOpenFontLicense.txt + RELOC/doc/fonts/theanomodern/theanomodern-samples.pdf details="Font samples" + RELOC/doc/fonts/theanomodern/theanomodern-samples.tex +runfiles size=218 + RELOC/fonts/enc/dvips/theanomodern/thedid_alkcdl.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_ertqq3.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_f66p55.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_izaajv.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_k6ngqv.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_lqxlns.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_oiucyb.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_whuz6y.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_xgfkyc.enc + RELOC/fonts/enc/dvips/theanomodern/thedid_zj2gif.enc + RELOC/fonts/map/dvips/theanomodern/TheanoModern.map + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/theanomodern/TheanoModern-Regular-tosf-ts1.tfm + RELOC/fonts/truetype/public/theanomodern/TheanoModern-Bold.ttf + RELOC/fonts/truetype/public/theanomodern/TheanoModern-Regular.ttf + RELOC/fonts/type1/public/theanomodern/TheanoModern-Bold.pfb + RELOC/fonts/type1/public/theanomodern/TheanoModern-Regular.pfb + RELOC/fonts/vf/public/theanomodern/TheanoModern-Bold-tlf-t1.vf + RELOC/fonts/vf/public/theanomodern/TheanoModern-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/theanomodern/TheanoModern-Bold-tosf-t1.vf + RELOC/fonts/vf/public/theanomodern/TheanoModern-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/theanomodern/TheanoModern-Regular-tlf-t1.vf + RELOC/fonts/vf/public/theanomodern/TheanoModern-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/theanomodern/TheanoModern-Regular-tosf-t1.vf + RELOC/fonts/vf/public/theanomodern/TheanoModern-Regular-tosf-ts1.vf + RELOC/tex/latex/theanomodern/LGRTheanoModern-TLF.fd + RELOC/tex/latex/theanomodern/LGRTheanoModern-TOsF.fd + RELOC/tex/latex/theanomodern/LY1TheanoModern-TLF.fd + RELOC/tex/latex/theanomodern/LY1TheanoModern-TOsF.fd + RELOC/tex/latex/theanomodern/OT1TheanoModern-TLF.fd + RELOC/tex/latex/theanomodern/OT1TheanoModern-TOsF.fd + RELOC/tex/latex/theanomodern/T1TheanoModern-TLF.fd + RELOC/tex/latex/theanomodern/T1TheanoModern-TOsF.fd + RELOC/tex/latex/theanomodern/TS1TheanoModern-TLF.fd + RELOC/tex/latex/theanomodern/TS1TheanoModern-TOsF.fd + RELOC/tex/latex/theanomodern/TheanoModern.sty +catalogue-ctan /fonts/theanomodern +catalogue-license ofl lppl +catalogue-topics font font-body font-greek font-multilingual font-serif font-proportional font-ttf font-type1 font-supp font-t1enc + +name theanooldstyle +category Package +revision 54512 +shortdesc Theano OldStyle fonts with LaTeX support +relocated 1 +longdesc This package provides the Theano OldStyle font designed by +longdesc Alexey Kryukov, in both TrueType and Type1 formats, with +longdesc support for both traditional and modern LaTeX processors. An +longdesc artificially-emboldened variant has been provided but there are +longdesc no italic variants. The package is named after Theano, a famous +longdesc Ancient Greek woman philosopher, who was first a student of +longdesc Pythagoras, and supposedly became his wife. +execute addMap TheanoOldStyle.map +containersize 493064 +containerchecksum b8890a2f8af2700c042d1953fbf8c8cf0d499d7458985476bba4a1ad83c9b4c6ec9f8d6f30986b57ca532b0b41208ce07d4d76687f52fa8863da75cc39f24d24 +doccontainersize 34680 +doccontainerchecksum ceb00e62d2e9adeab0244ba58b052fcc0a068f7afd8e3936767909b8377da11c8178eaa9015d1d84dd95cc4b5c63c01654e032855b707c03197b63c9e2097d55 +docfiles size=12 + RELOC/doc/fonts/theanooldstyle/README details="Readme" + RELOC/doc/fonts/theanooldstyle/SILOpenFontLicense.txt + RELOC/doc/fonts/theanooldstyle/theanooldstyle-samples.pdf details="Font samples" + RELOC/doc/fonts/theanooldstyle/theanooldstyle-samples.tex +runfiles size=251 + RELOC/fonts/enc/dvips/theanooldstyle/thost_alkcdl.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_ertqq3.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_f66p55.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_izaajv.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_ogssaz.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_oiucyb.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_whuz6y.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_xf32t5.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_xgfkyc.enc + RELOC/fonts/enc/dvips/theanooldstyle/thost_zj2gif.enc + RELOC/fonts/map/dvips/theanooldstyle/TheanoOldStyle.map + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/theanooldstyle/TheanoOldStyle-Regular-tosf-ts1.tfm + RELOC/fonts/truetype/public/theanooldstyle/TheanoOldStyle-Bold.ttf + RELOC/fonts/truetype/public/theanooldstyle/TheanoOldStyle-Regular.ttf + RELOC/fonts/type1/public/theanooldstyle/TheanoOldStyle-Bold.pfb + RELOC/fonts/type1/public/theanooldstyle/TheanoOldStyle-Regular.pfb + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Bold-tlf-t1.vf + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Bold-tosf-t1.vf + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Regular-tlf-t1.vf + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Regular-tosf-t1.vf + RELOC/fonts/vf/public/theanooldstyle/TheanoOldStyle-Regular-tosf-ts1.vf + RELOC/tex/latex/theanooldstyle/LGRTheanoOldStyle-TLF.fd + RELOC/tex/latex/theanooldstyle/LGRTheanoOldStyle-TOsF.fd + RELOC/tex/latex/theanooldstyle/LY1TheanoOldStyle-TLF.fd + RELOC/tex/latex/theanooldstyle/LY1TheanoOldStyle-TOsF.fd + RELOC/tex/latex/theanooldstyle/OT1TheanoOldStyle-TLF.fd + RELOC/tex/latex/theanooldstyle/OT1TheanoOldStyle-TOsF.fd + RELOC/tex/latex/theanooldstyle/T1TheanoOldStyle-TLF.fd + RELOC/tex/latex/theanooldstyle/T1TheanoOldStyle-TOsF.fd + RELOC/tex/latex/theanooldstyle/TS1TheanoOldStyle-TLF.fd + RELOC/tex/latex/theanooldstyle/TS1TheanoOldStyle-TOsF.fd + RELOC/tex/latex/theanooldstyle/TheanoOldStyle.sty +catalogue-ctan /fonts/theanooldstyle +catalogue-license ofl lppl +catalogue-topics font font-body font-greek font-multilingual font-serif font-proportional font-ttf font-type1 font-supp font-t1enc + +name theatre +category Package +revision 45363 +shortdesc A sophisticated package for typesetting stage plays +relocated 1 +longdesc This package enables the user to typeset stage plays in a way +longdesc that permits to create highly customized printouts for each +longdesc actor. +containersize 500 +containerchecksum d450ef176d5543581316ff36590eba2ed829a3f2b8a019fa8ca379af0ae2aa4df4e4e3068b52ed91edec4df33d08aa78b1f5f21d0fdf33d0aa718704e3de2851 +doccontainersize 124012 +doccontainerchecksum cb4920d5acfe0e1288c7d459d15b06b9ced1130b56ea92c9ed49376743cee7e3fbb694362bac51f2660269992d64717effc5d8e9f52a21337fe7eed51a4622f6 +docfiles size=56 + RELOC/doc/latex/theatre/README details="Readme" + RELOC/doc/latex/theatre/doc/Help_Theatre.pdf details="Package documentation (French and English)" + RELOC/doc/latex/theatre/doc/help_source/ExampleMacBeth.tex + RELOC/doc/latex/theatre/doc/help_source/Exemplelemaladeimaginaire.tex + RELOC/doc/latex/theatre/doc/help_source/HelpTheatre_en.tex + RELOC/doc/latex/theatre/doc/help_source/HelpTheatre_fr.tex + RELOC/doc/latex/theatre/doc/help_source/Help_Theatre.tex + RELOC/doc/latex/theatre/doc/help_source/ListeCommandesTheatre.tex + RELOC/doc/latex/theatre/doc/help_source/createrules.tex + RELOC/doc/latex/theatre/doc/help_source/creerlesroles.tex + RELOC/doc/latex/theatre/doc/help_source/util/chimakehelps.sty + RELOC/doc/latex/theatre/doc/help_source/util/languesetfonteslatex.tex + RELOC/doc/latex/theatre/doc/help_source/util/languesetfontesxetex.tex + RELOC/doc/latex/theatre/doc/help_source/util/monformatindex.ist + RELOC/doc/latex/theatre/tex/theatre.sty +catalogue-contact-home https://christian.hinque.fr/wp/latex/ +catalogue-ctan /macros/latex/contrib/theatre +catalogue-license lppl1.2 +catalogue-topics drama-script +catalogue-version 0.1 + +name theoremref +category Package +revision 54512 +shortdesc References with automatic theorem names +relocated 1 +longdesc The theoremref package provides variants of the \label and \ref +longdesc commands for theorem-like environments, capable of +longdesc automatically typesetting references including the theorem name +longdesc (apart from the theorem number). The scheme is particularly +longdesc valuable if the author decides to change a lemma to a +longdesc proposition or a theorem (or whatever). +containersize 4104 +containerchecksum ed6990b6c7a9ec4e72770252bcd07ad5ddf4015cde0129dc0a89cb95bc96958963209fe46f0ba9a614ebc0cdb358d8125ee3eb22b9a4249367d975ec12250a3e +doccontainersize 333032 +doccontainerchecksum 022ef42c6765c661f5828a8adcad7710d74f168b3a2dfad0e73218d1a5295b25ea24d5fa010a01151939e87989cfd6457917167e69cebf5ee5a364347eea5f2f +docfiles size=94 + RELOC/doc/latex/theoremref/COPYING + RELOC/doc/latex/theoremref/README details="Readme" + RELOC/doc/latex/theoremref/theoremref-doc.pdf details="Package documentation" + RELOC/doc/latex/theoremref/theoremref-doc.tex +runfiles size=3 + RELOC/tex/latex/theoremref/theoremref.sty +catalogue-ctan /macros/latex/contrib/theoremref +catalogue-license lppl gpl2 +catalogue-topics label-ref maths-theorem + +name thesis-ekf +category Package +revision 57207 +shortdesc Thesis class for Eszterhazy Karoly University +relocated 1 +longdesc This is a class file for theses and dissertations at the +longdesc Eszterhazy Karoly University (Eger, Hungary). It is based on +longdesc the report class. The documentation is in Hungarian. +containersize 59556 +containerchecksum 34f9f72bd8ef813c0ef6a01956304ef99f8a0fecf17786f9aa51fc6aac4655f5a76aa030509379699f6dcbe6a7245cd1d01f2fd0df8fd3bc77e5f8ddaa0ffb8c +doccontainersize 313284 +doccontainerchecksum 48989f4df56a2820c048651831b598fd3c956ffb2733a9d3e8a68891e7c410a72425ba3a32a4a0ecd6f7640f7054d85016c7c9dd129ad59849588cdc09547548 +docfiles size=78 + RELOC/doc/latex/thesis-ekf/README details="Readme" + RELOC/doc/latex/thesis-ekf/thesis-ekf.pdf details="Package documentation" language="hu" +srccontainersize 9064 +srccontainerchecksum 45c2329fa7994a119e1c8c2d3e777b4ab1083496c538edcda3382d2321a4b7cea97daddde8efd75bad12b79d95d635f45bd79f1db682a384ef320d4b000c1ec1 +srcfiles size=10 + RELOC/source/latex/thesis-ekf/thesis-ekf.dtx + RELOC/source/latex/thesis-ekf/thesis-ekf.ins +runfiles size=43 + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-de.eps + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-de.pdf + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-en.eps + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-en.pdf + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-hu.eps + 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-license lppl1.2 +catalogue-topics dissertation class hungarian +catalogue-version 4.1 + +name thesis-gwu +category Package +revision 54287 +shortdesc Thesis class for George Washington University School of Engineering and Applied Science +relocated 1 +longdesc This class is an attempt to create a standard format for GWU +longdesc SEAS dissertations/theses. It automatically handles many of the +longdesc complicated formatting requirements and includes many useful +longdesc packages. An example thesis is provided serving as a user guide +longdesc and a demonstration of the thesis. +containersize 9780 +containerchecksum 7001a1f11d069fd15894b34a2d220394924802c3ef1a37869e0d717bdb650bb53c01078dc14760f7887addece64bfb0f6662741bfb6dc4dd77d2ff1f3d0d7415 +doccontainersize 405812 +doccontainerchecksum e53925a31286089cb5e8f051cdf969c6bbf29db0ae2629c1a584ead2885cc0e1f95c5b2cd9583056c8ab40b1c41d4f8203b876a1e6365d8967e3942440e04e2e +docfiles size=152 + RELOC/doc/latex/thesis-gwu/LICENSE.md + RELOC/doc/latex/thesis-gwu/README.md details="Readme" + RELOC/doc/latex/thesis-gwu/figures/data.png + RELOC/doc/latex/thesis-gwu/figures/file_extensions.png + RELOC/doc/latex/thesis-gwu/figures/orbital_mechanics.png + RELOC/doc/latex/thesis-gwu/figures/picard_yes.jpg + RELOC/doc/latex/thesis-gwu/figures/tumblr_lrvyd1GuNe1r3aueno1_400.jpg + RELOC/doc/latex/thesis-gwu/tex/appendix-ex.tex + RELOC/doc/latex/thesis-gwu/tex/appendix.tex + RELOC/doc/latex/thesis-gwu/tex/conclusion.tex + RELOC/doc/latex/thesis-gwu/tex/discussion.tex + RELOC/doc/latex/thesis-gwu/tex/frontmatter.tex + RELOC/doc/latex/thesis-gwu/tex/intro-example.tex + RELOC/doc/latex/thesis-gwu/tex/intro.tex + RELOC/doc/latex/thesis-gwu/tex/litreview.tex + RELOC/doc/latex/thesis-gwu/tex/manual-ex.tex + RELOC/doc/latex/thesis-gwu/tex/manual.tex + RELOC/doc/latex/thesis-gwu/tex/methods.tex + RELOC/doc/latex/thesis-gwu/tex/prevmethods.tex + RELOC/doc/latex/thesis-gwu/tex/results-example.tex + RELOC/doc/latex/thesis-gwu/tex/results.tex + RELOC/doc/latex/thesis-gwu/thesis-bib.bib + RELOC/doc/latex/thesis-gwu/thesis-sample.pdf details="Example thesis and user guide" + RELOC/doc/latex/thesis-gwu/thesis-sample.tex +runfiles size=13 + RELOC/tex/latex/thesis-gwu/thesis-gwu.cls +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-license gpl3 +catalogue-topics dissertation class +catalogue-version 1.7.0 + +name thesis-qom +category Package +revision 49124 +shortdesc Thesis style of the University of Qom, Iran +relocated 1 +longdesc This package provides a class file for writing theses and +longdesc dissertations according to the University of Qom Graduate +longdesc Schools's guidelines for the electronic submission of master +longdesc theses and PhD dissertations. The class should meet all the +longdesc current requirements and is updated whenever the university +longdesc guidelines change. The class needs XeLaTeX in conjunction with +longdesc the following fonts: XB Niloofar, IranNastaliq, IRlotus, XB +longdesc Zar, XB Titre, and Yas. +containersize 14060 +containerchecksum 5afaa0d05b88dbe2d3e5dc2450d1d01b57a24f54be4437c2e9c71afa6c8b1f10144c674de2d8062c6d4a5b7a5140b1fac6ba82bb68c03ecb6560d8afd1384cae +doccontainersize 1248052 +doccontainerchecksum 7bfe521b8f1df650304080e50805f48437e9b22b5b06f3f2fc309bc770ea0370d0e5acf2977c4332e0ca3d7b664c2dc8161f31f057a910069ba1cb585225145d +docfiles size=428 + RELOC/doc/xelatex/thesis-qom/Print-PDF.png + RELOC/doc/xelatex/thesis-qom/README details="Readme" + RELOC/doc/xelatex/thesis-qom/Xindy_Make_Index.png + RELOC/doc/xelatex/thesis-qom/basmalah.jpg + RELOC/doc/xelatex/thesis-qom/bib-index.tex + RELOC/doc/xelatex/thesis-qom/bibref.png + RELOC/doc/xelatex/thesis-qom/bidabad.png + RELOC/doc/xelatex/thesis-qom/comma.png + RELOC/doc/xelatex/thesis-qom/correctWriting.tex + RELOC/doc/xelatex/thesis-qom/dicen2fa.tex + RELOC/doc/xelatex/thesis-qom/dicfa2en.tex + RELOC/doc/xelatex/thesis-qom/installation.tex + RELOC/doc/xelatex/thesis-qom/intro.tex + RELOC/doc/xelatex/thesis-qom/knuth.jpg + RELOC/doc/xelatex/thesis-qom/labs.tex + RELOC/doc/xelatex/thesis-qom/lamport.jpg + RELOC/doc/xelatex/thesis-qom/latexCommands.tex + RELOC/doc/xelatex/thesis-qom/logo.jpg + RELOC/doc/xelatex/thesis-qom/morelatex.tex + RELOC/doc/xelatex/thesis-qom/preface.tex + RELOC/doc/xelatex/thesis-qom/qomthesis-guide.tex + RELOC/doc/xelatex/thesis-qom/realSample.tex + RELOC/doc/xelatex/thesis-qom/references.bib + RELOC/doc/xelatex/thesis-qom/settings.tex + RELOC/doc/xelatex/thesis-qom/test-crop.jpg + RELOC/doc/xelatex/thesis-qom/texworks_preferences.png + RELOC/doc/xelatex/thesis-qom/thesis-qom.pdf details="Package documentation" language="fa-ir" + RELOC/doc/xelatex/thesis-qom/thesis-qom.tex + RELOC/doc/xelatex/thesis-qom/xindy_shellescape.png +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-license lppl1.3c +catalogue-topics dissertation class xetex +catalogue-version 0.42 + +name thesis-titlepage-fhac +category Package +revision 15878 +shortdesc Little style to create a standard titlepage for diploma thesis +relocated 1 +longdesc Yet another thesis titlepage style: support of Fachhochschule +longdesc Aachen (Standort Juelich) +containersize 3132 +containerchecksum 62cdba17287f90580fe6273d1ca9143c9fac01d7da214a20413995b925c6eced385b3a5c172e8bedb4f17396ed7e9b78e789ca475c5efe542283d9b421bd6ffb +doccontainersize 135708 +doccontainerchecksum 13378f3ef37bd1033d009d03772244e048ff2a16b95ca8a0f14feeda8c44b29036276c41aae812cf1c28ac5684edad56b000f8a45576bd0065fb844f5b6dd189 +docfiles size=82 + RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.eps + RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.pdf + RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.png + RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.tif + RELOC/doc/latex/thesis-titlepage-fhac/README details="README file" + RELOC/doc/latex/thesis-titlepage-fhac/antrc_pre.bat + RELOC/doc/latex/thesis-titlepage-fhac/build.xml + RELOC/doc/latex/thesis-titlepage-fhac/diplomArbeit.ltx + RELOC/doc/latex/thesis-titlepage-fhac/doxygen_header.tex + RELOC/doc/latex/thesis-titlepage-fhac/fhACtitlepage.pdf details="Package documentation" + RELOC/doc/latex/thesis-titlepage-fhac/pdf_with_figbig_and_glossar.tco +srccontainersize 8004 +srccontainerchecksum 34b0f176df84b1b1d1f3e47c7c01d640b0e74e30a86488e07e9e67c61c80a96cb1b9ec835266dbee3e45a952f406ade5af5173e7df33f1d12d1b1f5d0611ac75 +srcfiles size=8 + RELOC/source/latex/thesis-titlepage-fhac/doxygen_header.dtx.input + RELOC/source/latex/thesis-titlepage-fhac/fhACtitlepage.dtx + RELOC/source/latex/thesis-titlepage-fhac/fhACtitlepage.ins + RELOC/source/latex/thesis-titlepage-fhac/gloss_add.dtx.input +runfiles size=5 + RELOC/tex/latex/thesis-titlepage-fhac/fhACtitlepage.cfg + RELOC/tex/latex/thesis-titlepage-fhac/fhACtitlepage.sty + 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-license lppl +catalogue-topics dissertation +catalogue-version 0.1 + +name thinsp +category Package +revision 39669 +shortdesc A stretchable \thinspace for LaTeX +relocated 1 +longdesc The package redefines \thinspace to have a stretch component. +containersize 1352 +containerchecksum ddc80b4de32524ce76fe34e8f88d01e2db18a8bbf60a718454a0303aea8082fc2e495c89c2ad0a7459ed3151e890e30a1263267f249581e24bac87113a5fd266 +doccontainersize 297648 +doccontainerchecksum b5b50522a4a7b5f7772118d95fdf42e2f570ac35c49a8690560df27df0754a170acddd782b516fa185c0f6ef2abb3ff8a9f366370c2ad46e2e4d32dba21e634b +docfiles size=82 + RELOC/doc/latex/thinsp/COPYRIGHT + RELOC/doc/latex/thinsp/README details="Readme" + RELOC/doc/latex/thinsp/thinsp.pdf details="Package documentation" + RELOC/doc/latex/thinsp/thinsp.tex +runfiles size=1 + RELOC/tex/latex/thinsp/thinsp.sty +catalogue-ctan /macros/latex/contrib/thinsp +catalogue-license gpl +catalogue-topics typesetting +catalogue-version 0.2 + +name thmbox +category Package +revision 15878 +shortdesc Decorate theorem statements +relocated 1 +longdesc The package defines an environment thmbox that presents +longdesc theorems, definitions and similar objects in boxes decorated +longdesc with frames and various aesthetic features. The standard macro +longdesc \newtheorem may be redefined to use the environment. +containersize 2416 +containerchecksum 83ceeb0cf84ff75afb734f41be5a5309692c6804a5a20627c54cc8760f8ac5e205cf1a24097c8b8624823668796092d620f5ffbc488f63b87e7cbf9365279aac +doccontainersize 93936 +doccontainerchecksum ad8e0710a15781eb3164527dd16ecc2050d3cd3317c386841ad8612a9ebc6055a1501272e3b01bcbc6a7f1ffa80455bf2ccdc0cc9ff4428c9688e9f6404a16ff +docfiles size=30 + RELOC/doc/latex/thmbox/README details="Readme" + RELOC/doc/latex/thmbox/thmbox.pdf details="Package documentation" +srccontainersize 8324 +srccontainerchecksum 1b559b9286a97c3157d568982513541028d96cfd5d67ac541909586251ac3729574c23a05ebdfc42ab06a92ab2ea0cef878b1f42983d06fd48f825962de57cb6 +srcfiles size=9 + RELOC/source/latex/thmbox/thmbox.dtx + RELOC/source/latex/thmbox/thmbox.ins +runfiles size=2 + RELOC/tex/latex/thmbox/thmbox.sty +catalogue-also shadethm +catalogue-ctan /macros/latex/contrib/thmbox +catalogue-license lppl +catalogue-topics maths-theorem decoration + +name thmtools +category Package +revision 56070 +shortdesc Extensions to theorem environments +relocated 1 +longdesc The bundle provides several packages for commonly-needed +longdesc support for typesetting theorems. The packages should work with +longdesc kernel theorems (theorems 'out of the box' with LaTeX), and the +longdesc theorem and amsthm packages. Features of the bundle include: a +longdesc key-value interface to \newtheorem; a \listoftheorems command; +longdesc hyperref and autoref compatibility; a mechanism for restating +longdesc entire theorems in a single macro call. +containersize 13276 +containerchecksum e7b4a7b97e7ace18e6d02d63d1e6014d0f702dfeca27f6e921a70a7c34797104c6bc26ca3717fe8237923f1c66fbb010b9e76a192d49f1600fd3362badb6261a +doccontainersize 253364 +doccontainerchecksum 602711e37b3ff9a46c0e19cd99b1d4e3b40406192fef9746bca7d667273907c1f9aceb97078bb877ba52dc75dcd8cf13cfd31de3c184e2ea7760b9a721cf991a +docfiles size=77 + RELOC/doc/latex/thmtools/COPYING + RELOC/doc/latex/thmtools/README.md details="Readme" + RELOC/doc/latex/thmtools/VERSION.tex + RELOC/doc/latex/thmtools/changes.txt + RELOC/doc/latex/thmtools/thmtools-manual.pdf details="Package documentation" + RELOC/doc/latex/thmtools/thmtools-manual.tex +srccontainersize 20484 +srccontainerchecksum 58cc1f1259bcaaad68cd0316bf786822ca34325e965a5a0cb2c825b841ef327bc4c31e20e9c6bf3bc183d06cbca565cdb2c99e1fc8d1bd4c9625b265d97fcad8 +srcfiles size=28 + RELOC/source/latex/thmtools/aliasctr.dtx + RELOC/source/latex/thmtools/parseargs.dtx + RELOC/source/latex/thmtools/thm-amsthm.dtx + RELOC/source/latex/thmtools/thm-autoref.dtx + RELOC/source/latex/thmtools/thm-beamer.dtx + RELOC/source/latex/thmtools/thm-kv.dtx + RELOC/source/latex/thmtools/thm-listof.dtx + RELOC/source/latex/thmtools/thm-llncs.dtx + RELOC/source/latex/thmtools/thm-ntheorem.dtx + RELOC/source/latex/thmtools/thm-patch.dtx + RELOC/source/latex/thmtools/thm-restate.dtx + RELOC/source/latex/thmtools/thmdef-mdframed.dtx + RELOC/source/latex/thmtools/thmdef-shaded.dtx + RELOC/source/latex/thmtools/thmdef-thmbox.dtx + RELOC/source/latex/thmtools/thmtools.dtx + RELOC/source/latex/thmtools/thmtools.ins + RELOC/source/latex/thmtools/unique.dtx +runfiles size=23 + RELOC/tex/latex/thmtools/aliasctr.sty + RELOC/tex/latex/thmtools/parseargs.sty + RELOC/tex/latex/thmtools/thm-amsthm.sty + RELOC/tex/latex/thmtools/thm-autoref.sty + RELOC/tex/latex/thmtools/thm-beamer.sty + RELOC/tex/latex/thmtools/thm-kv.sty + RELOC/tex/latex/thmtools/thm-listof.sty + RELOC/tex/latex/thmtools/thm-llncs.sty + RELOC/tex/latex/thmtools/thm-ntheorem.sty + RELOC/tex/latex/thmtools/thm-patch.sty + RELOC/tex/latex/thmtools/thm-restate.sty + RELOC/tex/latex/thmtools/thmdef-mdframed.sty + RELOC/tex/latex/thmtools/thmdef-shaded.sty + RELOC/tex/latex/thmtools/thmdef-thmbox.sty + RELOC/tex/latex/thmtools/thmtools.sty + RELOC/tex/latex/thmtools/unique.sty +catalogue-contact-bugs https://github.com/muzimuzhi/thmtools/issues +catalogue-contact-repository https://github.com/muzimuzhi/thmtools +catalogue-ctan /macros/latex/contrib/thmtools +catalogue-license lppl1.3c +catalogue-topics maths maths-theorem +catalogue-version 72 + +name threadcol +category Package +revision 28754 +shortdesc Organize document columns into PDF "article thread" +relocated 1 +longdesc The package combines a document's columns into a PDF "article +longdesc thread". PDF readers that support this mechanism (probably +longdesc Adobe Acrobat/Reader only) can be instructed to scroll +longdesc automatically from column to column, which facilitates +longdesc on-screen reading of two-column documents. Even for +longdesc single-column documents, threadcol supports the creation of +longdesc multiple article threads, which help organize discontiguous but +longdesc logically related regions of text into a form that the user can +longdesc scroll through as if its contents were contiguous. +containersize 1764 +containerchecksum e75f887dc04aa55834c285d5e36babfd0844b79b9d1cc5cfb2eb6412bde9f42b651bfdca9f6819b27f6615aff6f96031135f1a6af3b59503fda34e7566cdb01a +doccontainersize 290856 +doccontainerchecksum 626ac69b0a26fdbed51876782a9ac2e3b0ab9b32bf3b2f32ce19cce080b5cda40a62160f453199a76b58903d762cc8085a8541fa2de3adc5fea6266592c06bdc +docfiles size=81 + RELOC/doc/latex/threadcol/README details="Readme" + RELOC/doc/latex/threadcol/threadcol.pdf details="Package documentation" +srccontainersize 93120 +srccontainerchecksum df757dcfd1eec3e8da04939ef69d04ffa59767544a1d5349eb538e111843f4c6dd4374e15bc6e586edac629f61d6979688c229381ad3cd4ad61dc2d48afa7c10 +srcfiles size=28 + RELOC/source/latex/threadcol/articles-ar9.png + RELOC/source/latex/threadcol/threadcol.dtx + RELOC/source/latex/threadcol/threadcol.ins +runfiles size=1 + RELOC/tex/latex/threadcol/threadcol.sty +catalogue-ctan /macros/latex/contrib/threadcol +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 1.0 + +name threeddice +category Package +revision 20675 +shortdesc Create images of dice with one, two, or three faces showing, using MetaPost +relocated 1 +longdesc The package provides MetaPost code to create all possible +longdesc symmetrical views (up to rotation) of a right-handed die. +longdesc Configuration is possible by editing the source code, following +longdesc the guidance in the documentation. +containersize 2212 +containerchecksum 66e6a27aa277b45b44c156d408c764da5bee6dc540f2058a783f02bbe806c95052267a5ed79ea49b5dc356d0f03747e9b186542640b34753a693ecffa158a6a4 +doccontainersize 119008 +doccontainerchecksum c750497229b8bd41eca05b221ed2ca2ca49db8cbbff03bfce2712869d352ae0385e4c10e9730e0b2f8286db9af1e1b87f10d599788a3dfe8d41c28efb8b0e4a6 +docfiles size=32 + RELOC/doc/metapost/threeddice/README details="Readme" + RELOC/doc/metapost/threeddice/threeddice-doc.pdf details="Package documentation" + RELOC/doc/metapost/threeddice/threeddice-doc.tex +runfiles size=2 + RELOC/metapost/threeddice/threeddice.mp +catalogue-also dice epsdice +catalogue-ctan /graphics/metapost/contrib/macros/threeddice +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 1.0 + +name threeparttable +category Package +revision 17383 +shortdesc Tables with captions and notes all the same width +relocated 1 +longdesc Provides a scheme for tables that have a structured note +longdesc section, after the caption. This scheme provides an answer to +longdesc the old problem of putting footnotes in tables -- by making +longdesc footnotes entirely unnecessary. Note that a threeparttable is +longdesc not a float of itself; but you can place it in a table or a +longdesc table* environment, if necessary. +containersize 5448 +containerchecksum f947dd01e56f6f3db8a4ed0b8f3ec564a38486fcb27f30bb3bacdf31af8360590e7e3886cc00cfbab813213974f4b335ff06ceb521d25519e8b95e345a002692 +doccontainersize 280024 +doccontainerchecksum 6b5eb1d6ceea740ec54ba935c45f03c2e6328140e86122a38b90d84e375382adfcfe14e2e9f56384f825c913140f01a1eb6266d2d46f6b813a34b4da652ee31d +docfiles size=73 + RELOC/doc/latex/threeparttable/miscdoc.sty + RELOC/doc/latex/threeparttable/threeparttable.pdf details="Package documentation" + RELOC/doc/latex/threeparttable/threeparttable.tex +runfiles size=5 + RELOC/tex/latex/threeparttable/3parttable.sty + RELOC/tex/latex/threeparttable/threeparttable.sty +catalogue-ctan /macros/latex/contrib/threeparttable +catalogue-license other-free +catalogue-topics table notes + +name threeparttablex +category Package +revision 34206 +shortdesc Notes in longtables +relocated 1 +longdesc The package provides the functionality of the threeparttable +longdesc package to tables created using the longtable package. +containersize 2320 +containerchecksum 9dd33dcb7f9eebb9396a6a05ac20e9bb221260cd80f355b23f60a0466c64847ebacd8b0d19c75b3d9cecd9c522a8633468e7cc86121f7626141c066e12f977d6 +doccontainersize 64400 +doccontainerchecksum 3dceb0aecfa2ef09bc20250cd38dd698e35b2cd2a33fb446e78a39fa654899c4f6658a18b95b39a5bff2279a0cbeeda71bcedcdb7fa91d148290302b73e7a64c +docfiles size=19 + RELOC/doc/latex/threeparttablex/README details="Readme" + RELOC/doc/latex/threeparttablex/threeparttablex.pdf details="Package documentation" + RELOC/doc/latex/threeparttablex/threeparttablex.tex +runfiles size=2 + RELOC/tex/latex/threeparttablex/threeparttablex.sty +catalogue-ctan /macros/latex/contrib/threeparttablex +catalogue-license lppl +catalogue-topics table notes +catalogue-version 0.3 + +name thuaslogos +category Package +revision 51347 +shortdesc Logos for The Hague University of Applied Sciences (THUAS) +relocated 1 +longdesc This package contains some logos of The Hague University of +longdesc Applied Sciences (THUAS). These Logos are available in English +longdesc and in Dutch. They are rendered via PGF. +containersize 44452 +containerchecksum 584d8f130844ac834be8f061bd8078afcd8eae2e4d22e33d8a61dea8ea637476532181cdc7df9f1710ba5d8dd022a64dcb561f21334b830387e9a063ddbbe426 +doccontainersize 745228 +doccontainerchecksum 5a2298e713e4a0711b01fe7fceae12bf20d6a0fcf91cfda63313e74709586532bc407c07be1807eee5405a6b6de74fe976b2ac56fdebbc344d59255080d80224 +docfiles size=237 + RELOC/doc/latex/thuaslogos/README details="Readme" + RELOC/doc/latex/thuaslogos/thuaslogos-doc-dutch.pdf details="Package documentation (Dutch)" language="nl" + RELOC/doc/latex/thuaslogos/thuaslogos-doc-dutch.tex + RELOC/doc/latex/thuaslogos/thuaslogos-doc-english.pdf details="Package documentation (English)" + RELOC/doc/latex/thuaslogos/thuaslogos-doc-english.tex +runfiles size=180 + RELOC/tex/latex/thuaslogos/thuaslogos.sty +catalogue-contact-repository https://bitbucket.org/jesseopdenbrouw/thuaslogos +catalogue-ctan /macros/latex/contrib/thuaslogos +catalogue-license lppl1.3 +catalogue-topics logo pgf-tikz +catalogue-version 1.2 + +name thucoursework +category Package +revision 56435 +shortdesc Coursework template for Tsinghua University +relocated 1 +longdesc A LaTeX package for students of Tsinghua University to write +longdesc coursework more efficiently. It can also be used by students +longdesc from other universities. Note that the package itself does not +longdesc import the ctex package; to use it with Chinese writing, see +longdesc example file ithw.tex for details. +containersize 2228 +containerchecksum 6342b407dac5780e1e35f114978ed4466c547a49b1099ecec8cc6169817d3c1405be0edf5f7cd3d82e5d44f9a7e9d1ca762e82970898e92cc7ef06739eeb65ca +doccontainersize 505568 +doccontainerchecksum 565d7846b45c8c0bece73da1010f835d5d54f9244648d61747c9fce7a8bc2559a3e53a2327e146f559a6df2809250d7057befbb6dcb9dd2026c76f1d1dd16fa4 +docfiles size=159 + RELOC/doc/latex/thucoursework/README.md details="Readme" + RELOC/doc/latex/thucoursework/dtx-style.sty + RELOC/doc/latex/thucoursework/iihw.pdf details="Example of use (English)" + RELOC/doc/latex/thucoursework/iihw.tex + RELOC/doc/latex/thucoursework/ithw.pdf details="Example of use (Chinese)" language="zh" + RELOC/doc/latex/thucoursework/ithw.tex + RELOC/doc/latex/thucoursework/matlabscript.m + RELOC/doc/latex/thucoursework/pdf_normal.eps + RELOC/doc/latex/thucoursework/pdf_normal.pdf + RELOC/doc/latex/thucoursework/thucoursework.pdf details="Package documentation" language="zh" +srccontainersize 9256 +srccontainerchecksum 34da6d4ae8ad815881fc2f8b7df70889ff99adb3ebea2598e0502725b229cb5a5afea11847c8a1c5d56fd528603dc8aaf43c460394ab301dfae1abe6880f8616 +srcfiles size=7 + RELOC/source/latex/thucoursework/Makefile + RELOC/source/latex/thucoursework/thucoursework.dtx +runfiles size=2 + RELOC/tex/latex/thucoursework/iidef.sty +catalogue-contact-bugs https://github.com/zhaofeng-shu33/THU-coursework-template/issues +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-license lppl1.3 +catalogue-topics doc-templ chinese +catalogue-version 2.6 + +name thumb +category Package +revision 16549 +shortdesc Thumb marks in documents +relocated 1 +longdesc Place thumb marks in books, manuals and reference maunals. +containersize 3972 +containerchecksum 30290cc3b8cc48de6c601fcb3d066f0533bb3f09f053d7912db7a127d8327c4aac0a96499b7eaed36b8caf4dcdda5c8f34a5430d69e1fac70510f426c92ab9f4 +doccontainersize 194472 +doccontainerchecksum 29abd2e57cf17edbfeea06c041666ba29e436defff1600df7222dca6160e7be740b64647d7a44a10f6f803011a1754abd693048ca36c4c372ee0da52df2562dc +docfiles size=52 + RELOC/doc/latex/thumb/README details="Package Readme" + RELOC/doc/latex/thumb/thumb.pdf details="Package documentation" +srccontainersize 11880 +srccontainerchecksum 1712eaf8ef694998eab8cd0b95c6e8affc2a967c81cef6d6bbe8d985137662631254318ad2dad9a021a70ab849986e727699715b27fca1a5952df111474f92e8 +srcfiles size=12 + RELOC/source/latex/thumb/thumb.dtx + RELOC/source/latex/thumb/thumb.ins +runfiles size=4 + RELOC/tex/latex/thumb/thumb.sty +catalogue-also fancyhdr +catalogue-ctan /macros/latex/contrib/thumb +catalogue-license gpl +catalogue-topics layout-page +catalogue-version 1.0 + +name thumbpdf +category Package +revision 48625 +shortdesc Thumbnails for pdfTeX and dvips/ps2pdf +longdesc A Perl script that provides support for thumbnails in pdfTeX +longdesc and dvips/ps2pdf. The script uses ghostscript to generate the +longdesc thumbnails which get represented in a TeX readable file that is +longdesc read by the package thumbpdf.sty to automatically include the +longdesc thumbnails. This arrangement works with both plain TeX and +longdesc LaTeX. +depend thumbpdf.ARCH +containersize 18876 +containerchecksum f3eaaa9ad4287d58ab89b98e1889f99dbabd82153f99921a9249b2cfb741c0cc45bfdd1903590c66bf0b63c77490017c36f552e34d7d15290cbc5904e57a3bc8 +doccontainersize 14604 +doccontainerchecksum fa2a7cbf80f7b76e63aff8ce5584e698e9f88a0d5a902895afa22a100202fb30bc857f5a1b88e190ff2dbf5ca9cf2338f6ca96a7b80a6d3e6e549040fc3ece7d +docfiles size=10 + texmf-dist/doc/generic/thumbpdf/README + texmf-dist/doc/man/man1/thumbpdf.1 + texmf-dist/doc/man/man1/thumbpdf.man1.pdf +runfiles size=19 + texmf-dist/scripts/thumbpdf/thumbpdf.pl + texmf-dist/tex/generic/thumbpdf/thumbpdf.sty + texmf-dist/tex/generic/thumbpdf/thumbpdf.tex +catalogue-contact-bugs https://github.com/ho-tex/thumbpdf/issues +catalogue-contact-repository https://github.com/ho-tex/thumbpdf +catalogue-ctan /support/thumbpdf +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 3.17 + +name thumbpdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of thumbpdf +containersize 340 +containerchecksum 6c4e4c7c3536e91aea59fc17fe6eef99a8766db30bfe053c19d3b6306e020f5e8b62ccf471e7e3932e3f20fb648b0e8b27a47f03ec35235459f3fa5599ff94e8 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/thumbpdf + +name thumbpdf.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of thumbpdf +containersize 344 +containerchecksum a7e2b65b2a9ba11fd674d195109597089ed2ef881adb223d4c2a8aa7faaeecaf48f1bb3696d1fcca2b3ea52fd3657d754710dc10196e2221276f53793a5824c2 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/thumbpdf + +name thumbpdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of thumbpdf +containersize 340 +containerchecksum ec52b0239c698f0d440403cc465e89af27276f1cd839f0b4a1ab6c9f52f8f469d63b8a847a805795d9433bbff216a44d32b54b6b4e37651d1676bc03f77f744c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/thumbpdf + +name thumbpdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of thumbpdf +containersize 340 +containerchecksum ca03668974012331f2289a82dd5bbfed0cca57aa067eb827209fc8cdb5ec35760bbfaebd488c69c0686c8801486c84a31ed5a257d6a389575758f1bad4a42d00 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/thumbpdf + +name thumbpdf.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of thumbpdf +containersize 340 +containerchecksum 7e4dfed78f257ec49df47d9258f32cab5b6316989ee103e97bd9c08c4fbd29b063df6face26c0646877d077d460705fb4d5e7c6e424bbd40ad2a80192e5ce7d5 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/thumbpdf + +name thumbpdf.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of thumbpdf +containersize 344 +containerchecksum 62f16b00679b36ee2368ce4fcce04816e29befc9ee9e0c765f2341cec630e129555ae9124e1e12aa272975733bda4d2267929d583c341446a80c3ef6a3836411 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/thumbpdf + +name thumbpdf.i386-linux +category Package +revision 6898 +shortdesc i386-linux files of thumbpdf +containersize 340 +containerchecksum 6226939d167da25d44a0e01ee4b9ec2e0370f6f32b78966b6679e75f69712eb712a80409af03c53e134bf2c94265aae750ee2285d483ba8fe10514c3f674104f +binfiles arch=i386-linux size=1 + bin/i386-linux/thumbpdf + +name thumbpdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of thumbpdf +containersize 340 +containerchecksum 155db8b47b5b9488688b3decd6574a812b9616332c6b467535005a9a95c30fee45964eadd997ff2d13f6fea36ccc8e834481bb2e80ffefd13a3c5bff87359322 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/thumbpdf + +name thumbpdf.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of thumbpdf +containersize 340 +containerchecksum 12499ca8021437bbd08dd9f80f29117e12575daa38e2514cb70e1aba05bedbb0f593d16e41ad74bc637c7d3c6d45c01b0244b638187cacd209c30cbc6b4ddcf7 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/thumbpdf + +name thumbpdf.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of thumbpdf +containersize 340 +containerchecksum f90c5d463bc6e7661230e29d8eeb32d79cb6091946e7068fe21cbfeaad13a256c3057bf6c0de9fb64b60d2ead01b015787a80d9d8a662475f5fcc473169e950a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/thumbpdf + +name thumbpdf.win32 +category Package +revision 15404 +shortdesc win32 files of thumbpdf +containersize 684 +containerchecksum 19f001794e022666e365fc0a38d343cb0c53475508e9daabb316e56e57541040619c897dd9bf2051d342e16405658e9e6a94e2a5bbd6778d4d7f96143754a3bf +binfiles arch=win32 size=1 + bin/win32/thumbpdf.exe + +name thumbpdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of thumbpdf +containersize 344 +containerchecksum 1816292e3fd1eb0fb993042d96b1916f3cefcd65939a7cb9116685c0d9d6813dcf1afcab39581d60b3a3bf18dedf986d310f5a0a06d1067a547d99f26689a473 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/thumbpdf + +name thumbpdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of thumbpdf +containersize 352 +containerchecksum 743036017ccffc7840ebfa5accccfd41e19aa9e530ecd8fe3a22c6c2e9a6fb43e16290ef47221c22bca189ad7879b70bd31a1542cfadc65db429a0e44377f893 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/thumbpdf + +name thumbpdf.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of thumbpdf +containersize 340 +containerchecksum c849271637d15c3b74cf2473df2695efa53a892f84178516815656cad18c2b4eb483687a9268fe288b009fb3999ca710c09557c8611da0a358a637bc53024b54 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/thumbpdf + +name thumbpdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of thumbpdf +containersize 344 +containerchecksum d0f0c815da6fb62cd8c635b2f6fb94a8bed15bc08c0d09e938d38391dad21ee4a08bea6f9497c1e5c045ca2a0a31e5201cc887a6f7ae8435fdd1dcad94b17245 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/thumbpdf + +name thumbpdf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of thumbpdf +containersize 344 +containerchecksum 0a929107949da61238d0c4444c83f911f6751168d0df6e64438dd3eec2d5a4c1e7751945283925776d63ba7a8a53b8a6f9796673235c8720aaafc6fb0ec54a57 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/thumbpdf + +name thumbs +category Package +revision 33134 +shortdesc Create thumb indexes +relocated 1 +longdesc The package puts running, customizable thumb marks in the outer +longdesc margin, moving downward as the chapter number (or whatever +longdesc shall be marked by the thumb marks) increases. Additionally an +longdesc overview page/table of thumb marks can be added automatically, +longdesc which gives the names of the thumbed objects, the page where +longdesc the object/thumb mark first appears, and the thumb mark itself +longdesc at its correct position. The thumb marks are useful for large +longdesc documents (such as reference guides, anthologies, etc.), where +longdesc a quick and easy way to find (for example) a chapter is needed. +containersize 10936 +containerchecksum 58e489402fc44cbaece118203bbe7011494b7ef16ffa0e5d60be2daaec0c4ef2d048a71f0d9373a1683aa780fd20e3d64330e199596effc7cf2fcdac34f1faf1 +doccontainersize 701996 +doccontainerchecksum 4c58ff61d64b841b3a3bc018f94c193730129edf45c87fcb9c85685f748ca3db1f7d51969dd25882848cec906485f739f8f07c8bb2f8bded580b59ea93032a14 +docfiles size=182 + RELOC/doc/latex/thumbs/README details="Readme" + RELOC/doc/latex/thumbs/thumbs-example.pdf details="Package examples" + RELOC/doc/latex/thumbs/thumbs-example.tex + RELOC/doc/latex/thumbs/thumbs.pdf details="Package documentation" +srccontainersize 33908 +srccontainerchecksum 26458ebc431f64a324c39ec370f2b0714a56563decc944c64156f0a6a3e22664e89239bbbfa7710d9b46706657b48470ffd1da7a1801aaca2732b30e01935fe4 +srcfiles size=41 + RELOC/source/latex/thumbs/thumbs.drv + RELOC/source/latex/thumbs/thumbs.dtx + RELOC/source/latex/thumbs/thumbs.ins +runfiles size=14 + RELOC/tex/latex/thumbs/thumbs.sty +catalogue-ctan /macros/latex/contrib/thumbs +catalogue-license lppl1.3 +catalogue-topics layout-page +catalogue-version 1.0q + +name thumby +category Package +revision 16736 +shortdesc Create thumb indexes for printed books +relocated 1 +longdesc The package can generate thumb indexes for your document. It +longdesc features printing thumb indexes on one- or two-sided pages, +longdesc along with background- and foreground-color selection and full +longdesc LaTeX styling of the chapter numbers in the thumb indexes. The +longdesc height of each thumb index is automatically chosen based on the +longdesc number of chapters in your document, while the width is chosen +longdesc by the user. The package is designed to work with the memoir +longdesc class, and also requires PerlTeX and tikz/ +containersize 3268 +containerchecksum 485bb2670133c3c83f0f7aaa685defc6d36f5d24173652d869f526770e1f55c55a31f3a3180f115aef45fb824d9032ee915b91c1c59b9b33794c95c92f03c3e6 +doccontainersize 155976 +doccontainerchecksum bac645197085968fe8a7bd41f4a9ec3c6e51e17e6750b87ca1a458acc9f6a4f244d1f3b36b9c622c98492b90abddf9a4df1636b1874c02820dcdb6340bad0910 +docfiles size=52 + RELOC/doc/latex/thumby/LICENSE + RELOC/doc/latex/thumby/README details="Readme" + RELOC/doc/latex/thumby/example.pdf + RELOC/doc/latex/thumby/latexmkrc + RELOC/doc/latex/thumby/thumby.pdf details="Package documentation" +runfiles size=3 + RELOC/tex/latex/thumby/thumby.sty +catalogue-ctan /macros/latex/contrib/thumby +catalogue-license gpl3 +catalogue-topics layout-page +catalogue-version 0.1 + +name thuthesis +category Package +revision 58750 +shortdesc Thesis template for Tsinghua University +relocated 1 +longdesc This package establishes a simple and easy-to-use LaTeX +longdesc template for Tsinghua dissertations, including general +longdesc undergraduate research papers, masters theses, doctoral +longdesc dissertations, and postdoctoral reports. +containersize 41476 +containerchecksum 96dc085764a25d523d12cf695c5aea632b26b32229f2c5e02ffc9f2bf3836c12275dda9b99d0e73255da84ab26fd5a6a77f4523dee3051097e84cf450cac0bc5 +doccontainersize 1580176 +doccontainerchecksum f8e4d36746018a60dec5295d34c319122451ba771965fe51a85ae99704c52a2e71b9aeb4380361b38b0f91e6369dcc1f29cdc7f2490b1cd82b989a446479a6bd +docfiles size=430 + RELOC/doc/latex/thuthesis/CHANGELOG.md + RELOC/doc/latex/thuthesis/LICENSE + RELOC/doc/latex/thuthesis/Makefile + RELOC/doc/latex/thuthesis/README.md details="Readme (Chinese & English)" + RELOC/doc/latex/thuthesis/data/abstract.tex + RELOC/doc/latex/thuthesis/data/acknowledgements.tex + RELOC/doc/latex/thuthesis/data/appendix-survey.tex + RELOC/doc/latex/thuthesis/data/appendix-translation.tex + RELOC/doc/latex/thuthesis/data/appendix.tex + RELOC/doc/latex/thuthesis/data/chap01.tex + RELOC/doc/latex/thuthesis/data/chap02.tex + RELOC/doc/latex/thuthesis/data/chap03.tex + RELOC/doc/latex/thuthesis/data/chap04.tex + RELOC/doc/latex/thuthesis/data/comments.tex + RELOC/doc/latex/thuthesis/data/committee.tex + RELOC/doc/latex/thuthesis/data/denotation.tex + RELOC/doc/latex/thuthesis/data/resolution.tex + RELOC/doc/latex/thuthesis/data/resume.tex + RELOC/doc/latex/thuthesis/latexmkrc + RELOC/doc/latex/thuthesis/ref/appendix.bib + RELOC/doc/latex/thuthesis/ref/refs.bib + RELOC/doc/latex/thuthesis/spine.pdf + RELOC/doc/latex/thuthesis/spine.tex + RELOC/doc/latex/thuthesis/thusetup.tex + RELOC/doc/latex/thuthesis/thuthesis-example.pdf details="Example of use (Chinese)" language="zh" + RELOC/doc/latex/thuthesis/thuthesis-example.tex + RELOC/doc/latex/thuthesis/thuthesis.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 46016 +srccontainerchecksum 03a297ecedb3b5ed980544d0afbf47a4ca0561f3323451a4bb4d5e80e9ba55c0830db81b3d2a5012ee088882ce05d58991fbbd37ee9d2f793e3b7fe2d2ae8be2 +srcfiles size=51 + RELOC/source/latex/thuthesis/thuthesis.dtx + RELOC/source/latex/thuthesis/thuthesis.ins +runfiles size=71 + RELOC/bibtex/bst/thuthesis/thuthesis-author-year.bst + RELOC/bibtex/bst/thuthesis/thuthesis-bachelor.bst + RELOC/bibtex/bst/thuthesis/thuthesis-numeric.bst + RELOC/tex/latex/thuthesis/thuthesis-author-year.bbx + RELOC/tex/latex/thuthesis/thuthesis-author-year.cbx + RELOC/tex/latex/thuthesis/thuthesis-bachelor.bbx + RELOC/tex/latex/thuthesis/thuthesis-bachelor.cbx + RELOC/tex/latex/thuthesis/thuthesis-inline.cbx + RELOC/tex/latex/thuthesis/thuthesis-numeric.bbx + RELOC/tex/latex/thuthesis/thuthesis-numeric.cbx + RELOC/tex/latex/thuthesis/thuthesis.cls + RELOC/tex/latex/thuthesis/tsinghua-name-bachelor.pdf +catalogue-contact-announce https://github.com/tuna/thuthesis/releases +catalogue-contact-bugs https://github.com/tuna/thuthesis/issues +catalogue-contact-repository https://github.com/tuna/thuthesis +catalogue-ctan /macros/latex/contrib/thuthesis +catalogue-license lppl1.3c +catalogue-topics dissertation class doc-templ std-conform chinese +catalogue-version 7.2.2 + +name ticket +category Package +revision 42280 +shortdesc Make labels, visiting-cards, pins with LaTeX +relocated 1 +longdesc Provides an easy to handle interface to produce visiting cards, +longdesc labels for your files, stickers, pins and other stuff for your +longdesc office, conferences etc. All you need is a definition of your +longdesc 'ticket' included in a ticket definition file and the two +longdesc commands \ticketdefault and \ticket. +containersize 3996 +containerchecksum cefb3e06df2953063e9d12f19f03e973212e784cebfd2d6628d2e9ddb443159b285b34f12238f6b77813cc48e86aae7018cb5bccc4fd158f4d891f05fc51dab5 +doccontainersize 488008 +doccontainerchecksum fde4b06ad09837d1d6b6efb275800e32f617619f9c18d2dda5924b094f860492053c4ee361a2fded1c9f4509ba5e615601b183191c0cf064af24cc59cfb23748 +docfiles size=148 + RELOC/doc/latex/ticket/README.txt details="Package Readme" + RELOC/doc/latex/ticket/comment + RELOC/doc/latex/ticket/ex_file.pdf + RELOC/doc/latex/ticket/ex_file.tex + RELOC/doc/latex/ticket/ex_flashcard.pdf + RELOC/doc/latex/ticket/ex_flashcard.tex + RELOC/doc/latex/ticket/ex_flashcard_dup.pdf + RELOC/doc/latex/ticket/ex_flashcard_rm.pdf + RELOC/doc/latex/ticket/ex_flashcard_rm.tex + RELOC/doc/latex/ticket/ex_marks.pdf + RELOC/doc/latex/ticket/ex_marks.tex + RELOC/doc/latex/ticket/ex_pin.pdf + RELOC/doc/latex/ticket/ex_pin.tex + RELOC/doc/latex/ticket/ex_vcard.pdf + RELOC/doc/latex/ticket/ex_vcard.tex + RELOC/doc/latex/ticket/logo.png + RELOC/doc/latex/ticket/manual.pdf details="Package manual" + RELOC/doc/latex/ticket/manual.tex + RELOC/doc/latex/ticket/words.tex +runfiles size=18 + RELOC/tex/latex/ticket/aj8414.tdf + RELOC/tex/latex/ticket/dura5222.tdf + RELOC/tex/latex/ticket/flashCard.tdf + RELOC/tex/latex/ticket/freepin.tdf + RELOC/tex/latex/ticket/freepin2.tdf + RELOC/tex/latex/ticket/freepin3.tdf + RELOC/tex/latex/ticket/he4432.tdf + RELOC/tex/latex/ticket/invite.tdf + RELOC/tex/latex/ticket/lz1680.tdf + RELOC/tex/latex/ticket/lz1681.tdf + RELOC/tex/latex/ticket/lz1685.tdf + RELOC/tex/latex/ticket/rex23184237.tdf + RELOC/tex/latex/ticket/ticket.sty + RELOC/tex/latex/ticket/zw32010.tdf + RELOC/tex/latex/ticket/zw3424.tdf + RELOC/tex/latex/ticket/zw4752.tdf +catalogue-ctan /macros/latex/contrib/ticket +catalogue-license lppl1.3 +catalogue-topics labels +catalogue-version 0.4d + +name ticollege +category Package +revision 36306 +shortdesc Graphical representation of keys on a standard scientific calculator +relocated 1 +longdesc This package provides commands to draw scientific calculator +longdesc keys with the help of TikZ. It also provides commands to draw +longdesc the content of screens and of menu items. +containersize 5040 +containerchecksum 92bebbf5a5e7ccf7be09c205d9007a780422c625d9a308eeeae50b2ec4ba3cc6755a37fd8a49e24b7a381894cc3791fbf50f54348c3ac584a2c0d9a693f93a56 +doccontainersize 371572 +doccontainerchecksum f0049064eab926eefcf77fe5aa0606202cbce79ed7f0e0f1bafb171ad82b72daf09fe2c0cdf79720834d6349d9190f1d3069f155df922ceb469ad3453a6389b1 +docfiles size=100 + RELOC/doc/latex/ticollege/IndexHead.ist + RELOC/doc/latex/ticollege/README details="Readme" language="fr" + RELOC/doc/latex/ticollege/ticollege-doc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/ticollege/ticollege-doc.tex +runfiles size=6 + RELOC/tex/latex/ticollege/ticollege.sty +catalogue-ctan /graphics/pgf/contrib/ticollege +catalogue-license lppl +catalogue-topics pgf-tikz doc-supp +catalogue-version 1.0 + +name tie +category TLCore +revision 57972 +shortdesc Allow multiple web change files +longdesc Tie was originally developed to allow web programmers to apply +longdesc more than one change file to their source. The program may also +longdesc be used to create a new version of a .web file that +longdesc incorporates existing changes. +depend kpathsea +depend tie.ARCH +containersize 476 +containerchecksum 39d0e9ddb47505d9a3cdb00e6d667b7273901eadd02db0637d1d3996ad8e90d7b8d6a1c094b62c371f24ab954239b43d6bbdcd9a6d689c3fe70d8959fcf56d6b +doccontainersize 15368 +doccontainerchecksum 686b05f4b7ac88dd663f5fc3157a21810e46b4382cc01271cf9ddc091ae44e76b4f3b94c93bdb4ff5366f19fee5d9818d1b0fe05d354b5c710bc2908f22f0fa4 +docfiles size=6 + texmf-dist/doc/man/man1/tie.1 + texmf-dist/doc/man/man1/tie.man1.pdf +catalogue-ctan /web/tie +catalogue-license other-free +catalogue-topics litprog-tools +catalogue-version 2.4 + +name tie.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of tie +containersize 32724 +containerchecksum c8e03df7e590c21fdc398f61561d44c027a4817e04c29bd7aaa07768b120b5849d628f0e8c3499a54299958f85011e9162c8e92e9315b8fb2267729d7068071d +binfiles arch=aarch64-linux size=21 + bin/aarch64-linux/tie + +name tie.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of tie +containersize 33612 +containerchecksum 12f6bd63050ee74c6c46e40949c266974afa97af0c4ca7be672cc81e3d14dea2b0be3df2cebade9e71e2266aba2fe1b154b80972ed9638fe9759306d305549d1 +binfiles arch=amd64-freebsd size=20 + bin/amd64-freebsd/tie + +name tie.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of tie +containersize 30920 +containerchecksum b01cb740ca5955e5c212d497dd1d537f482d6c252e3179928032d1d6f53293c59853744e30ccfc17db73613c421954483d3649bba36e8d832e4d93de42dd0ca3 +binfiles arch=amd64-netbsd size=25 + bin/amd64-netbsd/tie + +name tie.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of tie +containersize 27336 +containerchecksum 343778da761de93cea8c49c982882f08a2b47f9098484d3a9ef0d1902c5e84d4531fde262aa12962a5796440b2dd1f747339af95f8350df45ad10a6192e511c2 +binfiles arch=armhf-linux size=17 + bin/armhf-linux/tie + +name tie.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of tie +containersize 5220 +containerchecksum e2ee614b939a8f60eb47cdc0eb4b2f5384ae458870d07cab7155f7453b4994b5c748e5cde611a3a5823c9641aa60ad6b78a9e3f43b51b93ca56921f212a59e3f +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/tie.exe + +name tie.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of tie +containersize 30196 +containerchecksum a07fb3db512a7c2b9d925bbe8b418c3c972d388855c247972d3727598a82f5fe6108e7cf8cffdf2e48f3d252601aa1a73a2c8eb24d6fa281e5e68d91dc3eb886 +binfiles arch=i386-freebsd size=18 + bin/i386-freebsd/tie + +name tie.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of tie +containersize 36552 +containerchecksum dfd5dfa51f5c1c05248d705a326e28d1fead418f6784ed1f369671a7d8a5159220c384a86a909a826b768240846a20ecd989c2262ac81a24d19e8afdc0e13cbd +binfiles arch=i386-linux size=23 + bin/i386-linux/tie + +name tie.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of tie +containersize 28612 +containerchecksum b2768ef204293c42635c4c0beea3ab7ed6bd1af63194e08ba6f978331ad5f29ea65dc22a6c41fc9d6d37d09d99f73cacb62bbe6171cfb6b3cad78036d692a43e +binfiles arch=i386-netbsd size=23 + bin/i386-netbsd/tie + +name tie.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of tie +containersize 32556 +containerchecksum 7bf5bc42739f8c6532d122bead2e9b432ec41ca9479f1457a96436dd7f47ae809080bde4c1d79b2a002116f57bfa97ec8a62759a54b196dc750891a30be5e9fb +binfiles arch=i386-solaris size=18 + bin/i386-solaris/tie + +name tie.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of tie +containersize 63324 +containerchecksum 8a9b600fd9063e16ed74680d0ba5833d46e739d648d70a69dddc3a01516ecca23ade7aced005e74cb46debce404a1936c10034bb7531b0cbaef6fc0acf4f4b43 +binfiles arch=universal-darwin size=59 + bin/universal-darwin/tie + +name tie.win32 +category TLCore +revision 58783 +shortdesc win32 files of tie +containersize 5980 +containerchecksum 483ee2cef31e1eaf460fef0db0ccaab0bc7619a6dfffc02dd2ddedf0a14aa9e49a2b40e0e674e1c602ee2bffe8233855fb33a1bcdf07dfbf87f76594c3e624ed +binfiles arch=win32 size=3 + bin/win32/tie.exe + +name tie.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of tie +containersize 5204 +containerchecksum b19a75e7923b9ad2477a4a5e17be615002fea40d60279999fecdd28a473767315686dd56a5c4ef4c724faa626c288d299d9fd80f8a7213830e6bcce1f33eb1d5 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/tie.exe + +name tie.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of tie +containersize 31928 +containerchecksum 083de1274dc00d1c0c3a69eed84bf3b883cc0fa4bb170e2603b4e86ab3f9a9d6a0b81bb2e708fac9413f5189f90ab29fecdebed5158ab670f7cf7ef8bc3d202e +binfiles arch=x86_64-darwinlegacy size=21 + bin/x86_64-darwinlegacy/tie + +name tie.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of tie +containersize 34564 +containerchecksum 91ff50d17c17aa15093509db237401dba05b9df311f4296b152584a371378b9cb11dd0dcf69c9cd446e207ac9020f1e0db5eeb8b67980eb3154eec167bb6cd79 +binfiles arch=x86_64-linux size=20 + bin/x86_64-linux/tie + +name tie.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of tie +containersize 35684 +containerchecksum cb4b2567908ebbadc0519f174d6062fbccd6fa169fc0a42bd2843d779289a27e9713648f80f19201b05756cc11cc330584bcdd0bb9a5b6007b66149457eb2799 +binfiles arch=x86_64-linuxmusl size=21 + bin/x86_64-linuxmusl/tie + +name tie.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of tie +containersize 35436 +containerchecksum f980fff4a542a0a03238f632160f60e2d050a019f9c7ae79a316f4351060c6e088901060bb5bb97d1968f29a8339a29780a330d4f6c3ff86441afab207abd16b +binfiles arch=x86_64-solaris size=22 + bin/x86_64-solaris/tie + +name tikz-3dplot +category Package +revision 25087 +shortdesc Coordinate transformation styles for 3d plotting in TikZ +relocated 1 +longdesc The package provides straightforward ways to define +longdesc three-dimensional coordinate frames through which to plot in +longdesc TikZ. The user can specify the orientation of the main +longdesc coordinate frame, and use standard TikZ commands and +longdesc coordinates to render their tikzfigure. A secondary coordinate +longdesc frame is provided to allow rotations and translations with +longdesc respect to the main coordinate frame. In addition, the package +longdesc can also handle plotting user-specified functions in spherical +longdesc polar coordinates, where both the radius and fill color can be +longdesc expressed as parametric functions of polar angles. +containersize 7812 +containerchecksum 6d4aac2eaeebbe2a4827a5a40e8571c48ff4f5cc854daf130ec7f20f8fa06135bae1486a42b223410be848b72be2c19d6e2ed798694ef5dcdb5861846bd9c072 +doccontainersize 391432 +doccontainerchecksum 0fd9bde0f12ddf5a4bf6e2e1df66a9aafa42e81cd945b41e09e8d289c57b04faddd303a415c36239e6686be90f06e8a7cc794ea50d17ec54f1e25703314257da +docfiles size=139 + RELOC/doc/latex/tikz-3dplot/CHANGELOG + RELOC/doc/latex/tikz-3dplot/README details="Readme" + RELOC/doc/latex/tikz-3dplot/externalize_images.bat + RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation.pdf details="Package documentation" + RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation.tex + RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation_figures.tex +runfiles size=8 + RELOC/tex/latex/tikz-3dplot/tikz-3dplot.sty +catalogue-ctan /graphics/pgf/contrib/tikz-3dplot +catalogue-license lppl1.3 +catalogue-topics graphics-use graphics-3d pgf-tikz + +name tikz-among-us +category Package +revision 56820 +shortdesc Create some AmongUs characters in TikZ environments +relocated 1 +longdesc This package recreates some AmongUs characters in TikZ +longdesc environments. Some interesting uses alongside other packages +longdesc are also supported. +containersize 5968 +containerchecksum 70eb06187c5146c9238e2074acdc39df7b40b9bef3cf34cd820d925ed482df07a1b3042b3f83e6cece15eefda4d28b483888c1b9628a55fb57cc0788ca263746 +doccontainersize 5075820 +doccontainerchecksum c272447fed242f2d6539c665684732b0953587924e4b921872bc420ea09a2c178779903c5f44ca72bf7a310ac03c6367fb5e801f4c30000406dd93c8a43098ab +docfiles size=1370 + RELOC/doc/latex/tikz-among-us/README.md details="Readme" + RELOC/doc/latex/tikz-among-us/fig_AmongUs_01.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_02.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_03.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_04.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_05.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_06.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_07.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_08.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_09.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_10.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_11.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_12.PNG + RELOC/doc/latex/tikz-among-us/fig_AmongUs_13.PNG + RELOC/doc/latex/tikz-among-us/tikz-among-us.cwl + RELOC/doc/latex/tikz-among-us/tikz-among-us.pdf details="Package documentation" + RELOC/doc/latex/tikz-among-us/tikz-among-us.tex +runfiles size=11 + RELOC/tex/latex/tikz-among-us/tikz-among-us-fancyhdr.sty + RELOC/tex/latex/tikz-among-us/tikz-among-us-watermark-eso-pic.sty + RELOC/tex/latex/tikz-among-us/tikz-among-us.sty +catalogue-ctan /graphics/pgf/contrib/tikz-among-us +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz games amusements +catalogue-version 1.1.0 + +name tikz-bayesnet +category Package +revision 38295 +shortdesc Draw Bayesian networks, graphical models and directed factor graphs +relocated 1 +longdesc The package provides a library supporting the display of +longdesc Bayesian networks, graphical models and (directed) factor +longdesc graphs in LaTeX. +containersize 1748 +containerchecksum b3c535af8afe86e311e4c7371addfa484403a0a9571a17d1cb8d39dd7242aa4798476352bb04a6bb214086f1ed4985595c502723444a032f9bde04423c26bea8 +doccontainersize 20444 +doccontainerchecksum 2bdd764163c606579e68099873844fdef6b9a36495f4117b99ca483bbe43334965a177f398da60e82c11035b5c7b9e0513ae56e6868d6238cc0c798f47ab37e7 +docfiles size=20 + RELOC/doc/latex/tikz-bayesnet/LICENSE_GPL + RELOC/doc/latex/tikz-bayesnet/LICENSE_LPPL + RELOC/doc/latex/tikz-bayesnet/README.rst + RELOC/doc/latex/tikz-bayesnet/example.tex + RELOC/doc/latex/tikz-bayesnet/model_citation_influence.tex + RELOC/doc/latex/tikz-bayesnet/model_lda.tex + RELOC/doc/latex/tikz-bayesnet/model_pca.tex + RELOC/doc/latex/tikz-bayesnet/model_pca2.tex +runfiles size=1 + RELOC/tex/latex/tikz-bayesnet/tikzlibrarybayesnet.code.tex +catalogue-ctan /graphics/pgf/contrib/tikz-bayesnet +catalogue-license lppl1.3 +catalogue-topics statistics pgf-tikz +catalogue-version 0.1 + +name tikz-bbox +category Package +revision 57444 +shortdesc Precise determination of bounding boxes in TikZ +relocated 1 +longdesc The built-in determination of the bounding box in TikZ is not +longdesc entirely accurate. This is because, for Bezier curves, it is +longdesc the smallest box that contains all control points, which is in +longdesc general larger than the box that just contains the curve. This +longdesc library determines the exact bounding box of the curve. +containersize 1512 +containerchecksum e68c3c6922c8529bea0b7c25bafc488d7aa41ad81afacae0f674caf637a1638dc8666bd16628b123063d94031d4cd4691ca127bbb648c1fb5a20d72ca8a41fbd +doccontainersize 238660 +doccontainerchecksum 428d94e87d51e000c5fed4f5b0bd87b8fdb261b9550e0c67e05a69fcee7a4ce3ee070f262d278e21cbdc5bfeea790c6d17450bc91e1e51250b572e754ded3df8 +docfiles size=62 + RELOC/doc/latex/tikz-bbox/README.txt details="Readme" + RELOC/doc/latex/tikz-bbox/pgfmanual-en-library-bbox.tex + RELOC/doc/latex/tikz-bbox/pgfmanual4bbox.pdf details="Package documentation" + RELOC/doc/latex/tikz-bbox/pgfmanual4bbox.tex +runfiles size=2 + RELOC/tex/latex/tikz-bbox/pgflibrarybbox.code.tex +catalogue-contact-repository https://github.com/marmotghost/tikz-bbox +catalogue-ctan /graphics/pgf/contrib/tikz-bbox +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz +catalogue-version 0.1 + +name tikz-cd +category Package +revision 49201 +shortdesc Create commutative diagrams with TikZ +relocated 1 +longdesc The general-purpose drawing package TiKZ can be used to typeset +longdesc commutative diagrams and other kinds of mathematical pictures, +longdesc generating high-quality results. The purpose of this package is +longdesc to make the process of creation of such diagrams easier by +longdesc providing a convenient set of macros and reasonable default +longdesc settings. This package also includes an arrow tip library that +longdesc match closely the arrows present in the Computer Modern +longdesc typeface. +containersize 6452 +containerchecksum 3fbfa7731eeb6d2b9cbe67cbc4d5470e235f6f990b76b3c82961df172fbba9a8f62ec6055743098cbdb2d3d8aaa3b94f5d4dd8f735624c7d9562de6aa72fdda3 +doccontainersize 276360 +doccontainerchecksum 63be72c0d55112e8328d40ae4fbd1e3c92133615e28f032f9f5efcf2432b6cc440b3c4de4ba46f3eb9e65725caf7de3623a8b49f3b9a87ef780dbeacc536df46 +docfiles size=80 + RELOC/doc/latex/tikz-cd/README.md details="Readme" + RELOC/doc/latex/tikz-cd/tikz-cd-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-cd/tikz-cd-doc.tex +runfiles size=7 + RELOC/tex/generic/tikz-cd/tikzlibrarycd.code.tex + 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-license gpl3 +catalogue-topics diagram-comm graphics-in-tex pgf-tikz +catalogue-version 0.9f + +name tikz-dependency +category Package +revision 54512 +shortdesc A library for drawing dependency graphs +relocated 1 +longdesc The package provides a library that draws together existing +longdesc TikZ facilities to make a comfortable environment for drawing +longdesc dependency graphs. Basic facilities of the package include a +longdesc lot of styling facilities, to let you personalize the look and +longdesc feel of the graphs. +containersize 15728 +containerchecksum f13e652066ed2237c22b397b76f628e9108a999138ab5d8349792551205cada4709031f5c4b458982618871d4d65abfe5623f700ee9d8f474c66b1e31df374b8 +doccontainersize 500028 +doccontainerchecksum 3ab32e535d11802b3a828b8b49e78f31df5e5d3c7c36509a3b8aa0d81c02c465ec84d45b9d951ad833dea705381b4df05fa3d9a478db9af0622bc0d69008b227 +docfiles size=212 + RELOC/doc/latex/tikz-dependency/AUTHORS + RELOC/doc/latex/tikz-dependency/LICENSE + RELOC/doc/latex/tikz-dependency/README + RELOC/doc/latex/tikz-dependency/VERSION + RELOC/doc/latex/tikz-dependency/pgfmanual-en-macros.tex + RELOC/doc/latex/tikz-dependency/tikz-dependency-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-dependency/tikz-dependency-doc.tex +runfiles size=20 + RELOC/tex/latex/tikz-dependency/pgfmanual.code.tex + RELOC/tex/latex/tikz-dependency/pgfmanual.pdflinks.code.tex + 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-license lppl gpl2 +catalogue-topics linguistic tree pgf-tikz +catalogue-version 1.2 + +name tikz-dimline +category Package +revision 35805 +shortdesc Technical dimension lines using PGF/TikZ +relocated 1 +longdesc tikz-dimline helps drawing technical dimension lines in TikZ +longdesc picture environments. Its usage is similar to some +longdesc contributions posted on stackexchange. +containersize 2000 +containerchecksum c7a3b158a8acd100192b7dc936f2e452513125389f72c12f0c3818bb4e771abf0748338f13603765904adf1d808fc2b263d0f798999c52638e610d24addcc641 +doccontainersize 162296 +doccontainerchecksum 62edb9667ae4405c798a00c1d079ea9ed5bbdddd76e4a730aaf7405d175afa146fcb7bf43a551001eeff1f683ce3b47a0a79fab66b7410be59f18f4f6e409ef4 +docfiles size=49 + RELOC/doc/latex/tikz-dimline/README details="Readme" + RELOC/doc/latex/tikz-dimline/dimline1.png + RELOC/doc/latex/tikz-dimline/dimline2.png + RELOC/doc/latex/tikz-dimline/dimline3.png + RELOC/doc/latex/tikz-dimline/tikz-dimline-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-dimline/tikz-dimline-doc.tex +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-license other-free +catalogue-topics pgf-tikz +catalogue-version 1.0 + +name tikz-feynhand +category Package +revision 51915 +shortdesc Feynman diagrams with TikZ +relocated 1 +longdesc This package lets you draw Feynman diagrams using TikZ. It is a +longdesc low-end modification of the TikZ-Feynman package, one of whose +longdesc principal advantages is the automatic generation of diagrams, +longdesc for which it needs LuaTex. TikZ-FeynHand only provides the +longdesc manual mode and hence runs in LaTeX without any reference to +longdesc LuaTeX. In addition it provides some new styles for vertices +longdesc and propagators, alternative shorter keywords in addition to +longdesc TikZ-Feynman's longer ones, some shortcut commands for quickly +longdesc customizing the diagrams' look, and the new feature of putting +longdesc one propagator "on top" of another. It also includes a quick +longdesc user guide for getting started, with many examples and a +longdesc 5-minute introduction to TikZ. +containersize 6912 +containerchecksum 5dcaa2f5c846957f3583ac5bfba14c668cc855c6dd930eb5851c19d448efdd207ff34599b09379354d0c772cb1890fac375d75d61524e64148602f4b5dde4355 +doccontainersize 316036 +doccontainerchecksum b0cf316dafb9494fc21d5657e1e3c1b4780b7c30e2fe93235d6d8538979471c31989e4203575dc66204fdb1cb11386d290feba3070e43a273b62ec59a73047d9 +docfiles size=113 + RELOC/doc/latex/tikz-feynhand/README.md details="Readme" + RELOC/doc/latex/tikz-feynhand/changes.txt + RELOC/doc/latex/tikz-feynhand/shell_escape.jpg + RELOC/doc/latex/tikz-feynhand/tikz-feynhand.userguide.pdf details="Package documentation" + RELOC/doc/latex/tikz-feynhand/tikz-feynhand.userguide.tex +runfiles size=13 + RELOC/tex/latex/tikz-feynhand/tikz-feynhand.sty + RELOC/tex/latex/tikz-feynhand/tikzfeynhand.keys.code.tex + RELOC/tex/latex/tikz-feynhand/tikzlibraryfeynhand.code.tex +catalogue-also tikz-feynman +catalogue-ctan /graphics/pgf/contrib/tikz-feynhand +catalogue-license gpl3+ +catalogue-topics physics pgf-tikz +catalogue-version 1.1.0 + +name tikz-feynman +category Package +revision 56615 +shortdesc Feynman diagrams with TikZ +relocated 1 +longdesc This is a LaTeX package allowing Feynman diagrams to be easily +longdesc generated within LaTeX with minimal user instructions and +longdesc without the need of external programs. It builds upon the TikZ +longdesc package and leverages the graph placement algorithms from TikZ +longdesc in order to automate the placement of many vertices. +longdesc tikz-feynman allows fine-tuned placement of vertices so that +longdesc even complex diagrams can still be generated with ease. +depend iftex +depend pgfopts +containersize 15440 +containerchecksum 34c147e6ee16643e99d2c8fa789b39aea6f3b9ae7de93fd5c65d1b0daca1e9514d484b5b38892a0cffa1aeedcd405df0bc6621bf68e587311bc9fe45205c29fc +doccontainersize 322304 +doccontainerchecksum ae0510a7971538fe458d83d4da4c78f7d607c7a1298344a139c02c49985f9005f6a81ab15f9dc621929d70d634c2cec4189ac4a2955e994611247af0c96986f3 +docfiles size=104 + RELOC/doc/latex/tikz-feynman/LICENSE + RELOC/doc/latex/tikz-feynman/README.md details="Readme" + RELOC/doc/latex/tikz-feynman/references.bib + RELOC/doc/latex/tikz-feynman/tikz-feynman.pdf details="Package documentation" + RELOC/doc/latex/tikz-feynman/tikz-feynman.tex +runfiles size=28 + RELOC/tex/latex/tikz-feynman/tikz-feynman.sty + RELOC/tex/latex/tikz-feynman/tikzfeynman.keys.code.tex + RELOC/tex/latex/tikz-feynman/tikzfeynman.patch.3.0.0.lua + RELOC/tex/latex/tikz-feynman/tikzfeynman.patch.3.0.1.lua + RELOC/tex/latex/tikz-feynman/tikzlibraryfeynman.code.tex +catalogue-also tikz-feynhand +catalogue-contact-home http://www.jpellis.me/projects/tikz-feynman +catalogue-ctan /graphics/pgf/contrib/tikz-feynman +catalogue-license lppl1.3 +catalogue-topics physics pgf-tikz use-luatex +catalogue-version 1.1.0 + +name tikz-imagelabels +category Package +revision 51490 +shortdesc Put labels on images using TikZ +relocated 1 +longdesc This package allows to add label texts to an existing image +longdesc with the aid of TikZ. This may be used to label certain +longdesc features in an image. +containersize 2124 +containerchecksum b74cf7113b288af9e98ceb801eb4d72e4785ce30390718c4c0eeabae20c49ca8eba91342b89dda525f06b9f436a427277c4ae8415748f1487cdb073088ed26c8 +doccontainersize 972112 +doccontainerchecksum 843f943c4a0e12d1260ee17f9f908adee568100b1e415df3f1b383fd83d70065c57a21290b89923d7ee84819356a366a467e42fed61370b214621a9ee58ee97f +docfiles size=366 + RELOC/doc/latex/tikz-imagelabels/README.md details="Readme" + RELOC/doc/latex/tikz-imagelabels/pleiades.jpg + RELOC/doc/latex/tikz-imagelabels/tikz-imagelabels.pdf details="Package documentation" +srccontainersize 8216 +srccontainerchecksum 2c6d1c0b599488bea8d53c136d81881d8cf15497e295b6e0701bc8570f2e868bdb1e0149f25943102cf6e9babfd53ad8401328224bc16a305f46748857c79572 +srcfiles size=9 + RELOC/source/latex/tikz-imagelabels/Makefile + RELOC/source/latex/tikz-imagelabels/tikz-imagelabels.dtx + RELOC/source/latex/tikz-imagelabels/tikz-imagelabels.ins +runfiles size=2 + RELOC/tex/latex/tikz-imagelabels/tikz-imagelabels.sty +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-license lppl1.3 +catalogue-topics graphics pgf-tikz graphics-incl graphics-text +catalogue-version 0.2 + +name tikz-inet +category Package +revision 15878 +shortdesc Draw interaction nets with TikZ +relocated 1 +longdesc The package extends TikZ with macros to draw interaction nets. +containersize 2832 +containerchecksum 0c4ecd55d10893ac8bca7b8ac38f2366f30cd989c5d6ab4dd501047f01c0285f8e4b78309dfce06525bf525cff77e2edd56429aa166f24b9a7e07586e3befe96 +doccontainersize 115776 +doccontainerchecksum e61f0a7879dd0ec016b6c85d66e6ace6b953adc2b9abd87306dc4d071d82f44984e6e25530db3fc658650f5ca74e5c237aa64d18e60a3c5c8c7f57c6f42103e0 +docfiles size=38 + RELOC/doc/latex/tikz-inet/README details="Readme" + RELOC/doc/latex/tikz-inet/tikz-inet-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-inet/tikz-inet-doc.tex +runfiles size=4 + RELOC/tex/latex/tikz-inet/tikz-inet.sty +catalogue-ctan /graphics/pgf/contrib/tikz-inet +catalogue-license lppl +catalogue-topics logic +catalogue-version 0.1 + +name tikz-kalender +category Package +revision 52890 +shortdesc A LaTeX based calendar using TikZ +relocated 1 +longdesc For usage see the example files tikz-kalender-example1.tex, +longdesc tikz-kalender-example2.tex, and *.events. The Code is inspired +longdesc by this document and is subject to the >>Creative Commons +longdesc attribution license (CC-BY-SA)<<. The class tikz-kalender +longdesc requires the package TikZ and the TikZ libraries calc and +longdesc calendar. +containersize 4436 +containerchecksum 8bda7464a62135fe2eb8739d428aca770ee6ba90d3fc08037ebd192f6e436116b59962ae7e0f0cce7addc6a44d0bb5eed47d8c0ff83371a070d3a5c0e8b1feee +doccontainersize 118464 +doccontainerchecksum d73e1427574212a2652191b0afce180155ff32b7d8d63f076f2b5dc71c64d1d8dd562666f8a7ebeff445409fb884ac79a66d0271582b0b6b72e84c5fe7c44f7e +docfiles size=37 + RELOC/doc/latex/tikz-kalender/Feiertage-2016.events + RELOC/doc/latex/tikz-kalender/Geburtstage.events + RELOC/doc/latex/tikz-kalender/README.md details="Readme" + RELOC/doc/latex/tikz-kalender/Schulferien-2016.events + RELOC/doc/latex/tikz-kalender/Sonstiges.events + RELOC/doc/latex/tikz-kalender/Urlaub.events + RELOC/doc/latex/tikz-kalender/tikz-kalender-example1.pdf details="Example of use" + RELOC/doc/latex/tikz-kalender/tikz-kalender-example1.tex + RELOC/doc/latex/tikz-kalender/tikz-kalender-example2.pdf + RELOC/doc/latex/tikz-kalender/tikz-kalender-example2.tex +runfiles size=4 + RELOC/tex/latex/tikz-kalender/tikz-kalender-translation.clo + RELOC/tex/latex/tikz-kalender/tikz-kalender.cls +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-license cc-by-sa-1 +catalogue-topics calendar class pgf-tikz +catalogue-version 0.4f + +name tikz-karnaugh +category Package +revision 47026 +shortdesc Typeset Karnaugh maps using TikZ +relocated 1 +longdesc The tikz-karnaugh package is a LaTeX package used to draw +longdesc Karnaugh maps. It uses TikZ to produce high quality graph up to +longdesc 12 variables, but this limit depends on the TeX memory usage +longdesc and can be different for you. It is very good for presentation +longdesc since TikZ allows for a better control over the final +longdesc appearance of the map. You can control colour, styles and +longdesc distances. It can be considered as an upgrade of Andreas W. +longdesc Wieland's karnaugh package towards TikZ supporting. Also, +longdesc complex maps with solution (prime implicants) pointed out can +longdesc be generated with external java software. It supports both +longdesc America and traditional styles, though American style requires +longdesc a little extra effort. +containersize 4532 +containerchecksum aef1c5e3fe96191d0dbe55ea9f2307b05c328b92621e9dcebf4f8fb862ae501bc6dabd4f96915a800532723b447632e21110cbfb9483bd73dcef928b102bfec3 +doccontainersize 273192 +doccontainerchecksum b17971734dac21649b75c140dc1dca832de35460ba5de9e83f8907ed075fbd0fc2872edd39da7aaa5631b126ca0d59d1ad440e4fb2e68ad277d7ea4bb8975440 +docfiles size=89 + RELOC/doc/latex/tikz-karnaugh/README.txt details="Readme" + RELOC/doc/latex/tikz-karnaugh/tikz-karnaugh-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-karnaugh/tikz-karnaugh-doc.tex +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-license lppl1 +catalogue-topics maths engineering pgf-tikz +catalogue-version 1.2 + +name tikz-ladder +category Package +revision 46555 +shortdesc Draw ladder diagrams using TikZ +relocated 1 +longdesc The tikz-ladder package contains a collection of symbols for +longdesc typesetting ladder diagrams (PLC program) in agreement with the +longdesc international standard IEC-61131-3/2013. It includes blocks +longdesc (for representing functions and function blocks) besides +longdesc contacts and coils. It extends the circuit library of TikZ and +longdesc allows you to draw a ladder diagram in the same way as you +longdesc would draw any other circuit. +containersize 4544 +containerchecksum b01bd48b4e8dbf5e3549bd24949b81b3731b32d715dcf3d3141e2e2eca5a98c1f5e5369c10cfdc62791280aa3349cb5409f582d71701ff03dced0688cad1847c +doccontainersize 236908 +doccontainerchecksum 9133c29850f486ea62be8ef9b61bf67907e88c9557fbac132ad04501616efee97725fc58585fce64c59707b4828a4953d926860af7c99fde9e3e73a479b28d0c +docfiles size=101 + RELOC/doc/latex/tikz-ladder/README.txt details="Readme" + RELOC/doc/latex/tikz-ladder/tikz-ladder-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-ladder/tikz-ladder-doc.tex +runfiles size=6 + RELOC/tex/latex/tikz-ladder/tikzlibrarycircuits.plc.ladder.code.tex +catalogue-also ladder +catalogue-ctan /graphics/pgf/contrib/tikz-ladder +catalogue-license lppl1 +catalogue-topics pgf-tikz diagram diagram-circ engineering +catalogue-version 1.1 + +name tikz-lake-fig +category Package +revision 55288 +shortdesc Schematic diagrams of lakes +relocated 1 +longdesc This package contains a collection of schematic diagrams of +longdesc lakes for use in LaTeX documents. Diagrams include +longdesc representations of material budgets, fluxes, and connectivity +longdesc arrangements. +containersize 4320 +containerchecksum 3c1c8d90d58c564f54abf0c34db63b3886f6e591dde8a2f7322f9ea2c6b51f10d1eba9d9f66cd1bf6e98e8ad57cd7a1d329e879381b164d4e1517331325ffa4f +doccontainersize 61388 +doccontainerchecksum 86afa9db08487666cea340d81355e73e64f72566efed3d1fdc8dd86108eb4f82621850baab86e039572e0ca40d5a38157091fa15f7e1462cfabc73be2c5de0af +docfiles size=19 + RELOC/doc/latex/tikz-lake-fig/README.md details="Readme" + RELOC/doc/latex/tikz-lake-fig/tikz-lake-fig-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-lake-fig/tikz-lake-fig-doc.tex +runfiles size=7 + RELOC/tex/latex/tikz-lake-fig/tikz-lake-fig.sty +catalogue-contact-repository https://github.com/jsta/tikz-lake-fig +catalogue-contact-support https://github.com/jsta/tikz-lake-fig/issues +catalogue-ctan /graphics/pgf/contrib/tikz-lake-fig +catalogue-license lppl1.3 +catalogue-topics pgf-tikz +catalogue-version 1.0 + +name tikz-layers +category Package +revision 46660 +shortdesc TikZ provides graphical layers on TikZ: "behind", "above" and "glass" +relocated 1 +longdesc TikZ-layers is a tiny package that provides, along side +longdesc "background", typical graphical layers on TikZ: "behind", +longdesc "above" and "glass". The layers may be selected with one of the +longdesc styles "on behind layer", "on above layer", "on glass layer" as +longdesc an option to a {scope} environment. +containersize 1084 +containerchecksum 900f3cba19f723cd75f59f2d3380ac96c6bcd53f4d80ce27b2d393d4728f37b9d9d2bae414f20d38e4b3b93769374281d4e741ac2480986b1662696e08a9a207 +doccontainersize 960 +doccontainerchecksum 617f1a53fa77f4a766157e72013227e992589b0030ac90ddd181643b1ef212f7e83b8f84f2520d64acf53f2cc76e3333e7ba56b78984b28c3320e2977a87cd56 +docfiles size=3 + RELOC/doc/latex/tikz-layers/README details="Readme" + RELOC/doc/latex/tikz-layers/README.TEXLIVE + RELOC/doc/latex/tikz-layers/manifest.txt +runfiles size=1 + RELOC/tex/latex/tikz-layers/tikz-layers.sty +catalogue-ctan /graphics/pgf/contrib/tikz-layers +catalogue-license lppl1.3 +catalogue-topics pgf-tikz graphics +catalogue-version 0.9 + +name tikz-nef +category Package +revision 55920 +shortdesc Create diagrams for neural networks constructed with the methods of the Neural Engineering Framework (NEF) +relocated 1 +longdesc The nef TikZ library provides predefined styles and shapes to +longdesc create diagrams for neural networks constructed with the +longdesc methods of the Neural Engineering Framework (NEF). The +longdesc following styles are supported: ea: ensemble array ens: +longdesc ensemble ext: external input or output inhibt: inhibitory +longdesc connection net: network pnode: pass-through node rect: +longdesc rectification ensemble recurrent: recurrent connection +containersize 1288 +containerchecksum 27ca8ead5ab99566c3bc398b52df4da6bda646519fc5d84d4a8b5476fbf0e86d8b405f2c88a9be56f6f6f4def0e5174ab0b2bc8100300d6b32bbe025dd7bf9c3 +doccontainersize 97016 +doccontainerchecksum 07e9b26ecb4b334c4d7459e636eb116dbf03f7978f88d29f462cd2f9ad81bc24bef57dd659d23c39e8bcd81ba4fa74214c7c399c104fb5af35bf18dfc3e4d1e3 +docfiles size=31 + RELOC/doc/latex/tikz-nef/LICENSE + RELOC/doc/latex/tikz-nef/README.md details="Readme" + RELOC/doc/latex/tikz-nef/example-net.tex + RELOC/doc/latex/tikz-nef/nef.bib + RELOC/doc/latex/tikz-nef/tikz-nef-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-nef/tikz-nef-doc.tex +runfiles size=1 + RELOC/tex/latex/tikz-nef/tikzlibrarynef.code.tex +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-license mit +catalogue-topics pgf-tikz diagram +catalogue-version 0.1 + +name tikz-network +category Package +revision 51884 +shortdesc Draw networks with TikZ +relocated 1 +longdesc This package allows the creation of images of complex networks +longdesc that are seamlessly integrated into the underlying LaTeX files. +longdesc The package requires datatool, etex, graphicx, tikz, +longdesc trimspaces, xifthen, and xkeyval. +containersize 8296 +containerchecksum e8100d04b9ef3336a514d18f43ffa6af5d4c2a2ce28663c9f4b40272f5619dbe11dc32f8d7399b7b730f8a90c5aab5fe18cc839d6736d7be6c8e37289e2dd30a +doccontainersize 825808 +doccontainerchecksum 26cfe73177bbe885cbb224fcd9b4f136a224947a4d9000e24c7f4fd1c44194ab8d2e11dbfac558c68ce36a30c7a7b82f335e3275db22e599dfcddd48d91ab08c +docfiles size=287 + RELOC/doc/latex/tikz-network/README.md details="Readme" + RELOC/doc/latex/tikz-network/data/edges.csv + RELOC/doc/latex/tikz-network/data/front.pdf + RELOC/doc/latex/tikz-network/data/ml_edges.csv + RELOC/doc/latex/tikz-network/data/ml_edges_simple.csv + RELOC/doc/latex/tikz-network/data/ml_vertices.csv + RELOC/doc/latex/tikz-network/data/ml_vertices_simple.csv + RELOC/doc/latex/tikz-network/data/plane.png + RELOC/doc/latex/tikz-network/data/vertices.csv + RELOC/doc/latex/tikz-network/data/vertices_RGB.csv + RELOC/doc/latex/tikz-network/tikz-network.pdf details="Package documentation" + RELOC/doc/latex/tikz-network/tikz-network.tex +runfiles size=14 + RELOC/tex/latex/tikz-network/tikz-network.sty +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-license gpl3+ +catalogue-topics graphics pgf-tikz diagram +catalogue-version 1.1 + +name tikz-opm +category Package +revision 32769 +shortdesc Typeset OPM diagrams +relocated 1 +longdesc Typeset OPM (Object-Process Methodology) diagrams using LaTeX +longdesc and PGF/TikZ. +containersize 1872 +containerchecksum eeb000cf28e2ff79106edd734ab71b9ec4ecb0db043a8b03764a98a33d3ef570711974bb13b58453362dd045b1019bfb4a1c1a856b74590110f7d8af308a3f01 +doccontainersize 75232 +doccontainerchecksum a2ed9a4b52d34dece5b0007b9dc46cf8da8cee0a9288b8db79f38068db5227e35ef9e3fe1f93a4c53e994c06c2d5cf21257bcde24b02f1553cb21d9f7585751d +docfiles size=20 + RELOC/doc/latex/tikz-opm/README details="Readme" + RELOC/doc/latex/tikz-opm/tikz-opm.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/latex/tikz-opm/tikz-opm.sty +catalogue-ctan /graphics/pgf/contrib/tikz-opm +catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 0.1.1 + +name tikz-optics +category Package +revision 43466 +shortdesc A library for drawing optical setups with TikZ +relocated 1 +longdesc This package provides a new TikZ library designed to easily +longdesc draw optical setups with TikZ. It provides shapes for lens, +longdesc mirror, etc. The geometrically (in)correct computation of light +longdesc rays through the setup is left to the user. +containersize 13176 +containerchecksum 703bf6777a78abfc72ff87d16a45c1599d9d68586b38fdb2aa4b2e180ce9cbd808a399a61f6ed381a3b04e83877dc2095c4701d10973f8632a0a32356d71f83c +doccontainersize 393040 +doccontainerchecksum 0a9f4d246869cfa0a8e7d252f78261a7877f4366fe1fa5c9db9dcb9a8dc36021818042d4ba79eb711e73a7ac32c0dd601ff892f97243fd5cdad373ee3ee02611 +docfiles size=118 + RELOC/doc/latex/tikz-optics/README details="Readme" + RELOC/doc/latex/tikz-optics/tikz-optics.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tikz-optics/tikz-optics.tex +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-license lppl1.3 +catalogue-topics physics pgf-tikz graphics-in-tex +catalogue-version 0.2.3 + +name tikz-page +category Package +revision 42039 +shortdesc Small macro to help building nice and complex layout materials +relocated 1 +longdesc The package provides a small macro to help building nice and +longdesc complex layout materials. +containersize 3600 +containerchecksum be0e43fc329a014b11fce907c6b073f5f4be64b4da4b184705aff2c08d82c1e644056491d01d59ef0ef8a22b4b4c3f22b9012953e00802a9b697a10f0a2f4920 +doccontainersize 564660 +doccontainerchecksum 896da337485c89508e7cb2adf377090b768beded3360a730a5a9c2400db73866b01e0091aaaaf8ce25b7444bf5c5a243f5eeff444d4588a4f8f8b5ac8aa9cdc9 +docfiles size=142 + RELOC/doc/latex/tikz-page/Makefile + RELOC/doc/latex/tikz-page/README + RELOC/doc/latex/tikz-page/README.md details="Readme" + RELOC/doc/latex/tikz-page/example.png + RELOC/doc/latex/tikz-page/tikz-page.pdf details="Package documentation" +srccontainersize 6820 +srccontainerchecksum 34741f8aec629a8d7929372f1fc5b51ffcef4d95fb95c039c9ba96e4fe05db366c09c88b6987b57ae0573ed067947e2a375f0bea96a74653133abba850453593 +srcfiles size=8 + RELOC/source/latex/tikz-page/tikz-page.dtx +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-license lppl1.3 +catalogue-topics pgf-tikz +catalogue-version 1.0 + +name tikz-palattice +category Package +revision 43442 +shortdesc Draw particle accelerator lattices with TikZ +relocated 1 +longdesc This package allows for drawing a map of a particle accelerator +longdesc just by giving a list of elements -- similar to lattice files +longdesc for simulation software. The package includes 12 common element +longdesc types like dipoles, quadrupoles, cavities, or screens, as well +longdesc as automatic labels with element names, a legend, a rule, and +longdesc an environment to fade out parts of the accelerator. The +longdesc coordinate of any element can be saved and used for custom TikZ +longdesc drawings or annotations. Thereby, lattices can be connected to +longdesc draw injection/extraction or even a complete accelerator +longdesc facility. +containersize 5440 +containerchecksum 6654ca0888b9a4ac7106d5d275a347e38de7dfc342d7c6228670e51a0285937015a39fd34e83e42a5ab8c2f4341e7f233535308bb2cd65a55227dba2d67ad79b +doccontainersize 518248 +doccontainerchecksum 8fd0a5a2ca4371e021ccceef41115b6520df6437198fdcba7fc37aa600821a95e91696fabb19cb0277639ff7664574cc56a62e1edcc96e58f26dd65ef5c82fa2 +docfiles size=146 + RELOC/doc/latex/tikz-palattice/Makefile + RELOC/doc/latex/tikz-palattice/README details="Readme" + RELOC/doc/latex/tikz-palattice/elsa.tex + RELOC/doc/latex/tikz-palattice/example1_linear.tex + RELOC/doc/latex/tikz-palattice/example2_circular.tex + RELOC/doc/latex/tikz-palattice/example3_coordinates.tex + RELOC/doc/latex/tikz-palattice/example4_labels.tex + RELOC/doc/latex/tikz-palattice/example5_legend.tex + RELOC/doc/latex/tikz-palattice/tikz-palattice_documentation.pdf details="Package documentation" + RELOC/doc/latex/tikz-palattice/tikz-palattice_documentation.tex +runfiles size=6 + RELOC/tex/latex/tikz-palattice/tikz-palattice.sty +catalogue-ctan /graphics/pgf/contrib/tikz-palattice +catalogue-license lppl1.3 +catalogue-topics pgf-tikz +catalogue-version 2.3 + +name tikz-planets +category Package +revision 55002 +shortdesc Illustrate celestial mechanics and the solar system +relocated 1 +longdesc This TikZ-package makes it easy to illustrate celestial +longdesc mechanics and the solar system. You can use it to draw sketches +longdesc of the eclipses, the phases of the Moon, etc. The package +longdesc requires the standard packages TikZ, xcolor, xstring, and +longdesc pgfkeys. +containersize 4056 +containerchecksum e990d8a92d8f34f3042117e289d7c385e17b973954a2286629c84cc2f13397159b75ec5ea1b032d710babf5b31d58d5f2b23a101b535b9d88328d797a36b952f +doccontainersize 170172 +doccontainerchecksum c92e05217a4e4aa6f49a5a400f2faea365483257b61db934351b0ec4c932e1d4d88e313f443cfd726db2b1234d0bb66f4f70064d690c554dcf4c4f16672b0c67 +docfiles size=45 + RELOC/doc/latex/tikz-planets/README.md details="Readme" + RELOC/doc/latex/tikz-planets/planets-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-planets/planets-doc.tex +runfiles size=4 + RELOC/tex/latex/tikz-planets/planets.sty +catalogue-contact-bugs https://framagit.org/Moutmout/tikz-planets/-/issues/ +catalogue-contact-repository https://framagit.org/Moutmout/tikz-planets +catalogue-ctan /graphics/pgf/contrib/tikz-planets +catalogue-license cc-by-sa-4 +catalogue-topics graphics pgf-tikz astronomy +catalogue-version 1.0.2 + +name tikz-qtree +category Package +revision 26108 +shortdesc Use existing qtree syntax for trees in TikZ +relocated 1 +longdesc The package provides a macro for drawing trees with TikZ using +longdesc the easy syntax of Alexis Dimitriadis' Qtree. It improves on +longdesc TikZ's standard tree-drawing facility by laying out tree nodes +longdesc without collisions; it improves on Qtree by adding lots of +longdesc features from TikZ (for example, edge labels, arrows between +longdesc nodes); and it improves on pst-qtree in being usable with +longdesc pdfTeX and XeTeX. +containersize 7216 +containerchecksum 5b00d147eef48e874d2d5c9b171e93703c728cb56f3882af4e63a41b36ebdadbd5bcae332bcfc8e091b16ee14a3a3e16c594b0f0879bdedeaacde1c1700c542d +doccontainersize 111032 +doccontainerchecksum 0e2a19415d00cc6c94961dc2e8292038078334cbedeff63d889a3d843d9ca3e89533870cabe2068f5631b3f48fc456cac36b1720df175c20a9f6c986c388f799 +docfiles size=32 + RELOC/doc/latex/tikz-qtree/README details="Readme" + RELOC/doc/latex/tikz-qtree/tikz-qtree-manual.pdf details="Package documentation" + RELOC/doc/latex/tikz-qtree/tikz-qtree-manual.tex +runfiles size=11 + RELOC/tex/latex/tikz-qtree/pgfsubpic.sty + RELOC/tex/latex/tikz-qtree/pgfsubpic.tex + RELOC/tex/latex/tikz-qtree/pgftree.sty + RELOC/tex/latex/tikz-qtree/pgftree.tex + RELOC/tex/latex/tikz-qtree/tikz-qtree-compat.sty + RELOC/tex/latex/tikz-qtree/tikz-qtree.sty + RELOC/tex/latex/tikz-qtree/tikz-qtree.tex +catalogue-ctan /graphics/pgf/contrib/tikz-qtree +catalogue-license gpl +catalogue-topics tree +catalogue-version 1.2 + +name tikz-relay +category Package +revision 51355 +shortdesc TikZ library for typesetting electrical diagrams +relocated 1 +longdesc This package contains a collection of symbols for typesetting +longdesc electrical wiring diagrams for relay control systems. The +longdesc symbols are meant to be in agreement with the international +longdesc standard IEC-60617 which has been adopted worldwide, with +longdesc perhaps the exception of the USA. It extends and modifies, when +longdesc needed, the TikZ-libray circuits.ee.IEC. A few non-standard +longdesc symbols are also included mainly to be used in presentations, +longdesc particularly with the beamer package. +containersize 6108 +containerchecksum ff171ed2c1b494ecbf012f1401fd0f2d0fc56a388383e482cf50ca7f591af93b2e6da74c237ac4a17fa214a489650670ef8560d826c7674086dbde6d541ffce4 +doccontainersize 484156 +doccontainerchecksum 1e81af1e171e7bf353617b1fee7f456b1e263ad911a842c154ec813c38fbab694f46b134c213810ca8de106854cc05d40bf8dbb1376c055d4d92c4f87e4e779d +docfiles size=209 + RELOC/doc/latex/tikz-relay/BeamerAnimation.pdf details="Further documentation" + RELOC/doc/latex/tikz-relay/BeamerAnimation.tex + RELOC/doc/latex/tikz-relay/README.txt details="Readme" + RELOC/doc/latex/tikz-relay/tikz-relay-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-relay/tikz-relay-doc.tex +runfiles size=14 + RELOC/tex/latex/tikz-relay/tikzlibrarycircuits.ee.IEC.relay.code.tex +catalogue-ctan /graphics/pgf/contrib/tikz-relay +catalogue-license lppl1 +catalogue-topics pgf-tikz diagram diagram-circ engineering physics +catalogue-version 1.2 + +name tikz-sfc +category Package +revision 49424 +shortdesc Symbols collection for typesetting Sequential Function Chart (SFC) diagrams (PLC programs) +relocated 1 +longdesc This package contains a collection of symbols for typesetting +longdesc Sequential Function Chart (SFC) diagrams in agreement with the +longdesc international standard IEC-61131-3/2013. It includes steps +longdesc (normal and initial), transitions, actions and actions +longdesc qualifiers (with and without time duration). It extends the +longdesc circuit library of TikZ and allows you to draw an SFC diagram +longdesc in same way you would draw any other circuit. +containersize 2824 +containerchecksum f31541b2333c5d8343143aad3a260e528523f78636cd772deae6e0eba81957ceeeb41491279dad621e4476bd9f5125ad994814cb2ab691e5039b54f9fffc7cc8 +doccontainersize 331232 +doccontainerchecksum caaa3c08f358b7f920322c553ff77e1f42414f16c67d2dd77bde8992e545366224cd7070e833268437332c080d6c65ab244678a3e9d5888fa97d21aafaa2d2b4 +docfiles size=154 + RELOC/doc/latex/tikz-sfc/BeamerAnimation.pdf + RELOC/doc/latex/tikz-sfc/BeamerAnimation.tex + RELOC/doc/latex/tikz-sfc/README.txt details="Readme" + RELOC/doc/latex/tikz-sfc/tikz-sfc-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-sfc/tikz-sfc-doc.tex +runfiles size=3 + RELOC/tex/latex/tikz-sfc/tikzlibrarycircuits.plc.sfc.code.tex +catalogue-also grafcet +catalogue-ctan /graphics/pgf/contrib/tikz-sfc +catalogue-license lppl1 +catalogue-topics pgf-tikz diagram diagram-circ diagram-flow engineering +catalogue-version 1.0.1 + +name tikz-timing +category Package +revision 56291 +shortdesc Easy generation of timing diagrams as TikZ pictures +relocated 1 +longdesc This package provides macros and an environment to generate +longdesc timing diagrams (digital waveforms) without much effort. The +longdesc TikZ package is used to produce the graphics. The diagrams may +longdesc be inserted into text (paragraphs, \hbox, etc.) and into +longdesc tikzpictures. A tabular-like environment is provided to produce +longdesc larger timing diagrams. +depend svn-prov +containersize 19084 +containerchecksum 7787480f873cc2c5e08c73a14c5f2965c57425ac223de41997727765f2c3f9693242e3f11d1cfe915d712153f64b7c47795134a98b3907569a12f468afa00617 +doccontainersize 468644 +doccontainerchecksum fea8cec1685740fd7a14ec94e5e7944ed3408ea34c852572ba8de5d97f38efdfe8f7f622ebd0c43cb04881d97e105891e509bd9ae49b64fa41b19497107fd0d9 +docfiles size=117 + RELOC/doc/latex/tikz-timing/README details="Readme" + RELOC/doc/latex/tikz-timing/tikz-timing.pdf details="Package documentation" +srccontainersize 54980 +srccontainerchecksum e3b8567c0d8dba6e691bc9b67ca5850a1beeea2a27185eeb1522ed99387d0dda31a0f6e9d6013253230e21897d4579f06d6e6591947e8c433ca6f9bedb293427 +srcfiles size=71 + RELOC/source/latex/tikz-timing/tikz-timing.dtx + RELOC/source/latex/tikz-timing/tikz-timing.ins +runfiles size=41 + RELOC/tex/latex/tikz-timing/tikz-timing-advnodes.sty + RELOC/tex/latex/tikz-timing/tikz-timing-arrows.sty + RELOC/tex/latex/tikz-timing/tikz-timing-beamer.sty + RELOC/tex/latex/tikz-timing/tikz-timing-clockarrows.sty + RELOC/tex/latex/tikz-timing/tikz-timing-columntype.sty + RELOC/tex/latex/tikz-timing/tikz-timing-counters.sty + RELOC/tex/latex/tikz-timing/tikz-timing-either.sty + RELOC/tex/latex/tikz-timing/tikz-timing-ifsym.sty + RELOC/tex/latex/tikz-timing/tikz-timing-interval.sty + RELOC/tex/latex/tikz-timing/tikz-timing-nicetabs.sty + RELOC/tex/latex/tikz-timing/tikz-timing-overlays.sty + RELOC/tex/latex/tikz-timing/tikz-timing.sty +catalogue-also timing +catalogue-contact-bugs https://sourceforge.net/p/tikz-timing/tickets/ +catalogue-contact-home https://sourceforge.net/p/tikz-timing/ +catalogue-contact-repository https://sourceforge.net/p/tikz-timing/code/ci/default/tree/ +catalogue-ctan /graphics/pgf/contrib/tikz-timing +catalogue-license lppl +catalogue-topics electronic diagram-tmg +catalogue-version 0.7f + +name tikz-trackschematic +category Package +revision 57300 +shortdesc A TikZ library for creating track diagrams in railways +relocated 1 +longdesc This TikZ library is a toolbox of symbols geared primarily +longdesc towards creating track schematic for either research or +longdesc educational purposes. It provides a TikZ frontend to some of +longdesc the symbols which may be needed to describe situations and +longdesc layouts in railway operation. The library is divided into four +longdesc sublibraries: topology, trafficcontrol, vehicles, +longdesc constructions, and messures. This project has received funding +longdesc from the European Union's Horizon 2020 research and innovation +longdesc programme under grant agreement No. 826347. +containersize 15172 +containerchecksum 3936b79ad3e687002ea2d52ef03bcd468518bf67e24a9e6eb83e9c5379bc244dadb3acbefd3bbfdaa84a5811f32b89a7bdca2bde4861ef6bda2021e7ee289828 +doccontainersize 598032 +doccontainerchecksum 0fd357b0e571c0bb9b0954338ab45147748574143c01c413700d7bda39d0171f037eb207770fbde9b366618fe60f5cff82d17900295ec14322373f2fe0f919ea +docfiles size=329 + RELOC/doc/latex/tikz-trackschematic/README.md details="Readme" + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-documentation.sty + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_berg.pdf + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_berg.tex + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_chamstadt.pdf + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_chamstadt.tex + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets.pdf + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets.tex + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/bend_train.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_clearing_point_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_clearing_point_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_signal_with_shunt_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_signal_with_shunt_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/braking_point_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/braking_point_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/bridge.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/bridge_track_beneath.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/bufferstop_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/bufferstop_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/clearing_point.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/combined_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/danger_point_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/danger_point_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/derailer_left_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/derailer_left_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/derailer_right_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/derailer_right_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/diamond_crossing_left.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/diamond_crossing_right.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/direction_control.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/direction_control_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/direction_control_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_pantograph_down_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_pantograph_down_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_power_off_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_power_off_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_speed_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/distant_speed_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/double-slip_turnout_left.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/double-slip_turnout_right.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/end_of_movement_authority_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/end_of_movement_authority_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/friction_bufferstop_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/friction_bufferstop_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/hectometer.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/hump.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/interlocking.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_double.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_double_full_closure.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_single.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_without_barrier.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/loop_transmitter.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/main_line.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/main_track.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/measure_line.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/measure_line_with_hectometer.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pantograph_down_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pantograph_down_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pantograph_up_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pantograph_up_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/parked_vehicle.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/parked_vehicles.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/parked_vehicles_with_label.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/platform_left.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/platform_middle.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/platform_right.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/power_off_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/power_off_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/power_on_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/power_on_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pylons_both.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pylons_left.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pylons_middle.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/pylons_right.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/route.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/route_clearing_point_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/route_clearing_point_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/route_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/route_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/route_signal_with_shunt_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/route_signal_with_shunt_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/secondary_track.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/shunt_limit_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/shunt_limit_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/shunt_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/shunt_signal_backward_locked.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/shunt_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/shunt_signal_forward_locked.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/speed_signal_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/speed_signal_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_closure.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_distance.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_marking.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_marking_with_turnout.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_number.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth_shape.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth_shape_bidirectional.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth_shape_special.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth_sign_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth_sign_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_direction_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_direction_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_drive_automatic.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_drive_human.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_ghost_direction_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_ghost_direction_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_moving_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_moving_fast_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_moving_fast_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_moving_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_moving_slow_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_moving_slow_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_shunt_mode_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_shunt_mode_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_shunting_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_shunting_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_bidirectional.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right_bidirectional.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right_with_signal.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward_left_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward_manually.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward_moving_points.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward_right_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_forward_left_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_forward_manually.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_forward_moving_points.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_forward_right_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_backward_left_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_backward_manually.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_backward_moving_points.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_backward_right_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_forward_left_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_forward_manually.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_forward_moving_points.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_right_forward_right_position.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_with_fouling_left_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_with_fouling_left_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_with_fouling_right_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_with_fouling_right_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/view_point_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/view_point_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/wire_limit_backward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/wire_limit_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic.pdf details="Package documentation" + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic.tex +runfiles size=42 + RELOC/tex/latex/tikz-trackschematic/tikz-trackschematic.sty + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.code.tex + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.constructions.code.tex + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.electrics.code.tex + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.measures.code.tex + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.topology.code.tex + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.trafficcontrol.code.tex + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.vehicles.code.tex +catalogue-contact-repository https://repository.ivev.bau.tu-bs.de/martin/tikz-trackschematic +catalogue-ctan /graphics/pgf/contrib/tikz-trackschematic +catalogue-license isc +catalogue-topics pgf-tikz graphics diagram +catalogue-version 0.6 + +name tikz-truchet +category Package +revision 50020 +shortdesc Draw Truchet tiles +relocated 1 +longdesc This is a package for LaTeX that draws Truchet tiles, as used +longdesc in Colin Beveridge's article Too good to be Truchet in issue 08 +longdesc of Chalkdust. +containersize 2236 +containerchecksum 74cc5a05cd9558c68cbb7987671fe1e02a9a076049aad96d4c95d7471ff04e48f03c500f58b85bd8eead46e1af592a54ffe1ef0b0ea0644f4479a332a63dec4a +doccontainersize 119856 +doccontainerchecksum 7fb291a9d7309c722fe31cbcea7a4004d44552f547e4d71fdcd667efb4aba41b6bf0be0cb941dd16e425eedc668dc6de3d2e55f964146a62b861296b0ed18579 +docfiles size=31 + RELOC/doc/latex/tikz-truchet/README.md details="Readme" + RELOC/doc/latex/tikz-truchet/tikz-truchet.pdf details="Package documentation" +srccontainersize 3476 +srccontainerchecksum 88a3d1ca19871e0329e40165b35ec90ce65b1565d42b4a678bfe611311a0cde68a6a8c67ff3ebdf78a1bafed1fec875a4f221efc6934724a265a3402d4970832 +srcfiles size=5 + RELOC/source/latex/tikz-truchet/tikz-truchet.dtx + RELOC/source/latex/tikz-truchet/tikz-truchet.ins +runfiles size=3 + RELOC/tex/latex/tikz-truchet/tikz-truchet.sty +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-license mit +catalogue-topics pgf-tikz + +name tikzcodeblocks +category Package +revision 54758 +shortdesc Helps to draw codeblocks like scratch, NEPO and PXT in TikZ +relocated 1 +longdesc tikzcodeblocks is a LaTeX package for typesetting blockwise +longdesc graphic programming languages like scratch, nepo or pxt. +containersize 5772 +containerchecksum a19ee68d5d59d936f1882bdf1de5851b9cac48debc4754025d214cc6838173fd7090631b08dd1916043520e97cd479087ad4548c991c0631856510ee912a42dc +doccontainersize 481372 +doccontainerchecksum b75b6ddf66fedf1d69611ca0b817ad9c5d7c0bc162cca2f04794bc3723135032908148baf4aae1b486a0b5af9bc335b9e585943a3a2fd73ae55a0702236f5142 +docfiles size=136 + RELOC/doc/latex/tikzcodeblocks/README.md details="Readme" + RELOC/doc/latex/tikzcodeblocks/examples/bsp-einruecken.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-english.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-hello-world.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-openroberta-umgebung.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-openroberta-zacken.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-start-roberta.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-start.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-verschachtelt-zacken.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-verzweigung.tikz + RELOC/doc/latex/tikzcodeblocks/examples/smarthome.tikz + RELOC/doc/latex/tikzcodeblocks/tikzcodeblocks-documentation.pdf details="Package documentation" language="de" + RELOC/doc/latex/tikzcodeblocks/tikzcodeblocks-documentation.tex +runfiles size=7 + RELOC/tex/latex/tikzcodeblocks/tikzcodeblocks.sty +catalogue-also scratch +catalogue-ctan /graphics/pgf/contrib/tikzcodeblocks +catalogue-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 0.13 + +name tikzducks +category Package +revision 55713 +shortdesc A little fun package for using rubber ducks in TikZ +relocated 1 +longdesc The package is a LaTeX package for ducks to be used in TikZ +longdesc pictures. This project is a continuation of an answer at +longdesc StackExchange How we can draw a duck? +containersize 17952 +containerchecksum 2cbde264e8621c4d7d7caa9da127139ed56d819760ccde59f9b8c098c77746414cfb8119ceaeca3e2da0f361f3fcd0d9dab1898fd240c2a2c15a64021e8b86fd +doccontainersize 447640 +doccontainerchecksum 73dcd9d393c852673f43e97da67a1c60330cf4e95b4fadc92a634628150fd228037dc024ed2e939441abf20f8bb761241798ded814fca5b9300b5dbe4a1f1171 +docfiles size=121 + RELOC/doc/generic/tikzducks/README.md details="Readme" + RELOC/doc/generic/tikzducks/tikzducks-doc.pdf details="Package documentation" + RELOC/doc/generic/tikzducks/tikzducks-doc.tex +runfiles size=27 + RELOC/tex/generic/tikzducks/t-tikzducks.mkiv + RELOC/tex/generic/tikzducks/tikzducks-generic.tex + RELOC/tex/generic/tikzducks/tikzducks.sty + RELOC/tex/generic/tikzducks/tikzlibraryducks.code.tex +catalogue-also tikzlings tikzmarmots +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-license lppl1.3c +catalogue-topics amusements graphics pgf-tikz +catalogue-version 1.5 + +name tikzinclude +category Package +revision 28715 +shortdesc Import TikZ images from colletions +relocated 1 +longdesc The package addresses the problem of importing only one +longdesc TikZ-image from a file holding multiple images. +containersize 1336 +containerchecksum 1559c739ee5ce26c531ed1c989a2d986ee6da05880e6dcb8f14018c71c638028517d1c2374cb452421c92f5d430d4560ae4463732926c56ff33407941e70ffc3 +doccontainersize 171152 +doccontainerchecksum 9cf9e6f5e45f9dba8843684cce3ff395f18c485e30ad0d0566e947dfa69704cd99600f8673203ae212a1aaf77908715c2e5ddbaae0de3732b98564725297112d +docfiles size=43 + RELOC/doc/latex/tikzinclude/README details="Readme" + RELOC/doc/latex/tikzinclude/tikzinclude.pdf details="Package documentation" +srccontainersize 3468 +srccontainerchecksum 3c7b7da5f7fb09fb52a4517846d3cb380482a03a2506c0f2f04f4d71bb42c7ce6cbe4087fe772b45808ad497fc7ba353c9ab193e61c328d57a5dd58b607ad4e0 +srcfiles size=3 + RELOC/source/latex/tikzinclude/tikzinclude.dtx + RELOC/source/latex/tikzinclude/tikzinclude.ins +runfiles size=1 + RELOC/tex/latex/tikzinclude/tikzinclude.sty +catalogue-ctan /graphics/pgf/contrib/tikzinclude +catalogue-license lppl1.3 +catalogue-topics graphics-supp +catalogue-version 1.0 + +name tikzlings +category Package +revision 58885 +shortdesc A collection of cute little animals and similar creatures +relocated 1 +longdesc A collection of LaTeX packages for drawing cute little animals +longdesc and similar creatures using TikZ. Currently, the following +longdesc TikZlings are included: anteater bear bee cat chicken coati +longdesc elephant hippo koala marmot mole mouse owl panda penguin pig +longdesc rhino sheep sloth snowman squirrel These little drawings can be +longdesc customized in many ways. +containersize 26652 +containerchecksum 8ca5c4857aff3c834f33ad9c4cfb207390ed7a701e7a296ea4b87a8141a380d3d2a868eed885bfb8d7d859b5229815a73c4a13ee64dc7c0ec0e1eca70f85e511 +doccontainersize 620576 +doccontainerchecksum 93000ade150553ff9cf0679a9d35a4b71ea27ef05856cc62a3466c8e7fe199a7912fb97fcabfe8d8546ea10a28c774a2598babf51f71616147b9300d5aceb404 +docfiles size=167 + RELOC/doc/latex/tikzlings/README.md details="Readme" + RELOC/doc/latex/tikzlings/tikzlings-doc.pdf details="Package documentation" + RELOC/doc/latex/tikzlings/tikzlings-doc.tex +runfiles size=74 + RELOC/tex/latex/tikzlings/tikzlings-addons.sty + RELOC/tex/latex/tikzlings/tikzlings-anteaters.sty + RELOC/tex/latex/tikzlings/tikzlings-bears.sty + RELOC/tex/latex/tikzlings/tikzlings-bees.sty + RELOC/tex/latex/tikzlings/tikzlings-cats.sty + RELOC/tex/latex/tikzlings/tikzlings-chickens.sty + RELOC/tex/latex/tikzlings/tikzlings-coatis.sty + RELOC/tex/latex/tikzlings/tikzlings-elephants.sty + RELOC/tex/latex/tikzlings/tikzlings-hippos.sty + RELOC/tex/latex/tikzlings/tikzlings-koalas.sty + RELOC/tex/latex/tikzlings/tikzlings-list.sty + RELOC/tex/latex/tikzlings/tikzlings-marmots.sty + RELOC/tex/latex/tikzlings/tikzlings-mice.sty + RELOC/tex/latex/tikzlings/tikzlings-moles.sty + RELOC/tex/latex/tikzlings/tikzlings-owls.sty + RELOC/tex/latex/tikzlings/tikzlings-pandas.sty + RELOC/tex/latex/tikzlings/tikzlings-penguins.sty + RELOC/tex/latex/tikzlings/tikzlings-pigs.sty + RELOC/tex/latex/tikzlings/tikzlings-rhinos.sty + RELOC/tex/latex/tikzlings/tikzlings-sheep.sty + RELOC/tex/latex/tikzlings/tikzlings-sloths.sty + RELOC/tex/latex/tikzlings/tikzlings-snowmen.sty + RELOC/tex/latex/tikzlings/tikzlings-squirrels.sty + RELOC/tex/latex/tikzlings/tikzlings.sty +catalogue-also tikzducks tikzmarmots +catalogue-contact-repository https://github.com/samcarter/tikzlings +catalogue-contact-support https://github.com/samcarter/tikzlings/issues +catalogue-ctan /graphics/pgf/contrib/tikzlings +catalogue-license lppl1.3c +catalogue-topics amusements graphics pgf-tikz +catalogue-version 0.6 + +name tikzmark +category Package +revision 57843 +shortdesc Use TikZ's method of remembering a position on a page +relocated 1 +longdesc The tikzmark package defines a command to "remember" a position +longdesc on a page for later (or earlier) use, primarily (but not +longdesc exclusively) with TikZ. +containersize 5684 +containerchecksum 90cee203f0b752ecc316e6eb483bd49d18f88da96c6f1f764862ae3d6da6007d4b658b30bcbcfcefb6ed33f9ca9a6b025b805a1b763b26ded8b30831274d6c75 +doccontainersize 418444 +doccontainerchecksum 35029b622cf040dab6b6238badcb7f91cdd7e513386d0c34c5bc03845bbb698656abf35c865eb24a32c024f281bacd6ba5eb47ff33a0650eb8986a5698e33d9a +docfiles size=106 + RELOC/doc/latex/tikzmark/README details="Readme" + RELOC/doc/latex/tikzmark/README.txt + RELOC/doc/latex/tikzmark/tikzmark.pdf details="Package documentation" +srccontainersize 18632 +srccontainerchecksum ac77183d87d30e87021cde1a7b700ae6c39dc53f621552eee0b1190e1c200aa0a6cfa776320cac87fc3caddccdf518ac131c945a015d367baaecf89b6d218c48 +srcfiles size=18 + RELOC/source/latex/tikzmark/tikzmark.dtx +runfiles size=7 + RELOC/tex/latex/tikzmark/tikzlibrarytikzmark.code.tex + RELOC/tex/latex/tikzmark/tikzmarklibrarylistings.code.tex +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-license lppl1.3c +catalogue-topics pgf-tikz graphics-supp +catalogue-version 1.10 + +name tikzmarmots +category Package +revision 54080 +shortdesc Drawing little marmots in TikZ +relocated 1 +longdesc This is a LaTeX package for marmots to be used in TikZ +longdesc pictures. These little figures are constructed in such a way +longdesc that they may even "borrow" some garments and other attributes +longdesc from the TikZducks. +containersize 2460 +containerchecksum c2ca7c1f66d070e1249b2ed9e88cadd482353140bc3add0146d7f67ffdd8c08cc3eb4b9c59f8e2d822000554a8bcf1e0f064c96ac0e002a6c80655c5eb909f81 +doccontainersize 230968 +doccontainerchecksum 03a4494458d7f053547952945e9ecf1c500dd3fafc665852498de05f38234c45f0972971e8278d279d36c81f2b920152f10ad1bda2c5b24e5957ad0846e77d9c +docfiles size=65 + RELOC/doc/latex/tikzmarmots/LICENSE.txt + RELOC/doc/latex/tikzmarmots/README.md details="Readme" + RELOC/doc/latex/tikzmarmots/tikzmarmots-doc.pdf details="Package documentation" + RELOC/doc/latex/tikzmarmots/tikzmarmots-doc.tex +runfiles size=3 + RELOC/tex/latex/tikzmarmots/tikzlibrarymarmots.code.tex + RELOC/tex/latex/tikzmarmots/tikzmarmots.sty +catalogue-also tikzducks tikzlings +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-license lppl1.3c +catalogue-topics amusements graphics pgf-tikz +catalogue-version 1.0 + +name tikzorbital +category Package +revision 36439 +shortdesc Atomic and molecular orbitals using TikZ +relocated 1 +longdesc Atomic s, p and d orbitals may be drawn, as well as molecular +longdesc orbital diagrams. +containersize 3532 +containerchecksum cc0be76e583d67759d53ab89f777f137e7038eb8344e841a3a1c6e5327129063f2cdcb67c586546f8bec94e8e83d944ae864f291b5b7d384610f93c0ce604aea +doccontainersize 197628 +doccontainerchecksum 676980e8772650f77ed37d545cbd4ac22af170e1a4541acbd0739f3b5c0aff91f3d48cd3b3fa3c562510c1c624f46de2218fe33a9e53532ca88ccbb929e3495b +docfiles size=56 + RELOC/doc/latex/tikzorbital/README.rst + RELOC/doc/latex/tikzorbital/tikzorbital.pdf details="Package documentation" + RELOC/doc/latex/tikzorbital/tikzorbital.tex +runfiles size=5 + RELOC/tex/latex/tikzorbital/tikzorbital.sty +catalogue-also modiagram +catalogue-ctan /graphics/pgf/contrib/tikzorbital +catalogue-license lppl +catalogue-topics chemistry diagram + +name tikzpackets +category Package +revision 55827 +shortdesc Display network packets +relocated 1 +longdesc This package allows you to easily display network packets +longdesc graphically. +containersize 2260 +containerchecksum 65f07d48b37db0391081c8edeb97d59dbb7a261ad1320b3b018f14a2b4544bfad46964b82980b3135416ed75fd7f21d08df97179d1a3ae2fb55308d36e89d2cb +doccontainersize 65772 +doccontainerchecksum f669d0a09de871167915f4a6647791346703abf03b557c8afa03f5d3ed81754c4d175d211850b7d6f87c2b0a1077c8559093d9743130f10ef334c10df74ddc69 +docfiles size=19 + RELOC/doc/latex/tikzpackets/README details="Readme" + RELOC/doc/latex/tikzpackets/tikzPackets.pdf details="Package documentation" + RELOC/doc/latex/tikzpackets/tikzPackets.tex +runfiles size=2 + RELOC/tex/latex/tikzpackets/tikzPackets.sty +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 /graphics/pgf/contrib/tikzpackets +catalogue-license mit +catalogue-topics pgf-tikz comp-net +catalogue-version 1.0 + +name tikzpagenodes +category Package +revision 56291 +shortdesc A single TikZ node for the whole page +relocated 1 +longdesc The package provides special PGF/TikZ nodes for the text, +longdesc marginpar, footer and header area of the current page. They are +longdesc inspired by the 'current page' node defined by PGF/TikZ itself. +containersize 1556 +containerchecksum b412599ab7288cf2bbbf4d3cd08a97b2a16932fce61ee9edd1b570345da29ee30d32482bc855f6929231331e758dea2a8f8973daa19f6dbd1863840bb6753876 +doccontainersize 251304 +doccontainerchecksum 411631a79232cc01cb918689b5fa030ca79b4c27f45419a4b06039a7a17222550a3f34a3c4e12b5168fd331987fa94ad862a6cd6b9bdd0831112e8682adbaf9b +docfiles size=63 + RELOC/doc/latex/tikzpagenodes/README details="Readme" + RELOC/doc/latex/tikzpagenodes/tikzpagenodes.pdf details="Package documentation" +srccontainersize 3692 +srccontainerchecksum 5c829f01396d69dce7399844935f0a3faa4d30f4b2262aa4c1dbac2543a2d3705534a05c1e9aedde03a5061f6d6f605a1dc6cc108b037d5a74301b8569446ca2 +srcfiles size=5 + RELOC/source/latex/tikzpagenodes/tikzpagenodes.dtx + RELOC/source/latex/tikzpagenodes/tikzpagenodes.ins +runfiles size=2 + RELOC/tex/latex/tikzpagenodes/tikzpagenodes.sty +catalogue-contact-bugs https://sourceforge.net/p/tikzpagenodes/tickets/ +catalogue-contact-home https://sourceforge.net/p/tikzpagenodes/ +catalogue-contact-repository https://sourceforge.net/p/tikzpagenodes/code/ci/default/tree/ +catalogue-ctan /graphics/pgf/contrib/tikzpagenodes +catalogue-license lppl +catalogue-topics graphics macro-supp pgf-tikz +catalogue-version 1.1 + +name tikzpeople +category Package +revision 43978 +shortdesc Draw people-shaped nodes in TikZ +relocated 1 +longdesc This package provides people-shaped nodes in the style of +longdesc Microsoft Visio clip art, to be used with TikZ. The available, +longdesc highly customizable, node shapes are: alice, bob, bride, +longdesc builder, businessman, charlie, chef, conductor, cowboy, +longdesc criminal, dave, devil, duck, graduate, groom, guard, jester, +longdesc judge, maininblack, mexican, nun, nurse, physician, pilot, +longdesc police, priest, sailor, santa, surgeon. +containersize 20712 +containerchecksum 9a7cdc232e91fc0d6e5fcc67ea8c39dd2a4b482ccb6ccfd82332151117ef5121ef49bebcd2e0266492c88b57c146eaa578d2136a23f8781f3fc5f5d07f527db7 +doccontainersize 486576 +doccontainerchecksum f561978adbe443659ec0890a8a38e9c9506f311d49d11fe952eacf579db0619946f86c0c6929a215fe7a98f5f02a782d1bc528359f195e09e1f388460dc0d55c +docfiles size=130 + RELOC/doc/latex/tikzpeople/README.md details="Readme" + RELOC/doc/latex/tikzpeople/tikzpeople.pdf details="Package documentation" + RELOC/doc/latex/tikzpeople/tikzpeople.tex +runfiles size=54 + RELOC/tex/latex/tikzpeople/tikzpeople.shape.alice.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.bob.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.bride.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.builder.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.businessman.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.charlie.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.chef.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.conductor.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.cowboy.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.criminal.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.dave.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.devil.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.duck.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.graduate.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.groom.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.guard.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.jester.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.judge.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.maninblack.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.mexican.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.nun.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.nurse.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.physician.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.pilot.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.police.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.priest.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.sailor.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.santa.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.surgeon.sty + RELOC/tex/latex/tikzpeople/tikzpeople.sty +catalogue-ctan /graphics/pgf/contrib/tikzpeople +catalogue-license lppl1.3 +catalogue-topics pgf-tikz +catalogue-version 0.4 + +name tikzpfeile +category Package +revision 25777 +shortdesc Draw arrows using PGF/TikZ +relocated 1 +longdesc In a document with a lot of diagrams created with PGF/TikZ, +longdesc there is a possibility of the reader being distracted by +longdesc different sorts of arrowheads in the diagrams and in the text +longdesc (as, e.g., in \rightarrow). The package defines macros to +longdesc create all arrows using PGF/TikZ, so as to avoid the problem. +containersize 1456 +containerchecksum 9da38e2e02c651e2f89a0e9ea917fc5147626026acc7302b7e32aa2cbee072f91311fbab73e44852a2c237290de76e560f2b45e88639936b542e6986d90a9b4d +doccontainersize 49016 +doccontainerchecksum a66c6ca303ab6afcea5d94b02936335d28077697d81632199de2678528100c3b5a754aa281fa83d93819a53eb2fc945ae899e254b6d6ccd926f8fbbd86d5ac2e +docfiles size=14 + RELOC/doc/latex/tikzpfeile/README details="Readme" + RELOC/doc/latex/tikzpfeile/tikzpfeile.pdf details="Package documentation" +srccontainersize 2428 +srccontainerchecksum 0a2e2d5ec964bbe5e6230c609d1997fac779f1edb087fdf130b93ce3ae76fbc0b90f5af9076de3f969a8d69e4054571f63dea947113f7447b7fb1f526849929f +srcfiles size=4 + RELOC/source/latex/tikzpfeile/tikzpfeile.dtx + RELOC/source/latex/tikzpfeile/tikzpfeile.ins +runfiles size=2 + RELOC/tex/latex/tikzpfeile/tikzpfeile.sty +catalogue-ctan /graphics/pgf/contrib/tikzpfeile +catalogue-license lppl +catalogue-topics graphics-symb +catalogue-version 1.0 + +name tikzposter +category Package +revision 32732 +shortdesc Create scientific posters using TikZ +relocated 1 +longdesc A document class provides a simple way of using TikZ for +longdesc generating posters. Several formatting options are available, +longdesc and spacing and layout of the poster is to a large extent +longdesc automated. +containersize 11280 +containerchecksum 75fd7b71632c663329843a48bed32b2fd04cbac02d24271ff1a49bf03e2905ab8f94b5876ee68876bc6017455cc3272750e85eea6061dea57f47fe96ec9e1045 +doccontainersize 297844 +doccontainerchecksum 1bfdf7bc2aa38e876378a1dfac751a57ac93dcb0fc5abeff700107c8ef11423751dc69bd7502c9b2ad2641f7f760eb697a248833b6914111dcd86d7f8a32e9bd +docfiles size=77 + RELOC/doc/latex/tikzposter/README details="Readme" + RELOC/doc/latex/tikzposter/tikzposter-example.tex + RELOC/doc/latex/tikzposter/tikzposter-template.tex + RELOC/doc/latex/tikzposter/tikzposter.pdf details="Package documentation" +srccontainersize 26040 +srccontainerchecksum 3d78ed0799114da415a112f6cfe73b84a242389d475e223db53a4c9b25d9d5c4ad3285910a3b24eb9fece2195dbbae72e18d57cc83f057fad6062bd5fd5325cb +srcfiles size=36 + RELOC/source/latex/tikzposter/tikzposter.dtx + RELOC/source/latex/tikzposter/tikzposter.ins +runfiles size=25 + RELOC/tex/latex/tikzposter/tikzposter.cls + RELOC/tex/latex/tikzposter/tikzposterBackgroundstyles.tex + RELOC/tex/latex/tikzposter/tikzposterBlockstyles.tex + RELOC/tex/latex/tikzposter/tikzposterColorpalettes.tex + RELOC/tex/latex/tikzposter/tikzposterColorstyles.tex + RELOC/tex/latex/tikzposter/tikzposterInnerblockstyles.tex + RELOC/tex/latex/tikzposter/tikzposterLayoutthemes.tex + RELOC/tex/latex/tikzposter/tikzposterNotestyles.tex + RELOC/tex/latex/tikzposter/tikzposterTitlestyles.tex +catalogue-ctan /graphics/pgf/contrib/tikzposter +catalogue-license lppl1.2 +catalogue-topics poster class +catalogue-version 2.0 + +name tikzscale +category Package +revision 30637 +shortdesc Resize pictures while respecting text size +relocated 1 +longdesc The package extends the \includegraphics command to support +longdesc tikzpictures. It allows scaling of TikZ images and PGFPlots to +longdesc a given width or height without changing the text size. +containersize 4712 +containerchecksum 73aa62d84417deec8085c3f46b1ababb756e32ae55c4af97def15816606df2b3df4a7735ab434d489d24dabf26806428d945ff3fced3c5eb7c19b36996f2f58b +doccontainersize 560500 +doccontainerchecksum d2ac9080a08d7d7e37ea2d1f801c4091cddf9540eb7c2cc2c0753ab0c07c2f0e7392742bc2e93274775c890184c126aa490c78fedf8827a6c787b951abcb6bf5 +docfiles size=189 + RELOC/doc/latex/tikzscale/3Dplot.tikz + RELOC/doc/latex/tikzscale/README details="Readme" + RELOC/doc/latex/tikzscale/alt.tikz + RELOC/doc/latex/tikzscale/histogramNormal.tikz + RELOC/doc/latex/tikzscale/invisible.tikz + RELOC/doc/latex/tikzscale/linewidth.tikz + RELOC/doc/latex/tikzscale/only.tikz + RELOC/doc/latex/tikzscale/onslide.tikz + RELOC/doc/latex/tikzscale/pause.tikz + RELOC/doc/latex/tikzscale/pgfplots-test.tikz + RELOC/doc/latex/tikzscale/pgfplots.randn.dat + RELOC/doc/latex/tikzscale/temporal.tikz + RELOC/doc/latex/tikzscale/test-tikzscale.pdf + RELOC/doc/latex/tikzscale/test-tikzscale.tex + RELOC/doc/latex/tikzscale/testNode.tikz + RELOC/doc/latex/tikzscale/testRectangle.tikz + RELOC/doc/latex/tikzscale/testgraphic2D.tikz + RELOC/doc/latex/tikzscale/tikzscale-beamer.tex + RELOC/doc/latex/tikzscale/tikzscale.pdf details="Package documentation" + RELOC/doc/latex/tikzscale/uncover.tikz + RELOC/doc/latex/tikzscale/visible.tikz +srccontainersize 19780 +srccontainerchecksum e073c55b8101eca9f401dc58046cbae260cd9513945e9c7a2fadd0ef86886607d1f92b83a11258be94e0bca08dea87ee878af031c6b42e343b716a1c6af42a2b +srcfiles size=22 + RELOC/source/latex/tikzscale/tikzscale.dtx + RELOC/source/latex/tikzscale/tikzscale.ins +runfiles size=5 + RELOC/tex/latex/tikzscale/tikzscale.sty +catalogue-ctan /graphics/pgf/contrib/tikzscale +catalogue-license lppl1.3 +catalogue-topics graphics-supp +catalogue-version 0.2.6 + +name tikzsymbols +category Package +revision 49975 +shortdesc Some symbols created using TikZ +relocated 1 +longdesc The package provides various emoticons, cooking symbols and +longdesc trees. +containersize 14016 +containerchecksum 6061fad290f71257b2496faabc1a11721518274964a18dc1d31d1e530de029c7418668444f868e6b660eea5d85bc440dbb7796fbf6cf181ec190ff34019b5aae +doccontainersize 541092 +doccontainerchecksum b688b3d4e2ec3352000b7bd8842736bbf52b10b5215725fba7970e048e4e823c0d522d753adf8c65be3ab6d1c091ab9b01b68922ba2796c012c4d948e3958f77 +docfiles size=134 + RELOC/doc/latex/tikzsymbols/README.md details="Readme" + RELOC/doc/latex/tikzsymbols/tikzsymbols.pdf details="Package documentation" +srccontainersize 34300 +srccontainerchecksum c7a3d6290a1eb7da4fff7f7f9fb2ef4a8c128c742023da966444be2b662bd98a20e7d3d82ac77637caa0067c2b5ec5ddd84ca224bf793e5b65eb637e8ebbc814 +srcfiles size=50 + RELOC/source/latex/tikzsymbols/tikzsymbols.dtx + RELOC/source/latex/tikzsymbols/tikzsymbols.ins +runfiles size=31 + RELOC/tex/latex/tikzsymbols/tikzsymbols.sty +catalogue-contact-repository https://github.com/Vidabe/tikzsymbols +catalogue-ctan /graphics/pgf/contrib/tikzsymbols +catalogue-license lppl1.3c +catalogue-topics graphics-symb pgf-tikz +catalogue-version 4.10c + +name tikztosvg +category TLCore +revision 58737 +shortdesc A utility for rendering TikZ diagrams to SVG +longdesc This package provides a shell script that calls XeTeX and +longdesc pdf2svg to convert TikZ environments to SVG files. +depend tikztosvg.ARCH +containersize 2012 +containerchecksum 826b6cc6489db99d4b7651afdaf68117840e8aab4a19235110128af63cf26108fe409fba341acd26ef1ce2ba6276d368bd00e83c7b5954b1937d50b4d3c3fe8e +doccontainersize 206532 +doccontainerchecksum 1418c505769ed1fe835f713cc546305a25b6a96a16a7e6dbf9938547824b59fbf4d638c9d40ec7ed1c23fb110ffb482062884eefdd432db1e57b9e567ac299a4 +docfiles size=66 + texmf-dist/doc/man/man1/tikztosvg.1 + texmf-dist/doc/man/man1/tikztosvg.man1.pdf + texmf-dist/doc/support/tikztosvg/CHANGELOG.md + texmf-dist/doc/support/tikztosvg/LICENSE + texmf-dist/doc/support/tikztosvg/Makefile + texmf-dist/doc/support/tikztosvg/README.md details="Readme" + texmf-dist/doc/support/tikztosvg/example.svg + texmf-dist/doc/support/tikztosvg/example.tikz + texmf-dist/doc/support/tikztosvg/install.sh + texmf-dist/doc/support/tikztosvg/man.adoc + texmf-dist/doc/support/tikztosvg/tikztosvg.pdf details="Manual page (PDF)" +runfiles size=2 + texmf-dist/scripts/tikztosvg/tikztosvg +catalogue-contact-announce https://lists.sr.ht/~pablo-pie/tikztosvg +catalogue-contact-bugs https://todo.sr.ht/~pablo-pie/tikztosvg +catalogue-contact-development https://lists.sr.ht/~pablo-pie/tikztosvg +catalogue-contact-home https://git.sr.ht/~pablo-pie/tikztosvg +catalogue-contact-repository https://git.sr.ht/~pablo-pie/tikztosvg +catalogue-contact-support https://lists.sr.ht/~pablo-pie/tikztosvg +catalogue-ctan /support/tikztosvg +catalogue-license gpl3 +catalogue-topics cvt-other graphics pgf-tikz +catalogue-version 0.2.0 + +name tikztosvg.aarch64-linux +category TLCore +revision 55132 +shortdesc aarch64-linux files of tikztosvg +containersize 336 +containerchecksum db674b54f87871bf4c238dd86d96e89892bbd9020e8e0fa9f060a38b717ba325701e05b02f5abed13fb1e0a7138a0e29529a4ae5a9717aec63304c84e69c1bb0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/tikztosvg + +name tikztosvg.amd64-freebsd +category TLCore +revision 55132 +shortdesc amd64-freebsd files of tikztosvg +containersize 336 +containerchecksum fc6fdb10451420252827a67f4fee59fd418ae7060f9121fe22d7db21b488355a03546d202cb49f9def5d8e48be1715e93f272f151cd077a55fba2c4705b2229b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/tikztosvg + +name tikztosvg.amd64-netbsd +category TLCore +revision 55132 +shortdesc amd64-netbsd files of tikztosvg +containersize 336 +containerchecksum f8c66908ae67c30971cfb93706745a4bde9d0109cc90e0f137f43245c08197ebcf9f3c20585b6c2720a6ca579b272682f727e3968b9b3836bcbf550ffc10da4c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/tikztosvg + +name tikztosvg.armhf-linux +category TLCore +revision 55132 +shortdesc armhf-linux files of tikztosvg +containersize 336 +containerchecksum 86458720805200faaffbb0d759f263f468b6b9f8ca92e7864583382dc2dc0ee726bb1cd2b7f0f35693e349c833dc285ac1a2a6f961c4954343202dd0862b7dbc +binfiles arch=armhf-linux size=1 + bin/armhf-linux/tikztosvg + +name tikztosvg.i386-cygwin +category TLCore +revision 55132 +shortdesc i386-cygwin files of tikztosvg +containersize 336 +containerchecksum 53bd060afb4f14b300d452b2294502dbe81a9e42abef017e95530e5a44f328d3fbcfad1a74a8e295f37d8769fff852e49cf1e35fca5d0711483f08a6ae9037f4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/tikztosvg + +name tikztosvg.i386-freebsd +category TLCore +revision 55132 +shortdesc i386-freebsd files of tikztosvg +containersize 336 +containerchecksum a6bbe08bb7e51ef8f511c417f90f6178882773810f56cdc17dac1551c74374f1df2a9c12cae0c724c8d19e1dea0bd3eacaab4ee1d61e7df001ee00fc91498f2a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/tikztosvg + +name tikztosvg.i386-linux +category TLCore +revision 55132 +shortdesc i386-linux files of tikztosvg +containersize 336 +containerchecksum 07b1207ae6bc7384902dcbf562cf8c4f906369bdf1b378991398ca71a4d75a903bd27c83fc34c5b6ff2a4b94499ea728e48da96f24fe123688d518d067a43023 +binfiles arch=i386-linux size=1 + bin/i386-linux/tikztosvg + +name tikztosvg.i386-netbsd +category TLCore +revision 55132 +shortdesc i386-netbsd files of tikztosvg +containersize 336 +containerchecksum 0a367a755c4eaac402ddee40518b37c75bf4e950fe81293f501056376e62d6c326c41d8c1b1bc91d8a0bf8489553b47493ec018aea58afda7523a53232e8a317 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/tikztosvg + +name tikztosvg.i386-solaris +category TLCore +revision 55132 +shortdesc i386-solaris files of tikztosvg +containersize 336 +containerchecksum b59da35abe11e33eea46e77ba37ffc0b28f7f7b212527d6fe19fbf9647fe2f66adadc14d7fa236d1bc1663f56ab975285c35791028533ad94c06d8693dc79400 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/tikztosvg + +name tikztosvg.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of tikztosvg +containersize 340 +containerchecksum f85b664a792f2e351d77debeceff990bbc3948bade5f91bb99c2f0137653f0eef2e94cdb91c020e04710187b08669c8a8673981e31aec4fb1269d53cf9eb1e72 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/tikztosvg + +name tikztosvg.x86_64-cygwin +category TLCore +revision 55132 +shortdesc x86_64-cygwin files of tikztosvg +containersize 336 +containerchecksum 44a268d96d63a4567b7c36078a19782f8b729b50f22ecb71fbc8a2ee61c50c14e0feea6aa3f80dcca787bd9668b4f2debdafef58d9a1e6051b81ba1250d05de9 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/tikztosvg + +name tikztosvg.x86_64-darwinlegacy +category TLCore +revision 55132 +shortdesc x86_64-darwinlegacy files of tikztosvg +containersize 344 +containerchecksum 16687afdb8b2118d43507bd9254d4e5787a26fb0f5570c3a5ed5e37239d4f6f445f7b8ec5cc2b5b2c29a4e0794c8a113cac6904325f39eefb01ef5b11b62f820 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/tikztosvg + +name tikztosvg.x86_64-linux +category TLCore +revision 55132 +shortdesc x86_64-linux files of tikztosvg +containersize 336 +containerchecksum 779f34cc1e272e6f9edf6c4fae2cfce3d7cbd8d8bc70558afef938ed71f964a2b4690bdb6fea3d1edc7668712187a1ce016b5814c4334aca77e22f27eda7e378 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/tikztosvg + +name tikztosvg.x86_64-linuxmusl +category TLCore +revision 55132 +shortdesc x86_64-linuxmusl files of tikztosvg +containersize 340 +containerchecksum 5e8d819ee689346ff9b7ae5c8bd4721805cc6d92f15a66ad3353a5140b5dc00869094c9e080c121f656150184f12f8d3c80d45e35cee66b840942a734b0afec6 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/tikztosvg + +name tikztosvg.x86_64-solaris +category TLCore +revision 55132 +shortdesc x86_64-solaris files of tikztosvg +containersize 336 +containerchecksum 5a66d2599fcfe52161b006775286412acc5f44d9e85bc9a817329eeef731cd8dc590ecfaa066f43662bafe9075508264cd5ef5b450a700bac33d04d87222dd1b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/tikztosvg + +name tile-graphic +category Package +revision 55325 +shortdesc Create tiles of a graphical file +relocated 1 +longdesc This package breaks a given graphical file into n rows and m +longdesc columns of subgraphics, which are called tiles. The tiles can +longdesc be written separately to individual PDF files, or packaged into +longdesc a single PDF file. +containersize 3700 +containerchecksum b6235459600c5c8bc683c9fe778bf864f5ab3dfcc8c15afd7b997c45f349f05b57ded236daeeef1e6bbbb7e535a4f203625344a35d6e4de401c082a937090cfb +doccontainersize 6503612 +doccontainerchecksum c945ece6ed1b83f4fd8923dd74d0c961c907071fd5d33feda3ea514beeb8b85878dc63011ba73edd1d4a62799ee2555cafe7d4c866d55d160c7e97168ab16038 +docfiles size=2449 + RELOC/doc/latex/tile-graphic/README.md details="Readme" + RELOC/doc/latex/tile-graphic/docs/tile-graphic.pdf details="Package documentation" + RELOC/doc/latex/tile-graphic/examples/choo/choo.pdf + RELOC/doc/latex/tile-graphic/examples/create-tg.tex + RELOC/doc/latex/tile-graphic/examples/flowers.pdf + RELOC/doc/latex/tile-graphic/examples/postscript/flowers.eps + RELOC/doc/latex/tile-graphic/examples/postscript/flowers.pdf + RELOC/doc/latex/tile-graphic/tg.cfg.txt +srccontainersize 13648 +srccontainerchecksum 8334012b871abc58eb44f3b20f76d1afb2764f07be12b7122c81e5ab627a14fe2221596756868523ab8c6b11e0e7f4aba0b9740efbb221e569ab1889141b250c +srcfiles size=13 + RELOC/source/latex/tile-graphic/tile-graphic.dtx + RELOC/source/latex/tile-graphic/tile-graphic.ins +runfiles size=3 + RELOC/tex/latex/tile-graphic/tile-graphic.sty +catalogue-ctan /macros/latex/contrib/tile-graphic +catalogue-license lppl1.2 +catalogue-topics graphics-subpic + +name timbreicmc +category Package +revision 49740 +shortdesc Typeset documents with ICMC/USP watermarks +relocated 1 +longdesc With this package you can typeset documents with ICMC/USP Sao +longdesc Carlos watermarks. ICMC is acronym for "Instituto de Ciencias +longdesc Matematicas e de Computacao" of the "Universidade de Sao Paulo" +longdesc (USP), in the city of Sao Carlos-SP, Brazil. +containersize 15436 +containerchecksum 01e0e06769810e07389006e9443a836de76e95fea6133e7aab1f47cc554c3912a8aeb43bbf33d06cf9f3a8550a9eb9ec23830ab96ebbb84629ec957d7050e9a9 +doccontainersize 701320 +doccontainerchecksum ebe4cf57814e6699127a30031c801efe583505098c707a97bece8dff93ff0cd4939cf047802ed38e645c339592e1a062c512dcb5d027192122e4c98ce41d1eac +docfiles size=195 + RELOC/doc/latex/timbreicmc/README.md details="Readme" + RELOC/doc/latex/timbreicmc/timbreicmc.pdf details="Package documentation" +srccontainersize 20352 +srccontainerchecksum eae8ea0badfc036dd6c5908c95bda4e829bebc90e4d50cbf766937701a6f631ec9f39269d09889c5c2bf15a3dd24ddd8062829e5bf735c291e4338085749607f +srcfiles size=20 + RELOC/source/latex/timbreicmc/timbreicmc.dtx + RELOC/source/latex/timbreicmc/timbreicmc.ins +runfiles size=16 + RELOC/tex/latex/timbreicmc/timbreicmc.sty +catalogue-also watermark +catalogue-ctan /macros/latex/contrib/timbreicmc +catalogue-license lppl1.3c +catalogue-topics watermark +catalogue-version 2.0 + +name times +category Package +revision 35058 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap utm.map +containersize 286928 +containerchecksum 252c933fb17ce2533f6e0f2b13a478d62223a596ee257937558c61e224c30753c157c92ed9d5ce3ced5ade0f5eb00ec15368fc75c10a182011312d6a0668911d +runfiles size=335 + RELOC/dvips/times/config.utm + RELOC/fonts/afm/adobe/times/ptmb8a.afm + RELOC/fonts/afm/adobe/times/ptmbi8a.afm + RELOC/fonts/afm/adobe/times/ptmr8a.afm + RELOC/fonts/afm/adobe/times/ptmri8a.afm + RELOC/fonts/afm/urw/times/utmb8a.afm + RELOC/fonts/afm/urw/times/utmbi8a.afm + RELOC/fonts/afm/urw/times/utmr8a.afm + RELOC/fonts/afm/urw/times/utmri8a.afm + RELOC/fonts/map/dvips/times/utm.map + RELOC/fonts/tfm/adobe/times/psyro.tfm + RELOC/fonts/tfm/adobe/times/ptmb.tfm + RELOC/fonts/tfm/adobe/times/ptmb7t.tfm + RELOC/fonts/tfm/adobe/times/ptmb8c.tfm + RELOC/fonts/tfm/adobe/times/ptmb8r.tfm + RELOC/fonts/tfm/adobe/times/ptmb8t.tfm + RELOC/fonts/tfm/adobe/times/ptmbc.tfm + RELOC/fonts/tfm/adobe/times/ptmbc7t.tfm + RELOC/fonts/tfm/adobe/times/ptmbc8t.tfm + RELOC/fonts/tfm/adobe/times/ptmbi.tfm + RELOC/fonts/tfm/adobe/times/ptmbi7t.tfm + RELOC/fonts/tfm/adobe/times/ptmbi8c.tfm + RELOC/fonts/tfm/adobe/times/ptmbi8r.tfm + RELOC/fonts/tfm/adobe/times/ptmbi8t.tfm + RELOC/fonts/tfm/adobe/times/ptmbo.tfm + RELOC/fonts/tfm/adobe/times/ptmbo7t.tfm + RELOC/fonts/tfm/adobe/times/ptmbo8c.tfm + RELOC/fonts/tfm/adobe/times/ptmbo8r.tfm + RELOC/fonts/tfm/adobe/times/ptmbo8t.tfm + RELOC/fonts/tfm/adobe/times/ptmr.tfm + RELOC/fonts/tfm/adobe/times/ptmr7t.tfm + RELOC/fonts/tfm/adobe/times/ptmr8c.tfm + RELOC/fonts/tfm/adobe/times/ptmr8r.tfm + RELOC/fonts/tfm/adobe/times/ptmr8rn.tfm + RELOC/fonts/tfm/adobe/times/ptmr8t.tfm + RELOC/fonts/tfm/adobe/times/ptmrc.tfm + RELOC/fonts/tfm/adobe/times/ptmrc7t.tfm + RELOC/fonts/tfm/adobe/times/ptmrc8t.tfm + RELOC/fonts/tfm/adobe/times/ptmri.tfm + RELOC/fonts/tfm/adobe/times/ptmri7t.tfm + RELOC/fonts/tfm/adobe/times/ptmri8c.tfm + RELOC/fonts/tfm/adobe/times/ptmri8r.tfm + RELOC/fonts/tfm/adobe/times/ptmri8t.tfm + RELOC/fonts/tfm/adobe/times/ptmro.tfm + RELOC/fonts/tfm/adobe/times/ptmro7t.tfm + RELOC/fonts/tfm/adobe/times/ptmro8c.tfm + RELOC/fonts/tfm/adobe/times/ptmro8r.tfm + RELOC/fonts/tfm/adobe/times/ptmro8t.tfm + RELOC/fonts/tfm/adobe/times/ptmrr8re.tfm + RELOC/fonts/tfm/adobe/times/ptmrre.tfm + RELOC/fonts/tfm/adobe/times/ptmrrn.tfm + RELOC/fonts/tfm/adobe/times/zpsycmrv.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7m.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7t.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7v.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7y.tfm + RELOC/fonts/tfm/adobe/times/zptmcmr.tfm + RELOC/fonts/tfm/adobe/times/zptmcmrm.tfm + RELOC/fonts/tfm/adobe/times/zpzccmry.tfm + RELOC/fonts/tfm/urw35vf/times/utmb7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmb8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmb8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmb8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbc7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbc8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmr7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmr8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmr8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmr8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmrc7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmrc8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmri7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmri8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmri8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmri8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmro7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmro8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmro8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmro8t.tfm + RELOC/fonts/type1/urw/times/utmb8a.pfb + RELOC/fonts/type1/urw/times/utmb8a.pfm + RELOC/fonts/type1/urw/times/utmbi8a.pfb + RELOC/fonts/type1/urw/times/utmbi8a.pfm + RELOC/fonts/type1/urw/times/utmr8a.pfb + RELOC/fonts/type1/urw/times/utmr8a.pfm + RELOC/fonts/type1/urw/times/utmri8a.pfb + RELOC/fonts/type1/urw/times/utmri8a.pfm + RELOC/fonts/vf/adobe/times/ptmb.vf + RELOC/fonts/vf/adobe/times/ptmb7t.vf + RELOC/fonts/vf/adobe/times/ptmb8c.vf + RELOC/fonts/vf/adobe/times/ptmb8t.vf + RELOC/fonts/vf/adobe/times/ptmbc.vf + RELOC/fonts/vf/adobe/times/ptmbc7t.vf + RELOC/fonts/vf/adobe/times/ptmbc8t.vf + RELOC/fonts/vf/adobe/times/ptmbi.vf + RELOC/fonts/vf/adobe/times/ptmbi7t.vf + RELOC/fonts/vf/adobe/times/ptmbi8c.vf + RELOC/fonts/vf/adobe/times/ptmbi8t.vf + RELOC/fonts/vf/adobe/times/ptmbo.vf + RELOC/fonts/vf/adobe/times/ptmbo7t.vf + RELOC/fonts/vf/adobe/times/ptmbo8c.vf + RELOC/fonts/vf/adobe/times/ptmbo8t.vf + RELOC/fonts/vf/adobe/times/ptmr.vf + RELOC/fonts/vf/adobe/times/ptmr7t.vf + RELOC/fonts/vf/adobe/times/ptmr8c.vf + RELOC/fonts/vf/adobe/times/ptmr8t.vf + RELOC/fonts/vf/adobe/times/ptmrc.vf + RELOC/fonts/vf/adobe/times/ptmrc7t.vf + RELOC/fonts/vf/adobe/times/ptmrc8t.vf + RELOC/fonts/vf/adobe/times/ptmri.vf + RELOC/fonts/vf/adobe/times/ptmri7t.vf + RELOC/fonts/vf/adobe/times/ptmri8c.vf + RELOC/fonts/vf/adobe/times/ptmri8t.vf + RELOC/fonts/vf/adobe/times/ptmro.vf + RELOC/fonts/vf/adobe/times/ptmro7t.vf + RELOC/fonts/vf/adobe/times/ptmro8c.vf + RELOC/fonts/vf/adobe/times/ptmro8t.vf + RELOC/fonts/vf/adobe/times/ptmrre.vf + RELOC/fonts/vf/adobe/times/ptmrrn.vf + RELOC/fonts/vf/adobe/times/zpsycmrv.vf + RELOC/fonts/vf/adobe/times/zptmcm7m.vf + RELOC/fonts/vf/adobe/times/zptmcm7t.vf + RELOC/fonts/vf/adobe/times/zptmcm7v.vf + RELOC/fonts/vf/adobe/times/zptmcm7y.vf + RELOC/fonts/vf/adobe/times/zptmcmr.vf + RELOC/fonts/vf/adobe/times/zptmcmrm.vf + RELOC/fonts/vf/adobe/times/zpzccmry.vf + RELOC/fonts/vf/urw35vf/times/utmb7t.vf + RELOC/fonts/vf/urw35vf/times/utmb8c.vf + RELOC/fonts/vf/urw35vf/times/utmb8t.vf + RELOC/fonts/vf/urw35vf/times/utmbc7t.vf + RELOC/fonts/vf/urw35vf/times/utmbc8t.vf + RELOC/fonts/vf/urw35vf/times/utmbi7t.vf + RELOC/fonts/vf/urw35vf/times/utmbi8c.vf + RELOC/fonts/vf/urw35vf/times/utmbi8t.vf + RELOC/fonts/vf/urw35vf/times/utmbo7t.vf + RELOC/fonts/vf/urw35vf/times/utmbo8c.vf + RELOC/fonts/vf/urw35vf/times/utmbo8t.vf + RELOC/fonts/vf/urw35vf/times/utmr7t.vf + RELOC/fonts/vf/urw35vf/times/utmr8c.vf + RELOC/fonts/vf/urw35vf/times/utmr8t.vf + RELOC/fonts/vf/urw35vf/times/utmrc7t.vf + RELOC/fonts/vf/urw35vf/times/utmrc8t.vf + RELOC/fonts/vf/urw35vf/times/utmri7t.vf + RELOC/fonts/vf/urw35vf/times/utmri8c.vf + RELOC/fonts/vf/urw35vf/times/utmri8t.vf + RELOC/fonts/vf/urw35vf/times/utmro7t.vf + RELOC/fonts/vf/urw35vf/times/utmro8c.vf + RELOC/fonts/vf/urw35vf/times/utmro8t.vf + RELOC/tex/latex/times/8rutm.fd + RELOC/tex/latex/times/omlutm.fd + RELOC/tex/latex/times/omsutm.fd + RELOC/tex/latex/times/ot1utm.fd + RELOC/tex/latex/times/t1utm.fd + RELOC/tex/latex/times/ts1utm.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name timetable +category Package +revision 15878 +shortdesc Generate timetables +relocated 1 +longdesc A highly-configurable package, with nice output and simple +longdesc input. The macros use a radix sort mechanism so that the order +longdesc of input is not critical. +containersize 7400 +containerchecksum caee17cfe1a4bae7bae4479066e2f869e6ccee34d28a8952bed7a1409bd9ecb27adfd005f0e824d8ddacbd0e65762da79f9ea5b04d0332d643749ef36b908946 +runfiles size=10 + RELOC/tex/plain/timetable/timetable.tex +catalogue-ctan /macros/plain/contrib/timetable +catalogue-license lppl +catalogue-topics timetable + +name timing-diagrams +category Package +revision 31491 +shortdesc Draw timing diagrams +relocated 1 +longdesc The package provides commands to draw and annotate various +longdesc kinds of timing diagrams, using Tikz. Documentation is sparse, +longdesc but the source and the examples file should be of some use. +containersize 2372 +containerchecksum 0c07a24aea43b0092610cda5878a7e2be95777f199c9983e0aad42d83c1a6bd96dd4ca4caddef6b61165d62e924033eb01524fc925fdc8a4fd4baf44f568eec6 +doccontainersize 98352 +doccontainerchecksum 1882008e990cd6cfea47b35bd70a50f22972dab0470ada417edf1aa236d2619d57bd3b1d4a149ecc08c1a196c36c9dbf97328f58ea4aa25acb0a6addfcfe8651 +docfiles size=30 + RELOC/doc/latex/timing-diagrams/Makefile + RELOC/doc/latex/timing-diagrams/README details="Readme" + RELOC/doc/latex/timing-diagrams/diagrams-examples.pdf details="Examples of use" + RELOC/doc/latex/timing-diagrams/diagrams-examples.tex + RELOC/doc/latex/timing-diagrams/version.txt +runfiles size=2 + RELOC/tex/latex/timing-diagrams/timing-diagrams.sty +catalogue-also tikz-timing timing +catalogue-contact-repository https://gitlab.com/tikz-goodies/tikz-goodies +catalogue-ctan /graphics/pgf/contrib/timing-diagrams +catalogue-license lppl1.3 +catalogue-topics diagram-tmg + +name tinos +category Package +revision 42882 +shortdesc Tinos fonts with LaTeX support +relocated 1 +longdesc Tinos, designed by Steve Matteson, is an innovative, refreshing +longdesc serif design that is metrically compatible with Times New +longdesc Roman. +execute addMap tinos.map +containersize 3230744 +containerchecksum e8e8648d656cee747cae8eb5665fb8e1d327c9578b79a65b6d50cc1bbb428ed8ea81bd2332fb91af797383264d2fd9af9354be5a02a4721bbb7350051bcb2783 +doccontainersize 29264 +doccontainerchecksum 5c826e5a78001821396c0dce64c6becf9469c5b648d716ddbe899460242b67790f75d1a8a27973f450f1d7d7dba6ea672af5bca488209614fa72a7ff1a7aefb0 +docfiles size=11 + RELOC/doc/fonts/tinos/LICENSE.txt + RELOC/doc/fonts/tinos/README details="Readme" + RELOC/doc/fonts/tinos/tinos-samples.pdf details="Package documentation" + RELOC/doc/fonts/tinos/tinos-samples.tex +runfiles size=1119 + RELOC/fonts/enc/dvips/tinos/tns_27astb.enc + RELOC/fonts/enc/dvips/tinos/tns_s6t4vy.enc + RELOC/fonts/enc/dvips/tinos/tns_xze2cy.enc + RELOC/fonts/enc/dvips/tinos/tns_y6kixo.enc + RELOC/fonts/map/dvips/tinos/tinos.map + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ts1.tfm + RELOC/fonts/truetype/google/tinos/Tinos-Bold.ttf + RELOC/fonts/truetype/google/tinos/Tinos-BoldItalic.ttf + RELOC/fonts/truetype/google/tinos/Tinos-Italic.ttf + RELOC/fonts/truetype/google/tinos/Tinos-Regular.ttf + RELOC/fonts/type1/google/tinos/Tinos-Bold.pfb + RELOC/fonts/type1/google/tinos/Tinos-BoldItalic.pfb + RELOC/fonts/type1/google/tinos/Tinos-Italic.pfb + RELOC/fonts/type1/google/tinos/Tinos.pfb + RELOC/fonts/vf/google/tinos/Tinos-Bold-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/tinos/Tinos-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/tinos/Tinos-Italic-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/tinos/Tinos-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-tlf-ts1.vf + RELOC/tex/latex/tinos/LY1Tinos-TLF.fd + RELOC/tex/latex/tinos/OT1Tinos-TLF.fd + RELOC/tex/latex/tinos/T1Tinos-TLF.fd + RELOC/tex/latex/tinos/TS1Tinos-TLF.fd + RELOC/tex/latex/tinos/tinos.sty +catalogue-ctan /fonts/tinos +catalogue-license apache2 +catalogue-topics font font-type1 font-virtual font-otf + +name tipa +category Package +revision 29349 +shortdesc Fonts and macros for IPA phonetics characters +relocated 1 +longdesc These fonts are considered the 'ultimate answer' to IPA +longdesc typesetting. The encoding of these 8-bit fonts has been +longdesc registered as LaTeX standard encoding T3, and the set of +longdesc addendum symbols as encoding TS3. 'Times-like' Adobe Type 1 +longdesc versions are provided for both the T3 and the TS3 fonts. +execute addMixedMap tipa.map +containersize 2876104 +containerchecksum 7919b8f5a416cab24c02675ee0a24c60f64e9dfb3bbacb416eb74e29badf6b4dfd8a0528cc8b38dab6395b8c74ec5c808ad84d3a8d4ae5e8212691bed9066129 +doccontainersize 2343456 +doccontainerchecksum 213c4eb24943e655c03087dbc5a51eb3cfeff09ece1d31fd11f1734ab3b219db94cc8b5f4735f3d6381b79a5d6ee2cfe727acd17f823b21163e910c09f48e413 +docfiles size=711 + RELOC/doc/fonts/tipa/00README details="Readme" + RELOC/doc/fonts/tipa/00README.doc + RELOC/doc/fonts/tipa/Makefile + RELOC/doc/fonts/tipa/Makefile.doc + RELOC/doc/fonts/tipa/Manifest.txt + RELOC/doc/fonts/tipa/boxchar.sty + RELOC/doc/fonts/tipa/codelist.sty + RELOC/doc/fonts/tipa/gentfm.sh + RELOC/doc/fonts/tipa/gentipa.sh + RELOC/doc/fonts/tipa/gentipx.sh + RELOC/doc/fonts/tipa/genxipa.sh + RELOC/doc/fonts/tipa/genxipx.sh + RELOC/doc/fonts/tipa/mktipapk.sh + RELOC/doc/fonts/tipa/mkxipapk.sh + RELOC/doc/fonts/tipa/tipa.bib + RELOC/doc/fonts/tipa/tipaman.pdf details="Package manual (English)" language="en" + RELOC/doc/fonts/tipa/tipaman.sty + RELOC/doc/fonts/tipa/tipaman.tex + RELOC/doc/fonts/tipa/tipaman0.tex + RELOC/doc/fonts/tipa/tipaman1.tex + RELOC/doc/fonts/tipa/tipaman2.tex + RELOC/doc/fonts/tipa/tipaman3.tex + RELOC/doc/fonts/tipa/tipaman4.tex + RELOC/doc/fonts/tipa/vowel.pdf + RELOC/doc/fonts/tipa/vowel.tex +runfiles size=1096 + RELOC/fonts/map/dvips/tipa/tipa.map + RELOC/fonts/source/public/tipa/tipa.mf + RELOC/fonts/source/public/tipa/tipa10.mf + RELOC/fonts/source/public/tipa/tipa12.mf + RELOC/fonts/source/public/tipa/tipa17.mf + RELOC/fonts/source/public/tipa/tipa8.mf + RELOC/fonts/source/public/tipa/tipa9.mf + RELOC/fonts/source/public/tipa/tipab10.mf + RELOC/fonts/source/public/tipa/tipabase.mf + RELOC/fonts/source/public/tipa/tipabs10.mf + RELOC/fonts/source/public/tipa/tipabx10.mf + RELOC/fonts/source/public/tipa/tipabx12.mf + RELOC/fonts/source/public/tipa/tipabx8.mf + RELOC/fonts/source/public/tipa/tipabx9.mf + RELOC/fonts/source/public/tipa/tipadiac.mf + RELOC/fonts/source/public/tipa/tipaextr.mf + RELOC/fonts/source/public/tipa/tipagerm.mf + RELOC/fonts/source/public/tipa/tipanew.mf + RELOC/fonts/source/public/tipa/tipapnct.mf + RELOC/fonts/source/public/tipa/tipaprm.def + RELOC/fonts/source/public/tipa/tiparoml.mf + RELOC/fonts/source/public/tipa/tipasb10.mf + RELOC/fonts/source/public/tipa/tipasc.mf + RELOC/fonts/source/public/tipa/tipasi10.mf + RELOC/fonts/source/public/tipa/tipasl10.mf + RELOC/fonts/source/public/tipa/tipasl12.mf + RELOC/fonts/source/public/tipa/tipasl8.mf + RELOC/fonts/source/public/tipa/tipasl9.mf + RELOC/fonts/source/public/tipa/tipass10.mf + RELOC/fonts/source/public/tipa/tipass12.mf + RELOC/fonts/source/public/tipa/tipass17.mf + RELOC/fonts/source/public/tipa/tipass8.mf + RELOC/fonts/source/public/tipa/tipass9.mf + RELOC/fonts/source/public/tipa/tipasym1.mf + RELOC/fonts/source/public/tipa/tipasym2.mf + RELOC/fonts/source/public/tipa/tipasym3.mf + RELOC/fonts/source/public/tipa/tipasym4.mf + RELOC/fonts/source/public/tipa/tipatone.mf + RELOC/fonts/source/public/tipa/tipatr.mf + RELOC/fonts/source/public/tipa/tipats10.mf + RELOC/fonts/source/public/tipa/tipatt10.mf + RELOC/fonts/source/public/tipa/tipatt12.mf + RELOC/fonts/source/public/tipa/tipatt8.mf + RELOC/fonts/source/public/tipa/tipatt9.mf + RELOC/fonts/source/public/tipa/tipx.mf + RELOC/fonts/source/public/tipa/tipx10.mf + RELOC/fonts/source/public/tipa/tipx12.mf + RELOC/fonts/source/public/tipa/tipx17.mf + RELOC/fonts/source/public/tipa/tipx8.mf + RELOC/fonts/source/public/tipa/tipx9.mf + RELOC/fonts/source/public/tipa/tipxb10.mf + RELOC/fonts/source/public/tipa/tipxbs10.mf + RELOC/fonts/source/public/tipa/tipxbx10.mf + RELOC/fonts/source/public/tipa/tipxbx12.mf + RELOC/fonts/source/public/tipa/tipxbx8.mf + RELOC/fonts/source/public/tipa/tipxbx9.mf + RELOC/fonts/source/public/tipa/tipxsb10.mf + RELOC/fonts/source/public/tipa/tipxsi10.mf + RELOC/fonts/source/public/tipa/tipxsl10.mf + RELOC/fonts/source/public/tipa/tipxsl12.mf + RELOC/fonts/source/public/tipa/tipxsl8.mf + RELOC/fonts/source/public/tipa/tipxsl9.mf + RELOC/fonts/source/public/tipa/tipxss10.mf + RELOC/fonts/source/public/tipa/tipxss12.mf + RELOC/fonts/source/public/tipa/tipxss17.mf + RELOC/fonts/source/public/tipa/tipxss8.mf + RELOC/fonts/source/public/tipa/tipxss9.mf + RELOC/fonts/source/public/tipa/tipxts10.mf + RELOC/fonts/source/public/tipa/tipxtt10.mf + RELOC/fonts/source/public/tipa/tipxtt12.mf + RELOC/fonts/source/public/tipa/tipxtt8.mf + RELOC/fonts/source/public/tipa/tipxtt9.mf + RELOC/fonts/source/public/tipa/xipa10.mf + RELOC/fonts/source/public/tipa/xipab10.mf + RELOC/fonts/source/public/tipa/xipabs10.mf + RELOC/fonts/source/public/tipa/xipaprm.def + RELOC/fonts/source/public/tipa/xipasb10.mf + RELOC/fonts/source/public/tipa/xipasi10.mf + RELOC/fonts/source/public/tipa/xipasl10.mf + RELOC/fonts/source/public/tipa/xipass10.mf + RELOC/fonts/source/public/tipa/xipx10.mf + RELOC/fonts/source/public/tipa/xipxb10.mf + RELOC/fonts/source/public/tipa/xipxbs10.mf + RELOC/fonts/source/public/tipa/xipxsb10.mf + RELOC/fonts/source/public/tipa/xipxsi10.mf + RELOC/fonts/source/public/tipa/xipxsl10.mf + RELOC/fonts/source/public/tipa/xipxss10.mf + RELOC/fonts/tfm/public/tipa/tipa10.tfm + RELOC/fonts/tfm/public/tipa/tipa12.tfm + RELOC/fonts/tfm/public/tipa/tipa17.tfm + RELOC/fonts/tfm/public/tipa/tipa8.tfm + RELOC/fonts/tfm/public/tipa/tipa9.tfm + RELOC/fonts/tfm/public/tipa/tipab10.tfm + RELOC/fonts/tfm/public/tipa/tipabs10.tfm + RELOC/fonts/tfm/public/tipa/tipabx10.tfm + RELOC/fonts/tfm/public/tipa/tipabx12.tfm + RELOC/fonts/tfm/public/tipa/tipabx8.tfm + RELOC/fonts/tfm/public/tipa/tipabx9.tfm + RELOC/fonts/tfm/public/tipa/tipasb10.tfm + RELOC/fonts/tfm/public/tipa/tipasi10.tfm + RELOC/fonts/tfm/public/tipa/tipasl10.tfm + RELOC/fonts/tfm/public/tipa/tipasl12.tfm + RELOC/fonts/tfm/public/tipa/tipasl8.tfm + RELOC/fonts/tfm/public/tipa/tipasl9.tfm + RELOC/fonts/tfm/public/tipa/tipass10.tfm + RELOC/fonts/tfm/public/tipa/tipass12.tfm + RELOC/fonts/tfm/public/tipa/tipass17.tfm + RELOC/fonts/tfm/public/tipa/tipass8.tfm + RELOC/fonts/tfm/public/tipa/tipass9.tfm + RELOC/fonts/tfm/public/tipa/tipats10.tfm + RELOC/fonts/tfm/public/tipa/tipatt10.tfm + RELOC/fonts/tfm/public/tipa/tipatt12.tfm + RELOC/fonts/tfm/public/tipa/tipatt8.tfm + RELOC/fonts/tfm/public/tipa/tipatt9.tfm + RELOC/fonts/tfm/public/tipa/tipx10.tfm + RELOC/fonts/tfm/public/tipa/tipx12.tfm + RELOC/fonts/tfm/public/tipa/tipx17.tfm + RELOC/fonts/tfm/public/tipa/tipx8.tfm + RELOC/fonts/tfm/public/tipa/tipx9.tfm + RELOC/fonts/tfm/public/tipa/tipxb10.tfm + RELOC/fonts/tfm/public/tipa/tipxbs10.tfm + RELOC/fonts/tfm/public/tipa/tipxbx10.tfm + RELOC/fonts/tfm/public/tipa/tipxbx12.tfm + RELOC/fonts/tfm/public/tipa/tipxbx8.tfm + RELOC/fonts/tfm/public/tipa/tipxbx9.tfm + RELOC/fonts/tfm/public/tipa/tipxsb10.tfm + RELOC/fonts/tfm/public/tipa/tipxsi10.tfm + RELOC/fonts/tfm/public/tipa/tipxsl10.tfm + RELOC/fonts/tfm/public/tipa/tipxsl12.tfm + RELOC/fonts/tfm/public/tipa/tipxsl8.tfm + RELOC/fonts/tfm/public/tipa/tipxsl9.tfm + RELOC/fonts/tfm/public/tipa/tipxss10.tfm + RELOC/fonts/tfm/public/tipa/tipxss12.tfm + RELOC/fonts/tfm/public/tipa/tipxss17.tfm + RELOC/fonts/tfm/public/tipa/tipxss8.tfm + RELOC/fonts/tfm/public/tipa/tipxss9.tfm + RELOC/fonts/tfm/public/tipa/tipxts10.tfm + RELOC/fonts/tfm/public/tipa/tipxtt10.tfm + RELOC/fonts/tfm/public/tipa/tipxtt12.tfm + RELOC/fonts/tfm/public/tipa/tipxtt8.tfm + RELOC/fonts/tfm/public/tipa/tipxtt9.tfm + RELOC/fonts/tfm/public/tipa/xipa10.tfm + RELOC/fonts/tfm/public/tipa/xipab10.tfm + RELOC/fonts/tfm/public/tipa/xipabs10.tfm + RELOC/fonts/tfm/public/tipa/xipasb10.tfm + RELOC/fonts/tfm/public/tipa/xipasi10.tfm + RELOC/fonts/tfm/public/tipa/xipasl10.tfm + RELOC/fonts/tfm/public/tipa/xipass10.tfm + RELOC/fonts/tfm/public/tipa/xipx10.tfm + RELOC/fonts/tfm/public/tipa/xipxb10.tfm + RELOC/fonts/tfm/public/tipa/xipxbs10.tfm + RELOC/fonts/tfm/public/tipa/xipxsb10.tfm + RELOC/fonts/tfm/public/tipa/xipxsi10.tfm + RELOC/fonts/tfm/public/tipa/xipxsl10.tfm + RELOC/fonts/tfm/public/tipa/xipxss10.tfm + RELOC/fonts/type1/public/tipa/tipa10.pfb + RELOC/fonts/type1/public/tipa/tipa12.pfb + RELOC/fonts/type1/public/tipa/tipa17.pfb + RELOC/fonts/type1/public/tipa/tipa8.pfb + RELOC/fonts/type1/public/tipa/tipa9.pfb + RELOC/fonts/type1/public/tipa/tipab10.pfb + RELOC/fonts/type1/public/tipa/tipabs10.pfb + RELOC/fonts/type1/public/tipa/tipabx10.pfb + RELOC/fonts/type1/public/tipa/tipabx12.pfb + RELOC/fonts/type1/public/tipa/tipabx8.pfb + RELOC/fonts/type1/public/tipa/tipabx9.pfb + RELOC/fonts/type1/public/tipa/tipasb10.pfb + RELOC/fonts/type1/public/tipa/tipasi10.pfb + RELOC/fonts/type1/public/tipa/tipasl10.pfb + RELOC/fonts/type1/public/tipa/tipasl12.pfb + RELOC/fonts/type1/public/tipa/tipasl8.pfb + RELOC/fonts/type1/public/tipa/tipasl9.pfb + RELOC/fonts/type1/public/tipa/tipass10.pfb + RELOC/fonts/type1/public/tipa/tipass12.pfb + RELOC/fonts/type1/public/tipa/tipass17.pfb + RELOC/fonts/type1/public/tipa/tipass8.pfb + RELOC/fonts/type1/public/tipa/tipass9.pfb + RELOC/fonts/type1/public/tipa/tipats10.pfb + RELOC/fonts/type1/public/tipa/tipatt10.pfb + RELOC/fonts/type1/public/tipa/tipatt12.pfb + RELOC/fonts/type1/public/tipa/tipatt8.pfb + RELOC/fonts/type1/public/tipa/tipatt9.pfb + RELOC/fonts/type1/public/tipa/tipx10.pfb + RELOC/fonts/type1/public/tipa/tipx12.pfb + RELOC/fonts/type1/public/tipa/tipx17.pfb + RELOC/fonts/type1/public/tipa/tipx8.pfb + RELOC/fonts/type1/public/tipa/tipx9.pfb + RELOC/fonts/type1/public/tipa/tipxb10.pfb + RELOC/fonts/type1/public/tipa/tipxbs10.pfb + RELOC/fonts/type1/public/tipa/tipxbx10.pfb + RELOC/fonts/type1/public/tipa/tipxbx12.pfb + RELOC/fonts/type1/public/tipa/tipxbx8.pfb + RELOC/fonts/type1/public/tipa/tipxbx9.pfb + RELOC/fonts/type1/public/tipa/tipxsb10.pfb + RELOC/fonts/type1/public/tipa/tipxsi10.pfb + RELOC/fonts/type1/public/tipa/tipxsl10.pfb + RELOC/fonts/type1/public/tipa/tipxsl12.pfb + RELOC/fonts/type1/public/tipa/tipxsl8.pfb + RELOC/fonts/type1/public/tipa/tipxsl9.pfb + RELOC/fonts/type1/public/tipa/tipxss10.pfb + RELOC/fonts/type1/public/tipa/tipxss12.pfb + RELOC/fonts/type1/public/tipa/tipxss17.pfb + RELOC/fonts/type1/public/tipa/tipxss8.pfb + RELOC/fonts/type1/public/tipa/tipxss9.pfb + RELOC/fonts/type1/public/tipa/tipxts10.pfb + RELOC/fonts/type1/public/tipa/tipxtt10.pfb + RELOC/fonts/type1/public/tipa/tipxtt12.pfb + RELOC/fonts/type1/public/tipa/tipxtt8.pfb + RELOC/fonts/type1/public/tipa/tipxtt9.pfb + RELOC/fonts/type1/public/tipa/xipa10.pfb + RELOC/fonts/type1/public/tipa/xipab10.pfb + RELOC/fonts/type1/public/tipa/xipabs10.pfb + RELOC/fonts/type1/public/tipa/xipasb10.pfb + RELOC/fonts/type1/public/tipa/xipasi10.pfb + RELOC/fonts/type1/public/tipa/xipasl10.pfb + RELOC/fonts/type1/public/tipa/xipass10.pfb + RELOC/fonts/type1/public/tipa/xipx10.pfb + RELOC/fonts/type1/public/tipa/xipxb10.pfb + RELOC/fonts/type1/public/tipa/xipxbs10.pfb + RELOC/fonts/type1/public/tipa/xipxsb10.pfb + RELOC/fonts/type1/public/tipa/xipxsi10.pfb + RELOC/fonts/type1/public/tipa/xipxsl10.pfb + RELOC/fonts/type1/public/tipa/xipxss10.pfb + RELOC/tex/latex/tipa/exaccent.sty + RELOC/tex/latex/tipa/extraipa.sty + RELOC/tex/latex/tipa/t3cmr.fd + RELOC/tex/latex/tipa/t3cmss.fd + RELOC/tex/latex/tipa/t3cmtt.fd + RELOC/tex/latex/tipa/t3enc.def + RELOC/tex/latex/tipa/t3phv.fd + RELOC/tex/latex/tipa/t3ptm.fd + RELOC/tex/latex/tipa/tipa.sty + RELOC/tex/latex/tipa/tipx.sty + RELOC/tex/latex/tipa/tone.sty + RELOC/tex/latex/tipa/ts3cmr.fd + RELOC/tex/latex/tipa/ts3cmss.fd + RELOC/tex/latex/tipa/ts3cmtt.fd + RELOC/tex/latex/tipa/ts3enc.def + RELOC/tex/latex/tipa/ts3phv.fd + RELOC/tex/latex/tipa/ts3ptm.fd + RELOC/tex/latex/tipa/utipx.fd + RELOC/tex/latex/tipa/utipxss.fd + RELOC/tex/latex/tipa/utipxtt.fd + RELOC/tex/latex/tipa/uxipx.fd + RELOC/tex/latex/tipa/uxipxss.fd + RELOC/tex/latex/tipa/vowel.sty +catalogue-also wsuipa2tipa +catalogue-ctan /fonts/tipa/tipa +catalogue-license lppl +catalogue-topics font font-mf font-type1 font-specialist phonetic +catalogue-version 1.3 + +name tipa-de +category Package +revision 22005 +shortdesc German translation of tipa documentation +relocated 1 +longdesc This is a translation of Fukui Rei's tipaman from the tipa +longdesc bundle. +containersize 416 +containerchecksum 45ce2504e63e517e76ebbd7b6bfc7b6a4b3a10d72747714c731b6af0b1a9de4d025bce996594449ea61e983097748389a6d878936078fb676ddd4d6f1f267425 +doccontainersize 3676376 +doccontainerchecksum c69333d9a7d335fb217dacb00610b9f0e5eaaf78e535d69998fc600fe53f0ba61c7e3cc1e82d75f52b435cd6945044560b2d275476e96d84d611ab4978c02e3f +docfiles size=986 + RELOC/doc/latex/tipa-de/LIESMICH details="Readme" language="de" + RELOC/doc/latex/tipa-de/tipa.bib + RELOC/doc/latex/tipa-de/tipaman-de.pdf details="The document itself" language="de" + RELOC/doc/latex/tipa-de/tipaman-de.tex + RELOC/doc/latex/tipa-de/tipaman0-de.tex + RELOC/doc/latex/tipa-de/tipaman1-de.tex + RELOC/doc/latex/tipa-de/tipaman2-de.tex + RELOC/doc/latex/tipa-de/tipaman3-de.tex + RELOC/doc/latex/tipa-de/tipaman4-de.tex +catalogue-ctan /info/translations/tipa/de +catalogue-license lppl +catalogue-topics translation german-doc font-doc +catalogue-version 1.3 + +name tipauni +category Package +revision 59009 +shortdesc Producing Unicode characters with TIPA commands +relocated 1 +longdesc Package TIPA uses the T3 encoding for producing IPA characters. +longdesc The package is widely used in the field of linguistics, but +longdesc because of the old encoding, the output documents are less +longdesc productive than Unicode-based documents. This package redefines +longdesc most of the TIPA-commands for outputting Unicode characters. +longdesc Users can now use their beloved TIPA shortcuts with the +longdesc benefits of Unicode, i.e. searchability, copy-pasting, changing +longdesc the font and many more. As this package needs the fontspec +longdesc package for loading an IPA font, it needs to be compiled with +longdesc XeLaTeX or LuaLaTeX. This package can also be viewed as an +longdesc ASCII-based input method for producing IPA characters in +longdesc Unicode. It needs the Charis SIL font for printing IPA +longdesc characters. +containersize 5032 +containerchecksum d4101c7c254f974c304eb051418e60fdf7efdb6b70221ac78c7e72073a6083dd1857991999fa5e4b8c32e577881e5005e60c909703a9e8753010c2c622db5c63 +doccontainersize 439696 +doccontainerchecksum 53d66f313364995d28420c1b9b15678cd7850b74e6b9525c2b6a34384893c426925392c3bb65e622f7f20b7fafcf0a831f510a41b49c96d87b26bb3cd3701241 +docfiles size=130 + RELOC/doc/latex/tipauni/COPYING + RELOC/doc/latex/tipauni/README.txt details="Readme" + RELOC/doc/latex/tipauni/gfdl-tex.tex + RELOC/doc/latex/tipauni/tipauni-commands.pdf details="Sample file" + RELOC/doc/latex/tipauni/tipauni-commands.tex + RELOC/doc/latex/tipauni/tipauni-example.pdf details="Example of use" + RELOC/doc/latex/tipauni/tipauni-example.tex + RELOC/doc/latex/tipauni/tipauni.pdf details="Package documentation" +srccontainersize 10100 +srccontainerchecksum 1eb29971351aafa3989d96b18c045a817584aab45c3754f2cc494b4099c7ce5991c059cafe00c0f97148097620286ee69e47c37c12796c85a749ea00b0ef50b1 +srcfiles size=11 + RELOC/source/latex/tipauni/tipauni.dtx + RELOC/source/latex/tipauni/tipauni.ins +runfiles size=5 + RELOC/tex/latex/tipauni/tipauni.sty +catalogue-contact-bugs https://gitlab.com/niruvt/tipauni/-/issues +catalogue-contact-repository https://gitlab.com/niruvt/tipauni +catalogue-ctan /macros/unicodetex/latex/tipauni +catalogue-license gpl3+ fdl +catalogue-topics phonetic linguistic unicode +catalogue-version 0.1 + +name tipfr +category Package +revision 38646 +shortdesc Produces calculator's keys with the help of TikZ +relocated 1 +longdesc The package provides commands to draw calculator keys with the +longdesc help of TikZ. It also provides commands to draw the content of +longdesc screens and of menu items. +containersize 5880 +containerchecksum c8a8efbca7e1785dd81fd4695ed7e0c5dbe713d0a5632078bdba2f7df8e9358bc246d8f9d972ad3035106a7ef687f9229ed31bb630009eaec3b63170cf8933bb +doccontainersize 381176 +doccontainerchecksum bb739994051c5738ec0cacf1111d104b225593cbac1ee829057dce42017990483630cc062131ccd7d766d7400a252b1ff84744f91b77d0ca5a1f9ee195a28d5f +docfiles size=104 + RELOC/doc/latex/tipfr/IndexHead.ist + RELOC/doc/latex/tipfr/README details="Readme" + RELOC/doc/latex/tipfr/tipfr-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/tipfr/tipfr-doc.tex +runfiles size=8 + RELOC/tex/latex/tipfr/tipfr.sty +catalogue-ctan /graphics/pgf/contrib/tipfr +catalogue-license lppl +catalogue-topics pgf-tikz +catalogue-version 1.5 + +name titlecaps +category Package +revision 36170 +shortdesc Setting rich-text input into Titling Caps +relocated 1 +longdesc The package is intended for setting rich text into titling +longdesc capitals (in which the first character of words are +longdesc capitalized). It automatically accounts for diacritical marks +longdesc (like umlauts), national symbols (like "ae"), punctuation, and +longdesc font changing commands that alter the appearance or size of the +longdesc text. It allows a list of predesignated words to be protected +longdesc as lower-cased, and also allows for titling exceptions of +longdesc various sorts. +containersize 4148 +containerchecksum 683240554b79bbf4f7e4f31653c5c633e93c74d71dd26232587de4d0d8ea012d350d0d43d508e9e9d8be4369d4ea9df996283c818583e573d4bc5fc379e4da4c +doccontainersize 261184 +doccontainerchecksum 7025b5f9d53b65e228520a5e79fcbbf928ddc2f0fe071016a8c3726dca3e9b428b80749bce53438eb7a882a4660c2a10a4ee85e24ae5a26522b78d6a1dde4584 +docfiles size=74 + RELOC/doc/latex/titlecaps/README details="Readme" + RELOC/doc/latex/titlecaps/titlecaps.pdf details="Package documentation" + RELOC/doc/latex/titlecaps/titlecaps.tex +runfiles size=4 + RELOC/tex/latex/titlecaps/titlecaps.sty +catalogue-ctan /macros/latex/contrib/titlecaps +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.2 + +name titlefoot +category Package +revision 15878 +shortdesc Add special material to footer of title page +relocated 1 +longdesc Provides the capability of adding keywords (with a \keywords +longdesc command), a running title (\runningtitle), AMS subject +longdesc classifications (\amssubj), and an 'author's footnote' as +longdesc footnotes to the title or first page of a document. Works with +longdesc any class for which the \thanks macro works (e.g., article). +containersize 2928 +containerchecksum aee68d15213c20d9ba0ef6e3a95f111804e4438d2c80a6cd83ae67725c3174db7f38b0d4280b26f7119e9e1c6477a0aa04d3ee5877e15b05ff2742d94a720c5b +runfiles size=3 + RELOC/tex/latex/titlefoot/titlefoot.sty +catalogue-ctan /macros/latex/contrib/titlefoot +catalogue-license lppl +catalogue-topics titlepage page-hf + +name titlepages +category Package +revision 19457 +shortdesc Sample titlepages, and how to code them +relocated 1 +longdesc The document provides examples of over two dozen title page +longdesc designs based on a range of published books and theses, +longdesc together with the LaTeX code used to create them. +containersize 480 +containerchecksum affb8e221dd2ba1ad6e18d08dcbf3176bf65ae3006a732a7d2bf954fbfe90215175cd3de0dbb7546906b7d65eecb9aff06fabce86c46e88e5027851e11e52260 +doccontainersize 887312 +doccontainerchecksum 703f376c6bb2480f7a326f31ec277716073ddf67834930401c17627dba41c5321a0115e01ec73160917c68fb7ba4e0042e8ac40d968eef89f52b5dd27c2e0495 +docfiles size=270 + RELOC/doc/latex/titlepages/README + RELOC/doc/latex/titlepages/titlepages.pdf details="The document itself" + RELOC/doc/latex/titlepages/titlepages.tex +catalogue-ctan /info/latex-samples/TitlePages +catalogue-license lppl +catalogue-topics titlepage use-sample + +name titlepic +category Package +revision 43497 +shortdesc Add picture to title page of a document +relocated 1 +longdesc The package allows you to place a picture on the title page +longdesc (cover page) of a LaTeX document. Example of usage: +longdesc \usepackage[cc]{titlepic} \usepackage{graphicx} +longdesc \titlepic{\includegraphics[width=\textwidth]{picture.png}} The +longdesc package currently only works with the document classes article, +longdesc report and book. +containersize 1472 +containerchecksum 753ff5c116f102ebd9fe59ea0ad1e80a7fd102f55588f9454fb3ef43fd5478add2d39984638e112dfcc5421f5f79b4c34c8c15d47845273744b6960946ad1805 +doccontainersize 125016 +doccontainerchecksum 6faaeeb6c7212e35c22321e279c08ac8a985ebb8ec66054b49456ee5a9491b88e48edcb20920d61a052b2df9617ddee7e40bb0e868fe082ce5889e63c193b641 +docfiles size=32 + RELOC/doc/latex/titlepic/README.md details="Readme" + RELOC/doc/latex/titlepic/titlepic-manual.pdf details="Package documentation" + RELOC/doc/latex/titlepic/titlepic-manual.tex +runfiles size=1 + RELOC/tex/latex/titlepic/titlepic.sty +catalogue-ctan /macros/latex/contrib/titlepic +catalogue-license pd +catalogue-topics titlepage graphics-use +catalogue-version 1.2 + +name titleref +category Package +revision 18729 +shortdesc A "\titleref" command to cross-reference section titles +relocated 1 +longdesc Defines a command \titleref that allows you to cross-reference +longdesc section (and chapter, etc) titles and captions just like \ref +longdesc and \pageref. The package does not interwork with hyperref; if +longdesc you need hypertext capabilities, use nameref instead. +containersize 2924 +containerchecksum 73905fbe96bc095f602339e0c943048d775bf2a89ef9de3b7149dae7b76aef04e5c77803555450d931f3a4dfef16f5e72597a4d06052d4a852623516edd978f5 +doccontainersize 200724 +doccontainerchecksum 70db133fb8a5fa38a6f0f82912d19afe84e0f68820fe62b3835a6d237582a32fe6c2ba5ad05e46f39540d52d0aafa5a88325e1050e6102164a5753fd9c68d6ad +docfiles size=53 + RELOC/doc/latex/titleref/miscdoc.sty + RELOC/doc/latex/titleref/titleref.pdf details="Package documentation" + RELOC/doc/latex/titleref/titleref.tex +runfiles size=2 + RELOC/tex/latex/titleref/titleref.sty +catalogue-also nameref +catalogue-ctan /macros/latex/contrib/titleref +catalogue-license pd +catalogue-topics label-ref +catalogue-version 3.1 + +name titlesec +category Package +revision 52413 +shortdesc Select alternative section titles +relocated 1 +longdesc A package providing an interface to sectioning commands for +longdesc selection from various title styles. E.g., marginal titles and +longdesc to change the font of all headings with a single command, also +longdesc providing simple one-step page styles. Also includes a package +longdesc to change the page styles when there are floats in a page. You +longdesc may assign headers/footers to individual floats, too. +containersize 19980 +containerchecksum bd1538a4596c55a6e0a542df5587f4466795a59ac55472340bcfc400670b79a04f0b141ad5705c826789ce0094fa4b106b5917f4232167a66047d8e6edd4998c +doccontainersize 657856 +doccontainerchecksum 34623133da534fa15d491f3ecfeb6ee6736a580c12577d7ef313efb341c97ffe1cfac49f4c94b90f8f519847bb7b0d37b003ee485c240d1dfab3b68426563dcc +docfiles size=184 + RELOC/doc/latex/titlesec/CHANGES.old + RELOC/doc/latex/titlesec/README.md details="Readme" + RELOC/doc/latex/titlesec/titleps.pdf + RELOC/doc/latex/titlesec/titleps.tex + RELOC/doc/latex/titlesec/titlesec.pdf details="Package documentation" + RELOC/doc/latex/titlesec/titlesec.tex +runfiles size=24 + RELOC/tex/latex/titlesec/titleps.sty + RELOC/tex/latex/titlesec/titlesec.sty + RELOC/tex/latex/titlesec/titletoc.sty +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-license mit +catalogue-topics headings page-hf +catalogue-version 2.13 + +name titling +category Package +revision 15878 +shortdesc Control over the typesetting of the \maketitle command +relocated 1 +longdesc The titling package provides control over the typesetting of +longdesc the \maketitle command and \thanks commands, and makes the +longdesc \title, \author and \date information permanently available. +longdesc Multiple titles are allowed in a single document. New titling +longdesc elements can be added and a titlepage title can be centered on +longdesc a physical page. +containersize 2524 +containerchecksum 2a321a17b1ff74f57e7bf3f9d72d1b66a0623ed286c8aa75df6d55f1e62b214954ff38456f27f172789bc4cb500688656ab156609933faef67e62954d05d0ce2 +doccontainersize 175188 +doccontainerchecksum e69af16331da73c2a61b063ca4dc4c5f70f7958c366b06e96745a2bc92397f89210ebfe598f445ff33ce7705d0f0b56fc3a46f93bcc89145d50b92d56820f61b +docfiles size=50 + RELOC/doc/latex/titling/README details="Readme" + RELOC/doc/latex/titling/titling.pdf details="Package documentation" +srccontainersize 14800 +srccontainerchecksum 1b32988678f184fb335c70ee59d47cc3e20a7ee0f1606495d77880aa915677ed4a885557a406cfc5f5a67878cdd0675ecad503a6457056d901b96124f7eb171a +srcfiles size=14 + RELOC/source/latex/titling/titling.dtx + RELOC/source/latex/titling/titling.ins +runfiles size=2 + RELOC/tex/latex/titling/titling.sty +catalogue-ctan /macros/latex/contrib/titling +catalogue-license lppl +catalogue-topics titlepage +catalogue-version 2.1d + +name tkz-base +category Package +revision 54758 +shortdesc Tools for drawing with a cartesian coordinate system +relocated 1 +longdesc The bundle is a set of packages, designed to give mathematics +longdesc teachers (and students) easy access to programming of drawings +longdesc with TikZ. +containersize 15292 +containerchecksum 9cba8d8d79c7cb01965660fee7913aeede3b0d2cc19bd7624982fc5854224f19f7dd2d2af0ba93c99b4f16827fb028564fcd9a1e9afed1988ce836188516f891 +doccontainersize 375376 +doccontainerchecksum c0393a07d50626349ff214bf8047bd6c20e14da3c036ca0ca277ce30a220bd52d2fa02cdb56d28733f9a69bd5f22d611f8b80dc130f6016cba46f4e889e0aaca +docfiles size=236 + RELOC/doc/latex/tkz-base/README.md details="Readme" + RELOC/doc/latex/tkz-base/TKZdoc-base-BB.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-axes.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-compilation.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-divers.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-faq.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-grid.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-initialisation.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-installation.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-main.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-marks.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-news.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-obj.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-point.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-rep.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-style.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-texte.tex + RELOC/doc/latex/tkz-base/TKZdoc-base.pdf details="Package documentation" language="fr" + RELOC/doc/latex/tkz-base/examples/preamble-standalone.ltx + RELOC/doc/latex/tkz-base/examples/tkzBase-10.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.2.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.3.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.4.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.5.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.6.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.6.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.6.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.7.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-10.9.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-12.1.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-13.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-13.1.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-13.2.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-13.3.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-13.3.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-13.4.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-14.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-15.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-15.2.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-15.2.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-15.3.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-15.4.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-15.5.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.4.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-16.2.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-3.1.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-4.1.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-4.2.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-5.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-5.1.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.4.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.5.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.6.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.10.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.10.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.11.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.4.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.5.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.6.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.7.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.8.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.9.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.3.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.3.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.3.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.7.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.7.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.7.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.8.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.8.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-6.9.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.10.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.11.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.4.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.5.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.6.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.7.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.8.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.9.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.1.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.10.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.10.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.11.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.11.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.11.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.12.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.12.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.13.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.0.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.3.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.4.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.5.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.5.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.6.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.6.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.6.3.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.7.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.7.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.8.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.8.2.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-8.9.1.tex + RELOC/doc/latex/tkz-base/examples/tkzBase-9.2.0.tex + RELOC/doc/latex/tkz-base/tiger.pdf +runfiles size=29 + RELOC/tex/latex/tkz-base/tkz-base.cfg + RELOC/tex/latex/tkz-base/tkz-base.sty + RELOC/tex/latex/tkz-base/tkz-lib-marks.tex + RELOC/tex/latex/tkz-base/tkz-obj-axes.tex + RELOC/tex/latex/tkz-base/tkz-obj-grids.tex + RELOC/tex/latex/tkz-base/tkz-obj-marks.tex + RELOC/tex/latex/tkz-base/tkz-obj-points.tex + RELOC/tex/latex/tkz-base/tkz-obj-rep.tex + RELOC/tex/latex/tkz-base/tkz-tools-BB.tex + RELOC/tex/latex/tkz-base/tkz-tools-arith.tex + RELOC/tex/latex/tkz-base/tkz-tools-base.tex + RELOC/tex/latex/tkz-base/tkz-tools-misc.tex + RELOC/tex/latex/tkz-base/tkz-tools-modules.tex + RELOC/tex/latex/tkz-base/tkz-tools-print.tex + RELOC/tex/latex/tkz-base/tkz-tools-text.tex + RELOC/tex/latex/tkz-base/tkz-tools-utilities.tex +catalogue-also pgf +catalogue-contact-home http://altermundus.fr +catalogue-contact-repository https://github.com/tkz-sty +catalogue-ctan /macros/latex/contrib/tkz/tkz-base +catalogue-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 3.06c + +name tkz-berge +category Package +revision 57485 +shortdesc Macros for drawing graphs of graph theory +relocated 1 +longdesc The package provides a collection of useful macros for drawing +longdesc classic graphs of graph theory, or to make other graphs. This +longdesc package has been taken temporarily out of circulation to give +longdesc the author time to investigate some problems. +containersize 8444 +containerchecksum 1772cc37537ca421022c5b68536ddcd6cf0d5e88d428cd7682e7773a8290c4b2ad90a11b07dd8c4a4edce69497b63d9a87b5f113bc5857dd8e59e7b80d1340ff +doccontainersize 924656 +doccontainerchecksum 84b5524a8a0cbce6f33611b77c451fd9a75f0d60375e61e2064b27ad4f28a579fddc9a9dae538cd1f540cfe78f98fa62d9b2df979b9a1ca8e73245245ac35f1e +docfiles size=423 + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/NamedGraphs.pdf + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Andrasfai.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Balaban.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Bipartite.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Bull.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Cage.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Chvatal.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Cocktail_Party.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Coxeter.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Crown.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-CubicSymmetric.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Desargues.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Doyle.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Dyck.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Folkman.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Foster.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Franklin.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Gray.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Groetzsch.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Harries.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Heawood.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Hypercube.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Koenisberg.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Levi.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-McGee.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Moebius.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Nauru.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Pappus.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Petersen.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Platonic.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Robertson.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Tutte.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Wong.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-couverture.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-main.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-1-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-1-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-1-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-10-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-10-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-14-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-15-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-15-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-15-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-16-0-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-17-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-17-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-17-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-18-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-18-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-19-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-20-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-20-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-21-0-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-21-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-21-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-22-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-22-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-22-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-6-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-7-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-24-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-24-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-24-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-6-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-7-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-8-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-9-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-10-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-11-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-12-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-13-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-14-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-6-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-7-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-8-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-9-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-28-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-29-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-3-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-3-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-3-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-4-0-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-6-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-6-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-8-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-8-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-8-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-9-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-9-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/tkzpreamblenamed.ltx + RELOC/doc/latex/tkz-berge/README.md details="Readme" + RELOC/doc/latex/tkz-berge/doc/latex/TKZdoc-berge-classic.tex + RELOC/doc/latex/tkz-berge/doc/latex/TKZdoc-berge-macros-e.tex + RELOC/doc/latex/tkz-berge/doc/latex/TKZdoc-berge-macros.tex + RELOC/doc/latex/tkz-berge/doc/latex/TKZdoc-berge-main.tex + RELOC/doc/latex/tkz-berge/doc/latex/TKZdoc-berge-style.tex + RELOC/doc/latex/tkz-berge/doc/latex/TKZdoc-gr-installation.tex + RELOC/doc/latex/tkz-berge/doc/tkz-berge-screen.pdf details="Package documentation" + RELOC/doc/latex/tkz-berge/examples/Grid.pdf + RELOC/doc/latex/tkz-berge/examples/gr-Circulant.pdf + RELOC/doc/latex/tkz-berge/examples/gr-Complet-16.pdf + RELOC/doc/latex/tkz-berge/examples/gr-edgeingraphmodloop.pdf + RELOC/doc/latex/tkz-berge/examples/grCLadder.pdf + RELOC/doc/latex/tkz-berge/examples/grDoubleMod.pdf + RELOC/doc/latex/tkz-berge/examples/grExtraChords.pdf + RELOC/doc/latex/tkz-berge/examples/grLadder.pdf + RELOC/doc/latex/tkz-berge/examples/grSQCycle.pdf + RELOC/doc/latex/tkz-berge/examples/grStar.pdf + RELOC/doc/latex/tkz-berge/examples/grWheel.pdf + RELOC/doc/latex/tkz-berge/examples/hypercube.pdf + RELOC/doc/latex/tkz-berge/examples/hypercube_simple.pdf + RELOC/doc/latex/tkz-berge/examples/hypercubed.pdf + RELOC/doc/latex/tkz-berge/examples/latex/Grid.tex + RELOC/doc/latex/tkz-berge/examples/latex/gr-Circulant.tex + RELOC/doc/latex/tkz-berge/examples/latex/gr-Complet-16.tex + RELOC/doc/latex/tkz-berge/examples/latex/gr-edgeingraphmodloop.tex + RELOC/doc/latex/tkz-berge/examples/latex/grCLadder.tex + RELOC/doc/latex/tkz-berge/examples/latex/grDoubleMod.tex + RELOC/doc/latex/tkz-berge/examples/latex/grExtraChords.tex + RELOC/doc/latex/tkz-berge/examples/latex/grLadder.tex + RELOC/doc/latex/tkz-berge/examples/latex/grSQCycle.tex + RELOC/doc/latex/tkz-berge/examples/latex/grStar.tex + RELOC/doc/latex/tkz-berge/examples/latex/grWheel.tex + RELOC/doc/latex/tkz-berge/examples/latex/hypercube_simple.tex + RELOC/doc/latex/tkz-berge/examples/latex/hypercubed.tex +runfiles size=23 + RELOC/tex/latex/tkz-berge/tkz-berge.sty +catalogue-also tkz-graph +catalogue-contact-home http://altermundus.fr +catalogue-ctan /macros/latex/contrib/tkz/tkz-berge +catalogue-license lppl1.3c +catalogue-topics maths pgf-tikz +catalogue-version 2.0 + +name tkz-doc +category Package +revision 55265 +shortdesc Documentation macros for the TKZ series of packages +relocated 1 +longdesc This bundle offers a documentation class (tkz-doc) and a +longdesc package (tkzexample). These files are used in the documentation +longdesc of the author's packages tkz-base, tkz-euclide, tkz-fct, +longdesc tkz-linknodes, and tkz-tab. +containersize 540 +containerchecksum 03f1706e638681889f5d50cad6f219c5887a1eee82408213b8406a14e6a4fa84222165df7780e10b24877fe3af0a1a750c9ac5b2f9e062e30add86343be9da07 +doccontainersize 8948 +doccontainerchecksum dbf27306bea25b1bd4ce945e65a2e45bafab8ea02e3f8fa14ade133fbc559cbcf767c7624a26edae402cce2ad3d61e693f0f742c8174f2d963d7128c2fc86c1c +docfiles size=10 + RELOC/doc/latex/tkz-doc/README.md details="Readme" + RELOC/doc/latex/tkz-doc/latex/couverture.tex + RELOC/doc/latex/tkz-doc/latex/tkz-doc.cfg + RELOC/doc/latex/tkz-doc/latex/tkz-doc.cls + RELOC/doc/latex/tkz-doc/latex/tkzexample.sty +catalogue-contact-home http://altermundus.fr +catalogue-contact-repository https://github.com/tkz-sty +catalogue-ctan /macros/latex/contrib/tkz-doc +catalogue-license lppl1.3 +catalogue-topics doc-supp class macro-demo +catalogue-version 1.43c + +name tkz-euclide +category Package +revision 54758 +shortdesc Tools for drawing Euclidean geometry +relocated 1 +longdesc The tkz-euclide package is a set of files designed to give math +longdesc teachers and students easy access to the programming of +longdesc Euclidean geometry with TikZ. +containersize 27324 +containerchecksum c8a0e2c6411ae844575010d0f749ede9ab818de766794d60a62aafd306aa781ce09d252183c57a8d762e6655c7e7d1c2ba35b4f169261df6d65b8ebd833b091a +doccontainersize 1286992 +doccontainerchecksum aa8e10477798393dac1780bfa839faa36d9eb9f16bc34ad86aeefbffffaa1810ac3642058ead46be933e359f7a9e0fd0d7894226083095056910a233f017e3d7 +docfiles size=637 + RELOC/doc/latex/tkz-euclide/Euclidean_geometry.pdf + RELOC/doc/latex/tkz-euclide/README.md details="Readme" language="en" + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-FAQ.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-angles.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-arcs.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-base.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-circles.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-compass.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-config.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-exemples.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-installation.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-intersec.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-lines.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-main.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-news.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-pointby.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-points.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-pointsSpc.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-pointwith.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-polygons.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-presentation.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-rapporteur.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-rnd.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-sectors.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-show.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-tools.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-triangles.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide.pdf details="Package documentation" language="en" + RELOC/doc/latex/tkz-euclide/cheatsheet_euclide_1.pdf + RELOC/doc/latex/tkz-euclide/cheatsheet_euclide_2.pdf + RELOC/doc/latex/tkz-euclide/examples/preamble-standalone.ltx + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.0.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.3.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.3.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.4.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.5.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.6.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.10.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.11.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.7.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.8.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.9.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.3.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.4.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.4.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.5.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.5.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.6.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.3.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.4.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.7.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.8.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.10.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.10.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.3.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.3.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.4.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.5.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.6.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.7.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.7.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.8.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.8.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.9.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.10.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.7.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.8.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.9.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.4.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.5.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.6.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.7.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.8.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.9.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.4.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.4.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.5.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.6.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.6.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.1.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.3.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.4.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.5.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.6.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.7.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.8.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.1.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.4.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.5.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.5.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-28.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-29.1.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-29.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.10.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.11.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.12.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.7.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.8.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.9.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.3.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.3.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.4.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-32.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-32.3.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-32.4.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.0.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.2.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.4.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.5.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.3.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.7.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.8.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.9.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-7.0.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-7.0.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-7.0.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-8.1.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-8.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.0.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.1.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.2.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.3.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.4.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.5.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.6.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.7.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.8.tex + RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.3.1.tex +runfiles size=60 + RELOC/tex/latex/tkz-euclide/tkz-euclide.sty + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-triangles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-show.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-angles.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-intersections.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-math.tex +catalogue-also eukleides pst-eucl +catalogue-contact-home http://altermundus.fr +catalogue-contact-repository https://github.com/tkz-sty/tkz-euclide +catalogue-ctan /macros/latex/contrib/tkz/tkz-euclide +catalogue-license lppl1.3 +catalogue-topics maths graphics-use +catalogue-version 3.06c + +name tkz-fct +category Package +revision 55031 +shortdesc Tools for drawing graphs of functions +relocated 1 +longdesc The tkz-fct package is designed to give math teachers (and +longdesc students) easy access to programming graphs of functions with +longdesc TikZ and gnuplot. +containersize 4948 +containerchecksum 6defbc1265838eacb6612f87d969590db6cb2eb0a1c9316c1f52e700c7b7e576f971080538982d7adccb12af6ce7392cb6d6da13a9d3e537e5af8fc2dc290a89 +doccontainersize 748476 +doccontainerchecksum 1cbfeac7939ba45c6111cc7cb9aeea195690cdfea8c75e488a9dac6a49b2968d21d0eff74e03fec3229afdcec92fe2841a8dbb866314187ef98a317f07e9f346 +docfiles size=216 + RELOC/doc/latex/tkz-fct/README.md details="Readme" + RELOC/doc/latex/tkz-fct/TKZdoc-fct-VDW.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-area.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-asymptote.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-bac.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-compilation.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-example.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-faq.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-fonctions.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-fppgf.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-installation.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-interpolation.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-label.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-liste.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-main.pdf details="Package documentation" language="fr" + RELOC/doc/latex/tkz-fct/TKZdoc-fct-main.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-param.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-point.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-polar.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-riemann.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-symbol.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-tangent.tex + RELOC/doc/latex/tkz-fct/TKZdoc-fct-why.tex +runfiles size=7 + RELOC/tex/latex/tkz-fct/tkz-fct.sty +catalogue-also pgf +catalogue-contact-home http://altermundus.fr +catalogue-ctan /macros/latex/contrib/tkz/tkz-fct +catalogue-license lppl1.3 +catalogue-topics graphics graphics-plot pgf-tikz +catalogue-version 1.3c + +name tkz-graph +category Package +revision 57484 +shortdesc Draw graph-theory graphs +relocated 1 +longdesc The package is designed to create graph diagrams as simply as +longdesc possible, using TikZ. +containersize 6216 +containerchecksum 04cf17f69862b2ec068dfc061fb019b54352cab3fdebb3111de3c28bf15047e06c236d979e9a9a92140c2a59ac9c0813ed7006d0411737b1f04f71c3a5916cda +doccontainersize 325056 +doccontainerchecksum df2a31047ece6f5809db42be2243d00b0342d54d3b864de6a32a43257b0d8525170e9d642db495f876c12adf4ae5580252c1378356acdc5f18531aa3099e76d5 +docfiles size=116 + RELOC/doc/latex/tkz-graph/README.md details="Readme (French)" language="fr" + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-Dijkstra.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-Welsh.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-annales.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-couverture.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-edge.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-label.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-main.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-presentation.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-prob.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-style.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-vertex.tex + RELOC/doc/latex/tkz-graph/doc/latex/TKZdoc-gr-vertices.tex + RELOC/doc/latex/tkz-graph/test-graph.pdf + RELOC/doc/latex/tkz-graph/test-graph.tex + RELOC/doc/latex/tkz-graph/tkz-graph-screen.pdf details="Package documentation" +runfiles size=12 + RELOC/tex/latex/tkz-graph/tkz-graph.sty +catalogue-also tkz-berge +catalogue-contact-home http://altermundus.fr +catalogue-ctan /macros/latex/contrib/tkz/tkz-graph +catalogue-license lppl1.3 +catalogue-topics maths graphics pgf-tikz +catalogue-version 2.0 + +name tkz-orm +category Package +revision 54512 +shortdesc Create Object-Role Model (ORM) diagrams +relocated 1 +longdesc The package provides styles for drawing Object-Role Model (ORM) +longdesc diagrams in TeX based on the PGF and TikZ picture environment. +containersize 7492 +containerchecksum dba6b58f1e3063d3af6d535c2c65d3ad0fe57f0b88aeca8684192b546d79570386cdea0d23870b5ac88f38b8ea0a9899efd1be581108b43ea16044749dcf965b +doccontainersize 431368 +doccontainerchecksum 65ac0e7657fd78d7d496b466d6cfae3bded966249d1c90eef6df1d34041b6b7ab5be807f7de41c04d28e6903748dc874fa245bce3b19b96d2a1f0d91316235b0 +docfiles size=120 + RELOC/doc/latex/tkz-orm/LICENSE + RELOC/doc/latex/tkz-orm/Makefile + RELOC/doc/latex/tkz-orm/README details="Readme" + RELOC/doc/latex/tkz-orm/pgfmanualstyle.sty + RELOC/doc/latex/tkz-orm/tkz-orm.bib + RELOC/doc/latex/tkz-orm/tkz-orm.pdf details="Package documentation" + RELOC/doc/latex/tkz-orm/tkz-orm.tex +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-license gpl2 lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 0.1.4 + +name tkz-tab +category Package +revision 54940 +shortdesc Tables of signs and variations using PGF/TikZ +relocated 1 +longdesc The package provides comprehensive facilities for preparing +longdesc lists of signs and variations, using PGF. The package +longdesc documentation requires the tkz-doc bundle. This package has +longdesc been taken temporarily out of circulation to give the author +longdesc time to investigate some problems. +containersize 6540 +containerchecksum 1ba023dfe79db404930546277015a9fbdfcb9165d74548cd0d0d590338656913327d949b3d35f9325a5c928fc291f3e6c6485b69b6dc753aa633460e265b389c +doccontainersize 364176 +doccontainerchecksum eb941cbee957896dc19d4e7269f78a0d07d86b20cd0f0756241376da062386e3a99675b3fcd451aa153eb89668b98b486fa7d5b904a125a4e241d45b40b745ca +docfiles size=125 + RELOC/doc/latex/tkz-tab/README.md details="Readme" + RELOC/doc/latex/tkz-tab/TKZdoc-tab-adapt.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-bac.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-examples.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-image.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-init.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-main.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-sign.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-slope.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-style.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-tangente.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-tv.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-valeurs.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab-variation.tex + RELOC/doc/latex/tkz-tab/TKZdoc-tab.pdf details="Package documentation (French)" language="fr" +runfiles size=12 + RELOC/tex/latex/tkz-tab/tkz-tab.sty +catalogue-also tableaux tableauvariations tablor tabvar +catalogue-contact-home http://altermundus.fr +catalogue-contact-repository https://github.com/tkz-sty +catalogue-ctan /macros/latex/contrib/tkz/tkz-tab +catalogue-license lppl1.3 +catalogue-topics maths maths-tabvar graphics pgf-tikz +catalogue-version 2.12c + +name tlc-article +category Package +revision 51431 +shortdesc A LaTeX document class for formal documents +relocated 1 +longdesc The package provides a LaTeX document class that orchestrates a +longdesc logical arrangement for document header, footer, author, +longdesc abstract, table of contents, and margins. It standardizes a +longdesc document layout intended for formal documents. The tlc_article +longdesc GitHub repository uses a SCRUM framework adapted to standard +longdesc GitHub tooling. tlc_article is integrated with Travis-ci.org +longdesc for continuous integration and AllanConsulting.slack.com for +longdesc centralized notification. +containersize 3908 +containerchecksum 80b2c0d5418e8061d07d502399895a8334003bf5ed574de8f4af0c422ff0d3a660a511b5064b48e65064a91ea0cd057c134f9651e001eb7d5fa9d981366374db +doccontainersize 439380 +doccontainerchecksum 96535abc8bf54c62e22d4e47178c1cbbb1ca96bfca16df4cab37b182d50e872c57a2e6ebe65727121fd2682776905c962551639d9435e86ab3fbb5d3e05fb72f +docfiles size=121 + RELOC/doc/latex/tlc-article/LICENSE + RELOC/doc/latex/tlc-article/README.md details="Readme" + RELOC/doc/latex/tlc-article/bin/deploy + RELOC/doc/latex/tlc-article/data/additional-layout.tex + RELOC/doc/latex/tlc-article/data/logo.png + RELOC/doc/latex/tlc-article/data/required-packages.csv + RELOC/doc/latex/tlc-article/data/version.csv + RELOC/doc/latex/tlc-article/doc/tlc-article.pdf details="Package documentation" + RELOC/doc/latex/tlc-article/images/titlepage.png + RELOC/doc/latex/tlc-article/tlc-article.tex + RELOC/doc/latex/tlc-article/tlc-article.texx +runfiles size=3 + RELOC/tex/latex/tlc-article/tlc-article.cls +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-license bsd3 +catalogue-topics class article-like +catalogue-version 1.0.17 + +name tlc2 +category Package +revision 26096 +catalogue tlc2-examples +shortdesc Examples from "The LaTeX Companion", second edition +relocated 1 +longdesc The source of the examples printed in the book, together with +longdesc necessary supporting files. The book was published by +longdesc Addison-Wesley, 2004, ISBN 0-201-36299-6. +containersize 484 +containerchecksum 3ac7d28285b15d7e97839619a449c870b3f96e1c557470ba4bf680016c9834af9f09715e09525b00aa2b951bbe20e5d3b1d0a5e5f957de99c13fdb39f4267e3d +doccontainersize 114656 +doccontainerchecksum 79eead14f268eab643f676c36b20ba89828928fb3b418956277304ac6cf7145d53b4f97c30605690cddce8660361614b58ac65e8454b7740dde17ff82a053818 +docfiles size=890 + RELOC/doc/latex/tlc2/1-3-1.ltx + RELOC/doc/latex/tlc2/1-3-2.ltx2 + RELOC/doc/latex/tlc2/1-3-3.ltx + RELOC/doc/latex/tlc2/1-3-4.ltx + RELOC/doc/latex/tlc2/1-3-5.ltx + RELOC/doc/latex/tlc2/10-1-1.ltx + RELOC/doc/latex/tlc2/10-1-10.ltx + RELOC/doc/latex/tlc2/10-1-11.ltx + RELOC/doc/latex/tlc2/10-1-12.ltx + RELOC/doc/latex/tlc2/10-1-13.ltx + RELOC/doc/latex/tlc2/10-1-14.ltx + RELOC/doc/latex/tlc2/10-1-15.ltx + RELOC/doc/latex/tlc2/10-1-16.ltx + RELOC/doc/latex/tlc2/10-1-17.ltx + RELOC/doc/latex/tlc2/10-1-18.ltx + RELOC/doc/latex/tlc2/10-1-19.ltx + RELOC/doc/latex/tlc2/10-1-2.ltx + RELOC/doc/latex/tlc2/10-1-20.ltx + RELOC/doc/latex/tlc2/10-1-21.ltx + RELOC/doc/latex/tlc2/10-1-22.ltx + RELOC/doc/latex/tlc2/10-1-23.ltx + RELOC/doc/latex/tlc2/10-1-24.ltx + RELOC/doc/latex/tlc2/10-1-25.ltx + RELOC/doc/latex/tlc2/10-1-26.ltx + RELOC/doc/latex/tlc2/10-1-27.ltx + RELOC/doc/latex/tlc2/10-1-3.ltx + RELOC/doc/latex/tlc2/10-1-4.ltx + RELOC/doc/latex/tlc2/10-1-5.ltx + RELOC/doc/latex/tlc2/10-1-6.ltx + RELOC/doc/latex/tlc2/10-1-7.ltx + RELOC/doc/latex/tlc2/10-1-8.ltx + RELOC/doc/latex/tlc2/10-1-9.ltx2 + RELOC/doc/latex/tlc2/10-2-1.ltx + RELOC/doc/latex/tlc2/10-2-10.ltx + RELOC/doc/latex/tlc2/10-2-11.ltx + RELOC/doc/latex/tlc2/10-2-12.ltx + RELOC/doc/latex/tlc2/10-2-13.ltx + RELOC/doc/latex/tlc2/10-2-14.ltx + RELOC/doc/latex/tlc2/10-2-15.ltx + RELOC/doc/latex/tlc2/10-2-2.ltx + RELOC/doc/latex/tlc2/10-2-3.ltx + RELOC/doc/latex/tlc2/10-2-4.ltx + RELOC/doc/latex/tlc2/10-2-5.ltx + RELOC/doc/latex/tlc2/10-2-6.ltx + RELOC/doc/latex/tlc2/10-2-7.ltx + RELOC/doc/latex/tlc2/10-2-8.ltx + RELOC/doc/latex/tlc2/10-2-9.ltx + RELOC/doc/latex/tlc2/10-3-1.ltx + RELOC/doc/latex/tlc2/10-3-10.ltx + RELOC/doc/latex/tlc2/10-3-11.ltx + RELOC/doc/latex/tlc2/10-3-12.ltx + RELOC/doc/latex/tlc2/10-3-2.ltx + RELOC/doc/latex/tlc2/10-3-3.ltx + RELOC/doc/latex/tlc2/10-3-4.ltx + RELOC/doc/latex/tlc2/10-3-5.ltx + RELOC/doc/latex/tlc2/10-3-6.ltx + RELOC/doc/latex/tlc2/10-3-7.ltx + RELOC/doc/latex/tlc2/10-3-8.ltx + RELOC/doc/latex/tlc2/10-3-9.ltx + RELOC/doc/latex/tlc2/10-4-1.ltx + RELOC/doc/latex/tlc2/10-4-2.ltx + RELOC/doc/latex/tlc2/10-4-3.ltx + RELOC/doc/latex/tlc2/10-4-4.ltx + RELOC/doc/latex/tlc2/12-1-1.ltx + RELOC/doc/latex/tlc2/12-1-2.ltx + RELOC/doc/latex/tlc2/12-1-3.ltx + RELOC/doc/latex/tlc2/12-2-1.ltx + RELOC/doc/latex/tlc2/12-2-10.ltx + RELOC/doc/latex/tlc2/12-2-11.ltx + RELOC/doc/latex/tlc2/12-2-12.ltx + RELOC/doc/latex/tlc2/12-2-13.ltx + RELOC/doc/latex/tlc2/12-2-14.ltx + RELOC/doc/latex/tlc2/12-2-2.ltx + RELOC/doc/latex/tlc2/12-2-3.ltx + RELOC/doc/latex/tlc2/12-2-4.ltx + RELOC/doc/latex/tlc2/12-2-5.ltx + RELOC/doc/latex/tlc2/12-2-6.ltx + RELOC/doc/latex/tlc2/12-2-7.ltx + RELOC/doc/latex/tlc2/12-2-8.ltx + RELOC/doc/latex/tlc2/12-2-9.ltx + RELOC/doc/latex/tlc2/12-3-1.ltx + RELOC/doc/latex/tlc2/12-3-10.ltx + RELOC/doc/latex/tlc2/12-3-11.ltx + RELOC/doc/latex/tlc2/12-3-12.ltx + RELOC/doc/latex/tlc2/12-3-13.ltx + RELOC/doc/latex/tlc2/12-3-14.ltx + RELOC/doc/latex/tlc2/12-3-15.ltx + RELOC/doc/latex/tlc2/12-3-16.ltx + RELOC/doc/latex/tlc2/12-3-17.ltx + RELOC/doc/latex/tlc2/12-3-18.ltx + RELOC/doc/latex/tlc2/12-3-19.ltx + RELOC/doc/latex/tlc2/12-3-2.ltx + RELOC/doc/latex/tlc2/12-3-20.ltx + RELOC/doc/latex/tlc2/12-3-21.ltx + RELOC/doc/latex/tlc2/12-3-22.ltx + RELOC/doc/latex/tlc2/12-3-23.ltx + RELOC/doc/latex/tlc2/12-3-24.ltx + RELOC/doc/latex/tlc2/12-3-25.ltx + RELOC/doc/latex/tlc2/12-3-26.ltx + RELOC/doc/latex/tlc2/12-3-27.ltx + RELOC/doc/latex/tlc2/12-3-3.ltx + RELOC/doc/latex/tlc2/12-3-4.ltx + RELOC/doc/latex/tlc2/12-3-5.ltx + RELOC/doc/latex/tlc2/12-3-6.ltx + RELOC/doc/latex/tlc2/12-3-7.ltx + RELOC/doc/latex/tlc2/12-3-8.ltx + RELOC/doc/latex/tlc2/12-3-9.ltx + RELOC/doc/latex/tlc2/12-4-1.ltx + RELOC/doc/latex/tlc2/12-4-2.ltx + RELOC/doc/latex/tlc2/12-4-3.ltx + RELOC/doc/latex/tlc2/12-4-4.ltx + RELOC/doc/latex/tlc2/12-4-5.ltx + RELOC/doc/latex/tlc2/12-4-6.ltx + RELOC/doc/latex/tlc2/12-4-7.ltx + RELOC/doc/latex/tlc2/12-4-8.ltx + RELOC/doc/latex/tlc2/12-5-1.ltx + RELOC/doc/latex/tlc2/12-5-10.ltx + RELOC/doc/latex/tlc2/12-5-11.ltx + RELOC/doc/latex/tlc2/12-5-12.ltx + RELOC/doc/latex/tlc2/12-5-13.ltx + RELOC/doc/latex/tlc2/12-5-14.ltx + RELOC/doc/latex/tlc2/12-5-15.ltx + RELOC/doc/latex/tlc2/12-5-16.ltx + RELOC/doc/latex/tlc2/12-5-17.ltx + RELOC/doc/latex/tlc2/12-5-18.ltx + RELOC/doc/latex/tlc2/12-5-19.ltx + RELOC/doc/latex/tlc2/12-5-2.ltx + RELOC/doc/latex/tlc2/12-5-20.ltx + RELOC/doc/latex/tlc2/12-5-21.ltx + RELOC/doc/latex/tlc2/12-5-22.ltx + RELOC/doc/latex/tlc2/12-5-23.ltx + RELOC/doc/latex/tlc2/12-5-24.ltx2 + RELOC/doc/latex/tlc2/12-5-25.ltx2 + RELOC/doc/latex/tlc2/12-5-26.ltx2 + RELOC/doc/latex/tlc2/12-5-27.ltx + RELOC/doc/latex/tlc2/12-5-28.ltx + RELOC/doc/latex/tlc2/12-5-29.ltx2 + RELOC/doc/latex/tlc2/12-5-3.ltx + RELOC/doc/latex/tlc2/12-5-30.ltx + RELOC/doc/latex/tlc2/12-5-31.ltx + RELOC/doc/latex/tlc2/12-5-32.ltx + RELOC/doc/latex/tlc2/12-5-33.ltx + RELOC/doc/latex/tlc2/12-5-34.ltx + RELOC/doc/latex/tlc2/12-5-35.ltx + RELOC/doc/latex/tlc2/12-5-36.ltx + RELOC/doc/latex/tlc2/12-5-37.ltx + RELOC/doc/latex/tlc2/12-5-38.ltx + RELOC/doc/latex/tlc2/12-5-39.ltx + RELOC/doc/latex/tlc2/12-5-4.ltx + RELOC/doc/latex/tlc2/12-5-40.ltx + RELOC/doc/latex/tlc2/12-5-41.ltx + RELOC/doc/latex/tlc2/12-5-42.ltx + RELOC/doc/latex/tlc2/12-5-43.ltx + RELOC/doc/latex/tlc2/12-5-44.ltx + RELOC/doc/latex/tlc2/12-5-45.ltx + RELOC/doc/latex/tlc2/12-5-46.ltx + RELOC/doc/latex/tlc2/12-5-47.ltx + RELOC/doc/latex/tlc2/12-5-48.ltx + RELOC/doc/latex/tlc2/12-5-49.ltx + RELOC/doc/latex/tlc2/12-5-5.ltx + RELOC/doc/latex/tlc2/12-5-6.ltx + RELOC/doc/latex/tlc2/12-5-7.ltx + RELOC/doc/latex/tlc2/12-5-8.ltx + RELOC/doc/latex/tlc2/12-5-9.ltx + RELOC/doc/latex/tlc2/12-6-1.ltx2 + RELOC/doc/latex/tlc2/12-6-10.ltx + RELOC/doc/latex/tlc2/12-6-2.ltx + RELOC/doc/latex/tlc2/12-6-3.ltx2 + RELOC/doc/latex/tlc2/12-6-4.ltx2 + RELOC/doc/latex/tlc2/12-6-5.ltx2 + RELOC/doc/latex/tlc2/12-6-6.ltx2 + RELOC/doc/latex/tlc2/12-6-7.ltx + RELOC/doc/latex/tlc2/12-6-8.ltx + RELOC/doc/latex/tlc2/12-6-9.ltx + RELOC/doc/latex/tlc2/13-4-1.ltx + RELOC/doc/latex/tlc2/13-4-2.ltx + RELOC/doc/latex/tlc2/13-5-1.ltx + RELOC/doc/latex/tlc2/13-5-2.ltx + RELOC/doc/latex/tlc2/13-5-3.ltx + RELOC/doc/latex/tlc2/13-5-4.ltx + RELOC/doc/latex/tlc2/13-5-5.ltx + RELOC/doc/latex/tlc2/13-5-6.ltx + RELOC/doc/latex/tlc2/13-5-7.ltx + RELOC/doc/latex/tlc2/14-4-1.ltx + RELOC/doc/latex/tlc2/14-4-2.ltx + RELOC/doc/latex/tlc2/2-1-1.ltx + RELOC/doc/latex/tlc2/2-2-1.ltx + RELOC/doc/latex/tlc2/2-2-10.ltx + RELOC/doc/latex/tlc2/2-2-11.ltx + RELOC/doc/latex/tlc2/2-2-12.ltx + RELOC/doc/latex/tlc2/2-2-13.ltx + RELOC/doc/latex/tlc2/2-2-14.ltx + RELOC/doc/latex/tlc2/2-2-15.ltx + RELOC/doc/latex/tlc2/2-2-16.ltx + RELOC/doc/latex/tlc2/2-2-17.ltx + RELOC/doc/latex/tlc2/2-2-18.ltx + RELOC/doc/latex/tlc2/2-2-19.ltx + RELOC/doc/latex/tlc2/2-2-2.ltx + RELOC/doc/latex/tlc2/2-2-20.ltx + RELOC/doc/latex/tlc2/2-2-21.ltx2 + RELOC/doc/latex/tlc2/2-2-22.ltx + RELOC/doc/latex/tlc2/2-2-3.ltx + RELOC/doc/latex/tlc2/2-2-4.ltx + RELOC/doc/latex/tlc2/2-2-5.ltx + RELOC/doc/latex/tlc2/2-2-6.ltx + RELOC/doc/latex/tlc2/2-2-7.ltx + RELOC/doc/latex/tlc2/2-2-8.ltx + RELOC/doc/latex/tlc2/2-2-9.ltx + RELOC/doc/latex/tlc2/2-3-1.ltx2 + RELOC/doc/latex/tlc2/2-3-10.ltx + RELOC/doc/latex/tlc2/2-3-11.ltx + RELOC/doc/latex/tlc2/2-3-12.ltx + RELOC/doc/latex/tlc2/2-3-13.ltx + RELOC/doc/latex/tlc2/2-3-14.ltx + RELOC/doc/latex/tlc2/2-3-2.ltx + RELOC/doc/latex/tlc2/2-3-3.ltx + RELOC/doc/latex/tlc2/2-3-4.ltx + RELOC/doc/latex/tlc2/2-3-5.ltx + RELOC/doc/latex/tlc2/2-3-6.ltx + RELOC/doc/latex/tlc2/2-3-7.ltx + RELOC/doc/latex/tlc2/2-3-8.ltx2 + RELOC/doc/latex/tlc2/2-3-9.ltx + RELOC/doc/latex/tlc2/2-4-1.ltx + RELOC/doc/latex/tlc2/2-4-2.ltx + RELOC/doc/latex/tlc2/2-4-3.ltx + RELOC/doc/latex/tlc2/2-4-4.ltx2 + RELOC/doc/latex/tlc2/2-4-5.ltx + RELOC/doc/latex/tlc2/2-4-6.ltx2 + RELOC/doc/latex/tlc2/2-4-7.ltx + RELOC/doc/latex/tlc2/2-4-8.ltx + RELOC/doc/latex/tlc2/2-4-9.ltx + RELOC/doc/latex/tlc2/3-1-1.ltx + RELOC/doc/latex/tlc2/3-1-10.ltx + RELOC/doc/latex/tlc2/3-1-11.ltx + RELOC/doc/latex/tlc2/3-1-12.ltx + RELOC/doc/latex/tlc2/3-1-13.ltx + RELOC/doc/latex/tlc2/3-1-14.ltx + RELOC/doc/latex/tlc2/3-1-15.ltx + RELOC/doc/latex/tlc2/3-1-16.ltx + RELOC/doc/latex/tlc2/3-1-17.ltx + RELOC/doc/latex/tlc2/3-1-18.ltx + RELOC/doc/latex/tlc2/3-1-19.ltx + RELOC/doc/latex/tlc2/3-1-2.ltx + RELOC/doc/latex/tlc2/3-1-20.ltx + RELOC/doc/latex/tlc2/3-1-21.ltx + RELOC/doc/latex/tlc2/3-1-22.ltx + RELOC/doc/latex/tlc2/3-1-23.ltx + RELOC/doc/latex/tlc2/3-1-24.ltx + RELOC/doc/latex/tlc2/3-1-25.ltx + RELOC/doc/latex/tlc2/3-1-26.ltx + RELOC/doc/latex/tlc2/3-1-27.ltx + RELOC/doc/latex/tlc2/3-1-28.ltx + RELOC/doc/latex/tlc2/3-1-29.ltx + RELOC/doc/latex/tlc2/3-1-3.ltx + RELOC/doc/latex/tlc2/3-1-30.ltx + RELOC/doc/latex/tlc2/3-1-31.ltx + RELOC/doc/latex/tlc2/3-1-32.ltx + RELOC/doc/latex/tlc2/3-1-33.ltx + RELOC/doc/latex/tlc2/3-1-34.ltx + RELOC/doc/latex/tlc2/3-1-35.ltx + RELOC/doc/latex/tlc2/3-1-36.ltx + RELOC/doc/latex/tlc2/3-1-37.ltx + RELOC/doc/latex/tlc2/3-1-38.ltx + RELOC/doc/latex/tlc2/3-1-39.ltx + RELOC/doc/latex/tlc2/3-1-4.ltx + RELOC/doc/latex/tlc2/3-1-40.ltx + RELOC/doc/latex/tlc2/3-1-41.ltx + RELOC/doc/latex/tlc2/3-1-42.ltx + RELOC/doc/latex/tlc2/3-1-43.ltx + RELOC/doc/latex/tlc2/3-1-44.ltx + RELOC/doc/latex/tlc2/3-1-45.ltx + RELOC/doc/latex/tlc2/3-1-46.ltx + RELOC/doc/latex/tlc2/3-1-47.ltx + RELOC/doc/latex/tlc2/3-1-48.ltx + RELOC/doc/latex/tlc2/3-1-49.ltx + RELOC/doc/latex/tlc2/3-1-5.ltx + RELOC/doc/latex/tlc2/3-1-50.ltx + RELOC/doc/latex/tlc2/3-1-51.ltx + RELOC/doc/latex/tlc2/3-1-52.ltx + RELOC/doc/latex/tlc2/3-1-53.ltx + RELOC/doc/latex/tlc2/3-1-6.ltx + RELOC/doc/latex/tlc2/3-1-7.ltx + RELOC/doc/latex/tlc2/3-1-8.ltx + RELOC/doc/latex/tlc2/3-1-9.ltx + RELOC/doc/latex/tlc2/3-2-1.ltx + RELOC/doc/latex/tlc2/3-2-10.ltx + RELOC/doc/latex/tlc2/3-2-11.ltx + RELOC/doc/latex/tlc2/3-2-12.ltx + RELOC/doc/latex/tlc2/3-2-13.ltx + RELOC/doc/latex/tlc2/3-2-14.ltx + RELOC/doc/latex/tlc2/3-2-15.ltx + RELOC/doc/latex/tlc2/3-2-16.ltx + RELOC/doc/latex/tlc2/3-2-17.ltx2 + RELOC/doc/latex/tlc2/3-2-18.ltx2 + RELOC/doc/latex/tlc2/3-2-19.ltx + RELOC/doc/latex/tlc2/3-2-2.ltx + RELOC/doc/latex/tlc2/3-2-20.ltx + RELOC/doc/latex/tlc2/3-2-21.ltx2 + RELOC/doc/latex/tlc2/3-2-22.ltx + RELOC/doc/latex/tlc2/3-2-23.ltx + RELOC/doc/latex/tlc2/3-2-24.ltx2 + RELOC/doc/latex/tlc2/3-2-25.ltx + RELOC/doc/latex/tlc2/3-2-26.ltx + RELOC/doc/latex/tlc2/3-2-27.ltx + RELOC/doc/latex/tlc2/3-2-28.ltx + RELOC/doc/latex/tlc2/3-2-3.ltx + RELOC/doc/latex/tlc2/3-2-4.ltx + RELOC/doc/latex/tlc2/3-2-5.ltx + RELOC/doc/latex/tlc2/3-2-6.ltx + RELOC/doc/latex/tlc2/3-2-7.ltx2 + RELOC/doc/latex/tlc2/3-2-8.ltx + RELOC/doc/latex/tlc2/3-2-9.ltx + RELOC/doc/latex/tlc2/3-3-1.ltx + RELOC/doc/latex/tlc2/3-3-10.ltx + RELOC/doc/latex/tlc2/3-3-11.ltx + RELOC/doc/latex/tlc2/3-3-12.ltx + RELOC/doc/latex/tlc2/3-3-13.ltx + RELOC/doc/latex/tlc2/3-3-14.ltx + RELOC/doc/latex/tlc2/3-3-15.ltx + RELOC/doc/latex/tlc2/3-3-16.ltx + RELOC/doc/latex/tlc2/3-3-17.ltx + RELOC/doc/latex/tlc2/3-3-18.ltx + RELOC/doc/latex/tlc2/3-3-19.ltx + RELOC/doc/latex/tlc2/3-3-2.ltx + RELOC/doc/latex/tlc2/3-3-20.ltx + RELOC/doc/latex/tlc2/3-3-21.ltx + RELOC/doc/latex/tlc2/3-3-22.ltx + RELOC/doc/latex/tlc2/3-3-23.ltx + RELOC/doc/latex/tlc2/3-3-24.ltx + RELOC/doc/latex/tlc2/3-3-25.ltx + RELOC/doc/latex/tlc2/3-3-26.ltx + RELOC/doc/latex/tlc2/3-3-27.ltx + RELOC/doc/latex/tlc2/3-3-28.ltx + RELOC/doc/latex/tlc2/3-3-29.ltx + RELOC/doc/latex/tlc2/3-3-3.ltx + RELOC/doc/latex/tlc2/3-3-30.ltx + RELOC/doc/latex/tlc2/3-3-4.ltx + RELOC/doc/latex/tlc2/3-3-5.ltx + RELOC/doc/latex/tlc2/3-3-6.ltx + RELOC/doc/latex/tlc2/3-3-7.ltx + RELOC/doc/latex/tlc2/3-3-8.ltx + RELOC/doc/latex/tlc2/3-3-9.ltx + RELOC/doc/latex/tlc2/3-4-1.ltx + RELOC/doc/latex/tlc2/3-4-10.ltx + RELOC/doc/latex/tlc2/3-4-11.ltx + RELOC/doc/latex/tlc2/3-4-12.ltx + RELOC/doc/latex/tlc2/3-4-13.ltx + RELOC/doc/latex/tlc2/3-4-14.ltx + RELOC/doc/latex/tlc2/3-4-15.ltx + RELOC/doc/latex/tlc2/3-4-16.ltx + RELOC/doc/latex/tlc2/3-4-17.ltx + RELOC/doc/latex/tlc2/3-4-18.ltx + RELOC/doc/latex/tlc2/3-4-19.ltx + RELOC/doc/latex/tlc2/3-4-2.ltx + RELOC/doc/latex/tlc2/3-4-20.ltx + RELOC/doc/latex/tlc2/3-4-21.ltx + RELOC/doc/latex/tlc2/3-4-22.ltx + RELOC/doc/latex/tlc2/3-4-23.ltx + RELOC/doc/latex/tlc2/3-4-24.ltx + RELOC/doc/latex/tlc2/3-4-25.ltx + RELOC/doc/latex/tlc2/3-4-26.ltx + RELOC/doc/latex/tlc2/3-4-27.ltx + RELOC/doc/latex/tlc2/3-4-28.ltx + RELOC/doc/latex/tlc2/3-4-29.ltx + RELOC/doc/latex/tlc2/3-4-3.ltx + RELOC/doc/latex/tlc2/3-4-30.ltx + RELOC/doc/latex/tlc2/3-4-31.ltx + RELOC/doc/latex/tlc2/3-4-32.ltx + RELOC/doc/latex/tlc2/3-4-33.ltx + RELOC/doc/latex/tlc2/3-4-34.ltx + RELOC/doc/latex/tlc2/3-4-35.ltx + RELOC/doc/latex/tlc2/3-4-36.ltx + RELOC/doc/latex/tlc2/3-4-37.ltx + RELOC/doc/latex/tlc2/3-4-38.ltx + RELOC/doc/latex/tlc2/3-4-39.ltx + RELOC/doc/latex/tlc2/3-4-4.ltx + RELOC/doc/latex/tlc2/3-4-40.ltx + RELOC/doc/latex/tlc2/3-4-41.ltx + RELOC/doc/latex/tlc2/3-4-42.ltx + RELOC/doc/latex/tlc2/3-4-5.ltx + RELOC/doc/latex/tlc2/3-4-6.ltx + RELOC/doc/latex/tlc2/3-4-7.ltx + RELOC/doc/latex/tlc2/3-4-8.ltx + RELOC/doc/latex/tlc2/3-4-9.ltx + RELOC/doc/latex/tlc2/3-5-1.ltx + RELOC/doc/latex/tlc2/3-5-10.ltx + RELOC/doc/latex/tlc2/3-5-11.ltx + RELOC/doc/latex/tlc2/3-5-12.ltx + RELOC/doc/latex/tlc2/3-5-13.ltx + RELOC/doc/latex/tlc2/3-5-14.ltx + RELOC/doc/latex/tlc2/3-5-15.ltx + RELOC/doc/latex/tlc2/3-5-16.ltx + RELOC/doc/latex/tlc2/3-5-17.ltx + RELOC/doc/latex/tlc2/3-5-18.ltx + RELOC/doc/latex/tlc2/3-5-19.ltx + RELOC/doc/latex/tlc2/3-5-2.ltx + RELOC/doc/latex/tlc2/3-5-20.ltx + RELOC/doc/latex/tlc2/3-5-3.ltx + RELOC/doc/latex/tlc2/3-5-4.ltx + RELOC/doc/latex/tlc2/3-5-5.ltx + RELOC/doc/latex/tlc2/3-5-6.ltx + RELOC/doc/latex/tlc2/3-5-7.ltx + RELOC/doc/latex/tlc2/3-5-8.ltx + RELOC/doc/latex/tlc2/3-5-9.ltx + RELOC/doc/latex/tlc2/4-1-1.ltx + RELOC/doc/latex/tlc2/4-2-1.ltx + RELOC/doc/latex/tlc2/4-2-10.ltx + RELOC/doc/latex/tlc2/4-2-11.ltx + RELOC/doc/latex/tlc2/4-2-12.ltx + RELOC/doc/latex/tlc2/4-2-13.ltx + RELOC/doc/latex/tlc2/4-2-2.ltx + RELOC/doc/latex/tlc2/4-2-3.ltx + RELOC/doc/latex/tlc2/4-2-4.ltx + RELOC/doc/latex/tlc2/4-2-5.ltx + RELOC/doc/latex/tlc2/4-2-6.ltx + RELOC/doc/latex/tlc2/4-2-7.ltx + RELOC/doc/latex/tlc2/4-2-8.ltx2 + RELOC/doc/latex/tlc2/4-2-9.ltx2 + RELOC/doc/latex/tlc2/4-3-1.ltx2 + RELOC/doc/latex/tlc2/4-3-2.ltx2 + RELOC/doc/latex/tlc2/4-3-3.ltx2 + RELOC/doc/latex/tlc2/4-4-1.ltx + RELOC/doc/latex/tlc2/4-4-10.ltx2 + RELOC/doc/latex/tlc2/4-4-11.ltx2 + RELOC/doc/latex/tlc2/4-4-12.ltx2 + RELOC/doc/latex/tlc2/4-4-13.ltx2 + RELOC/doc/latex/tlc2/4-4-14.ltx + RELOC/doc/latex/tlc2/4-4-15.ltx2 + RELOC/doc/latex/tlc2/4-4-2.ltx + RELOC/doc/latex/tlc2/4-4-3.ltx + RELOC/doc/latex/tlc2/4-4-4.ltx2 + RELOC/doc/latex/tlc2/4-4-5.ltx2 + RELOC/doc/latex/tlc2/4-4-6.ltx2 + RELOC/doc/latex/tlc2/4-4-7.ltx2 + RELOC/doc/latex/tlc2/4-4-8.ltx2 + RELOC/doc/latex/tlc2/4-4-9.ltx2 + RELOC/doc/latex/tlc2/4-5-1.ltx2 + RELOC/doc/latex/tlc2/4-5-2.ltx2 + RELOC/doc/latex/tlc2/5-1-1.ltx + RELOC/doc/latex/tlc2/5-1-2.ltx + RELOC/doc/latex/tlc2/5-1-3.ltx + RELOC/doc/latex/tlc2/5-1-4.ltx + RELOC/doc/latex/tlc2/5-2-1.ltx + RELOC/doc/latex/tlc2/5-2-10.ltx + RELOC/doc/latex/tlc2/5-2-11.ltx + RELOC/doc/latex/tlc2/5-2-12.ltx + RELOC/doc/latex/tlc2/5-2-13.ltx + RELOC/doc/latex/tlc2/5-2-2.ltx + RELOC/doc/latex/tlc2/5-2-3.ltx + RELOC/doc/latex/tlc2/5-2-4.ltx + RELOC/doc/latex/tlc2/5-2-5.ltx + RELOC/doc/latex/tlc2/5-2-6.ltx + RELOC/doc/latex/tlc2/5-2-7.ltx + RELOC/doc/latex/tlc2/5-2-8.ltx + RELOC/doc/latex/tlc2/5-2-9.ltx + RELOC/doc/latex/tlc2/5-3-1.ltx + RELOC/doc/latex/tlc2/5-3-2.ltx + RELOC/doc/latex/tlc2/5-3-3.ltx + RELOC/doc/latex/tlc2/5-3-4.ltx + RELOC/doc/latex/tlc2/5-3-5.ltx + RELOC/doc/latex/tlc2/5-3-6.ltx + RELOC/doc/latex/tlc2/5-4-1.ltx2 + RELOC/doc/latex/tlc2/5-4-2.ltx2 + RELOC/doc/latex/tlc2/5-4-3.ltx2 + RELOC/doc/latex/tlc2/5-4-4.ltx + RELOC/doc/latex/tlc2/5-4-5.ltx2 + RELOC/doc/latex/tlc2/5-4-6.ltx2 + RELOC/doc/latex/tlc2/5-5-1.ltx + RELOC/doc/latex/tlc2/5-5-2.ltx + RELOC/doc/latex/tlc2/5-6-1.ltx + RELOC/doc/latex/tlc2/5-6-2.ltx + RELOC/doc/latex/tlc2/5-6-3.ltx + RELOC/doc/latex/tlc2/5-6-4.ltx + RELOC/doc/latex/tlc2/5-6-5.ltx + RELOC/doc/latex/tlc2/5-6-6.ltx + RELOC/doc/latex/tlc2/5-6-7.ltx + RELOC/doc/latex/tlc2/5-6-8.ltx + RELOC/doc/latex/tlc2/5-7-1.ltx + RELOC/doc/latex/tlc2/5-7-2.ltx + RELOC/doc/latex/tlc2/5-7-3.ltx + RELOC/doc/latex/tlc2/5-7-4.ltx + RELOC/doc/latex/tlc2/5-7-5.ltx + RELOC/doc/latex/tlc2/5-7-6.ltx + RELOC/doc/latex/tlc2/5-7-7.ltx + RELOC/doc/latex/tlc2/5-7-8.ltx + RELOC/doc/latex/tlc2/5-8-1.ltx + RELOC/doc/latex/tlc2/5-8-2.ltx + RELOC/doc/latex/tlc2/5-9-1.ltx + RELOC/doc/latex/tlc2/5-9-2.ltx + RELOC/doc/latex/tlc2/5-9-3.ltx + RELOC/doc/latex/tlc2/5-9-4.ltx + RELOC/doc/latex/tlc2/5-9-5.ltx + RELOC/doc/latex/tlc2/5-9-6.ltx + RELOC/doc/latex/tlc2/6-3-1.ltx + RELOC/doc/latex/tlc2/6-3-2.ltx + RELOC/doc/latex/tlc2/6-3-3.ltx + RELOC/doc/latex/tlc2/6-3-4.ltx2 + RELOC/doc/latex/tlc2/6-3-5.ltx + RELOC/doc/latex/tlc2/6-3-6.ltx2 + RELOC/doc/latex/tlc2/6-3-7.ltx2 + RELOC/doc/latex/tlc2/6-4-1.ltx + RELOC/doc/latex/tlc2/6-4-2.ltx + RELOC/doc/latex/tlc2/6-4-3.ltx + RELOC/doc/latex/tlc2/6-4-4.ltx + RELOC/doc/latex/tlc2/6-4-5.ltx2 + RELOC/doc/latex/tlc2/6-4-6.ltx2 + RELOC/doc/latex/tlc2/6-4-7.ltx + RELOC/doc/latex/tlc2/6-4-8.ltx + RELOC/doc/latex/tlc2/6-5-1.ltx + RELOC/doc/latex/tlc2/6-5-10.ltx + RELOC/doc/latex/tlc2/6-5-11.ltx + RELOC/doc/latex/tlc2/6-5-12.ltx + RELOC/doc/latex/tlc2/6-5-13.ltx + RELOC/doc/latex/tlc2/6-5-14.ltx2 + RELOC/doc/latex/tlc2/6-5-15.ltx + RELOC/doc/latex/tlc2/6-5-16.ltx + RELOC/doc/latex/tlc2/6-5-17.ltx + RELOC/doc/latex/tlc2/6-5-18.ltx2 + RELOC/doc/latex/tlc2/6-5-2.ltx + RELOC/doc/latex/tlc2/6-5-3.ltx + RELOC/doc/latex/tlc2/6-5-4.ltx + RELOC/doc/latex/tlc2/6-5-5.ltx + RELOC/doc/latex/tlc2/6-5-6.ltx + RELOC/doc/latex/tlc2/6-5-7.ltx2 + RELOC/doc/latex/tlc2/6-5-8.ltx + RELOC/doc/latex/tlc2/6-5-9.ltx + RELOC/doc/latex/tlc2/7-10-1.ltx + RELOC/doc/latex/tlc2/7-12-1.ltx + RELOC/doc/latex/tlc2/7-3-1.ltx + RELOC/doc/latex/tlc2/7-3-2.ltx + RELOC/doc/latex/tlc2/7-3-3.ltx + RELOC/doc/latex/tlc2/7-3-4.ltx + RELOC/doc/latex/tlc2/7-3-5.ltx + RELOC/doc/latex/tlc2/7-3-6.ltx + RELOC/doc/latex/tlc2/7-3-7.ltx + RELOC/doc/latex/tlc2/7-3-8.ltx + RELOC/doc/latex/tlc2/7-4-1.ltx + RELOC/doc/latex/tlc2/7-4-2.ltx + RELOC/doc/latex/tlc2/7-4-3.ltx + RELOC/doc/latex/tlc2/7-4-4.ltx + RELOC/doc/latex/tlc2/7-4-5.ltx + RELOC/doc/latex/tlc2/7-5-1.ltx + RELOC/doc/latex/tlc2/7-5-10.ltx + RELOC/doc/latex/tlc2/7-5-11.ltx + RELOC/doc/latex/tlc2/7-5-12.ltx + RELOC/doc/latex/tlc2/7-5-13.ltx + RELOC/doc/latex/tlc2/7-5-14.ltx + RELOC/doc/latex/tlc2/7-5-15.ltx + RELOC/doc/latex/tlc2/7-5-16.ltx + RELOC/doc/latex/tlc2/7-5-17.ltx + RELOC/doc/latex/tlc2/7-5-2.ltx + RELOC/doc/latex/tlc2/7-5-3.ltx + RELOC/doc/latex/tlc2/7-5-4.ltx + RELOC/doc/latex/tlc2/7-5-5.ltx + RELOC/doc/latex/tlc2/7-5-6.ltx + RELOC/doc/latex/tlc2/7-5-7.ltx + RELOC/doc/latex/tlc2/7-5-8.ltx + RELOC/doc/latex/tlc2/7-5-9.ltx + RELOC/doc/latex/tlc2/7-6-1.ltx + RELOC/doc/latex/tlc2/7-6-10.ltx + RELOC/doc/latex/tlc2/7-6-11.ltx + RELOC/doc/latex/tlc2/7-6-12.ltx + RELOC/doc/latex/tlc2/7-6-2.ltx + RELOC/doc/latex/tlc2/7-6-3.ltx + RELOC/doc/latex/tlc2/7-6-4.ltx + RELOC/doc/latex/tlc2/7-6-5.ltx + RELOC/doc/latex/tlc2/7-6-6.ltx + RELOC/doc/latex/tlc2/7-6-7.ltx + RELOC/doc/latex/tlc2/7-6-8.ltx + RELOC/doc/latex/tlc2/7-6-9.ltx + RELOC/doc/latex/tlc2/7-7-1.ltx + RELOC/doc/latex/tlc2/7-7-10.ltx + RELOC/doc/latex/tlc2/7-7-11.ltx + RELOC/doc/latex/tlc2/7-7-12.ltx + RELOC/doc/latex/tlc2/7-7-13.ltx + RELOC/doc/latex/tlc2/7-7-14.ltx + RELOC/doc/latex/tlc2/7-7-15.ltx + RELOC/doc/latex/tlc2/7-7-16.ltx + RELOC/doc/latex/tlc2/7-7-17.ltx + RELOC/doc/latex/tlc2/7-7-18.ltx + RELOC/doc/latex/tlc2/7-7-19.ltx + RELOC/doc/latex/tlc2/7-7-2.ltx + RELOC/doc/latex/tlc2/7-7-20.ltx + RELOC/doc/latex/tlc2/7-7-21.ltx + RELOC/doc/latex/tlc2/7-7-22.ltx + RELOC/doc/latex/tlc2/7-7-23.ltx + RELOC/doc/latex/tlc2/7-7-24.ltx + RELOC/doc/latex/tlc2/7-7-25.ltx + RELOC/doc/latex/tlc2/7-7-26.ltx + RELOC/doc/latex/tlc2/7-7-27.ltx + RELOC/doc/latex/tlc2/7-7-28.ltx + RELOC/doc/latex/tlc2/7-7-29.ltx + RELOC/doc/latex/tlc2/7-7-3.ltx + RELOC/doc/latex/tlc2/7-7-4.ltx + RELOC/doc/latex/tlc2/7-7-5.ltx + RELOC/doc/latex/tlc2/7-7-6.ltx + RELOC/doc/latex/tlc2/7-7-7.ltx + RELOC/doc/latex/tlc2/7-7-8.ltx + RELOC/doc/latex/tlc2/7-7-9.ltx + RELOC/doc/latex/tlc2/7-8-1.ltx + RELOC/doc/latex/tlc2/7-8-10.ltx + RELOC/doc/latex/tlc2/7-8-11.ltx + RELOC/doc/latex/tlc2/7-8-12.ltx + RELOC/doc/latex/tlc2/7-8-13.ltx + RELOC/doc/latex/tlc2/7-8-14.ltx + RELOC/doc/latex/tlc2/7-8-15.ltx + RELOC/doc/latex/tlc2/7-8-16.ltx + RELOC/doc/latex/tlc2/7-8-17.ltx + RELOC/doc/latex/tlc2/7-8-18.ltx + RELOC/doc/latex/tlc2/7-8-19.ltx + RELOC/doc/latex/tlc2/7-8-2.ltx + RELOC/doc/latex/tlc2/7-8-20.ltx + RELOC/doc/latex/tlc2/7-8-21.ltx + RELOC/doc/latex/tlc2/7-8-22.ltx + RELOC/doc/latex/tlc2/7-8-3.ltx + RELOC/doc/latex/tlc2/7-8-4.ltx + RELOC/doc/latex/tlc2/7-8-5.ltx + RELOC/doc/latex/tlc2/7-8-6.ltx + RELOC/doc/latex/tlc2/7-8-7.ltx + RELOC/doc/latex/tlc2/7-8-8.ltx + RELOC/doc/latex/tlc2/7-8-9.ltx + RELOC/doc/latex/tlc2/7-9-1.ltx + RELOC/doc/latex/tlc2/7-9-2.ltx + RELOC/doc/latex/tlc2/8-2-1.ltx + RELOC/doc/latex/tlc2/8-2-10.ltx + RELOC/doc/latex/tlc2/8-2-11.ltx + RELOC/doc/latex/tlc2/8-2-12.ltx + RELOC/doc/latex/tlc2/8-2-13.ltx + RELOC/doc/latex/tlc2/8-2-14.ltx + RELOC/doc/latex/tlc2/8-2-15.ltx + RELOC/doc/latex/tlc2/8-2-16.ltx + RELOC/doc/latex/tlc2/8-2-17.ltx + RELOC/doc/latex/tlc2/8-2-18.ltx + RELOC/doc/latex/tlc2/8-2-19.ltx + RELOC/doc/latex/tlc2/8-2-2.ltx + RELOC/doc/latex/tlc2/8-2-20.ltx + RELOC/doc/latex/tlc2/8-2-21.ltx + RELOC/doc/latex/tlc2/8-2-22.ltx + RELOC/doc/latex/tlc2/8-2-23.ltx + RELOC/doc/latex/tlc2/8-2-24.ltx + RELOC/doc/latex/tlc2/8-2-25.ltx + RELOC/doc/latex/tlc2/8-2-26.ltx + RELOC/doc/latex/tlc2/8-2-27.ltx + RELOC/doc/latex/tlc2/8-2-28.ltx + RELOC/doc/latex/tlc2/8-2-29.ltx + RELOC/doc/latex/tlc2/8-2-3.ltx + RELOC/doc/latex/tlc2/8-2-4.ltx + RELOC/doc/latex/tlc2/8-2-5.ltx + RELOC/doc/latex/tlc2/8-2-6.ltx + RELOC/doc/latex/tlc2/8-2-7.ltx + RELOC/doc/latex/tlc2/8-2-8.ltx + RELOC/doc/latex/tlc2/8-2-9.ltx + RELOC/doc/latex/tlc2/8-3-1.ltx + RELOC/doc/latex/tlc2/8-3-10.ltx + RELOC/doc/latex/tlc2/8-3-11.ltx + RELOC/doc/latex/tlc2/8-3-12.ltx + RELOC/doc/latex/tlc2/8-3-13.ltx + RELOC/doc/latex/tlc2/8-3-14.ltx + RELOC/doc/latex/tlc2/8-3-15.ltx + RELOC/doc/latex/tlc2/8-3-16.ltx + RELOC/doc/latex/tlc2/8-3-17.ltx + RELOC/doc/latex/tlc2/8-3-18.ltx + RELOC/doc/latex/tlc2/8-3-19.ltx + RELOC/doc/latex/tlc2/8-3-2.ltx + RELOC/doc/latex/tlc2/8-3-20.ltx + RELOC/doc/latex/tlc2/8-3-21.ltx + RELOC/doc/latex/tlc2/8-3-22.ltx + RELOC/doc/latex/tlc2/8-3-23.ltx + RELOC/doc/latex/tlc2/8-3-24.ltx + RELOC/doc/latex/tlc2/8-3-25.ltx + RELOC/doc/latex/tlc2/8-3-26.ltx + RELOC/doc/latex/tlc2/8-3-27.ltx + RELOC/doc/latex/tlc2/8-3-28.ltx + RELOC/doc/latex/tlc2/8-3-29.ltx + RELOC/doc/latex/tlc2/8-3-3.ltx + RELOC/doc/latex/tlc2/8-3-30.ltx + RELOC/doc/latex/tlc2/8-3-31.ltx + RELOC/doc/latex/tlc2/8-3-32.ltx + RELOC/doc/latex/tlc2/8-3-33.ltx + RELOC/doc/latex/tlc2/8-3-34.ltx + RELOC/doc/latex/tlc2/8-3-35.ltx + RELOC/doc/latex/tlc2/8-3-36.ltx + RELOC/doc/latex/tlc2/8-3-37.ltx + RELOC/doc/latex/tlc2/8-3-38.ltx + RELOC/doc/latex/tlc2/8-3-39.ltx + RELOC/doc/latex/tlc2/8-3-4.ltx + RELOC/doc/latex/tlc2/8-3-5.ltx + RELOC/doc/latex/tlc2/8-3-6.ltx + RELOC/doc/latex/tlc2/8-3-7.ltx + RELOC/doc/latex/tlc2/8-3-8.ltx + RELOC/doc/latex/tlc2/8-3-9.ltx + RELOC/doc/latex/tlc2/8-4-1.ltx + RELOC/doc/latex/tlc2/8-4-10.ltx + RELOC/doc/latex/tlc2/8-4-11.ltx + RELOC/doc/latex/tlc2/8-4-12.ltx + RELOC/doc/latex/tlc2/8-4-13.ltx + RELOC/doc/latex/tlc2/8-4-14.ltx + RELOC/doc/latex/tlc2/8-4-2.ltx + RELOC/doc/latex/tlc2/8-4-3.ltx + RELOC/doc/latex/tlc2/8-4-4.ltx + RELOC/doc/latex/tlc2/8-4-5.ltx + RELOC/doc/latex/tlc2/8-4-6.ltx + RELOC/doc/latex/tlc2/8-4-7.ltx + RELOC/doc/latex/tlc2/8-4-8.ltx + RELOC/doc/latex/tlc2/8-4-9.ltx + RELOC/doc/latex/tlc2/8-5-1.ltx + RELOC/doc/latex/tlc2/8-5-2.ltx + RELOC/doc/latex/tlc2/8-5-3.ltx + RELOC/doc/latex/tlc2/8-5-4.ltx + RELOC/doc/latex/tlc2/8-6-1.ltx + RELOC/doc/latex/tlc2/8-6-2.ltx + RELOC/doc/latex/tlc2/8-6-3.ltx + RELOC/doc/latex/tlc2/8-6-4.ltx + RELOC/doc/latex/tlc2/8-7-1.ltx + RELOC/doc/latex/tlc2/8-7-2.ltx + RELOC/doc/latex/tlc2/8-7-3.ltx + RELOC/doc/latex/tlc2/8-7-4.ltx + RELOC/doc/latex/tlc2/8-7-5.ltx + RELOC/doc/latex/tlc2/8-7-6.ltx + RELOC/doc/latex/tlc2/8-7-7.ltx + RELOC/doc/latex/tlc2/8-8-1.ltx + RELOC/doc/latex/tlc2/8-8-10.ltx + RELOC/doc/latex/tlc2/8-8-11.ltx + RELOC/doc/latex/tlc2/8-8-12.ltx + RELOC/doc/latex/tlc2/8-8-13.ltx + RELOC/doc/latex/tlc2/8-8-14.ltx + RELOC/doc/latex/tlc2/8-8-15.ltx + RELOC/doc/latex/tlc2/8-8-16.ltx + RELOC/doc/latex/tlc2/8-8-17.ltx + RELOC/doc/latex/tlc2/8-8-18.ltx + RELOC/doc/latex/tlc2/8-8-19.ltx + RELOC/doc/latex/tlc2/8-8-2.ltx + RELOC/doc/latex/tlc2/8-8-20.ltx + RELOC/doc/latex/tlc2/8-8-21.ltx + RELOC/doc/latex/tlc2/8-8-22.ltx + RELOC/doc/latex/tlc2/8-8-23.ltx + RELOC/doc/latex/tlc2/8-8-24.ltx + RELOC/doc/latex/tlc2/8-8-25.ltx + RELOC/doc/latex/tlc2/8-8-3.ltx + RELOC/doc/latex/tlc2/8-8-4.ltx + RELOC/doc/latex/tlc2/8-8-5.ltx + RELOC/doc/latex/tlc2/8-8-6.ltx + RELOC/doc/latex/tlc2/8-8-7.ltx + RELOC/doc/latex/tlc2/8-8-8.ltx + RELOC/doc/latex/tlc2/8-8-9.ltx + RELOC/doc/latex/tlc2/8-9-1.ltx + RELOC/doc/latex/tlc2/8-9-2.ltx + RELOC/doc/latex/tlc2/8-9-3.ltx + RELOC/doc/latex/tlc2/8-9-4.ltx + RELOC/doc/latex/tlc2/8-9-5.ltx + RELOC/doc/latex/tlc2/8-9-6.ltx + RELOC/doc/latex/tlc2/8-9-7.ltx + RELOC/doc/latex/tlc2/8-9-8.ltx + RELOC/doc/latex/tlc2/9-2-1.ltx + RELOC/doc/latex/tlc2/9-2-2.ltx + RELOC/doc/latex/tlc2/9-2-3.ltx + RELOC/doc/latex/tlc2/9-2-4.ltx + RELOC/doc/latex/tlc2/9-2-5.ltx + RELOC/doc/latex/tlc2/9-2-6.ltx + RELOC/doc/latex/tlc2/9-2-7.ltx + RELOC/doc/latex/tlc2/9-2-8.ltx + RELOC/doc/latex/tlc2/9-3-1.ltx + RELOC/doc/latex/tlc2/9-3-10.ltx + RELOC/doc/latex/tlc2/9-3-11.ltx + RELOC/doc/latex/tlc2/9-3-12.ltx + RELOC/doc/latex/tlc2/9-3-13.ltx + RELOC/doc/latex/tlc2/9-3-14.ltx + RELOC/doc/latex/tlc2/9-3-15.ltx + RELOC/doc/latex/tlc2/9-3-16.ltx + RELOC/doc/latex/tlc2/9-3-17.ltx + RELOC/doc/latex/tlc2/9-3-18.ltx + RELOC/doc/latex/tlc2/9-3-19.ltx + RELOC/doc/latex/tlc2/9-3-2.ltx + RELOC/doc/latex/tlc2/9-3-20.ltx + RELOC/doc/latex/tlc2/9-3-21.ltx + RELOC/doc/latex/tlc2/9-3-22.ltx + RELOC/doc/latex/tlc2/9-3-23.ltx + RELOC/doc/latex/tlc2/9-3-24.ltx + RELOC/doc/latex/tlc2/9-3-25.ltx + RELOC/doc/latex/tlc2/9-3-26.ltx + RELOC/doc/latex/tlc2/9-3-27.ltx + RELOC/doc/latex/tlc2/9-3-28.ltx + RELOC/doc/latex/tlc2/9-3-29.ltx + RELOC/doc/latex/tlc2/9-3-3.ltx + RELOC/doc/latex/tlc2/9-3-30.ltx + RELOC/doc/latex/tlc2/9-3-31.ltx + RELOC/doc/latex/tlc2/9-3-32.ltx + RELOC/doc/latex/tlc2/9-3-33.ltx + RELOC/doc/latex/tlc2/9-3-34.ltx + RELOC/doc/latex/tlc2/9-3-35.ltx + RELOC/doc/latex/tlc2/9-3-36.ltx + RELOC/doc/latex/tlc2/9-3-37.ltx + RELOC/doc/latex/tlc2/9-3-38.ltx + RELOC/doc/latex/tlc2/9-3-39.ltx + RELOC/doc/latex/tlc2/9-3-4.ltx + RELOC/doc/latex/tlc2/9-3-5.ltx + RELOC/doc/latex/tlc2/9-3-6.ltx + RELOC/doc/latex/tlc2/9-3-7.ltx + RELOC/doc/latex/tlc2/9-3-8.ltx + RELOC/doc/latex/tlc2/9-3-9.ltx + RELOC/doc/latex/tlc2/9-4-1.ltx + RELOC/doc/latex/tlc2/9-4-2.ltx + RELOC/doc/latex/tlc2/9-4-3.ltx + RELOC/doc/latex/tlc2/9-4-4.ltx + RELOC/doc/latex/tlc2/9-4-5.ltx + RELOC/doc/latex/tlc2/9-5-1.ltx + RELOC/doc/latex/tlc2/A-1-1.ltx + RELOC/doc/latex/tlc2/A-1-10.ltx + RELOC/doc/latex/tlc2/A-1-11.ltx + RELOC/doc/latex/tlc2/A-1-12.ltx + RELOC/doc/latex/tlc2/A-1-13.ltx + RELOC/doc/latex/tlc2/A-1-14.ltx + RELOC/doc/latex/tlc2/A-1-15.ltx + RELOC/doc/latex/tlc2/A-1-16.ltx + RELOC/doc/latex/tlc2/A-1-17.ltx + RELOC/doc/latex/tlc2/A-1-2.ltx + RELOC/doc/latex/tlc2/A-1-3.ltx + RELOC/doc/latex/tlc2/A-1-4.ltx + RELOC/doc/latex/tlc2/A-1-5.ltx + RELOC/doc/latex/tlc2/A-1-6.ltx + RELOC/doc/latex/tlc2/A-1-7.ltx + RELOC/doc/latex/tlc2/A-1-8.ltx + RELOC/doc/latex/tlc2/A-1-9.ltx + RELOC/doc/latex/tlc2/A-2-1.ltx + RELOC/doc/latex/tlc2/A-2-10.ltx + RELOC/doc/latex/tlc2/A-2-11.ltx + RELOC/doc/latex/tlc2/A-2-12.ltx + RELOC/doc/latex/tlc2/A-2-13.ltx + RELOC/doc/latex/tlc2/A-2-14.ltx + RELOC/doc/latex/tlc2/A-2-15.ltx + RELOC/doc/latex/tlc2/A-2-16.ltx + RELOC/doc/latex/tlc2/A-2-17.ltx + RELOC/doc/latex/tlc2/A-2-18.ltx + RELOC/doc/latex/tlc2/A-2-19.ltx + RELOC/doc/latex/tlc2/A-2-2.ltx + RELOC/doc/latex/tlc2/A-2-20.ltx + RELOC/doc/latex/tlc2/A-2-21.ltx + RELOC/doc/latex/tlc2/A-2-3.ltx + RELOC/doc/latex/tlc2/A-2-4.ltx + RELOC/doc/latex/tlc2/A-2-5.ltx + RELOC/doc/latex/tlc2/A-2-6.ltx + RELOC/doc/latex/tlc2/A-2-7.ltx + RELOC/doc/latex/tlc2/A-2-8.ltx + RELOC/doc/latex/tlc2/A-2-9.ltx + RELOC/doc/latex/tlc2/A-3-1.ltx + RELOC/doc/latex/tlc2/A-3-10.ltx + RELOC/doc/latex/tlc2/A-3-11.ltx + RELOC/doc/latex/tlc2/A-3-2.ltx + RELOC/doc/latex/tlc2/A-3-3.ltx + RELOC/doc/latex/tlc2/A-3-4.ltx + RELOC/doc/latex/tlc2/A-3-5.ltx + RELOC/doc/latex/tlc2/A-3-6.ltx + RELOC/doc/latex/tlc2/A-3-7.ltx + RELOC/doc/latex/tlc2/A-3-8.ltx + RELOC/doc/latex/tlc2/A-3-9.ltx2 + RELOC/doc/latex/tlc2/B-3-1.ltx + RELOC/doc/latex/tlc2/Escher.ps + RELOC/doc/latex/tlc2/cat.ps + RELOC/doc/latex/tlc2/elephant.ps + RELOC/doc/latex/tlc2/indexexa.ltx + RELOC/doc/latex/tlc2/jura.bib + RELOC/doc/latex/tlc2/partial.toc + RELOC/doc/latex/tlc2/rosette.ps + RELOC/doc/latex/tlc2/tex.bib + RELOC/doc/latex/tlc2/ttctexa.cls + RELOC/doc/latex/tlc2/ttctexamargin.cls + RELOC/doc/latex/tlc2/ttctexareport.cls + RELOC/doc/latex/tlc2/w.eps + RELOC/doc/latex/tlc2/w.ps +catalogue-ctan /info/examples/tlc2 +catalogue-license lppl +catalogue-topics book-ex + +name tlcockpit +category Package +revision 54857 +shortdesc A GUI frontend to TeX Live Manager (tlmgr) +longdesc This package aims at being a GUI for tlmgr, the TeX Live +longdesc Manager, with a modern look and feel. We take inspiration from +longdesc the excellent TeX Live Utility for MacOS. +depend tlcockpit.ARCH +containersize 71652184 +containerchecksum 50817d4c68d4e302cf0f4075ff9321bde2fd26336923efd2fb39bf097090b617a2a67ce75d1a14d562939514acb17b2a356bc388f72049dbe52a868ff3d63ffd +doccontainersize 1023876 +doccontainerchecksum d40cec8456db0d9fdd55b76c84b40565a8b16d7639084eaa5dbc61c3bd2ebd73fdde6f40b11007835be242a9103cdc5ecbbecb6082ad650663968db18cc1b04d +docfiles size=451 + texmf-dist/doc/man/man1/tlcockpit.1 + texmf-dist/doc/man/man1/tlcockpit.man1.pdf + texmf-dist/doc/support/tlcockpit/ChangeLog + texmf-dist/doc/support/tlcockpit/LICENSE + texmf-dist/doc/support/tlcockpit/NEWS + texmf-dist/doc/support/tlcockpit/README.md details="Readme" + texmf-dist/doc/support/tlcockpit/logo/tlcockpit-banner.jpg + texmf-dist/doc/support/tlcockpit/logo/tlcockpit-banner.xcf + texmf-dist/doc/support/tlcockpit/logo/tlcockpit.xcf + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-backups.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-collections.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-config.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-loading.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-menu-debug-expert.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-packages.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-paper.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-pkgdetails.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-postactions.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-repositories.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-updates.jpg +srccontainersize 97896 +srccontainerchecksum 01a9038bab5226f57922215e6dac5acf69ba2bae866f72df1d2d4a3a6252fef78e18d1e7b2a8baf327bd4b89262abe6750b0dd1166f47868e797e50b205322a2 +srcfiles size=58 + texmf-dist/source/support/tlcockpit/TODO + texmf-dist/source/support/tlcockpit/build.sbt-jdk14 + texmf-dist/source/support/tlcockpit/build.sbt-jdk8 + texmf-dist/source/support/tlcockpit/project/assembly.sbt + texmf-dist/source/support/tlcockpit/project/build.properties + texmf-dist/source/support/tlcockpit/project/plugins.sbt + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/spinner-small.gif + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/spinner.gif + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/tlcockpit-128.jpg + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/tlcockpit-48.jpg + texmf-dist/source/support/tlcockpit/src/main/resources/logback.xml + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/ApplicationMain.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/LocationDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/OptionsDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/PaperDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/PkgInfoDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/TLDisplayClasses.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/Utils.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/JsonProtocol.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/OsTools.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLClasses.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TlmgrProcess.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/package.scala +runfiles size=18667 + texmf-dist/scripts/tlcockpit/tlcockpit-jdk8.jar + texmf-dist/scripts/tlcockpit/tlcockpit.jar + texmf-dist/scripts/tlcockpit/tlcockpit.sh +catalogue-contact-bugs https://github.com/TeX-Live/tlcockpit/issues +catalogue-contact-repository https://github.com/TeX-Live/tlcockpit +catalogue-ctan /support/tlcockpit +catalogue-license gpl3+ +catalogue-topics install-mgmt +catalogue-version 1.2 + +name tlcockpit.aarch64-linux +category Package +revision 46798 +shortdesc aarch64-linux files of tlcockpit +containersize 340 +containerchecksum ee3b6fdeebfdc0055ab4f94d2ec8ac02e74e4c9cd25f6a573ae9b8c94a30b6a36711882816305ebfde1b0025513307adb16ed1b3ef6ae6eeadd1101347675064 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/tlcockpit + +name tlcockpit.amd64-freebsd +category Package +revision 46798 +shortdesc amd64-freebsd files of tlcockpit +containersize 344 +containerchecksum bd79470b0d7d9315138ed8a718e4c77c954dcfa5808e72b06fc7e4434228364ab4a391ebb34adf3f52876872ad2ad3b2111e4f635a95c99c590e83c3ac13d165 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/tlcockpit + +name tlcockpit.amd64-netbsd +category Package +revision 46798 +shortdesc amd64-netbsd files of tlcockpit +containersize 344 +containerchecksum 37ca8a77c24a5f08ad4fe1869ec7a69aaaf05f3099e619a3e24bc5891adff7e9dc1fbb9a461d6f1d329a3701595c7db8ba57757f3c8ac23af788d123d7af847a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/tlcockpit + +name tlcockpit.armhf-linux +category Package +revision 46798 +shortdesc armhf-linux files of tlcockpit +containersize 340 +containerchecksum 14c7851b3b61b6e219c35e18d5f17fddbe9bbabc1c9b8a56be16d627cc3ad9ff801237234ed395b46cb8633aa9bd6ed8f46d616211664fdc3e238768a199c1a6 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/tlcockpit + +name tlcockpit.i386-cygwin +category Package +revision 46798 +shortdesc i386-cygwin files of tlcockpit +containersize 340 +containerchecksum 93de942c9f8ec6732a7baedcbf79b181e69c520fb2a558d2f7ae3f98376e8a2f8e67418ce9affb39dce89b11c14235d62f04c20a43b2660782e4e5f903b9b96f +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/tlcockpit + +name tlcockpit.i386-freebsd +category Package +revision 46798 +shortdesc i386-freebsd files of tlcockpit +containersize 344 +containerchecksum aeeab3c44bc2b2e15a3734a56c5a1fe4b6112a8a1db0e6b287f9ae5c620da4460f379755dceac9772a2f8ebe49e30a5cad589f5357d8958325584f3b70168a4e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/tlcockpit + +name tlcockpit.i386-linux +category Package +revision 46798 +shortdesc i386-linux files of tlcockpit +containersize 344 +containerchecksum 276ef2bf5a7e0584399e21431cedc405dcd737b55b3dd14241c2bda2002c7f63e75056a29c9dcf82a57ca5971b7bea4e6dc92c6a69e398976b6bc52d8d500854 +binfiles arch=i386-linux size=1 + bin/i386-linux/tlcockpit + +name tlcockpit.i386-netbsd +category Package +revision 46798 +shortdesc i386-netbsd files of tlcockpit +containersize 340 +containerchecksum 3081aeb5197b4d359718f46c6dd2ad33ce1f2297ce39bc272f24ce988f7a24ae8971a5ef8358303f8f9e3a14cbcb18314e6ded62cf3dff16ea992942fe1b2268 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/tlcockpit + +name tlcockpit.i386-solaris +category Package +revision 46798 +shortdesc i386-solaris files of tlcockpit +containersize 340 +containerchecksum 89e768b51b7401a86553f25bd08b85bb82e8f37e0a32932cf2677151b050cde38786a507db5f00af42a06331459fc914002a055bd93e82493d29a00c13d88d49 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/tlcockpit + +name tlcockpit.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of tlcockpit +containersize 340 +containerchecksum 7dca5097a03d570f163758a661b01b712ba509ce6624ba5ff90a887ded49c9fe83c0e041e3bc7d36b87f039a4fc445c448fa501dfd0c27af2ab4eb010a9fc598 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/tlcockpit + +name tlcockpit.win32 +category Package +revision 51610 +shortdesc win32 files of tlcockpit +containersize 5020 +containerchecksum 8cb13092144b3983ac7519d9a5ecdf90ea3db0af79750b4603b5ddde305a2383aac08745ee83359073f75f15bb912a591f9b895861a845ff10f18e371e4e2e2a +binfiles arch=win32 size=3 + bin/win32/tlcockpit.exe + +name tlcockpit.x86_64-cygwin +category Package +revision 46798 +shortdesc x86_64-cygwin files of tlcockpit +containersize 344 +containerchecksum 9a86f76fd5ce33f10ec713049b2d83b530a3541fa09f11940637e5176e05c2b161017176c414aad20142bd67957fd1b67a0d4f3335b0be96ac4c04dfcd660e4b +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/tlcockpit + +name tlcockpit.x86_64-darwinlegacy +category Package +revision 46798 +shortdesc x86_64-darwinlegacy files of tlcockpit +containersize 352 +containerchecksum 3cbea611ab2427de2cf794f9d6cd9ebf1ae94253d603fc99fbf435b3ea8dcee4ba8455da1d42bb462f0de668ce4f3ffec171410d0108947183a3f79737b60df8 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/tlcockpit + +name tlcockpit.x86_64-linux +category Package +revision 46798 +shortdesc x86_64-linux files of tlcockpit +containersize 340 +containerchecksum e0d68662d662741b6e7013a5eda9a122fb95b9de226170474042fbf103ccf2294f17f02e6bd23a785105cd81ba7c8eeb56ec230a9a16e1ffcea93a3e04464783 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/tlcockpit + +name tlcockpit.x86_64-linuxmusl +category Package +revision 47036 +shortdesc x86_64-linuxmusl files of tlcockpit +containersize 348 +containerchecksum 67967a960826166c390ae088ada3b42b58af827f405202b11508b1e6c8d61afab0f0f7e2f74042c55c010e157eaeb87c69d41251073ef547a3a9079b68a7abf1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/tlcockpit + +name tlcockpit.x86_64-solaris +category Package +revision 46798 +shortdesc x86_64-solaris files of tlcockpit +containersize 340 +containerchecksum 5c874fddba271b59aec6f3addf78f303735ed2c5ea6dac0cb34c5a15973cf14b2ab2eb8f2ab571d3fd06b7496d1925ad3f1115ca7b0b8f77971f9b8c4d97b5da +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/tlcockpit + +name tlgs.win32 +category TLCore +revision 58969 +catalogue ghostscript +shortdesc Freely available PostScript interpreter +longdesc Ghostscript is a freely available PostScript interpreter which +longdesc is available for many platforms. It is a near-essential +longdesc complement to a TeX installation, used in many utilities, +longdesc including PostScript/PDF viewers such as gv and GSview. +longdesc Ghostscript is no longer held on CTAN: please see the home page +longdesc for downloads. +containersize 8007124 +containerchecksum 84c611d0d6a7b6c51f7f19ad09d62fce62b785c9226024a35b84b6ea9eeb806bd6d949e5178c216d5b27abec7a0ea46c41eea72b2b10181d759ece202fc51c15 +binfiles arch=win32 size=7047 + bin/win32/eps2eps.exe + bin/win32/pdf2dsc.exe + bin/win32/pdfopt.exe + bin/win32/ps2ascii.exe + bin/win32/ps2pdf.exe + bin/win32/ps2pdf12.exe + bin/win32/ps2pdf13.exe + bin/win32/ps2pdf14.exe + bin/win32/ps2ps.exe + bin/win32/ps2ps2.exe + texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu + texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu + texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu + texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu + texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu + tlpkg/tlgs/COPYING + tlpkg/tlgs/README.TEXLIVE + tlpkg/tlgs/Resource/CIDFSubst/DroidSansFallback.ttf + tlpkg/tlgs/Resource/CIDFont/ArtifexBullet + tlpkg/tlgs/Resource/CMap/78-EUC-H + tlpkg/tlgs/Resource/CMap/78-EUC-V + tlpkg/tlgs/Resource/CMap/78-H + tlpkg/tlgs/Resource/CMap/78-RKSJ-H + tlpkg/tlgs/Resource/CMap/78-RKSJ-V + tlpkg/tlgs/Resource/CMap/78-V + tlpkg/tlgs/Resource/CMap/78ms-RKSJ-H + tlpkg/tlgs/Resource/CMap/78ms-RKSJ-V + tlpkg/tlgs/Resource/CMap/83pv-RKSJ-H + tlpkg/tlgs/Resource/CMap/90ms-RKSJ-H + tlpkg/tlgs/Resource/CMap/90ms-RKSJ-V + tlpkg/tlgs/Resource/CMap/90msp-RKSJ-H + tlpkg/tlgs/Resource/CMap/90msp-RKSJ-V + tlpkg/tlgs/Resource/CMap/90pv-RKSJ-H + tlpkg/tlgs/Resource/CMap/90pv-RKSJ-V + tlpkg/tlgs/Resource/CMap/Add-H + tlpkg/tlgs/Resource/CMap/Add-RKSJ-H + tlpkg/tlgs/Resource/CMap/Add-RKSJ-V + tlpkg/tlgs/Resource/CMap/Add-V + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-0 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-1 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-2 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-3 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-4 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-5 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-6 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-7 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-0 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-1 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-2 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-3 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-4 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-5 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-0 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-1 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-2 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-3 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-4 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-5 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-6 + tlpkg/tlgs/Resource/CMap/Adobe-Japan2-0 + tlpkg/tlgs/Resource/CMap/Adobe-Korea1-0 + tlpkg/tlgs/Resource/CMap/Adobe-Korea1-1 + tlpkg/tlgs/Resource/CMap/Adobe-Korea1-2 + tlpkg/tlgs/Resource/CMap/B5-H + tlpkg/tlgs/Resource/CMap/B5-V + tlpkg/tlgs/Resource/CMap/B5pc-H + tlpkg/tlgs/Resource/CMap/B5pc-V + tlpkg/tlgs/Resource/CMap/CNS-EUC-H + tlpkg/tlgs/Resource/CMap/CNS-EUC-V + tlpkg/tlgs/Resource/CMap/CNS1-H + tlpkg/tlgs/Resource/CMap/CNS1-V + tlpkg/tlgs/Resource/CMap/CNS2-H + tlpkg/tlgs/Resource/CMap/CNS2-V + tlpkg/tlgs/Resource/CMap/ETHK-B5-H + tlpkg/tlgs/Resource/CMap/ETHK-B5-V + tlpkg/tlgs/Resource/CMap/ETen-B5-H + tlpkg/tlgs/Resource/CMap/ETen-B5-V + tlpkg/tlgs/Resource/CMap/ETenms-B5-H + tlpkg/tlgs/Resource/CMap/ETenms-B5-V + tlpkg/tlgs/Resource/CMap/EUC-H + tlpkg/tlgs/Resource/CMap/EUC-V + tlpkg/tlgs/Resource/CMap/Ext-H + tlpkg/tlgs/Resource/CMap/Ext-RKSJ-H + tlpkg/tlgs/Resource/CMap/Ext-RKSJ-V + tlpkg/tlgs/Resource/CMap/Ext-V + tlpkg/tlgs/Resource/CMap/GB-EUC-H + tlpkg/tlgs/Resource/CMap/GB-EUC-V + tlpkg/tlgs/Resource/CMap/GB-H + tlpkg/tlgs/Resource/CMap/GB-V + tlpkg/tlgs/Resource/CMap/GBK-EUC-H + tlpkg/tlgs/Resource/CMap/GBK-EUC-V + tlpkg/tlgs/Resource/CMap/GBK2K-H + tlpkg/tlgs/Resource/CMap/GBK2K-V + tlpkg/tlgs/Resource/CMap/GBKp-EUC-H + tlpkg/tlgs/Resource/CMap/GBKp-EUC-V + tlpkg/tlgs/Resource/CMap/GBT-EUC-H + tlpkg/tlgs/Resource/CMap/GBT-EUC-V + tlpkg/tlgs/Resource/CMap/GBT-H + tlpkg/tlgs/Resource/CMap/GBT-V + tlpkg/tlgs/Resource/CMap/GBTpc-EUC-H + tlpkg/tlgs/Resource/CMap/GBTpc-EUC-V + tlpkg/tlgs/Resource/CMap/GBpc-EUC-H + tlpkg/tlgs/Resource/CMap/GBpc-EUC-V + tlpkg/tlgs/Resource/CMap/H + tlpkg/tlgs/Resource/CMap/HKdla-B5-H + tlpkg/tlgs/Resource/CMap/HKdla-B5-V + tlpkg/tlgs/Resource/CMap/HKdlb-B5-H + tlpkg/tlgs/Resource/CMap/HKdlb-B5-V + tlpkg/tlgs/Resource/CMap/HKgccs-B5-H + tlpkg/tlgs/Resource/CMap/HKgccs-B5-V + tlpkg/tlgs/Resource/CMap/HKm314-B5-H + tlpkg/tlgs/Resource/CMap/HKm314-B5-V + tlpkg/tlgs/Resource/CMap/HKm471-B5-H + tlpkg/tlgs/Resource/CMap/HKm471-B5-V + tlpkg/tlgs/Resource/CMap/HKscs-B5-H + tlpkg/tlgs/Resource/CMap/HKscs-B5-V + tlpkg/tlgs/Resource/CMap/Hankaku + tlpkg/tlgs/Resource/CMap/Hiragana + tlpkg/tlgs/Resource/CMap/Hojo-EUC-H + tlpkg/tlgs/Resource/CMap/Hojo-EUC-V + tlpkg/tlgs/Resource/CMap/Hojo-H + tlpkg/tlgs/Resource/CMap/Hojo-V + tlpkg/tlgs/Resource/CMap/Identity-H + tlpkg/tlgs/Resource/CMap/Identity-UTF16-H + tlpkg/tlgs/Resource/CMap/Identity-V + tlpkg/tlgs/Resource/CMap/KSC-EUC-H + tlpkg/tlgs/Resource/CMap/KSC-EUC-V + tlpkg/tlgs/Resource/CMap/KSC-H + tlpkg/tlgs/Resource/CMap/KSC-Johab-H + tlpkg/tlgs/Resource/CMap/KSC-Johab-V + tlpkg/tlgs/Resource/CMap/KSC-V + tlpkg/tlgs/Resource/CMap/KSCms-UHC-H + tlpkg/tlgs/Resource/CMap/KSCms-UHC-HW-H + tlpkg/tlgs/Resource/CMap/KSCms-UHC-HW-V + tlpkg/tlgs/Resource/CMap/KSCms-UHC-V + tlpkg/tlgs/Resource/CMap/KSCpc-EUC-H + tlpkg/tlgs/Resource/CMap/KSCpc-EUC-V + tlpkg/tlgs/Resource/CMap/Katakana + tlpkg/tlgs/Resource/CMap/NWP-H + tlpkg/tlgs/Resource/CMap/NWP-V + tlpkg/tlgs/Resource/CMap/RKSJ-H + tlpkg/tlgs/Resource/CMap/RKSJ-V + tlpkg/tlgs/Resource/CMap/Roman + tlpkg/tlgs/Resource/CMap/UniCNS-UCS2-H + tlpkg/tlgs/Resource/CMap/UniCNS-UCS2-V + tlpkg/tlgs/Resource/CMap/UniCNS-UTF16-H + tlpkg/tlgs/Resource/CMap/UniCNS-UTF16-V + tlpkg/tlgs/Resource/CMap/UniCNS-UTF32-H + tlpkg/tlgs/Resource/CMap/UniCNS-UTF32-V + tlpkg/tlgs/Resource/CMap/UniCNS-UTF8-H + tlpkg/tlgs/Resource/CMap/UniCNS-UTF8-V + tlpkg/tlgs/Resource/CMap/UniGB-UCS2-H + tlpkg/tlgs/Resource/CMap/UniGB-UCS2-V + tlpkg/tlgs/Resource/CMap/UniGB-UTF16-H + tlpkg/tlgs/Resource/CMap/UniGB-UTF16-V + tlpkg/tlgs/Resource/CMap/UniGB-UTF32-H + tlpkg/tlgs/Resource/CMap/UniGB-UTF32-V + tlpkg/tlgs/Resource/CMap/UniGB-UTF8-H + tlpkg/tlgs/Resource/CMap/UniGB-UTF8-V + tlpkg/tlgs/Resource/CMap/UniHojo-UCS2-H + tlpkg/tlgs/Resource/CMap/UniHojo-UCS2-V + tlpkg/tlgs/Resource/CMap/UniHojo-UTF16-H + tlpkg/tlgs/Resource/CMap/UniHojo-UTF16-V + tlpkg/tlgs/Resource/CMap/UniHojo-UTF32-H + tlpkg/tlgs/Resource/CMap/UniHojo-UTF32-V + tlpkg/tlgs/Resource/CMap/UniHojo-UTF8-H + tlpkg/tlgs/Resource/CMap/UniHojo-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-H + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-HW-H + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-HW-V + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-V + tlpkg/tlgs/Resource/CMap/UniJIS-UTF16-H + tlpkg/tlgs/Resource/CMap/UniJIS-UTF16-V + tlpkg/tlgs/Resource/CMap/UniJIS-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJIS-UTF32-V + tlpkg/tlgs/Resource/CMap/UniJIS-UTF8-H + tlpkg/tlgs/Resource/CMap/UniJIS-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF16-H + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF16-V + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF32-V + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF8-H + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJISPro-UCS2-HW-V + tlpkg/tlgs/Resource/CMap/UniJISPro-UCS2-V + tlpkg/tlgs/Resource/CMap/UniJISPro-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJISX0213-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJISX0213-UTF32-V + tlpkg/tlgs/Resource/CMap/UniJISX02132004-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJISX02132004-UTF32-V + tlpkg/tlgs/Resource/CMap/UniKS-UCS2-H + tlpkg/tlgs/Resource/CMap/UniKS-UCS2-V + tlpkg/tlgs/Resource/CMap/UniKS-UTF16-H + tlpkg/tlgs/Resource/CMap/UniKS-UTF16-V + tlpkg/tlgs/Resource/CMap/UniKS-UTF32-H + tlpkg/tlgs/Resource/CMap/UniKS-UTF32-V + tlpkg/tlgs/Resource/CMap/UniKS-UTF8-H + tlpkg/tlgs/Resource/CMap/UniKS-UTF8-V + tlpkg/tlgs/Resource/CMap/V + tlpkg/tlgs/Resource/CMap/WP-Symbol + tlpkg/tlgs/Resource/ColorSpace/DefaultCMYK + tlpkg/tlgs/Resource/ColorSpace/DefaultGray + tlpkg/tlgs/Resource/ColorSpace/DefaultRGB + tlpkg/tlgs/Resource/ColorSpace/TrivialCMYK + tlpkg/tlgs/Resource/ColorSpace/sGray + tlpkg/tlgs/Resource/ColorSpace/sRGB + tlpkg/tlgs/Resource/Decoding/FCO_Dingbats + tlpkg/tlgs/Resource/Decoding/FCO_Symbol + tlpkg/tlgs/Resource/Decoding/FCO_Unicode + tlpkg/tlgs/Resource/Decoding/FCO_Wingdings + tlpkg/tlgs/Resource/Decoding/Latin1 + tlpkg/tlgs/Resource/Decoding/StandardEncoding + tlpkg/tlgs/Resource/Decoding/Unicode + tlpkg/tlgs/Resource/Encoding/CEEncoding + tlpkg/tlgs/Resource/Encoding/ExpertEncoding + tlpkg/tlgs/Resource/Encoding/ExpertSubsetEncoding + tlpkg/tlgs/Resource/Encoding/NotDefEncoding + tlpkg/tlgs/Resource/Encoding/Wingdings + tlpkg/tlgs/Resource/Font/README + tlpkg/tlgs/Resource/IdiomSet/PPI_CUtils + tlpkg/tlgs/Resource/IdiomSet/Pscript5Idiom + tlpkg/tlgs/Resource/Init/FAPIcidfmap + tlpkg/tlgs/Resource/Init/FAPIconfig + tlpkg/tlgs/Resource/Init/FAPIfontmap + tlpkg/tlgs/Resource/Init/FCOfontmap-PCLPS2 + tlpkg/tlgs/Resource/Init/gs_agl.ps + tlpkg/tlgs/Resource/Init/gs_btokn.ps + tlpkg/tlgs/Resource/Init/gs_cet.ps + tlpkg/tlgs/Resource/Init/gs_cff.ps + tlpkg/tlgs/Resource/Init/gs_cidcm.ps + tlpkg/tlgs/Resource/Init/gs_ciddc.ps + tlpkg/tlgs/Resource/Init/gs_cidfm.ps + tlpkg/tlgs/Resource/Init/gs_cidfn.ps + tlpkg/tlgs/Resource/Init/gs_cidtt.ps + tlpkg/tlgs/Resource/Init/gs_cmap.ps + tlpkg/tlgs/Resource/Init/gs_cspace.ps + tlpkg/tlgs/Resource/Init/gs_dbt_e.ps + tlpkg/tlgs/Resource/Init/gs_diskn.ps + tlpkg/tlgs/Resource/Init/gs_dps1.ps + tlpkg/tlgs/Resource/Init/gs_dps2.ps + tlpkg/tlgs/Resource/Init/gs_dscp.ps + tlpkg/tlgs/Resource/Init/gs_epsf.ps + tlpkg/tlgs/Resource/Init/gs_fapi.ps + tlpkg/tlgs/Resource/Init/gs_fntem.ps + tlpkg/tlgs/Resource/Init/gs_fonts.ps + tlpkg/tlgs/Resource/Init/gs_frsd.ps + tlpkg/tlgs/Resource/Init/gs_icc.ps + tlpkg/tlgs/Resource/Init/gs_il1_e.ps + tlpkg/tlgs/Resource/Init/gs_img.ps + tlpkg/tlgs/Resource/Init/gs_init.ps + tlpkg/tlgs/Resource/Init/gs_lev2.ps + tlpkg/tlgs/Resource/Init/gs_ll3.ps + tlpkg/tlgs/Resource/Init/gs_mex_e.ps + tlpkg/tlgs/Resource/Init/gs_mgl_e.ps + tlpkg/tlgs/Resource/Init/gs_mro_e.ps + tlpkg/tlgs/Resource/Init/gs_pdf_e.ps + tlpkg/tlgs/Resource/Init/gs_pdfwr.ps + tlpkg/tlgs/Resource/Init/gs_res.ps + tlpkg/tlgs/Resource/Init/gs_resmp.ps + tlpkg/tlgs/Resource/Init/gs_setpd.ps + tlpkg/tlgs/Resource/Init/gs_statd.ps + tlpkg/tlgs/Resource/Init/gs_std_e.ps + tlpkg/tlgs/Resource/Init/gs_sym_e.ps + tlpkg/tlgs/Resource/Init/gs_trap.ps + tlpkg/tlgs/Resource/Init/gs_ttf.ps + tlpkg/tlgs/Resource/Init/gs_typ32.ps + tlpkg/tlgs/Resource/Init/gs_typ42.ps + tlpkg/tlgs/Resource/Init/gs_type1.ps + tlpkg/tlgs/Resource/Init/gs_wan_e.ps + tlpkg/tlgs/Resource/Init/pdf_base.ps + tlpkg/tlgs/Resource/Init/pdf_draw.ps + tlpkg/tlgs/Resource/Init/pdf_font.ps + tlpkg/tlgs/Resource/Init/pdf_main.ps + tlpkg/tlgs/Resource/Init/pdf_ops.ps + tlpkg/tlgs/Resource/Init/pdf_rbld.ps + tlpkg/tlgs/Resource/Init/pdf_sec.ps + tlpkg/tlgs/Resource/Init/xlatmap + tlpkg/tlgs/Resource/SubstCID/CNS1-WMode + tlpkg/tlgs/Resource/SubstCID/GB1-WMode + tlpkg/tlgs/Resource/SubstCID/Japan1-WMode + tlpkg/tlgs/Resource/SubstCID/Korea1-WMode + tlpkg/tlgs/bin/gsdll32.dll + tlpkg/tlgs/bin/gsdll32.lib + tlpkg/tlgs/bin/gswin32.exe + tlpkg/tlgs/bin/gswin32c.exe + tlpkg/tlgs/fonts/COPYING + tlpkg/tlgs/fonts/LICENSE-utopia.txt + tlpkg/tlgs/fonts/README-utopia.txt + tlpkg/tlgs/fonts/README.base35 + tlpkg/tlgs/fonts/bchb8a.afm + tlpkg/tlgs/fonts/bchb8a.pfb + tlpkg/tlgs/fonts/bchbi8a.afm + tlpkg/tlgs/fonts/bchbi8a.pfb + tlpkg/tlgs/fonts/bchr8a.afm + tlpkg/tlgs/fonts/bchr8a.pfb + tlpkg/tlgs/fonts/bchri8a.afm + tlpkg/tlgs/fonts/bchri8a.pfb + tlpkg/tlgs/fonts/putb8a.afm + tlpkg/tlgs/fonts/putb8a.pfb + tlpkg/tlgs/fonts/putbi8a.afm + tlpkg/tlgs/fonts/putbi8a.pfb + tlpkg/tlgs/fonts/putr8a.afm + tlpkg/tlgs/fonts/putr8a.pfb + tlpkg/tlgs/fonts/putri8a.afm + tlpkg/tlgs/fonts/putri8a.pfb + tlpkg/tlgs/fonts/readme.charter + tlpkg/tlgs/fonts/uagd8a.afm + tlpkg/tlgs/fonts/uagd8a.pfb + tlpkg/tlgs/fonts/uagdo8a.afm + tlpkg/tlgs/fonts/uagdo8a.pfb + tlpkg/tlgs/fonts/uagk8a.afm + tlpkg/tlgs/fonts/uagk8a.pfb + tlpkg/tlgs/fonts/uagko8a.afm + tlpkg/tlgs/fonts/uagko8a.pfb + tlpkg/tlgs/fonts/ubkd8a.afm + tlpkg/tlgs/fonts/ubkd8a.pfb + tlpkg/tlgs/fonts/ubkdi8a.afm + tlpkg/tlgs/fonts/ubkdi8a.pfb + tlpkg/tlgs/fonts/ubkl8a.afm + tlpkg/tlgs/fonts/ubkl8a.pfb + tlpkg/tlgs/fonts/ubkli8a.afm + tlpkg/tlgs/fonts/ubkli8a.pfb + tlpkg/tlgs/fonts/ucrb8a.afm + tlpkg/tlgs/fonts/ucrb8a.pfb + tlpkg/tlgs/fonts/ucrbo8a.afm + tlpkg/tlgs/fonts/ucrbo8a.pfb + tlpkg/tlgs/fonts/ucrr8a.afm + tlpkg/tlgs/fonts/ucrr8a.pfb + tlpkg/tlgs/fonts/ucrro8a.afm + tlpkg/tlgs/fonts/ucrro8a.pfb + tlpkg/tlgs/fonts/uhvb8a.afm + tlpkg/tlgs/fonts/uhvb8a.pfb + tlpkg/tlgs/fonts/uhvb8ac.afm + tlpkg/tlgs/fonts/uhvb8ac.pfb + tlpkg/tlgs/fonts/uhvbo8a.afm + tlpkg/tlgs/fonts/uhvbo8a.pfb + tlpkg/tlgs/fonts/uhvbo8ac.afm + tlpkg/tlgs/fonts/uhvbo8ac.pfb + tlpkg/tlgs/fonts/uhvr8a-105.pfb + tlpkg/tlgs/fonts/uhvr8a.afm + tlpkg/tlgs/fonts/uhvr8a.pfb + tlpkg/tlgs/fonts/uhvr8ac.afm + tlpkg/tlgs/fonts/uhvr8ac.pfb + tlpkg/tlgs/fonts/uhvro8a-105.pfb + tlpkg/tlgs/fonts/uhvro8a.afm + tlpkg/tlgs/fonts/uhvro8a.pfb + tlpkg/tlgs/fonts/uhvro8ac.afm + tlpkg/tlgs/fonts/uhvro8ac.pfb + tlpkg/tlgs/fonts/uncb8a.afm + tlpkg/tlgs/fonts/uncb8a.pfb + tlpkg/tlgs/fonts/uncbi8a.afm + tlpkg/tlgs/fonts/uncbi8a.pfb + tlpkg/tlgs/fonts/uncr8a.afm + tlpkg/tlgs/fonts/uncr8a.pfb + tlpkg/tlgs/fonts/uncri8a.afm + tlpkg/tlgs/fonts/uncri8a.pfb + tlpkg/tlgs/fonts/uplb8a.afm + tlpkg/tlgs/fonts/uplb8a.pfb + tlpkg/tlgs/fonts/uplbi8a.afm + tlpkg/tlgs/fonts/uplbi8a.pfb + tlpkg/tlgs/fonts/uplr8a.afm + tlpkg/tlgs/fonts/uplr8a.pfb + tlpkg/tlgs/fonts/uplri8a.afm + tlpkg/tlgs/fonts/uplri8a.pfb + tlpkg/tlgs/fonts/usyr.afm + tlpkg/tlgs/fonts/usyr.pfb + tlpkg/tlgs/fonts/utmb8a.afm + tlpkg/tlgs/fonts/utmb8a.pfb + tlpkg/tlgs/fonts/utmbi8a.afm + tlpkg/tlgs/fonts/utmbi8a.pfb + tlpkg/tlgs/fonts/utmr8a.afm + tlpkg/tlgs/fonts/utmr8a.pfb + tlpkg/tlgs/fonts/utmri8a.afm + tlpkg/tlgs/fonts/utmri8a.pfb + tlpkg/tlgs/fonts/uzcmi8a.afm + tlpkg/tlgs/fonts/uzcmi8a.pfb + tlpkg/tlgs/fonts/uzdr.afm + tlpkg/tlgs/fonts/uzdr.pfb + tlpkg/tlgs/iccprofiles/a98.icc + tlpkg/tlgs/iccprofiles/default_cmyk.icc + tlpkg/tlgs/iccprofiles/default_gray.icc + tlpkg/tlgs/iccprofiles/default_rgb.icc + tlpkg/tlgs/iccprofiles/esrgb.icc + tlpkg/tlgs/iccprofiles/gray_to_k.icc + tlpkg/tlgs/iccprofiles/lab.icc + tlpkg/tlgs/iccprofiles/ps_cmyk.icc + tlpkg/tlgs/iccprofiles/ps_gray.icc + tlpkg/tlgs/iccprofiles/ps_rgb.icc + tlpkg/tlgs/iccprofiles/rommrgb.icc + tlpkg/tlgs/iccprofiles/scrgb.icc + tlpkg/tlgs/iccprofiles/sgray.icc + tlpkg/tlgs/iccprofiles/srgb.icc + tlpkg/tlgs/kanji/allkanji.ps + tlpkg/tlgs/kanji/article9.ps + tlpkg/tlgs/kanji/fmaptype.ps + tlpkg/tlgs/kanji/hankaku.ps + tlpkg/tlgs/kanji/kbase.ps + tlpkg/tlgs/kanji/kbitmap.ps + tlpkg/tlgs/kanji/kcomp.ps + tlpkg/tlgs/kanji/kconfig.ps + tlpkg/tlgs/kanji/kfwin32.ps + tlpkg/tlgs/kanji/kfwin32bm.ps + tlpkg/tlgs/kanji/kinit.ps + tlpkg/tlgs/kanji/kmapping.ps + tlpkg/tlgs/kanji/koutline.ps + tlpkg/tlgs/kanji/metrics2.ps + tlpkg/tlgs/kanji/useopentype.ps + tlpkg/tlgs/kanji/vchars.ps + tlpkg/tlgs/kanji/vchars1.ps + tlpkg/tlgs/lib/Fontmap + tlpkg/tlgs/lib/Fontmap.TeXLive + tlpkg/tlgs/lib/PDFA_def.ps + tlpkg/tlgs/lib/PDFX_def.ps + tlpkg/tlgs/lib/acctest.ps + tlpkg/tlgs/lib/afmdiff.awk + tlpkg/tlgs/lib/align.ps + tlpkg/tlgs/lib/caption.ps + tlpkg/tlgs/lib/cid2code.ps + tlpkg/tlgs/lib/cidfmap + tlpkg/tlgs/lib/cidfmap.TeXLive + tlpkg/tlgs/lib/docie.ps + tlpkg/tlgs/lib/gs_ce_e.ps + tlpkg/tlgs/lib/gs_css_e.ps + tlpkg/tlgs/lib/gs_il2_e.ps + tlpkg/tlgs/lib/gs_kanji.ps + tlpkg/tlgs/lib/gs_ksb_e.ps + tlpkg/tlgs/lib/gs_lgo_e.ps + tlpkg/tlgs/lib/gs_lgx_e.ps + tlpkg/tlgs/lib/gs_wl1_e.ps + tlpkg/tlgs/lib/gs_wl2_e.ps + tlpkg/tlgs/lib/gs_wl5_e.ps + tlpkg/tlgs/lib/gslp.ps + tlpkg/tlgs/lib/gsnup.ps + tlpkg/tlgs/lib/ht_ccsto.ps + tlpkg/tlgs/lib/image-qa.ps + tlpkg/tlgs/lib/jispaper.ps + tlpkg/tlgs/lib/landscap.ps + tlpkg/tlgs/lib/lines.ps + tlpkg/tlgs/lib/mkcidfm.ps + tlpkg/tlgs/lib/pdf2dsc.ps + tlpkg/tlgs/lib/pdf_info.ps + tlpkg/tlgs/lib/pf2afm.ps + tlpkg/tlgs/lib/pfbtopfa.ps + tlpkg/tlgs/lib/ppath.ps + tlpkg/tlgs/lib/pphs.ps + tlpkg/tlgs/lib/prfont.ps + tlpkg/tlgs/lib/printafm.ps + tlpkg/tlgs/lib/ps2ai.ps + tlpkg/tlgs/lib/ps2epsi.ps + tlpkg/tlgs/lib/rollconv.ps + tlpkg/tlgs/lib/stocht.ps + tlpkg/tlgs/lib/traceimg.ps + tlpkg/tlgs/lib/traceop.ps + tlpkg/tlgs/lib/uninfo.ps + tlpkg/tlgs/lib/viewcmyk.ps + tlpkg/tlgs/lib/viewgif.ps + tlpkg/tlgs/lib/viewjpeg.ps + tlpkg/tlgs/lib/viewmiff.ps + tlpkg/tlgs/lib/viewpbm.ps + tlpkg/tlgs/lib/viewpcx.ps + tlpkg/tlgs/lib/viewps2a.ps + tlpkg/tlgs/lib/viewpwg.ps + tlpkg/tlgs/lib/viewraw.ps + tlpkg/tlgs/lib/viewrgb.ps + tlpkg/tlgs/lib/winmaps.ps + tlpkg/tlgs/lib/zeroline.ps + tlpkg/tlgs/lib/zugferd.ps +catalogue-contact-home http://www.ghostscript.com/ +catalogue-license collection +catalogue-topics graphics-prep + +name tlmgr-intro-zh-cn +category Package +revision 59087 +shortdesc A short tutorial on using tlmgr in Chinese +relocated 1 +longdesc This is a Chinese translation of the tlmgr documentation. It +longdesc introduces some of the common usage of the TeX Live Manager. +longdesc The original can be found in the tlmgrbasics package. +containersize 492 +containerchecksum 6c73e523aca2cd703812b2f0ebe009ca8be1b3e687517e1dd3af9ab03bfe042dfe4aaf0570c131e8d976e77b73fade2676b07062cd310700b7e2a2a17048c509 +doccontainersize 444372 +doccontainerchecksum c17b1125ebf88c0b17782da85a788a8679ceb19b00c82df6398c44847339ff037481c062ced8eb11f28c14908e4606c85e414dde85d388fd62a9ec69a65438bd +docfiles size=131 + RELOC/doc/support/tlmgr-intro-zh-cn/LICENSE + RELOC/doc/support/tlmgr-intro-zh-cn/README.md details="Readme" language="zh" + RELOC/doc/support/tlmgr-intro-zh-cn/body/actions.tex + RELOC/doc/support/tlmgr-intro-zh-cn/body/examples.tex + RELOC/doc/support/tlmgr-intro-zh-cn/body/mirrors.tex + RELOC/doc/support/tlmgr-intro-zh-cn/body/options.tex + RELOC/doc/support/tlmgr-intro-zh-cn/body/preface.tex + RELOC/doc/support/tlmgr-intro-zh-cn/body/schemes_and_collections.tex + RELOC/doc/support/tlmgr-intro-zh-cn/body/syntex.tex + RELOC/doc/support/tlmgr-intro-zh-cn/fig/collection.png + RELOC/doc/support/tlmgr-intro-zh-cn/fig/scheme.png + RELOC/doc/support/tlmgr-intro-zh-cn/latexmkrc + RELOC/doc/support/tlmgr-intro-zh-cn/tlmgr-intro-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/support/tlmgr-intro-zh-cn/tlmgr-intro-zh-cn.sty + RELOC/doc/support/tlmgr-intro-zh-cn/tlmgr-intro-zh-cn.tex +catalogue-contact-bugs https://github.com/syvshc/tlmgr-intro-zh-cn/issues +catalogue-contact-repository https://github.com/syvshc/tlmgr-intro-zh-cn +catalogue-ctan /info/tlmgr-intro-zh-cn +catalogue-license gpl3+ +catalogue-topics chinese-doc + +name tlmgrbasics +category Package +revision 58974 +shortdesc A simplified documentation for tlmgr +relocated 1 +longdesc This package provides simplified documentation for tlmgr, the +longdesc TeX Live Manager. It describes the most commonly-used actions +longdesc and options in a convenient format. +containersize 428 +containerchecksum d9acced3178fd2d81208b7b135decdff9bdadb719bf6e6139d1b0bf145c770659bbd9502d5ef6c517d8f69f3f806e0561d48ac8997ce3ce74debdb9ae3a527e1 +doccontainersize 151008 +doccontainerchecksum 3f5076aa8326467032eba7189bd6d5aa4b6797a21afef633974855654a64fe4e2d5502e7514092c1f1719dc982f8d19f02e514b1ba2023e72fcc8919e3dd05ac +docfiles size=43 + RELOC/doc/support/tlmgrbasics/README details="Readme" + RELOC/doc/support/tlmgrbasics/tlmgr.pdf details="The document itself" + RELOC/doc/support/tlmgrbasics/tlmgr.tex +catalogue-ctan /info/tlmgrbasics +catalogue-license gpl2+ +catalogue-topics install-mgmt documentation + +name tlperl.win32 +category TLCore +revision 58075 +shortdesc internal Perl for Windows +longdesc TeX Live includes Perl for Windows, but it is intended only for +longdesc internal use by TeX Live programs, and should not be used as a +longdesc general system program. Install your own Perl for that. See +longdesc http://perl.org. +containersize 7177228 +containerchecksum 72620df957aac7638e6990f7e3449258d81c81e41b977af60712bc681563e5cfa6724de22cfbe984f7f9fd5180692308e8e00a06c766b16bc8ec82d2c7d97809 +runfiles size=11140 + tlpkg/tlperl/README.TEXLIVE + tlpkg/tlperl/bin/libgcc_s_dw2-1.dll + tlpkg/tlperl/bin/libstdc++-6.dll + tlpkg/tlperl/bin/libwinpthread-1.dll + tlpkg/tlperl/bin/perl.exe + tlpkg/tlperl/bin/perl532.dll + tlpkg/tlperl/bin/perlglob.exe + tlpkg/tlperl/bin/wperl.exe + tlpkg/tlperl/lib/.packlist + tlpkg/tlperl/lib/AnyDBM_File.pm + tlpkg/tlperl/lib/App/Cpan.pm + tlpkg/tlperl/lib/App/Prove.pm + tlpkg/tlperl/lib/App/Prove/State.pm + tlpkg/tlperl/lib/App/Prove/State/Result.pm + tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm + tlpkg/tlperl/lib/Archive/Tar.pm + tlpkg/tlperl/lib/Archive/Tar/Constant.pm + tlpkg/tlperl/lib/Archive/Tar/File.pm + tlpkg/tlperl/lib/Attribute/Handlers.pm + tlpkg/tlperl/lib/AutoLoader.pm + tlpkg/tlperl/lib/AutoSplit.pm + tlpkg/tlperl/lib/B.pm + tlpkg/tlperl/lib/B/Concise.pm + tlpkg/tlperl/lib/B/Deparse.pm + tlpkg/tlperl/lib/B/Op_private.pm + tlpkg/tlperl/lib/B/Showlex.pm + tlpkg/tlperl/lib/B/Terse.pm + tlpkg/tlperl/lib/B/Xref.pm + tlpkg/tlperl/lib/Benchmark.pm + tlpkg/tlperl/lib/CORE.pod + tlpkg/tlperl/lib/CORE/EXTERN.h + tlpkg/tlperl/lib/CORE/INTERN.h + tlpkg/tlperl/lib/CORE/XSUB.h + tlpkg/tlperl/lib/CORE/arpa/inet.h + tlpkg/tlperl/lib/CORE/av.h + tlpkg/tlperl/lib/CORE/bitcount.h + tlpkg/tlperl/lib/CORE/charclass_invlists.h + tlpkg/tlperl/lib/CORE/config.h + tlpkg/tlperl/lib/CORE/cop.h + tlpkg/tlperl/lib/CORE/cv.h + tlpkg/tlperl/lib/CORE/dirent.h + tlpkg/tlperl/lib/CORE/dosish.h + tlpkg/tlperl/lib/CORE/ebcdic_tables.h + tlpkg/tlperl/lib/CORE/embed.h + tlpkg/tlperl/lib/CORE/embedvar.h + tlpkg/tlperl/lib/CORE/fakesdio.h + tlpkg/tlperl/lib/CORE/feature.h + tlpkg/tlperl/lib/CORE/form.h + tlpkg/tlperl/lib/CORE/git_version.h + tlpkg/tlperl/lib/CORE/gv.h + tlpkg/tlperl/lib/CORE/handy.h + tlpkg/tlperl/lib/CORE/hv.h + tlpkg/tlperl/lib/CORE/hv_func.h + tlpkg/tlperl/lib/CORE/hv_macro.h + tlpkg/tlperl/lib/CORE/inline.h + tlpkg/tlperl/lib/CORE/intrpvar.h + tlpkg/tlperl/lib/CORE/invlist_inline.h + tlpkg/tlperl/lib/CORE/iperlsys.h + tlpkg/tlperl/lib/CORE/keywords.h + tlpkg/tlperl/lib/CORE/l1_char_class_tab.h + tlpkg/tlperl/lib/CORE/libperl532.a + tlpkg/tlperl/lib/CORE/malloc_ctl.h + tlpkg/tlperl/lib/CORE/metaconfig.h + tlpkg/tlperl/lib/CORE/mg.h + tlpkg/tlperl/lib/CORE/mg_data.h + tlpkg/tlperl/lib/CORE/mg_raw.h + tlpkg/tlperl/lib/CORE/mg_vtable.h + tlpkg/tlperl/lib/CORE/mydtrace.h + tlpkg/tlperl/lib/CORE/netdb.h + tlpkg/tlperl/lib/CORE/nostdio.h + tlpkg/tlperl/lib/CORE/op.h + tlpkg/tlperl/lib/CORE/op_reg_common.h + tlpkg/tlperl/lib/CORE/opcode.h + tlpkg/tlperl/lib/CORE/opnames.h + tlpkg/tlperl/lib/CORE/overload.h + tlpkg/tlperl/lib/CORE/pad.h + tlpkg/tlperl/lib/CORE/parser.h + tlpkg/tlperl/lib/CORE/patchlevel.h + tlpkg/tlperl/lib/CORE/perl.h + tlpkg/tlperl/lib/CORE/perl_inc_macro.h + tlpkg/tlperl/lib/CORE/perl_langinfo.h + tlpkg/tlperl/lib/CORE/perlapi.h + tlpkg/tlperl/lib/CORE/perlhost.h + tlpkg/tlperl/lib/CORE/perlio.h + tlpkg/tlperl/lib/CORE/perliol.h + tlpkg/tlperl/lib/CORE/perlsdio.h + tlpkg/tlperl/lib/CORE/perlvars.h + tlpkg/tlperl/lib/CORE/perly.h + tlpkg/tlperl/lib/CORE/pp.h + tlpkg/tlperl/lib/CORE/pp_proto.h + tlpkg/tlperl/lib/CORE/proto.h + tlpkg/tlperl/lib/CORE/reentr.h + tlpkg/tlperl/lib/CORE/regcharclass.h + tlpkg/tlperl/lib/CORE/regcomp.h + tlpkg/tlperl/lib/CORE/regexp.h + tlpkg/tlperl/lib/CORE/regnodes.h + tlpkg/tlperl/lib/CORE/sbox32_hash.h + tlpkg/tlperl/lib/CORE/scope.h + tlpkg/tlperl/lib/CORE/stadtx_hash.h + tlpkg/tlperl/lib/CORE/sv.h + tlpkg/tlperl/lib/CORE/sys/errno2.h + tlpkg/tlperl/lib/CORE/sys/socket.h + tlpkg/tlperl/lib/CORE/thread.h + tlpkg/tlperl/lib/CORE/time64.h + tlpkg/tlperl/lib/CORE/time64_config.h + tlpkg/tlperl/lib/CORE/uconfig.h + tlpkg/tlperl/lib/CORE/uni_keywords.h + tlpkg/tlperl/lib/CORE/unicode_constants.h + tlpkg/tlperl/lib/CORE/unixish.h + tlpkg/tlperl/lib/CORE/utf8.h + tlpkg/tlperl/lib/CORE/utfebcdic.h + tlpkg/tlperl/lib/CORE/util.h + tlpkg/tlperl/lib/CORE/uudmap.h + tlpkg/tlperl/lib/CORE/vdir.h + tlpkg/tlperl/lib/CORE/vmem.h + tlpkg/tlperl/lib/CORE/vutil.h + tlpkg/tlperl/lib/CORE/warnings.h + tlpkg/tlperl/lib/CORE/win32.h + tlpkg/tlperl/lib/CORE/win32iop.h + tlpkg/tlperl/lib/CORE/win32thread.h + tlpkg/tlperl/lib/CORE/zaphod32_hash.h + tlpkg/tlperl/lib/CPAN.pm + tlpkg/tlperl/lib/CPAN/API/HOWTO.pod + tlpkg/tlperl/lib/CPAN/Author.pm + tlpkg/tlperl/lib/CPAN/Bundle.pm + tlpkg/tlperl/lib/CPAN/CacheMgr.pm + tlpkg/tlperl/lib/CPAN/Complete.pm + tlpkg/tlperl/lib/CPAN/Debug.pm + tlpkg/tlperl/lib/CPAN/DeferredCode.pm + tlpkg/tlperl/lib/CPAN/Distribution.pm + tlpkg/tlperl/lib/CPAN/Distroprefs.pm + tlpkg/tlperl/lib/CPAN/Distrostatus.pm + tlpkg/tlperl/lib/CPAN/Exception/RecursiveDependency.pm + tlpkg/tlperl/lib/CPAN/Exception/blocked_urllist.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_not_installed.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_process_error.pm + tlpkg/tlperl/lib/CPAN/FTP.pm + tlpkg/tlperl/lib/CPAN/FTP/netrc.pm + tlpkg/tlperl/lib/CPAN/FirstTime.pm + tlpkg/tlperl/lib/CPAN/HTTP/Client.pm + tlpkg/tlperl/lib/CPAN/HTTP/Credentials.pm + tlpkg/tlperl/lib/CPAN/HandleConfig.pm + tlpkg/tlperl/lib/CPAN/Index.pm + tlpkg/tlperl/lib/CPAN/InfoObj.pm + tlpkg/tlperl/lib/CPAN/Kwalify.pm + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.dd + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.yml + tlpkg/tlperl/lib/CPAN/LWP/UserAgent.pm + tlpkg/tlperl/lib/CPAN/Meta.pm + tlpkg/tlperl/lib/CPAN/Meta/Converter.pm + tlpkg/tlperl/lib/CPAN/Meta/Feature.pm + tlpkg/tlperl/lib/CPAN/Meta/History.pm + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_0.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_1.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_2.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_3.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_4.pod + tlpkg/tlperl/lib/CPAN/Meta/Merge.pm + tlpkg/tlperl/lib/CPAN/Meta/Prereqs.pm + tlpkg/tlperl/lib/CPAN/Meta/Requirements.pm + tlpkg/tlperl/lib/CPAN/Meta/Spec.pm + tlpkg/tlperl/lib/CPAN/Meta/Validator.pm + tlpkg/tlperl/lib/CPAN/Meta/YAML.pm + tlpkg/tlperl/lib/CPAN/Mirrors.pm + tlpkg/tlperl/lib/CPAN/Module.pm + tlpkg/tlperl/lib/CPAN/Nox.pm + tlpkg/tlperl/lib/CPAN/Plugin.pm + tlpkg/tlperl/lib/CPAN/Plugin/Specfile.pm + tlpkg/tlperl/lib/CPAN/Prompt.pm + tlpkg/tlperl/lib/CPAN/Queue.pm + tlpkg/tlperl/lib/CPAN/Shell.pm + tlpkg/tlperl/lib/CPAN/Tarzip.pm + tlpkg/tlperl/lib/CPAN/URL.pm + tlpkg/tlperl/lib/CPAN/Version.pm + tlpkg/tlperl/lib/Carp.pm + tlpkg/tlperl/lib/Carp/Heavy.pm + tlpkg/tlperl/lib/Class/Struct.pm + tlpkg/tlperl/lib/Compress/Raw/Bzip2.pm + tlpkg/tlperl/lib/Compress/Raw/Zlib.pm + tlpkg/tlperl/lib/Compress/Zlib.pm + tlpkg/tlperl/lib/Config.pm + tlpkg/tlperl/lib/Config.pm.orig + tlpkg/tlperl/lib/Config.pod + tlpkg/tlperl/lib/Config/Extensions.pm + tlpkg/tlperl/lib/Config/Perl/V.pm + tlpkg/tlperl/lib/Config_git.pl + tlpkg/tlperl/lib/Config_heavy.pl + tlpkg/tlperl/lib/Config_heavy.pl.orig + tlpkg/tlperl/lib/Cwd.pm + tlpkg/tlperl/lib/DB.pm + tlpkg/tlperl/lib/DBM_Filter.pm + tlpkg/tlperl/lib/DBM_Filter/compress.pm + tlpkg/tlperl/lib/DBM_Filter/encode.pm + tlpkg/tlperl/lib/DBM_Filter/int32.pm + tlpkg/tlperl/lib/DBM_Filter/null.pm + tlpkg/tlperl/lib/DBM_Filter/utf8.pm + tlpkg/tlperl/lib/Data/Dumper.pm + tlpkg/tlperl/lib/Devel/PPPort.pm + tlpkg/tlperl/lib/Devel/Peek.pm + tlpkg/tlperl/lib/Devel/SelfStubber.pm + tlpkg/tlperl/lib/Digest.pm + tlpkg/tlperl/lib/Digest/MD5.pm + tlpkg/tlperl/lib/Digest/SHA.pm + tlpkg/tlperl/lib/Digest/base.pm + tlpkg/tlperl/lib/Digest/file.pm + tlpkg/tlperl/lib/DirHandle.pm + tlpkg/tlperl/lib/Dumpvalue.pm + tlpkg/tlperl/lib/DynaLoader.pm + tlpkg/tlperl/lib/Encode.pm + tlpkg/tlperl/lib/Encode/Alias.pm + tlpkg/tlperl/lib/Encode/Byte.pm + tlpkg/tlperl/lib/Encode/CJKConstants.pm + tlpkg/tlperl/lib/Encode/CN.pm + tlpkg/tlperl/lib/Encode/CN/HZ.pm + tlpkg/tlperl/lib/Encode/Changes.e2x + tlpkg/tlperl/lib/Encode/Config.pm + tlpkg/tlperl/lib/Encode/ConfigLocal_PM.e2x + tlpkg/tlperl/lib/Encode/EBCDIC.pm + tlpkg/tlperl/lib/Encode/Encoder.pm + tlpkg/tlperl/lib/Encode/Encoding.pm + tlpkg/tlperl/lib/Encode/GSM0338.pm + tlpkg/tlperl/lib/Encode/Guess.pm + tlpkg/tlperl/lib/Encode/JP.pm + tlpkg/tlperl/lib/Encode/JP/H2Z.pm + tlpkg/tlperl/lib/Encode/JP/JIS7.pm + tlpkg/tlperl/lib/Encode/KR.pm + tlpkg/tlperl/lib/Encode/KR/2022_KR.pm + tlpkg/tlperl/lib/Encode/MIME/Header.pm + tlpkg/tlperl/lib/Encode/MIME/Header/ISO_2022_JP.pm + tlpkg/tlperl/lib/Encode/MIME/Name.pm + tlpkg/tlperl/lib/Encode/Makefile_PL.e2x + tlpkg/tlperl/lib/Encode/PerlIO.pod + tlpkg/tlperl/lib/Encode/README.e2x + tlpkg/tlperl/lib/Encode/Supported.pod + tlpkg/tlperl/lib/Encode/Symbol.pm + tlpkg/tlperl/lib/Encode/TW.pm + tlpkg/tlperl/lib/Encode/Unicode.pm + tlpkg/tlperl/lib/Encode/Unicode/UTF7.pm + tlpkg/tlperl/lib/Encode/_PM.e2x + tlpkg/tlperl/lib/Encode/_T.e2x + tlpkg/tlperl/lib/Encode/encode.h + tlpkg/tlperl/lib/English.pm + tlpkg/tlperl/lib/Env.pm + tlpkg/tlperl/lib/Errno.pm + tlpkg/tlperl/lib/Exporter.pm + tlpkg/tlperl/lib/Exporter/Heavy.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm + tlpkg/tlperl/lib/ExtUtils/Command.pm + tlpkg/tlperl/lib/ExtUtils/Command/MM.pm + tlpkg/tlperl/lib/ExtUtils/Constant.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Base.pm + tlpkg/tlperl/lib/ExtUtils/Constant/ProxySubs.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Utils.pm + tlpkg/tlperl/lib/ExtUtils/Constant/XS.pm + tlpkg/tlperl/lib/ExtUtils/Embed.pm + tlpkg/tlperl/lib/ExtUtils/Install.pm + tlpkg/tlperl/lib/ExtUtils/Installed.pm + tlpkg/tlperl/lib/ExtUtils/Liblist.pm + tlpkg/tlperl/lib/ExtUtils/Liblist/Kid.pm + tlpkg/tlperl/lib/ExtUtils/MANIFEST.SKIP + tlpkg/tlperl/lib/ExtUtils/MM.pm + tlpkg/tlperl/lib/ExtUtils/MM_AIX.pm + tlpkg/tlperl/lib/ExtUtils/MM_Any.pm + tlpkg/tlperl/lib/ExtUtils/MM_BeOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Cygwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_DOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_MacOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_NW5.pm + tlpkg/tlperl/lib/ExtUtils/MM_OS2.pm + tlpkg/tlperl/lib/ExtUtils/MM_QNX.pm + tlpkg/tlperl/lib/ExtUtils/MM_UWIN.pm + tlpkg/tlperl/lib/ExtUtils/MM_Unix.pm + tlpkg/tlperl/lib/ExtUtils/MM_VMS.pm + tlpkg/tlperl/lib/ExtUtils/MM_VOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win32.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win95.pm + tlpkg/tlperl/lib/ExtUtils/MY.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Config.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/FAQ.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Locale.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Tutorial.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/version.pm + tlpkg/tlperl/lib/ExtUtils/Manifest.pm + tlpkg/tlperl/lib/ExtUtils/Miniperl.pm + tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm + tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm + tlpkg/tlperl/lib/ExtUtils/Packlist.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pod + tlpkg/tlperl/lib/ExtUtils/ParseXS/Constants.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/CountLines.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Eval.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Utilities.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Cmd.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/InputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/OutputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Type.pm + tlpkg/tlperl/lib/ExtUtils/testlib.pm + tlpkg/tlperl/lib/ExtUtils/typemap + tlpkg/tlperl/lib/ExtUtils/xsubpp + tlpkg/tlperl/lib/Fatal.pm + tlpkg/tlperl/lib/Fcntl.pm + tlpkg/tlperl/lib/File/Basename.pm + tlpkg/tlperl/lib/File/Compare.pm + tlpkg/tlperl/lib/File/Copy.pm + tlpkg/tlperl/lib/File/DosGlob.pm + tlpkg/tlperl/lib/File/Fetch.pm + tlpkg/tlperl/lib/File/Find.pm + tlpkg/tlperl/lib/File/Glob.pm + tlpkg/tlperl/lib/File/GlobMapper.pm + tlpkg/tlperl/lib/File/Path.pm + tlpkg/tlperl/lib/File/Spec.pm + tlpkg/tlperl/lib/File/Spec/AmigaOS.pm + tlpkg/tlperl/lib/File/Spec/Cygwin.pm + tlpkg/tlperl/lib/File/Spec/Epoc.pm + tlpkg/tlperl/lib/File/Spec/Functions.pm + tlpkg/tlperl/lib/File/Spec/Mac.pm + tlpkg/tlperl/lib/File/Spec/OS2.pm + tlpkg/tlperl/lib/File/Spec/Unix.pm + tlpkg/tlperl/lib/File/Spec/VMS.pm + tlpkg/tlperl/lib/File/Spec/Win32.pm + tlpkg/tlperl/lib/File/Temp.pm + tlpkg/tlperl/lib/File/stat.pm + tlpkg/tlperl/lib/FileCache.pm + tlpkg/tlperl/lib/FileHandle.pm + tlpkg/tlperl/lib/Filter/Simple.pm + tlpkg/tlperl/lib/Filter/Util/Call.pm + tlpkg/tlperl/lib/FindBin.pm + tlpkg/tlperl/lib/Getopt/Long.pm + tlpkg/tlperl/lib/Getopt/Std.pm + tlpkg/tlperl/lib/HTTP/Tiny.pm + tlpkg/tlperl/lib/Hash/Util.pm + tlpkg/tlperl/lib/Hash/Util/FieldHash.pm + tlpkg/tlperl/lib/I18N/Collate.pm + tlpkg/tlperl/lib/I18N/LangTags.pm + tlpkg/tlperl/lib/I18N/LangTags/Detect.pm + tlpkg/tlperl/lib/I18N/LangTags/List.pm + tlpkg/tlperl/lib/I18N/Langinfo.pm + tlpkg/tlperl/lib/IO.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Compress/Base.pm + tlpkg/tlperl/lib/IO/Compress/Base/Common.pm + tlpkg/tlperl/lib/IO/Compress/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/FAQ.pod + tlpkg/tlperl/lib/IO/Compress/Gzip.pm + tlpkg/tlperl/lib/IO/Compress/Gzip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/RawDeflate.pm + tlpkg/tlperl/lib/IO/Compress/Zip.pm + tlpkg/tlperl/lib/IO/Compress/Zip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Extra.pm + tlpkg/tlperl/lib/IO/Dir.pm + tlpkg/tlperl/lib/IO/File.pm + tlpkg/tlperl/lib/IO/Handle.pm + tlpkg/tlperl/lib/IO/Pipe.pm + tlpkg/tlperl/lib/IO/Poll.pm + tlpkg/tlperl/lib/IO/Seekable.pm + tlpkg/tlperl/lib/IO/Select.pm + tlpkg/tlperl/lib/IO/Socket.pm + tlpkg/tlperl/lib/IO/Socket/INET.pm + tlpkg/tlperl/lib/IO/Socket/IP.pm + tlpkg/tlperl/lib/IO/Socket/UNIX.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyUncompress.pm + tlpkg/tlperl/lib/IO/Uncompress/Base.pm + tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Gunzip.pm + tlpkg/tlperl/lib/IO/Uncompress/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/RawInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm + tlpkg/tlperl/lib/IO/Zlib.pm + tlpkg/tlperl/lib/IPC/Cmd.pm + tlpkg/tlperl/lib/IPC/Open2.pm + tlpkg/tlperl/lib/IPC/Open3.pm + tlpkg/tlperl/lib/Internals.pod + tlpkg/tlperl/lib/JSON/PP.pm + tlpkg/tlperl/lib/JSON/PP/Boolean.pm + tlpkg/tlperl/lib/List/Util.pm + tlpkg/tlperl/lib/List/Util/XS.pm + tlpkg/tlperl/lib/Locale/Maketext.pm + tlpkg/tlperl/lib/Locale/Maketext.pod + tlpkg/tlperl/lib/Locale/Maketext/Cookbook.pod + tlpkg/tlperl/lib/Locale/Maketext/Guts.pm + tlpkg/tlperl/lib/Locale/Maketext/GutsLoader.pm + tlpkg/tlperl/lib/Locale/Maketext/Simple.pm + tlpkg/tlperl/lib/Locale/Maketext/TPJ13.pod + tlpkg/tlperl/lib/MIME/Base64.pm + tlpkg/tlperl/lib/MIME/QuotedPrint.pm + tlpkg/tlperl/lib/Math/BigFloat.pm + tlpkg/tlperl/lib/Math/BigFloat/Trace.pm + tlpkg/tlperl/lib/Math/BigInt.pm + tlpkg/tlperl/lib/Math/BigInt/Calc.pm + tlpkg/tlperl/lib/Math/BigInt/FastCalc.pm + tlpkg/tlperl/lib/Math/BigInt/Lib.pm + tlpkg/tlperl/lib/Math/BigInt/Trace.pm + tlpkg/tlperl/lib/Math/BigRat.pm + tlpkg/tlperl/lib/Math/Complex.pm + tlpkg/tlperl/lib/Math/Trig.pm + tlpkg/tlperl/lib/Memoize.pm + tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm + tlpkg/tlperl/lib/Memoize/Expire.pm + tlpkg/tlperl/lib/Memoize/ExpireFile.pm + tlpkg/tlperl/lib/Memoize/ExpireTest.pm + tlpkg/tlperl/lib/Memoize/NDBM_File.pm + tlpkg/tlperl/lib/Memoize/SDBM_File.pm + tlpkg/tlperl/lib/Memoize/Storable.pm + tlpkg/tlperl/lib/Module/CoreList.pm + tlpkg/tlperl/lib/Module/CoreList.pod + tlpkg/tlperl/lib/Module/CoreList/Utils.pm + tlpkg/tlperl/lib/Module/Load.pm + tlpkg/tlperl/lib/Module/Load/Conditional.pm + tlpkg/tlperl/lib/Module/Loaded.pm + tlpkg/tlperl/lib/Module/Metadata.pm + tlpkg/tlperl/lib/NEXT.pm + tlpkg/tlperl/lib/Net/Cmd.pm + tlpkg/tlperl/lib/Net/Config.pm + tlpkg/tlperl/lib/Net/Domain.pm + tlpkg/tlperl/lib/Net/FTP.pm + tlpkg/tlperl/lib/Net/FTP/A.pm + tlpkg/tlperl/lib/Net/FTP/E.pm + tlpkg/tlperl/lib/Net/FTP/I.pm + tlpkg/tlperl/lib/Net/FTP/L.pm + tlpkg/tlperl/lib/Net/FTP/dataconn.pm + tlpkg/tlperl/lib/Net/NNTP.pm + tlpkg/tlperl/lib/Net/Netrc.pm + tlpkg/tlperl/lib/Net/POP3.pm + tlpkg/tlperl/lib/Net/Ping.pm + tlpkg/tlperl/lib/Net/SMTP.pm + tlpkg/tlperl/lib/Net/Time.pm + tlpkg/tlperl/lib/Net/hostent.pm + tlpkg/tlperl/lib/Net/libnetFAQ.pod + tlpkg/tlperl/lib/Net/netent.pm + tlpkg/tlperl/lib/Net/protoent.pm + tlpkg/tlperl/lib/Net/servent.pm + tlpkg/tlperl/lib/O.pm + tlpkg/tlperl/lib/Opcode.pm + tlpkg/tlperl/lib/POSIX.pm + tlpkg/tlperl/lib/POSIX.pod + tlpkg/tlperl/lib/Params/Check.pm + tlpkg/tlperl/lib/Parse/CPAN/Meta.pm + tlpkg/tlperl/lib/Perl/OSType.pm + tlpkg/tlperl/lib/PerlIO.pm + tlpkg/tlperl/lib/PerlIO/encoding.pm + tlpkg/tlperl/lib/PerlIO/mmap.pm + tlpkg/tlperl/lib/PerlIO/scalar.pm + tlpkg/tlperl/lib/PerlIO/via.pm + tlpkg/tlperl/lib/PerlIO/via/QuotedPrint.pm + tlpkg/tlperl/lib/Pod/Checker.pm + tlpkg/tlperl/lib/Pod/Escapes.pm + tlpkg/tlperl/lib/Pod/Functions.pm + tlpkg/tlperl/lib/Pod/Html.pm + tlpkg/tlperl/lib/Pod/Man.pm + tlpkg/tlperl/lib/Pod/ParseLink.pm + tlpkg/tlperl/lib/Pod/Perldoc.pm + tlpkg/tlperl/lib/Pod/Perldoc/BaseTo.pm + tlpkg/tlperl/lib/Pod/Perldoc/GetOptsOO.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToANSI.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToChecker.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToMan.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToNroff.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToPod.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToRtf.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTerm.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTk.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToXml.pm + tlpkg/tlperl/lib/Pod/Simple.pm + tlpkg/tlperl/lib/Pod/Simple.pod + tlpkg/tlperl/lib/Pod/Simple/BlackBox.pm + tlpkg/tlperl/lib/Pod/Simple/Checker.pm + tlpkg/tlperl/lib/Pod/Simple/Debug.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsText.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsXML.pm + tlpkg/tlperl/lib/Pod/Simple/HTML.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLBatch.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLLegacy.pm + tlpkg/tlperl/lib/Pod/Simple/JustPod.pm + tlpkg/tlperl/lib/Pod/Simple/LinkSection.pm + tlpkg/tlperl/lib/Pod/Simple/Methody.pm + tlpkg/tlperl/lib/Pod/Simple/Progress.pm + tlpkg/tlperl/lib/Pod/Simple/PullParser.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserEndToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserStartToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserTextToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserToken.pm + tlpkg/tlperl/lib/Pod/Simple/RTF.pm + tlpkg/tlperl/lib/Pod/Simple/Search.pm + tlpkg/tlperl/lib/Pod/Simple/SimpleTree.pm + tlpkg/tlperl/lib/Pod/Simple/Subclassing.pod + tlpkg/tlperl/lib/Pod/Simple/Text.pm + tlpkg/tlperl/lib/Pod/Simple/TextContent.pm + tlpkg/tlperl/lib/Pod/Simple/TiedOutFH.pm + tlpkg/tlperl/lib/Pod/Simple/Transcode.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeDumb.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeSmart.pm + tlpkg/tlperl/lib/Pod/Simple/XHTML.pm + tlpkg/tlperl/lib/Pod/Simple/XMLOutStream.pm + tlpkg/tlperl/lib/Pod/Text.pm + tlpkg/tlperl/lib/Pod/Text/Color.pm + tlpkg/tlperl/lib/Pod/Text/Overstrike.pm + tlpkg/tlperl/lib/Pod/Text/Termcap.pm + tlpkg/tlperl/lib/Pod/Usage.pm + tlpkg/tlperl/lib/SDBM_File.pm + tlpkg/tlperl/lib/Safe.pm + tlpkg/tlperl/lib/Scalar/Util.pm + tlpkg/tlperl/lib/Search/Dict.pm + tlpkg/tlperl/lib/SelectSaver.pm + tlpkg/tlperl/lib/SelfLoader.pm + tlpkg/tlperl/lib/Socket.pm + tlpkg/tlperl/lib/Storable.pm + tlpkg/tlperl/lib/Sub/Util.pm + tlpkg/tlperl/lib/Symbol.pm + tlpkg/tlperl/lib/Sys/Hostname.pm + tlpkg/tlperl/lib/TAP/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Color.pm + tlpkg/tlperl/lib/TAP/Formatter/Console.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/ParallelSession.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/File.pm + tlpkg/tlperl/lib/TAP/Formatter/File/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/Session.pm + tlpkg/tlperl/lib/TAP/Harness.pm + tlpkg/tlperl/lib/TAP/Harness/Beyond.pod + tlpkg/tlperl/lib/TAP/Harness/Env.pm + tlpkg/tlperl/lib/TAP/Object.pm + tlpkg/tlperl/lib/TAP/Parser.pm + tlpkg/tlperl/lib/TAP/Parser/Aggregator.pm + tlpkg/tlperl/lib/TAP/Parser/Grammar.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Array.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Process.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Stream.pm + tlpkg/tlperl/lib/TAP/Parser/IteratorFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Multiplexer.pm + tlpkg/tlperl/lib/TAP/Parser/Result.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Bailout.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Comment.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Plan.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Pragma.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Test.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Unknown.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Version.pm + tlpkg/tlperl/lib/TAP/Parser/Result/YAML.pm + tlpkg/tlperl/lib/TAP/Parser/ResultFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Job.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Spinner.pm + tlpkg/tlperl/lib/TAP/Parser/Source.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Executable.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/File.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Handle.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Perl.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/RawTAP.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Reader.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Writer.pm + tlpkg/tlperl/lib/Term/ANSIColor.pm + tlpkg/tlperl/lib/Term/Cap.pm + tlpkg/tlperl/lib/Term/Complete.pm + tlpkg/tlperl/lib/Term/ReadLine.pm + tlpkg/tlperl/lib/Test.pm + tlpkg/tlperl/lib/Test/Builder.pm + tlpkg/tlperl/lib/Test/Builder/Formatter.pm + tlpkg/tlperl/lib/Test/Builder/IO/Scalar.pm + tlpkg/tlperl/lib/Test/Builder/Module.pm + tlpkg/tlperl/lib/Test/Builder/Tester.pm + tlpkg/tlperl/lib/Test/Builder/Tester/Color.pm + tlpkg/tlperl/lib/Test/Builder/TodoDiag.pm + tlpkg/tlperl/lib/Test/Harness.pm + tlpkg/tlperl/lib/Test/More.pm + tlpkg/tlperl/lib/Test/Simple.pm + tlpkg/tlperl/lib/Test/Tester.pm + tlpkg/tlperl/lib/Test/Tester/Capture.pm + tlpkg/tlperl/lib/Test/Tester/CaptureRunner.pm + tlpkg/tlperl/lib/Test/Tester/Delegate.pm + tlpkg/tlperl/lib/Test/Tutorial.pod + tlpkg/tlperl/lib/Test/use/ok.pm + tlpkg/tlperl/lib/Test2.pm + tlpkg/tlperl/lib/Test2/API.pm + tlpkg/tlperl/lib/Test2/API/Breakage.pm + tlpkg/tlperl/lib/Test2/API/Context.pm + tlpkg/tlperl/lib/Test2/API/Instance.pm + tlpkg/tlperl/lib/Test2/API/Stack.pm + tlpkg/tlperl/lib/Test2/Event.pm + tlpkg/tlperl/lib/Test2/Event/Bail.pm + tlpkg/tlperl/lib/Test2/Event/Diag.pm + tlpkg/tlperl/lib/Test2/Event/Encoding.pm + tlpkg/tlperl/lib/Test2/Event/Exception.pm + tlpkg/tlperl/lib/Test2/Event/Fail.pm + tlpkg/tlperl/lib/Test2/Event/Generic.pm + tlpkg/tlperl/lib/Test2/Event/Note.pm + tlpkg/tlperl/lib/Test2/Event/Ok.pm + tlpkg/tlperl/lib/Test2/Event/Pass.pm + tlpkg/tlperl/lib/Test2/Event/Plan.pm + tlpkg/tlperl/lib/Test2/Event/Skip.pm + tlpkg/tlperl/lib/Test2/Event/Subtest.pm + tlpkg/tlperl/lib/Test2/Event/TAP/Version.pm + tlpkg/tlperl/lib/Test2/Event/V2.pm + tlpkg/tlperl/lib/Test2/Event/Waiting.pm + tlpkg/tlperl/lib/Test2/EventFacet.pm + tlpkg/tlperl/lib/Test2/EventFacet/About.pm + tlpkg/tlperl/lib/Test2/EventFacet/Amnesty.pm + tlpkg/tlperl/lib/Test2/EventFacet/Assert.pm + tlpkg/tlperl/lib/Test2/EventFacet/Control.pm + tlpkg/tlperl/lib/Test2/EventFacet/Error.pm + tlpkg/tlperl/lib/Test2/EventFacet/Hub.pm + tlpkg/tlperl/lib/Test2/EventFacet/Info.pm + tlpkg/tlperl/lib/Test2/EventFacet/Info/Table.pm + tlpkg/tlperl/lib/Test2/EventFacet/Meta.pm + tlpkg/tlperl/lib/Test2/EventFacet/Parent.pm + tlpkg/tlperl/lib/Test2/EventFacet/Plan.pm + tlpkg/tlperl/lib/Test2/EventFacet/Render.pm + tlpkg/tlperl/lib/Test2/EventFacet/Trace.pm + tlpkg/tlperl/lib/Test2/Formatter.pm + tlpkg/tlperl/lib/Test2/Formatter/TAP.pm + tlpkg/tlperl/lib/Test2/Hub.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor/Terminator.pm + tlpkg/tlperl/lib/Test2/Hub/Subtest.pm + tlpkg/tlperl/lib/Test2/IPC.pm + tlpkg/tlperl/lib/Test2/IPC/Driver.pm + tlpkg/tlperl/lib/Test2/IPC/Driver/Files.pm + tlpkg/tlperl/lib/Test2/Tools/Tiny.pm + tlpkg/tlperl/lib/Test2/Transition.pod + tlpkg/tlperl/lib/Test2/Util.pm + tlpkg/tlperl/lib/Test2/Util/ExternalMeta.pm + tlpkg/tlperl/lib/Test2/Util/Facets2Legacy.pm + tlpkg/tlperl/lib/Test2/Util/HashBase.pm + tlpkg/tlperl/lib/Test2/Util/Trace.pm + tlpkg/tlperl/lib/Text/Abbrev.pm + tlpkg/tlperl/lib/Text/Balanced.pm + tlpkg/tlperl/lib/Text/ParseWords.pm + tlpkg/tlperl/lib/Text/Tabs.pm + tlpkg/tlperl/lib/Text/Wrap.pm + tlpkg/tlperl/lib/Thread.pm + tlpkg/tlperl/lib/Thread/Queue.pm + tlpkg/tlperl/lib/Thread/Semaphore.pm + tlpkg/tlperl/lib/Tie/Array.pm + tlpkg/tlperl/lib/Tie/File.pm + tlpkg/tlperl/lib/Tie/Handle.pm + tlpkg/tlperl/lib/Tie/Hash.pm + tlpkg/tlperl/lib/Tie/Hash/NamedCapture.pm + tlpkg/tlperl/lib/Tie/Memoize.pm + tlpkg/tlperl/lib/Tie/RefHash.pm + tlpkg/tlperl/lib/Tie/Scalar.pm + tlpkg/tlperl/lib/Tie/StdHandle.pm + tlpkg/tlperl/lib/Tie/SubstrHash.pm + tlpkg/tlperl/lib/Time/HiRes.pm + tlpkg/tlperl/lib/Time/Local.pm + tlpkg/tlperl/lib/Time/Piece.pm + tlpkg/tlperl/lib/Time/Seconds.pm + tlpkg/tlperl/lib/Time/gmtime.pm + tlpkg/tlperl/lib/Time/localtime.pm + tlpkg/tlperl/lib/Time/tm.pm + tlpkg/tlperl/lib/UNIVERSAL.pm + tlpkg/tlperl/lib/Unicode/Collate.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Big5.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/GB2312.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/JISX0208.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Korean.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Pinyin.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Stroke.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Zhuyin.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale/af.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ar.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/as.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/az.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/be.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/bn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cs.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/da.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_at_ph.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/dsb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ee.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/eo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es_trad.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/et.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fil.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fr_ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/gu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ha.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/haw.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/he.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ig.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/is.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ja.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ko.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kok.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lkt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ln.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ml.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nso.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/om.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/or.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ro.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/se.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si_dict.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sq.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv_refo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ta.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/te.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/th.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/to.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ug_cyrl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/uk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ur.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wae.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/yo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_big5.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_gb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_pin.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_strk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_zhu.pl + tlpkg/tlperl/lib/Unicode/Collate/allkeys.txt + tlpkg/tlperl/lib/Unicode/Collate/keys.txt + tlpkg/tlperl/lib/Unicode/Normalize.pm + tlpkg/tlperl/lib/Unicode/UCD.pm + tlpkg/tlperl/lib/User/grent.pm + tlpkg/tlperl/lib/User/pwent.pm + tlpkg/tlperl/lib/Win32.pm + tlpkg/tlperl/lib/Win32API/File.pm + tlpkg/tlperl/lib/Win32API/File/cFile.pc + tlpkg/tlperl/lib/Win32CORE.pm + tlpkg/tlperl/lib/XSLoader.pm + tlpkg/tlperl/lib/_charnames.pm + tlpkg/tlperl/lib/attributes.pm + tlpkg/tlperl/lib/auto/B/B.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Bzip2/Bzip2.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Zlib/Zlib.dll + tlpkg/tlperl/lib/auto/Cwd/Cwd.dll + tlpkg/tlperl/lib/auto/Data/Dumper/Dumper.dll + tlpkg/tlperl/lib/auto/Devel/Peek/Peek.dll + tlpkg/tlperl/lib/auto/Digest/MD5/MD5.dll + tlpkg/tlperl/lib/auto/Digest/SHA/SHA.dll + tlpkg/tlperl/lib/auto/Encode/Byte/Byte.dll + tlpkg/tlperl/lib/auto/Encode/CN/CN.dll + tlpkg/tlperl/lib/auto/Encode/EBCDIC/EBCDIC.dll + tlpkg/tlperl/lib/auto/Encode/Encode.dll + tlpkg/tlperl/lib/auto/Encode/JP/JP.dll + tlpkg/tlperl/lib/auto/Encode/KR/KR.dll + tlpkg/tlperl/lib/auto/Encode/Symbol/Symbol.dll + tlpkg/tlperl/lib/auto/Encode/TW/TW.dll + tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.dll + tlpkg/tlperl/lib/auto/Fcntl/Fcntl.dll + tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.dll + tlpkg/tlperl/lib/auto/File/Glob/Glob.dll + tlpkg/tlperl/lib/auto/Filter/Util/Call/Call.dll + tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.dll + tlpkg/tlperl/lib/auto/Hash/Util/Util.dll + tlpkg/tlperl/lib/auto/I18N/Langinfo/Langinfo.dll + tlpkg/tlperl/lib/auto/IO/IO.dll + tlpkg/tlperl/lib/auto/List/Util/Util.dll + tlpkg/tlperl/lib/auto/MIME/Base64/Base64.dll + tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.dll + tlpkg/tlperl/lib/auto/Opcode/Opcode.dll + tlpkg/tlperl/lib/auto/POSIX/POSIX.dll + tlpkg/tlperl/lib/auto/PerlIO/encoding/encoding.dll + tlpkg/tlperl/lib/auto/PerlIO/mmap/mmap.dll + tlpkg/tlperl/lib/auto/PerlIO/scalar/scalar.dll + tlpkg/tlperl/lib/auto/PerlIO/via/via.dll + tlpkg/tlperl/lib/auto/SDBM_File/SDBM_File.dll + tlpkg/tlperl/lib/auto/Socket/Socket.dll + tlpkg/tlperl/lib/auto/Storable/Storable.dll + tlpkg/tlperl/lib/auto/Sys/Hostname/Hostname.dll + tlpkg/tlperl/lib/auto/Time/HiRes/HiRes.dll + tlpkg/tlperl/lib/auto/Time/Piece/Piece.dll + tlpkg/tlperl/lib/auto/Unicode/Collate/Collate.dll + tlpkg/tlperl/lib/auto/Unicode/Normalize/Normalize.dll + tlpkg/tlperl/lib/auto/Win32/Win32.dll + tlpkg/tlperl/lib/auto/Win32API/File/File.dll + tlpkg/tlperl/lib/auto/Win32CORE/extralibs.ld + tlpkg/tlperl/lib/auto/attributes/attributes.dll + tlpkg/tlperl/lib/auto/mro/mro.dll + tlpkg/tlperl/lib/auto/re/re.dll + tlpkg/tlperl/lib/auto/threads/shared/shared.dll + tlpkg/tlperl/lib/auto/threads/threads.dll + tlpkg/tlperl/lib/autodie.pm + tlpkg/tlperl/lib/autodie/Scope/Guard.pm + tlpkg/tlperl/lib/autodie/Scope/GuardStack.pm + tlpkg/tlperl/lib/autodie/Util.pm + tlpkg/tlperl/lib/autodie/exception.pm + tlpkg/tlperl/lib/autodie/exception/system.pm + tlpkg/tlperl/lib/autodie/hints.pm + tlpkg/tlperl/lib/autodie/skip.pm + tlpkg/tlperl/lib/autouse.pm + tlpkg/tlperl/lib/base.pm + tlpkg/tlperl/lib/bigint.pm + tlpkg/tlperl/lib/bignum.pm + tlpkg/tlperl/lib/bigrat.pm + tlpkg/tlperl/lib/blib.pm + tlpkg/tlperl/lib/bytes.pm + tlpkg/tlperl/lib/bytes_heavy.pl + tlpkg/tlperl/lib/charnames.pm + tlpkg/tlperl/lib/constant.pm + tlpkg/tlperl/lib/deprecate.pm + tlpkg/tlperl/lib/diagnostics.pm + tlpkg/tlperl/lib/dumpvar.pl + tlpkg/tlperl/lib/encoding.pm + tlpkg/tlperl/lib/encoding/warnings.pm + tlpkg/tlperl/lib/experimental.pm + tlpkg/tlperl/lib/feature.pm + tlpkg/tlperl/lib/fields.pm + tlpkg/tlperl/lib/filetest.pm + tlpkg/tlperl/lib/if.pm + tlpkg/tlperl/lib/integer.pm + tlpkg/tlperl/lib/less.pm + tlpkg/tlperl/lib/lib.pm + tlpkg/tlperl/lib/locale.pm + tlpkg/tlperl/lib/meta_notation.pm + tlpkg/tlperl/lib/mro.pm + tlpkg/tlperl/lib/ok.pm + tlpkg/tlperl/lib/open.pm + tlpkg/tlperl/lib/ops.pm + tlpkg/tlperl/lib/overload.pm + tlpkg/tlperl/lib/overload/numbers.pm + tlpkg/tlperl/lib/overloading.pm + tlpkg/tlperl/lib/parent.pm + tlpkg/tlperl/lib/perl5db.pl + tlpkg/tlperl/lib/perlfaq.pm + tlpkg/tlperl/lib/perllocal.pod + tlpkg/tlperl/lib/re.pm + tlpkg/tlperl/lib/sigtrap.pm + tlpkg/tlperl/lib/sort.pm + tlpkg/tlperl/lib/strict.pm + tlpkg/tlperl/lib/subs.pm + tlpkg/tlperl/lib/threads.pm + tlpkg/tlperl/lib/threads/shared.pm + tlpkg/tlperl/lib/unicore/Blocks.txt + tlpkg/tlperl/lib/unicore/CombiningClass.pl + tlpkg/tlperl/lib/unicore/Decomposition.pl + tlpkg/tlperl/lib/unicore/Name.pl + tlpkg/tlperl/lib/unicore/Name.pm + tlpkg/tlperl/lib/unicore/NamedSequences.txt + tlpkg/tlperl/lib/unicore/SpecialCasing.txt + tlpkg/tlperl/lib/unicore/To/Age.pl + tlpkg/tlperl/lib/unicore/To/Bc.pl + tlpkg/tlperl/lib/unicore/To/Bmg.pl + tlpkg/tlperl/lib/unicore/To/Bpb.pl + tlpkg/tlperl/lib/unicore/To/Bpt.pl + tlpkg/tlperl/lib/unicore/To/Cf.pl + tlpkg/tlperl/lib/unicore/To/Digit.pl + tlpkg/tlperl/lib/unicore/To/Ea.pl + tlpkg/tlperl/lib/unicore/To/EqUIdeo.pl + tlpkg/tlperl/lib/unicore/To/Fold.pl + tlpkg/tlperl/lib/unicore/To/GCB.pl + tlpkg/tlperl/lib/unicore/To/Gc.pl + tlpkg/tlperl/lib/unicore/To/Hst.pl + tlpkg/tlperl/lib/unicore/To/Identif2.pl + tlpkg/tlperl/lib/unicore/To/Identifi.pl + tlpkg/tlperl/lib/unicore/To/InPC.pl + tlpkg/tlperl/lib/unicore/To/InSC.pl + tlpkg/tlperl/lib/unicore/To/Isc.pl + tlpkg/tlperl/lib/unicore/To/Jg.pl + tlpkg/tlperl/lib/unicore/To/Jt.pl + tlpkg/tlperl/lib/unicore/To/Lb.pl + tlpkg/tlperl/lib/unicore/To/Lc.pl + tlpkg/tlperl/lib/unicore/To/Lower.pl + tlpkg/tlperl/lib/unicore/To/NFCQC.pl + tlpkg/tlperl/lib/unicore/To/NFDQC.pl + tlpkg/tlperl/lib/unicore/To/NFKCCF.pl + tlpkg/tlperl/lib/unicore/To/NFKCQC.pl + tlpkg/tlperl/lib/unicore/To/NFKDQC.pl + tlpkg/tlperl/lib/unicore/To/Na1.pl + tlpkg/tlperl/lib/unicore/To/NameAlia.pl + tlpkg/tlperl/lib/unicore/To/Nt.pl + tlpkg/tlperl/lib/unicore/To/Nv.pl + tlpkg/tlperl/lib/unicore/To/PerlDeci.pl + tlpkg/tlperl/lib/unicore/To/SB.pl + tlpkg/tlperl/lib/unicore/To/Sc.pl + tlpkg/tlperl/lib/unicore/To/Scx.pl + tlpkg/tlperl/lib/unicore/To/Tc.pl + tlpkg/tlperl/lib/unicore/To/Title.pl + tlpkg/tlperl/lib/unicore/To/Uc.pl + tlpkg/tlperl/lib/unicore/To/Upper.pl + tlpkg/tlperl/lib/unicore/To/Vo.pl + tlpkg/tlperl/lib/unicore/To/WB.pl + tlpkg/tlperl/lib/unicore/To/_PerlLB.pl + tlpkg/tlperl/lib/unicore/To/_PerlSCX.pl + tlpkg/tlperl/lib/unicore/UCD.pl + tlpkg/tlperl/lib/unicore/lib/Age/NA.pl + tlpkg/tlperl/lib/unicore/lib/Age/V100.pl + tlpkg/tlperl/lib/unicore/lib/Age/V11.pl + tlpkg/tlperl/lib/unicore/lib/Age/V110.pl + tlpkg/tlperl/lib/unicore/lib/Age/V120.pl + tlpkg/tlperl/lib/unicore/lib/Age/V130.pl + tlpkg/tlperl/lib/unicore/lib/Age/V20.pl + tlpkg/tlperl/lib/unicore/lib/Age/V30.pl + tlpkg/tlperl/lib/unicore/lib/Age/V31.pl + tlpkg/tlperl/lib/unicore/lib/Age/V32.pl + tlpkg/tlperl/lib/unicore/lib/Age/V40.pl + tlpkg/tlperl/lib/unicore/lib/Age/V41.pl + tlpkg/tlperl/lib/unicore/lib/Age/V50.pl + tlpkg/tlperl/lib/unicore/lib/Age/V51.pl + tlpkg/tlperl/lib/unicore/lib/Age/V52.pl + tlpkg/tlperl/lib/unicore/lib/Age/V60.pl + tlpkg/tlperl/lib/unicore/lib/Age/V61.pl + tlpkg/tlperl/lib/unicore/lib/Age/V70.pl + tlpkg/tlperl/lib/unicore/lib/Age/V80.pl + tlpkg/tlperl/lib/unicore/lib/Age/V90.pl + tlpkg/tlperl/lib/unicore/lib/Alpha/Y.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/B.pl + tlpkg/tlperl/lib/unicore/lib/Bc/BN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/CS.pl + tlpkg/tlperl/lib/unicore/lib/Bc/EN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ES.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ET.pl + tlpkg/tlperl/lib/unicore/lib/Bc/L.pl + tlpkg/tlperl/lib/unicore/lib/Bc/NSM.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ON.pl + tlpkg/tlperl/lib/unicore/lib/Bc/R.pl + tlpkg/tlperl/lib/unicore/lib/Bc/WS.pl + tlpkg/tlperl/lib/unicore/lib/BidiC/Y.pl + tlpkg/tlperl/lib/unicore/lib/BidiM/Y.pl + tlpkg/tlperl/lib/unicore/lib/Blk/NB.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/C.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/N.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/O.pl + tlpkg/tlperl/lib/unicore/lib/CE/Y.pl + tlpkg/tlperl/lib/unicore/lib/CI/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWKCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWL/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWT/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWU/Y.pl + tlpkg/tlperl/lib/unicore/lib/Cased/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/A.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/ATAR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/B.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/BR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/DB.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NK.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/OV.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/VR.pl + tlpkg/tlperl/lib/unicore/lib/CompEx/Y.pl + tlpkg/tlperl/lib/unicore/lib/DI/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dash/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dep/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dia/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Com.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Enc.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Fin.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Font.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Init.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Iso.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Med.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nar.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nb.pl + tlpkg/tlperl/lib/unicore/lib/Dt/NonCanon.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sqr.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sub.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sup.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Vert.pl + tlpkg/tlperl/lib/unicore/lib/EBase/Y.pl + tlpkg/tlperl/lib/unicore/lib/EComp/Y.pl + tlpkg/tlperl/lib/unicore/lib/EPres/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ea/A.pl + tlpkg/tlperl/lib/unicore/lib/Ea/H.pl + tlpkg/tlperl/lib/unicore/lib/Ea/N.pl + tlpkg/tlperl/lib/unicore/lib/Ea/Na.pl + tlpkg/tlperl/lib/unicore/lib/Ea/W.pl + tlpkg/tlperl/lib/unicore/lib/Emoji/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ext/Y.pl + tlpkg/tlperl/lib/unicore/lib/ExtPict/Y.pl + tlpkg/tlperl/lib/unicore/lib/GCB/CN.pl + tlpkg/tlperl/lib/unicore/lib/GCB/EX.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LV.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LVT.pl + tlpkg/tlperl/lib/unicore/lib/GCB/PP.pl + tlpkg/tlperl/lib/unicore/lib/GCB/SM.pl + tlpkg/tlperl/lib/unicore/lib/GCB/XX.pl + tlpkg/tlperl/lib/unicore/lib/Gc/C.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/L.pl + tlpkg/tlperl/lib/unicore/lib/Gc/LC.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ll.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lo.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lu.pl + tlpkg/tlperl/lib/unicore/lib/Gc/M.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Me.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/N.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nl.pl + tlpkg/tlperl/lib/unicore/lib/Gc/No.pl + tlpkg/tlperl/lib/unicore/lib/Gc/P.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pe.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pi.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Po.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ps.pl + tlpkg/tlperl/lib/unicore/lib/Gc/S.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sk.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/So.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Z.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Zs.pl + tlpkg/tlperl/lib/unicore/lib/GrBase/Y.pl + tlpkg/tlperl/lib/unicore/lib/GrExt/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hex/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hst/NA.pl + tlpkg/tlperl/lib/unicore/lib/Hyphen/T.pl + tlpkg/tlperl/lib/unicore/lib/IDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/IDS/Y.pl + tlpkg/tlperl/lib/unicore/lib/IdStatus/Allowed.pl + tlpkg/tlperl/lib/unicore/lib/IdStatus/Restrict.pl + tlpkg/tlperl/lib/unicore/lib/IdType/DefaultI.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Exclusio.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Inclusio.pl + tlpkg/tlperl/lib/unicore/lib/IdType/LimitedU.pl + tlpkg/tlperl/lib/unicore/lib/IdType/NotChara.pl + tlpkg/tlperl/lib/unicore/lib/IdType/NotNFKC.pl + tlpkg/tlperl/lib/unicore/lib/IdType/NotXID.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Obsolete.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Recommen.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Technica.pl + tlpkg/tlperl/lib/unicore/lib/IdType/Uncommon.pl + tlpkg/tlperl/lib/unicore/lib/Ideo/Y.pl + tlpkg/tlperl/lib/unicore/lib/In/10_0.pl + tlpkg/tlperl/lib/unicore/lib/In/11_0.pl + tlpkg/tlperl/lib/unicore/lib/In/12_0.pl + tlpkg/tlperl/lib/unicore/lib/In/12_1.pl + tlpkg/tlperl/lib/unicore/lib/In/13_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_0.pl + tlpkg/tlperl/lib/unicore/lib/In/3_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_2.pl + tlpkg/tlperl/lib/unicore/lib/In/4_0.pl + tlpkg/tlperl/lib/unicore/lib/In/4_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_0.pl + tlpkg/tlperl/lib/unicore/lib/In/5_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_0.pl + tlpkg/tlperl/lib/unicore/lib/In/6_1.pl + tlpkg/tlperl/lib/unicore/lib/In/6_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_3.pl + tlpkg/tlperl/lib/unicore/lib/In/7_0.pl + tlpkg/tlperl/lib/unicore/lib/In/8_0.pl + tlpkg/tlperl/lib/unicore/lib/In/9_0.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Bottom.pl + tlpkg/tlperl/lib/unicore/lib/InPC/BottomAn.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Left.pl + tlpkg/tlperl/lib/unicore/lib/InPC/LeftAndR.pl + tlpkg/tlperl/lib/unicore/lib/InPC/NA.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Overstru.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Right.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Top.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndBo.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndL2.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndLe.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndRi.pl + tlpkg/tlperl/lib/unicore/lib/InPC/VisualOr.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Avagraha.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Bindu.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Cantilla.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona2.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona3.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona4.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona5.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona6.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona7.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona8.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona9.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consonan.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Invisibl.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Nukta.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Number.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Other.pl + tlpkg/tlperl/lib/unicore/lib/InSC/PureKill.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Syllable.pl + tlpkg/tlperl/lib/unicore/lib/InSC/ToneMark.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Virama.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Visarga.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Vowel.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelDep.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelInd.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Ain.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Alef.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Beh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Dal.pl + tlpkg/tlperl/lib/unicore/lib/Jg/FarsiYeh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Feh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Gaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Hah.pl + tlpkg/tlperl/lib/unicore/lib/Jg/HanifiRo.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Kaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Lam.pl + tlpkg/tlperl/lib/unicore/lib/Jg/NoJoinin.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Qaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Reh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Sad.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Seen.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Waw.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Yeh.pl + tlpkg/tlperl/lib/unicore/lib/Jt/C.pl + tlpkg/tlperl/lib/unicore/lib/Jt/D.pl + tlpkg/tlperl/lib/unicore/lib/Jt/L.pl + tlpkg/tlperl/lib/unicore/lib/Jt/R.pl + tlpkg/tlperl/lib/unicore/lib/Jt/T.pl + tlpkg/tlperl/lib/unicore/lib/Jt/U.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AI.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BB.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CJ.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CM.pl + tlpkg/tlperl/lib/unicore/lib/Lb/EX.pl + tlpkg/tlperl/lib/unicore/lib/Lb/GL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/ID.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IN.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/NS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/NU.pl + tlpkg/tlperl/lib/unicore/lib/Lb/OP.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PO.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PR.pl + tlpkg/tlperl/lib/unicore/lib/Lb/QU.pl + tlpkg/tlperl/lib/unicore/lib/Lb/SA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/XX.pl + tlpkg/tlperl/lib/unicore/lib/Lower/Y.pl + tlpkg/tlperl/lib/unicore/lib/Math/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/M.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Di.pl + tlpkg/tlperl/lib/unicore/lib/Nt/None.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Nu.pl + tlpkg/tlperl/lib/unicore/lib/Nv/0.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10.pl + tlpkg/tlperl/lib/unicore/lib/Nv/100.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/100000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/11.pl + tlpkg/tlperl/lib/unicore/lib/Nv/12.pl + tlpkg/tlperl/lib/unicore/lib/Nv/13.pl + tlpkg/tlperl/lib/unicore/lib/Nv/14.pl + tlpkg/tlperl/lib/unicore/lib/Nv/15.pl + tlpkg/tlperl/lib/unicore/lib/Nv/16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/17.pl + tlpkg/tlperl/lib/unicore/lib/Nv/18.pl + tlpkg/tlperl/lib/unicore/lib/Nv/19.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_6.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/20.pl + tlpkg/tlperl/lib/unicore/lib/Nv/200.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/20000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/30.pl + tlpkg/tlperl/lib/unicore/lib/Nv/300.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/30000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/40.pl + tlpkg/tlperl/lib/unicore/lib/Nv/400.pl + tlpkg/tlperl/lib/unicore/lib/Nv/4000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/40000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50.pl + tlpkg/tlperl/lib/unicore/lib/Nv/500.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/6.pl + tlpkg/tlperl/lib/unicore/lib/Nv/60.pl + tlpkg/tlperl/lib/unicore/lib/Nv/600.pl + tlpkg/tlperl/lib/unicore/lib/Nv/6000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/60000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/7.pl + tlpkg/tlperl/lib/unicore/lib/Nv/70.pl + tlpkg/tlperl/lib/unicore/lib/Nv/700.pl + tlpkg/tlperl/lib/unicore/lib/Nv/7000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/70000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/80.pl + tlpkg/tlperl/lib/unicore/lib/Nv/800.pl + tlpkg/tlperl/lib/unicore/lib/Nv/8000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/80000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/9.pl + tlpkg/tlperl/lib/unicore/lib/Nv/90.pl + tlpkg/tlperl/lib/unicore/lib/Nv/900.pl + tlpkg/tlperl/lib/unicore/lib/Nv/9000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/90000.pl + tlpkg/tlperl/lib/unicore/lib/PCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/PatSyn/Y.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Alnum.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Assigned.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Blank.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Graph.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PerlWord.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PosixPun.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Print.pl + tlpkg/tlperl/lib/unicore/lib/Perl/SpacePer.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Title.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Word.pl + tlpkg/tlperl/lib/unicore/lib/Perl/XPosixPu.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlAny.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCh2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCha.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlFol.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDC.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDS.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIsI.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlNch.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPat.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPr2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPro.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlQuo.pl + tlpkg/tlperl/lib/unicore/lib/QMark/Y.pl + tlpkg/tlperl/lib/unicore/lib/SB/AT.pl + tlpkg/tlperl/lib/unicore/lib/SB/CL.pl + tlpkg/tlperl/lib/unicore/lib/SB/EX.pl + tlpkg/tlperl/lib/unicore/lib/SB/FO.pl + tlpkg/tlperl/lib/unicore/lib/SB/LE.pl + tlpkg/tlperl/lib/unicore/lib/SB/LO.pl + tlpkg/tlperl/lib/unicore/lib/SB/NU.pl + tlpkg/tlperl/lib/unicore/lib/SB/SC.pl + tlpkg/tlperl/lib/unicore/lib/SB/ST.pl + tlpkg/tlperl/lib/unicore/lib/SB/Sp.pl + tlpkg/tlperl/lib/unicore/lib/SB/UP.pl + tlpkg/tlperl/lib/unicore/lib/SB/XX.pl + tlpkg/tlperl/lib/unicore/lib/SD/Y.pl + tlpkg/tlperl/lib/unicore/lib/STerm/Y.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gong.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gonm.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Han.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Adlm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Armn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bhks.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bopo.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cakm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cham.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Copt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Diak.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Ethi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gong.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gonm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Han.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hebr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hmng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hmnp.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khar.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khmr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khoj.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Kthi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lao.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lina.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mymr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Nand.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Phlp.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Rohg.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Shrd.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sind.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tagb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Takr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Talu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tang.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Thaa.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tibt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tirh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Xsux.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Yezi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Yi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zzzz.pl + tlpkg/tlperl/lib/unicore/lib/Term/Y.pl + tlpkg/tlperl/lib/unicore/lib/UIdeo/Y.pl + tlpkg/tlperl/lib/unicore/lib/Upper/Y.pl + tlpkg/tlperl/lib/unicore/lib/Vo/R.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tr.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tu.pl + tlpkg/tlperl/lib/unicore/lib/Vo/U.pl + tlpkg/tlperl/lib/unicore/lib/WB/EX.pl + tlpkg/tlperl/lib/unicore/lib/WB/Extend.pl + tlpkg/tlperl/lib/unicore/lib/WB/FO.pl + tlpkg/tlperl/lib/unicore/lib/WB/HL.pl + tlpkg/tlperl/lib/unicore/lib/WB/KA.pl + tlpkg/tlperl/lib/unicore/lib/WB/LE.pl + tlpkg/tlperl/lib/unicore/lib/WB/MB.pl + tlpkg/tlperl/lib/unicore/lib/WB/ML.pl + tlpkg/tlperl/lib/unicore/lib/WB/MN.pl + tlpkg/tlperl/lib/unicore/lib/WB/NU.pl + tlpkg/tlperl/lib/unicore/lib/WB/WSegSpac.pl + tlpkg/tlperl/lib/unicore/lib/WB/XX.pl + tlpkg/tlperl/lib/unicore/lib/XIDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/XIDS/Y.pl + tlpkg/tlperl/lib/unicore/uni_keywords.pl + tlpkg/tlperl/lib/unicore/version + tlpkg/tlperl/lib/utf8.pm + tlpkg/tlperl/lib/vars.pm + tlpkg/tlperl/lib/version.pm + tlpkg/tlperl/lib/version.pod + tlpkg/tlperl/lib/version/Internals.pod + tlpkg/tlperl/lib/version/regex.pm + tlpkg/tlperl/lib/vmsish.pm + tlpkg/tlperl/lib/warnings.pm + tlpkg/tlperl/lib/warnings/register.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Boolean.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Type.pm + tlpkg/tlperl/site/lib/Date/Format.pm + tlpkg/tlperl/site/lib/Date/Language.pm + tlpkg/tlperl/site/lib/Date/Language/Afar.pm + tlpkg/tlperl/site/lib/Date/Language/Amharic.pm + tlpkg/tlperl/site/lib/Date/Language/Austrian.pm + tlpkg/tlperl/site/lib/Date/Language/Brazilian.pm + tlpkg/tlperl/site/lib/Date/Language/Bulgarian.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese_GB.pm + tlpkg/tlperl/site/lib/Date/Language/Czech.pm + tlpkg/tlperl/site/lib/Date/Language/Danish.pm + tlpkg/tlperl/site/lib/Date/Language/Dutch.pm + tlpkg/tlperl/site/lib/Date/Language/English.pm + tlpkg/tlperl/site/lib/Date/Language/Finnish.pm + tlpkg/tlperl/site/lib/Date/Language/French.pm + tlpkg/tlperl/site/lib/Date/Language/Gedeo.pm + tlpkg/tlperl/site/lib/Date/Language/German.pm + tlpkg/tlperl/site/lib/Date/Language/Greek.pm + tlpkg/tlperl/site/lib/Date/Language/Hungarian.pm + tlpkg/tlperl/site/lib/Date/Language/Icelandic.pm + tlpkg/tlperl/site/lib/Date/Language/Italian.pm + tlpkg/tlperl/site/lib/Date/Language/Norwegian.pm + tlpkg/tlperl/site/lib/Date/Language/Occitan.pm + tlpkg/tlperl/site/lib/Date/Language/Oromo.pm + tlpkg/tlperl/site/lib/Date/Language/Romanian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_cp1251.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_koi8r.pm + tlpkg/tlperl/site/lib/Date/Language/Sidama.pm + tlpkg/tlperl/site/lib/Date/Language/Somali.pm + tlpkg/tlperl/site/lib/Date/Language/Spanish.pm + tlpkg/tlperl/site/lib/Date/Language/Swedish.pm + tlpkg/tlperl/site/lib/Date/Language/Tigrinya.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEritrean.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEthiopian.pm + tlpkg/tlperl/site/lib/Date/Language/Turkish.pm + tlpkg/tlperl/site/lib/Date/Parse.pm + tlpkg/tlperl/site/lib/Digest/SHA.pm + tlpkg/tlperl/site/lib/Encode/Locale.pm + tlpkg/tlperl/site/lib/Encode/compat.pm + tlpkg/tlperl/site/lib/Encode/compat/5006001.pm + tlpkg/tlperl/site/lib/Encode/compat/Alias.pm + tlpkg/tlperl/site/lib/Encode/compat/common.pm + tlpkg/tlperl/site/lib/File/Listing.pm + tlpkg/tlperl/site/lib/File/Which.pm + tlpkg/tlperl/site/lib/HTML/Entities.pm + tlpkg/tlperl/site/lib/HTML/Filter.pm + tlpkg/tlperl/site/lib/HTML/HeadParser.pm + tlpkg/tlperl/site/lib/HTML/LinkExtor.pm + tlpkg/tlperl/site/lib/HTML/Parser.pm + tlpkg/tlperl/site/lib/HTML/PullParser.pm + tlpkg/tlperl/site/lib/HTML/Tagset.pm + tlpkg/tlperl/site/lib/HTML/TokeParser.pm + tlpkg/tlperl/site/lib/HTTP/Config.pm + tlpkg/tlperl/site/lib/HTTP/Cookies.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Microsoft.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Netscape.pm + tlpkg/tlperl/site/lib/HTTP/Daemon.pm + tlpkg/tlperl/site/lib/HTTP/Date.pm + tlpkg/tlperl/site/lib/HTTP/Headers.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Auth.pm + tlpkg/tlperl/site/lib/HTTP/Headers/ETag.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Util.pm + tlpkg/tlperl/site/lib/HTTP/Message.pm + tlpkg/tlperl/site/lib/HTTP/Negotiate.pm + tlpkg/tlperl/site/lib/HTTP/Request.pm + tlpkg/tlperl/site/lib/HTTP/Request/Common.pm + tlpkg/tlperl/site/lib/HTTP/Response.pm + tlpkg/tlperl/site/lib/HTTP/Status.pm + tlpkg/tlperl/site/lib/IO/HTML.pm + tlpkg/tlperl/site/lib/IO/String.pm + tlpkg/tlperl/site/lib/JSON/MaybeXS.pm + tlpkg/tlperl/site/lib/LWP.pm + tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm + tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm + tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm + tlpkg/tlperl/site/lib/LWP/ConnCache.pm + tlpkg/tlperl/site/lib/LWP/Debug.pm + tlpkg/tlperl/site/lib/LWP/Debug/TraceHTTP.pm + tlpkg/tlperl/site/lib/LWP/DebugFile.pm + tlpkg/tlperl/site/lib/LWP/MediaTypes.pm + tlpkg/tlperl/site/lib/LWP/MemberMixin.pm + tlpkg/tlperl/site/lib/LWP/Protocol.pm + tlpkg/tlperl/site/lib/LWP/Protocol/cpan.pm + tlpkg/tlperl/site/lib/LWP/Protocol/data.pm + tlpkg/tlperl/site/lib/LWP/Protocol/file.pm + tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/gopher.pm + tlpkg/tlperl/site/lib/LWP/Protocol/http.pm + tlpkg/tlperl/site/lib/LWP/Protocol/loopback.pm + tlpkg/tlperl/site/lib/LWP/Protocol/mailto.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nntp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nogo.pm + tlpkg/tlperl/site/lib/LWP/RobotUA.pm + tlpkg/tlperl/site/lib/LWP/Simple.pm + tlpkg/tlperl/site/lib/LWP/UserAgent.pm + tlpkg/tlperl/site/lib/LWP/media.types + tlpkg/tlperl/site/lib/Math/Int64.pm + tlpkg/tlperl/site/lib/Math/Int64/die_on_overflow.pm + tlpkg/tlperl/site/lib/Math/Int64/native_if_available.pm + tlpkg/tlperl/site/lib/Math/UInt64.pm + tlpkg/tlperl/site/lib/Mozilla/CA.pm + tlpkg/tlperl/site/lib/Mozilla/CA/cacert.pem + tlpkg/tlperl/site/lib/Mozilla/mk-ca-bundle.pl + tlpkg/tlperl/site/lib/Net/HTTP.pm + tlpkg/tlperl/site/lib/Net/HTTP/Methods.pm + tlpkg/tlperl/site/lib/Net/HTTP/NB.pm + tlpkg/tlperl/site/lib/Net/HTTPS.pm + tlpkg/tlperl/site/lib/Socket.pm + tlpkg/tlperl/site/lib/Test/Fatal.pm + tlpkg/tlperl/site/lib/Test/Needs.pm + tlpkg/tlperl/site/lib/Test/RequiresInternet.pm + tlpkg/tlperl/site/lib/Tie/Registry.pm + tlpkg/tlperl/site/lib/Time/Zone.pm + tlpkg/tlperl/site/lib/TimeDate.pm + tlpkg/tlperl/site/lib/Try/Tiny.pm + tlpkg/tlperl/site/lib/URI.pm + tlpkg/tlperl/site/lib/URI/Escape.pm + tlpkg/tlperl/site/lib/URI/Heuristic.pm + tlpkg/tlperl/site/lib/URI/IRI.pm + tlpkg/tlperl/site/lib/URI/QueryParam.pm + tlpkg/tlperl/site/lib/URI/Split.pm + tlpkg/tlperl/site/lib/URI/URL.pm + tlpkg/tlperl/site/lib/URI/WithBase.pm + tlpkg/tlperl/site/lib/URI/_foreign.pm + tlpkg/tlperl/site/lib/URI/_generic.pm + tlpkg/tlperl/site/lib/URI/_idna.pm + tlpkg/tlperl/site/lib/URI/_ldap.pm + tlpkg/tlperl/site/lib/URI/_login.pm + tlpkg/tlperl/site/lib/URI/_punycode.pm + tlpkg/tlperl/site/lib/URI/_query.pm + tlpkg/tlperl/site/lib/URI/_segment.pm + tlpkg/tlperl/site/lib/URI/_server.pm + tlpkg/tlperl/site/lib/URI/_userpass.pm + tlpkg/tlperl/site/lib/URI/data.pm + tlpkg/tlperl/site/lib/URI/file.pm + tlpkg/tlperl/site/lib/URI/file/Base.pm + tlpkg/tlperl/site/lib/URI/file/FAT.pm + tlpkg/tlperl/site/lib/URI/file/Mac.pm + tlpkg/tlperl/site/lib/URI/file/OS2.pm + tlpkg/tlperl/site/lib/URI/file/QNX.pm + tlpkg/tlperl/site/lib/URI/file/Unix.pm + tlpkg/tlperl/site/lib/URI/file/Win32.pm + tlpkg/tlperl/site/lib/URI/ftp.pm + tlpkg/tlperl/site/lib/URI/gopher.pm + tlpkg/tlperl/site/lib/URI/http.pm + tlpkg/tlperl/site/lib/URI/https.pm + tlpkg/tlperl/site/lib/URI/ldap.pm + tlpkg/tlperl/site/lib/URI/ldapi.pm + tlpkg/tlperl/site/lib/URI/ldaps.pm + tlpkg/tlperl/site/lib/URI/mailto.pm + tlpkg/tlperl/site/lib/URI/mms.pm + tlpkg/tlperl/site/lib/URI/news.pm + tlpkg/tlperl/site/lib/URI/nntp.pm + tlpkg/tlperl/site/lib/URI/pop.pm + tlpkg/tlperl/site/lib/URI/rlogin.pm + tlpkg/tlperl/site/lib/URI/rsync.pm + tlpkg/tlperl/site/lib/URI/rtsp.pm + tlpkg/tlperl/site/lib/URI/rtspu.pm + tlpkg/tlperl/site/lib/URI/sftp.pm + tlpkg/tlperl/site/lib/URI/sip.pm + tlpkg/tlperl/site/lib/URI/sips.pm + tlpkg/tlperl/site/lib/URI/snews.pm + tlpkg/tlperl/site/lib/URI/ssh.pm + tlpkg/tlperl/site/lib/URI/telnet.pm + tlpkg/tlperl/site/lib/URI/tn3270.pm + tlpkg/tlperl/site/lib/URI/urn.pm + tlpkg/tlperl/site/lib/URI/urn/isbn.pm + tlpkg/tlperl/site/lib/URI/urn/oid.pm + tlpkg/tlperl/site/lib/WWW/RobotRules.pm + tlpkg/tlperl/site/lib/WWW/RobotRules/AnyDBM_File.pm + tlpkg/tlperl/site/lib/Win32/API.pm + tlpkg/tlperl/site/lib/Win32/API/Callback.pm + tlpkg/tlperl/site/lib/Win32/API/Callback/IATPatch.pod + tlpkg/tlperl/site/lib/Win32/API/Struct.pm + tlpkg/tlperl/site/lib/Win32/API/Type.pm + tlpkg/tlperl/site/lib/Win32/Console.pm + tlpkg/tlperl/site/lib/Win32/Shortcut.pm + tlpkg/tlperl/site/lib/Win32/TieRegistry.pm + tlpkg/tlperl/site/lib/Win32/WinError.pm + tlpkg/tlperl/site/lib/Win32API/Registry.pm + tlpkg/tlperl/site/lib/Win32API/Registry/cRegistry.pc + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/.packlist + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/XS.dll + tlpkg/tlperl/site/lib/auto/Date/Parse/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA/SHA.dll + tlpkg/tlperl/site/lib/auto/Encode/Locale/.packlist + tlpkg/tlperl/site/lib/auto/Encode/compat/.packlist + tlpkg/tlperl/site/lib/auto/File/Listing/.packlist + tlpkg/tlperl/site/lib/auto/File/Which/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/Parser.dll + tlpkg/tlperl/site/lib/auto/HTML/Tagset/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Cookies/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Daemon/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Date/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Message/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Negotiate/.packlist + tlpkg/tlperl/site/lib/auto/IO/HTML/.packlist + tlpkg/tlperl/site/lib/auto/IO/String/.packlist + tlpkg/tlperl/site/lib/auto/JSON/MaybeXS/.packlist + tlpkg/tlperl/site/lib/auto/LWP/MediaTypes/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/Int64.dll + tlpkg/tlperl/site/lib/auto/Mozilla/CA/.packlist + tlpkg/tlperl/site/lib/auto/Net/HTTP/.packlist + tlpkg/tlperl/site/lib/auto/Socket/.packlist + tlpkg/tlperl/site/lib/auto/Socket/Socket.dll + tlpkg/tlperl/site/lib/auto/Test/Fatal/.packlist + tlpkg/tlperl/site/lib/auto/Test/Needs/.packlist + tlpkg/tlperl/site/lib/auto/Test/RequiresInternet/.packlist + tlpkg/tlperl/site/lib/auto/Try/Tiny/.packlist + tlpkg/tlperl/site/lib/auto/URI/.packlist + tlpkg/tlperl/site/lib/auto/WWW/RobotRules/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/API.dll + tlpkg/tlperl/site/lib/auto/Win32/API/Callback/Callback.dll + tlpkg/tlperl/site/lib/auto/Win32/Console/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Console/Console.dll + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/Shortcut.dll + tlpkg/tlperl/site/lib/auto/Win32/TieRegistry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/Registry.dll + tlpkg/tlperl/site/lib/auto/libwww/perl/.packlist + tlpkg/tlperl/site/lib/libwww/lwpcook.pod + tlpkg/tlperl/site/lib/libwww/lwptut.pod + +name tlshell +category TLCore +revision 58984 +shortdesc GUI frontend (tcl/tk-based) for tlmgr +depend tlshell.ARCH +postaction shortcut type=menu name="TeX Live Manager" cmd=TEXDIR/bin/win32/tlshell.exe +containersize 29668 +containerchecksum 1eb63d745abc94a654e6e0bc5c509d7ded2fa03722fb732123188f811b42afc39a40e5e84a0f477211823029184865fd04121cfedc641fa6ce53912e2c6abca3 +doccontainersize 668 +doccontainerchecksum b1c82e220ee817a570eacc445c94ef7f9f846f4cd5967149a5eca0197d2f64176ac85ffe75f7dc4abd9e2dbbe11284bffb384cfadfbf8e9c2186b06b12faa27e +docfiles size=2 + texmf-dist/doc/support/tlshell/README + tlpkg/tltcl/README.TEXLIVE +runfiles size=30 + texmf-dist/scripts/tlshell/tlshell.tcl + tlpkg/tltcl/tlmgr.gif + tlpkg/tltcl/tltcl.tcl + +name tlshell.aarch64-linux +category TLCore +revision 46228 +shortdesc aarch64-linux files of tlshell +containersize 340 +containerchecksum aac8e531b8fc0265143e77055e0744d4db522ac2a413b4d9cf8301e10b6a692a79aab7c188c6ff2070cb35ae19e95ba95ee7ddf60ee9a976c27f32ca7534c417 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/tlshell + +name tlshell.amd64-freebsd +category TLCore +revision 45015 +shortdesc amd64-freebsd files of tlshell +containersize 344 +containerchecksum 7c66e434e311ef114a96d444df558cfb0cd8da5f6cb1c1de0fe758480af50aa077aed7051037732cda9469cf5ea49330e07b62a7abb5f0599aaa92c5a657b76e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/tlshell + +name tlshell.amd64-netbsd +category TLCore +revision 45015 +shortdesc amd64-netbsd files of tlshell +containersize 340 +containerchecksum 58385f9dced3c758946e82f074abe60b4cee6107321858c80cf84de7427943b52012ab609abf160793ffb4d4dadfcfa72a9536bb048fd325a7fee9fe8f743121 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/tlshell + +name tlshell.armhf-linux +category TLCore +revision 45015 +shortdesc armhf-linux files of tlshell +containersize 340 +containerchecksum f2aaac8f60176412002a3af990aa3ec5bbf85eca49bba616d3c03c7a82593a50e231195fb5ac0baff8e5c6ae6f5691856d49b4b97156be2ffb2aff3de48f9453 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/tlshell + +name tlshell.i386-cygwin +category TLCore +revision 45015 +shortdesc i386-cygwin files of tlshell +containersize 340 +containerchecksum d5ede84ae80670c2749fc59650400c6de1fd31536b08f215a8a28fb27b1dcc79cce21f77d4167907f80ca5a7c123a21770d41a8ca9e1734ca7313955619a3fcd +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/tlshell + +name tlshell.i386-freebsd +category TLCore +revision 45015 +shortdesc i386-freebsd files of tlshell +containersize 340 +containerchecksum 73b86bc726fd30b3f49df9d537310445b1622eeac58b955c128634ecf9951d0c5e83e57e841ea9d0c77600ed902d9a71dc600b73febffafbb8890aab7ac38e9e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/tlshell + +name tlshell.i386-linux +category TLCore +revision 45015 +shortdesc i386-linux files of tlshell +containersize 340 +containerchecksum d766db45e0481a637a32bab898c45765ccf9311455178904a871bb66d4468c6bb2c75c9492e3f6cc7cac5baa99b167ba5dcc1df250566900b4dcdce8028d1982 +binfiles arch=i386-linux size=1 + bin/i386-linux/tlshell + +name tlshell.i386-netbsd +category TLCore +revision 45015 +shortdesc i386-netbsd files of tlshell +containersize 340 +containerchecksum 7def43ee0cc371562353b97475d908d50e0b20b1a87efc2bf5de68265c1fc06d5425d2e4224293c38b5959da88fb413d2f12b5a1113b8ad1f81c6bf01275fd52 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/tlshell + +name tlshell.i386-solaris +category TLCore +revision 45015 +shortdesc i386-solaris files of tlshell +containersize 340 +containerchecksum 158ee1f61380770835b0a3c6c33e43f374ea8e213387a996b9c086f1091b54d88522baff743a9d527cba01d90c792c5dae3391478f9dcb41e785a486f896abb1 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/tlshell + +name tlshell.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of tlshell +containersize 340 +containerchecksum 9fcea90dca834d70cecd252d345479728f092a8b3aae2d1ddd19b8a016ef5cc50117ca6e3374c3ff6ac38e7e986f8f9384e55386d9d5e29b25d0a402e5558b4b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/tlshell + +name tlshell.win32 +category TLCore +revision 58093 +shortdesc win32 files of tlshell +containersize 2787672 +containerchecksum ecf015128b8f6629fc23d76668aa3164574001fdff9012cec9d3348a4856f2daa4f70b8fa308812b502bbff26d0dc53519a6109c7f7611413aa988444c245271 +binfiles arch=win32 size=3676 + bin/win32/tlshell.exe + tlpkg/tltcl/bin/tcl86.dll + tlpkg/tltcl/bin/tclsh.exe + tlpkg/tltcl/bin/tclsh86.exe + tlpkg/tltcl/bin/tk86.dll + tlpkg/tltcl/bin/wish.exe + tlpkg/tltcl/bin/wish86.exe + tlpkg/tltcl/bin/zlib1.dll + tlpkg/tltcl/lib/dde1.4/libtcldde14.dll.a + tlpkg/tltcl/lib/dde1.4/pkgIndex.tcl + tlpkg/tltcl/lib/dde1.4/tcldde14.dll + tlpkg/tltcl/lib/itcl4.2.1/itcl.tcl + tlpkg/tltcl/lib/itcl4.2.1/itcl421.dll + tlpkg/tltcl/lib/itcl4.2.1/itclConfig.sh + tlpkg/tltcl/lib/itcl4.2.1/itclHullCmds.tcl + tlpkg/tltcl/lib/itcl4.2.1/itclWidget.tcl + tlpkg/tltcl/lib/itcl4.2.1/libitclstub421.a + tlpkg/tltcl/lib/itcl4.2.1/pkgIndex.tcl + tlpkg/tltcl/lib/libtcl86.dll.a + tlpkg/tltcl/lib/libtclstub86.a + tlpkg/tltcl/lib/libtk86.dll.a + tlpkg/tltcl/lib/libtkstub86.a + tlpkg/tltcl/lib/reg1.3/libtclreg13.dll.a + tlpkg/tltcl/lib/reg1.3/pkgIndex.tcl + tlpkg/tltcl/lib/reg1.3/tclreg13.dll + tlpkg/tltcl/lib/sqlite3.34.0/pkgIndex.tcl + tlpkg/tltcl/lib/sqlite3.34.0/sqlite3340.dll + tlpkg/tltcl/lib/tcl8.6/auto.tcl + tlpkg/tltcl/lib/tcl8.6/clock.tcl + tlpkg/tltcl/lib/tcl8.6/encoding/ascii.enc + tlpkg/tltcl/lib/tcl8.6/encoding/big5.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1250.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1251.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1252.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1253.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1254.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1255.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1256.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1257.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp1258.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp437.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp737.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp775.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp850.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp852.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp855.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp857.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp860.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp861.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp862.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp863.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp864.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp865.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp866.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp869.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp874.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp932.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp936.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp949.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cp950.enc + tlpkg/tltcl/lib/tcl8.6/encoding/dingbats.enc + tlpkg/tltcl/lib/tcl8.6/encoding/ebcdic.enc + tlpkg/tltcl/lib/tcl8.6/encoding/euc-cn.enc + tlpkg/tltcl/lib/tcl8.6/encoding/euc-jp.enc + tlpkg/tltcl/lib/tcl8.6/encoding/euc-kr.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb12345.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb1988.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb2312-raw.enc + tlpkg/tltcl/lib/tcl8.6/encoding/gb2312.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso2022-jp.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso2022-kr.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso2022.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-1.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-10.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-13.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-14.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-15.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-16.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-2.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-3.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-4.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-5.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-6.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-7.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-8.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-9.enc + tlpkg/tltcl/lib/tcl8.6/encoding/jis0201.enc + tlpkg/tltcl/lib/tcl8.6/encoding/jis0208.enc + tlpkg/tltcl/lib/tcl8.6/encoding/jis0212.enc + tlpkg/tltcl/lib/tcl8.6/encoding/koi8-r.enc + tlpkg/tltcl/lib/tcl8.6/encoding/koi8-u.enc + tlpkg/tltcl/lib/tcl8.6/encoding/ksc5601.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macCentEuro.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macCroatian.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macCyrillic.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macDingbats.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macGreek.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macIceland.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macJapan.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macRoman.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macRomania.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macThai.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macTurkish.enc + tlpkg/tltcl/lib/tcl8.6/encoding/macUkraine.enc + tlpkg/tltcl/lib/tcl8.6/encoding/shiftjis.enc + tlpkg/tltcl/lib/tcl8.6/encoding/symbol.enc + tlpkg/tltcl/lib/tcl8.6/encoding/tis-620.enc + tlpkg/tltcl/lib/tcl8.6/history.tcl + tlpkg/tltcl/lib/tcl8.6/http1.0/http.tcl + tlpkg/tltcl/lib/tcl8.6/http1.0/pkgIndex.tcl + tlpkg/tltcl/lib/tcl8.6/init.tcl + tlpkg/tltcl/lib/tcl8.6/msgs/af.msg + tlpkg/tltcl/lib/tcl8.6/msgs/af_za.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_jo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_lb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ar_sy.msg + tlpkg/tltcl/lib/tcl8.6/msgs/be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/bg.msg + tlpkg/tltcl/lib/tcl8.6/msgs/bn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/bn_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ca.msg + tlpkg/tltcl/lib/tcl8.6/msgs/cs.msg + tlpkg/tltcl/lib/tcl8.6/msgs/da.msg + tlpkg/tltcl/lib/tcl8.6/msgs/de.msg + tlpkg/tltcl/lib/tcl8.6/msgs/de_at.msg + tlpkg/tltcl/lib/tcl8.6/msgs/de_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/el.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_au.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_bw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_ca.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_gb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_hk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_ie.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_nz.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_ph.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_sg.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_za.msg + tlpkg/tltcl/lib/tcl8.6/msgs/en_zw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/eo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ar.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_bo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_cl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_co.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_cr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_do.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ec.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_gt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_hn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_mx.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ni.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_pa.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_pe.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_pr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_py.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_sv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_uy.msg + tlpkg/tltcl/lib/tcl8.6/msgs/es_ve.msg + tlpkg/tltcl/lib/tcl8.6/msgs/et.msg + tlpkg/tltcl/lib/tcl8.6/msgs/eu.msg + tlpkg/tltcl/lib/tcl8.6/msgs/eu_es.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fa.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fa_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fa_ir.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fi.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fo_fo.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr_ca.msg + tlpkg/tltcl/lib/tcl8.6/msgs/fr_ch.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ga.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ga_ie.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gl_es.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/gv_gb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/he.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hi.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hi_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/hu.msg + tlpkg/tltcl/lib/tcl8.6/msgs/id.msg + tlpkg/tltcl/lib/tcl8.6/msgs/id_id.msg + tlpkg/tltcl/lib/tcl8.6/msgs/is.msg + tlpkg/tltcl/lib/tcl8.6/msgs/it.msg + tlpkg/tltcl/lib/tcl8.6/msgs/it_ch.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ja.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kl_gl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ko.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ko_kr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kok.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kok_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/kw_gb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/lt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/lv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mr_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ms.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ms_my.msg + tlpkg/tltcl/lib/tcl8.6/msgs/mt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nb.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nl_be.msg + tlpkg/tltcl/lib/tcl8.6/msgs/nn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/pl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/pt.msg + tlpkg/tltcl/lib/tcl8.6/msgs/pt_br.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ro.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ru.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ru_ua.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sh.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sl.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sq.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sv.msg + tlpkg/tltcl/lib/tcl8.6/msgs/sw.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ta.msg + tlpkg/tltcl/lib/tcl8.6/msgs/ta_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/te.msg + tlpkg/tltcl/lib/tcl8.6/msgs/te_in.msg + tlpkg/tltcl/lib/tcl8.6/msgs/th.msg + tlpkg/tltcl/lib/tcl8.6/msgs/tr.msg + tlpkg/tltcl/lib/tcl8.6/msgs/uk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/vi.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_cn.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_hk.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_sg.msg + tlpkg/tltcl/lib/tcl8.6/msgs/zh_tw.msg + tlpkg/tltcl/lib/tcl8.6/opt0.4/optparse.tcl + tlpkg/tltcl/lib/tcl8.6/opt0.4/pkgIndex.tcl + tlpkg/tltcl/lib/tcl8.6/package.tcl + tlpkg/tltcl/lib/tcl8.6/parray.tcl + tlpkg/tltcl/lib/tcl8.6/safe.tcl + tlpkg/tltcl/lib/tcl8.6/tclIndex + tlpkg/tltcl/lib/tcl8.6/tm.tcl + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Abidjan + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Accra + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Addis_Ababa + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Algiers + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Asmara + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Asmera + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bamako + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bangui + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Banjul + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bissau + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Blantyre + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Brazzaville + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Bujumbura + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Cairo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Casablanca + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Ceuta + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Conakry + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Dakar + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Dar_es_Salaam + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Djibouti + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Douala + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/El_Aaiun + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Freetown + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Gaborone + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Harare + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Johannesburg + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Juba + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Kampala + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Khartoum + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Kigali + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Kinshasa + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lagos + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Libreville + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lome + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Luanda + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lubumbashi + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Lusaka + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Malabo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Maputo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Maseru + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Mbabane + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Mogadishu + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Monrovia + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Nairobi + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Ndjamena + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Niamey + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Nouakchott + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Ouagadougou + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Porto-Novo + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Sao_Tome + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Timbuktu + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Tripoli + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Tunis + tlpkg/tltcl/lib/tcl8.6/tzdata/Africa/Windhoek + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Adak + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Anchorage + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Anguilla + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Antigua + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Araguaina + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Buenos_Aires + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Catamarca + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/ComodRivadavia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Cordoba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Jujuy + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/La_Rioja + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Mendoza + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Rio_Gallegos + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Salta + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/San_Juan + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/San_Luis + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Tucuman + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Argentina/Ushuaia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Aruba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Asuncion + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Atikokan + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Atka + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Bahia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Bahia_Banderas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Barbados + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Belem + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Belize + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Blanc-Sablon + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Boa_Vista + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Bogota + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Boise + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Buenos_Aires + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cambridge_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Campo_Grande + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cancun + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Caracas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Catamarca + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cayenne + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cayman + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Chicago + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Chihuahua + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Coral_Harbour + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cordoba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Costa_Rica + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Creston + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Cuiaba + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Curacao + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Danmarkshavn + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Dawson + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Dawson_Creek + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Denver + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Detroit + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Dominica + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Edmonton + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Eirunepe + tlpkg/tltcl/lib/tcl8.6/tzdata/America/El_Salvador + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Ensenada + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Fort_Nelson + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Fort_Wayne + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Fortaleza + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Glace_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Godthab + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Goose_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Grand_Turk + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Grenada + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guadeloupe + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guatemala + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guayaquil + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Guyana + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Halifax + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Havana + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Hermosillo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Indianapolis + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Knox + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Marengo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Petersburg + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Tell_City + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Vevay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Vincennes + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indiana/Winamac + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Indianapolis + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Inuvik + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Iqaluit + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Jamaica + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Jujuy + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Juneau + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Kentucky/Louisville + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Kentucky/Monticello + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Knox_IN + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Kralendijk + tlpkg/tltcl/lib/tcl8.6/tzdata/America/La_Paz + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Lima + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Los_Angeles + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Louisville + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Lower_Princes + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Maceio + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Managua + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Manaus + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Marigot + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Martinique + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Matamoros + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Mazatlan + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Mendoza + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Menominee + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Merida + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Metlakatla + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Mexico_City + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Miquelon + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Moncton + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Monterrey + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Montevideo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Montreal + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Montserrat + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nassau + tlpkg/tltcl/lib/tcl8.6/tzdata/America/New_York + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nipigon + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nome + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Noronha + tlpkg/tltcl/lib/tcl8.6/tzdata/America/North_Dakota/Beulah + tlpkg/tltcl/lib/tcl8.6/tzdata/America/North_Dakota/Center + tlpkg/tltcl/lib/tcl8.6/tzdata/America/North_Dakota/New_Salem + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Nuuk + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Ojinaga + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Panama + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Pangnirtung + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Paramaribo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Phoenix + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Port-au-Prince + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Port_of_Spain + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Porto_Acre + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Porto_Velho + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Puerto_Rico + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Punta_Arenas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rainy_River + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rankin_Inlet + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Recife + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Regina + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Resolute + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rio_Branco + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Rosario + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santa_Isabel + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santarem + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santiago + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Santo_Domingo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Sao_Paulo + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Scoresbysund + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Shiprock + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Sitka + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Barthelemy + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Johns + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Kitts + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Lucia + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Thomas + tlpkg/tltcl/lib/tcl8.6/tzdata/America/St_Vincent + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Swift_Current + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Tegucigalpa + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Thule + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Thunder_Bay + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Tijuana + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Toronto + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Tortola + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Vancouver + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Virgin + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Whitehorse + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Winnipeg + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Yakutat + tlpkg/tltcl/lib/tcl8.6/tzdata/America/Yellowknife + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Casey + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Davis + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/DumontDUrville + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Macquarie + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Mawson + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/McMurdo + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Palmer + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Rothera + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/South_Pole + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Syowa + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Troll + tlpkg/tltcl/lib/tcl8.6/tzdata/Antarctica/Vostok + tlpkg/tltcl/lib/tcl8.6/tzdata/Arctic/Longyearbyen + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Aden + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Almaty + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Amman + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Anadyr + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Aqtau + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Aqtobe + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ashgabat + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ashkhabad + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Atyrau + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Baghdad + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Bahrain + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Baku + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Bangkok + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Barnaul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Beirut + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Bishkek + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Brunei + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Calcutta + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Chita + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Choibalsan + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Chongqing + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Chungking + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Colombo + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dacca + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Damascus + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dhaka + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dili + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dubai + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Dushanbe + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Famagusta + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Gaza + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Harbin + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Hebron + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ho_Chi_Minh + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Hong_Kong + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Hovd + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Irkutsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Istanbul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Jakarta + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Jayapura + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Jerusalem + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kabul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kamchatka + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Karachi + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kashgar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kathmandu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Katmandu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Khandyga + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kolkata + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Krasnoyarsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kuala_Lumpur + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kuching + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Kuwait + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Macao + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Macau + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Magadan + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Makassar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Manila + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Muscat + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Nicosia + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Novokuznetsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Novosibirsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Omsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Oral + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Phnom_Penh + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Pontianak + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Pyongyang + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Qatar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Qostanay + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Qyzylorda + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Rangoon + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Riyadh + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Saigon + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Sakhalin + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Samarkand + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Seoul + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Shanghai + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Singapore + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Srednekolymsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Taipei + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tashkent + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tbilisi + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tehran + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tel_Aviv + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Thimbu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Thimphu + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tokyo + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Tomsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ujung_Pandang + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ulaanbaatar + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ulan_Bator + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Urumqi + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Ust-Nera + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Vientiane + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Vladivostok + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yakutsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yangon + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yekaterinburg + tlpkg/tltcl/lib/tcl8.6/tzdata/Asia/Yerevan + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Azores + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Bermuda + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Canary + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Cape_Verde + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Faeroe + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Faroe + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Jan_Mayen + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Madeira + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Reykjavik + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/South_Georgia + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/St_Helena + tlpkg/tltcl/lib/tcl8.6/tzdata/Atlantic/Stanley + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/ACT + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Adelaide + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Brisbane + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Broken_Hill + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Canberra + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Currie + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Darwin + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Eucla + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Hobart + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/LHI + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Lindeman + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Lord_Howe + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Melbourne + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/NSW + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/North + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Perth + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Queensland + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/South + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Sydney + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Tasmania + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Victoria + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/West + tlpkg/tltcl/lib/tcl8.6/tzdata/Australia/Yancowinna + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/Acre + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/DeNoronha + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/East + tlpkg/tltcl/lib/tcl8.6/tzdata/Brazil/West + tlpkg/tltcl/lib/tcl8.6/tzdata/CET + tlpkg/tltcl/lib/tcl8.6/tzdata/CST6CDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Atlantic + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Central + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/East-Saskatchewan + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Eastern + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Mountain + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Newfoundland + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Pacific + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Saskatchewan + tlpkg/tltcl/lib/tcl8.6/tzdata/Canada/Yukon + tlpkg/tltcl/lib/tcl8.6/tzdata/Chile/Continental + tlpkg/tltcl/lib/tcl8.6/tzdata/Chile/EasterIsland + tlpkg/tltcl/lib/tcl8.6/tzdata/Cuba + tlpkg/tltcl/lib/tcl8.6/tzdata/EET + tlpkg/tltcl/lib/tcl8.6/tzdata/EST + tlpkg/tltcl/lib/tcl8.6/tzdata/EST5EDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Egypt + tlpkg/tltcl/lib/tcl8.6/tzdata/Eire + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+1 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+10 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+11 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+12 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+2 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+3 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+4 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+5 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+6 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+7 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+8 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT+9 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-1 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-10 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-11 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-12 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-13 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-14 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-2 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-3 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-4 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-5 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-6 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-7 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-8 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT-9 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/GMT0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/Greenwich + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/UCT + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/UTC + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/Universal + tlpkg/tltcl/lib/tcl8.6/tzdata/Etc/Zulu + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Amsterdam + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Andorra + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Astrakhan + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Athens + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Belfast + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Belgrade + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Berlin + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Bratislava + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Brussels + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Bucharest + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Budapest + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Busingen + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Chisinau + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Copenhagen + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Dublin + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Gibraltar + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Guernsey + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Helsinki + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Isle_of_Man + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Istanbul + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Jersey + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Kaliningrad + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Kiev + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Kirov + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Lisbon + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Ljubljana + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/London + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Luxembourg + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Madrid + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Malta + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Mariehamn + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Minsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Monaco + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Moscow + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Nicosia + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Oslo + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Paris + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Podgorica + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Prague + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Riga + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Rome + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Samara + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/San_Marino + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Sarajevo + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Saratov + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Simferopol + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Skopje + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Sofia + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Stockholm + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Tallinn + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Tirane + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Tiraspol + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Ulyanovsk + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Uzhgorod + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vaduz + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vatican + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vienna + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Vilnius + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Volgograd + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Warsaw + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Zagreb + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Zaporozhye + tlpkg/tltcl/lib/tcl8.6/tzdata/Europe/Zurich + tlpkg/tltcl/lib/tcl8.6/tzdata/GB + tlpkg/tltcl/lib/tcl8.6/tzdata/GB-Eire + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT+0 + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT-0 + tlpkg/tltcl/lib/tcl8.6/tzdata/GMT0 + tlpkg/tltcl/lib/tcl8.6/tzdata/Greenwich + tlpkg/tltcl/lib/tcl8.6/tzdata/HST + tlpkg/tltcl/lib/tcl8.6/tzdata/Hongkong + tlpkg/tltcl/lib/tcl8.6/tzdata/Iceland + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Antananarivo + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Chagos + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Christmas + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Cocos + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Comoro + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Kerguelen + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Mahe + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Maldives + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Mauritius + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Mayotte + tlpkg/tltcl/lib/tcl8.6/tzdata/Indian/Reunion + tlpkg/tltcl/lib/tcl8.6/tzdata/Iran + tlpkg/tltcl/lib/tcl8.6/tzdata/Israel + tlpkg/tltcl/lib/tcl8.6/tzdata/Jamaica + tlpkg/tltcl/lib/tcl8.6/tzdata/Japan + tlpkg/tltcl/lib/tcl8.6/tzdata/Kwajalein + tlpkg/tltcl/lib/tcl8.6/tzdata/Libya + tlpkg/tltcl/lib/tcl8.6/tzdata/MET + tlpkg/tltcl/lib/tcl8.6/tzdata/MST + tlpkg/tltcl/lib/tcl8.6/tzdata/MST7MDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Mexico/BajaNorte + tlpkg/tltcl/lib/tcl8.6/tzdata/Mexico/BajaSur + tlpkg/tltcl/lib/tcl8.6/tzdata/Mexico/General + tlpkg/tltcl/lib/tcl8.6/tzdata/NZ + tlpkg/tltcl/lib/tcl8.6/tzdata/NZ-CHAT + tlpkg/tltcl/lib/tcl8.6/tzdata/Navajo + tlpkg/tltcl/lib/tcl8.6/tzdata/PRC + tlpkg/tltcl/lib/tcl8.6/tzdata/PST8PDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Apia + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Auckland + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Bougainville + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Chatham + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Chuuk + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Easter + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Efate + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Enderbury + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Fakaofo + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Fiji + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Funafuti + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Galapagos + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Gambier + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Guadalcanal + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Guam + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Honolulu + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Johnston + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kiritimati + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kosrae + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kwajalein + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Majuro + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Marquesas + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Midway + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Nauru + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Niue + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Norfolk + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Noumea + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Pago_Pago + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Palau + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Pitcairn + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Pohnpei + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Ponape + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Port_Moresby + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Rarotonga + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Saipan + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Samoa + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Tahiti + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Tarawa + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Tongatapu + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Truk + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Wake + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Wallis + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Yap + tlpkg/tltcl/lib/tcl8.6/tzdata/Poland + tlpkg/tltcl/lib/tcl8.6/tzdata/Portugal + tlpkg/tltcl/lib/tcl8.6/tzdata/ROC + tlpkg/tltcl/lib/tcl8.6/tzdata/ROK + tlpkg/tltcl/lib/tcl8.6/tzdata/Singapore + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/AST4 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/AST4ADT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/CST6 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/CST6CDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/EST5 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/EST5EDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/HST10 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/MST7 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/MST7MDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/PST8 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/PST8PDT + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/YST9 + tlpkg/tltcl/lib/tcl8.6/tzdata/SystemV/YST9YDT + tlpkg/tltcl/lib/tcl8.6/tzdata/Turkey + tlpkg/tltcl/lib/tcl8.6/tzdata/UCT + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Alaska + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Aleutian + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Arizona + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Central + tlpkg/tltcl/lib/tcl8.6/tzdata/US/East-Indiana + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Eastern + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Hawaii + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Indiana-Starke + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Michigan + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Mountain + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Pacific + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Pacific-New + tlpkg/tltcl/lib/tcl8.6/tzdata/US/Samoa + tlpkg/tltcl/lib/tcl8.6/tzdata/UTC + tlpkg/tltcl/lib/tcl8.6/tzdata/Universal + tlpkg/tltcl/lib/tcl8.6/tzdata/W-SU + tlpkg/tltcl/lib/tcl8.6/tzdata/WET + tlpkg/tltcl/lib/tcl8.6/tzdata/Zulu + tlpkg/tltcl/lib/tcl8.6/word.tcl + tlpkg/tltcl/lib/tcl8/8.4/platform-1.0.15.tm + tlpkg/tltcl/lib/tcl8/8.4/platform/shell-1.1.4.tm + tlpkg/tltcl/lib/tcl8/8.5/msgcat-1.6.1.tm + tlpkg/tltcl/lib/tcl8/8.5/tcltest-2.5.3.tm + tlpkg/tltcl/lib/tcl8/8.6/http-2.9.5.tm + tlpkg/tltcl/lib/tcl8/8.6/tdbc/sqlite3-1.1.2.tm + tlpkg/tltcl/lib/tclConfig.sh + tlpkg/tltcl/lib/tclooConfig.sh + tlpkg/tltcl/lib/tdbc1.1.2/libtdbcstub112.a + tlpkg/tltcl/lib/tdbc1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbc1.1.2/tdbc.tcl + tlpkg/tltcl/lib/tdbc1.1.2/tdbc112.dll + tlpkg/tltcl/lib/tdbc1.1.2/tdbcConfig.sh + tlpkg/tltcl/lib/tdbcmysql1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql112.dll + tlpkg/tltcl/lib/tdbcodbc1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc112.dll + tlpkg/tltcl/lib/tdbcpostgres1.1.2/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres112.dll + tlpkg/tltcl/lib/thread2.8.6/pkgIndex.tcl + tlpkg/tltcl/lib/thread2.8.6/thread286.dll + tlpkg/tltcl/lib/thread2.8.6/ttrace.tcl + tlpkg/tltcl/lib/tk8.6/bgerror.tcl + tlpkg/tltcl/lib/tk8.6/button.tcl + tlpkg/tltcl/lib/tk8.6/choosedir.tcl + tlpkg/tltcl/lib/tk8.6/clrpick.tcl + tlpkg/tltcl/lib/tk8.6/comdlg.tcl + tlpkg/tltcl/lib/tk8.6/console.tcl + tlpkg/tltcl/lib/tk8.6/demos/README + tlpkg/tltcl/lib/tk8.6/demos/anilabel.tcl + tlpkg/tltcl/lib/tk8.6/demos/aniwave.tcl + tlpkg/tltcl/lib/tk8.6/demos/arrow.tcl + tlpkg/tltcl/lib/tk8.6/demos/bind.tcl + tlpkg/tltcl/lib/tk8.6/demos/bitmap.tcl + tlpkg/tltcl/lib/tk8.6/demos/browse + tlpkg/tltcl/lib/tk8.6/demos/button.tcl + tlpkg/tltcl/lib/tk8.6/demos/check.tcl + tlpkg/tltcl/lib/tk8.6/demos/clrpick.tcl + tlpkg/tltcl/lib/tk8.6/demos/colors.tcl + tlpkg/tltcl/lib/tk8.6/demos/combo.tcl + tlpkg/tltcl/lib/tk8.6/demos/cscroll.tcl + tlpkg/tltcl/lib/tk8.6/demos/ctext.tcl + tlpkg/tltcl/lib/tk8.6/demos/dialog1.tcl + tlpkg/tltcl/lib/tk8.6/demos/dialog2.tcl + tlpkg/tltcl/lib/tk8.6/demos/en.msg + tlpkg/tltcl/lib/tk8.6/demos/entry1.tcl + tlpkg/tltcl/lib/tk8.6/demos/entry2.tcl + tlpkg/tltcl/lib/tk8.6/demos/entry3.tcl + tlpkg/tltcl/lib/tk8.6/demos/filebox.tcl + tlpkg/tltcl/lib/tk8.6/demos/floor.tcl + tlpkg/tltcl/lib/tk8.6/demos/fontchoose.tcl + tlpkg/tltcl/lib/tk8.6/demos/form.tcl + tlpkg/tltcl/lib/tk8.6/demos/goldberg.tcl + tlpkg/tltcl/lib/tk8.6/demos/hello + tlpkg/tltcl/lib/tk8.6/demos/hscale.tcl + tlpkg/tltcl/lib/tk8.6/demos/icon.tcl + tlpkg/tltcl/lib/tk8.6/demos/image1.tcl + tlpkg/tltcl/lib/tk8.6/demos/image2.tcl + tlpkg/tltcl/lib/tk8.6/demos/images/earth.gif + tlpkg/tltcl/lib/tk8.6/demos/images/earthmenu.png + tlpkg/tltcl/lib/tk8.6/demos/images/earthris.gif + tlpkg/tltcl/lib/tk8.6/demos/images/flagdown.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/flagup.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/gray25.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/letters.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/noletter.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/ouster.png + tlpkg/tltcl/lib/tk8.6/demos/images/pattern.xbm + tlpkg/tltcl/lib/tk8.6/demos/images/tcllogo.gif + tlpkg/tltcl/lib/tk8.6/demos/images/teapot.ppm + tlpkg/tltcl/lib/tk8.6/demos/items.tcl + tlpkg/tltcl/lib/tk8.6/demos/ixset + tlpkg/tltcl/lib/tk8.6/demos/knightstour.tcl + tlpkg/tltcl/lib/tk8.6/demos/label.tcl + tlpkg/tltcl/lib/tk8.6/demos/labelframe.tcl + tlpkg/tltcl/lib/tk8.6/demos/license.terms + tlpkg/tltcl/lib/tk8.6/demos/mclist.tcl + tlpkg/tltcl/lib/tk8.6/demos/menu.tcl + tlpkg/tltcl/lib/tk8.6/demos/menubu.tcl + tlpkg/tltcl/lib/tk8.6/demos/msgbox.tcl + tlpkg/tltcl/lib/tk8.6/demos/nl.msg + tlpkg/tltcl/lib/tk8.6/demos/paned1.tcl + tlpkg/tltcl/lib/tk8.6/demos/paned2.tcl + tlpkg/tltcl/lib/tk8.6/demos/pendulum.tcl + tlpkg/tltcl/lib/tk8.6/demos/plot.tcl + tlpkg/tltcl/lib/tk8.6/demos/puzzle.tcl + tlpkg/tltcl/lib/tk8.6/demos/radio.tcl + tlpkg/tltcl/lib/tk8.6/demos/rmt + tlpkg/tltcl/lib/tk8.6/demos/rolodex + tlpkg/tltcl/lib/tk8.6/demos/ruler.tcl + tlpkg/tltcl/lib/tk8.6/demos/sayings.tcl + tlpkg/tltcl/lib/tk8.6/demos/search.tcl + tlpkg/tltcl/lib/tk8.6/demos/spin.tcl + tlpkg/tltcl/lib/tk8.6/demos/states.tcl + tlpkg/tltcl/lib/tk8.6/demos/style.tcl + tlpkg/tltcl/lib/tk8.6/demos/tclIndex + tlpkg/tltcl/lib/tk8.6/demos/tcolor + tlpkg/tltcl/lib/tk8.6/demos/text.tcl + tlpkg/tltcl/lib/tk8.6/demos/textpeer.tcl + tlpkg/tltcl/lib/tk8.6/demos/timer + tlpkg/tltcl/lib/tk8.6/demos/toolbar.tcl + tlpkg/tltcl/lib/tk8.6/demos/tree.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkbut.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkmenu.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttknote.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkpane.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkprogress.tcl + tlpkg/tltcl/lib/tk8.6/demos/ttkscale.tcl + tlpkg/tltcl/lib/tk8.6/demos/twind.tcl + tlpkg/tltcl/lib/tk8.6/demos/unicodeout.tcl + tlpkg/tltcl/lib/tk8.6/demos/vscale.tcl + tlpkg/tltcl/lib/tk8.6/demos/widget + tlpkg/tltcl/lib/tk8.6/dialog.tcl + tlpkg/tltcl/lib/tk8.6/entry.tcl + tlpkg/tltcl/lib/tk8.6/focus.tcl + tlpkg/tltcl/lib/tk8.6/fontchooser.tcl + tlpkg/tltcl/lib/tk8.6/iconlist.tcl + tlpkg/tltcl/lib/tk8.6/icons.tcl + tlpkg/tltcl/lib/tk8.6/images/README + tlpkg/tltcl/lib/tk8.6/images/logo.eps + tlpkg/tltcl/lib/tk8.6/images/logo100.gif + tlpkg/tltcl/lib/tk8.6/images/logo64.gif + tlpkg/tltcl/lib/tk8.6/images/logoLarge.gif + tlpkg/tltcl/lib/tk8.6/images/logoMed.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo.eps + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo100.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo150.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo175.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo200.gif + tlpkg/tltcl/lib/tk8.6/images/pwrdLogo75.gif + tlpkg/tltcl/lib/tk8.6/images/tai-ku.gif + tlpkg/tltcl/lib/tk8.6/listbox.tcl + tlpkg/tltcl/lib/tk8.6/megawidget.tcl + tlpkg/tltcl/lib/tk8.6/menu.tcl + tlpkg/tltcl/lib/tk8.6/mkpsenc.tcl + tlpkg/tltcl/lib/tk8.6/msgbox.tcl + tlpkg/tltcl/lib/tk8.6/msgs/cs.msg + tlpkg/tltcl/lib/tk8.6/msgs/da.msg + tlpkg/tltcl/lib/tk8.6/msgs/de.msg + tlpkg/tltcl/lib/tk8.6/msgs/el.msg + tlpkg/tltcl/lib/tk8.6/msgs/en.msg + tlpkg/tltcl/lib/tk8.6/msgs/en_gb.msg + tlpkg/tltcl/lib/tk8.6/msgs/eo.msg + tlpkg/tltcl/lib/tk8.6/msgs/es.msg + tlpkg/tltcl/lib/tk8.6/msgs/fr.msg + tlpkg/tltcl/lib/tk8.6/msgs/hu.msg + tlpkg/tltcl/lib/tk8.6/msgs/it.msg + tlpkg/tltcl/lib/tk8.6/msgs/nl.msg + tlpkg/tltcl/lib/tk8.6/msgs/pl.msg + tlpkg/tltcl/lib/tk8.6/msgs/pt.msg + tlpkg/tltcl/lib/tk8.6/msgs/ru.msg + tlpkg/tltcl/lib/tk8.6/msgs/sv.msg + tlpkg/tltcl/lib/tk8.6/obsolete.tcl + tlpkg/tltcl/lib/tk8.6/optMenu.tcl + tlpkg/tltcl/lib/tk8.6/palette.tcl + tlpkg/tltcl/lib/tk8.6/panedwindow.tcl + tlpkg/tltcl/lib/tk8.6/pkgIndex.tcl + tlpkg/tltcl/lib/tk8.6/safetk.tcl + tlpkg/tltcl/lib/tk8.6/scale.tcl + tlpkg/tltcl/lib/tk8.6/scrlbar.tcl + tlpkg/tltcl/lib/tk8.6/spinbox.tcl + tlpkg/tltcl/lib/tk8.6/tclIndex + tlpkg/tltcl/lib/tk8.6/tearoff.tcl + tlpkg/tltcl/lib/tk8.6/text.tcl + tlpkg/tltcl/lib/tk8.6/tk.tcl + tlpkg/tltcl/lib/tk8.6/tkAppInit.c + tlpkg/tltcl/lib/tk8.6/tkfbox.tcl + tlpkg/tltcl/lib/tk8.6/ttk/altTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/aquaTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/button.tcl + tlpkg/tltcl/lib/tk8.6/ttk/clamTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/classicTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/combobox.tcl + tlpkg/tltcl/lib/tk8.6/ttk/cursors.tcl + tlpkg/tltcl/lib/tk8.6/ttk/defaults.tcl + tlpkg/tltcl/lib/tk8.6/ttk/entry.tcl + tlpkg/tltcl/lib/tk8.6/ttk/fonts.tcl + tlpkg/tltcl/lib/tk8.6/ttk/menubutton.tcl + tlpkg/tltcl/lib/tk8.6/ttk/notebook.tcl + tlpkg/tltcl/lib/tk8.6/ttk/panedwindow.tcl + tlpkg/tltcl/lib/tk8.6/ttk/progress.tcl + tlpkg/tltcl/lib/tk8.6/ttk/scale.tcl + tlpkg/tltcl/lib/tk8.6/ttk/scrollbar.tcl + tlpkg/tltcl/lib/tk8.6/ttk/sizegrip.tcl + tlpkg/tltcl/lib/tk8.6/ttk/spinbox.tcl + tlpkg/tltcl/lib/tk8.6/ttk/treeview.tcl + tlpkg/tltcl/lib/tk8.6/ttk/ttk.tcl + tlpkg/tltcl/lib/tk8.6/ttk/utils.tcl + tlpkg/tltcl/lib/tk8.6/ttk/vistaTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/winTheme.tcl + tlpkg/tltcl/lib/tk8.6/ttk/xpTheme.tcl + tlpkg/tltcl/lib/tk8.6/unsupported.tcl + tlpkg/tltcl/lib/tk8.6/xmfbox.tcl + tlpkg/tltcl/lib/tkConfig.sh + +name tlshell.x86_64-cygwin +category TLCore +revision 45015 +shortdesc x86_64-cygwin files of tlshell +containersize 340 +containerchecksum 1f2b41d9d146447fa82501dadb9a2df0d794f160ca83c042c1fe4fa60433f1bd09a3bb376944be1081fb65b0c811a35f0abde4e74c71a097e4a2fa32eca43b40 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/tlshell + +name tlshell.x86_64-darwinlegacy +category TLCore +revision 45015 +shortdesc x86_64-darwinlegacy files of tlshell +containersize 348 +containerchecksum 8f24b9c96dfe03be0ae305dcdcb90b4e8697655cbd45e38f48ab2b4bdfb2b7da7c6484c7e237ae8d3c0deaa76ca933c63cd49059a7b9b35515763624e1fad682 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/tlshell + +name tlshell.x86_64-linux +category TLCore +revision 45015 +shortdesc x86_64-linux files of tlshell +containersize 340 +containerchecksum a032d746184fc34956ac74cf3a65ac77674bf2278eb3dea455cd1d1a346cc5292a72b24a07bb685d1758edd8ed28680fb0f94f777b7dcc9aeef50cd676fe9138 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/tlshell + +name tlshell.x86_64-linuxmusl +category TLCore +revision 47036 +shortdesc x86_64-linuxmusl files of tlshell +containersize 344 +containerchecksum 26c6bec599096cbc8a04126a1048c297f6e888de073ff9d906f448a096fce696090486108f064abd52dbcf1f64379b031018d175161f4f4aa384636696551d69 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/tlshell + +name tlshell.x86_64-solaris +category TLCore +revision 45015 +shortdesc x86_64-solaris files of tlshell +containersize 340 +containerchecksum c8cc2603b338f7e598702d2997bb994b74ed650f4f02f836e989699374c4604e0c7d60c2878fa532d55d93386c0b7fa8ac34185db872c5101228f7da0deb5457 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/tlshell + +name tocbibind +category Package +revision 20085 +shortdesc Add bibliography/index/contents to Table of Contents +relocated 1 +longdesc Automatically adds the bibliography and/or the index and/or the +longdesc contents, etc., to the Table of Contents listing. +containersize 2916 +containerchecksum f373d6c98730e60d06790d1a219df26e60bbddd2aaffc3aefc5877ae6b2c10c1a08e21dfef82cc591e1c6f7c014e0843ae30be948b7eb55321dc94cfb7b16aa9 +doccontainersize 311568 +doccontainerchecksum 1521eaf8a15038a2a0b6136e444ac38d6033071b305f6de6db6a5f8ae34625a5b8bf654d7a97b5ebdfcf4efeae58c41a7c9c17005552314928e315295766c441 +docfiles size=77 + RELOC/doc/latex/tocbibind/README details="Readme" + RELOC/doc/latex/tocbibind/tocbibind.pdf details="Package documentation" +srccontainersize 12776 +srccontainerchecksum fa8375bce4af25fec4743d0c0002f90dbad7240f7959ad843365b72502c8c2d2cc9047b21e01d68a6fc525fca132b3a4842481f808999cac40221af32ea7e487 +srcfiles size=12 + RELOC/source/latex/tocbibind/tocbibind.dtx + RELOC/source/latex/tocbibind/tocbibind.ins +runfiles size=3 + RELOC/tex/latex/tocbibind/tocbibind.sty +catalogue-ctan /macros/latex/contrib/tocbibind +catalogue-license lppl +catalogue-topics toc-etc +catalogue-version 1.5k + +name tocdata +category Package +revision 55852 +shortdesc Adds names to chapters, sections, figures in the TOC and LOF +relocated 1 +longdesc The tocdata package may be used to add a small amount of data +longdesc to an entry in the table of contents or list of figures, +longdesc between the section or caption name and the page number. The +longdesc typical use would be to add the name of an author or artist of +longdesc a chapter or section, such as in an anthology or a collection +longdesc of papers. Additionally, user-level macros are provided which +longdesc add the author's name to a chapter or section, along with an +longdesc optional prefix and/or suffix, and add to a figure the artist's +longdesc name, prefix, and suffix, plus optional additional text. Author +longdesc and artist names are also added to the index. Additional +longdesc user-level macros control formatting. tocdata works with the +longdesc TOC/LOF formatting of the default LaTeX classes, memoir, +longdesc koma-script, and with titletoc, tocloft, tocbasic, and +longdesc tocstyle. +containersize 3352 +containerchecksum d09c92d7be720882d53799e8ed8b392e8ce20f1ed78ec995918dbae80fe99e58b3d6b74264f5cf47c146b6f2adf779c97f5e4f98060bd704faf58959c7ce1dd7 +doccontainersize 915648 +doccontainerchecksum a67eb751bced4bf18dd734a7643923062f30d1dd43e1ced5f161312950d4313eb2187cb1e85cd16835ece11907bbb58bdadb0e922aded123c5d024e390b035e8 +docfiles size=227 + RELOC/doc/latex/tocdata/README.txt details="Readme" + RELOC/doc/latex/tocdata/tocdata.pdf details="Package documentation" +srccontainersize 12280 +srccontainerchecksum 4ed7570fe98eff95fea9f9bd30b772a45fb38f83f1bfe56e353b4531f65b06cb859fef310310654acf42ecb29dd78c78042971ff7957480962d86a4307c2a7f1 +srcfiles size=14 + RELOC/source/latex/tocdata/tocdata.dtx + RELOC/source/latex/tocdata/tocdata.ins +runfiles size=4 + RELOC/tex/latex/tocdata/tocdata.sty +catalogue-ctan /macros/latex/contrib/tocdata +catalogue-license lppl1.3 +catalogue-topics toc-etc +catalogue-version 2.04 + +name tocloft +category Package +revision 53364 +shortdesc Control table of contents, figures, etc +relocated 1 +longdesc Provides control over the typography of the Table of Contents, +longdesc List of Figures and List of Tables, and the ability to create +longdesc new 'List of ...'. The ToC \parskip may be changed. +containersize 6148 +containerchecksum 249b50b4dde3c9b14cfd3a7b00c441007643ad6638996b83a0274bf4126ca8a26f6cfff816c5efc9b6516953cfc29c18905138fe137877ae920e82376afeeab7 +doccontainersize 496680 +doccontainerchecksum edd477e3c4b2a9f815c3e57a6b785c2237bc34435dd561d28b3e38bd8da5cc5d4d4de79a10dfbb55e920d69dab90d0a40efd3bcc44cad1c736a723b89f147af9 +docfiles size=126 + RELOC/doc/latex/tocloft/README details="Readme" + RELOC/doc/latex/tocloft/tocloft.pdf details="Package documentation" +srccontainersize 29068 +srccontainerchecksum a870218b7470962996f5bbab8c15f880d6aa863b8102dfccc67bbe3cdc3895785cc44624bd460d37a96da74d1ef28340535576aa481129e9ccda2e5ee1ee6256 +srcfiles size=35 + RELOC/source/latex/tocloft/tocloft.dtx + RELOC/source/latex/tocloft/tocloft.ins +runfiles size=9 + RELOC/tex/latex/tocloft/tocloft.sty +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-license lppl1.3c +catalogue-topics toc-etc +catalogue-version 2.3j + +name tocvsec2 +category Package +revision 33146 +shortdesc Section numbering and table of contents control +relocated 1 +longdesc Provides control over section numbering (without recourse to +longdesc starred sectional commands) and/or the entries in the Table of +longdesc Contents on a section by section basis. +containersize 1924 +containerchecksum 685ff581b0cba155a763ba951b4f5b1e12a44741dc5245967cc2d2effad12127828e4d2f3adabb9fe3d126ffa1f76d43dc196b89faa39745ce85a7f96fb44017 +doccontainersize 302304 +doccontainerchecksum 9247adf45a6a8f18e03d7b93ea8de8decdd9f1ba15eed7ee28c356679a6f62bd8607b9c519448bae2234cec15b76a5155ad7efe99ceb9382022988a29c2ee85c +docfiles size=76 + RELOC/doc/latex/tocvsec2/README details="Readme" + RELOC/doc/latex/tocvsec2/tocvsec2-example.tex + RELOC/doc/latex/tocvsec2/tocvsec2.pdf details="Package documentation" +srccontainersize 8052 +srccontainerchecksum c6af924f3d8e52028c7bfe7e27bab1420dec1fe6f3e948b09a131c65a37ec8e9baa594d725a4eca7b3dd10ed19ceb5f54f1ccae49706e9816c7e4e1d9f1212c0 +srcfiles size=8 + RELOC/source/latex/tocvsec2/tocvsec2.dtx + RELOC/source/latex/tocvsec2/tocvsec2.ins +runfiles size=2 + RELOC/tex/latex/tocvsec2/tocvsec2.sty +catalogue-ctan /macros/latex/contrib/tocvsec2 +catalogue-license lppl1.3 +catalogue-topics headings toc-etc +catalogue-version 1.3a + +name todo +category Package +revision 17746 +shortdesc Make a to-do list for a document +relocated 1 +longdesc The package allows you to insert "to do" marks in your +longdesc document, to make lists of such items, and to cross-reference +longdesc to them. +containersize 1900 +containerchecksum e3cd06aa47c36344602a0dccfb48e43c0639cadcb91aa9e787d552c6d3ecca95da3b0f3af8d0f479caad41f657bbcc30016dfd3f80f42285fe8ab02e0a904601 +doccontainersize 179880 +doccontainerchecksum c747b4cdcbe8533338a9120b06120b0daa68940ace4cf44d87882d5b5a5a42e2c062c667d2e3fbf8979e1385cd55dfd8747f4fcb044a4112f4b2a79588d0463e +docfiles size=57 + RELOC/doc/latex/todo/README + RELOC/doc/latex/todo/todo-spl.pdf details="Sample of use" + RELOC/doc/latex/todo/todo-spl.tex + RELOC/doc/latex/todo/todo.pdf details="Package documentation" +srccontainersize 7408 +srccontainerchecksum 7f70973e13cba6c532d45af7f5c21264adfb75542a7a68e9bf23508955a553efee723edfe098c4a87015c463c99d4063a9bce6888e7bc9018999ab4721a524ce +srcfiles size=7 + RELOC/source/latex/todo/todo.dtx + RELOC/source/latex/todo/todo.ins +runfiles size=2 + RELOC/tex/latex/todo/todo.sty +catalogue-ctan /macros/latex/contrib/todo +catalogue-license lppl1 +catalogue-topics notes editorial +catalogue-version 2.142 + +name todonotes +category Package +revision 58998 +shortdesc Marking things to do in a LaTeX document +relocated 1 +longdesc The package lets the user mark things to do later, in a simple +longdesc and visually appealing way. The package takes several options +longdesc to enable customization/finetuning of the visual appearance. +depend pgf +depend tools +depend xcolor +depend xkeyval +containersize 4760 +containerchecksum 949090dd8738c5a36e2040e25304d423847e94c1bdd7a45f51978bf085c1bd1dc9e274d53b8f671866e9a35d518193579a2c40fd66d3480ac25c9b17232451ee +doccontainersize 431988 +doccontainerchecksum 8df01894218cd935bc0fb9b454caf041643bb716650379a11178dd2db6e3c0b20ddc534a06b4546fa8d12694122bc419c8417e98218940019a74ecfe42a51b77 +docfiles size=113 + RELOC/doc/latex/todonotes/README details="Readme" + RELOC/doc/latex/todonotes/examples/alterAppearenceOfListOfTodos.pdf + RELOC/doc/latex/todonotes/examples/alterAppearenceOfListOfTodos.tex + RELOC/doc/latex/todonotes/examples/externalize.pdf + RELOC/doc/latex/todonotes/examples/externalize.tex + RELOC/doc/latex/todonotes/examples/saveColorByUsingLayers.pdf + RELOC/doc/latex/todonotes/examples/saveColorByUsingLayers.tex + RELOC/doc/latex/todonotes/todonotes.pdf details="Package documentation" +srccontainersize 18416 +srccontainerchecksum e46e9a2f7ec6fad3b455664e37ca2111b965255f7a81274834b4aadf9c930d116c20347b5b750adc0c5ef67b9928051ed5cb2182eeea131632acf54192a157ca +srcfiles size=20 + RELOC/source/latex/todonotes/todonotes.dtx + RELOC/source/latex/todonotes/todonotes.ins +runfiles size=6 + RELOC/tex/latex/todonotes/todonotes.sty +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-license lppl1.3 +catalogue-topics notes editorial +catalogue-version 1.1.4 + +name tokcycle +category Package +revision 58254 +shortdesc Build tools to process tokens from an input stream +relocated 1 +longdesc The tokcycle package helps one to build tools to process tokens +longdesc from an input stream. If a macro to process an arbitrary single +longdesc token can be built, then tokcycle can provide a wrapper for +longdesc cycling through an input stream (including macros, spaces, and +longdesc groups) on a token-by-token basis, using the provided macro on +longdesc each successive character. tokcycle characterizes each +longdesc successive token in the input stream as a Character, a Group, a +longdesc Macro, or a Space. Each of these token categories are processed +longdesc with a unique directive, to bring about the desired effect of +longdesc the token cycle. If condition flags are provided to identify +longdesc active, implicit, and catcode-6 tokens as they are digested. +longdesc The package provides a number of options for handling groups. +containersize 5480 +containerchecksum b65bfd661b170277c89db47655a64f47b61b90da9ae6ace0f6de1264c109aa5c9900b2098ab3ebbe1c2284a4c0b725e876f272246f353648b78247d7c1b29bd6 +doccontainersize 1079464 +doccontainerchecksum 2bc13594efa21656bc136bcf6d7358d3cf8a3eb61094d6abe427e958eef26a6731959c01e37b1a0985ee0a9eb7e22f25ba065b697718e2db6a968aa861c5d7d9 +docfiles size=306 + RELOC/doc/generic/tokcycle/README details="Readme" + RELOC/doc/generic/tokcycle/tokcycle-doc.pdf details="Package documentation" + RELOC/doc/generic/tokcycle/tokcycle-doc.tex + RELOC/doc/generic/tokcycle/tokcycle-examples.pdf details="Examples of use" + RELOC/doc/generic/tokcycle/tokcycle-examples.tex +runfiles size=5 + RELOC/tex/generic/tokcycle/tokcycle.sty + RELOC/tex/generic/tokcycle/tokcycle.tex +catalogue-ctan /macros/generic/tokcycle +catalogue-license lppl1.3c +catalogue-topics macro-supp parser macro-iterate misc-support macro-gen +catalogue-version 1.3 + +name tokenizer +category Package +revision 15878 +shortdesc A tokenizer +relocated 1 +longdesc A tokenizer for LaTeX. \GetTokens{Target1}{Target2}{Source} +longdesc splits source into two tokens at the first encounter of a +longdesc comma. The first token is saved in a newly created command with +longdesc the name passed as <Target1> and the second token likewise. A +longdesc package option 'trim' causes leading and trailing space to be +longdesc removed from each token; with this option, the \TrimSpaces +longdesc command is defined, which removes leading and trailing spaces +longdesc from its argument. +containersize 2116 +containerchecksum 5174ea1b9c6c02fb8245db5315ccc7b65239d1343f719ee23428bd530dfd70edf26822bde25d672603d268a63360ba31b4a9fdcddf426b82eef440cd7f449d8e +doccontainersize 73892 +doccontainerchecksum 4e978a368cd7e97a1300addb739b457cbf4810ecb2d4e1161d931373d858573d8fe1688629cd7d23a44a4d5403e5d8d9dc92869be9809bddc9110c55879c940e +docfiles size=22 + RELOC/doc/latex/tokenizer/tokenizer.pdf details="Package documentation" + RELOC/doc/latex/tokenizer/tokenizer.tex +runfiles size=2 + RELOC/tex/latex/tokenizer/tokenizer.sty +catalogue-also csvtools +catalogue-ctan /macros/latex/contrib/tokenizer +catalogue-license lppl +catalogue-topics data-import data-disp csv-support +catalogue-version 1.1.0 + +name toolbox +category Package +revision 32260 +shortdesc Tool macros +relocated 1 +longdesc A package for (La)TeX which provides some macros which are +longdesc convenient for writing indexes, glossaries, or other macros. It +longdesc contains macros which support: implicit macros; fancy optional +longdesc arguments; loops over tokenlists and itemlists; searching and +longdesc splitting; controlled expansion; redefinition of macros; and +longdesc concatenated macro names; macros for text replacement. +containersize 3052 +containerchecksum af5320de678474075998f9497be0b766e826b0105b344939a66c5c1377e7c345623e2de18b73cb43f93c8edc241fca7a99fff1ca4b6bd3dfba52bf2ff476f18f +doccontainersize 142452 +doccontainerchecksum ee800bb98c9577b12bf20a0b19ce27d9c6900f66e0920c922626599986b887e34513cca8474456aab7ae59aa5d5fae3c7c323ca4cc21372979ab3d545921ed34 +docfiles size=49 + RELOC/doc/latex/toolbox/README details="Readme" + RELOC/doc/latex/toolbox/toolbox.pdf + RELOC/doc/latex/toolbox/toolbox.tex + RELOC/doc/latex/toolbox/toolbox.txt +srccontainersize 24148 +srccontainerchecksum 201c3153ceb48cc4f7a3b24babd95e78939f03a7d2f3992a73113d904c90e5c957135a0efab98cb2ed01f742c39cf84c4a12efb8bf9f9bb9a082d56f62c98255 +srcfiles size=29 + RELOC/source/latex/toolbox/toolbox.dtx + RELOC/source/latex/toolbox/toolbox.ins +runfiles size=3 + RELOC/tex/latex/toolbox/toolbox.sty +catalogue-ctan /macros/latex/contrib/toolbox +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 5.1 + +name tools +category Package +revision 56514 +catalogue latex-tools +shortdesc The LaTeX standard tools bundle +relocated 1 +longdesc A collection of (variously) simple tools provided as part of +longdesc the LaTeX required tools distribution, comprising the packages: +longdesc afterpage, array, bm, calc, dcolumn, delarray, enumerate, +longdesc fileerr, fontsmpl, ftnright, hhline, indentfirst, layout, +longdesc longtable, multicol, rawfonts, showkeys, somedefs, tabularx, +longdesc theorem, trace, varioref, verbatim, xr, and xspace. +containersize 41916 +containerchecksum 2598798421318513c028a6bcd9be4eea18b7cf8fcf20444d860b2954d81895cfbe9e8700fa3cd052fcb50353cb1bd926a047026d8fb07e48aced5d8338a6e464 +doccontainersize 5224556 +doccontainerchecksum 90d85bb6e877d8d8b1ece806e62c6179ecbbbda3497c4c4f16b67989448d1d2179c50c475a1dfe57bf085ee30fcc09a962586dc089565dfd0715b8fa4eab608d +docfiles size=1643 + RELOC/doc/latex/tools/README.md details="Readme" + RELOC/doc/latex/tools/afterpage.pdf + RELOC/doc/latex/tools/array.pdf + RELOC/doc/latex/tools/bm.pdf + RELOC/doc/latex/tools/calc.pdf + RELOC/doc/latex/tools/changes.txt + RELOC/doc/latex/tools/dcolumn.pdf + RELOC/doc/latex/tools/delarray.pdf + RELOC/doc/latex/tools/enumerate.pdf + RELOC/doc/latex/tools/fileerr.pdf + RELOC/doc/latex/tools/fontsmpl.pdf + RELOC/doc/latex/tools/ftnright.pdf + RELOC/doc/latex/tools/hhline.pdf + RELOC/doc/latex/tools/indentfirst.pdf + RELOC/doc/latex/tools/layout.pdf + RELOC/doc/latex/tools/longtable.pdf + RELOC/doc/latex/tools/manifest.txt + RELOC/doc/latex/tools/multicol.pdf + RELOC/doc/latex/tools/rawfonts.pdf + RELOC/doc/latex/tools/shellesc.pdf + RELOC/doc/latex/tools/showkeys.pdf + RELOC/doc/latex/tools/somedefs.pdf + RELOC/doc/latex/tools/tabularx.pdf + RELOC/doc/latex/tools/theorem.pdf + RELOC/doc/latex/tools/tools-overview.pdf + RELOC/doc/latex/tools/tools-overview.tex + RELOC/doc/latex/tools/trace.pdf + RELOC/doc/latex/tools/varioref.pdf + RELOC/doc/latex/tools/verbatim.pdf + RELOC/doc/latex/tools/xr.pdf + RELOC/doc/latex/tools/xspace.pdf +srccontainersize 225760 +srccontainerchecksum aca34a4532b188cef91484f36b05488a627582882f56d48b35020872c48dffdf3cd3be9ca8c6073c45db564cdf390b80689cefbb12c5eaf2370deb75646006ed +srcfiles size=266 + RELOC/source/latex/tools/afterpage.dtx + RELOC/source/latex/tools/afterpage.ins + RELOC/source/latex/tools/array.dtx + RELOC/source/latex/tools/bm.dtx + RELOC/source/latex/tools/bm.ins + RELOC/source/latex/tools/calc.dtx + RELOC/source/latex/tools/dcolumn.dtx + RELOC/source/latex/tools/delarray.dtx + RELOC/source/latex/tools/enumerate.dtx + RELOC/source/latex/tools/fileerr.dtx + RELOC/source/latex/tools/fontsmpl.dtx + RELOC/source/latex/tools/ftnright.dtx + RELOC/source/latex/tools/hhline.dtx + RELOC/source/latex/tools/indentfirst.dtx + RELOC/source/latex/tools/layout.dtx + RELOC/source/latex/tools/longtable.dtx + RELOC/source/latex/tools/longtable.ins + RELOC/source/latex/tools/multicol.dtx + RELOC/source/latex/tools/multicol.ins + RELOC/source/latex/tools/rawfonts.dtx + RELOC/source/latex/tools/shellesc.dtx + RELOC/source/latex/tools/showkeys.dtx + RELOC/source/latex/tools/somedefs.dtx + RELOC/source/latex/tools/tabularx.dtx + RELOC/source/latex/tools/tabularx.ins + RELOC/source/latex/tools/theorem.dtx + RELOC/source/latex/tools/tools.ins + RELOC/source/latex/tools/trace.dtx + RELOC/source/latex/tools/varioref.dtx + RELOC/source/latex/tools/varioref.ins + RELOC/source/latex/tools/verbatim.dtx + RELOC/source/latex/tools/xr.dtx + RELOC/source/latex/tools/xspace.dtx +runfiles size=105 + RELOC/tex/latex/tools/.tex + RELOC/tex/latex/tools/afterpage.sty + RELOC/tex/latex/tools/array-2016-10-06.sty + RELOC/tex/latex/tools/array-2020-02-10.sty + RELOC/tex/latex/tools/array.sty + RELOC/tex/latex/tools/bm.sty + RELOC/tex/latex/tools/calc.sty + RELOC/tex/latex/tools/dcolumn.sty + RELOC/tex/latex/tools/delarray.sty + RELOC/tex/latex/tools/e.tex + RELOC/tex/latex/tools/enumerate.sty + RELOC/tex/latex/tools/fontsmpl.sty + RELOC/tex/latex/tools/fontsmpl.tex + RELOC/tex/latex/tools/ftnright.sty + RELOC/tex/latex/tools/h.tex + RELOC/tex/latex/tools/hhline.sty + RELOC/tex/latex/tools/indentfirst.sty + RELOC/tex/latex/tools/layout.sty + RELOC/tex/latex/tools/longtable.sty + RELOC/tex/latex/tools/multicol-2017-04-11.sty + RELOC/tex/latex/tools/multicol.sty + RELOC/tex/latex/tools/q.tex + RELOC/tex/latex/tools/r.tex + RELOC/tex/latex/tools/rawfonts.sty + RELOC/tex/latex/tools/s.tex + RELOC/tex/latex/tools/shellesc.sty + RELOC/tex/latex/tools/showkeys.sty + RELOC/tex/latex/tools/somedefs.sty + RELOC/tex/latex/tools/tabularx.sty + RELOC/tex/latex/tools/thb.sty + RELOC/tex/latex/tools/thc.sty + RELOC/tex/latex/tools/thcb.sty + RELOC/tex/latex/tools/theorem.sty + RELOC/tex/latex/tools/thm.sty + RELOC/tex/latex/tools/thmb.sty + RELOC/tex/latex/tools/thp.sty + RELOC/tex/latex/tools/trace.sty + RELOC/tex/latex/tools/varioref-2016-02-16.sty + RELOC/tex/latex/tools/varioref.sty + RELOC/tex/latex/tools/verbatim.sty + RELOC/tex/latex/tools/verbtest.tex + RELOC/tex/latex/tools/x.tex + RELOC/tex/latex/tools/xr.sty + RELOC/tex/latex/tools/xspace.sty +catalogue-ctan /macros/latex/required/tools +catalogue-license lppl1.3c +catalogue-topics collection + +name topfloat +category Package +revision 19084 +shortdesc Move floats to the top of the page +relocated 1 +containersize 1392 +containerchecksum a4e4031292203a04a1df1dc5e6bd4f6b89c8806599d995707fa0dfc238bcb3dd1ecf185665db33a406302567607da5640f385f12cffb46f482993850b78155a0 +doccontainersize 40340 +doccontainerchecksum 6c37c3b9ad32a121eb03f23049e11fe52b7cf6d49353e94a18eb39aaed3c049bee86ef6c6984440c9700546f20023f7a71975591c1f3750d31e176e8ba4f4c47 +docfiles size=15 + RELOC/doc/latex/topfloat/topfloat.pdf details="Package documentation" language="it" + RELOC/doc/latex/topfloat/topfloat.tex +runfiles size=1 + RELOC/tex/latex/topfloat/topfloat.sty +catalogue-ctan /macros/latex/contrib/topfloat +catalogue-license gpl +catalogue-topics float + +name topiclongtable +category Package +revision 54758 +shortdesc Extend longtable with cells that merge hierarchically +relocated 1 +longdesc This LaTeX package extends longtable implementing cells that: +longdesc merge with the one above if it has the same content, do not +longdesc merge with the one above unless the ones on the left are +longdesc merged, are well behaved with respect to longtable chunking on +longdesc page breaks, and automatically draw the correct separation +longdesc lines. The typical use case is a table spanning multiple pages +longdesc that contains a list of hierarchically organized topics (hence +longdesc the package name). The package depends on array, expl3, +longdesc longtable, multirow, xparse, and zref-abspage. +containersize 4348 +containerchecksum 3bd1bc743191a644cf9dbdd36890929003adfd8bc68372ff74882b3b37f2cbdfcd007222fbaadf4d73b5b1f919e1491edf8c25e9c69993be367d3816d06a6b12 +doccontainersize 379756 +doccontainerchecksum c837a90b1c13f194d4bd41d1ef91e994c4027443169588622bab2613b57cc86c6a29b81178f257c2a6b36ea65c89e1b66791ed137c2b5c144deea8c7cb987a17 +docfiles size=97 + RELOC/doc/latex/topiclongtable/README.md details="Readme" + RELOC/doc/latex/topiclongtable/topiclongtable-doc.pdf details="Package documentation" + RELOC/doc/latex/topiclongtable/topiclongtable-doc.tex +runfiles size=4 + RELOC/tex/latex/topiclongtable/topiclongtable.sty +catalogue-contact-bugs https://github.com/paolobrasolin/topiclongtable/issues +catalogue-contact-repository https://github.com/paolobrasolin/topiclongtable +catalogue-ctan /macros/latex/contrib/topiclongtable +catalogue-license mit +catalogue-topics table-long table expl3 +catalogue-version 1.3.2 + +name topletter +category Package +revision 48182 +shortdesc Letter class for the Politecnico di Torino +relocated 1 +longdesc This package provides a LaTeX class for typesetting letters +longdesc conforming to the official Corporate Image guidelines for the +longdesc Politecnico di Torino. The class can be used for letters +longdesc written in Italian and in English. +containersize 2552 +containerchecksum 1c583621d738ff203ef755c4ab6d4ad520fe25204c882b3b5b1dc719590cc4ae117502008f0b2ef67486f33127e6eab92a2177aed42a8e011c9309632ce1fda1 +doccontainersize 363444 +doccontainerchecksum 2fcaee9c15adec307e5cbbc4e71dadd2bfe2158f51d5bb842ea6faf1e10487f5881d171e29a48ac7c6c6ce52bae7bffee91772dd046311959167b11ddac8328c +docfiles size=132 + RELOC/doc/latex/topletter/EsempioLettera.pdf details="Example of use (Italian)" language="it" + RELOC/doc/latex/topletter/EsempioLettera.tex + RELOC/doc/latex/topletter/ExampleLetter.pdf details="Example of use (English)" + RELOC/doc/latex/topletter/ExampleLetter.tex + RELOC/doc/latex/topletter/LICENSE + RELOC/doc/latex/topletter/LogoPolitoBlu.pdf + RELOC/doc/latex/topletter/README.md details="Readme" + RELOC/doc/latex/topletter/TOPletter.pdf details="Package documentation" + RELOC/doc/latex/topletter/Walt_Disney_1942_signature.pdf +srccontainersize 6292 +srccontainerchecksum b22e020b8fc477da1316c9f36818d9508f45bd3259e03e2cb096aef984cf655b1171069135001301f9be631c7bfb99e63ed7dc95af968be0700c8027b6484f45 +srcfiles size=6 + RELOC/source/latex/topletter/TOPletter.dtx + RELOC/source/latex/topletter/TOPletter.ins +runfiles size=2 + RELOC/tex/latex/topletter/TOPletter.cls +catalogue-contact-bugs https://github.com/mtorchiano/TOPLetter/issues +catalogue-contact-repository https://github.com/mtorchiano/TOPLetter +catalogue-ctan /macros/latex/contrib/topletter +catalogue-license apache2 +catalogue-topics letter class italian +catalogue-version 0.3.0 + +name toptesi +category Package +revision 56276 +shortdesc Bundle for typesetting multilanguage theses +relocated 1 +longdesc This bundle contains everything needed for typesetting a +longdesc bachelor, master, or PhD thesis in Italian (or in any other +longdesc language supported by LaTeX: the bundle is constructed to +longdesc support multilingual use). The infix strings may be selected +longdesc and specified at will by means of a configuration file, so as +longdesc to customize the layout of the front page to the requirements +longdesc of a specific university. Thanks to its language management, +longdesc the bundle is suited for multilanguage theses that are becoming +longdesc more and more frequent thanks to the double degree programs of +longdesc the European Community Socrates programs. Toptesi is designed +longdesc to save the PDF version of a thesis in PDF/A-1b compliant mode +longdesc and with all the necessary metadata. +containersize 20420 +containerchecksum be7a920e195b9ffd3fcfc0bbe1647d1b47fb98743ec69ea9b23783f052d9c10c26acdea42d4d2c7501bd57d3853f53642a5328a1c6954294a2cd38d8aeeaaac2 +doccontainersize 5776432 +doccontainerchecksum 7dd70306861e8528cd4c645893a3cb81c20a6f82db2237e595573226c77f8df71ecfa57909b9675e19e441301fecf38f1b1c4bb7b4ed2705a4e132d4bf19b436 +docfiles size=2186 + RELOC/doc/latex/toptesi/FrontespiziAssemblati.pdf + RELOC/doc/latex/toptesi/FrontespiziAssemblati1.pdf + RELOC/doc/latex/toptesi/FrontespiziAssemblati2.pdf + RELOC/doc/latex/toptesi/Frontespizio-sss.pdf + RELOC/doc/latex/toptesi/FrontespizioLandscape.pdf + RELOC/doc/latex/toptesi/FrontespizioScudo.pdf + RELOC/doc/latex/toptesi/FrontespizioScudo.tex + RELOC/doc/latex/toptesi/GuITlogo.pdf + RELOC/doc/latex/toptesi/MPlogo.pdf + RELOC/doc/latex/toptesi/README.txt details="Readme" language="en" + RELOC/doc/latex/toptesi/TITDocScCropped.pdf + RELOC/doc/latex/toptesi/TITlogoCropped.pdf + RELOC/doc/latex/toptesi/Toptesi-con-topfront.pdf + RELOC/doc/latex/toptesi/Toptesi-con-topfront.tex + RELOC/doc/latex/toptesi/Toptesi-example-topfront.pdf + RELOC/doc/latex/toptesi/Toptesi-example-topfront.tex + RELOC/doc/latex/toptesi/VeraPDFiniziale.jpg + RELOC/doc/latex/toptesi/logodue.pdf + RELOC/doc/latex/toptesi/logoguittondo.pdf + RELOC/doc/latex/toptesi/logoquattro.pdf + RELOC/doc/latex/toptesi/logotre.pdf + RELOC/doc/latex/toptesi/logouno.pdf + RELOC/doc/latex/toptesi/lppl.tex + RELOC/doc/latex/toptesi/topfront-example.pdf + RELOC/doc/latex/toptesi/topfront-example.tex + RELOC/doc/latex/toptesi/toptesi-example-con-frontespizio.pdf + RELOC/doc/latex/toptesi/toptesi-example-con-frontespizio.tex + RELOC/doc/latex/toptesi/toptesi-example-dottorale.pdf + RELOC/doc/latex/toptesi/toptesi-example-dottorale.tex + RELOC/doc/latex/toptesi/toptesi-example-luatex.pdf + RELOC/doc/latex/toptesi/toptesi-example-luatex.tex + RELOC/doc/latex/toptesi/toptesi-example-magistrale.pdf + RELOC/doc/latex/toptesi/toptesi-example-magistrale.tex + RELOC/doc/latex/toptesi/toptesi-example-sss.pdf + RELOC/doc/latex/toptesi/toptesi-example-sss.tex + RELOC/doc/latex/toptesi/toptesi-example-triennale.pdf + RELOC/doc/latex/toptesi/toptesi-example-triennale.tex + RELOC/doc/latex/toptesi/toptesi-example-xetex.pdf + RELOC/doc/latex/toptesi/toptesi-example-xetex.tex + RELOC/doc/latex/toptesi/toptesi-example.cfg + RELOC/doc/latex/toptesi/toptesi-example.pdf + RELOC/doc/latex/toptesi/toptesi-example.tex + RELOC/doc/latex/toptesi/toptesi-it.pdf details="Class documentation (Italian)" language="it" + RELOC/doc/latex/toptesi/toptesi-it.tex + RELOC/doc/latex/toptesi/toptesi-scudo-example.zip + RELOC/doc/latex/toptesi/toptesi.pdf details="Package documentation" + RELOC/doc/latex/toptesi/veraPDFconformance.jpg + RELOC/doc/latex/toptesi/veraPDFnoconformance.jpg + RELOC/doc/latex/toptesi/veraPDFnoconformance.pdf +srccontainersize 97136 +srccontainerchecksum f127b3ece0428207e503bf2f9258da2c4128b524069c45c4d7b188ac06ef52527d04020a8f002c72a878a9cf5caa358323e5db9e0b65c46d6fafadc657ec014f +srcfiles size=100 + RELOC/source/latex/toptesi/toptesi.dtx +runfiles size=40 + RELOC/tex/latex/toptesi/topcoman.sty + RELOC/tex/latex/toptesi/topfront.sty + RELOC/tex/latex/toptesi/toptesi-dottorale.sty + RELOC/tex/latex/toptesi/toptesi-magistrale.sty + RELOC/tex/latex/toptesi/toptesi-monografia.sty + RELOC/tex/latex/toptesi/toptesi-scudo.sty + RELOC/tex/latex/toptesi/toptesi-sss.sty + RELOC/tex/latex/toptesi/toptesi.cfg + RELOC/tex/latex/toptesi/toptesi.cls + RELOC/tex/latex/toptesi/toptesi.sty +catalogue-ctan /macros/latex/contrib/toptesi +catalogue-license lppl1.3c +catalogue-topics dissertation class multilingual +catalogue-version 6.4.06 + +name totalcount +category Package +revision 56214 +shortdesc Commands for typesetting total values of counters +relocated 1 +longdesc This LaTeX package offers commands for typesetting total values +longdesc of counters. +containersize 1640 +containerchecksum 77d12ae2b41ccc54e88338c47cd8071bcbbb130901cd383a8ab976147c510c52c437e722939882aad859d1bc58f52b7a698033a695ce10551f86874dcd58d425 +doccontainersize 74156 +doccontainerchecksum 1be9ee133e33a859d9dfc91102dfc4511211eee462a0eb9ab2b5610a342d949cff0a883656afa8a1ff0c0d7088a94391c2f5c60894644f3985b9e916ef9df221 +docfiles size=24 + RELOC/doc/latex/totalcount/CHANGELOG + RELOC/doc/latex/totalcount/README details="Readme" + RELOC/doc/latex/totalcount/SUMMARY + RELOC/doc/latex/totalcount/totalcount.pdf details="Package documentation" +srccontainersize 4616 +srccontainerchecksum bb5d5a15c2ce9cf51fc777808ecf0e551a10b1b709786d45cc25276eb787b44a54ebb217c122b170d01f72a393bf5343173d3d94e5e46194e758141e436c2f1f +srcfiles size=5 + RELOC/source/latex/totalcount/totalcount.dtx + RELOC/source/latex/totalcount/totalcount.ins +runfiles size=1 + RELOC/tex/latex/totalcount/totalcount.sty +catalogue-contact-bugs https://gitlab.com/axelsommerfeldt/totalcount/issues +catalogue-contact-repository https://gitlab.com/axelsommerfeldt/totalcount +catalogue-ctan /macros/latex/contrib/totalcount +catalogue-license lppl1.3 +catalogue-topics counter-mgmt +catalogue-version 1.0a + +name totcount +category Package +revision 21178 +shortdesc Find the last value of a counter +relocated 1 +longdesc The package records the value that was last set, for any +longdesc counter of interest; since most such counters are simply +longdesc incremented when they are changed, the recorded value will +longdesc usually be the maximum value. +containersize 2272 +containerchecksum 03ece717c7db3820cf41192e3bad2711e159fcb8a5a5a185e1c55335364917a515d9dd691cf1890421a8c62c9e55bdc49cb13718f7d98d9df34a2470cfff0daf +doccontainersize 286576 +doccontainerchecksum 46ef8cd2317108d0896b32ba9104c69fb34a6d13d1e123d6b8f1648bfdfffa6bb21f17207433dd763451b1f6c104ae3532e7aac43ef2ba73281842f0a3bcd05e +docfiles size=72 + RELOC/doc/latex/totcount/README details="Readme" + RELOC/doc/latex/totcount/totcount-ex.tex + RELOC/doc/latex/totcount/totcount.pdf details="Package documentation" +srccontainersize 6680 +srccontainerchecksum 1820b0b44434650c072a67a4c6144beb7a34129415a4ae298b9c97efd7e81d3396ddb6e4a03081a19962001c8c01a4cdda563c20ba19bda1411e4832d5e7fd14 +srcfiles size=8 + RELOC/source/latex/totcount/totcount.drv + RELOC/source/latex/totcount/totcount.dtx + RELOC/source/latex/totcount/totcount.ins +runfiles size=2 + RELOC/tex/latex/totcount/totcount.sty +catalogue-also lastpage totpages +catalogue-ctan /macros/latex/contrib/totcount +catalogue-license lppl +catalogue-topics macro-supp counter-mgmt +catalogue-version 1.2 + +name totpages +category Package +revision 15878 +shortdesc Count pages in a document, and report last page number +relocated 1 +longdesc The package counts the actual pages in the document (as opposed +longdesc to reporting the number of the last page, as does lastpage). +longdesc The counter itself may be shipped out to the DVI file. The +longdesc package uses the everyshi package for its task. +containersize 3032 +containerchecksum 8dbfcf7728690d6c2a20f661daf62e80c00d3f08fd00aee7a07cbddd31f6adf8f38e32623b2963748367ea08dd3c95919ab576b22d70214a2f5f4f07c40374f1 +doccontainersize 177300 +doccontainerchecksum 58cb9d30644402a68462e0b00b6175ec4a002135eae0bb16ad2cb5b919d1dd6b93583074a0723e1c55946e7d94dab506b8527a67d7d7b39be20608207bae5626 +docfiles size=52 + RELOC/doc/latex/totpages/README details="Readme" + RELOC/doc/latex/totpages/totexmpl.tex + RELOC/doc/latex/totpages/totpages.pdf details="Package documentation" +srccontainersize 9836 +srccontainerchecksum 2ac7e8e8f7b79721fdbc6cfcf9d5d81d80b64f60a535435ec13335e1b6059c01001003ab87d9ab8fff4323575a0fbaf6e8a3569670eeb5411be495d9fd712a1a +srcfiles size=9 + RELOC/source/latex/totpages/totpages.drv + RELOC/source/latex/totpages/totpages.dtx + RELOC/source/latex/totpages/totpages.ins +runfiles size=2 + RELOC/tex/latex/totpages/totpages.sty +catalogue-also count1to +catalogue-ctan /macros/latex/contrib/totpages +catalogue-license lppl +catalogue-topics label-ref typesetting +catalogue-version 2.00 + +name tpic2pdftex +category TLCore +revision 52851 +shortdesc Use tpic commands in pdfTeX +longdesc The AWK script converts pic language, embedded inline +longdesc (delimited by .PS and .PE markers), to \pdfliteral commands. +depend tpic2pdftex.ARCH +containersize 444 +containerchecksum fa8689bd257b6336badb8e5a742d5c5f12d9088b33b43bdc41474feda62358c754db05735fa471baa307907bcd61f68e8d061e66c400198d6a1dc165f39d2226 +doccontainersize 54400 +doccontainerchecksum f24f8508279ded0689bb9dda8c653cfbd903c46782744fcb8d004f50a771ca74b86549c86abc765a408f2be67334048390e407be9446faa476a02ce9c27d5547 +docfiles size=26 + texmf-dist/doc/man/man1/tpic2pdftex.1 + texmf-dist/doc/man/man1/tpic2pdftex.man1.pdf + texmf-dist/doc/tpic2pdftex/Makefile + texmf-dist/doc/tpic2pdftex/beamerexample.pdf + texmf-dist/doc/tpic2pdftex/beamerexample.pic + texmf-dist/doc/tpic2pdftex/example.pdf + texmf-dist/doc/tpic2pdftex/example.pic +catalogue-ctan /graphics/tpic2pdftex +catalogue-license gpl +catalogue-topics graphics-prep + +name tpic2pdftex.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of tpic2pdftex +containersize 4324 +containerchecksum e5a7f430eda8f2d3f7d02d2599e8407f3d5b4f5c26bc464de92c5c84db9f7d6b28c202b2884103ce011cbe2acfc4a8a0ed26ffe6c9e4d6309947c6cf35ad9304 +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/tpic2pdftex + +name tpic2pdftex.amd64-freebsd +category TLCore +revision 29785 +shortdesc amd64-freebsd files of tpic2pdftex +containersize 4328 +containerchecksum 564d07851de7d71dbfd0487cc55c7607ac5d30e8581119b6689d32bba744e3505a124e22a4f393577311cba82b7ca4e2755ef733c8eee1ce5312b40b476dbbbd +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/tpic2pdftex + +name tpic2pdftex.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of tpic2pdftex +containersize 4332 +containerchecksum f37d1eed22ee9caf0a9de53cc845c55b420bb174170a347c5dd40910b141d9c925dbeefb01481c0c9cc972a032b9bb2a57dd0981a4c64c4477186c004f9a220e +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/tpic2pdftex + +name tpic2pdftex.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of tpic2pdftex +containersize 4332 +containerchecksum 2974c3d8b9f3eb57c7ff192093d45da9d6b74701febc869d43ee2289d659c4527810e3d3beea314d2e4962726894da9343d056feea9620ff822fe5e52f5501d2 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/tpic2pdftex + +name tpic2pdftex.i386-cygwin +category TLCore +revision 29836 +shortdesc i386-cygwin files of tpic2pdftex +containersize 4328 +containerchecksum 90b31b53979a5d14d0ee49be004a44e32d6ecd74f37ada3a9790a289a861df32baf2fc53c24d72a713eb3c3a65f69230df62e788b39ab1b9f259c218a3653a43 +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/tpic2pdftex + +name tpic2pdftex.i386-freebsd +category TLCore +revision 29785 +shortdesc i386-freebsd files of tpic2pdftex +containersize 4332 +containerchecksum 1119c9221492bd8ebf8285cea1e1da5327b04d99ac33ad8d9f4ea6fbc2f7f6cf08cb615cda54e68826782dd3bf7b20712078bf32dcfe3172e5a91e1e92b43f24 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/tpic2pdftex + +name tpic2pdftex.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of tpic2pdftex +containersize 4296 +containerchecksum 15c6b0ba881b7ae22a7142d2b610ba778fee7ec361c667e4f82e175c867635eef58978e5aa5d7804251109e0c0697ca6fc6b9b46316c5ad80688f59941226d4c +binfiles arch=i386-linux size=4 + bin/i386-linux/tpic2pdftex + +name tpic2pdftex.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of tpic2pdftex +containersize 4328 +containerchecksum 25b3734a41e6c8642490f17b94acc3ee0d3757b905bfc910a678394e82ae612c5b44e0cdf384ad5db634fc489b6d2592ed5aec649d1b8958d22faacfb159e3a4 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/tpic2pdftex + +name tpic2pdftex.i386-solaris +category TLCore +revision 29806 +shortdesc i386-solaris files of tpic2pdftex +containersize 4320 +containerchecksum 2b40ee4303001945db1d8b1911c91b3bfac10808f320836588a7461c6576be20d9055a4042388fe50c53bb7a3be32423f1c434bbb2145259dba00b7f1bd73c0b +binfiles arch=i386-solaris size=4 + bin/i386-solaris/tpic2pdftex + +name tpic2pdftex.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of tpic2pdftex +containersize 4324 +containerchecksum bfb5b069e4b77f997879b87fb3e4dbc6cc908d1e4387799ac2a27608b29a72a7599c2b252dc7bce0eb5f2df0b6742b177950dc6a39351ba505c3e0fb19e7f59a +binfiles arch=universal-darwin size=4 + bin/universal-darwin/tpic2pdftex + +name tpic2pdftex.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of tpic2pdftex +containersize 4324 +containerchecksum da364856edcb9bedc71be8c2a6cd9b35ef76a7d92fb61b5e8f6bf5368e552e6f01541f3b6c5c05c48a028c646bf02e731e197aa93dd7c3fe5c42f8b696e1e976 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/tpic2pdftex + +name tpic2pdftex.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of tpic2pdftex +containersize 4332 +containerchecksum 1542b30873ff38ed1f6bb7d508338b0d4146838d01d9c1bdcc5b3b0a345b5a779f4a69dc11aa67652552083060165f981f45d3c63cc4e7e35a7800a2b5b34e77 +binfiles arch=x86_64-darwinlegacy size=4 + bin/x86_64-darwinlegacy/tpic2pdftex + +name tpic2pdftex.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of tpic2pdftex +containersize 4292 +containerchecksum 0178b3e1bae658987947d438df32467d8ff3f6d6d0d68ab1f74c49996948e04b26c2d193b1c7c24aeccfd65dd87935bdf18db94416cb730460d880ee3cad1fc8 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/tpic2pdftex + +name tpic2pdftex.x86_64-linuxmusl +category TLCore +revision 54264 +shortdesc x86_64-linuxmusl files of tpic2pdftex +containersize 4304 +containerchecksum b333f8850f97f8303c15df2ca930b207a0cc5f47b45be150a6db0ff1aec989e04aa80e51c043bd4c545e358c9c9505d941190e361bb5010afdcc45182d2c16ba +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/tpic2pdftex + +name tpic2pdftex.x86_64-solaris +category TLCore +revision 29807 +shortdesc x86_64-solaris files of tpic2pdftex +containersize 4328 +containerchecksum 0f07c629f3af9b68e171d1bf45668bf1b83f4875f9ccd67400e897e86939d82c896ef5e3d23d33ab6950db352f59cba981dded5faa512b43254375faad0234fc +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/tpic2pdftex + +name tpslifonts +category Package +revision 42428 +shortdesc A LaTeX package for configuring presentation fonts +relocated 1 +longdesc This package aims to improve of font readability in +longdesc presentations, especially with maths. The standard cm maths +longdesc fonts at large design sizes are difficult to read from far +longdesc away, especially at low resolutions and low contrast color +longdesc choice. Using this package leads to much better overall +longdesc readability of some font combinations. The package offers a +longdesc couple of 'harmonising' combinations of text and maths fonts +longdesc from the (distant) relatives of computer modern fonts, with a +longdesc couple of extras for optimising readability. Text fonts from +longdesc computer modern roman, computer modern sans serif, SliTeX +longdesc computer modern sans serif, computer modern bright, or concrete +longdesc roman are available, in addition to maths fonts from computer +longdesc modern maths, computer modern bright maths, or Euler fonts. The +longdesc package is part of the TeXPower bundle. +containersize 5356 +containerchecksum 0394101636f394f04c38b6677f921136f74e3c8abccff199d4c972ede085c3915e2fe9bbc5b239044dd8f24b405cfc34b5c736a7cd03b749b6aeaf7feb15f5e4 +doccontainersize 15044 +doccontainerchecksum e5be9024a02669212044844ad0e99b72faae15c62fb0c9065c8a5e3beb852968cf4cd4744d01890534df5a540bd1066749d999e919afd7d791b4e9ca7dd3c26c +docfiles size=18 + RELOC/doc/latex/tpslifonts/00readme.txt + RELOC/doc/latex/tpslifonts/01install.txt + RELOC/doc/latex/tpslifonts/Makefile + RELOC/doc/latex/tpslifonts/slifontsexample.tex +srccontainersize 10492 +srccontainerchecksum d55ebdf58c24f9d68f7a69fab79b8486c46d4d23714d9e1d2365320457ca60275449492482d5d28c4c8a2c884074bbe74874f509c60d66f49b6deb2a06925c9d +srcfiles size=14 + RELOC/source/latex/tpslifonts/tpslifonts.dtx + RELOC/source/latex/tpslifonts/tpslifonts.ins +runfiles size=8 + RELOC/tex/latex/tpslifonts/tpslifonts.sty +catalogue-ctan /macros/latex/contrib/texpower/tpslifonts +catalogue-license gpl +catalogue-topics presentation font-use +catalogue-version 0.6 + +name tqft +category Package +revision 44455 +shortdesc Drawing TQFT diagrams with TikZ/PGF +relocated 1 +longdesc The package defines some node shapes useful for drawing TQFT +longdesc diagrams with TikZ/PGF. That is, it defines highly customisable +longdesc shapes that look like cobordisms between circles, such as those +longdesc used in TQFT and other mathematical diagrams. +containersize 6808 +containerchecksum 0bd44773d17cdaac4e3490dbca1fe038bb18e50d057d6adee53b32d6127ec844e3ae9b8f0f671969c8a00e0df01eca9fd93f27e85fc1ebcf03966e6c82b53f8f +doccontainersize 692732 +doccontainerchecksum 0b6c66aefec59955214299a99eaf4949900fb294e7f1eb904efdfc0de3aa85c5fa38961073ba3f7a3c60f26688c28e6f1bb5ea2c32751062fb3231edc4607f0f +docfiles size=193 + RELOC/doc/latex/tqft/README + RELOC/doc/latex/tqft/tqft.pdf details="Package documentation" + RELOC/doc/latex/tqft/tqft_code.pdf details="Annotated code" + RELOC/doc/latex/tqft/tqft_doc.tex +srccontainersize 12520 +srccontainerchecksum afea6aaf0250f9c9307479d587e844b3f391e387a4d2b6bf83b1eb2e63459d132cf0da38160bbcbeba0eaf1fc8401c9c21dec9dbc8a5e54aebeb1bd25a357445 +srcfiles size=21 + RELOC/source/latex/tqft/tqft.dtx + RELOC/source/latex/tqft/tqft.ins +runfiles size=14 + RELOC/tex/latex/tqft/tikzlibrarytqft.code.tex + RELOC/tex/latex/tqft/tqft.sty +catalogue-contact-home https://github.com/loopspace/TQFT +catalogue-contact-repository https://github.com/loopspace/TQFT +catalogue-ctan /macros/latex/contrib/tqft +catalogue-license lppl1.3 +catalogue-topics diagram graphics-use +catalogue-version 2.1 + +name tracklang +category Package +revision 55707 +shortdesc Language and dialect tracker +relocated 1 +longdesc The tracklang package is provided for package developers who +longdesc want a simple interface to find out which languages the user +longdesc has requested through packages such as babel or polyglossia. +longdesc This package does not provide any translations! Its purpose is +longdesc simply to track which languages have been requested by the +longdesc user. Generic TeX code is in tracklang.tex for non-LaTeX users. +containersize 19144 +containerchecksum 6f33892886257274d3011b1d8e84d325477b75d6f151b1cd5223d456fdb1e5983146a20106fa19f3750b5898e24400a33e22de0571c9c301c3c0f6c0a1163e5f +doccontainersize 992880 +doccontainerchecksum ff9bea1f499fe4ded275556e201be9259a6ee6512abe0a7665face275906fe77519114d77ca401299ed40d7c5b1175844c6464743c4b207ffb9e60cc416869c2 +docfiles size=335 + RELOC/doc/generic/tracklang/CHANGES + RELOC/doc/generic/tracklang/README details="Readme" + RELOC/doc/generic/tracklang/samples/animals/animals-en-GB.ldf + RELOC/doc/generic/tracklang/samples/animals/animals-en-US.ldf + RELOC/doc/generic/tracklang/samples/animals/animals-english.ldf + RELOC/doc/generic/tracklang/samples/animals/animals-german.ldf + RELOC/doc/generic/tracklang/samples/animals/animals.sty + RELOC/doc/generic/tracklang/samples/animals/animals2-en-GB.ldf + RELOC/doc/generic/tracklang/samples/animals/animals2-en-US.ldf + RELOC/doc/generic/tracklang/samples/animals/animals2-english.ldf + RELOC/doc/generic/tracklang/samples/animals/animals2-german.ldf + RELOC/doc/generic/tracklang/samples/animals/animals2.sty + RELOC/doc/generic/tracklang/samples/animals/sample-animals-babel.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-babel.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de-poly.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de-poly.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals-poly.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-poly.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals-sr-poly.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de2.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de2.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de3.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de3.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de4.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de4.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-poly.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-poly.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2.tex + RELOC/doc/generic/tracklang/samples/regions/regions-BE.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-CA.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-GB.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-IM.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-US.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-dutch.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-english.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-french.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-german.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-italian.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-manx.ldf + RELOC/doc/generic/tracklang/samples/regions/regions.sty + RELOC/doc/generic/tracklang/samples/regions/regions2.sty + RELOC/doc/generic/tracklang/samples/regions/sample-regions.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-manx.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-manx.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map2.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map2.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map3.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map3.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-nomap.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-nomap.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang2.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang2.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang3.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang3.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang4.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang4.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang5.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang5.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang6.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang6.tex + RELOC/doc/generic/tracklang/tracklang.pdf details="Package documentation" +srccontainersize 57672 +srccontainerchecksum 3221cb4b57e1a8d501648612e310107b55a002703855b338c92bfd758bf923b22e461d18bfd33d9e81717d7bfba3965fdd3eaef6f113353efc31337d3409d6d7 +srcfiles size=108 + RELOC/source/latex/tracklang/tracklang.dtx + RELOC/source/latex/tracklang/tracklang.ins +runfiles size=47 + RELOC/tex/generic/tracklang/tracklang-region-codes.tex + RELOC/tex/generic/tracklang/tracklang-scripts.tex + RELOC/tex/generic/tracklang/tracklang.tex + RELOC/tex/latex/tracklang/tracklang-scripts.sty + RELOC/tex/latex/tracklang/tracklang.sty +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-license lppl1.3 +catalogue-topics package-devel class-supp multilingual +catalogue-version 1.4 + +name trajan +category Package +revision 15878 +shortdesc Fonts from the Trajan column in Rome +relocated 1 +longdesc Provides fonts (both as Metafont source and in Adobe Type 1 +longdesc format) based on the capitals carved on the Trajan column in +longdesc Rome in 114 AD, together with macros to access the fonts. Many +longdesc typographers think these rank first among the Roman's artistic +longdesc legacy. The font is uppercase letters together with some +longdesc punctuation and analphabetics; no lowercase or digits. +execute addMixedMap trajan.map +containersize 46804 +containerchecksum 66fe869b94f489a3240078fa28da32fab71767d93befefca62fda3a39ae53ab975b13b7ddf84e490658e915c100f16225ea0ed8e7787b099bf4cb067a9fd4e09 +doccontainersize 172208 +doccontainerchecksum c6b6137d1952660b99bf077eae0ddc0f40b4ea9ff6308e4f461fd0e34c7b4b35b4ad79f3e42e4d0077c9d2947db642d0add032f2413d580748ba786a8abbf029 +docfiles size=57 + RELOC/doc/latex/trajan/README details="Readme" + RELOC/doc/latex/trajan/trajan.pdf details="Package documentation" + RELOC/doc/latex/trajan/trytrajan.pdf details="Font sample" + RELOC/doc/latex/trajan/trytrajan.tex +srccontainersize 20268 +srccontainerchecksum 36b85f870cd9b006f89df594193877a2188635be840636ae9300f511e5ab2a1ea60eac7f927ccb3e9832ab01972bf585460b47cf7ef30f36a6049ab0ce0fd95b +srcfiles size=21 + RELOC/source/latex/trajan/trajan.dtx + RELOC/source/latex/trajan/trajan.ins +runfiles size=25 + RELOC/fonts/afm/public/trajan/trjnr10.afm + RELOC/fonts/afm/public/trajan/trjnsl10.afm + RELOC/fonts/map/dvips/trajan/trajan.map + RELOC/fonts/tfm/public/trajan/trjnr10.tfm + RELOC/fonts/tfm/public/trajan/trjnsl10.tfm + RELOC/fonts/type1/public/trajan/trjnr10.pfb + RELOC/fonts/type1/public/trajan/trjnsl10.pfb + RELOC/tex/latex/trajan/t1trjn.fd + RELOC/tex/latex/trajan/trajan.sty +catalogue-ctan /fonts/trajan +catalogue-license lppl +catalogue-topics font font-archaic font-type1 font-mf +catalogue-version 1.1 + +name tram +category Package +revision 29803 +shortdesc Typeset tram boxes in LaTeX +relocated 1 +longdesc Tram boxes are highlighted with patterns of dots; the package +longdesc defines an environment tram that typesets its content into a +longdesc tram box. The pattern used may be selected in an optional +longdesc argument to the environment. +containersize 2528 +containerchecksum 4592a288c08f5bf6b41fdffee8129e08fec7397edb2b351617fe79571d2905be61cb776f87a5b152c4b62acefdf21ee2f0b293f210ce52f449d3b9e41833b2d5 +doccontainersize 29108 +doccontainerchecksum bfc46f516c2f81530ed7e648ef6774443502b580cf580b5fd5ea9f7be0311b33fb14156aca3f36bb4d74cc165dd33d0b8ef3ebbab5624f38239c281c7d7bda09 +docfiles size=9 + RELOC/doc/latex/tram/README details="Readme" + RELOC/doc/latex/tram/tram-doc.pdf details="Package documentation" + RELOC/doc/latex/tram/tram-doc.tex +runfiles size=2 + RELOC/fonts/source/public/tram/tram.mf + RELOC/tex/latex/tram/tram.sty +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-license lppl +catalogue-topics boxing decoration editorial +catalogue-version 0.2 + +name translation-array-fr +category Package +revision 24344 +shortdesc French translation of the documentation of array +relocated 1 +longdesc A French translation of the documentation of array. +containersize 384 +containerchecksum d32d6b397916bf631d65171f4f7de4bdb6049eec5414d1a9adbbe88d147ce2e4930a4f17b70c5c12b7ef9c3300d9eb099d63fb14ccd5478c6bfcd0557074b343 +doccontainersize 638988 +doccontainerchecksum 7d9b2e43f4fde3e6a3b7436a55b2095fbc4ffa31223019c1cbfdf3d623c48be406858cdb96c8693e10fd0023050ddfbb09b463a9a3804879945ac0d6aa616be4 +docfiles size=188 + RELOC/doc/latex/translation-array-fr/Copyright + RELOC/doc/latex/translation-array-fr/README details="Readme" + RELOC/doc/latex/translation-array-fr/f-array.dtx + 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-license lppl +catalogue-topics table matrix french-doc translation + +name translation-arsclassica-de +category Package +revision 23803 +shortdesc German version of arsclassica +relocated 1 +longdesc This is a "translation" of the arsclassica documentation. +containersize 404 +containerchecksum 76ced8c2c93e35d6bee10f34a7de5709b8027f9d498f8fcd21ba776850c65e1e20eaf20528414b7d9da1891a2db7132b6e3b703c4f8d91f4ff0c69eb9159c996 +doccontainersize 358860 +doccontainerchecksum 58773adb7493e6ef31d8fd3854a51cd37921dd331f56f1d9eab5283c121fa8c3316ffc41242356a87af04bb6da68761ea15829e5e8555d2e6cdbb68833c8d313 +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-license lppl +catalogue-topics dissertation german-doc translation + +name translation-biblatex-de +category Package +revision 57508 +shortdesc German translation of the User Guide for BibLaTeX +relocated 1 +longdesc A German translation of the User Guide for BibLaTeX. +containersize 384 +containerchecksum 7e77035b714c1cc7596d1fa48e5d285ef573a0332b5fdb78e77b22742954f6c401d531de3175ed92ecf43ac4afbbd5a6a11a8ec95409f7227ba7995d5645179a +doccontainersize 729900 +doccontainerchecksum 83a35f07b954040e99fb072670a65c0343ef7f3739c476e347ff5ad85c0e4ce900c26691960293c99e1da7c9d97daec2b7daefcfa78cbe25f1b3759ca4e2d8b6 +docfiles size=290 + RELOC/doc/latex/translation-biblatex-de/README details="Readme" + 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-license lppl +catalogue-topics german-doc biblatex documentation +catalogue-version 3.15a + +name translation-chemsym-de +category Package +revision 23804 +shortdesc German version of chemsym +relocated 1 +longdesc This is a "translation" of the chemsym documentation. +containersize 396 +containerchecksum e23821fc1bbdee758e534bb52c4e0f348d6be3396ca2d8e3c11c9425132fc9c28f2bf6c98cb1beee9b23716cc1a75704561d9d8f16d2f4e94851fc2f88e0895a +doccontainersize 141988 +doccontainerchecksum efe9f711c42925fd035339c25284e09ca7a99c246bf70ef2c15c4f1149accf5bab09e396b94d6d59d4e8c303bfdb3f40570912713dcbd33e7ae360a6b21c36de +docfiles size=49 + RELOC/doc/latex/translation-chemsym-de/00Liesmich.chs + 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-license lppl +catalogue-topics chemistry german-doc translation + +name translation-dcolumn-fr +category Package +revision 24345 +shortdesc French translation of the documentation of dcolumn +relocated 1 +longdesc A French translation of the documentation of dcolumn. +containersize 388 +containerchecksum 8d2288707f13896dbb578b538b535efffc89991d56586f27a35b284b5be7c553df97a72ac163a625238e281bfe97bb79fa716855dc8e93f25f0a8af69674eb45 +doccontainersize 322312 +doccontainerchecksum 95d1633884f7237bf2a7abf8a43127ac1954fb5d0e308d676a7f4c3255d709496a382f01a8af6c28f793bcd1863e98f8ed1441e7cc288d3b8de3176631cdca1d +docfiles size=88 + RELOC/doc/latex/translation-dcolumn-fr/Copyright + RELOC/doc/latex/translation-dcolumn-fr/README details="Readme" + 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-license lppl +catalogue-topics french-doc documentation table typesetting + +name translation-ecv-de +category Package +revision 24754 +shortdesc Ecv documentation, in German +relocated 1 +longdesc This is a "translation" of the ecv documentation. +containersize 392 +containerchecksum 33998fcadaf7b42874968348ef4e3232652ea401410eea6a8011db146a4989afb102a2bba247df53b875bc02b1ea8f21ec5c68783ae43f36a3f175e77dde6453 +doccontainersize 406924 +doccontainerchecksum a86784aaeaa786251f35ddf273050e9c981a68d060ba1a2f186379e04f89edc696090b44b402996c4f2422d1cbfd7fd68136c29fc7c74a2fd32d6d230eb2e489 +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-license lppl +catalogue-topics cv german-doc translation + +name translation-enumitem-de +category Package +revision 24196 +shortdesc Enumitem documentation, in German +relocated 1 +longdesc This is a translation of the manual for enumitem. +containersize 400 +containerchecksum 7018a95d7b68b6b736472d6f43d356d25d2a73df4a5dbc080485f3b4e747d122889788b3d1a75ec4c479a84a4453128104f01b2e1788e9dc50d09bda0eb53cfe +doccontainersize 607768 +doccontainerchecksum bee33ecf7a3045c382242f4b6ec9599f32fb254053a6417ceb514f3aad64b2bf51c50f660b562a2a3f0207f7bdc4676527627f432b1556362e3a9f5e9eda8694 +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-license lppl +catalogue-topics list german-doc translation + +name translation-europecv-de +category Package +revision 23840 +shortdesc German version of europecv +relocated 1 +longdesc This is a "translation" of the europecv documentation. +containersize 392 +containerchecksum 6102a92b45fb7c19d2190bf4289e8b6b24ded67d0255ce2f483627bbdbee00c42c044be03bc10c9d0e23c2b911e781d21a7e6562e80988620a6da60562d98bf4 +doccontainersize 669668 +doccontainerchecksum f50e761fc7925f0cf404788ad2ad70586536e1676bc7a026be5a81136a1323f011a281160a344c455346553e90cb632133668c2483200a05ecf961e46e50bfb3 +docfiles size=253 + RELOC/doc/latex/translation-europecv-de/Beispiele/at.pdf + RELOC/doc/latex/translation-europecv-de/Beispiele/bulgarian-koi8-r.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/bulgarian-utf8.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/greek-utf8.pdf + RELOC/doc/latex/translation-europecv-de/Beispiele/greek-utf8.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/maltese-maltese.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/maltese-utf8.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/minimal.pdf + RELOC/doc/latex/translation-europecv-de/Beispiele/minimal.tex + RELOC/doc/latex/translation-europecv-de/europecv-de.pdf details="Package documentation" language="de" + RELOC/doc/latex/translation-europecv-de/europecv-de.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_de.pdf + RELOC/doc/latex/translation-europecv-de/templates/cv_template_de.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_en.pdf + RELOC/doc/latex/translation-europecv-de/templates/cv_template_en.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_it.pdf + RELOC/doc/latex/translation-europecv-de/templates/cv_template_it.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_pl.pdf + 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-license lppl +catalogue-topics cv german-doc translation + +name translation-filecontents-de +category Package +revision 24010 +shortdesc German version of filecontents +relocated 1 +longdesc This is a "translation" of the filecontents documentation. +containersize 400 +containerchecksum 78dd9ee41d9b06438e01ec12f716929c4cf0fbf6ff209f45fadce9fad4bac0d1b31732b3f66896bf7526dac7532504e0913dbb69c3c7e13830e81297b2761935 +doccontainersize 214452 +doccontainerchecksum 17ed1c39c549b43c31c13dfd6ffbd968ecbdd3e64b00cbc66b0a8914726f4baa7faf98edf30c23ed81850cee98a732bbdd70ef667973163ccee0b35c160fdc64 +docfiles size=56 + RELOC/doc/latex/translation-filecontents-de/filecontents-de.dtx + 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-license lppl +catalogue-topics file-mgmt german-doc translation + +name translation-moreverb-de +category Package +revision 23957 +shortdesc German version of moreverb +relocated 1 +longdesc This is a "translation" of the moreverb documentation. +containersize 396 +containerchecksum 6b11a1b522c728722d4d5d5b38dd453ec017dc053d360180b943778923ca9a23b3ebb92516c1a6880e507f5e8b6d8d87878c92762637acc5ac93f42ad790446e +doccontainersize 94828 +doccontainerchecksum 955070d4e92e38712a5df837fd0df716d1a597780a4b06046d5aac5164efc0fec1121c51ea09c3ef1a090d51732f57308f4db386440118548e2167f3cafe16ce +docfiles size=33 + RELOC/doc/latex/translation-moreverb-de/filecontens-de.ins.txt + 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-license lppl +catalogue-topics german-doc verbatim translation + +name translation-natbib-fr +category Package +revision 25105 +shortdesc French translation of the documentation of natbib +relocated 1 +longdesc A French translation of the documentation of natbib. +containersize 384 +containerchecksum ff34cb7cece157b933117ba0e9aadb0e9caa759a406fabf7b0ebb89e5b03ee6db7aa493551816e9061ff91a460e46a58f1402b086d37c48863b4e093d19326a8 +doccontainersize 687888 +doccontainerchecksum 971570414f9705cc4026a21a557b2f1dfe8fc010feca4f1ada946d11aa30169746c2017fb3882e65e68520539974eaf2361ebab7bcd292eed177fa7f6eb7337c +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-license lppl +catalogue-topics french-doc bibtex-supp translation + +name translation-tabbing-fr +category Package +revision 24228 +shortdesc French translation of the documentation of Tabbing +relocated 1 +longdesc A translation to French (by the author) of the documentation of +longdesc the Tabbing package. +containersize 404 +containerchecksum 76f1c6318cd964b94d5a1d836b1a40fc58de49566cdc30b1ea60fc29fbcc8c6b01a477f4739a5fd9bb24998325dbf42817ad016fff27207e710bfc4b51b29985 +doccontainersize 355420 +doccontainerchecksum ae2f1aa60162512287f15c770a465c2e39abe1fa5d1223d96c524dc81bf065d62f307893d22dfc06fc50da8d63d817ed60c8f07fd4fede984b6febe9c8b7b710 +docfiles size=89 + RELOC/doc/latex/translation-tabbing-fr/f-Tabbing.dtx + 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-license lppl1 +catalogue-topics french-doc translation + +name translations +category Package +revision 57461 +shortdesc Internationalisation of LaTeX2e packages +relocated 1 +longdesc This package (once part of the exsheets package), provides a +longdesc framework for providing multilingual features to a LaTeX +longdesc package. The package has its own basic dictionaries for +longdesc English, Brazilian, Catalan, Dutch, French, German and Spanish; +longdesc it aims to use translation material for English, Dutch, French, +longdesc German, Italian, Spanish, Catalan, Turkish, Croatian, +longdesc Hungarian, Danish and Portuguese from babel or polyglossia if +longdesc either is in use in the document. (Additional languages from +longdesc the multilingual packages may be possible: ask the author.) +containersize 12820 +containerchecksum bc85fb20313e9e1e6eca3373eb1fa58f0dd3971c04039ead0cdff9479f9d8a2f7ace407bfef0b7a5caa9194573911e3cd0dafda51243db34e922d39af42b0f1e +doccontainersize 503624 +doccontainerchecksum e5faff88c1b8f9588e6b7bba20aa3aef9711ee273d79623ea79f90345be6c6420595dcbb5419f87463c2a89b019b8999c330627a74f4f03ebc1af41ee7894006 +docfiles size=132 + RELOC/doc/latex/translations/README details="Readme" + RELOC/doc/latex/translations/translations_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/translations/translations_en.tex +runfiles size=25 + RELOC/tex/latex/translations/translations-basic-dictionary-brazil.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-catalan.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-dutch.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-english.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-french.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-german.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-spanish.trsl + RELOC/tex/latex/translations/translations.sty +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-license lppl1.3c +catalogue-topics multilingual package-supp +catalogue-version 1.10a + +name translator +category Package +revision 56052 +shortdesc Easy translation of strings in LaTeX +relocated 1 +longdesc This LaTeX package provides a flexible mechanism for +longdesc translating individual words into different languages. For +longdesc example, it can be used to translate a word like "figure" into, +longdesc say, the German word "Abbildung". Such a translation mechanism +longdesc is useful when the author of some package would like to +longdesc localize the package such that texts are correctly translated +longdesc into the language preferred by the user. This package is not +longdesc intended to be used to automatically translate more than a few +longdesc words. +containersize 25580 +containerchecksum 87eb30409270c63236f5933a52d7815b529a4aca0d7ecc2cb7cb69199d0597684cd48e25b2f00be80024f734d2f4067650adf457ef942aa8477359a6be20d886 +doccontainersize 215600 +doccontainerchecksum 9fcaef407ea8149e35eb4ae2d4ea30a3a865ed31992bc9ed4e046059d93445db32a912e05698825df1c720903fdbadf4550d6fba7ab38990ca85d6dcb078fbea +docfiles size=59 + RELOC/doc/latex/translator/README.md details="Readme" + RELOC/doc/latex/translator/translator.pdf details="Package documentation" + RELOC/doc/latex/translator/translator.tex +runfiles size=111 + RELOC/tex/latex/translator/translator-basic-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-English.dict + RELOC/tex/latex/translator/translator-basic-dictionary-French.dict + RELOC/tex/latex/translator/translator-basic-dictionary-German.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Nynorsk.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-English.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-French.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-German.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-English.dict + RELOC/tex/latex/translator/translator-environment-dictionary-French.dict + RELOC/tex/latex/translator/translator-environment-dictionary-German.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-months-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-months-dictionary-English.dict + RELOC/tex/latex/translator/translator-months-dictionary-French.dict + RELOC/tex/latex/translator/translator-months-dictionary-German.dict + RELOC/tex/latex/translator/translator-months-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-months-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-months-dictionary-Nynorsk.dict + RELOC/tex/latex/translator/translator-months-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-months-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-English.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-French.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-German.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Nynorsk.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-English.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-French.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-German.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator.sty +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-license lppl gpl +catalogue-topics multilingual package-supp +catalogue-version 1.12c + +name transparent +category Package +revision 52981 +shortdesc Using a color stack for transparency with pdfTeX +relocated 1 +longdesc Since version 1.40 pdfTeX supports several color stacks; the +longdesc package uses a separate colour stack for control of +longdesc transparency (which is not, of course, a colour). +containersize 1992 +containerchecksum a1b545dee3fc210d9ff39c9ad1e8015c3972b2f1655e40f828d3bca0d8ae759772e18fd180cec5fa88d45f48076d92d07bebf2e03ef26745ad53a2fd8581d9cf +doccontainersize 266624 +doccontainerchecksum 7de04001cea582db36ed0fb0b5f8382a367603d8ce8327d29d773d05af116ae76adddd678b220d2df8abf7c6c619bee9f050f51c5aa255d7b0fb9b576638e049 +docfiles size=68 + RELOC/doc/latex/transparent/README.md details="Readme" + RELOC/doc/latex/transparent/transparent-example.tex + RELOC/doc/latex/transparent/transparent.pdf details="Package documentation" +srccontainersize 5448 +srccontainerchecksum 73a5f575a644334ee5a61f740c4f5f2e09a10ee0c4c5732be70809f66f67fddc5979bafe4a7fcd8a2462e0dec2b98867e9ba1ff2d82e3be9743ecf5773cd5ab8 +srcfiles size=5 + RELOC/source/latex/transparent/transparent.dtx +runfiles size=2 + RELOC/tex/latex/transparent/transparent.sty +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-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.4 + +name tree-dvips +category Package +revision 21751 +shortdesc Trees and other linguists' macros +relocated 1 +longdesc The package defines a mechanism for specifying connected trees +longdesc that uses a tabular environment to generate node positions. The +longdesc package uses PostScript code, loaded by dvips, so output can +longdesc only be generated by use of dvips. The package lingmacros.sty +longdesc defines a few macros for linguists: \enumsentence for +longdesc enumerating sentence examples, simple tabular-based +longdesc non-connected tree macros, and gloss macros. +containersize 7964 +containerchecksum 6153417c5d2677a56adf031c5f2f27e4c2bf204c0acef1cc5cd49355370aa336814bad7d2be00e95d22bcf73b9b69105a255d15f29ed650511c0eccc3c9bda07 +doccontainersize 92268 +doccontainerchecksum 8c507ec7719b92f2cf82527c7799b073ff2679cf820528b489eb7d8c83d28d098033760cf092bceb9ee7e28fec15eb580122c080b982dbb12e0e65176121e84c +docfiles size=42 + RELOC/doc/latex/tree-dvips/Makefile + RELOC/doc/latex/tree-dvips/README details="Readme" + RELOC/doc/latex/tree-dvips/README.TEXLIVE + RELOC/doc/latex/tree-dvips/lingmacros-manual.pdf details="Manual for lingmacros" + RELOC/doc/latex/tree-dvips/lingmacros-manual.tex + RELOC/doc/latex/tree-dvips/tree-dvips91.script + RELOC/doc/latex/tree-dvips/tree-manual.pdf details="Manual for tree-dvips" + RELOC/doc/latex/tree-dvips/tree-manual.tex +runfiles size=9 + RELOC/dvips/tree-dvips/tree-dvips91.pro + RELOC/tex/latex/tree-dvips/lingmacros.sty + RELOC/tex/latex/tree-dvips/tree-dvips.sty +catalogue-ctan /macros/latex209/contrib/trees/tree-dvips +catalogue-license lppl1 +catalogue-topics tree +catalogue-version .91 + +name treetex +category Package +revision 28176 +catalogue treetex-plain +shortdesc Draw trees +relocated 1 +longdesc Macros to draw trees, within TeX (or LaTeX). The algorithm used +longdesc is discussed in an accompanying paper (written using LaTeX +longdesc 2.09). +containersize 20196 +containerchecksum 49202a38697bd9bd3bc6fcbf30d28047b8ddc4d737bfa68cfdb83197b484352997a33f55e195211eff1d548f95e2072f07ed18f1d7c6772a03c66a13051d1709 +doccontainersize 23484 +doccontainerchecksum fb9e09bc2f6e45b854824c9c757733c2c17b4d48edc955ea48bea3ab3fb5dd914eb6427c8ae4f74ebc62b4715bada84c8f3fca0ee7d01f8d3c2526339a844681 +docfiles size=37 + RELOC/doc/plain/treetex/epodd.tex + RELOC/doc/plain/treetex/readme details="Readme" + RELOC/doc/plain/treetex/tree_doc.tex +runfiles size=41 + RELOC/tex/plain/treetex/classes.tex + RELOC/tex/plain/treetex/l_pic.tex + RELOC/tex/plain/treetex/treetex.tex +catalogue-ctan /macros/plain/contrib/treetex +catalogue-license pd +catalogue-topics tree + +name trfsigns +category Package +revision 15878 +shortdesc Typeset transform signs +relocated 1 +longdesc A package for typesetting various transformation signs for +longdesc Laplace transforms, Fourier transforms and others. +containersize 1476 +containerchecksum 3607b6371c2dbbd93524f0811dbf14cd93cb2556fc217899ef3a273c27158771f743bafff0fc90a582d65da431efd7ccc1f07bf92a6600a7bc301b5b6a308325 +doccontainersize 202928 +doccontainerchecksum 9bac4f4deafd62a8b113107ce47bb5ea3afe05078a3c5083b1ed790ed690bc3d73066e0abadc5cb1a3d45246f759941d6e2389105632bb6592c32a08e7b7671b +docfiles size=59 + RELOC/doc/latex/trfsigns/COPYING + RELOC/doc/latex/trfsigns/README details="Package Readme" + RELOC/doc/latex/trfsigns/trfexamp.tex + RELOC/doc/latex/trfsigns/trfsigns.pdf details="Package documentation" language="de" +srccontainersize 5068 +srccontainerchecksum 71aaa336a9f66af6f682cadc72b2ae100c606be7d95d76c2631dbb03ff617718c1c322288c769bb1b9b19116a29baa208fa085e2868e67ce3f7a5552d823e6e0 +srcfiles size=6 + RELOC/source/latex/trfsigns/trfsigns.drv + RELOC/source/latex/trfsigns/trfsigns.dtx + RELOC/source/latex/trfsigns/trfsigns.ins +runfiles size=2 + RELOC/tex/latex/trfsigns/trfsigns.sty +catalogue-ctan /macros/latex/contrib/trfsigns +catalogue-license gpl +catalogue-topics maths-symbol +catalogue-version 1.01 + +name trigonometry +category Package +revision 43006 +shortdesc Demonstration code for cos and sin in TeX macros +relocated 1 +longdesc A document that both provides macros that are usable elsewhere, +longdesc and demonstrates the macros. The code uses the "classical" +longdesc analytical expansion of sin and cos (the more recent trig uses +longdesc a "numerical analyst's" expansion). +containersize 2552 +containerchecksum 366a5e96499bd96d2eee38b78305d9fd7368d0b70f91acecd5a5337675002808a5695a525d011a1ab7b31ff34cc14c469970a3fe55c694f003d0ba7002795297 +doccontainersize 656 +doccontainerchecksum a9bd77bda2cca604a69ca1b60deeb8da3128c625b87d64ccf39aaae853a645e736b5350d3d575302ec2a35e9736e4133cd4ffd223b9bff6191b6fed9549a8092 +docfiles size=1 + RELOC/doc/generic/trigonometry/README.txt +runfiles size=2 + RELOC/tex/generic/trigonometry/trigonometry.tex +catalogue-ctan /macros/generic/trigonometry +catalogue-license knuth +catalogue-topics calculation + +name trimspaces +category Package +revision 15878 +shortdesc Trim spaces around an argument or within a macro +relocated 1 +longdesc A very short package that allows you to expandably remove +longdesc spaces around a token list (commands are provided to remove +longdesc spaces before, spaces after, or both); or to remove surrounding +longdesc spaces within a macro definition, or to define space-stripped +longdesc macros. +containersize 936 +containerchecksum 09bfe50d1b14502311aea7a20df80e70c1907b1c8443aba9453aa0a3eb76cbd34728734b81df63bd5895a4a5a55ddfe6d0feedf7d5d28d6b5922a374bc550c9e +doccontainersize 148416 +doccontainerchecksum 8e26064de0c14d6caa1d6cf625cbd2d598102056136dfa20d0a7ffb178c26829db0206d87893937b63f83171744a29bea3567e16e2a7a0d454734a0b72837277 +docfiles size=44 + RELOC/doc/latex/trimspaces/README details="Readme" + RELOC/doc/latex/trimspaces/trimspaces.pdf details="Package documentation" +srccontainersize 2488 +srccontainerchecksum a34429fb9b8514d25ac523f0e3bfdc880b84951ff228ede3016e2d29c001b7f8058755870fc3c63e6041ef4768290177dabc6d520157082fb077497017065b65 +srcfiles size=3 + RELOC/source/latex/trimspaces/trimspaces.ins + RELOC/source/latex/trimspaces/trimspaces.tex +runfiles size=1 + RELOC/tex/latex/trimspaces/trimspaces.sty +catalogue-ctan /macros/latex/contrib/trimspaces +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.1 + +name trivfloat +category Package +revision 15878 +shortdesc Quick float definitions in LaTeX +relocated 1 +longdesc The trivfloat package provides a quick method for defining new +longdesc float types in LaTeX. A single command sets up a new float in +longdesc the same style as the LaTeX kernel figure and table float +longdesc types. The package works with memoir as well as the standard +longdesc classes. +containersize 2444 +containerchecksum 25e07373c53a6d4c92a5f2f19fa0d70c86202435863b8b3cd036f2d12f74a477a33cca6508794f67256a877117bea821a11b9bff235e1a894c90b71810bbcca4 +doccontainersize 128892 +doccontainerchecksum eb9fce19c495eedd728e87bf47f5d925a685a8b9e81e8de0e6c317f74af6c82352f403486f5a904849ed418722d830ae294a89eaa57bbff59eee8a03cf9b8af8 +docfiles size=37 + RELOC/doc/latex/trivfloat/README details="Readme" + RELOC/doc/latex/trivfloat/trivfloat.pdf details="Package documentation" +srccontainersize 7480 +srccontainerchecksum 9537944503c1606151207e75dd7a2bad64b34f82bb23d83e0eb93292ea9ad9edd0bd72a126de588125b6b425669f657506ca602796b6e2dd2997052b70f60dc5 +srcfiles size=7 + RELOC/source/latex/trivfloat/trivfloat.dtx + RELOC/source/latex/trivfloat/trivfloat.ins +runfiles size=2 + RELOC/tex/latex/trivfloat/trivfloat.sty +catalogue-ctan /macros/latex/contrib/trivfloat +catalogue-license lppl +catalogue-topics float +catalogue-version 1.3b + +name trsym +category Package +revision 18732 +shortdesc Symbols for transformations +relocated 1 +longdesc The bundle provides Metafont source for a small font used for +longdesc (e.g.) Laplace transformations, together with a LaTeX .fd file +longdesc and a package providing commands for the symbols' use in +longdesc mathematics. +containersize 1876 +containerchecksum e571d1c0c042e2fe75b992c6e0e9e07b04f0368f1e74a51ba91c34a642be148fb817027931ec35831672970725377038b5cc80d34bdb716d936f4aa59075d83a +doccontainersize 117560 +doccontainerchecksum d6cd64c1c4bbc927f4154c2281ef4c13ab145b750d92561235364a35082e497afc5d8aa5806452757b499b827305a0a183723deb38272ba43bcc38eedc367731 +docfiles size=33 + RELOC/doc/latex/trsym/README details="Readme" + RELOC/doc/latex/trsym/manifest.txt + RELOC/doc/latex/trsym/trsym.pdf details="Package documentation" +srccontainersize 2484 +srccontainerchecksum bd9c99b4c5ac266696ab4c3557028d1776a1852000db2e8c1b5a4c2f78e58f25df379a71794faf49e2c0d2ca14116796d8f6d617f4bcbaed7f05a75ec06fd5a5 +srcfiles size=3 + RELOC/source/latex/trsym/trsym.dtx + RELOC/source/latex/trsym/trsym.ins +runfiles size=7 + RELOC/fonts/source/public/trsym/trsy.mf + RELOC/fonts/source/public/trsym/trsy10.mf + RELOC/fonts/source/public/trsym/trsy12.mf + RELOC/fonts/tfm/public/trsym/trsy10.tfm + RELOC/fonts/tfm/public/trsym/trsy12.tfm + RELOC/tex/latex/trsym/trsym.sty + RELOC/tex/latex/trsym/utrsy.fd +catalogue-ctan /fonts/trsym +catalogue-license lppl1.2 +catalogue-topics font font-symbol font-mf +catalogue-version 1.0 + +name truncate +category Package +revision 18921 +shortdesc Truncate text to a specified width +relocated 1 +longdesc The package will by default break at word boundaries, but +longdesc package options are offered to permit breaks within words. +containersize 3008 +containerchecksum b676d65803577b4bce5f6240a0d05a306199f24c2b14402954f4430f07fed9a8af574c4cf9cdc233824bb1a285eee0c531aa40ae31c782a43afd678d6e44f27a +doccontainersize 157044 +doccontainerchecksum 78e9a96fc2e635237cae9ab4d7ac30cfee8582dde13331800ac9079d1e0726c597accb598b5e679b6643d27b2a53fb367e740b76d59e9a5d27226a4c829e8518 +docfiles size=42 + RELOC/doc/latex/truncate/miscdoc.sty + RELOC/doc/latex/truncate/truncate.pdf details="Package documentation" + RELOC/doc/latex/truncate/truncate.tex +runfiles size=2 + RELOC/tex/latex/truncate/truncate.sty +catalogue-ctan /macros/latex/contrib/truncate +catalogue-license pd +catalogue-topics layout +catalogue-version 3.6 + +name tsemlines +category Package +revision 23440 +shortdesc Support for the ancient \emline macro +relocated 1 +longdesc Occasional Documents appear, that use graphics generated by +longdesc texcad from the emtex distribution. These documents often use +longdesc the \emline macro, which produced lines at an arbitrary +longdesc orientation. The present package emulates the macro, using +longdesc TikZ. +containersize 1228 +containerchecksum d4b6a929a403ed7fea409aa618e7ca021c2c7138a6b11c980430ba18f952ffba44df951dbc7b7f3a5ffcdace3b5f3a455eedc2a50b6e0e003ae3e17e8e7f9969 +runfiles size=1 + RELOC/tex/latex/tsemlines/tsemlines.sty +catalogue-ctan /macros/latex/contrib/tsemlines +catalogue-license pd +catalogue-topics graphics-prep +catalogue-version 1.0 + +name ttfutils +category TLCore +revision 57972 +shortdesc convert TrueType to TFM and PK fonts +longdesc Utilities: ttf2afm ttf2pk ttf2tfm ttfdump. FreeType is the +longdesc underlying library. +depend ttfutils.ARCH +containersize 108728 +containerchecksum e96df8ea7bd77440c9a9e4fe408514e9293c45d78adac6b752b301a7ab01ef536478557d9fd7169ee3ba3eb56099d0878e55c125956670bb09454c934ad149ac +doccontainersize 138164 +doccontainerchecksum fdd192c0de8c3d760fa584d43985e2d14bb0340315a6bd91b994a6613ace14cc04c6c28b32773211de46a64482a3b8e10fd89d5377d0ce2e1e4ea0477532cddb +docfiles size=65 + texmf-dist/doc/man/man1/ttf2afm.1 + texmf-dist/doc/man/man1/ttf2afm.man1.pdf + texmf-dist/doc/man/man1/ttf2pk.1 + texmf-dist/doc/man/man1/ttf2pk.man1.pdf + texmf-dist/doc/man/man1/ttf2tfm.1 + texmf-dist/doc/man/man1/ttf2tfm.man1.pdf + texmf-dist/doc/man/man1/ttfdump.1 + texmf-dist/doc/man/man1/ttfdump.man1.pdf + texmf-dist/doc/ttf2pk/ttf2pk.doc + texmf-dist/doc/ttf2pk/ttf2pk.txt + texmf-dist/doc/ttf2pk/ttf2tfm.txt +runfiles size=219 + texmf-dist/fonts/enc/ttf2pk/base/T1-WGL4.enc + texmf-dist/fonts/sfd/ttf2pk/Big5.sfd + texmf-dist/fonts/sfd/ttf2pk/EUC.sfd + texmf-dist/fonts/sfd/ttf2pk/HKSCS.sfd + texmf-dist/fonts/sfd/ttf2pk/KS-HLaTeX.sfd + texmf-dist/fonts/sfd/ttf2pk/SJIS.sfd + texmf-dist/fonts/sfd/ttf2pk/UBg5plus.sfd + texmf-dist/fonts/sfd/ttf2pk/UBig5.sfd + texmf-dist/fonts/sfd/ttf2pk/UGB.sfd + texmf-dist/fonts/sfd/ttf2pk/UGBK.sfd + texmf-dist/fonts/sfd/ttf2pk/UJIS.sfd + texmf-dist/fonts/sfd/ttf2pk/UKS-HLaTeX.sfd + texmf-dist/fonts/sfd/ttf2pk/UKS.sfd + texmf-dist/fonts/sfd/ttf2pk/Unicode.sfd + texmf-dist/ttf2pk/VPS.rpl + texmf-dist/ttf2pk/ttf2pk.cfg + +name ttfutils.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of ttfutils +containersize 416620 +containerchecksum e80ec0ac790244773b130b13dc6cd0cd6b3ac2a6a060d2f7d58dd0ef6df65c906e3e73dfc3f9682dbd013137264844f5a0866a24e167787b1e7ac523051cf5dc +binfiles arch=aarch64-linux size=463 + bin/aarch64-linux/ttf2afm + bin/aarch64-linux/ttf2pk + bin/aarch64-linux/ttf2tfm + bin/aarch64-linux/ttfdump + +name ttfutils.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of ttfutils +containersize 460500 +containerchecksum b0a9ea415e2ddee73c4c6883821f6ce2dd18fdf8ef9d1191ea0361529cdba62c79a7c199ae63e4c98603c9ed479d2d465be5543fdbd7dcc10630f829d2e3bc74 +binfiles arch=amd64-freebsd size=483 + bin/amd64-freebsd/ttf2afm + bin/amd64-freebsd/ttf2pk + bin/amd64-freebsd/ttf2tfm + bin/amd64-freebsd/ttfdump + +name ttfutils.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of ttfutils +containersize 396728 +containerchecksum 178759a07eb991842f548b48c57440f86aefd2034d17bf091e324db32b9f7b073c946efe95380e9d261e38b11e44112afff0497d978ccf2683daf2cf76e4dcc3 +binfiles arch=amd64-netbsd size=604 + bin/amd64-netbsd/ttf2afm + bin/amd64-netbsd/ttf2pk + bin/amd64-netbsd/ttf2tfm + bin/amd64-netbsd/ttfdump + +name ttfutils.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of ttfutils +containersize 338848 +containerchecksum 17e10d55e147f75e5a0131b8c2495dc1f2784f73a1077363e7af139d629c8d97b3891b6ead08c5e6d7aa6fca6a8345c584268e14396a22d6a4fbd15544e5886c +binfiles arch=armhf-linux size=361 + bin/armhf-linux/ttf2afm + bin/armhf-linux/ttf2pk + bin/armhf-linux/ttf2tfm + bin/armhf-linux/ttfdump + +name ttfutils.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of ttfutils +containersize 361696 +containerchecksum 30ec9fb3af72216424aa9ca2972945c404bf83f42a3be4e8484d3eeb93db2125515366708552f381d483321772e43729fb28ad46cee30c22ee82fa2e50385ea7 +binfiles arch=i386-cygwin size=372 + bin/i386-cygwin/ttf2afm.exe + bin/i386-cygwin/ttf2pk.exe + bin/i386-cygwin/ttf2tfm.exe + bin/i386-cygwin/ttfdump.exe + +name ttfutils.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of ttfutils +containersize 417660 +containerchecksum 17c9ea85e2cceeed198c5e5353b87cf8530f313c5a60d8d944432b1c65ccef08e30c12ab7e572845165a7b66736488574649eec67a8968e43079760d14e6419d +binfiles arch=i386-freebsd size=419 + bin/i386-freebsd/ttf2afm + bin/i386-freebsd/ttf2pk + bin/i386-freebsd/ttf2tfm + bin/i386-freebsd/ttfdump + +name ttfutils.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of ttfutils +containersize 442240 +containerchecksum e030139db41e0435c74607c2af64d6728924a328866786d5394dd5d63e658f4b1598685df84a9c70affed7a2a132696a8e34b4582f41478710df13ff03c1c006 +binfiles arch=i386-linux size=463 + bin/i386-linux/ttf2afm + bin/i386-linux/ttf2pk + bin/i386-linux/ttf2tfm + bin/i386-linux/ttfdump + +name ttfutils.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of ttfutils +containersize 368076 +containerchecksum 9a1c78982d812988176ed87b35ec08b5b3af27635ea0ec83fc20b64cf4648e321980f7753e0fa25d23cb15bcf0cdc37c6309e6e8eb29a853b526fb4615554ffb +binfiles arch=i386-netbsd size=524 + bin/i386-netbsd/ttf2afm + bin/i386-netbsd/ttf2pk + bin/i386-netbsd/ttf2tfm + bin/i386-netbsd/ttfdump + +name ttfutils.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of ttfutils +containersize 405500 +containerchecksum 19d396ca8979549d2a0da95318b3e071650f9e2d53368bf9a2bd36c45e1fcbf3417a919bd64fb5c247317c1131ac4d3d50146def9967621f8dc2446912b58572 +binfiles arch=i386-solaris size=388 + bin/i386-solaris/ttf2afm + bin/i386-solaris/ttf2pk + bin/i386-solaris/ttf2tfm + bin/i386-solaris/ttfdump + +name ttfutils.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of ttfutils +containersize 802700 +containerchecksum aca1c4480f599838941c2450fae1aa0fbbb18fbcbe7c4a07da6b6ec76bf67c564df6cea3cc275ad235ea432b41d25937793d124754baebfd10049de081c43fdb +binfiles arch=universal-darwin size=959 + bin/universal-darwin/ttf2afm + bin/universal-darwin/ttf2pk + bin/universal-darwin/ttf2tfm + bin/universal-darwin/ttfdump + +name ttfutils.win32 +category TLCore +revision 58783 +shortdesc win32 files of ttfutils +containersize 336752 +containerchecksum 472efa4a412b5d15d1cff701ac99427604f37ac5298f7f05421e0c29213516361cc9a27a787d48ea3eae55f39b53411604bc7c0cc9afbb2aeb6e78370f5d72fd +binfiles arch=win32 size=298 + bin/win32/ttf2afm.exe + bin/win32/ttf2pk.exe + bin/win32/ttf2tfm.exe + bin/win32/ttfdump.exe + +name ttfutils.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of ttfutils +containersize 368256 +containerchecksum c09415a5f58bae9940cd7b2af879dc9b651f4160e679ed2ec79482f11b49f148823c479d1efd0ea43528832aa860cea2b48028433cb8e2c92dbb30c75951c7a4 +binfiles arch=x86_64-cygwin size=369 + bin/x86_64-cygwin/ttf2afm.exe + bin/x86_64-cygwin/ttf2pk.exe + bin/x86_64-cygwin/ttf2tfm.exe + bin/x86_64-cygwin/ttfdump.exe + +name ttfutils.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of ttfutils +containersize 404300 +containerchecksum 29744bc01c0ad9bf5e03d275ba40dc26fda58d166238e124ca7a6d26e5d074cd160452fc5c3ed8293bec7d7c7bc1d9b22c44d4b94e545d66defc850a0a4bc594 +binfiles arch=x86_64-darwinlegacy size=415 + bin/x86_64-darwinlegacy/ttf2afm + bin/x86_64-darwinlegacy/ttf2pk + bin/x86_64-darwinlegacy/ttf2tfm + bin/x86_64-darwinlegacy/ttfdump + +name ttfutils.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of ttfutils +containersize 432404 +containerchecksum ba6f51a1e91c217214dd3d6b18460c68d17932354350b07796a6ae2404b839f212e7fc9c2b9339cc1876ab96de15c3945352ed0ce7ed312f2d8113fe493ca525 +binfiles arch=x86_64-linux size=446 + bin/x86_64-linux/ttf2afm + bin/x86_64-linux/ttf2pk + bin/x86_64-linux/ttf2tfm + bin/x86_64-linux/ttfdump + +name ttfutils.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of ttfutils +containersize 453820 +containerchecksum a3085d9e565a7596159d80ac2d7f57a9996217364221527c792637adff235a4f9b48f868f2f17ec689dcdacd0ff4db75287b890d6f29dd1110c42fafd3284b4c +binfiles arch=x86_64-linuxmusl size=493 + bin/x86_64-linuxmusl/ttf2afm + bin/x86_64-linuxmusl/ttf2pk + bin/x86_64-linuxmusl/ttf2tfm + bin/x86_64-linuxmusl/ttfdump + +name ttfutils.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of ttfutils +containersize 447988 +containerchecksum cef71399ba3ab9b038cc6302968f0ae851108550a7e4095663704aceae686cd2a75f1d4124bef48c4ca08e571a1aca89fb42e474a23919d53325b3d4769f0510 +binfiles arch=x86_64-solaris size=459 + bin/x86_64-solaris/ttf2afm + bin/x86_64-solaris/ttf2pk + bin/x86_64-solaris/ttf2tfm + bin/x86_64-solaris/ttfdump + +name tucv +category Package +revision 20680 +shortdesc Support for typesetting a CV or resumee +relocated 1 +longdesc The package provides commands for typesetting a CV or resume. +longdesc It provides commands for general-purpose headings, entries, and +longdesc item/description pairs, as well as more specific commands for +longdesc formatting sections, with explicit inclusion of school, degree, +longdesc employer, job, conference, and publications entries. It tends +longdesc to produce a somewhat long and quite detailed document but may +longdesc also be suitable to support a shorter resume. The package +longdesc relies on a 'sufficiently recent' copy of the l3kernel and +longdesc l3packages bundles. +containersize 1860 +containerchecksum 957485431ecbdd31f180b36e7519c4bee8379f477b765ff5cebe57ffa3c95caa5556ed057943eb052d61e720074dc78035fe05b0023115caceb05bd2c3757183 +doccontainersize 254104 +doccontainerchecksum 750f739c7cc244ce52b4838009666c9b6196cee234e9bbf0028e3316c75a435b5038269e93f42d99116b9db3d93dc4710c03705b924d62f09a217f2acfe36303 +docfiles size=69 + RELOC/doc/latex/tucv/README details="Readme" + RELOC/doc/latex/tucv/tucv.pdf details="Package documentation" + RELOC/doc/latex/tucv/tucv_ex.pdf details="Package sampler" + RELOC/doc/latex/tucv/tucv_ex.tex +srccontainersize 4996 +srccontainerchecksum f754ab6d751eb5df0477802ab0a4d514aa0825e824531e76904ab474ed5423cbcaf773e37ce80e94c32236bee061f92c0782749c9196c3cc7fcb9249a57ea32a +srcfiles size=5 + RELOC/source/latex/tucv/tucv.dtx + RELOC/source/latex/tucv/tucv.ins +runfiles size=1 + RELOC/tex/latex/tucv/tucv.sty +catalogue-ctan /macros/latex/contrib/tucv +catalogue-license other-free +catalogue-topics cv +catalogue-version 1.0 + +name tuda-ci +category Package +revision 58661 +shortdesc LaTeX templates of Technische Universitat Darmstadt +relocated 1 +longdesc The TUDa-CI-Bundle provides a possibility to use the Corporate +longdesc Design of TU Darmstadt in LaTeX. It contains documentclasses as +longdesc well as some helper packages and config files together with +longdesc some templates for user documentation, which currently are only +longdesc available in German. +containersize 42580 +containerchecksum a0b1ff24435c3c03618c9d9b2213379acfc0fd9184357ee209725de660f25260a81e3108e41bc8f425c06e11ffe18e0ea5fa3fdbb5404caf0edc36dc950da6e7 +doccontainersize 1116308 +doccontainerchecksum 4804e96ae31d171bbc4fae0ea23d6d04601e8fdb8963ad4cd681099538e35bbb3b4624d8d1a7e8fdd86a4657e391707bcd3418c7ba44c004779bc3535c94aa64 +docfiles size=1673 + RELOC/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.pdf + RELOC/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf details="Example presentation" language="de" + RELOC/doc/latex/tuda-ci/DEMO-TUDaBeamer.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaBibliography.bib + RELOC/doc/latex/tuda-ci/DEMO-TUDaExercise.pdf + RELOC/doc/latex/tuda-ci/DEMO-TUDaExercise.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaFromaddress.lco + RELOC/doc/latex/tuda-ci/DEMO-TUDaLeaflet.pdf + RELOC/doc/latex/tuda-ci/DEMO-TUDaLeaflet.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaLetter.pdf details="Example letter" language="de" + RELOC/doc/latex/tuda-ci/DEMO-TUDaLetter.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaPhD.pdf details="Example PhD thesis" language="de" + RELOC/doc/latex/tuda-ci/DEMO-TUDaPhD.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaPoster.pdf details="Example announcement poster" language="de" + RELOC/doc/latex/tuda-ci/DEMO-TUDaPoster.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaPub.pdf details="Package documentation" language="de" + RELOC/doc/latex/tuda-ci/DEMO-TUDaPub.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaReport.pdf + RELOC/doc/latex/tuda-ci/DEMO-TUDaReport.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaSciPoster.pdf details="Example scientific poster" language="de" + RELOC/doc/latex/tuda-ci/DEMO-TUDaSciPoster.tex + RELOC/doc/latex/tuda-ci/DEMO-TUDaThesis.pdf details="Example bachelor's thesis" language="de" + RELOC/doc/latex/tuda-ci/DEMO-TUDaThesis.tex + RELOC/doc/latex/tuda-ci/README.md details="Readme" +runfiles size=81 + RELOC/tex/latex/tuda-ci/beamercolorthemeTUDa.sty + RELOC/tex/latex/tuda-ci/beamerfontthemeTUDa.sty + RELOC/tex/latex/tuda-ci/beamerinnerthemeTUDa.sty + RELOC/tex/latex/tuda-ci/beamerouterthemeTUDa.sty + RELOC/tex/latex/tuda-ci/beamerthemeTUDa-mecheng.sty + RELOC/tex/latex/tuda-ci/beamerthemeTUDa.sty + RELOC/tex/latex/tuda-ci/tuda-a0paper.clo + RELOC/tex/latex/tuda-ci/tuda-a1paper.clo + RELOC/tex/latex/tuda-ci/tuda-a2paper.clo + RELOC/tex/latex/tuda-ci/tuda-a3paper.clo + RELOC/tex/latex/tuda-ci/tuda-a4paper.clo + RELOC/tex/latex/tuda-ci/tuda-a5paper.clo + RELOC/tex/latex/tuda-ci/tuda-pgfplots.sty + RELOC/tex/latex/tuda-ci/tudabeamer.cls + RELOC/tex/latex/tuda-ci/tudacolors.def + RELOC/tex/latex/tuda-ci/tudacolors.sty + RELOC/tex/latex/tuda-ci/tudaexercise.cls + RELOC/tex/latex/tuda-ci/tudafonts.sty + RELOC/tex/latex/tuda-ci/tudaleaflet.cls + RELOC/tex/latex/tuda-ci/tudaletter.cls + RELOC/tex/latex/tuda-ci/tudalettersize10pt.clo + RELOC/tex/latex/tuda-ci/tudamecheng.cfg + RELOC/tex/latex/tuda-ci/tudaposter.cls + RELOC/tex/latex/tuda-ci/tudapub.cls + RELOC/tex/latex/tuda-ci/tudarules.sty + RELOC/tex/latex/tuda-ci/tudasciposter.cls + RELOC/tex/latex/tuda-ci/tudasize9pt.clo + RELOC/tex/latex/tuda-ci/tudathesis.cfg +catalogue-also ifmslide +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-license lppl1.3c +catalogue-topics class letter dissertation presentation poster std-conform +catalogue-version 3.13a + +name tudscr +category Package +revision 58713 +shortdesc Corporate Design of Technische Universitat Dresden +relocated 1 +longdesc The TUD-Script bundle provides both classes and packages in +longdesc order to create LaTeX documents in the corporate design of the +longdesc Technische Universitat Dresden. It bases on the KOMA-Script +longdesc bundle, which must necessarily be present. For questions, +longdesc problems and comments, please refer to either the LaTeX forum +longdesc of the Dresden University of Technology or the GitHub "tudscr" +longdesc repository. The bundle offers: the three document classes +longdesc tudscrartcl, tudscrreprt, and tudscrbook which serve as wrapper +longdesc classes for scrartcl, scrreprt, and scrbook, the class +longdesc tudscrposter for creating posters, the package tudscrsupervisor +longdesc providing environments and macros to create tasks, evaluations +longdesc and notices for scientific theses, the package tudscrfonts, +longdesc which makes the corporate design fonts of the Technische +longdesc Universitat Dresden available for LaTeX standard classes and +longdesc KOMA-Script classes, the package fix-tudscrfonts, which +longdesc provides the same fonts to additional corporate design classes +longdesc not related to TUD-Script, the package tudscrcomp, which +longdesc simplifies the switch to TUD-Script from external corporate +longdesc design classes, the package mathswap for swapping math +longdesc delimiters within numbers (similar to ionumbers), the package +longdesc twocolfix for fixing the positioning bug of headings in +longdesc twocolumn layout, and a comprehensive user documentation as +longdesc well as several tutorials. +depend cbfonts +depend environ +depend etoolbox +depend geometry +depend graphics +depend greek-inputenc +depend iwona +depend koma-script +depend mathastext +depend mweights +depend oberdiek +depend opensans +depend trimspaces +depend xcolor +depend xpatch +containersize 160276 +containerchecksum 16ae7a0ca2544007dfcc1f2720080ae7f8453f535a696ff1edd252ed6a9d6eda9da48c80420c6a64e9b36c85322215c41477269871e285239707c17ae96b6960 +doccontainersize 3746440 +doccontainerchecksum 0e6d42d4bf8a7e2af363243be7a75d93fe489c7e99cc1c731e3e233aff96f2f7f00787af8a5e86419c8d5cf3c7bef9a593aed546e66c565343793f081f34b7d5 +docfiles size=1071 + RELOC/doc/latex/tudscr/LICENSE.md + RELOC/doc/latex/tudscr/README.md details="Readme" + RELOC/doc/latex/tudscr/tudscr.pdf details="User manual" language="de" + RELOC/doc/latex/tudscr/tudscr_print.pdf + RELOC/doc/latex/tudscr/tudscrsource.pdf details="Documented source code" language="de" + RELOC/doc/latex/tudscr/tutorials/mathswap.pdf + RELOC/doc/latex/tudscr/tutorials/mathtype.pdf + RELOC/doc/latex/tudscr/tutorials/treatise.pdf +srccontainersize 316860 +srccontainerchecksum 68651ed041af40431be9bac615e3fbefc33330fdf0be33d4cbc80d3cdf4080ba6e7ba5147cfb64101f332af0386cc29d44198fbd3594eb2447e680fa097206b1 +srcfiles size=460 + RELOC/source/latex/tudscr/doc/examples/dissertation.tex + RELOC/source/latex/tudscr/doc/examples/document.tex + RELOC/source/latex/tudscr/doc/examples/evaluation.tex + RELOC/source/latex/tudscr/doc/examples/mathswap-example.tex + RELOC/source/latex/tudscr/doc/examples/mathtype-example.tex + RELOC/source/latex/tudscr/doc/examples/notice.tex + RELOC/source/latex/tudscr/doc/examples/poster.tex + RELOC/source/latex/tudscr/doc/examples/poster_print.tex + RELOC/source/latex/tudscr/doc/examples/task.tex + RELOC/source/latex/tudscr/doc/examples/thesis.tex + RELOC/source/latex/tudscr/doc/examples/treatise-example.tex + RELOC/source/latex/tudscr/doc/tudscr-additional.tex + RELOC/source/latex/tudscr/doc/tudscr-bundle.tex + RELOC/source/latex/tudscr/doc/tudscr-examples.tex + RELOC/source/latex/tudscr/doc/tudscr-hints.tex + RELOC/source/latex/tudscr/doc/tudscr-index.tex + RELOC/source/latex/tudscr/doc/tudscr-installation.tex + RELOC/source/latex/tudscr/doc/tudscr-introduction.tex + RELOC/source/latex/tudscr/doc/tudscr-mainclasses.tex + RELOC/source/latex/tudscr/doc/tudscr-obsolete.tex + RELOC/source/latex/tudscr/doc/tudscr-packages.tex + RELOC/source/latex/tudscr/doc/tudscr-poster.tex + RELOC/source/latex/tudscr/doc/tudscr-preface.tex + RELOC/source/latex/tudscr/doc/tudscr-supervisor.tex + RELOC/source/latex/tudscr/doc/tudscr.tex + RELOC/source/latex/tudscr/doc/tutorials/mathswap.tex + RELOC/source/latex/tudscr/doc/tutorials/mathtype.tex + RELOC/source/latex/tudscr/doc/tutorials/treatise.tex + RELOC/source/latex/tudscr/tudscr-area.dtx + RELOC/source/latex/tudscr/tudscr-base.dtx + RELOC/source/latex/tudscr/tudscr-color.dtx + RELOC/source/latex/tudscr/tudscr-comp.dtx + RELOC/source/latex/tudscr/tudscr-doc.dtx + RELOC/source/latex/tudscr/tudscr-fields.dtx + RELOC/source/latex/tudscr/tudscr-fonts.dtx + RELOC/source/latex/tudscr/tudscr-frontmatter.dtx + RELOC/source/latex/tudscr/tudscr-layout.dtx + RELOC/source/latex/tudscr/tudscr-localization.dtx + RELOC/source/latex/tudscr/tudscr-manual.dtx + RELOC/source/latex/tudscr/tudscr-mathswap.dtx + RELOC/source/latex/tudscr/tudscr-misc.dtx + RELOC/source/latex/tudscr/tudscr-pagestyle.dtx + RELOC/source/latex/tudscr/tudscr-supervisor.dtx + RELOC/source/latex/tudscr/tudscr-texindy.dtx + RELOC/source/latex/tudscr/tudscr-title.dtx + RELOC/source/latex/tudscr/tudscr-twocolfix.dtx + RELOC/source/latex/tudscr/tudscr-version.dtx + RELOC/source/latex/tudscr/tudscr.ins + RELOC/source/latex/tudscr/tudscrsource.tex +runfiles size=497 + RELOC/tex/latex/tudscr/fix-tudscrfonts.sty + RELOC/tex/latex/tudscr/logo/DDC-01.eps + RELOC/tex/latex/tudscr/logo/DDC-01.pdf + RELOC/tex/latex/tudscr/logo/DDC-03.eps + RELOC/tex/latex/tudscr/logo/DDC-03.pdf + RELOC/tex/latex/tudscr/logo/DDC-07.eps + RELOC/tex/latex/tudscr/logo/DDC-07.pdf + RELOC/tex/latex/tudscr/logo/DDC-09.eps + RELOC/tex/latex/tudscr/logo/DDC-09.pdf + RELOC/tex/latex/tudscr/logo/DDC-19.eps + RELOC/tex/latex/tudscr/logo/DDC-19.pdf + RELOC/tex/latex/tudscr/logo/DDC-21.eps + RELOC/tex/latex/tudscr/logo/DDC-21.pdf + RELOC/tex/latex/tudscr/logo/DDC-22.eps + RELOC/tex/latex/tudscr/logo/DDC-22.pdf + RELOC/tex/latex/tudscr/logo/DDC-24.eps + RELOC/tex/latex/tudscr/logo/DDC-24.pdf + RELOC/tex/latex/tudscr/logo/DDC-25.eps + RELOC/tex/latex/tudscr/logo/DDC-25.pdf + RELOC/tex/latex/tudscr/logo/DDC-27.eps + RELOC/tex/latex/tudscr/logo/DDC-27.pdf + RELOC/tex/latex/tudscr/logo/DDC-28.eps + RELOC/tex/latex/tudscr/logo/DDC-28.pdf + RELOC/tex/latex/tudscr/logo/DDC-30.eps + RELOC/tex/latex/tudscr/logo/DDC-30.pdf + RELOC/tex/latex/tudscr/logo/TUD-black.eps + RELOC/tex/latex/tudscr/logo/TUD-black.pdf + RELOC/tex/latex/tudscr/logo/TUD-blue.eps + RELOC/tex/latex/tudscr/logo/TUD-blue.pdf + RELOC/tex/latex/tudscr/logo/TUD-white.eps + RELOC/tex/latex/tudscr/logo/TUD-white.pdf + RELOC/tex/latex/tudscr/mathswap.sty + RELOC/tex/latex/tudscr/tudscrartcl.cls + RELOC/tex/latex/tudscr/tudscrbase.sty + RELOC/tex/latex/tudscr/tudscrbook.cls + RELOC/tex/latex/tudscr/tudscrcolor.sty + RELOC/tex/latex/tudscr/tudscrcomp-book.sty + RELOC/tex/latex/tudscr/tudscrcomp-poster.sty + RELOC/tex/latex/tudscr/tudscrcomp.sty + RELOC/tex/latex/tudscr/tudscrdoc.cls + RELOC/tex/latex/tudscr/tudscrfonts.sty + RELOC/tex/latex/tudscr/tudscrmanual.cls + RELOC/tex/latex/tudscr/tudscrposter.cls + RELOC/tex/latex/tudscr/tudscrreprt.cls + RELOC/tex/latex/tudscr/tudscrsupervisor.sty + RELOC/tex/latex/tudscr/tudscrtutorial.sty + RELOC/tex/latex/tudscr/twocolfix.sty +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-license lppl1.3c +catalogue-topics dissertation class std-conform +catalogue-version 2.06l + +name tufte-latex +category Package +revision 37649 +shortdesc Document classes inspired by the work of Edward Tufte +relocated 1 +longdesc Provided are two classes inspired, respectively, by handouts +longdesc and books created by Edward Tufte. +depend changepage +depend ifmtarg +depend paralist +depend placeins +depend sauerj +depend xifthen +containersize 21568 +containerchecksum 6dd01a5a6faf37439ca9aab23534f99050b84bfac16df48545417ee03e72700344c25b2de3262e8e28406da705d50296473a815fa14b701c609b3715f01405d1 +doccontainersize 453460 +doccontainerchecksum 11ac57e79a05db644235b6db851473c75d1538a1261d7022a63d9ab0cc54486cc13b7cc95c44d16912952e46bc9264c1bfb831a728b51a03495d01f1963410d3 +docfiles size=185 + RELOC/doc/latex/tufte-latex/History.txt + RELOC/doc/latex/tufte-latex/Manifest.txt + RELOC/doc/latex/tufte-latex/README.txt + RELOC/doc/latex/tufte-latex/graphics/be-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/be-title.pdf + RELOC/doc/latex/tufte-latex/graphics/ei-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/ei-title.pdf + RELOC/doc/latex/tufte-latex/graphics/helix.asy + RELOC/doc/latex/tufte-latex/graphics/helix.pdf + RELOC/doc/latex/tufte-latex/graphics/hilbertcurves.pdf + RELOC/doc/latex/tufte-latex/graphics/nasa_vision_sm.png + RELOC/doc/latex/tufte-latex/graphics/satir_graph.png + RELOC/doc/latex/tufte-latex/graphics/sine.asy + RELOC/doc/latex/tufte-latex/graphics/sine.pdf + RELOC/doc/latex/tufte-latex/graphics/vdqi-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/vdqi-title.pdf + RELOC/doc/latex/tufte-latex/graphics/ve-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/ve-title.pdf + RELOC/doc/latex/tufte-latex/sample-book.pdf details="Sample book" + RELOC/doc/latex/tufte-latex/sample-book.tex + RELOC/doc/latex/tufte-latex/sample-handout.bib + RELOC/doc/latex/tufte-latex/sample-handout.pdf details="Sample handout" + RELOC/doc/latex/tufte-latex/sample-handout.tex +runfiles size=27 + RELOC/bibtex/bst/tufte-latex/tufte.bst + RELOC/tex/latex/tufte-latex/tufte-book.cls + RELOC/tex/latex/tufte-latex/tufte-common.def + 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-license apache2 +catalogue-topics book-pub class +catalogue-version 3.5.2 + +name tugboat +category Package +revision 56942 +shortdesc LaTeX macros for TUGboat articles +relocated 1 +longdesc Provides ltugboat.cls for both regular and proceedings issues +longdesc of the TUGboat journal. Also provides a BibTeX style, +longdesc tugboat.bst. +containersize 27916 +containerchecksum 1a58d5dbb3c68ae1abc78265f5583943dbbe673efe5fe81aaa4f5b66e18afe573a2e135637e24b0026d68de994a143d2d9ea172c1bfebf4adb15927abf5f74de +doccontainersize 790084 +doccontainerchecksum 7db84d7657506ef2837eae7a8658c64cb0c6e6d58d5638f7abd936670166c0e75c6822f9deb6ab5916ef0d51f25a3bbfc76f0906c086dd6edb703140b68d72e5 +docfiles size=210 + RELOC/doc/latex/tugboat/NEWS + RELOC/doc/latex/tugboat/README details="Readme" + RELOC/doc/latex/tugboat/ltubguid.ltx + RELOC/doc/latex/tugboat/ltubguid.pdf details="Instructions for authors" language="en" + RELOC/doc/latex/tugboat/manifest.txt + RELOC/doc/latex/tugboat/tugboat.pdf details="Program documentation" language="en" +srccontainersize 40236 +srccontainerchecksum 9cf55ebca59c961ec144fe53d73dc01501b8f621716d20655661c133afbfa2b4e4e4169868d9f419f968787bdce3f6fadf66084dafcd542cb505aa1f7acb4e3b +srcfiles size=35 + RELOC/source/latex/tugboat/tugboat.dtx + RELOC/source/latex/tugboat/tugboat.ins +runfiles size=41 + RELOC/bibtex/bst/tugboat/ltugbib.bst + RELOC/bibtex/bst/tugboat/tugboat.bst + RELOC/tex/latex/tugboat/ltugboat.cls + RELOC/tex/latex/tugboat/ltugboat.sty + RELOC/tex/latex/tugboat/ltugcomn.sty + RELOC/tex/latex/tugboat/ltugproc.cls + RELOC/tex/latex/tugboat/ltugproc.sty +catalogue-also tugboat-plain +catalogue-contact-home https://tug.org/TUGboat +catalogue-ctan /macros/latex/contrib/tugboat +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 2.24 + +name tugboat-plain +category Package +revision 51373 +shortdesc Plain TeX macros for TUGboat +relocated 1 +longdesc The macros defined in this directory (in files tugboat.sty and +longdesc tugboat.cmn) are used in papers written in Plain TeX for +longdesc publication in TUGboat. +containersize 32684 +containerchecksum a2541eae8834f9a78fadaf4123aa1dbfed2215d3697299e17fcb0c9635091be57b5171514d771c2e14ee7c94ee2ab18e0907a1b3b3cc5bd60b3a3c74e305f45a +doccontainersize 221372 +doccontainerchecksum 747ac188b7d738ae33808da86716712f80f98ec2f69b60bc45514cead00d837fde1dcc99c65804e61c9e35e94e9276f314617f885dd081fe6fce75f7a2baaf9e +docfiles size=60 + RELOC/doc/plain/tugboat-plain/README + RELOC/doc/plain/tugboat-plain/tubguide.pdf details="TUGboat Authors' Guide" + RELOC/doc/plain/tugboat-plain/tubguide.tex +runfiles size=31 + RELOC/tex/plain/tugboat-plain/tugboat.cmn + RELOC/tex/plain/tugboat-plain/tugboat.sty + RELOC/tex/plain/tugboat-plain/tugproc.sty +catalogue-also tugboat +catalogue-ctan /macros/plain/contrib/tugboat +catalogue-license other-free +catalogue-topics journalpub +catalogue-version 1.25 + +name tui +category Package +revision 27253 +shortdesc Thesis style for the University of the Andes, Colombia +relocated 1 +longdesc Doctoral Dissertations from the Faculty of Engineering at the +longdesc Universidad de los Andes, Bogota, Colombia. The class is +longdesc implemented as an extension of the memoir class. Clase de Tesis +longdesc doctorales para ingenieria, Universidad de los Andes, Bogota. +containersize 3928 +containerchecksum 59e8af51c39984a42247435ad893c3b8e37eb9dc53634e0a5f30733ee0c973690b66d805079a0f5cf61762abe7fceb1f2dc91691df9be26f72a1a8edd2524ba3 +doccontainersize 262356 +doccontainerchecksum b48d9811ac6414d96a7b5059b33c174464f262c721159552e48e6f5bcf5b969ae91bbac61aff6077304907d3d2bd8eb73774628458a7e740ea49fe433b9bbbc2 +docfiles size=104 + RELOC/doc/latex/tui/README details="Readme" language="en" + RELOC/doc/latex/tui/TUIdoc.pdf details="Package documentation (Spanish)" language="es" + RELOC/doc/latex/tui/TUIdoc.tex + RELOC/doc/latex/tui/example/abstract.tex + RELOC/doc/latex/tui/example/agradec.tex + RELOC/doc/latex/tui/example/ap01.tex + RELOC/doc/latex/tui/example/bibliotesis.bib + RELOC/doc/latex/tui/example/ch01.tex + RELOC/doc/latex/tui/example/ch02.tex + RELOC/doc/latex/tui/example/ch03.tex + RELOC/doc/latex/tui/example/coleccion.tex + RELOC/doc/latex/tui/example/dedicat.tex + RELOC/doc/latex/tui/example/hyphenation.tex + RELOC/doc/latex/tui/example/imagen.pdf + RELOC/doc/latex/tui/example/intro.tex + RELOC/doc/latex/tui/example/lipsum.tex + RELOC/doc/latex/tui/example/listofsymbols.tex + RELOC/doc/latex/tui/example/main.tex + RELOC/doc/latex/tui/example/plegal.tex + RELOC/doc/latex/tui/example/portada.tex + RELOC/doc/latex/tui/example/resumen.tex + RELOC/doc/latex/tui/template/abstract.tex + RELOC/doc/latex/tui/template/agradec.tex + RELOC/doc/latex/tui/template/ap01.tex + RELOC/doc/latex/tui/template/bibliotesis.bib + RELOC/doc/latex/tui/template/ch01.tex + RELOC/doc/latex/tui/template/ch02.tex + RELOC/doc/latex/tui/template/ch03.tex + RELOC/doc/latex/tui/template/coleccion.tex + RELOC/doc/latex/tui/template/dedicat.tex + RELOC/doc/latex/tui/template/hyphenation.tex + RELOC/doc/latex/tui/template/intro.tex + RELOC/doc/latex/tui/template/listofsymbols.tex + RELOC/doc/latex/tui/template/main.tex + RELOC/doc/latex/tui/template/plegal.tex + RELOC/doc/latex/tui/template/portada.tex + RELOC/doc/latex/tui/template/resumen.tex +runfiles size=3 + RELOC/tex/latex/tui/tui.cls +catalogue-ctan /macros/latex/contrib/tui +catalogue-license lppl +catalogue-topics dissertation class +catalogue-version 1.9 + +name turabian +category Package +revision 36298 +shortdesc Create Turabian-formatted material using LaTeX +relocated 1 +longdesc The bundle provides a class file and a template for creating +longdesc Turabian-formatted projects. The class file supports citation +longdesc formatting conforming to the Turabian 8th Edition style guide. +containersize 1792 +containerchecksum fe4ec8291e8b1dfc6130bdc862384b8e7c6ea2d4db6baaf92e0b7b053ab8ed328ec452e0c1efc4da2eecc3f8b6c86e77cfd2100ea66e4f59276fb64683d55a92 +doccontainersize 4272 +doccontainerchecksum 3b4900c67c65ee1b20dedb2ffbc844ff22dc519dde0121b375dd13bcd80a0f2fdf5cef8c4e43a395ebe8fb4c82d463f18ca30ec65fe2be398c181af78ec0a0f7 +docfiles size=4 + RELOC/doc/latex/turabian/README details="Readme" + RELOC/doc/latex/turabian/turabian.tex + RELOC/doc/latex/turabian/userguide.txt details="Package documentation" +runfiles size=1 + RELOC/tex/latex/turabian/turabian.cls +catalogue-also turabian-formatting +catalogue-ctan /macros/latex/contrib/turabian +catalogue-license lppl +catalogue-topics gen-paper class +catalogue-version 0.1.0 + +name turabian-formatting +category Package +revision 58561 +shortdesc Formatting based on Turabian's Manual +relocated 1 +longdesc The turabian-formatting package provides Chicago-style +longdesc formatting based on Kate L. Turabian's "A Manual for Writers of +longdesc Research Papers, Theses, and Dissertations: Chicago Style for +longdesc Students and Researchers" (9th edition). +containersize 7900 +containerchecksum ebef1733d41cae66456e6a50c47ae0c66a7d7254a59e57f6af62e21cab73ae7a68092baa4706eb1f1e93ab152e0ab22550f0b4ce8cf9ac36eb3740530afe8499 +doccontainersize 120224 +doccontainerchecksum 6cac53c6fe5dd36702ec07e22a00871932dd4b2e421649d33e33f50e8b8b8cc57e42c752ff6e4e2a53610d28f42ddc68b0b6c1cddb0a7a045f3a547c04e77735 +docfiles size=38 + RELOC/doc/latex/turabian-formatting/README details="Readme" + RELOC/doc/latex/turabian-formatting/turabian-formatting-doc.pdf details="Package documentation" + RELOC/doc/latex/turabian-formatting/turabian-formatting-doc.tex +runfiles size=11 + RELOC/tex/latex/turabian-formatting/turabian-formatting.sty + RELOC/tex/latex/turabian-formatting/turabian-researchpaper.cls + RELOC/tex/latex/turabian-formatting/turabian-thesis.cls +catalogue-also turabian biblatex-chicago +catalogue-ctan /macros/latex/contrib/turabian-formatting +catalogue-license lppl1.3 +catalogue-topics dissertation class + +name turkmen +category Package +revision 17748 +shortdesc Babel support for Turkmen +relocated 1 +longdesc The package provides support for Turkmen in babel, but +longdesc integration with babel is not available. +containersize 2216 +containerchecksum 437ff775642326f25f260280ca8d846e546f0f4b3c3082eb1ebaadcfc6ca5196967f82a00237367754b3ff307f983a828dba5c8117539d65634379567062a377 +doccontainersize 109384 +doccontainerchecksum 39014c9049322a1966951a242152b8774b2bc914bd620b6eba8c97e8ec457a1ed3547f2c211b3bba333cab21bac98882dbc9a1e9028443e7365780cf4d78b577 +docfiles size=30 + RELOC/doc/latex/turkmen/README details="Readme" + RELOC/doc/latex/turkmen/turkmen.pdf details="Package documentation" +srccontainersize 3932 +srccontainerchecksum 1d69e90b8aa74db44b7b89c8a3346ffbfca2b8514205a04610b5049e50e61b19ef063d9b3e9c99bf4c141d52bb03d600ad5ce1a13494b06fb7d13d12f47b860a +srcfiles size=4 + RELOC/source/latex/turkmen/turkmen.dtx + RELOC/source/latex/turkmen/turkmen.ins +runfiles size=1 + RELOC/tex/latex/turkmen/turkmen.ldf +catalogue-ctan /language/turkmen +catalogue-license lppl +catalogue-topics turkmen multilingual-addon +catalogue-version 0.2 + +name turnstile +category Package +revision 15878 +shortdesc Typeset the (logic) turnstile notation +relocated 1 +longdesc Among other uses, the turnstile sign is used by logicians for +longdesc denoting a consequence relation, related to a given logic, +longdesc between a collection of formulas and a derived formula. +containersize 1928 +containerchecksum 083050bb9f34b576cc1033a0b754a2e888883d98d41aa08c1694f78cb5e372748cfc1d62af94732334ce05e91933e95796498fc120d6584f554260fef4d87811 +doccontainersize 598160 +doccontainerchecksum 6f51d17752aab1c33442a92d3d926b1802c1274b3799f33f65bcd417d268ce851be76d36b13fbe0fa3599399f10df9e8bec7bfb6ffa929f667b9e7ee3e9eb323 +docfiles size=176 + RELOC/doc/latex/turnstile/README details="Readme" + RELOC/doc/latex/turnstile/README.en + RELOC/doc/latex/turnstile/README.pt + RELOC/doc/latex/turnstile/turnstile-en.pdf details="Package documentation (English)" + RELOC/doc/latex/turnstile/turnstile-pt.pdf details="Package documentation (Portuguese)" language="pt" + RELOC/doc/latex/turnstile/turnstile_article.pdf details="Article about the package (English)" + RELOC/doc/latex/turnstile/turnstile_article.tex + RELOC/doc/latex/turnstile/turnstile_artigo.pdf details="Article about the package (Portuguese)" language="pt" + RELOC/doc/latex/turnstile/turnstile_artigo.tex +srccontainersize 7888 +srccontainerchecksum edab29b25bcad5c2f65980b5539d60b3f8d6481205c89a1fe386f4e1b15e5988c3e592816aae2ded548e624e1cd55fa987eadd2c727d2f261128172bee6b369a +srcfiles size=14 + RELOC/source/latex/turnstile/turnstile-en.dtx + RELOC/source/latex/turnstile/turnstile-en.ins + RELOC/source/latex/turnstile/turnstile-pt.dtx + RELOC/source/latex/turnstile/turnstile-pt.ins +runfiles size=3 + RELOC/tex/latex/turnstile/turnstile.sty +catalogue-ctan /macros/latex/contrib/turnstile +catalogue-license lppl +catalogue-topics class maths-symbol +catalogue-version 1.0 + +name turnthepage +category Package +revision 29803 +shortdesc Provide "turn page" instructions +relocated 1 +longdesc The package prints a 'turn' instruction at the bottom of +longdesc odd-numbered pages (except the last). This is a common +longdesc convention for examination papers and the like. +containersize 1664 +containerchecksum 446b0516264eac6b880048e16cf4ad7bb529718c726233fc645b8c32d625f3f6b505b72beef81994b61ddc77ec8ecfece907347be4f9e18a79fa36c2aef91b5d +doccontainersize 78428 +doccontainerchecksum 4af8dc61e53df587f19b61f6260e7a7820a8334f2841a63f2ecc05b7197eb69596dc36163b39cdaff9258651241a334b6e3a814699065c8ce4f861fba6110f83 +docfiles size=45 + RELOC/doc/latex/turnthepage/Makefile + RELOC/doc/latex/turnthepage/README details="Readme" + RELOC/doc/latex/turnthepage/perso.ist + RELOC/doc/latex/turnthepage/turnthepage-bib.bib + RELOC/doc/latex/turnthepage/turnthepage.pdf details="Package documentation" + RELOC/doc/latex/turnthepage/turnthepage.tex +runfiles size=3 + RELOC/tex/latex/turnthepage/turnpageetex.sty + RELOC/tex/latex/turnthepage/turnpagewoetex.sty + RELOC/tex/latex/turnthepage/turnthepage.sty +catalogue-ctan /macros/latex/contrib/turnthepage +catalogue-license lppl +catalogue-topics layout exam +catalogue-version 1.3a + +name twemoji-colr +category Package +revision 55675 +shortdesc Twemoji font in COLR/CPAL layered format +relocated 1 +longdesc This is a COLR/CPAL-based color OpenType font from the Twemoji +longdesc collection of emoji images. +containersize 525000 +containerchecksum 0de16660597961e0a221924b8cf453f1e81c837f44d1f7c662b55e29839f1a0d5c105696140a445772d9c8b1714850d2b3618aedb757404dedbec46c1a212c37 +doccontainersize 712 +doccontainerchecksum 07e7485b6201d63954161e898f6f25cdc6f26332f6f7e9ee1b29c88e02a1b048fe22721bc3ce856d66ca255a1058cf080df86d333720c92af13a52eb7f2bfb6d +docfiles size=1 + RELOC/doc/fonts/twemoji-colr/README.md details="Readme" +runfiles size=324 + RELOC/fonts/truetype/public/twemoji-colr/TwemojiMozilla.ttf +catalogue-contact-bugs https://github.com/mozilla/twemoji-colr/issues +catalogue-contact-home https://twemoji.twitter.com/ +catalogue-contact-repository https://github.com/mozilla/twemoji-colr +catalogue-ctan /fonts/twemoji-colr +catalogue-license cc-by-sa-4 apache2 +catalogue-topics font font-ttf font-symbol +catalogue-version 0.5.1 + +name twoinone +category Package +revision 17024 +shortdesc Print two pages on a single page +relocated 1 +longdesc The package is for printing two pages on a single (landscape) +longdesc A4 page. Page numbers appear on the included pages, and not on +longdesc the landscape 'container' page. +containersize 1272 +containerchecksum ffb9610d416a15f664bfc34772651af63f76843127290bd64462991b3b892a8bbe9b5a8251e278ce757883226bc07f89f54cf94be08d6bdbe6f68c5841e3a282 +doccontainersize 72400 +doccontainerchecksum 5b79b0b235fda5e32680884702a16fe033f3a617daa765a72233d22df5e217f6d2a617a2d067f6a230985e5144e6e6d733ef6e7060f267c6d22bf5de39361d41 +docfiles size=20 + RELOC/doc/latex/twoinone/twoinone.pdf details="Package documentation" + RELOC/doc/latex/twoinone/twoinone.tex +runfiles size=1 + RELOC/tex/latex/twoinone/2in1.sty +catalogue-also twoupltx +catalogue-ctan /macros/latex/contrib/twoinone +catalogue-license pd +catalogue-topics compact-print plain-ext + +name twoup +category Package +revision 15878 +catalogue twoupltx +shortdesc Print two virtual pages on each physical page +relocated 1 +longdesc MiKTeX and many other TeX implementations include tools for +longdesc massaging PostScript into booklet and two-up printing -- that +longdesc is, printing two logical pages side by side on one side of one +longdesc sheet of paper. However, some LaTeX preliminaries are necessary +longdesc to use those tools. The twoup package provides such +longdesc preliminaries and gives advice on how to use the PostScript +longdesc tools. +containersize 2296 +containerchecksum b3734b3818498a7038d544304d27376ff481b81fbd776cc44b9d246c3e69560364a784d897755cb69f9608c51135a1fdbb8ed370d624db64dd7b5f18a48bf754 +doccontainersize 172196 +doccontainerchecksum 2bd34ca3274a229949c322a543c2e1fcffac7383edab2cbb7f0c74dd43d3b9531f9ade43f6d0126f5fd43371093f92170f69fdcbc4f69ba7fdca1d1fad167c36 +docfiles size=52 + RELOC/doc/latex/twoup/README details="Package Readme" + RELOC/doc/latex/twoup/twoup.pdf details="Package documentation" +srccontainersize 9728 +srccontainerchecksum d121f96d050e4dac6b2b52ff99b9b1ac5d5dc5e815c670f6458cdf8989a7be5e5a2ffcf4bb25d3f1ab6d5c02d1c67c15382ea266d0ef2e1f6e86e404fa1dff20 +srcfiles size=9 + RELOC/source/latex/twoup/twoup.dtx + RELOC/source/latex/twoup/twoup.ins +runfiles size=2 + RELOC/tex/latex/twoup/twoup.sty +catalogue-also twoinone +catalogue-ctan /macros/latex/contrib/twoup +catalogue-license lppl +catalogue-topics compact-print +catalogue-version 1.3 + +name txfonts +category Package +revision 15878 +shortdesc Times-like fonts in support of mathematics +relocated 1 +longdesc Txfonts supplies virtual text roman fonts using Adobe Times (or +longdesc URW NimbusRomNo9L) with some modified and additional text +longdesc symbols in the OT1, T1, and TS1 encodings; maths alphabets +longdesc using Times/URW Nimbus; maths fonts providing all the symbols +longdesc of the Computer Modern and AMS fonts, including all the Greek +longdesc capital letters from CMR; and additional maths fonts of various +longdesc other symbols. The set is complemented by a sans-serif set of +longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set. +longdesc All the fonts are in Type 1 format (AFM and PFB files), and are +longdesc supported by TeX metrics (VF and TFM files) and macros for use +longdesc with LaTeX. +execute addMap txfonts.map +containersize 709536 +containerchecksum 2e6a195791067ec85f4eeaea5970467c97915dfa48f59d17b5a73c90ba221de1b41ed35502c6714335cd190af05ccaefc6cd5855c5f35f49bd8e15a2b4ca0726 +doccontainersize 619372 +doccontainerchecksum f19a988305799931023026f714b63ee539ebaddcd39e9be1f1bf765cc4cc89428b626ff4d6bfc91ea2f324f08cf09b618b6a0f8db6b01dc9d8685618daa1e2d1 +docfiles size=233 + RELOC/doc/fonts/txfonts/00bug_fix.txt + RELOC/doc/fonts/txfonts/COPYRIGHT + RELOC/doc/fonts/txfonts/README + RELOC/doc/fonts/txfonts/txfontsdoc.pdf details="Package documentation (Letter)" + RELOC/doc/fonts/txfonts/txfontsdoc.tex + RELOC/doc/fonts/txfonts/txfontsdocA4.pdf details="Package documentation (A4)" + RELOC/doc/fonts/txfonts/txfontsdocA4.tex + RELOC/doc/fonts/txfonts/txmi.vpl +runfiles size=558 + RELOC/fonts/afm/public/txfonts/rtcxb.afm + RELOC/fonts/afm/public/txfonts/rtcxbi.afm + RELOC/fonts/afm/public/txfonts/rtcxbss.afm + RELOC/fonts/afm/public/txfonts/rtcxi.afm + RELOC/fonts/afm/public/txfonts/rtcxr.afm + RELOC/fonts/afm/public/txfonts/rtcxss.afm + RELOC/fonts/afm/public/txfonts/rtxb.afm + RELOC/fonts/afm/public/txfonts/rtxbi.afm + RELOC/fonts/afm/public/txfonts/rtxbmi.afm + RELOC/fonts/afm/public/txfonts/rtxbsc.afm + RELOC/fonts/afm/public/txfonts/rtxbss.afm + RELOC/fonts/afm/public/txfonts/rtxbsssc.afm + RELOC/fonts/afm/public/txfonts/rtxi.afm + RELOC/fonts/afm/public/txfonts/rtxmi.afm + RELOC/fonts/afm/public/txfonts/rtxr.afm + RELOC/fonts/afm/public/txfonts/rtxsc.afm + RELOC/fonts/afm/public/txfonts/rtxss.afm + RELOC/fonts/afm/public/txfonts/rtxsssc.afm + RELOC/fonts/afm/public/txfonts/t1xbtt.afm + RELOC/fonts/afm/public/txfonts/t1xbttsc.afm + RELOC/fonts/afm/public/txfonts/t1xtt.afm + RELOC/fonts/afm/public/txfonts/t1xttsc.afm + RELOC/fonts/afm/public/txfonts/tcxbtt.afm + RELOC/fonts/afm/public/txfonts/tcxtt.afm + RELOC/fonts/afm/public/txfonts/txbex.afm + RELOC/fonts/afm/public/txfonts/txbexa.afm + RELOC/fonts/afm/public/txfonts/txbmia.afm + RELOC/fonts/afm/public/txfonts/txbsy.afm + RELOC/fonts/afm/public/txfonts/txbsya.afm + RELOC/fonts/afm/public/txfonts/txbsyb.afm + RELOC/fonts/afm/public/txfonts/txbsyc.afm + RELOC/fonts/afm/public/txfonts/txbtt.afm + RELOC/fonts/afm/public/txfonts/txbttsc.afm + RELOC/fonts/afm/public/txfonts/txex.afm + RELOC/fonts/afm/public/txfonts/txexa.afm + RELOC/fonts/afm/public/txfonts/txmia.afm + RELOC/fonts/afm/public/txfonts/txsy.afm + RELOC/fonts/afm/public/txfonts/txsya.afm + RELOC/fonts/afm/public/txfonts/txsyb.afm + RELOC/fonts/afm/public/txfonts/txsyc.afm + RELOC/fonts/afm/public/txfonts/txtt.afm + RELOC/fonts/afm/public/txfonts/txttsc.afm + RELOC/fonts/enc/dvips/txfonts/tx8r.enc + RELOC/fonts/map/dvips/txfonts/txfonts.map + RELOC/fonts/map/dvips/txfonts/txr.map + RELOC/fonts/map/dvips/txfonts/txr1.map + RELOC/fonts/map/dvips/txfonts/txr2.map + RELOC/fonts/map/dvips/txfonts/txr3.map + RELOC/fonts/tfm/public/txfonts/rtcxb.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbi.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbsl.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbss.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbsso.tfm + RELOC/fonts/tfm/public/txfonts/rtcxi.tfm + RELOC/fonts/tfm/public/txfonts/rtcxr.tfm + RELOC/fonts/tfm/public/txfonts/rtcxsl.tfm + RELOC/fonts/tfm/public/txfonts/rtcxss.tfm + RELOC/fonts/tfm/public/txfonts/rtcxsssl.tfm + RELOC/fonts/tfm/public/txfonts/rtxb.tfm + RELOC/fonts/tfm/public/txfonts/rtxbi.tfm + RELOC/fonts/tfm/public/txfonts/rtxbmi.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsc.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsl.tfm + RELOC/fonts/tfm/public/txfonts/rtxbss.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsssc.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsssl.tfm + RELOC/fonts/tfm/public/txfonts/rtxi.tfm + RELOC/fonts/tfm/public/txfonts/rtxmi.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvb.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvbo.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvr.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvro.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmb.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmbi.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmbo.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmr.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmri.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmro.tfm + RELOC/fonts/tfm/public/txfonts/rtxr.tfm + RELOC/fonts/tfm/public/txfonts/rtxsc.tfm + RELOC/fonts/tfm/public/txfonts/rtxsl.tfm + RELOC/fonts/tfm/public/txfonts/rtxss.tfm + RELOC/fonts/tfm/public/txfonts/rtxsssc.tfm + RELOC/fonts/tfm/public/txfonts/rtxsssl.tfm + RELOC/fonts/tfm/public/txfonts/t1xb.tfm + RELOC/fonts/tfm/public/txfonts/t1xbi.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsl.tfm + RELOC/fonts/tfm/public/txfonts/t1xbss.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsssc.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsssl.tfm + RELOC/fonts/tfm/public/txfonts/t1xbtt.tfm + RELOC/fonts/tfm/public/txfonts/t1xbttsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xbttsl.tfm + RELOC/fonts/tfm/public/txfonts/t1xi.tfm + RELOC/fonts/tfm/public/txfonts/t1xr.tfm + RELOC/fonts/tfm/public/txfonts/t1xsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xsl.tfm + RELOC/fonts/tfm/public/txfonts/t1xss.tfm + RELOC/fonts/tfm/public/txfonts/t1xsssc.tfm + RELOC/fonts/tfm/public/txfonts/t1xsssl.tfm + RELOC/fonts/tfm/public/txfonts/t1xtt.tfm + RELOC/fonts/tfm/public/txfonts/t1xttsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xttsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxb.tfm + RELOC/fonts/tfm/public/txfonts/tcxbi.tfm + RELOC/fonts/tfm/public/txfonts/tcxbsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxbss.tfm + RELOC/fonts/tfm/public/txfonts/tcxbsssl.tfm + RELOC/fonts/tfm/public/txfonts/tcxbtt.tfm + RELOC/fonts/tfm/public/txfonts/tcxbttsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxi.tfm + RELOC/fonts/tfm/public/txfonts/tcxr.tfm + RELOC/fonts/tfm/public/txfonts/tcxsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxss.tfm + RELOC/fonts/tfm/public/txfonts/tcxsssl.tfm + RELOC/fonts/tfm/public/txfonts/tcxtt.tfm + RELOC/fonts/tfm/public/txfonts/tcxttsl.tfm + RELOC/fonts/tfm/public/txfonts/txb.tfm + RELOC/fonts/tfm/public/txfonts/txbex.tfm + RELOC/fonts/tfm/public/txfonts/txbexa.tfm + RELOC/fonts/tfm/public/txfonts/txbi.tfm + RELOC/fonts/tfm/public/txfonts/txbmi.tfm + RELOC/fonts/tfm/public/txfonts/txbmi1.tfm + RELOC/fonts/tfm/public/txfonts/txbmia.tfm + RELOC/fonts/tfm/public/txfonts/txbsc.tfm + RELOC/fonts/tfm/public/txfonts/txbsl.tfm + RELOC/fonts/tfm/public/txfonts/txbss.tfm + RELOC/fonts/tfm/public/txfonts/txbsssc.tfm + RELOC/fonts/tfm/public/txfonts/txbsssl.tfm + RELOC/fonts/tfm/public/txfonts/txbsy.tfm + RELOC/fonts/tfm/public/txfonts/txbsya.tfm + RELOC/fonts/tfm/public/txfonts/txbsyb.tfm + RELOC/fonts/tfm/public/txfonts/txbsyc.tfm + RELOC/fonts/tfm/public/txfonts/txbtt.tfm + RELOC/fonts/tfm/public/txfonts/txbttsc.tfm + RELOC/fonts/tfm/public/txfonts/txbttsl.tfm + RELOC/fonts/tfm/public/txfonts/txex.tfm + RELOC/fonts/tfm/public/txfonts/txexa.tfm + RELOC/fonts/tfm/public/txfonts/txi.tfm + RELOC/fonts/tfm/public/txfonts/txmi.tfm + RELOC/fonts/tfm/public/txfonts/txmi1.tfm + RELOC/fonts/tfm/public/txfonts/txmia.tfm + RELOC/fonts/tfm/public/txfonts/txr.tfm + RELOC/fonts/tfm/public/txfonts/txsc.tfm + RELOC/fonts/tfm/public/txfonts/txsl.tfm + RELOC/fonts/tfm/public/txfonts/txss.tfm + RELOC/fonts/tfm/public/txfonts/txsssc.tfm + RELOC/fonts/tfm/public/txfonts/txsssl.tfm + RELOC/fonts/tfm/public/txfonts/txsy.tfm + RELOC/fonts/tfm/public/txfonts/txsya.tfm + RELOC/fonts/tfm/public/txfonts/txsyb.tfm + RELOC/fonts/tfm/public/txfonts/txsyc.tfm + RELOC/fonts/tfm/public/txfonts/txtt.tfm + RELOC/fonts/tfm/public/txfonts/txttsc.tfm + RELOC/fonts/tfm/public/txfonts/txttsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxb.tfm + RELOC/fonts/tfm/public/txfonts/tyxbi.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxbss.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsssc.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsssl.tfm + RELOC/fonts/tfm/public/txfonts/tyxbtt.tfm + RELOC/fonts/tfm/public/txfonts/tyxbttsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxbttsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxi.tfm + RELOC/fonts/tfm/public/txfonts/tyxr.tfm + RELOC/fonts/tfm/public/txfonts/tyxsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxss.tfm + RELOC/fonts/tfm/public/txfonts/tyxsssc.tfm + RELOC/fonts/tfm/public/txfonts/tyxsssl.tfm + RELOC/fonts/tfm/public/txfonts/tyxtt.tfm + RELOC/fonts/tfm/public/txfonts/tyxttsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxttsl.tfm + RELOC/fonts/type1/public/txfonts/rtcxb.pfb + RELOC/fonts/type1/public/txfonts/rtcxbi.pfb + RELOC/fonts/type1/public/txfonts/rtcxbss.pfb + RELOC/fonts/type1/public/txfonts/rtcxi.pfb + RELOC/fonts/type1/public/txfonts/rtcxr.pfb + RELOC/fonts/type1/public/txfonts/rtcxss.pfb + RELOC/fonts/type1/public/txfonts/rtxb.pfb + RELOC/fonts/type1/public/txfonts/rtxbi.pfb + RELOC/fonts/type1/public/txfonts/rtxbmi.pfb + RELOC/fonts/type1/public/txfonts/rtxbsc.pfb + RELOC/fonts/type1/public/txfonts/rtxbss.pfb + RELOC/fonts/type1/public/txfonts/rtxbsssc.pfb + RELOC/fonts/type1/public/txfonts/rtxi.pfb + RELOC/fonts/type1/public/txfonts/rtxmi.pfb + RELOC/fonts/type1/public/txfonts/rtxr.pfb + RELOC/fonts/type1/public/txfonts/rtxsc.pfb + RELOC/fonts/type1/public/txfonts/rtxss.pfb + RELOC/fonts/type1/public/txfonts/rtxsssc.pfb + RELOC/fonts/type1/public/txfonts/t1xbtt.pfb + RELOC/fonts/type1/public/txfonts/t1xbttsc.pfb + RELOC/fonts/type1/public/txfonts/t1xtt.pfb + RELOC/fonts/type1/public/txfonts/t1xttsc.pfb + RELOC/fonts/type1/public/txfonts/tcxbtt.pfb + RELOC/fonts/type1/public/txfonts/tcxtt.pfb + RELOC/fonts/type1/public/txfonts/txbex.pfb + RELOC/fonts/type1/public/txfonts/txbexa.pfb + RELOC/fonts/type1/public/txfonts/txbmia.pfb + RELOC/fonts/type1/public/txfonts/txbsy.pfb + RELOC/fonts/type1/public/txfonts/txbsya.pfb + RELOC/fonts/type1/public/txfonts/txbsyb.pfb + RELOC/fonts/type1/public/txfonts/txbsyc.pfb + RELOC/fonts/type1/public/txfonts/txbtt.pfb + RELOC/fonts/type1/public/txfonts/txbttsc.pfb + RELOC/fonts/type1/public/txfonts/txex.pfb + RELOC/fonts/type1/public/txfonts/txexa.pfb + RELOC/fonts/type1/public/txfonts/txmia.pfb + RELOC/fonts/type1/public/txfonts/txsy.pfb + RELOC/fonts/type1/public/txfonts/txsya.pfb + RELOC/fonts/type1/public/txfonts/txsyb.pfb + RELOC/fonts/type1/public/txfonts/txsyc.pfb + RELOC/fonts/type1/public/txfonts/txtt.pfb + RELOC/fonts/type1/public/txfonts/txttsc.pfb + RELOC/fonts/vf/public/txfonts/t1xb.vf + RELOC/fonts/vf/public/txfonts/t1xbi.vf + RELOC/fonts/vf/public/txfonts/t1xbsc.vf + RELOC/fonts/vf/public/txfonts/t1xbsl.vf + RELOC/fonts/vf/public/txfonts/t1xbss.vf + RELOC/fonts/vf/public/txfonts/t1xbsssc.vf + RELOC/fonts/vf/public/txfonts/t1xbsssl.vf + RELOC/fonts/vf/public/txfonts/t1xi.vf + RELOC/fonts/vf/public/txfonts/t1xr.vf + RELOC/fonts/vf/public/txfonts/t1xsc.vf + RELOC/fonts/vf/public/txfonts/t1xsl.vf + RELOC/fonts/vf/public/txfonts/t1xss.vf + RELOC/fonts/vf/public/txfonts/t1xsssc.vf + RELOC/fonts/vf/public/txfonts/t1xsssl.vf + RELOC/fonts/vf/public/txfonts/tcxb.vf + RELOC/fonts/vf/public/txfonts/tcxbi.vf + RELOC/fonts/vf/public/txfonts/tcxbsl.vf + RELOC/fonts/vf/public/txfonts/tcxbss.vf + RELOC/fonts/vf/public/txfonts/tcxbsssl.vf + RELOC/fonts/vf/public/txfonts/tcxi.vf + RELOC/fonts/vf/public/txfonts/tcxr.vf + RELOC/fonts/vf/public/txfonts/tcxsl.vf + RELOC/fonts/vf/public/txfonts/tcxss.vf + RELOC/fonts/vf/public/txfonts/tcxsssl.vf + RELOC/fonts/vf/public/txfonts/txb.vf + RELOC/fonts/vf/public/txfonts/txbi.vf + RELOC/fonts/vf/public/txfonts/txbmi.vf + RELOC/fonts/vf/public/txfonts/txbmi1.vf + RELOC/fonts/vf/public/txfonts/txbsc.vf + RELOC/fonts/vf/public/txfonts/txbsl.vf + RELOC/fonts/vf/public/txfonts/txbss.vf + RELOC/fonts/vf/public/txfonts/txbsssc.vf + RELOC/fonts/vf/public/txfonts/txbsssl.vf + RELOC/fonts/vf/public/txfonts/txi.vf + RELOC/fonts/vf/public/txfonts/txmi.vf + RELOC/fonts/vf/public/txfonts/txmi1.vf + RELOC/fonts/vf/public/txfonts/txr.vf + RELOC/fonts/vf/public/txfonts/txsc.vf + RELOC/fonts/vf/public/txfonts/txsl.vf + RELOC/fonts/vf/public/txfonts/txss.vf + RELOC/fonts/vf/public/txfonts/txsssc.vf + RELOC/fonts/vf/public/txfonts/txsssl.vf + RELOC/fonts/vf/public/txfonts/tyxb.vf + RELOC/fonts/vf/public/txfonts/tyxbi.vf + RELOC/fonts/vf/public/txfonts/tyxbsc.vf + RELOC/fonts/vf/public/txfonts/tyxbsl.vf + RELOC/fonts/vf/public/txfonts/tyxbss.vf + RELOC/fonts/vf/public/txfonts/tyxbsssc.vf + RELOC/fonts/vf/public/txfonts/tyxbsssl.vf + RELOC/fonts/vf/public/txfonts/tyxbtt.vf + RELOC/fonts/vf/public/txfonts/tyxbttsc.vf + RELOC/fonts/vf/public/txfonts/tyxbttsl.vf + RELOC/fonts/vf/public/txfonts/tyxi.vf + RELOC/fonts/vf/public/txfonts/tyxr.vf + RELOC/fonts/vf/public/txfonts/tyxsc.vf + RELOC/fonts/vf/public/txfonts/tyxsl.vf + RELOC/fonts/vf/public/txfonts/tyxss.vf + RELOC/fonts/vf/public/txfonts/tyxsssc.vf + RELOC/fonts/vf/public/txfonts/tyxsssl.vf + RELOC/fonts/vf/public/txfonts/tyxtt.vf + RELOC/fonts/vf/public/txfonts/tyxttsc.vf + RELOC/fonts/vf/public/txfonts/tyxttsl.vf + RELOC/tex/latex/txfonts/ly1txr.fd + RELOC/tex/latex/txfonts/ly1txss.fd + RELOC/tex/latex/txfonts/ly1txtt.fd + RELOC/tex/latex/txfonts/omltxmi.fd + RELOC/tex/latex/txfonts/omltxr.fd + RELOC/tex/latex/txfonts/omstxr.fd + RELOC/tex/latex/txfonts/omstxsy.fd + RELOC/tex/latex/txfonts/omxtxex.fd + RELOC/tex/latex/txfonts/ot1txr.fd + RELOC/tex/latex/txfonts/ot1txss.fd + RELOC/tex/latex/txfonts/ot1txtt.fd + RELOC/tex/latex/txfonts/t1txr.fd + RELOC/tex/latex/txfonts/t1txss.fd + RELOC/tex/latex/txfonts/t1txtt.fd + RELOC/tex/latex/txfonts/ts1txr.fd + RELOC/tex/latex/txfonts/ts1txss.fd + RELOC/tex/latex/txfonts/ts1txtt.fd + RELOC/tex/latex/txfonts/txfonts.sty + RELOC/tex/latex/txfonts/utxexa.fd + RELOC/tex/latex/txfonts/utxmia.fd + RELOC/tex/latex/txfonts/utxr.fd + RELOC/tex/latex/txfonts/utxss.fd + RELOC/tex/latex/txfonts/utxsya.fd + RELOC/tex/latex/txfonts/utxsyb.fd + RELOC/tex/latex/txfonts/utxsyc.fd + RELOC/tex/latex/txfonts/utxtt.fd +catalogue-also newtx +catalogue-ctan /fonts/txfonts +catalogue-license gpl +catalogue-topics font font-maths font-type1 + +name txfontsb +category Package +revision 54512 +shortdesc Extensions to txfonts, using GNU Freefont +relocated 1 +longdesc A set of fonts that extend the txfonts bundle with small caps +longdesc and old style numbers, together with Greek support. The +longdesc extensions are made with modifications of the GNU Freefont. +execute addMap gptimes.map +containersize 3476328 +containerchecksum 7b73b199b6d1f109b14154ff659089b2f3c36feaad10c26fdca80f5c4ab464f8a52fdd52a6191a89538661a3a9cac8fc45748cddd09b6e32e79f23db9e8586e9 +doccontainersize 59400 +doccontainerchecksum 982d29750320bc1709ff8329effb3f7bedc6ded888a537aeb7f080c6fc37414956b1b1e149225cea3f3a60982575fbc943433cd4f9cc5e5d61c596973c07b3ed +docfiles size=22 + RELOC/doc/fonts/txfontsb/README details="Readme" + RELOC/doc/fonts/txfontsb/txfontsb.pdf details="Package documentation" + RELOC/doc/fonts/txfontsb/txfontsb.tex +srccontainersize 1940068 +srccontainerchecksum f9e4d922abced380458f9fbb25c25a55d55e3a4b938c612bde03c0dd60d55573735816acd745c2785356e5956078615ada3c1396148f8d84a6ba9a805f4ae0fa +srcfiles size=6871 + RELOC/source/fonts/txfontsb/FreeSerifb-SmallCaps.sfd + RELOC/source/fonts/txfontsb/FreeSerifb-SmallCapsAlt.sfd + RELOC/source/fonts/txfontsb/FreeSerifb.sfd + RELOC/source/fonts/txfontsb/FreeSerifbBold.sfd + RELOC/source/fonts/txfontsb/FreeSerifbBoldItalic.sfd + RELOC/source/fonts/txfontsb/FreeSerifbItalic.sfd +runfiles size=2083 + RELOC/fonts/afm/public/txfontsb/FreeSerifb-SmallCaps.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifb-SmallCapsAlt.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifb.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifbBold.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifbBoldItalic.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifbItalic.afm + RELOC/fonts/enc/dvips/txfontsb/gptimes.enc + RELOC/fonts/enc/dvips/txfontsb/gptimesy.enc + RELOC/fonts/map/dvips/txfontsb/gptimes.map + RELOC/fonts/opentype/public/txfontsb/FreeSerifb-SmallCaps.otf + RELOC/fonts/opentype/public/txfontsb/FreeSerifb-SmallCapsAlt.otf + RELOC/fonts/opentype/public/txfontsb/FreeSerifb.otf + RELOC/fonts/opentype/public/txfontsb/FreeSerifbBold.otf + RELOC/fonts/opentype/public/txfontsb/FreeSerifbBoldItalic.otf + RELOC/fonts/opentype/public/txfontsb/FreeSerifbItalic.otf + RELOC/fonts/tfm/public/txfontsb/gtimesb6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesb6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesbi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesbi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesg6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesrg6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessc6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessc6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessco6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessco6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyb6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyb6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesybi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesybi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyg6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyrg6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysc6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysc6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysco6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysco6r.tfm + RELOC/fonts/tfm/public/txfontsb/timessc6a.tfm + RELOC/fonts/tfm/public/txfontsb/timessc6r.tfm + RELOC/fonts/tfm/public/txfontsb/timessco6a.tfm + RELOC/fonts/tfm/public/txfontsb/timessco6r.tfm + RELOC/fonts/type1/public/txfontsb/FreeSerifb-SmallCaps.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifb-SmallCapsAlt.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifb.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifbBold.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifbBoldItalic.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifbItalic.pfb + RELOC/fonts/vf/public/txfontsb/gtimesb6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesbi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesrg6a.vf + RELOC/fonts/vf/public/txfontsb/gtimessc6a.vf + RELOC/fonts/vf/public/txfontsb/gtimessco6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesyb6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesybi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesyi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesyrg6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesysc6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesysco6a.vf + RELOC/fonts/vf/public/txfontsb/timessc6a.vf + RELOC/fonts/vf/public/txfontsb/timessco6a.vf + RELOC/tex/latex/txfontsb/lgrtxr.fd + RELOC/tex/latex/txfontsb/lgrtxrc.fd + RELOC/tex/latex/txfontsb/lgrtxry.fd + RELOC/tex/latex/txfontsb/lgrtxryc.fd + RELOC/tex/latex/txfontsb/ot1txrc.fd + RELOC/tex/latex/txfontsb/ot1txryc.fd + RELOC/tex/latex/txfontsb/txfontsb.sty +catalogue-also newtx +catalogue-ctan /fonts/txfontsb +catalogue-license gpl lppl1 +catalogue-topics font font-maths font-greek font-type1 +catalogue-version 1.1.1 + +name txgreeks +category Package +revision 21839 +shortdesc Shape selection for TX fonts Greek letters +relocated 1 +longdesc The package allows LaTeX users who use the TX fonts to select +longdesc the shapes (italic or upright) for the Greek lowercase and +longdesc uppercase letters. Once the shapes for lowercase and uppercase +longdesc have been selected via a package option, the \other prefix +longdesc (e.g., \otheralpha) allows using the alternate glyph (as in the +longdesc fourier package). The txgreeks package does not constrain the +longdesc text font that may be used in the document. +containersize 2116 +containerchecksum 05b24a0c9705589d2e04933a5e29b8a49de155ad0e9a4caa0c36785f7feafe475275b76c58aa50d9318df26342b800382d3c9e8164bd95fdf400f730191282f0 +doccontainersize 56040 +doccontainerchecksum b671e433740ddc414e0a881d1f91a1311ab0957038ebeba23fe99d623a62e0499825548dd591d0adc67d32a5d7331cdcdc76be6ba87f77265bcf48758626919f +docfiles size=18 + RELOC/doc/latex/txgreeks/README details="Readme" + RELOC/doc/latex/txgreeks/txgreeks.pdf details="Package documentation" +srccontainersize 4652 +srccontainerchecksum 09ffe315c18dfe3ce065a6a48dd17f1340c2381df2585a973b666d2a93f1560be11fec50c44e178a154bc39416437772ef1059c539e5934ca6b02866a087eecb +srcfiles size=4 + RELOC/source/latex/txgreeks/txgreeks.dtx + RELOC/source/latex/txgreeks/txgreeks.ins +runfiles size=2 + RELOC/tex/latex/txgreeks/txgreeks.sty +catalogue-ctan /macros/latex/contrib/txgreeks +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 1.0 + +name txuprcal +category Package +revision 43327 +shortdesc Upright calligraphic font based on TX calligraphic +relocated 1 +longdesc This small package provides a means of loading as \mathcal an +longdesc uprighted version of the calligraphic fonts from the TX font +longdesc package. A scaled option to provided to allow arbitrary +longdesc scaling. +execute addMap TXUprCal.map +containersize 51556 +containerchecksum f6840ff0846b52130b65c81513d4bf358dfea413ac6d7f324eab592b96d5277d7036e5d991dbfc1ecf6376fd35baaf0351818eed69a21b6ba88e25f878a41ef1 +doccontainersize 86800 +doccontainerchecksum f5bd216c689b0368bbbfe29f7fbd57bb7c02344d8696af488fdd7f1078fc5ad9ac7ad5565f1408b7b7d19224093d1418c1e3d8920b8cb0cece770811576c894a +docfiles size=23 + RELOC/doc/fonts/txuprcal/README details="Readme" + RELOC/doc/fonts/txuprcal/txuprcal-doc.pdf details="Package documentation" + RELOC/doc/fonts/txuprcal/txuprcal-doc.tex +runfiles size=19 + RELOC/fonts/map/dvips/txuprcal/TXUprCal.map + RELOC/fonts/tfm/public/txuprcal/txUprCal-Bold.tfm + RELOC/fonts/tfm/public/txuprcal/txUprCal-Regular.tfm + RELOC/fonts/type1/public/txuprcal/txuprcal-bold.pfb + RELOC/fonts/type1/public/txuprcal/txuprcal-reg.pfb + RELOC/tex/latex/txuprcal/txuprcal.sty + RELOC/tex/latex/txuprcal/utxuprcal.fd +catalogue-also txfonts +catalogue-ctan /fonts/txuprcal +catalogue-license gpl3 +catalogue-topics font-maths font-type1 +catalogue-version 1.00 + +name type1cm +category Package +revision 21820 +shortdesc Arbitrary size font selection in LaTeX +relocated 1 +longdesc LaTeX, by default, restricts the sizes at which you can use its +longdesc default computer modern fonts, to a fixed set of discrete sizes +longdesc (effectively, a set specified by Knuth). The type1cm package +longdesc removes this restriction; this is particularly useful when +longdesc using scalable versions of the cm fonts (Bakoma, or the +longdesc versions from BSR/Y&Y, or True Type versions from Kinch, PCTeX, +longdesc etc.). In fact, since modern distributions will automatically +longdesc generate any bitmap font you might need, type1cm has wider +longdesc application than just those using scaleable versions of the +longdesc fonts. Note that the LaTeX distribution now contains a package +longdesc fix-cm, which performs the task of type1cm, as well as doing +longdesc the same job for T1- and TS1-encoded ec fonts. +containersize 2064 +containerchecksum 85a72c942e61dc0c0fd3fd7646d264ee692ecaf4e2badab4f68dbcc380a1c88a78d4ce066e23a08d1cfb29ed3af0115b08ea05a0e078283513eb14f9c6031863 +doccontainersize 324940 +doccontainerchecksum 6cd4061eced23057d860143dd7121b1e0ca1a17de1c2f08334c678c9623c0066ee77c1ab5036953ce390be7356d3fc0d155a5de1f0aa977e1e95296fe71d5199 +docfiles size=83 + RELOC/doc/latex/type1cm/type1cm-doc.pdf details="Package documentation" + RELOC/doc/latex/type1cm/type1cm-doc.tex + RELOC/doc/latex/type1cm/type1cm.txt +srccontainersize 2460 +srccontainerchecksum 6a66a866c6edbe8c914bd3b0a7568c0e23914253fcb70fd849326e42b2c32860c97756fb94f5879dead5bc3f057cba64f639038b5a125f607c3f21abe4807bf7 +srcfiles size=4 + RELOC/source/latex/type1cm/type1cm.fdd + RELOC/source/latex/type1cm/type1cm.ins +runfiles size=2 + RELOC/tex/latex/type1cm/type1cm.sty +catalogue-also type1ec fix-cm +catalogue-ctan /macros/latex/contrib/type1cm +catalogue-license lppl +catalogue-topics font-supp + +name typed-checklist +category Package +revision 49731 +shortdesc Typesetting tasks, goals, milestones, artifacts, and more in LaTeX +relocated 1 +longdesc The main goal of this package is to provide means for +longdesc typesetting checklists in a way that stipulates users to +longdesc explicitly distinguish checklists for goals, for tasks, for +longdesc artifacts, and for milestones -- i.e., the type of checklist +longdesc entries. The intention behind this is that a user of the +longdesc package is coerced to think about what kind of entries he/she +longdesc adds to the checklist. This shall yield a clearer result and, +longdesc in the long run, help with training to distinguish entries of +longdesc different types. +containersize 5452 +containerchecksum 3ebcc55c6e6e5abe50b1040be5d53f662c632a8b53f2d1914dee66ff0ec812d61057113f8af5062171a3bc9f7a67de0b3b5768eb701534d386d0db6fdfea0ed2 +doccontainersize 346992 +doccontainerchecksum 87943514c64b12bc85711086f17bf06794e110f36b67232659f6746f39d4e671a7b618d45c21c7d034e5aef3f3374c959445e235329fd16d370410fc5f9621ec +docfiles size=88 + RELOC/doc/latex/typed-checklist/README.md details="Readme" + RELOC/doc/latex/typed-checklist/typed-checklist.pdf details="Package documentation" +srccontainersize 24360 +srccontainerchecksum bb0775fdb62b386d8b712a955849462c2c3c812469921a00a00d2fee20590a15f300f622bea0d86d6db7b2788c45bca4eeec443cb3c08b97c35e5f51e497fe81 +srcfiles size=26 + RELOC/source/latex/typed-checklist/typed-checklist.dtx + RELOC/source/latex/typed-checklist/typed-checklist.ins +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-license lppl1.2 +catalogue-topics list +catalogue-version 2.0 + +name typeface +category Package +revision 27046 +shortdesc Select a balanced set of fonts +relocated 1 +longdesc The package provides the means of establishing a consistent set +longdesc of fonts for use in a LaTeX document. It allows mixing and +longdesc matching the Type 1 font sets available on the archive (and it +longdesc may be extended, via its configuration file, to support other +longdesc fonts). Font-set definition takes the form of a set of options +longdesc that are read when the package is loaded: for each typographic +longdesc category (main body font, sans-serif font, monospace font, +longdesc mathematics fonts, text figures, and so on), a font or a +longdesc transformation is given in those options. The approach enables +longdesc the user to remember their own configurations (as a single +longdesc command) and to borrow configurations that other users have +longdesc developed. The present release is designated "for review". +containersize 44444 +containerchecksum 68a71a590aaf3c6defc28a52b47f38bd1d24ec034df904d7baf4e22f1d390ebbabe744855bda70e72986450b402f03295f772a9576a2bffcab5638f3f77718db +doccontainersize 17669688 +doccontainerchecksum 548caa57dcde46484ae947f46abbd8cfae54c0325b42cc32c23c092e23f7cfe6589b6ddcee1eef09ece3c5ce0328fa561c52234899d9544fdb86440c91c63ce9 +docfiles size=4487 + RELOC/doc/latex/typeface/README details="Readme" + RELOC/doc/latex/typeface/typeface-all-rm.pdf details="Properties of fonts that are available" + RELOC/doc/latex/typeface/typeface-test.tex + RELOC/doc/latex/typeface/typeface.pdf details="Package documentation" + RELOC/doc/latex/typeface/typeface.tex +srccontainersize 1932 +srccontainerchecksum 3c0a366505b9631e4240bc6a54619c8f526b18ddada30f2a88f8adb29916d0be755bc0643fcb40dc4d1a0bc371596774d029ab4c42d473ec09c36fb48e99cd12 +srcfiles size=6 + RELOC/source/latex/typeface/typeface-all-rm.bat +runfiles size=57 + RELOC/tex/latex/typeface/typeface.cfg + RELOC/tex/latex/typeface/typeface.sty +catalogue-ctan /macros/latex/contrib/typeface +catalogue-license lppl1.3 +catalogue-topics font-sel +catalogue-version 0.1 + +name typehtml +category Package +revision 17134 +shortdesc Typeset HTML directly from LaTeX +relocated 1 +longdesc Can handle almost all of HTML2, and most of the math fragment +longdesc of the draft HTML3. +containersize 6928 +containerchecksum 9a158c2fd4c16a5dda1f8828ba32e082f5839fb841a8479563828b0085db4fbe28cb91674c6f22ab4965f8bf6f6cdc0f5b3113743113ca0188ff8bb851845ae3 +doccontainersize 155096 +doccontainerchecksum 0001ed86af90c4fba458d299a2651a200ece010ec76bd8e934afcbacb7d7684fcd6c9514d280bac886a41eb38b4630fa52b1ea18da70ef9c29bc04618e392673 +docfiles size=47 + RELOC/doc/latex/typehtml/README details="Readme" + RELOC/doc/latex/typehtml/typehtml.pdf details="Package documentation" +srccontainersize 16928 +srccontainerchecksum 729bb6acd2e6ec28bb18972cc58b7ef8efae136bea2d96a38cedb4b0d40b02e00e2b21143706325bcf9add879e8adcc6b0194b6cbef3803c5566e7f6f0e63ca7 +srcfiles size=17 + RELOC/source/latex/typehtml/typehtml.dtx + RELOC/source/latex/typehtml/typehtml.ins +runfiles size=7 + RELOC/tex/latex/typehtml/typehtml.sty +catalogue-ctan /macros/latex/contrib/typehtml +catalogue-license lppl +catalogue-topics foreign-import + +name typeoutfileinfo +category Package +revision 29349 +shortdesc Display class/package/file information +longdesc The package provides a minimalist shell script, for Unix +longdesc systems, that displays the information content in a +longdesc \ProvidesFile, \ProvidesPackage or \ProvidesClass command in a +longdesc LaTeX source file. The package requires that the readprov +longdesc package is available. +depend typeoutfileinfo.ARCH +containersize 1628 +containerchecksum b30d2618c8cdbf69fcb8a5444922185a52b934448b5d28ba143948cf80ed17cb402d73d1162194df3d2992a52ca9e6faca79000644eef968c4eba892c415b6bd +doccontainersize 756 +doccontainerchecksum 143c4ad9cb3890b6350069d5d045f74c0bb0cfbe50e7d051c50c82011b56e651d483c1422d7d553a8d1d1784ae726a1ca1aead023fc3ccb1da4f0d59d47f7920 +docfiles size=1 + texmf-dist/doc/support/typeoutfileinfo/README details="Readme" +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-license lppl1.3 +catalogue-topics file-mgmt +catalogue-version 0.31 + +name typeoutfileinfo.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of typeoutfileinfo +containersize 348 +containerchecksum a4e75c6274b486cf8b6dbf8ba57549c275733e164d796ad212938f303de2c3757d8f829f55bf833b172cfd1630c7aca00e032a3b37798440c8e218e51e04e94d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/typeoutfileinfo + +name typeoutfileinfo.amd64-freebsd +category Package +revision 25648 +shortdesc amd64-freebsd files of typeoutfileinfo +containersize 348 +containerchecksum df7ddcfc696333dd0f247144494d726048163ddebe99cce372f9b758fabbb2217a3301438dd457f0e939b83e0d1d68ea42e57c3b2bd14b9405154497d689b37a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/typeoutfileinfo + +name typeoutfileinfo.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of typeoutfileinfo +containersize 348 +containerchecksum 9e3721e82f152f1843e8603af09fcfce1685ad83bf488df881a7873bdfa989c52ec85a595368e87b0b4bbabec1fe70c233b853a7f450f9166c67a5d6c973af62 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/typeoutfileinfo + +name typeoutfileinfo.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of typeoutfileinfo +containersize 348 +containerchecksum 3abe28aa66cb7c68206b3ffce7f264ee00fe63f021bac2bd92e24b58d8e5365afcb4ca59a2fb97f3da2b0689d468849c0c1397d035f0d49dc3e289db224bdf43 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/typeoutfileinfo + +name typeoutfileinfo.i386-cygwin +category Package +revision 25648 +shortdesc i386-cygwin files of typeoutfileinfo +containersize 344 +containerchecksum 29318e38aa936803dc047ab3e9b98ffa901ba5a0b66848987960f01ed8e047e4314b15308c5bc6cd73ae58ab312d236d76c91195462d790dcf91f263356ea5c6 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/typeoutfileinfo + +name typeoutfileinfo.i386-freebsd +category Package +revision 25648 +shortdesc i386-freebsd files of typeoutfileinfo +containersize 348 +containerchecksum d14e3248f198456ed9bd260f90de220f3e3c26f5946db06158ce9d05d58f6dad3341a602bd37793cc8f0ed25f7c0f846691a53b8543568be630480b67f33a96d +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/typeoutfileinfo + +name typeoutfileinfo.i386-linux +category Package +revision 25648 +shortdesc i386-linux files of typeoutfileinfo +containersize 348 +containerchecksum a048a1843ebe71a3be2ec35f543e9936b4ed844a265f56af558d51bbdfde7887cd05a20696c5163232a35d1782d5c20f4692950193e6ae5578d76462c07897a8 +binfiles arch=i386-linux size=1 + bin/i386-linux/typeoutfileinfo + +name typeoutfileinfo.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of typeoutfileinfo +containersize 348 +containerchecksum 47792fe62a91cc7599501c472a4c78269f2fb0245e92e6b6537a65ef40f9ac98f6961d18ad9f2dfc0d1434552cf3221b577181fdee08c01629a289d67d8a771f +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/typeoutfileinfo + +name typeoutfileinfo.i386-solaris +category Package +revision 25648 +shortdesc i386-solaris files of typeoutfileinfo +containersize 348 +containerchecksum 3cefa1ad720942ba13de1e4643467d8b74396cd8f996b66d50189ce345a1ffa58ee6322c1fd8df6f4e7abb8cb551c60046ef8f39b85483e3ffeb10226093bbe4 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/typeoutfileinfo + +name typeoutfileinfo.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of typeoutfileinfo +containersize 344 +containerchecksum 526dad5d1a8899e503dbbd3463a18b117f9def063bd837b1607e17700f0385fa3da86d319a72e0a50caf1f312868641840d4d89ada6433ca18499fe16701b7a0 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/typeoutfileinfo + +name typeoutfileinfo.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of typeoutfileinfo +containersize 348 +containerchecksum 88dc56e3b1950f44b72fe606e29b01b027c6bb22afdad2f2de332b53e26e20259716d706fda08b8be20dfb283df65e4c0f8f74d8a043022a089f55527f0a3541 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/typeoutfileinfo + +name typeoutfileinfo.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of typeoutfileinfo +containersize 356 +containerchecksum 4a8a6dfe0424fc15aaa87da4fe6f9c2c882dc0a402823fdb2c61d6a9c3f1813ee0abd993a450b1eeef7e1b5b4d77e27d153e9035576855e165f0c01fcdbec256 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/typeoutfileinfo + +name typeoutfileinfo.x86_64-linux +category Package +revision 25648 +shortdesc x86_64-linux files of typeoutfileinfo +containersize 344 +containerchecksum bb5b0d91637fbef237a7969c5af8cd8927c7e7e0cd46b67252204898a713afd5344a02b67d5d97aeba718df6cbf58ae2d4aaf92babca603cd82397c3834ee917 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/typeoutfileinfo + +name typeoutfileinfo.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of typeoutfileinfo +containersize 348 +containerchecksum 0c353378420560033c7a5c106a3171ae6167dcb435993d73d95e503afadfa7ce4ad857106046543cebe429fa412789c4b0129b03013d4ae843a0da8c1cdc1913 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/typeoutfileinfo + +name typeoutfileinfo.x86_64-solaris +category Package +revision 25648 +shortdesc x86_64-solaris files of typeoutfileinfo +containersize 344 +containerchecksum b0733eebc9bc320dc604403f5cce2d47d0a2ab0ce36c9d5d17a402efa0a2e4a60606974ce67bedf6df2e433b13ec6f7489b9da4b9720df277e60253118db524e +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/typeoutfileinfo + +name typewriter +category Package +revision 46641 +shortdesc Typeset with a randomly variable monospace font +relocated 1 +longdesc The typewriter package uses the OpenType Computer Modern +longdesc Unicode Typewriter font, together with a LuaTeX virtual font +longdesc setup that introduces random variability in grey level and +longdesc angle of each character. It was originally an answer to a +longdesc question on stackexchange. +containersize 25272 +containerchecksum f8b9edca6a860f0acf0d676fff381276594f7c13fb13da2e54caf5513a8a65fde378b4c16dc621d89d25d7492318b006d7c5d863c1f96a0a246064c0dad1f2d8 +doccontainersize 101056 +doccontainerchecksum 12376247fd8500e7c147609bf47acab379e36126976ea9f2dc0a352b8b0d779b1cd43bd1394f3961b1a7fa894a8b6448b0369f612d8bbf8d1bec3175e850f89c +docfiles size=27 + RELOC/doc/lualatex/typewriter/README.md details="Readme" + RELOC/doc/lualatex/typewriter/typewriter-guide.pdf details="Package documentation" + RELOC/doc/lualatex/typewriter/typewriter-guide.tex +runfiles size=63 + RELOC/tex/lualatex/typewriter/typewriter.sty +catalogue-also ransom manuscript +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/ +catalogue-contact-support https://github.com/davidcarlisle/dpctex/issues +catalogue-ctan /macros/luatex/latex/typewriter +catalogue-license lppl +catalogue-topics typesetting +catalogue-version 1.1 + +name typicons +category Package +revision 37623 +shortdesc Font containing a set of web-related icons +relocated 1 +longdesc This package grants access to 336 web-related icons provided by +longdesc the included "Typicons" free font, designed by Stephen +longdesc Hutchings and released under the SIL Open Font License. See +longdesc http://www.typicons.com for more details about the font itself. +longdesc This package requires the fontspec package and either the +longdesc Xe(La)TeX or Lua(La)TeX engine to load the included ttf font. +longdesc Once the package is loaded, icons can be accessed through the +longdesc general \ticon command, which takes as argument the name of the +longdesc desired icon, or through direct commands specific to each icon. +longdesc The full list of icon designs, names and direct commands is +longdesc showcased in the manual. +containersize 59552 +containerchecksum 38b0afff6e88635a2a27502f1abc279fd70e49f36d56bb44114895614cf80184ebf8b627bcd576d128b3557de08b3791c5c2e48f2adac9766f9a809ff0db3cba +doccontainersize 134792 +doccontainerchecksum 36b9517833fa6c430671fdaf0ad0775813c22ea3b3f56fad96410dd90e052b76d81f0ecd411ec19b567cd664b7ca44b9268d05ce59fb9bea0429c8f91c3a4a55 +docfiles size=39 + RELOC/doc/fonts/typicons/README details="Readme" + RELOC/doc/fonts/typicons/typicons.pdf details="Package documentation" + RELOC/doc/fonts/typicons/typicons.tex +runfiles size=39 + RELOC/fonts/truetype/public/typicons/typicons.ttf + RELOC/tex/latex/typicons/typicons.sty +catalogue-ctan /fonts/typicons +catalogue-license lppl1.3 +catalogue-topics font font-supp-symbol font-symbol font-ttf +catalogue-version 2.0.7 + +name typoaid +category Package +revision 44238 +shortdesc Macros for font diagnostics +relocated 1 +longdesc This package provides macros for measuring alphabet lengths +longdesc (i.e. the length occupied by the characters "abcd...xyz"), +longdesc em-widths and ex-heights, which may help in making typesetting +longdesc decisions. The package is compatible with pdfLaTeX, LuaLaTeX, +longdesc and XeLaTeX, and will accept font family switches defined via +longdesc the fontspec package. The plan is that future versions shall be +longdesc able to provide even more diagnostic tools, and some +longdesc LuaTeX-specific special commands, too. The package relies on +longdesc the following other LaTeX packages: expl3, array, booktabs, and +longdesc siunitx. +containersize 5772 +containerchecksum 56553f1ea620566efdcd5dbe3710627d4c1b0be0ee294d256cec8cd633a4b24048012c108eac867427ddda28614eadd73172fcd2c57ac702d5f5e5c4a40769bc +doccontainersize 333188 +doccontainerchecksum fd4809e02b1167e16bdb75cce5837f6202cfb44e7a0204900f6eb70173aac984eb35b14f00a9d43d4a61a4fb3a00298eafcbf71de15c7531f043e64cef418d8f +docfiles size=86 + RELOC/doc/latex/typoaid/README.md details="Readme" + RELOC/doc/latex/typoaid/typoaid.pdf details="Package documentation" + RELOC/doc/latex/typoaid/typoaid.tex +runfiles size=7 + RELOC/tex/latex/typoaid/typoaid.sty +catalogue-contact-repository https://github.com/ilFuria/typoaid +catalogue-ctan /macros/latex/contrib/typoaid +catalogue-license lppl1.3c +catalogue-topics font-devel typeset-tool +catalogue-version 0.4.7 + +name typogrid +category Package +revision 24994 +shortdesc Print a typographic grid +relocated 1 +longdesc Draws a grid on every page of the document; the grid divides +longdesc the page into columns, and may be used for fixing measurements +longdesc of layout. +containersize 1764 +containerchecksum 4ef0239ae626245b25e43819bc05da7d22d89d1e33b94402f8bf2b24e2518bfa7ce6626d0c9deffba5d461dd65db0160bd9134b78cd9ba930d0e6315cd761b9c +doccontainersize 296420 +doccontainerchecksum d228343668d98616c6cab8a1c4b0cea313b4a7d2f25699a0f54f64b660b10869d2669d98f7f5b992ddff5a3202139ef1e278ebd40b3dd76466c6154a59804c90 +docfiles size=77 + RELOC/doc/latex/typogrid/ChangeLog + RELOC/doc/latex/typogrid/Makefile + RELOC/doc/latex/typogrid/README details="Readme" + RELOC/doc/latex/typogrid/getversion.tex + RELOC/doc/latex/typogrid/testtypogrid.tex + RELOC/doc/latex/typogrid/typogrid.pdf details="Package documentation" +srccontainersize 3776 +srccontainerchecksum 23aa23ca0ca597a03ffbcd0ea79c1341d52aecd41d363e6daeea8b35c74d59a4edcb6a0f2dd7fc05e0a1018ce375f77ef7c831cf093292dd3785f486b2397388 +srcfiles size=4 + RELOC/source/latex/typogrid/typogrid.dtx + RELOC/source/latex/typogrid/typogrid.ins +runfiles size=2 + RELOC/tex/latex/typogrid/typogrid.sty +catalogue-ctan /macros/latex/contrib/typogrid +catalogue-license lppl +catalogue-topics layout-show +catalogue-version 0.21 + +name tzplot +category Package +revision 58558 +shortdesc Plot graphs with TikZ abbreviations +relocated 1 +longdesc This is a LaTeX package that provides TikZ-based macros to make +longdesc it easy to draw graphs. The macros provided in this package are +longdesc just abbreviations for TikZ codes, which can be complicated; +longdesc but using the package will hopefully make drawing easier, +longdesc especially when drawing repeatedly. The macros were chosen and +longdesc developed with an emphasis on drawing graphs in economics. The +longdesc package depends on TikZ, xparse, and expl3. +containersize 15072 +containerchecksum 21705dacc5923685b56c47098df79313b94d95040210eb812da48fe3aa4d405a0d2292f395fbe3d88b2da39ca325653ab2c551faff46f34f912e2830736f09f1 +doccontainersize 860984 +doccontainerchecksum b957597b7a38652e6f510e21611def7bfd05f1302bba1bfe1cdeca62f9d0ee6ae6b21abd31c414a43048963e8d4f19ffeb13d18d4ade97a6ab0aef3a2d524522 +docfiles size=271 + RELOC/doc/latex/tzplot/README.txt details="Readme" + RELOC/doc/latex/tzplot/tzplot-doc-A-v1.0.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-B-v1.0.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-C-v1.0.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-D-v1.0.1.tex + RELOC/doc/latex/tzplot/tzplot-doc.pdf details="Package documentation" + RELOC/doc/latex/tzplot/tzplot-doc.tex + RELOC/doc/latex/tzplot/tzplot-oblivoirpartstyle.tex + RELOC/doc/latex/tzplot/tzplot.ist +runfiles size=28 + RELOC/tex/latex/tzplot/tzplot.sty +catalogue-ctan /graphics/pgf/contrib/tzplot +catalogue-license lppl1.3c +catalogue-topics graphics graphics-plotfn pgf-tikz expl3 maths +catalogue-version 1.0.1 + +name uaclasses +category Package +revision 15878 +shortdesc University of Arizona thesis and dissertation format +relocated 1 +longdesc This package provides a LaTeX2e document class named +longdesc 'ua-thesis' for typesetting theses and dissertations in the +longdesc official format required by the University of Arizona. +longdesc Moreover, there is a fully compatible alternative document +longdesc class 'my-thesis' for private 'nice' copies of the +longdesc dissertation, and the respective title pages are available as +longdesc separate packages to work with any document class. +containersize 5948 +containerchecksum 4341612f18d6f5f4352ec0bf0018fe3115be73f479479586a81d7f994ec23adea7c38fd773022b4d81a126e43bcbfe5f97f4c36d61bad73509f2c1b97882c00f +doccontainersize 201492 +doccontainerchecksum 63beb08274ed7db9a2d77761277d65f89988812765a2484d7db54a8419cf67dad3fbf76b46bdafd8bd7cf17a1d540deb83c00c7b6df01f6f023bbb5f098c2ab1 +docfiles size=70 + RELOC/doc/latex/uaclasses/README details="Readme" + RELOC/doc/latex/uaclasses/my-example.pdf details="my-thesis example" + RELOC/doc/latex/uaclasses/ua-example.pdf details="ua-thesis example" + RELOC/doc/latex/uaclasses/ua-example.tex +srccontainersize 13868 +srccontainerchecksum ffc4902edf6b4007c3685a58d3e5a20a02a6ca3072466b7415cb4fa98de236e52c6a391c5e5cf30aabf37c7374cf00aaf2c7d6c845a3a61e2f9c0b0505e215bd +srcfiles size=13 + RELOC/source/latex/uaclasses/ua-classes.dtx + RELOC/source/latex/uaclasses/ua-classes.ins +runfiles size=7 + RELOC/tex/latex/uaclasses/my-thesis.cls + RELOC/tex/latex/uaclasses/my-title.sty + RELOC/tex/latex/uaclasses/ua-thesis.cls + RELOC/tex/latex/uaclasses/ua-title.sty +catalogue-ctan /macros/latex/contrib/uaclasses +catalogue-license pd +catalogue-topics dissertation + +name uafthesis +category Package +revision 57349 +shortdesc Document class for theses at University of Alaska Fairbanks +relocated 1 +longdesc This is an "unofficial" official class. +containersize 7548 +containerchecksum 52e0fde63c966392a235239725e2db7cea70a300837cf53003f961d32f54787d8c4e70ee76577889ea543f884ed5ec281b345bc9e83872e5a131e55429f7afe0 +doccontainersize 30020 +doccontainerchecksum 92c2a15a214f42a9dad8c0c50a67c68d037980b813e8ea4f6067341628f19f51de36a20b0e0d8fc49acbdf6ff026a729dc86e65dd4b8fa148a541d9535db0f85 +docfiles size=36 + RELOC/doc/latex/uafthesis/Makefile + RELOC/doc/latex/uafthesis/README.md details="Readme" + RELOC/doc/latex/uafthesis/bib_styles/agufull08.bst + RELOC/doc/latex/uafthesis/bib_styles/unsrtabbrv3.bst + RELOC/doc/latex/uafthesis/example/abstract.tex + RELOC/doc/latex/uafthesis/example/acknowledgements.tex + RELOC/doc/latex/uafthesis/example/apx1.tex + RELOC/doc/latex/uafthesis/example/build.sh + RELOC/doc/latex/uafthesis/example/ch1.tex + RELOC/doc/latex/uafthesis/example/ch2.tex + RELOC/doc/latex/uafthesis/example/ch3.tex + RELOC/doc/latex/uafthesis/example/custom-macros.tex + RELOC/doc/latex/uafthesis/example/example.loa.bk + RELOC/doc/latex/uafthesis/example/example.tex + RELOC/doc/latex/uafthesis/example/example.toc.bk + RELOC/doc/latex/uafthesis/example/fig/fivebatteries.png + RELOC/doc/latex/uafthesis/example/fig/onebattery.png + RELOC/doc/latex/uafthesis/example/quotepage.tex +runfiles size=8 + RELOC/tex/latex/uafthesis/uafthesis.cls +catalogue-ctan /macros/latex/contrib/uafthesis +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 12.12 + +name uantwerpendocs +category Package +revision 58669 +shortdesc Course texts, master theses, and exams in University of Antwerp style +relocated 1 +longdesc These class files implement the house style of the University +longdesc of Antwerp. This package originated from the Faculty of Applied +longdesc Engineering. Using these class files will make it easy for you +longdesc to make and keep your documents compliant to this version and +longdesc future versions of the house style of the University of +longdesc Antwerp. +containersize 6473664 +containerchecksum 45f3e26a15fa98f8a2bd890b8ef63124e135c57b688327f3baef90711e5036615cc832d83b72c91fe10d567a866aec79206932c8aa4c5de6a51af05ed76bf184 +doccontainersize 4390200 +doccontainerchecksum f93a96eb20dcb6c5be91047a3ceaee5a7fc232fa250c5fb0a15bdbe1f2f13431aec352d7bb0f89df91d4c536915d59f719fbfd78d1748115308d1d9726636bb6 +docfiles size=1158 + RELOC/doc/latex/uantwerpendocs/LICENSE + RELOC/doc/latex/uantwerpendocs/README details="Readme" + RELOC/doc/latex/uantwerpendocs/beamerthemeuantwerpenuserguide.pdf + RELOC/doc/latex/uantwerpendocs/beamerthemeuantwerpenuserguide.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenbamathesis-example.pdf details="Example bachelor/master thesis" + RELOC/doc/latex/uantwerpendocs/uantwerpenbamathesis-example.tex + RELOC/doc/latex/uantwerpendocs/uantwerpencoursetext-example.pdf details="Example course text" + RELOC/doc/latex/uantwerpendocs/uantwerpencoursetext-example.tex + RELOC/doc/latex/uantwerpendocs/uantwerpendocs.pdf details="Package documentation" + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example1.pdf details="Example exam (monolingual)" + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example1.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example2.pdf details="Example exam (bilingual)" + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example2.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenletter-example.pdf details="Example letter" + RELOC/doc/latex/uantwerpendocs/uantwerpenletter-example.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example1.pdf + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example1.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example2.pdf + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example2.tex +srccontainersize 39668 +srccontainerchecksum 93d0a3ea2d323958d15b714fc392cb2893d899e03d28d75c25272c355861244f5860f3aa8020663c20a51b7e8471c24815b9431646eaa552b2e44a125e3a07d1 +srcfiles size=50 + RELOC/source/latex/uantwerpendocs/uantwerpendocs.dtx + RELOC/source/latex/uantwerpendocs/uantwerpendocs.ins +runfiles size=3145 + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-01.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-02.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-03.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-04.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-05.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-06.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-07.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-08.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-09.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-10.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-11.jpg + RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-keyboard.jpg + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-be-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-be-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-be-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-be-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-fbd-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-fbd-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-fbd-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-fbd-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ggw-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ggw-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ggw-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ggw-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-iob-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-iob-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-iob-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-iob-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-lw-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-lw-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-lw-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-lw-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ow-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ow-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ow-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ow-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-re-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-re-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-re-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-re-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-sw-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-sw-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-sw-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-sw-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ti-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ti-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ti-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ti-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ua-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ua-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ua-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-ua-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-we-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-we-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-we-rgb.eps + RELOC/tex/latex/uantwerpendocs/Logos/icon-uantwerpen-we-rgb.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-fbd-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ggw-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-iob-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-lw-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ow-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-re-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-sw-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ti-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-cmyk.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-ua-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-en-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-cmyk-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-cmyk-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-cmyk-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-cmyk-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-cmyk-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-cmyk-pos.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-rgb-mono-white.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-rgb-mono-white.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-rgb-neg.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-rgb-neg.pdf + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-rgb-pos.eps + RELOC/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-we-nl-rgb-pos.pdf + RELOC/tex/latex/uantwerpendocs/beamercolorthemeuantwerpen.sty + RELOC/tex/latex/uantwerpendocs/beamerfontthemeuantwerpen.sty + RELOC/tex/latex/uantwerpendocs/beamerinnerthemeuantwerpen.sty + RELOC/tex/latex/uantwerpendocs/beamerouterthemeuantwerpen.sty + RELOC/tex/latex/uantwerpendocs/beamerthemeuantwerpen.sty + RELOC/tex/latex/uantwerpendocs/uantwerpenbamathesis.cls + RELOC/tex/latex/uantwerpendocs/uantwerpencoursetext.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenexam.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenletter.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenmasterthesis.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenphdthesis.cls +catalogue-ctan /macros/latex/contrib/uantwerpendocs +catalogue-license lppl1.3 +catalogue-topics class dissertation essay letter exam std-conform +catalogue-version 3.2 + +name uassign +category Package +revision 38459 +shortdesc Environments and options for typesetting university assignments +relocated 1 +longdesc The purpose of this package is to provide simple question and +longdesc solution style environments for typesetting university +longdesc assignments. +containersize 1984 +containerchecksum 3e61f381e23c30670fe78c4a54d99970bd05883e6fa03040e7123fb0936aabf51341d64aeff92109fdc33b7b97f40aa0cd81fd6624d9449584aef1fa3061070b +doccontainersize 106832 +doccontainerchecksum e6569cdac6854bc1856d6a4604589619ecbf317442018790eabc3332723dc167a879e7ca6be0da8c281847e757ddada005daaa3b8712f7697ea4052b9c9f7cf9 +docfiles size=31 + RELOC/doc/latex/uassign/README.md details="Package README" + RELOC/doc/latex/uassign/uassign.pdf details="Package documentation" + RELOC/doc/latex/uassign/uassign.tex +runfiles size=2 + RELOC/tex/latex/uassign/uassign.sty +catalogue-ctan /macros/latex/contrib/uassign +catalogue-license lppl +catalogue-topics class +catalogue-version 1.01 + +name ucalgmthesis +category Package +revision 52527 +shortdesc LaTeX thesis class for University of Calgary Faculty of Graduate Studies +relocated 1 +longdesc ucalgmthesis.cls is a LaTeX class file that produces documents +longdesc according to the thesis guidelines of the University of Calgary +longdesc Faculty of Graduate Studies. It uses the memoir class, which +longdesc provides very powerful and flexible mechanisms for book design +longdesc and layout. All memoir commands for changing chapter and +longdesc section headings, page layout, fancy foot- and endnotes, +longdesc typesetting poems, etc., can be used. (Memoir is meant as a +longdesc replacement for the standard LaTeX classes, so all standard +longdesc LaTeX commands such as \chapter, \section, etc., still work.) +longdesc Likewise, any of memoir's class options can be passed as +longdesc options to ucalgmthesis, in particular 12pt to select 12 point +longdesc type (11 point is the default). +containersize 3312 +containerchecksum 79fe22cc61ca71e472b2ecd173230b518f97b66fd411430b57dc341394961999b0cb4dc7e122d6abc828e5ecc5e15f60e0b0ce785131cbf4942a49ddb8b5190d +doccontainersize 123580 +doccontainerchecksum 458ad22537a6152ff782725328e98b68f1fe68ebcb2764ae1598bca8b659c8e67ffcb0c889890c7254dba84301ea3a066a5e92bac814027f62ce6910cb5f5b9b +docfiles size=42 + RELOC/doc/latex/ucalgmthesis/LICENSE + RELOC/doc/latex/ucalgmthesis/README.md details="Readme" + RELOC/doc/latex/ucalgmthesis/appendix.tex + RELOC/doc/latex/ucalgmthesis/backmatter.tex + RELOC/doc/latex/ucalgmthesis/chapter1.tex + RELOC/doc/latex/ucalgmthesis/chapter2.tex + RELOC/doc/latex/ucalgmthesis/frontmatter.tex + RELOC/doc/latex/ucalgmthesis/sample-thesis.bib + RELOC/doc/latex/ucalgmthesis/sample-thesis.pdf details="Example of use" + RELOC/doc/latex/ucalgmthesis/sample-thesis.tex + RELOC/doc/latex/ucalgmthesis/titlepage.tex +runfiles size=2 + RELOC/tex/latex/ucalgmthesis/ucalgmthesis.cls +catalogue-contact-bugs https://github.com/rzach/ucalgmthesis/issues +catalogue-contact-repository https://github.com/rzach/ucalgmthesis +catalogue-ctan /macros/latex/contrib/ucalgmthesis +catalogue-license mit +catalogue-topics class dissertation + +name ucbthesis +category Package +revision 51690 +shortdesc Thesis and dissertation class supporting UCB requirements +relocated 1 +longdesc The class provides the necessary framework for electronic +longdesc submission of Masters theses and Ph.D. dissertations at the +longdesc University of California, Berkeley. It is based on the memoir +longdesc class. +containersize 7364 +containerchecksum b1a4258afddfb1283c3fa4f8e126dc63f1ac948ebee2d2fab3738e2f5228b0bda85e71ab3cc3ccfab0b8ae66b84547c5070e111e8c1516b54bcef721f935e63c +doccontainersize 169228 +doccontainerchecksum aa443fe9530f08dde9b0531e075052868524c7ff6052e8e93e384ee3c01a354fd1752664b602ff6c98ab5250d05eca910773236d55270c09a567c9b238fbcd7a +docfiles size=51 + RELOC/doc/latex/ucbthesis/README details="Readme" + RELOC/doc/latex/ucbthesis/example/abstract.tex + RELOC/doc/latex/ucbthesis/example/chap1.tex + RELOC/doc/latex/ucbthesis/example/chap2.tex + RELOC/doc/latex/ucbthesis/example/references.bib + RELOC/doc/latex/ucbthesis/example/thesis.tex + RELOC/doc/latex/ucbthesis/ucbthesis.pdf details="Package documentation" + RELOC/doc/latex/ucbthesis/ucbthesis.tex +runfiles size=6 + RELOC/tex/latex/ucbthesis/ucbthesis.cls +catalogue-ctan /macros/latex/contrib/ucbthesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 3.6 + +name ucdavisthesis +category Package +revision 40772 +shortdesc A thesis/dissertation class for University of California at Davis +relocated 1 +longdesc The ucdavisthesis class is a LaTeX class that allows you to +longdesc create a dissertation or thesis conforming to UC Davis +longdesc formatting requirements as of April 2016. +containersize 10564 +containerchecksum ce8191ad81027361c23175194bf23284bc2e43407f0047586a4a89a2c51f9823356e2e571639a1f76f6a1f2b43c08eeb134d874c03f559897b0cf50aecfc94a9 +doccontainersize 1288712 +doccontainerchecksum 26ecd36ab09467341868d0ad7d71f39728f23688053ad4b8a89339238da5c96fcfe504d8e6403663eb6441a14333163f8998e00428609b161c3e9665a4ef0bf5 +docfiles size=501 + RELOC/doc/latex/ucdavisthesis/README details="Readme" + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example.bib + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_Chap1.tex + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_Chap2.tex + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_Chap3.tex + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_figure.eps + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_figure.pdf + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_main.pdf details="Example of output" + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_main.tex + RELOC/doc/latex/ucdavisthesis/ucdavisthesis.pdf details="Package documentation" +srccontainersize 23044 +srccontainerchecksum 759eab6cc5b63ac159e481bd012ce5da4d6ba35f459928d4e578b96bac60485df32771660b4f8fce08e73303e517c37aee1a5503a96c810506bb854cf7bb050e +srcfiles size=23 + RELOC/source/latex/ucdavisthesis/ucdavisthesis.dtx + RELOC/source/latex/ucdavisthesis/ucdavisthesis.ins +runfiles size=17 + RELOC/tex/latex/ucdavisthesis/ucdavisthesis.cls + RELOC/tex/latex/ucdavisthesis/ucdthesis10.clo + RELOC/tex/latex/ucdavisthesis/ucdthesis11.clo + RELOC/tex/latex/ucdavisthesis/ucdthesis12.clo + RELOC/tex/latex/ucdavisthesis/ucdthesis13.clo +catalogue-ctan /macros/latex/contrib/ucdavisthesis +catalogue-license lppl1.2 +catalogue-topics dissertation +catalogue-version 1.3 + +name ucharcat +category Package +revision 38907 +shortdesc Implementation of the (new in 2015) XeTeX \Ucharcat command in lua, for LuaTeX +relocated 1 +longdesc The package implements the \Ucharcat command for LuaLaTeX. +longdesc \Ucharcat is a new primitive in XeTeX, an extension of the +longdesc existing \Uchar command, that allows the specification of the +longdesc catcode as well as character code of the character token being +longdesc constructed. +containersize 1184 +containerchecksum 333e8f92394d89bdc3492606e467d4b664c5d87eb464e1c16ff293e3f87931c3c70308aeb523fb40f2e76e5d0aa2c1635402f40fc36ecfbb7ced98d232b8bcb5 +doccontainersize 159876 +doccontainerchecksum b4615cefd26201509c908c2719519f927d61ad96367a612d654917819b2ac973fff85d081dad6e1d092e634388b16e83e440d3cbad4fc7c16f638f5e2853bb7f +docfiles size=40 + RELOC/doc/latex/ucharcat/README details="Readme" + RELOC/doc/latex/ucharcat/ucharcat.pdf details="Package documentation" +srccontainersize 2324 +srccontainerchecksum 6ac34b38f4e0908d841ded4981d649c9202bd3bc277843e6e82bce629a245cea9c6ef1336d575d77139584f3940181c5e6f0abadf4ff71c42a97ccc33be59d9d +srcfiles size=3 + RELOC/source/latex/ucharcat/ucharcat.dtx + RELOC/source/latex/ucharcat/ucharcat.ins +runfiles size=1 + RELOC/tex/latex/ucharcat/ucharcat.sty +catalogue-ctan /macros/latex/contrib/ucharcat +catalogue-license lppl +catalogue-topics lua-supp luatex +catalogue-version 0.03 + +name ucharclasses +category Package +revision 58029 +shortdesc Font actions in XeTeX according to what is being processed +relocated 1 +longdesc The package takes care of switching fonts when you switch from +longdesc one Unicode block to another in the text of a document. This +longdesc way, you can write a document with no explicit font selection, +longdesc but a series of rules of the form "when entering block ..., +longdesc switch font to use ...". +containersize 8772 +containerchecksum 2b4a160c145fa6e4d73be4f0590d73a302655bf4274822219c5b41e145a8dc5076b3b8bf39dda488a5cec80329290db6f3dce431733ed8b4b9c59bd22a0187d5 +doccontainersize 142052 +doccontainerchecksum 4d715b69d34dd6a2eb485aa4098e51f2f72213ba5972bb51bb0fd60bbdbc3db5846f87c859d77e694b2d55be4475bdabf3bb507020480f68f7b5f3884dd3382c +docfiles size=42 + RELOC/doc/xelatex/ucharclasses/README details="Readme" + RELOC/doc/xelatex/ucharclasses/ucharclasses.pdf details="Package documentation" + RELOC/doc/xelatex/ucharclasses/ucharclasses.tex +runfiles size=9 + RELOC/tex/xelatex/ucharclasses/ucharclasses.sty +catalogue-contact-bugs https://github.com/Pomax/ucharclasses/issues +catalogue-contact-development https://github.com/Pomax/ucharclasses +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-license pd +catalogue-topics xetex font-supp +catalogue-version 2.4 + +name ucs +category Package +revision 35853 +shortdesc Extended UTF-8 input encoding support for LaTeX +relocated 1 +longdesc The bundle provides the ucs package, and utf8x.def, together +longdesc with a large number of support files. The utf8x.def definition +longdesc file for use with inputenc covers a wider range of Unicode +longdesc characters than does utf8.def in the LaTeX distribution. The +longdesc package provides facilities for efficient use of its large sets +longdesc of Unicode characters. Glyph production may be controlled by +longdesc various options, which permits use of non-ASCII characters when +longdesc coding mathematical formulae. Note that the bundle previously +longdesc had an alias "unicode"; that alias has now been withdrawn, and +longdesc no package of that name now exists. +containersize 268852 +containerchecksum f3a7120c45b722746b0f3c90a189ebf42daccaf659385c16507e5fbfb0a2922b7fbc3b3e34f53fc61ce6cf0883c9c182ee47c95b3596fbf9029db6fdafc6ddcb +doccontainersize 903048 +doccontainerchecksum b1c57fc95a282e546fae1fb8267c450412ff92b5bb0510c335cfa7d8ace9691c4f6c47fdc0a87d6752052abca1325a86a44b777cefd65363bf4d9c95265de888 +docfiles size=616 + RELOC/doc/latex/ucs/FAQ details="Frequently Asked Questions" + RELOC/doc/latex/ucs/GNUmakefile + RELOC/doc/latex/ucs/INSTALL details="Installation details" + RELOC/doc/latex/ucs/LICENSE + RELOC/doc/latex/ucs/README details="Bundle readme" + RELOC/doc/latex/ucs/README.TEXLIVE + RELOC/doc/latex/ucs/VERSION + RELOC/doc/latex/ucs/config/ascii.ucf + RELOC/doc/latex/ucs/config/boxdraw.ucf + RELOC/doc/latex/ucs/config/braille.ucf + RELOC/doc/latex/ucs/config/cjk-bg5.ucf + RELOC/doc/latex/ucs/config/cjk-gb.ucf + RELOC/doc/latex/ucs/config/cjk-globals.ucf + RELOC/doc/latex/ucs/config/cjk-hangul.ucf + RELOC/doc/latex/ucs/config/cjk-jis.ucf + RELOC/doc/latex/ucs/config/combining.ucf + RELOC/doc/latex/ucs/config/control.ucf + RELOC/doc/latex/ucs/config/ctrlglyphs.ucf + RELOC/doc/latex/ucs/config/currency.ucf + RELOC/doc/latex/ucs/config/cyrillic.ucf + RELOC/doc/latex/ucs/config/devanagari.ucf + RELOC/doc/latex/ucs/config/ethiopic.ucf + RELOC/doc/latex/ucs/config/geometric.ucf + RELOC/doc/latex/ucs/config/greek.ucf + RELOC/doc/latex/ucs/config/hebrew.ucf + RELOC/doc/latex/ucs/config/ipa.ucf + RELOC/doc/latex/ucs/config/klingon.ucf + RELOC/doc/latex/ucs/config/latin-a.ucf + RELOC/doc/latex/ucs/config/latin-b.ucf + RELOC/doc/latex/ucs/config/latin-e-a.ucf + RELOC/doc/latex/ucs/config/latin1.ucf + RELOC/doc/latex/ucs/config/math.ucf + RELOC/doc/latex/ucs/config/mathalpha.ucf + RELOC/doc/latex/ucs/config/miscsymb.ucf + RELOC/doc/latex/ucs/config/modifier.ucf + RELOC/doc/latex/ucs/config/mongolian.ucf + RELOC/doc/latex/ucs/config/pifont.ucf + RELOC/doc/latex/ucs/config/punct.ucf + RELOC/doc/latex/ucs/config/supersub.ucf + RELOC/doc/latex/ucs/config/tags.ucf + RELOC/doc/latex/ucs/config/telugu.ucf + RELOC/doc/latex/ucs/config/thai.ucf + RELOC/doc/latex/ucs/discovermacro.pl + RELOC/doc/latex/ucs/latexout.pl + RELOC/doc/latex/ucs/ltxmacrs.txt + RELOC/doc/latex/ucs/makeunidef.pl + RELOC/doc/latex/ucs/ucs.dtx + RELOC/doc/latex/ucs/ucs.ins + RELOC/doc/latex/ucs/ucs.pdf details="Package documentation" + RELOC/doc/latex/ucs/unsupported/README details="Bundle readme" + RELOC/doc/latex/ucs/unsupported/sym-to-fontenc.txt + RELOC/doc/latex/ucs/unsupported/tables.inc + RELOC/doc/latex/ucs/unsupported/u2ps +runfiles size=704 + RELOC/tex/latex/ucs/data/uni-0.def + RELOC/tex/latex/ucs/data/uni-1.def + RELOC/tex/latex/ucs/data/uni-100.def + RELOC/tex/latex/ucs/data/uni-101.def + RELOC/tex/latex/ucs/data/uni-102.def + RELOC/tex/latex/ucs/data/uni-103.def + RELOC/tex/latex/ucs/data/uni-104.def + RELOC/tex/latex/ucs/data/uni-105.def + RELOC/tex/latex/ucs/data/uni-106.def + RELOC/tex/latex/ucs/data/uni-107.def + RELOC/tex/latex/ucs/data/uni-108.def + RELOC/tex/latex/ucs/data/uni-109.def + RELOC/tex/latex/ucs/data/uni-110.def + RELOC/tex/latex/ucs/data/uni-111.def + RELOC/tex/latex/ucs/data/uni-112.def + RELOC/tex/latex/ucs/data/uni-113.def + RELOC/tex/latex/ucs/data/uni-114.def + RELOC/tex/latex/ucs/data/uni-115.def + RELOC/tex/latex/ucs/data/uni-116.def + RELOC/tex/latex/ucs/data/uni-117.def + RELOC/tex/latex/ucs/data/uni-118.def + RELOC/tex/latex/ucs/data/uni-119.def + RELOC/tex/latex/ucs/data/uni-12.def + RELOC/tex/latex/ucs/data/uni-120.def + RELOC/tex/latex/ucs/data/uni-121.def + RELOC/tex/latex/ucs/data/uni-122.def + RELOC/tex/latex/ucs/data/uni-123.def + RELOC/tex/latex/ucs/data/uni-124.def + RELOC/tex/latex/ucs/data/uni-125.def + RELOC/tex/latex/ucs/data/uni-126.def + RELOC/tex/latex/ucs/data/uni-127.def + RELOC/tex/latex/ucs/data/uni-128.def + RELOC/tex/latex/ucs/data/uni-129.def + RELOC/tex/latex/ucs/data/uni-130.def + RELOC/tex/latex/ucs/data/uni-131.def + RELOC/tex/latex/ucs/data/uni-132.def + RELOC/tex/latex/ucs/data/uni-133.def + RELOC/tex/latex/ucs/data/uni-134.def + RELOC/tex/latex/ucs/data/uni-135.def + RELOC/tex/latex/ucs/data/uni-136.def + RELOC/tex/latex/ucs/data/uni-137.def + RELOC/tex/latex/ucs/data/uni-138.def + RELOC/tex/latex/ucs/data/uni-139.def + RELOC/tex/latex/ucs/data/uni-14.def + RELOC/tex/latex/ucs/data/uni-140.def + RELOC/tex/latex/ucs/data/uni-141.def + RELOC/tex/latex/ucs/data/uni-142.def + RELOC/tex/latex/ucs/data/uni-143.def + RELOC/tex/latex/ucs/data/uni-144.def + RELOC/tex/latex/ucs/data/uni-145.def + RELOC/tex/latex/ucs/data/uni-146.def + RELOC/tex/latex/ucs/data/uni-147.def + RELOC/tex/latex/ucs/data/uni-148.def + RELOC/tex/latex/ucs/data/uni-149.def + RELOC/tex/latex/ucs/data/uni-150.def + RELOC/tex/latex/ucs/data/uni-151.def + RELOC/tex/latex/ucs/data/uni-152.def + RELOC/tex/latex/ucs/data/uni-153.def + RELOC/tex/latex/ucs/data/uni-154.def + RELOC/tex/latex/ucs/data/uni-155.def + RELOC/tex/latex/ucs/data/uni-156.def + RELOC/tex/latex/ucs/data/uni-157.def + RELOC/tex/latex/ucs/data/uni-158.def + RELOC/tex/latex/ucs/data/uni-159.def + RELOC/tex/latex/ucs/data/uni-167.def + RELOC/tex/latex/ucs/data/uni-172.def + RELOC/tex/latex/ucs/data/uni-173.def + RELOC/tex/latex/ucs/data/uni-174.def + RELOC/tex/latex/ucs/data/uni-175.def + RELOC/tex/latex/ucs/data/uni-176.def + RELOC/tex/latex/ucs/data/uni-177.def + RELOC/tex/latex/ucs/data/uni-178.def + RELOC/tex/latex/ucs/data/uni-179.def + RELOC/tex/latex/ucs/data/uni-18.def + RELOC/tex/latex/ucs/data/uni-180.def + RELOC/tex/latex/ucs/data/uni-181.def + RELOC/tex/latex/ucs/data/uni-182.def + RELOC/tex/latex/ucs/data/uni-183.def + RELOC/tex/latex/ucs/data/uni-184.def + RELOC/tex/latex/ucs/data/uni-185.def + RELOC/tex/latex/ucs/data/uni-186.def + RELOC/tex/latex/ucs/data/uni-187.def + RELOC/tex/latex/ucs/data/uni-188.def + RELOC/tex/latex/ucs/data/uni-189.def + RELOC/tex/latex/ucs/data/uni-19.def + RELOC/tex/latex/ucs/data/uni-190.def + RELOC/tex/latex/ucs/data/uni-191.def + RELOC/tex/latex/ucs/data/uni-192.def + RELOC/tex/latex/ucs/data/uni-193.def + RELOC/tex/latex/ucs/data/uni-194.def + RELOC/tex/latex/ucs/data/uni-195.def + RELOC/tex/latex/ucs/data/uni-196.def + RELOC/tex/latex/ucs/data/uni-197.def + RELOC/tex/latex/ucs/data/uni-198.def + RELOC/tex/latex/ucs/data/uni-199.def + RELOC/tex/latex/ucs/data/uni-2.def + RELOC/tex/latex/ucs/data/uni-200.def + RELOC/tex/latex/ucs/data/uni-201.def + RELOC/tex/latex/ucs/data/uni-202.def + RELOC/tex/latex/ucs/data/uni-203.def + RELOC/tex/latex/ucs/data/uni-204.def + RELOC/tex/latex/ucs/data/uni-205.def + RELOC/tex/latex/ucs/data/uni-206.def + RELOC/tex/latex/ucs/data/uni-207.def + RELOC/tex/latex/ucs/data/uni-208.def + RELOC/tex/latex/ucs/data/uni-209.def + RELOC/tex/latex/ucs/data/uni-210.def + RELOC/tex/latex/ucs/data/uni-211.def + RELOC/tex/latex/ucs/data/uni-212.def + RELOC/tex/latex/ucs/data/uni-213.def + RELOC/tex/latex/ucs/data/uni-214.def + RELOC/tex/latex/ucs/data/uni-215.def + RELOC/tex/latex/ucs/data/uni-24.def + RELOC/tex/latex/ucs/data/uni-248.def + RELOC/tex/latex/ucs/data/uni-249.def + RELOC/tex/latex/ucs/data/uni-250.def + RELOC/tex/latex/ucs/data/uni-251.def + RELOC/tex/latex/ucs/data/uni-254.def + RELOC/tex/latex/ucs/data/uni-255.def + RELOC/tex/latex/ucs/data/uni-29.def + RELOC/tex/latex/ucs/data/uni-3.def + RELOC/tex/latex/ucs/data/uni-30.def + RELOC/tex/latex/ucs/data/uni-31.def + RELOC/tex/latex/ucs/data/uni-32.def + RELOC/tex/latex/ucs/data/uni-33.def + RELOC/tex/latex/ucs/data/uni-34.def + RELOC/tex/latex/ucs/data/uni-35.def + RELOC/tex/latex/ucs/data/uni-3584.def + RELOC/tex/latex/ucs/data/uni-36.def + RELOC/tex/latex/ucs/data/uni-37.def + RELOC/tex/latex/ucs/data/uni-38.def + RELOC/tex/latex/ucs/data/uni-39.def + RELOC/tex/latex/ucs/data/uni-4.def + RELOC/tex/latex/ucs/data/uni-40.def + RELOC/tex/latex/ucs/data/uni-42.def + RELOC/tex/latex/ucs/data/uni-44.def + RELOC/tex/latex/ucs/data/uni-46.def + RELOC/tex/latex/ucs/data/uni-465.def + RELOC/tex/latex/ucs/data/uni-468.def + RELOC/tex/latex/ucs/data/uni-469.def + RELOC/tex/latex/ucs/data/uni-47.def + RELOC/tex/latex/ucs/data/uni-470.def + RELOC/tex/latex/ucs/data/uni-471.def + RELOC/tex/latex/ucs/data/uni-48.def + RELOC/tex/latex/ucs/data/uni-49.def + RELOC/tex/latex/ucs/data/uni-497.def + RELOC/tex/latex/ucs/data/uni-498.def + RELOC/tex/latex/ucs/data/uni-5.def + RELOC/tex/latex/ucs/data/uni-50.def + RELOC/tex/latex/ucs/data/uni-51.def + RELOC/tex/latex/ucs/data/uni-760.def + RELOC/tex/latex/ucs/data/uni-761.def + RELOC/tex/latex/ucs/data/uni-762.def + RELOC/tex/latex/ucs/data/uni-78.def + RELOC/tex/latex/ucs/data/uni-79.def + RELOC/tex/latex/ucs/data/uni-80.def + RELOC/tex/latex/ucs/data/uni-81.def + RELOC/tex/latex/ucs/data/uni-82.def + RELOC/tex/latex/ucs/data/uni-83.def + RELOC/tex/latex/ucs/data/uni-84.def + RELOC/tex/latex/ucs/data/uni-85.def + RELOC/tex/latex/ucs/data/uni-86.def + RELOC/tex/latex/ucs/data/uni-87.def + RELOC/tex/latex/ucs/data/uni-88.def + RELOC/tex/latex/ucs/data/uni-89.def + RELOC/tex/latex/ucs/data/uni-9.def + RELOC/tex/latex/ucs/data/uni-90.def + RELOC/tex/latex/ucs/data/uni-91.def + RELOC/tex/latex/ucs/data/uni-92.def + RELOC/tex/latex/ucs/data/uni-93.def + RELOC/tex/latex/ucs/data/uni-94.def + RELOC/tex/latex/ucs/data/uni-95.def + RELOC/tex/latex/ucs/data/uni-96.def + RELOC/tex/latex/ucs/data/uni-97.def + RELOC/tex/latex/ucs/data/uni-98.def + RELOC/tex/latex/ucs/data/uni-99.def + RELOC/tex/latex/ucs/data/uni-global.def + RELOC/tex/latex/ucs/data/uninames.dat + RELOC/tex/latex/ucs/ucs.sty + RELOC/tex/latex/ucs/ucsencs.def + RELOC/tex/latex/ucs/ucshyper.sty + RELOC/tex/latex/ucs/ucsutils.sty + RELOC/tex/latex/ucs/utf8x.def + RELOC/tex/latex/ucs/utils/UnicodeT.sfd + RELOC/tex/latex/ucs/utils/autofe.sty + RELOC/tex/latex/ucs/utils/c00enc.def + RELOC/tex/latex/ucs/utils/c10enc.def + RELOC/tex/latex/ucs/utils/c40enc.def + RELOC/tex/latex/ucs/utils/c42enc.def + RELOC/tex/latex/ucs/utils/c61enc.def + RELOC/tex/latex/ucs/utils/cenccmn.tex + RELOC/tex/latex/ucs/utils/cp1252.enc + RELOC/tex/latex/ucs/utils/ldvarial.fd + RELOC/tex/latex/ucs/utils/ldvc2000.fd + RELOC/tex/latex/ucs/utils/ldvenc.def + RELOC/tex/latex/ucs/utils/letc2000.fd + RELOC/tex/latex/ucs/utils/letenc.def + RELOC/tex/latex/ucs/utils/letgfzem.fd + RELOC/tex/latex/ucs/utils/letjiret.fd + RELOC/tex/latex/ucs/utils/lklenc.def + RELOC/tex/latex/ucs/utils/lklkli.fd + RELOC/tex/latex/ucs/utils/ltaarial.fd + RELOC/tex/latex/ucs/utils/ltac2000.fd + RELOC/tex/latex/ucs/utils/ltaenc.def + RELOC/tex/latex/ucs/utils/ltgc2000.fd + RELOC/tex/latex/ucs/utils/ltgenc.def + RELOC/tex/latex/ucs/utils/ltlcmr.fd + RELOC/tex/latex/ucs/utils/ltlenc.def + RELOC/tex/latex/ucs/utils/ltwdsnol.fd + RELOC/tex/latex/ucs/utils/ltwdsque.fd + RELOC/tex/latex/ucs/utils/ltwdssin.fd + RELOC/tex/latex/ucs/utils/ltwenc.def + RELOC/tex/latex/ucs/utils/lucarial.fd + RELOC/tex/latex/ucs/utils/lucc2000.fd + RELOC/tex/latex/ucs/utils/lucenc.def + RELOC/tex/latex/ucs/utils/mkrenc.def + RELOC/tex/latex/ucs/utils/mkrezra.fd + RELOC/tex/latex/ucs/utils/mkrhadas.fd + RELOC/tex/latex/ucs/utils/mkromega.fd + RELOC/tex/latex/ucs/utils/mkrrashi.fd + RELOC/tex/latex/ucs/utils/t2dcmr.fd + RELOC/tex/latex/ucs/utils/t2denc.def + RELOC/tex/latex/ucs/utils/tengwarDS.enc + RELOC/tex/latex/ucs/utils/xscmr.fd + RELOC/tex/latex/ucs/utils/xsenc.def +catalogue-ctan /macros/latex/contrib/ucs +catalogue-license lppl1.3 +catalogue-topics inputenc unicode +catalogue-version 2.2 + +name ucsmonograph +category Package +revision 52698 +shortdesc Typesetting academic documents from the University of Caxias do Sul +relocated 1 +longdesc This is a LaTeX class for typesetting academic documents +longdesc according to the ABNT (Brazilian Technical Standards +longdesc Association) standards and the UCS (University of Caxias do +longdesc Sul) specifications. +containersize 4664 +containerchecksum e4375327eabb390842ae833bceea1a554fd833b656e0ede5d56b1bd48a070dc0b89eb878db0c77e92865760755c006fffab8a1d0627f0acb6cc1485aa9a13c6f +doccontainersize 427212 +doccontainerchecksum 00cfc843b8377d9390806d72a78c5c7d219adc0312a7472ad764bb777200265b6f2d6757f98c44ebdc671671df38e920fe488a2cdea0dab0a3953856b5233b57 +docfiles size=107 + RELOC/doc/latex/ucsmonograph/README.md details="Readme" + RELOC/doc/latex/ucsmonograph/ucsmonograph.pdf details="Package documentation" language="pt-br" +srccontainersize 15348 +srccontainerchecksum 900c1f53d5f78fcd7e2fbab9a83130ff0d7233a4fc3a547fdecbb6c7ac35a7c3a32a10f74b00f959c8cc4afae98f97532f3baffe1db433053497db80ab74a852 +srcfiles size=16 + RELOC/source/latex/ucsmonograph/ucsmonograph.dtx + RELOC/source/latex/ucsmonograph/ucsmonograph.ins +runfiles size=4 + RELOC/tex/latex/ucsmonograph/ucsmonograph.cls +catalogue-also abntex2 +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-license lppl1.3c +catalogue-topics class dissertation portuguese-br +catalogue-version 1.3.0 + +name ucthesis +category Package +revision 15878 +shortdesc University of California thesis format +relocated 1 +longdesc A modified version of the standard LaTeX report style that is +longdesc accepted for use with University of California PhD +longdesc dissertations and Masters theses. A sample dissertation source +longdesc and bibliography are provided. +containersize 19284 +containerchecksum 5409e366c69372dd3a93b3755d185e0b96edf71c7a8de4d6cc3d41850e5b9915d2bbe68d3265b5facd52e7d8c00159031737dbcc26302a1a6a89425ac47f443c +doccontainersize 6280 +doccontainerchecksum 7f7ec44a55e2d712af2204d883a7136b44192a402daff4376cd6cb217419179d2b46bc083688d9be9ad85d2b3daeb00305f2253196784ffc9d72c039f0aca5af +docfiles size=5 + RELOC/doc/latex/ucthesis/README details="Readme and basic documentation" + RELOC/doc/latex/ucthesis/uctest.bib + RELOC/doc/latex/ucthesis/uctest.tex +runfiles size=27 + RELOC/tex/latex/ucthesis/uct10.clo + RELOC/tex/latex/ucthesis/uct11.clo + RELOC/tex/latex/ucthesis/uct12.clo + RELOC/tex/latex/ucthesis/ucthesis.cls +catalogue-ctan /macros/latex/contrib/ucthesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 3.2 + +name udesoftec +category Package +revision 57866 +shortdesc Thesis class for the University of Duisburg-Essen +relocated 1 +longdesc The class is designed for typesetting theses in the Research +longdesc Group for Business Informatics and Software Engineering. (The +longdesc class may also serve as a template for such theses.) The class +longdesc is designed for use with pdfLaTeX; input in UTF-8 encoding is +longdesc assumed. +containersize 108164 +containerchecksum 56171faa46267dbd99185807f619a673cc1ace837eea3c0e8659c4d7fb50aab7f8842e259f433070b8eb54390d3426542c3443a62d37a1aa9ae7029f4d7f022a +doccontainersize 477784 +doccontainerchecksum 463b9ca1c153da84ed0045a2adbe8129031bab79d0a586710b6cbb9fca9b84428b7036848efee27a075b40f0cb015081c89e6e7f5588f1e2bd011d81f40be721 +docfiles size=118 + RELOC/doc/latex/udesoftec/udesoftec-doc.pdf details="Package documentation (German)" language="de" +srccontainersize 44528 +srccontainerchecksum 99273b3d809dec7f508bc3f1744143804edfbcc2b3ffbdd6fca4e51be2f98f3ac0ab6852ccd333c5a69a627dfb108952d511a5398eedef0af4306ab573ea54e0 +srcfiles size=23 + RELOC/source/latex/udesoftec/CHANGELOG + RELOC/source/latex/udesoftec/README + RELOC/source/latex/udesoftec/UPDATE-INSTRUCTIONS + RELOC/source/latex/udesoftec/udesoftec-doc-examplebib.bib + RELOC/source/latex/udesoftec/udesoftec-doc-exampleimage.pdf + RELOC/source/latex/udesoftec/udesoftec-doc.tex +runfiles size=74 + RELOC/bibtex/bst/udesoftec/udesoftec.bst + RELOC/tex/latex/udesoftec/udesoftec-bibcommon.sty + RELOC/tex/latex/udesoftec/udesoftec-biblatex.sty + RELOC/tex/latex/udesoftec/udesoftec-bst.sty + RELOC/tex/latex/udesoftec/udesoftec-cover-uba.pdf + RELOC/tex/latex/udesoftec/udesoftec-cover-ude-de.pdf + RELOC/tex/latex/udesoftec/udesoftec-cover-ude-en.pdf + RELOC/tex/latex/udesoftec/udesoftec-extra.sty + RELOC/tex/latex/udesoftec/udesoftec.cls +catalogue-contact-bugs https://github.com/jpmschuler/SOFTEC-Templates/issues +catalogue-ctan /macros/latex/contrib/udesoftec +catalogue-license lppl1.3 +catalogue-topics dissertation bus-study class +catalogue-version 1.7.1 + +name uebungsblatt +category Package +revision 15878 +shortdesc A LaTeX class for writing exercise sheets +relocated 1 +longdesc This package implements a LaTeX class for writing exercise +longdesc sheets for a lecture. Features: - quick typesetting of exercise +longdesc sheets or their revisions, - simple user friendly commands, - +longdesc elegant page formatting, - automatic numbering of exercises and +longdesc sub-exercises, - the number of the exercise sheet is extracted +longdesc automatically from the file name, - static information about +longdesc the lectures and the authors needs to provided at one point +longdesc only. +containersize 3948 +containerchecksum e9ce935da13de8106d63f233349bd29e954538ad17de7505be14a4b5a2efa1e1aabd3ef46871e98d2f5d4730bcf6c49998187924328eed19a35a95bffdcb8d70 +doccontainersize 226580 +doccontainerchecksum 2853eae6fdddf889b305166c6c09351e8e7d7fb087c68a5ab9f4a7a282118200a5120c215708e7d2b9d4487457aa6330d11ec7f7a8e0139719b67217732f2633 +docfiles size=63 + RELOC/doc/latex/uebungsblatt/README details="README" language="de" + RELOC/doc/latex/uebungsblatt/history.txt + RELOC/doc/latex/uebungsblatt/uebungsblatt-doc.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/uebungsblatt/uebungsblatt-doc.tex +runfiles size=4 + RELOC/tex/latex/uebungsblatt/uebungsblatt.cls + RELOC/tex/latex/uebungsblatt/uebungsblatt.sty +catalogue-ctan /macros/latex/contrib/uebungsblatt +catalogue-license lppl +catalogue-topics exercise +catalogue-version 1.5.0 + +name uestcthesis +category Package +revision 36371 +shortdesc Thesis class for UESTC +relocated 1 +longdesc The class is for typesetting a thesis at the University of +longdesc Electronic Science and Technology of China. +containersize 17228 +containerchecksum aaeb270174e260230d527379ef0a7581ec9f78387aae8505ed5e88a04586dfbb1d90cb923181f34e92d5100bcece0da66e17452218f0c83bbb12b38cc517f3b5 +doccontainersize 4250444 +doccontainerchecksum e68e86bb446c1e79111948b004ece03e2110166d01966d562b1bac6c932385aeaa682f04262eccd822e01b93c66c77be53c947c1dbdbf5ce129a74efdacf5df6 +docfiles size=1191 + RELOC/doc/latex/uestcthesis/README details="Readme (in English and Chinese)" + RELOC/doc/latex/uestcthesis/doc/chapters/DuplicateMe.tex + RELOC/doc/latex/uestcthesis/doc/chapters/Matrix.java.tex + RELOC/doc/latex/uestcthesis/doc/chapters/Place_has_TrainDAO.java.tex + RELOC/doc/latex/uestcthesis/doc/chapters/implementation.tex + RELOC/doc/latex/uestcthesis/doc/chapters/math.tex + RELOC/doc/latex/uestcthesis/doc/chapters/test.c.tex + RELOC/doc/latex/uestcthesis/doc/chapters/tuition.tex + RELOC/doc/latex/uestcthesis/doc/contents/Cabstract.tex + RELOC/doc/latex/uestcthesis/doc/contents/Eabstract.tex + RELOC/doc/latex/uestcthesis/doc/contents/acknowledgements.tex + RELOC/doc/latex/uestcthesis/doc/contents/appendix.tex + RELOC/doc/latex/uestcthesis/doc/contents/cv.tex + RELOC/doc/latex/uestcthesis/doc/contents/original.tex + RELOC/doc/latex/uestcthesis/doc/contents/publications.bib + RELOC/doc/latex/uestcthesis/doc/contents/reference.bib + RELOC/doc/latex/uestcthesis/doc/contents/translation.tex + RELOC/doc/latex/uestcthesis/doc/pics/Chrysanthemum.jpg + RELOC/doc/latex/uestcthesis/doc/pics/Penguins.jpg + RELOC/doc/latex/uestcthesis/doc/pics/Tulips.jpg + RELOC/doc/latex/uestcthesis/doc/pics/apk.png + RELOC/doc/latex/uestcthesis/doc/pics/excel.png + RELOC/doc/latex/uestcthesis/doc/pics/fisher1.png + RELOC/doc/latex/uestcthesis/doc/pics/fisher2.png + RELOC/doc/latex/uestcthesis/doc/pics/flow1.png + RELOC/doc/latex/uestcthesis/doc/pics/flow3.png + RELOC/doc/latex/uestcthesis/doc/pics/flow4.png + RELOC/doc/latex/uestcthesis/doc/pics/flow5-1.png + RELOC/doc/latex/uestcthesis/doc/pics/flow5-2.png + RELOC/doc/latex/uestcthesis/doc/pics/flow5-3.png + RELOC/doc/latex/uestcthesis/doc/pics/highlight1.png + RELOC/doc/latex/uestcthesis/doc/pics/highlight2.png + RELOC/doc/latex/uestcthesis/doc/pics/system.png + RELOC/doc/latex/uestcthesis/doc/pics/winedt.png + RELOC/doc/latex/uestcthesis/doc/uestcthesis-doc.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/uestcthesis/doc/uestcthesis-doc.tex + RELOC/doc/latex/uestcthesis/source/uestcthesis.dtx + RELOC/doc/latex/uestcthesis/source/uestcthesis.ins +runfiles size=31 + RELOC/bibtex/bst/uestcthesis/uestcthesis.bst + RELOC/tex/latex/uestcthesis/uestcthesis.cls +catalogue-contact-repository https://github.com/shifujun/UESTCthesis +catalogue-ctan /macros/latex/contrib/uestcthesis +catalogue-license lppl1.3 +catalogue-topics dissertation chinese +catalogue-version 1.1.0 + +name uhc +category Package +revision 16791 +shortdesc Fonts for the Korean language +relocated 1 +longdesc Support for Korean documents written in Korean standard KSC +longdesc codes for LaTeX2e. +execute addMap umj.map +containersize 3600148 +containerchecksum b5e722e7a72d2efcd89c969c10291779a2885603817374e4318f59b4042b8890df967503016d08a91e30ba8cbbc6f1838843644f06cf44766a7096efdd3bf905 +doccontainersize 872 +doccontainerchecksum c37c5041d155f9a175a6761154211a683405d094850cc829a6b942afcb93af987b4049e663d260ae2b066827007d8c6576fdcd5d14d3ff599f031b13c00e162f +docfiles size=1 + RELOC/doc/fonts/uhc/umj/README +runfiles size=4177 + RELOC/dvips/uhc/config.uhc + RELOC/fonts/afm/uhc/umj/umj00.afm + RELOC/fonts/afm/uhc/umj/umj01.afm + RELOC/fonts/afm/uhc/umj/umj02.afm + RELOC/fonts/afm/uhc/umj/umj03.afm + RELOC/fonts/afm/uhc/umj/umj04.afm + RELOC/fonts/afm/uhc/umj/umj05.afm + RELOC/fonts/afm/uhc/umj/umj10.afm + RELOC/fonts/afm/uhc/umj/umj11.afm + RELOC/fonts/afm/uhc/umj/umj12.afm + RELOC/fonts/afm/uhc/umj/umj13.afm + RELOC/fonts/afm/uhc/umj/umj14.afm + RELOC/fonts/afm/uhc/umj/umj15.afm + RELOC/fonts/afm/uhc/umj/umj16.afm + RELOC/fonts/afm/uhc/umj/umj17.afm + RELOC/fonts/afm/uhc/umj/umj20.afm + RELOC/fonts/afm/uhc/umj/umj21.afm + RELOC/fonts/afm/uhc/umj/umj22.afm + RELOC/fonts/afm/uhc/umj/umj23.afm + RELOC/fonts/afm/uhc/umj/umj24.afm + RELOC/fonts/afm/uhc/umj/umj25.afm + RELOC/fonts/afm/uhc/umj/umj26.afm + RELOC/fonts/afm/uhc/umj/umj27.afm + RELOC/fonts/afm/uhc/umj/umj28.afm + RELOC/fonts/afm/uhc/umj/umj29.afm + RELOC/fonts/afm/uhc/umj/umj30.afm + RELOC/fonts/afm/uhc/umj/umj31.afm + RELOC/fonts/afm/uhc/umj/umj32.afm + RELOC/fonts/afm/uhc/umj/umj33.afm + RELOC/fonts/afm/uhc/umj/umj34.afm + RELOC/fonts/afm/uhc/umj/umj35.afm + RELOC/fonts/afm/uhc/umj/umj36.afm + RELOC/fonts/afm/uhc/umj/umj37.afm + RELOC/fonts/afm/uhc/umj/umj38.afm + RELOC/fonts/map/dvips/uhc/umj.map + RELOC/fonts/tfm/uhc/umj/umj00.tfm + RELOC/fonts/tfm/uhc/umj/umj01.tfm + RELOC/fonts/tfm/uhc/umj/umj02.tfm + RELOC/fonts/tfm/uhc/umj/umj03.tfm + RELOC/fonts/tfm/uhc/umj/umj04.tfm + RELOC/fonts/tfm/uhc/umj/umj05.tfm + RELOC/fonts/tfm/uhc/umj/umj10.tfm + RELOC/fonts/tfm/uhc/umj/umj11.tfm + RELOC/fonts/tfm/uhc/umj/umj12.tfm + RELOC/fonts/tfm/uhc/umj/umj13.tfm + RELOC/fonts/tfm/uhc/umj/umj14.tfm + RELOC/fonts/tfm/uhc/umj/umj15.tfm + RELOC/fonts/tfm/uhc/umj/umj16.tfm + RELOC/fonts/tfm/uhc/umj/umj17.tfm + RELOC/fonts/tfm/uhc/umj/umj20.tfm + RELOC/fonts/tfm/uhc/umj/umj21.tfm + RELOC/fonts/tfm/uhc/umj/umj22.tfm + RELOC/fonts/tfm/uhc/umj/umj23.tfm + RELOC/fonts/tfm/uhc/umj/umj24.tfm + RELOC/fonts/tfm/uhc/umj/umj25.tfm + RELOC/fonts/tfm/uhc/umj/umj26.tfm + RELOC/fonts/tfm/uhc/umj/umj27.tfm + RELOC/fonts/tfm/uhc/umj/umj28.tfm + RELOC/fonts/tfm/uhc/umj/umj29.tfm + RELOC/fonts/tfm/uhc/umj/umj30.tfm + RELOC/fonts/tfm/uhc/umj/umj31.tfm + RELOC/fonts/tfm/uhc/umj/umj32.tfm + RELOC/fonts/tfm/uhc/umj/umj33.tfm + RELOC/fonts/tfm/uhc/umj/umj34.tfm + RELOC/fonts/tfm/uhc/umj/umj35.tfm + RELOC/fonts/tfm/uhc/umj/umj36.tfm + RELOC/fonts/tfm/uhc/umj/umj37.tfm + RELOC/fonts/tfm/uhc/umj/umj38.tfm + RELOC/fonts/tfm/uhc/umj/umjc00.tfm + RELOC/fonts/tfm/uhc/umj/umjc01.tfm + RELOC/fonts/tfm/uhc/umj/umjc02.tfm + RELOC/fonts/tfm/uhc/umj/umjc03.tfm + RELOC/fonts/tfm/uhc/umj/umjc04.tfm + RELOC/fonts/tfm/uhc/umj/umjc05.tfm + RELOC/fonts/tfm/uhc/umj/umjc10.tfm + RELOC/fonts/tfm/uhc/umj/umjc11.tfm + RELOC/fonts/tfm/uhc/umj/umjc12.tfm + RELOC/fonts/tfm/uhc/umj/umjc13.tfm + RELOC/fonts/tfm/uhc/umj/umjc14.tfm + RELOC/fonts/tfm/uhc/umj/umjc15.tfm + RELOC/fonts/tfm/uhc/umj/umjc16.tfm + RELOC/fonts/tfm/uhc/umj/umjc17.tfm + RELOC/fonts/tfm/uhc/umj/umjc20.tfm + RELOC/fonts/tfm/uhc/umj/umjc21.tfm + RELOC/fonts/tfm/uhc/umj/umjc22.tfm + RELOC/fonts/tfm/uhc/umj/umjc23.tfm + RELOC/fonts/tfm/uhc/umj/umjc24.tfm + RELOC/fonts/tfm/uhc/umj/umjc25.tfm + RELOC/fonts/tfm/uhc/umj/umjc26.tfm + RELOC/fonts/tfm/uhc/umj/umjc27.tfm + RELOC/fonts/tfm/uhc/umj/umjc28.tfm + RELOC/fonts/tfm/uhc/umj/umjc29.tfm + RELOC/fonts/tfm/uhc/umj/umjc30.tfm + RELOC/fonts/tfm/uhc/umj/umjc31.tfm + RELOC/fonts/tfm/uhc/umj/umjc32.tfm + RELOC/fonts/tfm/uhc/umj/umjc33.tfm + RELOC/fonts/tfm/uhc/umj/umjc34.tfm + RELOC/fonts/tfm/uhc/umj/umjc35.tfm + RELOC/fonts/tfm/uhc/umj/umjc36.tfm + RELOC/fonts/tfm/uhc/umj/umjc37.tfm + RELOC/fonts/tfm/uhc/umj/umjc38.tfm + RELOC/fonts/tfm/uhc/umj/umjco00.tfm + RELOC/fonts/tfm/uhc/umj/umjco01.tfm + RELOC/fonts/tfm/uhc/umj/umjco02.tfm + RELOC/fonts/tfm/uhc/umj/umjco03.tfm + RELOC/fonts/tfm/uhc/umj/umjco04.tfm + RELOC/fonts/tfm/uhc/umj/umjco05.tfm + RELOC/fonts/tfm/uhc/umj/umjco10.tfm + RELOC/fonts/tfm/uhc/umj/umjco11.tfm + RELOC/fonts/tfm/uhc/umj/umjco12.tfm + RELOC/fonts/tfm/uhc/umj/umjco13.tfm + RELOC/fonts/tfm/uhc/umj/umjco14.tfm + RELOC/fonts/tfm/uhc/umj/umjco15.tfm + RELOC/fonts/tfm/uhc/umj/umjco16.tfm + RELOC/fonts/tfm/uhc/umj/umjco17.tfm + RELOC/fonts/tfm/uhc/umj/umjco20.tfm + RELOC/fonts/tfm/uhc/umj/umjco21.tfm + RELOC/fonts/tfm/uhc/umj/umjco22.tfm + RELOC/fonts/tfm/uhc/umj/umjco23.tfm + RELOC/fonts/tfm/uhc/umj/umjco24.tfm + RELOC/fonts/tfm/uhc/umj/umjco25.tfm + RELOC/fonts/tfm/uhc/umj/umjco26.tfm + RELOC/fonts/tfm/uhc/umj/umjco27.tfm + RELOC/fonts/tfm/uhc/umj/umjco28.tfm + RELOC/fonts/tfm/uhc/umj/umjco29.tfm + RELOC/fonts/tfm/uhc/umj/umjco30.tfm + RELOC/fonts/tfm/uhc/umj/umjco31.tfm + RELOC/fonts/tfm/uhc/umj/umjco32.tfm + RELOC/fonts/tfm/uhc/umj/umjco33.tfm + RELOC/fonts/tfm/uhc/umj/umjco34.tfm + RELOC/fonts/tfm/uhc/umj/umjco35.tfm + RELOC/fonts/tfm/uhc/umj/umjco36.tfm + RELOC/fonts/tfm/uhc/umj/umjco37.tfm + RELOC/fonts/tfm/uhc/umj/umjco38.tfm + RELOC/fonts/tfm/uhc/umj/umjo00.tfm + RELOC/fonts/tfm/uhc/umj/umjo01.tfm + RELOC/fonts/tfm/uhc/umj/umjo02.tfm + RELOC/fonts/tfm/uhc/umj/umjo03.tfm + RELOC/fonts/tfm/uhc/umj/umjo04.tfm + RELOC/fonts/tfm/uhc/umj/umjo05.tfm + RELOC/fonts/tfm/uhc/umj/umjo10.tfm + RELOC/fonts/tfm/uhc/umj/umjo11.tfm + RELOC/fonts/tfm/uhc/umj/umjo12.tfm + RELOC/fonts/tfm/uhc/umj/umjo13.tfm + RELOC/fonts/tfm/uhc/umj/umjo14.tfm + RELOC/fonts/tfm/uhc/umj/umjo15.tfm + RELOC/fonts/tfm/uhc/umj/umjo16.tfm + RELOC/fonts/tfm/uhc/umj/umjo17.tfm + RELOC/fonts/tfm/uhc/umj/umjo20.tfm + RELOC/fonts/tfm/uhc/umj/umjo21.tfm + RELOC/fonts/tfm/uhc/umj/umjo22.tfm + RELOC/fonts/tfm/uhc/umj/umjo23.tfm + RELOC/fonts/tfm/uhc/umj/umjo24.tfm + RELOC/fonts/tfm/uhc/umj/umjo25.tfm + RELOC/fonts/tfm/uhc/umj/umjo26.tfm + RELOC/fonts/tfm/uhc/umj/umjo27.tfm + RELOC/fonts/tfm/uhc/umj/umjo28.tfm + RELOC/fonts/tfm/uhc/umj/umjo29.tfm + RELOC/fonts/tfm/uhc/umj/umjo30.tfm + RELOC/fonts/tfm/uhc/umj/umjo31.tfm + RELOC/fonts/tfm/uhc/umj/umjo32.tfm + RELOC/fonts/tfm/uhc/umj/umjo33.tfm + RELOC/fonts/tfm/uhc/umj/umjo34.tfm + RELOC/fonts/tfm/uhc/umj/umjo35.tfm + RELOC/fonts/tfm/uhc/umj/umjo36.tfm + RELOC/fonts/tfm/uhc/umj/umjo37.tfm + RELOC/fonts/tfm/uhc/umj/umjo38.tfm + RELOC/fonts/tfm/uhc/umj/umju00.tfm + RELOC/fonts/tfm/uhc/umj/umju01.tfm + RELOC/fonts/tfm/uhc/umj/umju02.tfm + RELOC/fonts/tfm/uhc/umj/umju03.tfm + RELOC/fonts/tfm/uhc/umj/umju04.tfm + RELOC/fonts/tfm/uhc/umj/umju05.tfm + RELOC/fonts/tfm/uhc/umj/umju10.tfm + RELOC/fonts/tfm/uhc/umj/umju11.tfm + RELOC/fonts/tfm/uhc/umj/umju12.tfm + RELOC/fonts/tfm/uhc/umj/umju13.tfm + RELOC/fonts/tfm/uhc/umj/umju14.tfm + RELOC/fonts/tfm/uhc/umj/umju15.tfm + RELOC/fonts/tfm/uhc/umj/umju16.tfm + RELOC/fonts/tfm/uhc/umj/umju17.tfm + RELOC/fonts/tfm/uhc/umj/umju20.tfm + RELOC/fonts/tfm/uhc/umj/umju21.tfm + RELOC/fonts/tfm/uhc/umj/umju22.tfm + RELOC/fonts/tfm/uhc/umj/umju23.tfm + RELOC/fonts/tfm/uhc/umj/umju24.tfm + RELOC/fonts/tfm/uhc/umj/umju25.tfm + RELOC/fonts/tfm/uhc/umj/umju26.tfm + RELOC/fonts/tfm/uhc/umj/umju27.tfm + RELOC/fonts/tfm/uhc/umj/umju28.tfm + RELOC/fonts/tfm/uhc/umj/umju29.tfm + RELOC/fonts/tfm/uhc/umj/umju30.tfm + RELOC/fonts/tfm/uhc/umj/umju31.tfm + RELOC/fonts/tfm/uhc/umj/umju32.tfm + RELOC/fonts/tfm/uhc/umj/umju33.tfm + RELOC/fonts/tfm/uhc/umj/umju34.tfm + RELOC/fonts/tfm/uhc/umj/umju35.tfm + RELOC/fonts/tfm/uhc/umj/umju36.tfm + RELOC/fonts/tfm/uhc/umj/umju37.tfm + RELOC/fonts/tfm/uhc/umj/umju38.tfm + RELOC/fonts/tfm/uhc/umj/umjuo00.tfm + RELOC/fonts/tfm/uhc/umj/umjuo01.tfm + RELOC/fonts/tfm/uhc/umj/umjuo02.tfm + RELOC/fonts/tfm/uhc/umj/umjuo03.tfm + RELOC/fonts/tfm/uhc/umj/umjuo04.tfm + RELOC/fonts/tfm/uhc/umj/umjuo05.tfm + RELOC/fonts/tfm/uhc/umj/umjuo10.tfm + RELOC/fonts/tfm/uhc/umj/umjuo11.tfm + RELOC/fonts/tfm/uhc/umj/umjuo12.tfm + RELOC/fonts/tfm/uhc/umj/umjuo13.tfm + RELOC/fonts/tfm/uhc/umj/umjuo14.tfm + RELOC/fonts/tfm/uhc/umj/umjuo15.tfm + RELOC/fonts/tfm/uhc/umj/umjuo16.tfm + RELOC/fonts/tfm/uhc/umj/umjuo17.tfm + RELOC/fonts/tfm/uhc/umj/umjuo20.tfm + RELOC/fonts/tfm/uhc/umj/umjuo21.tfm + RELOC/fonts/tfm/uhc/umj/umjuo22.tfm + RELOC/fonts/tfm/uhc/umj/umjuo23.tfm + RELOC/fonts/tfm/uhc/umj/umjuo24.tfm + RELOC/fonts/tfm/uhc/umj/umjuo25.tfm + RELOC/fonts/tfm/uhc/umj/umjuo26.tfm + RELOC/fonts/tfm/uhc/umj/umjuo27.tfm + RELOC/fonts/tfm/uhc/umj/umjuo28.tfm + RELOC/fonts/tfm/uhc/umj/umjuo29.tfm + RELOC/fonts/tfm/uhc/umj/umjuo30.tfm + RELOC/fonts/tfm/uhc/umj/umjuo31.tfm + RELOC/fonts/tfm/uhc/umj/umjuo32.tfm + RELOC/fonts/tfm/uhc/umj/umjuo33.tfm + RELOC/fonts/tfm/uhc/umj/umjuo34.tfm + RELOC/fonts/tfm/uhc/umj/umjuo35.tfm + RELOC/fonts/tfm/uhc/umj/umjuo36.tfm + RELOC/fonts/tfm/uhc/umj/umjuo37.tfm + RELOC/fonts/tfm/uhc/umj/umjuo38.tfm + RELOC/fonts/tfm/uhc/umj/umjx00.tfm + RELOC/fonts/tfm/uhc/umj/umjx01.tfm + RELOC/fonts/tfm/uhc/umj/umjx02.tfm + RELOC/fonts/tfm/uhc/umj/umjx03.tfm + RELOC/fonts/tfm/uhc/umj/umjx04.tfm + RELOC/fonts/tfm/uhc/umj/umjx05.tfm + RELOC/fonts/tfm/uhc/umj/umjx10.tfm + RELOC/fonts/tfm/uhc/umj/umjx11.tfm + RELOC/fonts/tfm/uhc/umj/umjx12.tfm + RELOC/fonts/tfm/uhc/umj/umjx13.tfm + RELOC/fonts/tfm/uhc/umj/umjx14.tfm + RELOC/fonts/tfm/uhc/umj/umjx15.tfm + RELOC/fonts/tfm/uhc/umj/umjx16.tfm + RELOC/fonts/tfm/uhc/umj/umjx17.tfm + RELOC/fonts/tfm/uhc/umj/umjx20.tfm + RELOC/fonts/tfm/uhc/umj/umjx21.tfm + RELOC/fonts/tfm/uhc/umj/umjx22.tfm + RELOC/fonts/tfm/uhc/umj/umjx23.tfm + RELOC/fonts/tfm/uhc/umj/umjx24.tfm + RELOC/fonts/tfm/uhc/umj/umjx25.tfm + RELOC/fonts/tfm/uhc/umj/umjx26.tfm + RELOC/fonts/tfm/uhc/umj/umjx27.tfm + RELOC/fonts/tfm/uhc/umj/umjx28.tfm + RELOC/fonts/tfm/uhc/umj/umjx29.tfm + RELOC/fonts/tfm/uhc/umj/umjx30.tfm + RELOC/fonts/tfm/uhc/umj/umjx31.tfm + RELOC/fonts/tfm/uhc/umj/umjx32.tfm + RELOC/fonts/tfm/uhc/umj/umjx33.tfm + RELOC/fonts/tfm/uhc/umj/umjx34.tfm + RELOC/fonts/tfm/uhc/umj/umjx35.tfm + RELOC/fonts/tfm/uhc/umj/umjx36.tfm + RELOC/fonts/tfm/uhc/umj/umjx37.tfm + RELOC/fonts/tfm/uhc/umj/umjx38.tfm + RELOC/fonts/tfm/uhc/umj/umjxo00.tfm + RELOC/fonts/tfm/uhc/umj/umjxo01.tfm + RELOC/fonts/tfm/uhc/umj/umjxo02.tfm + RELOC/fonts/tfm/uhc/umj/umjxo03.tfm + RELOC/fonts/tfm/uhc/umj/umjxo04.tfm + RELOC/fonts/tfm/uhc/umj/umjxo05.tfm + RELOC/fonts/tfm/uhc/umj/umjxo10.tfm + RELOC/fonts/tfm/uhc/umj/umjxo11.tfm + RELOC/fonts/tfm/uhc/umj/umjxo12.tfm + RELOC/fonts/tfm/uhc/umj/umjxo13.tfm + RELOC/fonts/tfm/uhc/umj/umjxo14.tfm + RELOC/fonts/tfm/uhc/umj/umjxo15.tfm + RELOC/fonts/tfm/uhc/umj/umjxo16.tfm + RELOC/fonts/tfm/uhc/umj/umjxo17.tfm + RELOC/fonts/tfm/uhc/umj/umjxo20.tfm + RELOC/fonts/tfm/uhc/umj/umjxo21.tfm + RELOC/fonts/tfm/uhc/umj/umjxo22.tfm + RELOC/fonts/tfm/uhc/umj/umjxo23.tfm + RELOC/fonts/tfm/uhc/umj/umjxo24.tfm + RELOC/fonts/tfm/uhc/umj/umjxo25.tfm + RELOC/fonts/tfm/uhc/umj/umjxo26.tfm + RELOC/fonts/tfm/uhc/umj/umjxo27.tfm + RELOC/fonts/tfm/uhc/umj/umjxo28.tfm + RELOC/fonts/tfm/uhc/umj/umjxo29.tfm + RELOC/fonts/tfm/uhc/umj/umjxo30.tfm + RELOC/fonts/tfm/uhc/umj/umjxo31.tfm + RELOC/fonts/tfm/uhc/umj/umjxo32.tfm + RELOC/fonts/tfm/uhc/umj/umjxo33.tfm + RELOC/fonts/tfm/uhc/umj/umjxo34.tfm + RELOC/fonts/tfm/uhc/umj/umjxo35.tfm + RELOC/fonts/tfm/uhc/umj/umjxo36.tfm + RELOC/fonts/tfm/uhc/umj/umjxo37.tfm + RELOC/fonts/tfm/uhc/umj/umjxo38.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcfa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjfa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjube.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjufa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxfa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoff.tfm + RELOC/fonts/tfm/uhc/wmj/wmj0.tfm + RELOC/fonts/tfm/uhc/wmj/wmj04.tfm + RELOC/fonts/tfm/uhc/wmj/wmj05.tfm + RELOC/fonts/tfm/uhc/wmj/wmj06.tfm + RELOC/fonts/tfm/uhc/wmj/wmj07.tfm + RELOC/fonts/tfm/uhc/wmj/wmj1.tfm + RELOC/fonts/tfm/uhc/wmj/wmj10.tfm + RELOC/fonts/tfm/uhc/wmj/wmj11.tfm + RELOC/fonts/tfm/uhc/wmj/wmj12.tfm + RELOC/fonts/tfm/uhc/wmj/wmj13.tfm + RELOC/fonts/tfm/uhc/wmj/wmj14.tfm + RELOC/fonts/tfm/uhc/wmj/wmj15.tfm + RELOC/fonts/tfm/uhc/wmj/wmj16.tfm + RELOC/fonts/tfm/uhc/wmj/wmj17.tfm + RELOC/fonts/tfm/uhc/wmj/wmj18.tfm + RELOC/fonts/tfm/uhc/wmj/wmj19.tfm + RELOC/fonts/tfm/uhc/wmj/wmj2.tfm + RELOC/fonts/tfm/uhc/wmj/wmj20.tfm + RELOC/fonts/tfm/uhc/wmj/wmj21.tfm + RELOC/fonts/tfm/uhc/wmj/wmj22.tfm + RELOC/fonts/tfm/uhc/wmj/wmj23.tfm + RELOC/fonts/tfm/uhc/wmj/wmj24.tfm + RELOC/fonts/tfm/uhc/wmj/wmj25.tfm + RELOC/fonts/tfm/uhc/wmj/wmj26.tfm + RELOC/fonts/tfm/uhc/wmj/wmj27.tfm + RELOC/fonts/tfm/uhc/wmj/wmj28.tfm + RELOC/fonts/tfm/uhc/wmj/wmj29.tfm + RELOC/fonts/tfm/uhc/wmj/wmj3.tfm + RELOC/fonts/tfm/uhc/wmj/wmj4.tfm + RELOC/fonts/tfm/uhc/wmj/wmj5.tfm + RELOC/fonts/tfm/uhc/wmj/wmj6.tfm + RELOC/fonts/tfm/uhc/wmj/wmj7.tfm + RELOC/fonts/tfm/uhc/wmj/wmj8.tfm + RELOC/fonts/tfm/uhc/wmj/wmj9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo9.tfm + RELOC/fonts/tfm/uhc/wmj/wmju0.tfm + RELOC/fonts/tfm/uhc/wmj/wmju04.tfm + RELOC/fonts/tfm/uhc/wmj/wmju05.tfm + RELOC/fonts/tfm/uhc/wmj/wmju06.tfm + RELOC/fonts/tfm/uhc/wmj/wmju07.tfm + RELOC/fonts/tfm/uhc/wmj/wmju1.tfm + RELOC/fonts/tfm/uhc/wmj/wmju10.tfm + RELOC/fonts/tfm/uhc/wmj/wmju11.tfm + RELOC/fonts/tfm/uhc/wmj/wmju12.tfm + RELOC/fonts/tfm/uhc/wmj/wmju13.tfm + RELOC/fonts/tfm/uhc/wmj/wmju14.tfm + RELOC/fonts/tfm/uhc/wmj/wmju15.tfm + RELOC/fonts/tfm/uhc/wmj/wmju16.tfm + RELOC/fonts/tfm/uhc/wmj/wmju17.tfm + RELOC/fonts/tfm/uhc/wmj/wmju18.tfm + RELOC/fonts/tfm/uhc/wmj/wmju19.tfm + RELOC/fonts/tfm/uhc/wmj/wmju2.tfm + RELOC/fonts/tfm/uhc/wmj/wmju20.tfm + RELOC/fonts/tfm/uhc/wmj/wmju21.tfm + RELOC/fonts/tfm/uhc/wmj/wmju22.tfm + RELOC/fonts/tfm/uhc/wmj/wmju23.tfm + RELOC/fonts/tfm/uhc/wmj/wmju24.tfm + RELOC/fonts/tfm/uhc/wmj/wmju25.tfm + RELOC/fonts/tfm/uhc/wmj/wmju26.tfm + RELOC/fonts/tfm/uhc/wmj/wmju27.tfm + RELOC/fonts/tfm/uhc/wmj/wmju28.tfm + RELOC/fonts/tfm/uhc/wmj/wmju29.tfm + RELOC/fonts/tfm/uhc/wmj/wmju3.tfm + RELOC/fonts/tfm/uhc/wmj/wmju4.tfm + RELOC/fonts/tfm/uhc/wmj/wmju5.tfm + RELOC/fonts/tfm/uhc/wmj/wmju6.tfm + RELOC/fonts/tfm/uhc/wmj/wmju7.tfm + RELOC/fonts/tfm/uhc/wmj/wmju8.tfm + RELOC/fonts/tfm/uhc/wmj/wmju9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo9.tfm + RELOC/fonts/type1/uhc/umj/umj00.pfb + RELOC/fonts/type1/uhc/umj/umj01.pfb + RELOC/fonts/type1/uhc/umj/umj02.pfb + RELOC/fonts/type1/uhc/umj/umj03.pfb + RELOC/fonts/type1/uhc/umj/umj04.pfb + RELOC/fonts/type1/uhc/umj/umj05.pfb + RELOC/fonts/type1/uhc/umj/umj10.pfb + RELOC/fonts/type1/uhc/umj/umj11.pfb + RELOC/fonts/type1/uhc/umj/umj12.pfb + RELOC/fonts/type1/uhc/umj/umj13.pfb + RELOC/fonts/type1/uhc/umj/umj14.pfb + RELOC/fonts/type1/uhc/umj/umj15.pfb + RELOC/fonts/type1/uhc/umj/umj16.pfb + RELOC/fonts/type1/uhc/umj/umj17.pfb + RELOC/fonts/type1/uhc/umj/umj20.pfb + RELOC/fonts/type1/uhc/umj/umj21.pfb + RELOC/fonts/type1/uhc/umj/umj22.pfb + RELOC/fonts/type1/uhc/umj/umj23.pfb + RELOC/fonts/type1/uhc/umj/umj24.pfb + RELOC/fonts/type1/uhc/umj/umj25.pfb + RELOC/fonts/type1/uhc/umj/umj26.pfb + RELOC/fonts/type1/uhc/umj/umj27.pfb + RELOC/fonts/type1/uhc/umj/umj28.pfb + RELOC/fonts/type1/uhc/umj/umj29.pfb + RELOC/fonts/type1/uhc/umj/umj30.pfb + RELOC/fonts/type1/uhc/umj/umj31.pfb + RELOC/fonts/type1/uhc/umj/umj32.pfb + RELOC/fonts/type1/uhc/umj/umj33.pfb + RELOC/fonts/type1/uhc/umj/umj34.pfb + RELOC/fonts/type1/uhc/umj/umj35.pfb + RELOC/fonts/type1/uhc/umj/umj36.pfb + RELOC/fonts/type1/uhc/umj/umj37.pfb + RELOC/fonts/type1/uhc/umj/umj38.pfb + RELOC/fonts/vf/uhc/uwmj/uwmj00.vf + RELOC/fonts/vf/uhc/uwmj/uwmj01.vf + RELOC/fonts/vf/uhc/uwmj/uwmj02.vf + RELOC/fonts/vf/uhc/uwmj/uwmj03.vf + RELOC/fonts/vf/uhc/uwmj/uwmj04.vf + RELOC/fonts/vf/uhc/uwmj/uwmj20.vf + RELOC/fonts/vf/uhc/uwmj/uwmj21.vf + RELOC/fonts/vf/uhc/uwmj/uwmj22.vf + RELOC/fonts/vf/uhc/uwmj/uwmj23.vf + RELOC/fonts/vf/uhc/uwmj/uwmj24.vf + RELOC/fonts/vf/uhc/uwmj/uwmj25.vf + RELOC/fonts/vf/uhc/uwmj/uwmj26.vf + RELOC/fonts/vf/uhc/uwmj/uwmj30.vf + RELOC/fonts/vf/uhc/uwmj/uwmj31.vf + RELOC/fonts/vf/uhc/uwmj/uwmj32.vf + RELOC/fonts/vf/uhc/uwmj/uwmj33.vf + RELOC/fonts/vf/uhc/uwmj/uwmj4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj50.vf + RELOC/fonts/vf/uhc/uwmj/uwmj51.vf + RELOC/fonts/vf/uhc/uwmj/uwmj52.vf + RELOC/fonts/vf/uhc/uwmj/uwmj53.vf + RELOC/fonts/vf/uhc/uwmj/uwmj54.vf + RELOC/fonts/vf/uhc/uwmj/uwmj55.vf + RELOC/fonts/vf/uhc/uwmj/uwmj56.vf + RELOC/fonts/vf/uhc/uwmj/uwmj57.vf + RELOC/fonts/vf/uhc/uwmj/uwmj58.vf + RELOC/fonts/vf/uhc/uwmj/uwmj59.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj60.vf + RELOC/fonts/vf/uhc/uwmj/uwmj61.vf + RELOC/fonts/vf/uhc/uwmj/uwmj62.vf + RELOC/fonts/vf/uhc/uwmj/uwmj63.vf + RELOC/fonts/vf/uhc/uwmj/uwmj64.vf + RELOC/fonts/vf/uhc/uwmj/uwmj65.vf + RELOC/fonts/vf/uhc/uwmj/uwmj66.vf + RELOC/fonts/vf/uhc/uwmj/uwmj67.vf + RELOC/fonts/vf/uhc/uwmj/uwmj68.vf + RELOC/fonts/vf/uhc/uwmj/uwmj69.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj70.vf + RELOC/fonts/vf/uhc/uwmj/uwmj71.vf + RELOC/fonts/vf/uhc/uwmj/uwmj72.vf + RELOC/fonts/vf/uhc/uwmj/uwmj73.vf + RELOC/fonts/vf/uhc/uwmj/uwmj74.vf + RELOC/fonts/vf/uhc/uwmj/uwmj75.vf + RELOC/fonts/vf/uhc/uwmj/uwmj76.vf + RELOC/fonts/vf/uhc/uwmj/uwmj77.vf + RELOC/fonts/vf/uhc/uwmj/uwmj78.vf + RELOC/fonts/vf/uhc/uwmj/uwmj79.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj80.vf + RELOC/fonts/vf/uhc/uwmj/uwmj81.vf + RELOC/fonts/vf/uhc/uwmj/uwmj82.vf + RELOC/fonts/vf/uhc/uwmj/uwmj83.vf + RELOC/fonts/vf/uhc/uwmj/uwmj84.vf + RELOC/fonts/vf/uhc/uwmj/uwmj85.vf + RELOC/fonts/vf/uhc/uwmj/uwmj86.vf + RELOC/fonts/vf/uhc/uwmj/uwmj87.vf + RELOC/fonts/vf/uhc/uwmj/uwmj88.vf + RELOC/fonts/vf/uhc/uwmj/uwmj89.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj90.vf + RELOC/fonts/vf/uhc/uwmj/uwmj91.vf + RELOC/fonts/vf/uhc/uwmj/uwmj92.vf + RELOC/fonts/vf/uhc/uwmj/uwmj93.vf + RELOC/fonts/vf/uhc/uwmj/uwmj94.vf + RELOC/fonts/vf/uhc/uwmj/uwmj95.vf + RELOC/fonts/vf/uhc/uwmj/uwmj96.vf + RELOC/fonts/vf/uhc/uwmj/uwmj97.vf + RELOC/fonts/vf/uhc/uwmj/uwmj98.vf + RELOC/fonts/vf/uhc/uwmj/uwmj99.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcfa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjfa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoff.vf + RELOC/fonts/vf/uhc/uwmj/uwmju00.vf + RELOC/fonts/vf/uhc/uwmj/uwmju01.vf + RELOC/fonts/vf/uhc/uwmj/uwmju02.vf + RELOC/fonts/vf/uhc/uwmj/uwmju03.vf + RELOC/fonts/vf/uhc/uwmj/uwmju04.vf + RELOC/fonts/vf/uhc/uwmj/uwmju20.vf + RELOC/fonts/vf/uhc/uwmj/uwmju21.vf + RELOC/fonts/vf/uhc/uwmj/uwmju22.vf + RELOC/fonts/vf/uhc/uwmj/uwmju23.vf + RELOC/fonts/vf/uhc/uwmj/uwmju24.vf + RELOC/fonts/vf/uhc/uwmj/uwmju25.vf + RELOC/fonts/vf/uhc/uwmj/uwmju26.vf + RELOC/fonts/vf/uhc/uwmj/uwmju30.vf + RELOC/fonts/vf/uhc/uwmj/uwmju31.vf + RELOC/fonts/vf/uhc/uwmj/uwmju32.vf + RELOC/fonts/vf/uhc/uwmj/uwmju33.vf + RELOC/fonts/vf/uhc/uwmj/uwmju4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju50.vf + RELOC/fonts/vf/uhc/uwmj/uwmju51.vf + RELOC/fonts/vf/uhc/uwmj/uwmju52.vf + RELOC/fonts/vf/uhc/uwmj/uwmju53.vf + RELOC/fonts/vf/uhc/uwmj/uwmju54.vf + RELOC/fonts/vf/uhc/uwmj/uwmju55.vf + RELOC/fonts/vf/uhc/uwmj/uwmju56.vf + RELOC/fonts/vf/uhc/uwmj/uwmju57.vf + RELOC/fonts/vf/uhc/uwmj/uwmju58.vf + RELOC/fonts/vf/uhc/uwmj/uwmju59.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju60.vf + RELOC/fonts/vf/uhc/uwmj/uwmju61.vf + RELOC/fonts/vf/uhc/uwmj/uwmju62.vf + RELOC/fonts/vf/uhc/uwmj/uwmju63.vf + RELOC/fonts/vf/uhc/uwmj/uwmju64.vf + RELOC/fonts/vf/uhc/uwmj/uwmju65.vf + RELOC/fonts/vf/uhc/uwmj/uwmju66.vf + RELOC/fonts/vf/uhc/uwmj/uwmju67.vf + RELOC/fonts/vf/uhc/uwmj/uwmju68.vf + RELOC/fonts/vf/uhc/uwmj/uwmju69.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju70.vf + RELOC/fonts/vf/uhc/uwmj/uwmju71.vf + RELOC/fonts/vf/uhc/uwmj/uwmju72.vf + RELOC/fonts/vf/uhc/uwmj/uwmju73.vf + RELOC/fonts/vf/uhc/uwmj/uwmju74.vf + RELOC/fonts/vf/uhc/uwmj/uwmju75.vf + RELOC/fonts/vf/uhc/uwmj/uwmju76.vf + RELOC/fonts/vf/uhc/uwmj/uwmju77.vf + RELOC/fonts/vf/uhc/uwmj/uwmju78.vf + RELOC/fonts/vf/uhc/uwmj/uwmju79.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju80.vf + RELOC/fonts/vf/uhc/uwmj/uwmju81.vf + RELOC/fonts/vf/uhc/uwmj/uwmju82.vf + RELOC/fonts/vf/uhc/uwmj/uwmju83.vf + RELOC/fonts/vf/uhc/uwmj/uwmju84.vf + RELOC/fonts/vf/uhc/uwmj/uwmju85.vf + RELOC/fonts/vf/uhc/uwmj/uwmju86.vf + RELOC/fonts/vf/uhc/uwmj/uwmju87.vf + RELOC/fonts/vf/uhc/uwmj/uwmju88.vf + RELOC/fonts/vf/uhc/uwmj/uwmju89.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju90.vf + RELOC/fonts/vf/uhc/uwmj/uwmju91.vf + RELOC/fonts/vf/uhc/uwmj/uwmju92.vf + RELOC/fonts/vf/uhc/uwmj/uwmju93.vf + RELOC/fonts/vf/uhc/uwmj/uwmju94.vf + RELOC/fonts/vf/uhc/uwmj/uwmju95.vf + RELOC/fonts/vf/uhc/uwmj/uwmju96.vf + RELOC/fonts/vf/uhc/uwmj/uwmju97.vf + RELOC/fonts/vf/uhc/uwmj/uwmju98.vf + RELOC/fonts/vf/uhc/uwmj/uwmju99.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjube.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjufa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxfa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoff.vf + RELOC/fonts/vf/uhc/wmj/wmj0.vf + RELOC/fonts/vf/uhc/wmj/wmj04.vf + RELOC/fonts/vf/uhc/wmj/wmj05.vf + RELOC/fonts/vf/uhc/wmj/wmj06.vf + RELOC/fonts/vf/uhc/wmj/wmj07.vf + RELOC/fonts/vf/uhc/wmj/wmj1.vf + RELOC/fonts/vf/uhc/wmj/wmj10.vf + RELOC/fonts/vf/uhc/wmj/wmj11.vf + RELOC/fonts/vf/uhc/wmj/wmj12.vf + RELOC/fonts/vf/uhc/wmj/wmj13.vf + RELOC/fonts/vf/uhc/wmj/wmj14.vf + RELOC/fonts/vf/uhc/wmj/wmj15.vf + RELOC/fonts/vf/uhc/wmj/wmj16.vf + RELOC/fonts/vf/uhc/wmj/wmj17.vf + RELOC/fonts/vf/uhc/wmj/wmj18.vf + RELOC/fonts/vf/uhc/wmj/wmj19.vf + RELOC/fonts/vf/uhc/wmj/wmj2.vf + RELOC/fonts/vf/uhc/wmj/wmj20.vf + RELOC/fonts/vf/uhc/wmj/wmj21.vf + RELOC/fonts/vf/uhc/wmj/wmj22.vf + RELOC/fonts/vf/uhc/wmj/wmj23.vf + RELOC/fonts/vf/uhc/wmj/wmj24.vf + RELOC/fonts/vf/uhc/wmj/wmj25.vf + RELOC/fonts/vf/uhc/wmj/wmj26.vf + RELOC/fonts/vf/uhc/wmj/wmj27.vf + RELOC/fonts/vf/uhc/wmj/wmj28.vf + RELOC/fonts/vf/uhc/wmj/wmj29.vf + RELOC/fonts/vf/uhc/wmj/wmj3.vf + RELOC/fonts/vf/uhc/wmj/wmj4.vf + RELOC/fonts/vf/uhc/wmj/wmj5.vf + RELOC/fonts/vf/uhc/wmj/wmj6.vf + RELOC/fonts/vf/uhc/wmj/wmj7.vf + RELOC/fonts/vf/uhc/wmj/wmj8.vf + RELOC/fonts/vf/uhc/wmj/wmj9.vf + RELOC/fonts/vf/uhc/wmj/wmjc0.vf + RELOC/fonts/vf/uhc/wmj/wmjc04.vf + RELOC/fonts/vf/uhc/wmj/wmjc05.vf + RELOC/fonts/vf/uhc/wmj/wmjc06.vf + RELOC/fonts/vf/uhc/wmj/wmjc07.vf + RELOC/fonts/vf/uhc/wmj/wmjc1.vf + RELOC/fonts/vf/uhc/wmj/wmjc10.vf + RELOC/fonts/vf/uhc/wmj/wmjc11.vf + RELOC/fonts/vf/uhc/wmj/wmjc12.vf + RELOC/fonts/vf/uhc/wmj/wmjc13.vf + RELOC/fonts/vf/uhc/wmj/wmjc14.vf + RELOC/fonts/vf/uhc/wmj/wmjc15.vf + RELOC/fonts/vf/uhc/wmj/wmjc16.vf + RELOC/fonts/vf/uhc/wmj/wmjc17.vf + RELOC/fonts/vf/uhc/wmj/wmjc18.vf + RELOC/fonts/vf/uhc/wmj/wmjc19.vf + RELOC/fonts/vf/uhc/wmj/wmjc2.vf + RELOC/fonts/vf/uhc/wmj/wmjc20.vf + RELOC/fonts/vf/uhc/wmj/wmjc21.vf + RELOC/fonts/vf/uhc/wmj/wmjc22.vf + RELOC/fonts/vf/uhc/wmj/wmjc23.vf + RELOC/fonts/vf/uhc/wmj/wmjc24.vf + RELOC/fonts/vf/uhc/wmj/wmjc25.vf + RELOC/fonts/vf/uhc/wmj/wmjc26.vf + RELOC/fonts/vf/uhc/wmj/wmjc27.vf + RELOC/fonts/vf/uhc/wmj/wmjc28.vf + RELOC/fonts/vf/uhc/wmj/wmjc29.vf + RELOC/fonts/vf/uhc/wmj/wmjc3.vf + RELOC/fonts/vf/uhc/wmj/wmjc4.vf + RELOC/fonts/vf/uhc/wmj/wmjc5.vf + RELOC/fonts/vf/uhc/wmj/wmjc6.vf + RELOC/fonts/vf/uhc/wmj/wmjc7.vf + RELOC/fonts/vf/uhc/wmj/wmjc8.vf + RELOC/fonts/vf/uhc/wmj/wmjc9.vf + RELOC/fonts/vf/uhc/wmj/wmjco0.vf + RELOC/fonts/vf/uhc/wmj/wmjco04.vf + RELOC/fonts/vf/uhc/wmj/wmjco05.vf + RELOC/fonts/vf/uhc/wmj/wmjco06.vf + RELOC/fonts/vf/uhc/wmj/wmjco07.vf + RELOC/fonts/vf/uhc/wmj/wmjco1.vf + RELOC/fonts/vf/uhc/wmj/wmjco10.vf + RELOC/fonts/vf/uhc/wmj/wmjco11.vf + RELOC/fonts/vf/uhc/wmj/wmjco12.vf + RELOC/fonts/vf/uhc/wmj/wmjco13.vf + RELOC/fonts/vf/uhc/wmj/wmjco14.vf + RELOC/fonts/vf/uhc/wmj/wmjco15.vf + RELOC/fonts/vf/uhc/wmj/wmjco16.vf + RELOC/fonts/vf/uhc/wmj/wmjco17.vf + RELOC/fonts/vf/uhc/wmj/wmjco18.vf + RELOC/fonts/vf/uhc/wmj/wmjco19.vf + RELOC/fonts/vf/uhc/wmj/wmjco2.vf + RELOC/fonts/vf/uhc/wmj/wmjco20.vf + RELOC/fonts/vf/uhc/wmj/wmjco21.vf + RELOC/fonts/vf/uhc/wmj/wmjco22.vf + RELOC/fonts/vf/uhc/wmj/wmjco23.vf + RELOC/fonts/vf/uhc/wmj/wmjco24.vf + RELOC/fonts/vf/uhc/wmj/wmjco25.vf + RELOC/fonts/vf/uhc/wmj/wmjco26.vf + RELOC/fonts/vf/uhc/wmj/wmjco27.vf + RELOC/fonts/vf/uhc/wmj/wmjco28.vf + RELOC/fonts/vf/uhc/wmj/wmjco29.vf + RELOC/fonts/vf/uhc/wmj/wmjco3.vf + RELOC/fonts/vf/uhc/wmj/wmjco4.vf + RELOC/fonts/vf/uhc/wmj/wmjco5.vf + RELOC/fonts/vf/uhc/wmj/wmjco6.vf + RELOC/fonts/vf/uhc/wmj/wmjco7.vf + RELOC/fonts/vf/uhc/wmj/wmjco8.vf + RELOC/fonts/vf/uhc/wmj/wmjco9.vf + RELOC/fonts/vf/uhc/wmj/wmjo0.vf + RELOC/fonts/vf/uhc/wmj/wmjo04.vf + RELOC/fonts/vf/uhc/wmj/wmjo05.vf + RELOC/fonts/vf/uhc/wmj/wmjo06.vf + RELOC/fonts/vf/uhc/wmj/wmjo07.vf + RELOC/fonts/vf/uhc/wmj/wmjo1.vf + RELOC/fonts/vf/uhc/wmj/wmjo10.vf + RELOC/fonts/vf/uhc/wmj/wmjo11.vf + RELOC/fonts/vf/uhc/wmj/wmjo12.vf + RELOC/fonts/vf/uhc/wmj/wmjo13.vf + RELOC/fonts/vf/uhc/wmj/wmjo14.vf + RELOC/fonts/vf/uhc/wmj/wmjo15.vf + RELOC/fonts/vf/uhc/wmj/wmjo16.vf + RELOC/fonts/vf/uhc/wmj/wmjo17.vf + RELOC/fonts/vf/uhc/wmj/wmjo18.vf + RELOC/fonts/vf/uhc/wmj/wmjo19.vf + RELOC/fonts/vf/uhc/wmj/wmjo2.vf + RELOC/fonts/vf/uhc/wmj/wmjo20.vf + RELOC/fonts/vf/uhc/wmj/wmjo21.vf + RELOC/fonts/vf/uhc/wmj/wmjo22.vf + RELOC/fonts/vf/uhc/wmj/wmjo23.vf + RELOC/fonts/vf/uhc/wmj/wmjo24.vf + RELOC/fonts/vf/uhc/wmj/wmjo25.vf + RELOC/fonts/vf/uhc/wmj/wmjo26.vf + RELOC/fonts/vf/uhc/wmj/wmjo27.vf + RELOC/fonts/vf/uhc/wmj/wmjo28.vf + RELOC/fonts/vf/uhc/wmj/wmjo29.vf + RELOC/fonts/vf/uhc/wmj/wmjo3.vf + RELOC/fonts/vf/uhc/wmj/wmjo4.vf + RELOC/fonts/vf/uhc/wmj/wmjo5.vf + RELOC/fonts/vf/uhc/wmj/wmjo6.vf + RELOC/fonts/vf/uhc/wmj/wmjo7.vf + RELOC/fonts/vf/uhc/wmj/wmjo8.vf + RELOC/fonts/vf/uhc/wmj/wmjo9.vf + RELOC/fonts/vf/uhc/wmj/wmju0.vf + RELOC/fonts/vf/uhc/wmj/wmju04.vf + RELOC/fonts/vf/uhc/wmj/wmju05.vf + RELOC/fonts/vf/uhc/wmj/wmju06.vf + RELOC/fonts/vf/uhc/wmj/wmju07.vf + RELOC/fonts/vf/uhc/wmj/wmju1.vf + RELOC/fonts/vf/uhc/wmj/wmju10.vf + RELOC/fonts/vf/uhc/wmj/wmju11.vf + RELOC/fonts/vf/uhc/wmj/wmju12.vf + RELOC/fonts/vf/uhc/wmj/wmju13.vf + RELOC/fonts/vf/uhc/wmj/wmju14.vf + RELOC/fonts/vf/uhc/wmj/wmju15.vf + RELOC/fonts/vf/uhc/wmj/wmju16.vf + RELOC/fonts/vf/uhc/wmj/wmju17.vf + RELOC/fonts/vf/uhc/wmj/wmju18.vf + RELOC/fonts/vf/uhc/wmj/wmju19.vf + RELOC/fonts/vf/uhc/wmj/wmju2.vf + RELOC/fonts/vf/uhc/wmj/wmju20.vf + RELOC/fonts/vf/uhc/wmj/wmju21.vf + RELOC/fonts/vf/uhc/wmj/wmju22.vf + RELOC/fonts/vf/uhc/wmj/wmju23.vf + RELOC/fonts/vf/uhc/wmj/wmju24.vf + RELOC/fonts/vf/uhc/wmj/wmju25.vf + RELOC/fonts/vf/uhc/wmj/wmju26.vf + RELOC/fonts/vf/uhc/wmj/wmju27.vf + RELOC/fonts/vf/uhc/wmj/wmju28.vf + RELOC/fonts/vf/uhc/wmj/wmju29.vf + RELOC/fonts/vf/uhc/wmj/wmju3.vf + RELOC/fonts/vf/uhc/wmj/wmju4.vf + RELOC/fonts/vf/uhc/wmj/wmju5.vf + RELOC/fonts/vf/uhc/wmj/wmju6.vf + RELOC/fonts/vf/uhc/wmj/wmju7.vf + RELOC/fonts/vf/uhc/wmj/wmju8.vf + RELOC/fonts/vf/uhc/wmj/wmju9.vf + RELOC/fonts/vf/uhc/wmj/wmjuo0.vf + RELOC/fonts/vf/uhc/wmj/wmjuo04.vf + RELOC/fonts/vf/uhc/wmj/wmjuo05.vf + RELOC/fonts/vf/uhc/wmj/wmjuo06.vf + RELOC/fonts/vf/uhc/wmj/wmjuo07.vf + RELOC/fonts/vf/uhc/wmj/wmjuo1.vf + RELOC/fonts/vf/uhc/wmj/wmjuo10.vf + RELOC/fonts/vf/uhc/wmj/wmjuo11.vf + RELOC/fonts/vf/uhc/wmj/wmjuo12.vf + RELOC/fonts/vf/uhc/wmj/wmjuo13.vf + RELOC/fonts/vf/uhc/wmj/wmjuo14.vf + RELOC/fonts/vf/uhc/wmj/wmjuo15.vf + RELOC/fonts/vf/uhc/wmj/wmjuo16.vf + RELOC/fonts/vf/uhc/wmj/wmjuo17.vf + RELOC/fonts/vf/uhc/wmj/wmjuo18.vf + RELOC/fonts/vf/uhc/wmj/wmjuo19.vf + RELOC/fonts/vf/uhc/wmj/wmjuo2.vf + RELOC/fonts/vf/uhc/wmj/wmjuo20.vf + RELOC/fonts/vf/uhc/wmj/wmjuo21.vf + RELOC/fonts/vf/uhc/wmj/wmjuo22.vf + RELOC/fonts/vf/uhc/wmj/wmjuo23.vf + RELOC/fonts/vf/uhc/wmj/wmjuo24.vf + RELOC/fonts/vf/uhc/wmj/wmjuo25.vf + RELOC/fonts/vf/uhc/wmj/wmjuo26.vf + RELOC/fonts/vf/uhc/wmj/wmjuo27.vf + RELOC/fonts/vf/uhc/wmj/wmjuo28.vf + RELOC/fonts/vf/uhc/wmj/wmjuo29.vf + RELOC/fonts/vf/uhc/wmj/wmjuo3.vf + RELOC/fonts/vf/uhc/wmj/wmjuo4.vf + RELOC/fonts/vf/uhc/wmj/wmjuo5.vf + RELOC/fonts/vf/uhc/wmj/wmjuo6.vf + RELOC/fonts/vf/uhc/wmj/wmjuo7.vf + RELOC/fonts/vf/uhc/wmj/wmjuo8.vf + RELOC/fonts/vf/uhc/wmj/wmjuo9.vf + RELOC/fonts/vf/uhc/wmj/wmjx0.vf + RELOC/fonts/vf/uhc/wmj/wmjx04.vf + RELOC/fonts/vf/uhc/wmj/wmjx05.vf + RELOC/fonts/vf/uhc/wmj/wmjx06.vf + RELOC/fonts/vf/uhc/wmj/wmjx07.vf + RELOC/fonts/vf/uhc/wmj/wmjx1.vf + RELOC/fonts/vf/uhc/wmj/wmjx10.vf + RELOC/fonts/vf/uhc/wmj/wmjx11.vf + RELOC/fonts/vf/uhc/wmj/wmjx12.vf + RELOC/fonts/vf/uhc/wmj/wmjx13.vf + RELOC/fonts/vf/uhc/wmj/wmjx14.vf + RELOC/fonts/vf/uhc/wmj/wmjx15.vf + RELOC/fonts/vf/uhc/wmj/wmjx16.vf + RELOC/fonts/vf/uhc/wmj/wmjx17.vf + RELOC/fonts/vf/uhc/wmj/wmjx18.vf + RELOC/fonts/vf/uhc/wmj/wmjx19.vf + RELOC/fonts/vf/uhc/wmj/wmjx2.vf + RELOC/fonts/vf/uhc/wmj/wmjx20.vf + RELOC/fonts/vf/uhc/wmj/wmjx21.vf + RELOC/fonts/vf/uhc/wmj/wmjx22.vf + RELOC/fonts/vf/uhc/wmj/wmjx23.vf + RELOC/fonts/vf/uhc/wmj/wmjx24.vf + RELOC/fonts/vf/uhc/wmj/wmjx25.vf + RELOC/fonts/vf/uhc/wmj/wmjx26.vf + RELOC/fonts/vf/uhc/wmj/wmjx27.vf + RELOC/fonts/vf/uhc/wmj/wmjx28.vf + RELOC/fonts/vf/uhc/wmj/wmjx29.vf + RELOC/fonts/vf/uhc/wmj/wmjx3.vf + RELOC/fonts/vf/uhc/wmj/wmjx4.vf + RELOC/fonts/vf/uhc/wmj/wmjx5.vf + RELOC/fonts/vf/uhc/wmj/wmjx6.vf + RELOC/fonts/vf/uhc/wmj/wmjx7.vf + RELOC/fonts/vf/uhc/wmj/wmjx8.vf + RELOC/fonts/vf/uhc/wmj/wmjx9.vf + RELOC/fonts/vf/uhc/wmj/wmjxo0.vf + RELOC/fonts/vf/uhc/wmj/wmjxo04.vf + RELOC/fonts/vf/uhc/wmj/wmjxo05.vf + RELOC/fonts/vf/uhc/wmj/wmjxo06.vf + RELOC/fonts/vf/uhc/wmj/wmjxo07.vf + RELOC/fonts/vf/uhc/wmj/wmjxo1.vf + RELOC/fonts/vf/uhc/wmj/wmjxo10.vf + RELOC/fonts/vf/uhc/wmj/wmjxo11.vf + RELOC/fonts/vf/uhc/wmj/wmjxo12.vf + RELOC/fonts/vf/uhc/wmj/wmjxo13.vf + RELOC/fonts/vf/uhc/wmj/wmjxo14.vf + RELOC/fonts/vf/uhc/wmj/wmjxo15.vf + RELOC/fonts/vf/uhc/wmj/wmjxo16.vf + RELOC/fonts/vf/uhc/wmj/wmjxo17.vf + RELOC/fonts/vf/uhc/wmj/wmjxo18.vf + RELOC/fonts/vf/uhc/wmj/wmjxo19.vf + RELOC/fonts/vf/uhc/wmj/wmjxo2.vf + RELOC/fonts/vf/uhc/wmj/wmjxo20.vf + RELOC/fonts/vf/uhc/wmj/wmjxo21.vf + RELOC/fonts/vf/uhc/wmj/wmjxo22.vf + RELOC/fonts/vf/uhc/wmj/wmjxo23.vf + RELOC/fonts/vf/uhc/wmj/wmjxo24.vf + RELOC/fonts/vf/uhc/wmj/wmjxo25.vf + RELOC/fonts/vf/uhc/wmj/wmjxo26.vf + RELOC/fonts/vf/uhc/wmj/wmjxo27.vf + RELOC/fonts/vf/uhc/wmj/wmjxo28.vf + RELOC/fonts/vf/uhc/wmj/wmjxo29.vf + RELOC/fonts/vf/uhc/wmj/wmjxo3.vf + RELOC/fonts/vf/uhc/wmj/wmjxo4.vf + RELOC/fonts/vf/uhc/wmj/wmjxo5.vf + RELOC/fonts/vf/uhc/wmj/wmjxo6.vf + RELOC/fonts/vf/uhc/wmj/wmjxo7.vf + RELOC/fonts/vf/uhc/wmj/wmjxo8.vf + RELOC/fonts/vf/uhc/wmj/wmjxo9.vf +catalogue-also hlatex +catalogue-ctan /fonts/korean/HLaTeX +catalogue-license lppl +catalogue-topics korean font-supp + +name uhhassignment +category Package +revision 44026 +shortdesc A document class for typesetting homework assignments +relocated 1 +longdesc This document class was created for typesetting solutions to +longdesc homework assignments at the university of Hamburg (Universitat +longdesc Hamburg). +containersize 2816 +containerchecksum a394f6f161cb72ba42eccdaf26f08b12048cee56207f754dac157a2eede1b0867fa0d5916a37d5e3dffbf10237178f156fd3cb33c88be6a926208ca8dcdd0508 +doccontainersize 380280 +doccontainerchecksum 21054dc051229a338d2aa954cbf80893e156236329206ff3cb63f47dceda4c35c6fbf6c2d9492551b7609aa88dec74c507094e2d96f2f96432436e74e80a9c38 +docfiles size=94 + RELOC/doc/latex/uhhassignment/README.md details="Readme" + RELOC/doc/latex/uhhassignment/uhhassignment.pdf details="Package documentation" +srccontainersize 7176 +srccontainerchecksum 0bd0fcb18d334c471fa7d4259cb7c511dc7917344ffcd724ea8bdf859272cc164649f01eb4e553deb5b44f91dfcaa1640b18ccbb5b10c1b0d3a7b585afa323ea +srcfiles size=7 + RELOC/source/latex/uhhassignment/uhhassignment.dtx + RELOC/source/latex/uhhassignment/uhhassignment.ins +runfiles size=3 + RELOC/tex/latex/uhhassignment/uhhassignment.cls +catalogue-ctan /macros/latex/contrib/uhhassignment +catalogue-license lppl1.3c +catalogue-topics essay +catalogue-version 1.0 + +name uhrzeit +category Package +revision 39570 +shortdesc Time printing, in German +relocated 1 +longdesc The primary goal of this package is to facilitate formats and +longdesc ranges of times as formerly used in Germany. A variety of +longdesc printing formats are available. +containersize 2056 +containerchecksum 7b5c732258e25ecc2d429b09349b94cc4f24de77e8db40add018f42bf7658868e9c3730f0fed86312ea96625556fe02a276535eb14416d06fa5fd2cc1eff30c6 +doccontainersize 209100 +doccontainerchecksum 76c7bdb6c74ac05fd9b51366b68b0dae8180da51f506ba1793765d25de29582c8eba51826d6d6c6d3c3c1793f10fda3f6bb75c82d8d454fb19e1339eb98a9eb2 +docfiles size=53 + RELOC/doc/latex/uhrzeit/README.txt details="Readme" + RELOC/doc/latex/uhrzeit/uhrzeit-doc.pdf details="Package documentation" + RELOC/doc/latex/uhrzeit/uhrzeit-doc.tex +runfiles size=2 + RELOC/tex/latex/uhrzeit/uhrzeit.sty +catalogue-ctan /macros/latex/contrib/uhrzeit +catalogue-license lppl1.3 +catalogue-topics german date-time +catalogue-version 0.2c + +name uiucredborder +category Package +revision 29974 +shortdesc Class for UIUC thesis red-bordered forms +relocated 1 +longdesc The class offers a means of filling out the "red-bordered form" +longdesc that gets signed by the department head, your advisor, and -- +longdesc for doctoral dissertations -- your thesis committee members. +containersize 1968 +containerchecksum 4a398e734fe551f1636a63ab3ac8b851ff1e445c8b15b6e48017ed7a81edbcf042750919db790d7e2e9d6b08132ec5a3c04195854315ba1c1c8e8712996dcb25 +doccontainersize 322460 +doccontainerchecksum 6e1c91389897853bada4b52c8350dfbbc321395cf1ff7991d7f29d5e64119c86c4e07fdad889f2a4a149e0e2db1a1e5cd9a44cf6f905d5030afa25cfb14d1323 +docfiles size=89 + RELOC/doc/latex/uiucredborder/uiucredborder.pdf details="Package documentation" +srccontainersize 4456 +srccontainerchecksum 74256e3917f7d28adbcd5d08e4dad126dcc93019c852ff6307417b2e150cdefa986affb61d7b174bf510e5f75563bfde01fba9b4c588db3d41c2fca82e0c882b +srcfiles size=4 + RELOC/source/latex/uiucredborder/uiucredborder.dtx + RELOC/source/latex/uiucredborder/uiucredborder.ins +runfiles size=1 + RELOC/tex/latex/uiucredborder/uiucredborder.cls +catalogue-also uiucthesis +catalogue-ctan /macros/latex/contrib/uiucredborder +catalogue-license lppl1.2 +catalogue-topics dissertation +catalogue-version 1.00 + +name uiucthesis +category Package +revision 15878 +shortdesc UIUC thesis class +relocated 1 +longdesc The class produces a document that conforms to the format +longdesc described in the University's Handbook for Graduate Students +longdesc Preparing to Deposit. +containersize 5140 +containerchecksum 565b499bcef08716d627e206a53f2f344a10a0e219876eaf4bd82a63accb2eb43c14c8c8b25236d336022900e9a7d5299b5a34d5e40eba0be6d7dc8ee4431490 +doccontainersize 226612 +doccontainerchecksum 798e7428988a622562b94bfd4ae389dcbba3524fda0d427aa4fbdaff0f1a437babb4e68b58350a3229fa078bf11e17af9f5eff61a5c9153960a941783cca623e +docfiles size=69 + RELOC/doc/latex/uiucthesis/README details="Readme" + RELOC/doc/latex/uiucthesis/thesis-ex.pdf details="Example of use" + RELOC/doc/latex/uiucthesis/thesis-ex.tex + RELOC/doc/latex/uiucthesis/uiucthesis.pdf details="Package documentation" +srccontainersize 16144 +srccontainerchecksum 3d1eb025e066a311e4ae28292b00e697cf4de63b1038944b41edfbdacbdfd246d5a49bd63f561c5d0d4bfadad8d2a4325a8784245c09308ef5d2380054b966ad +srcfiles size=16 + RELOC/source/latex/uiucthesis/uiucthesis.dtx + RELOC/source/latex/uiucthesis/uiucthesis.ins +runfiles size=10 + RELOC/tex/latex/uiucthesis/uiucthesis.cls + RELOC/tex/latex/uiucthesis/uiucthesis.sty +catalogue-also uiucredborder +catalogue-ctan /macros/latex/contrib/uiucthesis +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 2.25 + +name ukrhyph +category Package +revision 21081 +shortdesc Hyphenation Patterns for Ukrainian +relocated 1 +longdesc A range of patterns, depending on the encoding of the output +longdesc font (including the standard T2A, so one can use the patterns +longdesc with free fonts). +containersize 39116 +containerchecksum 043338c4e92d84bc2b7bd63610656b53b39bac225c5610089c0c8b58ce9bbe3f414129a6b043a5307ebb7b59cc062ade7bd803fb6949d06a0d0c87e2dd4a0bd3 +doccontainersize 160948 +doccontainerchecksum a283d11ed922181d4f29f521e3019fbca2b1bba1aacb312e22dd8e69d05d7dafbabc5c23b63707f265bcd215d8f517f58ab2ffee2b87d9bc1a968d00e9542840 +docfiles size=73 + RELOC/doc/generic/ukrhyph/README details="Readme" + RELOC/doc/generic/ukrhyph/rules60.pdf details="Old hyphenation rules" language="uk" + RELOC/doc/generic/ukrhyph/rules90.pdf details="New hyphenation rules" language="uk" + RELOC/doc/generic/ukrhyph/rules_ph.pdf details="Old hyphenation rules with phonetics" language="uk" +runfiles size=45 + RELOC/tex/generic/ukrhyph/catlcy.tex + RELOC/tex/generic/ukrhyph/lcy2koi.tex + RELOC/tex/generic/ukrhyph/lcy2lcy.tex + RELOC/tex/generic/ukrhyph/lcy2ot2.tex + RELOC/tex/generic/ukrhyph/lcy2t2a.tex + RELOC/tex/generic/ukrhyph/lcy2ucy.tex + RELOC/tex/generic/ukrhyph/rules60.tex + RELOC/tex/generic/ukrhyph/rules90.tex + RELOC/tex/generic/ukrhyph/rules_ph.tex + RELOC/tex/generic/ukrhyph/ukrenhyp.tex + RELOC/tex/generic/ukrhyph/ukrhypfa.tex + RELOC/tex/generic/ukrhyph/ukrhyph.koi + RELOC/tex/generic/ukrhyph/ukrhyph.lcy + RELOC/tex/generic/ukrhyph/ukrhyph.ot2 + RELOC/tex/generic/ukrhyph/ukrhyph.t2a + RELOC/tex/generic/ukrhyph/ukrhyph.tex + RELOC/tex/generic/ukrhyph/ukrhyph.ucy + RELOC/tex/generic/ukrhyph/ukrhypmp.tex + RELOC/tex/generic/ukrhyph/ukrhypmt.tex + RELOC/tex/generic/ukrhyph/ukrhypsm.tex + RELOC/tex/generic/ukrhyph/ukrhypst.tex +catalogue-ctan /language/hyphenation/ukrhyph +catalogue-license lppl +catalogue-topics hyphenation ukrainian + +name ulem +category Package +revision 53365 +shortdesc Package for underlining +relocated 1 +longdesc The package provides an \ul (underline) command which will +longdesc break over line ends; this technique may be used to replace \em +longdesc (both in that form and as the \emph command), so as to make +longdesc output look as if it comes from a typewriter. The package also +longdesc offers double and wavy underlining, and striking out (line +longdesc through words) and crossing out (/// over words). The package +longdesc works with both Plain TeX and LaTeX. +containersize 6512 +containerchecksum bb7fc8d93d38a847431f9f62f1447520890f3904654ef6f3cdffd14537600da35d54bd0839cd8fd8d26e1e3146463cd9ced79f706df54df075292eea8a40ed4c +doccontainersize 166256 +doccontainerchecksum 153dcf2057d267c2f59c7705c4997752e902aa004201f97d52a180419d7c0fea4173c0b5b1a1c8a11bc1703226e55ea55721a4d18c265b30343a5812d1f4e0e7 +docfiles size=45 + RELOC/doc/generic/ulem/README details="Readme" + RELOC/doc/generic/ulem/ulem.ltx + RELOC/doc/generic/ulem/ulem.pdf details="Package documentation" +runfiles size=4 + RELOC/tex/generic/ulem/ulem.sty +catalogue-also underlin-gen soul +catalogue-ctan /macros/latex/contrib/ulem +catalogue-license other-free +catalogue-topics underline emphasis + +name ulqda +category Package +revision 26313 +shortdesc Support of Qualitative Data Analysis +longdesc The package is for use in Qualitative Data Analysis research. +longdesc It supports the integration of Qualitative Data Analysis (QDA) +longdesc research tasks, specifically for Grounded Theory, into the +longdesc LaTeX work flow. It assists in the analysis of textual data +longdesc such as interview transcripts and field notes by providing the +longdesc LaTeX user with macros which are used to markup textual +longdesc information -- for example, in-depth interviews. +depend ulqda.ARCH +containersize 5056 +containerchecksum 228132cc464dfe171426fffec6103f0dd5eac61c112b03d64d98bc89a0af0ddb7f52f27f9bb5461c8be6f752ae30ef3d4c6b987e580d834eb7524d5c27d956cf +doccontainersize 252628 +doccontainerchecksum 182dbcb73a25e05035f878696887ea219569a1a7ef44281bee14b4498b37e92346e0e97d187a5f3dbcd8d9783f260080ff10f58dfe41e69caec4888d901b9128 +docfiles size=77 + texmf-dist/doc/latex/ulqda/README details="Readme" + texmf-dist/doc/latex/ulqda/ulqda.pdf details="Package documentation" +srccontainersize 21072 +srccontainerchecksum 352f1a739cb9c74c0dae529ff330f3269e763242af4dd1bc0aca963b3af03f02f5becad436cc3a93aa105359a1bf2f229b3cdb7175d539d58df67563b490de8f +srcfiles size=24 + texmf-dist/source/latex/ulqda/Makefile + texmf-dist/source/latex/ulqda/ulqda.dtx +runfiles size=5 + texmf-dist/scripts/ulqda/ulqda.pl + texmf-dist/tex/latex/ulqda/ulqda.sty +catalogue-ctan /macros/latex/contrib/ulqda +catalogue-license lppl +catalogue-topics humanities +catalogue-version 1.1 + +name ulqda.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ulqda +containersize 340 +containerchecksum 7bfafd23f5b71ecd860fc43a32d5867fab5cddb69c890c97f13af5d1d4d79081f526113736029920815e15553c97561ff7cc13601c9dbdf96e6eb582790bda39 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ulqda + +name ulqda.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of ulqda +containersize 340 +containerchecksum d1aa6cf0fbe437ff59b7f1354e714c8882d3eec4a40de70b08803c4a4eff881cd73732a41387b483f2cd71026a27eb11a1d3206e3f4df47dcafa81126d72ae1c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ulqda + +name ulqda.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ulqda +containersize 340 +containerchecksum 834a9a4c16c7fe4f77aed5332a89049cfecdefbe7b3ae77f106c3866eefaf400df8d3fc3c2655e0a38c60085e1213860b1a1e8754976fd405717c5c48ab64198 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ulqda + +name ulqda.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ulqda +containersize 336 +containerchecksum 5e3d945078af70f041ede7d961c19291b316c2215200ddd0893e5efc26d5e7e48248d0c929c36e7994f7d533749c81cda5fbb6184ebab8788f6bb8c9468a6520 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ulqda + +name ulqda.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of ulqda +containersize 336 +containerchecksum 9a7cc5541de010ea35ca5403f6eba70df09c81657be030282e9681755c10ca5717d5d0fbc35e62c5148de1e2e95788a64c3d09bfbae2d05ecfca8ce6280af59a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ulqda + +name ulqda.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of ulqda +containersize 340 +containerchecksum 4444b07542a048517b318653006b9d5527560b244d65b292d44adbc55f254d8dfb322515c141e195c34d28f2ec55679092b23c60f22b19e49a11500a0e093502 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ulqda + +name ulqda.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of ulqda +containersize 340 +containerchecksum 888525215a6da5e97ba7ce2ffcedff69565745bc35b687ff7397c467073795c22f72a6b3d0043ad20a4229c7930291f2598a78c56df19c77e0fa278b5ba9ea5d +binfiles arch=i386-linux size=1 + bin/i386-linux/ulqda + +name ulqda.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ulqda +containersize 340 +containerchecksum 3cab91c80b9b9589d754b013e281f55a5542b918423448ec0037ec66515d474df786ab06c8b28da426263d3a6f608f207ec5981080f310812862952a7286386c +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ulqda + +name ulqda.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of ulqda +containersize 340 +containerchecksum 6f1a6a67433841f5d888c7b4775dfc944d1a6c14229fe49527a7477f26860a747fe0aa411bc70ef340f8269019d376a66d88973f10a72f1134a9b84134e71ade +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ulqda + +name ulqda.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of ulqda +containersize 340 +containerchecksum 0f8e7d3edb9c263c4d247c724f82d48798ab8291aca24b30cfb741355fc9f706640fe5307d88908636ed3966f4dc4778d491919a38d0a8b055e3c4469bb75965 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ulqda + +name ulqda.win32 +category Package +revision 15404 +shortdesc win32 files of ulqda +containersize 680 +containerchecksum ffc616410863964c5434bbdffdd5f7e4ed80de47f1f6ff1853efab3886b7e4aacd3160fe8dd3e65acb38969a895a64ff3edc0590209d90340472335b31d6eb40 +binfiles arch=win32 size=1 + bin/win32/ulqda.exe + +name ulqda.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ulqda +containersize 340 +containerchecksum 6627abc65378a6271b5fa13b0f3c7e67495b3ce0c6c5d7b17e3622311d6189d081053014d0a4f33c4f3ec1f0c73a68806c74640defea667e64c2430610027a35 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ulqda + +name ulqda.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ulqda +containersize 348 +containerchecksum 1d9eca1a810eb8066b306db339a0c6491a715ee0637ada613aa3779bec8cf93625d55d39eb527cef824483872899cdc6d56fbb1d8da926494a864033c37aeae3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ulqda + +name ulqda.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of ulqda +containersize 336 +containerchecksum 163882707eab250aa4353c4f1e71f5dff137a356461f85c197b5d3384b81a57c6a14fd6c98a69371276325aa97091831b249b1d9659349e6994333177b019c5c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ulqda + +name ulqda.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ulqda +containersize 344 +containerchecksum 41fa1ac44242fd8419e513ac27cd1e25f99b54f748aaab4602fb4a48a630d9c325a619a317897c459942dbc60e6ff8b379ca0df7bb8d8456b2b14f5a1ca35e5a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ulqda + +name ulqda.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of ulqda +containersize 340 +containerchecksum e7cded7a679aabf5849affe4a2f55d0ae21c8d696ef460623ca44a06d3778fb1cb44a9bb1767f0c3e009f21b479b2d99997ac84e264861aa7d2c9a98343b7c8d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ulqda + +name ulthese +category Package +revision 52972 +shortdesc Thesis class and templates for Universite Laval +relocated 1 +longdesc The package provides a class based on memoir to prepare theses +longdesc and memoirs compliant with the presentation rules set forth by +longdesc the Faculty of Graduate Studies of Universite Laval, Quebec, +longdesc Canada. The class also comes with an extensive set of templates +longdesc for the various types of theses and memoirs offered at Laval. +longdesc Please note that the documentation for the class and the +longdesc comments in the templates are all written in French, the +longdesc language of the target audience. +containersize 59892 +containerchecksum c2a3d8a837ecda20bf50c496b8506e6c7dc7d6308fa058e51f4b1dba858d76c391ab3b9faaff9cbbb39fea3696fc5a1c7daf9417f3c18b3eaef9fc7eb5383195 +doccontainersize 257936 +doccontainerchecksum adffed362b6ebe3bab7aa04563ca0de114917199893dd310578d372f6e4e67b84bae7e50658ebfd7bde270d4c3158ef9dda57c0c6855787fa3cde0102ef4153a +docfiles size=87 + RELOC/doc/latex/ulthese/README.md details="Readme (in French)" language="fr" + RELOC/doc/latex/ulthese/abstract.tex + RELOC/doc/latex/ulthese/annexe.tex + RELOC/doc/latex/ulthese/avantpropos.tex + RELOC/doc/latex/ulthese/chapitre1-articles.tex + RELOC/doc/latex/ulthese/chapitre1.tex + RELOC/doc/latex/ulthese/chapitre2-articles.tex + RELOC/doc/latex/ulthese/chapitre2.tex + RELOC/doc/latex/ulthese/conclusion.tex + RELOC/doc/latex/ulthese/gabarit-doctorat-articles.tex + RELOC/doc/latex/ulthese/gabarit-doctorat-cotutelle.tex + RELOC/doc/latex/ulthese/gabarit-doctorat.tex + RELOC/doc/latex/ulthese/gabarit-maitrise-articles.tex + RELOC/doc/latex/ulthese/gabarit-maitrise-bidiplomation.tex + RELOC/doc/latex/ulthese/gabarit-maitrise.tex + RELOC/doc/latex/ulthese/introduction.tex + RELOC/doc/latex/ulthese/remerciements.tex + RELOC/doc/latex/ulthese/resume.tex + RELOC/doc/latex/ulthese/ulthese.pdf details="Package documentation" language="fr" +srccontainersize 27052 +srccontainerchecksum 652cd812d9916f855ceb5983b1cfecfa9a7fd724939933ef0159c6ee4dd9199e9923cd09511598b30c8f5355845fb3764363e110bd69d02df4f62c6f69ebbc99 +srcfiles size=28 + RELOC/source/latex/ulthese/ulthese.dtx + RELOC/source/latex/ulthese/ulthese.ins +runfiles size=47 + RELOC/tex/latex/ulthese/ul_p.eps + RELOC/tex/latex/ulthese/ul_p.pdf + RELOC/tex/latex/ulthese/ulthese.cls +catalogue-also memoir babel +catalogue-contact-repository https://gitlab.com/vigou3/ulthese +catalogue-ctan /macros/latex/contrib/ulthese +catalogue-license lppl1.3c +catalogue-topics dissertation class french +catalogue-version 5.3 + +name umbclegislation +category Package +revision 41348 +shortdesc A LaTeX class for building legislation files for UMBC Student Government Association Bills +relocated 1 +longdesc LaTeX class for building legislation files for UMBC Student +longdesc Government Association Bills. Requires pdflatex and the +longdesc mdframed enumitem, lineno, and xifthen packages. +containersize 2616 +containerchecksum ea6a55698b51da3939a1bfc10963dd74d9e772ebd18ad9018f649077224f7ee30ca20f051a68c9bd8d8bac94baf1d0d28ab2f864419c61385ebf9bc82aacb7f0 +doccontainersize 13532 +doccontainerchecksum d4d5f318baa1f1ecd446bb864d0670ed2dcd7208429bfd2ce587810b27dde22f49a6f7c072aad8f6515e721a98ea0ec356ee36eb970cdee385910a291d964394 +docfiles size=13 + RELOC/doc/latex/umbclegislation/COPYING + RELOC/doc/latex/umbclegislation/Makefile + RELOC/doc/latex/umbclegislation/README details="Readme" + RELOC/doc/latex/umbclegislation/example.tex +runfiles size=2 + RELOC/tex/latex/umbclegislation/legislation.cls +catalogue-ctan /macros/latex/contrib/umbclegislation +catalogue-license gpl3 +catalogue-topics legal +catalogue-version 2016-6-8 + +name umich-thesis +category Package +revision 15878 +shortdesc University of Michigan Thesis LaTeX class +relocated 1 +longdesc A LaTeX2e class to create a University of Michigan dissertation +longdesc according to the Rackham dissertation handbook. +containersize 5696 +containerchecksum 52bb76c9d9e3bb742c2049495a74d026a1803396bc5064a10f4da2e80390ae6c9c9c74326b14966e989c9edd1e29b797b89413ed6e87e90527ae470a8b731889 +doccontainersize 904 +doccontainerchecksum db85abee0ad37ce814c645c072399a6ab7e3307c623bd402a1b9ee8b69a1c2a8aa782b5007a433ebe9eaba984432223bd78f247fdcd0c6f50edeccc87b874173 +docfiles size=1 + RELOC/doc/latex/umich-thesis/README details="Readme" +runfiles size=5 + RELOC/tex/latex/umich-thesis/umich-thesis.cls +catalogue-ctan /macros/latex/contrib/umich-thesis +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 1.20 + +name uml +category Package +revision 17476 +shortdesc UML diagrams in LaTeX +relocated 1 +longdesc A PSTricks related package for writing UML (Unified Modelling +longdesc Language) diagrams in LaTeX. Currently, it implements a subset +longdesc of class diagrams, and some extra constructs as well. The +longdesc package cannot be used together with pst-uml. +containersize 6564 +containerchecksum b20da85c7166f8aec4309af3ab0b1319f37ada1513ff502555794b1721ac8c3f551afcdf49a58bf5c3c5e666e48962075f7711a45de003245584541175a6a470 +doccontainersize 381984 +doccontainerchecksum d81393e3b6d9efc0177478e562dc0a22323e3e5913d7592cdb6ec595d525238e154d2a599380521652eda4fe75b12006cfdc907715b0a9d461f8df60ed27986b +docfiles size=129 + RELOC/doc/latex/uml/Changes + RELOC/doc/latex/uml/README details="Package Readme" + RELOC/doc/latex/uml/example.tex + RELOC/doc/latex/uml/uml.pdf details="Package documentation" +srccontainersize 39836 +srccontainerchecksum afc5aa7db53b82f6063abca35d8cde75659682525d939e2f55c375b89fa4cc196bca8852c91d12f7daae939c053f4c9ecf99b326361f051847e660af5afe3ef7 +srcfiles size=50 + RELOC/source/latex/uml/Makefile + RELOC/source/latex/uml/uml.dtx + RELOC/source/latex/uml/uml.ins +runfiles size=8 + RELOC/tex/latex/uml/uml.sty +catalogue-also pst-uml +catalogue-ctan /graphics/pstricks/contrib/uml +catalogue-license lppl +catalogue-topics uml pstricks +catalogue-version 0.11 + +name umlaute +category Package +revision 15878 +shortdesc German input encodings in LaTeX +relocated 1 +longdesc An early package for using alternate input encodings. The +longdesc author considers the package mostly obsolete, since most of its +longdesc functions are taken by the inputenc package; however, inputenc +longdesc doesn't support the roman8 and atari encodings, so umlaute +longdesc remains the sole source of that support. +containersize 2884 +containerchecksum 35188d3930b11c0d1b52a5032bcf9cea21a22ce8ca2930f69ad4ab54bcdf56b73858168cc62581aac1173452dd0f7d0da3de8ac21b0ca2255ef324ff63c89091 +doccontainersize 106300 +doccontainerchecksum 89f28b3b90f63ea4f367019f0b65aa1f8e9489ff0d897af6ea29b7455948e3e75ef003a5a2d5b4a88e00a5e415d409a577c03b63a330f93ed6804c99f951c68e +docfiles size=31 + RELOC/doc/latex/umlaute/cs_patch.uue + RELOC/doc/latex/umlaute/umlaute.pdf details="Package documentation" +srccontainersize 5732 +srccontainerchecksum 494ee6d1432d783f9586c80cee044e2857d4d24358c7dcb7d3043945bb3f5331b8eee78a13ee759ed6260518dcdebab33d78bab4cec5d384c4773b502c96fb0b +srcfiles size=6 + RELOC/source/latex/umlaute/umlaute.dtx + RELOC/source/latex/umlaute/umlaute.ins +runfiles size=8 + RELOC/tex/latex/umlaute/atari.def + RELOC/tex/latex/umlaute/isolatin.def + RELOC/tex/latex/umlaute/mac.def + RELOC/tex/latex/umlaute/pc850.def + RELOC/tex/latex/umlaute/roman8.def + RELOC/tex/latex/umlaute/umlaute.sty +catalogue-ctan /macros/latex/contrib/umlaute +catalogue-license lppl +catalogue-topics inputenc +catalogue-version 2.1 + +name umoline +category Package +revision 19085 +shortdesc Underline text allowing line breaking +relocated 1 +longdesc Provides commands \Underline, \Midline and \Overline for +longdesc underlining, striking out, and overlining their text arguments. +containersize 3004 +containerchecksum db3b8216d50288ec096f3dea9db24dfbad76848d9b8ccdc5d1310f4b8bb1b37ef10fed74ee5e6e0b70cc3e0aaa73aea87354ad731e4057c888031eb4e1940539 +doccontainersize 207052 +doccontainerchecksum 64d559300349fd75af4bd98f0841aee5c5d622791cdd03373ea1e7840989b5175e300663023d0f08636b86337f66c6668871387a51a9a28e079111087265bb98 +docfiles size=56 + RELOC/doc/latex/umoline/README details="Readme" + RELOC/doc/latex/umoline/umoline-man.tex + RELOC/doc/latex/umoline/umoline.pdf details="Package documentation" +srccontainersize 13068 +srccontainerchecksum 13f53876f0b1c5921b480ad9d2c63ef3abf1e175006145f200f61f515e778161ba631c6da9ca4c4d928f94220e0964b64130638d7dd7195160b54f39e4bf868d +srcfiles size=13 + RELOC/source/latex/umoline/umoline.dtx + RELOC/source/latex/umoline/umoline.ins +runfiles size=2 + RELOC/tex/latex/umoline/umoline.sty +catalogue-ctan /macros/latex/contrib/umoline +catalogue-license lppl +catalogue-topics underline + +name umthesis +category Package +revision 15878 +shortdesc Dissertations at the University of Michigan +relocated 1 +longdesc The class loads book class, and makes minimal changes to it; +longdesc its coding aims to be as robust as possible, and as a result it +longdesc has few conflicts with potential add-on packages. +containersize 6764 +containerchecksum b2fb90713da6547b9d4cbea4f972144f70d7f1875e325225f0dfb90df1a04b4693c5a3dc651f0066ef7ba6456c7732aeb5272ccfd5e8edc24281c1b1bc9e4e32 +doccontainersize 91508 +doccontainerchecksum fb43c7ab262d2a1eb70b80bf4ad66ae9e022c847451009372e1ee1fcc5250e93b0a4a2195f4208799ae78cbcb5fc24d48de0b2355884721918ae5d4c827c3507 +docfiles size=61 + RELOC/doc/latex/umthesis/PDP.tex + RELOC/doc/latex/umthesis/README details="Readme" + RELOC/doc/latex/umthesis/appendix.tex + RELOC/doc/latex/umthesis/conclusion.tex + RELOC/doc/latex/umthesis/example.pdf details="Example of use" + RELOC/doc/latex/umthesis/example.tex + RELOC/doc/latex/umthesis/exp1.tex + RELOC/doc/latex/umthesis/exp2.tex + RELOC/doc/latex/umthesis/exp3.tex + RELOC/doc/latex/umthesis/felty.bib + RELOC/doc/latex/umthesis/intro.tex + RELOC/doc/latex/umthesis/mybibstyle.bst +runfiles size=6 + RELOC/tex/latex/umthesis/umthesis.cls +catalogue-ctan /macros/latex/contrib/umthesis +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 0.2 + +name umtypewriter +category Package +revision 18651 +shortdesc Fonts to typeset with the xgreek package +relocated 1 +longdesc The UMTypewriter font family is a monospaced font family that +longdesc was built from glyphs from the CB Greek fonts, the CyrTUG +longdesc Cyrillic alphabet fonts ("LH"), and the standard Computer +longdesc Modern font family. It contains four OpenType fonts which are +longdesc required for use of the xgreek package for XeLaTeX. +containersize 338592 +containerchecksum 44dc925eccfa4010566bc751bf202fbea6b369beb57c6851bffce2dab757bbcf415d601de44f97e929e046cdba1720ecd7bb6ca12c992674d33b43b9e0ce77ff +runfiles size=197 + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Bold.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-BoldItalic.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Italic.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Oblique.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Regular.otf +catalogue-ctan /fonts/umtypewriter +catalogue-license ofl +catalogue-topics font font-mono font-otf font-greek font-cyrillic font-cm +catalogue-version 001.002 + +name unam-thesis +category Package +revision 51207 +shortdesc Create documents according to the UNAM guidelines +relocated 1 +longdesc This is a class for creating dissertation documents according +longdesc to the National Autonomous University of Mexico (UNAM) +longdesc guidelines. +containersize 2984 +containerchecksum aaa8c4029cfb130798c5e9401fde5dbc7943d7cb89c9a620e050e619ccc1950593b1d10bf6300958aede043ed0e4fbef371d0c40f055b259284f008463a64c40 +doccontainersize 2120 +doccontainerchecksum ba6897f0b31953cc60bb49430de1b77d10d7656363d596d4160f96189c70417227193ac7d3809e1bd7518b89a871f5bf4b18004ff8185b2a03e0226536dc6a3a +docfiles size=1 + RELOC/doc/latex/unam-thesis/README.md details="Readme" +runfiles size=3 + RELOC/tex/latex/unam-thesis/unam-thesis.cls +catalogue-also unamthesis unamth-template +catalogue-contact-bugs https://github.com/camachojua/unam/issues +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-license gpl3+ +catalogue-topics class dissertation +catalogue-version 0.5 + +name unamth-template +category Package +revision 33625 +shortdesc UNAM Thesis LaTeX Template +relocated 1 +longdesc The bundle provides a template for UNAM's College of +longdesc Engineering Theses. The work is based on Harish Bhanderi's +longdesc PhD/MPhil template, and the University of Cambridge Engineering +longdesc Department template. +containersize 504 +containerchecksum b8d1d3bf42c11c967d9e3889e52e2c9a45aa3e0bf4ac6b6e5a72d69e1bccc2b254954a6828a66ec794dc7126f54d26ba48e3c11efb913d04e50f4867d348d3b1 +doccontainersize 5011364 +doccontainerchecksum eed527d21e7d8669e0a02fd5e880e9172dcc2ca8a1e499b079d1d8f3935b7e84a4c84763b0204bb3b90a9df493bbbba6ee90fefcde6b4975c1360ae119264f61 +docfiles size=1563 + RELOC/doc/latex/unamth-template/Agradecimientos/Agradecimientos.tex + RELOC/doc/latex/unamth-template/Agradecimientos/Dedicatoria.tex + RELOC/doc/latex/unamth-template/Apendice1/Apendice1.tex + RELOC/doc/latex/unamth-template/Bibliografia/referencias.bib + RELOC/doc/latex/unamth-template/Capitulo1/introduccion.tex + RELOC/doc/latex/unamth-template/Capitulo2/marco_teorico.tex + RELOC/doc/latex/unamth-template/Capitulo3/diseno_experimento.tex + RELOC/doc/latex/unamth-template/Capitulo3/figs/planta.jpg + RELOC/doc/latex/unamth-template/Capitulo4/resultados_y_analisis.tex + RELOC/doc/latex/unamth-template/Capitulo5/conclusiones.tex + RELOC/doc/latex/unamth-template/Declaracion/Declaracion.tex + RELOC/doc/latex/unamth-template/LICENSE + RELOC/doc/latex/unamth-template/Latex/Classes/CUEDbiblio.bst + RELOC/doc/latex/unamth-template/Latex/Classes/CUEDthesisPSnPDF.texshop + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/fi_azul.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/fi_negro.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_azul.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_azul_5x5cm.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_negro.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_negro_5x5cm.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-bold.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-case.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-url.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-url2.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDthesisPSnPDF.cls + RELOC/doc/latex/unamth-template/Latex/Classes/PhDthesisPSnPDF.cls.bak + RELOC/doc/latex/unamth-template/Latex/Classes/urlbst + RELOC/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex + RELOC/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex.bak + RELOC/doc/latex/unamth-template/README.md details="Readme" + RELOC/doc/latex/unamth-template/Resumen/Resumen.tex + RELOC/doc/latex/unamth-template/latex_intro.pdf + 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-license gpl3 +catalogue-topics doc-templ dissertation +catalogue-version 2.0 + +name unamthesis +category Package +revision 43639 +shortdesc Style for Universidad Nacional Autonoma de Mexico theses +relocated 1 +longdesc The package provides a customisable format to typeset Theses +longdesc according to the Universidad Nacional Autonoma de Mexico +longdesc guidelines. Support for use in Scientific Workplace (SWP) 3.x +longdesc is also provided. The bundle also includes an appropriate +longdesc bibliographic style which enables the use of author-year +longdesc schemes using the natbib package. +containersize 9860 +containerchecksum f48e7aab2c445c5e257bb39ea4dd880cf9334a5b1dcbf429e8d4420edbdc4621aa59548f31770d67698bfb4e59e239dbcddc959c1b010e012ad16971ee7956f0 +doccontainersize 631572 +doccontainerchecksum 240a697f242b880fd2436bbaa3752aae57ef3fd2e9ee63da173c78582c4bcbb1eb19e02a96607991d1d6a40157d52f00dadcd4956af230d429ad5223161a018d +docfiles size=309 + RELOC/doc/latex/unamthesis/Escudo-FC.eps + RELOC/doc/latex/unamthesis/Escudo-FC.pdf + RELOC/doc/latex/unamthesis/Escudo-IBT.eps + RELOC/doc/latex/unamthesis/Escudo-IBT.pdf + RELOC/doc/latex/unamthesis/Escudo-UNAM.eps + RELOC/doc/latex/unamthesis/Escudo-UNAM.pdf + RELOC/doc/latex/unamthesis/LEEME + RELOC/doc/latex/unamthesis/License + RELOC/doc/latex/unamthesis/README details="Readme" + RELOC/doc/latex/unamthesis/Thesis_-_Universidad_Nacional_Autonoma_de_Mexico.shl + RELOC/doc/latex/unamthesis/UNAMThesis.cst + RELOC/doc/latex/unamthesis/UNAMThesis.pdf details="Package documentation" + RELOC/doc/latex/unamthesis/UNAMThesis.tex + RELOC/doc/latex/unamthesis/UNAMThesisSWP.tex + RELOC/doc/latex/unamthesis/testBib.bib +runfiles size=11 + RELOC/bibtex/bst/unamthesis/UNAMThesis.bst + RELOC/tex/latex/unamthesis/UNAMThesis.sty +catalogue-ctan /macros/latex/contrib/unamthesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 2.1 + +name undergradmath +category Package +revision 57286 +shortdesc LaTeX Math for Undergraduates cheat sheet +relocated 1 +longdesc This is a cheat sheet for writing mathematics with LaTeX. It is +longdesc aimed at US undergraduates. +containersize 444 +containerchecksum 948d0f0ac20a63fb0c6de8003c572c11704d2016d2ddea6674f58742e997021d709d51806b5acb4716c79539b96086758814f4f5d303a257768c8716821e8451 +doccontainersize 2036196 +doccontainerchecksum 6300a5d0781bae331091cfc8007e974ed3534ec3672dedc080c8e118e8526c98206438a6841d50d2e642e8d6c7859cabae14e140c211bc8175e7f9d1cba0ddfe +docfiles size=583 + RELOC/doc/latex/undergradmath/LICENSE + RELOC/doc/latex/undergradmath/README details="Readme" + RELOC/doc/latex/undergradmath/convert_to_png.sh + RELOC/doc/latex/undergradmath/undergradmath.pdf details="The document itself" + RELOC/doc/latex/undergradmath/undergradmath.tex + RELOC/doc/latex/undergradmath/undergradmath_0.png + RELOC/doc/latex/undergradmath/undergradmath_1.png +catalogue-contact-repository https://gitlab.com/jim.hefferon/undergradmath +catalogue-ctan /info/undergradmath +catalogue-license cc-by-sa-4 +catalogue-topics maths maths-doc maths-symbol tut-cheat + +name underlin +category Package +revision 15878 +shortdesc Underlined running heads +relocated 1 +longdesc Defines two pagestyles that provide underlined page heads in +longdesc LaTeX. +containersize 1032 +containerchecksum b3afaf4c51b3da2d082e2cc742deaabe70cfbea7425e0c57f0d1d6696cd7d8f993707a219556a5c5bca925ea63373e3f0a716a82ead647e09ef2f716535886d2 +doccontainersize 70524 +doccontainerchecksum d296a04d3a24b463de3e4fe99c96a2fd8afa7c4ed2fa17d1218ac9e4c17455b4752176be60743211d59657045c709c8b4bd66febf10c81a41879e8c7a67e9958 +docfiles size=21 + RELOC/doc/latex/underlin/underlin.pdf details="Package documentation" +srccontainersize 1976 +srccontainerchecksum 8c534008a2cb0710b95333869536bdef5e3910e4a7c29ad2daabacd94bc5a34ea15dd3bd8439e7ebede0985831662d86f68815bb13b3fc36c82d83c51b16cb5d +srcfiles size=2 + RELOC/source/latex/underlin/underlin.dtx + RELOC/source/latex/underlin/underlin.ins +runfiles size=1 + RELOC/tex/latex/underlin/underlin.sty +catalogue-ctan /macros/latex/contrib/underlin +catalogue-license lppl +catalogue-topics underline page-hf +catalogue-version 1.01 + +name underoverlap +category Package +revision 29019 +shortdesc Position decorations over and under expressions +relocated 1 +longdesc The package overcomes TeX's inherent limitations in commands +longdesc that place decorations (such as braces) at arbirary positions +longdesc over and under expressions, overlapping as necessary. +containersize 3392 +containerchecksum 3f94b5d33cfaa7f48441ba656e9498ea17ee5ca404e39486004e43bed71bab5f2140b391191e4d6f9575ca23e09b83bce343433c02cc394844270e563aab70c3 +doccontainersize 271816 +doccontainerchecksum 5214981a15d7f15cd361f007505a4a0060a2952d75ea28f4eaef01c19a5b79736512a2b0a8c5e6ece2d08c364780256963276a9bc9ea980e13ba292e3d0b8bc2 +docfiles size=76 + RELOC/doc/latex/underoverlap/README details="Readme" + RELOC/doc/latex/underoverlap/dry.sty + RELOC/doc/latex/underoverlap/packagedoc.cls + RELOC/doc/latex/underoverlap/underoverlap.pdf details="Package documentation" + RELOC/doc/latex/underoverlap/underoverlap.tex + RELOC/doc/latex/underoverlap/with.sty +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-license lppl1.3 +catalogue-topics maths +catalogue-version 0.0.1-r1 + +name underscore +category Package +revision 18261 +shortdesc Control the behaviour of "_" in text +relocated 1 +longdesc With the package, \_ in text mode (i.e., \textunderscore) +longdesc prints an underscore so that hyphenation of words either side +longdesc of it is not affected; a package option controls whether an +longdesc actual hyphenation point appears after the underscore, or +longdesc merely a break point. The package also arranges that, while in +longdesc text, '_' itself behaves as \textunderscore (the behaviour of _ +longdesc in maths mode is not affected). +containersize 4716 +containerchecksum 4fdc57d0a36aa5646c6b960b7579a8111441659469df32beaae06f54e6e835456810b1d9b5d36036510befd5e80b5b481b9179a6b24364bf8f858ebc97039ab2 +doccontainersize 246480 +doccontainerchecksum e1f0730b39a5d25cc52160e090b797ed73a5becc16b6813cd0c2f4bf78696b23aec5c82367c347d0e734f3b92761ad2090e517bb6dd2a40879639f62149fdba6 +docfiles size=65 + RELOC/doc/latex/underscore/miscdoc.sty + RELOC/doc/latex/underscore/underscore.pdf details="Package documentation" + RELOC/doc/latex/underscore/underscore.tex +runfiles size=3 + RELOC/tex/latex/underscore/underscore.sty +catalogue-ctan /macros/latex/contrib/underscore +catalogue-license lppl +catalogue-topics typesetting + +name undolabl +category Package +revision 36681 +shortdesc Override existing labels +relocated 1 +longdesc The package allows the user to override existing labels (for +longdesc example, those generated automatically). +containersize 2356 +containerchecksum b753a9d8a4809118a76b9651c5c7994aebe5c95019b408c59b356135ab34fe4e463099280ea43fc4e47692e32af9570be929999a661fe80ce993f25b85547e10 +doccontainersize 355088 +doccontainerchecksum d7aa3497adacd6a5e10dfc9ac19762ba3fdabc74eb1d50c22dcd05e8d4a02d0723efe3c7e297050ab607525ad3611cddf87cc50d640394c4489d765fffbbe8b8 +docfiles size=91 + RELOC/doc/latex/undolabl/README details="Readme" + RELOC/doc/latex/undolabl/undolabl-example.pdf details="Package examples" + RELOC/doc/latex/undolabl/undolabl-example.tex + RELOC/doc/latex/undolabl/undolabl.pdf details="Package documentation" +srccontainersize 11852 +srccontainerchecksum dbbfbc331830b1d006d746a7ad0a7578ebeb805f7c8b1fc54cc5a502c878fc8b026ff781e05b5510b2331be529eabbd6b0308811b5471f9e4571cf1172a011b8 +srcfiles size=13 + RELOC/source/latex/undolabl/undolabl.drv + RELOC/source/latex/undolabl/undolabl.dtx + RELOC/source/latex/undolabl/undolabl.ins +runfiles size=2 + RELOC/tex/latex/undolabl/undolabl.sty +catalogue-ctan /macros/latex/contrib/undolabl +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.0l + +name unfonts-core +category Package +revision 56291 +shortdesc TrueType version of Un-fonts +relocated 1 +longdesc The Un-fonts come from the HLaTeX as type1 fonts in 1998 by +longdesc Koaunghi Un, he made type1 fonts to use with Korean TeX +longdesc (HLaTeX) in the late 1990's and released it under the GPL +longdesc license. They were converted to TrueType with the FontForge +longdesc (PfaEdit) by Won-kyu Park in 2003. Core families (9 fonts): +longdesc UnBatang, UnBatangBold: serif UnDotum, UnDotumBold: sans-serif +longdesc UnGraphic, UnGraphicBold: sans-serif style UnPilgi, +longdesc UnPilgiBold: script UnGungseo: cursive, brush-stroke +containersize 14727532 +containerchecksum 5476421a802ec3daa8fcb8354924ffb090aa9ea337db315c813637fafa445ef82601edc61cb7aa424bd7e2deee7607902ed33f0cfe70c214901d4c52dfcff6c5 +doccontainersize 10592 +doccontainerchecksum 8f51172be1093ff9da6ebb7071f5fea435e2bdace5619faa24ebdef52b3e34197d91b8f9d302844d4e1377a2a4712247743172afcd4b01367e9f166bd76112fd +docfiles size=10 + RELOC/doc/fonts/unfonts-core/COPYING + RELOC/doc/fonts/unfonts-core/README.md details="Readme" + RELOC/doc/fonts/unfonts-core/README_original + RELOC/doc/fonts/unfonts-core/changelog.Debian +runfiles size=8361 + RELOC/fonts/truetype/public/unfonts-core/UnBatang.ttf + RELOC/fonts/truetype/public/unfonts-core/UnBatangBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDinaru.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDinaruBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDinaruLight.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDotum.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDotumBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnGraphic.ttf + RELOC/fonts/truetype/public/unfonts-core/UnGraphicBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnGungseo.ttf + RELOC/fonts/truetype/public/unfonts-core/UnPilgi.ttf + RELOC/fonts/truetype/public/unfonts-core/UnPilgiBold.ttf +catalogue-also unfonts-extra +catalogue-ctan /fonts/unfonts-core +catalogue-license gpl2 +catalogue-topics font-ttf korean + +name unfonts-extra +category Package +revision 56291 +shortdesc TrueType version of Un-fonts +relocated 1 +longdesc The Un-fonts come from the HLaTeX as type1 fonts in 1998 by +longdesc Koaunghi Un, he made type1 fonts to use with Korean TeX +longdesc (HLaTeX) in the late 1990's and released it under the GPL +longdesc license. They were converted to TrueType with the FontForge +longdesc (PfaEdit) by Won-kyu Park in 2003. Extra families (10 fonts): +longdesc UnPen, UnPenheulim: script UnTaza: typewriter style UnBom: +longdesc decorative UnShinmun UnYetgul: old Korean printing style +longdesc UnJamoSora, UnJamoNovel, UnJamoDotum, UnJamoBatang +containersize 6565804 +containerchecksum 9cf9a73ba3c2190da7999c3b770e92d8afb43c640d651173c126e930155e9f87f371392accd4eadae8922ee846a5e02c0eeab845561dea943b34b185164bba3c +doccontainersize 10160 +doccontainerchecksum 6173d49bb64c9b162763ff08af445e518fa650fcc13e02f5c72454d335285d9c82347cf79f945fae94429f3a9d15f9c9b58ff1d175c8f59ea7b75766cd279303 +docfiles size=9 + RELOC/doc/fonts/unfonts-extra/COPYING + RELOC/doc/fonts/unfonts-extra/README.md details="Readme" + RELOC/doc/fonts/unfonts-extra/README_original + RELOC/doc/fonts/unfonts-extra/changelog.Debian +runfiles size=4977 + RELOC/fonts/truetype/public/unfonts-extra/UnJamoBatang.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnJamoDotum.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnJamoNovel.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnJamoSora.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnPen.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnPenheulim.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnPilgia.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnShinmun.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnTaza.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnVada.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnYetgul.ttf +catalogue-also unfonts-core +catalogue-ctan /fonts/unfonts-extra +catalogue-license gpl2 +catalogue-topics font-ttf korean + +name uni-wtal-ger +category Package +revision 31541 +shortdesc Citation style for literary studies at the University of Wuppertal +relocated 1 +longdesc The package defines a BibLaTeX citation style based on the +longdesc author-title style of biblatex-dw. The citations are optimised +longdesc for literary studies in faculty of humanities at the Bergische +longdesc Universitat Wuppertal. +containersize 1644 +containerchecksum d1b6186d50733f87576ef6509f7eebaa17651039d882f78abbfa8ae23ddf7b896a90065fd5ff83a2e216485c22e865057f715784fab37ad9440616297d67a26d +doccontainersize 71452 +doccontainerchecksum ffee19f2d4ac337f7615b99946287eb902d2841b48f9d5c49d51604b45b7eaa126538732d64b319a8ba320f1dcb9b62b45cf608dbb0059f37975a1220022c333 +docfiles size=23 + RELOC/doc/latex/uni-wtal-ger/CHANGES + RELOC/doc/latex/uni-wtal-ger/LIESMICH details="Readme" language="de" + RELOC/doc/latex/uni-wtal-ger/README details="Readme" language="en" + RELOC/doc/latex/uni-wtal-ger/germanistik.bib + RELOC/doc/latex/uni-wtal-ger/germanistik.pdf details="Package documentation" language="de" + RELOC/doc/latex/uni-wtal-ger/germanistik.tex +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-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 0.2 + +name uni-wtal-lin +category Package +revision 31409 +shortdesc Citation style for linguistic studies at the University of Wuppertal +relocated 1 +longdesc The package defines a BibLaTeX citation style based on the +longdesc standard author-year style. The citations are optimised for +longdesc linguistic studies at the Institute of Linguistics at the +longdesc Bergische Universitat Wuppertal. +containersize 2836 +containerchecksum 803107d89b4ce6fe120bb528c684a65db3a9c70433abfd6bcebe2a5d05e6c7680256a407ef5f0515a56915c5c1e0637a183cc866631558e32afd96a0e45139ce +doccontainersize 93524 +doccontainerchecksum e88b2c8364eeebf3768d0d562447d29233280daf685d56fe791d25b352cc64c4c95be3bec198aa6e5502287a654f3088e643a3a58edf7e55d0d899eed5b704c6 +docfiles size=30 + RELOC/doc/latex/uni-wtal-lin/CHANGES + RELOC/doc/latex/uni-wtal-lin/LIESMICH details="Readme" language="de" + RELOC/doc/latex/uni-wtal-lin/README details="Readme" language="en" + RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.bib + RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.pdf details="Package documentation" language="de" + RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.tex +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-license lppl1.3 +catalogue-topics humanities linguistic biblatex +catalogue-version 0.2 + +name unicode-alphabets +category Package +revision 54236 +shortdesc Macros for using characters from Unicode's Private Use Area +relocated 1 +longdesc While Unicode supports the vast majority of use cases, there +longdesc are certain specialized niches which require characters and +longdesc glyphs not (yet) represented in the standard. Thus the Private +longdesc Use Area (PUA) at code points E000-F8FF, which enables third +longdesc parties to define arbitrary character sets. This package allows +longdesc configuring a number of macros for using various PUA character +longdesc sets in LaTeX (AGL, CYFI, MUFI, SIL, TITUS, UCSUR, UNZ), to +longdesc enable transcription and display of medieval and other +longdesc documents. +containersize 43852 +containerchecksum e75df935a1a0895f5bda9854042a38c92627240f1318bdeb1e39428f50133dbe0b606e66b1bea6f73681fb40ed73220c5e26a60eb4ad10b6106c3e16d778e4be +doccontainersize 701236 +doccontainerchecksum 317ddd08268f38c197136d2755fa00738270a1e179eb8ea92ada50edc69da61fff17359f38fe33afa1e30fafff23117bf98895b9218bffb7b2242099d5f5aefd +docfiles size=185 + RELOC/doc/latex/unicode-alphabets/README.md details="Readme" + RELOC/doc/latex/unicode-alphabets/license.txt + RELOC/doc/latex/unicode-alphabets/specimen.pdf details="Example of use" + RELOC/doc/latex/unicode-alphabets/specimen.tex + RELOC/doc/latex/unicode-alphabets/unicode-alphabets.bib + RELOC/doc/latex/unicode-alphabets/unicode-alphabets.pdf details="Package documentation" + RELOC/doc/latex/unicode-alphabets/unicode-alphabets.tex +runfiles size=150 + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.agl.csv + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.cyfi.csv + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.mufi.csv + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.sil.csv + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.sty + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.titus.csv + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.ucsur.csv + RELOC/tex/latex/unicode-alphabets/unicode-alphabets.unz.csv +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-license cc-by-sa-4 +catalogue-topics unicode + +name unicode-bidi +category Package +revision 42482 +shortdesc Experimental unicode bidi package for XeTeX +relocated 1 +longdesc The experimental unicode-bidi package allows to mix non-RTL +longdesc script with RTL script without any markup. +containersize 1120 +containerchecksum 35e32b9959e698ab0d32ef578376fdeaac54c1acb9abc584e742a7caafbb2cf82364d58d73ad07de4cd273a5c9c60e4468df74fc4c21fb6552ddb5be725e384d +doccontainersize 992 +doccontainerchecksum 44b76c810988c541c5dc6cc85a56fb81e8c2aa97afb84192477e57f59423e508e34aaa0542009ceb5ddbf74c95cd662697544af1cdda1d0c114bb3f0507493d5 +docfiles size=1 + RELOC/doc/xelatex/unicode-bidi/README.md details="Readme" +runfiles size=1 + RELOC/tex/xelatex/unicode-bidi/unicode-bidi.sty +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-license lppl1.3 +catalogue-topics bidi +catalogue-version 0.01 + +name unicode-data +category Package +revision 56768 +shortdesc Unicode data and loaders for TeX +relocated 1 +longdesc This bundle provides generic access to Unicode Consortium data +longdesc for TeX use. It contains a set of text files provided by the +longdesc Unicode Consortium which are currently all from Unicode 8.0.0, +longdesc with the exception of MathClass.txt which is not currently part +longdesc of the Unicode Character Database. Accompanying these source +longdesc data are generic TeX loader files allowing this data to be used +longdesc as part of TeX runs, in particular in building format files. +longdesc Currently there are two loader files: one for general character +longdesc set up and one for initialising XeTeX character classes as has +longdesc been carried out to date by unicode-letters.tex. The source +longdesc data are distributed in accordance with the license stipulated +longdesc by the Unicode Consortium. The bundle as a whole is +longdesc co-ordinated by the LaTeX3 Project as a general resource for +longdesc TeX users. +containersize 298404 +containerchecksum f966d643732bc6d9743d54cb2981e6420dd5bc33a3c2f43bf17f2f14afdfccf0ddd8068a13ce9547d60c8ee77559834f3cce97df8bd5d7252eebf978a3429b0c +doccontainersize 3820 +doccontainerchecksum 1093c6e78d8f8716cec8ed34444d5e95628c2d0be4b61cb3dae72563b2e3acfc1596b5e25dd8c101dbc8ffe15b7483a198c30f459eb76418381be3dc6caadbef +docfiles size=3 + RELOC/doc/generic/unicode-data/README.md details="Readme" +runfiles size=763 + RELOC/tex/generic/unicode-data/BidiBrackets.txt + RELOC/tex/generic/unicode-data/BidiMirroring-5-1-0.txt + RELOC/tex/generic/unicode-data/BidiMirroring.txt + RELOC/tex/generic/unicode-data/CaseFolding.txt + RELOC/tex/generic/unicode-data/EastAsianWidth.txt + RELOC/tex/generic/unicode-data/GraphemeBreakProperty.txt + RELOC/tex/generic/unicode-data/LineBreak.txt + RELOC/tex/generic/unicode-data/MathClass-15.txt + RELOC/tex/generic/unicode-data/PropList.txt + RELOC/tex/generic/unicode-data/ScriptExtensions.txt + RELOC/tex/generic/unicode-data/Scripts.txt + RELOC/tex/generic/unicode-data/SpecialCasing.txt + RELOC/tex/generic/unicode-data/UnicodeData.txt + RELOC/tex/generic/unicode-data/WordBreakProperty.txt + RELOC/tex/generic/unicode-data/emoji-data.txt + RELOC/tex/generic/unicode-data/load-unicode-data.tex + RELOC/tex/generic/unicode-data/load-unicode-math-classes.tex + 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-license lppl1.3c +catalogue-topics latex3 unicode +catalogue-version 1.14 + +name unicode-math +category Package +revision 56594 +shortdesc Unicode mathematics support for XeTeX and LuaTeX +relocated 1 +longdesc This package will provide a complete implementation of unicode +longdesc maths for XeLaTeX and LuaLaTeX. Unicode maths is currently +longdesc supported by the following freely available fonts: Latin Modern +longdesc Math (Boguslaw Jackowski, Janusz M. Nowacki), TeX Gyre Bonum +longdesc Math (Boguslaw Jackowski, , P. Strzelczyk, Janusz M. Nowacki), +longdesc TeX Gyre Pagella Math (Boguslaw Jackowski, , P. Strzelczyk, +longdesc Janusz M. Nowacki), TeX Gyre Schola Math (Boguslaw Jackowski, +longdesc P. Strzelczyk, Janusz M. Nowacki), TeX Gyre Termes Math +longdesc (Boguslaw Jackowski, P. Strzelczyk, Janusz M. Nowacki), DejaVu +longdesc Math TeX Gyre (Boguslaw Jackowski, P. Strzelczyk, Janusz M. +longdesc Nowacki), Asana-Math fonts (Apostolos Syropolous), STIX (STI +longdesc Pub), XITS Math (Khaled Hosny), Libertinus Math (Philipp H. +longdesc Poll and Khaled Hosny), and Fira Math (Xiangdong Zeng). The +longdesc following fonts are proprietary with OpenType maths support: +longdesc Lucida Bright Math (Charles Bigelow and Kris Holmes), Cambria +longdesc Math (Microsoft), Minion Math (Johannes Kuster, typoma GmbH). +longdesc As well as running XeTeX or LuaTeX, this package requires +longdesc recent versions of the fontspec, expl3, xpackages, ucharcat and +longdesc lualatex-math packages. +depend fontspec +depend lm-math +containersize 42816 +containerchecksum f3682781aac853ae96d7f09131cb102832c16d6554a070da6c6a499c7e7cfee90f05ffaee0e30e6b2e2e1c9d7d7f0fa285b6912ec95f4ad318df3dc1f529b23b +doccontainersize 1725064 +doccontainerchecksum ac7d2dbb883098b9ace6a1a99af61afa2498e7ee3e02131e4aef41eae6585061f04c181c0d73f23e126f8f2a5fa6f5ea6475af8ce6ccc1d9ccf8d2b82a22b1d4 +docfiles size=461 + RELOC/doc/latex/unicode-math/CHANGES.md + RELOC/doc/latex/unicode-math/LICENSE + RELOC/doc/latex/unicode-math/MANIFEST.md + RELOC/doc/latex/unicode-math/README.md details="Readme" + RELOC/doc/latex/unicode-math/RELEASE_CHECKLIST.md + RELOC/doc/latex/unicode-math/um-doc-legacyfontdimen.tex + RELOC/doc/latex/unicode-math/um-doc-main.tex + RELOC/doc/latex/unicode-math/um-doc-mathfontdimen.tex + RELOC/doc/latex/unicode-math/um-doc-nfsssummary.tex + RELOC/doc/latex/unicode-math/um-doc-stixextract.tex + RELOC/doc/latex/unicode-math/um-doc-style.tex + RELOC/doc/latex/unicode-math/unicode-math-code.ltx + RELOC/doc/latex/unicode-math/unicode-math-code.pdf details="Documentation of the source code" + RELOC/doc/latex/unicode-math/unicode-math.ltx + RELOC/doc/latex/unicode-math/unicode-math.pdf details="Package documentation (for the user)" + RELOC/doc/latex/unicode-math/unimath-example.ltx + RELOC/doc/latex/unicode-math/unimath-example.pdf details="Example of use" + RELOC/doc/latex/unicode-math/unimath-symbols.ltx + RELOC/doc/latex/unicode-math/unimath-symbols.pdf details="List of symbols defined by the package" +srccontainersize 37860 +srccontainerchecksum 13ae4f09246d2a4ea4f2595247a1b56955a905beb026dc78da37c07583388db387f66e574f1513ba89375f9e2e0ec1be0b65ad38e0364dd05404a7aed895bc2c +srcfiles size=67 + RELOC/source/latex/unicode-math/um-code-alphabets.dtx + RELOC/source/latex/unicode-math/um-code-amsmath.dtx + RELOC/source/latex/unicode-math/um-code-api.dtx + RELOC/source/latex/unicode-math/um-code-compat.dtx + RELOC/source/latex/unicode-math/um-code-epilogue.dtx + RELOC/source/latex/unicode-math/um-code-fontopt.dtx + RELOC/source/latex/unicode-math/um-code-fontparam.dtx + RELOC/source/latex/unicode-math/um-code-main.dtx + RELOC/source/latex/unicode-math/um-code-mathmap.dtx + RELOC/source/latex/unicode-math/um-code-mathtext.dtx + RELOC/source/latex/unicode-math/um-code-msg.dtx + RELOC/source/latex/unicode-math/um-code-opening.dtx + RELOC/source/latex/unicode-math/um-code-pkgopt.dtx + RELOC/source/latex/unicode-math/um-code-primes.dtx + RELOC/source/latex/unicode-math/um-code-setchar.dtx + RELOC/source/latex/unicode-math/um-code-sscript.dtx + RELOC/source/latex/unicode-math/um-code-sym-commands.dtx + RELOC/source/latex/unicode-math/um-code-ui.dtx + RELOC/source/latex/unicode-math/um-code-usv.dtx + RELOC/source/latex/unicode-math/um-code-variables.dtx + RELOC/source/latex/unicode-math/unicode-math.dtx + RELOC/source/latex/unicode-math/unicode-math.ins +runfiles size=127 + RELOC/tex/latex/unicode-math/unicode-math-luatex.sty + RELOC/tex/latex/unicode-math/unicode-math-table.tex + RELOC/tex/latex/unicode-math/unicode-math-xetex.sty + RELOC/tex/latex/unicode-math/unicode-math.sty +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/unicodetex/latex/unicode-math +catalogue-license lppl1.3c +catalogue-topics maths font-use luatex xetex unicode +catalogue-version 0.8q + +name unifith +category Package +revision 51968 +shortdesc Typeset theses for University of Florence (Italy) +relocated 1 +longdesc The package provides a class to typeset Ph.D., Master, and +longdesc Bachelor theses that adhere to the publishing guidelines of the +longdesc University of Florence (Italy). +containersize 14396 +containerchecksum bf288fc67865b2440b7b62633a04779e0172ed139e6ca4f1f88b21ffc84147663c143867d204b54d49f0d0f4d1aa0f3ef689dbc36881198398512aeb735c717d +doccontainersize 860256 +doccontainerchecksum f185887da8604b1e24d9dcd7581b071e65dbdce6e61ecb435e99c19fe969a5912974af8430eeb22e090a8d2e1100a3457ece22cedc84aa10d589957e0cfd61cb +docfiles size=302 + RELOC/doc/latex/unifith/README details="Readme" + RELOC/doc/latex/unifith/examples/Dottorato.pdf + RELOC/doc/latex/unifith/examples/Dottorato.tex + RELOC/doc/latex/unifith/examples/Laurea.pdf + RELOC/doc/latex/unifith/examples/Laurea.tex + RELOC/doc/latex/unifith/unifith-doc.pdf details="Package documentation" + RELOC/doc/latex/unifith/unifith-doc.tex +runfiles size=16 + RELOC/bibtex/bst/unifith/unifith.bst + RELOC/tex/latex/unifith/unifith.cls +catalogue-ctan /macros/latex/contrib/unifith +catalogue-license lppl1.3c +catalogue-topics dissertation class +catalogue-version 1.2 + +name uninormalize +category Package +revision 57257 +shortdesc Unicode normalization support +relocated 1 +longdesc This package provides Unicode normalization (useful for +longdesc composed characters) for LuaLaTeX. +containersize 5720 +containerchecksum b9b0e91a61d99005be4f37d2e5aababf70729c60d959cc57295a7197b5e360ed183bb9cd80bbb287508bf584db48f061bcbb25c6a5bfd0936923b106d9962f60 +doccontainersize 63868 +doccontainerchecksum 804c2e70ff09a677c30f531db5605512453506ab83dce8f9dab4bfbb5602f8605376becc8f65cf375b28c9d6d35ad9f3a92d6f185697e2e9f9d367638d58fb56 +docfiles size=18 + RELOC/doc/lualatex/uninormalize/README.md details="Readme" + RELOC/doc/lualatex/uninormalize/uninormalize-doc.pdf details="Package documentation" + RELOC/doc/lualatex/uninormalize/uninormalize-doc.tex +runfiles size=7 + RELOC/tex/lualatex/uninormalize/unicode-normalization.lua + RELOC/tex/lualatex/uninormalize/unicode-normalize-names.lua + RELOC/tex/lualatex/uninormalize/unicode-normalize.lua + RELOC/tex/lualatex/uninormalize/uninormalize.sty +catalogue-contact-bugs https://github.com/michal-h21/uninormalize/issues +catalogue-contact-home https://github.com/michal-h21/uninormalize +catalogue-ctan /macros/luatex/latex/uninormalize +catalogue-license lppl1.3 +catalogue-topics unicode +catalogue-version 0.1 + +name uniquecounter +category Package +revision 53162 +shortdesc Provides unlimited unique counter +relocated 1 +longdesc This package provides a kind of counter that provides unique +longdesc number values. Several counters can be created with different +longdesc names. The numeric values are not limited. +containersize 2272 +containerchecksum 9769fcfd787f210e0653c971872aaad6e0ef1e5a066e392e9d599f8fc11ab9f6587d21db1100b643d09d4850cfbfbbc1d32f01fd1e86aedab8c92da4f5a7d614 +doccontainersize 291268 +doccontainerchecksum 4dc74aabd9288ae881c4513886ff917e1e8bf08446d3b34c946bded6a6fa71ea7b6786bf432fec2661cd1db1af6b5875ab329708cc3c443499b83b0325645d0f +docfiles size=74 + RELOC/doc/latex/uniquecounter/README.md + RELOC/doc/latex/uniquecounter/uniquecounter-example.tex + RELOC/doc/latex/uniquecounter/uniquecounter.pdf details="Package documentation" +srccontainersize 5320 +srccontainerchecksum caac3c3445b2b9301d46ca94744eb600cc45b79f6946065f036f412d2d1b41716864d61e0cfb9e9d32ab8dbf870e5f4e302c96b388d680badb13c52821f7722e +srcfiles size=5 + RELOC/source/latex/uniquecounter/uniquecounter.dtx +runfiles size=2 + RELOC/tex/generic/uniquecounter/uniquecounter.sty +catalogue-contact-bugs https://github.com/ho-tex/uniquecounter/issues +catalogue-contact-repository https://github.com/ho-tex/uniquecounter +catalogue-ctan /macros/latex/contrib/uniquecounter +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 1.4 + +name unisugar +category Package +revision 22357 +shortdesc Define syntactic sugar for Unicode LaTeX +relocated 1 +longdesc The package allows the user to define shorthand aliases for +longdesc single Unicode characters, and also provides support for such +longdesc aliases in RTL-text. The package requires an TeX-alike system +longdesc that uses Unicode input in a native way: current examples are +longdesc XeTeX and LuaTeX. +containersize 2468 +containerchecksum 01dbe995d32b49121e28163c11f89e51d4c692ab864b3dbe6305a0e4364c025b13751c137df52d24160acc9a8080fbee56fc7a5af522405c3d0564486c151260 +doccontainersize 456508 +doccontainerchecksum 8e6fdec36271f3561c768acf095b6fc353da07864829322dd0b52b1784d74793828951e006f8c56a9c38849b28ce186682d906bd7bc906739b22782db2102021 +docfiles size=133 + RELOC/doc/xelatex/unisugar/Makefile + RELOC/doc/xelatex/unisugar/README + RELOC/doc/xelatex/unisugar/gedit-mixed-sugar.png + RELOC/doc/xelatex/unisugar/gedit-mixed-traditional.png + RELOC/doc/xelatex/unisugar/sugar.png + RELOC/doc/xelatex/unisugar/traditional.png + RELOC/doc/xelatex/unisugar/unisugar.pdf details="Package documentation" + RELOC/doc/xelatex/unisugar/unisugar.tex +runfiles size=2 + RELOC/tex/xelatex/unisugar/unisugar.sty +catalogue-ctan /macros/xetex/latex/unisugar +catalogue-license lppl1.3 +catalogue-topics shortcut +catalogue-version 0.92 + +name unitconv +category Package +revision 55060 +shortdesc Convert a length into one with another unit +relocated 1 +longdesc This package defines two macros to convert a value with unit +longdesc into one with another unit. Supported are all TeX related +longdesc units, and also km and m. The output can be in scientic +longdesc notation for large values. The package only works with +longdesc LuaLaTeX! +containersize 1792 +containerchecksum 2d1b66ee4ea2cc4bbdf18c5fb88a3f6c2ec438361d3e1cb058f9c3cde3272e40d471b48ec24749ab8fb714eca4b2f6e311c7af951744edcd04154c0f016ca1e6 +doccontainersize 69364 +doccontainerchecksum f01593365b13c8447c6a0ca34027956c9eba7daf4921e5fc5815fead966916b70ba5d6429ab068b3f0bbe98dcec903a59fcd6982d41769b6ad5dc0db86d7b60c +docfiles size=21 + RELOC/doc/lualatex/unitconv/Changes + RELOC/doc/lualatex/unitconv/README.md details="Readme" + RELOC/doc/lualatex/unitconv/unitconv-doc.pdf details="Package documentation" + RELOC/doc/lualatex/unitconv/unitconv-doc.tex +runfiles size=1 + RELOC/tex/lualatex/unitconv/unitconv.sty +catalogue-also lengthconvert +catalogue-ctan /macros/luatex/latex/unitconv +catalogue-license lppl1.3 +catalogue-topics units luatex misc-conv +catalogue-version 0.01 + +name unitipa +category Package +revision 58749 +shortdesc TIPA typefaces with Unicode characters as input +relocated 1 +longdesc This package converts Unicode characters into TIPA commands, +longdesc which gives us tipa typefaces without learning the actual +longdesc commands. This package needs LuaLaTeX as the compiler for +longdesc correctly typesetting the IPA diacritics. If used with the +longdesc global option nodiacritics, it can be compiled with other TeX +longdesc engines, too, but no IPA diacritics will be printed. TIPA was +longdesc designed to match with the Computer Modern design, no other IPA +longdesc font matches with traditional LaTeX fonts. This package is +longdesc helpful for obtaining the beautiful tipa shapes with Unicode +longdesc characters as input. It is assumed that the user knows how to +longdesc type IPA Unicode. +containersize 3148 +containerchecksum 968af9eed2e188e0bbb816911ee734a74b29c2f3b42b93df7e7844d368737593f925d846be464bc0334cd216709e6e8582a291dd1c9cbc3287cb7b3144e9a609 +doccontainersize 186900 +doccontainerchecksum b770d4ae25c99d1c22842ac6581a29a66a43d48912daf4e8d7ee9ce4da0d562af3d54e2741a4720993a3ecd2c676e6ca3e39969c0b0d576d3a820f84434177b5 +docfiles size=48 + RELOC/doc/lualatex/unitipa/README.txt details="Readme" + RELOC/doc/lualatex/unitipa/unitipa.pdf details="Package documentation" +srccontainersize 4872 +srccontainerchecksum e54fc2dc346384041fd571c6435b7cdde73baa241b169e941ddb7040c5efc1353d6312502bbab296a38b89735e8ca08b2f111287c2438ae09da8e930760bb276 +srcfiles size=6 + RELOC/source/lualatex/unitipa/unitipa.dtx + RELOC/source/lualatex/unitipa/unitipa.ins +runfiles size=3 + RELOC/tex/lualatex/unitipa/unitipa.sty +catalogue-contact-bugs https://gitlab.com/niruvt/unitipa/-/issues +catalogue-contact-repository https://gitlab.com/niruvt/unitipa +catalogue-ctan /macros/luatex/latex/unitipa +catalogue-license lppl1.3c +catalogue-topics phonetic linguistic luatex unicode +catalogue-version 0.3 + +name unitn-bimrep +category Package +revision 45581 +shortdesc A bimonthly report class for the PhD School of Materials, Mechatronics and System Engineering +relocated 1 +longdesc This package allows to rapidly write the bimonthly report for +longdesc The Ph.D. School in Materials, Mechatronics and System +longdesc Engineering. It allows to define the research activities, the +longdesc participation to school and congress, and the publication +longdesc performed by a student. +containersize 76668 +containerchecksum 595883fa58169e9cd7a860933f19847895ca02d3a684b71536dfcdff54c5fe6410e6cf6fab8ae9574cb9a9180ce24f3ddf41f817ceeab85d0c65684cdc9b3909 +doccontainersize 825148 +doccontainerchecksum 3049a0bfcbae6666f309979e2c2b8d52647d3c445992201afbbfa28684b83adb2a1ad5f227360c49826ba2de2cfebbc87195801c38413f5eb26bcd793b77ca61 +docfiles size=278 + RELOC/doc/latex/unitn-bimrep/LICENSE.md + RELOC/doc/latex/unitn-bimrep/README.md details="Readme" + RELOC/doc/latex/unitn-bimrep/README.pdf details="Package documentation" + RELOC/doc/latex/unitn-bimrep/VERSION.md + RELOC/doc/latex/unitn-bimrep/examples/example.pdf details="Example of use" + RELOC/doc/latex/unitn-bimrep/examples/example.png + RELOC/doc/latex/unitn-bimrep/examples/example.tex + RELOC/doc/latex/unitn-bimrep/examples/example_bib.bib + RELOC/doc/latex/unitn-bimrep/examples/example_bib.pdf + RELOC/doc/latex/unitn-bimrep/examples/example_bib.png + RELOC/doc/latex/unitn-bimrep/examples/example_bib.tex +runfiles size=23 + RELOC/tex/latex/unitn-bimrep/unitn-bimrep.cls + RELOC/tex/latex/unitn-bimrep/unitn-bimrep.jpg +catalogue-contact-announce https://github.com/MatteoRagni/unitn-bimrep +catalogue-contact-bugs https://github.com/MatteoRagni/unitn-bimrep/issues +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-license mit +catalogue-topics report-like + +name units +category Package +revision 42428 +shortdesc Typeset units +relocated 1 +longdesc The package is provided as a bundle with the nicefrac package +longdesc for typing fractions. Units uses nicefrac in typesetting +longdesc physical units in a standard-looking sort of way. +containersize 2004 +containerchecksum a1c3266bd95d8668d67e7dc451258f7a3a0362e4435ab70a574be5f7ac44bb5fbb7b30ded852602c73f227f57e8f7bf61af148070b9eae6103a982f726869a2f +doccontainersize 207040 +doccontainerchecksum e8a1d929e9817539a5fef6cd89c8d4daf60cc0495fc7698e4708eefbf60fd36daf88ee5cb668e9f1d53978d53253bb52ef6b3e6d1a313708022e5218c99e89d2 +docfiles size=60 + RELOC/doc/latex/units/COPYING + RELOC/doc/latex/units/README details="Package README" + RELOC/doc/latex/units/units.pdf details="Package documentation" +srccontainersize 7256 +srccontainerchecksum a6aff8a5917b48ce17a62de74bf327e0bc2b4a8cfc8a77fde67cfa710d8715b0d8dda54837b3f895cd769649444691df5fafd9e486bb37f4e9af110584f676da +srcfiles size=7 + RELOC/source/latex/units/units.dtx + RELOC/source/latex/units/units.ins +runfiles size=2 + RELOC/tex/latex/units/nicefrac.sty + RELOC/tex/latex/units/units.sty +catalogue-also siunitx +catalogue-ctan /macros/latex/contrib/units +catalogue-license gpl +catalogue-topics units scientific-docs +catalogue-version 0.9b + +name unitsdef +category Package +revision 15878 +shortdesc Typesetting units in LaTeX +relocated 1 +longdesc Many packages for typesetting units have been written for use +longdesc in LaTeX2e. Some define macros to typeset a lot of units but do +longdesc not suit to the actual font settings, some make the characters +longdesc needed available but do not predefine any unit. This package +longdesc tries to comply with both requirements. It predefines common +longdesc units, defines an easy to use interface to define new units and +longdesc changes the output concerning to the surrounding font settings. +containersize 4836 +containerchecksum 048b2d4f3b160a359a8db5a66b9bc3bf68545384c39c7c4964521aa2067a35e4524734e082d5bedeaf3ff52b6a5043717ca6f510cce0d041b0968968ffd232b5 +doccontainersize 635436 +doccontainerchecksum c1e6de470c8b290c66f71020794fa5a855a0c9b22d90f629c8ec0f6ab110ff780c0f39291f0309348711cc2acb60cf52f38538da8894803cfee54f9fd6fdc9c6 +docfiles size=170 + RELOC/doc/latex/unitsdef/README.1st details="Readme" + RELOC/doc/latex/unitsdef/defedpraef.tex + RELOC/doc/latex/unitsdef/defedunits.tex + RELOC/doc/latex/unitsdef/unitsdef.pdf details="Package documentation" +srccontainersize 12264 +srccontainerchecksum 9ab403624c578eb8f33801309e8c7ab0bb0b53f5bd0de0ad912a5ed6955a5d3ea0d44bb43b61fbfe5cc60a667cd908f85061c92fd397931a2a4780d0af58646b +srcfiles size=14 + RELOC/source/latex/unitsdef/unitsdef.dtx + RELOC/source/latex/unitsdef/unitsdef.ins +runfiles size=14 + RELOC/tex/latex/unitsdef/ampabbrv.cfg + RELOC/tex/latex/unitsdef/enerabbr.cfg + RELOC/tex/latex/unitsdef/freqabbr.cfg + RELOC/tex/latex/unitsdef/lengabbr.cfg + RELOC/tex/latex/unitsdef/molabbrv.cfg + RELOC/tex/latex/unitsdef/timeabbr.cfg + RELOC/tex/latex/unitsdef/unitsdef.sty + RELOC/tex/latex/unitsdef/volabbrv.cfg + RELOC/tex/latex/unitsdef/voltabbr.cfg + RELOC/tex/latex/unitsdef/weigabbr.cfg +catalogue-also siunits sistyle units +catalogue-ctan /macros/latex/contrib/unitsdef +catalogue-license lppl +catalogue-topics units scientific-docs +catalogue-version 0.2 + +name universa +category Package +revision 51984 +shortdesc Herbert Bayer's 'universal' font +relocated 1 +longdesc An implementation of the "universal" font by Herbert Bayer of +longdesc the Bauhaus school. The Metafont sources of the fonts, and +longdesc their LaTeX support, are all supplied in a LaTeX documented +longdesc source (.dtx) file. +containersize 16744 +containerchecksum f21f9bbc0c4e730cd1b115a5dbab22df9519d4a364045e292eae6b73741dabe0117c53759b7db7696c88241800970801335f7537e19d448fda6f72569c4eba50 +doccontainersize 595332 +doccontainerchecksum 3d5ae6da093d5671b369f7db4920baab6fea25e58e11926e2fffaedf1b0699885005f3d0158eb2a6afea9ac4f08ec63c577e99da7cbb75e33727f9a97c8157cd +docfiles size=210 + RELOC/doc/fonts/universa/README.md details="Readme" + RELOC/doc/fonts/universa/copying.tex + RELOC/doc/fonts/universa/unidoc.sty + RELOC/doc/fonts/universa/universa.pdf details="Package documentation (without Metafont sources)" +srccontainersize 55964 +srccontainerchecksum 2040de94a8a45c28a6c8c50d16a5d72297c1c8680f778a3fcf341cc35622c46219945f89d6b5ddffdcbc32be29b93505624fa450ae202f3ec53d61befb0d248d +srcfiles size=58 + RELOC/source/fonts/universa/universa.dtx + RELOC/source/fonts/universa/universa.ins +runfiles size=104 + RELOC/fonts/source/public/universa/fulbc10.mf + RELOC/fonts/source/public/universa/fulbc12.mf + RELOC/fonts/source/public/universa/fulbc17.mf + RELOC/fonts/source/public/universa/fulbc8.mf + RELOC/fonts/source/public/universa/fulbc9.mf + RELOC/fonts/source/public/universa/fulbo10.mf + RELOC/fonts/source/public/universa/fulbo12.mf + RELOC/fonts/source/public/universa/fulbo17.mf + RELOC/fonts/source/public/universa/fulbo8.mf + RELOC/fonts/source/public/universa/fulbo9.mf + RELOC/fonts/source/public/universa/fulbr10.mf + RELOC/fonts/source/public/universa/fulbr12.mf + RELOC/fonts/source/public/universa/fulbr17.mf + RELOC/fonts/source/public/universa/fulbr8.mf + RELOC/fonts/source/public/universa/fulbr9.mf + RELOC/fonts/source/public/universa/fulbst10.mf + RELOC/fonts/source/public/universa/fulbst12.mf + RELOC/fonts/source/public/universa/fulbst17.mf + RELOC/fonts/source/public/universa/fulbst8.mf + RELOC/fonts/source/public/universa/fulbst9.mf + RELOC/fonts/source/public/universa/fulmc10.mf + RELOC/fonts/source/public/universa/fulmc12.mf + RELOC/fonts/source/public/universa/fulmc17.mf + RELOC/fonts/source/public/universa/fulmc8.mf + RELOC/fonts/source/public/universa/fulmc9.mf + RELOC/fonts/source/public/universa/fulmo10.mf + RELOC/fonts/source/public/universa/fulmo12.mf + RELOC/fonts/source/public/universa/fulmo17.mf + RELOC/fonts/source/public/universa/fulmo8.mf + RELOC/fonts/source/public/universa/fulmo9.mf + RELOC/fonts/source/public/universa/fulmr10.mf + RELOC/fonts/source/public/universa/fulmr12.mf + RELOC/fonts/source/public/universa/fulmr17.mf + RELOC/fonts/source/public/universa/fulmr8.mf + RELOC/fonts/source/public/universa/fulmr9.mf + RELOC/fonts/source/public/universa/fulmst10.mf + RELOC/fonts/source/public/universa/fulmst12.mf + RELOC/fonts/source/public/universa/fulmst17.mf + RELOC/fonts/source/public/universa/fulmst8.mf + RELOC/fonts/source/public/universa/fulmst9.mf + RELOC/fonts/source/public/universa/uniacc.mf + RELOC/fonts/source/public/universa/unibase.mf + RELOC/fonts/source/public/universa/unidig.mf + RELOC/fonts/source/public/universa/uniext.mf + RELOC/fonts/source/public/universa/unilig.mf + RELOC/fonts/source/public/universa/unilow.mf + RELOC/fonts/source/public/universa/unipun.mf + RELOC/fonts/source/public/universa/unispe.mf + RELOC/fonts/source/public/universa/uniupp.mf + RELOC/fonts/tfm/public/universa/fulbc10.tfm + RELOC/fonts/tfm/public/universa/fulbc12.tfm + RELOC/fonts/tfm/public/universa/fulbc17.tfm + RELOC/fonts/tfm/public/universa/fulbc8.tfm + RELOC/fonts/tfm/public/universa/fulbc9.tfm + RELOC/fonts/tfm/public/universa/fulbo10.tfm + RELOC/fonts/tfm/public/universa/fulbo12.tfm + RELOC/fonts/tfm/public/universa/fulbo17.tfm + RELOC/fonts/tfm/public/universa/fulbo8.tfm + RELOC/fonts/tfm/public/universa/fulbo9.tfm + RELOC/fonts/tfm/public/universa/fulbr10.tfm + RELOC/fonts/tfm/public/universa/fulbr12.tfm + RELOC/fonts/tfm/public/universa/fulbr17.tfm + RELOC/fonts/tfm/public/universa/fulbr8.tfm + RELOC/fonts/tfm/public/universa/fulbr9.tfm + RELOC/fonts/tfm/public/universa/fulbst10.tfm + RELOC/fonts/tfm/public/universa/fulbst12.tfm + RELOC/fonts/tfm/public/universa/fulbst17.tfm + RELOC/fonts/tfm/public/universa/fulbst8.tfm + RELOC/fonts/tfm/public/universa/fulbst9.tfm + RELOC/fonts/tfm/public/universa/fulmc10.tfm + RELOC/fonts/tfm/public/universa/fulmc12.tfm + RELOC/fonts/tfm/public/universa/fulmc17.tfm + RELOC/fonts/tfm/public/universa/fulmc8.tfm + RELOC/fonts/tfm/public/universa/fulmc9.tfm + RELOC/fonts/tfm/public/universa/fulmo10.tfm + RELOC/fonts/tfm/public/universa/fulmo12.tfm + RELOC/fonts/tfm/public/universa/fulmo17.tfm + RELOC/fonts/tfm/public/universa/fulmo8.tfm + RELOC/fonts/tfm/public/universa/fulmo9.tfm + RELOC/fonts/tfm/public/universa/fulmr10.tfm + RELOC/fonts/tfm/public/universa/fulmr12.tfm + RELOC/fonts/tfm/public/universa/fulmr17.tfm + RELOC/fonts/tfm/public/universa/fulmr8.tfm + RELOC/fonts/tfm/public/universa/fulmr9.tfm + RELOC/fonts/tfm/public/universa/fulmst10.tfm + RELOC/fonts/tfm/public/universa/fulmst12.tfm + RELOC/fonts/tfm/public/universa/fulmst17.tfm + RELOC/fonts/tfm/public/universa/fulmst8.tfm + RELOC/fonts/tfm/public/universa/fulmst9.tfm + RELOC/tex/latex/universa/omluni.fd + RELOC/tex/latex/universa/omsuni.fd + RELOC/tex/latex/universa/ot1uni.fd + RELOC/tex/latex/universa/t1uni.fd + RELOC/tex/latex/universa/uni.sty + RELOC/tex/latex/universa/uuni.fd +catalogue-ctan /fonts/universa +catalogue-license gpl +catalogue-topics font font-proportional font-sans font-mf +catalogue-version 2.1 + +name universalis +category Package +revision 33860 +shortdesc Universalis font, with support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the UniversalisADFStd family of fonts, designed by +longdesc Hirwin Harendal. The font is suitable as an alternative to +longdesc fonts such as Adrian Frutiger's Univers and Frutiger. +execute addMap universalis.map +containersize 514020 +containerchecksum fcf890f52623fbded89b6dc5e6a8ed425354437430f66a70515ef7cfc126e6af20331f557630205189c7aa676532795d77415f2b4099b1fa46f460dd1b0f2011 +doccontainersize 35596 +doccontainerchecksum 4cee70c65d7f83a5d280550934c47acc59cffad87d78364ef84d397914127f43fc74b469469371652a83625d0fbe97c2a50fad76f559f39924b1995bf6a09baf +docfiles size=15 + RELOC/doc/fonts/universalis/COPYING + RELOC/doc/fonts/universalis/NOTICE.txt + RELOC/doc/fonts/universalis/README details="Readme" + RELOC/doc/fonts/universalis/universalis-samples.pdf details="Font samples" + RELOC/doc/fonts/universalis/universalis-samples.tex +runfiles size=326 + RELOC/fonts/enc/dvips/universalis/unvsl_fe7xck.enc + RELOC/fonts/enc/dvips/universalis/unvsl_qu6a6x.enc + RELOC/fonts/enc/dvips/universalis/unvsl_sjpjw4.enc + RELOC/fonts/enc/dvips/universalis/unvsl_xtabpf.enc + RELOC/fonts/map/dvips/universalis/universalis.map + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Bold.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldCond.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldCondIt.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldItalic.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Cond.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-CondItalic.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Italic.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Regular.otf + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1.tfm + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Bold.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCond.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondIt.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondItLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldItalic.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Cond.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-CondItalic.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-CondItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-CondLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Italic.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Regular.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-RegularLCDFJ.pfb + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1.vf + RELOC/tex/latex/universalis/LY1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/OT1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/T1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/TS1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/UniversalisADFStd.sty + RELOC/tex/latex/universalis/universalis.sty +catalogue-ctan /fonts/universalis +catalogue-license gpl2 +catalogue-topics font font-otf font-type1 font-sans + +name univie-ling +category Package +revision 56913 +shortdesc Papers, theses and research proposals in (Applied) Linguistics at Vienna University +relocated 1 +longdesc This bundle provides LaTeX2e classes, BibLaTeX files, and +longdesc templates suitable for student papers, PhD research proposals +longdesc (Exposes), and theses in (Applied) Linguistics at the +longdesc University of Vienna. The classes implement some standards for +longdesc these types of text, such as suitable title pages. They are +longdesc particularly suited for the field of (Applied) Linguistics and +longdesc pre-load some packages that are considered useful in this +longdesc context. The classes can also be used for General and +longdesc Historical Linguistics as well as for other fields of study at +longdesc Vienna University. In this case, however, some settings may +longdesc have to be adjusted. +containersize 131944 +containerchecksum d4c0a0d760fc6d9c5fb2a56a7040b37a2fd5e20c13761374fb8e83763e0e01090ba3079a589cd6544c707148c17c389e377598f420d73cb942da591ddeffb943 +doccontainersize 2110564 +doccontainerchecksum ded1f91665ad5a8e13bdbc5b01fad86f73efa77d144b946f8049fa6876b26cf237f645250137899e06d93bb19117120be9fd8d9651857bcc0a19df49ce87b664 +docfiles size=720 + RELOC/doc/latex/univie-ling/README details="Readme" + RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-expose-english.pdf + RELOC/doc/latex/univie-ling/templates/template-expose-english.tex + RELOC/doc/latex/univie-ling/templates/template-paper-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-paper-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-paper-english.pdf + RELOC/doc/latex/univie-ling/templates/template-paper-english.tex + RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.xmpdata + RELOC/doc/latex/univie-ling/templates/template-thesis-english.pdf + RELOC/doc/latex/univie-ling/templates/template-thesis-english.tex + RELOC/doc/latex/univie-ling/templates/template-thesis-english.xmpdata + RELOC/doc/latex/univie-ling/templates/template-wlg-article.pdf + RELOC/doc/latex/univie-ling/templates/template-wlg-article.tex + RELOC/doc/latex/univie-ling/univie-ling-expose.pdf details="Package documentation (expose class)" + RELOC/doc/latex/univie-ling/univie-ling-expose.tex + RELOC/doc/latex/univie-ling/univie-ling-paper.pdf details="Package documentation (paper class)" + RELOC/doc/latex/univie-ling/univie-ling-paper.tex + RELOC/doc/latex/univie-ling/univie-ling-thesis.pdf details="Package documentation (thesis class)" + RELOC/doc/latex/univie-ling/univie-ling-thesis.tex + RELOC/doc/latex/univie-ling/univie-ling-wlg.pdf details="Package documentation (Wiener Linguistische Gazette)" + RELOC/doc/latex/univie-ling/univie-ling-wlg.tex +runfiles size=63 + RELOC/tex/latex/univie-ling/univie-ling-expose.cls + RELOC/tex/latex/univie-ling/univie-ling-paper.cls + RELOC/tex/latex/univie-ling/univie-ling-thesis.cls + RELOC/tex/latex/univie-ling/univie-ling-wlg-logo.pdf + RELOC/tex/latex/univie-ling/univie-ling-wlg.cfg + RELOC/tex/latex/univie-ling/univie-ling-wlg.cls + RELOC/tex/latex/univie-ling/univie-ling.bbx + RELOC/tex/latex/univie-ling/univie-ling.cbx + RELOC/tex/latex/univie-ling/univielogo-sw.pdf +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-license lppl1.3 +catalogue-topics linguistic class dissertation article-like misc-paper std-conform +catalogue-version 1.13 + +name unizgklasa +category Package +revision 51647 +shortdesc A LaTeX class for theses at the Faculty Of Graphic Arts in Zagreb +relocated 1 +longdesc This class is intended for generating graduate and final theses +longdesc according to the instructions of the Faculty of Graphic Arts, +longdesc University of Zagreb. It does not necessarily correspond to the +longdesc requirements of each component of the University, but is +longdesc designed as an idea for linking and uniformizing the look of +longdesc all graduate papers. Anyone who likes it is welcome to use it. +containersize 2028 +containerchecksum ac96ff7105cc0a6eefa7a797b325c6e3cd7a0e59d31a6ead1f715d37d326450fbb3d39d6bc5228df5861c5633ab8be027f7652426c10e0ab23a2c9ab68bcfd98 +doccontainersize 31784 +doccontainerchecksum 00e373b284ea78d596519d982efe8d4c8f59f8abbec67c314bf361b1744d35fe2846615b8cb7d38e1516503c6ed49f9ea38718c31a760f3d19ed4a7686e8bebf +docfiles size=11 + RELOC/doc/latex/unizgklasa/README.md details="Readme" + RELOC/doc/latex/unizgklasa/example.pdf details="Example of use (Croatian and English)" language="hr" + RELOC/doc/latex/unizgklasa/example.tex +runfiles size=1 + RELOC/tex/latex/unizgklasa/unizgklasa.cls +catalogue-ctan /macros/latex/contrib/unizgklasa +catalogue-license lppl1.3 +catalogue-topics class dissertation croatian +catalogue-version 1.0 + +name unravel +category Package +revision 52822 +shortdesc Watching TeX digest tokens +relocated 1 +longdesc The aim of this LaTeX package is to help debug complicated +longdesc macros. This is done by letting the user step through the +longdesc execution of some TeX code, going through the details of nested +longdesc expansions, performing assignments, as well as some simple +longdesc typesetting commands. To use this package, one should normally +longdesc run TeX in a terminal. The unravel package requires up-to-date +longdesc versions of the l3kernel, l3packages and l3experimental +longdesc bundles. +containersize 28380 +containerchecksum e31da53c07ddb60491412e94f50444cd3178879180426cc2d8f78d5056a05c091a36d1c5b9107f0e3714acab1f723e90ddfc0250319bde07d67133bc50543f4d +doccontainersize 683816 +doccontainerchecksum 5fc7618723ab27f57c14b0b81cb8d6f1b141ac6582cd73143a5c1543dca0f307ff5eaff006dd0a55c6f84887f0b08dddda5651b9c0938716262894cb3b8aeda0 +docfiles size=170 + RELOC/doc/latex/unravel/README.md details="Readme" + RELOC/doc/latex/unravel/unravel.pdf details="Package documentation" +srccontainersize 51652 +srccontainerchecksum 2c7336dd1033f87a10ee48e699c0c782e5f2fbf52102580f396f8d7ac5805fbd665ece0370bd72cd191fa9df6fefa8b27d07ace58710e1c8d04aa45f3bfaa5e3 +srcfiles size=77 + RELOC/source/latex/unravel/unravel.dtx + RELOC/source/latex/unravel/unravel.ins +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-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 0.2h + +name unswcover +category Package +revision 29476 +shortdesc Typeset a dissertation cover page following UNSW guidelines +relocated 1 +longdesc The package an UNSW cover sheet following the 2011 GRS +longdesc guidelines. It may also (optionally) provide other required +longdesc sheets such as Originality, Copyright and Authenticity +longdesc statements. +containersize 2664 +containerchecksum e51938d3e31bb75abf7b8af27a7cfc47efde49b1e569c2d9b5d170bd4e7a29479571717d9932de22907e2f23093e977959112d4c1c42687fbaecddd6fe1b990f +doccontainersize 119528 +doccontainerchecksum ea443054c6c89bac4ead8218e12a4a8020fbcea1204eb12f237f0a58f4f303797b27bb45585b78167d0a43a6758d257da0b140deb563de7cdc9497b8df56f329 +docfiles size=43 + RELOC/doc/latex/unswcover/COPYING + RELOC/doc/latex/unswcover/Makefile + RELOC/doc/latex/unswcover/README details="Readme" + RELOC/doc/latex/unswcover/logo_unsw_short.pdf + RELOC/doc/latex/unswcover/thesis.bib + RELOC/doc/latex/unswcover/thesis.pdf details="Example document" + RELOC/doc/latex/unswcover/thesis.tex +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-license lppl1.3 +catalogue-topics dissertation +catalogue-version 1.0 + +name uothesis +category Package +revision 25355 +shortdesc Class for dissertations and theses at the University of Oregon +relocated 1 +longdesc The class generates documents that are suitable for submission +longdesc to the Graduate School and conform with the style requirements +longdesc for dissertations and theses as laid out in the Fall 2010 UO +longdesc graduate school student manual. +containersize 8728 +containerchecksum 8549715b39426264ae94d5618f13837bf20e48a350cfccc5642ff5e246ad84e04050e2def0780e8f3da69647d86b6795a009215da1277f43ab9a8a3b5acb798a +doccontainersize 608984 +doccontainerchecksum 16af5c258ae738401885a1451675ace657e169deb37670336ab87ac39d30128c98bff91b5f9f6f2de9961d981b2719f94472692c5456913bada6e7ec6bbb60c6 +docfiles size=154 + RELOC/doc/latex/uothesis/README details="Readme" + RELOC/doc/latex/uothesis/README.txt + RELOC/doc/latex/uothesis/acs-uothesis.bib + RELOC/doc/latex/uothesis/uothesis.hd + RELOC/doc/latex/uothesis/uothesis.pdf details="Package documentation" +srccontainersize 24256 +srccontainerchecksum 3b6a5f3ccc28877e4e48000ec88c480b70f5f454c481f970e6ba409fe71e19cee64293cdbc9fe46c8d0a498401fb2f46f2bd6c1662c3bf19a2c24e1c10c3895a +srcfiles size=25 + RELOC/source/latex/uothesis/uothesis.dtx + RELOC/source/latex/uothesis/uothesis.ins +runfiles size=8 + RELOC/tex/latex/uothesis/uothesis.cls +catalogue-ctan /macros/latex/contrib/uothesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 2.5.6 + +name uowthesis +category Package +revision 19700 +shortdesc Document class for dissertations at the University of Wollongong +relocated 1 +longdesc A document class for higher degree research theses in +longdesc compliance with the specifications of University of Wollongong +longdesc (UoW) theses in the "Guidelines for Preparation and Submission +longdesc of Higher Degree Research Theses" (March 2006), by the Research +longdesc Student Centre, Research & Innovation Division, UoW. +containersize 44552 +containerchecksum 060684c777f377fcc98b371123cfcd9717a113deb0f7fbd99cdf6cec65e66b77fc44d50a3475c8b1e8071eec80c2e6b1c20437a4432d6d5fba208fe3f06fe127 +doccontainersize 93176 +doccontainerchecksum 00386265fd93cc89146fba04eff87b55fc250e3429ca5d769f006ee1e8c581fdd96702830a90ca4eeedd35e0d90305b5ce19dea6f16ef5600479d1fc1ab2e35b +docfiles size=32 + RELOC/doc/latex/uowthesis/README details="Readme" + RELOC/doc/latex/uowthesis/myThesisBib.bib + RELOC/doc/latex/uowthesis/mythesis.pdf details="Demonstration document" + RELOC/doc/latex/uowthesis/mythesis.tex +runfiles size=865 + RELOC/tex/latex/uowthesis/UoWlogo.eps + RELOC/tex/latex/uowthesis/UoWlogo.png + RELOC/tex/latex/uowthesis/UoWthesis.cls +catalogue-ctan /macros/latex/contrib/uowthesis +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 1.0a + +name uowthesistitlepage +category Package +revision 54512 +shortdesc Title page for dissertations at the University of Wollongong +relocated 1 +longdesc The package redefines \maketitle to generate a title page for a +longdesc University of Wollongong thesis, in accordance with the UoW +longdesc branding guidelines. The package should be used with the book +longdesc class to typeset a thesis. The package also defines a +longdesc \declaration command that typesets the declaration that this +longdesc thesis is your own work, etc., which is required in the front +longdesc of each PhD Thesis. +containersize 5064 +containerchecksum 3eca5009deb6ccf7daf6d31ffb5e6d3c08ff26395e03b80617411c4dc4049bb2ebd68628f285b95b547bc512fd1cc83246afd5513dc54cb1900edb813f77ede4 +doccontainersize 903456 +doccontainerchecksum e5e2ec32edb38ea3960922c5f38c9dd9705914f49421b89cc1cb8e6f1d8213512c804c084f1883d1682d5c65b9c54511ec47cf700ca731c4bc352b0bc4e85ffb +docfiles size=556 + RELOC/doc/latex/uowthesistitlepage/README.md details="Readme" + RELOC/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.pdf details="Package documentation" + RELOC/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.tex +runfiles size=5 + RELOC/tex/latex/uowthesistitlepage/uowthesistitlepage.sty +catalogue-also uowthesis +catalogue-ctan /macros/latex/contrib/uowthesistitlepage +catalogue-license lppl1.3c cc-by-sa-4 +catalogue-topics dissertation +catalogue-version 3.0.1 + +name upca +category Package +revision 22511 +shortdesc Print UPC-A barcodes +relocated 1 +longdesc The package defines a single macro \upca, to print UPC-A +longdesc barcodes. +containersize 1840 +containerchecksum 3423a3a7d42273bfb28642d250d5000fd55d5cfe2dfb5ba0c2f875ced6c6df344866a5512a624dedb12d6bb9357f02a831297f4aba463dbd5e69e5e8dd9941dd +doccontainersize 812 +doccontainerchecksum f19dd751bffb9ee92ee80f74f692ac410781e87817ee841c01f37bac87fc770b9fc97d488ffbe97490206899653d329034d82cf649de0ee52cfa4643f956d7de +docfiles size=2 + RELOC/doc/generic/upca/README details="Readme" + RELOC/doc/generic/upca/test-upca.tex +runfiles size=2 + RELOC/tex/generic/upca/upca.tex +catalogue-ctan /macros/generic/upca +catalogue-license lppl +catalogue-topics barcode + +name uplatex +category Package +revision 58842 +shortdesc pLaTeX2e and miscellaneous macros for upTeX +longdesc The bundle provides pLaTeX2e macros for upTeX by Takuji Tanaka. +longdesc This is a community edition syncing with platex. The bundle +longdesc depends on platex. +depend atbegshi +depend atveryend +depend babel +depend cm +depend everyshi +depend firstaid +depend hyphen-base +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-base-dev +depend latex-firstaid-dev +depend latex-fonts +depend platex +depend tex-ini-files +depend unicode-data +depend uplatex.ARCH +depend uptex +depend uptex-fonts +execute AddFormat name=uplatex engine=euptex options="*uplatex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,uptex-fonts,platex,latex +execute AddFormat name=uplatex-dev engine=euptex options="*uplatex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,uptex-fonts,platex,l3kernel,latex-base-dev,latex-firstaid-dev +containersize 14752 +containerchecksum 83f8e209949e0f7cdef7f440bfceea51ba1a7ddc4c145bb23c6b8de07a84e6b207bac0c00399a3e33c7b40b4558e7b5195addaafe7f40bd56206a9e1e04bbcf2 +doccontainersize 776292 +doccontainerchecksum 39ad4ffb959c34515ed40f8fb0245554d57a246610c452888f56f7f499681fba0e1b8e08f4b2020f1c2ff37f275ecd6b061584385dd6fb58bcf898f2eb4a510a +docfiles size=201 + texmf-dist/doc/man/man1/uplatex.1 + texmf-dist/doc/man/man1/uplatex.man1.pdf + texmf-dist/doc/uplatex/base/LICENSE + texmf-dist/doc/uplatex/base/README.md details="Readme" + texmf-dist/doc/uplatex/base/README_uplatex.txt + texmf-dist/doc/uplatex/base/uplatex-en.pdf details="Package documentation" + texmf-dist/doc/uplatex/base/uplatex.pdf details="Package documentation" language="ja" + texmf-dist/doc/uplatex/base/upldoc.pdf +srccontainersize 50384 +srccontainerchecksum 0f018972d98bb2e3a9f280b50a812b7cba30d846e46cbf325d5c9283bc7b5576ffa631808604a0f7149e409e9ba9bffc39c049d48511920be35d94de7134434b +srcfiles size=71 + texmf-dist/source/uplatex/base/Makefile + texmf-dist/source/uplatex/base/ujclasses.dtx + texmf-dist/source/uplatex/base/ukinsoku.dtx + texmf-dist/source/uplatex/base/uplatex.dtx + texmf-dist/source/uplatex/base/uplcls.ins + texmf-dist/source/uplatex/base/upldocs.ins + texmf-dist/source/uplatex/base/uplfmt.ins + texmf-dist/source/uplatex/base/uplfonts.dtx + texmf-dist/source/uplatex/base/uplvers.dtx +runfiles size=94 + texmf-dist/tex/uplatex/base/jt2gt.fd + texmf-dist/tex/uplatex/base/jt2mc.fd + texmf-dist/tex/uplatex/base/jy2gt.fd + texmf-dist/tex/uplatex/base/jy2mc.fd + texmf-dist/tex/uplatex/base/ujarticle.cls + texmf-dist/tex/uplatex/base/ujbk10.clo + texmf-dist/tex/uplatex/base/ujbk11.clo + texmf-dist/tex/uplatex/base/ujbk12.clo + texmf-dist/tex/uplatex/base/ujbook.cls + texmf-dist/tex/uplatex/base/ujreport.cls + texmf-dist/tex/uplatex/base/ujsize10.clo + texmf-dist/tex/uplatex/base/ujsize11.clo + texmf-dist/tex/uplatex/base/ujsize12.clo + texmf-dist/tex/uplatex/base/ukinsoku.tex + texmf-dist/tex/uplatex/base/uplatex.ltx + texmf-dist/tex/uplatex/base/uplcore.ltx + texmf-dist/tex/uplatex/base/upldefs.ltx + texmf-dist/tex/uplatex/base/uptrace.sty + texmf-dist/tex/uplatex/base/utarticle.cls + texmf-dist/tex/uplatex/base/utbk10.clo + texmf-dist/tex/uplatex/base/utbk11.clo + texmf-dist/tex/uplatex/base/utbk12.clo + texmf-dist/tex/uplatex/base/utbook.cls + texmf-dist/tex/uplatex/base/utreport.cls + texmf-dist/tex/uplatex/base/utsize10.clo + texmf-dist/tex/uplatex/base/utsize11.clo + texmf-dist/tex/uplatex/base/utsize12.clo + texmf-dist/tex/uplatex/config/uplatex.ini +catalogue-contact-repository https://github.com/texjporg/uplatex +catalogue-ctan /language/japanese/uplatex +catalogue-license bsd3 +catalogue-topics format class japanese + +name uplatex.aarch64-linux +category Package +revision 52800 +shortdesc aarch64-linux files of uplatex +containersize 344 +containerchecksum 7cb3b5914865f353834e88cce9ce010279772725d4fc022e3fd8a54d07faee7c9a223afa2060a4dcaf08e60343397c9653afeb918b2f2318ab569bdd39497c92 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/uplatex + bin/aarch64-linux/uplatex-dev + +name uplatex.amd64-freebsd +category Package +revision 52800 +shortdesc amd64-freebsd files of uplatex +containersize 344 +containerchecksum f7c23b41c0bfe7e76779f5d42fc88892f5dc799f3a49bfa6212a39be6de660fd5b6891196f6d332b94553612e1812560e7a7d8d5faf8c9cef1c7ff4aa689d117 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/uplatex + bin/amd64-freebsd/uplatex-dev + +name uplatex.amd64-netbsd +category Package +revision 52800 +shortdesc amd64-netbsd files of uplatex +containersize 344 +containerchecksum 9411d4bb909f3cc855ff1d1687a501d93276893be9d1b08b3fd149d889599c22ded5cf9e11f16499e26fc1ff649039960fce4c25b7fe026c871214ddb3ddd898 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/uplatex + bin/amd64-netbsd/uplatex-dev + +name uplatex.armhf-linux +category Package +revision 52800 +shortdesc armhf-linux files of uplatex +containersize 348 +containerchecksum 8fe583a19284724a2cd1daa13116b1fdef7f8dbf9ee25bb79ab937db3bedffe52dadc7d153f9597adc2d0a85450e147382375b733c5b6ab97affc70ad97a566c +binfiles arch=armhf-linux size=2 + bin/armhf-linux/uplatex + bin/armhf-linux/uplatex-dev + +name uplatex.i386-cygwin +category Package +revision 52812 +shortdesc i386-cygwin files of uplatex +containersize 344 +containerchecksum 717e13fae75c6395c309edef074606dc634b46e5b52e8bc8733ed91a0162611d4c2795df0dfccd4d0b8374f1f01df730425ab284a211af471274df6204bbf3de +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/uplatex + bin/i386-cygwin/uplatex-dev + +name uplatex.i386-freebsd +category Package +revision 52800 +shortdesc i386-freebsd files of uplatex +containersize 344 +containerchecksum 41b1e626c67035bb4d4f9b72abaff2481384206f1259706f64f6530b89986a78e2cb9826db433bb653019b010f011a8c49b793bfcb66544a693fd98750272895 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/uplatex + bin/i386-freebsd/uplatex-dev + +name uplatex.i386-linux +category Package +revision 52800 +shortdesc i386-linux files of uplatex +containersize 344 +containerchecksum 6d7a02c75eee9a2be4229ffdd63e5c799de9c3c3402c9d0f20553576be3102c6448b0efbe311f4b11b5feca57f0ed134dfe2c39b2b1868b90284dfa61e7724ec +binfiles arch=i386-linux size=2 + bin/i386-linux/uplatex + bin/i386-linux/uplatex-dev + +name uplatex.i386-netbsd +category Package +revision 52800 +shortdesc i386-netbsd files of uplatex +containersize 344 +containerchecksum 3b445ce58d867198344c797f3b53036a898304f52c2fa284996986c06e7bc377b6ca3b955e6b7b718ac8f70cb3c0b7dab0201ad91c874b503c62158ee0c14786 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/uplatex + bin/i386-netbsd/uplatex-dev + +name uplatex.i386-solaris +category Package +revision 52800 +shortdesc i386-solaris files of uplatex +containersize 344 +containerchecksum 9835f7fe5d4975019f765641a6564f14caee9acdc31cbf9189e3c983cbe5b1d4c74bae879524c5a24abc83d1a0a2baf619bae195330eb27ae52be637f80fddb2 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/uplatex + bin/i386-solaris/uplatex-dev + +name uplatex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of uplatex +containersize 336 +containerchecksum 210ca820ffd57aff397a96b99fa60870136f0261865f037de5d8522410343ba0a224fc5f3e2f149393f8941ff1aa2e522e49c9b82c26d14460b17e8935cafbba +binfiles arch=universal-darwin size=2 + bin/universal-darwin/uplatex + bin/universal-darwin/uplatex-dev + +name uplatex.win32 +category Package +revision 57883 +shortdesc win32 files of uplatex +containersize 884 +containerchecksum 2d10babe5331106a4d7bbd92f21e809cde876a315261ed43bab789daa6371ebcc21d1e58ff629f533d981f869256b473339301fcf0026702e087008818e4083c +binfiles arch=win32 size=2 + bin/win32/uplatex-dev.exe + bin/win32/uplatex.exe + +name uplatex.x86_64-cygwin +category Package +revision 52812 +shortdesc x86_64-cygwin files of uplatex +containersize 348 +containerchecksum b303aac2a28271bf50319d92d102a2c80f7e6ff9cc39b6bf217500b65fbfa533deb2c27d3c3f074b823de062de4bdda272fc2d72e39c6a2534f952f3720fb2ff +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/uplatex + bin/x86_64-cygwin/uplatex-dev + +name uplatex.x86_64-darwinlegacy +category Package +revision 52800 +shortdesc x86_64-darwinlegacy files of uplatex +containersize 352 +containerchecksum ec8d09cd72c6eac1e252bdcb8e48e56d5e950aaf3a943e2c97f2773d5c2c961b3bc651aabb19ec3cffdedc962b32f00260690505e11cd270a646bfa2fffb228d +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/uplatex + bin/x86_64-darwinlegacy/uplatex-dev + +name uplatex.x86_64-linux +category Package +revision 52800 +shortdesc x86_64-linux files of uplatex +containersize 344 +containerchecksum fed9a95cf67e96d7817fc6da613d0c746aa73c06b54f0a8fb19252bf0dc11c99ee90aa2a943cb0d4ed34f4e22e7e9ba269f43f493eec270b91d3096ca8c84d60 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/uplatex + bin/x86_64-linux/uplatex-dev + +name uplatex.x86_64-linuxmusl +category Package +revision 52800 +shortdesc x86_64-linuxmusl files of uplatex +containersize 348 +containerchecksum d6388de5feb652ba7a03c6d747330c9504a3a1c177d80627c6d7eab75de2296855093bf01f94ad0d057e80d8b1bb42d336862a41f7e7b77d290e1483724571a3 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/uplatex + bin/x86_64-linuxmusl/uplatex-dev + +name uplatex.x86_64-solaris +category Package +revision 52800 +shortdesc x86_64-solaris files of uplatex +containersize 348 +containerchecksum 26864accb9aad78eba9926fa3a10f71259eebfe5b6d96161987f50a17aa8a15507dd6932f73d43bcdf5e6c0e9039acb20e155e86db222009627099326d267516 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/uplatex + bin/x86_64-solaris/uplatex-dev + +name upmethodology +category Package +revision 54758 +shortdesc Writing specifications such as for UP-based methodologies +relocated 1 +longdesc The bundle allows the user to create Unified Process +longdesc methodology (UP or RUP) based documents. The style provides +longdesc document versioning, document history, document authors, +longdesc document validators, specification description, task +longdesc management, and several helping macros. +containersize 28756 +containerchecksum 848e1a982a1d0667082b12970a057f639bcb8eae0c55f984508ace27e98bb0b2c9d285a3730c4c7eca4a1ff361e3b2e6908f85c0e0768e9b4e8ccd66232ec4a6 +doccontainersize 503812 +doccontainerchecksum 856e798164ec708da8f8695f9f166cedb36973f6747a01b2cc10cb5a8d124cf4383a625db57578666d1fc4658516dd8e9bf94221967b1829cf5356314ab121bc +docfiles size=186 + RELOC/doc/latex/upmethodology/AUTHORS + RELOC/doc/latex/upmethodology/CONTRIBUTING.textile + RELOC/doc/latex/upmethodology/COPYING + RELOC/doc/latex/upmethodology/Changelog + RELOC/doc/latex/upmethodology/README details="Readme" + RELOC/doc/latex/upmethodology/README.textile + RELOC/doc/latex/upmethodology/VERSION + RELOC/doc/latex/upmethodology/arakhne_org_logo.jpg + RELOC/doc/latex/upmethodology/figure_and_tex.pdf + RELOC/doc/latex/upmethodology/figure_and_tex.pdftex_t + RELOC/doc/latex/upmethodology/frontclassic.jpg + RELOC/doc/latex/upmethodology/frontmodern.jpg + RELOC/doc/latex/upmethodology/illustration.jpg + RELOC/doc/latex/upmethodology/upm_caution.pdf + RELOC/doc/latex/upmethodology/upm_caution.png + RELOC/doc/latex/upmethodology/upm_caution.svg + RELOC/doc/latex/upmethodology/upm_info.pdf + RELOC/doc/latex/upmethodology/upm_info.png + RELOC/doc/latex/upmethodology/upm_info.svg + RELOC/doc/latex/upmethodology/upm_question.pdf + RELOC/doc/latex/upmethodology/upm_question.png + RELOC/doc/latex/upmethodology/upm_question.svg + RELOC/doc/latex/upmethodology/upmethodology-doc.pdf details="Package documentation" + RELOC/doc/latex/upmethodology/upmethodology-doc.tex +runfiles size=49 + RELOC/bibtex/bst/upmethodology/upmplainnat.bst + RELOC/tex/latex/upmethodology/UPMVERSION.def + RELOC/tex/latex/upmethodology/upmethodology-backpage.sty + RELOC/tex/latex/upmethodology/upmethodology-code.sty + RELOC/tex/latex/upmethodology/upmethodology-document.cls + RELOC/tex/latex/upmethodology/upmethodology-document.sty + RELOC/tex/latex/upmethodology/upmethodology-extension.sty + RELOC/tex/latex/upmethodology/upmethodology-fmt.sty + RELOC/tex/latex/upmethodology/upmethodology-frontpage.sty + RELOC/tex/latex/upmethodology/upmethodology-p-common.sty + RELOC/tex/latex/upmethodology/upmethodology-spec.sty + RELOC/tex/latex/upmethodology/upmethodology-task.sty + RELOC/tex/latex/upmethodology/upmethodology-version.sty +catalogue-contact-bugs https://github.com/gallandarakhneorg/tex-upmethodology/issues +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-license lgpl3 +catalogue-topics doc-mgmt +catalogue-version 20200406 + +name uppunctlm +category Package +revision 42334 +shortdesc Always keep upright shape for some punctuation marks and Arabic numerals +relocated 1 +longdesc The package provides a mechanism to keep punctuation always in +longdesc upright shape even if italic was specified. It is directed to +longdesc Latin Modern fonts, and provides .tfm, .vf, .fd, and .sty +longdesc files. Here a list of punctuation characters always presented +longdesc in upright shapes: comma, period, semicolon, colon, +longdesc parentheses, square brackets, and Arabic numerals. +containersize 13992 +containerchecksum 522b68bd32887ba14ecd927c49c5fd57a84a1c0f9b8a0bfad65a4d377b68a7bd449754dd411a72fd83e5736e32e2c47cb1f54155f72395c465e4e09ad1d09dea +doccontainersize 156432 +doccontainerchecksum d0f67dba683a40a6392121cd53b58df6d7ec6ffd8bf52df60f53537fc1b389de178dfceb1e772dfc9e292cc543448dac3a85cc6b712283b384ccfec4655c988e +docfiles size=40 + RELOC/doc/fonts/uppunctlm/README.md details="Readme" + RELOC/doc/fonts/uppunctlm/always_upright_punctuation_marks.pdf details="Package documentation" + RELOC/doc/fonts/uppunctlm/always_upright_punctuation_marks.tex +runfiles size=32 + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri10.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri12.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri7.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri8.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri9.tfm + RELOC/fonts/vf/public/uppunctlm/ec-uplmri10.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri12.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri7.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri8.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri9.vf + RELOC/tex/latex/uppunctlm/t1uplmr.fd + RELOC/tex/latex/uppunctlm/uppunctlm.sty +catalogue-ctan /fonts/uppunctlm +catalogue-license gfsl +catalogue-topics font font-virtual +catalogue-version 0.1 + +name upquote +category Package +revision 26059 +shortdesc Show "realistic" quotes in verbatim +relocated 1 +longdesc Typewriter-style fonts are best for program listings, but +longdesc Computer Modern Typewriter prints ` and ' as bent opening and +longdesc closing single quotes. Other fonts, and most programming +longdesc languages, print ` as a grave accent and ' upright; ' is used +longdesc both to open and to close quoted strings. The package switches +longdesc the typewriter font to Computer Modern Typewriter in OT1 +longdesc encoding, and modifies the behaviour of verbatim, verbatim*, +longdesc \verb, and \verb* to print in the "` and ' way". It does +longdesc thisregardless of other fonts or encodings in use, so long as +longdesc the package is loaded after the other fonts were. The package +longdesc does not affect \tt, \texttt, etc. +containersize 1272 +containerchecksum 06360c313124487f291a8daf7399a3139cec8c0a05be12724cedb3d60393ecb07aa31e34f9b74a83048f5752a8d826505f91f2c85d34348264975b48a1813fab +doccontainersize 163312 +doccontainerchecksum 4b92923e8af2dcd65e82269994c766b88c6f78f6e7b8d10b9f44889832150711acb0cbaf467d595d6745863f385569f7eeccb4ce69df8361e56910969532e314 +docfiles size=44 + RELOC/doc/latex/upquote/README details="Readme" + RELOC/doc/latex/upquote/upquote.pdf details="Package documentation" +srccontainersize 2688 +srccontainerchecksum dcb227a6ebb481e9c4abb9f9ddacafda03ae4a445768a3a242c6dc3bc79f83e9e5f185db4d353916b4d50f5aefa9884bc52fbced79894e1c00cd7f40f0940884 +srcfiles size=3 + RELOC/source/latex/upquote/upquote.dtx + RELOC/source/latex/upquote/upquote.ins +runfiles size=1 + RELOC/tex/latex/upquote/upquote.sty +catalogue-ctan /macros/latex/contrib/upquote +catalogue-license lppl1.2 +catalogue-topics verbatim +catalogue-version 1.3 + +name uptex +category Package +revision 57972 +shortdesc Unicode version of pTeX +longdesc upTeX is an extension of pTeX, using UTF-8 input and producing +longdesc UTF-8 output. It was originally designed to improve support for +longdesc Japanese, but is also useful for documents in Chinese and +longdesc Korean. It can process Chinese simplified, Chinese traditional, +longdesc Japanese, and Korean simultaneously, and can also process +longdesc original LaTeX with \inputenc{utf8} and Babel +longdesc (Latin/Cyrillic/Greek etc.) by switching its \kcatcode tables. +depend cm +depend etex +depend hyphen-base +depend knuth-lib +depend plain +depend ptex-base +depend uptex-base +depend uptex-fonts +depend uptex.ARCH +execute AddFormat name=euptex engine=euptex options="*euptex.ini" patterns=language.def fmttriggers=cm,hyphen-base,knuth-lib,plain,uptex-base,uptex-fonts,etex,ptex-base +execute AddFormat name=uptex engine=uptex options="uptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,uptex-base,uptex-fonts +execute addKanjiMap uptex-@jaEmbed@@jaVariant@.map +execute addKanjiMap uptex-ko-@koEmbed@.map +execute addKanjiMap uptex-sc-@scEmbed@.map +execute addKanjiMap uptex-tc-@tcEmbed@.map +containersize 912 +containerchecksum 1ee2679e7531fe4406fea72f7efc482f7900da50cb74045a62c0b5e5596862011509c3d966a795bc13538170afd7db26e8cf4f406391a746e45804414f26cff0 +doccontainersize 299276 +doccontainerchecksum 06a3459702bc9838f2246aad7af99c427413a43356d88165e68a132bf8b926d9ab668e6dc10127c27eaac6526085c3fa069bb9709833cef241c94d0f4fb3e02a +docfiles size=156 + texmf-dist/doc/man/man1/euptex.1 + texmf-dist/doc/man/man1/euptex.man1.pdf + texmf-dist/doc/man/man1/upmendex.1 + texmf-dist/doc/man/man1/upmendex.man1.pdf + texmf-dist/doc/man/man1/uppltotf.1 + texmf-dist/doc/man/man1/uppltotf.man1.pdf + texmf-dist/doc/man/man1/uptex.1 + texmf-dist/doc/man/man1/uptex.man1.pdf + texmf-dist/doc/man/man1/uptftopl.1 + texmf-dist/doc/man/man1/uptftopl.man1.pdf + texmf-dist/doc/upmendex/COPYRIGHT + texmf-dist/doc/upmendex/README.md + texmf-dist/doc/upmendex/samples/Makefile + texmf-dist/doc/upmendex/samples/alphabet/Makefile + texmf-dist/doc/upmendex/samples/alphabet/alpha_es.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zh.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhp.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhr.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhs.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhz.idx + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es1.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es11.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es12.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es13.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es2.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es21.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es22.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es23.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh1.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh11.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh12.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh13.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh14.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh2.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh21.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh22.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh31.ist + texmf-dist/doc/upmendex/samples/french.idx + texmf-dist/doc/upmendex/samples/german.idx + texmf-dist/doc/upmendex/samples/greek.idx + texmf-dist/doc/upmendex/samples/korean.idx + texmf-dist/doc/upmendex/samples/mdxsty00.ist + texmf-dist/doc/upmendex/samples/mdxsty01.ist + texmf-dist/doc/upmendex/samples/mdxsty02.ist + texmf-dist/doc/upmendex/samples/multi.idx + texmf-dist/doc/upmendex/samples/option/Makefile + texmf-dist/doc/upmendex/samples/option/attri1.idx + texmf-dist/doc/upmendex/samples/option/japanese.idx + texmf-dist/doc/upmendex/samples/option/mdxsty_j00.ist + texmf-dist/doc/upmendex/samples/option/mdxsty_j01.ist + texmf-dist/doc/upmendex/samples/option/mdxsty_j02.ist + texmf-dist/doc/upmendex/samples/option/mdxsty_rule0.ist + texmf-dist/doc/upmendex/samples/russian.idx + texmf-dist/doc/upmendex/upmendex.ja.txt +catalogue-alias euptex +catalogue-contact-bugs https://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 https://lists.tug.org/tex-k +catalogue-license other-free +catalogue-topics engine japanese chinese korean multilingual + +name uptex-base +category Package +revision 56832 +shortdesc Plain TeX formats and documents for upTeX +relocated 1 +longdesc The bundle contains plain TeX format files and documents for +longdesc upTeX and and e-upTeX. +containersize 9784 +containerchecksum ad62a640e04807f62f9efdd67720f57c7dbab0190fcfea7a82109f4f8223138b8d413c49e878c70ea04f733576828a4bdf475ebd1b6ed471268cb21bbfaebfae +doccontainersize 159660 +doccontainerchecksum dbfd62df1619e9a5814fde01796203180f77fdd48fe603cc1fb6701b2c2763d507eaf9925d2555a9fa6281e9dbf35c7218a9f888d325b628bc2d8036bb393637 +docfiles size=194 + RELOC/doc/uptex/uptex-base/00readme_uptex.txt + RELOC/doc/uptex/uptex-base/01uptex_doc_utf8.txt + RELOC/doc/uptex/uptex-base/02uptex_changelog_utf8.txt + RELOC/doc/uptex/uptex-base/LICENSE + RELOC/doc/uptex/uptex-base/README.md details="Readme" + RELOC/doc/uptex/uptex-base/README_uptex.txt + RELOC/doc/uptex/uptex-base/samples/00readme_uptex_samples.txt + RELOC/doc/uptex/uptex-base/samples/Makefile + RELOC/doc/uptex/uptex-base/samples/adobe-cid.tex + RELOC/doc/uptex/uptex-base/samples/adobe-cns-utf8.tex + RELOC/doc/uptex/uptex-base/samples/adobe-gb-utf8.tex + RELOC/doc/uptex/uptex-base/samples/adobe-jp-utf8.tex + RELOC/doc/uptex/uptex-base/samples/adobe-kr-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-ujarticle-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-ujbook-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-ujreport-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utarticle-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utbook-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utreport-utf8.tex + RELOC/doc/uptex/uptex-base/samples/area-euc-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-euc.mp + RELOC/doc/uptex/uptex-base/samples/area-jis-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-jis.mp + RELOC/doc/uptex/uptex-base/samples/area-sjis-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-sjis.mp + RELOC/doc/uptex/uptex-base/samples/area-uptex-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-uptex.mp + RELOC/doc/uptex/uptex-base/samples/area-utf8-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-utf8.mp + RELOC/doc/uptex/uptex-base/samples/bkmk-docinfo.txt + RELOC/doc/uptex/uptex-base/samples/bkmk-jis.tex + RELOC/doc/uptex/uptex-base/samples/bkmk-utf8.tex + RELOC/doc/uptex/uptex-base/samples/box-euc.eps + RELOC/doc/uptex/uptex-base/samples/box-jis.eps + RELOC/doc/uptex/uptex-base/samples/box-sjis.eps + RELOC/doc/uptex/uptex-base/samples/box-utf8.eps + RELOC/doc/uptex/uptex-base/samples/check_enc.pl + RELOC/doc/uptex/uptex-base/samples/cjk_babel.tex + RELOC/doc/uptex/uptex-base/samples/console_io.tex + RELOC/doc/uptex/uptex-base/samples/greek-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/iotext.txt + RELOC/doc/uptex/uptex-base/samples/jbib1-jis.tex + RELOC/doc/uptex/uptex-base/samples/jbib2-utf8.tex + RELOC/doc/uptex/uptex-base/samples/jbib3-utf8.tex + RELOC/doc/uptex/uptex-base/samples/jbtest.bib + RELOC/doc/uptex/uptex-base/samples/jis_uni_variation.tex + RELOC/doc/uptex/uptex-base/samples/jstr-euc-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-euc.mp + RELOC/doc/uptex/uptex-base/samples/jstr-jis-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-jis.mp + RELOC/doc/uptex/uptex-base/samples/jstr-sjis-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-sjis.mp + RELOC/doc/uptex/uptex-base/samples/jstr-uptex-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-uptex.mp + RELOC/doc/uptex/uptex-base/samples/jstr-utf8-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-utf8.mp + RELOC/doc/uptex/uptex-base/samples/kinsoku-chk-utf8.tex + RELOC/doc/uptex/uptex-base/samples/linebreak.bib + RELOC/doc/uptex/uptex-base/samples/min10x.tfm + RELOC/doc/uptex/uptex-base/samples/misc-check-h-utf8.tex + RELOC/doc/uptex/uptex-base/samples/misc-check-v-utf8.tex + RELOC/doc/uptex/uptex-base/samples/otfsmpl-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/punctuation.tex + RELOC/doc/uptex/uptex-base/samples/sangoku-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/sangoku-uptex.tex + RELOC/doc/uptex/uptex-base/samples/set3-check-h-utf8.tex + RELOC/doc/uptex/uptex-base/samples/show_kcat.tex + RELOC/doc/uptex/uptex-base/samples/simple-euc.tex + RELOC/doc/uptex/uptex-base/samples/simple-jis.tex + RELOC/doc/uptex/uptex-base/samples/simple-sjis.tex + RELOC/doc/uptex/uptex-base/samples/simple-u-jis.tex + RELOC/doc/uptex/uptex-base/samples/simple-u-utf8.tex + RELOC/doc/uptex/uptex-base/samples/simple-utf8.tex + RELOC/doc/uptex/uptex-base/samples/testrun.bat + RELOC/doc/uptex/uptex-base/samples/texxet-jis.tex + RELOC/doc/uptex/uptex-base/samples/umin10x.tfm + RELOC/doc/uptex/uptex-base/samples/utfsmpl-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/widow.tex + RELOC/doc/uptex/uptex-base/samples/yaku-jsc-jis.tex + RELOC/doc/uptex/uptex-base/samples/yaku-jsc-utf8.tex +runfiles size=13 + RELOC/tex/uptex/uptex-base/euptex.ini + RELOC/tex/uptex/uptex-base/euptex.src + RELOC/tex/uptex/uptex-base/ukinsoku.tex + RELOC/tex/uptex/uptex-base/uptex.ini + RELOC/tex/uptex/uptex-base/uptex.tex +catalogue-contact-repository https://github.com/texjporg/uptex-base +catalogue-ctan /language/japanese/uptex-base +catalogue-license bsd3 +catalogue-topics format japanese + +name uptex-fonts +category Package +revision 54045 +shortdesc Fonts for use with upTeX +relocated 1 +longdesc The bundle contains fonts (TFM and VF) for use with upTeX. This +longdesc is a redistribution derived from the upTeX distribution by +longdesc Takuji Tanaka. +containersize 169608 +containerchecksum 600d47ed277ce4bc0ad0de219e307b2c4741229c0e02ad94f7dddb2f309309922fcfbc9de5e115d85ad45b53485ff844e70d5af8086f7a16980ac579795c2e7f +doccontainersize 5168 +doccontainerchecksum 3c41c19b078bb5f66b8231025e39df2b7b9b959d3a4a45b04058f670d6a08e83bef50c889045aa55caddfe7ccb8a5c7582c43115b4749232490f999574fd0ec7 +docfiles size=6 + RELOC/doc/fonts/uptex-fonts/LICENSE + RELOC/doc/fonts/uptex-fonts/README.md details="Readme" + RELOC/doc/fonts/uptex-fonts/README_ASCII_Corp.txt + RELOC/doc/fonts/uptex-fonts/README_uptex_font.md +runfiles size=6665 + RELOC/fonts/cmap/uptex-fonts/UTF8-UTF16 + RELOC/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-H + RELOC/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-V + RELOC/fonts/cmap/uptex-fonts/UniJISup-UTF16-H + RELOC/fonts/cmap/uptex-fonts/UniJISup-UTF16-V + RELOC/fonts/cmap/uptex-fonts/cid_mapping.md + RELOC/fonts/source/uptex-fonts/Makefile + RELOC/fonts/source/uptex-fonts/makejvf-upjis.cnf + RELOC/fonts/source/uptex-fonts/makejvf-upjpn.cnf + RELOC/fonts/source/uptex-fonts/makepl.perl + RELOC/fonts/source/uptex-fonts/punctuation.md + RELOC/fonts/source/uptex-fonts/upjisr-h-hk.pl + RELOC/fonts/source/uptex-fonts/upjisr-h.pl + RELOC/fonts/source/uptex-fonts/upjisr-v.pl + RELOC/fonts/source/uptex-fonts/upkorr-h.pl + RELOC/fonts/source/uptex-fonts/upkorr-v.pl + RELOC/fonts/source/uptex-fonts/uprml-h-hk.pl + RELOC/fonts/source/uptex-fonts/uprml-h.pl + RELOC/fonts/source/uptex-fonts/upschr-h.pl + RELOC/fonts/source/uptex-fonts/upschr-v.pl + RELOC/fonts/source/uptex-fonts/uptchr-h.pl + RELOC/fonts/source/uptex-fonts/uptchr-v.pl + RELOC/fonts/tfm/uptex-fonts/jis/upgbm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upgbm-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upgbm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphygt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphygt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphysmjm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphysmjm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisg-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisg-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisg-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisr-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisr-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisr-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpngt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpngt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpnrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpnrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorgt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorgt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmhm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmhm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmsl-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmsl-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uprml-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uprml-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uprml-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschgt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschgt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstht-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstht-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstsl-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstsl-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchgt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchgt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/min/ugbm.tfm + RELOC/fonts/tfm/uptex-fonts/min/ugbmv.tfm + RELOC/fonts/tfm/uptex-fonts/min/ugoth10.tfm + RELOC/fonts/tfm/uptex-fonts/min/umin10.tfm + RELOC/fonts/tfm/uptex-fonts/min/urml.tfm + RELOC/fonts/tfm/uptex-fonts/min/urmlv.tfm + RELOC/fonts/tfm/uptex-fonts/min/utgoth10.tfm + RELOC/fonts/tfm/uptex-fonts/min/utmin10.tfm + RELOC/fonts/vf/uptex-fonts/jis/upjisg-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisg-hq.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisg-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisr-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisr-hq.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisr-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpngt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpngt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpnrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpnrm-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorgt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorgt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorrm-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upschgt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upschgt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upschrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upschrm-v.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchgt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchgt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchrm-v.vf + RELOC/fonts/vf/uptex-fonts/min/ugoth10.vf + RELOC/fonts/vf/uptex-fonts/min/umin10.vf + RELOC/fonts/vf/uptex-fonts/min/utgoth10.vf + RELOC/fonts/vf/uptex-fonts/min/utmin10.vf +catalogue-contact-repository https://github.com/texjporg/uptex-fonts +catalogue-ctan /fonts/uptex-fonts +catalogue-license bsd3 +catalogue-topics font-cjk + +name uptex.aarch64-linux +category Package +revision 58876 +shortdesc aarch64-linux files of uptex +containersize 7069860 +containerchecksum 50728f31ea6a75ae0b70360566c4fea490900ac9d230a5113c2a78ed31ffa6abb704655982254d8d47c6528057de6c1f6e8f461b1c1253986db16f4ac268437e +binfiles arch=aarch64-linux size=6241 + bin/aarch64-linux/euptex + bin/aarch64-linux/r-upmpost + bin/aarch64-linux/upbibtex + bin/aarch64-linux/updvitomp + bin/aarch64-linux/updvitype + bin/aarch64-linux/upmendex + bin/aarch64-linux/upmpost + bin/aarch64-linux/uppltotf + bin/aarch64-linux/uptex + bin/aarch64-linux/uptftopl + bin/aarch64-linux/wovp2ovf + +name uptex.amd64-freebsd +category Package +revision 58850 +shortdesc amd64-freebsd files of uptex +containersize 7399188 +containerchecksum 80ed328090377d7a263f42f841ddf8ef2b45cda6bbee7d8e4722898046978fe4f50c020c618e56f635701acaafe3ad1b8dbf5a8c9f1100634e85e16600a2fc6b +binfiles arch=amd64-freebsd size=6443 + bin/amd64-freebsd/euptex + bin/amd64-freebsd/r-upmpost + bin/amd64-freebsd/upbibtex + bin/amd64-freebsd/updvitomp + bin/amd64-freebsd/updvitype + bin/amd64-freebsd/upmendex + bin/amd64-freebsd/upmpost + bin/amd64-freebsd/uppltotf + bin/amd64-freebsd/uptex + bin/amd64-freebsd/uptftopl + bin/amd64-freebsd/wovp2ovf + +name uptex.amd64-netbsd +category Package +revision 58866 +shortdesc amd64-netbsd files of uptex +containersize 6928976 +containerchecksum 3eade2565d2c2f9e34ceedc5f8bee47816b7796a8bed873b0814f0f25207184096f4bd09ec383dbffb620438261c76cf939a7927f3be68b45808292e7a044702 +binfiles arch=amd64-netbsd size=7093 + bin/amd64-netbsd/euptex + bin/amd64-netbsd/r-upmpost + bin/amd64-netbsd/upbibtex + bin/amd64-netbsd/updvitomp + bin/amd64-netbsd/updvitype + bin/amd64-netbsd/upmendex + bin/amd64-netbsd/upmpost + bin/amd64-netbsd/uppltotf + bin/amd64-netbsd/uptex + bin/amd64-netbsd/uptftopl + bin/amd64-netbsd/wovp2ovf + +name uptex.armhf-linux +category Package +revision 58911 +shortdesc armhf-linux files of uptex +containersize 6761520 +containerchecksum 76c20859dedea96a450de572c4c30477bf16aab4c77e255e1e985d700c8c44796f2fd8552065bd41e407b6b27b31a8fe68a4fedd7e8b98697a6c3c243db7ed7e +binfiles arch=armhf-linux size=5936 + bin/armhf-linux/euptex + bin/armhf-linux/r-upmpost + bin/armhf-linux/upbibtex + bin/armhf-linux/updvitomp + bin/armhf-linux/updvitype + bin/armhf-linux/upmendex + bin/armhf-linux/upmpost + bin/armhf-linux/uppltotf + bin/armhf-linux/uptex + bin/armhf-linux/uptftopl + bin/armhf-linux/wovp2ovf + +name uptex.i386-cygwin +category Package +revision 58851 +shortdesc i386-cygwin files of uptex +containersize 6986300 +containerchecksum f99c006f5fdcd3e951587821c5b68b32ab3398ff9c3eeb61ffa5775fd7791b1705f82889d9d3becc4b7eded895d4485da7c58b48dac6e7d903865815a7ec5558 +binfiles arch=i386-cygwin size=6097 + bin/i386-cygwin/euptex.exe + bin/i386-cygwin/r-upmpost + bin/i386-cygwin/upbibtex.exe + bin/i386-cygwin/updvitomp + bin/i386-cygwin/updvitype.exe + bin/i386-cygwin/upmendex.exe + bin/i386-cygwin/upmpost.exe + bin/i386-cygwin/uppltotf.exe + bin/i386-cygwin/uptex.exe + bin/i386-cygwin/uptftopl.exe + bin/i386-cygwin/wovp2ovf.exe + +name uptex.i386-freebsd +category Package +revision 58850 +shortdesc i386-freebsd files of uptex +containersize 7057044 +containerchecksum e7e71b60b815632d99516bfdc6a20fd21bf7d188fa183c97d1677f81dc8dc942f5c54df44de564addff4f2e4a1a988bf785f7489d36bf97ce523667f98e56d85 +binfiles arch=i386-freebsd size=6218 + bin/i386-freebsd/euptex + bin/i386-freebsd/r-upmpost + bin/i386-freebsd/upbibtex + bin/i386-freebsd/updvitomp + bin/i386-freebsd/updvitype + bin/i386-freebsd/upmendex + bin/i386-freebsd/upmpost + bin/i386-freebsd/uppltotf + bin/i386-freebsd/uptex + bin/i386-freebsd/uptftopl + bin/i386-freebsd/wovp2ovf + +name uptex.i386-linux +category Package +revision 58850 +shortdesc i386-linux files of uptex +containersize 7297748 +containerchecksum 1b4eac4498712349cba4cc9fecd3470a1b5d66e4d45f8e687ef22e1e6d3d19eb1ace9cfeac1075fcf531138f65e61f352021edf644122c4c9eb8fe6609ff121a +binfiles arch=i386-linux size=6391 + bin/i386-linux/euptex + bin/i386-linux/r-upmpost + bin/i386-linux/upbibtex + bin/i386-linux/updvitomp + bin/i386-linux/updvitype + bin/i386-linux/upmendex + bin/i386-linux/upmpost + bin/i386-linux/uppltotf + bin/i386-linux/uptex + bin/i386-linux/uptftopl + bin/i386-linux/wovp2ovf + +name uptex.i386-netbsd +category Package +revision 58866 +shortdesc i386-netbsd files of uptex +containersize 6715580 +containerchecksum b103f559e16e5ffbae9d0ea39a3a7ac346805cfb96b97db1411093a9af9ef9eeee07f282f40085ebddcdebc479b935f6cf483e9ba6f7e0cb3b133f40b1acca80 +binfiles arch=i386-netbsd size=6850 + bin/i386-netbsd/euptex + bin/i386-netbsd/r-upmpost + bin/i386-netbsd/upbibtex + bin/i386-netbsd/updvitomp + bin/i386-netbsd/updvitype + bin/i386-netbsd/upmendex + bin/i386-netbsd/upmpost + bin/i386-netbsd/uppltotf + bin/i386-netbsd/uptex + bin/i386-netbsd/uptftopl + bin/i386-netbsd/wovp2ovf + +name uptex.i386-solaris +category Package +revision 58850 +shortdesc i386-solaris files of uptex +containersize 7359024 +containerchecksum 82c7a4c5e1ab393c870e7f77cdb1de293893387c3d5f9c389818c94b38ffb6396f1eb523aeaa032a72ae0b6dc27d7eb1305d3c08694fb56c3265245daffdd498 +binfiles arch=i386-solaris size=6451 + bin/i386-solaris/euptex + bin/i386-solaris/r-upmpost + bin/i386-solaris/upbibtex + bin/i386-solaris/updvitomp + bin/i386-solaris/updvitype + bin/i386-solaris/upmendex + bin/i386-solaris/upmpost + bin/i386-solaris/uppltotf + bin/i386-solaris/uptex + bin/i386-solaris/uptftopl + bin/i386-solaris/wovp2ovf + +name uptex.universal-darwin +category Package +revision 58850 +shortdesc universal-darwin files of uptex +containersize 14667032 +containerchecksum 4de8b666b5d2360a91dc45d2f8728f502be12b488810e4b009a2d55c64d92e9b102147f3bca30748f6a83b95d29e17008b641a1534a7e7025e643d1633b7d27d +binfiles arch=universal-darwin size=12912 + bin/universal-darwin/euptex + bin/universal-darwin/r-upmpost + bin/universal-darwin/upbibtex + bin/universal-darwin/updvitomp + bin/universal-darwin/updvitype + bin/universal-darwin/upmendex + bin/universal-darwin/upmpost + bin/universal-darwin/uppltotf + bin/universal-darwin/uptex + bin/universal-darwin/uptftopl + bin/universal-darwin/wovp2ovf + +name uptex.win32 +category Package +revision 59028 +shortdesc win32 files of uptex +containersize 1856248 +containerchecksum 6698e3c89f4a0a42275a1b4591bb1ec84e26ca4faeaadc5db877f552ed7b2b6a617596d171622b3110729a3e5823d77f8917d4644cb54672025d2cc712250498 +binfiles arch=win32 size=1537 + bin/win32/euptex.dll + bin/win32/euptex.exe + bin/win32/r-upmpost.exe + bin/win32/upbibtex.exe + bin/win32/updvitomp.exe + bin/win32/updvitype.exe + bin/win32/upmendex.exe + bin/win32/upmpost.dll + bin/win32/upmpost.exe + bin/win32/uppltotf.exe + bin/win32/uptex.dll + bin/win32/uptex.exe + bin/win32/uptftopl.exe + bin/win32/wovp2ovf.exe + +name uptex.x86_64-cygwin +category Package +revision 58851 +shortdesc x86_64-cygwin files of uptex +containersize 7080416 +containerchecksum 46f613a00d6d85a54928a90273d7d2a5b268876fc55b9251c99efcd3ff97722722f96d3ba98eebea3ce2d1eca35a343fdc2cbd68be127a57af821f71ff68bad5 +binfiles arch=x86_64-cygwin size=6025 + bin/x86_64-cygwin/euptex.exe + bin/x86_64-cygwin/r-upmpost + bin/x86_64-cygwin/upbibtex.exe + bin/x86_64-cygwin/updvitomp + bin/x86_64-cygwin/updvitype.exe + bin/x86_64-cygwin/upmendex.exe + bin/x86_64-cygwin/upmpost.exe + bin/x86_64-cygwin/uppltotf.exe + bin/x86_64-cygwin/uptex.exe + bin/x86_64-cygwin/uptftopl.exe + bin/x86_64-cygwin/wovp2ovf.exe + +name uptex.x86_64-darwinlegacy +category Package +revision 58850 +shortdesc x86_64-darwinlegacy files of uptex +containersize 7009212 +containerchecksum 46e47aaa504d41df64a026a5817c2b2a3ac5875d9ae3bcb96615152c3f25131b68635b263fd79679c2c8c2ac0d3d991152a5c7ebc71a499ceee901bb0901d8b3 +binfiles arch=x86_64-darwinlegacy size=6065 + bin/x86_64-darwinlegacy/euptex + bin/x86_64-darwinlegacy/r-upmpost + bin/x86_64-darwinlegacy/upbibtex + bin/x86_64-darwinlegacy/updvitomp + bin/x86_64-darwinlegacy/updvitype + bin/x86_64-darwinlegacy/upmendex + bin/x86_64-darwinlegacy/upmpost + bin/x86_64-darwinlegacy/uppltotf + bin/x86_64-darwinlegacy/uptex + bin/x86_64-darwinlegacy/uptftopl + bin/x86_64-darwinlegacy/wovp2ovf + +name uptex.x86_64-linux +category Package +revision 58872 +shortdesc x86_64-linux files of uptex +containersize 7261580 +containerchecksum fddba0132fda0ae6019457e56bf6fbec306aeebe3521840764746fbb8a6c3a498525f29eb67640610d953e0059a2fde10b47712daf9a9a0083a2966d562c85e0 +binfiles arch=x86_64-linux size=6246 + bin/x86_64-linux/euptex + bin/x86_64-linux/r-upmpost + bin/x86_64-linux/upbibtex + bin/x86_64-linux/updvitomp + bin/x86_64-linux/updvitype + bin/x86_64-linux/upmendex + bin/x86_64-linux/upmpost + bin/x86_64-linux/uppltotf + bin/x86_64-linux/uptex + bin/x86_64-linux/uptftopl + bin/x86_64-linux/wovp2ovf + +name uptex.x86_64-linuxmusl +category Package +revision 58850 +shortdesc x86_64-linuxmusl files of uptex +containersize 7321748 +containerchecksum 2344fbe1cd2a03cd0334b777f0ab73954acf80cdaf0f62dc94192e0a6c5dc764341e615c2de5b3f3e0742ae6b1564d22e6ca4a4c3c6e140127ae5574475ae3a6 +binfiles arch=x86_64-linuxmusl size=6332 + bin/x86_64-linuxmusl/euptex + bin/x86_64-linuxmusl/r-upmpost + bin/x86_64-linuxmusl/upbibtex + bin/x86_64-linuxmusl/updvitomp + bin/x86_64-linuxmusl/updvitype + bin/x86_64-linuxmusl/upmendex + bin/x86_64-linuxmusl/upmpost + bin/x86_64-linuxmusl/uppltotf + bin/x86_64-linuxmusl/uptex + bin/x86_64-linuxmusl/uptftopl + bin/x86_64-linuxmusl/wovp2ovf + +name uptex.x86_64-solaris +category Package +revision 58850 +shortdesc x86_64-solaris files of uptex +containersize 7583288 +containerchecksum c3fbecded1f05b60985ac832ad7487381093a7092aa4915ca92e71856cf22c2023f29897432468fbb8d5eefd4798e7a465c680b08619f05f7606b4b364f5d049 +binfiles arch=x86_64-solaris size=6652 + bin/x86_64-solaris/euptex + bin/x86_64-solaris/r-upmpost + bin/x86_64-solaris/upbibtex + bin/x86_64-solaris/updvitomp + bin/x86_64-solaris/updvitype + bin/x86_64-solaris/upmendex + bin/x86_64-solaris/upmpost + bin/x86_64-solaris/uppltotf + bin/x86_64-solaris/uptex + bin/x86_64-solaris/uptftopl + bin/x86_64-solaris/wovp2ovf + +name upzhkinsoku +category Package +revision 47354 +shortdesc Supplementary Chinese kinsoku for Unicode *pTeX +relocated 1 +longdesc This package provides supplementary Chinese kinsoku (line +longdesc breaking rules etc.) settings for Unicode (e-)upTeX (when using +longdesc Unicode as its internal encoding), and ApTeX. Both LaTeX and +longdesc plain TeX are supported. +containersize 1756 +containerchecksum 03dcf2b73ca644f8e9e2589082d49a4d502adb51944fcd9ee5cf737ae782611b35ef2eda4242b7eec2b8033014ddbbbea3abb52b1bfe90be9cc1634345223d53 +doccontainersize 206168 +doccontainerchecksum d4c038d864b40603281f3186e21110ec96530e84a9ff88be4241cad165d09cd091b28bd768ca8ca0a28575dd850bb68ff88ab553cf9caaee6edd8d311c6fc9e2 +docfiles size=52 + RELOC/doc/generic/upzhkinsoku/README details="Readme" + RELOC/doc/generic/upzhkinsoku/upzhkinsoku-doc.pdf details="Package documentation" + RELOC/doc/generic/upzhkinsoku/upzhkinsoku-doc.tex +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-license knuth +catalogue-topics chinese +catalogue-version 0.5 + +name urcls +category Package +revision 49903 +shortdesc Beamer and scrlttr2 classes and styles for the University of Regensburg +relocated 1 +longdesc The bundle provides a beamer-derived class and a theme style +longdesc file for the corporate design of the University of Regensburg. +longdesc It also contains a scrlttr2-derived class for letters using the +longdesc corporate design of the UR. Users may use the class itself +longdesc (URbeamer) or use the theme in the usual way with +longdesc \usetheme{UR}. Examples of using both letters and presentations +longdesc are provided as .tex and .pdf-files. +containersize 12640 +containerchecksum 5b8c80a756e45e5b847c3b970005b866f6c498eff7646155c73a9b86585dffd73e8dc66d91583dd691c910caccab60ee22a1e9dbe3aa450290fb17f019477172 +doccontainersize 901592 +doccontainerchecksum 40b8e4ea2abcc82acb843c692d90e964932f1ad7d0e818d54eeec77340f49686aafcf2fcf3f8f4d942f7cd967754ab24ee2075c6906862266f5af56251063fee +docfiles size=235 + RELOC/doc/latex/urcls/README.md details="Readme" + RELOC/doc/latex/urcls/URadressdaten-DEMO.lco + RELOC/doc/latex/urcls/URbeamer-DEMO.pdf details="Example of usage (presentation)" + RELOC/doc/latex/urcls/URbeamer-DEMO.tex + RELOC/doc/latex/urcls/URletter-DEMO.pdf details="Example of usage (letter)" + RELOC/doc/latex/urcls/URletter-DEMO.tex + RELOC/doc/latex/urcls/URpagestyles-DEMO.pdf + RELOC/doc/latex/urcls/URpagestyles-DEMO.tex +runfiles size=21 + RELOC/tex/latex/urcls/URbeamer.cls + RELOC/tex/latex/urcls/URcolors.sty + RELOC/tex/latex/urcls/URletter.cls + RELOC/tex/latex/urcls/URoptions.sty + RELOC/tex/latex/urcls/URpagestyles.sty + RELOC/tex/latex/urcls/URrules.sty + RELOC/tex/latex/urcls/URspecialopts.sty + RELOC/tex/latex/urcls/beamercolorthemeUR.sty + RELOC/tex/latex/urcls/beamerfontthemeUR.sty + RELOC/tex/latex/urcls/beamerouterthemeUR.sty + RELOC/tex/latex/urcls/beamerthemeUR.sty +catalogue-ctan /macros/latex/contrib/urcls +catalogue-license lppl +catalogue-topics letter presentation class +catalogue-version 2.1 + +name uri +category Package +revision 48602 +shortdesc Hyperlinks for a wide range of URIs +relocated 1 +longdesc The package provides automatic hyperlinks for URIs of type +longdesc arXiv, ASIN, DOI, HDL, NBN, OCLC, OID, PubMed, TINY, TINY with +longdesc preview, and WebCite and provides commands \citeurl, \mailto, +longdesc \ukoeln, and \uref. +containersize 3360 +containerchecksum 402974f30df5a00118d4bd2e978f342cdcdb22119059dbd0c1b2111fd1ce94ab8a29ceff88672c80d18a669d5440bd48dfcd23fa07844f492e5f7e0eda1671a6 +doccontainersize 444592 +doccontainerchecksum b2cc8cbcbc81f0c3db349952546e60c152044aae264d4b30aadb6b90b7aa5b304c89203b6219bb5161807bf1e4649235d2f98a60339a0cb93a588852a1755e00 +docfiles size=114 + RELOC/doc/latex/uri/README details="Readme" + RELOC/doc/latex/uri/uri-example.pdf details="Example of use" + RELOC/doc/latex/uri/uri-example.tex + RELOC/doc/latex/uri/uri.pdf details="Package documentation" +srccontainersize 13520 +srccontainerchecksum 0206e0d2907f3976fd605d78284a44c909ff23f16ce9b2490556136099e56a374bd410e1c9bd5687bb791334612af1cc5a62a8b53f8c7876bf02d921c9868a68 +srcfiles size=15 + RELOC/source/latex/uri/uri.drv + RELOC/source/latex/uri/uri.dtx + RELOC/source/latex/uri/uri.ins +runfiles size=3 + RELOC/tex/latex/uri/uri.sty +catalogue-also url hyperref doipubmed +catalogue-ctan /macros/latex/contrib/uri +catalogue-license lppl1.3c +catalogue-topics hyper +catalogue-version 2.0b + +name url +category Package +revision 32528 +shortdesc Verbatim with URL-sensitive line breaks +relocated 1 +longdesc The command \url is a form of verbatim command that allows +longdesc linebreaks at certain characters or combinations of characters, +longdesc accepts reconfiguration, and can usually be used in the +longdesc argument to another command. (The \urldef command provides +longdesc robust commands that serve in cases when \url doesn't work in +longdesc an argument.) The command is intended for email addresses, +longdesc hypertext links, directories/paths, etc., which normally have +longdesc no spaces, so by default the package ignores spaces in its +longdesc argument. However, a package option "allows spaces", which is +longdesc useful for operating systems where spaces are a common part of +longdesc file names. +containersize 5528 +containerchecksum 164fb94cb128e997031bfdf8c602892d78813694f39f4b95bfead8a5b7e3cd9a0d9596dbe697e012bdf84b89c2551c2f2f1c7f99d4543e357edfaf2076b9cfba +doccontainersize 266856 +doccontainerchecksum 65596e0ce813233491959ef161be8570450c6c71c787b3253d0bce503558e63902137a6d337ad1e7cd2499feacbba4a93b7b75559750d05d7898ff2527f1240c +docfiles size=69 + RELOC/doc/latex/url/miscdoc.sty + RELOC/doc/latex/url/url.pdf details="Package documentation" + RELOC/doc/latex/url/url.tex +runfiles size=4 + RELOC/tex/latex/url/url.sty +catalogue-also path +catalogue-ctan /macros/latex/contrib/url +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 3.4 + +name urlbst +category Package +revision 55777 +shortdesc Web support for BibTeX +longdesc Supports a new BibTeX 'webpage' entry type and 'url', +longdesc 'lastchecked', and 'eprint' and 'DOI' fields. The Perl script +longdesc urlbst can be used to add this support to an arbitrary .bst +longdesc file which has a reasonably conventional structure. The result +longdesc is meant to be robust rather than pretty. +depend urlbst.ARCH +containersize 13668 +containerchecksum 86b600d8beecbf310596915225ae58502d7b5e92783522beec0c6ed365a44e058cb97bc2d016d66ef9a26196b33277c93f82957ee557348ef170a11d58ba30a9 +doccontainersize 238148 +doccontainerchecksum 07cffb5192991e30fd7d6823435718b241841f709f5bef86ff7e0a69102ec93d513282aaf8f046a6205a56997b7ff3ba9442446254467f4490e537a4874a7a31 +docfiles size=82 + texmf-dist/doc/bibtex/urlbst/LICENCE-gpl-2.0.txt + texmf-dist/doc/bibtex/urlbst/LICENCE-lppl.txt + texmf-dist/doc/bibtex/urlbst/README details="Package Readme" + texmf-dist/doc/bibtex/urlbst/VERSION + texmf-dist/doc/bibtex/urlbst/urlbst.bib + texmf-dist/doc/bibtex/urlbst/urlbst.html details="Package documentation (HTML format)" + texmf-dist/doc/bibtex/urlbst/urlbst.in + texmf-dist/doc/bibtex/urlbst/urlbst.pdf details="Package documentation (PDF format)" + texmf-dist/doc/bibtex/urlbst/urlbst.tex +srccontainersize 22884 +srccontainerchecksum eb93a704fe994add75e3cd5202bd5a5fc9e388d35f125fa60bbeeae09bc20d223fc8e34d9899d6f378938f33ae29b96a67b3a1fc3a46782a1caff030975738a4 +srcfiles size=25 + texmf-dist/source/bibtex/urlbst/Makefile.in + texmf-dist/source/bibtex/urlbst/configure + texmf-dist/source/bibtex/urlbst/configure.ac +runfiles size=41 + texmf-dist/bibtex/bst/urlbst/abbrvurl.bst + texmf-dist/bibtex/bst/urlbst/alphaurl.bst + texmf-dist/bibtex/bst/urlbst/plainurl.bst + texmf-dist/bibtex/bst/urlbst/unsrturl.bst + texmf-dist/scripts/urlbst/urlbst +catalogue-contact-home http://purl.org/nxg/dist/urlbst +catalogue-ctan /biblio/bibtex/contrib/urlbst +catalogue-license gpl2 lppl +catalogue-topics bibtex-sty +catalogue-version 0.8 + +name urlbst.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of urlbst +containersize 340 +containerchecksum 35aa80261ddac02ed1d627da38be6f47d171a0d1c1086c834d37376a6e811146695a17c84576e59666a9922e0a64e6a337e7e77929f394ea769bd14befc9b6ef +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/urlbst + +name urlbst.amd64-freebsd +category Package +revision 23262 +shortdesc amd64-freebsd files of urlbst +containersize 340 +containerchecksum 35740e50d733556c3cc59f736f7544218a22e44c907b1a288d55f442ef0396ec13f0a4edfb1ee45889533428607e389060cc786460cba67959b3712e1fdf6249 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/urlbst + +name urlbst.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of urlbst +containersize 340 +containerchecksum 2484011b94ccfe388c04f3b36d5df22be65228bb7ccbe7e48409d7541f3bb7f0e54a668d0ec2f0951452f8c43804a57632299ad6e6382b12c0dd09bbdf56222c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/urlbst + +name urlbst.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of urlbst +containersize 336 +containerchecksum d914a20f8d4fd935bd217066da6364eda2ee4ca8494d6353ae888028caf7b8c5229d978c84ddb43c025c876e4157986b8d9c2f53f60799ea34de4c59dbbeee4d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/urlbst + +name urlbst.i386-cygwin +category Package +revision 23262 +shortdesc i386-cygwin files of urlbst +containersize 336 +containerchecksum 06395831794851c816063dd724e38270e9cd6882c0d011b275019411f3330ac88c741ad807bcb8bf8542f6feea5269bb653897314699dc77357151464d767abd +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/urlbst + +name urlbst.i386-freebsd +category Package +revision 23262 +shortdesc i386-freebsd files of urlbst +containersize 340 +containerchecksum 116244743aaae75132213f870c4e5c88ef91eba19e106ed948c28a37ae821ba4244ffdc7146ab52b5a3bd369236fb346fbba75e6d2f1eae426ae65b6008bf072 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/urlbst + +name urlbst.i386-linux +category Package +revision 23262 +shortdesc i386-linux files of urlbst +containersize 336 +containerchecksum 224bad9625f4cfaba7737166112608932f7c2e31f734ebb7e29c3afc6e2e0c392da1165c6ebfcff4466dca5119ca8af45cd354ab5f9b282f8dae3a7b04d2e04f +binfiles arch=i386-linux size=1 + bin/i386-linux/urlbst + +name urlbst.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of urlbst +containersize 336 +containerchecksum 671283e456ea659595752286187e137e70e82992ec93f569c280a858728207a6ff2346a8030c7673232a218f50256c02f6b3e9c652bdda2150f040f47cd399fc +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/urlbst + +name urlbst.i386-solaris +category Package +revision 23262 +shortdesc i386-solaris files of urlbst +containersize 336 +containerchecksum ecbc2e23ee31f34504c4e33d91ae46a7dbfce5fc16e3ffaad58025084395e743e0bea308371fcd0c21ea358b554e8aea89b62fdf1608e6ecf9220b34e00ef452 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/urlbst + +name urlbst.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of urlbst +containersize 336 +containerchecksum 6b6c74af426fcc29638ef43ac1a92cfa2ae9e6ab07caadbdbf51fe971f74c5ecb226d45aa6a298c0f046c61e02809ec948dac094b2ccaa36c2ee397813f16e22 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/urlbst + +name urlbst.win32 +category Package +revision 23262 +shortdesc win32 files of urlbst +containersize 680 +containerchecksum 4b7723c10344eb58e971ca4f5a6526eeb7bb240d21f23f89adc7d8543a250d4e61250f4438e12256a645b9feab83c9ef8b25743a00f271958eec9da73380f0c7 +binfiles arch=win32 size=1 + bin/win32/urlbst.exe + +name urlbst.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of urlbst +containersize 340 +containerchecksum f2d88734048bf513909eaab1c5814dfe142bc143a1138359bad5e45c13cf55c9c3712fa8862d7bfc8776e24084dd3f3d845b98bae7d6db81bb81a4cf9cda1fd4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/urlbst + +name urlbst.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of urlbst +containersize 348 +containerchecksum 6da412e9731e306184c2fe4ddb7123605c6081ad8e5faa4d2cdf27c7f14bd29430b251dade60d8ac0ff131a9f17b38b90d2ad3b106fd7705bd12f358562f181f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/urlbst + +name urlbst.x86_64-linux +category Package +revision 23262 +shortdesc x86_64-linux files of urlbst +containersize 336 +containerchecksum 40e4ca89e5a6fd3fdd89ae060f77a919dd53525c0d6820ccc9d88fa107819ed6fc856258e79b75f4feb029349072d7c96781b809b593b07feeb220f3c7007b59 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/urlbst + +name urlbst.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of urlbst +containersize 340 +containerchecksum 17591d9d99ddbf1e73cac07edfc075e99241c2f84ba66405d10e16eaa03121e6d6b8f93682a1fc537dfb9401d72fa6ab36fd960d8d75924904ad7c6f8433b5e0 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/urlbst + +name urlbst.x86_64-solaris +category Package +revision 23262 +shortdesc x86_64-solaris files of urlbst +containersize 336 +containerchecksum 6897efd618ba988138577e2e13e249fd99fa1916b8c4a8fd2c09223d3b3328a00d3721dc83ee1717d54f8000c8d7b290cc5c9ab7e3031ac41e6f8c1f1852f658 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/urlbst + +name urwchancal +category Package +revision 21701 +shortdesc Use URW's clone of Zapf Chancery as a maths alphabet +relocated 1 +longdesc The package allows (the URW clone of) Zapf Chancery to function +longdesc as a maths alphabet, the target of \mathcal or \mathscr, with +longdesc accents appearing where they should, and other spacing +longdesc parameters set to reasonable (not very tight) values. The font +longdesc itself may be found in the URW basic fonts collection. This +longdesc package supersedes the pzccal package. +containersize 1932 +containerchecksum beb82950bda88e7170c7ad753e93859f96190f30e89fbfbe1cdbe37930b07740f70da40124639c6ab14be93fe79c5e87b35296b68c702888d3e9e25100e86a9c +doccontainersize 23148 +doccontainerchecksum 8f218f76d45a2f3ea9be173ba1c6efcb8a7cff26a43149b7e0ef4fc535a4638cffe69358d8ccac44a3306044720958ea9189996e88a38d560d264f5fba6863ba +docfiles size=9 + RELOC/doc/fonts/urwchancal/README details="Readme" + RELOC/doc/fonts/urwchancal/urwchancal-doc.pdf details="Package documentation" + RELOC/doc/fonts/urwchancal/urwchancal-doc.tex +runfiles size=4 + RELOC/fonts/tfm/urw/urwchancal/urwchancal.tfm + RELOC/fonts/vf/urw/urwchancal/urwchancal.vf + RELOC/tex/latex/urwchancal/urwchancal.sty + RELOC/tex/latex/urwchancal/uurwchancal.fd +catalogue-ctan /fonts/urwchancal +catalogue-license lppl +catalogue-topics font-supp-maths +catalogue-version 1 + +name usebib +category Package +revision 25969 +shortdesc A simple bibliography processor +relocated 1 +longdesc The package is described by its author as "a poor person's +longdesc replacement for the more powerful methods provided by BibLaTeX +longdesc to access data from a .bib file". Its principle commands are +longdesc \bibinput (which specifies a database to use) and \usebibdata +longdesc (which typesets a single field from a specified entry in that +longdesc database. +containersize 1836 +containerchecksum 94e0ded0c7e7ac10f2d8ff9324afcfdd2dad8247cf31cd6b404d9c2b12e223e6f435ec9d3dfad0ab510b943050444f5206788540a948e44f44c5d011596cd34d +doccontainersize 254984 +doccontainerchecksum 3b489185729ac7d93ebbfd632b77eeb865b39043b2b68d920a6ef561ac55701a44d362b84c1fb83a2f59770442a655b779c6e49287c9d2859c44140e61c543e6 +docfiles size=64 + RELOC/doc/latex/usebib/README details="Readme" + RELOC/doc/latex/usebib/usebib.pdf details="Package documentation" +srccontainersize 5932 +srccontainerchecksum a0c64ad5a7479da4906b848a31ceb02b047a98e8e2c505ee748f2eed4ba27dc8b6d89d8ee3a171566417315cc2b83810f514f1a0c11f1bd4a28b57cca03676df +srcfiles size=5 + RELOC/source/latex/usebib/usebib.dtx + RELOC/source/latex/usebib/usebib.ins +runfiles size=1 + RELOC/tex/latex/usebib/usebib.sty +catalogue-ctan /macros/latex/contrib/usebib +catalogue-license lppl1.3 +catalogue-topics biblio +catalogue-version 1.0a + +name ushort +category Package +revision 32261 +shortdesc Shorter (and longer) underlines and underbars +relocated 1 +longdesc Some engineers need underlined or twice underlined variables +longdesc for which the usual \underline is too long. This package +longdesc provides a generic command for creating underlines of various +longdesc sizes and types. +containersize 1656 +containerchecksum 2ece6efb162a13c37413e4fe2eed33ab7982d681fcd9435ce53248dc4c573cd90ac51293424385aac29b84159b34fb3f7fde2bc8d39eacc71f0ecc91c8db7af8 +doccontainersize 69108 +doccontainerchecksum d262bb270e41cb7d9378d42ec075a81158d401b737acc7788722ea7e99d896de1eb98c04a65e733d6e83f6229a9703f72bfd0a11e36e52d4799e82e19c102d5b +docfiles size=25 + RELOC/doc/latex/ushort/README details="Readme" + RELOC/doc/latex/ushort/ushort.pdf details="Package documentation" + RELOC/doc/latex/ushort/ushort.tex + RELOC/doc/latex/ushort/ushort.txt +srccontainersize 9124 +srccontainerchecksum a26cdd79055b74cf30202c162fb38243571ce2bac990ea44a0eecaff407951aebd5ff4619cafa6190ef8ba6101d86a800262ad1b09972dbf7b207398b82da672 +srcfiles size=10 + RELOC/source/latex/ushort/ushort.dtx + RELOC/source/latex/ushort/ushort.ins +runfiles size=1 + RELOC/tex/latex/ushort/ushort.sty +catalogue-ctan /macros/latex/contrib/ushort +catalogue-license lppl +catalogue-topics underline +catalogue-version 2.2 + +name uspace +category Package +revision 42456 +shortdesc Giving meaning to various Unicode space characters +relocated 1 +longdesc LaTeX package that gives meaning to various Unicode space +longdesc characters. +containersize 1112 +containerchecksum 57a271421c15eefd41517881e951c8a55096e6bc7b769beba123813e19682407b24dcde898bc8df75700f33316a5281fedf5c24a3ffd7a97eea2bcf5f658e7e9 +doccontainersize 268848 +doccontainerchecksum c4b3c401cdedde7e67a2b4fca44f53c67c578fec287e22f0c1b67252b6fa4c0ed4d3a8ab1328162e7bea015536f1a1e4539fb104c8c889bb4e1549f7bf748e13 +docfiles size=107 + RELOC/doc/latex/uspace/LICENSE + RELOC/doc/latex/uspace/README.md details="Readme" + RELOC/doc/latex/uspace/uspace-ctanify.sh + RELOC/doc/latex/uspace/uspace-test-lualatex.pdf + RELOC/doc/latex/uspace/uspace-test-pdflatex.pdf + RELOC/doc/latex/uspace/uspace-test-xelatex.pdf + RELOC/doc/latex/uspace/uspace-test.tex + RELOC/doc/latex/uspace/uspace.pdf details="Package documentation" + RELOC/doc/latex/uspace/uspace.tex +runfiles size=1 + RELOC/tex/latex/uspace/uspace.sty +catalogue-ctan /macros/latex/contrib/uspace +catalogue-license other-free +catalogue-topics enc-juggle inputenc hyphenation unicode +catalogue-version 0.04 + +name uspatent +category Package +revision 27744 +shortdesc U.S. Patent Application Tools for LaTeX and LyX +relocated 1 +longdesc The package provides a class and other tools for developing a +longdesc beautifully formatted, consistent U.S. Patent Application using +longdesc LaTeX and/or LyX. +containersize 4824 +containerchecksum fbcce7a06cc018dfba47aa7e9d572003136d5b179e957f10e2bb42b2635ef4cdd40bbef19e8f827963d048eadb23a1aeedcebc87cf128f5b28cb1ab281408b90 +doccontainersize 2022300 +doccontainerchecksum e0eafb5fadeab38da049d0d5cbadc8fa3dc3c335afe4fd5289fe30de38f0898cdd9dee091b703f6a853eba56b32b161abfe56b3185c71512c9374585e6d9784d +docfiles size=776 + RELOC/doc/latex/uspatent/DocumentSettings.png + RELOC/doc/latex/uspatent/DrawingZoomBad.png + RELOC/doc/latex/uspatent/DrawingZoomGood.png + RELOC/doc/latex/uspatent/Drawings.lyx + RELOC/doc/latex/uspatent/Drawings.tex + RELOC/doc/latex/uspatent/LyX.png + RELOC/doc/latex/uspatent/LyXCustomInsets.png + RELOC/doc/latex/uspatent/LyXDocumentSettingsFont.png + RELOC/doc/latex/uspatent/LyXDocumentSettingsOutput.png + RELOC/doc/latex/uspatent/LyXEnvironments.png + RELOC/doc/latex/uspatent/LyXSettings.png + RELOC/doc/latex/uspatent/LyXSettingsDocumentClass.png + RELOC/doc/latex/uspatent/PatentApplication.lyx + RELOC/doc/latex/uspatent/PatentApplication.pdf details="Package 'dummy' sample" + RELOC/doc/latex/uspatent/PatentApplication.tex + RELOC/doc/latex/uspatent/PatentApplicationGuide.lyx + RELOC/doc/latex/uspatent/PatentApplicationGuide.pdf details="Package description" + RELOC/doc/latex/uspatent/PatentApplicationGuide.tex + RELOC/doc/latex/uspatent/README details="Readme" + RELOC/doc/latex/uspatent/TeXworks.png + RELOC/doc/latex/uspatent/TpXDrawing.tpx + RELOC/doc/latex/uspatent/TpXSettingsAccess.png + RELOC/doc/latex/uspatent/VisioDrawing.pdf + RELOC/doc/latex/uspatent/VisioDrawing.vsd + RELOC/doc/latex/uspatent/VisioMainDrawing.vsd + RELOC/doc/latex/uspatent/VisioSave.png + RELOC/doc/latex/uspatent/annotationAlignment.png + RELOC/doc/latex/uspatent/uspatent.layout +runfiles size=5 + RELOC/tex/latex/uspatent/uspatent.cls +catalogue-ctan /macros/latex/contrib/uspatent +catalogue-license lppl1.3 +catalogue-topics patent legal class +catalogue-version 1.0 + +name ut-thesis +category Package +revision 59078 +shortdesc University of Toronto thesis style +relocated 1 +longdesc This LaTeX document class implements the formatting +longdesc requirements of the University of Toronto School of Graduate +longdesc Studies (SGS), as of Fall 2020 ( +longdesc https://www.sgs.utoronto.ca/academic-progress/program-completio +longdesc n/formatting). For example usage, see the GitHub repository. +containersize 2720 +containerchecksum fd153742d545c726af9112674b880b5260d7c45f6bd49fa3624fd6651e0752110666bcb89fdf16d673ff3d94e4b35c1d9978f7d502657abb2dcbb461b94e76fe +doccontainersize 117040 +doccontainerchecksum 915ca737cbb016d6e0ade0de05a8b539d30609a800b0186e4eb9970db778d4223f7fade7022e9fc00c4f3bc8f2a73c70ae722c93eec7bf8943532756c0c8f9ce +docfiles size=30 + RELOC/doc/latex/ut-thesis/README details="Readme" + RELOC/doc/latex/ut-thesis/ut-thesis.pdf details="Package documentation" +srccontainersize 6828 +srccontainerchecksum ca24051bb4f9e315ff7036f3a5c891a3b502a2ca6ecde88165665f6f302d332215b9cd6e0d50e8c8ad732a51268c50b7f33c5591be6b3b0b865041e1b968685a +srcfiles size=6 + RELOC/source/latex/ut-thesis/ut-thesis.dtx + RELOC/source/latex/ut-thesis/ut-thesis.ins +runfiles size=2 + RELOC/tex/latex/ut-thesis/ut-thesis.cls +catalogue-also utorontothesis +catalogue-contact-bugs https://github.com/jessexknight/ut-thesis/issues +catalogue-contact-repository https://github.com/jessexknight/ut-thesis +catalogue-ctan /macros/latex/contrib/ut-thesis +catalogue-license lppl1.3c +catalogue-topics dissertation class std-conform +catalogue-version 3.0.3 + +name utexasthesis +category Package +revision 48648 +shortdesc University of Texas at Austin graduate thesis style +relocated 1 +longdesc This class file complies with the Digital Submission +longdesc Requirement for Masters and Ph.D. thesis submissions of the +longdesc University of Texas at Austin. +containersize 3744 +containerchecksum 829826bbc06bbd9b8ffe585705856bbe4bc99973bad7bedd489ff23fad9cc19c4f33beb88756644d76945126983586fdf78eabb305e353cb8bde8341a3d20fc4 +doccontainersize 2840 +doccontainerchecksum 65e3100a6acd2a02df2e95834e5e99d718cd0b73e20ef6da839cbc9831918f63a2f5b38ad888a5068b1fd87ad71ac480754d5e6b459465cbb6238d4a3b3c09b1 +docfiles size=2 + RELOC/doc/latex/utexasthesis/README.md details="Readme" +runfiles size=3 + RELOC/tex/latex/utexasthesis/utexasthesis.cls +catalogue-also utthesis +catalogue-contact-bugs https://github.com/linguistics/utexas-latex/issues +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-license cc0 +catalogue-topics dissertation +catalogue-version 1.0 + +name utf8add +category Package +revision 55291 +shortdesc Additional support for UTF-8 encoded LaTeX input +relocated 1 +longdesc This bundle contains the LaTeX packages utf8add.sty and +longdesc utf8hax.sty. The utf8add package provides additional support +longdesc for the use of UTF-8 encoded input. This is intended for making +longdesc LaTeX input more readable. The utf8hax package is using UTF-8 +longdesc characters for easier access to math in LaTeX, however making +longdesc the LaTeX input less readable. +containersize 4040 +containerchecksum 38af66fa77e637a5bffce68d816cf6aa4e34ce5452b690874de91d9c10199316d60ead3736c14e7872cc4562ba1fe4d953c4fa7887767327d06547b68f85b81e +doccontainersize 390028 +doccontainerchecksum f521642270b8cf26f609c050eaf412f2fcc53fc0b5b3e1873c141a5b5039fff9d0387b0ac83d0d831d22be256d3eeea4db51c67da2642372831976555eb6600b +docfiles size=118 + RELOC/doc/latex/utf8add/LICENSE + RELOC/doc/latex/utf8add/README details="Readme" + RELOC/doc/latex/utf8add/utf8add.pdf details="Utf8add package documentation" + RELOC/doc/latex/utf8add/utf8add.tex + RELOC/doc/latex/utf8add/utf8hax.pdf details="Utf8hax package documentation" + RELOC/doc/latex/utf8add/utf8hax.tex +runfiles size=7 + RELOC/tex/latex/utf8add/utf8add.sty + RELOC/tex/latex/utf8add/utf8hax.sty +catalogue-ctan /macros/latex/contrib/utf8add +catalogue-license gpl3+ +catalogue-topics inputenc + +name utf8mex +category Package +revision 15878 +shortdesc Tools to produce formats that read Polish language input +relocated 1 +longdesc The bundle provides files for building formats to read input in +longdesc Polish encodings. +containersize 2868 +containerchecksum 0cd4c549c7b00939dec5055705658f76f6ebbe5de70e082652b761673ba5a249924fb862a319512a9a124b9cdaae8906c74439bba97be8825d4d1ffc70642c8f +doccontainersize 7496 +doccontainerchecksum cd438089d90faa0e9144d23adb78ce91d85b80ce084cb92511cc23882c675cb654cb704aebeb623bb29c70b764c8a0ab19915607664895c457c583f376c1088e +docfiles size=12 + RELOC/doc/mex/utf8mex/Makefile + RELOC/doc/mex/utf8mex/README details="Readme" + RELOC/doc/mex/utf8mex/examples/Makefile + RELOC/doc/mex/utf8mex/examples/catcode.tex + RELOC/doc/mex/utf8mex/examples/list.tex + RELOC/doc/mex/utf8mex/examples/tilde.tex + RELOC/doc/mex/utf8mex/examples/tilde2.tex + RELOC/doc/mex/utf8mex/test-math.utf8.tex + RELOC/doc/mex/utf8mex/test.utf8.tex + RELOC/doc/mex/utf8mex/utf8math.el +runfiles size=3 + RELOC/tex/mex/utf8mex/utf8-pl.tex + RELOC/tex/mex/utf8mex/utf8mex.ini + RELOC/tex/mex/utf8mex/utf8plsq.tex +catalogue-ctan /language/polish/utf8mex +catalogue-license pd +catalogue-topics format + +name utfsym +category Package +revision 56729 +shortdesc Provides various Unicode symbols +relocated 1 +longdesc This package provides various symbols from the Unicode in order +longdesc to be able to use them originally in a school setting such as +longdesc on worksheets. +containersize 1890332 +containerchecksum cbc9203663a121f2c421d07bf630831db438aa74c6d6ca95d3d7d7f5a5736db351e0fea5fb269ed2b02eaaec5d85de52f2f9ca90d753d41ca9da7328c6af2326 +doccontainersize 2979868 +doccontainerchecksum 3b90dd9075fa3b4602e76593b90603ff4022a003599d12297bcb482fc28995ac204de1908baef9e4506a0bba82edf09dbf6314dd7034808aaf7aa38af3bee6d7 +docfiles size=879 + RELOC/doc/latex/utfsym/README details="Readme" + RELOC/doc/latex/utfsym/symbole.tex + RELOC/doc/latex/utfsym/utfsym.pdf details="Package documentation" language="de" + RELOC/doc/latex/utfsym/utfsym.tex +runfiles size=4522 + RELOC/tex/latex/utfsym/usym1F000.tikz + RELOC/tex/latex/utfsym/usym1F001.tikz + RELOC/tex/latex/utfsym/usym1F002.tikz + RELOC/tex/latex/utfsym/usym1F003.tikz + RELOC/tex/latex/utfsym/usym1F004.tikz + RELOC/tex/latex/utfsym/usym1F005.tikz + RELOC/tex/latex/utfsym/usym1F006.tikz + RELOC/tex/latex/utfsym/usym1F007.tikz + RELOC/tex/latex/utfsym/usym1F008.tikz + RELOC/tex/latex/utfsym/usym1F009.tikz + RELOC/tex/latex/utfsym/usym1F00A.tikz + RELOC/tex/latex/utfsym/usym1F00B.tikz + RELOC/tex/latex/utfsym/usym1F00C.tikz + RELOC/tex/latex/utfsym/usym1F00D.tikz + RELOC/tex/latex/utfsym/usym1F00E.tikz + RELOC/tex/latex/utfsym/usym1F00F.tikz + RELOC/tex/latex/utfsym/usym1F010.tikz + RELOC/tex/latex/utfsym/usym1F011.tikz + RELOC/tex/latex/utfsym/usym1F012.tikz + RELOC/tex/latex/utfsym/usym1F013.tikz + RELOC/tex/latex/utfsym/usym1F014.tikz + RELOC/tex/latex/utfsym/usym1F015.tikz + RELOC/tex/latex/utfsym/usym1F016.tikz + RELOC/tex/latex/utfsym/usym1F017.tikz + RELOC/tex/latex/utfsym/usym1F018.tikz + RELOC/tex/latex/utfsym/usym1F019.tikz + RELOC/tex/latex/utfsym/usym1F01A.tikz + RELOC/tex/latex/utfsym/usym1F01B.tikz + RELOC/tex/latex/utfsym/usym1F01C.tikz + RELOC/tex/latex/utfsym/usym1F01D.tikz + RELOC/tex/latex/utfsym/usym1F01E.tikz + RELOC/tex/latex/utfsym/usym1F01F.tikz + RELOC/tex/latex/utfsym/usym1F020.tikz + RELOC/tex/latex/utfsym/usym1F021.tikz + RELOC/tex/latex/utfsym/usym1F022.tikz + RELOC/tex/latex/utfsym/usym1F023.tikz + RELOC/tex/latex/utfsym/usym1F024.tikz + RELOC/tex/latex/utfsym/usym1F025.tikz + RELOC/tex/latex/utfsym/usym1F026.tikz + RELOC/tex/latex/utfsym/usym1F027.tikz + RELOC/tex/latex/utfsym/usym1F028.tikz + RELOC/tex/latex/utfsym/usym1F029.tikz + RELOC/tex/latex/utfsym/usym1F02A.tikz + RELOC/tex/latex/utfsym/usym1F02B.tikz + RELOC/tex/latex/utfsym/usym1F02C.tikz + RELOC/tex/latex/utfsym/usym1F02D.tikz + RELOC/tex/latex/utfsym/usym1F02E.tikz + RELOC/tex/latex/utfsym/usym1F02F.tikz + RELOC/tex/latex/utfsym/usym1F030.tikz + RELOC/tex/latex/utfsym/usym1F031.tikz + RELOC/tex/latex/utfsym/usym1F032.tikz + RELOC/tex/latex/utfsym/usym1F033.tikz + RELOC/tex/latex/utfsym/usym1F034.tikz + RELOC/tex/latex/utfsym/usym1F035.tikz + RELOC/tex/latex/utfsym/usym1F036.tikz + RELOC/tex/latex/utfsym/usym1F037.tikz + RELOC/tex/latex/utfsym/usym1F038.tikz + RELOC/tex/latex/utfsym/usym1F039.tikz + RELOC/tex/latex/utfsym/usym1F03A.tikz + RELOC/tex/latex/utfsym/usym1F03B.tikz + RELOC/tex/latex/utfsym/usym1F03C.tikz + RELOC/tex/latex/utfsym/usym1F03D.tikz + RELOC/tex/latex/utfsym/usym1F03E.tikz + RELOC/tex/latex/utfsym/usym1F03F.tikz + RELOC/tex/latex/utfsym/usym1F040.tikz + RELOC/tex/latex/utfsym/usym1F041.tikz + RELOC/tex/latex/utfsym/usym1F042.tikz + RELOC/tex/latex/utfsym/usym1F043.tikz + RELOC/tex/latex/utfsym/usym1F044.tikz + RELOC/tex/latex/utfsym/usym1F045.tikz + RELOC/tex/latex/utfsym/usym1F046.tikz + RELOC/tex/latex/utfsym/usym1F047.tikz + RELOC/tex/latex/utfsym/usym1F048.tikz + RELOC/tex/latex/utfsym/usym1F049.tikz + RELOC/tex/latex/utfsym/usym1F04A.tikz + RELOC/tex/latex/utfsym/usym1F04B.tikz + RELOC/tex/latex/utfsym/usym1F04C.tikz + RELOC/tex/latex/utfsym/usym1F04D.tikz + RELOC/tex/latex/utfsym/usym1F04E.tikz + RELOC/tex/latex/utfsym/usym1F04F.tikz + RELOC/tex/latex/utfsym/usym1F050.tikz + RELOC/tex/latex/utfsym/usym1F051.tikz + RELOC/tex/latex/utfsym/usym1F052.tikz + RELOC/tex/latex/utfsym/usym1F053.tikz + RELOC/tex/latex/utfsym/usym1F054.tikz + RELOC/tex/latex/utfsym/usym1F055.tikz + RELOC/tex/latex/utfsym/usym1F056.tikz + RELOC/tex/latex/utfsym/usym1F057.tikz + RELOC/tex/latex/utfsym/usym1F058.tikz + RELOC/tex/latex/utfsym/usym1F059.tikz + RELOC/tex/latex/utfsym/usym1F05A.tikz + RELOC/tex/latex/utfsym/usym1F05B.tikz + RELOC/tex/latex/utfsym/usym1F05C.tikz + RELOC/tex/latex/utfsym/usym1F05D.tikz + RELOC/tex/latex/utfsym/usym1F05E.tikz + RELOC/tex/latex/utfsym/usym1F05F.tikz + RELOC/tex/latex/utfsym/usym1F060.tikz + RELOC/tex/latex/utfsym/usym1F061.tikz + RELOC/tex/latex/utfsym/usym1F062.tikz + RELOC/tex/latex/utfsym/usym1F063.tikz + RELOC/tex/latex/utfsym/usym1F064.tikz + RELOC/tex/latex/utfsym/usym1F065.tikz + RELOC/tex/latex/utfsym/usym1F066.tikz + RELOC/tex/latex/utfsym/usym1F067.tikz + RELOC/tex/latex/utfsym/usym1F068.tikz + RELOC/tex/latex/utfsym/usym1F069.tikz + RELOC/tex/latex/utfsym/usym1F06A.tikz + RELOC/tex/latex/utfsym/usym1F06B.tikz + RELOC/tex/latex/utfsym/usym1F06C.tikz + RELOC/tex/latex/utfsym/usym1F06D.tikz + RELOC/tex/latex/utfsym/usym1F06E.tikz + RELOC/tex/latex/utfsym/usym1F06F.tikz + RELOC/tex/latex/utfsym/usym1F070.tikz + RELOC/tex/latex/utfsym/usym1F071.tikz + RELOC/tex/latex/utfsym/usym1F072.tikz + RELOC/tex/latex/utfsym/usym1F073.tikz + RELOC/tex/latex/utfsym/usym1F074.tikz + RELOC/tex/latex/utfsym/usym1F075.tikz + RELOC/tex/latex/utfsym/usym1F076.tikz + RELOC/tex/latex/utfsym/usym1F077.tikz + RELOC/tex/latex/utfsym/usym1F078.tikz + RELOC/tex/latex/utfsym/usym1F079.tikz + RELOC/tex/latex/utfsym/usym1F07A.tikz + RELOC/tex/latex/utfsym/usym1F07B.tikz + RELOC/tex/latex/utfsym/usym1F07C.tikz + RELOC/tex/latex/utfsym/usym1F07D.tikz + RELOC/tex/latex/utfsym/usym1F07E.tikz + RELOC/tex/latex/utfsym/usym1F07F.tikz + RELOC/tex/latex/utfsym/usym1F080.tikz + RELOC/tex/latex/utfsym/usym1F081.tikz + RELOC/tex/latex/utfsym/usym1F082.tikz + RELOC/tex/latex/utfsym/usym1F083.tikz + RELOC/tex/latex/utfsym/usym1F084.tikz + RELOC/tex/latex/utfsym/usym1F085.tikz + RELOC/tex/latex/utfsym/usym1F086.tikz + RELOC/tex/latex/utfsym/usym1F087.tikz + RELOC/tex/latex/utfsym/usym1F088.tikz + RELOC/tex/latex/utfsym/usym1F089.tikz + RELOC/tex/latex/utfsym/usym1F08A.tikz + RELOC/tex/latex/utfsym/usym1F08B.tikz + RELOC/tex/latex/utfsym/usym1F08C.tikz + RELOC/tex/latex/utfsym/usym1F08D.tikz + RELOC/tex/latex/utfsym/usym1F08E.tikz + RELOC/tex/latex/utfsym/usym1F08F.tikz + RELOC/tex/latex/utfsym/usym1F090.tikz + RELOC/tex/latex/utfsym/usym1F091.tikz + RELOC/tex/latex/utfsym/usym1F092.tikz + RELOC/tex/latex/utfsym/usym1F093.tikz + RELOC/tex/latex/utfsym/usym1F094.tikz + RELOC/tex/latex/utfsym/usym1F095.tikz + RELOC/tex/latex/utfsym/usym1F096.tikz + RELOC/tex/latex/utfsym/usym1F097.tikz + RELOC/tex/latex/utfsym/usym1F098.tikz + RELOC/tex/latex/utfsym/usym1F099.tikz + RELOC/tex/latex/utfsym/usym1F09A.tikz + RELOC/tex/latex/utfsym/usym1F09B.tikz + RELOC/tex/latex/utfsym/usym1F09C.tikz + RELOC/tex/latex/utfsym/usym1F09D.tikz + RELOC/tex/latex/utfsym/usym1F09E.tikz + RELOC/tex/latex/utfsym/usym1F09F.tikz + RELOC/tex/latex/utfsym/usym1F0A0.tikz + RELOC/tex/latex/utfsym/usym1F0A1.tikz + RELOC/tex/latex/utfsym/usym1F0A2.tikz + RELOC/tex/latex/utfsym/usym1F0A3.tikz + RELOC/tex/latex/utfsym/usym1F0A4.tikz + RELOC/tex/latex/utfsym/usym1F0A5.tikz + RELOC/tex/latex/utfsym/usym1F0A6.tikz + RELOC/tex/latex/utfsym/usym1F0A7.tikz + RELOC/tex/latex/utfsym/usym1F0A8.tikz + RELOC/tex/latex/utfsym/usym1F0A9.tikz + RELOC/tex/latex/utfsym/usym1F0AA.tikz + RELOC/tex/latex/utfsym/usym1F0AB.tikz + RELOC/tex/latex/utfsym/usym1F0AC.tikz + RELOC/tex/latex/utfsym/usym1F0AD.tikz + RELOC/tex/latex/utfsym/usym1F0AE.tikz + RELOC/tex/latex/utfsym/usym1F0AF.tikz + RELOC/tex/latex/utfsym/usym1F0B0.tikz + RELOC/tex/latex/utfsym/usym1F0B1.tikz + RELOC/tex/latex/utfsym/usym1F0B2.tikz + RELOC/tex/latex/utfsym/usym1F0B3.tikz + RELOC/tex/latex/utfsym/usym1F0B4.tikz + RELOC/tex/latex/utfsym/usym1F0B5.tikz + RELOC/tex/latex/utfsym/usym1F0B6.tikz + RELOC/tex/latex/utfsym/usym1F0B7.tikz + RELOC/tex/latex/utfsym/usym1F0B8.tikz + RELOC/tex/latex/utfsym/usym1F0B9.tikz + RELOC/tex/latex/utfsym/usym1F0BA.tikz + RELOC/tex/latex/utfsym/usym1F0BB.tikz + RELOC/tex/latex/utfsym/usym1F0BC.tikz + RELOC/tex/latex/utfsym/usym1F0BD.tikz + RELOC/tex/latex/utfsym/usym1F0BE.tikz + RELOC/tex/latex/utfsym/usym1F0BF.tikz + RELOC/tex/latex/utfsym/usym1F0C0.tikz + RELOC/tex/latex/utfsym/usym1F0C1.tikz + RELOC/tex/latex/utfsym/usym1F0C2.tikz + RELOC/tex/latex/utfsym/usym1F0C3.tikz + RELOC/tex/latex/utfsym/usym1F0C4.tikz + RELOC/tex/latex/utfsym/usym1F0C5.tikz + RELOC/tex/latex/utfsym/usym1F0C6.tikz + RELOC/tex/latex/utfsym/usym1F0C7.tikz + RELOC/tex/latex/utfsym/usym1F0C8.tikz + RELOC/tex/latex/utfsym/usym1F0C9.tikz + RELOC/tex/latex/utfsym/usym1F0CA.tikz + RELOC/tex/latex/utfsym/usym1F0CB.tikz + RELOC/tex/latex/utfsym/usym1F0CC.tikz + RELOC/tex/latex/utfsym/usym1F0CD.tikz + RELOC/tex/latex/utfsym/usym1F0CE.tikz + RELOC/tex/latex/utfsym/usym1F0CF.tikz + RELOC/tex/latex/utfsym/usym1F0D0.tikz + RELOC/tex/latex/utfsym/usym1F0D1.tikz + RELOC/tex/latex/utfsym/usym1F0D2.tikz + RELOC/tex/latex/utfsym/usym1F0D3.tikz + RELOC/tex/latex/utfsym/usym1F0D4.tikz + RELOC/tex/latex/utfsym/usym1F0D5.tikz + RELOC/tex/latex/utfsym/usym1F0D6.tikz + RELOC/tex/latex/utfsym/usym1F0D7.tikz + RELOC/tex/latex/utfsym/usym1F0D8.tikz + RELOC/tex/latex/utfsym/usym1F0D9.tikz + RELOC/tex/latex/utfsym/usym1F0DA.tikz + RELOC/tex/latex/utfsym/usym1F0DB.tikz + RELOC/tex/latex/utfsym/usym1F0DC.tikz + RELOC/tex/latex/utfsym/usym1F0DD.tikz + RELOC/tex/latex/utfsym/usym1F0DE.tikz + RELOC/tex/latex/utfsym/usym1F0DF.tikz + RELOC/tex/latex/utfsym/usym1F0E0.tikz + RELOC/tex/latex/utfsym/usym1F0E1.tikz + RELOC/tex/latex/utfsym/usym1F0E2.tikz + RELOC/tex/latex/utfsym/usym1F0E3.tikz + RELOC/tex/latex/utfsym/usym1F0E4.tikz + RELOC/tex/latex/utfsym/usym1F0E5.tikz + RELOC/tex/latex/utfsym/usym1F0E6.tikz + RELOC/tex/latex/utfsym/usym1F0E7.tikz + RELOC/tex/latex/utfsym/usym1F0E8.tikz + RELOC/tex/latex/utfsym/usym1F0E9.tikz + RELOC/tex/latex/utfsym/usym1F0EA.tikz + RELOC/tex/latex/utfsym/usym1F0EB.tikz + RELOC/tex/latex/utfsym/usym1F0EC.tikz + RELOC/tex/latex/utfsym/usym1F0ED.tikz + RELOC/tex/latex/utfsym/usym1F0EE.tikz + RELOC/tex/latex/utfsym/usym1F0EF.tikz + RELOC/tex/latex/utfsym/usym1F0F0.tikz + RELOC/tex/latex/utfsym/usym1F0F1.tikz + RELOC/tex/latex/utfsym/usym1F0F2.tikz + RELOC/tex/latex/utfsym/usym1F0F3.tikz + RELOC/tex/latex/utfsym/usym1F0F4.tikz + RELOC/tex/latex/utfsym/usym1F0F5.tikz + RELOC/tex/latex/utfsym/usym1F0F6.tikz + RELOC/tex/latex/utfsym/usym1F0F7.tikz + RELOC/tex/latex/utfsym/usym1F0F8.tikz + RELOC/tex/latex/utfsym/usym1F0F9.tikz + RELOC/tex/latex/utfsym/usym1F0FA.tikz + RELOC/tex/latex/utfsym/usym1F0FB.tikz + RELOC/tex/latex/utfsym/usym1F0FC.tikz + RELOC/tex/latex/utfsym/usym1F0FD.tikz + RELOC/tex/latex/utfsym/usym1F0FE.tikz + RELOC/tex/latex/utfsym/usym1F0FF.tikz + RELOC/tex/latex/utfsym/usym1F300.tikz + RELOC/tex/latex/utfsym/usym1F301.tikz + RELOC/tex/latex/utfsym/usym1F302.tikz + RELOC/tex/latex/utfsym/usym1F303.tikz + RELOC/tex/latex/utfsym/usym1F304.tikz + RELOC/tex/latex/utfsym/usym1F305.tikz + RELOC/tex/latex/utfsym/usym1F306.tikz + RELOC/tex/latex/utfsym/usym1F307.tikz + RELOC/tex/latex/utfsym/usym1F308.tikz + RELOC/tex/latex/utfsym/usym1F309.tikz + RELOC/tex/latex/utfsym/usym1F30A.tikz + RELOC/tex/latex/utfsym/usym1F30B.tikz + RELOC/tex/latex/utfsym/usym1F30C.tikz + RELOC/tex/latex/utfsym/usym1F30D.tikz + RELOC/tex/latex/utfsym/usym1F30E.tikz + RELOC/tex/latex/utfsym/usym1F30F.tikz + RELOC/tex/latex/utfsym/usym1F310.tikz + RELOC/tex/latex/utfsym/usym1F311.tikz + RELOC/tex/latex/utfsym/usym1F312.tikz + RELOC/tex/latex/utfsym/usym1F313.tikz + RELOC/tex/latex/utfsym/usym1F314.tikz + RELOC/tex/latex/utfsym/usym1F315.tikz + RELOC/tex/latex/utfsym/usym1F316.tikz + RELOC/tex/latex/utfsym/usym1F317.tikz + RELOC/tex/latex/utfsym/usym1F318.tikz + RELOC/tex/latex/utfsym/usym1F319.tikz + RELOC/tex/latex/utfsym/usym1F31A.tikz + RELOC/tex/latex/utfsym/usym1F31B.tikz + RELOC/tex/latex/utfsym/usym1F31C.tikz + RELOC/tex/latex/utfsym/usym1F31D.tikz + RELOC/tex/latex/utfsym/usym1F31E.tikz + RELOC/tex/latex/utfsym/usym1F31F.tikz + RELOC/tex/latex/utfsym/usym1F320.tikz + RELOC/tex/latex/utfsym/usym1F321.tikz + RELOC/tex/latex/utfsym/usym1F322.tikz + RELOC/tex/latex/utfsym/usym1F323.tikz + RELOC/tex/latex/utfsym/usym1F324.tikz + RELOC/tex/latex/utfsym/usym1F325.tikz + RELOC/tex/latex/utfsym/usym1F326.tikz + RELOC/tex/latex/utfsym/usym1F327.tikz + RELOC/tex/latex/utfsym/usym1F328.tikz + RELOC/tex/latex/utfsym/usym1F329.tikz + RELOC/tex/latex/utfsym/usym1F32A.tikz + RELOC/tex/latex/utfsym/usym1F32B.tikz + RELOC/tex/latex/utfsym/usym1F32C.tikz + RELOC/tex/latex/utfsym/usym1F32D.tikz + RELOC/tex/latex/utfsym/usym1F32E.tikz + RELOC/tex/latex/utfsym/usym1F32F.tikz + RELOC/tex/latex/utfsym/usym1F330.tikz + RELOC/tex/latex/utfsym/usym1F331.tikz + RELOC/tex/latex/utfsym/usym1F332.tikz + RELOC/tex/latex/utfsym/usym1F333.tikz + RELOC/tex/latex/utfsym/usym1F334.tikz + RELOC/tex/latex/utfsym/usym1F335.tikz + RELOC/tex/latex/utfsym/usym1F336.tikz + RELOC/tex/latex/utfsym/usym1F337.tikz + RELOC/tex/latex/utfsym/usym1F338.tikz + RELOC/tex/latex/utfsym/usym1F339.tikz + RELOC/tex/latex/utfsym/usym1F33A.tikz + RELOC/tex/latex/utfsym/usym1F33B.tikz + RELOC/tex/latex/utfsym/usym1F33C.tikz + RELOC/tex/latex/utfsym/usym1F33D.tikz + RELOC/tex/latex/utfsym/usym1F33E.tikz + RELOC/tex/latex/utfsym/usym1F33F.tikz + RELOC/tex/latex/utfsym/usym1F340.tikz + RELOC/tex/latex/utfsym/usym1F341.tikz + RELOC/tex/latex/utfsym/usym1F342.tikz + RELOC/tex/latex/utfsym/usym1F343.tikz + RELOC/tex/latex/utfsym/usym1F344.tikz + RELOC/tex/latex/utfsym/usym1F345.tikz + RELOC/tex/latex/utfsym/usym1F346.tikz + RELOC/tex/latex/utfsym/usym1F347.tikz + RELOC/tex/latex/utfsym/usym1F348.tikz + RELOC/tex/latex/utfsym/usym1F349.tikz + RELOC/tex/latex/utfsym/usym1F34A.tikz + RELOC/tex/latex/utfsym/usym1F34B.tikz + RELOC/tex/latex/utfsym/usym1F34C.tikz + RELOC/tex/latex/utfsym/usym1F34D.tikz + RELOC/tex/latex/utfsym/usym1F34E.tikz + RELOC/tex/latex/utfsym/usym1F34F.tikz + RELOC/tex/latex/utfsym/usym1F350.tikz + RELOC/tex/latex/utfsym/usym1F351.tikz + RELOC/tex/latex/utfsym/usym1F352.tikz + RELOC/tex/latex/utfsym/usym1F353.tikz + RELOC/tex/latex/utfsym/usym1F354.tikz + RELOC/tex/latex/utfsym/usym1F355.tikz + RELOC/tex/latex/utfsym/usym1F356.tikz + RELOC/tex/latex/utfsym/usym1F357.tikz + RELOC/tex/latex/utfsym/usym1F358.tikz + RELOC/tex/latex/utfsym/usym1F359.tikz + RELOC/tex/latex/utfsym/usym1F35A.tikz + RELOC/tex/latex/utfsym/usym1F35B.tikz + RELOC/tex/latex/utfsym/usym1F35C.tikz + RELOC/tex/latex/utfsym/usym1F35D.tikz + RELOC/tex/latex/utfsym/usym1F35E.tikz + RELOC/tex/latex/utfsym/usym1F35F.tikz + RELOC/tex/latex/utfsym/usym1F360.tikz + RELOC/tex/latex/utfsym/usym1F361.tikz + RELOC/tex/latex/utfsym/usym1F362.tikz + RELOC/tex/latex/utfsym/usym1F363.tikz + RELOC/tex/latex/utfsym/usym1F364.tikz + RELOC/tex/latex/utfsym/usym1F365.tikz + RELOC/tex/latex/utfsym/usym1F366.tikz + RELOC/tex/latex/utfsym/usym1F367.tikz + RELOC/tex/latex/utfsym/usym1F368.tikz + RELOC/tex/latex/utfsym/usym1F369.tikz + RELOC/tex/latex/utfsym/usym1F36A.tikz + RELOC/tex/latex/utfsym/usym1F36B.tikz + RELOC/tex/latex/utfsym/usym1F36C.tikz + RELOC/tex/latex/utfsym/usym1F36D.tikz + RELOC/tex/latex/utfsym/usym1F36E.tikz + RELOC/tex/latex/utfsym/usym1F36F.tikz + RELOC/tex/latex/utfsym/usym1F370.tikz + RELOC/tex/latex/utfsym/usym1F371.tikz + RELOC/tex/latex/utfsym/usym1F372.tikz + RELOC/tex/latex/utfsym/usym1F373.tikz + RELOC/tex/latex/utfsym/usym1F374.tikz + RELOC/tex/latex/utfsym/usym1F375.tikz + RELOC/tex/latex/utfsym/usym1F376.tikz + RELOC/tex/latex/utfsym/usym1F377.tikz + RELOC/tex/latex/utfsym/usym1F378.tikz + RELOC/tex/latex/utfsym/usym1F379.tikz + RELOC/tex/latex/utfsym/usym1F37A.tikz + RELOC/tex/latex/utfsym/usym1F37B.tikz + RELOC/tex/latex/utfsym/usym1F37C.tikz + RELOC/tex/latex/utfsym/usym1F37D.tikz + RELOC/tex/latex/utfsym/usym1F37E.tikz + RELOC/tex/latex/utfsym/usym1F37F.tikz + RELOC/tex/latex/utfsym/usym1F380.tikz + RELOC/tex/latex/utfsym/usym1F381.tikz + RELOC/tex/latex/utfsym/usym1F382.tikz + RELOC/tex/latex/utfsym/usym1F383.tikz + RELOC/tex/latex/utfsym/usym1F384.tikz + RELOC/tex/latex/utfsym/usym1F385.tikz + RELOC/tex/latex/utfsym/usym1F386.tikz + RELOC/tex/latex/utfsym/usym1F387.tikz + RELOC/tex/latex/utfsym/usym1F388.tikz + RELOC/tex/latex/utfsym/usym1F389.tikz + RELOC/tex/latex/utfsym/usym1F38A.tikz + RELOC/tex/latex/utfsym/usym1F38B.tikz + RELOC/tex/latex/utfsym/usym1F38C.tikz + RELOC/tex/latex/utfsym/usym1F38D.tikz + RELOC/tex/latex/utfsym/usym1F38E.tikz + RELOC/tex/latex/utfsym/usym1F38F.tikz + RELOC/tex/latex/utfsym/usym1F390.tikz + RELOC/tex/latex/utfsym/usym1F391.tikz + RELOC/tex/latex/utfsym/usym1F392.tikz + RELOC/tex/latex/utfsym/usym1F393.tikz + RELOC/tex/latex/utfsym/usym1F394.tikz + RELOC/tex/latex/utfsym/usym1F395.tikz + RELOC/tex/latex/utfsym/usym1F396.tikz + RELOC/tex/latex/utfsym/usym1F397.tikz + RELOC/tex/latex/utfsym/usym1F398.tikz + RELOC/tex/latex/utfsym/usym1F399.tikz + RELOC/tex/latex/utfsym/usym1F39A.tikz + RELOC/tex/latex/utfsym/usym1F39B.tikz + RELOC/tex/latex/utfsym/usym1F39C.tikz + RELOC/tex/latex/utfsym/usym1F39D.tikz + RELOC/tex/latex/utfsym/usym1F39E.tikz + RELOC/tex/latex/utfsym/usym1F39F.tikz + RELOC/tex/latex/utfsym/usym1F3A0.tikz + RELOC/tex/latex/utfsym/usym1F3A1.tikz + RELOC/tex/latex/utfsym/usym1F3A2.tikz + RELOC/tex/latex/utfsym/usym1F3A3.tikz + RELOC/tex/latex/utfsym/usym1F3A4.tikz + RELOC/tex/latex/utfsym/usym1F3A5.tikz + RELOC/tex/latex/utfsym/usym1F3A6.tikz + RELOC/tex/latex/utfsym/usym1F3A7.tikz + RELOC/tex/latex/utfsym/usym1F3A8.tikz + RELOC/tex/latex/utfsym/usym1F3A9.tikz + RELOC/tex/latex/utfsym/usym1F3AA.tikz + RELOC/tex/latex/utfsym/usym1F3AB.tikz + RELOC/tex/latex/utfsym/usym1F3AC.tikz + RELOC/tex/latex/utfsym/usym1F3AD.tikz + RELOC/tex/latex/utfsym/usym1F3AE.tikz + RELOC/tex/latex/utfsym/usym1F3AF.tikz + RELOC/tex/latex/utfsym/usym1F3B0.tikz + RELOC/tex/latex/utfsym/usym1F3B1.tikz + RELOC/tex/latex/utfsym/usym1F3B2.tikz + RELOC/tex/latex/utfsym/usym1F3B3.tikz + RELOC/tex/latex/utfsym/usym1F3B4.tikz + RELOC/tex/latex/utfsym/usym1F3B5.tikz + RELOC/tex/latex/utfsym/usym1F3B6.tikz + RELOC/tex/latex/utfsym/usym1F3B7.tikz + RELOC/tex/latex/utfsym/usym1F3B8.tikz + RELOC/tex/latex/utfsym/usym1F3B9.tikz + RELOC/tex/latex/utfsym/usym1F3BA.tikz + RELOC/tex/latex/utfsym/usym1F3BB.tikz + RELOC/tex/latex/utfsym/usym1F3BC.tikz + RELOC/tex/latex/utfsym/usym1F3BD.tikz + RELOC/tex/latex/utfsym/usym1F3BE.tikz + RELOC/tex/latex/utfsym/usym1F3BF.tikz + RELOC/tex/latex/utfsym/usym1F3C0.tikz + RELOC/tex/latex/utfsym/usym1F3C1.tikz + RELOC/tex/latex/utfsym/usym1F3C2.tikz + RELOC/tex/latex/utfsym/usym1F3C3.tikz + RELOC/tex/latex/utfsym/usym1F3C4.tikz + RELOC/tex/latex/utfsym/usym1F3C5.tikz + RELOC/tex/latex/utfsym/usym1F3C6.tikz + RELOC/tex/latex/utfsym/usym1F3C7.tikz + RELOC/tex/latex/utfsym/usym1F3C8.tikz + RELOC/tex/latex/utfsym/usym1F3C9.tikz + RELOC/tex/latex/utfsym/usym1F3CA.tikz + RELOC/tex/latex/utfsym/usym1F3CB.tikz + RELOC/tex/latex/utfsym/usym1F3CC.tikz + RELOC/tex/latex/utfsym/usym1F3CD.tikz + RELOC/tex/latex/utfsym/usym1F3CE.tikz + RELOC/tex/latex/utfsym/usym1F3CF.tikz + RELOC/tex/latex/utfsym/usym1F3D0.tikz + RELOC/tex/latex/utfsym/usym1F3D1.tikz + RELOC/tex/latex/utfsym/usym1F3D2.tikz + RELOC/tex/latex/utfsym/usym1F3D3.tikz + RELOC/tex/latex/utfsym/usym1F3D4.tikz + RELOC/tex/latex/utfsym/usym1F3D5.tikz + RELOC/tex/latex/utfsym/usym1F3D6.tikz + RELOC/tex/latex/utfsym/usym1F3D7.tikz + RELOC/tex/latex/utfsym/usym1F3D8.tikz + RELOC/tex/latex/utfsym/usym1F3D9.tikz + RELOC/tex/latex/utfsym/usym1F3DA.tikz + RELOC/tex/latex/utfsym/usym1F3DB.tikz + RELOC/tex/latex/utfsym/usym1F3DC.tikz + RELOC/tex/latex/utfsym/usym1F3DD.tikz + RELOC/tex/latex/utfsym/usym1F3DE.tikz + RELOC/tex/latex/utfsym/usym1F3DF.tikz + RELOC/tex/latex/utfsym/usym1F3E0.tikz + RELOC/tex/latex/utfsym/usym1F3E1.tikz + RELOC/tex/latex/utfsym/usym1F3E2.tikz + RELOC/tex/latex/utfsym/usym1F3E3.tikz + RELOC/tex/latex/utfsym/usym1F3E4.tikz + RELOC/tex/latex/utfsym/usym1F3E5.tikz + RELOC/tex/latex/utfsym/usym1F3E6.tikz + RELOC/tex/latex/utfsym/usym1F3E7.tikz + RELOC/tex/latex/utfsym/usym1F3E8.tikz + RELOC/tex/latex/utfsym/usym1F3E9.tikz + RELOC/tex/latex/utfsym/usym1F3EA.tikz + RELOC/tex/latex/utfsym/usym1F3EB.tikz + RELOC/tex/latex/utfsym/usym1F3EC.tikz + RELOC/tex/latex/utfsym/usym1F3ED.tikz + RELOC/tex/latex/utfsym/usym1F3EE.tikz + RELOC/tex/latex/utfsym/usym1F3EF.tikz + RELOC/tex/latex/utfsym/usym1F3F0.tikz + RELOC/tex/latex/utfsym/usym1F3F1.tikz + RELOC/tex/latex/utfsym/usym1F3F2.tikz + RELOC/tex/latex/utfsym/usym1F3F3.tikz + RELOC/tex/latex/utfsym/usym1F3F4.tikz + RELOC/tex/latex/utfsym/usym1F3F5.tikz + RELOC/tex/latex/utfsym/usym1F3F6.tikz + RELOC/tex/latex/utfsym/usym1F3F7.tikz + RELOC/tex/latex/utfsym/usym1F3F8.tikz + RELOC/tex/latex/utfsym/usym1F3F9.tikz + RELOC/tex/latex/utfsym/usym1F3FA.tikz + RELOC/tex/latex/utfsym/usym1F3FB.tikz + RELOC/tex/latex/utfsym/usym1F3FC.tikz + RELOC/tex/latex/utfsym/usym1F3FD.tikz + RELOC/tex/latex/utfsym/usym1F3FE.tikz + RELOC/tex/latex/utfsym/usym1F3FF.tikz + RELOC/tex/latex/utfsym/usym1F400.tikz + RELOC/tex/latex/utfsym/usym1F401.tikz + RELOC/tex/latex/utfsym/usym1F402.tikz + RELOC/tex/latex/utfsym/usym1F403.tikz + RELOC/tex/latex/utfsym/usym1F404.tikz + RELOC/tex/latex/utfsym/usym1F405.tikz + RELOC/tex/latex/utfsym/usym1F406.tikz + RELOC/tex/latex/utfsym/usym1F407.tikz + RELOC/tex/latex/utfsym/usym1F408.tikz + RELOC/tex/latex/utfsym/usym1F409.tikz + RELOC/tex/latex/utfsym/usym1F40A.tikz + RELOC/tex/latex/utfsym/usym1F40B.tikz + RELOC/tex/latex/utfsym/usym1F40C.tikz + RELOC/tex/latex/utfsym/usym1F40D.tikz + RELOC/tex/latex/utfsym/usym1F40E.tikz + RELOC/tex/latex/utfsym/usym1F40F.tikz + RELOC/tex/latex/utfsym/usym1F410.tikz + RELOC/tex/latex/utfsym/usym1F411.tikz + RELOC/tex/latex/utfsym/usym1F412.tikz + RELOC/tex/latex/utfsym/usym1F413.tikz + RELOC/tex/latex/utfsym/usym1F414.tikz + RELOC/tex/latex/utfsym/usym1F415.tikz + RELOC/tex/latex/utfsym/usym1F416.tikz + RELOC/tex/latex/utfsym/usym1F417.tikz + RELOC/tex/latex/utfsym/usym1F418.tikz + RELOC/tex/latex/utfsym/usym1F419.tikz + RELOC/tex/latex/utfsym/usym1F41A.tikz + RELOC/tex/latex/utfsym/usym1F41B.tikz + RELOC/tex/latex/utfsym/usym1F41C.tikz + RELOC/tex/latex/utfsym/usym1F41D.tikz + RELOC/tex/latex/utfsym/usym1F41E.tikz + RELOC/tex/latex/utfsym/usym1F41F.tikz + RELOC/tex/latex/utfsym/usym1F420.tikz + RELOC/tex/latex/utfsym/usym1F421.tikz + RELOC/tex/latex/utfsym/usym1F422.tikz + RELOC/tex/latex/utfsym/usym1F423.tikz + RELOC/tex/latex/utfsym/usym1F424.tikz + RELOC/tex/latex/utfsym/usym1F425.tikz + RELOC/tex/latex/utfsym/usym1F426.tikz + RELOC/tex/latex/utfsym/usym1F427.tikz + RELOC/tex/latex/utfsym/usym1F428.tikz + RELOC/tex/latex/utfsym/usym1F429.tikz + RELOC/tex/latex/utfsym/usym1F42A.tikz + RELOC/tex/latex/utfsym/usym1F42B.tikz + RELOC/tex/latex/utfsym/usym1F42C.tikz + RELOC/tex/latex/utfsym/usym1F42D.tikz + RELOC/tex/latex/utfsym/usym1F42E.tikz + RELOC/tex/latex/utfsym/usym1F42F.tikz + RELOC/tex/latex/utfsym/usym1F430.tikz + RELOC/tex/latex/utfsym/usym1F431.tikz + RELOC/tex/latex/utfsym/usym1F432.tikz + RELOC/tex/latex/utfsym/usym1F433.tikz + RELOC/tex/latex/utfsym/usym1F434.tikz + RELOC/tex/latex/utfsym/usym1F435.tikz + RELOC/tex/latex/utfsym/usym1F436.tikz + RELOC/tex/latex/utfsym/usym1F437.tikz + RELOC/tex/latex/utfsym/usym1F438.tikz + RELOC/tex/latex/utfsym/usym1F439.tikz + RELOC/tex/latex/utfsym/usym1F43A.tikz + RELOC/tex/latex/utfsym/usym1F43B.tikz + RELOC/tex/latex/utfsym/usym1F43C.tikz + RELOC/tex/latex/utfsym/usym1F43D.tikz + RELOC/tex/latex/utfsym/usym1F43E.tikz + RELOC/tex/latex/utfsym/usym1F43F.tikz + RELOC/tex/latex/utfsym/usym1F440.tikz + RELOC/tex/latex/utfsym/usym1F441.tikz + RELOC/tex/latex/utfsym/usym1F442.tikz + RELOC/tex/latex/utfsym/usym1F443.tikz + RELOC/tex/latex/utfsym/usym1F444.tikz + RELOC/tex/latex/utfsym/usym1F445.tikz + RELOC/tex/latex/utfsym/usym1F446.tikz + RELOC/tex/latex/utfsym/usym1F447.tikz + RELOC/tex/latex/utfsym/usym1F448.tikz + RELOC/tex/latex/utfsym/usym1F449.tikz + RELOC/tex/latex/utfsym/usym1F44A.tikz + RELOC/tex/latex/utfsym/usym1F44B.tikz + RELOC/tex/latex/utfsym/usym1F44C.tikz + RELOC/tex/latex/utfsym/usym1F44D.tikz + RELOC/tex/latex/utfsym/usym1F44E.tikz + RELOC/tex/latex/utfsym/usym1F44F.tikz + RELOC/tex/latex/utfsym/usym1F450.tikz + RELOC/tex/latex/utfsym/usym1F451.tikz + RELOC/tex/latex/utfsym/usym1F452.tikz + RELOC/tex/latex/utfsym/usym1F453.tikz + RELOC/tex/latex/utfsym/usym1F454.tikz + RELOC/tex/latex/utfsym/usym1F455.tikz + RELOC/tex/latex/utfsym/usym1F456.tikz + RELOC/tex/latex/utfsym/usym1F457.tikz + RELOC/tex/latex/utfsym/usym1F458.tikz + RELOC/tex/latex/utfsym/usym1F459.tikz + RELOC/tex/latex/utfsym/usym1F45A.tikz + RELOC/tex/latex/utfsym/usym1F45B.tikz + RELOC/tex/latex/utfsym/usym1F45C.tikz + RELOC/tex/latex/utfsym/usym1F45D.tikz + RELOC/tex/latex/utfsym/usym1F45E.tikz + RELOC/tex/latex/utfsym/usym1F45F.tikz + RELOC/tex/latex/utfsym/usym1F460.tikz + RELOC/tex/latex/utfsym/usym1F461.tikz + RELOC/tex/latex/utfsym/usym1F462.tikz + RELOC/tex/latex/utfsym/usym1F463.tikz + RELOC/tex/latex/utfsym/usym1F464.tikz + RELOC/tex/latex/utfsym/usym1F465.tikz + RELOC/tex/latex/utfsym/usym1F466.tikz + RELOC/tex/latex/utfsym/usym1F467.tikz + RELOC/tex/latex/utfsym/usym1F468.tikz + RELOC/tex/latex/utfsym/usym1F469.tikz + RELOC/tex/latex/utfsym/usym1F46A.tikz + RELOC/tex/latex/utfsym/usym1F46B.tikz + RELOC/tex/latex/utfsym/usym1F46C.tikz + RELOC/tex/latex/utfsym/usym1F46D.tikz + RELOC/tex/latex/utfsym/usym1F46E.tikz + RELOC/tex/latex/utfsym/usym1F46F.tikz + RELOC/tex/latex/utfsym/usym1F470.tikz + RELOC/tex/latex/utfsym/usym1F471.tikz + RELOC/tex/latex/utfsym/usym1F472.tikz + RELOC/tex/latex/utfsym/usym1F473.tikz + RELOC/tex/latex/utfsym/usym1F474.tikz + RELOC/tex/latex/utfsym/usym1F475.tikz + RELOC/tex/latex/utfsym/usym1F476.tikz + RELOC/tex/latex/utfsym/usym1F477.tikz + RELOC/tex/latex/utfsym/usym1F478.tikz + RELOC/tex/latex/utfsym/usym1F479.tikz + RELOC/tex/latex/utfsym/usym1F47A.tikz + RELOC/tex/latex/utfsym/usym1F47B.tikz + RELOC/tex/latex/utfsym/usym1F47C.tikz + RELOC/tex/latex/utfsym/usym1F47D.tikz + RELOC/tex/latex/utfsym/usym1F47E.tikz + RELOC/tex/latex/utfsym/usym1F47F.tikz + RELOC/tex/latex/utfsym/usym1F480.tikz + RELOC/tex/latex/utfsym/usym1F481.tikz + RELOC/tex/latex/utfsym/usym1F482.tikz + RELOC/tex/latex/utfsym/usym1F483.tikz + RELOC/tex/latex/utfsym/usym1F484.tikz + RELOC/tex/latex/utfsym/usym1F485.tikz + RELOC/tex/latex/utfsym/usym1F486.tikz + RELOC/tex/latex/utfsym/usym1F487.tikz + RELOC/tex/latex/utfsym/usym1F488.tikz + RELOC/tex/latex/utfsym/usym1F489.tikz + RELOC/tex/latex/utfsym/usym1F48A.tikz + RELOC/tex/latex/utfsym/usym1F48B.tikz + RELOC/tex/latex/utfsym/usym1F48C.tikz + RELOC/tex/latex/utfsym/usym1F48D.tikz + RELOC/tex/latex/utfsym/usym1F48E.tikz + RELOC/tex/latex/utfsym/usym1F48F.tikz + RELOC/tex/latex/utfsym/usym1F490.tikz + RELOC/tex/latex/utfsym/usym1F491.tikz + RELOC/tex/latex/utfsym/usym1F492.tikz + RELOC/tex/latex/utfsym/usym1F493.tikz + RELOC/tex/latex/utfsym/usym1F494.tikz + RELOC/tex/latex/utfsym/usym1F495.tikz + RELOC/tex/latex/utfsym/usym1F496.tikz + RELOC/tex/latex/utfsym/usym1F497.tikz + RELOC/tex/latex/utfsym/usym1F498.tikz + RELOC/tex/latex/utfsym/usym1F499.tikz + RELOC/tex/latex/utfsym/usym1F49A.tikz + RELOC/tex/latex/utfsym/usym1F49B.tikz + RELOC/tex/latex/utfsym/usym1F49C.tikz + RELOC/tex/latex/utfsym/usym1F49D.tikz + RELOC/tex/latex/utfsym/usym1F49E.tikz + RELOC/tex/latex/utfsym/usym1F49F.tikz + RELOC/tex/latex/utfsym/usym1F4A0.tikz + RELOC/tex/latex/utfsym/usym1F4A1.tikz + RELOC/tex/latex/utfsym/usym1F4A2.tikz + RELOC/tex/latex/utfsym/usym1F4A3.tikz + RELOC/tex/latex/utfsym/usym1F4A4.tikz + RELOC/tex/latex/utfsym/usym1F4A5.tikz + RELOC/tex/latex/utfsym/usym1F4A6.tikz + RELOC/tex/latex/utfsym/usym1F4A7.tikz + RELOC/tex/latex/utfsym/usym1F4A8.tikz + RELOC/tex/latex/utfsym/usym1F4A9.tikz + RELOC/tex/latex/utfsym/usym1F4AA.tikz + RELOC/tex/latex/utfsym/usym1F4AB.tikz + RELOC/tex/latex/utfsym/usym1F4AC.tikz + RELOC/tex/latex/utfsym/usym1F4AD.tikz + RELOC/tex/latex/utfsym/usym1F4AE.tikz + RELOC/tex/latex/utfsym/usym1F4AF.tikz + RELOC/tex/latex/utfsym/usym1F4B0.tikz + RELOC/tex/latex/utfsym/usym1F4B1.tikz + RELOC/tex/latex/utfsym/usym1F4B2.tikz + RELOC/tex/latex/utfsym/usym1F4B3.tikz + RELOC/tex/latex/utfsym/usym1F4B4.tikz + RELOC/tex/latex/utfsym/usym1F4B5.tikz + RELOC/tex/latex/utfsym/usym1F4B6.tikz + RELOC/tex/latex/utfsym/usym1F4B7.tikz + RELOC/tex/latex/utfsym/usym1F4B8.tikz + RELOC/tex/latex/utfsym/usym1F4B9.tikz + RELOC/tex/latex/utfsym/usym1F4BA.tikz + RELOC/tex/latex/utfsym/usym1F4BB.tikz + RELOC/tex/latex/utfsym/usym1F4BC.tikz + RELOC/tex/latex/utfsym/usym1F4BD.tikz + RELOC/tex/latex/utfsym/usym1F4BE.tikz + RELOC/tex/latex/utfsym/usym1F4BF.tikz + RELOC/tex/latex/utfsym/usym1F4C0.tikz + RELOC/tex/latex/utfsym/usym1F4C1.tikz + RELOC/tex/latex/utfsym/usym1F4C2.tikz + RELOC/tex/latex/utfsym/usym1F4C3.tikz + RELOC/tex/latex/utfsym/usym1F4C4.tikz + RELOC/tex/latex/utfsym/usym1F4C5.tikz + RELOC/tex/latex/utfsym/usym1F4C6.tikz + RELOC/tex/latex/utfsym/usym1F4C7.tikz + RELOC/tex/latex/utfsym/usym1F4C8.tikz + RELOC/tex/latex/utfsym/usym1F4C9.tikz + RELOC/tex/latex/utfsym/usym1F4CA.tikz + RELOC/tex/latex/utfsym/usym1F4CB.tikz + RELOC/tex/latex/utfsym/usym1F4CC.tikz + RELOC/tex/latex/utfsym/usym1F4CD.tikz + RELOC/tex/latex/utfsym/usym1F4CE.tikz + RELOC/tex/latex/utfsym/usym1F4CF.tikz + RELOC/tex/latex/utfsym/usym1F4D0.tikz + RELOC/tex/latex/utfsym/usym1F4D1.tikz + RELOC/tex/latex/utfsym/usym1F4D2.tikz + RELOC/tex/latex/utfsym/usym1F4D3.tikz + RELOC/tex/latex/utfsym/usym1F4D4.tikz + RELOC/tex/latex/utfsym/usym1F4D5.tikz + RELOC/tex/latex/utfsym/usym1F4D6.tikz + RELOC/tex/latex/utfsym/usym1F4D7.tikz + RELOC/tex/latex/utfsym/usym1F4D8.tikz + RELOC/tex/latex/utfsym/usym1F4D9.tikz + RELOC/tex/latex/utfsym/usym1F4DA.tikz + RELOC/tex/latex/utfsym/usym1F4DB.tikz + RELOC/tex/latex/utfsym/usym1F4DC.tikz + RELOC/tex/latex/utfsym/usym1F4DD.tikz + RELOC/tex/latex/utfsym/usym1F4DE.tikz + RELOC/tex/latex/utfsym/usym1F4DF.tikz + RELOC/tex/latex/utfsym/usym1F4E0.tikz + RELOC/tex/latex/utfsym/usym1F4E1.tikz + RELOC/tex/latex/utfsym/usym1F4E2.tikz + RELOC/tex/latex/utfsym/usym1F4E3.tikz + RELOC/tex/latex/utfsym/usym1F4E4.tikz + RELOC/tex/latex/utfsym/usym1F4E5.tikz + RELOC/tex/latex/utfsym/usym1F4E6.tikz + RELOC/tex/latex/utfsym/usym1F4E7.tikz + RELOC/tex/latex/utfsym/usym1F4E8.tikz + RELOC/tex/latex/utfsym/usym1F4E9.tikz + RELOC/tex/latex/utfsym/usym1F4EA.tikz + RELOC/tex/latex/utfsym/usym1F4EB.tikz + RELOC/tex/latex/utfsym/usym1F4EC.tikz + RELOC/tex/latex/utfsym/usym1F4ED.tikz + RELOC/tex/latex/utfsym/usym1F4EE.tikz + RELOC/tex/latex/utfsym/usym1F4EF.tikz + RELOC/tex/latex/utfsym/usym1F4F0.tikz + RELOC/tex/latex/utfsym/usym1F4F1.tikz + RELOC/tex/latex/utfsym/usym1F4F2.tikz + RELOC/tex/latex/utfsym/usym1F4F3.tikz + RELOC/tex/latex/utfsym/usym1F4F4.tikz + RELOC/tex/latex/utfsym/usym1F4F5.tikz + RELOC/tex/latex/utfsym/usym1F4F6.tikz + RELOC/tex/latex/utfsym/usym1F4F7.tikz + RELOC/tex/latex/utfsym/usym1F4F8.tikz + RELOC/tex/latex/utfsym/usym1F4F9.tikz + RELOC/tex/latex/utfsym/usym1F4FA.tikz + RELOC/tex/latex/utfsym/usym1F4FB.tikz + RELOC/tex/latex/utfsym/usym1F4FC.tikz + RELOC/tex/latex/utfsym/usym1F4FD.tikz + RELOC/tex/latex/utfsym/usym1F4FE.tikz + RELOC/tex/latex/utfsym/usym1F4FF.tikz + RELOC/tex/latex/utfsym/usym1F500.tikz + RELOC/tex/latex/utfsym/usym1F501.tikz + RELOC/tex/latex/utfsym/usym1F502.tikz + RELOC/tex/latex/utfsym/usym1F503.tikz + RELOC/tex/latex/utfsym/usym1F504.tikz + RELOC/tex/latex/utfsym/usym1F505.tikz + RELOC/tex/latex/utfsym/usym1F506.tikz + RELOC/tex/latex/utfsym/usym1F507.tikz + RELOC/tex/latex/utfsym/usym1F508.tikz + RELOC/tex/latex/utfsym/usym1F509.tikz + RELOC/tex/latex/utfsym/usym1F50A.tikz + RELOC/tex/latex/utfsym/usym1F50B.tikz + RELOC/tex/latex/utfsym/usym1F50C.tikz + RELOC/tex/latex/utfsym/usym1F50D.tikz + RELOC/tex/latex/utfsym/usym1F50E.tikz + RELOC/tex/latex/utfsym/usym1F50F.tikz + RELOC/tex/latex/utfsym/usym1F510.tikz + RELOC/tex/latex/utfsym/usym1F511.tikz + RELOC/tex/latex/utfsym/usym1F512.tikz + RELOC/tex/latex/utfsym/usym1F513.tikz + RELOC/tex/latex/utfsym/usym1F514.tikz + RELOC/tex/latex/utfsym/usym1F515.tikz + RELOC/tex/latex/utfsym/usym1F516.tikz + RELOC/tex/latex/utfsym/usym1F517.tikz + RELOC/tex/latex/utfsym/usym1F518.tikz + RELOC/tex/latex/utfsym/usym1F519.tikz + RELOC/tex/latex/utfsym/usym1F51A.tikz + RELOC/tex/latex/utfsym/usym1F51B.tikz + RELOC/tex/latex/utfsym/usym1F51C.tikz + RELOC/tex/latex/utfsym/usym1F51D.tikz + RELOC/tex/latex/utfsym/usym1F51E.tikz + RELOC/tex/latex/utfsym/usym1F51F.tikz + RELOC/tex/latex/utfsym/usym1F520.tikz + RELOC/tex/latex/utfsym/usym1F521.tikz + RELOC/tex/latex/utfsym/usym1F522.tikz + RELOC/tex/latex/utfsym/usym1F523.tikz + RELOC/tex/latex/utfsym/usym1F524.tikz + RELOC/tex/latex/utfsym/usym1F525.tikz + RELOC/tex/latex/utfsym/usym1F526.tikz + RELOC/tex/latex/utfsym/usym1F527.tikz + RELOC/tex/latex/utfsym/usym1F528.tikz + RELOC/tex/latex/utfsym/usym1F529.tikz + RELOC/tex/latex/utfsym/usym1F52A.tikz + RELOC/tex/latex/utfsym/usym1F52B.tikz + RELOC/tex/latex/utfsym/usym1F52C.tikz + RELOC/tex/latex/utfsym/usym1F52D.tikz + RELOC/tex/latex/utfsym/usym1F52E.tikz + RELOC/tex/latex/utfsym/usym1F52F.tikz + RELOC/tex/latex/utfsym/usym1F530.tikz + RELOC/tex/latex/utfsym/usym1F531.tikz + RELOC/tex/latex/utfsym/usym1F532.tikz + RELOC/tex/latex/utfsym/usym1F533.tikz + RELOC/tex/latex/utfsym/usym1F534.tikz + RELOC/tex/latex/utfsym/usym1F535.tikz + RELOC/tex/latex/utfsym/usym1F536.tikz + RELOC/tex/latex/utfsym/usym1F537.tikz + RELOC/tex/latex/utfsym/usym1F538.tikz + RELOC/tex/latex/utfsym/usym1F539.tikz + RELOC/tex/latex/utfsym/usym1F53A.tikz + RELOC/tex/latex/utfsym/usym1F53B.tikz + RELOC/tex/latex/utfsym/usym1F53C.tikz + RELOC/tex/latex/utfsym/usym1F53D.tikz + RELOC/tex/latex/utfsym/usym1F53E.tikz + RELOC/tex/latex/utfsym/usym1F53F.tikz + RELOC/tex/latex/utfsym/usym1F540.tikz + RELOC/tex/latex/utfsym/usym1F541.tikz + RELOC/tex/latex/utfsym/usym1F542.tikz + RELOC/tex/latex/utfsym/usym1F543.tikz + RELOC/tex/latex/utfsym/usym1F544.tikz + RELOC/tex/latex/utfsym/usym1F545.tikz + RELOC/tex/latex/utfsym/usym1F546.tikz + RELOC/tex/latex/utfsym/usym1F547.tikz + RELOC/tex/latex/utfsym/usym1F548.tikz + RELOC/tex/latex/utfsym/usym1F549.tikz + RELOC/tex/latex/utfsym/usym1F54A.tikz + RELOC/tex/latex/utfsym/usym1F54B.tikz + RELOC/tex/latex/utfsym/usym1F54C.tikz + RELOC/tex/latex/utfsym/usym1F54D.tikz + RELOC/tex/latex/utfsym/usym1F54E.tikz + RELOC/tex/latex/utfsym/usym1F54F.tikz + RELOC/tex/latex/utfsym/usym1F550.tikz + RELOC/tex/latex/utfsym/usym1F551.tikz + RELOC/tex/latex/utfsym/usym1F552.tikz + RELOC/tex/latex/utfsym/usym1F553.tikz + RELOC/tex/latex/utfsym/usym1F554.tikz + RELOC/tex/latex/utfsym/usym1F555.tikz + RELOC/tex/latex/utfsym/usym1F556.tikz + RELOC/tex/latex/utfsym/usym1F557.tikz + RELOC/tex/latex/utfsym/usym1F558.tikz + RELOC/tex/latex/utfsym/usym1F559.tikz + RELOC/tex/latex/utfsym/usym1F55A.tikz + RELOC/tex/latex/utfsym/usym1F55B.tikz + RELOC/tex/latex/utfsym/usym1F55C.tikz + RELOC/tex/latex/utfsym/usym1F55D.tikz + RELOC/tex/latex/utfsym/usym1F55E.tikz + RELOC/tex/latex/utfsym/usym1F55F.tikz + RELOC/tex/latex/utfsym/usym1F560.tikz + RELOC/tex/latex/utfsym/usym1F561.tikz + RELOC/tex/latex/utfsym/usym1F562.tikz + RELOC/tex/latex/utfsym/usym1F563.tikz + RELOC/tex/latex/utfsym/usym1F564.tikz + RELOC/tex/latex/utfsym/usym1F565.tikz + RELOC/tex/latex/utfsym/usym1F566.tikz + RELOC/tex/latex/utfsym/usym1F567.tikz + RELOC/tex/latex/utfsym/usym1F568.tikz + RELOC/tex/latex/utfsym/usym1F569.tikz + RELOC/tex/latex/utfsym/usym1F56A.tikz + RELOC/tex/latex/utfsym/usym1F56B.tikz + RELOC/tex/latex/utfsym/usym1F56C.tikz + RELOC/tex/latex/utfsym/usym1F56D.tikz + RELOC/tex/latex/utfsym/usym1F56E.tikz + RELOC/tex/latex/utfsym/usym1F56F.tikz + RELOC/tex/latex/utfsym/usym1F570.tikz + RELOC/tex/latex/utfsym/usym1F571.tikz + RELOC/tex/latex/utfsym/usym1F572.tikz + RELOC/tex/latex/utfsym/usym1F573.tikz + RELOC/tex/latex/utfsym/usym1F574.tikz + RELOC/tex/latex/utfsym/usym1F575.tikz + RELOC/tex/latex/utfsym/usym1F576.tikz + RELOC/tex/latex/utfsym/usym1F577.tikz + RELOC/tex/latex/utfsym/usym1F578.tikz + RELOC/tex/latex/utfsym/usym1F579.tikz + RELOC/tex/latex/utfsym/usym1F57A.tikz + RELOC/tex/latex/utfsym/usym1F57B.tikz + RELOC/tex/latex/utfsym/usym1F57C.tikz + RELOC/tex/latex/utfsym/usym1F57D.tikz + RELOC/tex/latex/utfsym/usym1F57E.tikz + RELOC/tex/latex/utfsym/usym1F57F.tikz + RELOC/tex/latex/utfsym/usym1F580.tikz + RELOC/tex/latex/utfsym/usym1F581.tikz + RELOC/tex/latex/utfsym/usym1F582.tikz + RELOC/tex/latex/utfsym/usym1F583.tikz + RELOC/tex/latex/utfsym/usym1F584.tikz + RELOC/tex/latex/utfsym/usym1F585.tikz + RELOC/tex/latex/utfsym/usym1F586.tikz + RELOC/tex/latex/utfsym/usym1F587.tikz + RELOC/tex/latex/utfsym/usym1F588.tikz + RELOC/tex/latex/utfsym/usym1F589.tikz + RELOC/tex/latex/utfsym/usym1F58A.tikz + RELOC/tex/latex/utfsym/usym1F58B.tikz + RELOC/tex/latex/utfsym/usym1F58C.tikz + RELOC/tex/latex/utfsym/usym1F58D.tikz + RELOC/tex/latex/utfsym/usym1F58E.tikz + RELOC/tex/latex/utfsym/usym1F58F.tikz + RELOC/tex/latex/utfsym/usym1F590.tikz + RELOC/tex/latex/utfsym/usym1F591.tikz + RELOC/tex/latex/utfsym/usym1F592.tikz + RELOC/tex/latex/utfsym/usym1F593.tikz + RELOC/tex/latex/utfsym/usym1F594.tikz + RELOC/tex/latex/utfsym/usym1F595.tikz + RELOC/tex/latex/utfsym/usym1F596.tikz + RELOC/tex/latex/utfsym/usym1F597.tikz + RELOC/tex/latex/utfsym/usym1F598.tikz + RELOC/tex/latex/utfsym/usym1F599.tikz + RELOC/tex/latex/utfsym/usym1F59A.tikz + RELOC/tex/latex/utfsym/usym1F59B.tikz + RELOC/tex/latex/utfsym/usym1F59C.tikz + RELOC/tex/latex/utfsym/usym1F59D.tikz + RELOC/tex/latex/utfsym/usym1F59E.tikz + RELOC/tex/latex/utfsym/usym1F59F.tikz + RELOC/tex/latex/utfsym/usym1F5A0.tikz + RELOC/tex/latex/utfsym/usym1F5A1.tikz + RELOC/tex/latex/utfsym/usym1F5A2.tikz + RELOC/tex/latex/utfsym/usym1F5A3.tikz + RELOC/tex/latex/utfsym/usym1F5A4.tikz + RELOC/tex/latex/utfsym/usym1F5A5.tikz + RELOC/tex/latex/utfsym/usym1F5A6.tikz + RELOC/tex/latex/utfsym/usym1F5A7.tikz + RELOC/tex/latex/utfsym/usym1F5A8.tikz + RELOC/tex/latex/utfsym/usym1F5A9.tikz + RELOC/tex/latex/utfsym/usym1F5AA.tikz + RELOC/tex/latex/utfsym/usym1F5AB.tikz + RELOC/tex/latex/utfsym/usym1F5AC.tikz + RELOC/tex/latex/utfsym/usym1F5AD.tikz + RELOC/tex/latex/utfsym/usym1F5AE.tikz + RELOC/tex/latex/utfsym/usym1F5AF.tikz + RELOC/tex/latex/utfsym/usym1F5B0.tikz + RELOC/tex/latex/utfsym/usym1F5B1.tikz + RELOC/tex/latex/utfsym/usym1F5B2.tikz + RELOC/tex/latex/utfsym/usym1F5B3.tikz + RELOC/tex/latex/utfsym/usym1F5B4.tikz + RELOC/tex/latex/utfsym/usym1F5B5.tikz + RELOC/tex/latex/utfsym/usym1F5B6.tikz + RELOC/tex/latex/utfsym/usym1F5B7.tikz + RELOC/tex/latex/utfsym/usym1F5B8.tikz + RELOC/tex/latex/utfsym/usym1F5B9.tikz + RELOC/tex/latex/utfsym/usym1F5BA.tikz + RELOC/tex/latex/utfsym/usym1F5BB.tikz + RELOC/tex/latex/utfsym/usym1F5BC.tikz + RELOC/tex/latex/utfsym/usym1F5BD.tikz + RELOC/tex/latex/utfsym/usym1F5BE.tikz + RELOC/tex/latex/utfsym/usym1F5BF.tikz + RELOC/tex/latex/utfsym/usym1F5C0.tikz + RELOC/tex/latex/utfsym/usym1F5C1.tikz + RELOC/tex/latex/utfsym/usym1F5C2.tikz + RELOC/tex/latex/utfsym/usym1F5C3.tikz + RELOC/tex/latex/utfsym/usym1F5C4.tikz + RELOC/tex/latex/utfsym/usym1F5C5.tikz + RELOC/tex/latex/utfsym/usym1F5C6.tikz + RELOC/tex/latex/utfsym/usym1F5C7.tikz + RELOC/tex/latex/utfsym/usym1F5C8.tikz + RELOC/tex/latex/utfsym/usym1F5C9.tikz + RELOC/tex/latex/utfsym/usym1F5CA.tikz + RELOC/tex/latex/utfsym/usym1F5CB.tikz + RELOC/tex/latex/utfsym/usym1F5CC.tikz + RELOC/tex/latex/utfsym/usym1F5CD.tikz + RELOC/tex/latex/utfsym/usym1F5CE.tikz + RELOC/tex/latex/utfsym/usym1F5CF.tikz + RELOC/tex/latex/utfsym/usym1F5D0.tikz + RELOC/tex/latex/utfsym/usym1F5D1.tikz + RELOC/tex/latex/utfsym/usym1F5D2.tikz + RELOC/tex/latex/utfsym/usym1F5D3.tikz + RELOC/tex/latex/utfsym/usym1F5D4.tikz + RELOC/tex/latex/utfsym/usym1F5D5.tikz + RELOC/tex/latex/utfsym/usym1F5D6.tikz + RELOC/tex/latex/utfsym/usym1F5D7.tikz + RELOC/tex/latex/utfsym/usym1F5D8.tikz + RELOC/tex/latex/utfsym/usym1F5D9.tikz + RELOC/tex/latex/utfsym/usym1F5DA.tikz + RELOC/tex/latex/utfsym/usym1F5DB.tikz + RELOC/tex/latex/utfsym/usym1F5DC.tikz + RELOC/tex/latex/utfsym/usym1F5DD.tikz + RELOC/tex/latex/utfsym/usym1F5DE.tikz + RELOC/tex/latex/utfsym/usym1F5DF.tikz + RELOC/tex/latex/utfsym/usym1F5E0.tikz + RELOC/tex/latex/utfsym/usym1F5E1.tikz + RELOC/tex/latex/utfsym/usym1F5E2.tikz + RELOC/tex/latex/utfsym/usym1F5E3.tikz + RELOC/tex/latex/utfsym/usym1F5E4.tikz + RELOC/tex/latex/utfsym/usym1F5E5.tikz + RELOC/tex/latex/utfsym/usym1F5E6.tikz + RELOC/tex/latex/utfsym/usym1F5E7.tikz + RELOC/tex/latex/utfsym/usym1F5E8.tikz + RELOC/tex/latex/utfsym/usym1F5E9.tikz + RELOC/tex/latex/utfsym/usym1F5EA.tikz + RELOC/tex/latex/utfsym/usym1F5EB.tikz + RELOC/tex/latex/utfsym/usym1F5EC.tikz + RELOC/tex/latex/utfsym/usym1F5ED.tikz + RELOC/tex/latex/utfsym/usym1F5EE.tikz + RELOC/tex/latex/utfsym/usym1F5EF.tikz + RELOC/tex/latex/utfsym/usym1F5F0.tikz + RELOC/tex/latex/utfsym/usym1F5F1.tikz + RELOC/tex/latex/utfsym/usym1F5F2.tikz + RELOC/tex/latex/utfsym/usym1F5F3.tikz + RELOC/tex/latex/utfsym/usym1F5F4.tikz + RELOC/tex/latex/utfsym/usym1F5F5.tikz + RELOC/tex/latex/utfsym/usym1F5F6.tikz + RELOC/tex/latex/utfsym/usym1F5F7.tikz + RELOC/tex/latex/utfsym/usym1F5F8.tikz + RELOC/tex/latex/utfsym/usym1F5F9.tikz + RELOC/tex/latex/utfsym/usym1F5FA.tikz + RELOC/tex/latex/utfsym/usym1F5FB.tikz + RELOC/tex/latex/utfsym/usym1F5FC.tikz + RELOC/tex/latex/utfsym/usym1F5FD.tikz + RELOC/tex/latex/utfsym/usym1F5FE.tikz + RELOC/tex/latex/utfsym/usym1F5FF.tikz + RELOC/tex/latex/utfsym/usym1F600.tikz + RELOC/tex/latex/utfsym/usym1F601.tikz + RELOC/tex/latex/utfsym/usym1F602.tikz + RELOC/tex/latex/utfsym/usym1F603.tikz + RELOC/tex/latex/utfsym/usym1F604.tikz + RELOC/tex/latex/utfsym/usym1F605.tikz + RELOC/tex/latex/utfsym/usym1F606.tikz + RELOC/tex/latex/utfsym/usym1F607.tikz + RELOC/tex/latex/utfsym/usym1F608.tikz + RELOC/tex/latex/utfsym/usym1F609.tikz + RELOC/tex/latex/utfsym/usym1F60A.tikz + RELOC/tex/latex/utfsym/usym1F60B.tikz + RELOC/tex/latex/utfsym/usym1F60C.tikz + RELOC/tex/latex/utfsym/usym1F60D.tikz + RELOC/tex/latex/utfsym/usym1F60E.tikz + RELOC/tex/latex/utfsym/usym1F60F.tikz + RELOC/tex/latex/utfsym/usym1F610.tikz + RELOC/tex/latex/utfsym/usym1F611.tikz + RELOC/tex/latex/utfsym/usym1F612.tikz + RELOC/tex/latex/utfsym/usym1F613.tikz + RELOC/tex/latex/utfsym/usym1F614.tikz + RELOC/tex/latex/utfsym/usym1F615.tikz + RELOC/tex/latex/utfsym/usym1F616.tikz + RELOC/tex/latex/utfsym/usym1F617.tikz + RELOC/tex/latex/utfsym/usym1F618.tikz + RELOC/tex/latex/utfsym/usym1F619.tikz + RELOC/tex/latex/utfsym/usym1F61A.tikz + RELOC/tex/latex/utfsym/usym1F61B.tikz + RELOC/tex/latex/utfsym/usym1F61C.tikz + RELOC/tex/latex/utfsym/usym1F61D.tikz + RELOC/tex/latex/utfsym/usym1F61E.tikz + RELOC/tex/latex/utfsym/usym1F61F.tikz + RELOC/tex/latex/utfsym/usym1F620.tikz + RELOC/tex/latex/utfsym/usym1F621.tikz + RELOC/tex/latex/utfsym/usym1F622.tikz + RELOC/tex/latex/utfsym/usym1F623.tikz + RELOC/tex/latex/utfsym/usym1F624.tikz + RELOC/tex/latex/utfsym/usym1F625.tikz + RELOC/tex/latex/utfsym/usym1F626.tikz + RELOC/tex/latex/utfsym/usym1F627.tikz + RELOC/tex/latex/utfsym/usym1F628.tikz + RELOC/tex/latex/utfsym/usym1F629.tikz + RELOC/tex/latex/utfsym/usym1F62A.tikz + RELOC/tex/latex/utfsym/usym1F62B.tikz + RELOC/tex/latex/utfsym/usym1F62C.tikz + RELOC/tex/latex/utfsym/usym1F62D.tikz + RELOC/tex/latex/utfsym/usym1F62E.tikz + RELOC/tex/latex/utfsym/usym1F62F.tikz + RELOC/tex/latex/utfsym/usym1F630.tikz + RELOC/tex/latex/utfsym/usym1F631.tikz + RELOC/tex/latex/utfsym/usym1F632.tikz + RELOC/tex/latex/utfsym/usym1F633.tikz + RELOC/tex/latex/utfsym/usym1F634.tikz + RELOC/tex/latex/utfsym/usym1F635.tikz + RELOC/tex/latex/utfsym/usym1F636.tikz + RELOC/tex/latex/utfsym/usym1F637.tikz + RELOC/tex/latex/utfsym/usym1F638.tikz + RELOC/tex/latex/utfsym/usym1F639.tikz + RELOC/tex/latex/utfsym/usym1F63A.tikz + RELOC/tex/latex/utfsym/usym1F63B.tikz + RELOC/tex/latex/utfsym/usym1F63C.tikz + RELOC/tex/latex/utfsym/usym1F63D.tikz + RELOC/tex/latex/utfsym/usym1F63E.tikz + RELOC/tex/latex/utfsym/usym1F63F.tikz + RELOC/tex/latex/utfsym/usym1F640.tikz + RELOC/tex/latex/utfsym/usym1F641.tikz + RELOC/tex/latex/utfsym/usym1F642.tikz + RELOC/tex/latex/utfsym/usym1F643.tikz + RELOC/tex/latex/utfsym/usym1F644.tikz + RELOC/tex/latex/utfsym/usym1F645.tikz + RELOC/tex/latex/utfsym/usym1F646.tikz + RELOC/tex/latex/utfsym/usym1F647.tikz + RELOC/tex/latex/utfsym/usym1F648.tikz + RELOC/tex/latex/utfsym/usym1F649.tikz + RELOC/tex/latex/utfsym/usym1F64A.tikz + RELOC/tex/latex/utfsym/usym1F64B.tikz + RELOC/tex/latex/utfsym/usym1F64C.tikz + RELOC/tex/latex/utfsym/usym1F64D.tikz + RELOC/tex/latex/utfsym/usym1F64E.tikz + RELOC/tex/latex/utfsym/usym1F64F.tikz + RELOC/tex/latex/utfsym/usym1F680.tikz + RELOC/tex/latex/utfsym/usym1F681.tikz + RELOC/tex/latex/utfsym/usym1F682.tikz + RELOC/tex/latex/utfsym/usym1F683.tikz + RELOC/tex/latex/utfsym/usym1F684.tikz + RELOC/tex/latex/utfsym/usym1F685.tikz + RELOC/tex/latex/utfsym/usym1F686.tikz + RELOC/tex/latex/utfsym/usym1F687.tikz + RELOC/tex/latex/utfsym/usym1F688.tikz + RELOC/tex/latex/utfsym/usym1F689.tikz + RELOC/tex/latex/utfsym/usym1F68A.tikz + RELOC/tex/latex/utfsym/usym1F68B.tikz + RELOC/tex/latex/utfsym/usym1F68C.tikz + RELOC/tex/latex/utfsym/usym1F68D.tikz + RELOC/tex/latex/utfsym/usym1F68E.tikz + RELOC/tex/latex/utfsym/usym1F68F.tikz + RELOC/tex/latex/utfsym/usym1F690.tikz + RELOC/tex/latex/utfsym/usym1F691.tikz + RELOC/tex/latex/utfsym/usym1F692.tikz + RELOC/tex/latex/utfsym/usym1F693.tikz + RELOC/tex/latex/utfsym/usym1F694.tikz + RELOC/tex/latex/utfsym/usym1F695.tikz + RELOC/tex/latex/utfsym/usym1F696.tikz + RELOC/tex/latex/utfsym/usym1F697.tikz + RELOC/tex/latex/utfsym/usym1F698.tikz + RELOC/tex/latex/utfsym/usym1F699.tikz + RELOC/tex/latex/utfsym/usym1F69A.tikz + RELOC/tex/latex/utfsym/usym1F69B.tikz + RELOC/tex/latex/utfsym/usym1F69C.tikz + RELOC/tex/latex/utfsym/usym1F69D.tikz + RELOC/tex/latex/utfsym/usym1F69E.tikz + RELOC/tex/latex/utfsym/usym1F69F.tikz + RELOC/tex/latex/utfsym/usym1F6A0.tikz + RELOC/tex/latex/utfsym/usym1F6A1.tikz + RELOC/tex/latex/utfsym/usym1F6A2.tikz + RELOC/tex/latex/utfsym/usym1F6A3.tikz + RELOC/tex/latex/utfsym/usym1F6A4.tikz + RELOC/tex/latex/utfsym/usym1F6A5.tikz + RELOC/tex/latex/utfsym/usym1F6A6.tikz + RELOC/tex/latex/utfsym/usym1F6A7.tikz + RELOC/tex/latex/utfsym/usym1F6A8.tikz + RELOC/tex/latex/utfsym/usym1F6A9.tikz + RELOC/tex/latex/utfsym/usym1F6AA.tikz + RELOC/tex/latex/utfsym/usym1F6AB.tikz + RELOC/tex/latex/utfsym/usym1F6AC.tikz + RELOC/tex/latex/utfsym/usym1F6AD.tikz + RELOC/tex/latex/utfsym/usym1F6AE.tikz + RELOC/tex/latex/utfsym/usym1F6AF.tikz + RELOC/tex/latex/utfsym/usym1F6B0.tikz + RELOC/tex/latex/utfsym/usym1F6B1.tikz + RELOC/tex/latex/utfsym/usym1F6B2.tikz + RELOC/tex/latex/utfsym/usym1F6B3.tikz + RELOC/tex/latex/utfsym/usym1F6B4.tikz + RELOC/tex/latex/utfsym/usym1F6B5.tikz + RELOC/tex/latex/utfsym/usym1F6B6.tikz + RELOC/tex/latex/utfsym/usym1F6B7.tikz + RELOC/tex/latex/utfsym/usym1F6B8.tikz + RELOC/tex/latex/utfsym/usym1F6B9.tikz + RELOC/tex/latex/utfsym/usym1F6BA.tikz + RELOC/tex/latex/utfsym/usym1F6BB.tikz + RELOC/tex/latex/utfsym/usym1F6BC.tikz + RELOC/tex/latex/utfsym/usym1F6BD.tikz + RELOC/tex/latex/utfsym/usym1F6BE.tikz + RELOC/tex/latex/utfsym/usym1F6BF.tikz + RELOC/tex/latex/utfsym/usym1F6C0.tikz + RELOC/tex/latex/utfsym/usym1F6C1.tikz + RELOC/tex/latex/utfsym/usym1F6C2.tikz + RELOC/tex/latex/utfsym/usym1F6C3.tikz + RELOC/tex/latex/utfsym/usym1F6C4.tikz + RELOC/tex/latex/utfsym/usym1F6C5.tikz + RELOC/tex/latex/utfsym/usym1F6C6.tikz + RELOC/tex/latex/utfsym/usym1F6C7.tikz + RELOC/tex/latex/utfsym/usym1F6C8.tikz + RELOC/tex/latex/utfsym/usym1F6C9.tikz + RELOC/tex/latex/utfsym/usym1F6CA.tikz + RELOC/tex/latex/utfsym/usym1F6CB.tikz + RELOC/tex/latex/utfsym/usym1F6CC.tikz + RELOC/tex/latex/utfsym/usym1F6CD.tikz + RELOC/tex/latex/utfsym/usym1F6CE.tikz + RELOC/tex/latex/utfsym/usym1F6CF.tikz + RELOC/tex/latex/utfsym/usym1F6D0.tikz + RELOC/tex/latex/utfsym/usym1F6D1.tikz + RELOC/tex/latex/utfsym/usym1F6D2.tikz + RELOC/tex/latex/utfsym/usym1F6D3.tikz + RELOC/tex/latex/utfsym/usym1F6D4.tikz + RELOC/tex/latex/utfsym/usym1F6D5.tikz + RELOC/tex/latex/utfsym/usym1F6D6.tikz + RELOC/tex/latex/utfsym/usym1F6D7.tikz + RELOC/tex/latex/utfsym/usym1F6D8.tikz + RELOC/tex/latex/utfsym/usym1F6D9.tikz + RELOC/tex/latex/utfsym/usym1F6DA.tikz + RELOC/tex/latex/utfsym/usym1F6DB.tikz + RELOC/tex/latex/utfsym/usym1F6DC.tikz + RELOC/tex/latex/utfsym/usym1F6DD.tikz + RELOC/tex/latex/utfsym/usym1F6DE.tikz + RELOC/tex/latex/utfsym/usym1F6DF.tikz + RELOC/tex/latex/utfsym/usym1F6E0.tikz + RELOC/tex/latex/utfsym/usym1F6E1.tikz + RELOC/tex/latex/utfsym/usym1F6E2.tikz + RELOC/tex/latex/utfsym/usym1F6E3.tikz + RELOC/tex/latex/utfsym/usym1F6E4.tikz + RELOC/tex/latex/utfsym/usym1F6E5.tikz + RELOC/tex/latex/utfsym/usym1F6E6.tikz + RELOC/tex/latex/utfsym/usym1F6E7.tikz + RELOC/tex/latex/utfsym/usym1F6E8.tikz + RELOC/tex/latex/utfsym/usym1F6E9.tikz + RELOC/tex/latex/utfsym/usym1F6EA.tikz + RELOC/tex/latex/utfsym/usym1F6EB.tikz + RELOC/tex/latex/utfsym/usym1F6EC.tikz + RELOC/tex/latex/utfsym/usym1F6ED.tikz + RELOC/tex/latex/utfsym/usym1F6EE.tikz + RELOC/tex/latex/utfsym/usym1F6EF.tikz + RELOC/tex/latex/utfsym/usym1F6F0.tikz + RELOC/tex/latex/utfsym/usym1F6F1.tikz + RELOC/tex/latex/utfsym/usym1F6F2.tikz + RELOC/tex/latex/utfsym/usym1F6F3.tikz + RELOC/tex/latex/utfsym/usym1F6F4.tikz + RELOC/tex/latex/utfsym/usym1F6F5.tikz + RELOC/tex/latex/utfsym/usym1F6F6.tikz + RELOC/tex/latex/utfsym/usym1F6F7.tikz + RELOC/tex/latex/utfsym/usym1F6F8.tikz + RELOC/tex/latex/utfsym/usym1F6F9.tikz + RELOC/tex/latex/utfsym/usym1F6FA.tikz + RELOC/tex/latex/utfsym/usym1F6FB.tikz + RELOC/tex/latex/utfsym/usym1F6FC.tikz + RELOC/tex/latex/utfsym/usym1F6FD.tikz + RELOC/tex/latex/utfsym/usym1F6FE.tikz + RELOC/tex/latex/utfsym/usym1F6FF.tikz + RELOC/tex/latex/utfsym/usym2600.tikz + RELOC/tex/latex/utfsym/usym2601.tikz + RELOC/tex/latex/utfsym/usym2602.tikz + RELOC/tex/latex/utfsym/usym2603.tikz + RELOC/tex/latex/utfsym/usym2604.tikz + RELOC/tex/latex/utfsym/usym2605.tikz + RELOC/tex/latex/utfsym/usym2606.tikz + RELOC/tex/latex/utfsym/usym2607.tikz + RELOC/tex/latex/utfsym/usym2608.tikz + RELOC/tex/latex/utfsym/usym2609.tikz + RELOC/tex/latex/utfsym/usym260A.tikz + RELOC/tex/latex/utfsym/usym260B.tikz + RELOC/tex/latex/utfsym/usym260C.tikz + RELOC/tex/latex/utfsym/usym260D.tikz + RELOC/tex/latex/utfsym/usym260E.tikz + RELOC/tex/latex/utfsym/usym260F.tikz + RELOC/tex/latex/utfsym/usym2610.tikz + RELOC/tex/latex/utfsym/usym2611.tikz + RELOC/tex/latex/utfsym/usym2612.tikz + RELOC/tex/latex/utfsym/usym2613.tikz + RELOC/tex/latex/utfsym/usym2614.tikz + RELOC/tex/latex/utfsym/usym2615.tikz + RELOC/tex/latex/utfsym/usym2616.tikz + RELOC/tex/latex/utfsym/usym2617.tikz + RELOC/tex/latex/utfsym/usym2618.tikz + RELOC/tex/latex/utfsym/usym2619.tikz + RELOC/tex/latex/utfsym/usym261A.tikz + RELOC/tex/latex/utfsym/usym261B.tikz + RELOC/tex/latex/utfsym/usym261C.tikz + RELOC/tex/latex/utfsym/usym261D.tikz + RELOC/tex/latex/utfsym/usym261E.tikz + RELOC/tex/latex/utfsym/usym261F.tikz + RELOC/tex/latex/utfsym/usym2620.tikz + RELOC/tex/latex/utfsym/usym2621.tikz + RELOC/tex/latex/utfsym/usym2622.tikz + RELOC/tex/latex/utfsym/usym2623.tikz + RELOC/tex/latex/utfsym/usym2624.tikz + RELOC/tex/latex/utfsym/usym2625.tikz + RELOC/tex/latex/utfsym/usym2626.tikz + RELOC/tex/latex/utfsym/usym2627.tikz + RELOC/tex/latex/utfsym/usym2628.tikz + RELOC/tex/latex/utfsym/usym2629.tikz + RELOC/tex/latex/utfsym/usym262A.tikz + RELOC/tex/latex/utfsym/usym262B.tikz + RELOC/tex/latex/utfsym/usym262C.tikz + RELOC/tex/latex/utfsym/usym262D.tikz + RELOC/tex/latex/utfsym/usym262E.tikz + RELOC/tex/latex/utfsym/usym262F.tikz + RELOC/tex/latex/utfsym/usym2630.tikz + RELOC/tex/latex/utfsym/usym2631.tikz + RELOC/tex/latex/utfsym/usym2632.tikz + RELOC/tex/latex/utfsym/usym2633.tikz + RELOC/tex/latex/utfsym/usym2634.tikz + RELOC/tex/latex/utfsym/usym2635.tikz + RELOC/tex/latex/utfsym/usym2636.tikz + RELOC/tex/latex/utfsym/usym2637.tikz + RELOC/tex/latex/utfsym/usym2638.tikz + RELOC/tex/latex/utfsym/usym2639.tikz + RELOC/tex/latex/utfsym/usym263A.tikz + RELOC/tex/latex/utfsym/usym263B.tikz + RELOC/tex/latex/utfsym/usym263C.tikz + RELOC/tex/latex/utfsym/usym263D.tikz + RELOC/tex/latex/utfsym/usym263E.tikz + RELOC/tex/latex/utfsym/usym263F.tikz + RELOC/tex/latex/utfsym/usym2640.tikz + RELOC/tex/latex/utfsym/usym2641.tikz + RELOC/tex/latex/utfsym/usym2642.tikz + RELOC/tex/latex/utfsym/usym2643.tikz + RELOC/tex/latex/utfsym/usym2644.tikz + RELOC/tex/latex/utfsym/usym2645.tikz + RELOC/tex/latex/utfsym/usym2646.tikz + RELOC/tex/latex/utfsym/usym2647.tikz + RELOC/tex/latex/utfsym/usym2648.tikz + RELOC/tex/latex/utfsym/usym2649.tikz + RELOC/tex/latex/utfsym/usym264A.tikz + RELOC/tex/latex/utfsym/usym264B.tikz + RELOC/tex/latex/utfsym/usym264C.tikz + RELOC/tex/latex/utfsym/usym264D.tikz + RELOC/tex/latex/utfsym/usym264E.tikz + RELOC/tex/latex/utfsym/usym264F.tikz + RELOC/tex/latex/utfsym/usym2650.tikz + RELOC/tex/latex/utfsym/usym2651.tikz + RELOC/tex/latex/utfsym/usym2652.tikz + RELOC/tex/latex/utfsym/usym2653.tikz + RELOC/tex/latex/utfsym/usym2654.tikz + RELOC/tex/latex/utfsym/usym2655.tikz + RELOC/tex/latex/utfsym/usym2656.tikz + RELOC/tex/latex/utfsym/usym2657.tikz + RELOC/tex/latex/utfsym/usym2658.tikz + RELOC/tex/latex/utfsym/usym2659.tikz + RELOC/tex/latex/utfsym/usym265A.tikz + RELOC/tex/latex/utfsym/usym265B.tikz + RELOC/tex/latex/utfsym/usym265C.tikz + RELOC/tex/latex/utfsym/usym265D.tikz + RELOC/tex/latex/utfsym/usym265E.tikz + RELOC/tex/latex/utfsym/usym265F.tikz + RELOC/tex/latex/utfsym/usym2660.tikz + RELOC/tex/latex/utfsym/usym2661.tikz + RELOC/tex/latex/utfsym/usym2662.tikz + RELOC/tex/latex/utfsym/usym2663.tikz + RELOC/tex/latex/utfsym/usym2664.tikz + RELOC/tex/latex/utfsym/usym2665.tikz + RELOC/tex/latex/utfsym/usym2666.tikz + RELOC/tex/latex/utfsym/usym2667.tikz + RELOC/tex/latex/utfsym/usym2668.tikz + RELOC/tex/latex/utfsym/usym2669.tikz + RELOC/tex/latex/utfsym/usym266A.tikz + RELOC/tex/latex/utfsym/usym266B.tikz + RELOC/tex/latex/utfsym/usym266C.tikz + RELOC/tex/latex/utfsym/usym266D.tikz + RELOC/tex/latex/utfsym/usym266E.tikz + RELOC/tex/latex/utfsym/usym266F.tikz + RELOC/tex/latex/utfsym/usym2670.tikz + RELOC/tex/latex/utfsym/usym2671.tikz + RELOC/tex/latex/utfsym/usym2672.tikz + RELOC/tex/latex/utfsym/usym2673.tikz + RELOC/tex/latex/utfsym/usym2674.tikz + RELOC/tex/latex/utfsym/usym2675.tikz + RELOC/tex/latex/utfsym/usym2676.tikz + RELOC/tex/latex/utfsym/usym2677.tikz + RELOC/tex/latex/utfsym/usym2678.tikz + RELOC/tex/latex/utfsym/usym2679.tikz + RELOC/tex/latex/utfsym/usym267A.tikz + RELOC/tex/latex/utfsym/usym267B.tikz + RELOC/tex/latex/utfsym/usym267C.tikz + RELOC/tex/latex/utfsym/usym267D.tikz + RELOC/tex/latex/utfsym/usym267E.tikz + RELOC/tex/latex/utfsym/usym267F.tikz + RELOC/tex/latex/utfsym/usym2680.tikz + RELOC/tex/latex/utfsym/usym2681.tikz + RELOC/tex/latex/utfsym/usym2682.tikz + RELOC/tex/latex/utfsym/usym2683.tikz + RELOC/tex/latex/utfsym/usym2684.tikz + RELOC/tex/latex/utfsym/usym2685.tikz + RELOC/tex/latex/utfsym/usym2686.tikz + RELOC/tex/latex/utfsym/usym2687.tikz + RELOC/tex/latex/utfsym/usym2688.tikz + RELOC/tex/latex/utfsym/usym2689.tikz + RELOC/tex/latex/utfsym/usym268A.tikz + RELOC/tex/latex/utfsym/usym268B.tikz + RELOC/tex/latex/utfsym/usym268C.tikz + RELOC/tex/latex/utfsym/usym268D.tikz + RELOC/tex/latex/utfsym/usym268E.tikz + RELOC/tex/latex/utfsym/usym268F.tikz + RELOC/tex/latex/utfsym/usym2690.tikz + RELOC/tex/latex/utfsym/usym2691.tikz + RELOC/tex/latex/utfsym/usym2692.tikz + RELOC/tex/latex/utfsym/usym2693.tikz + RELOC/tex/latex/utfsym/usym2694.tikz + RELOC/tex/latex/utfsym/usym2695.tikz + RELOC/tex/latex/utfsym/usym2696.tikz + RELOC/tex/latex/utfsym/usym2697.tikz + RELOC/tex/latex/utfsym/usym2698.tikz + RELOC/tex/latex/utfsym/usym2699.tikz + RELOC/tex/latex/utfsym/usym269A.tikz + RELOC/tex/latex/utfsym/usym269B.tikz + RELOC/tex/latex/utfsym/usym269C.tikz + RELOC/tex/latex/utfsym/usym269D.tikz + RELOC/tex/latex/utfsym/usym269E.tikz + RELOC/tex/latex/utfsym/usym269F.tikz + RELOC/tex/latex/utfsym/usym26A0.tikz + RELOC/tex/latex/utfsym/usym26A1.tikz + RELOC/tex/latex/utfsym/usym26A2.tikz + RELOC/tex/latex/utfsym/usym26A3.tikz + RELOC/tex/latex/utfsym/usym26A4.tikz + RELOC/tex/latex/utfsym/usym26A5.tikz + RELOC/tex/latex/utfsym/usym26A6.tikz + RELOC/tex/latex/utfsym/usym26A7.tikz + RELOC/tex/latex/utfsym/usym26A8.tikz + RELOC/tex/latex/utfsym/usym26A9.tikz + RELOC/tex/latex/utfsym/usym26AA.tikz + RELOC/tex/latex/utfsym/usym26AB.tikz + RELOC/tex/latex/utfsym/usym26AC.tikz + RELOC/tex/latex/utfsym/usym26AD.tikz + RELOC/tex/latex/utfsym/usym26AE.tikz + RELOC/tex/latex/utfsym/usym26AF.tikz + RELOC/tex/latex/utfsym/usym26B0.tikz + RELOC/tex/latex/utfsym/usym26B1.tikz + RELOC/tex/latex/utfsym/usym26B2.tikz + RELOC/tex/latex/utfsym/usym26B3.tikz + RELOC/tex/latex/utfsym/usym26B4.tikz + RELOC/tex/latex/utfsym/usym26B5.tikz + RELOC/tex/latex/utfsym/usym26B6.tikz + RELOC/tex/latex/utfsym/usym26B7.tikz + RELOC/tex/latex/utfsym/usym26B8.tikz + RELOC/tex/latex/utfsym/usym26B9.tikz + RELOC/tex/latex/utfsym/usym26BA.tikz + RELOC/tex/latex/utfsym/usym26BB.tikz + RELOC/tex/latex/utfsym/usym26BC.tikz + RELOC/tex/latex/utfsym/usym26BD.tikz + RELOC/tex/latex/utfsym/usym26BE.tikz + RELOC/tex/latex/utfsym/usym26BF.tikz + RELOC/tex/latex/utfsym/usym26C0.tikz + RELOC/tex/latex/utfsym/usym26C1.tikz + RELOC/tex/latex/utfsym/usym26C2.tikz + RELOC/tex/latex/utfsym/usym26C3.tikz + RELOC/tex/latex/utfsym/usym26C4.tikz + RELOC/tex/latex/utfsym/usym26C5.tikz + RELOC/tex/latex/utfsym/usym26C6.tikz + RELOC/tex/latex/utfsym/usym26C7.tikz + RELOC/tex/latex/utfsym/usym26C8.tikz + RELOC/tex/latex/utfsym/usym26C9.tikz + RELOC/tex/latex/utfsym/usym26CA.tikz + RELOC/tex/latex/utfsym/usym26CB.tikz + RELOC/tex/latex/utfsym/usym26CC.tikz + RELOC/tex/latex/utfsym/usym26CD.tikz + RELOC/tex/latex/utfsym/usym26CE.tikz + RELOC/tex/latex/utfsym/usym26CF.tikz + RELOC/tex/latex/utfsym/usym26D0.tikz + RELOC/tex/latex/utfsym/usym26D1.tikz + RELOC/tex/latex/utfsym/usym26D2.tikz + RELOC/tex/latex/utfsym/usym26D3.tikz + RELOC/tex/latex/utfsym/usym26D4.tikz + RELOC/tex/latex/utfsym/usym26D5.tikz + RELOC/tex/latex/utfsym/usym26D6.tikz + RELOC/tex/latex/utfsym/usym26D7.tikz + RELOC/tex/latex/utfsym/usym26D8.tikz + RELOC/tex/latex/utfsym/usym26D9.tikz + RELOC/tex/latex/utfsym/usym26DA.tikz + RELOC/tex/latex/utfsym/usym26DB.tikz + RELOC/tex/latex/utfsym/usym26DC.tikz + RELOC/tex/latex/utfsym/usym26DD.tikz + RELOC/tex/latex/utfsym/usym26DE.tikz + RELOC/tex/latex/utfsym/usym26DF.tikz + RELOC/tex/latex/utfsym/usym26E0.tikz + RELOC/tex/latex/utfsym/usym26E1.tikz + RELOC/tex/latex/utfsym/usym26E2.tikz + RELOC/tex/latex/utfsym/usym26E3.tikz + RELOC/tex/latex/utfsym/usym26E4.tikz + RELOC/tex/latex/utfsym/usym26E5.tikz + RELOC/tex/latex/utfsym/usym26E6.tikz + RELOC/tex/latex/utfsym/usym26E7.tikz + RELOC/tex/latex/utfsym/usym26E8.tikz + RELOC/tex/latex/utfsym/usym26E9.tikz + RELOC/tex/latex/utfsym/usym26EA.tikz + RELOC/tex/latex/utfsym/usym26EB.tikz + RELOC/tex/latex/utfsym/usym26EC.tikz + RELOC/tex/latex/utfsym/usym26ED.tikz + RELOC/tex/latex/utfsym/usym26EE.tikz + RELOC/tex/latex/utfsym/usym26EF.tikz + RELOC/tex/latex/utfsym/usym26F0.tikz + RELOC/tex/latex/utfsym/usym26F1.tikz + RELOC/tex/latex/utfsym/usym26F2.tikz + RELOC/tex/latex/utfsym/usym26F3.tikz + RELOC/tex/latex/utfsym/usym26F4.tikz + RELOC/tex/latex/utfsym/usym26F5.tikz + RELOC/tex/latex/utfsym/usym26F6.tikz + RELOC/tex/latex/utfsym/usym26F7.tikz + RELOC/tex/latex/utfsym/usym26F8.tikz + RELOC/tex/latex/utfsym/usym26F9.tikz + RELOC/tex/latex/utfsym/usym26FA.tikz + RELOC/tex/latex/utfsym/usym26FB.tikz + RELOC/tex/latex/utfsym/usym26FC.tikz + RELOC/tex/latex/utfsym/usym26FD.tikz + RELOC/tex/latex/utfsym/usym26FE.tikz + RELOC/tex/latex/utfsym/usym26FF.tikz + RELOC/tex/latex/utfsym/usym2700.tikz + RELOC/tex/latex/utfsym/usym2701.tikz + RELOC/tex/latex/utfsym/usym2702.tikz + RELOC/tex/latex/utfsym/usym2703.tikz + RELOC/tex/latex/utfsym/usym2704.tikz + RELOC/tex/latex/utfsym/usym2705.tikz + RELOC/tex/latex/utfsym/usym2706.tikz + RELOC/tex/latex/utfsym/usym2707.tikz + RELOC/tex/latex/utfsym/usym2708.tikz + RELOC/tex/latex/utfsym/usym2709.tikz + RELOC/tex/latex/utfsym/usym270A.tikz + RELOC/tex/latex/utfsym/usym270B.tikz + RELOC/tex/latex/utfsym/usym270C.tikz + RELOC/tex/latex/utfsym/usym270D.tikz + RELOC/tex/latex/utfsym/usym270E.tikz + RELOC/tex/latex/utfsym/usym270F.tikz + RELOC/tex/latex/utfsym/usym2710.tikz + RELOC/tex/latex/utfsym/usym2711.tikz + RELOC/tex/latex/utfsym/usym2712.tikz + RELOC/tex/latex/utfsym/usym2713.tikz + RELOC/tex/latex/utfsym/usym2714.tikz + RELOC/tex/latex/utfsym/usym2715.tikz + RELOC/tex/latex/utfsym/usym2716.tikz + RELOC/tex/latex/utfsym/usym2717.tikz + RELOC/tex/latex/utfsym/usym2718.tikz + RELOC/tex/latex/utfsym/usym2719.tikz + RELOC/tex/latex/utfsym/usym271A.tikz + RELOC/tex/latex/utfsym/usym271B.tikz + RELOC/tex/latex/utfsym/usym271C.tikz + RELOC/tex/latex/utfsym/usym271D.tikz + RELOC/tex/latex/utfsym/usym271E.tikz + RELOC/tex/latex/utfsym/usym271F.tikz + RELOC/tex/latex/utfsym/usym2720.tikz + RELOC/tex/latex/utfsym/usym2721.tikz + RELOC/tex/latex/utfsym/usym2722.tikz + RELOC/tex/latex/utfsym/usym2723.tikz + RELOC/tex/latex/utfsym/usym2724.tikz + RELOC/tex/latex/utfsym/usym2725.tikz + RELOC/tex/latex/utfsym/usym2726.tikz + RELOC/tex/latex/utfsym/usym2727.tikz + RELOC/tex/latex/utfsym/usym2728.tikz + RELOC/tex/latex/utfsym/usym2729.tikz + RELOC/tex/latex/utfsym/usym272A.tikz + RELOC/tex/latex/utfsym/usym272B.tikz + RELOC/tex/latex/utfsym/usym272C.tikz + RELOC/tex/latex/utfsym/usym272D.tikz + RELOC/tex/latex/utfsym/usym272E.tikz + RELOC/tex/latex/utfsym/usym272F.tikz + RELOC/tex/latex/utfsym/usym2730.tikz + RELOC/tex/latex/utfsym/usym2731.tikz + RELOC/tex/latex/utfsym/usym2732.tikz + RELOC/tex/latex/utfsym/usym2733.tikz + RELOC/tex/latex/utfsym/usym2734.tikz + RELOC/tex/latex/utfsym/usym2735.tikz + RELOC/tex/latex/utfsym/usym2736.tikz + RELOC/tex/latex/utfsym/usym2737.tikz + RELOC/tex/latex/utfsym/usym2738.tikz + RELOC/tex/latex/utfsym/usym2739.tikz + RELOC/tex/latex/utfsym/usym273A.tikz + RELOC/tex/latex/utfsym/usym273B.tikz + RELOC/tex/latex/utfsym/usym273C.tikz + RELOC/tex/latex/utfsym/usym273D.tikz + RELOC/tex/latex/utfsym/usym273E.tikz + RELOC/tex/latex/utfsym/usym273F.tikz + RELOC/tex/latex/utfsym/usym2740.tikz + RELOC/tex/latex/utfsym/usym2741.tikz + RELOC/tex/latex/utfsym/usym2742.tikz + RELOC/tex/latex/utfsym/usym2743.tikz + RELOC/tex/latex/utfsym/usym2744.tikz + RELOC/tex/latex/utfsym/usym2745.tikz + RELOC/tex/latex/utfsym/usym2746.tikz + RELOC/tex/latex/utfsym/usym2747.tikz + RELOC/tex/latex/utfsym/usym2748.tikz + RELOC/tex/latex/utfsym/usym2749.tikz + RELOC/tex/latex/utfsym/usym274A.tikz + RELOC/tex/latex/utfsym/usym274B.tikz + RELOC/tex/latex/utfsym/usym274C.tikz + RELOC/tex/latex/utfsym/usym274D.tikz + RELOC/tex/latex/utfsym/usym274E.tikz + RELOC/tex/latex/utfsym/usym274F.tikz + RELOC/tex/latex/utfsym/usym2750.tikz + RELOC/tex/latex/utfsym/usym2751.tikz + RELOC/tex/latex/utfsym/usym2752.tikz + RELOC/tex/latex/utfsym/usym2753.tikz + RELOC/tex/latex/utfsym/usym2754.tikz + RELOC/tex/latex/utfsym/usym2755.tikz + RELOC/tex/latex/utfsym/usym2756.tikz + RELOC/tex/latex/utfsym/usym2757.tikz + RELOC/tex/latex/utfsym/usym2758.tikz + RELOC/tex/latex/utfsym/usym2759.tikz + RELOC/tex/latex/utfsym/usym275A.tikz + RELOC/tex/latex/utfsym/usym275B.tikz + RELOC/tex/latex/utfsym/usym275C.tikz + RELOC/tex/latex/utfsym/usym275D.tikz + RELOC/tex/latex/utfsym/usym275E.tikz + RELOC/tex/latex/utfsym/usym275F.tikz + RELOC/tex/latex/utfsym/usym2760.tikz + RELOC/tex/latex/utfsym/usym2761.tikz + RELOC/tex/latex/utfsym/usym2762.tikz + RELOC/tex/latex/utfsym/usym2763.tikz + RELOC/tex/latex/utfsym/usym2764.tikz + RELOC/tex/latex/utfsym/usym2765.tikz + RELOC/tex/latex/utfsym/usym2766.tikz + RELOC/tex/latex/utfsym/usym2767.tikz + RELOC/tex/latex/utfsym/usym2768.tikz + RELOC/tex/latex/utfsym/usym2769.tikz + RELOC/tex/latex/utfsym/usym276A.tikz + RELOC/tex/latex/utfsym/usym276B.tikz + RELOC/tex/latex/utfsym/usym276C.tikz + RELOC/tex/latex/utfsym/usym276D.tikz + RELOC/tex/latex/utfsym/usym276E.tikz + RELOC/tex/latex/utfsym/usym276F.tikz + RELOC/tex/latex/utfsym/usym2770.tikz + RELOC/tex/latex/utfsym/usym2771.tikz + RELOC/tex/latex/utfsym/usym2772.tikz + RELOC/tex/latex/utfsym/usym2773.tikz + RELOC/tex/latex/utfsym/usym2774.tikz + RELOC/tex/latex/utfsym/usym2775.tikz + RELOC/tex/latex/utfsym/usym2776.tikz + RELOC/tex/latex/utfsym/usym2777.tikz + RELOC/tex/latex/utfsym/usym2778.tikz + RELOC/tex/latex/utfsym/usym2779.tikz + RELOC/tex/latex/utfsym/usym277A.tikz + RELOC/tex/latex/utfsym/usym277B.tikz + RELOC/tex/latex/utfsym/usym277C.tikz + RELOC/tex/latex/utfsym/usym277D.tikz + RELOC/tex/latex/utfsym/usym277E.tikz + RELOC/tex/latex/utfsym/usym277F.tikz + RELOC/tex/latex/utfsym/usym2780.tikz + RELOC/tex/latex/utfsym/usym2781.tikz + RELOC/tex/latex/utfsym/usym2782.tikz + RELOC/tex/latex/utfsym/usym2783.tikz + RELOC/tex/latex/utfsym/usym2784.tikz + RELOC/tex/latex/utfsym/usym2785.tikz + RELOC/tex/latex/utfsym/usym2786.tikz + RELOC/tex/latex/utfsym/usym2787.tikz + RELOC/tex/latex/utfsym/usym2788.tikz + RELOC/tex/latex/utfsym/usym2789.tikz + RELOC/tex/latex/utfsym/usym278A.tikz + RELOC/tex/latex/utfsym/usym278B.tikz + RELOC/tex/latex/utfsym/usym278C.tikz + RELOC/tex/latex/utfsym/usym278D.tikz + RELOC/tex/latex/utfsym/usym278E.tikz + RELOC/tex/latex/utfsym/usym278F.tikz + RELOC/tex/latex/utfsym/usym2790.tikz + RELOC/tex/latex/utfsym/usym2791.tikz + RELOC/tex/latex/utfsym/usym2792.tikz + RELOC/tex/latex/utfsym/usym2793.tikz + RELOC/tex/latex/utfsym/usym2794.tikz + RELOC/tex/latex/utfsym/usym2795.tikz + RELOC/tex/latex/utfsym/usym2796.tikz + RELOC/tex/latex/utfsym/usym2797.tikz + RELOC/tex/latex/utfsym/usym2798.tikz + RELOC/tex/latex/utfsym/usym2799.tikz + RELOC/tex/latex/utfsym/usym279A.tikz + RELOC/tex/latex/utfsym/usym279B.tikz + RELOC/tex/latex/utfsym/usym279C.tikz + RELOC/tex/latex/utfsym/usym279D.tikz + RELOC/tex/latex/utfsym/usym279E.tikz + RELOC/tex/latex/utfsym/usym279F.tikz + RELOC/tex/latex/utfsym/usym27A0.tikz + RELOC/tex/latex/utfsym/usym27A1.tikz + RELOC/tex/latex/utfsym/usym27A2.tikz + RELOC/tex/latex/utfsym/usym27A3.tikz + RELOC/tex/latex/utfsym/usym27A4.tikz + RELOC/tex/latex/utfsym/usym27A5.tikz + RELOC/tex/latex/utfsym/usym27A6.tikz + RELOC/tex/latex/utfsym/usym27A7.tikz + RELOC/tex/latex/utfsym/usym27A8.tikz + RELOC/tex/latex/utfsym/usym27A9.tikz + RELOC/tex/latex/utfsym/usym27AA.tikz + RELOC/tex/latex/utfsym/usym27AB.tikz + RELOC/tex/latex/utfsym/usym27AC.tikz + RELOC/tex/latex/utfsym/usym27AD.tikz + RELOC/tex/latex/utfsym/usym27AE.tikz + RELOC/tex/latex/utfsym/usym27AF.tikz + RELOC/tex/latex/utfsym/usym27B0.tikz + RELOC/tex/latex/utfsym/usym27B1.tikz + RELOC/tex/latex/utfsym/usym27B2.tikz + RELOC/tex/latex/utfsym/usym27B3.tikz + RELOC/tex/latex/utfsym/usym27B4.tikz + RELOC/tex/latex/utfsym/usym27B5.tikz + RELOC/tex/latex/utfsym/usym27B6.tikz + RELOC/tex/latex/utfsym/usym27B7.tikz + RELOC/tex/latex/utfsym/usym27B8.tikz + RELOC/tex/latex/utfsym/usym27B9.tikz + RELOC/tex/latex/utfsym/usym27BA.tikz + RELOC/tex/latex/utfsym/usym27BB.tikz + RELOC/tex/latex/utfsym/usym27BC.tikz + RELOC/tex/latex/utfsym/usym27BD.tikz + RELOC/tex/latex/utfsym/usym27BE.tikz + RELOC/tex/latex/utfsym/usym27BF.tikz + RELOC/tex/latex/utfsym/utfsym.sty +catalogue-also schule +catalogue-ctan /graphics/pgf/contrib/utfsym +catalogue-license cc0 +catalogue-topics pgf-tikz symbol-supp +catalogue-version 0.8.3 + +name utopia +category Package +revision 15878 +shortdesc Adobe Utopia fonts +relocated 1 +longdesc The Adobe Standard Encoding set (upright and italic shapes, +longdesc medium and bold weights) of the Utopia font family, which Adobe +longdesc donated to the X Consortium. Macro support, and maths fonts +longdesc that match the Utopia family, are provided by the Fourier and +longdesc the Mathdesign font packages. +containersize 205556 +containerchecksum 5f58ac6dacaddf4110b2ac2f77fc0da90d5cfdff26d888b26af06cd6dd8f483c7a6a12e0aab3f50d4188aab9ab649d993ad89e74898d54c14b3de4948451279b +doccontainersize 2820 +doccontainerchecksum ba60eaf55cc08378560048ebc6f735e743449a18d2822e6027a86e595a9634461713ceb37d15b9f0c8239f1935f910bbdbd9a0d0d6fa1683174739f91c16a504 +docfiles size=3 + RELOC/doc/fonts/utopia/LICENSE-utopia.txt + RELOC/doc/fonts/utopia/README-utopia.txt +runfiles size=168 + RELOC/fonts/afm/adobe/utopia/putb8a.afm + RELOC/fonts/afm/adobe/utopia/putbi8a.afm + RELOC/fonts/afm/adobe/utopia/putr8a.afm + RELOC/fonts/afm/adobe/utopia/putri8a.afm + RELOC/fonts/tfm/adobe/utopia/putb7t.tfm + RELOC/fonts/tfm/adobe/utopia/putb8c.tfm + RELOC/fonts/tfm/adobe/utopia/putb8r.tfm + RELOC/fonts/tfm/adobe/utopia/putb8t.tfm + RELOC/fonts/tfm/adobe/utopia/putbc7t.tfm + RELOC/fonts/tfm/adobe/utopia/putbc8t.tfm + RELOC/fonts/tfm/adobe/utopia/putbi7t.tfm + RELOC/fonts/tfm/adobe/utopia/putbi8c.tfm + RELOC/fonts/tfm/adobe/utopia/putbi8r.tfm + RELOC/fonts/tfm/adobe/utopia/putbi8t.tfm + RELOC/fonts/tfm/adobe/utopia/putbo7t.tfm + RELOC/fonts/tfm/adobe/utopia/putbo8c.tfm + RELOC/fonts/tfm/adobe/utopia/putbo8r.tfm + RELOC/fonts/tfm/adobe/utopia/putbo8t.tfm + RELOC/fonts/tfm/adobe/utopia/putr7t.tfm + RELOC/fonts/tfm/adobe/utopia/putr8c.tfm + RELOC/fonts/tfm/adobe/utopia/putr8r.tfm + RELOC/fonts/tfm/adobe/utopia/putr8t.tfm + RELOC/fonts/tfm/adobe/utopia/putrc7t.tfm + RELOC/fonts/tfm/adobe/utopia/putrc8t.tfm + RELOC/fonts/tfm/adobe/utopia/putri7t.tfm + RELOC/fonts/tfm/adobe/utopia/putri8c.tfm + RELOC/fonts/tfm/adobe/utopia/putri8r.tfm + RELOC/fonts/tfm/adobe/utopia/putri8t.tfm + RELOC/fonts/tfm/adobe/utopia/putro7t.tfm + RELOC/fonts/tfm/adobe/utopia/putro8c.tfm + RELOC/fonts/tfm/adobe/utopia/putro8r.tfm + RELOC/fonts/tfm/adobe/utopia/putro8t.tfm + RELOC/fonts/type1/adobe/utopia/putb8a.pfb + RELOC/fonts/type1/adobe/utopia/putbi8a.pfb + RELOC/fonts/type1/adobe/utopia/putr8a.pfb + RELOC/fonts/type1/adobe/utopia/putri8a.pfb + RELOC/fonts/vf/adobe/utopia/putb7t.vf + RELOC/fonts/vf/adobe/utopia/putb8c.vf + RELOC/fonts/vf/adobe/utopia/putb8t.vf + RELOC/fonts/vf/adobe/utopia/putbc7t.vf + RELOC/fonts/vf/adobe/utopia/putbc8t.vf + RELOC/fonts/vf/adobe/utopia/putbi7t.vf + RELOC/fonts/vf/adobe/utopia/putbi8c.vf + RELOC/fonts/vf/adobe/utopia/putbi8t.vf + RELOC/fonts/vf/adobe/utopia/putbo7t.vf + RELOC/fonts/vf/adobe/utopia/putbo8c.vf + RELOC/fonts/vf/adobe/utopia/putbo8t.vf + RELOC/fonts/vf/adobe/utopia/putr7t.vf + RELOC/fonts/vf/adobe/utopia/putr8c.vf + RELOC/fonts/vf/adobe/utopia/putr8t.vf + RELOC/fonts/vf/adobe/utopia/putrc7t.vf + RELOC/fonts/vf/adobe/utopia/putrc8t.vf + RELOC/fonts/vf/adobe/utopia/putri7t.vf + RELOC/fonts/vf/adobe/utopia/putri8c.vf + RELOC/fonts/vf/adobe/utopia/putri8t.vf + RELOC/fonts/vf/adobe/utopia/putro7t.vf + RELOC/fonts/vf/adobe/utopia/putro8c.vf + RELOC/fonts/vf/adobe/utopia/putro8t.vf +catalogue-ctan /fonts/utopia +catalogue-license other-free +catalogue-topics font font-type1 + +name uwmslide +category Package +revision 27354 +shortdesc Slides with a simple Power Point like appearance +relocated 1 +longdesc A slide format which produces slides with a simple Power Point +longdesc like appearance. Several useful features include: use of +longdesc standard titlepage to produce title slide; several slide +longdesc environments including plain (page with a title), double slide +longdesc (two column page with slide title), item slide (item list with +longdesc title), left item slide, and right item slide. Logos are placed +longdesc in the upper left corner of each slide if the logo file +longdesc logo.eps is present. Preconfigured in landscape mode by default +longdesc and uses Times Roman by default (originally, it was claimed, +longdesc for simple conversion to PDF format). +containersize 3916 +containerchecksum a4ee1019a36a66abb6614dcf6ffdd9706b705bd18a19d34fcedba441c355ce3a7573ea0ee53686b325c6d6b485fef99dd1254118d1cdd1603e1597b0fa17b751 +doccontainersize 11764 +doccontainerchecksum 7560c214913e9dc61d01ba8528e1bc147a4f261995294c8c938ffd853a9b6a174c1d1d47e49fa20351ea45d61dca03ef7f0ff085e8725820c24d2895a0d17530 +docfiles size=12 + RELOC/doc/latex/uwmslide/README details="Readme" + RELOC/doc/latex/uwmslide/logo.eps + RELOC/doc/latex/uwmslide/test.tex + RELOC/doc/latex/uwmslide/vaux.eps +runfiles size=4 + RELOC/tex/latex/uwmslide/uwmslide.cls +catalogue-ctan /macros/latex/contrib/uwmslide +catalogue-license artistic +catalogue-topics presentation + +name uwthesis +category Package +revision 15878 +shortdesc University of Washington thesis class +relocated 1 +containersize 8092 +containerchecksum 07bb8a3ab65110aef8de3b606ca53060dc8f29c76de55a5a84e87d43fe0e09dd16b48ec09b9a451f2285c06450ad059c4c3f9b8d48a21572a1bffbe2ee512a6c +doccontainersize 137544 +doccontainerchecksum 278a7ce5f0bab547de0c8dd4a26dc270500baf8abfca1ff1a8e76283fffff4a73835fbb1daea2f6864cb9dca3e0fff297887ab10305c6a87ea1d7384d964a9d5 +docfiles size=51 + RELOC/doc/latex/uwthesis/LICENSE + RELOC/doc/latex/uwthesis/README details="Readme" + RELOC/doc/latex/uwthesis/uwthesis.bib + RELOC/doc/latex/uwthesis/uwthesis.pdf details="Package documentation/example of use" + RELOC/doc/latex/uwthesis/uwthesis.tex +runfiles size=8 + RELOC/tex/latex/uwthesis/uwthesis.cls +catalogue-ctan /macros/latex/contrib/uwthesis +catalogue-license apache2 +catalogue-topics dissertation +catalogue-version 6.13 + +name vak +category Package +revision 23431 +shortdesc BibTeX style for Russian Theses, books, etc +relocated 1 +longdesc The file can be used to format the bibliographies of PhD +longdesc theses, books etc., according to the latest Russian standards: +longdesc GOST 7.82 - 2001 and GOST 7.1 - 2003. It introduces the minimum +longdesc number of new entries and styles to cover all frequently used +longdesc situations. The style file provides an easy way to perform a +longdesc semiautomatic, or a completely manual sort of the list of the +longdesc references. Processing bibliographies produced by the style +longdesc requires a 8-bit BibTeX system. +containersize 5964 +containerchecksum b7606cf33b8e9d14f4ca4cced0620810eecc469faba959728d3b4d7f8d87023d600fb33f1739ce0e7d14d4a54936fbc682a54d8ad8c6b514a1f2baed2c79b2f1 +doccontainersize 91260 +doccontainerchecksum 1e6f148de79c2ecb5fcd03ff1509c3a509ee40795af0e7f7a95fdc64c403f2de7f9d9ca37716b6488cd496e2be0565749222ae95f8b97e5cf7e05b3877bb6d62 +docfiles size=24 + RELOC/doc/bibtex/vak/README details="Readme" language="en" + RELOC/doc/bibtex/vak/test-key.zip + RELOC/doc/bibtex/vak/test.zip +runfiles size=8 + RELOC/bibtex/bst/vak/vak.bst +catalogue-ctan /biblio/bibtex/contrib/vak +catalogue-license lppl +catalogue-topics dissertation + +name vancouver +category Package +revision 55423 +shortdesc Bibliographic style file for Biomedical Journals +relocated 1 +longdesc This BibTeX style file is generated with the docstrip utility +longdesc and modified manually to meet the Uniform Requirements for +longdesc Manuscripts Submitted to Biomedical Journals as published in N +longdesc Engl J Med 1997;336:309-315 (also known as the Vancouver +longdesc style). The complete set of requirements may be viewed on the +longdesc ICMJE web site. +containersize 8328 +containerchecksum 2dd41dd96607ecbb4c4bde1f6ff3c63a3e79efe7d025fce510e1b0dfc5b8d5bb19826042c04819f1d84178fce7d077e8f7b25fa9beccc4ed88db2683e716444e +doccontainersize 136436 +doccontainerchecksum 18069bd05809a9c8dc6a5e45af304dc74f40b5304c34064c7de67a961804d540a4cd892b4de380cb6c59a334b09cc165c2aa81749be1d4b2fe56e7fc7528e0f9 +docfiles size=45 + RELOC/doc/bibtex/vancouver/FAQ + RELOC/doc/bibtex/vancouver/LICENSE + RELOC/doc/bibtex/vancouver/README details="Readme" + RELOC/doc/bibtex/vancouver/vancouver.bib + RELOC/doc/bibtex/vancouver/vancouver.pdf details="Package documentation" + RELOC/doc/bibtex/vancouver/vancouver.tex +runfiles size=10 + RELOC/bibtex/bst/vancouver/vancouver.bst +catalogue-contact-repository https://gitlab.com/fvdbeek/vancouver.bst +catalogue-ctan /biblio/bibtex/contrib/vancouver +catalogue-license lppl1.3 +catalogue-topics biomedical journalpub bibtex-sty +catalogue-version 0.8 + +name variablelm +category Package +revision 46611 +shortdesc Font definitions for the variable Latin Modern fonts +relocated 1 +longdesc This package provides a mechanism for scaling a typeface. It is +longdesc directed at the Latin Modern fonts and provides the font +longdesc definitions and the corresponding style file. This mechanism is +longdesc useful in mixed text compositions, for example Japanese-Latin. +containersize 3624 +containerchecksum e58a1c5a77861ed3a84f2fb372d6c3560129b656257e23a935fa9d7ce18c83b59f9863e29ff35c45c6ab800cd09aa2fe7bcb1fd01edbbe2e75112809c17faa9e +doccontainersize 133116 +doccontainerchecksum 58611f636d5aea5ee2935c75206e0d051345d7138d04668ec7875b3ee0493e39bba54b1941aaedf33abfeb7636602fa6ac7fe7e750837b425678eae97b7495fa +docfiles size=35 + RELOC/doc/fonts/variablelm/README.md details="Readme" + RELOC/doc/fonts/variablelm/control_scaling_lm_fonts.pdf details="Package documentation" + RELOC/doc/fonts/variablelm/control_scaling_lm_fonts.tex +runfiles size=14 + RELOC/tex/latex/variablelm/omlvlmm.fd + RELOC/tex/latex/variablelm/omlvlmr.fd + RELOC/tex/latex/variablelm/omsvlmr.fd + RELOC/tex/latex/variablelm/omsvlmsy.fd + RELOC/tex/latex/variablelm/omxvlmex.fd + RELOC/tex/latex/variablelm/ot1vlmr.fd + RELOC/tex/latex/variablelm/ot1vlmtt.fd + RELOC/tex/latex/variablelm/t1vlmr.fd + RELOC/tex/latex/variablelm/t1vlmss.fd + RELOC/tex/latex/variablelm/t1vlmssq.fd + RELOC/tex/latex/variablelm/t1vlmtt.fd + RELOC/tex/latex/variablelm/t1vlmvtt.fd + RELOC/tex/latex/variablelm/ts1vlmr.fd + RELOC/tex/latex/variablelm/variablelm.sty +catalogue-also lm +catalogue-contact-repository https://github.com/yuw/texmf-variablelm +catalogue-ctan /fonts/variablelm +catalogue-license gfl +catalogue-topics font-cm font-virtual font-t1enc +catalogue-version 1.1.2 + +name variations +category Package +revision 15878 +shortdesc Typeset tables of variations of functions +relocated 1 +longdesc The package provides macros for typesetting tables showing +longdesc variations of functions according to French usage. These macros +longdesc may be used by both LaTeX and plain TeX users. +containersize 1320 +containerchecksum 71252475aec013adf9bf41460753a648420ea70fb093cadc667500a6884adcf0c6661a2d81053a733844a3f8595ccffb5ac5f7680689575d8485c47a1cc1e469 +doccontainersize 75756 +doccontainerchecksum 75d6d8afd13f6751bad23d0adc58355d75e355554dd95971dc16ac148150990e1362ec211a3f3e6fd832ce231dbd08e50ed9d44856c763e47ddb5374b1b182ff +docfiles size=29 + RELOC/doc/generic/variations/ALIRE details="Package ALIRE" language="fr" + RELOC/doc/generic/variations/COPYING + RELOC/doc/generic/variations/README details="Package README" language="en" + RELOC/doc/generic/variations/docvariations.pdf details="Package documentation" language="fr" + RELOC/doc/generic/variations/docvariations.tex +runfiles size=2 + RELOC/tex/generic/variations/variations.sty + RELOC/tex/generic/variations/variations.tex +catalogue-ctan /macros/generic/variations +catalogue-license gpl +catalogue-topics maths-tabvar +catalogue-version 0.3 + +name varindex +category Package +revision 32262 +shortdesc Luxury frontend to the \index command +relocated 1 +longdesc Provides a convenient front-end for the \index command. For +longdesc example, with it you can generate multiple index entries in +longdesc almost any form by a single command. The package is highly +longdesc customizable, and works with all versions of LaTeX and probably +longdesc most other TeX formats. +containersize 6512 +containerchecksum fb7216b4cb06126970148788859d9c12a0626d25321cc591b2db5d7018ab2a76f5c6505d9cd47da6a3babc765dcedb6653a3ead2eea67f688cd883fe81d9f42a +doccontainersize 227344 +doccontainerchecksum 30b9f50b7357f12774f78f0792ee0321b5ba84d2c3dff96f5f98d87cf0bb811a2fee74b2bc691fef07a80eb65e13e42b657b74efb0ee334b4f04da7bfdd0b75e +docfiles size=74 + RELOC/doc/latex/varindex/README details="Readme" + RELOC/doc/latex/varindex/varindex.pdf details="Package documentation" + RELOC/doc/latex/varindex/varindex.tex + RELOC/doc/latex/varindex/varindex.txt +srccontainersize 40500 +srccontainerchecksum 19571ec2000fb99ac8e1b188e2f6965748c78476bb3fb2d38c2f668b02d268817c6f2670b9bd51df48c2db8fca1e6f62ac738f378a6832368c74de297f19b679 +srcfiles size=51 + RELOC/source/latex/varindex/varindex.dtx + RELOC/source/latex/varindex/varindex.ins +runfiles size=8 + RELOC/tex/latex/varindex/varindex.sty +catalogue-ctan /macros/latex/contrib/varindex +catalogue-license lppl +catalogue-topics index +catalogue-version 2.3 + +name varisize +category Package +revision 15878 +shortdesc Change font size in Plain TeX +relocated 1 +longdesc A series of files, each of which defines a size-change macro. +longdesc Note that 10point.tex is by convention called by one of the +longdesc other files, so that there's always a "way back". +containersize 3204 +containerchecksum c1a900aa29601e9bcc5d1047ea5bca0bd3c079d05e8c42c8e3f85521cd8a1989425650d0e84ab0acf2a38e468bc4823e149cf1e799da8eea1d6af4554cbc0c94 +doccontainersize 440 +doccontainerchecksum f575e4faff4a80f72108ef5b97abb0bda08573669bb8b28592fa607538c632d3b59626282a0ff8d7805e6b66121b2c231618901a9dd71f0242e1a0875a3e2068 +docfiles size=1 + RELOC/doc/plain/varisize/README +runfiles size=10 + RELOC/tex/plain/varisize/10point.tex + RELOC/tex/plain/varisize/10pointss.tex + RELOC/tex/plain/varisize/11point.tex + RELOC/tex/plain/varisize/12point.tex + RELOC/tex/plain/varisize/14point.tex + RELOC/tex/plain/varisize/17point.tex + RELOC/tex/plain/varisize/20point.tex + RELOC/tex/plain/varisize/7point.tex + RELOC/tex/plain/varisize/8point.tex + RELOC/tex/plain/varisize/9point.tex +catalogue-also plnfss ofs font-selection +catalogue-ctan /macros/plain/contrib/varisize +catalogue-license pd +catalogue-topics font-sel + +name varsfromjobname +category Package +revision 44154 +shortdesc Extract variables from the name of the LaTeX file +relocated 1 +longdesc The package allows the user to extract information from the job +longdesc name, provided that the name has been structured appropriately: +longdesc the package expects the file name to consist of a set of words +longdesc separated by hyphens. +containersize 1448 +containerchecksum 0d5fb07c93fdd08570ef1dfa120870f4619b124cde769f48b4107c41827dd65c023840e1344aa283d0b21bfb0af2346135577510119579c531731f132bbfee1a +doccontainersize 185876 +doccontainerchecksum 57e3111b8426ace2a838a128dae49a6ffadc6892e4b85cfc83eae3b9422dc4188e505fcb2a281ff38cbeb18e385ba1da398111c5f00683568999004ffd5eaea7 +docfiles size=47 + RELOC/doc/latex/varsfromjobname/README.md details="Readme" + RELOC/doc/latex/varsfromjobname/varsfromjobname.pdf details="Package documentation" + RELOC/doc/latex/varsfromjobname/varsfromjobname.tex +runfiles size=2 + RELOC/tex/latex/varsfromjobname/varsfromjobname.sty +catalogue-contact-home https://github.com/UweZiegenhagen/VarsFromJobname +catalogue-contact-repository https://github.com/UweZiegenhagen/VarsFromJobname +catalogue-ctan /macros/latex/contrib/varsfromjobname +catalogue-license lppl +catalogue-topics doc-mgmt +catalogue-version 1.0 + +name varwidth +category Package +revision 24104 +shortdesc A variable-width minipage +relocated 1 +longdesc The varwidth environment is superficially similar to minipage, +longdesc but the specified width is just a maximum value -- the box may +longdesc get a narrower "natural" width. +containersize 4152 +containerchecksum d44fcd1912f1751ab18f5d7d00ed47f42bed3ad2863b35781a83df9c881943c3e1916d003361b6e64640326541f43a37abdb0a3cdfe07e4d0cf7980dfc5fe1bb +doccontainersize 25844 +doccontainerchecksum ba0c0d562a7c9db36637bb18fa6f0d01661b229c66b8f0d2bd7cbafe286b81485e84bcccd06c4d47561db8895cf8933ff11d08a8de0b01405d6c7dde443e86e6 +docfiles size=10 + RELOC/doc/latex/varwidth/miscdoc.sty + RELOC/doc/latex/varwidth/varwidth-doc.pdf details="Package documentation" + RELOC/doc/latex/varwidth/varwidth-doc.tex +runfiles size=3 + RELOC/tex/latex/varwidth/varwidth.sty +catalogue-also pbox tabbingbox +catalogue-ctan /macros/latex/contrib/varwidth +catalogue-license lppl +catalogue-topics boxing fit-to-size +catalogue-version 0.92 + +name vaucanson-g +category Package +revision 15878 +shortdesc PSTricks macros for drawing automata +relocated 1 +longdesc VauCanSon-G is a package that enables the user to draw automata +longdesc within texts written using LaTeX. The package macros make use +longdesc of commands of PStricks. +containersize 11360 +containerchecksum e4bf83ea01ff4162f95dd595b93635ed988ae081d0c65ada59ae64c6c64c730dbb92ae049d22dcc20d6204c5a7cbca5cd643be6c572e51a3aa17df88c6f1f700 +doccontainersize 288568 +doccontainerchecksum 520aabba38562e208b464fc0d4e9f9a138c238abb94b43e89864e4ac21acfd35e5d6e224e855ab4baf9feb1df736b7e937508f6245e5f873c5c8f8a75947e014 +docfiles size=108 + RELOC/doc/generic/vaucanson-g/CHANGES + RELOC/doc/generic/vaucanson-g/README details="Readme" + RELOC/doc/generic/vaucanson-g/VCManual-src/TwoStates.tex + RELOC/doc/generic/vaucanson-g/VCManual-src/VCManual.tex + RELOC/doc/generic/vaucanson-g/VCManual.pdf details="Package documentation" +runfiles size=19 + RELOC/tex/generic/vaucanson-g/VCColor-names.def + RELOC/tex/generic/vaucanson-g/VCPref-beamer.tex + RELOC/tex/generic/vaucanson-g/VCPref-default.tex + RELOC/tex/generic/vaucanson-g/VCPref-mystyle.tex + RELOC/tex/generic/vaucanson-g/VCPref-slides.tex + RELOC/tex/generic/vaucanson-g/Vaucanson-G.tex + RELOC/tex/generic/vaucanson-g/vaucanson-g.sty + RELOC/tex/generic/vaucanson-g/vaucanson.sty +catalogue-ctan /graphics/pstricks/contrib/vaucanson-g +catalogue-license lppl +catalogue-topics automata graphics-use +catalogue-version 0.4 + +name vcell +category Package +revision 59039 +shortdesc Vertical alignment of content inside table cells +relocated 1 +longdesc This package offers low-level macros to build rows with +longdesc vertically-aligned cells (top, middle or bottom) and calculate +longdesc the height of a row. These cells can have variable or fixed +longdesc height and can be paragraph-cells or inline-cells. Different +longdesc vertical alignments can be used in the same row. +containersize 1392 +containerchecksum 39d8f934a07095d21219d58fb41fd3e939391d5c68c51d8b9ec82a97522e55fc09a23195c8b5ae48cc3e9d9bb9a62a0b22123f467627784c767321140356d6b1 +doccontainersize 137652 +doccontainerchecksum f13e941e7327f4369112f59387cae9c49f10197a2c7c4016cbcc5880759d89fe88535266f5f753b48b547deda24a3ad959b42f864b9ca2764cd593bacbf908b4 +docfiles size=37 + RELOC/doc/latex/vcell/README.md details="Readme" + RELOC/doc/latex/vcell/vcell.pdf details="Package documentation" + RELOC/doc/latex/vcell/vcell.tex +runfiles size=1 + RELOC/tex/latex/vcell/vcell.sty +catalogue-ctan /macros/latex/contrib/vcell +catalogue-license lppl1.3c +catalogue-topics table +catalogue-version 1.0.2 + +name vdmlisting +category Package +revision 56905 +shortdesc Typesetting VDM in ASCII syntax +relocated 1 +longdesc The package is an extension for the listings package that +longdesc provides a source code printer for LaTeX. This package defines +longdesc new language definitions and listing environments for the three +longdesc language dialects of the Vienna Development Method: VDM-SL, +longdesc VDM-PP and VDM-RT. If one wants to typeset VDM with a +longdesc mathematical syntax instead of the ASCII syntax used here one +longdesc should use the vdm pacakge instead +containersize 2992 +containerchecksum 4c4b5deda36fab8ac8cadfea2093da188284cb26eb9874f27ffbedab1235d4e7bdf48e977a714fb33f0ef2c5cf4c0b92c14767c565efa6842cabf451af51c1de +doccontainersize 69156 +doccontainerchecksum fcd476e8ae2db61e3a71b1dd4bffae34e6eedaa409dc3434179ca66bafa2dc4b5790bd06bf90db609f91c682d2b7bf9d5effa893e5fb914c26c20acf67f8b22a +docfiles size=20 + RELOC/doc/latex/vdmlisting/README details="Package Readme" + RELOC/doc/latex/vdmlisting/vdmlisting.pdf details="Package documentation" + RELOC/doc/latex/vdmlisting/vdmlisting.tex +runfiles size=3 + RELOC/tex/latex/vdmlisting/vdmlisting.sty +catalogue-also listing vdm +catalogue-ctan /macros/latex/contrib/vdmlisting +catalogue-license lppl1.3 +catalogue-topics formal-spec listing +catalogue-version 1.1 + +name velthuis +category Package +revision 55475 +catalogue devanagari +shortdesc Typeset Devanagari +longdesc Frans Velthuis' preprocessor for Devanagari text, and fonts and +longdesc macros to use when typesetting the processed text. The macros +longdesc provide features that support Sanskrit, Hindi, Marathi, Nepali, +longdesc and other languages typically printed in the Devanagari script. +longdesc The package provides fonts, in both Metafont and Type 1 +longdesc formats. Users of modern TeX distributions may care to try the +longdesc XeTeX based package, which is far preferable for users who can +longdesc type Unicode text. +depend velthuis.ARCH +depend xetex-devanagari +execute addMixedMap dvng.map +containersize 4149432 +containerchecksum 451023c09755f3aa884128a6ddd5e70a6820724de66f8923deea812a8e28c337676de95aa98a06a96013502fa24e9855b24977603c675820b1d5a0a056fe4cab +doccontainersize 979992 +doccontainerchecksum e17270b0e427e3ff02b1d43e578815ec37c0046a20ceb898a357041f9184044162077d9fc64f66d955d774637a8d2ec59d31b624dd743113c972d0854075df10 +docfiles size=289 + texmf-dist/doc/generic/velthuis/README details="Readme" + texmf-dist/doc/generic/velthuis/captions.dn + texmf-dist/doc/generic/velthuis/changes + texmf-dist/doc/generic/velthuis/copying + texmf-dist/doc/generic/velthuis/examples.dn + texmf-dist/doc/generic/velthuis/examples.pdf + texmf-dist/doc/generic/velthuis/hindi.dtx + texmf-dist/doc/generic/velthuis/hindi.ins + texmf-dist/doc/generic/velthuis/hindi.pdf + texmf-dist/doc/generic/velthuis/manual.pdf details="Package manual" + texmf-dist/doc/generic/velthuis/manual.tex + texmf-dist/doc/generic/velthuis/misspaal.dn + texmf-dist/doc/generic/velthuis/misspaal.pdf + texmf-dist/doc/generic/velthuis/vedasample.dn + texmf-dist/doc/generic/velthuis/vedasample.pdf + texmf-dist/doc/generic/velthuis/xetex-examples.pdf + texmf-dist/doc/generic/velthuis/xetex-examples.tex + texmf-dist/doc/generic/velthuis/xetex-misspaal.pdf + texmf-dist/doc/generic/velthuis/xetex-misspaal.tex + texmf-dist/doc/man/man1/devnag.1 + texmf-dist/doc/man/man1/devnag.man1.pdf +runfiles size=1540 + texmf-dist/fonts/afm/public/velthuis/dvnb10.afm + texmf-dist/fonts/afm/public/velthuis/dvnb8.afm + texmf-dist/fonts/afm/public/velthuis/dvnb9.afm + texmf-dist/fonts/afm/public/velthuis/dvnbb10.afm + texmf-dist/fonts/afm/public/velthuis/dvnbb8.afm + texmf-dist/fonts/afm/public/velthuis/dvnbb9.afm + texmf-dist/fonts/afm/public/velthuis/dvnbbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvnbbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvnbbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvnbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvnbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnc10.afm + texmf-dist/fonts/afm/public/velthuis/dvnc8.afm + texmf-dist/fonts/afm/public/velthuis/dvnc9.afm + texmf-dist/fonts/afm/public/velthuis/dvncb10.afm + texmf-dist/fonts/afm/public/velthuis/dvncb8.afm + texmf-dist/fonts/afm/public/velthuis/dvncb9.afm + texmf-dist/fonts/afm/public/velthuis/dvncbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvncbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvncbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnci10.afm + texmf-dist/fonts/afm/public/velthuis/dvnci8.afm + texmf-dist/fonts/afm/public/velthuis/dvnci9.afm + texmf-dist/fonts/afm/public/velthuis/dvng10.afm + texmf-dist/fonts/afm/public/velthuis/dvng8.afm + texmf-dist/fonts/afm/public/velthuis/dvng9.afm + texmf-dist/fonts/afm/public/velthuis/dvngb10.afm + texmf-dist/fonts/afm/public/velthuis/dvngb8.afm + texmf-dist/fonts/afm/public/velthuis/dvngb9.afm + texmf-dist/fonts/afm/public/velthuis/dvngbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvngbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvngbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvngi10.afm + texmf-dist/fonts/afm/public/velthuis/dvngi8.afm + texmf-dist/fonts/afm/public/velthuis/dvngi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnn10.afm + texmf-dist/fonts/afm/public/velthuis/dvnn8.afm + texmf-dist/fonts/afm/public/velthuis/dvnn9.afm + texmf-dist/fonts/afm/public/velthuis/dvnnb10.afm + texmf-dist/fonts/afm/public/velthuis/dvnnb8.afm + texmf-dist/fonts/afm/public/velthuis/dvnnb9.afm + texmf-dist/fonts/afm/public/velthuis/dvnnbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvnnbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvnnbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnni10.afm + texmf-dist/fonts/afm/public/velthuis/dvnni8.afm + texmf-dist/fonts/afm/public/velthuis/dvnni9.afm + texmf-dist/fonts/afm/public/velthuis/dvpb10.afm + texmf-dist/fonts/afm/public/velthuis/dvpb8.afm + texmf-dist/fonts/afm/public/velthuis/dvpb9.afm + texmf-dist/fonts/afm/public/velthuis/dvpc10.afm + texmf-dist/fonts/afm/public/velthuis/dvpc8.afm + texmf-dist/fonts/afm/public/velthuis/dvpc9.afm + texmf-dist/fonts/afm/public/velthuis/dvpn10.afm + texmf-dist/fonts/afm/public/velthuis/dvpn8.afm + texmf-dist/fonts/afm/public/velthuis/dvpn9.afm + texmf-dist/fonts/afm/public/velthuis/dvpnn10.afm + texmf-dist/fonts/afm/public/velthuis/dvpnn8.afm + texmf-dist/fonts/afm/public/velthuis/dvpnn9.afm + texmf-dist/fonts/map/dvips/velthuis/dvng.map + texmf-dist/fonts/source/public/velthuis/dnchars.mf + texmf-dist/fonts/source/public/velthuis/dndefs.mf + texmf-dist/fonts/source/public/velthuis/dngen.mf + texmf-dist/fonts/source/public/velthuis/dninit.mf + texmf-dist/fonts/source/public/velthuis/dvnb10.mf + texmf-dist/fonts/source/public/velthuis/dvnb8.mf + texmf-dist/fonts/source/public/velthuis/dvnb9.mf + texmf-dist/fonts/source/public/velthuis/dvnbb10.mf + texmf-dist/fonts/source/public/velthuis/dvnbb8.mf + texmf-dist/fonts/source/public/velthuis/dvnbb9.mf + texmf-dist/fonts/source/public/velthuis/dvnbbi10.mf + texmf-dist/fonts/source/public/velthuis/dvnbbi8.mf + texmf-dist/fonts/source/public/velthuis/dvnbbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnbi10.mf + texmf-dist/fonts/source/public/velthuis/dvnbi8.mf + texmf-dist/fonts/source/public/velthuis/dvnbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnc10.mf + texmf-dist/fonts/source/public/velthuis/dvnc8.mf + texmf-dist/fonts/source/public/velthuis/dvnc9.mf + texmf-dist/fonts/source/public/velthuis/dvncb10.mf + texmf-dist/fonts/source/public/velthuis/dvncb8.mf + texmf-dist/fonts/source/public/velthuis/dvncb9.mf + texmf-dist/fonts/source/public/velthuis/dvncbi10.mf + texmf-dist/fonts/source/public/velthuis/dvncbi8.mf + texmf-dist/fonts/source/public/velthuis/dvncbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnci10.mf + texmf-dist/fonts/source/public/velthuis/dvnci8.mf + texmf-dist/fonts/source/public/velthuis/dvnci9.mf + texmf-dist/fonts/source/public/velthuis/dvng10.mf + texmf-dist/fonts/source/public/velthuis/dvng8.mf + texmf-dist/fonts/source/public/velthuis/dvng9.mf + texmf-dist/fonts/source/public/velthuis/dvngb10.mf + texmf-dist/fonts/source/public/velthuis/dvngb8.mf + texmf-dist/fonts/source/public/velthuis/dvngb9.mf + texmf-dist/fonts/source/public/velthuis/dvngbi10.mf + texmf-dist/fonts/source/public/velthuis/dvngbi8.mf + texmf-dist/fonts/source/public/velthuis/dvngbi9.mf + texmf-dist/fonts/source/public/velthuis/dvngi10.mf + texmf-dist/fonts/source/public/velthuis/dvngi8.mf + texmf-dist/fonts/source/public/velthuis/dvngi9.mf + texmf-dist/fonts/source/public/velthuis/dvnn10.mf + texmf-dist/fonts/source/public/velthuis/dvnn8.mf + texmf-dist/fonts/source/public/velthuis/dvnn9.mf + texmf-dist/fonts/source/public/velthuis/dvnnb10.mf + texmf-dist/fonts/source/public/velthuis/dvnnb8.mf + texmf-dist/fonts/source/public/velthuis/dvnnb9.mf + texmf-dist/fonts/source/public/velthuis/dvnnbi10.mf + texmf-dist/fonts/source/public/velthuis/dvnnbi8.mf + texmf-dist/fonts/source/public/velthuis/dvnnbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnni10.mf + texmf-dist/fonts/source/public/velthuis/dvnni8.mf + texmf-dist/fonts/source/public/velthuis/dvnni9.mf + texmf-dist/fonts/source/public/velthuis/dvpb10.mf + texmf-dist/fonts/source/public/velthuis/dvpb8.mf + texmf-dist/fonts/source/public/velthuis/dvpb9.mf + texmf-dist/fonts/source/public/velthuis/dvpc10.mf + texmf-dist/fonts/source/public/velthuis/dvpc8.mf + texmf-dist/fonts/source/public/velthuis/dvpc9.mf + texmf-dist/fonts/source/public/velthuis/dvpn10.mf + texmf-dist/fonts/source/public/velthuis/dvpn8.mf + texmf-dist/fonts/source/public/velthuis/dvpn9.mf + texmf-dist/fonts/source/public/velthuis/dvpnn10.mf + texmf-dist/fonts/source/public/velthuis/dvpnn8.mf + texmf-dist/fonts/source/public/velthuis/dvpnn9.mf + texmf-dist/fonts/tfm/public/velthuis/dvnb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnc10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnc8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnc9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnci10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnci8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnci9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvng10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvng8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvng9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnn10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnn8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnn9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnni10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnni8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnni9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpc10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpc8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpc9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpn10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpn8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpn9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpnn10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpnn8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpnn9.tfm + texmf-dist/fonts/type1/public/velthuis/dvnb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnc10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnc8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnc9.pfb + texmf-dist/fonts/type1/public/velthuis/dvncb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvncb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvncb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvncbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvncbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvncbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnci10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnci8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnci9.pfb + texmf-dist/fonts/type1/public/velthuis/dvng10.pfb + texmf-dist/fonts/type1/public/velthuis/dvng8.pfb + texmf-dist/fonts/type1/public/velthuis/dvng9.pfb + texmf-dist/fonts/type1/public/velthuis/dvngb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvngb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvngb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvngbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvngbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvngbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvngi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvngi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvngi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnn10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnn8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnn9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnni10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnni8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnni9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpc10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpc8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpc9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpn10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpn8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpn9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpnn10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpnn8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpnn9.pfb + texmf-dist/tex/generic/velthuis/hindi.ldf + texmf-dist/tex/generic/velthuis/hindi.sty + texmf-dist/tex/latex/velthuis/dev.sty + texmf-dist/tex/latex/velthuis/dev209.sty + texmf-dist/tex/latex/velthuis/devanagari.sty + texmf-dist/tex/latex/velthuis/dvngcite.sty + texmf-dist/tex/latex/velthuis/udn.fd + texmf-dist/tex/latex/velthuis/udnb.fd + texmf-dist/tex/latex/velthuis/udnc.fd + texmf-dist/tex/latex/velthuis/udnn.fd + texmf-dist/tex/latex/velthuis/udnp.fd + texmf-dist/tex/latex/velthuis/udnpb.fd + texmf-dist/tex/latex/velthuis/udnpc.fd + texmf-dist/tex/latex/velthuis/udnpn.fd + texmf-dist/tex/plain/velthuis/dnmacs.tex + texmf-dist/tex/xelatex/velthuis/hindicaptions.sty +catalogue-ctan /language/devanagari/velthuis +catalogue-license gpl +catalogue-topics indic sanskrit font-indic font-mf font-type1 +catalogue-version 2.17.1 + +name velthuis.aarch64-linux +category Package +revision 53999 +shortdesc aarch64-linux files of velthuis +containersize 13072 +containerchecksum dd804ae1d1939c2b4d12a4040031922d1eb0b48ab5a890e3fb266b73dcecd1d54979a752c6793b2fd50ac088530da221c1ebb7ffb65a42fb317504acb39461b7 +binfiles arch=aarch64-linux size=13 + bin/aarch64-linux/devnag + +name velthuis.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of velthuis +containersize 13100 +containerchecksum 87376efa21d5daf50b0027d6fb62860b446f767e4500c0bd64446cae73a5d1f4b9f3587b66dbf7a6dbaf0d169b409d40bee3790edd314b84ba88c05174ae0336 +binfiles arch=amd64-freebsd size=9 + bin/amd64-freebsd/devnag + +name velthuis.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of velthuis +containersize 11640 +containerchecksum f25da260100655abe5afef1e2da5dda94bfe2e4ed4c208139b8a6ee5320e5076f2e01ef1039ba6edb3879771bd6cce2757c7303bff651fe4d1e21128dfd3bc0a +binfiles arch=amd64-netbsd size=9 + bin/amd64-netbsd/devnag + +name velthuis.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of velthuis +containersize 10816 +containerchecksum d6cba8f66bd3c05c5f2c87658d4eb4f49917b775504622c6adf94528547dfe33d171b0392f65e56e3e844b337d5086d834f42f023bcf7f4b1b0e2af6b646fd6d +binfiles arch=armhf-linux size=7 + bin/armhf-linux/devnag + +name velthuis.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of velthuis +containersize 11868 +containerchecksum d854c45962a0f6fc55b6854c35ac9f58e7d3be0863fab3bde2d568feb70766458cf5aa415156b2d4d5fba25153ccb6290843efe4053a8135326f0d52fc829ad1 +binfiles arch=i386-cygwin size=8 + bin/i386-cygwin/devnag.exe + +name velthuis.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of velthuis +containersize 11144 +containerchecksum 624e97024daa7e5fd63a21573bb7aa5129c937c807019ce446ed5514a7277d93468f3ce61e285d7ae5089e32fdf58df29e733d09d9e446eaf7d291aeca90c129 +binfiles arch=i386-freebsd size=7 + bin/i386-freebsd/devnag + +name velthuis.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of velthuis +containersize 11748 +containerchecksum e0d0a80e2280c998835b0ab9677d448c52d40a8dae8828d0f2b79c41060ef8404d70c452d77860a4b9f313d5ea42a63bf4d59ba972e4db465838da1224513f46 +binfiles arch=i386-linux size=7 + bin/i386-linux/devnag + +name velthuis.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of velthuis +containersize 10688 +containerchecksum 0f8f70062155c22939408059b2b8644b6beefdaf8e224112dbfa7530ef99c3eae2c19067775b18864fc7a2292af083458a863f6cc9aa156289ede83fb65f6e73 +binfiles arch=i386-netbsd size=8 + bin/i386-netbsd/devnag + +name velthuis.i386-solaris +category Package +revision 46829 +shortdesc i386-solaris files of velthuis +containersize 12684 +containerchecksum 50ec3779de8eaa55ce4929d62481ca1c575721c744727e5a2f9b3c259e23f21514f854787d6733207f74435cf017308097e8e91a3d17e39ad461f9a6cf45b8af +binfiles arch=i386-solaris size=8 + bin/i386-solaris/devnag + +name velthuis.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of velthuis +containersize 30352 +containerchecksum cc68a2d293d662db9f5698e2c40850daffc7d44f9d488a82d04005d53eccb507522b2f5112aa735c0497c1801a59993131eedd79338b12842918e4b96be89d98 +binfiles arch=universal-darwin size=38 + bin/universal-darwin/devnag + +name velthuis.win32 +category Package +revision 53994 +shortdesc win32 files of velthuis +containersize 13564 +containerchecksum 16dec32af1d8d136a6b20250dc34d3d3ab85af29cab47b85b57a5c0f19df3bac744f3953723385fa5e854b751dffc985d873d71b49e2acfbe60d36b4528e3223 +binfiles arch=win32 size=8 + bin/win32/devnag.exe + +name velthuis.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of velthuis +containersize 12876 +containerchecksum 7454ca0122760ddbbe1eb0cd564601f4e39cb088919f80d7634b4aa106d3a41668f63868d7c5d0be7d5523644239998dd91ca8a18717de4b14f6d037e1551779 +binfiles arch=x86_64-cygwin size=8 + bin/x86_64-cygwin/devnag.exe + +name velthuis.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of velthuis +containersize 11956 +containerchecksum e1f8301dc0bfa1033524cf60809151f5ea307f5b4ff814320cefc572e9cc14ba24836d9af35bedefdfba2f3d12e222876609c0ab9c558ae38921afc318552ee2 +binfiles arch=x86_64-darwinlegacy size=8 + bin/x86_64-darwinlegacy/devnag + +name velthuis.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of velthuis +containersize 12160 +containerchecksum 7466f544cc1e08574c66b592b39bb4cda0451a2a4b58f1b3c20c4617cfa7cf0df79c1dce10a11a5d36d1c531a1338a8f2448fe5e89791dcb98c6eb9c6e69aa11 +binfiles arch=x86_64-linux size=8 + bin/x86_64-linux/devnag + +name velthuis.x86_64-linuxmusl +category Package +revision 54264 +shortdesc x86_64-linuxmusl files of velthuis +containersize 13432 +containerchecksum 5cdca1f685e450e4a22be2c1cf43ac5587a22a56db0a349f5514db9d637f9e00cfc890f3d746119d81d4131ac8c1a50502694e10602b203d6f510c7939f30a45 +binfiles arch=x86_64-linuxmusl size=10 + bin/x86_64-linuxmusl/devnag + +name velthuis.x86_64-solaris +category Package +revision 46829 +shortdesc x86_64-solaris files of velthuis +containersize 13800 +containerchecksum 5e9fc63ae03524198d5fd6289682b8bc177a157100614d8e29697e7903ba74fe8d17f36a1eae866f7c1e1cc2edb5d8f664c8a1b546a42e97db6012d8645661b9 +binfiles arch=x86_64-solaris size=10 + bin/x86_64-solaris/devnag + +name venn +category Package +revision 15878 +shortdesc Creating Venn diagrams with MetaPost +relocated 1 +longdesc MetaPost macros for venn diagrams. +containersize 2120 +containerchecksum 617ba85e996943d62a33acb2535e23700fffc63331741065faee558bebde608232a31bd73aa79ad707b107a9adda8b454f9b81dee184a64d94f32c44d76180c0 +doccontainersize 684 +doccontainerchecksum 0b1940cdc2bcbb7e2f103497622c4d5971abf4f6f4885f60b35a360cd655c34cd789ecbfbef9d35c61611ef22198200b11008f4f59588a5cd111870b77ba19d5 +docfiles size=1 + RELOC/doc/metapost/venn/README +runfiles size=2 + RELOC/metapost/venn/venn.mp +catalogue-also venndiagram +catalogue-ctan /graphics/metapost/contrib/macros/venn +catalogue-license lppl +catalogue-topics diagram-maths + +name venndiagram +category Package +revision 47952 +shortdesc Creating Venn diagrams with TikZ +relocated 1 +longdesc The package assists generation of simple two- and three-set +longdesc Venn diagrams for lectures or assignment sheets. The package +longdesc requires the TikZ package. +containersize 4200 +containerchecksum cf57b84165067234f5be58b2300eebb77339c33b883895e47cffdbc7c4acb6d013db7ace1eb47ef491e21526cea8b3ab993fac836498bfa16a5cea700caedd5b +doccontainersize 338640 +doccontainerchecksum 966f7eea0d4c40004b9710c53fdd6838b757a2c8ed47b4098ca2d47834ba52575ac7c062497f1a6d26dadfcf0d7f95f2213d34bc638262520aade0e78beac827 +docfiles size=88 + RELOC/doc/latex/venndiagram/CHANGES + RELOC/doc/latex/venndiagram/README details="Readme" + RELOC/doc/latex/venndiagram/samples/venn-sample.pdf details="Example of use" + RELOC/doc/latex/venndiagram/samples/venn-sample.tex + RELOC/doc/latex/venndiagram/venndiagram.pdf details="Package documentation" +srccontainersize 9832 +srccontainerchecksum 16bfa22856952e9c0595532432eb774a2ef44f52950002db670e5f3e22af02981305ed5eda1265b6d1a97f43d9a6292311bad5268a562aff6ab00f4a14a058f7 +srcfiles size=22 + RELOC/source/latex/venndiagram/venndiagram.dtx + RELOC/source/latex/venndiagram/venndiagram.ins +runfiles size=11 + RELOC/tex/latex/venndiagram/venndiagram.sty +catalogue-also venn +catalogue-contact-home http://www.dickimaw-books.com/ +catalogue-ctan /macros/latex/contrib/venndiagram +catalogue-license lppl +catalogue-topics diagram-maths pgf-tikz +catalogue-version 1.2 + +name venturisadf +category Package +revision 19444 +shortdesc Venturis ADF fonts collection +relocated 1 +longdesc Serif and sans serif complete text font families, in both Adobe +longdesc Type 1 and OpenType formats for publication. The family is +longdesc based on Utopia family, and has been modified and developed by +longdesc the Arkandis Digital foundry. Support for using the fonts, in +longdesc LaTeX, is also provided (and makes use of the nfssext-cfr +longdesc package). +execute addMap yv1.map +execute addMap yv2.map +execute addMap yv3.map +execute addMap yvo.map +execute addMap yvt.map +containersize 3866864 +containerchecksum 0f6b7369c1d589f9725897182f854f008b73dbda47078285635e87d480011bea0610da81512416b0963aa55487d646cd2a957002552ef2b8609d4536c0dd96bf +doccontainersize 412772 +doccontainerchecksum b46066744794a8ae1443b18bf1f6ce3d586c8ee8fa5c3273db608751979089b2407a6feab421a3c3c738a682e83e2f44bc5ac86eef1d51fa914ed0f0df985bcb +docfiles size=122 + RELOC/doc/fonts/venturisadf/LICENSE-utopia.txt + RELOC/doc/fonts/venturisadf/LIST-Venturis.txt + RELOC/doc/fonts/venturisadf/README details="Readme" + RELOC/doc/fonts/venturisadf/manifest.txt + RELOC/doc/fonts/venturisadf/venturisadf.pdf details="Documentation: installation and use" + RELOC/doc/fonts/venturisadf/venturisadf.tex +srccontainersize 14752 +srccontainerchecksum 2deac2b1cd151e41ea604d99209174b28de33d9f9358353b7d8b120c8e3cf45552947497e6d54cdf4024f5a071c39246221fd25cbca09cee7984755036993a40 +srcfiles size=75 + RELOC/source/fonts/venturisadf/lining.etx + RELOC/source/fonts/venturisadf/oldstyle.etx + RELOC/source/fonts/venturisadf/rename.venturis + RELOC/source/fonts/venturisadf/rename.venturis2 + RELOC/source/fonts/venturisadf/rename.venturisold + RELOC/source/fonts/venturisadf/rename.venturissans + RELOC/source/fonts/venturisadf/rename.venturissans2 + RELOC/source/fonts/venturisadf/rename.venturistitling + RELOC/source/fonts/venturisadf/resetalt.mtx + RELOC/source/fonts/venturisadf/t1-dotalt-f_f.etx + RELOC/source/fonts/venturisadf/t1-f_f.etx + RELOC/source/fonts/venturisadf/t1-venturis.etx + RELOC/source/fonts/venturisadf/t1-venturisold-longs.etx + RELOC/source/fonts/venturisadf/t1-venturisold.etx + RELOC/source/fonts/venturisadf/t1j-f_f.etx + RELOC/source/fonts/venturisadf/t1j-venturis.etx + RELOC/source/fonts/venturisadf/ts1-euro.etx + RELOC/source/fonts/venturisadf/ucdotalt.etx + RELOC/source/fonts/venturisadf/yv1-drv.tex + RELOC/source/fonts/venturisadf/yv1-map.tex + RELOC/source/fonts/venturisadf/yv2-drv.tex + RELOC/source/fonts/venturisadf/yv2-map.tex + RELOC/source/fonts/venturisadf/yv3-drv.tex + RELOC/source/fonts/venturisadf/yv3-map.tex + RELOC/source/fonts/venturisadf/yvo-drv.tex + RELOC/source/fonts/venturisadf/yvo-map.tex + RELOC/source/fonts/venturisadf/yvt-drv.tex + RELOC/source/fonts/venturisadf/yvt-map.tex +runfiles size=2660 + RELOC/fonts/afm/arkandis/venturis/yvtb8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtb8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbc8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtbc8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbci8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtbci8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbd8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbi8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtbi8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvth8a.afm + RELOC/fonts/afm/arkandis/venturis/yvthi8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtr8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtr8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtrc8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtrc8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtrci8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtrci8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtrdl8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtri8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtri8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2b8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2b8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2bi8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2bi8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2m8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2mi8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2r8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2r8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2ri8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2ri8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2x8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2xi8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvob8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvobi8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvodd8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvor8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvori8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1b8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1b8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1b8ax.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bd8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bi8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bi8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bi8ax.afm + RELOC/fonts/afm/arkandis/venturissans/yv1d8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1dd8au.afm + RELOC/fonts/afm/arkandis/venturissans/yv1di8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1h8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ho8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1l8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1li8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1r8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1r8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1r8ax.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ri8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ri8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ri8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3b8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3b8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3b8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3bi8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3bi8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3bi8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3r8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3r8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3r8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3ri8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3ri8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3ri8ax.afm + RELOC/fonts/enc/dvips/venturisadf/t1-dotalt-f_f-venturisadf.enc + RELOC/fonts/enc/dvips/venturisadf/t1-f_f-venturisadf.enc + RELOC/fonts/enc/dvips/venturisadf/t1-venturis.enc + RELOC/fonts/enc/dvips/venturisadf/t1-venturisold-longs.enc + RELOC/fonts/enc/dvips/venturisadf/ts1-euro-venturisadf.enc + RELOC/fonts/map/dvips/venturis/yvt.map + RELOC/fonts/map/dvips/venturis2/yv2.map + RELOC/fonts/map/dvips/venturisold/yvo.map + RELOC/fonts/map/dvips/venturissans/yv1.map + RELOC/fonts/map/dvips/venturissans2/yv3.map + RELOC/fonts/tfm/arkandis/venturis/t1-yvtb-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtb.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbci.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbd-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbi-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbi.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvth.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvthi.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtr-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtr.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrci.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrdl.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtri-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtri.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbci.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrci.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtb-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtb.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbc.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbci.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbd-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbi-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbi.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvth.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvthi.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtr-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtr.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrc.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrci.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrdl.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtri-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtri.tfm + RELOC/fonts/tfm/arkandis/venturis/vent-yvtr.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbciw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbciw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbd8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbd8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbiw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbiw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvth8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvth8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvthi8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvthi8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrajw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtraw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrciw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrciw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrdl8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrdl8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtriw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtriw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2b-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2b.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2bi-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2bi.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2m.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2mi.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2r-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2r.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2ri-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2ri.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2x.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2xi.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2b-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2b.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2bi-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2bi.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2m.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2mi.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2r-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2r.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2ri-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2ri.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2x.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2xi.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2m8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2m8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2mi8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2mi8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2x8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2x8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2xi8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2xi8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvob.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvobi.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvodd.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvor.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvori.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvob.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvobi.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvodd.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvor.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvori.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoab8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoabi8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoar8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoari8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvob8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvob8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvobi8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvobi8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvodd8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvodd8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvor8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvor8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvori8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvori8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1b.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bd.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bi.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1d.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1dd-u.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1di.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1h.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ho.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1l.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1li.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1r.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ri.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1b.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bd.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bi.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1d.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1dd-u.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1di.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1h.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ho.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1l.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1li.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1r.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ri.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bd8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bd8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1d8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1d8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1dd8cu.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1dd8tu.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1di8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1di8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1h8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1h8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ho8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ho8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1l8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1l8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1li8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1li8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3b.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3bi.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3r.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3ri.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3b.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3bi.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3r.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3ri.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8tx.tfm + RELOC/fonts/type1/arkandis/venturis/yvtb8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtb8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtb8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtb8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbc8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbc8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbc8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbc8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbci8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbci8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbci8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbci8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbd8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbd8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbi8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbi8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbi8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbi8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvth8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvth8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvthi8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvthi8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtr8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtr8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtr8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtr8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrc8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrc8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrc8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrc8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrci8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrci8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrci8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrci8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrdl8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrdl8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtri8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtri8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtri8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtri8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2b8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2b8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2b8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2b8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2bi8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2bi8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2bi8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2bi8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2m8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2m8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2mi8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2mi8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2r8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2r8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2r8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2r8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2ri8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2ri8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2ri8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2ri8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2x8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2x8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2xi8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2xi8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvob8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvob8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvobi8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvobi8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvodd8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvodd8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvor8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvor8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvori8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvori8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1b8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1b8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1b8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1b8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1b8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1b8ax.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bd8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bd8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bi8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bi8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ax.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1d8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1d8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1dd8au.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1dd8au.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1di8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1di8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1h8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1h8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ho8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ho8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1l8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1l8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1li8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1li8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1r8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1r8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1r8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1r8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1r8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1r8ax.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ri8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ri8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3b8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3b8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3r8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3r8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ax.pfm + RELOC/fonts/vf/arkandis/venturis/yvtb8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtb8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtb8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtb8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbciw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbciw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbd8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbd8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbiw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbiw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvth8c.vf + RELOC/fonts/vf/arkandis/venturis/yvth8t.vf + RELOC/fonts/vf/arkandis/venturis/yvthi8c.vf + RELOC/fonts/vf/arkandis/venturis/yvthi8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrajw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtraw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrciw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrciw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrdl8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtrdl8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtriw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtriw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrw8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2m8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2m8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2mi8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2mi8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2x8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2x8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2xi8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2xi8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoab8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoabi8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoar8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoari8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvob8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvob8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvobi8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvobi8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvodd8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvodd8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvor8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvor8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvori8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvori8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8tx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bd8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bd8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8tx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1d8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1d8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1dd8cu.vf + RELOC/fonts/vf/arkandis/venturissans/yv1dd8tu.vf + RELOC/fonts/vf/arkandis/venturissans/yv1di8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1di8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1h8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1h8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ho8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ho8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1l8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1l8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1li8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1li8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8tx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8tx.vf + RELOC/tex/latex/venturis/t1yvt.fd + RELOC/tex/latex/venturis/t1yvtajw.fd + RELOC/tex/latex/venturis/t1yvtaw.fd + RELOC/tex/latex/venturis/t1yvtd.fd + RELOC/tex/latex/venturis/t1yvtj.fd + RELOC/tex/latex/venturis/t1yvtjw.fd + RELOC/tex/latex/venturis/t1yvtw.fd + RELOC/tex/latex/venturis/ts1yvt.fd + RELOC/tex/latex/venturis/ts1yvtajw.fd + RELOC/tex/latex/venturis/ts1yvtaw.fd + RELOC/tex/latex/venturis/ts1yvtd.fd + RELOC/tex/latex/venturis/ts1yvtj.fd + RELOC/tex/latex/venturis/ts1yvtjw.fd + RELOC/tex/latex/venturis/ts1yvtw.fd + RELOC/tex/latex/venturis2/t1yv2.fd + RELOC/tex/latex/venturis2/ts1yv2.fd + RELOC/tex/latex/venturisadf/venturis.sty + RELOC/tex/latex/venturisadf/venturis2.sty + RELOC/tex/latex/venturisadf/venturisold.sty + RELOC/tex/latex/venturisold/t1yvo.fd + RELOC/tex/latex/venturisold/t1yvoa.fd + RELOC/tex/latex/venturisold/t1yvoad.fd + RELOC/tex/latex/venturisold/t1yvod.fd + RELOC/tex/latex/venturisold/ts1yvo.fd + RELOC/tex/latex/venturisold/ts1yvoa.fd + RELOC/tex/latex/venturisold/ts1yvoad.fd + RELOC/tex/latex/venturisold/ts1yvod.fd + RELOC/tex/latex/venturissans/t1yv1.fd + RELOC/tex/latex/venturissans/t1yv1d.fd + RELOC/tex/latex/venturissans/ts1yv1.fd + RELOC/tex/latex/venturissans/ts1yv1d.fd + RELOC/tex/latex/venturissans2/t1yv3.fd + RELOC/tex/latex/venturissans2/ts1yv3.fd +catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm +catalogue-ctan /fonts/venturisadf +catalogue-license other-free +catalogue-topics font font-type1 font-otf +catalogue-version 1.005 + +name verbasef +category Package +revision 21922 +shortdesc VERBatim Automatic Splitting of External Files +relocated 1 +longdesc The package allows you to input (subsections of a) file, print +longdesc them in verbatim mode, while automatically breaking up the +longdesc input lines into pieces of a given length, which are output as +longdesc figures. These figures are posted using the [H] specification, +longdesc which forces LaTeX to place the figure at the spot of +longdesc invocation, rather than floating the figures to the top of the +longdesc next page. The package requires the verbatim, here and vrbexin +longdesc packages. +containersize 4456 +containerchecksum 483a75883ea602f674abec796199c5206420079c6ad5e4c3ac22bd836e7ce02f686cc8b9b749f806fe8e44bce8bd35fc6b17865fc076c72f2223143ee0e8a123 +doccontainersize 336984 +doccontainerchecksum c88b1275eb4e3b87172e6cd157ad868b7b230d96d00ca0dc550757fdb89648a40b1090b771dcd0776b6f86a9194c553f265d990220348e5bbf9c7aa792f42914 +docfiles size=84 + RELOC/doc/latex/verbasef/verbasef-doc.pdf details="Package documentation" + RELOC/doc/latex/verbasef/verbasef-doc.tex +runfiles size=4 + RELOC/tex/latex/verbasef/verbasef.sty +catalogue-ctan /macros/latex/contrib/verbasef +catalogue-license gpl +catalogue-topics verbatim listing +catalogue-version 1.1 + +name verbatimbox +category Package +revision 33197 +shortdesc Deposit verbatim text in a box +relocated 1 +longdesc The package provides a verbbox environment (which uses +longdesc techniques similar to those of the boxedverbatim environment of +longdesc the moreverb package) to place its contents into a globally +longdesc available box, or into a box specified by the user. The global +longdesc box may then be used in a variety of situations (for example, +longdesc providing a replica of the boxedverbatim environment itself). A +longdesc valuable use is in places where the standard verbatim +longdesc environment (which is based on a trivlist) may not appear. The +longdesc package makes use of the verbatim package (which is a required +longdesc part of any LaTeX distribution). +containersize 3472 +containerchecksum dc686ec1e86c877a6f1467f4935f2337aedfaec32bdf867985ef05405569572c72d3593e75580c72a7bb3ee698798813094eabf738b3157194517839fbe47de5 +doccontainersize 246384 +doccontainerchecksum 9f8fa05294b68fb0994f01e36b468d341b76aa97bde983c7eab781c92c8bfd898033235a328a1fa858dee457f515d6640f780b330600418f2a7eb0fb45f0ef3f +docfiles size=69 + RELOC/doc/latex/verbatimbox/README details="Readme" + RELOC/doc/latex/verbatimbox/verbatimbox.pdf details="package documentation" + RELOC/doc/latex/verbatimbox/verbatimbox.tex +runfiles size=3 + RELOC/tex/latex/verbatimbox/verbatimbox.sty +catalogue-also fancyvrb +catalogue-ctan /macros/latex/contrib/verbatimbox +catalogue-license lppl +catalogue-topics verbatim boxing +catalogue-version 3.13 + +name verbatimcopy +category Package +revision 15878 +shortdesc Make copies of text documents from within LaTeX +relocated 1 +longdesc This package provides \VerbatimCopy{in}{out} that will enable +longdesc LaTeX to take a verbatim copy of one text file, and save it +longdesc under another name. The package provides a means to specify the +longdesc output directory to be used, but does no checking and may +longdesc therefore overwrite an important file if used injudiciously. +containersize 2676 +containerchecksum e415f9d74f35e28c73bec5442124b7c426aff8de013aa8a2af9c234ae3ea20c131d5ad21803c92eaaf6d0aef6584b7f9b83218f9665a959ec0d6ba3ef606b081 +doccontainersize 164540 +doccontainerchecksum 0281da688f11d2a2fefc053d8f7866878b337ee85114c551176d6c329009f8c1a8479ccb29f202106f745ba215728e7f08509898182521bcac433699e22843a0 +docfiles size=46 + RELOC/doc/latex/verbatimcopy/README details="Readme" + RELOC/doc/latex/verbatimcopy/verbatimcopy.pdf details="Package documentation" + RELOC/doc/latex/verbatimcopy/verbatimcopy.tex +runfiles size=2 + RELOC/tex/latex/verbatimcopy/verbatimcopy.sty +catalogue-ctan /macros/latex/contrib/verbatimcopy +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 0.06 + +name verbdef +category Package +revision 17177 +shortdesc Define commands which expand to verbatim text +relocated 1 +longdesc The package defines a single command \verbdef (which has a +longdesc *-form, like \verb). \verbdef will define a robust command +longdesc whose body expands to verbatim text. By using commands defined +longdesc by \verbdef, one can put verbatim text into the arguments of +longdesc commands; since the defined command is robust, it doesn't +longdesc matter if the argument is moving. (Full details of syntax and +longdesc caveats about use are in comments in the file itself.) +containersize 1684 +containerchecksum f6bcac8b35bfe707d4e39cf625987ddee6197977894e9f8ded9e3a715e0968d2d1fab07c57edf1d38150ae0c9cfc937230c9fccec431e73ae235a4cd44ed8609 +doccontainersize 54124 +doccontainerchecksum e64d4bf3018de72a131e7688ebbfcbaa59914c0542d2c632a91097a77f404307f9bdfc613638badb3ccca3854313f17a7a5bfb6426f467bcc98ed235af6ba49c +docfiles size=17 + RELOC/doc/latex/verbdef/verbdef.pdf details="Package documentation" + RELOC/doc/latex/verbdef/verbdef.tex +runfiles size=1 + RELOC/tex/latex/verbdef/verbdef.sty +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-license lppl +catalogue-topics verbatim +catalogue-version 0.2 + +name verbments +category Package +revision 23670 +shortdesc Syntax highlighting of source code in LaTeX documents +relocated 1 +longdesc The package provides an environment for syntax highlighting +longdesc source code in LaTeX documents. The highlighted source code +longdesc output is formatted via powerful Pygments library of the Python +longdesc language. +containersize 2200 +containerchecksum 7b5780efe1b6e4cc62909df5d5cd4a03be3dc83717f20738a83f37f539103ad12e382c0a3891b8e81b44086f92b7277b17e88c4e7d81123c04941c38114f23c8 +doccontainersize 74784 +doccontainerchecksum 744471659373efbe040bd0698a9b33a0942d5df33312ad3cdd0f02c0e16fd2c67ea44c4ab13ce83ddca6a5e8ca68c8c8bc40c1a64470a9716511e2275683b004 +docfiles size=28 + RELOC/doc/latex/verbments/README details="Readme" + RELOC/doc/latex/verbments/verbments.pdf details="Package documentation" + RELOC/doc/latex/verbments/verbments.tex +runfiles size=2 + RELOC/tex/latex/verbments/verbments.sty +catalogue-also minted texments +catalogue-ctan /macros/latex/contrib/verbments +catalogue-license lppl1.2 +catalogue-topics listing +catalogue-version 1.2 + +name verifica +category Package +revision 56625 +shortdesc Typeset (Italian high school) exercises +relocated 1 +longdesc This class provides various environments and commands to +longdesc produce the typical exercises contained in a test. It is mainly +longdesc intended for Italian high school teachers, as the style is +longdesc probably more in line with Italian high school tests. +containersize 3804 +containerchecksum 8c3258fdf2040e00495b56605f88160b5179743a7ae3abc6334e734ba9f1fb122bf2e4847fd9a577c1221c9e22dcfa650f15612d7a005b3719ce6c92df180bb3 +doccontainersize 1158784 +doccontainerchecksum de41df53ca78cabf7ab3f672dd00c0042cfd8a71219d694985c18aeffa045dcd37c7b999058d7edf6a2348d83c9ae27d1e242f17a91d43b61f2b873ee2d157ef +docfiles size=363 + RELOC/doc/latex/verifica/README details="Readme" + RELOC/doc/latex/verifica/example1.pdf details="Example of use" language="it" + RELOC/doc/latex/verifica/example1.tex + RELOC/doc/latex/verifica/example2.pdf + RELOC/doc/latex/verifica/example2.tex + RELOC/doc/latex/verifica/example3.pdf + RELOC/doc/latex/verifica/example3.tex + RELOC/doc/latex/verifica/example4.pdf + RELOC/doc/latex/verifica/example4.tex + RELOC/doc/latex/verifica/example5.pdf + RELOC/doc/latex/verifica/example5.tex + RELOC/doc/latex/verifica/ver-doc.sty + RELOC/doc/latex/verifica/verifica-template.tex + RELOC/doc/latex/verifica/verifica.pdf details="Package documentation" language="it" +srccontainersize 21712 +srccontainerchecksum 85e46be6f8ee729753362243492c7946166049ebd0a89f0871bb9308e6803f5ef9416c30fe380be4961aa466a03afd9541d09e5920a196550582d326a6de8b9f +srcfiles size=23 + RELOC/source/latex/verifica/verifica.dtx + RELOC/source/latex/verifica/verifica.ins +runfiles size=3 + RELOC/tex/latex/verifica/verifica.cls +catalogue-ctan /macros/latex/contrib/verifica +catalogue-license lppl1.3 +catalogue-topics class exercise exam +catalogue-version 1.3 + +name verifiche +category Package +revision 57766 +shortdesc A LaTeX package to typeset (Italian) high school tests +relocated 1 +longdesc The purpose of this package is to manage the exercises for a +longdesc test, their points, levels of difficulty, and solutions. Some +longdesc typical formats of exercises are already implemented: Plain +longdesc exercise "Complete the Text" "True or false" Closed questions +longdesc Open questions "Find the error" +containersize 4324 +containerchecksum db44ee3db5e17a7d8508eed3fd93781bd2ccb1a29ec04fcf2a28b91fdeaf4130b8ea5f09c0be79c5ed9da9b3ea729eb9b31b31374ce82e9602501e4cfb26cf9d +doccontainersize 695144 +doccontainerchecksum d3477629537881fdc6d8f7b739daa14178de3c5f9a4b35c97829c6fde2de82a85b960cd408cf2126e87a16423d985c2ffabaffa56a891893006d2ef8c9fd04ab +docfiles size=173 + RELOC/doc/latex/verifiche/README.md details="Readme" + RELOC/doc/latex/verifiche/verifiche-example.pdf details="Example of use" language="it" + RELOC/doc/latex/verifiche/verifiche-example.tex + RELOC/doc/latex/verifiche/verifiche.pdf details="Package documentation" language="it" +srccontainersize 14876 +srccontainerchecksum b4aa0ec88ff81d9bef8cb59cd3ce90f1d5fc08c26b9224a5d561c54ff144af2719affeb32549f5a5691c2894f77d23c941d960413e69a3af3b5ca27c944d19ef +srcfiles size=15 + RELOC/source/latex/verifiche/verifiche.dtx + RELOC/source/latex/verifiche/verifiche.ins +runfiles size=4 + RELOC/tex/latex/verifiche/verifiche.sty +catalogue-ctan /macros/latex/contrib/verifiche +catalogue-license lppl1.3 +catalogue-topics exam exercise +catalogue-version 4.1 + +name verse +category Package +revision 34017 +shortdesc Aids for typesetting simple verse +relocated 1 +longdesc The package documentation discusses approaches to the problem; +longdesc the package is strong on layout, from simple alternate-line +longdesc indentation to the Mouse's tale from Alice in Wonderland. +containersize 3160 +containerchecksum 3f9878dea106ec87f2b64960c5824fda6eb9f700b753a530cec7e1b8519dc9a817cf7ea74c13eb806497740501122790fb29f6e3cc383a8a89ad10e756b7a00a +doccontainersize 422968 +doccontainerchecksum 6f255167db9ebb84cf86a14e6999410efb22d087d97b82837c3ebc5bf69f0990e77ae0325618ba3ea02c116741422a531f646929eab2b5810b9f3978be6651f2 +docfiles size=105 + RELOC/doc/latex/verse/README details="Readme" + RELOC/doc/latex/verse/verse.pdf details="Package documentation" +srccontainersize 15460 +srccontainerchecksum ce1f07f40bd329383d8a0fc97038ee975d61b58eb0ff60f8a1894a6028b2afb9db58b7db599d252cb88fbc040d9938b7b934b6e8ad683e7f4de2be9a15b37820 +srcfiles size=16 + RELOC/source/latex/verse/verse.dtx + RELOC/source/latex/verse/verse.ins +runfiles size=3 + RELOC/tex/latex/verse/verse.sty +catalogue-ctan /macros/latex/contrib/verse +catalogue-license lppl +catalogue-topics verse +catalogue-version 2.4b + +name version +category Package +revision 21920 +shortdesc Conditionally include text +relocated 1 +longdesc Defines macros \includeversion{NAME} and \excludeversion{NAME}, +longdesc each of which defines an environment NAME whose text is to be +longdesc included or excluded from compilation. Although the command +longdesc syntax is very similar to that of comment, comment.sty is to be +longdesc preferred to version.sty for documents where significant chunks +longdesc of text may be excluded. +containersize 2468 +containerchecksum 9b57997e63fab25d916630bb086b7d4372e094e64175caa761c20c3c2d426a58fdc42ef661bbc1ec47f2a8d9c617b7e4dc405499c01b84eb53ca0d10f6c9108d +doccontainersize 304932 +doccontainerchecksum 9bada1489523eccc809d4b9654411addf31f2d63efc1f1f9d68b81e2bb3d9365e2709f55a77c53c3d2231b8da89114bd5a4217c8d18553234a980d379b1a0084 +docfiles size=75 + RELOC/doc/latex/version/version-doc.pdf details="Package documentation" + RELOC/doc/latex/version/version-doc.tex +runfiles size=2 + RELOC/tex/latex/version/version.sty +catalogue-also verbatim versions optional comment +catalogue-ctan /macros/latex/contrib/version +catalogue-license other-free +catalogue-topics cond-comp +catalogue-version 2.0 + +name versions +category Package +revision 21921 +shortdesc Optionally omit pieces of text +relocated 1 +longdesc Stephan Bellantoni's version has provided preamble commands for +longdesc selecting environments to be included/excluded. This package +longdesc does the same, but corrects, improves, and extends it in both +longdesc implementation and function. +containersize 5828 +containerchecksum 4a6474f6a014789daae358c5b73a85bcb0894eb67d09a530f3bdd8e4571552d0a3e1983b5ba40d33122caad8bd457f255b7f1bb34e9797c5137ccf461707dbbc +doccontainersize 353936 +doccontainerchecksum ffebda27a9000a0c8bd8462b750e34331968aa1abd5c7039e198950eac6dc02796da6a02a258bcfcd84ca12b3d5f6d0ab11587bb5d6fa9b3121297aec2179ccb +docfiles size=89 + RELOC/doc/latex/versions/versions-doc.pdf details="Package documentation" + RELOC/doc/latex/versions/versions-doc.tex +runfiles size=4 + RELOC/tex/latex/versions/versions.sty +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-license lppl1.3 +catalogue-topics cond-comp +catalogue-version 0.55 + +name versonotes +category Package +revision 55777 +shortdesc Display brief notes on verso pages +relocated 1 +longdesc This package allows you to place notes on the verso pages of an +longdesc otherwise single-sided document. If, in the run of text, you +longdesc include a call to the macro \versonote{This is a remark}, then +longdesc that text will be placed on the opposite (ie, 'verso') page, +longdesc lined up with the macro call. +containersize 2632 +containerchecksum adda8d14021b5dd1fabad9348b0a9c1e6a1c0c77030afdf304a014883e19600e07ba64b4224319470b418d2822ccc08413dde791801f3f21da34b0d08c21cde2 +doccontainersize 210048 +doccontainerchecksum bb2dcb4163ca05501a73b45f2dad0d8e410525805612ce6fd1033fa4773c6e1213edbcc51e541b66545becef2a160c8b403ed6a54c882421ef11293fe222b639 +docfiles size=58 + RELOC/doc/latex/versonotes/LICENCE.txt + RELOC/doc/latex/versonotes/README details="Readme" + RELOC/doc/latex/versonotes/sample.pdf details="Example of usage" + RELOC/doc/latex/versonotes/sample.tex + RELOC/doc/latex/versonotes/versonotes.pdf details="Package documentation" +srccontainersize 8212 +srccontainerchecksum ba566ae4827fc08f2403657f869ac3581c1f00daf70b4859775d0fe1c550212d98a4f78e3ecb0d74a5c298ef054b22c9ebd0bde410ccd241d6b863caa364d6fe +srcfiles size=8 + RELOC/source/latex/versonotes/versonotes.drv + RELOC/source/latex/versonotes/versonotes.dtx + RELOC/source/latex/versonotes/versonotes.ins +runfiles size=2 + RELOC/tex/latex/versonotes/versonotes.sty +catalogue-contact-home https://nxg.me.uk/dist/versonotes/ +catalogue-ctan /macros/latex/contrib/versonotes +catalogue-license lppl1.3 +catalogue-topics notes +catalogue-version 0.4 + +name vertbars +category Package +revision 49429 +shortdesc Mark vertical rules in margin of text +relocated 1 +longdesc This package is an extension to lineno, replacing that +longdesc package's line numbers with bars to the left or right of the +longdesc text. +containersize 1220 +containerchecksum 3c3c905c6bcb013a36bc2eede14d84315f49075ab5f63376e9a440e4e7fb281ee5086b5bf1953782641284027dd8e7058e0accdafdc9295a19ebfc0088d8f7e1 +doccontainersize 163000 +doccontainerchecksum de6df3133c801e941cbb00c552cb2cdb1d556f099c402a0a66f460d5c7c1c6e28ec7d983563f20a609a5b5266420dcf8c204d1b6bc685031cc41fe2770a5ea13 +docfiles size=42 + RELOC/doc/latex/vertbars/README.md details="Readme" + RELOC/doc/latex/vertbars/vertbars.pdf details="Package documentation" + RELOC/doc/latex/vertbars/vertbars.tex +runfiles size=1 + RELOC/tex/latex/vertbars/vertbars.sty +catalogue-also changebar +catalogue-contact-repository https://github.com/wspr/herries-press/ +catalogue-ctan /macros/latex/contrib/vertbars +catalogue-license lppl1.3c +catalogue-topics editorial +catalogue-version 1.0c + +name vgrid +category Package +revision 32457 +shortdesc Overlay a grid on the printed page +relocated 1 +longdesc The package overlays a grid (whose spacing is \baselineskip, +longdesc which offers guidlines for considering the "rhythm" of the +longdesc document on the page. +containersize 1216 +containerchecksum ee46d8ae234af6f0b3bc8689cceab7d5ce8e7229b132c396a000cca15cde0ee422f91b2d4fc485c743e3a896bbab5ec90b24ea5d398bf63342751bf75143330a +doccontainersize 24004 +doccontainerchecksum 92e5498cea29d5fc1b373619e97c6692fef3f63002757a954649c0c4f9ef7b6594d61cce017bee709f0f1898777f962c25053b64da8079c8c9c9893f821a9aa6 +docfiles size=6 + RELOC/doc/latex/vgrid/vgrid.pdf details="Package documentation" +srccontainersize 2264 +srccontainerchecksum 5589904860a74979a070224b252be9b302e0f7128946624fb671e8618a2afc55c526631217348eaf84d7c0f827dfef7aac7a13a953e1ff82a61211eb2e070e36 +srcfiles size=3 + RELOC/source/latex/vgrid/vgrid.dtx + RELOC/source/latex/vgrid/vgrid.ins +runfiles size=1 + RELOC/tex/latex/vgrid/vgrid.sty +catalogue-ctan /macros/latex/contrib/vgrid +catalogue-license lppl1.3 +catalogue-topics layout-supp +catalogue-version 0.1 + +name vhistory +category Package +revision 30080 +shortdesc Support for creating a change log +relocated 1 +longdesc Vhistory simplifies the creation of a history of versions of a +longdesc document. You can easily extract information like the current +longdesc version of a list of authors from that history. It helps you to +longdesc get consistent documents. The package sets, which is used by +longdesc vhistory, allows you to use sets containing text. You can use +longdesc the usual operations to create the union of sets or the +longdesc intersection of sets etc. +containersize 8276 +containerchecksum f1747b1c112c69cdc506234c571335647b365eb92a4054c70cb08752dc1da92ac4e84d533083cdee76f6398f5f1bf04b20b94cf38ddf13947d4086c5599529fc +doccontainersize 336696 +doccontainerchecksum 60a8100cc10df177b04eba8751208c515eee9601806324184f737491707e1e4d453a92b0d12a16d6cc1af319a55c79afc8922d1378f8714990c97b5779540763 +docfiles size=122 + RELOC/doc/latex/vhistory/CHANGES + RELOC/doc/latex/vhistory/README details="Readme" + RELOC/doc/latex/vhistory/README.doc + RELOC/doc/latex/vhistory/de_beispiel.tex + RELOC/doc/latex/vhistory/de_einleitung.tex + RELOC/doc/latex/vhistory/de_sets.tex + RELOC/doc/latex/vhistory/de_vhistory.tex + RELOC/doc/latex/vhistory/en_example.tex + RELOC/doc/latex/vhistory/en_introduction.tex + RELOC/doc/latex/vhistory/en_sets.tex + RELOC/doc/latex/vhistory/en_vhistory.tex + RELOC/doc/latex/vhistory/hyperref.cfg + RELOC/doc/latex/vhistory/vh_set_example.pdf details="Short example" + RELOC/doc/latex/vhistory/vh_set_example.tex + RELOC/doc/latex/vhistory/vh_sets_de.pdf details="Package documentation (both packages)" language="en" + RELOC/doc/latex/vhistory/vh_sets_de.tex + RELOC/doc/latex/vhistory/vh_sets_en.pdf details="Package documentation (both packages)" language="en" + RELOC/doc/latex/vhistory/vh_sets_en.tex +runfiles size=9 + RELOC/tex/latex/vhistory/sets.sty + RELOC/tex/latex/vhistory/vhistory.sty +catalogue-ctan /macros/latex/contrib/vhistory +catalogue-license lppl1.2 +catalogue-topics version-control +catalogue-version 1.6.1 + +name visualfaq +category Package +revision 38647 +shortdesc A Visual LaTeX FAQ +relocated 1 +longdesc Having trouble finding the answer to a LaTeX question? The +longdesc Visual LaTeX FAQ is an innovative new search interface that +longdesc presents over a hundred typeset samples of frequently requested +longdesc document formatting. Simply click on a hyperlinked piece of +longdesc text and the Visual LaTeX FAQ will send your Web browser to the +longdesc appropriate page in the UK TeX FAQ. +containersize 560 +containerchecksum 6b88343feaf39cd314e9453452da245054d3192f02ba0b2eb6e55a9bbca434e9b74cb16ad0902a6f5352d9ef945a4176e2e1998a7f0bd1cd75d2a3da7f4a203a +doccontainersize 5246876 +doccontainerchecksum eea0f022741d52ebb3613e977948c0428ddbe5b7d41faa659e888b48b7bb4e655a0e693d1dfd92d40a52a67e6df9ad386ac64d2ffee7c2732feb2077d4b24f77 +docfiles size=1533 + RELOC/doc/latex/visualfaq/README details="Readme" + RELOC/doc/latex/visualfaq/source/README details="Readme" + RELOC/doc/latex/visualfaq/source/anotherarticle.pdf + RELOC/doc/latex/visualfaq/source/book-montage.png + RELOC/doc/latex/visualfaq/source/fuzzytext.pdf + RELOC/doc/latex/visualfaq/source/labelgraph.pdf + RELOC/doc/latex/visualfaq/source/lorem-ipsum-left.jpg + RELOC/doc/latex/visualfaq/source/lorem-ipsum-right.jpg + RELOC/doc/latex/visualfaq/source/lorem-ipsum.jpg + RELOC/doc/latex/visualfaq/source/musixtex.png + RELOC/doc/latex/visualfaq/source/visfaq-html.png + RELOC/doc/latex/visualfaq/source/visualFAQ.ind + RELOC/doc/latex/visualfaq/source/visualFAQ.ind2 + RELOC/doc/latex/visualfaq/source/visualFAQ.tex + RELOC/doc/latex/visualfaq/source/watermark.pdf + 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-license lppl +catalogue-topics faq + +name visualpstricks +category Package +revision 39799 +shortdesc Visual help for PSTricks based on images with minimum text +relocated 1 +longdesc Visual help for PSTricks based on images with minimum text. One +longdesc image per command or per parameter. +containersize 432 +containerchecksum fa501a3ed6506fe52d3d31515f453db5378c7d01415ed05c0870ea15051d34dc5a564ab8ef2ef4608f616b657ecf29f5b18a8920bdf1606f78928fc505cfb0d1 +doccontainersize 13043468 +doccontainerchecksum 3d2dfea937b2b99e148fb0220067b9a777126854d82cd1e591f84a1d13e1090755660509814e4690dad20d2568286ce05653d3b5c7c6653df61d27229c9cd5e2 +docfiles size=12585 + RELOC/doc/latex/visualpstricks/README.txt details="Readme" + RELOC/doc/latex/visualpstricks/Source/3dplot1.tex + RELOC/doc/latex/visualpstricks/Source/3dplot2.tex + RELOC/doc/latex/visualpstricks/Source/3dplot3.tex + RELOC/doc/latex/visualpstricks/Source/Cde.tex + RELOC/doc/latex/visualpstricks/Source/VPST.ps + RELOC/doc/latex/visualpstricks/Source/VPST.tex + RELOC/doc/latex/visualpstricks/Source/VPSTdebut.tex + RELOC/doc/latex/visualpstricks/Source/VPSTobj.tex + RELOC/doc/latex/visualpstricks/Source/VPSTtitre.tex + RELOC/doc/latex/visualpstricks/Source/XXX1.ps + RELOC/doc/latex/visualpstricks/Source/XXX2.ps + RELOC/doc/latex/visualpstricks/Source/alea.tex + RELOC/doc/latex/visualpstricks/Source/anim.tex + RELOC/doc/latex/visualpstricks/Source/ann.tex + RELOC/doc/latex/visualpstricks/Source/bezier.tex + RELOC/doc/latex/visualpstricks/Source/bib.tex + RELOC/doc/latex/visualpstricks/Source/boit1.tex + RELOC/doc/latex/visualpstricks/Source/boit2.tex + RELOC/doc/latex/visualpstricks/Source/brace.tex + RELOC/doc/latex/visualpstricks/Source/cadre.tex + RELOC/doc/latex/visualpstricks/Source/chart.tex + RELOC/doc/latex/visualpstricks/Source/com.tex + RELOC/doc/latex/visualpstricks/Source/coord.tex + RELOC/doc/latex/visualpstricks/Source/coul.tex + RELOC/doc/latex/visualpstricks/Source/coul1.tex + RELOC/doc/latex/visualpstricks/Source/coul2.tex + RELOC/doc/latex/visualpstricks/Source/coul3.tex + RELOC/doc/latex/visualpstricks/Source/data3d.txt + RELOC/doc/latex/visualpstricks/Source/divers.tex + RELOC/doc/latex/visualpstricks/Source/eff1.tex + RELOC/doc/latex/visualpstricks/Source/eff2.tex + RELOC/doc/latex/visualpstricks/Source/eff3.tex + RELOC/doc/latex/visualpstricks/Source/eff4.tex + RELOC/doc/latex/visualpstricks/Source/fig.tex + RELOC/doc/latex/visualpstricks/Source/fill.tex + RELOC/doc/latex/visualpstricks/Source/fun.tex + RELOC/doc/latex/visualpstricks/Source/func.tex + RELOC/doc/latex/visualpstricks/Source/geom1.tex + RELOC/doc/latex/visualpstricks/Source/geom2.tex + RELOC/doc/latex/visualpstricks/Source/geom3.tex + RELOC/doc/latex/visualpstricks/Source/geom4.tex + RELOC/doc/latex/visualpstricks/Source/graph1.tex + RELOC/doc/latex/visualpstricks/Source/graph2.tex + RELOC/doc/latex/visualpstricks/Source/graph3.tex + RELOC/doc/latex/visualpstricks/Source/graph4.tex + RELOC/doc/latex/visualpstricks/Source/grid.tex + RELOC/doc/latex/visualpstricks/Source/homo.tex + RELOC/doc/latex/visualpstricks/Source/logoiut-eps-converted-to.pdf + RELOC/doc/latex/visualpstricks/Source/logoiut.eps + RELOC/doc/latex/visualpstricks/Source/merci.tex + RELOC/doc/latex/visualpstricks/Source/mesdata.dat + RELOC/doc/latex/visualpstricks/Source/noeud1.tex + RELOC/doc/latex/visualpstricks/Source/noeud2.tex + RELOC/doc/latex/visualpstricks/Source/obj.tex + RELOC/doc/latex/visualpstricks/Source/plac.tex + RELOC/doc/latex/visualpstricks/Source/poscript.tex + RELOC/doc/latex/visualpstricks/Source/pst1.tex + RELOC/doc/latex/visualpstricks/Source/pst2a.tex + RELOC/doc/latex/visualpstricks/Source/pst3.tex + RELOC/doc/latex/visualpstricks/Source/pst4.tex + RELOC/doc/latex/visualpstricks/Source/pst5.tex + RELOC/doc/latex/visualpstricks/Source/pstleg.tex + RELOC/doc/latex/visualpstricks/Source/pstmodules.tex + RELOC/doc/latex/visualpstricks/Source/pstpoly.tex + RELOC/doc/latex/visualpstricks/Source/rep1.tex + RELOC/doc/latex/visualpstricks/Source/rep2.tex + RELOC/doc/latex/visualpstricks/Source/rep3.tex + RELOC/doc/latex/visualpstricks/Source/sol3d.tex + RELOC/doc/latex/visualpstricks/Source/styl.tex + RELOC/doc/latex/visualpstricks/Source/symb.tex + RELOC/doc/latex/visualpstricks/Source/table.dat + RELOC/doc/latex/visualpstricks/Source/text.tex + RELOC/doc/latex/visualpstricks/Source/tree.tex + RELOC/doc/latex/visualpstricks/Source/vect.tex + RELOC/doc/latex/visualpstricks/Source/versFR.tex + RELOC/doc/latex/visualpstricks/Source/versGB.tex + RELOC/doc/latex/visualpstricks/Source/xxx.txt + 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-license gpl +catalogue-topics pstricks graphics-in-tex graphics-doc french-doc +catalogue-version 2.3 + +name visualtikz +category Package +revision 54080 +shortdesc Visual help for TikZ based on images with minimum text +relocated 1 +longdesc Visual help for TikZ based on images with minimum text: an +longdesc image per command or parameter. The document is in French, but +longdesc will be translated into English later. +containersize 456 +containerchecksum fbd3f158e72dd8b0ebd3fe9c33fe47127ecfd38bc0feac3312d569718672e9f88165856fa61389b307a211071467c10ef73981178cc9afd8ecd720cdf627dc1b +doccontainersize 3961060 +doccontainerchecksum 16a32e64ef4d00d2bf6f99fa05b35a071539d71944227eaa5b37762e838a62b80ee4b227a8bb9cc49b831bf19976421684872f8eb104f37365669907e9621a6b +docfiles size=1737 + RELOC/doc/latex/visualtikz/README.txt details="Readme" + RELOC/doc/latex/visualtikz/Source/Classeur1.csv + RELOC/doc/latex/visualtikz/Source/Classeur2.csv + RELOC/doc/latex/visualtikz/Source/LogoIUT.jpg + RELOC/doc/latex/visualtikz/Source/MAJ.tex + RELOC/doc/latex/visualtikz/Source/VTKZ.tex + RELOC/doc/latex/visualtikz/Source/VisualTikZ-fr.tex + RELOC/doc/latex/visualtikz/Source/VisualTikZ.tex + RELOC/doc/latex/visualtikz/Source/XXX.csv + RELOC/doc/latex/visualtikz/Source/XXX.dat + RELOC/doc/latex/visualtikz/Source/XXX1.jpg + RELOC/doc/latex/visualtikz/Source/XXX2.jpg + RELOC/doc/latex/visualtikz/Source/bibtkz.tex + RELOC/doc/latex/visualtikz/Source/data3d.txt + RELOC/doc/latex/visualtikz/Source/matrix.tex + RELOC/doc/latex/visualtikz/Source/mesdata.dat + RELOC/doc/latex/visualtikz/Source/symbol.tex + RELOC/doc/latex/visualtikz/Source/table.dat + RELOC/doc/latex/visualtikz/Source/table2.dat + RELOC/doc/latex/visualtikz/Source/table3.dat + RELOC/doc/latex/visualtikz/Source/table3X.dat + RELOC/doc/latex/visualtikz/Source/test.tex + RELOC/doc/latex/visualtikz/Source/tiger.png + RELOC/doc/latex/visualtikz/Source/tikzdebut.tex + RELOC/doc/latex/visualtikz/Source/tkz1.tex + RELOC/doc/latex/visualtikz/Source/tkz2.tex + RELOC/doc/latex/visualtikz/Source/tkz3.tex + RELOC/doc/latex/visualtikz/Source/tkz3a.tex + RELOC/doc/latex/visualtikz/Source/tkz4.tex + RELOC/doc/latex/visualtikz/Source/tkzalea.tex + RELOC/doc/latex/visualtikz/Source/tkzangles.tex + RELOC/doc/latex/visualtikz/Source/tkzanim.tex + RELOC/doc/latex/visualtikz/Source/tkzbackground.tex + RELOC/doc/latex/visualtikz/Source/tkzboit1.tex + RELOC/doc/latex/visualtikz/Source/tkzcde.tex + RELOC/doc/latex/visualtikz/Source/tkzchains.tex + RELOC/doc/latex/visualtikz/Source/tkzcoord.tex + RELOC/doc/latex/visualtikz/Source/tkzcoul.tex + RELOC/doc/latex/visualtikz/Source/tkzdatavisual.tex + RELOC/doc/latex/visualtikz/Source/tkzdeco.tex + RELOC/doc/latex/visualtikz/Source/tkzdepend.tex + RELOC/doc/latex/visualtikz/Source/tkzducks.tex + RELOC/doc/latex/visualtikz/Source/tkzelect.tex + RELOC/doc/latex/visualtikz/Source/tkzfig.tex + RELOC/doc/latex/visualtikz/Source/tkzfit.tex + RELOC/doc/latex/visualtikz/Source/tkzgate.tex + RELOC/doc/latex/visualtikz/Source/tkzgraph1.tex + RELOC/doc/latex/visualtikz/Source/tkzgraph2.tex + RELOC/doc/latex/visualtikz/Source/tkzgraph3D.tex + RELOC/doc/latex/visualtikz/Source/tkzgrid.tex + RELOC/doc/latex/visualtikz/Source/tkzimage.tex + RELOC/doc/latex/visualtikz/Source/tkzmerci.tex + RELOC/doc/latex/visualtikz/Source/tkznoeud1.tex + RELOC/doc/latex/visualtikz/Source/tkzoptic.tex + RELOC/doc/latex/visualtikz/Source/tkzpage.tex + RELOC/doc/latex/visualtikz/Source/tkzpeople.tex + RELOC/doc/latex/visualtikz/Source/tkzpic.tex + RELOC/doc/latex/visualtikz/Source/tkzpos.tex + RELOC/doc/latex/visualtikz/Source/tkzrep1.tex + RELOC/doc/latex/visualtikz/Source/tkzscope.tex + RELOC/doc/latex/visualtikz/Source/tkzstyl.tex + RELOC/doc/latex/visualtikz/Source/tkzsymbol.tex + RELOC/doc/latex/visualtikz/Source/tkztab.tex + RELOC/doc/latex/visualtikz/Source/tkzthrough.tex + RELOC/doc/latex/visualtikz/Source/tkztitre.tex + RELOC/doc/latex/visualtikz/Source/tkztree.tex + RELOC/doc/latex/visualtikz/Source/tkzturtle.tex + RELOC/doc/latex/visualtikz/Source/versFR.tex + RELOC/doc/latex/visualtikz/Source/versGB.tex + RELOC/doc/latex/visualtikz/Source/xxx.txt + RELOC/doc/latex/visualtikz/VisualTikZ-fr.pdf details="The document itself (French)" language="fr" + RELOC/doc/latex/visualtikz/VisualTikZ.pdf details="The document itself" +catalogue-ctan /info/visualtikz +catalogue-license lppl1.3 +catalogue-topics pgf-tikz graphics-in-tex graphics-doc french-doc +catalogue-version 0.65 + +name vlna +category TLCore +revision 54074 +shortdesc add ~ after non-syllabic preposition, for Czech/Slovak +longdesc Preprocessor for TeX source implementing the Czech/Slovak +longdesc typographical rule forbidding a non-syllabic preposition alone +longdesc at the end of a line. +depend vlna.ARCH +containersize 380 +containerchecksum ce37751f6cbd088e8faffb0c2ddb6d8bec9c0d1f0fa3a4ab0a3e5f2517e6f54fb6903f441cf72398284801c9b9f00d684d6a6555e2588ae72679050734fff8c9 +doccontainersize 142828 +doccontainerchecksum f46c2e29da8f4edbe544d41b05ac3ba13cb5e3c09d299ce5ccb85207703c99569df94640c651a1afbcafcaf4669bb73157945f8dfc1d2b43ce5c0c7970c35544 +docfiles size=43 + texmf-dist/doc/man/man1/vlna.1 + texmf-dist/doc/man/man1/vlna.man1.pdf + texmf-dist/doc/vlna/vlna.pdf + +name vlna.aarch64-linux +category TLCore +revision 53999 +shortdesc aarch64-linux files of vlna +containersize 6924 +containerchecksum 7f6be359ca4ea56bc8e1b97c2c1d28a6a2ff8786756e48fe35f9e5d035ea21366a5033cd8ba621f05655162b8ee048c10f3a844f5fe75ddba3025b7dd416969b +binfiles arch=aarch64-linux size=5 + bin/aarch64-linux/vlna + +name vlna.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of vlna +containersize 9052 +containerchecksum b33e0e2ad531b559a7b3af66823b88781bf51d2adb0510d367f8c54ace64f8a4c8519c9de687c73731d24ae23227bd8d15c8f5d6aedc7f5625b1a0a3b092480a +binfiles arch=amd64-freebsd size=6 + bin/amd64-freebsd/vlna + +name vlna.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of vlna +containersize 6764 +containerchecksum d78ab458823020b5d2c4c89a314e31c091a15e4c7efc5f2e640cc505bddeb04e510c0a5f9a8ece349d5fcd64f5df298e9f9228f9a0b5855828a10d6a9953a31a +binfiles arch=amd64-netbsd size=5 + bin/amd64-netbsd/vlna + +name vlna.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of vlna +containersize 5556 +containerchecksum d3c1314cc5be6eba197b339a95049a03792a9055d6de9c2a384ed11aab7544aa748e971198761df0f56793cf1e7365fab7182a760045a298c0c35a6bfdcf818f +binfiles arch=armhf-linux size=4 + bin/armhf-linux/vlna + +name vlna.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of vlna +containersize 6652 +containerchecksum a62f671dc80b52e074f79f840b2871c7193d8c32de77f40ee5605d6b3006ea8e5583d429af71f97f2b3c6e0972e758e0090093c958f173d4e7265fd5fc48fa02 +binfiles arch=i386-cygwin size=5 + bin/i386-cygwin/vlna.exe + +name vlna.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of vlna +containersize 7116 +containerchecksum 7ec66c34579ee8843c5113758c5bf4d72106dbb7fc764a9a7d3bea8c27269f109dcb442554d38a665633da1464eb91994d3ad4717433ff48bc29e6753f49430a +binfiles arch=i386-freebsd size=5 + bin/i386-freebsd/vlna + +name vlna.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of vlna +containersize 5964 +containerchecksum 0682376371b632cd7253cdbce34b2a6927ff2c23563a49d5fbb3b16352092966f15deda22e2f83bffdf6cf3df0cc0133a43a307f6633d777f6af501fe7370eef +binfiles arch=i386-linux size=4 + bin/i386-linux/vlna + +name vlna.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of vlna +containersize 6224 +containerchecksum 8f46d99ac6a6e41cd34f10c5bff7f86142d16aa989d473b1dcaa84a2cda58cc4764f72894d073c52e595fb6d99d12c6ab86b878d7bb0578effe16663a88aa13d +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/vlna + +name vlna.i386-solaris +category TLCore +revision 46829 +shortdesc i386-solaris files of vlna +containersize 6812 +containerchecksum ec7642cc4b6906d84d83d947cccaf976358c78a10c2b38ec82c1bcd94e6cf7355c725bc04be65cf8bdb80dd1d3244b8e32791010a0cbacd408eac5cf5e4951f8 +binfiles arch=i386-solaris size=4 + bin/i386-solaris/vlna + +name vlna.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of vlna +containersize 21616 +containerchecksum 2c3b5ec2851d94eab135f257be9d3accfe6c2864fd3098a44a25d3028a3be5555652f19b65c806bb9f8e08a9059ebcdce72620a9b01ee3447908016778e3672b +binfiles arch=universal-darwin size=38 + bin/universal-darwin/vlna + +name vlna.win32 +category TLCore +revision 53994 +shortdesc win32 files of vlna +containersize 7372 +containerchecksum 8c08cb9cbdd18ee84508864a8a12c7827420344ba52db8031786ecad5c703a350d749b983ab13277e775bb5f162d43ce699ff26ae0407c452ff7c4c9d54a7e04 +binfiles arch=win32 size=4 + bin/win32/vlna.exe + +name vlna.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of vlna +containersize 6988 +containerchecksum eb321c4e2ebf3db6ad99a38a2d2a614acb3066a1212464f28eefe7b008e8873cbfe0158c5d5040845721f767d9e48fad6d299da588165928835d5cb2361cd650 +binfiles arch=x86_64-cygwin size=5 + bin/x86_64-cygwin/vlna.exe + +name vlna.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of vlna +containersize 6812 +containerchecksum 862dc5be54d97c8fd61f9e3eed8ff640197abeba656e2919baae101bac4a3c6ba01d0c5a2ed9034421d87a0f4893b5ea267a93505df7b853d93e02511a047627 +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/vlna + +name vlna.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of vlna +containersize 6296 +containerchecksum a0328d0443227e457815e3c65222e5b2095a16a1fc9c521d41156a04f9657be5745e4f005234409f79c48d369a866fe4e4b5e616b191602a17daa864f3c05a4b +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/vlna + +name vlna.x86_64-linuxmusl +category TLCore +revision 54264 +shortdesc x86_64-linuxmusl files of vlna +containersize 6796 +containerchecksum 08fa05bc95ccc9ad5145af68b303990de58933f01f0705d2526ca1d86d60b6516ce8ab95427d52583df08d31f49e909ea58d52287aadf266fc6cee5e8a88e827 +binfiles arch=x86_64-linuxmusl size=5 + bin/x86_64-linuxmusl/vlna + +name vlna.x86_64-solaris +category TLCore +revision 46829 +shortdesc x86_64-solaris files of vlna +containersize 7636 +containerchecksum 06415a3166b1c80adf49daa34264aca956259908f0d0a5806244d8b8e8eb88d440a2fa7de3b86ee71b292c7059d3446c643286fbd00c7a97454715c840e702e5 +binfiles arch=x86_64-solaris size=5 + bin/x86_64-solaris/vlna + +name vmargin +category Package +revision 15878 +shortdesc Set various page dimensions +relocated 1 +longdesc Provides a macro to set various margins as well as dimensions +longdesc for header/footer and page dimensions. Most common paper sizes, +longdesc paper orientation, disabling of headers and footers, and two +longdesc sided printing are supported. The vmargin package does not rely +longdesc on other packages and was designed with speed and size in mind. +longdesc Its user interface might not be very fancy, but it's fast, +longdesc small, and gets the job done. If you are looking for something +longdesc more elaborate try the geometry package. +containersize 2852 +containerchecksum dc0cdd4696a44bb6bd189dcf73c69f1b2c8790b9936b1c6f35013d9342a97d36a4bfd8eab82f3e2e97f1cc952459cd9a1909915348b25f01df446c5ffc452e71 +doccontainersize 155348 +doccontainerchecksum ca8ebc274efacbe192b73c9551294bfae60b0cf7ebaac8425cf1b88e10ecda7f3230c336883afc438349f1ea47d66d369b52bb415c482803fb742b16cb483348 +docfiles size=44 + RELOC/doc/latex/vmargin/vmargin.pdf details="Package documentation" +srccontainersize 10616 +srccontainerchecksum 0ad7482be9aef59f55b1a489327c03e9d9560f10c984a0f244aa836ef12086dca2d834c033a36bc95233d6de9b801ac483d2dbf472f33e9478c5182d06a86cb6 +srcfiles size=11 + RELOC/source/latex/vmargin/Makefile + RELOC/source/latex/vmargin/vmargin.drv + RELOC/source/latex/vmargin/vmargin.dtx + RELOC/source/latex/vmargin/vmargin.ins +runfiles size=2 + RELOC/tex/latex/vmargin/vmargin.sty +catalogue-also geometry typearea +catalogue-ctan /macros/latex/contrib/vmargin +catalogue-license lppl +catalogue-topics geometry +catalogue-version 2.5 + +name vntex +category Package +revision 30579 +shortdesc Support for Vietnamese +relocated 1 +longdesc The vntex bundle provides fonts, Plain TeX, texinfo and LaTeX +longdesc macros for typesetting documents in Vietnamese. Users of the +longdesc fonts (in both Metafont and Adobe Type 1 format) of this bundle +longdesc may alternatively use the lm fonts bundle, for which map files +longdesc are available to provide a Vietnamese version. +execute addMap arevvn.map +execute addMap chartervn.map +execute addMap cmbrightvn.map +execute addMap concretevn.map +execute addMap grotesqvn.map +execute addMap txttvn.map +execute addMap urwvn.map +execute addMap vntopia.map +execute addMixedMap vnrother.map +execute addMixedMap vnrtext.map +containersize 5301968 +containerchecksum f39c04998d0685125d494c1a314f4cddb9e2924af4eb4bd8488be237125d818199640041a9c23d6b8839b9da1861e0b621f71488b316b65903c5f3a0366adec0 +doccontainersize 673872 +doccontainerchecksum 506c719a29a64611cc7ba228f1e13da9abface3168aa0122ec64dffa423a7c38b6f3a4fed43b787eb60b82bb8fec71a96e4432a9b0c05702a804a31997ccd49c +docfiles size=284 + RELOC/doc/generic/vntex/INSTALL + RELOC/doc/generic/vntex/ReleaseNotes.pdf + RELOC/doc/generic/vntex/vn-fonts-print.pdf + RELOC/doc/generic/vntex/vn-fonts.pdf + RELOC/doc/generic/vntex/vn-min-print.pdf + RELOC/doc/generic/vntex/vn-min.pdf details="Minimal steps to typeset Vietnamese" language="en" + RELOC/doc/generic/vntex/vntex-man-print.pdf + RELOC/doc/generic/vntex/vntex-man.pdf details="Package manual (Vietnamese)" language="vi" + RELOC/doc/generic/vntex/vntex-print.pdf + RELOC/doc/generic/vntex/vntex-update-maps + RELOC/doc/generic/vntex/vntex.pdf details="Package manual (English)" language="en" +srccontainersize 64208 +srccontainerchecksum 93f6fb8e9d49e8a7219a584aacc5f957da0ec2f7e29cf0c5dc37dd5b063cedf4eb2c56662b28c588083b1c158504da5da9cff4250498fa6ab8bdbec9e3eac875 +srcfiles size=131 + RELOC/source/generic/vntex/GPL.txt + RELOC/source/generic/vntex/LGPL.txt + RELOC/source/generic/vntex/LICENSE-utopia.txt + RELOC/source/generic/vntex/LPPL.txt + RELOC/source/generic/vntex/Makefile + RELOC/source/generic/vntex/README.vntopia + RELOC/source/generic/vntex/doc/ReleaseNotes.tex + RELOC/source/generic/vntex/doc/abbr.tex + RELOC/source/generic/vntex/doc/test-accents.tex + RELOC/source/generic/vntex/doc/vn-fonts-print.tex + RELOC/source/generic/vntex/doc/vn-fonts.tex + RELOC/source/generic/vntex/doc/vn-min-print.tex + RELOC/source/generic/vntex/doc/vn-min.tex + RELOC/source/generic/vntex/doc/vntex-man-print.tex + RELOC/source/generic/vntex/doc/vntex-man.tex + RELOC/source/generic/vntex/doc/vntex-print.tex + RELOC/source/generic/vntex/doc/vntex.tex + RELOC/source/generic/vntex/tests/Makefile + RELOC/source/generic/vntex/tests/README + RELOC/source/generic/vntex/tests/adventor-sample.tex + RELOC/source/generic/vntex/tests/adventor-test.tex + RELOC/source/generic/vntex/tests/arevvn-sample.tex + RELOC/source/generic/vntex/tests/arevvn-test.tex + RELOC/source/generic/vntex/tests/bonum-sample.tex + RELOC/source/generic/vntex/tests/bonum-test.tex + RELOC/source/generic/vntex/tests/chartervn-sample.tex + RELOC/source/generic/vntex/tests/chartervn-test.tex + RELOC/source/generic/vntex/tests/chorus-sample.tex + RELOC/source/generic/vntex/tests/chorus-test.tex + RELOC/source/generic/vntex/tests/classicovn-sample.tex + RELOC/source/generic/vntex/tests/classicovn-test.tex + RELOC/source/generic/vntex/tests/cmbrightvn-sample.tex + RELOC/source/generic/vntex/tests/cmbrightvn-test.tex + RELOC/source/generic/vntex/tests/comicsansvn-sample.tex + RELOC/source/generic/vntex/tests/comicsansvn-test.tex + RELOC/source/generic/vntex/tests/concretevn-sample.tex + RELOC/source/generic/vntex/tests/concretevn-test.tex + RELOC/source/generic/vntex/tests/cursor-sample.tex + RELOC/source/generic/vntex/tests/cursor-test.tex + RELOC/source/generic/vntex/tests/garamondvn-sample.tex + RELOC/source/generic/vntex/tests/garamondvn-test.tex + RELOC/source/generic/vntex/tests/grotesqvn-sample.tex + RELOC/source/generic/vntex/tests/grotesqvn-test.tex + RELOC/source/generic/vntex/tests/heros-sample.tex + RELOC/source/generic/vntex/tests/heros-test.tex + RELOC/source/generic/vntex/tests/mscore-sample.tex + RELOC/source/generic/vntex/tests/mscore-test.tex + RELOC/source/generic/vntex/tests/pagella-sample.tex + RELOC/source/generic/vntex/tests/pagella-test.tex + RELOC/source/generic/vntex/tests/schola-sample.tex + RELOC/source/generic/vntex/tests/schola-test.tex + RELOC/source/generic/vntex/tests/t5antt-sample.tex + RELOC/source/generic/vntex/tests/t5antt-test.tex + RELOC/source/generic/vntex/tests/t5cyklop-sample.tex + RELOC/source/generic/vntex/tests/t5cyklop-test.tex + RELOC/source/generic/vntex/tests/t5gentium-sample.tex + RELOC/source/generic/vntex/tests/t5gentium-test.tex + RELOC/source/generic/vntex/tests/t5iwona-sample.tex + RELOC/source/generic/vntex/tests/t5iwona-test.tex + RELOC/source/generic/vntex/tests/t5kurier-sample.tex + RELOC/source/generic/vntex/tests/t5kurier-test.tex + RELOC/source/generic/vntex/tests/t5lm-sample.tex + RELOC/source/generic/vntex/tests/t5lm-test.tex + RELOC/source/generic/vntex/tests/termes-sample.tex + RELOC/source/generic/vntex/tests/termes-test.tex + RELOC/source/generic/vntex/tests/test-accents.tex + RELOC/source/generic/vntex/tests/test-babel.tex + RELOC/source/generic/vntex/tests/test-captions.tex + RELOC/source/generic/vntex/tests/test-plain-tcx.tex + RELOC/source/generic/vntex/tests/test-plain.tex + RELOC/source/generic/vntex/tests/test-tcvn.tex + RELOC/source/generic/vntex/tests/test-utf8.tex + RELOC/source/generic/vntex/tests/test-vietnam-tcx.tex + RELOC/source/generic/vntex/tests/test-vietnam.tex + RELOC/source/generic/vntex/tests/test-viscii.tex + RELOC/source/generic/vntex/tests/txttvn-sample.tex + RELOC/source/generic/vntex/tests/txttvn-test.tex + RELOC/source/generic/vntex/tests/urwvn-sample.tex + RELOC/source/generic/vntex/tests/urwvn-test.tex + RELOC/source/generic/vntex/tests/vnr-sample.tex + RELOC/source/generic/vntex/tests/vnr-test.tex + RELOC/source/generic/vntex/tests/vnsample.cls + RELOC/source/generic/vntex/tests/vntopia-sample.tex + RELOC/source/generic/vntex/tests/vntopia-test.tex + RELOC/source/generic/vntex/vntex.dtx + RELOC/source/generic/vntex/vntex.ins +runfiles size=2501 + RELOC/fonts/afm/vntex/chartervn/bchb8v.afm + RELOC/fonts/afm/vntex/chartervn/bchbi8v.afm + RELOC/fonts/afm/vntex/chartervn/bchr8v.afm + RELOC/fonts/afm/vntex/chartervn/bchri8v.afm + RELOC/fonts/afm/vntex/grotesqvn/ugqb8v.afm + RELOC/fonts/afm/vntex/urwvn/fplrc8v.afm + RELOC/fonts/afm/vntex/urwvn/uagd8v.afm + RELOC/fonts/afm/vntex/urwvn/uagdo8v.afm + RELOC/fonts/afm/vntex/urwvn/uagk8v.afm + RELOC/fonts/afm/vntex/urwvn/uagko8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkd8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkdi8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkl8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkli8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrb8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrbo8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrr8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrro8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvb8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvbo8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvr8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvro8v.afm + RELOC/fonts/afm/vntex/urwvn/uncb8v.afm + RELOC/fonts/afm/vntex/urwvn/uncbi8v.afm + RELOC/fonts/afm/vntex/urwvn/uncr8v.afm + RELOC/fonts/afm/vntex/urwvn/uncri8v.afm + RELOC/fonts/afm/vntex/urwvn/uplb8v.afm + RELOC/fonts/afm/vntex/urwvn/uplbi8v.afm + RELOC/fonts/afm/vntex/urwvn/uplr8v.afm + RELOC/fonts/afm/vntex/urwvn/uplri8v.afm + RELOC/fonts/afm/vntex/urwvn/utmb8v.afm + RELOC/fonts/afm/vntex/urwvn/utmbi8v.afm + RELOC/fonts/afm/vntex/urwvn/utmr8v.afm + RELOC/fonts/afm/vntex/urwvn/utmri8v.afm + RELOC/fonts/afm/vntex/urwvn/uzcmi8v.afm + RELOC/fonts/afm/vntex/vntopia/putb8v.afm + RELOC/fonts/afm/vntex/vntopia/putbi8v.afm + RELOC/fonts/afm/vntex/vntopia/putr8v.afm + RELOC/fonts/afm/vntex/vntopia/putri8v.afm + RELOC/fonts/enc/dvips/vntex/t5.enc + RELOC/fonts/enc/pdftex/vntex/t5d.enc + RELOC/fonts/enc/pdftex/vntex/t5uni.enc + RELOC/fonts/map/dvips/vntex/arevvn.map + RELOC/fonts/map/dvips/vntex/chartervn.map + RELOC/fonts/map/dvips/vntex/cmbrightvn.map + RELOC/fonts/map/dvips/vntex/concretevn.map + RELOC/fonts/map/dvips/vntex/grotesqvn.map + RELOC/fonts/map/dvips/vntex/txttvn.map + RELOC/fonts/map/dvips/vntex/urwvn.map + RELOC/fonts/map/dvips/vntex/vnrother.map + RELOC/fonts/map/dvips/vntex/vnrtext.map + RELOC/fonts/map/dvips/vntex/vntopia.map + RELOC/fonts/source/vntex/vnr/vnaccent.mf + RELOC/fonts/source/vntex/vnr/vnacomp.mf + RELOC/fonts/source/vntex/vnr/vnb10.mf + RELOC/fonts/source/vntex/vnr/vnbase.mf + RELOC/fonts/source/vntex/vnr/vnbx10.mf + RELOC/fonts/source/vntex/vnr/vnbx12.mf + RELOC/fonts/source/vntex/vnr/vnbx5.mf + RELOC/fonts/source/vntex/vnr/vnbx6.mf + RELOC/fonts/source/vntex/vnr/vnbx7.mf + RELOC/fonts/source/vntex/vnr/vnbx8.mf + RELOC/fonts/source/vntex/vnr/vnbx9.mf + RELOC/fonts/source/vntex/vnr/vnbxsl10.mf + RELOC/fonts/source/vntex/vnr/vnbxti10.mf + RELOC/fonts/source/vntex/vnr/vncligtb.mf + RELOC/fonts/source/vntex/vnr/vncode.mf + RELOC/fonts/source/vntex/vnr/vncombac.mf + RELOC/fonts/source/vntex/vnr/vncsc.mf + RELOC/fonts/source/vntex/vnr/vncsc10.mf + RELOC/fonts/source/vntex/vnr/vndothook.mf + RELOC/fonts/source/vntex/vnr/vndunh10.mf + RELOC/fonts/source/vntex/vnr/vnecomp.mf + RELOC/fonts/source/vntex/vnr/vnff10.mf + RELOC/fonts/source/vntex/vnr/vnfi10.mf + RELOC/fonts/source/vntex/vnr/vnfib8.mf + RELOC/fonts/source/vntex/vnr/vnicomp.mf + RELOC/fonts/source/vntex/vnr/vniligtb.mf + RELOC/fonts/source/vntex/vnr/vnitt10.mf + RELOC/fonts/source/vntex/vnr/vnlacc.mf + RELOC/fonts/source/vntex/vnr/vnlai.mf + RELOC/fonts/source/vntex/vnr/vnlar.mf + RELOC/fonts/source/vntex/vnr/vnldi.mf + RELOC/fonts/source/vntex/vnr/vnldr.mf + RELOC/fonts/source/vntex/vnr/vnlei.mf + RELOC/fonts/source/vntex/vnr/vnler.mf + RELOC/fonts/source/vntex/vnr/vnlii.mf + RELOC/fonts/source/vntex/vnr/vnlir.mf + RELOC/fonts/source/vntex/vnr/vnloi.mf + RELOC/fonts/source/vntex/vnr/vnlor.mf + RELOC/fonts/source/vntex/vnr/vnlui.mf + RELOC/fonts/source/vntex/vnr/vnlur.mf + RELOC/fonts/source/vntex/vnr/vnlyi.mf + RELOC/fonts/source/vntex/vnr/vnlyr.mf + RELOC/fonts/source/vntex/vnr/vnminus.mf + RELOC/fonts/source/vntex/vnr/vnmligtb.mf + RELOC/fonts/source/vntex/vnr/vnocomp.mf + RELOC/fonts/source/vntex/vnr/vnr10.mf + RELOC/fonts/source/vntex/vnr/vnr12.mf + RELOC/fonts/source/vntex/vnr/vnr17.mf + RELOC/fonts/source/vntex/vnr/vnr5.mf + RELOC/fonts/source/vntex/vnr/vnr6.mf + RELOC/fonts/source/vntex/vnr/vnr7.mf + RELOC/fonts/source/vntex/vnr/vnr8.mf + RELOC/fonts/source/vntex/vnr/vnr9.mf + RELOC/fonts/source/vntex/vnr/vnrligtb.mf + RELOC/fonts/source/vntex/vnr/vnrm.mf + RELOC/fonts/source/vntex/vnr/vnroman.mf + RELOC/fonts/source/vntex/vnr/vnsl10.mf + RELOC/fonts/source/vntex/vnr/vnsl12.mf + RELOC/fonts/source/vntex/vnr/vnsl8.mf + RELOC/fonts/source/vntex/vnr/vnsl9.mf + RELOC/fonts/source/vntex/vnr/vnsltt10.mf + RELOC/fonts/source/vntex/vnr/vnss10.mf + RELOC/fonts/source/vntex/vnr/vnss12.mf + RELOC/fonts/source/vntex/vnr/vnss17.mf + RELOC/fonts/source/vntex/vnr/vnss8.mf + RELOC/fonts/source/vntex/vnr/vnss9.mf + RELOC/fonts/source/vntex/vnr/vnssbx10.mf + RELOC/fonts/source/vntex/vnr/vnssdc10.mf + RELOC/fonts/source/vntex/vnr/vnssi10.mf + RELOC/fonts/source/vntex/vnr/vnssi12.mf + RELOC/fonts/source/vntex/vnr/vnssi17.mf + RELOC/fonts/source/vntex/vnr/vnssi8.mf + RELOC/fonts/source/vntex/vnr/vnssi9.mf + RELOC/fonts/source/vntex/vnr/vnssq8.mf + RELOC/fonts/source/vntex/vnr/vnssqi8.mf + RELOC/fonts/source/vntex/vnr/vntcsc10.mf + RELOC/fonts/source/vntex/vnr/vntextit.mf + RELOC/fonts/source/vntex/vnr/vnti10.mf + RELOC/fonts/source/vntex/vnr/vnti12.mf + RELOC/fonts/source/vntex/vnr/vnti7.mf + RELOC/fonts/source/vntex/vnr/vnti8.mf + RELOC/fonts/source/vntex/vnr/vnti9.mf + RELOC/fonts/source/vntex/vnr/vntt10.mf + RELOC/fonts/source/vntex/vnr/vntt12.mf + RELOC/fonts/source/vntex/vnr/vntt8.mf + RELOC/fonts/source/vntex/vnr/vntt9.mf + RELOC/fonts/source/vntex/vnr/vnu10.mf + RELOC/fonts/source/vntex/vnr/vnuacc.mf + RELOC/fonts/source/vntex/vnr/vnuar.mf + RELOC/fonts/source/vntex/vnr/vnucomp.mf + RELOC/fonts/source/vntex/vnr/vnudr.mf + RELOC/fonts/source/vntex/vnr/vnuer.mf + RELOC/fonts/source/vntex/vnr/vnuir.mf + RELOC/fonts/source/vntex/vnr/vnuor.mf + RELOC/fonts/source/vntex/vnr/vnuur.mf + RELOC/fonts/source/vntex/vnr/vnuyr.mf + RELOC/fonts/source/vntex/vnr/vnvtt10.mf + RELOC/fonts/source/vntex/vnr/vnycomp.mf + RELOC/fonts/tfm/vntex/arevvn/favb8v.tfm + RELOC/fonts/tfm/vntex/arevvn/favbi8v.tfm + RELOC/fonts/tfm/vntex/arevvn/favr8v.tfm + RELOC/fonts/tfm/vntex/arevvn/favri8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchb8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchbc8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchbi8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchbo8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchr8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchrc8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchri8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchro8v.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr17.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr8.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr9.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrbx10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl17.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl8.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl9.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmsltl10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmtl10.tfm + RELOC/fonts/tfm/vntex/concretevn/vncccsc10.tfm + RELOC/fonts/tfm/vntex/concretevn/vnccr10.tfm + RELOC/fonts/tfm/vntex/concretevn/vnccsl10.tfm + RELOC/fonts/tfm/vntex/concretevn/vnccti10.tfm + RELOC/fonts/tfm/vntex/grotesqvn/ugqb8v.tfm + RELOC/fonts/tfm/vntex/grotesqvn/ugqbo8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txbtt8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txbttsc8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txbttsl8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txtt8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txttsc8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txttsl8v.tfm + RELOC/fonts/tfm/vntex/urwvn/fplrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagd8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagdc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagdo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagk8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagkc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagko8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkd8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkdc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkdi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkdo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkl8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubklc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkli8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubklo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncbi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncri8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplbi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplri8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmbi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmri8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uzcmi8v.tfm + RELOC/fonts/tfm/vntex/vnr/vnb10.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx10.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx12.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx5.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx6.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx7.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx8.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx9.tfm + RELOC/fonts/tfm/vntex/vnr/vnbxsl10.tfm + RELOC/fonts/tfm/vntex/vnr/vnbxti10.tfm + RELOC/fonts/tfm/vntex/vnr/vncsc10.tfm + RELOC/fonts/tfm/vntex/vnr/vndunh10.tfm + RELOC/fonts/tfm/vntex/vnr/vnff10.tfm + RELOC/fonts/tfm/vntex/vnr/vnfi10.tfm + RELOC/fonts/tfm/vntex/vnr/vnfib8.tfm + RELOC/fonts/tfm/vntex/vnr/vnitt10.tfm + RELOC/fonts/tfm/vntex/vnr/vnr10.tfm + RELOC/fonts/tfm/vntex/vnr/vnr12.tfm + RELOC/fonts/tfm/vntex/vnr/vnr17.tfm + RELOC/fonts/tfm/vntex/vnr/vnr5.tfm + RELOC/fonts/tfm/vntex/vnr/vnr6.tfm + RELOC/fonts/tfm/vntex/vnr/vnr7.tfm + RELOC/fonts/tfm/vntex/vnr/vnr8.tfm + RELOC/fonts/tfm/vntex/vnr/vnr9.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl10.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl12.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl8.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl9.tfm + RELOC/fonts/tfm/vntex/vnr/vnsltt10.tfm + RELOC/fonts/tfm/vntex/vnr/vnss10.tfm + RELOC/fonts/tfm/vntex/vnr/vnss12.tfm + RELOC/fonts/tfm/vntex/vnr/vnss17.tfm + RELOC/fonts/tfm/vntex/vnr/vnss8.tfm + RELOC/fonts/tfm/vntex/vnr/vnss9.tfm + RELOC/fonts/tfm/vntex/vnr/vnssbx10.tfm + RELOC/fonts/tfm/vntex/vnr/vnssdc10.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi10.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi12.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi17.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi8.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi9.tfm + RELOC/fonts/tfm/vntex/vnr/vnssq8.tfm + RELOC/fonts/tfm/vntex/vnr/vnssqi8.tfm + RELOC/fonts/tfm/vntex/vnr/vntcsc10.tfm + RELOC/fonts/tfm/vntex/vnr/vnti10.tfm + RELOC/fonts/tfm/vntex/vnr/vnti12.tfm + RELOC/fonts/tfm/vntex/vnr/vnti7.tfm + RELOC/fonts/tfm/vntex/vnr/vnti8.tfm + RELOC/fonts/tfm/vntex/vnr/vnti9.tfm + RELOC/fonts/tfm/vntex/vnr/vntt10.tfm + RELOC/fonts/tfm/vntex/vnr/vntt12.tfm + RELOC/fonts/tfm/vntex/vnr/vntt8.tfm + RELOC/fonts/tfm/vntex/vnr/vntt9.tfm + RELOC/fonts/tfm/vntex/vnr/vnu10.tfm + RELOC/fonts/tfm/vntex/vnr/vnvtt10.tfm + RELOC/fonts/tfm/vntex/vntopia/putb8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putbc8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putbi8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putbo8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putr8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putrc8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putri8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putro8v.tfm + RELOC/fonts/type1/vntex/arevvn/ArevSans-Bold-T5.pfb + RELOC/fonts/type1/vntex/arevvn/ArevSans-BoldOblique-T5.pfb + RELOC/fonts/type1/vntex/arevvn/ArevSans-Oblique-T5.pfb + RELOC/fonts/type1/vntex/arevvn/ArevSans-Roman-T5.pfb + RELOC/fonts/type1/vntex/chartervn/bchb8v.pfb + RELOC/fonts/type1/vntex/chartervn/bchbi8v.pfb + RELOC/fonts/type1/vntex/chartervn/bchr8v.pfb + RELOC/fonts/type1/vntex/chartervn/bchri8v.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr17.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr8.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr9.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrbx10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl17.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl8.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl9.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmsltl10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmtl10.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcrete8v.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcreteItalic8v.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcreteSlanted8v.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcreteSmallCaps8v.pfb + RELOC/fonts/type1/vntex/grotesqvn/ugqb8v.pfb + RELOC/fonts/type1/vntex/txttvn/txbtt8v.pfb + RELOC/fonts/type1/vntex/txttvn/txbttsc8v.pfb + RELOC/fonts/type1/vntex/txttvn/txtt8v.pfb + RELOC/fonts/type1/vntex/txttvn/txttsc8v.pfb + RELOC/fonts/type1/vntex/urwvn/fplrc8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagd8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagdo8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagk8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagko8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkd8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkdi8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkl8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkli8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrb8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrbo8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrr8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrro8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvb8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvbo8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvr8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvro8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncb8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncbi8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncr8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncri8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplb8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplbi8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplr8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplri8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmb8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmbi8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmr8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmri8v.pfb + RELOC/fonts/type1/vntex/urwvn/uzcmi8v.pfb + RELOC/fonts/type1/vntex/vnr/vnb10.pfb + RELOC/fonts/type1/vntex/vnr/vnbx10.pfb + RELOC/fonts/type1/vntex/vnr/vnbx12.pfb + RELOC/fonts/type1/vntex/vnr/vnbx5.pfb + RELOC/fonts/type1/vntex/vnr/vnbx6.pfb + RELOC/fonts/type1/vntex/vnr/vnbx7.pfb + RELOC/fonts/type1/vntex/vnr/vnbx8.pfb + RELOC/fonts/type1/vntex/vnr/vnbx9.pfb + RELOC/fonts/type1/vntex/vnr/vnbxsl10.pfb + RELOC/fonts/type1/vntex/vnr/vnbxti10.pfb + RELOC/fonts/type1/vntex/vnr/vncsc10.pfb + RELOC/fonts/type1/vntex/vnr/vndunh10.pfb + RELOC/fonts/type1/vntex/vnr/vnff10.pfb + RELOC/fonts/type1/vntex/vnr/vnfi10.pfb + RELOC/fonts/type1/vntex/vnr/vnfib8.pfb + RELOC/fonts/type1/vntex/vnr/vnitt10.pfb + RELOC/fonts/type1/vntex/vnr/vnr10.pfb + RELOC/fonts/type1/vntex/vnr/vnr12.pfb + RELOC/fonts/type1/vntex/vnr/vnr17.pfb + RELOC/fonts/type1/vntex/vnr/vnr5.pfb + RELOC/fonts/type1/vntex/vnr/vnr6.pfb + RELOC/fonts/type1/vntex/vnr/vnr7.pfb + RELOC/fonts/type1/vntex/vnr/vnr8.pfb + RELOC/fonts/type1/vntex/vnr/vnr9.pfb + RELOC/fonts/type1/vntex/vnr/vnsl10.pfb + RELOC/fonts/type1/vntex/vnr/vnsl12.pfb + RELOC/fonts/type1/vntex/vnr/vnsl8.pfb + RELOC/fonts/type1/vntex/vnr/vnsl9.pfb + RELOC/fonts/type1/vntex/vnr/vnsltt10.pfb + RELOC/fonts/type1/vntex/vnr/vnss10.pfb + RELOC/fonts/type1/vntex/vnr/vnss12.pfb + RELOC/fonts/type1/vntex/vnr/vnss17.pfb + RELOC/fonts/type1/vntex/vnr/vnss8.pfb + RELOC/fonts/type1/vntex/vnr/vnss9.pfb + RELOC/fonts/type1/vntex/vnr/vnssbx10.pfb + RELOC/fonts/type1/vntex/vnr/vnssdc10.pfb + RELOC/fonts/type1/vntex/vnr/vnssi10.pfb + RELOC/fonts/type1/vntex/vnr/vnssi12.pfb + RELOC/fonts/type1/vntex/vnr/vnssi17.pfb + RELOC/fonts/type1/vntex/vnr/vnssi8.pfb + RELOC/fonts/type1/vntex/vnr/vnssi9.pfb + RELOC/fonts/type1/vntex/vnr/vnssq8.pfb + RELOC/fonts/type1/vntex/vnr/vnssqi8.pfb + RELOC/fonts/type1/vntex/vnr/vntcsc10.pfb + RELOC/fonts/type1/vntex/vnr/vnti10.pfb + RELOC/fonts/type1/vntex/vnr/vnti12.pfb + RELOC/fonts/type1/vntex/vnr/vnti7.pfb + RELOC/fonts/type1/vntex/vnr/vnti8.pfb + RELOC/fonts/type1/vntex/vnr/vnti9.pfb + RELOC/fonts/type1/vntex/vnr/vntt10.pfb + RELOC/fonts/type1/vntex/vnr/vntt12.pfb + RELOC/fonts/type1/vntex/vnr/vntt8.pfb + RELOC/fonts/type1/vntex/vnr/vntt9.pfb + RELOC/fonts/type1/vntex/vnr/vnu10.pfb + RELOC/fonts/type1/vntex/vnr/vnvtt10.pfb + RELOC/fonts/type1/vntex/vntopia/putb8v.pfb + RELOC/fonts/type1/vntex/vntopia/putbi8v.pfb + RELOC/fonts/type1/vntex/vntopia/putr8v.pfb + RELOC/fonts/type1/vntex/vntopia/putri8v.pfb + RELOC/fonts/vf/vntex/chartervn/bchbc8v.vf + RELOC/fonts/vf/vntex/chartervn/bchrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uagdc8v.vf + RELOC/fonts/vf/vntex/urwvn/uagkc8v.vf + RELOC/fonts/vf/vntex/urwvn/ubkdc8v.vf + RELOC/fonts/vf/vntex/urwvn/ubklc8v.vf + RELOC/fonts/vf/vntex/urwvn/ucrbc8v.vf + RELOC/fonts/vf/vntex/urwvn/ucrrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uhvbc8v.vf + RELOC/fonts/vf/vntex/urwvn/uhvrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uncbc8v.vf + RELOC/fonts/vf/vntex/urwvn/uncrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uplbc8v.vf + RELOC/fonts/vf/vntex/urwvn/uplrc8v.vf + RELOC/fonts/vf/vntex/urwvn/utmbc8v.vf + RELOC/fonts/vf/vntex/urwvn/utmrc8v.vf + RELOC/fonts/vf/vntex/vntopia/putbc8v.vf + RELOC/fonts/vf/vntex/vntopia/putrc8v.vf + RELOC/tex/latex/vntex/dblaccnt.sty + RELOC/tex/latex/vntex/mcviscii.def + RELOC/tex/latex/vntex/pd1supp.def + RELOC/tex/latex/vntex/swpvntex.sty + RELOC/tex/latex/vntex/t5bch.fd + RELOC/tex/latex/vntex/t5ccr.fd + RELOC/tex/latex/vntex/t5cmbr.fd + RELOC/tex/latex/vntex/t5cmdh.fd + RELOC/tex/latex/vntex/t5cmfib.fd + RELOC/tex/latex/vntex/t5cmfr.fd + RELOC/tex/latex/vntex/t5cmr.fd + RELOC/tex/latex/vntex/t5cmss.fd + RELOC/tex/latex/vntex/t5cmssq.fd + RELOC/tex/latex/vntex/t5cmtl.fd + RELOC/tex/latex/vntex/t5cmtt.fd + RELOC/tex/latex/vntex/t5cmvtt.fd + RELOC/tex/latex/vntex/t5enc.def + RELOC/tex/latex/vntex/t5enc.dfu + RELOC/tex/latex/vntex/t5fav.fd + RELOC/tex/latex/vntex/t5fnc.fd + RELOC/tex/latex/vntex/t5fpl.fd + RELOC/tex/latex/vntex/t5futs.fd + RELOC/tex/latex/vntex/t5mak.fd + RELOC/tex/latex/vntex/t5mdbch.fd + RELOC/tex/latex/vntex/t5mdput.fd + RELOC/tex/latex/vntex/t5mdugm.fd + RELOC/tex/latex/vntex/t5pag.fd + RELOC/tex/latex/vntex/t5pbk.fd + RELOC/tex/latex/vntex/t5pcr.fd + RELOC/tex/latex/vntex/t5phv.fd + RELOC/tex/latex/vntex/t5pnc.fd + RELOC/tex/latex/vntex/t5ppl.fd + RELOC/tex/latex/vntex/t5ptm.fd + RELOC/tex/latex/vntex/t5ptmom.fd + RELOC/tex/latex/vntex/t5put.fd + RELOC/tex/latex/vntex/t5pxr.fd + RELOC/tex/latex/vntex/t5txr.fd + RELOC/tex/latex/vntex/t5txtt.fd + RELOC/tex/latex/vntex/t5uag.fd + RELOC/tex/latex/vntex/t5ubk.fd + RELOC/tex/latex/vntex/t5ucr.fd + RELOC/tex/latex/vntex/t5ugq.fd + RELOC/tex/latex/vntex/t5uhv.fd + RELOC/tex/latex/vntex/t5unc.fd + RELOC/tex/latex/vntex/t5upl.fd + RELOC/tex/latex/vntex/t5utm.fd + RELOC/tex/latex/vntex/t5uzcm.fd + RELOC/tex/latex/vntex/tcvn.def + RELOC/tex/latex/vntex/varioref-vi.sty + RELOC/tex/latex/vntex/vietnam.sty + RELOC/tex/latex/vntex/viscii.def + RELOC/tex/latex/vntex/vncaps.tex + RELOC/tex/latex/vntex/vntex.sty + RELOC/tex/latex/vntex/vps.def + RELOC/tex/plain/vntex/dblaccnt.tex + RELOC/tex/plain/vntex/t5code.tex + RELOC/tex/plain/vntex/vntexinfo.tex +catalogue-contact-home http://vntex.sf.net +catalogue-ctan /language/vietnamese/vntex +catalogue-license other-free +catalogue-topics vietnamese font font-mf font-type1 +catalogue-version 3.2 + +name vocaltract +category Package +revision 25629 +shortdesc Visualise the vocal tract using LaTeX and PSTricks +relocated 1 +longdesc The package enables the user to visualise the vocal tract. The +longdesc vocal tract (in the package) is manipulated by a vector of +longdesc articulation parameters according to the S. Maeda model. +longdesc Animation may be achieved by providing a sequence of vectors +longdesc over time (e.g., from Matlab). A sequence of vectors for +longdesc certain German phonemes is embedded in the package, which +longdesc allows for animation when no other vector is available. The +longdesc package's graphics are produced using pstricks. +containersize 9208 +containerchecksum 7daa3923a6b9d84a1fae2c9bd63404c2fb4dfe3866f897895deb9ab85f33649427b38ce5e34552bbbbd8704da1fac55822a747747a0c522728e605638831df8c +doccontainersize 15924 +doccontainerchecksum 36aa01a5be9da9a23e3a4de63fb14a39beda4a42cd2615f75f942abff677e71f2a4f640773d27556ef246a99004c3a1aa68caac9435957152cfda96707d79787 +docfiles size=13 + RELOC/doc/latex/vocaltract/README details="Readme" + RELOC/doc/latex/vocaltract/vtLatex_AnimationDemo.tex + RELOC/doc/latex/vocaltract/vtLatex_AnimationLauncher.tex + RELOC/doc/latex/vocaltract/vtLatex_FigureDemo.pdf details="Example model" + RELOC/doc/latex/vocaltract/vtLatex_FigureDemo.tex + RELOC/doc/latex/vocaltract/vtLatex_FigureLauncher.tex + RELOC/doc/latex/vocaltract/vtLatex_TimeParams.tex + RELOC/doc/latex/vocaltract/vtMAINVisual.m + RELOC/doc/latex/vocaltract/vtQueryVisual.m +runfiles size=11 + RELOC/tex/latex/vocaltract/VocalTract.sty +catalogue-ctan /graphics/pstricks/contrib/vocaltract +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 1 + +name volumes +category Package +revision 15878 +shortdesc Typeset only parts of a document, with complete indexes etc +relocated 1 +longdesc This package helps you if you want to produce separate printed +longdesc volumes from one LaTeX document, as well as one comprehensive, +longdesc "all-inclusive" version. It suppresses the part of the table of +longdesc contents that are not typeset, while counters, definitions, +longdesc index entries etc. are kept consistent throughout the input +longdesc file. +containersize 2544 +containerchecksum e54add2c60c5446329fe6f944c99132e0f99e89dd8fc9ff459e0ee106a5241e4df4d864b43269fc14a08ddda92f4e41607eaa20ba50d4a566be7468d0dd66b2c +doccontainersize 146160 +doccontainerchecksum 4471a360d04cc1ed9c90ecb53bfc422fdae30571a25fc4811813f30ed5308f4d20309a1fdba808d1eb20e84b97318708f57d08722344afd755aa06588acbd024 +docfiles size=43 + RELOC/doc/latex/volumes/README + RELOC/doc/latex/volumes/volumes.pdf details="Package documentation" +srccontainersize 10228 +srccontainerchecksum 0f47cc01b4631430cc4b73c7348bcb9d500d0c5c9960a15e9fb29e1c805ff0be4f0108c6bf795156ab7f939fb355f800da916f913a4a441e65bdcefdb05c0499 +srcfiles size=9 + RELOC/source/latex/volumes/volumes.dtx + RELOC/source/latex/volumes/volumes.ins +runfiles size=3 + RELOC/tex/latex/volumes/nowtoaux.sty + RELOC/tex/latex/volumes/volumes.sty +catalogue-ctan /macros/latex/contrib/volumes +catalogue-license lppl +catalogue-topics book-pub +catalogue-version 1.0 + +name voss-mathcol +category Package +revision 32954 +shortdesc Typesetting mathematics in colour, in (La)TeX +relocated 1 +longdesc This is a short paper from the TeXnische Komodie, in German. +longdesc Since the body of the paper is dominated by clear LaTeX coding +longdesc examples, most LaTeX programmers will understand how to achieve +longdesc the results shown in the diagrams, even if they don't +longdesc understand German. +containersize 548 +containerchecksum cec0ea20b409192c618278001045352ca6c4c11c8eda59633a9bb65ebb7a89c8c1db4046936a7f0096f52efca8a251501fccf7890288ed830f13e0b24b1bb017 +doccontainersize 230644 +doccontainerchecksum 5d91b23d9eb45998282731620097f214b274ee744972b3d7fbeda1be2268799572f36b5f4c8b707f48e8ec2d825438bcdcee7f1376531f366af8949a862ff379 +docfiles size=71 + RELOC/doc/latex/voss-mathcol/Changes + RELOC/doc/latex/voss-mathcol/mathCol.bib + RELOC/doc/latex/voss-mathcol/mathCol.ltx + RELOC/doc/latex/voss-mathcol/mathCol.pdf details="The document itself" + RELOC/doc/latex/voss-mathcol/mathCol.tex + RELOC/doc/latex/voss-mathcol/run.doc +catalogue-ctan /info/math/voss/mathCol +catalogue-license lppl +catalogue-topics tutorial maths-doc +catalogue-version 0.1 + +name vpe +category Package +revision 26039 +shortdesc Source specials for PDF output +longdesc VPE is a system to make the equivalent of "source special" +longdesc marks in a PDF file. Clicking on a mark will activate an +longdesc editor, pointing at the source line that produced the text that +longdesc was marked. The system comprises a perl file (vpe.pl) and a +longdesc LaTeX package (vpe.sty); it will work with PDF files generated +longdesc via LaTeX/dvips, pdfTeX (version 0.14 or better), and +longdesc LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the +longdesc (pdf)TeX processor should be run with shell escapes enabled. +depend vpe.ARCH +containersize 8120 +containerchecksum 5fd5180edb830cc2f309652ad6a86e3ce1900dd0b150b72b3115f2e0f51aed4023b3f7af8c86befd1b1317829907b35ce583b50fe5cd1fa50f15863046e806d5 +doccontainersize 6692 +doccontainerchecksum 3c60c736fa03de82bfa5bb86f40420e7f7eb59f6943a94790361bd1d64076ec97843404d1cc508074a903f83392892c6dddd1dc912162928b286e65c24a46037 +docfiles size=5 + texmf-dist/doc/latex/vpe/README details="Readme" +runfiles size=8 + texmf-dist/scripts/vpe/vpe.pl + texmf-dist/tex/latex/vpe/vpe.sty +catalogue-ctan /macros/latex/contrib/vpe +catalogue-license lppl +catalogue-topics doc-debug +catalogue-version 0.2 + +name vpe.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of vpe +containersize 336 +containerchecksum a32442551a28f1387a900a6e23b1a8a088924c5a1ddf00653388d03b5902e657c89a0cf467654194b53a01431aa2cc939a9cf7a7c54629b016089d1bc998c799 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/vpe + +name vpe.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of vpe +containersize 336 +containerchecksum 6096c5a718ee66d37b82d1abc89599a01e2f555f207bd5cad7a3ddac4ea4809358763e83cb9fdfa509c984bb44d85a24ad5cafd3f3083cd992a9c2fc4330e21f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/vpe + +name vpe.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of vpe +containersize 340 +containerchecksum 8c003bda0d6ecad900712f8bae92f5b516efff9cfea50b7f6181216a872b46af062ac210c8676ed4570004054b58b4eb2b344e6dadf1513a1ab36453c96f1e6d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/vpe + +name vpe.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of vpe +containersize 336 +containerchecksum fd981e8da08ba68c587b4f6686a038156fb33d0ea19eea16f54a66c7d3b51cac21168e9f073e8012ea80beb791fcb22d056c452d573d6a67550567e4b89eda1a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/vpe + +name vpe.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of vpe +containersize 336 +containerchecksum 369fe5803c7f2545d6ad6db9ac75b88146d90d2e7574c8b0f91cf5702963725519352fe63ab5deaa15bc6b5411f16b41573be60b53e248951fcaa058d2736692 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/vpe + +name vpe.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of vpe +containersize 340 +containerchecksum 6d29857fede00d2437ca2fff5a10f6883eef1597adf2fdd8477104b3188764e67a53e327cbce4a5df013bdec78b675eb13f5efda8993065e7c409d931409e85e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/vpe + +name vpe.i386-linux +category Package +revision 6897 +shortdesc i386-linux files of vpe +containersize 336 +containerchecksum 917fe580026f9d9e0bd0655d1f86eb515d5a6c74a2e8a5b13533b502d027a0e25ef65ec6ce3a3981d76857b17d39d4ef91cd81cbd3fef1d200ec50cefe473149 +binfiles arch=i386-linux size=1 + bin/i386-linux/vpe + +name vpe.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of vpe +containersize 336 +containerchecksum 603916060d1931d6c956c9ce6128406c33c8e29b52c83131206c20b5f5333ee24b10db7fa52c030e78a126383719ed8c30bfa9236a9c8b70ac42a35872d5b1a5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/vpe + +name vpe.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of vpe +containersize 336 +containerchecksum 8895267374a02c4db0977666968f68245a0718a7db282d37e3bd55af27e50773c07a4ecf110e00cfdca0eb6da8e6e4cd724a4914f525aeb97fcb8ad7d725dc53 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/vpe + +name vpe.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of vpe +containersize 340 +containerchecksum b7f435b9f3c346753c1d6bf91f7e495f894a74d924a5e1bf6c2b23f807b67f333363a18a4d3775fb82ce98e84112c3a8d430a6fc3b901bdb54d4f6824acfabc9 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/vpe + +name vpe.win32 +category Package +revision 15404 +shortdesc win32 files of vpe +containersize 680 +containerchecksum d99676bfae281e47595db1527f12959896d551ee4a539b045a5ef71518c5c101e2741492c80dc66df6790c5dd8c7cd0dc00fc11e9328a8f8d33d4955f41cf12d +binfiles arch=win32 size=1 + bin/win32/vpe.exe + +name vpe.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of vpe +containersize 340 +containerchecksum 937237137e07415d75fe7f1b2db7379105bf009a04aa383064d29254487502657aa008815718f264e070894e4dad8327e5e5bcbc49c497135d6ea5c883d12bca +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/vpe + +name vpe.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of vpe +containersize 348 +containerchecksum 00a966f49bf2fc68b87baa2c9fa3ddf145b4faeacbedd8340253dc1d2e49833ddb6f827fb26ce523050acc28397d06d2984687ceaeb5566b4de3c31248ac1e45 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/vpe + +name vpe.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of vpe +containersize 336 +containerchecksum b94502124ec1649e80f2acb7ccc5c517a294558997938f1c1589cea13245eda9e412cf1cade5fded461f50c09e84d2844abf710ce0833e211edf71e6929f9c6f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/vpe + +name vpe.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of vpe +containersize 344 +containerchecksum 212aa4c71a877c411ed2d4ff882ef28b2925dc238b518991a7210c9ec59ef8abad245a7c4f924fdbb6eb2065e7687a66d8f1805ff3dc32cea3f836a62485fc24 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/vpe + +name vpe.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of vpe +containersize 340 +containerchecksum 33105827e3d6872cfa72a41c5b9faec1e34360086af6c05cc954bbd047436f02f1def4316ecc1ec005884ac40db543b0be019ac36acc542b6b5b661ba3c2c971 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/vpe + +name vruler +category Package +revision 21598 +shortdesc Numbering text +relocated 1 +longdesc The package offers facilities for adding a columns of numbering +longdesc to the general text so that the text can be properly +longdesc referenced. The vertical ruler can be scaled and moved freely. +longdesc The package may be used either with LaTeX or with plain TeX. +containersize 6004 +containerchecksum 39582bec5217d65179b4293a18697cae20b35a0ec5416497691d16dbb919d78d4463ae15f2f05d308f45c65481f611a3f699cce9f5a3c311b84bde08fdd5f234 +doccontainersize 220752 +doccontainerchecksum dad09087e028977501fe143ae050c57938500b8aa98bddc1afefb298444d17c37cdc5b9db2e9d01df5e9f6a47679e0659b21a2844d268f8b324a24bbf22d9492 +docfiles size=59 + RELOC/doc/latex/vruler/miscdoc.sty + RELOC/doc/latex/vruler/vruler-example.tex + RELOC/doc/latex/vruler/vruler.pdf details="Package documentation" + RELOC/doc/latex/vruler/vruler.tex +runfiles size=5 + RELOC/tex/latex/vruler/vruler.sty +catalogue-also lineno numline +catalogue-ctan /macros/latex/contrib/vruler +catalogue-license lppl1 +catalogue-topics layout +catalogue-version 2.3 + +name vtable +category Package +revision 51126 +shortdesc Vertical alignement of table cells +relocated 1 +longdesc The package allows vertical alignement of table cell by +longdesc providing: Z, L, C, R, J and I column types \nextRow and \lb +longdesc commands \setMultiColRow, \setMultiColumn, \setMultiRow and +longdesc \tableFormatedCell commands for tabular and similar +longdesc environment. +containersize 3708 +containerchecksum ed8dee287daa32719b6650f43b963fa66cc55572526162978fc5245d3c253f027548ef5f1cbb38423c30e6cbe93b3418c373615ab92532be40d947c979f14b47 +doccontainersize 59744 +doccontainerchecksum 12626485ed74fdaee2aff65e97f59d14fad8f856bc2a84dda96010985b039d48850a07ef08525d74b155a699d44b1e173923e0f67716f47e392fa7558760076a +docfiles size=19 + RELOC/doc/latex/vtable/README details="Readme" + RELOC/doc/latex/vtable/vtable.pdf details="Package documentation" + RELOC/doc/latex/vtable/vtable.tex +runfiles size=3 + RELOC/tex/latex/vtable/vtable.sty +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-license mit +catalogue-topics table +catalogue-version 1.0 + +name vwcol +category Package +revision 36254 +shortdesc Variable-width multiple text columns +relocated 1 +longdesc The package provides a crude environment (vwcol) for +longdesc typesetting multicolumn paragraph text of various column widths +longdesc on a single page. +containersize 3140 +containerchecksum 3963b738e1214f7a495daff6476102e6b25e86034c552b5f4e4314af55e4af073ed94a72e969dfd1fba16baa0264577234917f7dfd074dc85f9c56c5f2409903 +doccontainersize 272620 +doccontainerchecksum a4d55b62caf4968d3e8329fd06f8857f646c5a867fbab23ea9bd7fb57c5b88b5f3a918642bc608eb1ccd936dc2e36edc50a5662667b8bb35cc59ba1739b2e7bd +docfiles size=68 + RELOC/doc/latex/vwcol/README details="Readme" + RELOC/doc/latex/vwcol/vwcol.pdf details="Package documentation" +srccontainersize 11468 +srccontainerchecksum 8a605a7250f939789fd863abf6fa2b5da37b8f723460ef2e56ed93dc826363ec1bad03f5bd2af266ede11ccda04546e6174c0dd79282ba41ad6c3d9923ccd51c +srcfiles size=12 + RELOC/source/latex/vwcol/vwcol.dtx + RELOC/source/latex/vwcol/vwcol.ins +runfiles size=3 + RELOC/tex/latex/vwcol/vwcol.sty +catalogue-ctan /macros/latex/contrib/vwcol +catalogue-license lppl1.3 +catalogue-topics multicol +catalogue-version 0.2 + +name wadalab +category Package +revision 42428 +shortdesc Wadalab (Japanese) font packages +relocated 1 +longdesc These are font bundles for the Japanese Wadalab fonts which +longdesc work with the CJK package. All subfonts now have glyph names +longdesc compliant to the Adobe Glyph List, making ToUnicode CMaps in +longdesc PDF documents (created automatically by dvipdfmx) work +longdesc correctly. All font bundles now contain virtual Unicode +longdesc subfonts. +execute addMap dgj.map +execute addMap dmj.map +execute addMap mc2j.map +execute addMap mcj.map +execute addMap mr2j.map +execute addMap mrj.map +containersize 17772744 +containerchecksum 2d603ccfa92e8ef9abe91f5afaf490c7c8476061679f7a54c22879bb90b4d874f9e0e533e25aafb94fee2ff512f689ec96d25ed7ed42d0ae90c5e05985daadeb +doccontainersize 93720 +doccontainerchecksum f9c35379b396dfb563c66a05d200c405f03de96e22ec94de3a9f0c99ada057db21d31b43d59391bc0175479b5f150435f8e704fa40f6b58f2c116bbda3ec4603 +docfiles size=43 + RELOC/doc/fonts/wadalab/README details="Readme" + RELOC/doc/fonts/wadalab/dgj/README details="Readme" + RELOC/doc/fonts/wadalab/dmj/README details="Readme" + RELOC/doc/fonts/wadalab/mc2j/README details="Readme" + RELOC/doc/fonts/wadalab/mcj/README details="Readme" + RELOC/doc/fonts/wadalab/mr2j/README details="Readme" + RELOC/doc/fonts/wadalab/mrj/README details="Readme" + RELOC/doc/fonts/wadalab/wadalab-sampler.pdf details="Font sampler" + RELOC/doc/fonts/wadalab/wadalab-sampler.tex +runfiles size=6262 + RELOC/fonts/afm/wadalab/dgj/dgjgreek.afm + RELOC/fonts/afm/wadalab/dgj/dgjhira.afm + RELOC/fonts/afm/wadalab/dgj/dgjhw.afm + RELOC/fonts/afm/wadalab/dgj/dgjka.afm + RELOC/fonts/afm/wadalab/dgj/dgjkata.afm + RELOC/fonts/afm/wadalab/dgj/dgjkb.afm + RELOC/fonts/afm/wadalab/dgj/dgjkc.afm + RELOC/fonts/afm/wadalab/dgj/dgjkd.afm + RELOC/fonts/afm/wadalab/dgj/dgjke.afm + RELOC/fonts/afm/wadalab/dgj/dgjkeisen.afm + RELOC/fonts/afm/wadalab/dgj/dgjkf.afm + RELOC/fonts/afm/wadalab/dgj/dgjkg.afm + RELOC/fonts/afm/wadalab/dgj/dgjkh.afm + RELOC/fonts/afm/wadalab/dgj/dgjki.afm + RELOC/fonts/afm/wadalab/dgj/dgjkj.afm + RELOC/fonts/afm/wadalab/dgj/dgjkk.afm + RELOC/fonts/afm/wadalab/dgj/dgjkl.afm + RELOC/fonts/afm/wadalab/dgj/dgjkm.afm + RELOC/fonts/afm/wadalab/dgj/dgjkn.afm + RELOC/fonts/afm/wadalab/dgj/dgjko.afm + RELOC/fonts/afm/wadalab/dgj/dgjkp.afm + RELOC/fonts/afm/wadalab/dgj/dgjkq.afm + RELOC/fonts/afm/wadalab/dgj/dgjkr.afm + RELOC/fonts/afm/wadalab/dgj/dgjks.afm + RELOC/fonts/afm/wadalab/dgj/dgjkt.afm + RELOC/fonts/afm/wadalab/dgj/dgjku.afm + RELOC/fonts/afm/wadalab/dgj/dgjkv.afm + RELOC/fonts/afm/wadalab/dgj/dgjkw.afm + RELOC/fonts/afm/wadalab/dgj/dgjkx.afm + RELOC/fonts/afm/wadalab/dgj/dgjky.afm + RELOC/fonts/afm/wadalab/dgj/dgjkz.afm + RELOC/fonts/afm/wadalab/dgj/dgjroma.afm + RELOC/fonts/afm/wadalab/dgj/dgjrussian.afm + RELOC/fonts/afm/wadalab/dgj/dgjsy.afm + RELOC/fonts/afm/wadalab/dmj/dmjgreek.afm + RELOC/fonts/afm/wadalab/dmj/dmjhira.afm + RELOC/fonts/afm/wadalab/dmj/dmjhw.afm + RELOC/fonts/afm/wadalab/dmj/dmjka.afm + RELOC/fonts/afm/wadalab/dmj/dmjkata.afm + RELOC/fonts/afm/wadalab/dmj/dmjkb.afm + RELOC/fonts/afm/wadalab/dmj/dmjkc.afm + RELOC/fonts/afm/wadalab/dmj/dmjkd.afm + RELOC/fonts/afm/wadalab/dmj/dmjke.afm + RELOC/fonts/afm/wadalab/dmj/dmjkeisen.afm + RELOC/fonts/afm/wadalab/dmj/dmjkf.afm + RELOC/fonts/afm/wadalab/dmj/dmjkg.afm + RELOC/fonts/afm/wadalab/dmj/dmjkh.afm + RELOC/fonts/afm/wadalab/dmj/dmjki.afm + RELOC/fonts/afm/wadalab/dmj/dmjkj.afm + RELOC/fonts/afm/wadalab/dmj/dmjkk.afm + RELOC/fonts/afm/wadalab/dmj/dmjkl.afm + RELOC/fonts/afm/wadalab/dmj/dmjkm.afm + RELOC/fonts/afm/wadalab/dmj/dmjkn.afm + RELOC/fonts/afm/wadalab/dmj/dmjko.afm + RELOC/fonts/afm/wadalab/dmj/dmjkp.afm + RELOC/fonts/afm/wadalab/dmj/dmjkq.afm + RELOC/fonts/afm/wadalab/dmj/dmjkr.afm + RELOC/fonts/afm/wadalab/dmj/dmjks.afm + RELOC/fonts/afm/wadalab/dmj/dmjkt.afm + RELOC/fonts/afm/wadalab/dmj/dmjku.afm + RELOC/fonts/afm/wadalab/dmj/dmjkv.afm + RELOC/fonts/afm/wadalab/dmj/dmjkw.afm + RELOC/fonts/afm/wadalab/dmj/dmjkx.afm + RELOC/fonts/afm/wadalab/dmj/dmjky.afm + RELOC/fonts/afm/wadalab/dmj/dmjkz.afm + RELOC/fonts/afm/wadalab/dmj/dmjroma.afm + RELOC/fonts/afm/wadalab/dmj/dmjrussian.afm + RELOC/fonts/afm/wadalab/dmj/dmjsy.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jka.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkb.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkc.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkd.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jke.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkf.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkg.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkh.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jki.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkj.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkk.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkl.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkm.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkn.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jko.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkp.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkq.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkr.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jks.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkt.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jku.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkv.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkw.afm + RELOC/fonts/afm/wadalab/mcj/mcjgreek.afm + RELOC/fonts/afm/wadalab/mcj/mcjhira.afm + RELOC/fonts/afm/wadalab/mcj/mcjhw.afm + RELOC/fonts/afm/wadalab/mcj/mcjka.afm + RELOC/fonts/afm/wadalab/mcj/mcjkata.afm + RELOC/fonts/afm/wadalab/mcj/mcjkb.afm + RELOC/fonts/afm/wadalab/mcj/mcjkc.afm + RELOC/fonts/afm/wadalab/mcj/mcjkd.afm + RELOC/fonts/afm/wadalab/mcj/mcjke.afm + RELOC/fonts/afm/wadalab/mcj/mcjkeisen.afm + RELOC/fonts/afm/wadalab/mcj/mcjkf.afm + RELOC/fonts/afm/wadalab/mcj/mcjkg.afm + RELOC/fonts/afm/wadalab/mcj/mcjkh.afm + RELOC/fonts/afm/wadalab/mcj/mcjki.afm + RELOC/fonts/afm/wadalab/mcj/mcjkj.afm + RELOC/fonts/afm/wadalab/mcj/mcjkk.afm + RELOC/fonts/afm/wadalab/mcj/mcjkl.afm + RELOC/fonts/afm/wadalab/mcj/mcjkm.afm + RELOC/fonts/afm/wadalab/mcj/mcjkn.afm + RELOC/fonts/afm/wadalab/mcj/mcjko.afm + RELOC/fonts/afm/wadalab/mcj/mcjkp.afm + RELOC/fonts/afm/wadalab/mcj/mcjkq.afm + RELOC/fonts/afm/wadalab/mcj/mcjkr.afm + RELOC/fonts/afm/wadalab/mcj/mcjks.afm + RELOC/fonts/afm/wadalab/mcj/mcjkt.afm + RELOC/fonts/afm/wadalab/mcj/mcjku.afm + RELOC/fonts/afm/wadalab/mcj/mcjkv.afm + RELOC/fonts/afm/wadalab/mcj/mcjkw.afm + RELOC/fonts/afm/wadalab/mcj/mcjkx.afm + RELOC/fonts/afm/wadalab/mcj/mcjky.afm + RELOC/fonts/afm/wadalab/mcj/mcjkz.afm + RELOC/fonts/afm/wadalab/mcj/mcjroma.afm + RELOC/fonts/afm/wadalab/mcj/mcjrussian.afm + RELOC/fonts/afm/wadalab/mcj/mcjsy.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jka.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkb.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkc.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkd.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jke.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkf.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkg.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkh.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jki.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkj.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkk.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkl.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkm.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkn.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jko.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkp.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkq.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkr.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jks.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkt.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jku.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkv.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkw.afm + RELOC/fonts/afm/wadalab/mrj/mrjgreek.afm + RELOC/fonts/afm/wadalab/mrj/mrjhira.afm + RELOC/fonts/afm/wadalab/mrj/mrjhw.afm + RELOC/fonts/afm/wadalab/mrj/mrjka.afm + RELOC/fonts/afm/wadalab/mrj/mrjkata.afm + RELOC/fonts/afm/wadalab/mrj/mrjkb.afm + RELOC/fonts/afm/wadalab/mrj/mrjkc.afm + RELOC/fonts/afm/wadalab/mrj/mrjkd.afm + RELOC/fonts/afm/wadalab/mrj/mrjke.afm + RELOC/fonts/afm/wadalab/mrj/mrjkeisen.afm + RELOC/fonts/afm/wadalab/mrj/mrjkf.afm + RELOC/fonts/afm/wadalab/mrj/mrjkg.afm + RELOC/fonts/afm/wadalab/mrj/mrjkh.afm + RELOC/fonts/afm/wadalab/mrj/mrjki.afm + RELOC/fonts/afm/wadalab/mrj/mrjkj.afm + RELOC/fonts/afm/wadalab/mrj/mrjkk.afm + RELOC/fonts/afm/wadalab/mrj/mrjkl.afm + RELOC/fonts/afm/wadalab/mrj/mrjkm.afm + RELOC/fonts/afm/wadalab/mrj/mrjkn.afm + RELOC/fonts/afm/wadalab/mrj/mrjko.afm + RELOC/fonts/afm/wadalab/mrj/mrjkp.afm + RELOC/fonts/afm/wadalab/mrj/mrjkq.afm + RELOC/fonts/afm/wadalab/mrj/mrjkr.afm + RELOC/fonts/afm/wadalab/mrj/mrjks.afm + RELOC/fonts/afm/wadalab/mrj/mrjkt.afm + RELOC/fonts/afm/wadalab/mrj/mrjku.afm + RELOC/fonts/afm/wadalab/mrj/mrjkv.afm + RELOC/fonts/afm/wadalab/mrj/mrjkw.afm + RELOC/fonts/afm/wadalab/mrj/mrjkx.afm + RELOC/fonts/afm/wadalab/mrj/mrjky.afm + RELOC/fonts/afm/wadalab/mrj/mrjkz.afm + RELOC/fonts/afm/wadalab/mrj/mrjroma.afm + RELOC/fonts/afm/wadalab/mrj/mrjrussian.afm + RELOC/fonts/afm/wadalab/mrj/mrjsy.afm + RELOC/fonts/map/dvips/wadalab/dgj.map + RELOC/fonts/map/dvips/wadalab/dmj.map + RELOC/fonts/map/dvips/wadalab/mc2j.map + RELOC/fonts/map/dvips/wadalab/mcj.map + RELOC/fonts/map/dvips/wadalab/mr2j.map + RELOC/fonts/map/dvips/wadalab/mrj.map + RELOC/fonts/tfm/wadalab/dgj/dgjgreek.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjhira.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjhw.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjka.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkata.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkb.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkc.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkd.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjke.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkeisen.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkf.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkg.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkh.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjki.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkj.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkk.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkl.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkm.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkn.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjko.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkp.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkq.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkr.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjks.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkt.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjku.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkv.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkw.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkx.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjky.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkz.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjroma.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjrussian.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjsy.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjgreek.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjhira.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjhw.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjka.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkata.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkb.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkc.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkd.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjke.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkeisen.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkf.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkg.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkh.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjki.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkj.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkk.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkl.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkm.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkn.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjko.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkp.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkq.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkr.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjks.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkt.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjku.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkv.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkw.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkx.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjky.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkz.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjroma.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjrussian.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjsy.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jka.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkb.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkc.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkd.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jke.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkf.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkg.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkh.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jki.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkj.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkk.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkl.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkm.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkn.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jko.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkp.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkq.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkr.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jks.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkt.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jku.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkv.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkw.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjgreek.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjhira.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjhw.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjka.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkata.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkb.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkc.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkd.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjke.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkeisen.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkf.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkg.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkh.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjki.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkj.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkk.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkl.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkm.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkn.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjko.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkp.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkq.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkr.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjks.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkt.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjku.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkv.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkw.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkx.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjky.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkz.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjroma.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjrussian.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjsy.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jka.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkb.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkc.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkd.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jke.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkf.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkg.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkh.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jki.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkj.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkk.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkl.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkm.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkn.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jko.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkp.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkq.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkr.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jks.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkt.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jku.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkv.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkw.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjgreek.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjhira.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjhw.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjka.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkata.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkb.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkc.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkd.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjke.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkeisen.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkf.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkg.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkh.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjki.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkj.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkk.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkl.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkm.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkn.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjko.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkp.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkq.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkr.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjks.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkt.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjku.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkv.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkw.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkx.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjky.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkz.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjroma.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjrussian.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjsy.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj00.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj03.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj04.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj20.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj21.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj22.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj23.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj25.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj26.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj30.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj4e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj4f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj50.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj51.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj52.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj53.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj54.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj55.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj56.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj57.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj58.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj59.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj60.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj61.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj62.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj63.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj64.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj65.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj66.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj67.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj68.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj69.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj70.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj71.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj72.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj73.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj74.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj75.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj76.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj77.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj78.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj79.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj80.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj81.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj82.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj83.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj84.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj85.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj86.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj87.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj88.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj89.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj90.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj91.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj92.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj93.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj94.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj95.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj96.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj97.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj98.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj99.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgjff.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj00.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj03.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj04.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj20.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj21.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj22.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj23.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj25.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj26.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj30.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj4e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj4f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj50.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj51.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj52.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj53.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj54.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj55.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj56.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj57.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj58.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj59.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj60.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj61.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj62.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj63.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj64.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj65.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj66.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj67.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj68.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj69.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj70.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj71.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj72.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj73.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj74.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj75.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj76.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj77.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj78.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj79.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj80.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj81.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj82.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj83.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj84.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj85.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj86.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj87.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj88.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj89.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj90.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj91.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj92.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj93.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj94.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj95.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj96.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj97.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj98.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj99.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmjff.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj00.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj03.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj04.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj20.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj21.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj22.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj23.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj25.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj26.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj30.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj4e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj4f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj50.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj51.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj52.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj53.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj54.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj55.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj56.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj57.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj58.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj59.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj60.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj61.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj62.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj63.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj64.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj65.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj66.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj67.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj68.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj69.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj70.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj71.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj72.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj73.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj74.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj75.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj76.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj77.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj78.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj79.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj80.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj81.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj82.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj83.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj84.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj85.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj86.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj87.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj88.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj89.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj90.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj91.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj92.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj93.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj94.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj95.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj96.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj97.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj98.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj99.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcjff.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj00.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj03.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj04.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj20.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj21.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj22.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj23.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj25.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj26.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj30.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj4e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj4f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj50.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj51.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj52.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj53.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj54.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj55.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj56.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj57.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj58.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj59.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj60.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj61.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj62.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj63.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj64.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj65.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj66.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj67.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj68.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj69.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj70.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj71.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj72.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj73.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj74.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj75.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj76.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj77.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj78.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj79.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj80.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj81.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj82.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj83.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj84.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj85.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj86.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj87.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj88.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj89.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj90.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj91.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj92.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj93.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj94.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj95.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj96.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj97.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj98.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj99.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrjff.tfm + RELOC/fonts/type1/wadalab/dgj/dgjgreek.pfb + RELOC/fonts/type1/wadalab/dgj/dgjhira.pfb + RELOC/fonts/type1/wadalab/dgj/dgjhw.pfb + RELOC/fonts/type1/wadalab/dgj/dgjka.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkata.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkb.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkc.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkd.pfb + RELOC/fonts/type1/wadalab/dgj/dgjke.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkeisen.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkf.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkg.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkh.pfb + RELOC/fonts/type1/wadalab/dgj/dgjki.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkj.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkk.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkl.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkm.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkn.pfb + RELOC/fonts/type1/wadalab/dgj/dgjko.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkp.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkq.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkr.pfb + RELOC/fonts/type1/wadalab/dgj/dgjks.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkt.pfb + RELOC/fonts/type1/wadalab/dgj/dgjku.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkv.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkw.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkx.pfb + RELOC/fonts/type1/wadalab/dgj/dgjky.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkz.pfb + RELOC/fonts/type1/wadalab/dgj/dgjroma.pfb + RELOC/fonts/type1/wadalab/dgj/dgjrussian.pfb + RELOC/fonts/type1/wadalab/dgj/dgjsy.pfb + RELOC/fonts/type1/wadalab/dmj/dmjgreek.pfb + RELOC/fonts/type1/wadalab/dmj/dmjhira.pfb + RELOC/fonts/type1/wadalab/dmj/dmjhw.pfb + RELOC/fonts/type1/wadalab/dmj/dmjka.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkata.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkb.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkc.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkd.pfb + RELOC/fonts/type1/wadalab/dmj/dmjke.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkeisen.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkf.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkg.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkh.pfb + RELOC/fonts/type1/wadalab/dmj/dmjki.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkj.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkk.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkl.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkm.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkn.pfb + RELOC/fonts/type1/wadalab/dmj/dmjko.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkp.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkq.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkr.pfb + RELOC/fonts/type1/wadalab/dmj/dmjks.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkt.pfb + RELOC/fonts/type1/wadalab/dmj/dmjku.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkv.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkw.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkx.pfb + RELOC/fonts/type1/wadalab/dmj/dmjky.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkz.pfb + RELOC/fonts/type1/wadalab/dmj/dmjroma.pfb + RELOC/fonts/type1/wadalab/dmj/dmjrussian.pfb + RELOC/fonts/type1/wadalab/dmj/dmjsy.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jka.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkb.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkc.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkd.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jke.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkf.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkg.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkh.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jki.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkj.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkk.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkl.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkm.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkn.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jko.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkp.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkq.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkr.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jks.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkt.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jku.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkv.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkw.pfb + RELOC/fonts/type1/wadalab/mcj/mcjgreek.pfb + RELOC/fonts/type1/wadalab/mcj/mcjhira.pfb + RELOC/fonts/type1/wadalab/mcj/mcjhw.pfb + RELOC/fonts/type1/wadalab/mcj/mcjka.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkata.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkb.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkc.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkd.pfb + RELOC/fonts/type1/wadalab/mcj/mcjke.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkeisen.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkf.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkg.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkh.pfb + RELOC/fonts/type1/wadalab/mcj/mcjki.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkj.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkk.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkl.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkm.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkn.pfb + RELOC/fonts/type1/wadalab/mcj/mcjko.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkp.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkq.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkr.pfb + RELOC/fonts/type1/wadalab/mcj/mcjks.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkt.pfb + RELOC/fonts/type1/wadalab/mcj/mcjku.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkv.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkw.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkx.pfb + RELOC/fonts/type1/wadalab/mcj/mcjky.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkz.pfb + RELOC/fonts/type1/wadalab/mcj/mcjroma.pfb + RELOC/fonts/type1/wadalab/mcj/mcjrussian.pfb + RELOC/fonts/type1/wadalab/mcj/mcjsy.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jka.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkb.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkc.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkd.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jke.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkf.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkg.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkh.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jki.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkj.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkk.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkl.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkm.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkn.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jko.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkp.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkq.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkr.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jks.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkt.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jku.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkv.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkw.pfb + RELOC/fonts/type1/wadalab/mrj/mrjgreek.pfb + RELOC/fonts/type1/wadalab/mrj/mrjhira.pfb + RELOC/fonts/type1/wadalab/mrj/mrjhw.pfb + RELOC/fonts/type1/wadalab/mrj/mrjka.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkata.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkb.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkc.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkd.pfb + RELOC/fonts/type1/wadalab/mrj/mrjke.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkeisen.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkf.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkg.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkh.pfb + RELOC/fonts/type1/wadalab/mrj/mrjki.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkj.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkk.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkl.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkm.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkn.pfb + RELOC/fonts/type1/wadalab/mrj/mrjko.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkp.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkq.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkr.pfb + RELOC/fonts/type1/wadalab/mrj/mrjks.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkt.pfb + RELOC/fonts/type1/wadalab/mrj/mrjku.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkv.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkw.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkx.pfb + RELOC/fonts/type1/wadalab/mrj/mrjky.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkz.pfb + RELOC/fonts/type1/wadalab/mrj/mrjroma.pfb + RELOC/fonts/type1/wadalab/mrj/mrjrussian.pfb + RELOC/fonts/type1/wadalab/mrj/mrjsy.pfb + RELOC/fonts/vf/wadalab/udgj/udgj00.vf + RELOC/fonts/vf/wadalab/udgj/udgj03.vf + RELOC/fonts/vf/wadalab/udgj/udgj04.vf + RELOC/fonts/vf/wadalab/udgj/udgj20.vf + RELOC/fonts/vf/wadalab/udgj/udgj21.vf + RELOC/fonts/vf/wadalab/udgj/udgj22.vf + RELOC/fonts/vf/wadalab/udgj/udgj23.vf + RELOC/fonts/vf/wadalab/udgj/udgj25.vf + RELOC/fonts/vf/wadalab/udgj/udgj26.vf + RELOC/fonts/vf/wadalab/udgj/udgj30.vf + RELOC/fonts/vf/wadalab/udgj/udgj4e.vf + RELOC/fonts/vf/wadalab/udgj/udgj4f.vf + RELOC/fonts/vf/wadalab/udgj/udgj50.vf + RELOC/fonts/vf/wadalab/udgj/udgj51.vf + RELOC/fonts/vf/wadalab/udgj/udgj52.vf + RELOC/fonts/vf/wadalab/udgj/udgj53.vf + RELOC/fonts/vf/wadalab/udgj/udgj54.vf + RELOC/fonts/vf/wadalab/udgj/udgj55.vf + RELOC/fonts/vf/wadalab/udgj/udgj56.vf + RELOC/fonts/vf/wadalab/udgj/udgj57.vf + RELOC/fonts/vf/wadalab/udgj/udgj58.vf + RELOC/fonts/vf/wadalab/udgj/udgj59.vf + RELOC/fonts/vf/wadalab/udgj/udgj5a.vf + RELOC/fonts/vf/wadalab/udgj/udgj5b.vf + RELOC/fonts/vf/wadalab/udgj/udgj5c.vf + RELOC/fonts/vf/wadalab/udgj/udgj5d.vf + RELOC/fonts/vf/wadalab/udgj/udgj5e.vf + RELOC/fonts/vf/wadalab/udgj/udgj5f.vf + RELOC/fonts/vf/wadalab/udgj/udgj60.vf + RELOC/fonts/vf/wadalab/udgj/udgj61.vf + RELOC/fonts/vf/wadalab/udgj/udgj62.vf + RELOC/fonts/vf/wadalab/udgj/udgj63.vf + RELOC/fonts/vf/wadalab/udgj/udgj64.vf + RELOC/fonts/vf/wadalab/udgj/udgj65.vf + RELOC/fonts/vf/wadalab/udgj/udgj66.vf + RELOC/fonts/vf/wadalab/udgj/udgj67.vf + RELOC/fonts/vf/wadalab/udgj/udgj68.vf + RELOC/fonts/vf/wadalab/udgj/udgj69.vf + RELOC/fonts/vf/wadalab/udgj/udgj6a.vf + RELOC/fonts/vf/wadalab/udgj/udgj6b.vf + RELOC/fonts/vf/wadalab/udgj/udgj6c.vf + RELOC/fonts/vf/wadalab/udgj/udgj6d.vf + RELOC/fonts/vf/wadalab/udgj/udgj6e.vf + RELOC/fonts/vf/wadalab/udgj/udgj6f.vf + RELOC/fonts/vf/wadalab/udgj/udgj70.vf + RELOC/fonts/vf/wadalab/udgj/udgj71.vf + RELOC/fonts/vf/wadalab/udgj/udgj72.vf + RELOC/fonts/vf/wadalab/udgj/udgj73.vf + RELOC/fonts/vf/wadalab/udgj/udgj74.vf + RELOC/fonts/vf/wadalab/udgj/udgj75.vf + RELOC/fonts/vf/wadalab/udgj/udgj76.vf + RELOC/fonts/vf/wadalab/udgj/udgj77.vf + RELOC/fonts/vf/wadalab/udgj/udgj78.vf + RELOC/fonts/vf/wadalab/udgj/udgj79.vf + RELOC/fonts/vf/wadalab/udgj/udgj7a.vf + RELOC/fonts/vf/wadalab/udgj/udgj7b.vf + RELOC/fonts/vf/wadalab/udgj/udgj7c.vf + RELOC/fonts/vf/wadalab/udgj/udgj7d.vf + RELOC/fonts/vf/wadalab/udgj/udgj7e.vf + RELOC/fonts/vf/wadalab/udgj/udgj7f.vf + RELOC/fonts/vf/wadalab/udgj/udgj80.vf + RELOC/fonts/vf/wadalab/udgj/udgj81.vf + RELOC/fonts/vf/wadalab/udgj/udgj82.vf + RELOC/fonts/vf/wadalab/udgj/udgj83.vf + RELOC/fonts/vf/wadalab/udgj/udgj84.vf + RELOC/fonts/vf/wadalab/udgj/udgj85.vf + RELOC/fonts/vf/wadalab/udgj/udgj86.vf + RELOC/fonts/vf/wadalab/udgj/udgj87.vf + RELOC/fonts/vf/wadalab/udgj/udgj88.vf + RELOC/fonts/vf/wadalab/udgj/udgj89.vf + RELOC/fonts/vf/wadalab/udgj/udgj8a.vf + RELOC/fonts/vf/wadalab/udgj/udgj8b.vf + RELOC/fonts/vf/wadalab/udgj/udgj8c.vf + RELOC/fonts/vf/wadalab/udgj/udgj8d.vf + RELOC/fonts/vf/wadalab/udgj/udgj8e.vf + RELOC/fonts/vf/wadalab/udgj/udgj8f.vf + RELOC/fonts/vf/wadalab/udgj/udgj90.vf + RELOC/fonts/vf/wadalab/udgj/udgj91.vf + RELOC/fonts/vf/wadalab/udgj/udgj92.vf + RELOC/fonts/vf/wadalab/udgj/udgj93.vf + RELOC/fonts/vf/wadalab/udgj/udgj94.vf + RELOC/fonts/vf/wadalab/udgj/udgj95.vf + RELOC/fonts/vf/wadalab/udgj/udgj96.vf + RELOC/fonts/vf/wadalab/udgj/udgj97.vf + RELOC/fonts/vf/wadalab/udgj/udgj98.vf + RELOC/fonts/vf/wadalab/udgj/udgj99.vf + RELOC/fonts/vf/wadalab/udgj/udgj9a.vf + RELOC/fonts/vf/wadalab/udgj/udgj9b.vf + RELOC/fonts/vf/wadalab/udgj/udgj9c.vf + RELOC/fonts/vf/wadalab/udgj/udgj9d.vf + RELOC/fonts/vf/wadalab/udgj/udgj9e.vf + RELOC/fonts/vf/wadalab/udgj/udgj9f.vf + RELOC/fonts/vf/wadalab/udgj/udgjff.vf + RELOC/fonts/vf/wadalab/udmj/udmj00.vf + RELOC/fonts/vf/wadalab/udmj/udmj03.vf + RELOC/fonts/vf/wadalab/udmj/udmj04.vf + RELOC/fonts/vf/wadalab/udmj/udmj20.vf + RELOC/fonts/vf/wadalab/udmj/udmj21.vf + RELOC/fonts/vf/wadalab/udmj/udmj22.vf + RELOC/fonts/vf/wadalab/udmj/udmj23.vf + RELOC/fonts/vf/wadalab/udmj/udmj25.vf + RELOC/fonts/vf/wadalab/udmj/udmj26.vf + RELOC/fonts/vf/wadalab/udmj/udmj30.vf + RELOC/fonts/vf/wadalab/udmj/udmj4e.vf + RELOC/fonts/vf/wadalab/udmj/udmj4f.vf + RELOC/fonts/vf/wadalab/udmj/udmj50.vf + RELOC/fonts/vf/wadalab/udmj/udmj51.vf + RELOC/fonts/vf/wadalab/udmj/udmj52.vf + RELOC/fonts/vf/wadalab/udmj/udmj53.vf + RELOC/fonts/vf/wadalab/udmj/udmj54.vf + RELOC/fonts/vf/wadalab/udmj/udmj55.vf + RELOC/fonts/vf/wadalab/udmj/udmj56.vf + RELOC/fonts/vf/wadalab/udmj/udmj57.vf + RELOC/fonts/vf/wadalab/udmj/udmj58.vf + RELOC/fonts/vf/wadalab/udmj/udmj59.vf + RELOC/fonts/vf/wadalab/udmj/udmj5a.vf + RELOC/fonts/vf/wadalab/udmj/udmj5b.vf + RELOC/fonts/vf/wadalab/udmj/udmj5c.vf + RELOC/fonts/vf/wadalab/udmj/udmj5d.vf + RELOC/fonts/vf/wadalab/udmj/udmj5e.vf + RELOC/fonts/vf/wadalab/udmj/udmj5f.vf + RELOC/fonts/vf/wadalab/udmj/udmj60.vf + RELOC/fonts/vf/wadalab/udmj/udmj61.vf + RELOC/fonts/vf/wadalab/udmj/udmj62.vf + RELOC/fonts/vf/wadalab/udmj/udmj63.vf + RELOC/fonts/vf/wadalab/udmj/udmj64.vf + RELOC/fonts/vf/wadalab/udmj/udmj65.vf + RELOC/fonts/vf/wadalab/udmj/udmj66.vf + RELOC/fonts/vf/wadalab/udmj/udmj67.vf + RELOC/fonts/vf/wadalab/udmj/udmj68.vf + RELOC/fonts/vf/wadalab/udmj/udmj69.vf + RELOC/fonts/vf/wadalab/udmj/udmj6a.vf + RELOC/fonts/vf/wadalab/udmj/udmj6b.vf + RELOC/fonts/vf/wadalab/udmj/udmj6c.vf + RELOC/fonts/vf/wadalab/udmj/udmj6d.vf + RELOC/fonts/vf/wadalab/udmj/udmj6e.vf + RELOC/fonts/vf/wadalab/udmj/udmj6f.vf + RELOC/fonts/vf/wadalab/udmj/udmj70.vf + RELOC/fonts/vf/wadalab/udmj/udmj71.vf + RELOC/fonts/vf/wadalab/udmj/udmj72.vf + RELOC/fonts/vf/wadalab/udmj/udmj73.vf + RELOC/fonts/vf/wadalab/udmj/udmj74.vf + RELOC/fonts/vf/wadalab/udmj/udmj75.vf + RELOC/fonts/vf/wadalab/udmj/udmj76.vf + RELOC/fonts/vf/wadalab/udmj/udmj77.vf + RELOC/fonts/vf/wadalab/udmj/udmj78.vf + RELOC/fonts/vf/wadalab/udmj/udmj79.vf + RELOC/fonts/vf/wadalab/udmj/udmj7a.vf + RELOC/fonts/vf/wadalab/udmj/udmj7b.vf + RELOC/fonts/vf/wadalab/udmj/udmj7c.vf + RELOC/fonts/vf/wadalab/udmj/udmj7d.vf + RELOC/fonts/vf/wadalab/udmj/udmj7e.vf + RELOC/fonts/vf/wadalab/udmj/udmj7f.vf + RELOC/fonts/vf/wadalab/udmj/udmj80.vf + RELOC/fonts/vf/wadalab/udmj/udmj81.vf + RELOC/fonts/vf/wadalab/udmj/udmj82.vf + RELOC/fonts/vf/wadalab/udmj/udmj83.vf + RELOC/fonts/vf/wadalab/udmj/udmj84.vf + RELOC/fonts/vf/wadalab/udmj/udmj85.vf + RELOC/fonts/vf/wadalab/udmj/udmj86.vf + RELOC/fonts/vf/wadalab/udmj/udmj87.vf + RELOC/fonts/vf/wadalab/udmj/udmj88.vf + RELOC/fonts/vf/wadalab/udmj/udmj89.vf + RELOC/fonts/vf/wadalab/udmj/udmj8a.vf + RELOC/fonts/vf/wadalab/udmj/udmj8b.vf + RELOC/fonts/vf/wadalab/udmj/udmj8c.vf + RELOC/fonts/vf/wadalab/udmj/udmj8d.vf + RELOC/fonts/vf/wadalab/udmj/udmj8e.vf + RELOC/fonts/vf/wadalab/udmj/udmj8f.vf + RELOC/fonts/vf/wadalab/udmj/udmj90.vf + RELOC/fonts/vf/wadalab/udmj/udmj91.vf + RELOC/fonts/vf/wadalab/udmj/udmj92.vf + RELOC/fonts/vf/wadalab/udmj/udmj93.vf + RELOC/fonts/vf/wadalab/udmj/udmj94.vf + RELOC/fonts/vf/wadalab/udmj/udmj95.vf + RELOC/fonts/vf/wadalab/udmj/udmj96.vf + RELOC/fonts/vf/wadalab/udmj/udmj97.vf + RELOC/fonts/vf/wadalab/udmj/udmj98.vf + RELOC/fonts/vf/wadalab/udmj/udmj99.vf + RELOC/fonts/vf/wadalab/udmj/udmj9a.vf + RELOC/fonts/vf/wadalab/udmj/udmj9b.vf + RELOC/fonts/vf/wadalab/udmj/udmj9c.vf + RELOC/fonts/vf/wadalab/udmj/udmj9d.vf + RELOC/fonts/vf/wadalab/udmj/udmj9e.vf + RELOC/fonts/vf/wadalab/udmj/udmj9f.vf + RELOC/fonts/vf/wadalab/udmj/udmjff.vf + RELOC/fonts/vf/wadalab/umcj/umcj00.vf + RELOC/fonts/vf/wadalab/umcj/umcj03.vf + RELOC/fonts/vf/wadalab/umcj/umcj04.vf + RELOC/fonts/vf/wadalab/umcj/umcj20.vf + RELOC/fonts/vf/wadalab/umcj/umcj21.vf + RELOC/fonts/vf/wadalab/umcj/umcj22.vf + RELOC/fonts/vf/wadalab/umcj/umcj23.vf + RELOC/fonts/vf/wadalab/umcj/umcj25.vf + RELOC/fonts/vf/wadalab/umcj/umcj26.vf + RELOC/fonts/vf/wadalab/umcj/umcj30.vf + RELOC/fonts/vf/wadalab/umcj/umcj4e.vf + RELOC/fonts/vf/wadalab/umcj/umcj4f.vf + RELOC/fonts/vf/wadalab/umcj/umcj50.vf + RELOC/fonts/vf/wadalab/umcj/umcj51.vf + RELOC/fonts/vf/wadalab/umcj/umcj52.vf + RELOC/fonts/vf/wadalab/umcj/umcj53.vf + RELOC/fonts/vf/wadalab/umcj/umcj54.vf + RELOC/fonts/vf/wadalab/umcj/umcj55.vf + RELOC/fonts/vf/wadalab/umcj/umcj56.vf + RELOC/fonts/vf/wadalab/umcj/umcj57.vf + RELOC/fonts/vf/wadalab/umcj/umcj58.vf + RELOC/fonts/vf/wadalab/umcj/umcj59.vf + RELOC/fonts/vf/wadalab/umcj/umcj5a.vf + RELOC/fonts/vf/wadalab/umcj/umcj5b.vf + RELOC/fonts/vf/wadalab/umcj/umcj5c.vf + RELOC/fonts/vf/wadalab/umcj/umcj5d.vf + RELOC/fonts/vf/wadalab/umcj/umcj5e.vf + RELOC/fonts/vf/wadalab/umcj/umcj5f.vf + RELOC/fonts/vf/wadalab/umcj/umcj60.vf + RELOC/fonts/vf/wadalab/umcj/umcj61.vf + RELOC/fonts/vf/wadalab/umcj/umcj62.vf + RELOC/fonts/vf/wadalab/umcj/umcj63.vf + RELOC/fonts/vf/wadalab/umcj/umcj64.vf + RELOC/fonts/vf/wadalab/umcj/umcj65.vf + RELOC/fonts/vf/wadalab/umcj/umcj66.vf + RELOC/fonts/vf/wadalab/umcj/umcj67.vf + RELOC/fonts/vf/wadalab/umcj/umcj68.vf + RELOC/fonts/vf/wadalab/umcj/umcj69.vf + RELOC/fonts/vf/wadalab/umcj/umcj6a.vf + RELOC/fonts/vf/wadalab/umcj/umcj6b.vf + RELOC/fonts/vf/wadalab/umcj/umcj6c.vf + RELOC/fonts/vf/wadalab/umcj/umcj6d.vf + RELOC/fonts/vf/wadalab/umcj/umcj6e.vf + RELOC/fonts/vf/wadalab/umcj/umcj6f.vf + RELOC/fonts/vf/wadalab/umcj/umcj70.vf + RELOC/fonts/vf/wadalab/umcj/umcj71.vf + RELOC/fonts/vf/wadalab/umcj/umcj72.vf + RELOC/fonts/vf/wadalab/umcj/umcj73.vf + RELOC/fonts/vf/wadalab/umcj/umcj74.vf + RELOC/fonts/vf/wadalab/umcj/umcj75.vf + RELOC/fonts/vf/wadalab/umcj/umcj76.vf + RELOC/fonts/vf/wadalab/umcj/umcj77.vf + RELOC/fonts/vf/wadalab/umcj/umcj78.vf + RELOC/fonts/vf/wadalab/umcj/umcj79.vf + RELOC/fonts/vf/wadalab/umcj/umcj7a.vf + RELOC/fonts/vf/wadalab/umcj/umcj7b.vf + RELOC/fonts/vf/wadalab/umcj/umcj7c.vf + RELOC/fonts/vf/wadalab/umcj/umcj7d.vf + RELOC/fonts/vf/wadalab/umcj/umcj7e.vf + RELOC/fonts/vf/wadalab/umcj/umcj7f.vf + RELOC/fonts/vf/wadalab/umcj/umcj80.vf + RELOC/fonts/vf/wadalab/umcj/umcj81.vf + RELOC/fonts/vf/wadalab/umcj/umcj82.vf + RELOC/fonts/vf/wadalab/umcj/umcj83.vf + RELOC/fonts/vf/wadalab/umcj/umcj84.vf + RELOC/fonts/vf/wadalab/umcj/umcj85.vf + RELOC/fonts/vf/wadalab/umcj/umcj86.vf + RELOC/fonts/vf/wadalab/umcj/umcj87.vf + RELOC/fonts/vf/wadalab/umcj/umcj88.vf + RELOC/fonts/vf/wadalab/umcj/umcj89.vf + RELOC/fonts/vf/wadalab/umcj/umcj8a.vf + RELOC/fonts/vf/wadalab/umcj/umcj8b.vf + RELOC/fonts/vf/wadalab/umcj/umcj8c.vf + RELOC/fonts/vf/wadalab/umcj/umcj8d.vf + RELOC/fonts/vf/wadalab/umcj/umcj8e.vf + RELOC/fonts/vf/wadalab/umcj/umcj8f.vf + RELOC/fonts/vf/wadalab/umcj/umcj90.vf + RELOC/fonts/vf/wadalab/umcj/umcj91.vf + RELOC/fonts/vf/wadalab/umcj/umcj92.vf + RELOC/fonts/vf/wadalab/umcj/umcj93.vf + RELOC/fonts/vf/wadalab/umcj/umcj94.vf + RELOC/fonts/vf/wadalab/umcj/umcj95.vf + RELOC/fonts/vf/wadalab/umcj/umcj96.vf + RELOC/fonts/vf/wadalab/umcj/umcj97.vf + RELOC/fonts/vf/wadalab/umcj/umcj98.vf + RELOC/fonts/vf/wadalab/umcj/umcj99.vf + RELOC/fonts/vf/wadalab/umcj/umcj9a.vf + RELOC/fonts/vf/wadalab/umcj/umcj9b.vf + RELOC/fonts/vf/wadalab/umcj/umcj9c.vf + RELOC/fonts/vf/wadalab/umcj/umcj9d.vf + RELOC/fonts/vf/wadalab/umcj/umcj9e.vf + RELOC/fonts/vf/wadalab/umcj/umcj9f.vf + RELOC/fonts/vf/wadalab/umcj/umcjff.vf + RELOC/fonts/vf/wadalab/umrj/umrj00.vf + RELOC/fonts/vf/wadalab/umrj/umrj03.vf + RELOC/fonts/vf/wadalab/umrj/umrj04.vf + RELOC/fonts/vf/wadalab/umrj/umrj20.vf + RELOC/fonts/vf/wadalab/umrj/umrj21.vf + RELOC/fonts/vf/wadalab/umrj/umrj22.vf + RELOC/fonts/vf/wadalab/umrj/umrj23.vf + RELOC/fonts/vf/wadalab/umrj/umrj25.vf + RELOC/fonts/vf/wadalab/umrj/umrj26.vf + RELOC/fonts/vf/wadalab/umrj/umrj30.vf + RELOC/fonts/vf/wadalab/umrj/umrj4e.vf + RELOC/fonts/vf/wadalab/umrj/umrj4f.vf + RELOC/fonts/vf/wadalab/umrj/umrj50.vf + RELOC/fonts/vf/wadalab/umrj/umrj51.vf + RELOC/fonts/vf/wadalab/umrj/umrj52.vf + RELOC/fonts/vf/wadalab/umrj/umrj53.vf + RELOC/fonts/vf/wadalab/umrj/umrj54.vf + RELOC/fonts/vf/wadalab/umrj/umrj55.vf + RELOC/fonts/vf/wadalab/umrj/umrj56.vf + RELOC/fonts/vf/wadalab/umrj/umrj57.vf + RELOC/fonts/vf/wadalab/umrj/umrj58.vf + RELOC/fonts/vf/wadalab/umrj/umrj59.vf + RELOC/fonts/vf/wadalab/umrj/umrj5a.vf + RELOC/fonts/vf/wadalab/umrj/umrj5b.vf + RELOC/fonts/vf/wadalab/umrj/umrj5c.vf + RELOC/fonts/vf/wadalab/umrj/umrj5d.vf + RELOC/fonts/vf/wadalab/umrj/umrj5e.vf + RELOC/fonts/vf/wadalab/umrj/umrj5f.vf + RELOC/fonts/vf/wadalab/umrj/umrj60.vf + RELOC/fonts/vf/wadalab/umrj/umrj61.vf + RELOC/fonts/vf/wadalab/umrj/umrj62.vf + RELOC/fonts/vf/wadalab/umrj/umrj63.vf + RELOC/fonts/vf/wadalab/umrj/umrj64.vf + RELOC/fonts/vf/wadalab/umrj/umrj65.vf + RELOC/fonts/vf/wadalab/umrj/umrj66.vf + RELOC/fonts/vf/wadalab/umrj/umrj67.vf + RELOC/fonts/vf/wadalab/umrj/umrj68.vf + RELOC/fonts/vf/wadalab/umrj/umrj69.vf + RELOC/fonts/vf/wadalab/umrj/umrj6a.vf + RELOC/fonts/vf/wadalab/umrj/umrj6b.vf + RELOC/fonts/vf/wadalab/umrj/umrj6c.vf + RELOC/fonts/vf/wadalab/umrj/umrj6d.vf + RELOC/fonts/vf/wadalab/umrj/umrj6e.vf + RELOC/fonts/vf/wadalab/umrj/umrj6f.vf + RELOC/fonts/vf/wadalab/umrj/umrj70.vf + RELOC/fonts/vf/wadalab/umrj/umrj71.vf + RELOC/fonts/vf/wadalab/umrj/umrj72.vf + RELOC/fonts/vf/wadalab/umrj/umrj73.vf + RELOC/fonts/vf/wadalab/umrj/umrj74.vf + RELOC/fonts/vf/wadalab/umrj/umrj75.vf + RELOC/fonts/vf/wadalab/umrj/umrj76.vf + RELOC/fonts/vf/wadalab/umrj/umrj77.vf + RELOC/fonts/vf/wadalab/umrj/umrj78.vf + RELOC/fonts/vf/wadalab/umrj/umrj79.vf + RELOC/fonts/vf/wadalab/umrj/umrj7a.vf + RELOC/fonts/vf/wadalab/umrj/umrj7b.vf + RELOC/fonts/vf/wadalab/umrj/umrj7c.vf + RELOC/fonts/vf/wadalab/umrj/umrj7d.vf + RELOC/fonts/vf/wadalab/umrj/umrj7e.vf + RELOC/fonts/vf/wadalab/umrj/umrj7f.vf + RELOC/fonts/vf/wadalab/umrj/umrj80.vf + RELOC/fonts/vf/wadalab/umrj/umrj81.vf + RELOC/fonts/vf/wadalab/umrj/umrj82.vf + RELOC/fonts/vf/wadalab/umrj/umrj83.vf + RELOC/fonts/vf/wadalab/umrj/umrj84.vf + RELOC/fonts/vf/wadalab/umrj/umrj85.vf + RELOC/fonts/vf/wadalab/umrj/umrj86.vf + RELOC/fonts/vf/wadalab/umrj/umrj87.vf + RELOC/fonts/vf/wadalab/umrj/umrj88.vf + RELOC/fonts/vf/wadalab/umrj/umrj89.vf + RELOC/fonts/vf/wadalab/umrj/umrj8a.vf + RELOC/fonts/vf/wadalab/umrj/umrj8b.vf + RELOC/fonts/vf/wadalab/umrj/umrj8c.vf + RELOC/fonts/vf/wadalab/umrj/umrj8d.vf + RELOC/fonts/vf/wadalab/umrj/umrj8e.vf + RELOC/fonts/vf/wadalab/umrj/umrj8f.vf + RELOC/fonts/vf/wadalab/umrj/umrj90.vf + RELOC/fonts/vf/wadalab/umrj/umrj91.vf + RELOC/fonts/vf/wadalab/umrj/umrj92.vf + RELOC/fonts/vf/wadalab/umrj/umrj93.vf + RELOC/fonts/vf/wadalab/umrj/umrj94.vf + RELOC/fonts/vf/wadalab/umrj/umrj95.vf + RELOC/fonts/vf/wadalab/umrj/umrj96.vf + RELOC/fonts/vf/wadalab/umrj/umrj97.vf + RELOC/fonts/vf/wadalab/umrj/umrj98.vf + RELOC/fonts/vf/wadalab/umrj/umrj99.vf + RELOC/fonts/vf/wadalab/umrj/umrj9a.vf + RELOC/fonts/vf/wadalab/umrj/umrj9b.vf + RELOC/fonts/vf/wadalab/umrj/umrj9c.vf + RELOC/fonts/vf/wadalab/umrj/umrj9d.vf + RELOC/fonts/vf/wadalab/umrj/umrj9e.vf + RELOC/fonts/vf/wadalab/umrj/umrj9f.vf + RELOC/fonts/vf/wadalab/umrj/umrjff.vf +catalogue-also cjk-fonts +catalogue-ctan /fonts/wadalab +catalogue-license other-free +catalogue-topics font font-type1 font-cjk + +name wallcalendar +category Package +revision 45568 +shortdesc A wall calendar class with custom layouts +relocated 1 +longdesc This package provides a wall calendar class with custom layouts +longdesc and support for internationalization. It comes with the +longdesc following layouts: Full page photo, the calendar days overlaid +longdesc with opacity Full page photo, the photo above the calendar days +longdesc Small landscape photo, with a calendar grid Year planner +longdesc Thumbnails and captions Varnish mask There is also support for +longdesc loading event marks from a CSV file. +containersize 26448 +containerchecksum 43a682e78a3a80784180dfd84627e5584af9199bef965bb5551b203df7f939512d4307c450ed1ee55caab611154c1511fc339831da2907527c06ab738350e05a +doccontainersize 2708456 +doccontainerchecksum e4816b91f08a26e99b03892b3d70f4d81110e476461dec505225335d46955f9f3790d883faf19afa4d7a31ff05afac4fea870e37299f45827c5a8155d4bbaf4c +docfiles size=2414 + RELOC/doc/lualatex/wallcalendar/LICENSE.txt + RELOC/doc/lualatex/wallcalendar/README.md details="Readme" + RELOC/doc/lualatex/wallcalendar/doc/Makefile + RELOC/doc/lualatex/wallcalendar/doc/auto/wallcalendar-code.el + RELOC/doc/lualatex/wallcalendar/doc/auto/wallcalendar.el + RELOC/doc/lualatex/wallcalendar/doc/doc-setup.org + RELOC/doc/lualatex/wallcalendar/doc/examples/Makefile + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showframe-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showframe-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showframe-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showtrims-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showtrims-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showtrims-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-varnishmask-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-varnishmask-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-varnishmask-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-marks.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-marks.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-plain.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-plain.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showframe.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showframe.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showtrims.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showtrims.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-thumbnails.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-thumbnails.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-english.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-english.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-hungarian.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-hungarian.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-japanese.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-japanese.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-varnishmask.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-varnishmask.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-year-planner.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-year-planner.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/data/astro-2018.json + RELOC/doc/lualatex/wallcalendar/doc/examples/data/holidays.csv + RELOC/doc/lualatex/wallcalendar/doc/examples/data/mark_defaults.csv + RELOC/doc/lualatex/wallcalendar/doc/examples/data/moonphases.csv + RELOC/doc/lualatex/wallcalendar/doc/examples/diff-cal.sh + RELOC/doc/lualatex/wallcalendar/doc/examples/forest.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog-english.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog-hungarian.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog-japanese.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/local-english.sty + RELOC/doc/lualatex/wallcalendar/doc/examples/local-hungarian.sty + RELOC/doc/lualatex/wallcalendar/doc/examples/local-japanese.sty + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/frog-crop-thumb.jpg + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/frog-crop.jpg + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/frog.jpg + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/obscure-crop.jpg + RELOC/doc/lualatex/wallcalendar/doc/frontpage.tex + RELOC/doc/lualatex/wallcalendar/doc/latexmkrc + RELOC/doc/lualatex/wallcalendar/doc/local.sty + RELOC/doc/lualatex/wallcalendar/doc/memoir-article.cls + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.fdb_latexmk + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.fls + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.org + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.tex + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar.org + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar.tex + RELOC/doc/lualatex/wallcalendar/wallcalendar-code.pdf details="Code documentation" + RELOC/doc/lualatex/wallcalendar/wallcalendar-layouts.png + RELOC/doc/lualatex/wallcalendar/wallcalendar.pdf details="User Manual" +runfiles size=44 + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-czech.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-dutch.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-english.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-french.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-german.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-hungarian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-italian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-japanese.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-norwegian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-portuguese.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-romanian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-serbian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-slovakian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-slovenian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-spanish.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-swedish.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-thai.tex + RELOC/tex/lualatex/wallcalendar/wallcalendar-csv.lua + RELOC/tex/lualatex/wallcalendar/wallcalendar-date.lua + RELOC/tex/lualatex/wallcalendar/wallcalendar-helpers.lua + RELOC/tex/lualatex/wallcalendar/wallcalendar.cls +catalogue-contact-repository https://github.com/profound-labs/wallcalendar +catalogue-ctan /macros/luatex/latex/wallcalendar +catalogue-license lppl +catalogue-topics class calendar luatex use-lua +catalogue-version 1.3.1 + +name wallpaper +category Package +revision 15878 +shortdesc Easy addition of wallpapers (background images) to LaTeX documents, including tiling +relocated 1 +longdesc This collection contains files to add wallpapers (background +longdesc images) to LaTeX documents. It uses the eso-pic package, but +longdesc provides simple commands to include effects such as tiling. An +longdesc example is provided, which works under both LaTeX and pdfLaTeX. +containersize 1576 +containerchecksum 45647b8f8ebab9706437be2ce63f3506638fcc794839ff366210db4c35a3e16b2a39127fcacd0d97df356180770b6808e80e63ea1a50e69fc591cc0992e1787b +doccontainersize 1277340 +doccontainerchecksum 46b890e0ea7bbfb3c3421f79338f5140a105bb90cbe712477e2dc956f834682f6d137e39492437d8f206fefaf07086cab7f3cdd6c27dc7136df54c5ba850b4a3 +docfiles size=317 + RELOC/doc/latex/wallpaper/README details="Readme" + RELOC/doc/latex/wallpaper/example/TGTamber.png + RELOC/doc/latex/wallpaper/example/auto/example.el + RELOC/doc/latex/wallpaper/example/example.tex + RELOC/doc/latex/wallpaper/example/hya.png + RELOC/doc/latex/wallpaper/wallpapermanual.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/latex/wallpaper/wallpaper.sty +catalogue-ctan /macros/latex/contrib/wallpaper +catalogue-license lppl +catalogue-topics layout-page +catalogue-version 1.10 + +name warning +category Package +revision 22028 +shortdesc Global warnings at the end of the logfile +relocated 1 +longdesc This package provides a command that generates a list of +longdesc warnings that are printed out at the very end of the logfile. +longdesc This is useful for warnings such as 'Rerun for this or that +longdesc reason' or 'This is a draft, change it before the final run'. +containersize 1488 +containerchecksum de3d9ef9a6dda4022fa8f04a0be509d3e9e583a539a3590cd30527f108ff739e0c1dbf8c5945e0a72902b14c2616e26d41a05f23957e9466c788fd228ac6b082 +doccontainersize 256532 +doccontainerchecksum 04c8ecdd39f2e0b3aec8cf6d9235acc7e10c8e182bbb2a7b30a46cf9ce7c08fb0fea21956356b3dad500a5a58c7a2b63e9471b2e8fe626b17492f721f527ce72 +docfiles size=64 + RELOC/doc/latex/warning/warning-doc.pdf details="Package documentation" + RELOC/doc/latex/warning/warning-doc.tex +runfiles size=1 + RELOC/tex/latex/warning/warning.sty +catalogue-ctan /macros/latex/contrib/warning +catalogue-license lppl +catalogue-topics comp-supp +catalogue-version 0.01 + +name warpcol +category Package +revision 15878 +shortdesc Relative alignment of rows in numeric columns in tabulars +relocated 1 +longdesc Defines a tabular column type for formatting numerical columns +longdesc in LaTeX. The column type enables numerical items to be right +longdesc justified relative to each other, while centred beneath the +longdesc column label. In addition, macros are provided to enable +longdesc variations on this column type to be defined. Usage of the +longdesc package is superficially similar to that of dcolumn; however, +longdesc the alignment scheme is different, and the packages have +longdesc different, though overlapping, applications. +containersize 1336 +containerchecksum 66fd9e243339e0841576e1a1a3de05f2e69a24a7e1dd31eb38d848d06c9183f691229d8e89878b661c7f6524bd9ebd1380fcd4c9b175feb8490cd4476ac81303 +doccontainersize 85512 +doccontainerchecksum e88082379e90edf1517579009881204bcb70df888593d7535e2b1e5b673cf116a456967b0ca5ce372efef9dc0818b9d0dc252be79819f6b346ad8619d70551f3 +docfiles size=25 + RELOC/doc/latex/warpcol/README details="Package Readme" + RELOC/doc/latex/warpcol/warpcol.pdf details="Package documentation" +srccontainersize 3416 +srccontainerchecksum 843965fdddfffe6bec9567e140b9c6db66f60d1eb90ff5830b08b17499f21782ae1842989d479e50c293a8e1d7e2a9ab886622b8375384e1238871d6872e9e52 +srcfiles size=4 + RELOC/source/latex/warpcol/warpcol.dtx + RELOC/source/latex/warpcol/warpcol.ins +runfiles size=1 + RELOC/tex/latex/warpcol/warpcol.sty +catalogue-ctan /macros/latex/contrib/warpcol +catalogue-license lppl +catalogue-topics table +catalogue-version 1.0c + +name was +category Package +revision 21439 +shortdesc A collection of small packages by Walter Schmidt +relocated 1 +longdesc A bundle of packages that arise in the author's area of +longdesc interest: compliance of maths typesetting with ISO standards; +longdesc symbols that work in both maths and text modes commas for both +longdesc decimal separator and maths; and upright Greek letters in +longdesc maths. +containersize 3092 +containerchecksum e3dec504da2dd28534872b4363695d797a874a0af5c2a77e6559a2765f6150cc50614b8905c90faa6fb9fd54d9634a9ddff148564904b1454f21d3fbd21918dd +doccontainersize 578872 +doccontainerchecksum 24cc3a8931fe48134810ffe626789139a821585f0d359a177c56ae5a442482fb9d36f344061128ac185469b97c4c3f440ad02ebc7135366253cd9bbcf99895bc +docfiles size=180 + RELOC/doc/latex/was/fixmath.pdf + RELOC/doc/latex/was/gensymb.pdf + RELOC/doc/latex/was/icomma.pdf + RELOC/doc/latex/was/readme.1st + RELOC/doc/latex/was/upgreek.pdf +srccontainersize 9388 +srccontainerchecksum 507ed77f8a5a119c16fcb9478a559f516a2e612893941f8854e4945968ef5b44ccab641f1737c745b33209828a4541e3615dd46f304b5e2f5b29c5282eeeccef +srcfiles size=16 + RELOC/source/latex/was/fixmath.dtx + RELOC/source/latex/was/fixmath.ins + RELOC/source/latex/was/gensymb.dtx + RELOC/source/latex/was/gensymb.ins + RELOC/source/latex/was/icomma.dtx + RELOC/source/latex/was/icomma.ins + RELOC/source/latex/was/upgreek.dtx + RELOC/source/latex/was/upgreek.ins +runfiles size=6 + RELOC/tex/latex/was/fixmath.sty + RELOC/tex/latex/was/gensymb.sty + RELOC/tex/latex/was/icomma.sty + RELOC/tex/latex/was/upgreek.sty +catalogue-ctan /macros/latex/contrib/was +catalogue-license collection +catalogue-topics collection + +name wasy +category Package +revision 53533 +shortdesc The wasy fonts (Waldi symbol fonts) +relocated 1 +longdesc This font contains all lasy characters (by L.Lamport, copyright +longdesc notice in lasychr.mf), and a lot more symbols. Provided are the +longdesc Metafont files for 5-10pt, and bold and slanted 10pt fonts, +longdesc together with a .tex and .pdf documentation, and a file for +longdesc using the fonts in a PLAIN-TeX document. Type-1 fonts by +longdesc Michael Sharpe and Taco Hoekwater are available as separate +longdesc package wasy-type1. Support under LaTeX is provided by Axel +longdesc Kielhorn's wasysym package. +containersize 24132 +containerchecksum 4c747ea3cfab820b803f624a32178a1d09cbb5a3c441ee423abc74caeef9217095491c0c490f11d3a6d6adf052b97492e081b2abedce6cc9c61410a8e878f5b8 +doccontainersize 305032 +doccontainerchecksum 4ee0dba83e3d1e00a1c58bc1c27d1b8e7e1677bfadf1d2653be216618d65fd168eab7aae26a5fe5ffae42c546b3438e2ad15f1a7bbfd58cd7b75cafa78a46205 +docfiles size=86 + RELOC/doc/fonts/wasy/README details="Readme" + RELOC/doc/fonts/wasy/wasydoc.pdf details="Package documentation" + RELOC/doc/fonts/wasy/wasydoc.tex + RELOC/doc/fonts/wasy/wasyfont.2 +runfiles size=50 + RELOC/fonts/source/public/wasy/lasychr.mf + RELOC/fonts/source/public/wasy/rsym.mf + RELOC/fonts/source/public/wasy/wasy10.mf + RELOC/fonts/source/public/wasy/wasy5.mf + RELOC/fonts/source/public/wasy/wasy6.mf + RELOC/fonts/source/public/wasy/wasy7.mf + RELOC/fonts/source/public/wasy/wasy8.mf + RELOC/fonts/source/public/wasy/wasy9.mf + RELOC/fonts/source/public/wasy/wasyb10.mf + RELOC/fonts/source/public/wasy/wasychr.mf + RELOC/fonts/source/public/wasy/wasysl10.mf + RELOC/fonts/tfm/public/wasy/wasy10.tfm + RELOC/fonts/tfm/public/wasy/wasy5.tfm + RELOC/fonts/tfm/public/wasy/wasy6.tfm + RELOC/fonts/tfm/public/wasy/wasy7.tfm + RELOC/fonts/tfm/public/wasy/wasy8.tfm + RELOC/fonts/tfm/public/wasy/wasy9.tfm + RELOC/fonts/tfm/public/wasy/wasyb10.tfm + RELOC/fonts/tfm/public/wasy/wasysl10.tfm + RELOC/tex/plain/wasy/wasyfont.tex +catalogue-alias wasy2 +catalogue-also wasy-type1 wasysym +catalogue-ctan /fonts/wasy +catalogue-license pd +catalogue-topics font font-mf font-symbol +catalogue-version 2.5 + +name wasy-type1 +category Package +revision 53534 +shortdesc Type 1 versions of wasy fonts +relocated 1 +longdesc Converted (Adobe Type 1) outlines of the wasy fonts. +depend wasy +execute addMixedMap wasy.map +containersize 261536 +containerchecksum d7131c025bd97bdaf62697feb698da97d175783e4b0502d3e85b60a663f46a0520268a6063956afaddc6308ddd21954992bf8d216049cb324133e3760ac20825 +doccontainersize 740 +doccontainerchecksum d9c88d39deabe19393df0b6d83bddd644e347592735cd7511dc70374ea015cd7fdf36ac9f320b44c612c8276eee3d7cd94f9e0b26de050c0771c85ec7dbae53c +docfiles size=1 + RELOC/doc/fonts/wasy-type1/README details="Readme" +runfiles size=91 + RELOC/fonts/afm/public/wasy-type1/wasy10.afm + RELOC/fonts/afm/public/wasy-type1/wasy5.afm + RELOC/fonts/afm/public/wasy-type1/wasy6.afm + RELOC/fonts/afm/public/wasy-type1/wasy7.afm + RELOC/fonts/afm/public/wasy-type1/wasy8.afm + RELOC/fonts/afm/public/wasy-type1/wasy9.afm + RELOC/fonts/afm/public/wasy-type1/wasyb10.afm + RELOC/fonts/afm/public/wasy-type1/wasysl10.afm + RELOC/fonts/map/dvips/wasy-type1/wasy.map + RELOC/fonts/type1/public/wasy-type1/wasy10.pfb + RELOC/fonts/type1/public/wasy-type1/wasy5.pfb + RELOC/fonts/type1/public/wasy-type1/wasy6.pfb + RELOC/fonts/type1/public/wasy-type1/wasy7.pfb + RELOC/fonts/type1/public/wasy-type1/wasy8.pfb + RELOC/fonts/type1/public/wasy-type1/wasy9.pfb + RELOC/fonts/type1/public/wasy-type1/wasyb10.pfb + RELOC/fonts/type1/public/wasy-type1/wasysl10.pfb +catalogue-alias wasy2-ps +catalogue-also wasy wasysym +catalogue-ctan /fonts/wasy-type1 +catalogue-license pd +catalogue-topics font font-type1 font-symbol +catalogue-version 001.002 + +name wasysym +category Package +revision 54080 +shortdesc LaTeX support for the wasy fonts +relocated 1 +longdesc The wasy (Waldi Symbol) font by Roland Waldi provides many +longdesc glyphs like male and female symbols and astronomical symbols, +longdesc as well as the complete lasy font set and other odds and ends. +longdesc This package implements an easy to use interface for these +longdesc symbols. +containersize 3660 +containerchecksum 408f9c2b70d7860f7d8f7ee7f93af1351442b92aad9c8d8e4a501414058d8347e6da2408df3d5b6fe217597861eda5eda499771a7e973da03597f24b76250da0 +doccontainersize 163244 +doccontainerchecksum ffa36c6f1446c0dcdf1e1dd8b47946eb84d666714d94eac28c857170c9aa414b612486fcf107ae462c50ecafd6ff20c90c776abb5774db64a32aa07be8c58b2f +docfiles size=41 + RELOC/doc/latex/wasysym/README.md + RELOC/doc/latex/wasysym/wasysym.pdf details="Package documentation" +srccontainersize 9048 +srccontainerchecksum 12dbdd1e868c3382e7ccb5a507b7f72c20e3df3105e272c00b8b6294f10c1099d3c6c7b1a2db5bc96b866e246807604b615d8278357d0214539a8f959de14667 +srcfiles size=9 + RELOC/source/latex/wasysym/wasysym.dtx + RELOC/source/latex/wasysym/wasysym.ins +runfiles size=5 + RELOC/tex/latex/wasysym/uwasy.fd + RELOC/tex/latex/wasysym/uwasyvar.fd + RELOC/tex/latex/wasysym/wasysym.sty +catalogue-also wasy wasy-type1 +catalogue-ctan /macros/latex/contrib/wasysym +catalogue-license lppl1.3c +catalogue-topics font-supp +catalogue-version 2.4 + +name web +category TLCore +revision 57972 +shortdesc The original literate programming system +longdesc The system processes 'web' files in two ways: firstly to +longdesc rearrange them to produce compilable code (using the program +longdesc tangle), and secondly to produce a TeX source (using the +longdesc program weave) that may be typeset for comfortable reading. +depend kpathsea +depend web.ARCH +containersize 500 +containerchecksum 4463318dc2dd2f5c046f439902f57396ab36fd8f30a36c6e83d26ee5045aecb301e3d0bb62cf1bcc37fd9150fb5aadfa8fd642f0d6e33fb5acb28545abaac974 +doccontainersize 41480 +doccontainerchecksum f90cfd6712f2f6f6058f7aa80051b313b2bccbc0f0fc868e8c371cda5155d48058fff5b8c7a056d1494a14faf874fdcf3ab969a9e276c8b4ccac8d4138d1d9ae +docfiles size=16 + texmf-dist/doc/man/man1/tangle.1 + texmf-dist/doc/man/man1/tangle.man1.pdf + texmf-dist/doc/man/man1/weave.1 + texmf-dist/doc/man/man1/weave.man1.pdf +catalogue-ctan /systems/knuth/dist/web +catalogue-license knuth +catalogue-topics litprog +catalogue-version 4.5 + +name web.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of web +containersize 77148 +containerchecksum be0b461afaa7013fb15abbbe949aabe74eaedaf8b749b5e31cac9346d9ab73817c82904043e02ccd10945705b0898dc9d1162fccb1459c92eb3b24535d018b2b +binfiles arch=aarch64-linux size=64 + bin/aarch64-linux/tangle + bin/aarch64-linux/weave + +name web.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of web +containersize 88072 +containerchecksum 382a68d16600c7ef7665b5a14057a872b96c783fbf31dca4ffe34eee2209ede33ac47196ab90dab0c7769a449435934ce99e1757e50a77406236464048c54aa0 +binfiles arch=amd64-freebsd size=72 + bin/amd64-freebsd/tangle + bin/amd64-freebsd/weave + +name web.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of web +containersize 74216 +containerchecksum a05f90e8a79c73e961324515bcbc63267524198efd7f63e47d4ab99538b6ae0e055db53378af1140c7f930e18485c889d5f044224e097ffd62a2bc37019af3ee +binfiles arch=amd64-netbsd size=77 + bin/amd64-netbsd/tangle + bin/amd64-netbsd/weave + +name web.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of web +containersize 63452 +containerchecksum 1c9294f5cafbe8e2faad653f768631f9bd23c46af15ba873ab47140f5d6a8e3ba2d6e44e7a444832eb864be3535a163c25dece4b91ae16605d97aa3c17fd2234 +binfiles arch=armhf-linux size=53 + bin/armhf-linux/tangle + bin/armhf-linux/weave + +name web.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of web +containersize 37424 +containerchecksum 3cc157301bcbe3ad5ddb605865f449f468bc95190fe4a9697b603db4b73657136f142789eeb6ccfc58a2e5c2ac1f0870d958acda77e204f0eee313dc0250f98c +binfiles arch=i386-cygwin size=28 + bin/i386-cygwin/tangle.exe + bin/i386-cygwin/weave.exe + +name web.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of web +containersize 70292 +containerchecksum 9f0a4f6178c36a08ecfc7db3a794dba275818bae1521dfc1176d14f3af456f538ef05159e9aec946291c9bdfa74ffe6c1c3582f146360e55b4d06adb539478de +binfiles arch=i386-freebsd size=59 + bin/i386-freebsd/tangle + bin/i386-freebsd/weave + +name web.i386-linux +category TLCore +revision 57878 +shortdesc i386-linux files of web +containersize 75520 +containerchecksum 5b1cdc0293a4a5f844df7eaf747df7a214a77e88251703f6fe0e92de85ed4ac13b9b64b604253380a929c495636d393b7e8063193dbb1c5422ff1c89edd651d8 +binfiles arch=i386-linux size=65 + bin/i386-linux/tangle + bin/i386-linux/weave + +name web.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of web +containersize 60424 +containerchecksum 02cd6e2972733513c0bd26075fa32caa594027934d1094424bdc6876fa0d426f1ede8ff7ad72a063d3765632e08cabf84bd674c96b0e1422b6406d43c3215357 +binfiles arch=i386-netbsd size=71 + bin/i386-netbsd/tangle + bin/i386-netbsd/weave + +name web.i386-solaris +category TLCore +revision 57938 +shortdesc i386-solaris files of web +containersize 75948 +containerchecksum a61b7b1fdbddf996d11ea65427454a08114a5036cf0f831be2fd863c5ae448b212f0f2b78f58bfa7a8c57fc300f8f59f084e8547ff048ea85406c5ea696bedfa +binfiles arch=i386-solaris size=60 + bin/i386-solaris/tangle + bin/i386-solaris/weave + +name web.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of web +containersize 162244 +containerchecksum 31b103f80d1be1ad2e6ac6d95afe53d3d526e1406fce93bca5fe33494e5a4101a17ab2ac3732c8573b00cda60f48902f5b83e9c8e5613522b20f973b7fc89c28 +binfiles arch=universal-darwin size=167 + bin/universal-darwin/tangle + bin/universal-darwin/weave + +name web.win32 +category TLCore +revision 58783 +shortdesc win32 files of web +containersize 39168 +containerchecksum 26edb98358a2c963c127ff9fe9e2e46e818f5b05abe1dac133f9cacc8b0f444b24f9d4a55e5c7556484edcd83a23d2edac925e4db99ff8d39efd722f90c2293c +binfiles arch=win32 size=26 + bin/win32/tangle.exe + bin/win32/weave.exe + +name web.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of web +containersize 44864 +containerchecksum 8de268e03717769303a559b1dd781094262522b35328d362631d8d2d9d5790db63a449c980a3687c0ad53970524e79dd0cb078c508cac7783ea7b38388a9376a +binfiles arch=x86_64-cygwin size=27 + bin/x86_64-cygwin/tangle.exe + bin/x86_64-cygwin/weave.exe + +name web.x86_64-darwinlegacy +category TLCore +revision 58231 +shortdesc x86_64-darwinlegacy files of web +containersize 75068 +containerchecksum a008f71d6986aeadbd6b5502c9a622e4226557c40caa61bc9f3e62443516c84fac8f49a464a4ba18018222d068a488128f0b00ae653eef96123496b5f8add165 +binfiles arch=x86_64-darwinlegacy size=60 + bin/x86_64-darwinlegacy/tangle + bin/x86_64-darwinlegacy/weave + +name web.x86_64-linux +category TLCore +revision 57878 +shortdesc x86_64-linux files of web +containersize 78152 +containerchecksum 06b448dec84c77252fe8d45cc460a327b8693363a5af6b621dc0656fa9ff9731db20d5b7faa749ee211b93d291a75ad90a2d864ce16495a47033f901bad11f7d +binfiles arch=x86_64-linux size=60 + bin/x86_64-linux/tangle + bin/x86_64-linux/weave + +name web.x86_64-linuxmusl +category TLCore +revision 57878 +shortdesc x86_64-linuxmusl files of web +containersize 84236 +containerchecksum 8aaf5cd47baa05a6ce1ba56e6af461fda0cdb11b274145b589596a43bcd6c3ce120bcf22fa914fbfb9f34dd188d83e1fa972ebbe169251bd300636a434058793 +binfiles arch=x86_64-linuxmusl size=65 + bin/x86_64-linuxmusl/tangle + bin/x86_64-linuxmusl/weave + +name web.x86_64-solaris +category TLCore +revision 57938 +shortdesc x86_64-solaris files of web +containersize 86952 +containerchecksum 702e1e70705a91dd9b84cfb5e3b4287f7583f145b627051cd14ef33783c3f7a474e17c404534d46419c812401097a74beefa2ce3be7fd457e2daad38c040e76a +binfiles arch=x86_64-solaris size=69 + bin/x86_64-solaris/tangle + bin/x86_64-solaris/weave + +name webguide +category Package +revision 25813 +shortdesc Brief Guide to LaTeX Tools for Web publishing +relocated 1 +longdesc The documentation constitutes an example of the package's own +longdesc recommendations (being presented both in PDF and HTML). +containersize 452 +containerchecksum 0c99e86fcba92d067ddd658893b58463390764b215515068e025563b66f445b23ae11482345bf305106afc1284ffaf32b23a28c8e0f81319002dd6332c8a3848 +doccontainersize 145660 +doccontainerchecksum 933ceaf7bb2400fff1bfc5ec26f60d750e0995680579fe487536ddcf8eca670e2b6d3fb6150b4ad659c6fa594b9db540523a878c74e9aba9be7710b5380e55af +docfiles size=70 + RELOC/doc/latex/webguide/README details="README" + RELOC/doc/latex/webguide/expeg.6 + RELOC/doc/latex/webguide/expeg6.mps + RELOC/doc/latex/webguide/webguide.css + RELOC/doc/latex/webguide/webguide.html details="The document, as HTML" + RELOC/doc/latex/webguide/webguide.pdf details="The document, as PDF" + RELOC/doc/latex/webguide/webguide.tex + RELOC/doc/latex/webguide/webguide0x.gif +catalogue-ctan /info/webguide +catalogue-license other-free +catalogue-topics latex-doc + +name webquiz +category Package +revision 58808 +shortdesc Write interactive web based quizzes +longdesc WebQuiz makes it possible to use LaTeX to write interactive web +longdesc based quizzes. The quizzes are first written in LaTeX and then +longdesc converted into HTML files using WebQuiz, which is written in +longdesc Python3. The conversion from LaTeX to HTML is done behind the +longdesc scenes using TeX4ht. +depend webquiz.ARCH +containersize 47352 +containerchecksum 04ce66027089c2be815380a10540e6c12040d33a33b1de9c6a98985e82a65e87f58a19b6cbf2b0ad7bc8e0a1e500bd21a80e2adbe3ff395ec4be1ecdd5b5adf0 +doccontainersize 6857256 +doccontainerchecksum 58faed1d21c5f0abe004d5aff0ef6f754012722dace25948e236c940f3e9f3a49d4f661d6692afa0bbd0a654424017e84611c32cdd99a0ef60e510c4b2fa01e9 +docfiles size=2044 + texmf-dist/doc/latex/webquiz/README-doc + texmf-dist/doc/latex/webquiz/README.rst + texmf-dist/doc/latex/webquiz/examples/README-examples + texmf-dist/doc/latex/webquiz/examples/answer-complex.png + texmf-dist/doc/latex/webquiz/examples/answer-complex.tex + texmf-dist/doc/latex/webquiz/examples/answer-integer.png + texmf-dist/doc/latex/webquiz/examples/answer-integer.tex + texmf-dist/doc/latex/webquiz/examples/answer-lowercase.png + texmf-dist/doc/latex/webquiz/examples/answer-lowercase.tex + texmf-dist/doc/latex/webquiz/examples/answer-number.png + texmf-dist/doc/latex/webquiz/examples/answer-number.tex + texmf-dist/doc/latex/webquiz/examples/answer-star.png + texmf-dist/doc/latex/webquiz/examples/answer-star.tex + texmf-dist/doc/latex/webquiz/examples/answer-string.png + texmf-dist/doc/latex/webquiz/examples/answer-string.tex + texmf-dist/doc/latex/webquiz/examples/breadcrumbs.png + texmf-dist/doc/latex/webquiz/examples/breadcrumbs.tex + texmf-dist/doc/latex/webquiz/examples/choice-multiple.png + texmf-dist/doc/latex/webquiz/examples/choice-multiple.tex + texmf-dist/doc/latex/webquiz/examples/choice-single.png + texmf-dist/doc/latex/webquiz/examples/choice-single.tex + texmf-dist/doc/latex/webquiz/examples/ctanLion.jpg + texmf-dist/doc/latex/webquiz/examples/ctanLion.png + texmf-dist/doc/latex/webquiz/examples/ctanLion.tex + texmf-dist/doc/latex/webquiz/examples/discussion-Qref.png + texmf-dist/doc/latex/webquiz/examples/discussion-Qref.tex + texmf-dist/doc/latex/webquiz/examples/discussion-ref.png + texmf-dist/doc/latex/webquiz/examples/discussion-ref.tex + texmf-dist/doc/latex/webquiz/examples/discussion.png + texmf-dist/doc/latex/webquiz/examples/discussion.tex + texmf-dist/doc/latex/webquiz/examples/display-as-image.png + texmf-dist/doc/latex/webquiz/examples/display-as-image.tex + texmf-dist/doc/latex/webquiz/examples/french.png + texmf-dist/doc/latex/webquiz/examples/french.tex + texmf-dist/doc/latex/webquiz/examples/index-cz.png + texmf-dist/doc/latex/webquiz/examples/index-cz.tex + texmf-dist/doc/latex/webquiz/examples/index-en.png + texmf-dist/doc/latex/webquiz/examples/index-en.tex + texmf-dist/doc/latex/webquiz/examples/montypython.png + texmf-dist/doc/latex/webquiz/examples/montypython.tex + texmf-dist/doc/latex/webquiz/examples/nounits.png + texmf-dist/doc/latex/webquiz/examples/nounits.tex + texmf-dist/doc/latex/webquiz/examples/onepage.png + texmf-dist/doc/latex/webquiz/examples/onepage.tex + texmf-dist/doc/latex/webquiz/examples/pst2pdf.png + texmf-dist/doc/latex/webquiz/examples/pst2pdf.tex + texmf-dist/doc/latex/webquiz/examples/pstricks-ex.png + texmf-dist/doc/latex/webquiz/examples/pstricks-ex.tex + texmf-dist/doc/latex/webquiz/examples/quiz-page.png + texmf-dist/doc/latex/webquiz/examples/quiz-page.tex + texmf-dist/doc/latex/webquiz/examples/quizindex-dropdown.png + texmf-dist/doc/latex/webquiz/examples/random.png + texmf-dist/doc/latex/webquiz/examples/random.tex + texmf-dist/doc/latex/webquiz/examples/simple-html.png + texmf-dist/doc/latex/webquiz/examples/simple-pdf.png + texmf-dist/doc/latex/webquiz/examples/simple.tex + texmf-dist/doc/latex/webquiz/examples/theme-blue.png + texmf-dist/doc/latex/webquiz/examples/theme-blue.tex + texmf-dist/doc/latex/webquiz/examples/theme-darkblue.png + texmf-dist/doc/latex/webquiz/examples/theme-darkblue.tex + texmf-dist/doc/latex/webquiz/examples/theme-darkred.png + texmf-dist/doc/latex/webquiz/examples/theme-darkred.tex + texmf-dist/doc/latex/webquiz/examples/theme-default.png + texmf-dist/doc/latex/webquiz/examples/theme-default.tex + texmf-dist/doc/latex/webquiz/examples/theme-earthy.png + texmf-dist/doc/latex/webquiz/examples/theme-earthy.tex + texmf-dist/doc/latex/webquiz/examples/theme-fresh.png + texmf-dist/doc/latex/webquiz/examples/theme-fresh.tex + texmf-dist/doc/latex/webquiz/examples/theme-light.png + texmf-dist/doc/latex/webquiz/examples/theme-light.tex + texmf-dist/doc/latex/webquiz/examples/theme-lively.png + texmf-dist/doc/latex/webquiz/examples/theme-lively.tex + texmf-dist/doc/latex/webquiz/examples/theme-muted.png + texmf-dist/doc/latex/webquiz/examples/theme-muted.tex + texmf-dist/doc/latex/webquiz/examples/theme-sleek.png + texmf-dist/doc/latex/webquiz/examples/theme-sleek.tex + texmf-dist/doc/latex/webquiz/examples/theme-spring.png + texmf-dist/doc/latex/webquiz/examples/theme-spring.tex + texmf-dist/doc/latex/webquiz/examples/theme-vibrant.png + texmf-dist/doc/latex/webquiz/examples/theme-vibrant.tex + texmf-dist/doc/latex/webquiz/examples/tikz-ex.png + texmf-dist/doc/latex/webquiz/examples/tikz-ex.tex + texmf-dist/doc/latex/webquiz/webquiz-online-manual.pdf details="Online manual" + texmf-dist/doc/latex/webquiz/webquiz-online-manual.tex + texmf-dist/doc/latex/webquiz/webquiz.languages + texmf-dist/doc/latex/webquiz/webquiz.pdf details="Package documentation" + texmf-dist/doc/latex/webquiz/webquiz.settings + texmf-dist/doc/latex/webquiz/webquiz.tex + texmf-dist/doc/latex/webquiz/webquiz.themes + texmf-dist/doc/latex/webquiz/webquiz.usage + texmf-dist/doc/latex/webquiz/www/css/webquiz-blue.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-darkblue.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-darkred.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-default.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-earthy.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-fresh.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-light.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-lively.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-muted.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-sleek.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-spring.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-vibrant.css + texmf-dist/doc/latex/webquiz/www/doc/webquiz-online-manual.tex + texmf-dist/doc/latex/webquiz/www/js/webquiz.js + texmf-dist/doc/man/man1/webquiz.1 + texmf-dist/doc/man/man1/webquiz.man1.pdf +runfiles size=76 + texmf-dist/scripts/webquiz/CHANGES.rst + texmf-dist/scripts/webquiz/LICENCE + texmf-dist/scripts/webquiz/README-scripts + texmf-dist/scripts/webquiz/webquiz + texmf-dist/scripts/webquiz/webquiz.bat + texmf-dist/scripts/webquiz/webquiz.py + texmf-dist/scripts/webquiz/webquiz_layout.py + texmf-dist/scripts/webquiz/webquiz_makequiz.py + texmf-dist/scripts/webquiz/webquiz_templates.py + texmf-dist/scripts/webquiz/webquiz_util.py + texmf-dist/scripts/webquiz/webquiz_xml.py + texmf-dist/tex/latex/webquiz/webquiz-czech.lang + texmf-dist/tex/latex/webquiz/webquiz-doc.code.tex + texmf-dist/tex/latex/webquiz/webquiz-english.lang + texmf-dist/tex/latex/webquiz/webquiz-french.lang + texmf-dist/tex/latex/webquiz/webquiz-german.lang + texmf-dist/tex/latex/webquiz/webquiz-greek.lang + texmf-dist/tex/latex/webquiz/webquiz-ini.code.tex + texmf-dist/tex/latex/webquiz/webquiz-italian.lang + texmf-dist/tex/latex/webquiz/webquiz-japanese.lang + texmf-dist/tex/latex/webquiz/webquiz-mandarin.lang + texmf-dist/tex/latex/webquiz/webquiz-russian.lang + texmf-dist/tex/latex/webquiz/webquiz-spanish.lang + texmf-dist/tex/latex/webquiz/webquiz-swedish.lang + texmf-dist/tex/latex/webquiz/webquiz.cfg + texmf-dist/tex/latex/webquiz/webquiz.cls + texmf-dist/tex/latex/webquiz/webquiz.ini +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-license gpl3+ +catalogue-topics exam cvt-html +catalogue-version 5.2 + +name webquiz.aarch64-linux +category Package +revision 50419 +shortdesc aarch64-linux files of webquiz +containersize 336 +containerchecksum 1cb60ecf1ba7d67cf92bc24f90449426d7a1c8c5c961fbc67ffec219d4b1dea4a236edf8310e57e6612f817bceca5ce3d322ec0cc220982812e035d6a2e4e534 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/webquiz + +name webquiz.amd64-freebsd +category Package +revision 50419 +shortdesc amd64-freebsd files of webquiz +containersize 340 +containerchecksum c6235ba63806943771abf2b7a6514ca109ee28c0ed9922bce24b542e00aee5971ff777c1eca1651c7989a26535ca149a47b7adc3b1a89df678e51aaeab297a56 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/webquiz + +name webquiz.amd64-netbsd +category Package +revision 50419 +shortdesc amd64-netbsd files of webquiz +containersize 340 +containerchecksum 87ef11ce8694246ea13cad35e9712cdb9fc21831d639fa279a2f54612e7b03211ccf266c5b377bf2e166fbd4ac65898e5f55d14095be7d305f2b8270b3639e2d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/webquiz + +name webquiz.armhf-linux +category Package +revision 50419 +shortdesc armhf-linux files of webquiz +containersize 336 +containerchecksum b006642a05eeb01438e9d0ee0144c25963281d940aa69b0c5b88de29c1af6cdd9c3bf10414ea24692a18fdcc26b7bd460cb52bb04c65acedc37ee540b256d2ef +binfiles arch=armhf-linux size=1 + bin/armhf-linux/webquiz + +name webquiz.i386-cygwin +category Package +revision 50419 +shortdesc i386-cygwin files of webquiz +containersize 336 +containerchecksum a5519f391784f2bd95ab785bec3502ff9973ff8d685f68cf5cd10844eeabb292ffa73cfc325140bd80ea0449f06fad5e7a701c48b6c20581b773d21389fb00cc +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/webquiz + +name webquiz.i386-freebsd +category Package +revision 50419 +shortdesc i386-freebsd files of webquiz +containersize 340 +containerchecksum e1f1134df3ce96dc88f042c676d68a3c5f8885a3521199a0f8583f86978c9b8dc6ebf37787fa53654247aba691cc36ee0ac3b0a39583ba05dad55cfcaa60d680 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/webquiz + +name webquiz.i386-linux +category Package +revision 50419 +shortdesc i386-linux files of webquiz +containersize 336 +containerchecksum e089f71d2df0315d677da42d356a7daa18d24b7d3a9efe6d6e1e673403b4195a9d01de2b5db3742df877beb9bf5f93583e8076a48540c65bbca418284b262e39 +binfiles arch=i386-linux size=1 + bin/i386-linux/webquiz + +name webquiz.i386-netbsd +category Package +revision 50419 +shortdesc i386-netbsd files of webquiz +containersize 336 +containerchecksum 0348b35101113b3ff5cc2b8936b25a8b1a01c745118d4e0a1ad629b2baa597dd24e886af19f0843e41ff332d1832ee763bb0677c4f547d7f167ba21ba770c0a6 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/webquiz + +name webquiz.i386-solaris +category Package +revision 50419 +shortdesc i386-solaris files of webquiz +containersize 340 +containerchecksum c823bdc55029837e44bb28339008d4129400fde4d199e8ebd565675a9848bdb3c13706ae1466ccc7bb0edbdf3ab10a8c965498796abaab16660278fd4fb826d3 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/webquiz + +name webquiz.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of webquiz +containersize 340 +containerchecksum 0683e9a1e6af51a342e9ebeef5798d9ad16845fee5ead724e92b17a2b8e80e5cd7bc7e51248c4acadd053b35ea375ebc84a097517448afa29adb210f5947f838 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/webquiz + +name webquiz.win32 +category Package +revision 50419 +shortdesc win32 files of webquiz +containersize 680 +containerchecksum e45e8cf643197660b7a973a6f9754e23412c8e0757f4b6cb9e85deb2c541a2d04f3cae613405c72d215d9f37f05f543dacf36c9575e26a39b94d2f931e750beb +binfiles arch=win32 size=1 + bin/win32/webquiz.exe + +name webquiz.x86_64-cygwin +category Package +revision 50419 +shortdesc x86_64-cygwin files of webquiz +containersize 340 +containerchecksum c2b76cb4b751070e1c8801e153bf35e0007cfe26beaf6360e02afcd0e01c529feb4af1cc3d43c187e076773987fd686f6b15b84cf72a3e69789e244dd67a689e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/webquiz + +name webquiz.x86_64-darwinlegacy +category Package +revision 50419 +shortdesc x86_64-darwinlegacy files of webquiz +containersize 348 +containerchecksum 3fc3723730168996e2585efad582a76e7bcfd603d4a7b68cfbd6f3049d01338874d43c3f0cc957ceb2b23c7922b048971540afacfab9f9ba2533f94547a5319e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/webquiz + +name webquiz.x86_64-linux +category Package +revision 50419 +shortdesc x86_64-linux files of webquiz +containersize 340 +containerchecksum 64721cc42dca06adc878937d1e83e2f09cb270fb1e27736427f05064b5c29cb859f29b9446ea282dbed998ef4a0f217cf3f1023c905aeb1ac79d69c421a97531 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/webquiz + +name webquiz.x86_64-linuxmusl +category Package +revision 50419 +shortdesc x86_64-linuxmusl files of webquiz +containersize 344 +containerchecksum 5faf74a12dfc098dc5d350b3a31c8a36a2e868cbde7a9691c69ba846609c57a78bd1ea73644698476792dc643257cc55d0014a69008d4c5fefef4705f5f8b45e +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/webquiz + +name webquiz.x86_64-solaris +category Package +revision 50419 +shortdesc x86_64-solaris files of webquiz +containersize 336 +containerchecksum f45a215108765ed338ea6dfff1961000be03685b3fbcc218ee10624c3787b4cef987a27e97e2fa28d4f24545639c5eea14719bd61020753d2cd42d5d387e26cd +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/webquiz + +name widetable +category Package +revision 53409 +shortdesc An environment for typesetting tables of specified width +relocated 1 +longdesc The package defines a new environment that, unlike tabularX, +longdesc typesets a table of specified width by working on the +longdesc inter-column glue; the tabular cells will all be stretched (or +longdesc shrunk) according to need. The package will use the e-TeX +longdesc arithmetic extensions if they are available (they are, in most +longdesc modern distributions). +containersize 1468 +containerchecksum bd6c85eb76b1fdd4b7e81ad24ad7d282b79e4234ec029e48ed63611260b00e8b1c584ac800c45643e466ff6aefbf953246b24c1bc6453098a76b71ba01624821 +doccontainersize 465604 +doccontainerchecksum 5f254468e606aa188030c95c79672a6fb0211c0b5c4df6c3fde98c43ce1fd89993d495eb750b58395175e2b6bbe3e9771895627a04bdb8839fd4d0a143c1ab69 +docfiles size=116 + RELOC/doc/latex/widetable/README.txt details="Readme" + RELOC/doc/latex/widetable/manifest.txt + RELOC/doc/latex/widetable/widetable.pdf details="Package documentation" +srccontainersize 9224 +srccontainerchecksum 31ae40849337a8c6a7872621e55ae2a53b1a7d4d1a7907e18f5aec07f94196636b99c26d46dd8c10e1494a35b86d435a014a229160edbbfccd064306fdf06598 +srcfiles size=7 + RELOC/source/latex/widetable/widetable.dtx +runfiles size=1 + RELOC/tex/latex/widetable/widetable.sty +catalogue-ctan /macros/latex/contrib/widetable +catalogue-license lppl1.3 +catalogue-topics table-long +catalogue-version 2.1 + +name widows-and-orphans +category Package +revision 58172 +shortdesc Identify (typographic) widows and orphans +relocated 1 +longdesc This package identifies all widows and orphans in a document to +longdesc help a user to get rid of them. The act of resolving still +longdesc needs to be done manually: By rewriting text, running some +longdesc paragraph long or short or or explicitly breaking in some +longdesc strategic place. It will also identify and warn about words +longdesc broken across columns or pages and display formulas separated +longdesc from their introductory paragraph. +containersize 2896 +containerchecksum c7c5e1a35743e5c87c534263903b75c95f1f33f3c9482bb0209dae1547cdddc81023555e792392429d397357ffb8a9f76e72031d7429e314e27f9d31f96a3207 +doccontainersize 800976 +doccontainerchecksum 39636b2155e1dcb482eb629b82d2c08317e7f7d4c009627f23345bc8bb3779aa466c79aa1e515ce8f016f71d3187ca8b762053236eb2062a03958a3c2d773ad2 +docfiles size=215 + RELOC/doc/latex/widows-and-orphans/MANIFEST.md + RELOC/doc/latex/widows-and-orphans/README.md details="Readme" + RELOC/doc/latex/widows-and-orphans/changes.txt + RELOC/doc/latex/widows-and-orphans/todo.txt + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-code.pdf + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-code.tex + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-doc.pdf details="Package documentation" + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-doc.tex +srccontainersize 12124 +srccontainerchecksum 73db8c22b5a3647aa668267b18c23282c55610cfe65da8a933c5c8bf0adbaa5a7ebe55dc9dcb01389a475efaf84fbcc135a4a1e5acb51c446cd0e13324aaf214 +srcfiles size=11 + RELOC/source/latex/widows-and-orphans/widows-and-orphans.dtx + RELOC/source/latex/widows-and-orphans/widows-and-orphans.ins +runfiles size=3 + RELOC/tex/latex/widows-and-orphans/widows-and-orphans.sty +catalogue-also nowidow +catalogue-contact-repository https://github.com/FrankMittelbach/fmitex-widows-and-orphans +catalogue-ctan /macros/latex/contrib/widows-and-orphans +catalogue-license lppl1.3c +catalogue-topics layout +catalogue-version 1.0d + +name williams +category Package +revision 15878 +shortdesc Miscellaneous macros by Peter Williams +relocated 1 +longdesc The bundle provides two packages: antree, which provides macros +longdesc for annotated node trees, and toklist, which is an +longdesc implementation of Knuth's token list macros, to be found on +longdesc pp.378-379 of the TeXbook. +containersize 2472 +containerchecksum 44ef966e5d8535aa7bb32109b20f47c774995e6368a92e20a68d25c1694ad86b7007bc90877d276c2f15b8aa3c3d11f7fe6aa117c35265b5988205df869af11b +doccontainersize 792 +doccontainerchecksum c559e587868698c1a635db13b6db265234b3b475937fa1759f9e7e3a8d0644a43543005e9607b5a965bbdc304863d6c7cae6e5cb8345b546dc34afd8c7e2de43 +docfiles size=1 + RELOC/doc/latex/williams/README +runfiles size=3 + RELOC/tex/latex/williams/antree.sty + RELOC/tex/latex/williams/toklist.sty +catalogue-ctan /macros/latex/contrib/williams +catalogue-license lppl +catalogue-topics tree macro-supp + +name willowtreebook +category Package +revision 54866 +shortdesc Easy basic book class, built on memoir +relocated 1 +longdesc The willowtreebook class is a simple book class, which the +longdesc author uses for his lecture notes to be found on his web page +longdesc Benjamin McKay. It actually just selects options for the more +longdesc sophisticated memoir class. +containersize 6284 +containerchecksum 36df6eb6f46857ac84b2b0ef4fceb265c6feaee565eaf201ad8b00552a1f1e37d6f4d5a8e9dbbb21ee0df3013dc8aa72cc0cdef85c9b5c400aeca89f9b851c47 +doccontainersize 24221768 +doccontainerchecksum 32abc19949630800649038ef395a8c51568c4395b5ea2495205fab557669c40c3eadb6c272e9a4747d504c95f02df50056e083c4bcaebec50a5b5df7d5d10668 +docfiles size=5979 + RELOC/doc/latex/willowtreebook/README details="Readme" + RELOC/doc/latex/willowtreebook/willow.jpg + RELOC/doc/latex/willowtreebook/willowtreebook.bib + RELOC/doc/latex/willowtreebook/willowtreebook.pdf details="Package documentation" + RELOC/doc/latex/willowtreebook/willowtreebook.tex +runfiles size=5 + RELOC/tex/latex/willowtreebook/willowtreebook.cls +catalogue-also memoir +catalogue-ctan /macros/latex/contrib/willowtreebook +catalogue-license lppl1.3c +catalogue-topics class book-pub +catalogue-version 1.01 + +name windycity +category Package +revision 59067 +shortdesc A Chicago style for BibLaTeX +relocated 1 +longdesc Windy City is a style for BibLaTeX that formats notes, +longdesc bibliographies, parenthetical citations, and reference lists +longdesc according to the 17th edition of The Chicago Manual of Style. +containersize 19724 +containerchecksum af537ba68b7a752b1f729e68fc752c755c85c9cdb31e0f17594094445eb44bd1d86a1d3702ffa64be3e44b73da8b6524a07f1bc49818ac2540365d88ac2cb57d +doccontainersize 510108 +doccontainerchecksum 05ad3bd4c139e161f8f690c306fba9d4c4da49ad25ec4c2a8018bb5e8b9d11d880eaffd4ef8eb6bf5642cc75b54a908a10cf1b4688488c9625379240e5e4b719 +docfiles size=177 + RELOC/doc/latex/windycity/CHANGES.md + RELOC/doc/latex/windycity/LICENCE + RELOC/doc/latex/windycity/README.md details="Readme" + RELOC/doc/latex/windycity/windycity.bib + RELOC/doc/latex/windycity/windycity.pdf details="Package documentation" + RELOC/doc/latex/windycity/windycity.tex +runfiles size=33 + RELOC/tex/latex/windycity/american-windycity.lbx + RELOC/tex/latex/windycity/windycity.bbx + RELOC/tex/latex/windycity/windycity.cbx + RELOC/tex/latex/windycity/windycity.dbx + RELOC/tex/latex/windycity/windycity.sty +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-license lppl1.3 +catalogue-topics biblatex + +name wintools.win32 +category TLCore +revision 58783 +shortdesc utilities provided only for Windows +longdesc Common utilities, mainly from the w32tex distribution. +postaction filetype name="TL.PSViewer.view" cmd='"TEXDIR/bin/win32/psviewer.exe" "%1"' +postaction filetype name="TL.bitmap2eps.convert" cmd='"TEXDIR/bin/win32/bitmap2eps.exe" "%1"' +postaction progid extension=.bmp filetype="TL.bitmap2eps.convert" +postaction progid extension=.eps filetype="TL.PSViewer.view" +postaction progid extension=.gif filetype="TL.bitmap2eps.convert" +postaction progid extension=.jpe filetype="TL.bitmap2eps.convert" +postaction progid extension=.jpeg filetype="TL.bitmap2eps.convert" +postaction progid extension=.jpg filetype="TL.bitmap2eps.convert" +postaction progid extension=.png filetype="TL.bitmap2eps.convert" +postaction progid extension=.ps filetype="TL.PSViewer.view" +postaction progid extension=.tif filetype="TL.bitmap2eps.convert" +postaction progid extension=.tiff filetype="TL.bitmap2eps.convert" +containersize 5338756 +containerchecksum c7a0f2956f8c3c2fd0b24c886486f7bde527f8efb35fe44262162d917bfffe3f944db665e3b18e9b423baf88f95953ef048ae17fb33de0e7951c157d4dfc3b05 +doccontainersize 998704 +doccontainerchecksum b7309f3cdb9a6f5bc4a0c3de6cb8356c319f4ae6e1333c9eaaef514d5393e02423c7097b51eebd5f304e561482a18ed384caa77511fac43dd795e0ce60a29145 +docfiles size=342 + texmf-dist/doc/psviewer/psviewer.README + texmf-dist/doc/psviewer/psviewer.ico + texmf-dist/doc/psviewer/psviewer.svg + texmf-dist/doc/support/tlaunch/COPYING + texmf-dist/doc/support/tlaunch/Changes + texmf-dist/doc/support/tlaunch/README + texmf-dist/doc/support/tlaunch/figures/custom_ed.png + texmf-dist/doc/support/tlaunch/figures/tlaunch_rug.png + texmf-dist/doc/support/tlaunch/figures/tlaunch_window.png + texmf-dist/doc/support/tlaunch/rug.zip + texmf-dist/doc/support/tlaunch/tlaunch.pdf + texmf-dist/doc/support/tlaunch/tlaunch.tex + texmf-dist/doc/support/wintools/fc-cache.pdf + texmf-dist/doc/support/wintools/fc-cat.pdf + texmf-dist/doc/support/wintools/fc-list.pdf + texmf-dist/doc/support/wintools/fc-match.pdf + texmf-dist/doc/support/wintools/fc-pattern.pdf + texmf-dist/doc/support/wintools/fc-query.pdf + texmf-dist/doc/support/wintools/fc-scan.pdf + texmf-dist/doc/support/wintools/fc-validate.pdf + texmf-dist/doc/support/wintools/gzip.pdf + texmf-dist/doc/support/wintools/pdfattach.pdf + texmf-dist/doc/support/wintools/pdfdetach.pdf + texmf-dist/doc/support/wintools/pdffonts.pdf + texmf-dist/doc/support/wintools/pdfimages.pdf + texmf-dist/doc/support/wintools/pdfinfo.pdf + texmf-dist/doc/support/wintools/pdfseparate.pdf + texmf-dist/doc/support/wintools/pdfsig.pdf + texmf-dist/doc/support/wintools/pdftocairo.pdf + texmf-dist/doc/support/wintools/pdftohtml.pdf + texmf-dist/doc/support/wintools/pdftoppm.pdf + texmf-dist/doc/support/wintools/pdftops.pdf + texmf-dist/doc/support/wintools/pdftotext.pdf + texmf-dist/doc/support/wintools/pdfunite.pdf + texmf-dist/doc/support/wintools/unzip.pdf + texmf-dist/doc/support/wintools/zip.pdf +runfiles size=4 + texmf-dist/scripts/bitmap2eps/bitmap2eps.vbs + texmf-dist/scripts/psviewer/psviewer.vbs + texmf-dist/scripts/tlaunch/tlaunchmode.pl + texmf-dist/web2c/tlaunch.ini +binfiles arch=win32 size=8660 + bin/win32/aftopl.exe + bin/win32/bitmap2eps.exe + bin/win32/bmeps.exe + bin/win32/bmp2png.exe + bin/win32/cjpeg.exe + bin/win32/djpeg.exe + bin/win32/gunzip.exe + bin/win32/gzip.exe + bin/win32/jbig2.exe + bin/win32/pdfattach.exe + bin/win32/pdfdetach.exe + bin/win32/pdffonts.exe + bin/win32/pdfimages.exe + bin/win32/pdfinfo.exe + bin/win32/pdfseparate.exe + bin/win32/pdfsig.exe + bin/win32/pdftocairo.exe + bin/win32/pdftohtml.exe + bin/win32/pdftoppm.exe + bin/win32/pdftops.exe + bin/win32/pdftotext.exe + bin/win32/pdfunite.exe + bin/win32/png22pnm.exe + bin/win32/png2bmp.exe + bin/win32/psviewer.exe + bin/win32/sam2p.exe + bin/win32/texview.exe + bin/win32/tif22pnm.exe + bin/win32/tiff2png.exe + bin/win32/tlaunch.exe + bin/win32/tlaunchmode.exe + bin/win32/todos.exe + bin/win32/tomac.exe + bin/win32/tounix.exe + bin/win32/type1afm.exe + bin/win32/unzip.exe + bin/win32/zip.exe + +name withargs +category Package +revision 52641 +shortdesc In-place argument substitution +relocated 1 +longdesc The \withargs command provides a clean way to populate a +longdesc template (containing #1, #2, etc.) using LaTeX argument +longdesc substitution. It also allows you to carefully control argument +longdesc expansion using a LaTeX3-style argument specification. Uses +longdesc range from creating readable string templates (akin to C's +longdesc printf function) to performing otherwise complex token-list +longdesc manipulation. +containersize 6100 +containerchecksum 73cc4db53528595f54f31f0d2824f08af54310aaed51b6eb51a5386de3f06dbe6ffeea8c4ab6f1e4ee1d169b5b0082f113ed435eae90b99a9b59df3296a3f4b9 +doccontainersize 475336 +doccontainerchecksum 050ecd695b269896d1252649978af7cfbafa80e289038ef1054d82296cd83934b0f7ceee274340d54d836021f0da39f05a648dba8bff141eae8f378527bcf865 +docfiles size=120 + RELOC/doc/latex/withargs/README details="Readme" + RELOC/doc/latex/withargs/withargs.pdf details="Package documentation" + RELOC/doc/latex/withargs/withargs.tex +runfiles size=7 + RELOC/tex/latex/withargs/withargs-dry.sty + RELOC/tex/latex/withargs/withargs-packagedoc.cls + RELOC/tex/latex/withargs/withargs.sty +catalogue-contact-repository https://github.com/mhelvens/latex-withargs +catalogue-ctan /macros/latex/contrib/withargs +catalogue-license lppl1.3 +catalogue-topics macro-supp expl3 +catalogue-version 0.3.1 + +name witharrows +category Package +revision 58120 +shortdesc "Aligned" math environments with arrows for comments +relocated 1 +longdesc This package provides an environment WithArrows which is +longdesc similar to the environment aligned of amsmath (and mathtools), +longdesc but gives the possibility to draw arrows on the right side of +longdesc the alignment. These arrows are usually used to give +longdesc explanations concerning the mathematical calculus presented. +longdesc The package requires the following other LaTeX packages: expl3, +longdesc footnote, l3keys2e, tikz, and xparse. +containersize 14596 +containerchecksum 75f87cfce4089e02f5e1023ebd1f66c0f9ab62932c2fbb7edb8a63948e31efab3a3418b946db7270e6ea88e6536525db5d191f904f5d7ecb0e8f3cdfaea743b6 +doccontainersize 916488 +doccontainerchecksum b22081b8ae14217f4a58f71507314e3bdc50659e6fff761cb1648c8ea03819182a0d4d30122456e4c5d24e307fb301d52eb37e092b8add0b698dacd026e6f5d9 +docfiles size=270 + RELOC/doc/generic/witharrows/README.md details="Readme" + RELOC/doc/generic/witharrows/witharrows-french.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/witharrows/witharrows-french.tex + RELOC/doc/generic/witharrows/witharrows.pdf details="Package documentation (English)" + RELOC/doc/generic/witharrows/witharrows.tex +srccontainersize 52676 +srccontainerchecksum fdde37e183614ffe887b7813db7d09ebd7586e73c4e54c7eeffaa4daa48e23f2f958306f2547bd2b683343b883b3d26f5f9779b9cbf2e755f8b265678b826c9a +srcfiles size=70 + RELOC/source/generic/witharrows/witharrows.dtx + RELOC/source/generic/witharrows/witharrows.ins +runfiles size=24 + RELOC/tex/generic/witharrows/witharrows.sty +catalogue-ctan /macros/generic/witharrows +catalogue-license lppl1.3 +catalogue-topics maths maths-syseqn pgf-tikz expl3 +catalogue-version 2.6c + +name wnri +category Package +revision 22459 +shortdesc Ridgeway's fonts +relocated 1 +longdesc Fonts (as Metafont source) for Old English, Indic languages in +longdesc Roman transliteration and Puget Salish (Lushootseed) and other +longdesc Native American languages. +containersize 46312 +containerchecksum 6ad06e6a867b323c382b85fa1effe16280566b1b61dd37be0bd7e9384d145fff2b1b4ff8117aa49749db1f15495e835e3367b0b7191cf9444e36fed662ffd0ed +doccontainersize 6784 +doccontainerchecksum c3d6ff664edd89fa711e9573b138b29b113b588ddef9ad4a258e1f28c4ca2aad1f05741a402c1c1972bbc317e0cb989ce7a51e52d59b42629343d9a5780b64d0 +docfiles size=9 + RELOC/doc/fonts/wnri/README details="Readme" + RELOC/doc/fonts/wnri/old/README details="Readme" + RELOC/doc/fonts/wnri/old/barnett.map + RELOC/doc/fonts/wnri/old/lushucid.map + RELOC/doc/fonts/wnri/old/newgb.map +runfiles size=132 + RELOC/fonts/source/public/wnri/acctmax.mf + RELOC/fonts/source/public/wnri/acutacct.mf + RELOC/fonts/source/public/wnri/addpunc.mf + RELOC/fonts/source/public/wnri/baraacct.mf + RELOC/fonts/source/public/wnri/bargacct.mf + RELOC/fonts/source/public/wnri/bnduacct.mf + RELOC/fonts/source/public/wnri/brbracct.mf + RELOC/fonts/source/public/wnri/brevacct.mf + RELOC/fonts/source/public/wnri/cdilacct.mf + RELOC/fonts/source/public/wnri/facutact.mf + RELOC/fonts/source/public/wnri/fbaraact.mf + RELOC/fonts/source/public/wnri/fbargact.mf + RELOC/fonts/source/public/wnri/fbrevact.mf + RELOC/fonts/source/public/wnri/fgravact.mf + RELOC/fonts/source/public/wnri/fhachact.mf + RELOC/fonts/source/public/wnri/fhattact.mf + RELOC/fonts/source/public/wnri/fubrvact.mf + RELOC/fonts/source/public/wnri/fudacact.mf + RELOC/fonts/source/public/wnri/fudgract.mf + RELOC/fonts/source/public/wnri/gamma.mf + RELOC/fonts/source/public/wnri/gram_max.mf + RELOC/fonts/source/public/wnri/grampunc.mf + RELOC/fonts/source/public/wnri/gravacct.mf + RELOC/fonts/source/public/wnri/greeks.mf + RELOC/fonts/source/public/wnri/haccbase.mf + RELOC/fonts/source/public/wnri/hachacct.mf + RELOC/fonts/source/public/wnri/hattacct.mf + RELOC/fonts/source/public/wnri/iaesc.mf + RELOC/fonts/source/public/wnri/ibrvacct.mf + RELOC/fonts/source/public/wnri/igamma.mf + RELOC/fonts/source/public/wnri/italcskt.mf + RELOC/fonts/source/public/wnri/italla.mf + RELOC/fonts/source/public/wnri/ligature.mf + RELOC/fonts/source/public/wnri/ligaturi.mf + RELOC/fonts/source/public/wnri/macracct.mf + RELOC/fonts/source/public/wnri/mudaacct.mf + RELOC/fonts/source/public/wnri/odotacct.mf + RELOC/fonts/source/public/wnri/orngacct.mf + RELOC/fonts/source/public/wnri/product.mf + RELOC/fonts/source/public/wnri/romanla.mf + RELOC/fonts/source/public/wnri/romanskt.mf + RELOC/fonts/source/public/wnri/romanua.mf + RELOC/fonts/source/public/wnri/sktmisc.mf + RELOC/fonts/source/public/wnri/tildacct.mf + RELOC/fonts/source/public/wnri/u-ring.mf + RELOC/fonts/source/public/wnri/ubaracct.mf + RELOC/fonts/source/public/wnri/ubrvacct.mf + RELOC/fonts/source/public/wnri/udacacct.mf + RELOC/fonts/source/public/wnri/udgracct.mf + RELOC/fonts/source/public/wnri/udmcacct.mf + RELOC/fonts/source/public/wnri/udotacct.mf + RELOC/fonts/source/public/wnri/uibvacct.mf + RELOC/fonts/source/public/wnri/umlaacct.mf + RELOC/fonts/source/public/wnri/urmcacct.mf + RELOC/fonts/source/public/wnri/urngacct.mf + RELOC/fonts/source/public/wnri/uumlacct.mf + RELOC/fonts/source/public/wnri/wnindic.map + RELOC/fonts/source/public/wnri/wnrib10.mf + RELOC/fonts/source/public/wnri/wnrib8.mf + RELOC/fonts/source/public/wnri/wnribi10.mf + RELOC/fonts/source/public/wnri/wnrii10.mf + RELOC/fonts/source/public/wnri/wnrii8.mf + RELOC/fonts/source/public/wnri/wnrir10.mf + RELOC/fonts/source/public/wnri/wnrir8.mf + RELOC/fonts/source/public/wnri/wnris10.mf + RELOC/fonts/source/public/wnri/wnris8.mf + RELOC/fonts/source/public/wnri/wnrit10.mf + RELOC/fonts/source/public/wnri/wnrit8.mf + RELOC/fonts/tfm/public/wnri/wnrib10.tfm + RELOC/fonts/tfm/public/wnri/wnrib8.tfm + RELOC/fonts/tfm/public/wnri/wnribi10.tfm + RELOC/fonts/tfm/public/wnri/wnrii10.tfm + RELOC/fonts/tfm/public/wnri/wnrii8.tfm + RELOC/fonts/tfm/public/wnri/wnrir10.tfm + RELOC/fonts/tfm/public/wnri/wnrir8.tfm + RELOC/fonts/tfm/public/wnri/wnris10.tfm + RELOC/fonts/tfm/public/wnri/wnris8.tfm + RELOC/fonts/tfm/public/wnri/wnrit10.tfm + RELOC/fonts/tfm/public/wnri/wnrit8.tfm +catalogue-ctan /fonts/wnri +catalogue-license gpl +catalogue-topics font font-mf font-specialist + +name wnri-latex +category Package +revision 22338 +shortdesc LaTeX support for wnri fonts +relocated 1 +longdesc LaTeX support for the wnri fonts. +containersize 2664 +containerchecksum 1dcecf9ac38a9099625ed6be3955af8b063ee5b5b8d0d3e3ab8c94a8215b72b86a0b5dbe930eb69680917bd3d6652b3f4f08bb377197ab6f3d2fccf2b96aa59e +doccontainersize 198684 +doccontainerchecksum 924266d547910d25ed5355ec2ef697d271dd992aeb6767d5bcb703d4d07cd34b6844e9a821ed93f5a04237aba1c185fb68926967e78043f390785b619c2389d2 +docfiles size=51 + RELOC/doc/latex/wnri-latex/README details="Readme" + RELOC/doc/latex/wnri-latex/wnri.pdf details="Package documentation" + RELOC/doc/latex/wnri-latex/wnritest.tex +srccontainersize 4364 +srccontainerchecksum e3c5cfaae7b14a28489344392d66a1e2570c900ffd571c54b4f2d13b16d6dabb5cf58cad9259f8b662a218567982d1ac51ef8b2a757902c36540200fd984a497 +srcfiles size=4 + RELOC/source/latex/wnri-latex/wnri.dtx + RELOC/source/latex/wnri-latex/wnri.ins +runfiles size=7 + RELOC/tex/latex/wnri-latex/ot1wnr.fd + RELOC/tex/latex/wnri-latex/ot1wnss.fd + RELOC/tex/latex/wnri-latex/ot1wntt.fd + RELOC/tex/latex/wnri-latex/wnri.def + RELOC/tex/latex/wnri-latex/wnri.sty +catalogue-ctan /macros/latex/contrib/wnri-latex +catalogue-license gpl2 +catalogue-topics font-supp +catalogue-version 1.0b + +name wordcount +category Package +revision 46165 +shortdesc Estimate the number of words in a LaTeX document +longdesc The package provides a relatively easy way of estimating the +longdesc number of words in a LaTeX document that does not require +longdesc dvitty or other DVI converters. It does however require +longdesc something like Unix grep -c that can search a file for a +longdesc particular string and report the number of matching lines. An +longdesc accompanying shell script wordcount.sh contains more +longdesc information in its comments. +depend wordcount.ARCH +containersize 5036 +containerchecksum 3c26b3bcb4c3edce8cf9d6628cf6b89103aa1ae454b07c1e963ca90693c18fb851772a52082a23efbefb51235005e558fd553afc891a472eb39cd430c97f861a +doccontainersize 776 +doccontainerchecksum a86b034ebff42c89f07015b01f86756a83ff2c69ed911ecde185ff719b09e3db47f284fe778c9dfd16442d1513edc9ddbb4944cc242328c17bd3fc18a0aa098f +docfiles size=1 + texmf-dist/doc/latex/wordcount/README details="Readme" +runfiles size=3 + texmf-dist/scripts/wordcount/wordcount.sh + texmf-dist/tex/latex/wordcount/wordcount.tex +catalogue-ctan /macros/latex/contrib/wordcount +catalogue-license lppl +catalogue-topics word-count +catalogue-version 1.7 + +name wordcount.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of wordcount +containersize 344 +containerchecksum 739c3adff21c499899bb58b58527bf3270fb4e0be87f4c043abf5683b1370e7fd4ae795c832a8fd01a1cc206111981fcd9d7042ddb68b9b2ac8e3eeedd750c6f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/wordcount + +name wordcount.amd64-freebsd +category Package +revision 46165 +shortdesc amd64-freebsd files of wordcount +containersize 344 +containerchecksum 33f0b1efdd0a95864fee5a58d842eb51f980632fb0c55f871b699a87858da123dff37183b5dc48682c21e7bfefd470c79c86d6dd2baacc652ab65b3e577a5a9c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/wordcount + +name wordcount.amd64-netbsd +category Package +revision 46165 +shortdesc amd64-netbsd files of wordcount +containersize 340 +containerchecksum 195e6a7fff59b4e1a2b764256c68441bf85e942f1f1e6aceec2e1711fa15dd5ef06bd5bf7a22641b4511f7e77142545eac79ec2961964550577e7be041ed298a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/wordcount + +name wordcount.armhf-linux +category Package +revision 46165 +shortdesc armhf-linux files of wordcount +containersize 340 +containerchecksum d7fb3d0a494f54fa2de0ef175d4a79cad4dce886350d4fedb6facbd627036d35484a5f0d83ce726289a9d3e4eec234f5c87adb01885e73ad3eaf18444d8f8edd +binfiles arch=armhf-linux size=1 + bin/armhf-linux/wordcount + +name wordcount.i386-cygwin +category Package +revision 46165 +shortdesc i386-cygwin files of wordcount +containersize 340 +containerchecksum 847c51fb980daec15df099fbf4eaea2b76caa4dbd17ea6934f02ce36a947a805df469c4516f61fd286ce1a75cbaec878ec46a7e51c66f09acfb9af0f688944e8 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/wordcount + +name wordcount.i386-freebsd +category Package +revision 46165 +shortdesc i386-freebsd files of wordcount +containersize 344 +containerchecksum c7cbf36c312dd5fdbbc3ef40a9f60f8e88babe7e115830f5814a7322b600b92c43ecebcfe757ce3562605b9419eb4298ac604068b6ab42ac855d24a2cca17a2e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/wordcount + +name wordcount.i386-linux +category Package +revision 46165 +shortdesc i386-linux files of wordcount +containersize 340 +containerchecksum 771c77750c069768777641029494260227eb9d337e7ee02c9640547cf77bfa34d59919ae0e5a7c860e2dab5b85e93a8e35d4b7d9be83f79d59ae4661b7f96bce +binfiles arch=i386-linux size=1 + bin/i386-linux/wordcount + +name wordcount.i386-netbsd +category Package +revision 46165 +shortdesc i386-netbsd files of wordcount +containersize 340 +containerchecksum ceee2b21ed420b25969900c7f275f9ae4d177351cd6c70142fe11bb8438d6475ec8cce6c342b37830f6271d4f4c39e5915f5e238a9355d601ddc7266149d37af +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/wordcount + +name wordcount.i386-solaris +category Package +revision 46165 +shortdesc i386-solaris files of wordcount +containersize 340 +containerchecksum ab92fa37f7166ee8807c1e08fd860abc0afd02bc85214c3295e64cdf1cc1f21aad54fd1c195c5985ae6771c812d9312f34fcb088f1de27509b431261db312514 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/wordcount + +name wordcount.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of wordcount +containersize 340 +containerchecksum 0420750cb378ef10473055e98347bc8abbca2afc4ec145ec574108bc8f70e12035524cde9150219b2f229a74d94901cf91a22d2cc1bf9a3adb750fa2bf29bd1b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/wordcount + +name wordcount.x86_64-cygwin +category Package +revision 46165 +shortdesc x86_64-cygwin files of wordcount +containersize 344 +containerchecksum c1d07cdcc7a19aa97fec6aa9c23d18b4efad2e24af63b1a48d6c3630c84a9ebed4a6ea18c6dbb78443cee22d01bb7338ef1895d94916f8fd1cea4128a06b9bf4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/wordcount + +name wordcount.x86_64-darwinlegacy +category Package +revision 46165 +shortdesc x86_64-darwinlegacy files of wordcount +containersize 348 +containerchecksum 2a17dae1a49fce92c177214e816d2dfd2719736e61e0682d2f03b3d094c2eef898870d47d2a60632d7227f8251df0331f993ff9c87ec4a77c733d1f45a1f532f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/wordcount + +name wordcount.x86_64-linux +category Package +revision 46165 +shortdesc x86_64-linux files of wordcount +containersize 340 +containerchecksum 040676cec77862755e98612699d52add93781f533e54b110f1b715015de1c32c923c68bf6b7ed66f7df5ce66e3d1fc0e4f78d706486608c0cd4b32e6fe600719 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/wordcount + +name wordcount.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of wordcount +containersize 348 +containerchecksum 7195831c2bbc51ad451557fd8ae9c30bdd87b455a5880d538abb4231af69511cbeb0b46a84a9ea896df6a9e11c66da442500391599fb0f43dbadbf0f36dd6dd3 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/wordcount + +name wordcount.x86_64-solaris +category Package +revision 46165 +shortdesc x86_64-solaris files of wordcount +containersize 340 +containerchecksum 12268cfbf06b97653cfc725fd6ae14f4e3b8708c6384a4749119d40084f23d9cdf9c4b12d9dbcb5d83fb0c62550f8e1c944e344aad86c0251e399a58dc5f0785 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/wordcount + +name wordlike +category Package +revision 15878 +shortdesc Simulating word processor layout +relocated 1 +longdesc The package simulates typical word processor layout: narrow +longdesc page margins, Times, Helvetica and Courier fonts, \LARGE or +longdesc \Large headings, and \sloppy typesetting. The package aims at +longdesc making life easier for users who are discontent with LaTeX's +longdesc standard layout settings because they need a layout that +longdesc resembles the usual "wordlike" output. The design of the +longdesc package draws on several discussions in the de.comp.text.tex +longdesc and comp.text.tex newsgroups that are referred to in the +longdesc manual. +containersize 1584 +containerchecksum d600073b2373119973ca47564938db5824181d6b74409ef7f4a2b19d53b83b97ccf8edf5d77dd831c0d52a4379f5928ad7a0391d90a2f19fe4d3ef681133078b +doccontainersize 110924 +doccontainerchecksum 10bbfa76beb0718dff8d4175712567e34e77aaefbce9fbc350d5bca43d8d5e87fe1cdcce5c558946c2b04beede8628b7535abc451f7d904ac283929ae39c6460 +docfiles size=31 + RELOC/doc/latex/wordlike/README + RELOC/doc/latex/wordlike/wordlike.pdf details="Package documentation" +srccontainersize 6324 +srccontainerchecksum 23e7f66f064e7e8bbf94d58118c0c8891a316fc2e2fdf37156b078242fb33343a38d19f03dd605035ce874de1d05d9e405c612e32c407e061f54386cfef791ac +srcfiles size=5 + RELOC/source/latex/wordlike/wordlike.dtx + RELOC/source/latex/wordlike/wordlike.ins +runfiles size=1 + RELOC/tex/latex/wordlike/wordlike.sty +catalogue-ctan /macros/latex/contrib/wordlike +catalogue-license lppl +catalogue-topics layout +catalogue-version 1.2b + +name worksheet +category Package +revision 48423 +shortdesc Easy creation of worksheets +relocated 1 +longdesc This package provides macros and an environment for easy +longdesc worksheet creation: Use the exercise environment for formating +longdesc exercises in a simple, efficient design; typeset customized and +longdesc automatically numbered worksheet titles in the same way as +longdesc standard LaTeX titles (using \maketitle); provide course and +longdesc author information with a scrlayer-scrpage based automated +longdesc header; conforming to different babel languages. (Currently +longdesc English, French, and German are supported.) +containersize 3812 +containerchecksum 439c430189e74e8c476a068fe449034fa1c8f4e8770ee454b92b8645ee865b103a02b0eecb45a925a8021fa7c64d98240e5f1f980913515df49d8415bbeb2c2d +doccontainersize 96080 +doccontainerchecksum 56d502e993eb77f7dd4b2a659a8646823cf033a3e246e90b0c6e4e9d2a7cb31922dee26c942404b13d18e7abaa79714b4394b589376d67e8fc1556a098ec7960 +docfiles size=30 + RELOC/doc/latex/worksheet/README.md details="Readme" + RELOC/doc/latex/worksheet/worksheet.pdf details="Package documentation" + RELOC/doc/latex/worksheet/worksheet.tex +runfiles size=4 + RELOC/tex/latex/worksheet/worksheet.sty +catalogue-ctan /macros/latex/contrib/worksheet +catalogue-license lppl1.3c +catalogue-topics exercise exam +catalogue-version 1.1 + +name worldflags +category Package +revision 59021 +shortdesc Drawing flags with TikZ +relocated 1 +longdesc This is a package for drawing flags using TikZ. Currently the +longdesc national flags of all independent nations are included, +longdesc additionally some other flags of various organizations. A flag +longdesc can be drawn ... as a single TikZ-picture within ordinary text, +longdesc as a picture element within a TikZ-picture. The appearance of a +longdesc flag (size, frame etc.) can be adapted using optional +longdesc parameters. +containersize 1230772 +containerchecksum 50135705ff208caa13e67e5e99c55421fa556989c042b345c46ebf5c7182dae3c830334ee5ec193c6574634c9ecbead72dd6cf83715a30200208c6694a75053f +doccontainersize 2141572 +doccontainerchecksum 340ec9a71b470f39218bcde92c663454317572d76198e8bc115483a9930fb5315a937a8fbaa8f0395a56505691bbe5f93d403aa3bcf4b39f7b4026309081cfaf +docfiles size=541 + RELOC/doc/latex/worldflags/README details="Readme" + RELOC/doc/latex/worldflags/worldflags.pdf details="Package documentation" + RELOC/doc/latex/worldflags/worldflags.tex +runfiles size=1816 + RELOC/tex/latex/worldflags/worldflag_AD.tex + RELOC/tex/latex/worldflags/worldflag_AE.tex + RELOC/tex/latex/worldflags/worldflag_AF.tex + RELOC/tex/latex/worldflags/worldflag_AG.tex + RELOC/tex/latex/worldflags/worldflag_AL.tex + RELOC/tex/latex/worldflags/worldflag_AM.tex + RELOC/tex/latex/worldflags/worldflag_AO.tex + RELOC/tex/latex/worldflags/worldflag_AQ.tex + RELOC/tex/latex/worldflags/worldflag_AR.tex + RELOC/tex/latex/worldflags/worldflag_AT.tex + RELOC/tex/latex/worldflags/worldflag_AU.tex + RELOC/tex/latex/worldflags/worldflag_AZ.tex + RELOC/tex/latex/worldflags/worldflag_Abkhazia.tex + RELOC/tex/latex/worldflags/worldflag_Artsakh.tex + RELOC/tex/latex/worldflags/worldflag_BA.tex + RELOC/tex/latex/worldflags/worldflag_BB.tex + RELOC/tex/latex/worldflags/worldflag_BD.tex + RELOC/tex/latex/worldflags/worldflag_BE.tex + RELOC/tex/latex/worldflags/worldflag_BF.tex + RELOC/tex/latex/worldflags/worldflag_BG.tex + RELOC/tex/latex/worldflags/worldflag_BH.tex + RELOC/tex/latex/worldflags/worldflag_BI.tex + RELOC/tex/latex/worldflags/worldflag_BJ.tex + RELOC/tex/latex/worldflags/worldflag_BN.tex + RELOC/tex/latex/worldflags/worldflag_BO.tex + RELOC/tex/latex/worldflags/worldflag_BR.tex + RELOC/tex/latex/worldflags/worldflag_BS.tex + RELOC/tex/latex/worldflags/worldflag_BT.tex + RELOC/tex/latex/worldflags/worldflag_BW.tex + RELOC/tex/latex/worldflags/worldflag_BY.tex + RELOC/tex/latex/worldflags/worldflag_BZ.tex + RELOC/tex/latex/worldflags/worldflag_CA.tex + RELOC/tex/latex/worldflags/worldflag_CD.tex + RELOC/tex/latex/worldflags/worldflag_CF.tex + RELOC/tex/latex/worldflags/worldflag_CG.tex + RELOC/tex/latex/worldflags/worldflag_CH.tex + RELOC/tex/latex/worldflags/worldflag_CI.tex + RELOC/tex/latex/worldflags/worldflag_CK.tex + RELOC/tex/latex/worldflags/worldflag_CL.tex + RELOC/tex/latex/worldflags/worldflag_CM.tex + RELOC/tex/latex/worldflags/worldflag_CN.tex + RELOC/tex/latex/worldflags/worldflag_CO.tex + RELOC/tex/latex/worldflags/worldflag_CR.tex + RELOC/tex/latex/worldflags/worldflag_CU.tex + RELOC/tex/latex/worldflags/worldflag_CV.tex + RELOC/tex/latex/worldflags/worldflag_CY.tex + RELOC/tex/latex/worldflags/worldflag_CZ.tex + RELOC/tex/latex/worldflags/worldflag_DE.tex + RELOC/tex/latex/worldflags/worldflag_DJ.tex + RELOC/tex/latex/worldflags/worldflag_DK.tex + RELOC/tex/latex/worldflags/worldflag_DM.tex + RELOC/tex/latex/worldflags/worldflag_DO.tex + RELOC/tex/latex/worldflags/worldflag_DZ.tex + RELOC/tex/latex/worldflags/worldflag_EC.tex + RELOC/tex/latex/worldflags/worldflag_EE.tex + RELOC/tex/latex/worldflags/worldflag_EG.tex + RELOC/tex/latex/worldflags/worldflag_EH.tex + RELOC/tex/latex/worldflags/worldflag_ER.tex + RELOC/tex/latex/worldflags/worldflag_ES.tex + RELOC/tex/latex/worldflags/worldflag_ET.tex + RELOC/tex/latex/worldflags/worldflag_EU.tex + RELOC/tex/latex/worldflags/worldflag_Esperanto.tex + RELOC/tex/latex/worldflags/worldflag_FI.tex + RELOC/tex/latex/worldflags/worldflag_FJ.tex + RELOC/tex/latex/worldflags/worldflag_FM.tex + RELOC/tex/latex/worldflags/worldflag_FR.tex + RELOC/tex/latex/worldflags/worldflag_GA.tex + RELOC/tex/latex/worldflags/worldflag_GB.tex + RELOC/tex/latex/worldflags/worldflag_GD.tex + RELOC/tex/latex/worldflags/worldflag_GE.tex + RELOC/tex/latex/worldflags/worldflag_GF.tex + RELOC/tex/latex/worldflags/worldflag_GH.tex + RELOC/tex/latex/worldflags/worldflag_GL.tex + RELOC/tex/latex/worldflags/worldflag_GM.tex + RELOC/tex/latex/worldflags/worldflag_GN.tex + RELOC/tex/latex/worldflags/worldflag_GQ.tex + RELOC/tex/latex/worldflags/worldflag_GR.tex + RELOC/tex/latex/worldflags/worldflag_GT.tex + RELOC/tex/latex/worldflags/worldflag_GW.tex + RELOC/tex/latex/worldflags/worldflag_GY.tex + RELOC/tex/latex/worldflags/worldflag_HN.tex + RELOC/tex/latex/worldflags/worldflag_HR.tex + RELOC/tex/latex/worldflags/worldflag_HT.tex + RELOC/tex/latex/worldflags/worldflag_HU.tex + RELOC/tex/latex/worldflags/worldflag_ID.tex + RELOC/tex/latex/worldflags/worldflag_IE.tex + RELOC/tex/latex/worldflags/worldflag_IL.tex + RELOC/tex/latex/worldflags/worldflag_IN.tex + RELOC/tex/latex/worldflags/worldflag_IQ.tex + RELOC/tex/latex/worldflags/worldflag_IR.tex + RELOC/tex/latex/worldflags/worldflag_IS.tex + RELOC/tex/latex/worldflags/worldflag_IT.tex + RELOC/tex/latex/worldflags/worldflag_JM.tex + RELOC/tex/latex/worldflags/worldflag_JO.tex + RELOC/tex/latex/worldflags/worldflag_JP.tex + RELOC/tex/latex/worldflags/worldflag_JollyRoger.tex + RELOC/tex/latex/worldflags/worldflag_KE.tex + RELOC/tex/latex/worldflags/worldflag_KG.tex + RELOC/tex/latex/worldflags/worldflag_KH.tex + RELOC/tex/latex/worldflags/worldflag_KI.tex + RELOC/tex/latex/worldflags/worldflag_KM.tex + RELOC/tex/latex/worldflags/worldflag_KN.tex + RELOC/tex/latex/worldflags/worldflag_KO.tex + RELOC/tex/latex/worldflags/worldflag_KP.tex + RELOC/tex/latex/worldflags/worldflag_KR.tex + RELOC/tex/latex/worldflags/worldflag_KW.tex + RELOC/tex/latex/worldflags/worldflag_KZ.tex + RELOC/tex/latex/worldflags/worldflag_LA.tex + RELOC/tex/latex/worldflags/worldflag_LB.tex + RELOC/tex/latex/worldflags/worldflag_LC.tex + RELOC/tex/latex/worldflags/worldflag_LI.tex + RELOC/tex/latex/worldflags/worldflag_LK.tex + RELOC/tex/latex/worldflags/worldflag_LR.tex + RELOC/tex/latex/worldflags/worldflag_LS.tex + RELOC/tex/latex/worldflags/worldflag_LT.tex + RELOC/tex/latex/worldflags/worldflag_LU.tex + RELOC/tex/latex/worldflags/worldflag_LV.tex + RELOC/tex/latex/worldflags/worldflag_LY.tex + RELOC/tex/latex/worldflags/worldflag_MA.tex + RELOC/tex/latex/worldflags/worldflag_MD.tex + RELOC/tex/latex/worldflags/worldflag_ME.tex + RELOC/tex/latex/worldflags/worldflag_MG.tex + RELOC/tex/latex/worldflags/worldflag_MH.tex + RELOC/tex/latex/worldflags/worldflag_MK.tex + RELOC/tex/latex/worldflags/worldflag_ML.tex + RELOC/tex/latex/worldflags/worldflag_MM.tex + RELOC/tex/latex/worldflags/worldflag_MN.tex + RELOC/tex/latex/worldflags/worldflag_MR.tex + RELOC/tex/latex/worldflags/worldflag_MT.tex + RELOC/tex/latex/worldflags/worldflag_MU.tex + RELOC/tex/latex/worldflags/worldflag_MV.tex + RELOC/tex/latex/worldflags/worldflag_MW.tex + RELOC/tex/latex/worldflags/worldflag_MX.tex + RELOC/tex/latex/worldflags/worldflag_MY.tex + RELOC/tex/latex/worldflags/worldflag_MZ.tex + RELOC/tex/latex/worldflags/worldflag_NA.tex + RELOC/tex/latex/worldflags/worldflag_NATO.tex + RELOC/tex/latex/worldflags/worldflag_NE.tex + RELOC/tex/latex/worldflags/worldflag_NG.tex + RELOC/tex/latex/worldflags/worldflag_NI.tex + RELOC/tex/latex/worldflags/worldflag_NL.tex + RELOC/tex/latex/worldflags/worldflag_NO.tex + RELOC/tex/latex/worldflags/worldflag_NP.tex + RELOC/tex/latex/worldflags/worldflag_NR.tex + RELOC/tex/latex/worldflags/worldflag_NU.tex + RELOC/tex/latex/worldflags/worldflag_NZ.tex + RELOC/tex/latex/worldflags/worldflag_OM.tex + RELOC/tex/latex/worldflags/worldflag_Olympics.tex + RELOC/tex/latex/worldflags/worldflag_PA.tex + RELOC/tex/latex/worldflags/worldflag_PE.tex + RELOC/tex/latex/worldflags/worldflag_PG.tex + RELOC/tex/latex/worldflags/worldflag_PH.tex + RELOC/tex/latex/worldflags/worldflag_PK.tex + RELOC/tex/latex/worldflags/worldflag_PL.tex + RELOC/tex/latex/worldflags/worldflag_PS.tex + RELOC/tex/latex/worldflags/worldflag_PT.tex + RELOC/tex/latex/worldflags/worldflag_PW.tex + RELOC/tex/latex/worldflags/worldflag_PY.tex + RELOC/tex/latex/worldflags/worldflag_QA.tex + RELOC/tex/latex/worldflags/worldflag_RO.tex + RELOC/tex/latex/worldflags/worldflag_RS.tex + RELOC/tex/latex/worldflags/worldflag_RU.tex + RELOC/tex/latex/worldflags/worldflag_RW.tex + RELOC/tex/latex/worldflags/worldflag_Rainbow.tex + RELOC/tex/latex/worldflags/worldflag_RedCross.tex + RELOC/tex/latex/worldflags/worldflag_SA.tex + RELOC/tex/latex/worldflags/worldflag_SB.tex + RELOC/tex/latex/worldflags/worldflag_SC.tex + RELOC/tex/latex/worldflags/worldflag_SD.tex + RELOC/tex/latex/worldflags/worldflag_SE.tex + RELOC/tex/latex/worldflags/worldflag_SG.tex + RELOC/tex/latex/worldflags/worldflag_SI.tex + RELOC/tex/latex/worldflags/worldflag_SK.tex + RELOC/tex/latex/worldflags/worldflag_SL.tex + RELOC/tex/latex/worldflags/worldflag_SM.tex + RELOC/tex/latex/worldflags/worldflag_SN.tex + RELOC/tex/latex/worldflags/worldflag_SO.tex + RELOC/tex/latex/worldflags/worldflag_SR.tex + RELOC/tex/latex/worldflags/worldflag_SS.tex + RELOC/tex/latex/worldflags/worldflag_ST.tex + RELOC/tex/latex/worldflags/worldflag_SV.tex + RELOC/tex/latex/worldflags/worldflag_SY.tex + RELOC/tex/latex/worldflags/worldflag_SZ.tex + RELOC/tex/latex/worldflags/worldflag_Somaliland.tex + RELOC/tex/latex/worldflags/worldflag_TD.tex + RELOC/tex/latex/worldflags/worldflag_TG.tex + RELOC/tex/latex/worldflags/worldflag_TH.tex + RELOC/tex/latex/worldflags/worldflag_TJ.tex + RELOC/tex/latex/worldflags/worldflag_TL.tex + RELOC/tex/latex/worldflags/worldflag_TM.tex + RELOC/tex/latex/worldflags/worldflag_TN.tex + RELOC/tex/latex/worldflags/worldflag_TO.tex + RELOC/tex/latex/worldflags/worldflag_TR.tex + RELOC/tex/latex/worldflags/worldflag_TT.tex + RELOC/tex/latex/worldflags/worldflag_TV.tex + RELOC/tex/latex/worldflags/worldflag_TW.tex + RELOC/tex/latex/worldflags/worldflag_TZ.tex + RELOC/tex/latex/worldflags/worldflag_Transnistria.tex + RELOC/tex/latex/worldflags/worldflag_UA.tex + RELOC/tex/latex/worldflags/worldflag_UG.tex + RELOC/tex/latex/worldflags/worldflag_UNO.tex + RELOC/tex/latex/worldflags/worldflag_US.tex + RELOC/tex/latex/worldflags/worldflag_UY.tex + RELOC/tex/latex/worldflags/worldflag_UZ.tex + RELOC/tex/latex/worldflags/worldflag_VA.tex + RELOC/tex/latex/worldflags/worldflag_VC.tex + RELOC/tex/latex/worldflags/worldflag_VE.tex + RELOC/tex/latex/worldflags/worldflag_VN.tex + RELOC/tex/latex/worldflags/worldflag_VU.tex + RELOC/tex/latex/worldflags/worldflag_WB.tex + RELOC/tex/latex/worldflags/worldflag_WS.tex + RELOC/tex/latex/worldflags/worldflag_YE.tex + RELOC/tex/latex/worldflags/worldflag_ZA.tex + RELOC/tex/latex/worldflags/worldflag_ZM.tex + RELOC/tex/latex/worldflags/worldflag_ZW.tex + RELOC/tex/latex/worldflags/worldflags.sty +catalogue-ctan /graphics/pgf/contrib/worldflags +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz + +name wrapfig +category Package +revision 22048 +shortdesc Produces figures which text can flow around +relocated 1 +longdesc Allows figures or tables to have text wrapped around them. Does +longdesc not work in combination with list environments, but can be used +longdesc in a parbox or minipage, and in twocolumn format. Supports the +longdesc float package. +containersize 9360 +containerchecksum ea9d0693a43f985b9ab13a51e0af82b866adc8500dfb9f42e8b20ce8facd07d0534749bda61d13bc86b921300336c9f7e6099f252c4c65370a2e2cb4423589ae +doccontainersize 337900 +doccontainerchecksum 9ba4292d2641a31f3719ca66e3d80ca70638f9c943bfad9e9e08543f57a53eccc1292930e95d6a3677d0696e0deb1d1ca698b83eb7285baae275b70ac808be33 +docfiles size=87 + RELOC/doc/latex/wrapfig/multiple-span.txt details="How to use wrapfig to span multiple columns" + RELOC/doc/latex/wrapfig/wrapfig-doc.pdf details="Package documentation" + RELOC/doc/latex/wrapfig/wrapfig-doc.tex +runfiles size=7 + RELOC/tex/latex/wrapfig/wrapfig.sty +catalogue-also floatflt +catalogue-ctan /macros/latex/contrib/wrapfig +catalogue-license lppl +catalogue-topics text-flow +catalogue-version 3.6 + +name wsemclassic +category Package +revision 31532 +shortdesc LaTeX class for Bavarian school w-seminar papers +relocated 1 +longdesc The class is designed either to conform with the +longdesc recommendations of the Bavarian Kultusministerium for +longdesc typesetting w-seminar papers (strict mode), or to use another +longdesc style which should look better. The class is based on the LaTeX +longdesc standard report class. +containersize 3772 +containerchecksum 064c1ec12a33dbb6c5a2c08c98c21d5684d8be6edb807987e69a47002d52bda4634a8e0d8016d01aaec6b0bcb9851de61d2a1723f70ea7da2dd4000d2340033d +doccontainersize 401712 +doccontainerchecksum d86741a35d1873a17839e880b2e1c0915cf7b64bd52e5836f9967159479611482c2b2c67388066b9f171574109a5fa0a5b9555ccf4e629d4b26434a31cd754da +docfiles size=106 + RELOC/doc/latex/wsemclassic/LICENSE + RELOC/doc/latex/wsemclassic/Makefile + RELOC/doc/latex/wsemclassic/README details="Readme" + RELOC/doc/latex/wsemclassic/test.bib + RELOC/doc/latex/wsemclassic/user-doc.tex + RELOC/doc/latex/wsemclassic/wsemclassic-test.pdf + RELOC/doc/latex/wsemclassic/wsemclassic-test.tex + RELOC/doc/latex/wsemclassic/wsemclassic.pdf details="Package documentation" +srccontainersize 6948 +srccontainerchecksum cbf8ef51ab7782a2b52d238ee2f517a541ef1a0196ff72f08cd722c3335a80a2520fbd359cf865302229cf146b16931d4b163571e908360adc8139c2ade5f2b3 +srcfiles size=7 + RELOC/source/latex/wsemclassic/wsemclassic.dtx + RELOC/source/latex/wsemclassic/wsemclassic.ins +runfiles size=3 + RELOC/tex/latex/wsemclassic/wsemclassic.cls +catalogue-contact-repository https://github.com/jorsn/wsemclassic/ +catalogue-ctan /macros/latex/contrib/wsemclassic +catalogue-license bsd +catalogue-topics dissertation +catalogue-version 1.0.1 + +name wsuipa +category Package +revision 25469 +shortdesc International Phonetic Alphabet fonts +relocated 1 +longdesc The package provides a 7-bit IPA font, as Metafont source, and +longdesc macros for support under TeXt1 and LaTeX. The fonts (and +longdesc macros) are now largely superseded by the tipa fonts. +containersize 36108 +containerchecksum 7488fab88bb273463ffa45819fb486aa3c95d7202d8ffe2a8aa8f2a1b00555e70bbc5a008a72cb60ddc1759dbca60bed05d2a21b4308e75490e965e71a84ee7f +doccontainersize 76996 +doccontainerchecksum b24aa32e2e7b466d7afc827aed570deb70b41163cbe6ce975d8df77e9dcc92b453e5f0d5f0edd5a2f05c006939003849b7b44c2e3f8a86ffd61a51ff307466e5 +docfiles size=110 + RELOC/doc/fonts/wsuipa/LICENCE-wsuipa.txt + RELOC/doc/fonts/wsuipa/README details="Package Readme" + RELOC/doc/fonts/wsuipa/changes.dec93 + RELOC/doc/fonts/wsuipa/changes.jun91 + RELOC/doc/fonts/wsuipa/changes.mar91 + RELOC/doc/fonts/wsuipa/changes.may92 + RELOC/doc/fonts/wsuipa/changes.nov90 + RELOC/doc/fonts/wsuipa/compilefonts + RELOC/doc/fonts/wsuipa/ipamacs.tex + RELOC/doc/fonts/wsuipa/ipaman.ps details="Package documentation and font details" + RELOC/doc/fonts/wsuipa/latex209/ipalman.tex + RELOC/doc/fonts/wsuipa/latex209/lipaman.tex + RELOC/doc/fonts/wsuipa/latex2e/ipaman.tex + RELOC/doc/fonts/wsuipa/text1/ipaman.tex +runfiles size=102 + RELOC/fonts/source/public/wsuipa/iaccent.mf + RELOC/fonts/source/public/wsuipa/igreekl.mf + RELOC/fonts/source/public/wsuipa/iparoman.mf + RELOC/fonts/source/public/wsuipa/iromanl.mf + RELOC/fonts/source/public/wsuipa/iromanp.mf + RELOC/fonts/source/public/wsuipa/iromanu.mf + RELOC/fonts/source/public/wsuipa/wbxipa10.mf + RELOC/fonts/source/public/wsuipa/wbxipa11.mf + RELOC/fonts/source/public/wsuipa/wbxipa12.mf + RELOC/fonts/source/public/wsuipa/wbxipa17.mf + RELOC/fonts/source/public/wsuipa/wbxipa8.mf + RELOC/fonts/source/public/wsuipa/wbxipa9.mf + RELOC/fonts/source/public/wsuipa/wslipa10.mf + RELOC/fonts/source/public/wsuipa/wslipa11.mf + RELOC/fonts/source/public/wsuipa/wslipa12.mf + RELOC/fonts/source/public/wsuipa/wslipa17.mf + RELOC/fonts/source/public/wsuipa/wslipa8.mf + RELOC/fonts/source/public/wsuipa/wslipa9.mf + RELOC/fonts/source/public/wsuipa/wsuipa10.mf + RELOC/fonts/source/public/wsuipa/wsuipa11.mf + RELOC/fonts/source/public/wsuipa/wsuipa12.mf + RELOC/fonts/source/public/wsuipa/wsuipa17.mf + RELOC/fonts/source/public/wsuipa/wsuipa8.mf + RELOC/fonts/source/public/wsuipa/wsuipa9.mf + RELOC/fonts/tfm/public/wsuipa/wbxipa10.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa11.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa12.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa17.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa8.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa9.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa10.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa11.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa12.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa17.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa8.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa9.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa10.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa11.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa12.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa17.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa8.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa9.tfm + RELOC/tex/latex/wsuipa/ipa.sty + RELOC/tex/latex/wsuipa/ipalmacs.sty + RELOC/tex/latex/wsuipa/uipa.fd +catalogue-also wsuipa2tipa +catalogue-ctan /fonts/wsuipa +catalogue-license other-free +catalogue-topics font font-mf phonetic + +name wtref +category Package +revision 55558 +shortdesc Extend LaTeX's cross-reference system +relocated 1 +longdesc This package extends the cross-reference system of LaTeX2e and +longdesc introduces concepts of namespace and scope. It also allows +longdesc users to customize reference formats. The package is part of +longdesc the WT Series. Prerequisite packages: xparse and xkeyval. +containersize 2144 +containerchecksum 1c946778722ba4e7014b98447d1c2c5472b34d916a4aada1ad1098ab05d67a1466fb181f19bacde5fe18a0b28a055a87b626893d6c49346fb665b4595910401c +doccontainersize 347716 +doccontainerchecksum b1ebac65ff228e7a6221240ce90d83121d726959d95f2271eb3c6597c7740a376da62371fedf2c0bd068e660950167d4b09cf22c01fd78c337c10402eda63bd1 +docfiles size=92 + RELOC/doc/latex/wtref/LICENSE + RELOC/doc/latex/wtref/README.md details="Readme" + RELOC/doc/latex/wtref/wtref-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/wtref/wtref-ja.tex + RELOC/doc/latex/wtref/wtref.pdf details="Package documentation" + RELOC/doc/latex/wtref/wtref.tex +runfiles size=2 + RELOC/tex/latex/wtref/wtref.sty +catalogue-contact-bugs https://github.com/wtsnjp/WTRef/issues +catalogue-contact-repository https://github.com/wtsnjp/WTRef +catalogue-ctan /macros/latex/contrib/wtref +catalogue-license mit +catalogue-topics label-ref +catalogue-version 0.4.0 + +name xargs +category Package +revision 15878 +shortdesc Define commands with many optional arguments +relocated 1 +longdesc The package provides extended versions of \newcommand and +longdesc related LaTeX commands, which allow easy and robust definition +longdesc of macros with many optional arguments, using a clear and +longdesc simple xkeyval-style syntax. +containersize 3372 +containerchecksum 43b9cc5246123ef3c424614415e04db9e7a578eef348c3d580626918a4c31ac99714cf501dd54d305ed6ab9ad7e0533bf5b39250c43ad682032dd676a12173d2 +doccontainersize 181868 +doccontainerchecksum 387a051eb8581b51d2042bcfae2ff9af99659d664c328c6b30b3789c75fb73687c32e2037df7a345335966671a3e3267ff4b9e0eead0e5b759bd305850ef22b6 +docfiles size=58 + RELOC/doc/latex/xargs/README details="Readme" + RELOC/doc/latex/xargs/xargs-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/xargs/xargs.pdf details="Package documentation (English)" language="en" +srccontainersize 17444 +srccontainerchecksum e4717f476260648eb66fefeeb125606c16d302bbad32c55730a0102da355d0c828b106b25391f69bb34627f56cd7659dc185bbcd36ba7f5a8f0b77a0786a7957 +srcfiles size=15 + RELOC/source/latex/xargs/xargs.dtx +runfiles size=4 + RELOC/tex/latex/xargs/xargs.sty +catalogue-ctan /macros/latex/contrib/xargs +catalogue-license lppl +catalogue-topics latex3 macro-supp +catalogue-version 1.1 + +name xassoccnt +category Package +revision 55876 +shortdesc Associated counters stepping simultaneously +relocated 1 +longdesc This package provides a way of associating counters to an +longdesc existing driver counter so that incrementing the driver counter +longdesc will increase its associated counters as well. This package can +longdesc be regarded as a supplement to the totcount package by +longdesc Vasileios Koutavas, but it can be used without it, too. +longdesc xassoccnt is a successor and a complete rewrite of the assoccnt +longdesc package by the same author. However, as of 2017-03-05, some +longdesc features of assoccnt are not (yet) contained in xassoccnt so +longdesc that the older package cannot yet be regarded as obsolete. +containersize 19604 +containerchecksum f2a2c993c465afdf21920e7f4cd7ed81f40fec1bc485cd89d919e5a942284e2219194d349ecc4da81005a7dbd997ed176ca8571c92ec159b69a98dd1068a136d +doccontainersize 1139344 +doccontainerchecksum a20c3a3f10ca5a2fd785e4bfb92d3d60edcbee74f6efd2dea5fece63b01ff3d67905700be0fc48dfda9bccfa386238e77592cb04208ead19dbdb0714d6e891af +docfiles size=333 + RELOC/doc/latex/xassoccnt/README details="Readme" + RELOC/doc/latex/xassoccnt/xassoccnt_counterformats_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_counterformats_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_counterhierarchy_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_counterhierarchy_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_coupledcounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_coupledcounters_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_doc.pdf details="Package documentation" + RELOC/doc/latex/xassoccnt/xassoccnt_doc.tex + RELOC/doc/latex/xassoccnt/xassoccnt_driver_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_driver_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_getparentcounter_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_getparentcounter_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_label_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_label_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_periodiccounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_periodiccounters_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_resetlist_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_resetloop_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_resetloop_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_suspendedcounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_suspendedcounters_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_totalcounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_totalcounters_example.tex +runfiles size=31 + RELOC/tex/latex/xassoccnt/xassoccnt.sty +catalogue-also assoccnt +catalogue-ctan /macros/latex/contrib/xassoccnt +catalogue-license lppl1.3 +catalogue-topics counter-mgmt macro-supp +catalogue-version 1.8 + +name xbmks +category Package +revision 53448 +shortdesc Create a cross-document bookmark tree +relocated 1 +longdesc The package defines the concept of a document bundle, which is +longdesc a collection of documents that are to be built separately, but +longdesc have a common bookmark tree. The only options are driver +longdesc options, these are dvips (Acrobat Distiller or ps2pdf these can +longdesc be used as the PDF creator), pdfLaTeX (and LuaLaTeX, which is +longdesc treated the same as pdfLaTeX), and XeLaTeX. The package +longdesc auto-detects pdfLaTeX and XeLaTeX, and dvips is the default, so +longdesc there is actually no need to pass the driver option. +containersize 4124 +containerchecksum e17701f9cd79d49467e4dd47ef9a504a8b0fb44b216fbfab0f5547e9215c4dc40f1fa46aabc209ff2221a4a9424221adacc52f6040d3f796d51f2d37dcd4e8c5 +doccontainersize 364224 +doccontainerchecksum 76d255a036a19d80c826eff4b18643523787c53f9b79e44710e03f9bb8a7648136559727dee246508c1cc6ff332cbc92b8d1c728b4583ae26502ce44538a61db +docfiles size=118 + RELOC/doc/latex/xbmks/README.md details="Readme" + RELOC/doc/latex/xbmks/docs/xbmks.pdf + RELOC/doc/latex/xbmks/docs/xbmksman.pdf details="Package documentation" + RELOC/doc/latex/xbmks/docs/xbmksman.tex + RELOC/doc/latex/xbmks/examples/doc1.pdf + RELOC/doc/latex/xbmks/examples/doc1.tex + RELOC/doc/latex/xbmks/examples/doc2.pdf + RELOC/doc/latex/xbmks/examples/doc2.tex + RELOC/doc/latex/xbmks/examples/master.pdf + RELOC/doc/latex/xbmks/examples/master.tex + RELOC/doc/latex/xbmks/examples/stand-alone.tex +srccontainersize 8024 +srccontainerchecksum 4c3a9ade3d3c204db2c2d0e11a55bef0a18cf1e3e4dfa292c3da356ef5ef5aab9ed6021d07f6222f1ec722298c46ee4e4eff02658e76b99bb426e6e289fbc136 +srcfiles size=9 + RELOC/source/latex/xbmks/xbmks.dtx + RELOC/source/latex/xbmks/xbmks.ins +runfiles size=5 + RELOC/tex/latex/xbmks/xbmks-pdfmark.def + RELOC/tex/latex/xbmks/xbmks-pdftex.def + RELOC/tex/latex/xbmks/xbmks-xetex.def + RELOC/tex/latex/xbmks/xbmks.sty +catalogue-ctan /macros/latex/contrib/xbmks +catalogue-license lppl1.2 +catalogue-topics pdfprocess adobe-distiller + +name xcharter +category Package +revision 58755 +shortdesc Extension of Bitstream Charter fonts +relocated 1 +longdesc The package presents an extension of Bitstream Charter, which +longdesc provides small caps, oldstyle figures and superior figures in +longdesc all four styles, accompanied by LaTeX font support files. The +longdesc fonts themselves are provided in both Adobe Type 1 and OTF +longdesc formats, with supporting files as necessary. +execute addMap XCharter.map +containersize 2067828 +containerchecksum 47ef79da9f019c27758e90be80ca7815e93ec3044da88b133685f4cf32655d1be2c591e17a6730da45977be5e06a3cd0c29da2ee798e5667d741f5161f2de723 +doccontainersize 465920 +doccontainerchecksum 574a4ba5ec45569668ee9e3b26055d1677fb2a95f28bb4b8e2b21589aba116329fbffeb74e4b391dde94f93547aeb1d689560d7050976db533be28c9cf6b6948 +docfiles size=215 + RELOC/doc/fonts/xcharter/README details="Readme" + RELOC/doc/fonts/xcharter/altone.py + RELOC/doc/fonts/xcharter/newgermanfxch-crop.pdf + RELOC/doc/fonts/xcharter/newgermanfxch.pdf + RELOC/doc/fonts/xcharter/newgermanfxch.tex + RELOC/doc/fonts/xcharter/xcharter-doc.pdf details="Package documentation" + RELOC/doc/fonts/xcharter/xcharter-doc.tex +runfiles size=2372 + RELOC/fonts/afm/public/xcharter/XCharter-Bold.afm + RELOC/fonts/afm/public/xcharter/XCharter-BoldItalic.afm + RELOC/fonts/afm/public/xcharter/XCharter-BoldSlanted.afm + RELOC/fonts/afm/public/xcharter/XCharter-Italic.afm + RELOC/fonts/afm/public/xcharter/XCharter-Roman.afm + RELOC/fonts/afm/public/xcharter/XCharter-Slanted.afm + RELOC/fonts/afm/public/xcharter/XCharterMathBMI.afm + RELOC/fonts/afm/public/xcharter/XCharterMathBRM.afm + RELOC/fonts/afm/public/xcharter/XCharterMathMI.afm + RELOC/fonts/afm/public/xcharter/XCharterMathRM.afm + RELOC/fonts/enc/dvips/xcharter/chalph.enc + RELOC/fonts/enc/dvips/xcharter/chtabosf.enc + RELOC/fonts/enc/dvips/xcharter/xch1_2itbay.enc + RELOC/fonts/enc/dvips/xcharter/xch1_2jcsfa.enc + RELOC/fonts/enc/dvips/xcharter/xch1_3qy4ma.enc + RELOC/fonts/enc/dvips/xcharter/xch1_4zysyq.enc + RELOC/fonts/enc/dvips/xcharter/xch1_64qgug.enc + RELOC/fonts/enc/dvips/xcharter/xch1_6xwfqv.enc + RELOC/fonts/enc/dvips/xcharter/xch1_7aohvb.enc + RELOC/fonts/enc/dvips/xcharter/xch1_7p4e2o.enc + RELOC/fonts/enc/dvips/xcharter/xch1_afo4o4.enc + RELOC/fonts/enc/dvips/xcharter/xch1_cjimfy.enc + RELOC/fonts/enc/dvips/xcharter/xch1_co4ru4.enc + RELOC/fonts/enc/dvips/xcharter/xch1_geqmur.enc + RELOC/fonts/enc/dvips/xcharter/xch1_icytdu.enc + RELOC/fonts/enc/dvips/xcharter/xch1_ivnpe7.enc + RELOC/fonts/enc/dvips/xcharter/xch1_m7ekhw.enc + RELOC/fonts/enc/dvips/xcharter/xch1_nhow2o.enc + RELOC/fonts/enc/dvips/xcharter/xch1_ph46id.enc + RELOC/fonts/enc/dvips/xcharter/xch1_pqp4df.enc + RELOC/fonts/enc/dvips/xcharter/xch1_q2nwaj.enc + RELOC/fonts/enc/dvips/xcharter/xch1_q7fabp.enc + RELOC/fonts/enc/dvips/xcharter/xch1_s4eoyd.enc + RELOC/fonts/enc/dvips/xcharter/xch1_sczepj.enc + RELOC/fonts/enc/dvips/xcharter/xch1_wd2dbe.enc + RELOC/fonts/enc/dvips/xcharter/xch1_wqeam3.enc + RELOC/fonts/enc/dvips/xcharter/xch1_wuciy4.enc + RELOC/fonts/enc/dvips/xcharter/xch1_x6jczy.enc + RELOC/fonts/enc/dvips/xcharter/xch1_xqcxen.enc + RELOC/fonts/enc/dvips/xcharter/xch1_z3wvjz.enc + RELOC/fonts/enc/dvips/xcharter/xch1_zhjmar.enc + RELOC/fonts/enc/dvips/xcharter/xch1_zqx27h.enc + RELOC/fonts/enc/dvips/xcharter/xch_26pbhy.enc + RELOC/fonts/enc/dvips/xcharter/xch_2itbay.enc + RELOC/fonts/enc/dvips/xcharter/xch_2jcsfa.enc + RELOC/fonts/enc/dvips/xcharter/xch_34ooqo.enc + RELOC/fonts/enc/dvips/xcharter/xch_3qy4ma.enc + RELOC/fonts/enc/dvips/xcharter/xch_4j4sw5.enc + RELOC/fonts/enc/dvips/xcharter/xch_4zysyq.enc + RELOC/fonts/enc/dvips/xcharter/xch_62z5ot.enc + RELOC/fonts/enc/dvips/xcharter/xch_6335sg.enc + RELOC/fonts/enc/dvips/xcharter/xch_64qgug.enc + RELOC/fonts/enc/dvips/xcharter/xch_6hzluo.enc + RELOC/fonts/enc/dvips/xcharter/xch_6w7aji.enc + RELOC/fonts/enc/dvips/xcharter/xch_6xwfqv.enc + RELOC/fonts/enc/dvips/xcharter/xch_7aohvb.enc + RELOC/fonts/enc/dvips/xcharter/xch_7cmdv6.enc + RELOC/fonts/enc/dvips/xcharter/xch_7p4e2o.enc + RELOC/fonts/enc/dvips/xcharter/xch_abgjzu.enc + RELOC/fonts/enc/dvips/xcharter/xch_afo4o4.enc + RELOC/fonts/enc/dvips/xcharter/xch_ao7ayk.enc + RELOC/fonts/enc/dvips/xcharter/xch_aw3wom.enc + RELOC/fonts/enc/dvips/xcharter/xch_bjnaxa.enc + RELOC/fonts/enc/dvips/xcharter/xch_blmpt7.enc + RELOC/fonts/enc/dvips/xcharter/xch_bxmb3o.enc + RELOC/fonts/enc/dvips/xcharter/xch_cjimfy.enc + RELOC/fonts/enc/dvips/xcharter/xch_ckugtc.enc + RELOC/fonts/enc/dvips/xcharter/xch_co4ru4.enc + RELOC/fonts/enc/dvips/xcharter/xch_en7yt2.enc + RELOC/fonts/enc/dvips/xcharter/xch_fiqldz.enc + RELOC/fonts/enc/dvips/xcharter/xch_geqmur.enc + RELOC/fonts/enc/dvips/xcharter/xch_glnwao.enc + RELOC/fonts/enc/dvips/xcharter/xch_h4dyum.enc + RELOC/fonts/enc/dvips/xcharter/xch_hnm3ex.enc + RELOC/fonts/enc/dvips/xcharter/xch_hnm6t3.enc + RELOC/fonts/enc/dvips/xcharter/xch_hrleas.enc + RELOC/fonts/enc/dvips/xcharter/xch_icytdu.enc + RELOC/fonts/enc/dvips/xcharter/xch_imj3v4.enc + RELOC/fonts/enc/dvips/xcharter/xch_ivnpe7.enc + RELOC/fonts/enc/dvips/xcharter/xch_jqdzb6.enc + RELOC/fonts/enc/dvips/xcharter/xch_l5j7vv.enc + RELOC/fonts/enc/dvips/xcharter/xch_l7jokp.enc + RELOC/fonts/enc/dvips/xcharter/xch_m2vrds.enc + RELOC/fonts/enc/dvips/xcharter/xch_m7ekhw.enc + RELOC/fonts/enc/dvips/xcharter/xch_mgb5xg.enc + RELOC/fonts/enc/dvips/xcharter/xch_nhow2o.enc + RELOC/fonts/enc/dvips/xcharter/xch_o2mz2z.enc + RELOC/fonts/enc/dvips/xcharter/xch_ocop3w.enc + RELOC/fonts/enc/dvips/xcharter/xch_og2pus.enc + RELOC/fonts/enc/dvips/xcharter/xch_ph46id.enc + RELOC/fonts/enc/dvips/xcharter/xch_phn3tc.enc + RELOC/fonts/enc/dvips/xcharter/xch_pqp4df.enc + RELOC/fonts/enc/dvips/xcharter/xch_pz3lxg.enc + RELOC/fonts/enc/dvips/xcharter/xch_q2nwaj.enc + RELOC/fonts/enc/dvips/xcharter/xch_q7fabp.enc + RELOC/fonts/enc/dvips/xcharter/xch_qdw4m6.enc + RELOC/fonts/enc/dvips/xcharter/xch_qibaxb.enc + RELOC/fonts/enc/dvips/xcharter/xch_qxwrge.enc + RELOC/fonts/enc/dvips/xcharter/xch_rvzpfm.enc + RELOC/fonts/enc/dvips/xcharter/xch_rydp4l.enc + RELOC/fonts/enc/dvips/xcharter/xch_s3y5jv.enc + RELOC/fonts/enc/dvips/xcharter/xch_s4eoyd.enc + RELOC/fonts/enc/dvips/xcharter/xch_sczepj.enc + RELOC/fonts/enc/dvips/xcharter/xch_t5vgvk.enc + RELOC/fonts/enc/dvips/xcharter/xch_tcksd3.enc + RELOC/fonts/enc/dvips/xcharter/xch_u7hnxs.enc + RELOC/fonts/enc/dvips/xcharter/xch_ukw3hq.enc + RELOC/fonts/enc/dvips/xcharter/xch_v6llfb.enc + RELOC/fonts/enc/dvips/xcharter/xch_vtvjjk.enc + RELOC/fonts/enc/dvips/xcharter/xch_vyhv3k.enc + RELOC/fonts/enc/dvips/xcharter/xch_wd2dbe.enc + RELOC/fonts/enc/dvips/xcharter/xch_wizqmm.enc + RELOC/fonts/enc/dvips/xcharter/xch_wqeam3.enc + RELOC/fonts/enc/dvips/xcharter/xch_wuciy4.enc + RELOC/fonts/enc/dvips/xcharter/xch_x25wg5.enc + RELOC/fonts/enc/dvips/xcharter/xch_x6jczy.enc + RELOC/fonts/enc/dvips/xcharter/xch_xqcxen.enc + RELOC/fonts/enc/dvips/xcharter/xch_yelf2i.enc + RELOC/fonts/enc/dvips/xcharter/xch_z3wvjz.enc + RELOC/fonts/enc/dvips/xcharter/xch_zhjmar.enc + RELOC/fonts/enc/dvips/xcharter/xch_zqx27h.enc + RELOC/fonts/enc/dvips/xcharter/xcharter-ot2.enc + RELOC/fonts/map/dvips/xcharter/XCharter.map + RELOC/fonts/opentype/public/xcharter/XCharter-Bold.otf + RELOC/fonts/opentype/public/xcharter/XCharter-BoldItalic.otf + RELOC/fonts/opentype/public/xcharter/XCharter-BoldSlanted.otf + RELOC/fonts/opentype/public/xcharter/XCharter-Italic.otf + RELOC/fonts/opentype/public/xcharter/XCharter-Roman.otf + RELOC/fonts/opentype/public/xcharter/XCharter-Slanted.otf + RELOC/fonts/tfm/public/xcharter/XCharter-Bol-osf.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BolIta-alph.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Ita-alph.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-osf.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathBMI.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathBRM.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathMI.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathRM.tfm + RELOC/fonts/tfm/public/xcharter/zchbmi.tfm + RELOC/fonts/tfm/public/xcharter/zchbmi0.tfm + RELOC/fonts/tfm/public/xcharter/zchbmi2.tfm + RELOC/fonts/tfm/public/xcharter/zchbmi3.tfm + RELOC/fonts/tfm/public/xcharter/zchbmia.tfm + RELOC/fonts/tfm/public/xcharter/zchmi.tfm + RELOC/fonts/tfm/public/xcharter/zchmi0.tfm + RELOC/fonts/tfm/public/xcharter/zchmi2.tfm + RELOC/fonts/tfm/public/xcharter/zchmi3.tfm + RELOC/fonts/tfm/public/xcharter/zchmia-fromvf.tfm + RELOC/fonts/tfm/public/xcharter/zchmia.tfm + RELOC/fonts/type1/public/xcharter/XCharter-Bold.pfb + RELOC/fonts/type1/public/xcharter/XCharter-BoldItalic.pfb + RELOC/fonts/type1/public/xcharter/XCharter-BoldSlanted.pfb + RELOC/fonts/type1/public/xcharter/XCharter-Italic.pfb + RELOC/fonts/type1/public/xcharter/XCharter-Roman.pfb + RELOC/fonts/type1/public/xcharter/XCharter-Slanted.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathBMI.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathBRM.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathMI.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathRM.pfb + RELOC/fonts/vf/public/xcharter/XCharter-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-ts1.vf + RELOC/fonts/vf/public/xcharter/zchbmi.vf + RELOC/fonts/vf/public/xcharter/zchbmi0.vf + RELOC/fonts/vf/public/xcharter/zchbmi2.vf + RELOC/fonts/vf/public/xcharter/zchbmi3.vf + RELOC/fonts/vf/public/xcharter/zchbmia.vf + RELOC/fonts/vf/public/xcharter/zchmi.vf + RELOC/fonts/vf/public/xcharter/zchmi0.vf + RELOC/fonts/vf/public/xcharter/zchmi2.vf + RELOC/fonts/vf/public/xcharter/zchmi3.vf + RELOC/fonts/vf/public/xcharter/zchmia-fromvf.vf + RELOC/fonts/vf/public/xcharter/zchmia.vf + RELOC/tex/latex/xcharter/LY1XCharter-Dnom.fd + RELOC/tex/latex/xcharter/LY1XCharter-Inf.fd + RELOC/tex/latex/xcharter/LY1XCharter-Numr.fd + RELOC/tex/latex/xcharter/LY1XCharter-Sup.fd + RELOC/tex/latex/xcharter/LY1XCharter-TLF.fd + RELOC/tex/latex/xcharter/LY1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/OT1XCharter-Dnom.fd + RELOC/tex/latex/xcharter/OT1XCharter-Inf.fd + RELOC/tex/latex/xcharter/OT1XCharter-Numr.fd + RELOC/tex/latex/xcharter/OT1XCharter-Sup.fd + RELOC/tex/latex/xcharter/OT1XCharter-TLF.fd + RELOC/tex/latex/xcharter/OT1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/OT2XCharter-TLF.fd + RELOC/tex/latex/xcharter/T1XCharter-Dnom.fd + RELOC/tex/latex/xcharter/T1XCharter-Inf.fd + RELOC/tex/latex/xcharter/T1XCharter-Numr.fd + RELOC/tex/latex/xcharter/T1XCharter-Sup.fd + RELOC/tex/latex/xcharter/T1XCharter-TLF.fd + RELOC/tex/latex/xcharter/T1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-Sup.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-TLF.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-TOsF.fd + RELOC/tex/latex/xcharter/T2AXCharter-Sup.fd + RELOC/tex/latex/xcharter/T2AXCharter-TLF.fd + RELOC/tex/latex/xcharter/T2AXCharter-TOsF.fd + RELOC/tex/latex/xcharter/TS1XCharter-TLF.fd + RELOC/tex/latex/xcharter/TS1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/XCharter.fontspec + RELOC/tex/latex/xcharter/XCharter.sty + RELOC/tex/latex/xcharter/newtx-xcharter-subs.tex + RELOC/tex/latex/xcharter/omlzchmi.fd + RELOC/tex/latex/xcharter/t2asrbcmr.fd + RELOC/tex/latex/xcharter/t2asrbenc.def +catalogue-ctan /fonts/xcharter +catalogue-license other-free lppl1.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.216 + +name xcite +category Package +revision 53486 +shortdesc Use citation keys from a different document +relocated 1 +longdesc The package xcite is no longer necessary, because its +longdesc functionality has been taken over by xr, so this final version +longdesc is just a stub that loads xr. +containersize 1048 +containerchecksum 0412a4f47a044efbd22adbbea9cda1bec44379dbc799ca83821d4650e8e40f6b5de51b80ea6a80d747639a9b840b7cff6612b6e4df0b2c09c0f3ed506d3de714 +doccontainersize 159256 +doccontainerchecksum 11af105ca5f1610e5cfa226cb191d1f69d257e21439c2408283572e136b183518f58631ec1b0b145a1edf50ca58e9a1eda789e5646c47b46f75a6325c90262f5 +docfiles size=40 + RELOC/doc/latex/xcite/README details="Readme" + RELOC/doc/latex/xcite/xcite.pdf details="Package documentation" +srccontainersize 1664 +srccontainerchecksum 0f6d0e7206b59acd468dbd77ef3358d2865f48e2d59ccae2ec185759c137b9db99bf417acf71ec40cbafbf2569cd9b4a74a97b7a3959f51f1703af9a026486e4 +srcfiles size=2 + RELOC/source/latex/xcite/xcite.dtx + RELOC/source/latex/xcite/xcite.ins +runfiles size=1 + RELOC/tex/latex/xcite/xcite.sty +catalogue-also xr +catalogue-ctan /macros/latex/contrib/xcite +catalogue-license lppl1.3c +catalogue-topics cite-supp obsolete +catalogue-version 16383.99998 + +name xcjk2uni +category Package +revision 54958 +shortdesc Convert CJK characters to Unicode, in pdfTeX +relocated 1 +longdesc The package provides commands to convert CJK characters to +longdesc Unicode in non-UTF-8 encoding; it provides hooks to support +longdesc hyperref in producing correct bookmarks. The bundle also +longdesc provides /ToUnicode mapping file(s) for a CJK subfont; these +longdesc can be used with the cmap package, allowing searches of, and +longdesc cut-and-paste operations on a PDF file generated by pdfTeX. +containersize 200052 +containerchecksum db0be3360dc3d6373866c9d27900f8dba9353bcf92d219f9f0b82532e2855210230a06b87d1ab6eef7e1f96c54e46884e6827395affb9375120b7cf8d2fbb99b +doccontainersize 124084 +doccontainerchecksum 6a9958bc6ddf6d167b9d77a513d04f0077c9a8581109c51166410d60d5a243758da62b40bdf5cb1488a50b9ba76ca89261a2d31c3819d8b2738b4a7023ac3f90 +docfiles size=32 + RELOC/doc/latex/xcjk2uni/README.md details="Readme" + RELOC/doc/latex/xcjk2uni/xCJK2uni.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 7064 +srccontainerchecksum 8868210c53fb379e12b22472dd3575baa62743cc059b3215b634aa59e61af5b3bed8415b9b811a7949457dbee4a051e4926ecca02c293be775ccfb3467e0883a +srcfiles size=10 + RELOC/source/latex/xcjk2uni/xCJK2uni.dtx + RELOC/source/latex/xcjk2uni/xCJK2uni.ins +runfiles size=545 + RELOC/tex/latex/xcjk2uni/cmap/c0001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0035.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0036.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0037.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0038.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0039.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0040.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0041.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0042.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0043.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0044.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0045.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0046.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0047.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0048.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0049.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0050.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0051.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0052.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0053.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0054.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0055.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0056.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0057.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0058.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0901.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0902.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0903.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0904.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0905.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0906.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0907.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0908.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0909.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0910.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0911.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0912.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0913.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0914.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0915.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0916.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0917.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0918.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0919.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0920.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0921.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0922.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0923.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0924.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0925.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0926.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0927.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0928.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0929.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0930.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0931.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0932.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0933.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0934.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0935.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0936.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0937.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0938.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0939.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0940.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0941.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0942.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0943.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0944.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0945.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0946.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0947.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0948.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0949.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0950.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0951.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0952.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0953.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0954.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0955.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0956.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0957.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0958.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0959.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0960.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0961.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0962.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0963.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0964.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0965.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0966.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0967.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0968.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0969.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0970.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0971.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0972.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0973.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0974.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0975.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0976.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0977.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0978.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0979.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0980.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0981.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0982.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0983.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0984.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0985.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0986.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0987.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0988.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0989.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0990.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0991.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0992.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0993.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0994.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1035.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1901.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1902.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1903.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1904.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1905.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1906.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1907.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1908.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1909.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1910.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1911.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1912.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1913.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1914.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1915.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1916.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1917.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1918.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1919.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1920.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1921.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1922.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1923.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1924.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1925.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1926.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1927.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1928.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1929.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1930.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1931.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1932.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1933.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1934.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1935.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1936.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1937.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1938.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1939.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1940.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1941.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1942.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1943.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1944.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1945.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1946.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1947.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1948.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1949.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1950.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1951.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1952.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1953.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1954.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1955.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1956.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1957.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1958.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1959.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1960.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1961.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1962.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1963.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1964.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1965.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1966.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1967.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1968.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1969.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1970.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1971.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1972.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1973.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1974.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1975.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1976.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1977.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1978.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1979.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1980.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1981.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1982.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1983.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1984.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1985.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1986.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1987.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1988.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1989.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1990.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1991.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1992.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1993.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1994.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4035.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6035.cmap + RELOC/tex/latex/xcjk2uni/xCJK2uni-UBg5plus.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UBig5.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UGB.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UGBK.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UJIS.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UKS.def + RELOC/tex/latex/xcjk2uni/xCJK2uni.sty +catalogue-ctan /macros/latex/contrib/xcjk2uni +catalogue-license lppl1.3c +catalogue-topics pdf-feat unicode +catalogue-version 1.0 + +name xcntperchap +category Package +revision 54080 +shortdesc Track the number of subsections etc. that occur in a specified tracklevel +relocated 1 +longdesc This package is the successor of cntperchap and allows to +longdesc provide more tracklevels than just only one. +containersize 3300 +containerchecksum 7be16f92de86fe67fd34857f7151f197e5ae52e9ab944e0ef3603882585dfb240b8e01072747b18092c6ff060f2f4c341b27e106ffe8864dd1879c3965435e47 +doccontainersize 344160 +doccontainerchecksum c7d25df1dbac57e05b589662214e46ba446def465ae7f64d8a2d52283151ee04aaee93ac1bbe0f2c7b01c50e505ca6c1cfac96750d1b13211d309a906427c6f6 +docfiles size=102 + RELOC/doc/latex/xcntperchap/README details="Readme" + RELOC/doc/latex/xcntperchap/xcntperchap_basicusage.pdf + RELOC/doc/latex/xcntperchap/xcntperchap_basicusage.tex + RELOC/doc/latex/xcntperchap/xcntperchap_doc.pdf details="Package documentation" + RELOC/doc/latex/xcntperchap/xcntperchap_doc.tex + RELOC/doc/latex/xcntperchap/xcntperchap_driver.pdf + RELOC/doc/latex/xcntperchap/xcntperchap_driver.tex + RELOC/doc/latex/xcntperchap/xcntperchap_labelusage.pdf + RELOC/doc/latex/xcntperchap/xcntperchap_labelusage.tex +runfiles size=3 + RELOC/tex/latex/xcntperchap/xcntperchap.sty +catalogue-also cntperchap +catalogue-ctan /macros/latex/contrib/xcntperchap +catalogue-license lppl1.3 +catalogue-topics counter-mgmt macro-supp +catalogue-version 0.5 + +name xcolor +category Package +revision 41044 +shortdesc Driver-independent color extensions for LaTeX and pdfLaTeX +relocated 1 +longdesc The package starts from the basic facilities of the color +longdesc package, and provides easy driver-independent access to several +longdesc kinds of color tints, shades, tones, and mixes of arbitrary +longdesc colors. It allows a user to select a document-wide target color +longdesc model and offers complete tools for conversion between eight +longdesc color models. Additionally, there is a command for alternating +longdesc row colors plus repeated non-aligned material (like horizontal +longdesc lines) in tables. Colors can be mixed like +longdesc \color{red!30!green!40!blue}. +containersize 17300 +containerchecksum 9fba18460e4488cf2836082952ffff6e5e481b964570ee515f503aed3c8790778e054919e4e24070ff6cf608e21c1356859341eae5704558b1293b01ba8c0925 +doccontainersize 669996 +doccontainerchecksum 65f15207df8a112a4bccbac1c5259053364b52da3f0d2fdf566e1e734f61e0649ae6cc674c96f775d8c668cc6238dad2993f06b81153d38713ebf96e747e0353 +docfiles size=211 + RELOC/doc/latex/xcolor/ChangeLog + RELOC/doc/latex/xcolor/README details="Readme" + RELOC/doc/latex/xcolor/xcolor.lox + RELOC/doc/latex/xcolor/xcolor.pdf details="Package documentation" + RELOC/doc/latex/xcolor/xcolor1.tex + RELOC/doc/latex/xcolor/xcolor2.pdf details="Examples of usage with pstricks" + RELOC/doc/latex/xcolor/xcolor2.tex + RELOC/doc/latex/xcolor/xcolor3.tex + RELOC/doc/latex/xcolor/xcolor4.tex +srccontainersize 76980 +srccontainerchecksum 236eb7d2f94c297e743c2b0508e55910b00495915b7910dba7e0bc107f2ee37b24e3975242bb11c2c64a99f2abc5a55bd799277b9fbcd98058ee8add005d2be7 +srcfiles size=85 + RELOC/source/latex/xcolor/xcolor.dtx + RELOC/source/latex/xcolor/xcolor.ins +runfiles size=20 + RELOC/dvips/xcolor/xcolor.pro + RELOC/tex/latex/xcolor/svgnam.def + RELOC/tex/latex/xcolor/x11nam.def + RELOC/tex/latex/xcolor/xcolor.sty +catalogue-contact-home http://www.ukern.de/tex/xcolor.html +catalogue-ctan /macros/latex/contrib/xcolor +catalogue-license lppl1.2 +catalogue-topics colour +catalogue-version 2.12 + +name xcolor-material +category Package +revision 42289 +shortdesc Defines the 256 colors from Google Material Color Palette +relocated 1 +longdesc The package is built on top of the great xcolor package. It +longdesc provides a useful definition of the beautiful Google Material +longdesc Color Palette, available at Google Material design, for its use +longdesc in document writing with LaTeX and Friends. +containersize 4432 +containerchecksum 7f1484435458dafa2a04eeb4b5b1b89ffee9ec8c91f1d724449457b719f92db009efd6b6a580a2b0ccb8ebc66c0d1889f3ffa05104c0fba5cc9c7ee90985d2d3 +doccontainersize 576656 +doccontainerchecksum 388f9b604291436ded0510437be93c1fdf120a91fc3ddbabb870840f2caa9e81313035ff6c9d0c00de259fa024f83399a4004e7ba512a5c3bc7920a08ff58819 +docfiles size=156 + RELOC/doc/latex/xcolor-material/README.md details="Readme" + RELOC/doc/latex/xcolor-material/xcolor-material.pdf details="Package documentation" +srccontainersize 11256 +srccontainerchecksum 118b21c883848b5bd6d558b5c22146fad54df5e107d0525e48df42c0bbe90b210c7ea3340fcf30b5782d251ee1caefa2aedb8a130cd01a84f4e9022a40ca6a8f +srcfiles size=13 + RELOC/source/latex/xcolor-material/xcolor-material.dtx + RELOC/source/latex/xcolor-material/xcolor-material.ins +runfiles size=5 + RELOC/tex/latex/xcolor-material/xcolor-material.sty +catalogue-ctan /macros/latex/contrib/xcolor-material +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.1 + +name xcolor-solarized +category Package +revision 41809 +shortdesc Defines the 16 colors from Ethan Schoonover's Solarized palette +relocated 1 +longdesc Built on top of the package, this package defines the sixteen +longdesc colors of Ethan Schoonover's popular color palette, Solarized, +longdesc for use in documents typeset with LaTeX and Friends. +containersize 1644 +containerchecksum be443123bb994c40fde0c1783c9863a2ce8b75a8e3e3d311cc34596e72f2830dc92feee9fe87638adee2e942d540424bc389460e12aa0e33fe4014b28a1d46f7 +doccontainersize 469792 +doccontainerchecksum a448de4d83ff30c2112c90fdf80f530b8e1ee46d6b3f574ad0933cbd415debd1f94cb1c55d6de5679d5502cf8e0e28b71cdbca803f0569422e79bf0ced384f45 +docfiles size=116 + RELOC/doc/latex/xcolor-solarized/README details="Readme" + RELOC/doc/latex/xcolor-solarized/xcolor-solarized.pdf details="Package documentation" +srccontainersize 4752 +srccontainerchecksum c7f4bac922f84d2e6323f93cbbaa8ec61aa8f532383469edeb8712d4aa557a25509c4c85d160a30715af9a4077d17e6149b737c499dabb22af8a9cc398f4ec9b +srcfiles size=4 + RELOC/source/latex/xcolor-solarized/xcolor-solarized.dtx + RELOC/source/latex/xcolor-solarized/xcolor-solarized.ins +runfiles size=1 + RELOC/tex/latex/xcolor-solarized/xcolor-solarized.sty +catalogue-ctan /macros/latex/contrib/xcolor-solarized +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.4 + +name xcomment +category Package +revision 20031 +shortdesc Allows selected environments to be included/excluded +relocated 1 +longdesc The package defines an environment that only typesets specified +longdesc environments within its scope. So, for example, if you want +longdesc nothing but the figure and table environments in your document, +longdesc you can enclose the whole document with an xcomment environment +longdesc that excludes everything but. This is a lot easier than +longdesc excluding the chunks of text between the environments you want, +longdesc or creating an entire document containing only those +longdesc environments. The package was previously part of the seminar +longdesc bundle for typesetting presentations. +containersize 2352 +containerchecksum ad19a29caaaa4da90c740a18f3b3bf63666303f8047210197e17c270082d483e33085c9249d7143ba65f343f6bf3b52c6974021f954831c5196708824e21b843 +doccontainersize 81512 +doccontainerchecksum d3b4d70cd88923e25595acf726afa6eea2efff4550455ed2eff48411621f212059ffedc3a82e4ac15359420a00c69b55e3625d11f8e8d4111eeb87cc3a6e8cfe +docfiles size=30 + RELOC/doc/generic/xcomment/Changes + RELOC/doc/generic/xcomment/Makefile + RELOC/doc/generic/xcomment/README details="Readme" + RELOC/doc/generic/xcomment/xcomment-doc.pdf details="Package documentation" + RELOC/doc/generic/xcomment/xcomment-doc.tex +runfiles size=3 + RELOC/tex/generic/xcomment/xcomment.sty + RELOC/tex/generic/xcomment/xcomment.tex +catalogue-ctan /macros/generic/xcomment +catalogue-license lppl +catalogue-topics cond-comp +catalogue-version 1.3 + +name xcookybooky +category Package +revision 36435 +shortdesc Typeset (potentially long) recipes +relocated 1 +longdesc The package enables the user to typeset recipes, which could be +longdesc greater than one page. Above the recipe text two (optional) +longdesc pictures can be displayed. Other features are recipe name, +longdesc energy content, portions, preparation and baking time, baking +longdesc temperatures, recipe source and of course preparation steps and +longdesc required ingredients. At the bottom you may insert an optional +longdesc hint. The package depends on the Emerald fonts. +containersize 6352 +containerchecksum 3f74d540c4da5ab4f6f1b6c78f3a35172fb4f2d94b7c720fe3fd1d31e1c53db6659371da6d48adf755675af831d252178b96ba57a1f0c0319459f4a564897b49 +doccontainersize 863388 +doccontainerchecksum 29d1620c7ea3d13e4fdf97454bf824fab8de6acd96661554a1f37717e4fa0dcf6df20cec580b6b25101b75d2d22080962713d05347eba4974c5cbdbca6129ec6 +docfiles size=320 + RELOC/doc/latex/xcookybooky/README details="Readme" + RELOC/doc/latex/xcookybooky/example/example.pdf + RELOC/doc/latex/xcookybooky/example/example.tex + RELOC/doc/latex/xcookybooky/example/pic/background.pdf + RELOC/doc/latex/xcookybooky/example/pic/glass.jpg + RELOC/doc/latex/xcookybooky/example/pic/ingredients.jpg + RELOC/doc/latex/xcookybooky/example/tex/Complete_Recipe.tex + RELOC/doc/latex/xcookybooky/example/tex/Mousse_au_Chocolat.tex + RELOC/doc/latex/xcookybooky/xcookybooky.pdf details="Package documentation" +srccontainersize 14844 +srccontainerchecksum 0a0d8eb171bc551831f65511f74b9db402587b6bdb47dfcd3d9e31403eaf530e954c5ce0510f9fa4e850b3036bc6807339aefca9567b9fff7152c72c8332d640 +srcfiles size=17 + RELOC/source/latex/xcookybooky/xcookybooky.dtx + RELOC/source/latex/xcookybooky/xcookybooky.ins +runfiles size=8 + RELOC/tex/latex/xcookybooky/xcookybooky.cfg + RELOC/tex/latex/xcookybooky/xcookybooky.sty +catalogue-also cookybooky +catalogue-contact-repository http://svenharder.github.io/xcookybooky/ +catalogue-ctan /macros/latex/contrib/xcookybooky +catalogue-license lppl1.3 +catalogue-topics cooking +catalogue-version 1.5 + +name xcpdftips +category Package +revision 50449 +shortdesc Natbib citations with PDF tooltips +relocated 1 +longdesc This LaTeX package uses pdfcomment and bibentry to surround +longdesc natbib citations with PDF tooltips. +containersize 3168 +containerchecksum ccf564a59d658a4f6747a3df866d0b0a0d6dae489215b5784fbc0619a2f3f222ef348c5fb96faf192d9db7e5c63d44c5f94549cb809e89dabd06bb43d745df1d +doccontainersize 142360 +doccontainerchecksum 5d483b7bce276815fbb3602d4082ff9c939ae414cb2e2b03f75307c71b2b19a6adba23f609836c78859df5823f4aaad175e01b9f223326176b62a4ac9060cf02 +docfiles size=38 + RELOC/doc/latex/xcpdftips/README.md details="Readme" + RELOC/doc/latex/xcpdftips/xcpdftips.pdf details="Package documentation" +srccontainersize 7060 +srccontainerchecksum d386d33f5437cd31bb8dae0ea51a22fc90353f7866544694e3c41bd2f9cb70fd734a92bd50864a0b20443bfe40f6f54cc404e503da395e928ae69fead87db771 +srcfiles size=9 + RELOC/source/latex/xcpdftips/xcpdftips.drv + RELOC/source/latex/xcpdftips/xcpdftips.dtx + RELOC/source/latex/xcpdftips/xcpdftips.ins +runfiles size=2 + RELOC/tex/latex/xcpdftips/xcpdftips.sty +catalogue-contact-repository https://github.com/mekeetsa/xcpdftips +catalogue-contact-support https://github.com/mekeetsa/xcpdftips/issues +catalogue-ctan /macros/latex/contrib/xcpdftips +catalogue-license gpl3+ +catalogue-topics bibtex-supp cite-supp pdf-feat +catalogue-version 1.1 + +name xdoc +category Package +revision 15878 +shortdesc Extending the LaTeX doc system +relocated 1 +longdesc Xdoc is a project to rewrite the implementation of the LaTeX +longdesc doc package (in a broader sense) to make its features more +longdesc general and flexible. For example, where doc only provides +longdesc commands for documenting macros and environments, xdoc also +longdesc provides commands for similarly documenting package options and +longdesc switches. This is furthermore done in such a way that it is +longdesc very easy to add more such commands for documenting things, +longdesc such as e.g., templates (an important concept in the future +longdesc LaTeX3) and program components for other languages (functions, +longdesc classes, procedures, etc.). A side effect is that many minor +longdesc bugs in doc are fixed. The design aims to take advantage of +longdesc many still experimental features of future versions of LaTeX, +longdesc but since these are neither reasonably stable nor widely +longdesc available, the configuration interfaces and package author +longdesc commands of xdoc are likely to change. To still provide a +longdesc stable interface for other packages to build upon, the actual +longdesc package names include a "major version number" of sorts. The +longdesc drop-in replacement package for standard doc is xdoc2; it +longdesc requires nothing outside standard LaTeX2e. The +longdesc docindex/docidx2e package changes the index and list of changes +longdesc typesetting so that none of the formatting has to be controlled +longdesc via the index style file. The docindex package provides control +longdesc of formatting via templates (nice interface, but requires +longdesc several experimental packages), whereas the docidx2e package +longdesc has traditional raw macro interfaces and works with standard +longdesc LaTeX2e. +containersize 11976 +containerchecksum 8cee132082c70214560ca8377766f45e6f15da2af18e0e9d68205d094b2a6af4d50150bfa6d145f78d92bb95c8657ad9fab1cbb8e76b75859f44ac1039464cca +doccontainersize 836680 +doccontainerchecksum cb7fc71f84f88a1035e91500e9b7ccf0c425733227e4106c7bd87eb30b25c8fdae6bce046f22e5a07ec919ee0527f264dcd826b7e6468eaf21a791e7dc0e7ab8 +docfiles size=267 + RELOC/doc/latex/xdoc/README details="Package Readme" + RELOC/doc/latex/xdoc/docindex.pdf details="docindex documentation" + RELOC/doc/latex/xdoc/xdoc2.pdf details="xdoc2 documentation" + RELOC/doc/latex/xdoc/xdocdemo.pdf details="Demonstration of usage" + RELOC/doc/latex/xdoc/xdocdemo.tex +srccontainersize 70084 +srccontainerchecksum d82f9fe7cf0a2faaf0cc6a5f1f1d5916bc3eecef63e6e983f62c4b17d36b17f31251af6e704811af2094cc43fada5597b0ceb432a4b38c4b066ab041d7a5c578 +srcfiles size=77 + RELOC/source/latex/xdoc/docindex.dtx + RELOC/source/latex/xdoc/docindex.ins + RELOC/source/latex/xdoc/xdoc2.dtx + RELOC/source/latex/xdoc/xdoc2.ins +runfiles size=17 + RELOC/makeindex/xdoc/docindex.ist + RELOC/tex/latex/xdoc/docidx2e.sty + RELOC/tex/latex/xdoc/docindex.sty + RELOC/tex/latex/xdoc/xdoc2.sty +catalogue-ctan /macros/latex/contrib/xdoc +catalogue-license lppl +catalogue-topics doc-supp +catalogue-version prot2.5 + +name xduthesis +category Package +revision 39694 +shortdesc XeLaTeX template for writing Xidian University Thesis +relocated 1 +longdesc This is a XeLaTeX template for writing theses to apply academic +longdesc degrees in Xidian University. The template is designed +longdesc according to the official requirements on typesetting theses. +longdesc The template currently supports all levels of degrees from +longdesc bachelor to doctor, including both academic master and +longdesc professional master. But it is not guaranteed that you will +longdesc pass the typesetting check and obtain your degree by using this +longdesc template. +containersize 113404 +containerchecksum 4a92d52c7ca60232849b02bd7d688f12230f858bb7559287610a4d33699158fcb3d5270a22b3abc99d89a684b81e2124602486c16f22fb434e98b54f715f592a +doccontainersize 693300 +doccontainerchecksum 44ec843c2a6b7827c783c076e8f02dfb697f1bf021b54be238049068f466d9969d2e0bb9efdba37623b44a564985af4256eed2b82ef35d8f7ec9798ce84abc0d +docfiles size=195 + RELOC/doc/latex/xduthesis/README.md details="Readme" + RELOC/doc/latex/xduthesis/examples/abstract.tex + RELOC/doc/latex/xduthesis/examples/achievements.tex + RELOC/doc/latex/xduthesis/examples/acknowledgments.tex + RELOC/doc/latex/xduthesis/examples/appendix01.tex + RELOC/doc/latex/xduthesis/examples/biography.tex + RELOC/doc/latex/xduthesis/examples/ch01-intro.tex + RELOC/doc/latex/xduthesis/examples/ch02-options.tex + RELOC/doc/latex/xduthesis/examples/ch03-frontmatter.tex + RELOC/doc/latex/xduthesis/examples/ch04-mainmatter.tex + RELOC/doc/latex/xduthesis/examples/ch05-backmatter.tex + RELOC/doc/latex/xduthesis/examples/ch06-bibliography.tex + RELOC/doc/latex/xduthesis/examples/ch07-conclusions.tex + RELOC/doc/latex/xduthesis/examples/photo.png + RELOC/doc/latex/xduthesis/examples/refs.bib + RELOC/doc/latex/xduthesis/examples/thesis-bachelor.tex + RELOC/doc/latex/xduthesis/examples/thesis-doctor.pdf + RELOC/doc/latex/xduthesis/examples/thesis-doctor.tex + RELOC/doc/latex/xduthesis/examples/thesis-master.tex + RELOC/doc/latex/xduthesis/examples/thesis-masterpro.tex + RELOC/doc/latex/xduthesis/xduthesis.pdf details="Package documentation" +srccontainersize 15976 +srccontainerchecksum 12a273267d7e4e82256f4aa76db77673eea0d1816691a179b8ac2af8732ef958a7142a95cd7ba8ee83cdbe2166975dfa12d3fff14607cb1fd27f48c989a5a7ba +srcfiles size=15 + RELOC/source/latex/xduthesis/xduthesis.dtx + RELOC/source/latex/xduthesis/xduthesis.ins +runfiles size=257 + RELOC/tex/latex/xduthesis/xdubadge-gr.eps + RELOC/tex/latex/xduthesis/xdubadge.eps + RELOC/tex/latex/xduthesis/xdulogo.eps + RELOC/tex/latex/xduthesis/xduthesis.cfg + RELOC/tex/latex/xduthesis/xduthesis.cls +catalogue-ctan /macros/latex/contrib/xduthesis +catalogue-license lppl1.3 +catalogue-topics proposal +catalogue-version 1.00 + +name xdvi +category TLCore +revision 54338 +shortdesc A DVI previewer for the X Window System +longdesc The canonical previewer for use on Unix and other X-windows +longdesc based systems. The distribution has been integrated with that +longdesc of xdvik (no longer separately available), so that it will +longdesc build with web2c "out of the box". It is included in TeX Live. +depend xdvi.ARCH +containersize 6816 +containerchecksum bd226386f91b2d5d19052f353a67410301f8cd08a689125907265716f8e7dbceed40997057d35033157e3477a48e823c2f224324108539f5514ec7387696ad1e +doccontainersize 171592 +doccontainerchecksum cb003d70f0e5b25be95dd0e29b7d5b50f16ffa1844350e71d780f6cddbebe6dfe3dbb79b43ae994e659d6ba1f28ddf5034d867308723606d5baa9f4e91f894c0 +docfiles size=70 + texmf-dist/doc/man/man1/xdvi.1 + texmf-dist/doc/man/man1/xdvi.man1.pdf +runfiles size=9 + texmf-dist/dvips/xdvi/config.xdvi + texmf-dist/xdvi/XDvi + texmf-dist/xdvi/pixmap/toolbar.xpm + texmf-dist/xdvi/pixmap/toolbar2.xpm +catalogue-alias xdvik +catalogue-contact-repository http://xdvi.sourceforge.net/ +catalogue-license other-free +catalogue-topics previewer + +name xdvi.aarch64-linux +category TLCore +revision 58389 +shortdesc aarch64-linux files of xdvi +containersize 523476 +containerchecksum 52a0dd2005f98ea192f157b4874f7e895299b006199ddea4995eadd24de6abcbcab0e29e346bc17aec1856ffdebd9647fd886c93c394dd01553bd2ba3162fdba +binfiles arch=aarch64-linux size=347 + bin/aarch64-linux/xdvi + bin/aarch64-linux/xdvi-xaw + +name xdvi.amd64-freebsd +category TLCore +revision 58388 +shortdesc amd64-freebsd files of xdvi +containersize 557804 +containerchecksum 41465a63c37a09352e086e10d39ae88da66ea64090ae2da7ac59ad4daa0045d28d093137b9f4fceb5c6c99d15a5d646ebf81e9766e9b78eb9f8b713db412fdfc +binfiles arch=amd64-freebsd size=337 + bin/amd64-freebsd/xdvi + bin/amd64-freebsd/xdvi-xaw + +name xdvi.amd64-netbsd +category TLCore +revision 58386 +shortdesc amd64-netbsd files of xdvi +containersize 486704 +containerchecksum 67c2368d2e6e1d0419bedef4e3973bc9c89bd51e39306ce659874b3d8bd216c5e1fca8eb5d25d833a77cfce08d6f25d7d23cc329c5d222015becd019eb71ac78 +binfiles arch=amd64-netbsd size=415 + bin/amd64-netbsd/xdvi + bin/amd64-netbsd/xdvi-xaw + +name xdvi.armhf-linux +category TLCore +revision 58428 +shortdesc armhf-linux files of xdvi +containersize 444148 +containerchecksum ff2b34e6a5cead4a35e203dd8342d1d2548150b0620acffbdf4473bd25aca0e8ed3e3b31b2df73def5787b84e1930ee8fa3443556515a7ee2eb92848c624c8ea +binfiles arch=armhf-linux size=266 + bin/armhf-linux/xdvi + bin/armhf-linux/xdvi-xaw + +name xdvi.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of xdvi +containersize 488756 +containerchecksum cdd31c080c16769347404d84e6b51ece6e59e085e38abb9a8bfdf4c1838a95235cd2c5b1a9f67cf11e44e024a57482ec7022ae34ec2a290d2e3df80bb7971880 +binfiles arch=i386-cygwin size=306 + bin/i386-cygwin/xdvi + bin/i386-cygwin/xdvi-xaw.exe + +name xdvi.i386-freebsd +category TLCore +revision 58388 +shortdesc i386-freebsd files of xdvi +containersize 497312 +containerchecksum df5c808bd99f610d74a9ca6357bdd0f1f5d24e3f17680928010d1128e8f064e2fb6d9559a67154085365eea2ffd8e04e464eec026b4fa3af0b1d37419b1e8cf9 +binfiles arch=i386-freebsd size=296 + bin/i386-freebsd/xdvi + bin/i386-freebsd/xdvi-xaw + +name xdvi.i386-linux +category TLCore +revision 58378 +shortdesc i386-linux files of xdvi +containersize 546188 +containerchecksum 7c3b247c868a05ec503f818ce7554c516bfe64dff3f4fe75b8e891020db98e2c1b04f2521c795c23abffddca907bb436b0e4e6ac50678f4fbd265b97eff29116 +binfiles arch=i386-linux size=336 + bin/i386-linux/xdvi + bin/i386-linux/xdvi-xaw + +name xdvi.i386-netbsd +category TLCore +revision 58386 +shortdesc i386-netbsd files of xdvi +containersize 443772 +containerchecksum 5aeb848afa03c398f839204883d8fc59294ac263feabfe85a6ebe963b77b4ef1788380c7e63b3a7c6291b1e7e0823675397b40d2b652afe56d041bb8d9f2bf11 +binfiles arch=i386-netbsd size=368 + bin/i386-netbsd/xdvi + bin/i386-netbsd/xdvi-xaw + +name xdvi.i386-solaris +category TLCore +revision 58388 +shortdesc i386-solaris files of xdvi +containersize 492124 +containerchecksum d786152aa4ba7e647e52f50526d7e5789b24e9f9b33c66cded02648a47807493675788e1e0bf797c74471d82caa73c990e38bd470ce612dcd597d2f3b58ef5ac +binfiles arch=i386-solaris size=278 + bin/i386-solaris/xdvi + bin/i386-solaris/xdvi-xaw + +name xdvi.universal-darwin +category TLCore +revision 58418 +shortdesc universal-darwin files of xdvi +containersize 970292 +containerchecksum add65f162c6f57990f4d3006cad2db9bef585a6543904ee42c902d24b078c3bbd52cc60c1fca248eb81ebd29b92ac191eb847cb622871489444fbc1847f7d53b +binfiles arch=universal-darwin size=643 + bin/universal-darwin/xdvi + bin/universal-darwin/xdvi-xaw + +name xdvi.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of xdvi +containersize 510800 +containerchecksum a0f34de53f40d0863df5adb965ffaffcd07cf189fde4159563944d8601613f9a13d86328882c33c1c9e3a798d9ee8a7805136aaaf383a1a64fe4635c3ec7d980 +binfiles arch=x86_64-cygwin size=304 + bin/x86_64-cygwin/xdvi + bin/x86_64-cygwin/xdvi-xaw.exe + +name xdvi.x86_64-linux +category TLCore +revision 58378 +shortdesc x86_64-linux files of xdvi +containersize 541932 +containerchecksum 2218dd09b62b54ece35bd6ad5fe67b726c557997cd76ee74f43b398548ad03d6f78dd80ddd4a9c383fe7d5311b828ef7f7cbb8369239a9c64e3c35dd28bfed87 +binfiles arch=x86_64-linux size=320 + bin/x86_64-linux/xdvi + bin/x86_64-linux/xdvi-xaw + +name xdvi.x86_64-linuxmusl +category TLCore +revision 58378 +shortdesc x86_64-linuxmusl files of xdvi +containersize 574928 +containerchecksum b2e57cd38199bead0ee792868144bdfb3186f7c5519c78b1a216c1dac27d177dd21a5488935bad8567c42c7e3e5696e228137a1a28edc11cee35ca861a875c30 +binfiles arch=x86_64-linuxmusl size=362 + bin/x86_64-linuxmusl/xdvi + bin/x86_64-linuxmusl/xdvi-xaw + +name xdvi.x86_64-solaris +category TLCore +revision 58388 +shortdesc x86_64-solaris files of xdvi +containersize 548760 +containerchecksum 39fd8daf54e606c428d27f8553b98c9da82b656f4758e108726eaafc29d08a5a7f4b05f4a4fb7ce1c780c0c54569e15abe0989a101a4993d9966105f9effad45 +binfiles arch=x86_64-solaris size=327 + bin/x86_64-solaris/xdvi + bin/x86_64-solaris/xdvi-xaw + +name xebaposter +category Package +revision 42046 +shortdesc Create beautiful scientific Persian/Latin posters using TikZ +relocated 1 +longdesc This package is designed for making beautiful scientific +longdesc Persian/Latin posters. It is a fork of baposter by Brian Amberg +longdesc and Reinhold Kainhofer available at +longdesc http://www.brian-amberg.de/uni/poster/. baposter's users should +longdesc be able to compile their poster using xebaposter (instead of +longdesc baposter) without any problem. +containersize 12268 +containerchecksum cc264905da875732a3bad46daa31a1f5595e3676ff4d5570554caea40dfd383eac8e9a05121e2211294749770e50fb4d80ca6e735421eb7ca295a10bc666ec3e +doccontainersize 318872 +doccontainerchecksum 9bf0315e6fa502e0de606bb16c6575997314619f10a8aba312d8062be5f1edf4ba037eff7c23948ba7800bc2abf2fa300b8609287558a0ad6c59d63095b20045 +docfiles size=163 + RELOC/doc/latex/xebaposter/README details="Readme" + RELOC/doc/latex/xebaposter/images/docs-boxshape.pdf + RELOC/doc/latex/xebaposter/images/docs-headerborder.pdf + RELOC/doc/latex/xebaposter/images/docs-headershape.pdf + RELOC/doc/latex/xebaposter/images/docs-shade.pdf + RELOC/doc/latex/xebaposter/images/fig3.pdf + RELOC/doc/latex/xebaposter/images/fig4.pdf + RELOC/doc/latex/xebaposter/images/fig5.pdf + RELOC/doc/latex/xebaposter/images/fig6.pdf + RELOC/doc/latex/xebaposter/images/logo.png + RELOC/doc/latex/xebaposter/images/shariflogo.png + RELOC/doc/latex/xebaposter/poster-fa.pdf + RELOC/doc/latex/xebaposter/poster-fa.tex + RELOC/doc/latex/xebaposter/xebaposter-doc.pdf details="Package documentation" + RELOC/doc/latex/xebaposter/xebaposter-doc.tex +runfiles size=14 + RELOC/tex/latex/xebaposter/xebaposter.cls +catalogue-ctan /graphics/pgf/contrib/xebaposter +catalogue-license lppl1.3 +catalogue-topics poster class pgf-tikz +catalogue-version 2.51 + +name xechangebar +category Package +revision 54080 +shortdesc An extension of package changebar that can be used with XeLaTeX +relocated 1 +longdesc The package extends package changebar so it can be used with +longdesc XeLaTeX. It introduces the new option xetex for use with +longdesc XeLaTeX. Everything else remains the same and users should +longdesc consult the original documentation for usage information. +containersize 6868 +containerchecksum 833f0b1cea32c0bb345d1aad5360613ee36baf17a35e13d20a4bcc75edc77b3a7c48c4406ddadd670890cb93dc0d03cf91462994271f351ebf2bc221bfbae5a3 +doccontainersize 2412 +doccontainerchecksum 6d2c385b3b826b8b97cb725ffd3e7479ec3ddd2d2bbd8c772fb0b1faa9d0edb758871003ec379d8ec349fc4e3f7de2bf3130cc0e5d9e356ad472232d16acb546 +docfiles size=4 + RELOC/doc/xelatex/xechangebar/README details="Readme" + RELOC/doc/xelatex/xechangebar/cbtest1.tex +runfiles size=9 + RELOC/tex/xelatex/xechangebar/xechangebar.sty +catalogue-also changebar +catalogue-ctan /macros/xetex/latex/xechangebar +catalogue-license lppl1.3 +catalogue-topics editorial +catalogue-version 1.0 + +name xecjk +category Package +revision 56711 +shortdesc Support for CJK documents in XeLaTeX +relocated 1 +longdesc A LaTeX package for typesetting CJK documents in the way users +longdesc have become used to, in the CJK package. The package requires a +longdesc current version of xtemplate (and hence of the current LaTeX3 +longdesc development environment). +containersize 220088 +containerchecksum 6a318c27555cd58be7f3f8893ef4345f37b619cab2088a0ce5627000eb8375724a1e3e8df741cff2558143ad58a3d336d67aac4ff2dd8ca226b223ec103f9d3d +doccontainersize 1542972 +doccontainerchecksum 72446201ddef073b1b37686ecd0ff7569db34d3240b549b5e9ac2c5e6fbcd7e64a070afdc6ee40e83a4d95172cce37da092e463e4c55e5f293b92c39cd4817a3 +docfiles size=447 + RELOC/doc/xelatex/xecjk/README.md details="Readme" + RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKecglue.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKfntef.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-CM.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-autofake.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-checksingle.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-fallback.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-listings.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-mathblock.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-punctstyle.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-subCJKblock.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-verbatim.tex + RELOC/doc/xelatex/xecjk/xeCJK.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/xelatex/xecjk/xunicode-combine-marks.tex + RELOC/doc/xelatex/xecjk/xunicode-commands.tex + RELOC/doc/xelatex/xecjk/xunicode-symbols.pdf + RELOC/doc/xelatex/xecjk/xunicode-symbols.tex +srccontainersize 89092 +srccontainerchecksum 32c1905ffe53dca84509cf51fd4f2b2eff1ca1d03e97bc1f03009d236e476f8d8573ef3267e6466eb63e18b70207ba62558afcd1a64d9a1af79a7a6cfe5c050f +srcfiles size=128 + RELOC/source/xelatex/xecjk/xeCJK.dtx + RELOC/source/xelatex/xecjk/xeCJK.ins +runfiles size=179 + RELOC/fonts/misc/xetex/fontmapping/xecjk/full-stop.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/full-stop.tec + RELOC/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.tec + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-simp.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-simp.tec + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-trad.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-trad.tec + RELOC/tex/xelatex/xecjk/xeCJK-listings.sty + RELOC/tex/xelatex/xecjk/xeCJK.cfg + RELOC/tex/xelatex/xecjk/xeCJK.sty + RELOC/tex/xelatex/xecjk/xeCJKfntef.sty + RELOC/tex/xelatex/xecjk/xunicode-addon.sty + RELOC/tex/xelatex/xecjk/xunicode-extra.def +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +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-license lppl1.3c +catalogue-topics chinese japanese korean xetex expl3 +catalogue-version 3.8.6 + +name xecolor +category Package +revision 29660 +shortdesc Support for color in XeLaTeX +relocated 1 +longdesc This is a simple package which defines about 140 different +longdesc colours using XeTeX's colour feature. The colours can be used +longdesc in bidirectional texts without any problem. +containersize 2300 +containerchecksum 0ab23e651b36f06256fab5acb14effc93296948aecf7c7f11c81f4db89a58bfd8e038dd857a1da3a86ab573cf0ffb1d1bc188789e0d493ab0d0c1c9d96d593f3 +doccontainersize 1092 +doccontainerchecksum 9441eff384f57e8714cc543ade380ecc321e6c0e7dd0ae69c71337458e2607a43f793b490bfa6752c1c70bdb17be92488b89ff848ab9a3a1700907c15ed857c2 +docfiles size=1 + RELOC/doc/xelatex/xecolor/README details="Readme" +runfiles size=2 + RELOC/tex/xelatex/xecolor/xecolor.sty +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-license lppl1.3 +catalogue-topics colour xetex +catalogue-version 0.1 + +name xecyr +category Package +revision 54308 +shortdesc Using Cyrillic languages in XeTeX +relocated 1 +longdesc Helper tools for using Cyrillic languages with XeLaTeX and +longdesc babel. +containersize 3564 +containerchecksum 0429aa515115ef69811069b08567c97ce40a8be68ebe72f26b8e94947abd86394204b21bbf25ae44c616a806878fe9900f5a639bb8707106836103ec06663454 +doccontainersize 654252 +doccontainerchecksum 555ef35f9e50450a796c24b87295eeac319d087a61e4fc7cedafbc398cb9a5c0add8b93318b8afadd82bbd2ca90dac9ade02dfbf286ba825c1d697b58110fe5e +docfiles size=240 + RELOC/doc/xelatex/xecyr/NEWS + RELOC/doc/xelatex/xecyr/README details="Readme" + RELOC/doc/xelatex/xecyr/combined_hyphenation/README details="Readme" + RELOC/doc/xelatex/xecyr/combined_hyphenation/combined_hyphenation_ruen-x.pdf + RELOC/doc/xelatex/xecyr/combined_hyphenation/combined_hyphenation_ruen-x.tex + RELOC/doc/xelatex/xecyr/combined_hyphenation/combined_hyphenation_ruen.pdf + RELOC/doc/xelatex/xecyr/combined_hyphenation/combined_hyphenation_ruen.tex + RELOC/doc/xelatex/xecyr/combined_hyphenation/examples.zip + RELOC/doc/xelatex/xecyr/grafika_v_tex.pdf + RELOC/doc/xelatex/xecyr/grafika_v_tex.tex + RELOC/doc/xelatex/xecyr/howto-tex-ru-x.pdf + RELOC/doc/xelatex/xecyr/howto-tex-ru-x.tex + RELOC/doc/xelatex/xecyr/inputs/1251.tex + RELOC/doc/xelatex/xecyr/inputs/866.tex + RELOC/doc/xelatex/xecyr/inputs/iso.tex + RELOC/doc/xelatex/xecyr/inputs/koi8-r.tex + RELOC/doc/xelatex/xecyr/listings-utf8-ex.pdf + RELOC/doc/xelatex/xecyr/listings-utf8-ex.tex + RELOC/doc/xelatex/xecyr/old/1251.tex + RELOC/doc/xelatex/xecyr/old/866.tex + RELOC/doc/xelatex/xecyr/old/iso.tex + RELOC/doc/xelatex/xecyr/old/koi8-r.tex + RELOC/doc/xelatex/xecyr/old/listings-utf8-ex.pdf + RELOC/doc/xelatex/xecyr/old/listings-utf8-ex.tex + RELOC/doc/xelatex/xecyr/old/pict2e-ex.pdf + RELOC/doc/xelatex/xecyr/old/pict2e-ex.tex + RELOC/doc/xelatex/xecyr/old/rubibtex-ex-x.pdf + RELOC/doc/xelatex/xecyr/old/rubibtex-ex-x.tex + RELOC/doc/xelatex/xecyr/old/rubibtex-ex.bib + RELOC/doc/xelatex/xecyr/old/rumakeindex-ex-x.pdf + RELOC/doc/xelatex/xecyr/old/rumakeindex-ex-x.tex + RELOC/doc/xelatex/xecyr/old/xecyr-doc-ru.pdf details="Package documentation (Russian)" language="ru" + RELOC/doc/xelatex/xecyr/old/xecyr-doc-ru.tex + RELOC/doc/xelatex/xecyr/old/xecyr-ex1-ru-x.pdf + RELOC/doc/xelatex/xecyr/old/xecyr-ex1-ru-x.tex + RELOC/doc/xelatex/xecyr/old/xecyr-ex2-ru-x.pdf + RELOC/doc/xelatex/xecyr/old/xecyr-ex2-ru-x.tex + RELOC/doc/xelatex/xecyr/old/xecyr-ex3-ru-x.pdf + RELOC/doc/xelatex/xecyr/old/xecyr-ex3-ru-x.tex + RELOC/doc/xelatex/xecyr/old/xecyr-ex4-ru-x.pdf + RELOC/doc/xelatex/xecyr/old/xecyr-ex4-ru-x.tex + RELOC/doc/xelatex/xecyr/old/xecyr-ex5-ru-x.pdf + RELOC/doc/xelatex/xecyr/old/xecyr-ex5-ru-x.tex + RELOC/doc/xelatex/xecyr/old/xecyr-ex6-ru-x.pdf + RELOC/doc/xelatex/xecyr/old/xecyr-ex6-ru-x.tex + RELOC/doc/xelatex/xecyr/old/xecyr-ex7-ru-x.pdf + RELOC/doc/xelatex/xecyr/old/xecyr-ex7-ru-x.tex + RELOC/doc/xelatex/xecyr/pict2e-ex.pdf + RELOC/doc/xelatex/xecyr/pict2e-ex.tex + RELOC/doc/xelatex/xecyr/rubibtex-ex-x.pdf + RELOC/doc/xelatex/xecyr/rubibtex-ex-x.sh + RELOC/doc/xelatex/xecyr/rubibtex-ex-x.tex + RELOC/doc/xelatex/xecyr/rubibtex-ex.bib + RELOC/doc/xelatex/xecyr/rumakeindex-ex-x.pdf + RELOC/doc/xelatex/xecyr/rumakeindex-ex-x.tex + RELOC/doc/xelatex/xecyr/rumakeindex.sh + RELOC/doc/xelatex/xecyr/sample2e-ru-x.pdf + RELOC/doc/xelatex/xecyr/sample2e-ru-x.tex + RELOC/doc/xelatex/xecyr/xecyr-doc-ru.pdf details="Package documentation (Russian)" language="ru" + RELOC/doc/xelatex/xecyr/xecyr-doc-ru.tex + RELOC/doc/xelatex/xecyr/xecyr-ex3-ru-x.pdf + RELOC/doc/xelatex/xecyr/xecyr-ex3-ru-x.tex + RELOC/doc/xelatex/xecyr/xecyr-ex4-ru-x.pdf + RELOC/doc/xelatex/xecyr/xecyr-ex4-ru-x.tex + RELOC/doc/xelatex/xecyr/xecyr-ex5-ru-x.pdf + RELOC/doc/xelatex/xecyr/xecyr-ex5-ru-x.tex + RELOC/doc/xelatex/xecyr/xecyr-ex6-ru-x.pdf + RELOC/doc/xelatex/xecyr/xecyr-ex6-ru-x.tex + RELOC/doc/xelatex/xecyr/xecyr-ex7-ru-x.pdf + RELOC/doc/xelatex/xecyr/xecyr-ex7-ru-x.tex +runfiles size=4 + RELOC/tex/xelatex/xecyr/xecyr.sty +catalogue-ctan /macros/xetex/latex/xecyr +catalogue-license lppl1.3 +catalogue-topics cyrillic xetex +catalogue-version 1.2 + +name xecyrmongolian +category Package +revision 53160 +shortdesc Basic support for the typesetting of Cyrillic Mongolian documents using (Xe|Lua)LaTeX +relocated 1 +longdesc The 'xecyrmongolian' package can be used to produce documents +longdesc in Cyrillic Mongolian using either XeLaTeX or LuaLaTeX. The +longdesc command \setlanguage can be used to load alternative +longdesc hyphenation patterns so to be able to create multilingual +longdesc documents. +containersize 2232 +containerchecksum 2faeeadc81ca7f6fba45b6b237fb604a6eb6e8888117f759f6d369ed354b20b35dd007eb11c017e4f0ebcfa99627f519b291eecd1b41505d7f4ecbfc23307784 +doccontainersize 61944 +doccontainerchecksum 11b9d4a92c6df44dfc629c7385b56463dcb13564e819cf1bde005e228040a9f675cfb5818ca9f5c5d59a3db7a0d42a5584d9a3a530d772ba2b4bf3145534bc0c +docfiles size=17 + RELOC/doc/latex/xecyrmongolian/README details="Readme" + RELOC/doc/latex/xecyrmongolian/xecyrmongolian.pdf details="Package documentation" +srccontainersize 4220 +srccontainerchecksum 57a31504636eb9ebe717b6eb9028d5ed0eacdc7b9d406ac3822539a9e40ed0718668a640d557677b1a48920b272f3374817d8182b9db04a8329d2ee20227d801 +srcfiles size=4 + RELOC/source/latex/xecyrmongolian/xecyrmongolian.dtx + RELOC/source/latex/xecyrmongolian/xecyrmongolian.ins +runfiles size=2 + RELOC/tex/latex/xecyrmongolian/xecyrmongolian.sty +catalogue-ctan /language/mongolian/xecyrmongolian +catalogue-license lppl1.3c +catalogue-topics luatex xetex mongolian cyrillic +catalogue-version 1.0 + +name xeindex +category Package +revision 35756 +shortdesc Automatic index generation for XeLaTeX +relocated 1 +longdesc The package is based on XeSearch, and will automatically index +longdesc words or phrases in an XeLaTeX document. Words are declared in +longdesc a list, and every occurrence then creates an index entry whose +longdesc content can be fully specified beforehand. +containersize 1660 +containerchecksum bc3f399973bd8be5b83ea6da2c39d80de8f39ac6cf2d82d689c81816cad334310081f44fb4e256e442fc47ed6640c2b8ebd185e431f0d0ddec5f75f7b535283f +doccontainersize 78928 +doccontainerchecksum c84682c8034c5e182bcbb2ac0411f4ba5d8065a5db1f008c6f9e7a01b94b3563c44c03fc4c1cf48b3b09d19ba93f22778d8840741737bf1a344cb0c8f66ceb49 +docfiles size=24 + RELOC/doc/xelatex/xeindex/README details="Readme" + RELOC/doc/xelatex/xeindex/xeindex.pdf details="Package documentation" + RELOC/doc/xelatex/xeindex/xeindex.tex +runfiles size=2 + RELOC/tex/xelatex/xeindex/xeindex.sty +catalogue-ctan /macros/xetex/latex/xeindex +catalogue-license lppl +catalogue-topics index xetex +catalogue-version 0.3 + +name xelatex-dev +category TLCore +revision 58842 +depend atbegshi +depend atveryend +depend babel +depend cm +depend everyshi +depend firstaid +depend hyphen-base +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-base-dev +depend latex-firstaid-dev +depend latex-fonts +depend lm +depend tex-ini-files +depend unicode-data +depend xelatex-dev.ARCH +depend xetex +execute AddFormat name=xelatex-dev engine=xetex patterns=language.dat options="-etex xelatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,lm +containersize 488 +containerchecksum 9b8998710f85dc6f685cf3b423f34b08d0945c90e5f94bca141e40248acc641d6a687d39e91cddaca12aa51475fd4120cc482650b7536662cf3d9f07d3409680 + +name xelatex-dev.aarch64-linux +category TLCore +revision 53999 +shortdesc aarch64-linux files of xelatex-dev +containersize 324 +containerchecksum 35683a8139b4b650091b60797c44e2ee8f94b9a3f7c8d7bd9f927d86f451f301d23dfc33228a6baa1cb9f6fc7558668bc6a3fddfca850d0082a084d406c11172 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/xelatex-dev + +name xelatex-dev.amd64-freebsd +category TLCore +revision 53999 +shortdesc amd64-freebsd files of xelatex-dev +containersize 328 +containerchecksum eca856b238c045c0bc9a5dc85805ef817d909c61cd75d10d0b7b0f713fba93be81513caa02f2d4bdcce28664fb2eb2c8bcc829679682686bd55f9d7124808dbe +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/xelatex-dev + +name xelatex-dev.amd64-netbsd +category TLCore +revision 53995 +shortdesc amd64-netbsd files of xelatex-dev +containersize 328 +containerchecksum cc5b65d3bf788b1ee035abf914559ccfacfd0e9dbe5bd0bb948fc452e0b292f7bbf0bd3719ebb410a92a1a668c1966482569f5fa84bcedc2c39b6fef934fbf31 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/xelatex-dev + +name xelatex-dev.armhf-linux +category TLCore +revision 54033 +shortdesc armhf-linux files of xelatex-dev +containersize 324 +containerchecksum 53b5b73257dc7ed821fd1054efa74f4c3c6121bcb13801fb0239925b99680d87016d9bc702831d34fbfc1e996c1497d8a954af13b89986865280978b1de13682 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/xelatex-dev + +name xelatex-dev.i386-cygwin +category TLCore +revision 54026 +shortdesc i386-cygwin files of xelatex-dev +containersize 328 +containerchecksum 8fa9d52e489dae89d68bf2ce5b253e489d579b43b9d9e6acf6c72889a1cfdd5430895edecd02540b8a3491786a89a21755fca075690bd03428e3dfe6742665d6 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/xelatex-dev + +name xelatex-dev.i386-freebsd +category TLCore +revision 53999 +shortdesc i386-freebsd files of xelatex-dev +containersize 324 +containerchecksum 10d202b2b90faa70b164b1ec4eb315a99939e5ddaa684ddccf113b9cc5d8f13c636cf466552a6101277738f3f0fab94e976149cc753b190969f224a736fd2efd +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/xelatex-dev + +name xelatex-dev.i386-linux +category TLCore +revision 53999 +shortdesc i386-linux files of xelatex-dev +containersize 324 +containerchecksum 135bacad30615623d175edf816c999ff1df46e4a88dad16c08c22d57d3a412a97719f813a867efd496c918d6d13ba1e256f884cf31ef5447d093acd4aff0de12 +binfiles arch=i386-linux size=1 + bin/i386-linux/xelatex-dev + +name xelatex-dev.i386-netbsd +category TLCore +revision 54104 +shortdesc i386-netbsd files of xelatex-dev +containersize 320 +containerchecksum 5f4d592fa78f22fca3df1e53c3159065c99a838bd5028d6fcf7a7f976f70c420da4f0ce4ba281aab3dc539af1ea8eec5c461421da4d2f1b252dae0dc3528bf71 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/xelatex-dev + +name xelatex-dev.i386-solaris +category TLCore +revision 53999 +shortdesc i386-solaris files of xelatex-dev +containersize 324 +containerchecksum abeaeb85845038e5acaba6a4331a25126437d36d0235818f9fa2fcaa3403b9c46f474e599d3d59e3968501a087ad441c0b76cd47b7fe6c5e20ae58fe5bea217f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/xelatex-dev + +name xelatex-dev.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of xelatex-dev +containersize 324 +containerchecksum 40e6e2cc52a419d04bf9ace34ee245ed6f42fb965c541a61a8b125ba13bb0675a04f22a880c7a02bd793d6c0475d2522f3fe2385d0bb31f1e0b8d8b4439debf9 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/xelatex-dev + +name xelatex-dev.win32 +category TLCore +revision 57883 +shortdesc win32 files of xelatex-dev +containersize 872 +containerchecksum 0157319cf3b10db32a12567c7501d9ca751558f29801b5b40b5085d2d9c4ce6ac85fc739132df269e762b8358987ab671952a2913403013475400e4379f7aacb +binfiles arch=win32 size=1 + bin/win32/xelatex-dev.exe + +name xelatex-dev.x86_64-cygwin +category TLCore +revision 54025 +shortdesc x86_64-cygwin files of xelatex-dev +containersize 324 +containerchecksum 027f3c73dcc75681eccab045b6945bb20905c8f3fafa1bd87608e39896c70ca6e892efd27fd779c88c063b28888951893b1c1df0239712a66895200fe52a56e5 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/xelatex-dev + +name xelatex-dev.x86_64-darwinlegacy +category TLCore +revision 53999 +shortdesc x86_64-darwinlegacy files of xelatex-dev +containersize 332 +containerchecksum c3af975be6fa21d24b3fe12e86dc2586d9b6a70b5eb1ab4f06c279e9cb84329057048272a58437d2311cfeb882b07ec6981cdb2e2cb2faeeb00286d06ffc46b4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/xelatex-dev + +name xelatex-dev.x86_64-linux +category TLCore +revision 53999 +shortdesc x86_64-linux files of xelatex-dev +containersize 324 +containerchecksum b1b8349611565ec3ffe9d3252da1f875d96f6c3fafad7de7cb0864b8483521cddb40dd631d08eb1eae888e14441bcc53c715c48926fb5bf1e6b84f599798342a +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/xelatex-dev + +name xelatex-dev.x86_64-linuxmusl +category TLCore +revision 53999 +shortdesc x86_64-linuxmusl files of xelatex-dev +containersize 328 +containerchecksum 53bcbbd3755f8004976764f2318c77458bde952e510c86c30cdb59cf70674e5ee02e52882e4db55dd43c6a465f8ae3d8b267b3e0d874db479fb357a6b56d5621 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/xelatex-dev + +name xelatex-dev.x86_64-solaris +category TLCore +revision 53999 +shortdesc x86_64-solaris files of xelatex-dev +containersize 324 +containerchecksum 1a8e347235f9664ecedeb43fc07226cc7a14ae3848094fe1ef5e47ec8c96095b21db20b46f3dabb17a684daf03e56a5d3ad9e4091521198b3630b82604da2bd4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/xelatex-dev + +name xellipsis +category Package +revision 47546 +shortdesc Extremely configurable ellipses with formats for various style manuals +relocated 1 +longdesc The xellipsis package provides a system for configuring +longdesc (almomst) every possible aspect of ellipses, including +longdesc preceding and proceeding characters; the character itself; +longdesc distances before and after each of these; and number of +longdesc characters. It comes with both a compatibility option for +longdesc standard LaTeX \ldots as well as preset package options for the +longdesc Chicago Manual of Style (Turabian); the Bluebook; and MLA +longdesc guidelines. +containersize 1716 +containerchecksum 3bff74473b4e7fdc7a349fd54e7703b77282381d9ff5eac233d5eb7cefe98f4abc5ea4fd309b8693bd7245471c565545e0ab437a5f8e5cc1b89368c914078d54 +doccontainersize 348152 +doccontainerchecksum 20d238f8281b93643af570c3dd09a9cdf9822af0da6a9d06b3b9d09196ac4c7fcff2efa3271f763caf42e54f9c72d2087c491cacc5ea4666cef1060c12ecab3a +docfiles size=91 + RELOC/doc/latex/xellipsis/CHANGES + RELOC/doc/latex/xellipsis/README details="Readme" + RELOC/doc/latex/xellipsis/lppl.txt + RELOC/doc/latex/xellipsis/xellipsis.pdf details="Package documentation" +srccontainersize 7092 +srccontainerchecksum ae58f20d0aaec99bb7e56a0a5b277210d5b9efb8e2677e9e22caa08ebe9576befe19e4b7409625aee00b30cdbe1d90ae61623e86d3fcd255df96dbb7c89291c3 +srcfiles size=6 + RELOC/source/latex/xellipsis/xellipsis.dtx + RELOC/source/latex/xellipsis/xellipsis.ins +runfiles size=1 + RELOC/tex/latex/xellipsis/xellipsis.sty +catalogue-ctan /macros/latex/contrib/xellipsis +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 2.0 + +name xepersian +category Package +revision 55194 +shortdesc Persian for LaTeX, using XeTeX +relocated 1 +longdesc This package provides a convenient interface for typesetting +longdesc Persian and English texts in LaTeX, using the XeTeX engine. +containersize 58564 +containerchecksum c5880fe199b5a239ecce8e4370396f4a981a886e8412cfad36032c4d2b7fe9fdc7d6818e14b53ca22be36909f19be7f363b40cd58644231ce015a627bd65a48f +doccontainersize 987500 +doccontainerchecksum 395bdd506072a2e234bb45f120ad748322f78657fa5c7013097af28688dfc7e58d2a7c865fd2c80592132fa46a02e35f65aa4bbfa752c5fb6b4b829a79a302cf +docfiles size=315 + RELOC/doc/xelatex/xepersian/README details="Readme" + RELOC/doc/xelatex/xepersian/dkun-0.3.py + RELOC/doc/xelatex/xepersian/dkun-0.4.py + RELOC/doc/xelatex/xepersian/ftxe-0.12.py + RELOC/doc/xelatex/xepersian/img/ireland.jpg + RELOC/doc/xelatex/xepersian/img/weather/clouds.jpg + RELOC/doc/xelatex/xepersian/img/weather/rain.jpg + RELOC/doc/xelatex/xepersian/img/weather/sun.jpg + RELOC/doc/xelatex/xepersian/magazine-sample.tex + RELOC/doc/xelatex/xepersian/test-correction.tex + RELOC/doc/xelatex/xepersian/test-empty-form.tex + RELOC/doc/xelatex/xepersian/test-question-only.tex + RELOC/doc/xelatex/xepersian/test-solution-form.tex + RELOC/doc/xelatex/xepersian/undk-0.6.py + RELOC/doc/xelatex/xepersian/unldk-0.2.py + RELOC/doc/xelatex/xepersian/xepersian-doc.pdf details="Package user documentation" + RELOC/doc/xelatex/xepersian/xepersian-logo.tex + RELOC/doc/xelatex/xepersian/xepersian.pdf details="Package source documentation" +srccontainersize 74624 +srccontainerchecksum 866a5fb8007fa600c50b343903a306d17e26d5616eb7fc14487ae93005cb7bce1209d382104021cd2b345ea02f2a4b058518454bf797600ad59e8f9254bee8af +srcfiles size=118 + RELOC/source/xelatex/xepersian/xepersian-doc-basics.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-boolean.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-captions.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-envcs.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-intro.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-pkgs.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-preamble.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-title.ltx + RELOC/source/xelatex/xepersian/xepersian-doc.ltx + RELOC/source/xelatex/xepersian/xepersian.dtx + RELOC/source/xelatex/xepersian/xepersian.ins +runfiles size=111 + RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.map + RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.tec + RELOC/tex/xelatex/xepersian/algorithm-xepersian.def + RELOC/tex/xelatex/xepersian/algorithmic-xepersian.def + RELOC/tex/xelatex/xepersian/amsart-xepersian.def + RELOC/tex/xelatex/xepersian/amsbook-xepersian.def + RELOC/tex/xelatex/xepersian/appendix-xepersian.def + RELOC/tex/xelatex/xepersian/article-xepersian.def + RELOC/tex/xelatex/xepersian/artikel1-xepersian.def + RELOC/tex/xelatex/xepersian/artikel2-xepersian.def + RELOC/tex/xelatex/xepersian/artikel3-xepersian.def + RELOC/tex/xelatex/xepersian/backref-xepersian.def + RELOC/tex/xelatex/xepersian/bidimoderncv-xepersian.def + RELOC/tex/xelatex/xepersian/bidituftesidenote-xepersian.def + RELOC/tex/xelatex/xepersian/boek-xepersian.def + RELOC/tex/xelatex/xepersian/boek3-xepersian.def + RELOC/tex/xelatex/xepersian/book-xepersian.def + RELOC/tex/xelatex/xepersian/bookest-xepersian.def + RELOC/tex/xelatex/xepersian/breqn-xepersian.def + RELOC/tex/xelatex/xepersian/color-localise-xepersian.def + RELOC/tex/xelatex/xepersian/enumerate-xepersian.def + RELOC/tex/xelatex/xepersian/enumitem-xepersian.def + RELOC/tex/xelatex/xepersian/extarticle-xepersian.def + RELOC/tex/xelatex/xepersian/extbook-xepersian.def + RELOC/tex/xelatex/xepersian/extrafootnotefeatures-xepersian.def + RELOC/tex/xelatex/xepersian/extreport-xepersian.def + RELOC/tex/xelatex/xepersian/fancyref-xepersian.def + RELOC/tex/xelatex/xepersian/footnote-xepersian.def + RELOC/tex/xelatex/xepersian/framed-xepersian.def + RELOC/tex/xelatex/xepersian/glossaries-xepersian.def + RELOC/tex/xelatex/xepersian/hyperref-xepersian.def + RELOC/tex/xelatex/xepersian/imsproc-xepersian.def + RELOC/tex/xelatex/xepersian/kashida-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-commands-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-environments-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-messages-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-misc-xepersian.def + RELOC/tex/xelatex/xepersian/listings-xepersian.def + RELOC/tex/xelatex/xepersian/loadingorder-xepersian.def + RELOC/tex/xelatex/xepersian/localise-xepersian.def + RELOC/tex/xelatex/xepersian/memoir-xepersian.def + RELOC/tex/xelatex/xepersian/minitoc-xepersian.def + RELOC/tex/xelatex/xepersian/natbib-xepersian.def + RELOC/tex/xelatex/xepersian/packages-localise-xepersian.def + RELOC/tex/xelatex/xepersian/rapport1-xepersian.def + RELOC/tex/xelatex/xepersian/rapport3-xepersian.def + RELOC/tex/xelatex/xepersian/refrep-xepersian.def + RELOC/tex/xelatex/xepersian/report-xepersian.def + RELOC/tex/xelatex/xepersian/scrartcl-xepersian.def + RELOC/tex/xelatex/xepersian/scrbook-xepersian.def + RELOC/tex/xelatex/xepersian/scrreprt-xepersian.def + RELOC/tex/xelatex/xepersian/soul-xepersian.def + RELOC/tex/xelatex/xepersian/tikz.code-xepersian.def + RELOC/tex/xelatex/xepersian/tkz-linknodes-xepersian.def + RELOC/tex/xelatex/xepersian/tocloft-xepersian.def + RELOC/tex/xelatex/xepersian/varioref-xepersian.def + RELOC/tex/xelatex/xepersian/xepersian-localise-commands-xepersian.def + RELOC/tex/xelatex/xepersian/xepersian-localise-environments-xepersian.def + RELOC/tex/xelatex/xepersian/xepersian-logo.pdf + RELOC/tex/xelatex/xepersian/xepersian-magazine.cls + RELOC/tex/xelatex/xepersian/xepersian-mathsdigitspec.sty + RELOC/tex/xelatex/xepersian/xepersian-multiplechoice.sty + RELOC/tex/xelatex/xepersian/xepersian-persiancal.sty + RELOC/tex/xelatex/xepersian/xepersian.sty +catalogue-contact-bugs https://github.com/persiantex/xepersian/issues +catalogue-contact-repository https://github.com/persiantex/xepersian +catalogue-ctan /macros/xetex/latex/xepersian +catalogue-license lppl1.3c +catalogue-topics persian xetex class +catalogue-version 23.1 + +name xepersian-hm +category Package +revision 56272 +shortdesc Fixes kashida feature in xepersian package +relocated 1 +longdesc The kashida feature in xepersian has problems with some fonts +longdesc such as the HM Series fonts and the XB Series fonts. This +longdesc package fixes these problems. The package requires xepersian +longdesc and l3keys2e. +containersize 5884 +containerchecksum 50a3e4a12055aa051f72c8d9d5f616a6901aba7c8dc6777610b48d7e3c993c6a49996cdd77ef01161ca9b7dc588cd9d86b1e1c4e65eab4e4a6d3a3697a990d92 +doccontainersize 1289764 +doccontainerchecksum 79b0a6e9876f697b8c7e08d5f5051975d29e9b7b3245b49a74ae5c76bfb23926fb4810fadcc029ee529f5f2752a49c2ce748277da0fde50f5078becff090b1d2 +docfiles size=585 + RELOC/doc/xelatex/xepersian-hm/INSTALL.txt + RELOC/doc/xelatex/xepersian-hm/README.txt details="Readme" + RELOC/doc/xelatex/xepersian-hm/doc-ligature-xep.pdf + RELOC/doc/xelatex/xepersian-hm/doc-ligature-xepersian-hm.pdf + RELOC/doc/xelatex/xepersian-hm/doc-samples-glyph.pdf + RELOC/doc/xelatex/xepersian-hm/doc-samples-hrule.pdf + RELOC/doc/xelatex/xepersian-hm/doc-samples-xep.pdf + RELOC/doc/xelatex/xepersian-hm/xepersian-XB.pdf details="Example of use (4)" language="fa" + RELOC/doc/xelatex/xepersian-hm/xepersian-XB.tex + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-doc.ltx + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-doc.pdf details="User documentation" + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-glyph.pdf details="Example of use (1)" language="fa" + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-glyph.tex + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-leaders-glyph.pdf details="Example of use (2)" language="fa" + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-leaders-glyph.tex + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-leaders-hrule.pdf details="Example of use (3)" language="fa" + RELOC/doc/xelatex/xepersian-hm/xepersian-hm-leaders-hrule.tex + RELOC/doc/xelatex/xepersian-hm/xepersian-hm.pdf details="Code documentation" +srccontainersize 9028 +srccontainerchecksum b43f74f1cbb9e2bdd06ca614f17fce49a18018cc3df9f88ec3a4732bd0b4bbf7068ac77a65d549806be4c07a2b7ab16c165fa7d5a9c9401a4dfb60426c5fde23 +srcfiles size=11 + RELOC/source/xelatex/xepersian-hm/xepersian-hm.dtx + RELOC/source/xelatex/xepersian-hm/xepersian-hm.ins +runfiles size=8 + RELOC/tex/xelatex/xepersian-hm/xepersian-hm-common-kashida.tex + RELOC/tex/xelatex/xepersian-hm/xepersian-hm-kashida.tex + RELOC/tex/xelatex/xepersian-hm/xepersian-hm.sty +catalogue-also texnegar +catalogue-contact-bugs https://bitbucket.org/dma8hm1334/xepersian-hm/issues +catalogue-contact-home https://dma8hm1334.bitbucket.io/ +catalogue-contact-repository https://bitbucket.org/dma8hm1334/xepersian-hm/ +catalogue-ctan /macros/xetex/latex/xepersian-hm +catalogue-license lppl1.3c +catalogue-topics persian xetex expl3 +catalogue-version 1.1a + +name xesearch +category Package +revision 51908 +shortdesc A string finder for XeTeX +relocated 1 +longdesc The package finds strings (e.g. (parts of) words or phrases) +longdesc and manipulates them (apply any macro), thus turning each word +longdesc or phrase into a possible command. It is written in plain XeTeX +longdesc and should thus work with any format (it is known to work with +longdesc LaTeX and ConTeXt). The main application for the moment is +longdesc XeIndex, an automatic index for XeLaTeX, but examples are given +longdesc of simple use to check spelling, count words, and highlight +longdesc syntax of programming languages. +containersize 5900 +containerchecksum 4c204a8f92fe9af0ef1f0da99dfb12ac8f784800f7ef673a116a5f5167556fe49584b9457bebfd07aebace44951327f8a576cdbc8091a7aec776768384c62507 +doccontainersize 614800 +doccontainerchecksum 981e6cc62a2f50815aeb875c46ab2ac83510ea535953629755700650831500410650b66ba070d8b5ddc494792e782fb75f266ffe0fb868318a4782b2f8d701f9 +docfiles size=170 + RELOC/doc/xetex/xesearch/README details="Readme" + RELOC/doc/xetex/xesearch/xesearch.pdf details="Package documentation" + RELOC/doc/xetex/xesearch/xesearch.tex +runfiles size=9 + RELOC/tex/xetex/xesearch/t-xesearch.tex + RELOC/tex/xetex/xesearch/xesearch.sty +catalogue-also toolbox etoolbox etextools +catalogue-ctan /macros/xetex/generic/xesearch +catalogue-license lppl +catalogue-topics string xetex +catalogue-version 0.2 + +name xespotcolor +category Package +revision 58212 +shortdesc Spot colours support for XeLaTeX +relocated 1 +longdesc The package provides macros for using spot colours in LaTeX +longdesc documents. The package is a reimplementation of the spotcolor +longdesc package for use with XeLaTeX. As such, it has the same user +longdesc interface and the same capabilities. +containersize 2348 +containerchecksum fcc3a800986069cf64c62b2794447650331dfc2fbefe26fc2d537ebfb520acecb6530bff7591a597fac9b108f23781f0faf7c27b97f35ff2358d62c09404a5da +doccontainersize 137344 +doccontainerchecksum 90ff1badeeb6e2d6cff9797b1af2052b4fa8474279c7b2e9916f7f02c767988d640b57f3d63be8de9f0082e50bb93c1c122b3c1f9bf74132c5c13b1b6b70122d +docfiles size=43 + RELOC/doc/xelatex/xespotcolor/README details="Readme" + RELOC/doc/xelatex/xespotcolor/jatestspot.pdf + RELOC/doc/xelatex/xespotcolor/jatestspot.tex + RELOC/doc/xelatex/xespotcolor/spotcolor-test.pdf + RELOC/doc/xelatex/xespotcolor/spotcolor-test.tex + RELOC/doc/xelatex/xespotcolor/xespotcolor.pdf details="Package documentation" +srccontainersize 7164 +srccontainerchecksum 60aa75660ec567a3015bd8b4985e95aa3387cbda9b239c2d1d7e8bb29fde8d44fc414ebfb195aa3be037a3f4cbe510354e28d3ffc9d5777d054585597e2ab762 +srcfiles size=6 + RELOC/source/xelatex/xespotcolor/xespotcolor.dtx + RELOC/source/xelatex/xespotcolor/xespotcolor.ins +runfiles size=2 + RELOC/tex/xelatex/xespotcolor/xespotcolor.sty +catalogue-contact-bugs https://github.com/callegar/LaTeX-everypage/issues +catalogue-contact-repository https://github.com/callegar/LaTeX-everypage +catalogue-ctan /macros/xetex/latex/xespotcolor +catalogue-license lppl1.3c +catalogue-topics colour +catalogue-version 2.1 + +name xetex +category TLCore +revision 57972 +shortdesc An extended variant of TeX for use with Unicode sources +longdesc XeTeX is a TeX typesetting engine using Unicode and supporting +longdesc modern font technologies such as OpenType, TrueType or Apple +longdesc Advanced Typography (AAT), including OpenType mathematics +longdesc fonts. XeTeX supports many extensions that reflect its origins +longdesc in linguistic research; it also supports micro-typography (as +longdesc available in pdfTeX). XeTeX was developed by the SIL (the first +longdesc version was specifically developed for those studying +longdesc linguistics, and using Macintosh computers). XeTeX's immediate +longdesc output is an extended variant of DVI format, which is +longdesc ordinarily processed by a tightly bound processor (called +longdesc xdvipdfmx), that produces PDF. XeTeX is released as part of TeX +longdesc Live; documentation has arisen separately. Source code is +longdesc available from ctan:/systems/texlive/Source/. +depend atbegshi +depend atveryend +depend babel +depend cm +depend dvipdfmx +depend etex +depend everyshi +depend firstaid +depend hyphen-base +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-fonts +depend lm +depend plain +depend tex-ini-files +depend unicode-data +depend xetex.ARCH +depend xetexconfig +execute AddFormat name=xelatex engine=xetex patterns=language.dat options="-etex xelatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,lm +execute AddFormat name=xetex engine=xetex patterns=language.def options="-etex xetex.ini" fmttriggers=cm,hyphen-base,tex-ini-files,unicode-data,etex,plain +postaction script file=tlpkg/tlpostcode/xetex.pl +containersize 6988 +containerchecksum dd788efc6e03e11e2dd88d8e63ca2153e936194391d49ce422a757ba1937986cb80faafa71860bf55ef5cbab51b53cd0c85c60dadddd92940802ede301cdefd6 +doccontainersize 616820 +doccontainerchecksum 544a36d94bf2094403806d934a7e0d92062c1b5b1d0efbf4316d9319a1ff95a1d8f7a4a961c63e4a3eb66c9c4a24789e239f958132e5a4f08c3764f44772c8aa +docfiles size=170 + texmf-dist/doc/man/man1/xelatex.1 + texmf-dist/doc/man/man1/xelatex.man1.pdf + texmf-dist/doc/man/man1/xetex.1 + texmf-dist/doc/man/man1/xetex.man1.pdf + texmf-dist/doc/xetex/base/NEWS + texmf-dist/doc/xetex/base/README + texmf-dist/doc/xetex/base/XeTeX-notes.pdf details="About XeTeX" + texmf-dist/doc/xetex/base/XeTeX-notes.tex +runfiles size=6 + texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.map + texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.tec + texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.map + texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.tec + tlpkg/tlpostcode/xetex.pl +catalogue-also luatex +catalogue-contact-announce https://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 https://lists.tug.org/xetex +catalogue-license other-free +catalogue-topics engine + +name xetex-devanagari +category Package +revision 34296 +shortdesc XeTeX input map for Unicode Devanagari +relocated 1 +longdesc The package provides a map for use with Jonathan Kew's TECkit, +longdesc to translate Devanagari (encoded according to the Harvard/Kyoto +longdesc convention) to Unicode (range 0900-097F). +containersize 12452 +containerchecksum 96eeb5289b4b0ce252eba1daf15fbccaf2cbb2d251a85818b6dd761048532f36355619e37f1f857caf4592cbf85d112d6d48d5944c455ef36da9913529a783fc +doccontainersize 992 +doccontainerchecksum 0f360c3f43c6562520b8843269068fc46ecc405cd3a4d8faecddc4f606d69cedcab28950fc1d2e11699e297fe4d70c4c3d50765a2ec30541c237914accbc7129 +docfiles size=1 + RELOC/doc/xetex/xetex-devanagari/Changelog +runfiles size=14 + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/README + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/devanagarinumerals.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/devanagarinumerals.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/harvardkyoto.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/harvardkyoto.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/iast.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/iast.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis-sanskrit.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis-sanskrit.tec + 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-license lppl +catalogue-topics inputenc xetex +catalogue-version 0.5 + +name xetex-itrans +category Package +revision 55475 +shortdesc Itrans input maps for use with XeLaTeX +relocated 1 +longdesc The package provides maps for use with XeLaTeX with coding done +longdesc using itrans. Fontspec maps are provided for Devanagari +longdesc (Sanskrit), for Sanskrit in Kannada and for Kannada itself. +containersize 24624 +containerchecksum 9c39898cbcfd024f1a274311a192c647e15624fc04a9484daa2d08ac37340a799b4209a5aa91a5e3a96f774d7363198c5a07f66d88578e1998ef3680b10dae6a +doccontainersize 21096 +doccontainerchecksum f10eb9651823eace7f56e88e710bb5536a35204b8fee80219419659d0e2f5fcc60c6009834fd9aa215aa42e8291e14786688fe1974dcab943578bd22a40f4ee1 +docfiles size=8 + RELOC/doc/xelatex/xetex-itrans/README details="Readme" + RELOC/doc/xelatex/xetex-itrans/itrans-tamil-sample.pdf + RELOC/doc/xelatex/xetex-itrans/itrans-tamil-sample.tex +runfiles size=29 + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/brh-kan.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/brh-kan.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-dvn.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-dvn.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-iast.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-iast.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-kan.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-kan.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sankan.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sankan.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-santel.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-santel.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sdvn.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sdvn.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tamil.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tamil.tec + 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-license lppl1.3 +catalogue-topics markup indic sanskrit font-supp +catalogue-version 4.2 + +name xetex-pstricks +category Package +revision 17055 +shortdesc Running PSTricks under XeTeX +relocated 1 +longdesc The package provides an indirection scheme for XeTeX to use the +longdesc pstricks xdvipdfmx.cfg configuration file, so that XeTeX +longdesc documents will load it in preference to the standard +longdesc pstricks.con configuration file. With this configuration, many +longdesc PSTricks features can be used in XeLaTeX or plain XeTeX +longdesc documents. +containersize 724 +containerchecksum 59186971a188f4541361df8fc492b3767069b3081f7052c88df5395539807970c709537b074790411dffbc871010cf4d3fbbdb6684c43007477c44be6259b64b +doccontainersize 932 +doccontainerchecksum cf71359ea6e56061848b085da9755fd3d96d2a9d30484b5d5028c7a3dfb52dfbe275c46f17016179a56f90db3b6df4453cbf3a990a709e59503fbf1a576eaf8d +docfiles size=1 + RELOC/doc/xetex/xetex-pstricks/README details="Readme" +runfiles size=2 + RELOC/tex/xelatex/xetex-pstricks/pstricks.con + RELOC/tex/xetex/xetex-pstricks/pstricks.con +catalogue-ctan /graphics/xetex/pstricks +catalogue-license pd +catalogue-topics graphics-in-tex xetex + +name xetex-tibetan +category Package +revision 28847 +shortdesc XeTeX input maps for Unicode Tibetan +relocated 1 +longdesc The package provides a map for use with Jonathan Kew's TECkit, +longdesc to translate Tibetan to Unicode (range 0F00-0FFF). +containersize 7048 +containerchecksum de7d2f875416336f25e8a14f8c743aef87017cc0aeb30b5c6aa9e1bdf044d71d3c9e9a28d52ccbe7fbd2099ca9e47938310dc3311e46399027aa822b76ff90c9 +doccontainersize 1204 +doccontainerchecksum 0bba33024862284354416e55f2f718f3f3220e4a853c68bd6386c013702aa07a3142864168f6d136bb351044dd9ae8b59754cc2a0181a358fe1baad49106d504 +docfiles size=2 + RELOC/doc/xetex/xetex-tibetan/Changelog + RELOC/doc/xetex/xetex-tibetan/README details="Readme" +runfiles size=6 + RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/loctib.map + RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/loctib.tec + 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-license lppl +catalogue-topics inputenc xetex +catalogue-version 0.1 + +name xetex.aarch64-linux +category TLCore +revision 58534 +shortdesc aarch64-linux files of xetex +containersize 7091520 +containerchecksum a71ceb1281e8677a1d56ef51a3317a66584b5cc5f29d91b0855d1161572830fb450feb2ab22d168c118d99a7895e44c6a863f931ddc21558569438062fd89366 +binfiles arch=aarch64-linux size=6795 + bin/aarch64-linux/teckit_compile + bin/aarch64-linux/xelatex + bin/aarch64-linux/xetex + +name xetex.amd64-freebsd +category TLCore +revision 58388 +shortdesc amd64-freebsd files of xetex +containersize 6898876 +containerchecksum 822053017863af807843e1eabbe05c135f3003e070e733e64b2669efea5084ddc7edbe914e97e6df2433e277e9f10a28f051f6694cab2f283dbba79eddad3ae8 +binfiles arch=amd64-freebsd size=6200 + bin/amd64-freebsd/teckit_compile + bin/amd64-freebsd/xelatex + bin/amd64-freebsd/xetex + +name xetex.amd64-netbsd +category TLCore +revision 58386 +shortdesc amd64-netbsd files of xetex +containersize 7104164 +containerchecksum 4fb0c0a8ec45165c8eded4f4ae1242684e644cabd424b7833009015768729c5ca56e95dc1739c10cc86dfa4b3d4998fe14f9206b5dca623d03abdf6dbfdd03d2 +binfiles arch=amd64-netbsd size=7236 + bin/amd64-netbsd/teckit_compile + bin/amd64-netbsd/xelatex + bin/amd64-netbsd/xetex + +name xetex.armhf-linux +category TLCore +revision 58428 +shortdesc armhf-linux files of xetex +containersize 6764004 +containerchecksum b16d8ba017e3bd577ee227e5d04eb7f9535cb9c89c57bd5ed5f4e79dc02df89a8683fd85fd010cd8f16f908e91183d324f183b5b358e0f8cc1d160c3b84e2655 +binfiles arch=armhf-linux size=6227 + bin/armhf-linux/teckit_compile + bin/armhf-linux/xelatex + bin/armhf-linux/xetex + +name xetex.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of xetex +containersize 7003928 +containerchecksum 2cc649bd7b91c5c999ebbddabd5ba8c53a57d8bade90bcc1ed470c8f096aba571c81dffcd6f89eef6b486ba974b0f990433c925ebd2f932f4e769267e5560b5f +binfiles arch=i386-cygwin size=6479 + bin/i386-cygwin/teckit_compile.exe + bin/i386-cygwin/xelatex + bin/i386-cygwin/xetex.exe + +name xetex.i386-freebsd +category TLCore +revision 58388 +shortdesc i386-freebsd files of xetex +containersize 6722828 +containerchecksum ab6983790e1a214f29f48590cde27ed43d3b35cd9f21a1a6f46f561577f9404dd0ff0620c0b21a1a8dc1071503c253dba514325fa8164db5d6eedca790759193 +binfiles arch=i386-freebsd size=6019 + bin/i386-freebsd/teckit_compile + bin/i386-freebsd/xelatex + bin/i386-freebsd/xetex + +name xetex.i386-linux +category TLCore +revision 58378 +shortdesc i386-linux files of xetex +containersize 7117852 +containerchecksum 8edf35290897332c13794073e2ad2dbe2b4064a9533c3b51b2af93802c3a9228308b671e9d7c1405abdfb33e8a1dbc7beefe15bb21b71c26f9b7941c9d3933c7 +binfiles arch=i386-linux size=6380 + bin/i386-linux/teckit_compile + bin/i386-linux/xelatex + bin/i386-linux/xetex + +name xetex.i386-netbsd +category TLCore +revision 58386 +shortdesc i386-netbsd files of xetex +containersize 7017628 +containerchecksum 07bc9d484fbd4d7801415701d69dad3b203b09f71d67b995f07f1bd0a5fa654ad5186c9935928dc83aa18184f742cc8bf7ef1d863f511eb8326d36d9fbe70a88 +binfiles arch=i386-netbsd size=7033 + bin/i386-netbsd/teckit_compile + bin/i386-netbsd/xelatex + bin/i386-netbsd/xetex + +name xetex.i386-solaris +category TLCore +revision 58388 +shortdesc i386-solaris files of xetex +containersize 7303724 +containerchecksum a9d9e4e6ee68e9f463c385f82d82412949b98c7c1bb01f57b8884e8fa8f89281346e452e9fac80eef58e0fe347484b7236805dc18a804669ca4089e7c82fee46 +binfiles arch=i386-solaris size=6736 + bin/i386-solaris/teckit_compile + bin/i386-solaris/xelatex + bin/i386-solaris/xetex + +name xetex.universal-darwin +category TLCore +revision 58418 +shortdesc universal-darwin files of xetex +containersize 13815156 +containerchecksum 5bd9f0e0ffe395f0469b7b4be5415581c4fbdca8db5fe89025ed1f3b6d72ddcaff71a48f128dbbf1078067ca3250375416d4a1cc60271c521d34120c2782135a +binfiles arch=universal-darwin size=12406 + bin/universal-darwin/teckit_compile + bin/universal-darwin/xelatex + bin/universal-darwin/xetex + +name xetex.win32 +category TLCore +revision 59028 +shortdesc win32 files of xetex +containersize 9412544 +containerchecksum 1cbff9b1a70882c0a5854a13a9c894251bdc2be1790f6f0de7d063bcd9b41cea519356dfdd9ea021a75c249fe33608517ec924d09701a80328d34bfdea843633 +binfiles arch=win32 size=10120 + bin/win32/fc-cache.exe + bin/win32/fc-cat.exe + bin/win32/fc-list.exe + bin/win32/fc-match.exe + bin/win32/fc-pattern.exe + bin/win32/fc-query.exe + bin/win32/fc-scan.exe + bin/win32/fc-validate.exe + bin/win32/icudt68.dll + bin/win32/teckit_compile.exe + bin/win32/xelatex.exe + bin/win32/xetex.dll + bin/win32/xetex.exe + tlpkg/tlpostcode/xetex/cache/readme.txt + tlpkg/tlpostcode/xetex/conf/conf.d/51-local.conf + tlpkg/tlpostcode/xetex/conf/fonts.conf + tlpkg/tlpostcode/xetex/conf/fonts.dtd + +name xetex.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of xetex +containersize 7024160 +containerchecksum d82898dceee2caeafa76df40dc7b20585b7e4bfe56830256ff867585f938695b5cd9e6a7616d700ac54530547f410bb57863dbafebd9855745092fe434a5c55d +binfiles arch=x86_64-cygwin size=6461 + bin/x86_64-cygwin/teckit_compile.exe + bin/x86_64-cygwin/xelatex + bin/x86_64-cygwin/xetex.exe + +name xetex.x86_64-darwinlegacy +category TLCore +revision 58388 +shortdesc x86_64-darwinlegacy files of xetex +containersize 6660724 +containerchecksum 1231de4591f2507a547937a675ab619abf852e3a6e01ed18268832ba6ffb108593e6d550ee22da4f0e42263301791b0a3dca7ca65b60f0109c9b7b7890df21de +binfiles arch=x86_64-darwinlegacy size=5992 + bin/x86_64-darwinlegacy/teckit_compile + bin/x86_64-darwinlegacy/xelatex + bin/x86_64-darwinlegacy/xetex + +name xetex.x86_64-linux +category TLCore +revision 58378 +shortdesc x86_64-linux files of xetex +containersize 7045776 +containerchecksum 5c8b1a56e350be977464b542c163fc919bf8b1a7ed816d70d41fdef1705a616688674752205d57de0ce72351f75cc642cc3c1f02a23ab184581abcc9ee01bf21 +binfiles arch=x86_64-linux size=6370 + bin/x86_64-linux/teckit_compile + bin/x86_64-linux/xelatex + bin/x86_64-linux/xetex + +name xetex.x86_64-linuxmusl +category TLCore +revision 58378 +shortdesc x86_64-linuxmusl files of xetex +containersize 7145000 +containerchecksum de120d9d02847f4e7e005aa3781c7967516d4a480b01f7cd899bd66d7509d4290871fa1ba91b082231d50b3def8db51271816e797a22d0a3e78557a9f79d6f6d +binfiles arch=x86_64-linuxmusl size=6576 + bin/x86_64-linuxmusl/teckit_compile + bin/x86_64-linuxmusl/xelatex + bin/x86_64-linuxmusl/xetex + +name xetex.x86_64-solaris +category TLCore +revision 58388 +shortdesc x86_64-solaris files of xetex +containersize 7420212 +containerchecksum 31303ab6c2502e64839dda8b597dedadc549adbc41f89e1614e0b670a4f7ce32d40dd5dc29fab24908a8871f8b73c7b8b5918133603cd960ca05657f2999574d +binfiles arch=x86_64-solaris size=6956 + bin/x86_64-solaris/teckit_compile + bin/x86_64-solaris/xelatex + bin/x86_64-solaris/xetex + +name xetexconfig +category Package +revision 45845 +shortdesc crop.cfg for XeLaTeX +relocated 1 +containersize 532 +containerchecksum 62b130d16ac01845df5acb1a10e487408208b0c4369d58892a83a42609b3dc92589195540154d1e07a9cb528e8e4ca65009dfef236efd53b9cfbce0a942c5b01 +runfiles size=1 + RELOC/tex/xelatex/xetexconfig/crop.cfg + +name xetexfontinfo +category Package +revision 15878 +shortdesc Report font features in XeTeX +relocated 1 +longdesc A pair of documents to reveal the font features supported by +longdesc fonts usable in XeTeX. Use OpenType-info.tex for OpenType +longdesc fonts, and AAT-info.tex for AAT fonts (Mac OS X only). +containersize 2340 +containerchecksum 8099f45c704ea74e5bbd90b1817c3ad06cffe3d6da0a997f8471e72cff364d346a3cc2e6f156b51bf7bc3ba149e5c755423418d58be89e1872f84db9c1eef039 +doccontainersize 628 +doccontainerchecksum a5a9b085e5dac02d75b83c7063fe653724367ce203c20832e2ef6b11db10e31bcb90745a7b7d65427a33cb018d68afdd4acf9f92c907f91904188ad60f2e1460 +docfiles size=1 + RELOC/doc/xetex/xetexfontinfo/README details="Readme" +runfiles size=2 + RELOC/tex/xetex/xetexfontinfo/aat-info.tex + RELOC/tex/xetex/xetexfontinfo/opentype-info.tex +catalogue-ctan /macros/xetex/plain/xetexfontinfo +catalogue-license apache2 +catalogue-topics font-supp xetex + +name xetexko +category Package +revision 58929 +shortdesc Typeset Korean with Xe(La)TeX +relocated 1 +longdesc The package supports typesetting Korean documents (including +longdesc old Hangul texts), using XeTeX. It enhances the existing +longdesc support, in XeTeX, providing features that provide quality +longdesc typesetting. This package requires the cjk-ko package for its +longdesc full functionality. +containersize 53760 +containerchecksum 1fa1a9211d53d85d7e6e7f2dd7ae4a9f818640b3b5269a751e982297eff5e0e5164501e14fa56508ee4f44c3889d1853a8496d65ac17870d7f355103199d473d +doccontainersize 259916 +doccontainerchecksum 99985c729fe5496b763cb9f6a894420780d0c7c6f45ec4b77a40cdb3a3c3b1296460a0a548621c265233c1cfe0dfdb1171dc6c2ccd1d7a2e61f4c753cd2037d3 +docfiles size=74 + RELOC/doc/xetex/xetexko/ChangeLog + RELOC/doc/xetex/xetexko/README details="Readme" + RELOC/doc/xetex/xetexko/xetexko-doc.pdf details="Package documentation" language="ko" + RELOC/doc/xetex/xetexko/xetexko-doc.tex +runfiles size=70 + RELOC/tex/xetex/xetexko/hanja_hangul.tab + RELOC/tex/xetex/xetexko/hanjacom_hangul.tab + RELOC/tex/xetex/xetexko/hanjaexa_hangul.tab + RELOC/tex/xetex/xetexko/xetexko-font.sty + RELOC/tex/xetex/xetexko/xetexko-hanging.sty + RELOC/tex/xetex/xetexko/xetexko-josa.sty + RELOC/tex/xetex/xetexko/xetexko-space.sty + RELOC/tex/xetex/xetexko/xetexko-vertical.sty + RELOC/tex/xetex/xetexko/xetexko.sty +catalogue-contact-repository https://github.com/dohyunkim/xetexko +catalogue-ctan /macros/xetex/generic/xetexko +catalogue-license lppl1.3c +catalogue-topics korean xetex +catalogue-version 3.3 + +name xetexref +category Package +revision 56291 +shortdesc Reference documentation of XeTeX +relocated 1 +longdesc The package comprises reference documentation for XeTeX +longdesc detailing its extended features. +containersize 444 +containerchecksum 5d2610deed12422bdcd7e177c339d3aa701887ff12bab214ce0b67f87abd70c569a0aab85f59f877399d440c75c712a4ec8ecf12f6059152d0d0c70f40f2b1f7 +doccontainersize 157316 +doccontainerchecksum 24d62e618217ec5454bd23662711e10637a7f67cc11880288bfcf301ab89ab22d87a6d65af8c37c99d924a4dc77b95308ef38eb8ad6bb81cf2900cbd3ebeeef8 +docfiles size=48 + RELOC/doc/xetex/xetexref/README.txt details="Readme" + RELOC/doc/xetex/xetexref/xetex-reference.pdf details="The document itself" + RELOC/doc/xetex/xetexref/xetex-reference.tex +catalogue-contact-bugs https://github.com/wspr/xetexref/issues +catalogue-contact-repository https://github.com/wspr/xetexref/ +catalogue-contact-support https://lists.tug.org/xetex +catalogue-ctan /info/xetexref +catalogue-license lppl1.3c +catalogue-topics documentation xetex + +name xevlna +category Package +revision 43864 +shortdesc Insert non-breakable spaces using XeTeX +relocated 1 +longdesc The package will directly insert nonbreakable spaces (in Czech, +longdesc vlna or vlnka), after nonsyllabic prepositions and single +longdesc letter conjuctions, while the document is being typeset. (The +longdesc macros recognised maths and verbatim by TeX means.) (Inserting +longdesc nonbreakable spaces by a preprocessor will probably never be +longdesc fully reliable, because user defined macros and environments +longdesc cannot reliably be recognised.) The package works both with +longdesc (Plain) XeTeX and with XeLaTeX. +containersize 1344 +containerchecksum 69c80d5243a4af96f2dd8092926d2766bad5d6beaeff94d6aa2f184a68a45fa50bb3abb91a4652d8c5e5617073aee9caddeeb73fd5399965f477be7075b7ca01 +doccontainersize 55384 +doccontainerchecksum d0d033b646314eb250b245575ea2361b6c12f13eefab071c2b9f91524b08bfceb9fec197c3fa5f61e3ed19caaf4198e69ce1305bf1eb2daf1db6e30365eeac48 +docfiles size=21 + RELOC/doc/xelatex/xevlna/License.txt + RELOC/doc/xelatex/xevlna/README details="Readme" + RELOC/doc/xelatex/xevlna/xevlna-inc.tex + RELOC/doc/xelatex/xevlna/xevlna.pdf details="Package documentation" + RELOC/doc/xelatex/xevlna/xevlna.tex +runfiles size=1 + RELOC/tex/xelatex/xevlna/xevlna.sty +catalogue-also encxvlna luavlna +catalogue-ctan /macros/xetex/generic/xevlna +catalogue-license lppl1.3 +catalogue-topics typesetting czech +catalogue-version 1.1 + +name xfakebold +category Package +revision 55654 +shortdesc Fake a regular font for bold characters +relocated 1 +longdesc This package uses PDF's text rendering to modify the linewidth +longdesc of an outline font to get bold characters. It works only for +longdesc vectorfonts where the glyphs are defined by their outline. The +longdesc package works both in text and in math mode, for pdfLaTeX as +longdesc well as for LuaLaTeX. The package depends on ifluatex, ifxetex, +longdesc and xkeyval. +depend iftex +containersize 1404 +containerchecksum 99c735bd449c96b3444a8b50032c9962601a04beeeeb6b0fcb759ee0cc53e4510dc8d077a3cad7b99c968bb9d60bbd37f2f0c7d56ffb5fc667301423bfd32bdb +doccontainersize 99600 +doccontainerchecksum bb6f1bda41427f4c144402095a79aafe70d6b534b6d0462d951a2c58fabb0bc8dd9edfdabf526bba243b2c79aeacee728741dca778e25019ae909856b164a316 +docfiles size=28 + RELOC/doc/latex/xfakebold/Changes + RELOC/doc/latex/xfakebold/README details="Readme" + RELOC/doc/latex/xfakebold/xfakebold-doc.pdf details="Package documentation" + RELOC/doc/latex/xfakebold/xfakebold-doc.tex +runfiles size=1 + RELOC/tex/latex/xfakebold/xfakebold.sty +catalogue-ctan /macros/latex/contrib/xfakebold +catalogue-license lppl1.3c +catalogue-topics font-supp-misc font-util pdf-feat +catalogue-version 0.08 + +name xfor +category Package +revision 15878 +shortdesc A reimplementation of the LaTeX for-loop macro +relocated 1 +longdesc The package redefines the LaTeX internal \@for macro so that +longdesc the loop may be prematurely terminated. The action is akin to +longdesc the C/Java break statement, except that the loop does not +longdesc terminate until the end of the current iteration +containersize 1716 +containerchecksum 6e3ebe83dc39a87aa86d5f173f56893ab1678253dc18dedf16c5d4a2df864e21b9b6e84c6bda56e2c624106efb2f73c110964948e4d553848bbebae87f05bff8 +doccontainersize 102224 +doccontainerchecksum e75b3d57c09e1580282f4002b684645aa21aeed4f90626b7e439f30dd79edec9c6f23492eef83b67e9ccb885c001caca6201d43b5182632a5b38ba5f67488b52 +docfiles size=32 + RELOC/doc/latex/xfor/CHANGES + RELOC/doc/latex/xfor/README details="Readme" + RELOC/doc/latex/xfor/sample.tex + RELOC/doc/latex/xfor/xfor.pdf details="Package documentation" +srccontainersize 4904 +srccontainerchecksum 508dd3c696da5287cee35fbeca12aa60667908f1f456a9d1333197e76b707902d281e83146b81e0a095c168054ec96013074f5b0bc236e35cb17732f4158e2ae +srcfiles size=5 + RELOC/source/latex/xfor/xfor.dtx + RELOC/source/latex/xfor/xfor.ins +runfiles size=1 + RELOC/tex/latex/xfor/xfor.sty +catalogue-ctan /macros/latex/contrib/xfor +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.05 + +name xgreek +category Package +revision 46662 +shortdesc XeLaTeX package for typesetting Greek language documents (beta release) +relocated 1 +longdesc This package has been designed so to allow people to typeset +longdesc Greek language documents using XeLaTeX. And it is released in +longdesc the hope that people will use it and spot errors, bugs, +longdesc features so to improve it. Practically, it provides all the +longdesc capabilities of the greek option of the babel package. The +longdesc package can be invoked with any of the following options: +longdesc monotonic (for typesetting modern monotonic Greek), polytonic +longdesc (for typesetting modern polytonic Greek), and ancient (for +longdesc typesetting ancient texts). The default option is monotonic. +longdesc The command \setlanguage{<lang>} to activate the hyphenation +longdesc patterns of the language <lang> This, however, can be done only +longdesc if the format file has not been built with the babel mechanism. +containersize 4752 +containerchecksum 1f2dfaeb88040a1b58b60c0ccb84e7417d4211491d34c17c9302b7cf388775ed729f9135b76e43ea276a50a665efeaf19884535c187bc1c0cd931c2e79b8aa19 +doccontainersize 67772 +doccontainerchecksum 8258ef4bca146a2ea8f42a235f151924156f116d2d3feb4d1974da1b1afd395858dd5d53d2343d748f0d60afffc8967e9f316026e07bdc2215d145334ec90e66 +docfiles size=18 + RELOC/doc/xelatex/xgreek/README details="README file" + RELOC/doc/xelatex/xgreek/xgreek.pdf details="Package documentation" +srccontainersize 9864 +srccontainerchecksum a982e91c9fd68b583ed3d28c841e91e45ba83a9b961cf710cea2a025c69f3e4c98124eb3d5ef45062347ae8b48c6ad54ef5c7631fffa1be5cb9705842ca23987 +srcfiles size=12 + RELOC/source/xelatex/xgreek/xgreek.dtx + RELOC/source/xelatex/xgreek/xgreek.ins +runfiles size=7 + RELOC/tex/xelatex/xgreek/xgreek.sty +catalogue-ctan /macros/xetex/latex/xgreek +catalogue-license lppl1.3 +catalogue-topics greek xetex +catalogue-version 3.0.1 + +name xhfill +category Package +revision 22575 +shortdesc Extending \hrulefill +relocated 1 +longdesc The package provides extended macros for the default \hrulefill +longdesc command. It allows modification of the width and the colour of +longdesc the line. +containersize 1200 +containerchecksum cc0ea9e9d40a590444801359c455716856c807eb429aa01b460fd7566797490932bd3566a5c6f95bd6723e0b05bde1aa632b83383c8bcdeba8a455cb84ea9f1b +doccontainersize 39088 +doccontainerchecksum 027287d941c4576d7f55a3d618e13cde5348ac072f3e546dac6f8a8814efb982f9cd0c4162866403f946d07ecba0ea8cc15543cafbdf9008d60b78d0ea3d26fd +docfiles size=13 + RELOC/doc/latex/xhfill/Changes + RELOC/doc/latex/xhfill/Makefile + RELOC/doc/latex/xhfill/xhfill-doc.pdf details="Package documentation" + RELOC/doc/latex/xhfill/xhfill-doc.tex +runfiles size=1 + RELOC/tex/latex/xhfill/xhfill.sty +catalogue-ctan /macros/latex/contrib/xhfill +catalogue-license lppl +catalogue-topics rule +catalogue-version 1.01 + +name xifthen +category Package +revision 38929 +shortdesc Extended conditional commands +relocated 1 +longdesc This package extends the ifthen package by implementing new +longdesc commands to go within the first argument of \ifthenelse: to +longdesc test whether a string is void or not, if a command is defined +longdesc or equivalent to another. The package also enables use of +longdesc complex expressions as introduced by the package calc, together +longdesc with the ability of defining new commands to handle complex +longdesc tests. +containersize 2120 +containerchecksum 21c5882ffbde05c50a6536fbf19f812a3ce6381f565227f61c8062281a2472a105bf6223cdc03adebf275fa23dbc1ebbb967349c715f20d1b516f100f820af3e +doccontainersize 482656 +doccontainerchecksum 52ffddbfb4d0d579849b7a89d30bebe9f1d511751c89012712a8ef73ae3f4eb8799ef9b3755dc957c47fd874f1ce76b3ed54591d59f7e4d9e1851c50aff3dd4b +docfiles size=123 + RELOC/doc/latex/xifthen/README + RELOC/doc/latex/xifthen/xifthen.pdf details="Package documentation" + RELOC/doc/latex/xifthen/xifthen.tex +runfiles size=2 + RELOC/tex/latex/xifthen/xifthen.sty +catalogue-also ifthen ifthenx +catalogue-ctan /macros/latex/contrib/xifthen +catalogue-license lppl +catalogue-topics macro-supp cond-comp +catalogue-version 1.4.0 + +name xii +category Package +revision 45804 +shortdesc Christmas silliness (English) +relocated 1 +longdesc This is the plain TeX file xii.tex. Call "pdftex xii.tex" to +longdesc produce a (perhaps) surprising typeset document. +containersize 488 +containerchecksum a5355a456005e09eac4135735973a14a6add3a31639fcea441d8d6a7c06e7a7efbfc1470d485ab317fa193897abc2d9edeccadd19239944014b7fccecdda52a3 +doccontainersize 1228 +doccontainerchecksum c9b348da09c3a9c1522eb7713a17a58b3eabf4ff8ed52e8d14dc9eeff528ed93af505b5e3cb59c1af4c2ce999c6c1d98f66d026a6ab3d7a09778230286059d84 +docfiles size=2 + RELOC/doc/plain/xii/README.txt details="Readme" + RELOC/doc/plain/xii/xii.tex +catalogue-also xii-lat inscrutable +catalogue-contact-home https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/plain/contrib/xii +catalogue-license lppl +catalogue-topics frivolous + +name xii-lat +category Package +revision 45805 +shortdesc Christmas silliness (Latin) +relocated 1 +longdesc This is the plain TeX file xii-lat.tex. Call "pdftex +longdesc xii-lat.tex" to produce a (perhaps) surprising typeset +longdesc document. +containersize 492 +containerchecksum e4538ac31b6508371ee156168d4da71644a65297b91be7f070291f35563a45a1ee5a528d25585bc23a4690e8fc5c6ad04bfc829de4e95f49468a5852fac9e822 +doccontainersize 1392 +doccontainerchecksum 50322d89f494d07793d964fe515b8a0bacb74bd5706a6da80f6860771a8e3cad35c7d06bf398217a7e4364594d54f4dc490f39980194804a04460047ff5083f8 +docfiles size=2 + RELOC/doc/plain/xii-lat/README.txt details="Readme" + RELOC/doc/plain/xii-lat/xii-lat.tex +catalogue-also xii inscrutable +catalogue-contact-home https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/plain/contrib/xii-lat +catalogue-license lppl +catalogue-topics frivolous + +name xindex +category Package +revision 56295 +shortdesc Unicode compatible index generation +longdesc This package provides a unicode compatible index programm for +longdesc LaTeX. It needs Lua 5.3, which will be included in at least +longdesc LuaTeX 1.09 (TeX Live 2019). +depend xindex.ARCH +containersize 31564 +containerchecksum e8a858e3fe056519eed3f85dc21291881fdbf057ece76d503fd863f66c51331d689fabbb7a1ba3728c3010c45a9f0663fb75db2b609716ee5dd515067bea07a5 +doccontainersize 472592 +doccontainerchecksum f755500e75fa45d14110da45bd43d10f4cf170cc907af7743673a38e1c823612fce9131eb16a03e59a1a821b1e4b3580e6a2e6a68e759f53f9daea4f88e4f09e +docfiles size=200 + texmf-dist/doc/lualatex/xindex/CHANGELOG + texmf-dist/doc/lualatex/xindex/Makefile + texmf-dist/doc/lualatex/xindex/README.md details="Readme" + texmf-dist/doc/lualatex/xindex/tests/HADW.idx + texmf-dist/doc/lualatex/xindex/tests/HADW.ind + texmf-dist/doc/lualatex/xindex/tests/HADW.pdf + texmf-dist/doc/lualatex/xindex/tests/HADW.tex + texmf-dist/doc/lualatex/xindex/tests/HADW2.idx + texmf-dist/doc/lualatex/xindex/tests/HADW2.ind + texmf-dist/doc/lualatex/xindex/tests/Umlaute.idx + texmf-dist/doc/lualatex/xindex/tests/Umlaute.ind + texmf-dist/doc/lualatex/xindex/tests/Umlaute.pdf + texmf-dist/doc/lualatex/xindex/tests/Umlaute.tex + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.idx + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.ind + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.pdf + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.tex + texmf-dist/doc/lualatex/xindex/tests/buch.idx + texmf-dist/doc/lualatex/xindex/tests/buch.ind + texmf-dist/doc/lualatex/xindex/tests/buch.pdf + texmf-dist/doc/lualatex/xindex/tests/buch.tex + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.idx + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.ind + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.pdf + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.tex + texmf-dist/doc/lualatex/xindex/tests/demo.idx + texmf-dist/doc/lualatex/xindex/tests/demo.ind + texmf-dist/doc/lualatex/xindex/tests/demo.pdf + texmf-dist/doc/lualatex/xindex/tests/demo.tex + texmf-dist/doc/lualatex/xindex/tests/demo2.idx + texmf-dist/doc/lualatex/xindex/tests/demo2.ind + texmf-dist/doc/lualatex/xindex/tests/demo3.idx + texmf-dist/doc/lualatex/xindex/tests/demo3.ind + texmf-dist/doc/lualatex/xindex/tests/demo3.pdf + texmf-dist/doc/lualatex/xindex/tests/demo3.tex + texmf-dist/doc/lualatex/xindex/tests/runTests.sh + texmf-dist/doc/lualatex/xindex/xindex-doc.pdf details="Package documentation" + texmf-dist/doc/lualatex/xindex/xindex-doc.tex +runfiles size=52 + texmf-dist/scripts/xindex/xindex.lua + texmf-dist/tex/latex/xindex/xindex.sty + texmf-dist/tex/lualatex/xindex/xindex-DIN2.lua + texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua + texmf-dist/tex/lualatex/xindex/xindex-base.lua + texmf-dist/tex/lualatex/xindex/xindex-cfg-common.lua + texmf-dist/tex/lualatex/xindex/xindex-cfg-uca.lua + texmf-dist/tex/lualatex/xindex/xindex-cfg.lua + texmf-dist/tex/lualatex/xindex/xindex-dtk.lua + texmf-dist/tex/lualatex/xindex/xindex-lapp.lua + texmf-dist/tex/lualatex/xindex/xindex-lib.lua + texmf-dist/tex/lualatex/xindex/xindex-norsk.lua + texmf-dist/tex/lualatex/xindex/xindex-pretty.lua + texmf-dist/tex/lualatex/xindex/xindex-unicode.lua +catalogue-contact-bugs https://gitlab.com/hvoss49/xindex/issues +catalogue-contact-repository https://gitlab.com/hvoss49/xindex +catalogue-ctan /indexing/xindex +catalogue-license lppl1.3 +catalogue-topics index use-lua +catalogue-version 0.28 + +name xindex.aarch64-linux +category Package +revision 49312 +shortdesc aarch64-linux files of xindex +containersize 340 +containerchecksum f458b5da81aba12dc1a7c913c67bd10a52bfe5c828047732365fa8cf0eb3b0bf112b4a8254cb27435e9eebc8455cff83f46e0cd9200d99e7da513d395f760e6c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/xindex + +name xindex.amd64-freebsd +category Package +revision 49312 +shortdesc amd64-freebsd files of xindex +containersize 344 +containerchecksum d95dd0f0388b822581c90403b4978a5909ce567550c1d0f7170c932d14c729983f7a052278a737174409515e271a6404b42d8d81be9354f1cc4788999d1da947 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/xindex + +name xindex.amd64-netbsd +category Package +revision 49312 +shortdesc amd64-netbsd files of xindex +containersize 344 +containerchecksum 0e79bb684bf4fe44c1198a0b4327ecc2081ac902246e096447f9fa7c94c9c815d743f932c752cb996d65935f2f7ea2e1628c986e16ca71de460abca26015d1c1 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/xindex + +name xindex.armhf-linux +category Package +revision 49312 +shortdesc armhf-linux files of xindex +containersize 344 +containerchecksum 1c85abaa55f7c1e83932d6a06a49777db7c99b013b5a836ded054d0fef28e680acb49c50e72d75df19537e4b6d517d146d75b45fcf901aea3d0459078ff08d1d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/xindex + +name xindex.i386-cygwin +category Package +revision 49312 +shortdesc i386-cygwin files of xindex +containersize 340 +containerchecksum f40aec88e1a8c45f42ff2e2e1f637f7bdd831c7f8573a928970b22b50bf3c3bebfa7b11b28e242b6aa1fd8054d89cedd5fdffbdde4ebe95fdfbcfd48d113a62e +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/xindex + +name xindex.i386-freebsd +category Package +revision 49312 +shortdesc i386-freebsd files of xindex +containersize 344 +containerchecksum ddca50809e86734476e9b1518a8064ad3889a2c50c0fc922df997fc9390678bb07a29c5ad26f108bd327c065fddfbb38f480d1997d1baa511cb48b300fecd6b1 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/xindex + +name xindex.i386-linux +category Package +revision 49312 +shortdesc i386-linux files of xindex +containersize 340 +containerchecksum 3d6c8b22749bd2a27c8ab4d5a9f8680f46181e90aa6befebfadc5d30bcc3691c46636bc8d283cd03abd6471ef710b7a854f85ae6d0cfc3f713cfcc79f9a89b47 +binfiles arch=i386-linux size=1 + bin/i386-linux/xindex + +name xindex.i386-netbsd +category Package +revision 49312 +shortdesc i386-netbsd files of xindex +containersize 340 +containerchecksum 87a3deb1e77589d14c99fd598e15168113342fd3a8078c12ff9feef21b2b39828c949f71b8b47de84c33188faaf916f1561cadc467652fee39cf0fccd37f5acc +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/xindex + +name xindex.i386-solaris +category Package +revision 49312 +shortdesc i386-solaris files of xindex +containersize 340 +containerchecksum f113f21258178db978b1fa7e3c806b9d9bf8509a08c4d0fae342c9ab66e0e1522c31b40a64a695537691255f22c026f041969f6d67ab4c597b846b2f297c8bfb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/xindex + +name xindex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of xindex +containersize 340 +containerchecksum 5f994c94dae4463df91e0036696755aeaf6f6d4bc340d886aede164fa1e27d5cd63f58893256fe04c51b7e93bcdf431a425a3f98962a6fb0997f5132c7fa9d8e +binfiles arch=universal-darwin size=1 + bin/universal-darwin/xindex + +name xindex.win32 +category Package +revision 49312 +shortdesc win32 files of xindex +containersize 680 +containerchecksum 38898dc97d7f7d57c31cda3a074065b87f4d68483ac1afee996caa24fb8d88650eb5ecf36bf432a73faabac665ed75bcbc8708bda4bcc36b688614d8459a230a +binfiles arch=win32 size=1 + bin/win32/xindex.exe + +name xindex.x86_64-cygwin +category Package +revision 49312 +shortdesc x86_64-cygwin files of xindex +containersize 340 +containerchecksum 7ff6be0b4ba73f08382099f6ae37152e2a077a6efcd9e6574f41b189701b10682ae76f0bd43f213ca9c29e17445a69077483326ece7c12445d10f3882d2044cf +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/xindex + +name xindex.x86_64-darwinlegacy +category Package +revision 49312 +shortdesc x86_64-darwinlegacy files of xindex +containersize 348 +containerchecksum 070f493dfdfb89f10a0a36d294a552cb05931a20a9b0fb64b9f99360f9aed144b53ccdddb0db78581d60e1e277ef0e9d999b26a3c55d222b58bbaf01901bb5f9 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/xindex + +name xindex.x86_64-linux +category Package +revision 49312 +shortdesc x86_64-linux files of xindex +containersize 344 +containerchecksum bac65355a8c650bb5c99215c21370e40825b34b8646bedd8f641670c728e766f69a1f871d1b9d6302bf6de6217b058b02424b153727d374ef07732324fbf8258 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/xindex + +name xindex.x86_64-linuxmusl +category Package +revision 49312 +shortdesc x86_64-linuxmusl files of xindex +containersize 348 +containerchecksum d0c7368b5a136d4e2cffac3ba45ba1bf3852066744c868dd39acd376b52b7cbb5eabd14a1b1f43bb806adf199f51fea29e770720e63a8f043e231672464013d0 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/xindex + +name xindex.x86_64-solaris +category Package +revision 49312 +shortdesc x86_64-solaris files of xindex +containersize 340 +containerchecksum d720afb37a8e48f58be2d88e6469b2464a102382ae64bf458d9bbf6f385daeab98ca708b9ab13daa23e3efc7c5b2ecfcc31cdf36818ab52b93e15137cd3cfbaa +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/xindex + +name xindy +category TLCore +revision 59003 +shortdesc A general-purpose index processor +longdesc Xindy was developed after an impasse had been encountered in +longdesc the attempt to complete internationalisation of makeindex. +longdesc Xindy can be used to process indexes for documents marked up +longdesc using (La)TeX, Nroff family and SGML-based languages. Xindy is +longdesc highly configurable, both in markup terms and in terms of the +longdesc collating order of the text being processed. +depend xindy.ARCH +containersize 143100 +containerchecksum a76915adcdabe35c67c1176e0e89505f45faed119e787020c2e9fdb3c405d7dd2deb8b49324589ac11ccfbba50323f52530c99a02e386c3067ed824974c46185 +doccontainersize 461176 +doccontainerchecksum 9811baa00a26895231bb18e2e77fd481763a268af6335e1fa195b62f71b29fc0780cc806ab844d91d309e08bfc1b5063f84c01b40035d62fcd01c2fdf07eb7c8 +docfiles size=188 + texmf-dist/doc/man/man1/tex2xindy.1 + texmf-dist/doc/man/man1/tex2xindy.man1.pdf + texmf-dist/doc/man/man1/texindy.1 + texmf-dist/doc/man/man1/texindy.man1.pdf + texmf-dist/doc/man/man1/xindy.1 + texmf-dist/doc/man/man1/xindy.man1.pdf + texmf-dist/doc/xindy/README + texmf-dist/doc/xindy/alphabets-doc.pdf + texmf-dist/doc/xindy/dataflow.gif + texmf-dist/doc/xindy/faq-1.html + texmf-dist/doc/xindy/faq-2.html + texmf-dist/doc/xindy/faq-3.html + texmf-dist/doc/xindy/faq-4.html + texmf-dist/doc/xindy/faq.html details="Xindy FAQ, or xindy by topic" + texmf-dist/doc/xindy/index.gif + texmf-dist/doc/xindy/makeindex4.pdf + texmf-dist/doc/xindy/manual-1.html + texmf-dist/doc/xindy/manual-2.html + texmf-dist/doc/xindy/manual-3.html + texmf-dist/doc/xindy/manual-4.html + texmf-dist/doc/xindy/manual-5.html + texmf-dist/doc/xindy/manual-6.html + texmf-dist/doc/xindy/manual-7.html + texmf-dist/doc/xindy/manual.html details="Xindy reference manual" + texmf-dist/doc/xindy/mappings.gif + texmf-dist/doc/xindy/next.gif + texmf-dist/doc/xindy/prev.gif + texmf-dist/doc/xindy/style-tutorial-1.html + texmf-dist/doc/xindy/style-tutorial-2.html + texmf-dist/doc/xindy/style-tutorial-3.html + texmf-dist/doc/xindy/style-tutorial-4.html + texmf-dist/doc/xindy/style-tutorial.html + texmf-dist/doc/xindy/style-tutorial/ex1.raw + texmf-dist/doc/xindy/style-tutorial/ex1.tex + texmf-dist/doc/xindy/style-tutorial/ex2.raw + texmf-dist/doc/xindy/style-tutorial/ex2.tex + texmf-dist/doc/xindy/style-tutorial/index.tex + texmf-dist/doc/xindy/style-tutorial/style1.xdy + texmf-dist/doc/xindy/style-tutorial/style2.xdy + texmf-dist/doc/xindy/tex2xindy.pdf + texmf-dist/doc/xindy/texindy.pdf + texmf-dist/doc/xindy/toc.gif + texmf-dist/doc/xindy/xindy.pdf +runfiles size=920 + texmf-dist/scripts/xindy/texindy.pl + texmf-dist/scripts/xindy/xindy.pl + texmf-dist/xindy/VERSION + texmf-dist/xindy/modules/base/book-order.xdy + texmf-dist/xindy/modules/base/ff-ranges-only.xdy + texmf-dist/xindy/modules/base/ff-ranges.xdy + texmf-dist/xindy/modules/base/german-sty.xdy + texmf-dist/xindy/modules/base/ignore-hyphen.xdy + texmf-dist/xindy/modules/base/ignore-punctuation.xdy + texmf-dist/xindy/modules/base/keep-blanks.xdy + texmf-dist/xindy/modules/base/latex-loc-fmts.xdy + texmf-dist/xindy/modules/base/latex.xdy + texmf-dist/xindy/modules/base/latin-lettergroups.xdy + texmf-dist/xindy/modules/base/letter-order.xdy + texmf-dist/xindy/modules/base/makeindex.xdy + texmf-dist/xindy/modules/base/numeric-sort.xdy + texmf-dist/xindy/modules/base/page-ranges.xdy + texmf-dist/xindy/modules/base/tex.xdy + texmf-dist/xindy/modules/base/texindy.xdy + texmf-dist/xindy/modules/base/word-order.xdy + texmf-dist/xindy/modules/class/pagenums.xdy + texmf-dist/xindy/modules/lang/albanian/latin1-lang.xdy + texmf-dist/xindy/modules/lang/albanian/latin1-test.xdy + texmf-dist/xindy/modules/lang/albanian/latin1.xdy + texmf-dist/xindy/modules/lang/albanian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/albanian/utf8-test.xdy + texmf-dist/xindy/modules/lang/albanian/utf8.xdy + texmf-dist/xindy/modules/lang/belarusian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/belarusian/cp1251.xdy + texmf-dist/xindy/modules/lang/belarusian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/belarusian/iso88595.xdy + texmf-dist/xindy/modules/lang/belarusian/isoir111-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/isoir111-test.xdy + texmf-dist/xindy/modules/lang/belarusian/isoir111.xdy + texmf-dist/xindy/modules/lang/belarusian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/utf8-test.xdy + texmf-dist/xindy/modules/lang/belarusian/utf8.xdy + texmf-dist/xindy/modules/lang/bulgarian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/cp1251.xdy + texmf-dist/xindy/modules/lang/bulgarian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/iso88595.xdy + texmf-dist/xindy/modules/lang/bulgarian/koi8-r-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/koi8-r-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/koi8-r.xdy + texmf-dist/xindy/modules/lang/bulgarian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/utf8-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/utf8.xdy + texmf-dist/xindy/modules/lang/croatian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/croatian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/croatian/cp1250.xdy + texmf-dist/xindy/modules/lang/croatian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/croatian/latin2-test.xdy + texmf-dist/xindy/modules/lang/croatian/latin2.xdy + texmf-dist/xindy/modules/lang/croatian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/croatian/utf8-test.xdy + texmf-dist/xindy/modules/lang/croatian/utf8.xdy + texmf-dist/xindy/modules/lang/czech/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/czech/cp1250-test.xdy + texmf-dist/xindy/modules/lang/czech/cp1250.xdy + texmf-dist/xindy/modules/lang/czech/latin2-lang.xdy + texmf-dist/xindy/modules/lang/czech/latin2-test.xdy + texmf-dist/xindy/modules/lang/czech/latin2.xdy + texmf-dist/xindy/modules/lang/czech/utf8-lang.xdy + texmf-dist/xindy/modules/lang/czech/utf8-test.xdy + texmf-dist/xindy/modules/lang/czech/utf8.xdy + texmf-dist/xindy/modules/lang/danish/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/danish/cp1252-test.xdy + texmf-dist/xindy/modules/lang/danish/cp1252.xdy + texmf-dist/xindy/modules/lang/danish/latin9-lang.xdy + texmf-dist/xindy/modules/lang/danish/latin9-test.xdy + texmf-dist/xindy/modules/lang/danish/latin9.xdy + texmf-dist/xindy/modules/lang/danish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/danish/utf8-test.xdy + texmf-dist/xindy/modules/lang/danish/utf8.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-latin1-lang.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-latin1-test.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-latin1.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-utf8-lang.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-utf8-test.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-utf8.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-y-utf8-lang.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-y-utf8-test.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-y-utf8.xdy + texmf-dist/xindy/modules/lang/english/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/english/cp1252-test.xdy + texmf-dist/xindy/modules/lang/english/cp1252.xdy + texmf-dist/xindy/modules/lang/english/latin9-lang.xdy + texmf-dist/xindy/modules/lang/english/latin9-test.xdy + texmf-dist/xindy/modules/lang/english/latin9.xdy + texmf-dist/xindy/modules/lang/english/utf8-lang.xdy + texmf-dist/xindy/modules/lang/english/utf8-test.xdy + texmf-dist/xindy/modules/lang/english/utf8.xdy + texmf-dist/xindy/modules/lang/esperanto/latin3-lang.xdy + texmf-dist/xindy/modules/lang/esperanto/latin3-test.xdy + texmf-dist/xindy/modules/lang/esperanto/latin3.xdy + texmf-dist/xindy/modules/lang/esperanto/utf8-lang.xdy + texmf-dist/xindy/modules/lang/esperanto/utf8-test.xdy + texmf-dist/xindy/modules/lang/esperanto/utf8.xdy + texmf-dist/xindy/modules/lang/estonian/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/estonian/cp1252-test.xdy + texmf-dist/xindy/modules/lang/estonian/cp1252.xdy + texmf-dist/xindy/modules/lang/estonian/latin9-lang.xdy + texmf-dist/xindy/modules/lang/estonian/latin9-test.xdy + texmf-dist/xindy/modules/lang/estonian/latin9.xdy + texmf-dist/xindy/modules/lang/estonian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/estonian/utf8-test.xdy + texmf-dist/xindy/modules/lang/estonian/utf8.xdy + texmf-dist/xindy/modules/lang/finnish/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/finnish/cp1252-test.xdy + texmf-dist/xindy/modules/lang/finnish/cp1252.xdy + texmf-dist/xindy/modules/lang/finnish/latin9-lang.xdy + texmf-dist/xindy/modules/lang/finnish/latin9-test.xdy + texmf-dist/xindy/modules/lang/finnish/latin9.xdy + texmf-dist/xindy/modules/lang/finnish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/finnish/utf8-test.xdy + texmf-dist/xindy/modules/lang/finnish/utf8.xdy + texmf-dist/xindy/modules/lang/french/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/french/cp1252-test.xdy + texmf-dist/xindy/modules/lang/french/cp1252.xdy + texmf-dist/xindy/modules/lang/french/latin9-lang.xdy + texmf-dist/xindy/modules/lang/french/latin9-test.xdy + texmf-dist/xindy/modules/lang/french/latin9.xdy + texmf-dist/xindy/modules/lang/french/utf8-lang.xdy + texmf-dist/xindy/modules/lang/french/utf8-test.xdy + texmf-dist/xindy/modules/lang/french/utf8.xdy + texmf-dist/xindy/modules/lang/general/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/general/cp1252-test.xdy + texmf-dist/xindy/modules/lang/general/cp1252.xdy + texmf-dist/xindy/modules/lang/general/cp850-lang.xdy + texmf-dist/xindy/modules/lang/general/cp850-test.xdy + texmf-dist/xindy/modules/lang/general/cp850.xdy + texmf-dist/xindy/modules/lang/general/latin9-lang.xdy + texmf-dist/xindy/modules/lang/general/latin9-test.xdy + texmf-dist/xindy/modules/lang/general/latin9.xdy + texmf-dist/xindy/modules/lang/general/utf8-lang.xdy + texmf-dist/xindy/modules/lang/general/utf8-test.xdy + texmf-dist/xindy/modules/lang/general/utf8.xdy + texmf-dist/xindy/modules/lang/georgian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/georgian/utf8-test.xdy + texmf-dist/xindy/modules/lang/georgian/utf8.xdy + texmf-dist/xindy/modules/lang/german/braille-utf8-lang.xdy + texmf-dist/xindy/modules/lang/german/braille-utf8-test.xdy + texmf-dist/xindy/modules/lang/german/braille-utf8.xdy + texmf-dist/xindy/modules/lang/german/din5007-latin1-lang.xdy + texmf-dist/xindy/modules/lang/german/din5007-latin1-test.xdy + texmf-dist/xindy/modules/lang/german/din5007-latin1.xdy + texmf-dist/xindy/modules/lang/german/din5007-utf8-lang.xdy + texmf-dist/xindy/modules/lang/german/din5007-utf8-test.xdy + texmf-dist/xindy/modules/lang/german/din5007-utf8.xdy + texmf-dist/xindy/modules/lang/german/din5007.xdy + texmf-dist/xindy/modules/lang/german/duden-latin1-lang.xdy + texmf-dist/xindy/modules/lang/german/duden-latin1-test.xdy + texmf-dist/xindy/modules/lang/german/duden-latin1.xdy + texmf-dist/xindy/modules/lang/german/duden-utf8-lang.xdy + texmf-dist/xindy/modules/lang/german/duden-utf8-test.xdy + texmf-dist/xindy/modules/lang/german/duden-utf8.xdy + texmf-dist/xindy/modules/lang/german/duden.xdy + texmf-dist/xindy/modules/lang/german/tex.xdy + texmf-dist/xindy/modules/lang/greek/iso88597-lang.xdy + texmf-dist/xindy/modules/lang/greek/iso88597-test.xdy + texmf-dist/xindy/modules/lang/greek/iso88597.xdy + texmf-dist/xindy/modules/lang/greek/polytonic-utf8-lang.xdy + texmf-dist/xindy/modules/lang/greek/polytonic-utf8-test.xdy + texmf-dist/xindy/modules/lang/greek/polytonic-utf8.xdy + texmf-dist/xindy/modules/lang/greek/translit-latin4-lang.xdy + texmf-dist/xindy/modules/lang/greek/translit-latin4-test.xdy + texmf-dist/xindy/modules/lang/greek/translit-latin4.xdy + texmf-dist/xindy/modules/lang/greek/translit-utf8-lang.xdy + texmf-dist/xindy/modules/lang/greek/translit-utf8-test.xdy + texmf-dist/xindy/modules/lang/greek/translit-utf8.xdy + texmf-dist/xindy/modules/lang/greek/utf8-lang.xdy + texmf-dist/xindy/modules/lang/greek/utf8-test.xdy + texmf-dist/xindy/modules/lang/greek/utf8.xdy + texmf-dist/xindy/modules/lang/gypsy/northrussian-utf8-lang.xdy + texmf-dist/xindy/modules/lang/gypsy/northrussian-utf8-test.xdy + texmf-dist/xindy/modules/lang/gypsy/northrussian-utf8.xdy + texmf-dist/xindy/modules/lang/hausa/utf8-lang.xdy + texmf-dist/xindy/modules/lang/hausa/utf8-test.xdy + texmf-dist/xindy/modules/lang/hausa/utf8.xdy + texmf-dist/xindy/modules/lang/hebrew/iso88598-lang.xdy + texmf-dist/xindy/modules/lang/hebrew/iso88598-test.xdy + texmf-dist/xindy/modules/lang/hebrew/iso88598.xdy + texmf-dist/xindy/modules/lang/hebrew/utf8-lang.xdy + texmf-dist/xindy/modules/lang/hebrew/utf8-test.xdy + texmf-dist/xindy/modules/lang/hebrew/utf8.xdy + texmf-dist/xindy/modules/lang/hungarian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/hungarian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/hungarian/cp1250.xdy + texmf-dist/xindy/modules/lang/hungarian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/hungarian/latin2-test.xdy + texmf-dist/xindy/modules/lang/hungarian/latin2.xdy + texmf-dist/xindy/modules/lang/hungarian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/hungarian/utf8-test.xdy + texmf-dist/xindy/modules/lang/hungarian/utf8.xdy + texmf-dist/xindy/modules/lang/icelandic/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/icelandic/cp1252-test.xdy + texmf-dist/xindy/modules/lang/icelandic/cp1252.xdy + texmf-dist/xindy/modules/lang/icelandic/latin9-lang.xdy + texmf-dist/xindy/modules/lang/icelandic/latin9-test.xdy + texmf-dist/xindy/modules/lang/icelandic/latin9.xdy + texmf-dist/xindy/modules/lang/icelandic/utf8-lang.xdy + texmf-dist/xindy/modules/lang/icelandic/utf8-test.xdy + texmf-dist/xindy/modules/lang/icelandic/utf8.xdy + texmf-dist/xindy/modules/lang/italian/latin1-lang.xdy + texmf-dist/xindy/modules/lang/italian/latin1-test.xdy + texmf-dist/xindy/modules/lang/italian/latin1.xdy + texmf-dist/xindy/modules/lang/italian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/italian/utf8-test.xdy + texmf-dist/xindy/modules/lang/italian/utf8.xdy + texmf-dist/xindy/modules/lang/klingon/utf8-lang.xdy + texmf-dist/xindy/modules/lang/klingon/utf8-test.xdy + texmf-dist/xindy/modules/lang/klingon/utf8.xdy + texmf-dist/xindy/modules/lang/korean/utf8-lang.xdy + texmf-dist/xindy/modules/lang/korean/utf8.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5-test.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-utf8-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-utf8-test.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-utf8.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-latin5-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-latin5-test.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-latin5.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-utf8-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-utf8-test.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-utf8.xdy + texmf-dist/xindy/modules/lang/latin/caseisrt.xdy + texmf-dist/xindy/modules/lang/latin/letgroup.xdy + texmf-dist/xindy/modules/lang/latin/utf8-lang.xdy + texmf-dist/xindy/modules/lang/latin/utf8-test.xdy + texmf-dist/xindy/modules/lang/latin/utf8.xdy + texmf-dist/xindy/modules/lang/latvian/latin4-lang.xdy + texmf-dist/xindy/modules/lang/latvian/latin4-test.xdy + texmf-dist/xindy/modules/lang/latvian/latin4.xdy + texmf-dist/xindy/modules/lang/latvian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/latvian/utf8-test.xdy + texmf-dist/xindy/modules/lang/latvian/utf8.xdy + texmf-dist/xindy/modules/lang/lithuanian/latin4-lang.xdy + texmf-dist/xindy/modules/lang/lithuanian/latin4-test.xdy + texmf-dist/xindy/modules/lang/lithuanian/latin4.xdy + texmf-dist/xindy/modules/lang/lithuanian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/lithuanian/utf8-test.xdy + texmf-dist/xindy/modules/lang/lithuanian/utf8.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/cp1250.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/latin2-test.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/latin2.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/utf8-test.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/utf8.xdy + texmf-dist/xindy/modules/lang/macedonian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/macedonian/cp1251.xdy + texmf-dist/xindy/modules/lang/macedonian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/macedonian/iso88595.xdy + texmf-dist/xindy/modules/lang/macedonian/isoir111-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/isoir111-test.xdy + texmf-dist/xindy/modules/lang/macedonian/isoir111.xdy + texmf-dist/xindy/modules/lang/macedonian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/utf8-test.xdy + texmf-dist/xindy/modules/lang/macedonian/utf8.xdy + texmf-dist/xindy/modules/lang/mongolian/cyrillic-utf8-lang.xdy + texmf-dist/xindy/modules/lang/mongolian/cyrillic-utf8-test.xdy + texmf-dist/xindy/modules/lang/mongolian/cyrillic-utf8.xdy + texmf-dist/xindy/modules/lang/norwegian/latin1-lang.xdy + texmf-dist/xindy/modules/lang/norwegian/latin1-test.xdy + texmf-dist/xindy/modules/lang/norwegian/latin1.xdy + texmf-dist/xindy/modules/lang/norwegian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/norwegian/utf8-test.xdy + texmf-dist/xindy/modules/lang/norwegian/utf8.xdy + texmf-dist/xindy/modules/lang/persian/README + texmf-dist/xindy/modules/lang/persian/source/make-rules.pl + texmf-dist/xindy/modules/lang/persian/source/test.xdy + texmf-dist/xindy/modules/lang/persian/source/variant1-utf8.pl.in + texmf-dist/xindy/modules/lang/persian/source/variant2-utf8.pl.in + texmf-dist/xindy/modules/lang/persian/source/variant3-utf8.pl.in + texmf-dist/xindy/modules/lang/persian/variant1-utf8-lang.xdy + texmf-dist/xindy/modules/lang/persian/variant1-utf8-test.xdy + texmf-dist/xindy/modules/lang/persian/variant1-utf8.xdy + texmf-dist/xindy/modules/lang/persian/variant2-utf8-lang.xdy + texmf-dist/xindy/modules/lang/persian/variant2-utf8-test.xdy + texmf-dist/xindy/modules/lang/persian/variant2-utf8.xdy + texmf-dist/xindy/modules/lang/persian/variant3-utf8-lang.xdy + texmf-dist/xindy/modules/lang/persian/variant3-utf8-test.xdy + texmf-dist/xindy/modules/lang/persian/variant3-utf8.xdy + texmf-dist/xindy/modules/lang/polish/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/polish/cp1250-test.xdy + texmf-dist/xindy/modules/lang/polish/cp1250.xdy + texmf-dist/xindy/modules/lang/polish/latin2-lang.xdy + texmf-dist/xindy/modules/lang/polish/latin2-test.xdy + texmf-dist/xindy/modules/lang/polish/latin2.xdy + texmf-dist/xindy/modules/lang/polish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/polish/utf8-test.xdy + texmf-dist/xindy/modules/lang/polish/utf8.xdy + texmf-dist/xindy/modules/lang/portuguese/latin1-lang.xdy + texmf-dist/xindy/modules/lang/portuguese/latin1-test.xdy + texmf-dist/xindy/modules/lang/portuguese/latin1.xdy + texmf-dist/xindy/modules/lang/portuguese/utf8-lang.xdy + texmf-dist/xindy/modules/lang/portuguese/utf8-test.xdy + texmf-dist/xindy/modules/lang/portuguese/utf8.xdy + texmf-dist/xindy/modules/lang/romanian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/romanian/latin2-test.xdy + texmf-dist/xindy/modules/lang/romanian/latin2.xdy + texmf-dist/xindy/modules/lang/romanian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/romanian/utf8-test.xdy + texmf-dist/xindy/modules/lang/romanian/utf8.xdy + texmf-dist/xindy/modules/lang/russian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/russian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/russian/cp1251.xdy + texmf-dist/xindy/modules/lang/russian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/russian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/russian/iso88595.xdy + texmf-dist/xindy/modules/lang/russian/koi8-r-lang.xdy + texmf-dist/xindy/modules/lang/russian/koi8-r-test.xdy + texmf-dist/xindy/modules/lang/russian/koi8-r.xdy + texmf-dist/xindy/modules/lang/russian/translit-iso-utf8-lang.xdy + texmf-dist/xindy/modules/lang/russian/translit-iso-utf8-test.xdy + texmf-dist/xindy/modules/lang/russian/translit-iso-utf8.xdy + texmf-dist/xindy/modules/lang/russian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/russian/utf8-test.xdy + texmf-dist/xindy/modules/lang/russian/utf8.xdy + texmf-dist/xindy/modules/lang/serbian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/serbian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/serbian/cp1251.xdy + texmf-dist/xindy/modules/lang/serbian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/serbian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/serbian/iso88595.xdy + texmf-dist/xindy/modules/lang/serbian/isoir111-lang.xdy + texmf-dist/xindy/modules/lang/serbian/isoir111-test.xdy + texmf-dist/xindy/modules/lang/serbian/isoir111.xdy + texmf-dist/xindy/modules/lang/serbian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/serbian/utf8-test.xdy + texmf-dist/xindy/modules/lang/serbian/utf8.xdy + texmf-dist/xindy/modules/lang/slovak/large-cp1250-lang.xdy + texmf-dist/xindy/modules/lang/slovak/large-cp1250-test.xdy + texmf-dist/xindy/modules/lang/slovak/large-cp1250.xdy + texmf-dist/xindy/modules/lang/slovak/large-latin2-lang.xdy + texmf-dist/xindy/modules/lang/slovak/large-latin2-test.xdy + texmf-dist/xindy/modules/lang/slovak/large-latin2.xdy + texmf-dist/xindy/modules/lang/slovak/large-utf8-lang.xdy + texmf-dist/xindy/modules/lang/slovak/large-utf8-test.xdy + texmf-dist/xindy/modules/lang/slovak/large-utf8.xdy + texmf-dist/xindy/modules/lang/slovak/small-cp1250-lang.xdy + texmf-dist/xindy/modules/lang/slovak/small-cp1250-test.xdy + texmf-dist/xindy/modules/lang/slovak/small-cp1250.xdy + texmf-dist/xindy/modules/lang/slovak/small-latin2-lang.xdy + texmf-dist/xindy/modules/lang/slovak/small-latin2-test.xdy + texmf-dist/xindy/modules/lang/slovak/small-latin2.xdy + texmf-dist/xindy/modules/lang/slovak/small-utf8-lang.xdy + texmf-dist/xindy/modules/lang/slovak/small-utf8-test.xdy + texmf-dist/xindy/modules/lang/slovak/small-utf8.xdy + texmf-dist/xindy/modules/lang/slovenian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/slovenian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/slovenian/cp1250.xdy + texmf-dist/xindy/modules/lang/slovenian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/slovenian/latin2-test.xdy + texmf-dist/xindy/modules/lang/slovenian/latin2.xdy + texmf-dist/xindy/modules/lang/slovenian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/slovenian/utf8-test.xdy + texmf-dist/xindy/modules/lang/slovenian/utf8.xdy + texmf-dist/xindy/modules/lang/spanish/modern-latin1-lang.xdy + texmf-dist/xindy/modules/lang/spanish/modern-latin1-test.xdy + texmf-dist/xindy/modules/lang/spanish/modern-latin1.xdy + texmf-dist/xindy/modules/lang/spanish/modern-utf8-lang.xdy + texmf-dist/xindy/modules/lang/spanish/modern-utf8-test.xdy + texmf-dist/xindy/modules/lang/spanish/modern-utf8.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-latin1-lang.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-latin1-test.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-latin1.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-utf8-lang.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-utf8-test.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-utf8.xdy + texmf-dist/xindy/modules/lang/swedish/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/swedish/cp1252-test.xdy + texmf-dist/xindy/modules/lang/swedish/cp1252.xdy + texmf-dist/xindy/modules/lang/swedish/latin9-lang.xdy + texmf-dist/xindy/modules/lang/swedish/latin9-test.xdy + texmf-dist/xindy/modules/lang/swedish/latin9.xdy + texmf-dist/xindy/modules/lang/swedish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/swedish/utf8-test.xdy + texmf-dist/xindy/modules/lang/swedish/utf8.xdy + texmf-dist/xindy/modules/lang/turkish/latin3-lang.xdy + texmf-dist/xindy/modules/lang/turkish/latin3-test.xdy + texmf-dist/xindy/modules/lang/turkish/latin3.xdy + texmf-dist/xindy/modules/lang/turkish/latin5-lang.xdy + texmf-dist/xindy/modules/lang/turkish/latin5-test.xdy + texmf-dist/xindy/modules/lang/turkish/latin5.xdy + texmf-dist/xindy/modules/lang/turkish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/turkish/utf8-test.xdy + texmf-dist/xindy/modules/lang/turkish/utf8.xdy + texmf-dist/xindy/modules/lang/ukrainian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/ukrainian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/ukrainian/cp1251.xdy + texmf-dist/xindy/modules/lang/ukrainian/koi8-u-lang.xdy + texmf-dist/xindy/modules/lang/ukrainian/koi8-u-test.xdy + texmf-dist/xindy/modules/lang/ukrainian/koi8-u.xdy + texmf-dist/xindy/modules/lang/ukrainian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/ukrainian/utf8-test.xdy + texmf-dist/xindy/modules/lang/ukrainian/utf8.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/cp1250.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/latin2-test.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/latin2.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/utf8-test.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/utf8.xdy + texmf-dist/xindy/modules/lang/vietnamese/utf8-lang.xdy + texmf-dist/xindy/modules/lang/vietnamese/utf8-test.xdy + texmf-dist/xindy/modules/lang/vietnamese/utf8.xdy + texmf-dist/xindy/modules/ord/letorder.xdy + texmf-dist/xindy/modules/rules/isolatin1-exchange.xdy + texmf-dist/xindy/modules/rules/isolatin1-tolower.xdy + texmf-dist/xindy/modules/rules/latin-exchange.xdy + texmf-dist/xindy/modules/rules/latin-tolower.xdy + texmf-dist/xindy/modules/styles/basic.xdy + texmf-dist/xindy/modules/styles/makeidx.xdy + texmf-dist/xindy/modules/tex/inputenc/cp1250.xdy + texmf-dist/xindy/modules/tex/inputenc/cp1251.xdy + texmf-dist/xindy/modules/tex/inputenc/cp1252.xdy + texmf-dist/xindy/modules/tex/inputenc/cp437.xdy + texmf-dist/xindy/modules/tex/inputenc/cp850.xdy + texmf-dist/xindy/modules/tex/inputenc/cp855.xdy + texmf-dist/xindy/modules/tex/inputenc/cp866.xdy + texmf-dist/xindy/modules/tex/inputenc/iso88595.xdy + texmf-dist/xindy/modules/tex/inputenc/isoir111.xdy + texmf-dist/xindy/modules/tex/inputenc/koi8-r.xdy + texmf-dist/xindy/modules/tex/inputenc/koi8-u.xdy + texmf-dist/xindy/modules/tex/inputenc/latin.xdy + texmf-dist/xindy/modules/tex/inputenc/latin1.xdy + texmf-dist/xindy/modules/tex/inputenc/latin2.xdy + texmf-dist/xindy/modules/tex/inputenc/latin3.xdy + texmf-dist/xindy/modules/tex/inputenc/utf8.xdy +catalogue-contact-home http://www.xindy.org +catalogue-ctan /indexing/xindy/base +catalogue-license gpl +catalogue-topics index +catalogue-version 2.5.1 + +name xindy-persian +category Package +revision 59013 +shortdesc Support for the Persian language in xindy +relocated 1 +longdesc The package offers Persian language support for indexing using +longdesc xindy. +containersize 432 +containerchecksum 07313253d80b5ed6494e1189088908e03590424c7d24038a437dcbe83637db9e426fa0989fa202f25f62e112cc77df3c4acef111bda6c8b44dc2b2660af959da +doccontainersize 924 +doccontainerchecksum 3868c7f2c20e22cfb3b1ffc61c830581d774ca909c4fc450586ed0bc82a091546efc46540a883e667ac5ac7d292a4786019384afa741599634a2fc05975c36e7 +docfiles size=3 + RELOC/doc/support/xindy-persian/variant1-utf8-doc.tex + RELOC/doc/support/xindy-persian/variant2-utf8-doc.tex + RELOC/doc/support/xindy-persian/variant3-utf8-doc.tex +catalogue-contact-bugs https://github.com/persiantex/xindy-persian/issues +catalogue-contact-repository https://github.com/persiantex/xindy-persian +catalogue-ctan /indexing/xindy/contrib/xindy-persian +catalogue-license lppl1.3 +catalogue-topics persian index +catalogue-version 0.8 + +name xindy.aarch64-linux +category TLCore +revision 57930 +shortdesc aarch64-linux files of xindy +containersize 2298872 +containerchecksum 4b7ef06e9aff9d984fbf150569350dedadb658352a61f24ac46767ecf8e554d174bcf6d9f9032d0bdce623f650eb3cad54dc11b129fbf60d350483472427cbef +binfiles arch=aarch64-linux size=1334 + bin/aarch64-linux/tex2xindy + bin/aarch64-linux/texindy + bin/aarch64-linux/xindy + bin/aarch64-linux/xindy.mem + bin/aarch64-linux/xindy.run + +name xindy.amd64-freebsd +category TLCore +revision 47009 +shortdesc amd64-freebsd files of xindy +containersize 1761312 +containerchecksum b0bd38098a9c2b6c33f4a9c664a7b63454b97cfb49fd0bc0b8ed2ea0c32b05d3475490b9e6cb24f73b8b726290adfcd94eedae74d0f35441c845ef4b9188cdab +binfiles arch=amd64-freebsd size=950 + bin/amd64-freebsd/tex2xindy + bin/amd64-freebsd/texindy + bin/amd64-freebsd/xindy + bin/amd64-freebsd/xindy.mem + bin/amd64-freebsd/xindy.run + +name xindy.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of xindy +containersize 1676044 +containerchecksum 8cfea015adba5710532f9a3791f7d50241db15bb0ac9e107c7319edc3830a069043070649ddbc9a93d131b545187368b8a99f956cd9da829de91013dc097a08d +binfiles arch=amd64-netbsd size=879 + bin/amd64-netbsd/tex2xindy + bin/amd64-netbsd/texindy + bin/amd64-netbsd/xindy + bin/amd64-netbsd/xindy.mem + bin/amd64-netbsd/xindy.run + +name xindy.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of xindy +containersize 2302284 +containerchecksum c8c2845b9db717b765c13db05daeb6ffb29ebfcd107fe189601d6d387e299ca9d0e77e672b4183e378b3cc039c7daaaf2c5d27b5f9e6ababaa8ce916ecd31d4f +binfiles arch=armhf-linux size=1069 + bin/armhf-linux/tex2xindy + bin/armhf-linux/texindy + bin/armhf-linux/xindy + bin/armhf-linux/xindy.mem + bin/armhf-linux/xindy.run + +name xindy.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of xindy +containersize 1934576 +containerchecksum 57e84e956b1db97883b93514e83b040b746b6ad52ac4769a42812536cd8b85b61fa7f025099941b1f1854899397630221390b4337911a06f6050c91d077b7bb0 +binfiles arch=i386-cygwin size=942 + bin/i386-cygwin/tex2xindy.exe + bin/i386-cygwin/texindy + bin/i386-cygwin/xindy + bin/i386-cygwin/xindy-lisp.exe + bin/i386-cygwin/xindy.mem + +name xindy.i386-freebsd +category TLCore +revision 47009 +shortdesc i386-freebsd files of xindy +containersize 1624248 +containerchecksum 743d6cdde60ebd384f2d7126b9101fba0316f5add5f76883e164ae73dff1888b3f7245e954cd7214d40b22050856e943ff16ee4864b82fc7dab976138f37b3c2 +binfiles arch=i386-freebsd size=819 + bin/i386-freebsd/tex2xindy + bin/i386-freebsd/texindy + bin/i386-freebsd/xindy + bin/i386-freebsd/xindy.mem + bin/i386-freebsd/xindy.run + +name xindy.i386-linux +category TLCore +revision 47242 +shortdesc i386-linux files of xindy +containersize 2113600 +containerchecksum e2a4f231e6a19443efc714eae3ac181c3c89ead5e399417f7f2ef9f23f4c0347a8f93369008ae1567472cc170ccefe21ef4f4196009832d742416f612a998a75 +binfiles arch=i386-linux size=1008 + bin/i386-linux/tex2xindy + bin/i386-linux/texindy + bin/i386-linux/xindy + bin/i386-linux/xindy.mem + bin/i386-linux/xindy.run + +name xindy.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of xindy +containersize 1677348 +containerchecksum f16b8511fa0690b47b1b01bf574e025cb23967cdf364102007b0fb73eb963d3bcac513bc9045df38986d78f41896970dba34d0f99c0fc7a47a62c0fa78b52a04 +binfiles arch=i386-netbsd size=816 + bin/i386-netbsd/tex2xindy + bin/i386-netbsd/texindy + bin/i386-netbsd/xindy + bin/i386-netbsd/xindy.mem + bin/i386-netbsd/xindy.run + +name xindy.universal-darwin +category TLCore +revision 59070 +shortdesc universal-darwin files of xindy +containersize 2013372 +containerchecksum d898ed4d1e2ae992d13d6a646b3009b5ff401f3de4418dd19e109e7bf77b15fcef054ee6b898147e8957b5ae92af4729e11dd9fddeced024ee213d7ce5c0da04 +binfiles arch=universal-darwin size=988 + bin/universal-darwin/tex2xindy + bin/universal-darwin/texindy + bin/universal-darwin/xindy + bin/universal-darwin/xindy.mem + bin/universal-darwin/xindy.run + +name xindy.win32 +category TLCore +revision 57883 +shortdesc win32 files of xindy +containersize 2112668 +containerchecksum fdf73a7cbc7fefa48aa94f89a4120ec16614ca0432b37997430e73577b190d13010255540fb8715f997093a407fa4af63762345577fb1af1dccdeab853ce1942 +binfiles arch=win32 size=2126 + bin/win32/tex2xindy.exe + bin/win32/texindy.exe + bin/win32/xindy-lisp.exe + bin/win32/xindy.exe + bin/win32/xindy.mem + +name xindy.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of xindy +containersize 1970544 +containerchecksum 45db3016fe4004edfdecd9a937108305444fbf2a5e2b190c7030b37d263f66d146df6a1a780f2bb3d9dcef174e02f753632fc9324dbfc0ace6b27c327768f2c6 +binfiles arch=x86_64-cygwin size=948 + bin/x86_64-cygwin/tex2xindy.exe + bin/x86_64-cygwin/texindy + bin/x86_64-cygwin/xindy + bin/x86_64-cygwin/xindy-lisp.exe + bin/x86_64-cygwin/xindy.mem + +name xindy.x86_64-darwinlegacy +category TLCore +revision 43952 +shortdesc x86_64-darwinlegacy files of xindy +containersize 1845252 +containerchecksum 1f7e070d1c32a815a906e2e0f4c267d8ae49f0b1a2511a0c3b41b4ec881468c76c16bb275b490d01db20bf874d4735e5176be53cbcbb02a31f442f2a8da9d845 +binfiles arch=x86_64-darwinlegacy size=932 + bin/x86_64-darwinlegacy/tex2xindy + bin/x86_64-darwinlegacy/texindy + bin/x86_64-darwinlegacy/xindy + bin/x86_64-darwinlegacy/xindy.mem + bin/x86_64-darwinlegacy/xindy.run + +name xindy.x86_64-linux +category TLCore +revision 58249 +shortdesc x86_64-linux files of xindy +containersize 2248804 +containerchecksum 3476d50bb553b486a7106fef49f93de0505717536d6fc1b2bc955e134732aaef60413851556c348e1c7457b62b90b21564198a6143aae232597c0d51f637e3ef +binfiles arch=x86_64-linux size=1272 + bin/x86_64-linux/tex2xindy + bin/x86_64-linux/texindy + bin/x86_64-linux/xindy + bin/x86_64-linux/xindy.mem + bin/x86_64-linux/xindy.run + +name xint +category Package +revision 59089 +shortdesc Expandable operations on long numbers +relocated 1 +longdesc The xint bundle main modules are: xinttools utilities of +longdesc independent interest such as expandable and non-expandable +longdesc loops, xintcore expandable macros implementing addition, +longdesc subtraction, multiplication, division, and powers for +longdesc arbitrarily long integers, xint extension of xintcore, xintfrac +longdesc extends the scope of xint to decimal numbers, to numbers using +longdesc scientific notation and also to (exact) fractions, xintexpr +longdesc provides expandable parsers of numeric expressions using the +longdesc standard infix notations, parentheses, built-in functions, user +longdesc definable functions and variables (and more ...) which do +longdesc either exact evaluations (also with fractions) or floating +longdesc point evaluations under a user chosen precision. Further +longdesc modules of the bundle are: xintkernel (support macros for all +longdesc the bundle constituents), xintbinhex (conversion to and from +longdesc hexadecimal and binary bases), xintgcd (provides gcd() and +longdesc lcm() functions to xintexpr), xintseries (evaluates numerically +longdesc partial sums of series and power series with fractional +longdesc coefficients), and xintcfrac (dedicated to the computation and +longdesc display of continued fractions). All computations are +longdesc compatible with expansion-only context. The packages may be +longdesc used with Plain TeX, LaTeX, or (a priori) any other macro +longdesc format built upon TeX. +containersize 79376 +containerchecksum a73037ee75ad004eefc64eca1c85137e98e583ab674cd797c7e7029bf4bb4216100e12c980a184e0cd00267f99b68cb444c8326a782889abbfe35a6db716670d +doccontainersize 2108880 +doccontainerchecksum b5c591298bf8dc5981df4319ae9a1f0350aa3941687af895447c263d067efb0ff97191eaae1aa95067e25bdcdb5263fae4ae1d87283b8bf07be01bfd848ed417 +docfiles size=559 + RELOC/doc/generic/xint/CHANGES.html details="Changes (HTML)" + RELOC/doc/generic/xint/README.md details="Readme" + RELOC/doc/generic/xint/sourcexint.pdf details="Documented source code" + RELOC/doc/generic/xint/xint.pdf details="Package documentation" +srccontainersize 370820 +srccontainerchecksum 2e12696cbcc9476a49043b7a8fab02613ba8e9b2604d1ca08dd48dfe6fe66fc70e21eacf011562813666868a6eb7b58793268d02675ccab24946b0d744589632 +srcfiles size=435 + RELOC/source/generic/xint/Makefile + RELOC/source/generic/xint/xint.dtx +runfiles size=162 + RELOC/tex/generic/xint/xint.sty + RELOC/tex/generic/xint/xintbinhex.sty + RELOC/tex/generic/xint/xintcfrac.sty + RELOC/tex/generic/xint/xintcore.sty + RELOC/tex/generic/xint/xintexpr.sty + RELOC/tex/generic/xint/xintfrac.sty + RELOC/tex/generic/xint/xintgcd.sty + RELOC/tex/generic/xint/xintkernel.sty + RELOC/tex/generic/xint/xintlog.sty + RELOC/tex/generic/xint/xintseries.sty + RELOC/tex/generic/xint/xinttools.sty + RELOC/tex/generic/xint/xinttrig.sty +catalogue-alias xintexpr +catalogue-ctan /macros/generic/xint +catalogue-license lppl1.3c +catalogue-topics arithmetic calculation +catalogue-version 1.4e + +name xintsession +category Package +revision 59090 +shortdesc Interactive computing sessions (fractions, floating points, polynomials) +relocated 1 +longdesc This package provides support for interactive computing +longdesc sessions with etex (or pdftex) executed on the command line, on +longdesc the basis of the xintexpr and polexpr packages. Once +longdesc xintsession is loaded, eTeX becomes an interactive computing +longdesc software capable of executing arbitrary precision calculations, +longdesc or exact calculations with arbitrarily big fractions. It can +longdesc also manipulate polynomials as algebraic entities. Numerical +longdesc variables and functions can be defined during the session, and +longdesc each evaluation result is stored in automatically labeled +longdesc variables. A file is automatically created storing inputs and +longdesc outputs. +containersize 5244 +containerchecksum 3d616e01c51e5bb6a12bac4801aa01d30af5d9fdd916c77ebf72468e3bdca82c750723cd7d22e0259e923cd0423df5a63cc41458f875ea5d95716a75b02167bc +doccontainersize 1732 +doccontainerchecksum 634b24ff263513a03ceb4b7d50bc550d3a2ed3a719520cc42d87d4965539b902e75fe2a87e23f399d20f458f0f6820838dc59411509cfe17933e1097a9af0454 +docfiles size=1 + RELOC/doc/plain/xintsession/README.md details="Readme" +runfiles size=4 + RELOC/tex/plain/xintsession/xintsession.tex +catalogue-ctan /macros/plain/contrib/xintsession +catalogue-license lppl1.3c +catalogue-topics maths calculation +catalogue-version 0.2 + +name xits +category Package +revision 55730 +shortdesc A Scientific Times-like font with support for mathematical typesetting +relocated 1 +longdesc XITS is a Times-like font for scientific typesetting with +longdesc proper mathematical support for modern, Unicode and OpenType +longdesc capable TeX engines, namely LuaTeX and XeTeX. For use with +longdesc LuaLaTeX or XeLaTeX, support is available from the fontspec and +longdesc unicode-math packages. +containersize 541240 +containerchecksum 8c47de766f965fcb50399e59d20f030e90a28e2aaac018ab1289a1a26b16cd6c9c7d3fd18f1d2b84fe86a99734bbf2ac9b58bfd723a7854bfe29141ab6acb874 +doccontainersize 6060 +doccontainerchecksum 3c4594f4023f6ae4dd6ac57841720a47f00ae65fcd6930d4e8ec94281a71bf97e7acea26c60d6866304b5018e866ae87554cc470e671d47ede6572da1ac2970d +docfiles size=6 + RELOC/doc/fonts/xits/FONTLOG.txt + RELOC/doc/fonts/xits/OFL.txt + RELOC/doc/fonts/xits/README.txt details="Readme" +runfiles size=358 + RELOC/fonts/opentype/public/xits/XITS-Bold.otf + RELOC/fonts/opentype/public/xits/XITS-BoldItalic.otf + RELOC/fonts/opentype/public/xits/XITS-Italic.otf + RELOC/fonts/opentype/public/xits/XITS-Regular.otf + RELOC/fonts/opentype/public/xits/XITSMath-Bold.otf + RELOC/fonts/opentype/public/xits/XITSMath-Regular.otf +catalogue-also stix asana-math +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-license ofl +catalogue-topics font font-serif font-maths font-symbol-maths font-otf +catalogue-version 1.302 + +name xkcdcolors +category Package +revision 54512 +shortdesc xkcd names of colors +relocated 1 +longdesc In the year 2010, Randall Munroe on posted a really funny and +longdesc nice article on xkcd. He made a very curious experiment: +longdesc showing colors to a lot of people and asking to name each one. +longdesc Afterward, he processed the data and sorted the names for each +longdesc color by popularity -- that means, how many people gave the +longdesc same name to the same color. This package makes the collected +longdesc color names usable with LaTeX. +containersize 8680 +containerchecksum 4c7057d785c565e043daef78f4ddbb5dc307a3caa690044c803059034ef42fc1a14f61c93115b8060c330f480397040ab19b44636e167739a016175af61c2806 +doccontainersize 218124 +doccontainerchecksum ff112f54943d9f6f0e55cd0ef2a9b0cff1e088ea386c7853bfde9cf091b4ab762b38486c565da39fe5f0e63811c2d2b5661dbc5d98b740ffcc08982462214795 +docfiles size=62 + RELOC/doc/latex/xkcdcolors/README.md details="Readme" + RELOC/doc/latex/xkcdcolors/lppl-1-3c_license.txt + RELOC/doc/latex/xkcdcolors/xkcdcolors-manual.pdf details="Package documentation" + RELOC/doc/latex/xkcdcolors/xkcdcolors-manual.tex +runfiles size=6 + RELOC/tex/latex/xkcdcolors/xkcdcolors.sty +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-license lppl1.3c cc0 +catalogue-topics colour amusements +catalogue-version 1.0.1 + +name xkeyval +category Package +revision 57006 +shortdesc Extension of the keyval package +relocated 1 +longdesc This package is an extension of the keyval package and offers +longdesc additional macros for setting keys and declaring and setting +longdesc class or package options. The package allows the programmer to +longdesc specify a prefix to the name of the macros it defines for keys, +longdesc and to define families of key definitions; these all help use +longdesc in documents where several packages define their own sets of +longdesc keys. +containersize 8976 +containerchecksum 39ae2a2d595c6808aab31a1f97caf31418e8aad6c05bec8812b0fca4a69c19eeb88e559940f952309f69a4b2d6342cce804f7d4d2b6270878be51c9b3cdf4ee1 +doccontainersize 392804 +doccontainerchecksum 58a64143df3ca2cfd5b8260dbe5df4900586d3131f7914ea1da9b0a8f53c84e2ce49a6e36c03be3c3a508b4a9f26e61c167c600e73105709d6f36b2acdb6bd2e +docfiles size=137 + RELOC/doc/latex/xkeyval/README details="Package README" + RELOC/doc/latex/xkeyval/xkeyval.bib + RELOC/doc/latex/xkeyval/xkeyval.pdf details="Package documentation" + RELOC/doc/latex/xkeyval/xkveca.cls + RELOC/doc/latex/xkeyval/xkvecb.cls + RELOC/doc/latex/xkeyval/xkvesa.sty + RELOC/doc/latex/xkeyval/xkvesb.sty + RELOC/doc/latex/xkeyval/xkvesc.sty + RELOC/doc/latex/xkeyval/xkvex1.tex + RELOC/doc/latex/xkeyval/xkvex2.tex + RELOC/doc/latex/xkeyval/xkvex3.tex + RELOC/doc/latex/xkeyval/xkvex4.tex + RELOC/doc/latex/xkeyval/xkvpream.ble +srccontainersize 47596 +srccontainerchecksum ba88cb7ecf4e7cf2b3f125c989199abccf8cea300ba291f3dc9ce0f5259534b75bea6af23770e4d772c264eff9267530ce5759b62c33ea5bf998b97996ec2d52 +srcfiles size=54 + RELOC/source/latex/xkeyval/xkeyval.dtx +runfiles size=16 + RELOC/tex/generic/xkeyval/keyval.tex + RELOC/tex/generic/xkeyval/pst-xkey.tex + RELOC/tex/generic/xkeyval/xkeyval.tex + RELOC/tex/generic/xkeyval/xkvtxhdr.tex + RELOC/tex/generic/xkeyval/xkvutils.tex + RELOC/tex/latex/xkeyval/pst-xkey.sty + RELOC/tex/latex/xkeyval/xkeyval.sty + RELOC/tex/latex/xkeyval/xkvltxp.sty + RELOC/tex/latex/xkeyval/xkvview.sty +catalogue-also pst-xkey +catalogue-ctan /macros/latex/contrib/xkeyval +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 2.8 + +name xlop +category Package +revision 56910 +shortdesc Calculates and displays arithmetic operations +relocated 1 +longdesc Xlop (eXtra Large OPeration) will typeset arithmetic problems +longdesc either in-line or "as in school" (using French school +longdesc conventions). So for example, \opadd{2}{3} can give either +longdesc $2+3=5$ or something similar to: \begin{tabular}{r} 2\\ +3\\ +longdesc \hline 5\end{tabular}. Furthermore, numbers may be very large, +longdesc e.g 200 figures (with a very long compilation time). Many other +longdesc features allow to deal with numbers (tests, display, some high +longdesc level operations, etc.) +containersize 16228 +containerchecksum 6d1ebe5d3870a07175b5c07840dd2170f2309790d1b828df69b716aa83db1a35ff70d265a33d8fc0f6ebe0c4385b7fccee8445ab93b2649d3b27bb65e41f87d5 +doccontainersize 535808 +doccontainerchecksum 9e1cdf96a23bd468c2e4f358ade19c509685563376d5a7ffedf5cfc122138b14d1075c7ae8c8a00261f789d4010a9df7dd5b1e6a9db5bc7efb067168e7866540 +docfiles size=241 + RELOC/doc/generic/xlop/LISEZMOI details="Readme" language="fr" + RELOC/doc/generic/xlop/README details="Readme" language="en" + RELOC/doc/generic/xlop/history.txt + RELOC/doc/generic/xlop/xlop-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/xlop/xlop-doc-fr.tex + RELOC/doc/generic/xlop/xlop-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/xlop/xlop-doc.tex +runfiles size=32 + RELOC/tex/generic/xlop/xlop.sty + RELOC/tex/generic/xlop/xlop.tex +catalogue-also longdiv +catalogue-ctan /macros/generic/xlop +catalogue-license lppl1.3 +catalogue-topics maths arithmetic calculation +catalogue-version 0.28 + +name xltabular +category Package +revision 56855 +shortdesc Longtable support with possible X-column specifier +relocated 1 +longdesc This package loads package ltablex, but keeps the current +longdesc tabularx environment as is. The new environment xltabular is a +longdesc combination of longtable and tabularx: Header/footer +longdesc definitions, X-column specifier, and with possible pagebreaks. +containersize 1824 +containerchecksum 6e49b4a2adc351394bf5ab5cc04d532c36196919a4de8be1ecdcc22c6f226a2d035987df9aa70144d701d9fdeae1dfa07280458a934e289a5d1b5976b2be3ce1 +doccontainersize 73560 +doccontainerchecksum daa1f1ee3092d545b3949afa781e40a576a8a3ab1c20e40237d83c14455fcece353dee03161ed1725d3f54c8963ba94c683ae0874a8668c8e5c27ad3b58f227b +docfiles size=27 + RELOC/doc/latex/xltabular/Changes + RELOC/doc/latex/xltabular/README.md details="Readme" + RELOC/doc/latex/xltabular/xltabular-doc.bib + RELOC/doc/latex/xltabular/xltabular-doc.pdf details="Package documentation" + RELOC/doc/latex/xltabular/xltabular-doc.tex + RELOC/doc/latex/xltabular/xltabular-example-hyp.tex + RELOC/doc/latex/xltabular/xltabular-example.inp + RELOC/doc/latex/xltabular/xltabular-example.tex +runfiles size=1 + RELOC/tex/latex/xltabular/xltabular.sty +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-license lppl1.3 +catalogue-topics table table-long +catalogue-version 0.2e + +name xltxtra +category Package +revision 56594 +shortdesc "Extras" for LaTeX users of XeTeX +relocated 1 +longdesc This package was previously used to provide a number of +longdesc features that were useful for typesetting documents with +longdesc XeLaTeX. Many of those features have now been incorporated into +longdesc the fontspec package and other packages, but the package +longdesc persists for backwards compatibility. Nowadays, loading xltxtra +longdesc will: load the fontspec, metalogo, and realscripts packages; +longdesc redefine \showhyphens so it works correctly; and define two +longdesc extra commands: \vfrac and \namedglyph. +depend metalogo +containersize 2516 +containerchecksum ff75c7b2f36f0e3cdc466dde35d83ccbb76c9c95f5d191a5498831247d1d418b69a8f0df8b263eae78e4a13694e628eba64c24e7480c7dbf56948cd5b1504a76 +doccontainersize 100928 +doccontainerchecksum 6fc84121dd3486f5f7744d757520e2b4d7baf83686e2630990be7e72ccb121e5b417779e4682e6e8a566b016a8995f80d7d4c6dfb3d6d2c9f70ed506bee99d64 +docfiles size=26 + RELOC/doc/xelatex/xltxtra/README.md details="Readme" + RELOC/doc/xelatex/xltxtra/xltxtra.pdf details="Package documentation" +srccontainersize 6096 +srccontainerchecksum c177b99366479f6ed5ef935be07fbfc3425b48f2c3d274e175bbde9c63cbcc93ee4bca4c3c2886fdc2894b627332ff7edffa5b1083ad86dcced56bfb0d9fe03f +srcfiles size=6 + RELOC/source/xelatex/xltxtra/xltxtra.dtx + RELOC/source/xelatex/xltxtra/xltxtra.ins +runfiles size=2 + RELOC/tex/xelatex/xltxtra/xltxtra.sty +catalogue-contact-repository https://github.com/wspr/will2e/ +catalogue-ctan /macros/unicodetex/latex/xltxtra +catalogue-license lppl1.3c +catalogue-topics xetex +catalogue-version 0.7 + +name xml2pmx +category Package +revision 57972 +shortdesc Convert MusicXML to PMX and MusiXTeX +longdesc This program translates MusicXML files to input suitable for +longdesc PMX and MusiXTeX processing. This package supports Windows, +longdesc MacOS and Linux systems. +depend xml2pmx.ARCH +containersize 496 +containerchecksum 9545fb5ca0e95788afab79d8a29336f337619adbcac68472bb5de6af6c54187f19bda655232175223168891c064f6fadc67c4ab8f5a0256e2c55e1a65c5e6f6b +doccontainersize 15512 +doccontainerchecksum 973960f65159f5107caa7e9a041dca75f0171fc61f94794c7b7560eb9b6898534974fb8b360a28dfa3a01d422b71618bcaf8aba2ed25ae4d4b9f67d24ab730be +docfiles size=6 + texmf-dist/doc/man/man1/xml2pmx.1 + texmf-dist/doc/man/man1/xml2pmx.man1.pdf +catalogue-contact-home http://icking-music-archive.org/software/htdocs/ +catalogue-contact-support https://www.tug.org/mailman/listinfo/tex-music +catalogue-ctan /support/xml2pmx +catalogue-license gpl3+ +catalogue-topics music + +name xml2pmx.aarch64-linux +category Package +revision 57930 +shortdesc aarch64-linux files of xml2pmx +containersize 47536 +containerchecksum 150ef9fb4f82f0e968ae1a50eef116d41fba79f18e5142550b7804397f3e711b4c595169498252bd8dc1c05360d7e57bfb16f2582189703a3ed994050fcf3b9c +binfiles arch=aarch64-linux size=33 + bin/aarch64-linux/xml2pmx + +name xml2pmx.amd64-freebsd +category Package +revision 57941 +shortdesc amd64-freebsd files of xml2pmx +containersize 46864 +containerchecksum 688015825eea35d07c1f3b234522169c1d33635293a8c7099616359ed19d55e093ab7f10111192e492e36d0c9445606d3946dac4ced3e1d65a4ea05be472043e +binfiles arch=amd64-freebsd size=31 + bin/amd64-freebsd/xml2pmx + +name xml2pmx.amd64-netbsd +category Package +revision 57877 +shortdesc amd64-netbsd files of xml2pmx +containersize 46484 +containerchecksum b88451836f1062115947812f0439d76b4a647e8c7a59c02768480aa7a7f1d1efba5475758b02c39e896d2c7d61bc9dd4ad12f13de969c4e3f738c5fa30a82048 +binfiles arch=amd64-netbsd size=34 + bin/amd64-netbsd/xml2pmx + +name xml2pmx.armhf-linux +category Package +revision 57957 +shortdesc armhf-linux files of xml2pmx +containersize 44984 +containerchecksum f7af2ea58a88b8623dfa5d9aeec8f39c9a578c5dab3cefb2aa7cd8a53e655ac4f68474f9a42d1279207c7670e98d2a107070d6db17c068d89b5bacbe18fab24f +binfiles arch=armhf-linux size=28 + bin/armhf-linux/xml2pmx + +name xml2pmx.i386-cygwin +category Package +revision 58387 +shortdesc i386-cygwin files of xml2pmx +containersize 46464 +containerchecksum dcfdb4dfc7902af4ceea484eeb1e59fa171e2f3160c7dc954665d6b1b98c73e33fcdce692b0a2f592e7ce9321654a534454c0c300f1a6cbe712c0e42f1e31e61 +binfiles arch=i386-cygwin size=30 + bin/i386-cygwin/xml2pmx.exe + +name xml2pmx.i386-freebsd +category Package +revision 57961 +shortdesc i386-freebsd files of xml2pmx +containersize 45880 +containerchecksum 94d59635b618293818e31a0feb9b2dbb8e03da1e708f8f428af02cb02ff8ed0e40225be4b72d634eb21039a1a7c4f82207b3be50a537d5cbdc47f2c0c4d9f7e7 +binfiles arch=i386-freebsd size=29 + bin/i386-freebsd/xml2pmx + +name xml2pmx.i386-linux +category Package +revision 57878 +shortdesc i386-linux files of xml2pmx +containersize 47628 +containerchecksum 9febb31f24a092a62a6b72dfcf8a4ac490aa54aece5c39d96deb72c5189c68a4d16c0fda158dd6cdd9b623b0307d145d0e88283f22235c289309632b3141108f +binfiles arch=i386-linux size=30 + bin/i386-linux/xml2pmx + +name xml2pmx.i386-netbsd +category Package +revision 57877 +shortdesc i386-netbsd files of xml2pmx +containersize 45732 +containerchecksum eef292c8b3f19b7789ba911f0c48743be6441b1a5eff888ba997d6e67ff2f7b917d5fae277ec2166413bd21795ccd13382d643514047ef1fa597ecf11f393764 +binfiles arch=i386-netbsd size=31 + bin/i386-netbsd/xml2pmx + +name xml2pmx.i386-solaris +category Package +revision 57938 +shortdesc i386-solaris files of xml2pmx +containersize 47552 +containerchecksum 9332f04a4340efbcf3b99dc26950f124377e164226ad11e76af3f1e391c9ac9607cab9e7c9e2eef8dadfc91dcbcb00a5e19b706686195034aded39a4c1b0f7ba +binfiles arch=i386-solaris size=29 + bin/i386-solaris/xml2pmx + +name xml2pmx.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of xml2pmx +containersize 68108 +containerchecksum 91ddf7170f9ade21814bf07e360a78f17dd1c31de74938850d8ff84d6c49eafc64adfec8ca03f09960b78f6e5c9b95310ec814188956132e2b94a27bdebf1e94 +binfiles arch=universal-darwin size=78 + bin/universal-darwin/xml2pmx + +name xml2pmx.win32 +category Package +revision 58785 +shortdesc win32 files of xml2pmx +containersize 100788 +containerchecksum efd8808921417513ed973c14b62965e3fcdc1d21c66b70a3be47a615be277679e39ca4f736877f7591336840511e3d10b78bcb7d6cafb988aedaac5be1dc5ad1 +binfiles arch=win32 size=55 + bin/win32/xml2pmx.exe + +name xml2pmx.x86_64-cygwin +category Package +revision 58387 +shortdesc x86_64-cygwin files of xml2pmx +containersize 46920 +containerchecksum 6060d9bea4c149e98daa8ad44e1262460e397cf8b37db9b2966b2ee7dd798d0a96c0ab3a20582c46d5d55a867975d88d560436b36199568bfe886e87456ea053 +binfiles arch=x86_64-cygwin size=30 + bin/x86_64-cygwin/xml2pmx.exe + +name xml2pmx.x86_64-darwinlegacy +category Package +revision 58231 +shortdesc x86_64-darwinlegacy files of xml2pmx +containersize 46304 +containerchecksum 5c6d0bdfba52daca56791ab7aaed7eb6d3d24d140c95f9e78b6953f7b81f787e4dc8be2ed6bfb45bed854c34dd688abd658c52806f89215147ea505c84690dc9 +binfiles arch=x86_64-darwinlegacy size=30 + bin/x86_64-darwinlegacy/xml2pmx + +name xml2pmx.x86_64-linux +category Package +revision 57878 +shortdesc x86_64-linux files of xml2pmx +containersize 46272 +containerchecksum bf5132b2ffea7e648544c85f034216951ae0193d07f42a3b35d9abe789aa045c0d0578dfccf77ef7296fde282ed95dcbd57cf245c9cbdf9b65b527ab34da5961 +binfiles arch=x86_64-linux size=30 + bin/x86_64-linux/xml2pmx + +name xml2pmx.x86_64-linuxmusl +category Package +revision 57878 +shortdesc x86_64-linuxmusl files of xml2pmx +containersize 48080 +containerchecksum 918b2e9bb2f604b4a0a2d8076652bc691fa0c1b3b2086ffbae05fd1ab4da61732a86d1f3245a2227f6d1e3214328581d1af2b80a631f70f58c1c67df7a058e1e +binfiles arch=x86_64-linuxmusl size=33 + bin/x86_64-linuxmusl/xml2pmx + +name xml2pmx.x86_64-solaris +category Package +revision 57938 +shortdesc x86_64-solaris files of xml2pmx +containersize 48576 +containerchecksum 413f9de3dc360a1e5d01d86f9c3c2f4a2cea68b8bfbc09d0309319a81e9736c0375d2ccc709259a85395566d89d093073f558507e33fc467c81fd70b8aad7fca +binfiles arch=x86_64-solaris size=32 + bin/x86_64-solaris/xml2pmx + +name xmltex +category Package +revision 57186 +shortdesc Support for parsing XML documents +longdesc The package provides an implementation of a parser for +longdesc documents matching the XML 1.0 and XML Namespace +longdesc Recommendations. In addition to parsing commands are provided +longdesc to attatch TeX typesetting instructions to the various markup +longdesc elemenets as they are encounted. Sample files for typesetting a +longdesc subset of TEI, MathML, are included. Element and Attribute +longdesc names, as well as character data, may use any characters +longdesc allowed in XML, using UTF-8 or a suitable 8-bit encoding. +depend atbegshi +depend atveryend +depend babel +depend cm +depend dehyph +depend everyshi +depend firstaid +depend hyph-utf8 +depend hyphen-base +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-fonts +depend latexconfig +depend pdftex +depend tex +depend tex-ini-files +depend unicode-data +depend xmltex.ARCH +depend xmltexconfig +execute AddFormat name=pdfxmltex engine=pdftex patterns=language.dat options="*pdfxmltex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,latex,latexconfig,tex-ini-files,xmltexconfig +execute AddFormat name=xmltex engine=pdftex patterns=language.dat options="*xmltex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,latex,latexconfig,tex-ini-files,xmltexconfig +containersize 18264 +containerchecksum e98a3ab9986d63d2605c87463bb32835d8ffcdd93f577b642da8e8f2447b6a74363c3a5799808c35f2e4b099af2789698ea471e04457a31ba8753ec4762e0ead +doccontainersize 17004 +doccontainerchecksum 340859a95a102759494222e0cbf19b7f851c44d4cfeac77cee178b69f576151021de53c32ffb8dcb8ed911dae2eecaac943941481b5cccdfb5302bb8291724fb +docfiles size=32 + texmf-dist/doc/otherformats/xmltex/base/englishutf16.xml + texmf-dist/doc/otherformats/xmltex/base/englishutf8.xml + texmf-dist/doc/otherformats/xmltex/base/langtest.xml + texmf-dist/doc/otherformats/xmltex/base/manual.html details="Package documentation" + texmf-dist/doc/otherformats/xmltex/base/manual.tex + texmf-dist/doc/otherformats/xmltex/base/manual.xml + texmf-dist/doc/otherformats/xmltex/base/manual.xsl + texmf-dist/doc/otherformats/xmltex/base/portugeselatin1.xml + texmf-dist/doc/otherformats/xmltex/base/readme.txt details="Readme" + texmf-dist/doc/otherformats/xmltex/base/russiankoi8.xml + texmf-dist/doc/otherformats/xmltex/base/russianutf8.xml + texmf-dist/doc/otherformats/xmltex/base/testascii.cfg + texmf-dist/doc/otherformats/xmltex/base/testascii.tex + texmf-dist/doc/otherformats/xmltex/base/testascii.xml + texmf-dist/doc/otherformats/xmltex/base/testsec.tex + texmf-dist/doc/otherformats/xmltex/base/testsec.xml +runfiles size=24 + texmf-dist/tex/xmltex/base/iso-8859-1.xmt + texmf-dist/tex/xmltex/base/iso-8859-2.xmt + texmf-dist/tex/xmltex/base/koi8-r.xmt + texmf-dist/tex/xmltex/base/langtest.xmt + texmf-dist/tex/xmltex/base/mathml2.xmt + texmf-dist/tex/xmltex/base/sec.xmt + texmf-dist/tex/xmltex/base/utf-16.xmt + texmf-dist/tex/xmltex/base/windows-1250.xmt + texmf-dist/tex/xmltex/base/xmltex.cfg + texmf-dist/tex/xmltex/base/xmltex.tex +catalogue-contact-repository https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/xmltex/base +catalogue-license lppl +catalogue-topics foreign-import +catalogue-version 0.8 + +name xmltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of xmltex +containersize 340 +containerchecksum 0f6f6e51ab9e95cbaa2cb779f3a50b0ff5019f9dfbfcadfed363292433a9c79ce0f118308e8078de4fcd8d1727b6573597db7ab3d7ebf93833e857a3e4ec0073 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/pdfxmltex + bin/aarch64-linux/xmltex + +name xmltex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of xmltex +containersize 340 +containerchecksum 37e8ac6110e044a26f99fe75d99daca62cc1eacfca71b1fc8277b6aa5363ddf55898a58eb1ab0d730a173356689110ab1c7cf18de77fdb8a93123062cc517b1b +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/pdfxmltex + bin/amd64-freebsd/xmltex + +name xmltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of xmltex +containersize 340 +containerchecksum 91516605fabe52175faa4a9f732ef614570f76ba26ce3bc5f45abe8c546b3c337a95ef41b03d12e0c73c826ae722b5d53b69218f4ca932be82e095a0e857ae1d +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/pdfxmltex + bin/amd64-netbsd/xmltex + +name xmltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of xmltex +containersize 340 +containerchecksum 72b841f5b856e0886b76c360249ad251b15b9ec2f399da5467cdbb5bf959d3a792532d8fa0c7eb4ebd08ad0c2c602460aaa5fe347914644fbbfbe4c8e515a19b +binfiles arch=armhf-linux size=2 + bin/armhf-linux/pdfxmltex + bin/armhf-linux/xmltex + +name xmltex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of xmltex +containersize 340 +containerchecksum 3b23a20e12b2b0f9bf3407d08e5fc17f139e6bb1f15710315d1ed16aabfd91b36dd86c4085cbd32fdbacbc6e19733bb7618e1f3f07eed13c59581c244739ce36 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/pdfxmltex + bin/i386-cygwin/xmltex + +name xmltex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of xmltex +containersize 340 +containerchecksum 84cb48b611a953dbfc66ddb0106aaec628bba785dc1cfd1dec3c307b6296b548a4b56c492d26f3860fbb615a0e1ed8a5f5f264031fa77db4d4f240a9a05c7d51 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/pdfxmltex + bin/i386-freebsd/xmltex + +name xmltex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of xmltex +containersize 336 +containerchecksum 2d49d4f6d2e5231e467608442a3d904789b89e1421f22ccb5862051fcca4b9a76af602e416742614903dae082857824229be8c3f43af2faee3c04473756cc51a +binfiles arch=i386-linux size=2 + bin/i386-linux/pdfxmltex + bin/i386-linux/xmltex + +name xmltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of xmltex +containersize 340 +containerchecksum 4e43994f382c5cac3015ea5cc7b96da86d265e1fe01d3432c0748e32bb3a6b825217d7e9c62403dd1711fc26e6d6d166f1f655a2e51c2a5ed48c22c4ec2e32d9 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/pdfxmltex + bin/i386-netbsd/xmltex + +name xmltex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of xmltex +containersize 340 +containerchecksum 4ee9a4d8077f329b1ca6507f8b93ca11c3d9f174572679ecdbc9bf15f4a668bfcec295254039d08a266fb96bc828c9df24ef7ce0aaa6df28c00c64205fde4fa8 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/pdfxmltex + bin/i386-solaris/xmltex + +name xmltex.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of xmltex +containersize 340 +containerchecksum 8065416253550ee5a93c86acf4ed64f579f465a9265052e6548e9c81b6342500c1171f217ce25734a3967d6c269d97277f9833b6b86b9f6a38fef2238c2d8602 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/pdfxmltex + bin/universal-darwin/xmltex + +name xmltex.win32 +category Package +revision 57883 +shortdesc win32 files of xmltex +containersize 884 +containerchecksum ec8be459202ad08e8357bf49866923ac9be86e87a68eeeb83646d23e9e19f78efd3982f582ecf820a763272059618e00f417eac21ba3a8dfe1aead45426ff7d0 +binfiles arch=win32 size=2 + bin/win32/pdfxmltex.exe + bin/win32/xmltex.exe + +name xmltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of xmltex +containersize 344 +containerchecksum b397e281de0b4dae29d9a580ea00d441eac2c0be7cfbbea78455701ae6eb2629d53209eb9a4f0390c5af6d1b293e7423d6636405fa9c68904c661cc916bb6c04 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/pdfxmltex + bin/x86_64-cygwin/xmltex + +name xmltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of xmltex +containersize 348 +containerchecksum 456e0ef5d30a3db49cb5868496e49717dfab394cd88fc0715ab095f5ab2d2a239a400a61af0da144ee2aca2dbc72a7697b29a4c1ef0142f8e2d43cfa764919f3 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/pdfxmltex + bin/x86_64-darwinlegacy/xmltex + +name xmltex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of xmltex +containersize 336 +containerchecksum 0d400dca8f0a2834d083ee2466b325d243ac5eecb91bef5f579aefaf590f6ef19c0d02fdce5febeb7cb64ac3b180bf39ba4096916a6d27aabda8c84755e4282f +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/pdfxmltex + bin/x86_64-linux/xmltex + +name xmltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of xmltex +containersize 344 +containerchecksum 43d32c4e21b3d85c04ee8be63d135c0abb090f00ff5421625538857e234b97d1cd2b73f9f9d3ff3218fc517362843ed39c8e9887fc00607558b354e7757d3f07 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/pdfxmltex + bin/x86_64-linuxmusl/xmltex + +name xmltex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of xmltex +containersize 344 +containerchecksum 133fa3998d61a88534a2289484d8672ec375584d7f8d0daa966bfe7d978f4530c4f479a5578bf3178764e7f4baf3a9925657f798432f82e093cba5429585794c +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/pdfxmltex + bin/x86_64-solaris/xmltex + +name xmltexconfig +category Package +revision 45845 +shortdesc configuration files for xmltex and pdfxmltex +relocated 1 +containersize 488 +containerchecksum 2620dde42acffee6561f406527794cc62d87c1104135da846b7cd3c7f4109c4d1986d562ea612f2b5246e1863eff86795c4789075f8475d45de00763cfb539fc +runfiles size=2 + RELOC/tex/xmltex/xmltexconfig/pdfxmltex.ini + RELOC/tex/xmltex/xmltexconfig/xmltex.ini + +name xmpincl +category Package +revision 15878 +shortdesc Include eXtensible Metadata Platform data in pdfLaTeX +relocated 1 +longdesc The XMP (eXtensible Metadata platform) is a framework to add +longdesc metadata to digital material to enhance the workflow in +longdesc publication. The essence is that the metadata is stored in an +longdesc XML file, and this XML stream is then embedded in the file to +longdesc which it applies. How you create this XML file is up to you, +longdesc but the author started investigating this because he wanted to +longdesc embed licensing information in the files he created. The +longdesc license the author chose is one of the Creative Commons +longdesc licenses, and their web-site offers this information in a valid +longdesc XML-file, suitable for direct inclusion. +containersize 1828 +containerchecksum 8d9a895a1efe8ce5eac190b8242c7f3e3bff7e433e1336aa7143894fbc5691c7b4fd791bae67fcefe97d16ff131b533f8b0c629580d7b5f9420e9216e932b860 +doccontainersize 98416 +doccontainerchecksum 2757de1bfcbfe9df02d5e667564b1a69205ab86c31f7bcc8ec3f37db0fb1a1f4bb21d7360dbfd771aeafaffa4599becc801df81e339b6f49adafeb38bc1ff5af +docfiles size=31 + RELOC/doc/latex/xmpincl/README details="Package Readme" + RELOC/doc/latex/xmpincl/license.xmp + RELOC/doc/latex/xmpincl/xmpincl.pdf details="Package documentation" +srccontainersize 6572 +srccontainerchecksum 92cdd556f60d8a4186f64800ef5c8a27e331e394ac0120d3e07065688d454ea821839eaaf167bb15980223552160e161cb3c559feffbc4d6657af1019f7c14a2 +srcfiles size=5 + RELOC/source/latex/xmpincl/xmpincl.dtx + RELOC/source/latex/xmpincl/xmpincl.ins +runfiles size=1 + RELOC/tex/latex/xmpincl/xmpincl.sty +catalogue-ctan /macros/latex/contrib/xmpincl +catalogue-license gpl +catalogue-topics metadata pdf-feat +catalogue-version 2.2 + +name xmuthesis +category Package +revision 56614 +shortdesc XMU thesis style +relocated 1 +longdesc This class is designed for XMU thesis's writing. +containersize 49692 +containerchecksum 3c9bdbd54cb99bddb9356586a1ba16d8e0ebe10d0120f6d6e7ae1c60375a41ce9ae9c01eded07b122aa323ddcb0e3ed9c68f6da6e716915f523e77bb343ee665 +doccontainersize 433268 +doccontainerchecksum 07e9b8eeaa864efbe6fb8e1c54e183a65f177b81454a2abc049e2efef8fae1d61a208273fd3cecb9d8bb8d601266f1c4897939c52d43fb5dff92ecdd3855c322 +docfiles size=111 + RELOC/doc/latex/xmuthesis/LICENSE + RELOC/doc/latex/xmuthesis/README.md details="Readme" + RELOC/doc/latex/xmuthesis/xmuthesis.pdf details="Package documentation" +srccontainersize 59228 +srccontainerchecksum 9f3eaaac30cc9f396a3e33f6216b56485c27eb2f855b511642204025c27b40a529aa6dd1952c753a1fd50474ee6c5ef020f859dcc71e07ece39df090ed7ef46a +srcfiles size=50 + RELOC/source/latex/xmuthesis/xmuthesis.dtx +runfiles size=43 + RELOC/tex/latex/xmuthesis/xmulogo.sty + RELOC/tex/latex/xmuthesis/xmuthesis.cls +catalogue-contact-bugs https://github.com/CamuseCao/XMU-thesis/issues +catalogue-contact-home https://github.com/CamuseCao/XMU-thesis +catalogue-contact-repository https://github.com/CamuseCao/XMU-thesis/releases +catalogue-ctan /macros/latex/contrib/xmuthesis +catalogue-license lppl1.3c +catalogue-topics class dissertation +catalogue-version 0.4.1 + +name xnewcommand +category Package +revision 15878 +shortdesc Define \global and \protected commands with \newcommand +relocated 1 +longdesc The package provides the means of defining \global and (e-TeX) +longdesc \protected commands, within the framework of LaTeX's standard +longdesc \newcommand. +containersize 768 +containerchecksum 3296d6f9b580699e86ee01da444ec9b3cf7b76775f05529cc9c4dd931da5f887c914665651214a8107be612b18cb286ec039ad9ab3de520bd17090b38265d5c9 +doccontainersize 266496 +doccontainerchecksum e03b7027a3956829823e92bd4d8a3000d8f79f26558875ea3837adc9ca4a17ce75d9d4e9136d7ebda7bdc8fbbf4a1b44fc6f71d1bfad710d2e22bba8fab24292 +docfiles size=70 + RELOC/doc/latex/xnewcommand/README details="Readme" + RELOC/doc/latex/xnewcommand/xnewcommand.pdf details="Package documentation" + RELOC/doc/latex/xnewcommand/xnewcommand.tex +runfiles size=1 + RELOC/tex/latex/xnewcommand/xnewcommand.sty +catalogue-ctan /macros/latex/contrib/xnewcommand +catalogue-license lppl +catalogue-topics macro-def +catalogue-version 1.2 + +name xoptarg +category Package +revision 15878 +shortdesc Expandable macros that take an optional argument +relocated 1 +longdesc Commands that take an optional argument are not ordinarily +longdesc expandable; this package allows such commands to be expandable +longdesc provided that they have at least one mandatory argument. +containersize 1840 +containerchecksum 3ee6285ecac00a20781ad530a7ca1ef35a94efdcc31d29084e167cde75c51b4bdd644bfb5d25390c3deef44fa7b09e479b6c616169ab0bee1e83d4e37338e00d +doccontainersize 369900 +doccontainerchecksum 1692c6700b978cd05cde7c0d45e970a4cc8f783d53cb1e2fc57639483e728ef5dcf29bc7563c9ce42eeaba72da93b36e366876494f3680f0fd5e8eada08694bb +docfiles size=97 + RELOC/doc/latex/xoptarg/README details="Readme" + RELOC/doc/latex/xoptarg/xoptarg.pdf details="Package documentation" + RELOC/doc/latex/xoptarg/xoptarg.tex +runfiles size=2 + RELOC/tex/latex/xoptarg/xoptarg.sty +catalogue-ctan /macros/latex/contrib/xoptarg +catalogue-license lppl +catalogue-topics macro-def +catalogue-version 1.0 + +name xpatch +category Package +revision 54563 +shortdesc Extending etoolbox patching commands +relocated 1 +longdesc The package generalises the macro patching commands provided by +longdesc Philipp Lehmann's etoolbox. +containersize 1924 +containerchecksum d96d078066ee7cd39585754b0ed1aa2bd5680f90eb2a879bb2dcb47cfe834094f0b5fa1373ecd7f80f626c1a8a8fd4823525c33fa0e67f63b0beb4031a35956e +doccontainersize 469996 +doccontainerchecksum 49479d5a73beda78852f80f786e559caa49b51a44c79e73d689499429ee177ccc1a93064122c13e5cf4e34f00350df3e18fc131505364dd8cbf218e851249e8f +docfiles size=116 + RELOC/doc/latex/xpatch/README details="Readme" + RELOC/doc/latex/xpatch/xpatch.pdf details="Package documentation" +srccontainersize 7504 +srccontainerchecksum bed0cd07054aa93d1bc328b57792c79ae90c3f5feb5b6f86e76b4b7c4a2b583248c19b9147d268e1dcb16c107b0dc18b34fe13f537b10042839a46a98b5afb25 +srcfiles size=9 + RELOC/source/latex/xpatch/xpatch.dtx + RELOC/source/latex/xpatch/xpatch.ins +runfiles size=3 + RELOC/tex/latex/xpatch/xpatch.sty +catalogue-ctan /macros/latex/contrib/xpatch +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.3 + +name xpdfopen +category TLCore +revision 53998 +shortdesc Commands to control PDF readers, under X11 +longdesc The command-line programs pdfopen and pdfclose allow you to +longdesc control the X Window System version of Adobe's Acrobat Reader +longdesc from the command line or from within a (shell) script. The +longdesc programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf +longdesc and evince. This version derives from one written by Fabrice +longdesc Popineau for Microsoft operating systems. +depend xpdfopen.ARCH +containersize 560 +containerchecksum fe873bb22b94a26720e37671e283e0085619c2129a4568399544ac0df1e5c443a9476590ca7ef76a21409589eb2416a14165b8a48a6182f3773a3009cb7c1a47 +doccontainersize 28180 +doccontainerchecksum bb4be8fe1b4590e74a7573baa1d699895fb62f6b30b05c9c81655001c75ffb43a6d7f92deca337072690ce3297d4ab06f1aca389524c5d5d500a9fce4abd8404 +docfiles size=19 + texmf-dist/doc/man/man1/pdfclose.1 + texmf-dist/doc/man/man1/pdfclose.man1.pdf + texmf-dist/doc/man/man1/pdfopen.1 + texmf-dist/doc/man/man1/pdfopen.man1.pdf +catalogue-ctan /support/xpdfopen +catalogue-license pd +catalogue-topics previewer +catalogue-version 0.86 + +name xpdfopen.aarch64-linux +category TLCore +revision 53999 +shortdesc aarch64-linux files of xpdfopen +containersize 7956 +containerchecksum 969e328e94055a62a0b03ad51773273877355fbcf81aaee8addf20d464449267439a4d0d00e7d877a152b51b26a528b19184f75c39645955db95ac9dff3589f4 +binfiles arch=aarch64-linux size=10 + bin/aarch64-linux/pdfclose + bin/aarch64-linux/pdfopen + +name xpdfopen.amd64-freebsd +category TLCore +revision 57941 +shortdesc amd64-freebsd files of xpdfopen +containersize 8256 +containerchecksum cb4dd4d69c93a3b952a860c36b035be43594921e83313763cf9f7c89f1807c77679bbbb201c625617bd91b4c7cf65023021044e1f4620755fa06ecfdd9d75443 +binfiles arch=amd64-freebsd size=8 + bin/amd64-freebsd/pdfclose + bin/amd64-freebsd/pdfopen + +name xpdfopen.amd64-netbsd +category TLCore +revision 57877 +shortdesc amd64-netbsd files of xpdfopen +containersize 8572 +containerchecksum c6ec3bc7c65f3d2f8bf929e0c7ceab64349618128fcb7a9c63c0abeebb0d2c7fd270c615b5246f003e513a380b1c830b35c25b98566becdfa9dde04ead1e543b +binfiles arch=amd64-netbsd size=10 + bin/amd64-netbsd/pdfclose + bin/amd64-netbsd/pdfopen + +name xpdfopen.armhf-linux +category TLCore +revision 57957 +shortdesc armhf-linux files of xpdfopen +containersize 6628 +containerchecksum 74a785d8c4ef03d90f175f68584bbd22743d3ff40f4cbb90e125f89044713e7990e101b4c4eece6b000deb65effae73fed6f8747db8db76091fcf9c5fa6687db +binfiles arch=armhf-linux size=7 + bin/armhf-linux/pdfclose + bin/armhf-linux/pdfopen + +name xpdfopen.i386-cygwin +category TLCore +revision 58387 +shortdesc i386-cygwin files of xpdfopen +containersize 7804 +containerchecksum 61782cf7d227b9e84ac0c2bd8b6c4c9cb63d4efb925440070d1e3e5682fabb83a0d885ffe3a4f3b106d907da51495ee697fb8276724a17c37f496f70592b8b6c +binfiles arch=i386-cygwin size=9 + bin/i386-cygwin/pdfclose.exe + bin/i386-cygwin/pdfopen.exe + +name xpdfopen.i386-freebsd +category TLCore +revision 57961 +shortdesc i386-freebsd files of xpdfopen +containersize 7568 +containerchecksum a5958d456215e31fc39b830c2340dea6443b7d0468a6b3c6c2ed0292a575b5be8cfee044c2a25767c5a7d413a56d2bc5465c39d2aa8de74a5e0440f6ad4f5feb +binfiles arch=i386-freebsd size=8 + bin/i386-freebsd/pdfclose + bin/i386-freebsd/pdfopen + +name xpdfopen.i386-linux +category TLCore +revision 52917 +shortdesc i386-linux files of xpdfopen +containersize 8028 +containerchecksum 8a47ef709bddb24baac527ec79d8b4fbe4fab1e9680964a0b4c10dacea8c0db95ec09aacded7d5c5ed25de4178c0922f8c51b8e2d5ede2319ea98d46968bc9f8 +binfiles arch=i386-linux size=7 + bin/i386-linux/pdfclose + bin/i386-linux/pdfopen + +name xpdfopen.i386-netbsd +category TLCore +revision 57877 +shortdesc i386-netbsd files of xpdfopen +containersize 8240 +containerchecksum 83f4d6dcf11cd761873327e9e208833e5f995a71e13ea2bf453820519621bdec27b989ae02df65e4130c54a6f5ca15e18e6310f04ce017a441a64883609a62c7 +binfiles arch=i386-netbsd size=8 + bin/i386-netbsd/pdfclose + bin/i386-netbsd/pdfopen + +name xpdfopen.i386-solaris +category TLCore +revision 52917 +shortdesc i386-solaris files of xpdfopen +containersize 8464 +containerchecksum 7571e94465f560a798981b708965ef5fe0fef5defbcd9deb6af5fb35e26d09334ca4a6fddd9415c40d58b294a9ef20aca733ff308851ef3979d9a6b4fca61c63 +binfiles arch=i386-solaris size=8 + bin/i386-solaris/pdfclose + bin/i386-solaris/pdfopen + +name xpdfopen.universal-darwin +category TLCore +revision 57908 +shortdesc universal-darwin files of xpdfopen +containersize 19720 +containerchecksum 0418fc3e844e7d54e8e374f5b74fcc1fead683be43d4c31c0e988cc3df618082cbe4c32b613b5c1ea75dfd6e7ca43442c94e4e321b45a33e4c6c2a5942673267 +binfiles arch=universal-darwin size=60 + bin/universal-darwin/pdfclose + bin/universal-darwin/pdfopen + +name xpdfopen.win32 +category TLCore +revision 57883 +shortdesc win32 files of xpdfopen +containersize 629144 +containerchecksum dc40de47047be78503edcd88c72681027ecfbe893961b1c156251c304a55fd7be7d4a0c8fe163949f1ed5fa3fd79e00d23952df1a143546dc2f7ea90401b1351 +binfiles arch=win32 size=392 + bin/win32/pdfclose.exe + bin/win32/pdfdde.exe + bin/win32/pdfopen.exe + +name xpdfopen.x86_64-cygwin +category TLCore +revision 58387 +shortdesc x86_64-cygwin files of xpdfopen +containersize 8636 +containerchecksum e0099126a16844906f02d4db85b34b9c735261baf2eca3393f723e842679dd2369d703f8c58c948559d5e1ba678e3184b68d18d0aed49df3d3d2e3b542fa5095 +binfiles arch=x86_64-cygwin size=10 + bin/x86_64-cygwin/pdfclose.exe + bin/x86_64-cygwin/pdfopen.exe + +name xpdfopen.x86_64-linux +category TLCore +revision 52917 +shortdesc x86_64-linux files of xpdfopen +containersize 8072 +containerchecksum 2de1dd92bbe8edeea4204058a7146d5142a3f8426ee71882f25ba4db94bc30f77e0f45777501e8613457fff0cedf9dd0d95982a1dd30c572921a86c9fa35a2a8 +binfiles arch=x86_64-linux size=8 + bin/x86_64-linux/pdfclose + bin/x86_64-linux/pdfopen + +name xpdfopen.x86_64-linuxmusl +category TLCore +revision 54264 +shortdesc x86_64-linuxmusl files of xpdfopen +containersize 8268 +containerchecksum 72f7bda0423335a1db15665baa70297c3d239b9543587d28a54330eb20bcc4dccf50367cee398675ce2336a4618f70a5340d5335d889e3f83fec68d57cb93146 +binfiles arch=x86_64-linuxmusl size=10 + bin/x86_64-linuxmusl/pdfclose + bin/x86_64-linuxmusl/pdfopen + +name xpdfopen.x86_64-solaris +category TLCore +revision 52917 +shortdesc x86_64-solaris files of xpdfopen +containersize 9128 +containerchecksum 66f751fb4b4633c3034ed4973326bd57eea635ff36eed19b4143103ff50a4fd05e8fc7330f4e7a2ff6c5dcad8955fc3c4621cc14a3288e42c3b4bbbf040a02d5 +binfiles arch=x86_64-solaris size=10 + bin/x86_64-solaris/pdfclose + bin/x86_64-solaris/pdfopen + +name xpeek +category Package +revision 27442 +shortdesc Define commands that peek ahead in the input stream +relocated 1 +longdesc The package provides tools to help define commands that, like +longdesc \xspace and the LaTeX command \textit, peek at what follows +longdesc them in the command stream and choose appropriate behaviour. +containersize 1396 +containerchecksum dc1dd0534645be0754551b2d3bc146c7e7663f7cc9f2daf40b13a383e13883d25ba46f320317d4e9f251594dccf3a880f5e123683f302638eb3b37018b369ce4 +doccontainersize 554532 +doccontainerchecksum 047080eda80f9134b98196bf8a06e446ef856028aaa0f936da16db7f63be144b404708045d2a49c5bdb70b7a6f0b6b505697e95a5ff8b98b5b4f1ee8b2949367 +docfiles size=149 + RELOC/doc/latex/xpeek/README details="Readme" + RELOC/doc/latex/xpeek/xpeek.pdf details="Package documentation" +srccontainersize 7044 +srccontainerchecksum a7e8c3f165314ab79f8702b8ccc82200398e5d5798815c02a7ae3ea0d70dd521d534c50e93b822e41042eb6a0faea07d5f129f05f427e47c2abcaff3adbba459 +srcfiles size=6 + RELOC/source/latex/xpeek/xpeek.dtx +runfiles size=1 + RELOC/tex/latex/xpeek/xpeek.sty +catalogue-also xspace xpunctuate +catalogue-contact-repository http://github.com/jcsalomon/xpeek +catalogue-ctan /macros/latex/contrib/xpeek +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.2 + +name xpiano +category Package +revision 37604 +shortdesc An extension of the piano package +relocated 1 +longdesc This package provides macros for typesetting virtual keyboards +longdesc limited to two octaves for showing notes represented by a +longdesc colored circle. Optionally, the number used for pitch analysis +longdesc can be shown. It is an extension of piano.sty by Emile +longdesc Daneault, written in expl3 in answer to a couple of questions +longdesc on TeX.StackExchange: +longdesc http://tex.stackexchange.com/questions/162184/ +longdesc http://tex.stackexchange.com/questions/246276/. It features +longdesc extended syntax and several options, like setting the color, +longdesc adding numbers for pitch analysis, one or two octaves, and +longdesc others. +containersize 2812 +containerchecksum 3554bd514e1108649bc98d38dc84951edf17533758325d46726f55d9909d1a3747024aeff62842dc6eb1b5fc760c41a452e207b156bdee06468e9d7732e223b6 +doccontainersize 556172 +doccontainerchecksum 257c484983eed03adc77b1776c9207ff89b4152b817aa09fb57cb41d8f6494af0db191c61b954a7f2a605cb8695fdd0562cbab1e0c48f85329c3ad61fef0e62d +docfiles size=138 + RELOC/doc/latex/xpiano/README.txt + RELOC/doc/latex/xpiano/xpiano.pdf details="Package documentation" +srccontainersize 6324 +srccontainerchecksum b52814268736b61fe3f417f410e4b29f778b6492f838d16894d33db85645799d52d3d744f10b429e68e315a142964b2f5ff57f15e9c4ee7e93a58dbd4b0fa2e2 +srcfiles size=7 + RELOC/source/latex/xpiano/xpiano.dtx + RELOC/source/latex/xpiano/xpiano.ins +runfiles size=3 + RELOC/tex/latex/xpiano/xpiano.sty +catalogue-also piano +catalogue-ctan /macros/latex/contrib/xpiano +catalogue-license lppl1.3 +catalogue-topics music +catalogue-version 1.0 + +name xpicture +category Package +revision 28770 +shortdesc Extensions of LaTeX picture drawing +relocated 1 +longdesc The package extends the facilities of the pict2e and the +longdesc curve2e packages, providing extra reference frames, conic +longdesc section curves, graphs of elementary functions and other +longdesc parametric curves. +containersize 8960 +containerchecksum 1915b8b9acb3db8d4f8ac4fbc0baab55d6b8352288852f20d066a3f0ce4f7dd0cd4d2d70ae2d2e29aadae0bdb272fcb237146379313b2900accaab2bc10ceb79 +doccontainersize 1297960 +doccontainerchecksum dafacd0f38ca6a248f701cf48381ce0a3816a693150118ab6a7e18f818814a1b54435820dc8c11135146cfde3d40a08a0f2cd78bc54a9ddb450bb5c848b99e84 +docfiles size=342 + RELOC/doc/latex/xpicture/README details="Readme" + RELOC/doc/latex/xpicture/xpicture-doc.pdf details="Package documentation" + RELOC/doc/latex/xpicture/xpicture-doc.tex + RELOC/doc/latex/xpicture/xpicture.cfgxmpl + RELOC/doc/latex/xpicture/xpicture.pdf +srccontainersize 24428 +srccontainerchecksum e49b8512ef83ec38f20dafa1e5f191cfd4c2bbcc62016f209be06f969cccdf3cec9545a24756710c767946f8c532074d53de8a6bacd6c565fdf49c579b0cb6c7 +srcfiles size=32 + RELOC/source/latex/xpicture/xpicture.dtx +runfiles size=12 + RELOC/tex/latex/xpicture/xpicture.sty +catalogue-ctan /macros/latex/contrib/xpicture +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex graphics-curve +catalogue-version 1.2a + +name xpinyin +category Package +revision 56709 +shortdesc Automatically add pinyin to Chinese characters +relocated 1 +longdesc The package is written to simplify the input of Hanyu Pinyin. +longdesc Macros are provided that automatically add pinyin to Chinese +longdesc characters. +containersize 201012 +containerchecksum 94ea16ea9d649e28094173862ce5e31c655acef0c21dcd03a6f7d3f5463cdca15da7ea9b4408d539900a7c2d55a7418f4fac8defbe914bcad8c4a58f6e1bdb4d +doccontainersize 200480 +doccontainerchecksum 58715c5eb8e0e336bf6de29b47760eedc27802fd82bb120ce37a6502eeb00c8b8230503d660e687131d8312be93a72dc6b2dc15b89cb82d46be5f5b7200a91e9 +docfiles size=51 + RELOC/doc/latex/xpinyin/README.md details="Readme" + RELOC/doc/latex/xpinyin/xpinyin.pdf details="Package documentation" language="zh" +srccontainersize 10824 +srccontainerchecksum edf759656775c8e8f1b3953949d0d1b1d3d34a165b51781d4748034e5a8d3ff19650a4e9a2d7397156f0f77104b5513c61ac84afaf7634a49c52044ee8c03bc5 +srcfiles size=12 + RELOC/source/latex/xpinyin/xpinyin.dtx + RELOC/source/latex/xpinyin/xpinyin.ins +runfiles size=303 + RELOC/tex/latex/xpinyin/xpinyin-database.def + RELOC/tex/latex/xpinyin/xpinyin.sty +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +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-license lppl1.3c +catalogue-topics chinese expl3 +catalogue-version 2.9 + +name xprintlen +category Package +revision 35928 +shortdesc Print TeX lengths in a variety of units +relocated 1 +longdesc The package defines a command, \printlen, to print TeX lengths +longdesc in a variety of units. It can handle all units supported by +longdesc TeX. The package requires that a reasonably up to date version +longdesc of the fp package be installed on you system. +containersize 1120 +containerchecksum dc446adfe453430d5e2c9155acaad26e258a36319490a5158f0874292e9e68c1eb61ba57e361b5ff8bfff84c3b4a359709525f42599b95e9ba19ce9e28f88423 +doccontainersize 140412 +doccontainerchecksum 5905ee8d3589b7d75388e6e2355639435f3a72fa99abc17118068069715ba7220fa3d69f58e046d7972814bfa3834222858bc8933562ac91f83ea250f0952d82 +docfiles size=38 + RELOC/doc/latex/xprintlen/LICENSE + RELOC/doc/latex/xprintlen/README details="Readme" + RELOC/doc/latex/xprintlen/ex01.png + RELOC/doc/latex/xprintlen/xprintlen.pdf details="Package documentation" + RELOC/doc/latex/xprintlen/xprintlen.tex +runfiles size=1 + RELOC/tex/latex/xprintlen/xprintlen.sty +catalogue-contact-repository https://github.com/Liam0205/xprintlen +catalogue-ctan /macros/latex/contrib/xprintlen +catalogue-license lppl1.3 +catalogue-topics debug-supp doc-debug +catalogue-version 1.0 + +name xpunctuate +category Package +revision 26641 +shortdesc Process trailing punctuation which may be redundant +relocated 1 +longdesc The package provides commands that enable the user (or package +longdesc writer) to insert punctuation after the macro. The method is +longdesc similar to that of xspace, but goes further. The package +longdesc provides the commands \xperiod, \xcomma and \xperiodcomma, +longdesc which follow a similar procedure to that of \xspace, and insert +longdesc punctuation if and only if it is necessary. +containersize 1324 +containerchecksum 4b69969632691a529ff0127f21a5974a509a29c047a33cdfc53d1bdef1aacee7d6ee8eeda5d185759b60b2e4dfcd0dc59948a8156767e2a7ced0256aac0697d4 +doccontainersize 199392 +doccontainerchecksum 04a839972105943ad72b848adb44584b647a3e52842c0956489ce82496d005ce35f4b8c8e6be1337b5f65616036b58e9543e7f4796075f9828aa9220015e441f +docfiles size=53 + RELOC/doc/latex/xpunctuate/README details="Readme" + RELOC/doc/latex/xpunctuate/xpunctuate.pdf details="Package documentation" +srccontainersize 4180 +srccontainerchecksum 02b04679b0d5ec75f2972f786293250e0115378fee96845249a221be1cbfdce9d03897f877b82950a5c80d117d4693aaa60c06d7effff9c50e63db8a6e1e49d6 +srcfiles size=4 + RELOC/source/latex/xpunctuate/xpunctuate.dtx + RELOC/source/latex/xpunctuate/xpunctuate.ins +runfiles size=1 + RELOC/tex/latex/xpunctuate/xpunctuate.sty +catalogue-ctan /macros/latex/contrib/xpunctuate +catalogue-license lppl1.2 +catalogue-topics macro-supp +catalogue-version 1.0 + +name xq +category Package +revision 35211 +shortdesc Support for writing about xiangqi +relocated 1 +longdesc The package is for writing about xiangqi or chinese chess. You +longdesc can write games or parts of games and show diagrams with +longdesc special positions. +containersize 44060 +containerchecksum f1fc2f43099e022aaac631d4ccd1e5f5b9a9f23db6f1c6c3adf59d47dca57c25728f81ead0ab62d07b9bea6219e3121874c55973b54e826b1a70c5e4fd47c853 +doccontainersize 210248 +doccontainerchecksum cbef1b95b4db328cc29d5f4fef544459b893cea82838e9e1f2faba00dd8fc78bd12d36931dba4ebe76cbe985879c30b8606df1f2091fc8d2108311350b2ea339 +docfiles size=68 + RELOC/doc/fonts/xq/ChangeLog + RELOC/doc/fonts/xq/Makefile + RELOC/doc/fonts/xq/README details="Package README" + RELOC/doc/fonts/xq/bugs-0-3.pdf + RELOC/doc/fonts/xq/bugs-0-3.tex + RELOC/doc/fonts/xq/xqexample.pdf details="Example of use" + RELOC/doc/fonts/xq/xqexample.tex +runfiles size=311 + RELOC/fonts/source/public/xq/xqaddsignsbase.mf + RELOC/fonts/source/public/xq/xqaddsignslarge.mf + RELOC/fonts/source/public/xq/xqaddsignsnormal.mf + RELOC/fonts/source/public/xq/xqbase.mf + RELOC/fonts/source/public/xq/xqhints.mf + RELOC/fonts/source/public/xq/xqlarge.mf + RELOC/fonts/source/public/xq/xqnormal.mf + RELOC/fonts/source/public/xq/xqwestbase.mf + RELOC/fonts/source/public/xq/xqwestlarge.mf + RELOC/fonts/source/public/xq/xqwestnormal.mf + RELOC/fonts/tfm/public/xq/xqlarge.tfm + RELOC/fonts/tfm/public/xq/xqnormal.tfm + RELOC/tex/latex/xq/xq.sty +catalogue-ctan /fonts/xq +catalogue-license lppl +catalogue-topics games +catalogue-version 0.4 + +name xsavebox +category Package +revision 54097 +shortdesc Saveboxes for repeating content without code replication, based on PDF Form XObjects +relocated 1 +longdesc The package defines commands for saving content that can be +longdesc repeatedly placed into the document without replicating DVI/PDF +longdesc code in the output file, allowing for smaller file size of the +longdesc final PDF and improved content caching for faster display in +longdesc certain PDF viewers. The method makes use of 'Form XObjects' +longdesc defined in the PDF specification. The user commands are +longdesc modelled after the standard LaTeX commands \savebox, \sbox, +longdesc \usebox and the lrbox environment. All common TeX engines and +longdesc back-ends are supported: pdfLaTeX, LuaLaTeX LaTeX - dvips - +longdesc ps2pdf/Distiller (Xe)LaTeX - (x)dvipdfmx +containersize 4244 +containerchecksum bcfb1ea2043163f3ebba520235ebcf8a0cb69a4e167a439adb24f0582166f3e7a74072ba5ccfc5482948a6a423c6684dcee4dda7f0170f6eea2e86292087818a +doccontainersize 368976 +doccontainerchecksum 0722ad2a511709f68254c97cce7eac6a2e0d5b452d146dcb9f264f385444d6f92021161378cfadd1c26442696e2fcee3cab7a720ce4a68463f4eccacb11639a0 +docfiles size=92 + RELOC/doc/latex/xsavebox/ChangeLog + RELOC/doc/latex/xsavebox/README + RELOC/doc/latex/xsavebox/xsavebox.pdf details="Package documentation" +srccontainersize 4180 +srccontainerchecksum 6064e060001f189f8a58b5fe3de87d68366d48bea8c6b0ad8e41f32ef6eb0d87dd12662aa8ad27e89b8701c32822503f6bc830837f7c33ba46ef3a9db651fa48 +srcfiles size=3 + RELOC/source/latex/xsavebox/xsavebox.tex +runfiles size=3 + RELOC/tex/latex/xsavebox/xsavebox.sty +catalogue-contact-repository https://gitlab.com/agrahn/xsavebox +catalogue-ctan /macros/latex/contrib/xsavebox +catalogue-license lppl1.3 +catalogue-topics boxing pdf-feat adobe-distiller +catalogue-version 0.16 + +name xsim +category Package +revision 57619 +shortdesc eXercise Sheets IMproved +relocated 1 +longdesc This package helps in creating exercises and the corresponding +longdesc solutions. It is the official successor of the exsheets package +longdesc and fixes/improves various long-standing issues. +containersize 32212 +containerchecksum 37325711b273ad2f2b5fb762f91ec4a0373c92d6b0f418a68d0560c1d83c8d9c673b7cfbe93bab446f61209ae2d49b298aefd6da43b0be9732be5cd996125910 +doccontainersize 2998504 +doccontainerchecksum 2b0c825844d220efe5d4bf77ae53e0a155a5b8603630b361b45b4267083b15b3d7149d1d4fab1191064b3edc650195eb4497e0370c06ff39a93d673adafcb9f6 +docfiles size=927 + RELOC/doc/latex/xsim/HISTORY + RELOC/doc/latex/xsim/README details="Readme" + RELOC/doc/latex/xsim/examples/xsim.blanks.pdf + RELOC/doc/latex/xsim/examples/xsim.blanks.tex + RELOC/doc/latex/xsim/examples/xsim.boxed-headings.pdf + RELOC/doc/latex/xsim/examples/xsim.boxed-headings.tex + RELOC/doc/latex/xsim/examples/xsim.code-and-output.pdf + RELOC/doc/latex/xsim/examples/xsim.code-and-output.tex + RELOC/doc/latex/xsim/examples/xsim.collections.pdf + RELOC/doc/latex/xsim/examples/xsim.collections.tex + RELOC/doc/latex/xsim/examples/xsim.crossref.pdf + RELOC/doc/latex/xsim/examples/xsim.crossref.tex + RELOC/doc/latex/xsim/examples/xsim.description-list.pdf + RELOC/doc/latex/xsim/examples/xsim.description-list.tex + RELOC/doc/latex/xsim/examples/xsim.different-point-types.pdf + RELOC/doc/latex/xsim/examples/xsim.different-point-types.tex + RELOC/doc/latex/xsim/examples/xsim.difficulties.pdf + RELOC/doc/latex/xsim/examples/xsim.difficulties.tex + RELOC/doc/latex/xsim/examples/xsim.floating.pdf + RELOC/doc/latex/xsim/examples/xsim.floating.tex + RELOC/doc/latex/xsim/examples/xsim.golatex-80640.pdf + RELOC/doc/latex/xsim/examples/xsim.golatex-80640.tex + RELOC/doc/latex/xsim/examples/xsim.golatex-91339.pdf + RELOC/doc/latex/xsim/examples/xsim.golatex-91339.tex + RELOC/doc/latex/xsim/examples/xsim.grade-distribution.pdf + RELOC/doc/latex/xsim/examples/xsim.grade-distribution.tex + RELOC/doc/latex/xsim/examples/xsim.hints.pdf + RELOC/doc/latex/xsim/examples/xsim.hints.tex + RELOC/doc/latex/xsim/examples/xsim.issues-49.pdf + RELOC/doc/latex/xsim/examples/xsim.issues-49.tex + RELOC/doc/latex/xsim/examples/xsim.listings.pdf + RELOC/doc/latex/xsim/examples/xsim.listings.tex + RELOC/doc/latex/xsim/examples/xsim.listofexercises.pdf + RELOC/doc/latex/xsim/examples/xsim.listofexercises.tex + RELOC/doc/latex/xsim/examples/xsim.multiplechoice.pdf + RELOC/doc/latex/xsim/examples/xsim.multiplechoice.tex + RELOC/doc/latex/xsim/examples/xsim.pointsums.pdf + RELOC/doc/latex/xsim/examples/xsim.pointsums.tex + RELOC/doc/latex/xsim/examples/xsim.randomexercises.pdf + RELOC/doc/latex/xsim/examples/xsim.randomexercises.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-13635.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-13635.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-155630.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-155630.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-199360.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-199360.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-299534.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-299534.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-305110.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-305110.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-308883.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-308883.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-338165.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-338165.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-350028.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-350028.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-369065.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-369065.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-369636.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-369636.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-369803.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-369803.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-370642.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-370642.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-391530-exercises.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-391530.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-391530.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-395273.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-395273.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-466584.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-466584.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-498299.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-498299.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-549540.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-549540.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-576998.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-576998.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-580636.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-580636.tex + RELOC/doc/latex/xsim/examples/xsim.texwelt-15093.pdf + RELOC/doc/latex/xsim/examples/xsim.texwelt-15093.tex + RELOC/doc/latex/xsim/examples/xsim.texwelt-23968.pdf + RELOC/doc/latex/xsim/examples/xsim.texwelt-23968.tex + RELOC/doc/latex/xsim/examples/xsim.texwelt-6698.pdf + RELOC/doc/latex/xsim/examples/xsim.texwelt-6698.tex + RELOC/doc/latex/xsim/examples/xsim.various.pdf + RELOC/doc/latex/xsim/examples/xsim.various.tex + RELOC/doc/latex/xsim/xsim-manual.pdf details="Package documentation" + RELOC/doc/latex/xsim/xsim-manual.tex +runfiles size=55 + RELOC/tex/latex/xsim/xsim-manual.cls + RELOC/tex/latex/xsim/xsim.sty + RELOC/tex/latex/xsim/xsim.style.layouts.code.tex + RELOC/tex/latex/xsim/xsimverb.sty +catalogue-contact-bugs https://github.com/cgnieder/xsim/issues +catalogue-contact-repository https://github.com/cgnieder/xsim/ +catalogue-ctan /macros/latex/contrib/xsim +catalogue-license lppl1.3c +catalogue-topics exercise exam expl3 +catalogue-version 0.20c + +name xskak +category Package +revision 51432 +shortdesc An extension to the skak package for chess typesetting +relocated 1 +longdesc Xskak, as its prime function, saves information about a chess +longdesc game for later use (e.g., to loop through a game to make an +longdesc animated board). The package also extends the input that the +longdesc parsing commands can handle and offers an interface to define +longdesc and switch between indefinite levels of styles. +containersize 14052 +containerchecksum 202f61fffbf22346ff6ad6b2b8f411b2a8e4f58a9d53e5613810f2fe0b56b0c73867f0c1c293bb0c1f0edcd4ab73135ae33a953d3709d2d01060c1b638842dd4 +doccontainersize 789680 +doccontainerchecksum 6256df468580dcee451e4a650ebab0323c92024e9bf872fd683af1f10c19221887b5bd1bed7540a517eb6716627e689759b7ceaaa2944869e18591fba5467114 +docfiles size=270 + RELOC/doc/latex/xskak/README.md details="Readme" + RELOC/doc/latex/xskak/UF-xskak-documentation.sty + RELOC/doc/latex/xskak/skak-comment-test.pdf + RELOC/doc/latex/xskak/skak-comment-test.tex + RELOC/doc/latex/xskak/skak-longmoves-test-new.pdf + RELOC/doc/latex/xskak/skak-longmoves-test-new.tex + RELOC/doc/latex/xskak/xskak.pdf details="Package documentation" + RELOC/doc/latex/xskak/xskak.tex + RELOC/doc/latex/xskak/xskak_and_beamer.pdf + RELOC/doc/latex/xskak/xskak_and_beamer.tex + RELOC/doc/latex/xskak/xskakgames.xsk +srccontainersize 14172 +srccontainerchecksum 11119e38b4f21663e36764d2b9e7da22d9493de7296590db4beefe185b2c9e89224806257d3880c78b07c3984478843b1886e37e5a33fc798920be221789de04 +srcfiles size=23 + RELOC/source/latex/xskak/xskak.dtx + RELOC/source/latex/xskak/xskak.ins +runfiles size=23 + RELOC/tex/latex/xskak/xskak-keys.sty + RELOC/tex/latex/xskak/xskak-nagdef.sty + RELOC/tex/latex/xskak/xskak.sty +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-license lppl +catalogue-topics games etex +catalogue-version 1.5 + +name xstring +category Package +revision 49946 +shortdesc String manipulation for (La)TeX +relocated 1 +longdesc The package provides macros for manipulating strings -- testing +longdesc a string's contents, extracting substrings, substitution of +longdesc substrings and providing numbers such as string length, +longdesc position of, or number of recurrences of, a substring. The +longdesc package works equally in Plain TeX and LaTeX (though e-TeX is +longdesc always required). The strings to be processed may contain +longdesc (expandable) macros. +containersize 11216 +containerchecksum 82254f103053d91eeea4c6230142de06138c392542cac63731c7b34fec5130984bbdebc29ac3b56998717dca11ad444c44f410215b6b89e6748029721a9daac6 +doccontainersize 656876 +doccontainerchecksum c0c17b82ad0d5aad95d312935e0214a7e5404a23b9a284a56ac92ec9ea936a9bfd3a68a5b01e29c131b7850a3fd3922ac87020166eaf0a7ed9d695dc80d0a931 +docfiles size=229 + RELOC/doc/generic/xstring/README details="Readme" + RELOC/doc/generic/xstring/test_etex.pdf + RELOC/doc/generic/xstring/test_etex.tex + RELOC/doc/generic/xstring/test_latex.pdf + RELOC/doc/generic/xstring/test_latex.tex + RELOC/doc/generic/xstring/xstring-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/xstring/xstring-en.tex + RELOC/doc/generic/xstring/xstring-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/xstring/xstring-fr.tex +runfiles size=13 + RELOC/tex/generic/xstring/xstring.sty + RELOC/tex/generic/xstring/xstring.tex +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-license lppl1.3c +catalogue-topics string +catalogue-version 1.83 + +name xtab +category Package +revision 23347 +shortdesc Break tables across pages +relocated 1 +longdesc Xtab is an extended and somewhat improved version of +longdesc supertabular; its xtabular environment provides tables that +longdesc break across pages. +containersize 4668 +containerchecksum e308d3ae3ae32b945450b319834dfac19b6006cb0ede7f21a91999b840528927aaca7cdc330a02ebad874602d6d268fd1fe609dcb52bef2757b2e0417310e012 +doccontainersize 362720 +doccontainerchecksum 10a158bf2d50fa89355654da36a179bbbc5d30ef3efa8a79537de66c50a892f540938cb364e45896dc079266d5e47bfc2c74b8cfe01ec1691cde34bc221e4ca2 +docfiles size=90 + RELOC/doc/latex/xtab/README details="Readme" + RELOC/doc/latex/xtab/xtab.pdf details="Package documentation" +srccontainersize 19556 +srccontainerchecksum 0ae0bc4d96f8b7c4dd5bc62d56538ef5e8f5d8d8ecdb114759209dedc722a2aee1b646a27cff611bfd2ec9ac96f0633393cef9d3a13a6d54978740b28fcc09c6 +srcfiles size=22 + RELOC/source/latex/xtab/xtab.dtx + RELOC/source/latex/xtab/xtab.ins +runfiles size=5 + RELOC/tex/latex/xtab/xtab.sty +catalogue-also longtable +catalogue-ctan /macros/latex/contrib/xtab +catalogue-license lppl +catalogue-topics table table-long +catalogue-version 2.3f + +name xtuthesis +category Package +revision 47049 +shortdesc XTU thesis template +relocated 1 +longdesc The package provides a thesis template for the Xiangtan +longdesc University. +containersize 3564 +containerchecksum 5d9081b8d197952aa5ff58b1cbd490bb529cbbc1b72956cca8dd28b1b6bc12c6248d3d04fd457349b30df7594aa1872ce9c8438feb67af1b93ff0fd33eefcb7d +doccontainersize 833404 +doccontainerchecksum 96e94598e3e397a9657a83496d940aa2525fdbe1ec2cf820b05e5493b1f3e1c45568e16b62c22d4ee25afe2bd0657848a433477e82cc8038895c2195139ca065 +docfiles size=437 + RELOC/doc/latex/xtuthesis/README.md details="Readme" language="zh" + RELOC/doc/latex/xtuthesis/body/aboutme.tex + RELOC/doc/latex/xtuthesis/body/bibliography.tex + RELOC/doc/latex/xtuthesis/body/elements.tex + RELOC/doc/latex/xtuthesis/body/expression.tex + RELOC/doc/latex/xtuthesis/body/introduction.tex + RELOC/doc/latex/xtuthesis/body/thank.tex + RELOC/doc/latex/xtuthesis/body/thesisformat.tex + RELOC/doc/latex/xtuthesis/clear.sh + RELOC/doc/latex/xtuthesis/figures/Correct_Ratio.pdf + RELOC/doc/latex/xtuthesis/figures/Lenna.pdf + RELOC/doc/latex/xtuthesis/figures/Lenna_e.pdf + RELOC/doc/latex/xtuthesis/preface/abstract.tex + RELOC/doc/latex/xtuthesis/preface/cover.tex + RELOC/doc/latex/xtuthesis/reference/GBTbibsty.bst + RELOC/doc/latex/xtuthesis/reference/IEEEtran.cls + RELOC/doc/latex/xtuthesis/reference/ref.bib + RELOC/doc/latex/xtuthesis/reference/references.tex + RELOC/doc/latex/xtuthesis/xtu.pdf + RELOC/doc/latex/xtuthesis/xtuthesis.pdf details="Package documentation" language="zh" + RELOC/doc/latex/xtuthesis/xtuthesis.tex +runfiles size=3 + RELOC/tex/latex/xtuthesis/xtuformat.sty +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-license lppl1.3 +catalogue-topics chinese dissertation +catalogue-version 1.0 + +name xunicode +category Package +revision 30466 +shortdesc Generate Unicode characters from accented glyphs +relocated 1 +longdesc The package supports XeTeX's (and other putative future similar +longdesc engines') need for Unicode characters, in a similar way to what +longdesc the fontenc does for 8-bit (and the like) fonts: convert +longdesc accent-glyph sequence to a single Unicode character for output. +longdesc The package also covers glyphs specified by packages (such as +longdesc tipa) which define many commands for single text glyphs. +depend tipa +containersize 25768 +containerchecksum f49628013bc54e82bc38a2c749ddde9426c65716f04c5c8d8264398b9595e571d380e07c045db9e7ed5d6df7d0b7b1f8e81eaa28d6b67a6756d2c5023b731176 +doccontainersize 584 +doccontainerchecksum fbd368180c97649944aa23fae4f50f8a8d1aaa776f643ba520f121b9aae196dca94c11906f9d5b2f961b6d494256329670af1f4563502b44a8fc9633e29373e0 +docfiles size=1 + RELOC/doc/xelatex/xunicode/README details="Readme" +runfiles size=51 + RELOC/tex/xelatex/xunicode/xunicode.sty +catalogue-also euenc +catalogue-ctan /macros/xetex/latex/xunicode +catalogue-license lppl1.3 +catalogue-topics preprocessor unicode +catalogue-version 0.981 + +name xurl +category Package +revision 57265 +shortdesc Allow URL breaks at any alphanumerical character +relocated 1 +longdesc This package loads url by default and defines possible URL +longdesc breaks for all alphanumerical characters, as well as = / . : * +longdesc - ~ ' " All arguments which are valid for url can be used and +longdesc will be passed on to this package. For more information read +longdesc the documentation of url itself. +containersize 1612 +containerchecksum 51251afe43f9b175e4afd901f10edd63bad590b0591f117d423866ed1a82e2c0ab35dee7e03250c331f8a8605f9c6ba8357e93ef0aa80d40dc03379bde24dd1c +doccontainersize 58020 +doccontainerchecksum df7e35d13f340c44813e0656c36148b92319a7099ae47eb02513d33834b642528eff2e81299aa670c2a4572e78c830d48c83b46996700e9fb568db16b84f1e57 +docfiles size=18 + RELOC/doc/latex/xurl/Changes + RELOC/doc/latex/xurl/README.md details="Readme" + RELOC/doc/latex/xurl/xurl.pdf details="Package documentation" + RELOC/doc/latex/xurl/xurl.tex +runfiles size=2 + RELOC/tex/latex/xurl/xurl.sty +catalogue-ctan /macros/latex/contrib/xurl +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 0.09a + +name xwatermark +category Package +revision 28090 +shortdesc Graphics and text watermarks on selected pages +relocated 1 +longdesc The package extends the author's draftmark and the watermark +longdesc packages. +containersize 16524 +containerchecksum 705c9eeccda8b2475cee782f6bb167691e985324361e6dbf147ef9843489f572f2e0b9e47a9f2beb7fdce68ef12ba2bbcb2ccf23c39db489d7d4486f09ff5787 +doccontainersize 582912 +doccontainerchecksum 70436c9927ed6c3c7604e1e70fa877b9be80287a18d9257abc85526fd756be5b0712b28b47b3271787f6ab062743964ca6eb5204005fec33c3a63d2dcab960ed +docfiles size=187 + RELOC/doc/latex/xwatermark/README details="Readme" + RELOC/doc/latex/xwatermark/xwatermark-examples1.tex + RELOC/doc/latex/xwatermark/xwatermark-examples2.pdf + RELOC/doc/latex/xwatermark/xwatermark-examples2.tex + RELOC/doc/latex/xwatermark/xwatermark-guide.pdf details="Package documentation" + RELOC/doc/latex/xwatermark/xwatermark-guide.tex +runfiles size=19 + RELOC/tex/latex/xwatermark/xwatermark.sty +catalogue-ctan /macros/latex/contrib/xwatermark +catalogue-license lppl1.3 +catalogue-topics background +catalogue-version 1.5.2d + +name xyling +category Package +revision 15878 +shortdesc Draw syntactic trees, etc., for linguistics literature, using xy-pic +relocated 1 +longdesc The macros in this package model the construction of linguistic +longdesc tree structures as a genuinely graphical problem: they contain +longdesc two types of objects, BRANCHES and NODE LABELS, and these are +longdesc positioned relative to a GRID. It is essential that each of +longdesc these three elements is constructed independent of the other +longdesc two, and hence they can be modified without unwanted side +longdesc effects. The macros are based on the xy-pic package. +containersize 10540 +containerchecksum 5f78d2d61050d9ed84d56136fe59b4674f4e03a536015e3ebc3b9500dd8a08878164ce9fb1aa9ca9a1262a000149061f3fe22f10cfd68941316aa186b81fe923 +doccontainersize 148332 +doccontainerchecksum 7b4ca312ea917329260eb0a19bd504ac2f3ddfb5f066806296b164fc541bfe26e6ed1c03ffac5b52af6b19fb4ba1e77b5228ac4b4db0c2ee8f2394fc0f888d09 +docfiles size=52 + RELOC/doc/latex/xyling/README details="README file" + RELOC/doc/latex/xyling/xyli-doc.pdf details="Package documentation" language="en" + RELOC/doc/latex/xyling/xyli-doc.tex +runfiles size=9 + RELOC/tex/latex/xyling/xyling.sty +catalogue-ctan /macros/latex/contrib/xyling +catalogue-license lppl +catalogue-topics linguistic tree +catalogue-version 1.1 + +name xymtex +category Package +revision 32182 +shortdesc Typesetting chemical structures +relocated 1 +longdesc XyMTeX is a set of packages for drawing a wide variety of +longdesc chemical structural formulas in a way that reflects their +longdesc structure. The package provides three output modes: 'LaTeX', +longdesc 'PostScript' and 'PDF'. XyMTeX's commands have a systematic set +longdesc of arguments for specifying substituents and their positions, +longdesc endocyclic double bonds, and bond patterns. In some cases there +longdesc are additional arguments for specifying hetero-atoms on the +longdesc vertices of heterocycles. It is believed that this systematic +longdesc design allows XyMTeX to operate as a practical +longdesc (device-independent) tool for use with LaTeX. +containersize 88744 +containerchecksum 9f0f14d1a862622ad0ef695a58f7dab554daac8d5151193a70c94ea872d16fe8eb1a763d03b226b08583db484bf576f5a41d2070d5396ac323ed00ccb0daf5e1 +doccontainersize 11504 +doccontainerchecksum 0e2eb5439f2e629da902e4c7d7ddd2d03bc4d654c4ee49e6b005450174acbd70760b52c9deb446ca60efe7c0389403584b86a6f9c9964cf24858b13cfccf7ed3 +docfiles size=71 + RELOC/doc/latex/xymtex/doc/README.TEXLIVE + RELOC/doc/latex/xymtex/readme/oldreadme/readme402.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme402.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme403.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme403.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme404.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme404.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme405.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme405.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme406.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme406.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme500.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme500.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme500a.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme500a.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx402.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx402.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx403.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx403.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx404.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx404.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx405.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx405.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx406.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx406.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500a.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500a.jpn + RELOC/doc/latex/xymtex/readme/readme501.doc + RELOC/doc/latex/xymtex/readme/readme501.jpn details="Readme" language="ja" + RELOC/doc/latex/xymtex/readme/xymtx501.doc + RELOC/doc/latex/xymtex/readme/xymtx501.jpn +srccontainersize 164296 +srccontainerchecksum d805d6fcb72fb801001ad80fe43ee36126c0764f8baa96dff9fffcf7452bba8e5cf42cbca6a50b89f5925607c277b3fb7408f8f7e6ab087edbade0dac294252a +srcfiles size=592 + RELOC/source/latex/xymtex/base/aliphat.dtx + RELOC/source/latex/xymtex/base/aliphat.ins + RELOC/source/latex/xymtex/base/assurelatexmode.dtx + RELOC/source/latex/xymtex/base/assurelatexmode.ins + RELOC/source/latex/xymtex/base/bondcolor.dtx + RELOC/source/latex/xymtex/base/bondcolor.ins + RELOC/source/latex/xymtex/base/carom.dtx + RELOC/source/latex/xymtex/base/carom.ins + RELOC/source/latex/xymtex/base/ccycle.dtx + RELOC/source/latex/xymtex/base/ccycle.ins + RELOC/source/latex/xymtex/base/chemstr.dtx + RELOC/source/latex/xymtex/base/chemstr.ins + RELOC/source/latex/xymtex/base/doins.bat + RELOC/source/latex/xymtex/base/fusering.dtx + RELOC/source/latex/xymtex/base/fusering.ins + RELOC/source/latex/xymtex/base/hcycle.dtx + RELOC/source/latex/xymtex/base/hcycle.ins + RELOC/source/latex/xymtex/base/hetarom.dtx + RELOC/source/latex/xymtex/base/hetarom.ins + RELOC/source/latex/xymtex/base/hetaromh.dtx + RELOC/source/latex/xymtex/base/hetaromh.ins + RELOC/source/latex/xymtex/base/lewisstruc.dtx + RELOC/source/latex/xymtex/base/lewisstruc.ins + RELOC/source/latex/xymtex/base/locant.dtx + RELOC/source/latex/xymtex/base/locant.ins + RELOC/source/latex/xymtex/base/lowcycle.dtx + RELOC/source/latex/xymtex/base/lowcycle.ins + RELOC/source/latex/xymtex/base/methylen.dtx + RELOC/source/latex/xymtex/base/methylen.ins + RELOC/source/latex/xymtex/base/polymers.dtx + RELOC/source/latex/xymtex/base/polymers.ins + RELOC/source/latex/xymtex/base/putline.sed + RELOC/source/latex/xymtex/base/putput.bat + RELOC/source/latex/xymtex/base/sizeredc.dtx + RELOC/source/latex/xymtex/base/sizeredc.ins + RELOC/source/latex/xymtex/base/steroid.dtx + RELOC/source/latex/xymtex/base/steroid.ins + RELOC/source/latex/xymtex/base/xymtex.dtx + RELOC/source/latex/xymtex/base/xymtex.ins + RELOC/source/latex/xymtex/chemist/assurechemist.dtx + RELOC/source/latex/xymtex/chemist/assurechemist.ins + RELOC/source/latex/xymtex/chemist/chemist.dtx + RELOC/source/latex/xymtex/chemist/chemist.ins + RELOC/source/latex/xymtex/chemist/chemtimes.dtx + RELOC/source/latex/xymtex/chemist/chemtimes.ins + RELOC/source/latex/xymtex/xymtxpdf/chmst-pdf.dtx + RELOC/source/latex/xymtex/xymtxpdf/chmst-pdf.ins + RELOC/source/latex/xymtex/xymtxpdf/xymtx-pdf.dtx + RELOC/source/latex/xymtex/xymtxpdf/xymtx-pdf.ins + RELOC/source/latex/xymtex/xymtxps/chmst-ps.dtx + RELOC/source/latex/xymtex/xymtxps/chmst-ps.ins + RELOC/source/latex/xymtex/xymtxps/xymtx-ps.drv + RELOC/source/latex/xymtex/xymtxps/xymtx-ps.dtx + RELOC/source/latex/xymtex/xymtxps/xymtx-ps.ins +runfiles size=290 + RELOC/tex/latex/xymtex/base/aliphat.sty + RELOC/tex/latex/xymtex/base/assurelatexmode.sty + RELOC/tex/latex/xymtex/base/bondcolor.sty + RELOC/tex/latex/xymtex/base/carom.sty + RELOC/tex/latex/xymtex/base/ccycle.sty + RELOC/tex/latex/xymtex/base/chemstr.sty + RELOC/tex/latex/xymtex/base/fusering.sty + RELOC/tex/latex/xymtex/base/hcycle.sty + RELOC/tex/latex/xymtex/base/hetarom.sty + RELOC/tex/latex/xymtex/base/hetaromh.sty + RELOC/tex/latex/xymtex/base/lewisstruc.sty + RELOC/tex/latex/xymtex/base/locant.sty + RELOC/tex/latex/xymtex/base/lowcycle.sty + RELOC/tex/latex/xymtex/base/methylen.sty + RELOC/tex/latex/xymtex/base/polymers.sty + RELOC/tex/latex/xymtex/base/sizeredc.sty + RELOC/tex/latex/xymtex/base/steroid.sty + RELOC/tex/latex/xymtex/base/xymtex.sty + RELOC/tex/latex/xymtex/base/xymtexpdf.sty + RELOC/tex/latex/xymtex/base/xymtexps.sty + RELOC/tex/latex/xymtex/chemist/assurechemist.sty + RELOC/tex/latex/xymtex/chemist/chemist.sty + RELOC/tex/latex/xymtex/chemist/chemtimes.sty + RELOC/tex/latex/xymtex/xymtxpdf/chmst-pdf.sty + RELOC/tex/latex/xymtex/xymtxpdf/xymtx-pdf.sty + RELOC/tex/latex/xymtex/xymtxps/chmst-ps.sty + RELOC/tex/latex/xymtex/xymtxps/xymtx-ps.sty +catalogue-ctan /macros/latex/contrib/xymtex +catalogue-license lppl1.3 +catalogue-topics chemistry diagram +catalogue-version 5.06 + +name xypic +category Package +revision 31859 +shortdesc Flexible diagramming macros +relocated 1 +longdesc A package for typesetting a variety of graphs and diagrams with +longdesc TeX. Xy-pic works with most formats (including LaTeX, +longdesc AMS-LaTeX, AMS-TeX, and plain TeX). The distribution includes +longdesc Michael Barr's diag package, which was previously distributed +longdesc stand-alone. +execute addMixedMap xypic.map +containersize 709808 +containerchecksum 5bf1323499bd801e2d5e9ca2eaaf3d7726ed6b8063dee18180eec775ea4d2f86cca8bcae262375455af64ae00951a41b34386fd90666a2a89114a2fcf23ccb7f +doccontainersize 3923196 +doccontainerchecksum cee264a3a8ee8f599b2310b4c9b722835a61fe8455c3f873ba91ad22ac7890cff8a1ef25f3d0b80aedd6420f31742f4e533fe20fc81dc83e4cc018684180c7ff +docfiles size=1062 + RELOC/doc/generic/xypic/CATALOG + RELOC/doc/generic/xypic/COPYING + RELOC/doc/generic/xypic/FONTCOPYING + RELOC/doc/generic/xypic/INSTALL + RELOC/doc/generic/xypic/MANIFEST + RELOC/doc/generic/xypic/README + RELOC/doc/generic/xypic/TRAILER + RELOC/doc/generic/xypic/VERSIONS + RELOC/doc/generic/xypic/Xy-logo.png + RELOC/doc/generic/xypic/Xy-pic.html + RELOC/doc/generic/xypic/barrdoc.pdf + RELOC/doc/generic/xypic/support/dvitogif89a + RELOC/doc/generic/xypic/support/install-tds + RELOC/doc/generic/xypic/support/pnmrawtopcropwhite.c + RELOC/doc/generic/xypic/xy389src.tar.gz + RELOC/doc/generic/xypic/xyguide.pdf details="User guide" language="en" + RELOC/doc/generic/xypic/xypdf.pdf details="PDF output using xypdf" language="en" + RELOC/doc/generic/xypic/xyrefer.pdf details="Reference manual" language="en" + RELOC/doc/generic/xypic/xysource.pdf details="Documented source" language="en" +runfiles size=575 + RELOC/dvips/xypic/xy389dict.pro + RELOC/fonts/afm/public/xypic/xyatip10.afm + RELOC/fonts/afm/public/xypic/xybsql10.afm + RELOC/fonts/afm/public/xypic/xybtip10.afm + RELOC/fonts/afm/public/xypic/xycirc10.afm + RELOC/fonts/afm/public/xypic/xycmat10.afm + RELOC/fonts/afm/public/xypic/xycmat11.afm + RELOC/fonts/afm/public/xypic/xycmat12.afm + RELOC/fonts/afm/public/xypic/xycmbt10.afm + RELOC/fonts/afm/public/xypic/xycmbt11.afm + RELOC/fonts/afm/public/xypic/xycmbt12.afm + RELOC/fonts/afm/public/xypic/xydash10.afm + RELOC/fonts/afm/public/xypic/xyeuat10.afm + RELOC/fonts/afm/public/xypic/xyeuat11.afm + RELOC/fonts/afm/public/xypic/xyeuat12.afm + RELOC/fonts/afm/public/xypic/xyeubt10.afm + RELOC/fonts/afm/public/xypic/xyeubt11.afm + RELOC/fonts/afm/public/xypic/xyeubt12.afm + RELOC/fonts/afm/public/xypic/xyluat10.afm + RELOC/fonts/afm/public/xypic/xyluat11.afm + RELOC/fonts/afm/public/xypic/xyluat12.afm + RELOC/fonts/afm/public/xypic/xylubt10.afm + RELOC/fonts/afm/public/xypic/xylubt11.afm + RELOC/fonts/afm/public/xypic/xylubt12.afm + RELOC/fonts/enc/dvips/xypic/xycirc.enc + RELOC/fonts/enc/dvips/xypic/xyd.enc + RELOC/fonts/enc/dvips/xypic/xyd2.enc + RELOC/fonts/map/dvips/xypic/xypic.map + RELOC/fonts/source/public/xypic/xyatip.mf + RELOC/fonts/source/public/xypic/xyatip10.mf + RELOC/fonts/source/public/xypic/xyatri.mf + RELOC/fonts/source/public/xypic/xybsql10.mf + RELOC/fonts/source/public/xypic/xybtip.mf + RELOC/fonts/source/public/xypic/xybtip10.mf + RELOC/fonts/source/public/xypic/xybtri.mf + RELOC/fonts/source/public/xypic/xycirc10.mf + RELOC/fonts/source/public/xypic/xycm.mf + RELOC/fonts/source/public/xypic/xycmat10.mf + RELOC/fonts/source/public/xypic/xycmat11.mf + RELOC/fonts/source/public/xypic/xycmat12.mf + RELOC/fonts/source/public/xypic/xycmbt10.mf + RELOC/fonts/source/public/xypic/xycmbt11.mf + RELOC/fonts/source/public/xypic/xycmbt12.mf + RELOC/fonts/source/public/xypic/xyd.mf + RELOC/fonts/source/public/xypic/xyd2.mf + RELOC/fonts/source/public/xypic/xydash10.mf + RELOC/fonts/source/public/xypic/xyeuat10.mf + RELOC/fonts/source/public/xypic/xyeuat11.mf + RELOC/fonts/source/public/xypic/xyeuat12.mf + RELOC/fonts/source/public/xypic/xyeubt10.mf + RELOC/fonts/source/public/xypic/xyeubt11.mf + RELOC/fonts/source/public/xypic/xyeubt12.mf + RELOC/fonts/source/public/xypic/xyeuler.mf + RELOC/fonts/source/public/xypic/xyline10.mf + RELOC/fonts/source/public/xypic/xylu.mf + RELOC/fonts/source/public/xypic/xyluat10.mf + RELOC/fonts/source/public/xypic/xyluat11.mf + RELOC/fonts/source/public/xypic/xyluat12.mf + RELOC/fonts/source/public/xypic/xylubt10.mf + RELOC/fonts/source/public/xypic/xylubt11.mf + RELOC/fonts/source/public/xypic/xylubt12.mf + RELOC/fonts/source/public/xypic/xymisc10.mf + RELOC/fonts/source/public/xypic/xyqc10.mf + RELOC/fonts/source/public/xypic/xytech.mf + RELOC/fonts/tfm/public/xypic/xyatip10.tfm + RELOC/fonts/tfm/public/xypic/xybsql10.tfm + RELOC/fonts/tfm/public/xypic/xybtip10.tfm + RELOC/fonts/tfm/public/xypic/xycirc10.tfm + RELOC/fonts/tfm/public/xypic/xycmat10.tfm + RELOC/fonts/tfm/public/xypic/xycmat11.tfm + RELOC/fonts/tfm/public/xypic/xycmat12.tfm + RELOC/fonts/tfm/public/xypic/xycmbt10.tfm + RELOC/fonts/tfm/public/xypic/xycmbt11.tfm + RELOC/fonts/tfm/public/xypic/xycmbt12.tfm + RELOC/fonts/tfm/public/xypic/xydash10.tfm + RELOC/fonts/tfm/public/xypic/xyeuat10.tfm + RELOC/fonts/tfm/public/xypic/xyeuat11.tfm + RELOC/fonts/tfm/public/xypic/xyeuat12.tfm + RELOC/fonts/tfm/public/xypic/xyeubt10.tfm + RELOC/fonts/tfm/public/xypic/xyeubt11.tfm + RELOC/fonts/tfm/public/xypic/xyeubt12.tfm + RELOC/fonts/tfm/public/xypic/xyline10.tfm + RELOC/fonts/tfm/public/xypic/xyluat10.tfm + RELOC/fonts/tfm/public/xypic/xyluat11.tfm + RELOC/fonts/tfm/public/xypic/xyluat12.tfm + RELOC/fonts/tfm/public/xypic/xylubt10.tfm + RELOC/fonts/tfm/public/xypic/xylubt11.tfm + RELOC/fonts/tfm/public/xypic/xylubt12.tfm + RELOC/fonts/tfm/public/xypic/xymisc10.tfm + RELOC/fonts/tfm/public/xypic/xyqc10.tfm + RELOC/fonts/type1/public/xypic/xyatip10.pfb + RELOC/fonts/type1/public/xypic/xyatip10.pfm + RELOC/fonts/type1/public/xypic/xybsql10.pfb + RELOC/fonts/type1/public/xypic/xybsql10.pfm + RELOC/fonts/type1/public/xypic/xybtip10.pfb + RELOC/fonts/type1/public/xypic/xybtip10.pfm + RELOC/fonts/type1/public/xypic/xycirc10.pfb + RELOC/fonts/type1/public/xypic/xycirc10.pfm + RELOC/fonts/type1/public/xypic/xycmat10.pfb + RELOC/fonts/type1/public/xypic/xycmat10.pfm + RELOC/fonts/type1/public/xypic/xycmat11.pfb + RELOC/fonts/type1/public/xypic/xycmat11.pfm + RELOC/fonts/type1/public/xypic/xycmat12.pfb + RELOC/fonts/type1/public/xypic/xycmat12.pfm + RELOC/fonts/type1/public/xypic/xycmbt10.pfb + RELOC/fonts/type1/public/xypic/xycmbt10.pfm + RELOC/fonts/type1/public/xypic/xycmbt11.pfb + RELOC/fonts/type1/public/xypic/xycmbt11.pfm + RELOC/fonts/type1/public/xypic/xycmbt12.pfb + RELOC/fonts/type1/public/xypic/xycmbt12.pfm + RELOC/fonts/type1/public/xypic/xydash10.pfb + RELOC/fonts/type1/public/xypic/xydash10.pfm + RELOC/fonts/type1/public/xypic/xyeuat10.pfb + RELOC/fonts/type1/public/xypic/xyeuat10.pfm + RELOC/fonts/type1/public/xypic/xyeuat11.pfb + RELOC/fonts/type1/public/xypic/xyeuat11.pfm + RELOC/fonts/type1/public/xypic/xyeuat12.pfb + RELOC/fonts/type1/public/xypic/xyeuat12.pfm + RELOC/fonts/type1/public/xypic/xyeubt10.pfb + RELOC/fonts/type1/public/xypic/xyeubt10.pfm + RELOC/fonts/type1/public/xypic/xyeubt11.pfb + RELOC/fonts/type1/public/xypic/xyeubt11.pfm + RELOC/fonts/type1/public/xypic/xyeubt12.pfb + RELOC/fonts/type1/public/xypic/xyeubt12.pfm + RELOC/fonts/type1/public/xypic/xyluat10.pfb + RELOC/fonts/type1/public/xypic/xyluat10.pfm + RELOC/fonts/type1/public/xypic/xyluat11.pfb + RELOC/fonts/type1/public/xypic/xyluat11.pfm + RELOC/fonts/type1/public/xypic/xyluat12.pfb + RELOC/fonts/type1/public/xypic/xyluat12.pfm + RELOC/fonts/type1/public/xypic/xylubt10.pfb + RELOC/fonts/type1/public/xypic/xylubt10.pfm + RELOC/fonts/type1/public/xypic/xylubt11.pfb + RELOC/fonts/type1/public/xypic/xylubt11.pfm + RELOC/fonts/type1/public/xypic/xylubt12.pfb + RELOC/fonts/type1/public/xypic/xylubt12.pfm + RELOC/tex/generic/xypic/movie.cls + RELOC/tex/generic/xypic/xy.sty + RELOC/tex/generic/xypic/xy.tex + RELOC/tex/generic/xypic/xy16textures.tex + RELOC/tex/generic/xypic/xy17oztex.tex + RELOC/tex/generic/xypic/xy2cell.tex + RELOC/tex/generic/xypic/xyall.tex + RELOC/tex/generic/xypic/xyarc.tex + RELOC/tex/generic/xypic/xyarrow.tex + RELOC/tex/generic/xypic/xybarr.tex + RELOC/tex/generic/xypic/xycmactex.tex + RELOC/tex/generic/xypic/xycmtip.tex + RELOC/tex/generic/xypic/xycolor.tex + RELOC/tex/generic/xypic/xycrayon.tex + RELOC/tex/generic/xypic/xycurve.tex + RELOC/tex/generic/xypic/xydummy.tex + RELOC/tex/generic/xypic/xydvidrv.tex + RELOC/tex/generic/xypic/xydvips.tex + RELOC/tex/generic/xypic/xydvitops.tex + RELOC/tex/generic/xypic/xyemtex.tex + RELOC/tex/generic/xypic/xyframe.tex + RELOC/tex/generic/xypic/xygraph.tex + RELOC/tex/generic/xypic/xyidioms.tex + RELOC/tex/generic/xypic/xyimport.tex + RELOC/tex/generic/xypic/xyknot.tex + RELOC/tex/generic/xypic/xyline.tex + RELOC/tex/generic/xypic/xymacpat.xyp + RELOC/tex/generic/xypic/xymatrix.tex + RELOC/tex/generic/xypic/xymovie.tex + RELOC/tex/generic/xypic/xynecula.tex + RELOC/tex/generic/xypic/xyoztex.tex + RELOC/tex/generic/xypic/xypdf-co.tex + RELOC/tex/generic/xypic/xypdf-cu.tex + RELOC/tex/generic/xypic/xypdf-fr.tex + RELOC/tex/generic/xypic/xypdf-li.tex + RELOC/tex/generic/xypic/xypdf-ro.tex + RELOC/tex/generic/xypic/xypdf.tex + RELOC/tex/generic/xypic/xypic.sty + RELOC/tex/generic/xypic/xypic.tex + RELOC/tex/generic/xypic/xypicture.tex + RELOC/tex/generic/xypic/xypoly.tex + RELOC/tex/generic/xypic/xyps-c.tex + RELOC/tex/generic/xypic/xyps-col.tex + RELOC/tex/generic/xypic/xyps-f.tex + RELOC/tex/generic/xypic/xyps-l.tex + RELOC/tex/generic/xypic/xyps-pro.tex + RELOC/tex/generic/xypic/xyps-ps.tex + RELOC/tex/generic/xypic/xyps-r.tex + RELOC/tex/generic/xypic/xyps-s.tex + RELOC/tex/generic/xypic/xyps-t.tex + RELOC/tex/generic/xypic/xyps.tex + RELOC/tex/generic/xypic/xypsdict.tex + RELOC/tex/generic/xypic/xypspatt.tex + RELOC/tex/generic/xypic/xyrecat.tex + RELOC/tex/generic/xypic/xyrotate.tex + RELOC/tex/generic/xypic/xysmart.tex + RELOC/tex/generic/xypic/xytextures.tex + RELOC/tex/generic/xypic/xytile.tex + RELOC/tex/generic/xypic/xytips.tex + RELOC/tex/generic/xypic/xytp-f.tex + RELOC/tex/generic/xypic/xytpic.tex + RELOC/tex/generic/xypic/xyv2.tex + RELOC/tex/generic/xypic/xyweb.tex + RELOC/tex/generic/xypic/xyxdvi.tex +catalogue-also xypic-tut-pt +catalogue-contact-home http://tug.org/applications/Xy-pic/Xy-pic.html +catalogue-ctan /macros/generic/diagrams/xypic +catalogue-license gpl +catalogue-topics diagram +catalogue-version 3.8.9 + +name xypic-tut-pt +category Package +revision 15878 +shortdesc A tutorial for XY-pic, in Portuguese +relocated 1 +containersize 360 +containerchecksum 291825c3461b397deb825266c7ee4316c5d04b8db1a29759378409de55c20d81552e31260468f4fa6a9a04f04705422714a8ec70a866c87fca2f4f1e189e0e4e +doccontainersize 225208 +doccontainerchecksum e27dfa0b36341bcd02ba63a8b543f1a6c55c674745cc790543ea2cfded80e536e5901f184a3af62b92b4534c738a06bf4fd5cbd4dfb4da865d13991279309aac +docfiles size=77 + RELOC/doc/generic/xypic-tut-pt/README + RELOC/doc/generic/xypic-tut-pt/grafico.eps + 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-license gpl +catalogue-topics portuguese-doc + +name xytree +category Package +revision 15878 +shortdesc Tree macros using XY-Pic +relocated 1 +longdesc The package provides means to draw linguistic syntactic trees +longdesc with ease and to support hopefully sufficient functionalities, +longdesc that the linguist may need. The package (of course) depends on +longdesc the XY-Pic package. +containersize 3584 +containerchecksum fdabfc451679f7ef3752db2537a7dd51e9c0fd34337e429f24e44728ec1ee0a9b97fc2f176948440a5c1cda609182f60d4c564ddcd76c70e84410cc6a0b1f371 +doccontainersize 230760 +doccontainerchecksum 0e2b08c8db25a5bd992c8aa843d8f6fb2e0efb3c11ea9dd0ac69106cd71f58996f73786513e0ff13bfb54932f468297edbb981e3efccfec2652f80bb02fc6ba7 +docfiles size=80 + RELOC/doc/latex/xytree/README details="Package README" + RELOC/doc/latex/xytree/xytree-doc-en.pdf details="Package documentation" language="en" + RELOC/doc/latex/xytree/xytree-doc-en.tex +runfiles size=3 + RELOC/tex/latex/xytree/xytree.sty +catalogue-ctan /macros/latex/contrib/xytree +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.5 + +name yafoot +category Package +revision 48568 +shortdesc A bundle of miscellaneous footnote packages +relocated 1 +longdesc Contains three packages: - pfnote to number footnotes per page; +longdesc - fnpos to control the position of footnotes; and - dblfnote to +longdesc make footnotes double-columned. +containersize 3864 +containerchecksum 75ab34d40fb051000783abf573f4507e3791ea5aa1cf4b8571ad16bc020f10d17a49220a2878e5a2791fb7f073613ed20d72cd5618feadf38e290ee4f047e615 +doccontainersize 265880 +doccontainerchecksum 322e9cd25fd7686c4325d04bc7dfa00aee45fe993bdb730ca3669cf860b7cbae1dc76483fe3dec11e09ad848f166a01f43ad0885e0e9fe324ef28d28a7d2b4ad +docfiles size=67 + RELOC/doc/latex/yafoot/README details="Bundle Readme" + RELOC/doc/latex/yafoot/yafoot-man.pdf details="Bundle documentation" + RELOC/doc/latex/yafoot/yafoot-man.tex +srccontainersize 16792 +srccontainerchecksum 5159db9c0f8e1f1ba4fd265c1188c47271b6da4290c33f65e8284b0c95d8144a3219951e13c1fb8e7fc172f2cd0094cc73d63fcd0cab67908f6542881930d772 +srcfiles size=16 + RELOC/source/latex/yafoot/yafoot.dtx + RELOC/source/latex/yafoot/yafoot.ins +runfiles size=5 + RELOC/tex/latex/yafoot/dblfnote.sty + RELOC/tex/latex/yafoot/fnpos.sty + RELOC/tex/latex/yafoot/pfnote.sty +catalogue-ctan /macros/latex/contrib/yafoot +catalogue-license lppl +catalogue-topics footnote +catalogue-version 1.1 + +name yagusylo +category Package +revision 29803 +shortdesc A symbol loader +relocated 1 +longdesc The name is by way of being an acronym for "Yet Another Grand +longdesc Unified Symbols Loader"... The package allows the user to +longdesc access a symbol without loading the package that usually +longdesc provides it; this has the advantage of avoiding the name +longdesc clashes that so commonly trouble those who load +longdesc symbol-packages. +containersize 5812 +containerchecksum f6f367155aa16ab0133957fea3c099d4e839f248a87ccca430e43c08257b2aed3a11c77ceaf8484097910bcee2dfadf260ab5047fa7f0244b43bcf332f367bf0 +doccontainersize 1661528 +doccontainerchecksum 0ba73f1c7c7d7d646312f8a3d35c0d063e792ebae45c3e869565f01ef65e14f31bee463a1ebb8ad60166d54cdc23a9d21684675a6ccb09b8da233badb0d0ad96 +docfiles size=653 + RELOC/doc/latex/yagusylo/LISEZMOI details="Lisez moi" language="fr" + RELOC/doc/latex/yagusylo/README details="Readme" language="en" + RELOC/doc/latex/yagusylo/yagusylo-en.pdf details="User documentation (English)" language="en" + RELOC/doc/latex/yagusylo/yagusylo-fr.pdf details="User documentation (French)" language="fr" + RELOC/doc/latex/yagusylo/yagusylo.pdf details="Source documentation" +srccontainersize 36632 +srccontainerchecksum 0bf71cf46e2cd66f9066dda7e7982f91e06803ad2c89358da94fc0ecd593ecfbed8b36ea9668f3e713987265fcdf03fdaae08ee9dcbf36ec1d22a91e3bfe84c1 +srcfiles size=36 + RELOC/source/latex/yagusylo/Makefile + RELOC/source/latex/yagusylo/yagusylo.dtx + RELOC/source/latex/yagusylo/yagusylo.ins +runfiles size=7 + RELOC/tex/latex/yagusylo/yagusylo.cfg + RELOC/tex/latex/yagusylo/yagusylo.sty +catalogue-ctan /macros/latex/contrib/yagusylo +catalogue-license lppl +catalogue-topics font-supp-symbol +catalogue-version 1.2 + +name yaletter +category Package +revision 42830 +shortdesc Extremely flexible macros for letters, envelopes, and label sheets +relocated 1 +longdesc The yaletter class provides extremely configurable macros for +longdesc typesetting letters in any conceivable style. It provides +longdesc facilities for maintaining easily-accessible databases of +longdesc letterheads and addresses for repeat use. It further provides +longdesc easy macros for envelopes and for label sheets. Finally, it +longdesc provides some nice defaults for a few of the more common styles +longdesc and sizes. +containersize 4032 +containerchecksum 28765f3b6296ea3b9daf671543b7b2cf371bf2aefb4f3eefe6e95d50ee9a11516a7ec14fec5d15305e8f52d0089072cf10ce9dd4cba30c8fb60fa75365ff0d22 +doccontainersize 493204 +doccontainerchecksum ed81b08b0306ceb519c9a652ef0d271bfa486897b05bc3a91a3840e36d348ea86bdd645ae236d3f34de78d038de988a023e542075f871aa6d8752d9606910dc6 +docfiles size=142 + RELOC/doc/latex/yaletter/CHANGES + RELOC/doc/latex/yaletter/README details="Readme" + RELOC/doc/latex/yaletter/lppl.txt + RELOC/doc/latex/yaletter/yaletter.pdf details="Package documentation" +srccontainersize 18512 +srccontainerchecksum a2e64356234f9bf9bed1a73d5ea362ee487fb3eab43dc89241bf21c7033119e030cf3db81321b1eba245b3330103bff6a7b9f345e6df27f47de35ab9df4a6ace +srcfiles size=18 + RELOC/source/latex/yaletter/yaletter.dtx + RELOC/source/latex/yaletter/yaletter.ins +runfiles size=5 + RELOC/tex/latex/yaletter/yaletter.cls +catalogue-ctan /macros/latex/contrib/yaletter +catalogue-license lppl1.3 +catalogue-topics letter +catalogue-version 1.1 + +name yannisgr +category Package +revision 22613 +shortdesc Greek fonts by Yannis Haralambous +relocated 1 +longdesc A family of 7-bit fonts with a code table designed for setting +longdesc modern polytonic Greek. The fonts are provided as Metafont +longdesc source; macros to produce a Greek variant of Plain TeX +longdesc (including a hyphenation table adapted to the fonts' code +longdesc table) are provided. +containersize 37576 +containerchecksum 509e69acdef68eadc65fef6980e9166c6327e8927fb9cdf6a7a33786a8668ac9b900954a4bb661f223967b26dd240d5ebd91683658b324be284e46876c39061d +doccontainersize 28912 +doccontainerchecksum 40ecdfe71670357e8ec84fd262015b5b5d0b8e486ab80c05d0863a335649501e9548d785cc2b2374f989b820dadd9a074cc229674dd1ae9a6252d4a0ebeb4191 +docfiles size=29 + RELOC/doc/fonts/yannisgr/00changes.txt + RELOC/doc/fonts/yannisgr/README details="Readme" + RELOC/doc/fonts/yannisgr/README.TEXLIVE + RELOC/doc/fonts/yannisgr/monsyl.txt + RELOC/doc/fonts/yannisgr/rgreekmacros.tex + RELOC/doc/fonts/yannisgr/rgrhyph.tex + RELOC/doc/fonts/yannisgr/rgrpaper.lis + RELOC/doc/fonts/yannisgr/rgrpaper.tex + RELOC/doc/fonts/yannisgr/rgrsc10.300gf + RELOC/doc/fonts/yannisgr/rgrsc10.lis + RELOC/doc/fonts/yannisgr/rgrsc10.pl + RELOC/doc/fonts/yannisgr/rgrtestfont.tex + RELOC/doc/fonts/yannisgr/tomakeformat.txt +runfiles size=75 + RELOC/fonts/source/public/yannisgr/csc_misce.mf + RELOC/fonts/source/public/yannisgr/gen_m_acc.mf + RELOC/fonts/source/public/yannisgr/greekcsc.mf + RELOC/fonts/source/public/yannisgr/it_digits.mf + RELOC/fonts/source/public/yannisgr/it_lig.mf + RELOC/fonts/source/public/yannisgr/it_lower.mf + RELOC/fonts/source/public/yannisgr/ligcsc.mf + RELOC/fonts/source/public/yannisgr/m_accent.mf + RELOC/fonts/source/public/yannisgr/m_greek.mf + RELOC/fonts/source/public/yannisgr/mrgrbf10.mf + RELOC/fonts/source/public/yannisgr/mrgrrg10.mf + RELOC/fonts/source/public/yannisgr/mrgrsl10.mf + RELOC/fonts/source/public/yannisgr/mrgrti10.mf + RELOC/fonts/source/public/yannisgr/rgen_acc.mf + RELOC/fonts/source/public/yannisgr/rgraccent.mf + RELOC/fonts/source/public/yannisgr/rgrbase.mf + RELOC/fonts/source/public/yannisgr/rgrbf10.mf + RELOC/fonts/source/public/yannisgr/rgreek.mf + RELOC/fonts/source/public/yannisgr/rgrlig.mf + RELOC/fonts/source/public/yannisgr/rgrlower.mf + RELOC/fonts/source/public/yannisgr/rgrpunct.mf + RELOC/fonts/source/public/yannisgr/rgrrg10.mf + RELOC/fonts/source/public/yannisgr/rgrsc10.mf + RELOC/fonts/source/public/yannisgr/rgrsl10.mf + RELOC/fonts/source/public/yannisgr/rgrti10.mf + RELOC/fonts/source/public/yannisgr/rgrupper.mf + RELOC/fonts/source/public/yannisgr/scsc.mf + RELOC/fonts/tfm/public/yannisgr/mrgrbf10.tfm + RELOC/fonts/tfm/public/yannisgr/mrgrrg10.tfm + RELOC/fonts/tfm/public/yannisgr/mrgrsl10.tfm + RELOC/fonts/tfm/public/yannisgr/mrgrti10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrbf10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrrg10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrsc10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrsl10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrti10.tfm +catalogue-ctan /fonts/greek/yannis +catalogue-license gpl2 +catalogue-topics font font-mf font-greek greek + +name yathesis +category Package +revision 58683 +shortdesc A LaTeX class for writing a thesis following French rules +relocated 1 +longdesc The purpose of yathesis is to facilitate the typesetting of +longdesc theses prepared in France, whatever the disciplines and +longdesc institutes. It implements most notably recommendations from the +longdesc Ministry of Higher Education and Research, and this +longdesc transparently to the user. It has also been designed to +longdesc (optionally) take advantage of powerful tools available in +longdesc LaTeX, including packages: BibLaTeX for the bibliography; +longdesc glossaries for the glossary, list of acronyms and symbols list. +longdesc The yathesis class, based on the book class, aims to be both +longdesc simple to use and, to some extent, (easily) customizable. +longdesc yathesis comes with templates and samples in the +longdesc doc/latex/yathesis/french/exemples/ directory in the +longdesc distribution. They can also be tested on ShareLaTeX (template +longdesc and specimen) and on Overleaf (template and specimen). Note: +longdesc The "ya" in the package name stands for "yet another". +containersize 23336 +containerchecksum 199abb5d02a37420e1c382916880428d5426eacaf007e3e264bf257710823d8380fd0bb69c40065d7259e28769dff4d6c90bd55a5fb931b6497d64b106e9c7cf +doccontainersize 4725256 +doccontainerchecksum 1beedc083923302c094a4f2c7091743c87188292b8633646877c575e1bb724f42b171805f0ce39f615c7485769f191676310e1f5257c0f4c03aa65ec3309c4cb +docfiles size=3218 + RELOC/doc/latex/yathesis/CHANGELOG.md + RELOC/doc/latex/yathesis/README.md details="Readme" + RELOC/doc/latex/yathesis/addons/completion/yathesis.cwl + RELOC/doc/latex/yathesis/english/README-TRANSLATION.md + RELOC/doc/latex/yathesis/french/canevas-specimen.zip + RELOC/doc/latex/yathesis/french/documentation/annexes/add-ons.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/aspects.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/compilation.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/developpements.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/faq.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/fichiers-charges.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/incompatibilites-connues.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/installation.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/notations.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/packages-charges.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/recommandations.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/specimens-canevas.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/traduction.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/usage-avance.tex + RELOC/doc/latex/yathesis/french/documentation/configuration/thesis.cfg + RELOC/doc/latex/yathesis/french/documentation/corps/introduction.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-annexes.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-corps.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-finales.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-liminaires.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-titre.tex + RELOC/doc/latex/yathesis/french/documentation/corps/personnalisation.tex + RELOC/doc/latex/yathesis/french/documentation/corps/proprietes-document.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/introduction.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-dedicaces.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-epigraphes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-laboratoire.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-mots-cles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-resumes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-symboles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-titre.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-clause.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-dedicaces.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-epigraphes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-laboratoire.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-mots-cles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-resumes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-symboles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-titre.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/sommaire.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/table-des-matieres.tex + RELOC/doc/latex/yathesis/french/documentation/glossaries/acronyms.tex + RELOC/doc/latex/yathesis/french/documentation/glossaries/glossary.tex + RELOC/doc/latex/yathesis/french/documentation/latexmkrc + RELOC/doc/latex/yathesis/french/documentation/liminaires/abstract.tex + RELOC/doc/latex/yathesis/french/documentation/liminaires/fixed-footnotes.tex + RELOC/doc/latex/yathesis/french/documentation/liminaires/titre.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/commande-chapter-section.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/expressions-standard.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/expressions.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/no-warnings.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/specimens-canevas-tab.tex + RELOC/doc/latex/yathesis/french/documentation/translations.tex + RELOC/doc/latex/yathesis/french/documentation/yathesis-fr.bib + RELOC/doc/latex/yathesis/french/documentation/yathesis-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/yathesis/french/documentation/yathesis-fr.tex + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/bibliographie.bib + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/comue.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/labo.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/latexmkrc + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/paris13.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/these.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/these.tex + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/tiger.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/ulco.pdf +srccontainersize 50924 +srccontainerchecksum 7c99e72a3ef76aae6f5e4ea77d78cd6cd2c98c7163b468e317f4de72734a3e4e8c2698b93dbc82df20f5b8197905f9f253b5d652debd6fa0c0d5377cc2015611 +srcfiles size=67 + RELOC/source/latex/yathesis/yathesis-samples-templates.dtx + RELOC/source/latex/yathesis/yathesis.dtx +runfiles size=36 + RELOC/tex/latex/yathesis/yathesis-demo.sty + RELOC/tex/latex/yathesis/yathesis-translations.tex + RELOC/tex/latex/yathesis/yathesis.cls +catalogue-contact-bugs https://github.com/dbitouze/yathesis/issues +catalogue-contact-repository https://github.com/dbitouze/yathesis +catalogue-ctan /macros/latex/contrib/yathesis +catalogue-license lppl1.3c +catalogue-topics class dissertation french +catalogue-version 1.0.7 + +name yax +category Package +revision 54080 +shortdesc Yet Another Key System +relocated 1 +longdesc YaX is advertised as a key system, but it rather organizes +longdesc attributes in parameters, which parameters can be executed, so +longdesc that YaX is halfway between key management and macro definition +longdesc (and actually hopes to provide a user's interface). Values +longdesc assigned to attributes can be retrieved and tested in various +longdesc ways, with full expandability ensured as much as possible. +longdesc Finally, YaX's syntax is a quite peculiar (as few braces as +longdesc possible), but may be customized. YaX is based on texapi and +longdesc thus requires e-TeX. +containersize 5936 +containerchecksum a625e7e4d26368732a8700f71f102fb17965a6a85d5a3c28e170dc19248ec0f3cdfd0905c76f0431585e955e29293b49b6dffcf93ed7bdbd80b5d62cca2775e7 +doccontainersize 123700 +doccontainerchecksum 783a606e55a6d2bbd1fb4052bcc84ac499953838808161facd8a76fe0e46a3de8ff0399831bc4e8ddbab02be84a3da68f0f7535c0d3b0b1f3d8d6cfba63ab0a8 +docfiles size=38 + RELOC/doc/generic/yax/README details="Readme" + RELOC/doc/generic/yax/yax-doc.pdf details="Package documentation" + RELOC/doc/generic/yax/yax-doc.tex +runfiles size=8 + RELOC/tex/generic/yax/t-yax.tex + RELOC/tex/generic/yax/yax.sty + RELOC/tex/generic/yax/yax.tex +catalogue-ctan /macros/generic/yax +catalogue-license lppl +catalogue-topics keyval etex +catalogue-version 1.03 + +name yazd-thesis +category Package +revision 51725 +shortdesc A template for the Yazd University +relocated 1 +longdesc This package offers a document class for typesetting theses and +longdesc dissertations at the Yazd University. The class requires use of +longdesc XeLaTeX. +containersize 5988 +containerchecksum 9f8350ad1d606769e5c5825bfa92832775ca7a120287013119f01e3cdd54b052a9bf51cce2c7350e5f7241b4817a4b840590bade6c07646fc519be5ba2d9e11b +doccontainersize 2170868 +doccontainerchecksum 315a82c7e548df4c971d9281f5da6e58a58282a3b05ab23eb41befe4cbe56b278d9a975c920d10cbd387f8809a2301ce800b9fc1c482dd6c3821040ac5911aa0 +docfiles size=1103 + RELOC/doc/xelatex/yazd-thesis/MyReferences.bib + RELOC/doc/xelatex/yazd-thesis/README details="Readme" + RELOC/doc/xelatex/yazd-thesis/appendix1.tex + RELOC/doc/xelatex/yazd-thesis/chapter1.tex + RELOC/doc/xelatex/yazd-thesis/chapter2.tex + RELOC/doc/xelatex/yazd-thesis/chapter3.tex + RELOC/doc/xelatex/yazd-thesis/chapter4.tex + RELOC/doc/xelatex/yazd-thesis/chapter5.tex + RELOC/doc/xelatex/yazd-thesis/dicen2fa.tex + RELOC/doc/xelatex/yazd-thesis/dicfa2en.tex + RELOC/doc/xelatex/yazd-thesis/eninfo.tex + RELOC/doc/xelatex/yazd-thesis/fainfo.tex + RELOC/doc/xelatex/yazd-thesis/figures/DSsequence.pdf + RELOC/doc/xelatex/yazd-thesis/figures/Install-1.JPG + RELOC/doc/xelatex/yazd-thesis/figures/Install-2.JPG + RELOC/doc/xelatex/yazd-thesis/figures/Install-3.JPG + RELOC/doc/xelatex/yazd-thesis/figures/Install-4.JPG + RELOC/doc/xelatex/yazd-thesis/figures/Install-5.JPG + RELOC/doc/xelatex/yazd-thesis/figures/Install-6.JPG + RELOC/doc/xelatex/yazd-thesis/figures/Latex2Word.JPG + RELOC/doc/xelatex/yazd-thesis/figures/Print-PDF.png + RELOC/doc/xelatex/yazd-thesis/figures/Setup.JPG + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-1.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-2.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-3.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-4.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-5.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-6.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-Update-1.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-Update-2.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-Update-3.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-Update-4.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-Update-5.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-Update-6.jpg + RELOC/doc/xelatex/yazd-thesis/figures/TexLive2015-Update-7.jpg + RELOC/doc/xelatex/yazd-thesis/figures/besm.jpg + RELOC/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-1.jpg + RELOC/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-2.jpg + RELOC/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-p1.jpg + RELOC/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-p1.pdf + RELOC/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-p2.jpg + RELOC/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-p2.pdf + RELOC/doc/xelatex/yazd-thesis/figures/install-pack-1.JPG + RELOC/doc/xelatex/yazd-thesis/figures/install-pack-2.JPG + RELOC/doc/xelatex/yazd-thesis/figures/install-pack-3.JPG + RELOC/doc/xelatex/yazd-thesis/figures/install-pack-4.JPG + RELOC/doc/xelatex/yazd-thesis/figures/install-pack-5.JPG + RELOC/doc/xelatex/yazd-thesis/figures/logo.png + RELOC/doc/xelatex/yazd-thesis/figures/test-crop.jpg + RELOC/doc/xelatex/yazd-thesis/figures/test-crop.pdf + RELOC/doc/xelatex/yazd-thesis/figures/word2Latex.JPG + RELOC/doc/xelatex/yazd-thesis/yazd-thesis.pdf details="Package documentation" language="fa" + RELOC/doc/xelatex/yazd-thesis/yazd-thesis.tex +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-license lppl1.3c +catalogue-topics class dissertation persian xetex +catalogue-version 0.3 + +name ycbook +category Package +revision 46201 +shortdesc A versatile book class +relocated 1 +longdesc This class is intended to be an interpretation of the mwbk +longdesc class which is a part of the mwcls package. The mwcls classes +longdesc are simple, yet powerful and customizable classes that allow +longdesc the end-user to customize the layout of headers, headings etc. +longdesc They also have the benefit of being more economic in space than +longdesc the most common LaTeX classes, while keeping a clear appearance +longdesc and a smooth flow. +containersize 4708 +containerchecksum 8b98cd81e5f1252063da8dc297eb5580d06020a343638f7c8a1090a7f056a788eb4322e286f12d821be79fc7de94262a4ff15c14a1c787be0de89ddc87541452 +doccontainersize 124828 +doccontainerchecksum 45ee725849230549b4b2f200e0b140c1fc99a60d91730a42d2e3df63e828eb6053845a2eb84ff25bf916341df46a3f3c01166848afb291d322dfb21426903644 +docfiles size=36 + RELOC/doc/latex/ycbook/README.md details="Readme" + RELOC/doc/latex/ycbook/ycbook-doc.pdf details="Package documentation" + RELOC/doc/latex/ycbook/ycbook-doc.tex +runfiles size=5 + RELOC/tex/latex/ycbook/ycbook.cls +catalogue-also mwcls +catalogue-ctan /macros/latex/contrib/ycbook +catalogue-license lppl1.3c +catalogue-topics book-pub class + +name ydoc +category Package +revision 56291 +shortdesc Macros for documentation of LaTeX classes and packages +relocated 1 +longdesc The package provides macros and environments to document LaTeX +longdesc packages and classes. It is an (as yet unfinished) alternative +longdesc to the ltxdoc class and the doc or xdoc packages. The aim is to +longdesc provide a different layout and more modern styles (using the +longdesc xcolor, hyperref packages, etc.) This is an alpha release, and +longdesc should probably not (yet) be used with other packages, since +longdesc the implementation might change. Nevertheless, the author uses +longdesc it to document his own packages. +containersize 9196 +containerchecksum 59c30887f6f7e5efb1aadd24b63fe15489f99c7af2f448aeb4e8cc10e846831df2061aa470e8bd104f7ae86dd438bb65a91e7666c68a5ecc18b607adf6962c97 +doccontainersize 321388 +doccontainerchecksum 74d2d0ea05849b280aba78ed0f3ac409cb379938166e791c2fbc77f3bb792e4df3bba287912b6bd35ad9e99592f8b36ff2113ab8c667ad58374dc20298af9121 +docfiles size=81 + RELOC/doc/latex/ydoc/README details="Readme" + RELOC/doc/latex/ydoc/ydoc.pdf details="Package documentation" +srccontainersize 17476 +srccontainerchecksum 3b09eb1036668097dc185595a8ed703b99f83cab068ab8221385d8ca3dfa73b476478f337adb1ed273554c6c2011f0f03ae1b4138a5d1f62268cbf892e70051c +srcfiles size=20 + RELOC/source/latex/ydoc/ydoc.dtx +runfiles size=14 + RELOC/tex/generic/ydoc/ydocincl.tex + RELOC/tex/generic/ydoc/ydocstrip.tex + RELOC/tex/latex/ydoc/ydoc-code.sty + RELOC/tex/latex/ydoc/ydoc-desc.sty + RELOC/tex/latex/ydoc/ydoc-doc.sty + RELOC/tex/latex/ydoc/ydoc-expl.sty + RELOC/tex/latex/ydoc/ydoc.cfg + RELOC/tex/latex/ydoc/ydoc.cls + RELOC/tex/latex/ydoc/ydoc.sty +catalogue-also ltxdoc doc xdoc gmdoc codedoc nicetext showexpl +catalogue-contact-bugs https://sourceforge.net/p/ydoc/tickets/ +catalogue-contact-home https://sourceforge.net/p/ydoc/ +catalogue-contact-repository https://sourceforge.net/p/ydoc/code/ci/default/tree/ +catalogue-ctan /macros/latex/contrib/ydoc +catalogue-license lppl1.3 +catalogue-topics doc-supp class macro-demo +catalogue-version 0.6alpha + +name yfonts +category Package +revision 50755 +shortdesc Support for old German fonts +relocated 1 +longdesc A LaTeX interface to the old-german fonts designed by Yannis +longdesc Haralambous: Gothic, Schwabacher, Fraktur and the baroque +longdesc initials. +containersize 1820 +containerchecksum 1caa22023c93ae1e6a2fd94676da61fd576890f991a79d6a9724a4e5f7e653a752c6af792a1b15d44aa956f5788aa995614a33c2d97e95865d6a364f833e539f +doccontainersize 192824 +doccontainerchecksum 54857e6693242080c5f410ded0bb16d3df65fee2834b2b5d1232dd063a70796905771059da07e7d92358fce9da992c3e605be345ae7c5d4012d37dc37a17dc82 +docfiles size=50 + RELOC/doc/latex/yfonts/README details="Readme" + RELOC/doc/latex/yfonts/frktest.tex + RELOC/doc/latex/yfonts/liesmich + RELOC/doc/latex/yfonts/yfonts.pdf +srccontainersize 7968 +srccontainerchecksum c716a8ecca03f0dbaf07146021977fd802e2089c5b99fc7adaac1e581ecbfd4f4b1a15562a54eea7c783f5b8b6165b935e484e36a456ef81729751c777266815 +srcfiles size=7 + RELOC/source/latex/yfonts/yfonts.dtx + RELOC/source/latex/yfonts/yfonts.ins +runfiles size=2 + RELOC/tex/latex/yfonts/yfonts.sty +catalogue-also mfnfss +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-license lppl +catalogue-topics font-supp +catalogue-version 1.4 + +name yfonts-t1 +category Package +revision 36013 +shortdesc Old German-style fonts, in Adobe type 1 format +relocated 1 +longdesc This package comprises type 1 versions of the Gothic, +longdesc Schwabacher and Fraktur fonts of Yannis Haralambous' set of old +longdesc German fonts. +execute addMap yfrak.map +containersize 145940 +containerchecksum ec4cfa0d4f08f506b3bf7a3acc8e303ba51c7761f32498f040e062264e595bebe64a4f5adc7d6ab5aa2180c55b817d0124d5b07b276cb39c775539113a08f490 +doccontainersize 952 +doccontainerchecksum dd37c5163de0bdcce937a1866a48d9f924faff81da11e566e9525a6d5a81ae82419ee7eaebdff1cd8512957a878f849f43e9cd71dd39625e6dc0e2ba18f4ac9b +docfiles size=1 + RELOC/doc/fonts/yfonts-t1/README details="Package README" +runfiles size=50 + RELOC/dvips/yfonts-t1/config.yfrak + RELOC/fonts/afm/public/yfonts-t1/yfrak.afm + RELOC/fonts/afm/public/yfonts-t1/ygoth.afm + RELOC/fonts/afm/public/yfonts-t1/yswab.afm + RELOC/fonts/map/dvips/yfonts-t1/yfrak.map + RELOC/fonts/type1/public/yfonts-t1/yfrak.pfb + RELOC/fonts/type1/public/yfonts-t1/ygoth.pfb + RELOC/fonts/type1/public/yfonts-t1/yswab.pfb +catalogue-also mfnfss yfonts +catalogue-ctan /fonts/ps-type1/yfonts +catalogue-license other-free +catalogue-topics font font-type1 font-gothic +catalogue-version 1.0 + +name yhmath +category Package +revision 54377 +shortdesc Extended maths fonts for LaTeX +relocated 1 +longdesc The yhmath bundle contains fonts (in Metafont and type 1 +longdesc format) and a LaTeX package for using them. +execute addMixedMap yhmath.map +containersize 36996 +containerchecksum 88476f5355d041f1920c4f0f954853828bdfaf27b9d0441982a38e3dfe79b40377a83614794024ee8c8463eaf5d1c350bff033f1c53e031451ab7cd095e14948 +doccontainersize 285444 +doccontainerchecksum 56fb12fcc4099f14c5746727b3c3051d84097cd8a715023545c3a2fafcc5a5abe55980a12e4384f674ef6cad2c7d6dab2beb8374e4cb3af81f711c2e8320d97b +docfiles size=85 + RELOC/doc/fonts/yhmath/LICENSE + RELOC/doc/fonts/yhmath/README details="Readme" + RELOC/doc/fonts/yhmath/yhcmex10.vpl + RELOC/doc/fonts/yhmath/yhmath.pdf details="Sample and documentation" +srccontainersize 16512 +srccontainerchecksum 57a97c1310cfefcc453d031dd3c4701bac2a36c04f435f7a823e1b83671afccadc33d213e9578f4bbf806b6c73aaf33d3816dcafa86fb4447d53659e11f83072 +srcfiles size=33 + RELOC/source/fonts/yhmath/Makefile + RELOC/source/fonts/yhmath/yhmath.drv + RELOC/source/fonts/yhmath/yhmath.dtx + RELOC/source/fonts/yhmath/yhmath.ins +runfiles size=33 + RELOC/fonts/map/dvips/yhmath/yhmath.map + RELOC/fonts/source/public/yhmath/yhbigacc.mf + RELOC/fonts/source/public/yhmath/yhbigdel.mf + RELOC/fonts/source/public/yhmath/yhmathex.mf + RELOC/fonts/source/public/yhmath/yrcmex10.mf + RELOC/fonts/tfm/public/yhmath/yhcmex10.tfm + RELOC/fonts/tfm/public/yhmath/yrcmex10.tfm + RELOC/fonts/type1/public/yhmath/yhcmex.pfb + RELOC/fonts/vf/public/yhmath/yhcmex10.vf + RELOC/tex/latex/yhmath/OMXyhex.fd + RELOC/tex/latex/yhmath/yhcmex10.cmap + RELOC/tex/latex/yhmath/yhmath.sty +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-license lppl1.3c +catalogue-topics font font-mf font-type1 font-symbol-maths +catalogue-version 1.6 + +name yinit-otf +category Package +revision 40207 +shortdesc OTF conversion of Yannis Haralambous' Old German decorative initials +relocated 1 +longdesc This package is a conversion of the yinit font into OTF. +longdesc Original Metafont files for yinit are in the yinit package. +containersize 253664 +containerchecksum 5ec9f9408c3188b2bf985e9c3f1f9f6a345557d08a167a9d02c07fe41bbb981a8889f580d6e38a97798bb5e891d978eb4ee70b77a344c684051b5644654d1cd1 +doccontainersize 604 +doccontainerchecksum 6c73466c1e4ce1f7aec1b30980e5c44ca4917e161236fad7a0816bc93e921525b90f62abd8d41d3b767d8a6eda62a34534d7129d1fc490fda430345f8a2b3ce7 +docfiles size=1 + RELOC/doc/fonts/yinit-otf/README.md details="Readme" +runfiles size=171 + RELOC/fonts/opentype/public/yinit-otf/Yinit.otf +catalogue-also yfonts +catalogue-ctan /fonts/gothic/yinit-otf +catalogue-license pd +catalogue-topics font-otf font-decor font-gothic +catalogue-version 1.0 + +name york-thesis +category Package +revision 23348 +shortdesc A thesis class file for York University, Toronto +relocated 1 +longdesc York Graduate Studies has again changed the requirements for +longdesc theses and dissertations. The established york-thesis class +longdesc file now implements the changes made in Spring 2005. +containersize 4292 +containerchecksum 5b5152cc315dc05164ba3502d6e7aff355d853e43a3836bda0a15a4af7a90ef9fef02c852125c7e1e4842c05d51f2be6441b5131400eb46bb6704b281711e18d +doccontainersize 111744 +doccontainerchecksum e1ee454ad9996b61f1cac9bbeec30210359ecd8939bd9e0696e7cca7106733b13b8831946c47652186d4b80060f96c479b642274f5c90f8757953b1c3861f0bc +docfiles size=32 + RELOC/doc/latex/york-thesis/README details="Package Readme" + RELOC/doc/latex/york-thesis/york-thesis-Template.tex + RELOC/doc/latex/york-thesis/york-thesis.el + RELOC/doc/latex/york-thesis/york-thesis.pdf details="Package documentation" +srccontainersize 12580 +srccontainerchecksum 3096ee9334bab690b38ff943559a0a7b0c54f8b831e7d1320ae4581740c48dd05e09813e220ce1d28d4523fb456d7fd01920e89e7e0d66da00e9dce88bfadea7 +srcfiles size=12 + RELOC/source/latex/york-thesis/york-thesis.dtx + RELOC/source/latex/york-thesis/york-thesis.ins +runfiles size=4 + RELOC/tex/latex/york-thesis/york-thesis.cls +catalogue-ctan /macros/latex/contrib/york-thesis +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 3.6 + +name youngtab +category Package +revision 56500 +shortdesc Typeset Young-Tableaux +relocated 1 +longdesc A package for typesetting Young-Tableaux, mathematical symbols +longdesc for the representations of groups, providing two macros, +longdesc \yng(1) and \young(1) to generate the whole Young-Tableau. +containersize 2008 +containerchecksum 4ac5c3803a2e815c51178fa30086ad25c1dd2b430753d582376c9f6c720bd1a72db1d285d2b0cd810e3564961ce3641f3b482d685126e880cfb1dc856dc74bc0 +doccontainersize 144308 +doccontainerchecksum b291614a22227693f93422af280200fd927fcefd0399d4294f934ff8882d26e263a3a1dcbac3ad2289d2adf2ff92c76a8223eb450de46e0b1df283af31bac3da +docfiles size=46 + RELOC/doc/generic/youngtab/README details="Readme" + RELOC/doc/generic/youngtab/makeydoc + RELOC/doc/generic/youngtab/youngtab.el + RELOC/doc/generic/youngtab/youngtab.pdf details="Package documentation" + RELOC/doc/generic/youngtab/youngtab.tex +srccontainersize 12072 +srccontainerchecksum 57110b41ada1866d327eee8f1eae1ad61ad7bea1428bf9a3ccd31b9cf27e19537952ef756299f62e5204e5fddf5d032c8170eb36d6a9fe73e66c8d72e1c4f085 +srcfiles size=11 + RELOC/source/generic/youngtab/makeydoc.bat + RELOC/source/generic/youngtab/youngtab.dtx + RELOC/source/generic/youngtab/youngtab.ins +runfiles size=2 + RELOC/tex/generic/youngtab/youngtab.sty +catalogue-also young ytableau +catalogue-ctan /macros/generic/youngtab +catalogue-license lppl1 +catalogue-topics maths macro-gen +catalogue-version 1.1 + +name yplan +category Package +revision 34398 +shortdesc Daily planner type calendar +longdesc Prints two six-monthly vertical-type daily planner (i.e., +longdesc months along the top, days downwards), with each 6-month period +longdesc fitting onto a single A4 (or US letter) sheet. The package +longdesc offers support for English, French, German, Spanish and +longdesc Portuguese. The previous scheme of annual updates has now been +longdesc abandoned, in favour of a Perl script yplan that generates a +longdesc year's planner automatically. (The last manually-generated +longdesc LaTeX file remains on the archive.) +depend yplan.ARCH +containersize 6236 +containerchecksum 4884ac99b0b56927fb86c6e06ae9d4accb7d8b441bb17df79753d8af9ee84b9440d66ad4fcf2107aa036eb2af89d5ad49d0a4c4cb91236c6475cf81bab85566a +doccontainersize 4588 +doccontainerchecksum 7d3cddf3f2d54283b777c7ab7867df68fdb484c67d2f88589e29fc087db721e7ba9e0fcea2ffde9328e89075884d668b7de8fc61f462b735d9f1cfadb9662463 +docfiles size=6 + texmf-dist/doc/latex/yplan/yplan.doc + texmf-dist/doc/latex/yplan/yplan00.doc + texmf-dist/doc/latex/yplan/yplan00a.tex + texmf-dist/doc/latex/yplan/yplan00b.tex +runfiles size=5 + texmf-dist/scripts/yplan/yplan + texmf-dist/tex/latex/yplan/yplan.sty +catalogue-ctan /macros/latex/contrib/yplan +catalogue-license lppl +catalogue-topics calendar + +name yplan.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of yplan +containersize 336 +containerchecksum 2186a2d5cd90be2379685adb117809746df9c35c951488d08c0b6b552d13035ff8a04bc9ce87bc987529a936365ca17fc2a74357c0d755be2671987f50fe5188 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/yplan + +name yplan.amd64-freebsd +category Package +revision 34398 +shortdesc amd64-freebsd files of yplan +containersize 340 +containerchecksum ccef21172dd9e3b54ea7cc88730f0df39f4778a29622b1606e46cc63dd9d90733e0824b1b9bbd61b8bcf89b1446bcdc8f3231094ccc3beceba5f50ec9e4f38ea +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/yplan + +name yplan.amd64-netbsd +category Package +revision 34398 +shortdesc amd64-netbsd files of yplan +containersize 336 +containerchecksum bd22f97a943cdd44ca15a7ed83119e0e4164ab39ea0e2531552bdb435383b37307b20d6bd53c8297c28df561da54d8f113b35f83a427dad0248af55ec20b319e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/yplan + +name yplan.armhf-linux +category Package +revision 34398 +shortdesc armhf-linux files of yplan +containersize 336 +containerchecksum 414e71a5179232a6bd76c62267468f39d62ed99ddab384df3bbb9d2afdacb739a351e8b301bd0d4446919e79d8b87fd187692cb56d83e787b2e68e425fde1a5e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/yplan + +name yplan.i386-cygwin +category Package +revision 34398 +shortdesc i386-cygwin files of yplan +containersize 332 +containerchecksum 5be7a05812eddd23541b9cd2a1997332a2d2c24a3c42533fe89f923b87047e78f680e62d015254427fef440ce4944da1b9864517b83779dedf2b2717ee26446a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/yplan + +name yplan.i386-freebsd +category Package +revision 34398 +shortdesc i386-freebsd files of yplan +containersize 336 +containerchecksum 8cb3e4013bee0f0c2041f1e710cbe005d1d4f8f58cc323df42ab84d028aee387bb793ae63f4f98e49cdc6445f53f24286a7cdb18bcd378aedbfe0618a0a25352 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/yplan + +name yplan.i386-linux +category Package +revision 34398 +shortdesc i386-linux files of yplan +containersize 336 +containerchecksum 9610bd99d25371c29e05ab9e5fc97d2ff9956495fbbd51fb2e3a28680bc97bf2b3b889fc44e9b0bf859be0f30212743a239b7e738d7ce27ad1f9cc7ea98ccecb +binfiles arch=i386-linux size=1 + bin/i386-linux/yplan + +name yplan.i386-netbsd +category Package +revision 34398 +shortdesc i386-netbsd files of yplan +containersize 336 +containerchecksum 91a7dea079eaf3386ace2ad5f2cb615106e0d445434f905f86c946b5b15eb75243aa9e919be1a702f520d16efe86a915e2d0890e046304f3f44418471f8395d9 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/yplan + +name yplan.i386-solaris +category Package +revision 34398 +shortdesc i386-solaris files of yplan +containersize 336 +containerchecksum 150dbbfe1dcbf57c8e342c5f104f12af2bac2506a795de82c13a6091f2288520d7f23dc1cac477b1d7b81f7a47609e90eb802dbd62e6c6162225e3a2808e4665 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/yplan + +name yplan.universal-darwin +category Package +revision 57908 +shortdesc universal-darwin files of yplan +containersize 336 +containerchecksum a4ac81af1a2d20e63cbb1fcd525926fc6010c26a44948436d2ae16180d45b3f8106c96c46b923845fabd9b00bf9d08daec485f6460635352a3d1334f94775ecd +binfiles arch=universal-darwin size=1 + bin/universal-darwin/yplan + +name yplan.win32 +category Package +revision 34398 +shortdesc win32 files of yplan +containersize 680 +containerchecksum abfda78d396aab73b4d172d7846f05d95c38a300efb96b960325f8ac88926ec14e96b09ddc0c19288c7e606c9502d315e2b7a14ca473c3a2517237170723b08a +binfiles arch=win32 size=1 + bin/win32/yplan.exe + +name yplan.x86_64-cygwin +category Package +revision 34398 +shortdesc x86_64-cygwin files of yplan +containersize 340 +containerchecksum 21e21fca56a1ed9b8b1c73376ea54a30bcd9c3d44516c934008842ac1831c5d3850ca4d75f04ba385378a695988309585ef327a05428aac6672b214ca70eb11f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/yplan + +name yplan.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of yplan +containersize 344 +containerchecksum 7d0f7d3ff73fd33e0cf81035ebca1124a4bb232b0090af51e394b968a70e84ebc01039acc1b231cda1da7c9c4824f60e6485527eeefc7442e96fec0c9876edc7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/yplan + +name yplan.x86_64-linux +category Package +revision 34398 +shortdesc x86_64-linux files of yplan +containersize 336 +containerchecksum 95735da8a462ac781b4a28ef057a7bbc803211e6259735b1eac61bffad175e6c9667f23764ed91ed668d8756d352547df0045dc778489281034a5a91310d4a32 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/yplan + +name yplan.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of yplan +containersize 340 +containerchecksum fa25e15de50f6007c19ab3c325978d328ec65773263d9ce7b1b70902d46412632c0cab6c4e99083905de2b867c7bb656cea7ed8d98d19ff2f3286f5214523e6d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/yplan + +name yplan.x86_64-solaris +category Package +revision 34398 +shortdesc x86_64-solaris files of yplan +containersize 336 +containerchecksum 37e66d345fa8b2c758699c6c5957ac5cbb221ddb05b6f647650d74e9a4098047150634fb4c44098d35e17207201e97d4ff0e564c8e2dd6137354cf571d633379 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/yplan + +name yquant +category Package +revision 58712 +shortdesc Typesetting quantum circuits in a human-readable language +relocated 1 +longdesc This LaTeX package allows to quickly draw quantum circuits. It +longdesc bridges the gap between the two groups of packages that already +longdesc exist: those that use a logic-oriented custom language, which +longdesc is then translated into TeX by means of an external program; +longdesc and the pure TeX versions that mainly provide some macros to +longdesc allow for an easier input. yquant is a pure-LaTeX solution -- +longdesc i.e., it requires no external program -- that introduces a +longdesc logic oriented language and thus brings the best of both worlds +longdesc together. It builds on and interacts with TikZ, which brings an +longdesc enourmous flexibility for customization of individual circuit. +containersize 45296 +containerchecksum 90c4488ffbb6a2ec49297b7584c27416044220253fb7f20104402062e57df415d0f89dd4545b4964e5c3ca28851cc4762301151963d0be74200f7809ec31f494 +doccontainersize 535904 +doccontainerchecksum ada2f983ef92968da06bbf21371b58ce02a257992160e898ad75a66fbb7aae3fbb00178d2663e1d816e3928eb187f44b50c812239f0c1b5861786ad9d5ccf812 +docfiles size=234 + RELOC/doc/latex/yquant/README.md details="Readme" + RELOC/doc/latex/yquant/test1.qasm + RELOC/doc/latex/yquant/test10.qasm + RELOC/doc/latex/yquant/test11.qasm + RELOC/doc/latex/yquant/test12.qasm + RELOC/doc/latex/yquant/test13.qasm + RELOC/doc/latex/yquant/test14.qasm + RELOC/doc/latex/yquant/test15.qasm + RELOC/doc/latex/yquant/test16.qasm + RELOC/doc/latex/yquant/test17.qasm + RELOC/doc/latex/yquant/test18.qasm + RELOC/doc/latex/yquant/test2.qasm + RELOC/doc/latex/yquant/test3.qasm + RELOC/doc/latex/yquant/test4.qasm + RELOC/doc/latex/yquant/test5.qasm + RELOC/doc/latex/yquant/test6.qasm + RELOC/doc/latex/yquant/test7.qasm + RELOC/doc/latex/yquant/test8.qasm + RELOC/doc/latex/yquant/test9.qasm + RELOC/doc/latex/yquant/yquant-doc.pdf details="Package documentation" + RELOC/doc/latex/yquant/yquant-doc.tex +runfiles size=78 + RELOC/tex/latex/yquant/yquant-circuit.tex + RELOC/tex/latex/yquant/yquant-config.tex + RELOC/tex/latex/yquant/yquant-draw.tex + RELOC/tex/latex/yquant/yquant-env.tex + RELOC/tex/latex/yquant/yquant-lang.tex + RELOC/tex/latex/yquant/yquant-langhelper.tex + RELOC/tex/latex/yquant/yquant-prepare.tex + RELOC/tex/latex/yquant/yquant-registers.tex + RELOC/tex/latex/yquant/yquant-shapes.tex + RELOC/tex/latex/yquant/yquant-tools.tex + RELOC/tex/latex/yquant/yquant.sty + RELOC/tex/latex/yquant/yquantlanguage-qasm.sty +catalogue-contact-bugs https://github.com/projekter/yquant/issues +catalogue-contact-home https://github.com/projekter/yquant +catalogue-ctan /graphics/pgf/contrib/yquant +catalogue-license lppl1.3c +catalogue-topics graphics diagram-circ pgf-tikz +catalogue-version 0.4 + +name ytableau +category Package +revision 27430 +shortdesc Many-featured Young tableaux and Young diagrams +relocated 1 +longdesc The package provides several functions for drawing Young +longdesc tableaux and Young diagrams, extending the young and youngtab +longdesc packages but providing lots more features. Skew and coloured +longdesc tableaux are easy, and pgfkeys-enabled options are provided +longdesc both at package load and configurably. +containersize 3060 +containerchecksum 2d9528c47b516213d0d8ea6341edc1772aa4a88a7db60d4506cbef107be034bcb9036b18f61a12e042e95bd9d0aea51b0ee696565841d2efb12b442756c48a30 +doccontainersize 360820 +doccontainerchecksum 47db377bfecce43d97e573360cfc65936664b5ea886b5bc0042b39e3a879becef0e9894c364a31cb4cda7420ba672c8f55e7936ae5b1d291259d8deb7a6d9f9d +docfiles size=90 + RELOC/doc/latex/ytableau/README details="Readme" + RELOC/doc/latex/ytableau/ytableau.pdf details="Package documentation" +srccontainersize 15896 +srccontainerchecksum 02c2aff53daaec5161a9715de2e633d03dedc85664868d73c49dc0edc5c8b0bc696e3e8ab6d25f3420663fcff830581a7b2fdd0718a3c4928aa808ca3b1cbde3 +srcfiles size=15 + RELOC/source/latex/ytableau/ytableau.dtx + RELOC/source/latex/ytableau/ytableau.ins +runfiles size=3 + RELOC/tex/latex/ytableau/ytableau.sty +catalogue-also youngtab young +catalogue-ctan /macros/latex/contrib/ytableau +catalogue-license lppl1.2 +catalogue-topics maths +catalogue-version 1.3 + +name zapfchan +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uzc.map +containersize 79924 +containerchecksum 46a104a6e4d1cf681bf10bf22fa32510982939cf52dd255a7ec50e5a9f95acf72457195cee13499c6f517a7f2b03be8a285eb6730f659d59ee5aa42522ba34bb +runfiles size=59 + RELOC/dvips/zapfchan/config.uzc + RELOC/fonts/afm/adobe/zapfchan/pzcmi8a.afm + RELOC/fonts/afm/urw/zapfchan/uzcmi8a.afm + RELOC/fonts/map/dvips/zapfchan/uzc.map + RELOC/fonts/tfm/adobe/zapfchan/pzcmi.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi7t.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi8c.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi8r.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi8t.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi7t.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi8c.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi8r.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi8t.tfm + RELOC/fonts/type1/urw/zapfchan/uzcmi8a.pfb + RELOC/fonts/type1/urw/zapfchan/uzcmi8a.pfm + RELOC/fonts/vf/adobe/zapfchan/pzcmi.vf + RELOC/fonts/vf/adobe/zapfchan/pzcmi7t.vf + RELOC/fonts/vf/adobe/zapfchan/pzcmi8c.vf + RELOC/fonts/vf/adobe/zapfchan/pzcmi8t.vf + RELOC/fonts/vf/urw35vf/zapfchan/uzcmi7t.vf + RELOC/fonts/vf/urw35vf/zapfchan/uzcmi8c.vf + RELOC/fonts/vf/urw35vf/zapfchan/uzcmi8t.vf + RELOC/tex/latex/zapfchan/8ruzc.fd + RELOC/tex/latex/zapfchan/omluzc.fd + RELOC/tex/latex/zapfchan/omsuzc.fd + RELOC/tex/latex/zapfchan/ot1uzc.fd + RELOC/tex/latex/zapfchan/t1uzc.fd + RELOC/tex/latex/zapfchan/ts1uzc.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name zapfding +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uzd.map +containersize 46964 +containerchecksum e3e6e69b82858d8bd653bcb112ed81b8b5aacc0b915b5e4ed4288f5aef896211e75b85b1b647989e0ffa431ec204a9d8ad27b2e60bc2b28eea83eb3518945bf1 +runfiles size=24 + RELOC/dvips/zapfding/config.uzd + RELOC/fonts/afm/adobe/zapfding/pzdr.afm + RELOC/fonts/afm/urw/zapfding/uzdr.afm + RELOC/fonts/map/dvips/zapfding/uzd.map + RELOC/fonts/tfm/adobe/zapfding/pzdr.tfm + RELOC/fonts/tfm/urw35vf/zapfding/uzdr.tfm + RELOC/fonts/type1/urw/zapfding/uzdr.pfb + RELOC/fonts/type1/urw/zapfding/uzdr.pfm + RELOC/tex/latex/zapfding/uuzd.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name zbmath-review-template +category Package +revision 58543 +shortdesc Template for a zbMATH Open review +relocated 1 +longdesc This package contains a template for zbMATH Open reviews. It +longdesc will show what your review will look like on zbMATH Open and +longdesc you can test whether your LaTeX-Code will compile on our +longdesc system. The template has to be compiled using XeLaTeX and +longdesc relies on scrartcl, babel, scrlayer-scrpage, geometry, +longdesc graphicx, enumitem, fontspec, amsmath, amsfonts, amssymb, +longdesc mathtools, stmaryrd, mathrsfs, tikz-cd, textcomp, and gensymb. +containersize 1300 +containerchecksum aaadb2179f8c8c3b48dca8f4d021a51dd34863f7f3c30cb6705c07026218684038f398468a9b4a779d8a3cc4ab2520dadb81890690b173b20b1f5baf3644886b +doccontainersize 184640 +doccontainerchecksum 8bdf2cd42ba8cc24e55fcbf8061a2cbbcdd750d77f5ad3c613d721eec2ba164cc69a73a85382d5a2893121300ce2657f291d181c92d4b0f8a7b574229d6f97d9 +docfiles size=54 + RELOC/doc/xelatex/zbmath-review-template/README.md details="Readme" + RELOC/doc/xelatex/zbmath-review-template/figures/screenshot.png + RELOC/doc/xelatex/zbmath-review-template/zb-main.pdf + RELOC/doc/xelatex/zbmath-review-template/zb-main.tex + RELOC/doc/xelatex/zbmath-review-template/zb-manual.pdf details="Package documentation" + RELOC/doc/xelatex/zbmath-review-template/zb-manual.tex + RELOC/doc/xelatex/zbmath-review-template/zb-metadata.tex + RELOC/doc/xelatex/zbmath-review-template/zb-review.tex +runfiles size=1 + RELOC/tex/xelatex/zbmath-review-template/zb-basics.sty +catalogue-ctan /macros/xetex/latex/zbmath-review-template +catalogue-license gpl3 +catalogue-topics doc-templ xetex +catalogue-version 1.0 + +name zebra-goodies +category Package +revision 51554 +shortdesc A collection of handy macros for paper writing +relocated 1 +longdesc This package offers a collection of macros to help in the +longdesc process of writing a paper. You may add comments, todo notes, +longdesc etc. during revision, in a colourful way. The package also +longdesc summarizes the inserted notes at the end of the document. There +longdesc are some predefined note commands as well as a way of defining +longdesc new ones to suit the user's needs. You may safely remove this +longdesc package once the paper is finished. This package depends on the +longdesc following other LaTeX packages: kvoptions, manfnt, marginnote, +longdesc tikzpagenodes, xcolor, and, optionally, microtype. Note: +longdesc "zebra" is the name of the package author's lab. +containersize 2364 +containerchecksum c6ba09e174207ed9f28053bd82ae46551910358e74ad7afd74b406a93d4720f5b11b1921497c3c464c80b55d8fd4e4adbfb115f3ed9a9bcdf68ebf96bda06434 +doccontainersize 112304 +doccontainerchecksum 48652f89e032526de7c37ad57ff5719d75dd50e5a00ec48a4d94c314bb159d76061ce9c9cf8519bfc8d546e274f8ab1344751d798abac422562efe6026df1872 +docfiles size=29 + RELOC/doc/latex/zebra-goodies/README.md details="Readme" + RELOC/doc/latex/zebra-goodies/zebra-goodies.pdf details="Package documentation" +srccontainersize 6812 +srccontainerchecksum 2f2cebe6593b55cdbe03bec6215f74a4520a3a0f5198316e749eafd9adab2f9b4a7fef99dcd831cccffb0d758e2755bf7a97c21df8b7f1b770b4e5359d69bc7e +srcfiles size=6 + RELOC/source/latex/zebra-goodies/zebra-goodies.dtx + RELOC/source/latex/zebra-goodies/zebra-goodies.ins +runfiles size=1 + RELOC/tex/latex/zebra-goodies/zebra-goodies.sty +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-license lppl1.3c +catalogue-topics notes editorial marginal +catalogue-version 0.8.0 + +name zed-csp +category Package +revision 17258 +shortdesc Typesetting Z and CSP format specifications +relocated 1 +longdesc The package supports real-time CSP and incorporates the +longdesc functionality of Spivey's original Z package, written for LaTeX +longdesc 2.09. +containersize 8040 +containerchecksum 2f41c5b28e602aa88146cbbc172eb2d6c6f21491e45622c4c1688b9a8acb5be304a8acde842bef84f7a238109ac9ebefa31844826387b266f14faa6a6943903a +doccontainersize 234644 +doccontainerchecksum e5e657656e46023e32366ba415f46322f4c9b4fe0e69f03c88d4e5fcdd577e3436be6436424f502c3807278efe3a31ab7cba3020ef3c9e44874de3660dcccd2b +docfiles size=75 + RELOC/doc/latex/zed-csp/csp2e.pdf details="CSP usage documentation" + RELOC/doc/latex/zed-csp/csp2e.tex + RELOC/doc/latex/zed-csp/zed2e.pdf details="Z usage documentation" + RELOC/doc/latex/zed-csp/zed2e.tex +runfiles size=8 + RELOC/tex/latex/zed-csp/zed-csp.sty +catalogue-also objectz +catalogue-ctan /macros/latex/contrib/zed-csp +catalogue-license other-free +catalogue-topics formal-spec + +name zhlineskip +category Package +revision 51142 +shortdesc Line spacing for CJK documents +relocated 1 +longdesc This package supports typesetting CJK documents. It allows +longdesc users to specify the two ratios between the leading and the +longdesc font size of the body text and the footnote text. For CJK +longdesc typesetting, these ratios usually range from 1.5 to 1.67. This +longdesc package is also capable of restoring the math leading to that +longdesc of the Latin text (usually 1.2 times the font size). Finally, +longdesc it is possible to achieve the Microsoft Word multiple line +longdesc spacing style using zhlineskip. +containersize 2380 +containerchecksum c1e92d164d0b46ca1165775e5c17f72687cd83b6efbba95dd58fe55008877ab3f08bbaf90d36d491ec861705e9d15f74511c8a0f9cf66ef8bf5127d7aa2cf203 +doccontainersize 284028 +doccontainerchecksum 794822b3b89aec655af2663f3dfbe848ccac9fea8369f446596562178e73c01ddadcf1ce46fd1811e4b72a25917c310bd42e45f9b16a3adb897304ae345d5415 +docfiles size=80 + RELOC/doc/latex/zhlineskip/CJKmetrics.pdf + RELOC/doc/latex/zhlineskip/Latinmetrics.pdf + RELOC/doc/latex/zhlineskip/README.md details="Readme" + RELOC/doc/latex/zhlineskip/zhlineskip-test.tex + RELOC/doc/latex/zhlineskip/zhlineskip.pdf details="Package documentation" language="zh" + RELOC/doc/latex/zhlineskip/zhlineskip.tex +runfiles size=2 + RELOC/tex/latex/zhlineskip/zhlineskip.sty +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +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-license lppl1.3c +catalogue-topics chinese +catalogue-version 1.0e + +name zhlipsum +category Package +revision 54994 +shortdesc Chinese dummy text +relocated 1 +longdesc This package provides an interface to dummy text in Chinese +longdesc language, which will be useful for testing Chinese documents. +longdesc UTF-8, GBK and Big5 encodings are supported. +containersize 200740 +containerchecksum d62f2a16f2303db7846073b215b3e8f822b7470510eb84367b1ba177c971e587adcea92757a3a4f5612abf103bd11cc8f2ae3ab953833365fb2255ee87563cb8 +doccontainersize 410120 +doccontainerchecksum dcd0d706d9e402ad1b4eab910294ac4e802a58c2e54a3ee19b6dcef9fc3e052b84b559f452bb32b78d27a99e65a0820d2029e53079ce21068618f5c620f9502f +docfiles size=105 + RELOC/doc/latex/zhlipsum/README.md details="Readme" + RELOC/doc/latex/zhlipsum/zhlipsum-en.pdf details="Package documentation" language="en" + RELOC/doc/latex/zhlipsum/zhlipsum-en.tex + RELOC/doc/latex/zhlipsum/zhlipsum.pdf details="Package documentation" language="zh" +srccontainersize 96892 +srccontainerchecksum 92054c4839953e84a15abc6ca280ca2d755d5854b284c30521f17e54528bd4c369e9298e596606c877ecc74533fa81d8a8d544c2819f14d48157ee996a26a922 +srcfiles size=70 + RELOC/source/latex/zhlipsum/zhlipsum-text.dtx + RELOC/source/latex/zhlipsum/zhlipsum.dtx + RELOC/source/latex/zhlipsum/zhlipsum.ins +runfiles size=111 + RELOC/tex/latex/zhlipsum/zhlipsum-big5.def + RELOC/tex/latex/zhlipsum/zhlipsum-gbk.def + RELOC/tex/latex/zhlipsum/zhlipsum-utf8.def + RELOC/tex/latex/zhlipsum/zhlipsum.sty +catalogue-also lipsum +catalogue-contact-bugs https://github.com/CTeX-org/zhlipsum/issues +catalogue-contact-repository https://github.com/CTeX-org/zhlipsum +catalogue-ctan /macros/latex/contrib/zhlipsum +catalogue-license lppl1.3c +catalogue-topics dummy-gen chinese latex3 macro-supp +catalogue-version 1.2.0 + +name zhmetrics +category Package +revision 22207 +shortdesc TFM subfont files for using Chinese fonts in 8-bit TeX +relocated 1 +longdesc These are metrics to use existing Chinese TrueType fonts in +longdesc workflows that use LaTeX & dvipdfmx, or pdfLaTeX. The fonts +longdesc themselves are not included in the package. Six font families +longdesc are supported: kai, song, lishu, fangsong, youyuan and hei. Two +longdesc encodings (GBK and UTF-8) are supported. +containersize 59808 +containerchecksum abc0b873b5abb0b053fb59d8bb831a835f90cd8bfc2cde87d1031dba2e31db8721e3ea1037e7322b33ae5216dd65bd01008fb769eade0c9b4815e8ea7c55615c +doccontainersize 1396 +doccontainerchecksum e77fd912d10d8ab535c366f8e5b99e996607788b9ede295a3d7739fc4c14e0679c66c36bdefe2ce5433967b28b2ab228c332d9b0a23a841d42d3fa56cd204040 +docfiles size=1 + RELOC/doc/fonts/zhmetrics/README details="Readme" +srccontainersize 6380 +srccontainerchecksum d505658c340bc3824332ed473927bf971612204e69c56839d4e0bd0b6ad4b84a975fe32e863d12d2e0ecae580edd06c3ea0854b90cf762aa9ad6106d2f2afc1a +srcfiles size=9 + RELOC/source/fonts/zhmetrics/CTeXFonts.lua + RELOC/source/fonts/zhmetrics/ttfonts.map + RELOC/source/fonts/zhmetrics/zhfd.lua + RELOC/source/fonts/zhmetrics/zhtfm.lua +runfiles size=4937 + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb00.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb01.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb02.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb03.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb04.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb05.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb06.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb07.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb08.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb09.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb10.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb11.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb12.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb13.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb14.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb15.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb16.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb17.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb18.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb19.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb20.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb21.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb22.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb23.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb24.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb25.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb26.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb27.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb28.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb29.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb30.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb31.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb32.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb33.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb34.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb35.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb36.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb37.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb38.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb39.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb40.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb41.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb42.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb43.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb44.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb45.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb46.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb47.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb48.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb49.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb50.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb51.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb52.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb53.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb54.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb55.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb56.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb57.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb58.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb59.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb60.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb61.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb62.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb63.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb64.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb65.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb66.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb67.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb68.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb69.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb70.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb71.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb72.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb73.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb74.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb75.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb76.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb77.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb78.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb79.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb80.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb81.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb82.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb83.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb84.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb85.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb86.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb87.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb88.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb89.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb90.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb91.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb92.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb93.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb94.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb95.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb96.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb97.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb98.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb99.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbaa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbab.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbac.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbad.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbae.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbaf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbba.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbca.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbce.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbda.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbde.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbea.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbeb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbec.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbed.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbee.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbef.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbff.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl00.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl01.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl02.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl03.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl04.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl05.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl06.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl07.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl08.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl09.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl10.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl11.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl12.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl13.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl14.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl15.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl16.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl17.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl18.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl19.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl20.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl21.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl22.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl23.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl24.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl25.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl26.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl27.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl28.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl29.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl30.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl31.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl32.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl33.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl34.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl35.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl36.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl37.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl38.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl39.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl40.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl41.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl42.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl43.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl44.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl45.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl46.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl47.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl48.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl49.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl50.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl51.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl52.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl53.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl54.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl55.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl56.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl57.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl58.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl59.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl60.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl61.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl62.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl63.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl64.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl65.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl66.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl67.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl68.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl69.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl70.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl71.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl72.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl73.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl74.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl75.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl76.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl77.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl78.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl79.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl80.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl81.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl82.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl83.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl84.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl85.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl86.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl87.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl88.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl89.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl90.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl91.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl92.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl93.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl94.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl95.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl96.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl97.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl98.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl99.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslaa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslab.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslac.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslad.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslae.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslaf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslba.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslca.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslce.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslda.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslde.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslea.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsleb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslec.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsled.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslee.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslef.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslff.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk00.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk01.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk02.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk03.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk04.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk05.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk06.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk07.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk08.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk09.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk10.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk11.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk12.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk13.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk14.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk15.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk16.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk17.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk18.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk19.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk20.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk21.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk22.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk23.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk24.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk25.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk26.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk27.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk28.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk29.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk30.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk31.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk32.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk33.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk34.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk35.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk36.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk37.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk38.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk39.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk40.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk41.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk42.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk43.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk44.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk45.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk46.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk47.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk48.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk49.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk50.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk51.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk52.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk53.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk54.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk55.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk56.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk57.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk58.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk59.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk60.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk61.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk62.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk63.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk64.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk65.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk66.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk67.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk68.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk69.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk70.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk71.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk72.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk73.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk74.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk75.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk76.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk77.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk78.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk79.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk80.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk81.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk82.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk83.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk84.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk85.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk86.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk87.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk88.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk89.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk90.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk91.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk92.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk93.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk94.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl00.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl01.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl02.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl03.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl04.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl05.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl06.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl07.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl08.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl09.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl10.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl11.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl12.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl13.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl14.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl15.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl16.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl17.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl18.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl19.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl20.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl21.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl22.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl23.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl24.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl25.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl26.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl27.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl28.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl29.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl30.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl31.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl32.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl33.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl34.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl35.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl36.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl37.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl38.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl39.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl40.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl41.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl42.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl43.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl44.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl45.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl46.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl47.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl48.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl49.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl50.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl51.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl52.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl53.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl54.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl55.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl56.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl57.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl58.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl59.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl60.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl61.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl62.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl63.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl64.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl65.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl66.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl67.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl68.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl69.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl70.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl71.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl72.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl73.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl74.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl75.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl76.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl77.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl78.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl79.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl80.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl81.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl82.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl83.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl84.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl85.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl86.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl87.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl88.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl89.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl90.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl91.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl92.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl93.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs00.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs01.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs02.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs03.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs04.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs05.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs06.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs07.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs08.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs09.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs10.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs11.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs12.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs13.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs14.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs15.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs16.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs17.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs18.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs19.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs20.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs21.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs22.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs23.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs24.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs25.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs26.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs27.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs28.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs29.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs30.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs31.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs32.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs33.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs34.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs35.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs36.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs37.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs38.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs39.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs40.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs41.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs42.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs43.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs44.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs45.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs46.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs47.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs48.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs49.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs50.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs51.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs52.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs53.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs54.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs55.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs56.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs57.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs58.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs59.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs60.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs61.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs62.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs63.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs64.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs65.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs66.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs67.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs68.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs69.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs70.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs71.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs72.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs73.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs74.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs75.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs76.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs77.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs78.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs79.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs80.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs81.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs82.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs83.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs84.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs85.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs86.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs87.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs88.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs89.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs90.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs91.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs92.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs93.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs94.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei00.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei01.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei02.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei03.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei04.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei05.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei06.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei07.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei08.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei09.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei10.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei11.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei12.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei13.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei14.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei15.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei16.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei17.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei18.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei19.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei20.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei21.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei22.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei23.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei24.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei25.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei26.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei27.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei28.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei29.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei30.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei31.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei32.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei33.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei34.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei35.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei36.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei37.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei38.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei39.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei40.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei41.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei42.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei43.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei44.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei45.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei46.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei47.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei48.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei49.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei50.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei51.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei52.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei53.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei54.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei55.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei56.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei57.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei58.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei59.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei60.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei61.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei62.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei63.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei64.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei65.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei66.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei67.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei68.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei69.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei70.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei71.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei72.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei73.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei74.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei75.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei76.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei77.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei78.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei79.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei80.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei81.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei82.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei83.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei84.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei85.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei86.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei87.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei88.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei89.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei90.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei91.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei92.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei93.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei94.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai00.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai01.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai02.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai03.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai04.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai05.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai06.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai07.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai08.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai09.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai10.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai11.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai12.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai13.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai14.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai15.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai16.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai17.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai18.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai19.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai20.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai21.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai22.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai23.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai24.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai25.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai26.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai27.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai28.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai29.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai30.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai31.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai32.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai33.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai34.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai35.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai36.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai37.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai38.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai39.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai40.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai41.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai42.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai43.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai44.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai45.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai46.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai47.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai48.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai49.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai50.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai51.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai52.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai53.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai54.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai55.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai56.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai57.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai58.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai59.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai60.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai61.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai62.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai63.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai64.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai65.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai66.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai67.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai68.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai69.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai70.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai71.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai72.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai73.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai74.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai75.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai76.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai77.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai78.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai79.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai80.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai81.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai82.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai83.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai84.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai85.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai86.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai87.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai88.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai89.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai90.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai91.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai92.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai93.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai94.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli00.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli01.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli02.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli03.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli04.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli05.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli06.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli07.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli08.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli09.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli10.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli11.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli12.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli13.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli14.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli15.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli16.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli17.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli18.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli19.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli20.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli21.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli22.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli23.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli24.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli25.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli26.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli27.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli28.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli29.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli30.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli31.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli32.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli33.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli34.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli35.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli36.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli37.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli38.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli39.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli40.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli41.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli42.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli43.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli44.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli45.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli46.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli47.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli48.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli49.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli50.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli51.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli52.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli53.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli54.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli55.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli56.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli57.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli58.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli59.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli60.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli61.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli62.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli63.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli64.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli65.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli66.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli67.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli68.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli69.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli70.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli71.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli72.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli73.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli74.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli75.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli76.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli77.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli78.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli79.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli80.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli81.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli82.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli83.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli84.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli85.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli86.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli87.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli88.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli89.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli90.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli91.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli92.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli93.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli94.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl94.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong00.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong01.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong02.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong03.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong04.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong05.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong06.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong07.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong08.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong09.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong10.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong11.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong12.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong13.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong14.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong15.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong16.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong17.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong18.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong19.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong20.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong21.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong22.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong23.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong24.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong25.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong26.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong27.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong28.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong29.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong30.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong31.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong32.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong33.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong34.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong35.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong36.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong37.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong38.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong39.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong40.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong41.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong42.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong43.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong44.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong45.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong46.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong47.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong48.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong49.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong50.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong51.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong52.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong53.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong54.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong55.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong56.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong57.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong58.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong59.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong60.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong61.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong62.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong63.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong64.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong65.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong66.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong67.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong68.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong69.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong70.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong71.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong72.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong73.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong74.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong75.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong76.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong77.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong78.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong79.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong80.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong81.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong82.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong83.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong84.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong85.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong86.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong87.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong88.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong89.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong90.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong91.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong92.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong93.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong94.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl00.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl01.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl02.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl03.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl04.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl05.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl06.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl07.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl08.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl09.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl10.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl11.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl12.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl13.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl14.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl15.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl16.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl17.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl18.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl19.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl20.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl21.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl22.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl23.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl24.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl25.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl26.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl27.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl28.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl29.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl30.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl31.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl32.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl33.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl34.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl35.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl36.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl37.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl38.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl39.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl40.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl41.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl42.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl43.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl44.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl45.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl46.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl47.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl48.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl49.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl50.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl51.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl52.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl53.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl54.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl55.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl56.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl57.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl58.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl59.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl60.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl61.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl62.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl63.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl64.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl65.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl66.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl67.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl68.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl69.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl70.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl71.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl72.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl73.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl74.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl75.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl76.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl77.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl78.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl79.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl80.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl81.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl82.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl83.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl84.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl85.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl86.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl87.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl88.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl89.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl90.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl91.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl92.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl93.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou00.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou01.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou02.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou03.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou04.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou05.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou06.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou07.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou08.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou09.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou10.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou11.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou12.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou13.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou14.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou15.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou16.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou17.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou18.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou19.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou20.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou21.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou22.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou23.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou24.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou25.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou26.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou27.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou28.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou29.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou30.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou31.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou32.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou33.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou34.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou35.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou36.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou37.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou38.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou39.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou40.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou41.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou42.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou43.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou44.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou45.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou46.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou47.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou48.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou49.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou50.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou51.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou52.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou53.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou54.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou55.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou56.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou57.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou58.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou59.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou60.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou61.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou62.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou63.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou64.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou65.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou66.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou67.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou68.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou69.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou70.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou71.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou72.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou73.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou74.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou75.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou76.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou77.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou78.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou79.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou80.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou81.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou82.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou83.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou84.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou85.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou86.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou87.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou88.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou89.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou90.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou91.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou92.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou93.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou94.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl94.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs00.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs01.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs02.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs03.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs04.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs05.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs06.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs07.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs08.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs09.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs10.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs11.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs12.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs13.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs14.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs15.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs16.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs17.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs18.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs19.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs20.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs21.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs22.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs23.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs24.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs25.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs26.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs27.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs28.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs29.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs30.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs31.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs32.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs33.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs34.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs35.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs36.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs37.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs38.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs39.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs40.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs41.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs42.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs43.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs44.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs45.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs46.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs47.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs48.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs49.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs50.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs51.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs52.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs53.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs54.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs55.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs56.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs57.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs58.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs59.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs60.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs61.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs62.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs63.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs64.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs65.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs66.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs67.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs68.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs69.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs70.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs71.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs72.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs73.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs74.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs75.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs76.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs77.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs78.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs79.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs80.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs81.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs82.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs83.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs84.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs85.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs86.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs87.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs88.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs89.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs90.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs91.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs92.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs93.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs94.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs95.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs96.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs97.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs98.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs99.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsaa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsab.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsac.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsad.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsae.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsaf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsba.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsca.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsce.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsda.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsde.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsea.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifseb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsec.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsed.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsee.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsef.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsff.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl00.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl01.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl02.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl03.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl04.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl05.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl06.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl07.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl08.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl09.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl10.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl11.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl12.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl13.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl14.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl15.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl16.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl17.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl18.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl19.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl20.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl21.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl22.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl23.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl24.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl25.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl26.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl27.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl28.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl29.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl30.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl31.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl32.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl33.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl34.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl35.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl36.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl37.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl38.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl39.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl40.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl41.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl42.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl43.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl44.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl45.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl46.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl47.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl48.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl49.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl50.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl51.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl52.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl53.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl54.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl55.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl56.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl57.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl58.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl59.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl60.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl61.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl62.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl63.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl64.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl65.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl66.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl67.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl68.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl69.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl70.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl71.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl72.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl73.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl74.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl75.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl76.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl77.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl78.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl79.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl80.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl81.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl82.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl83.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl84.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl85.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl86.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl87.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl88.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl89.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl90.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl91.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl92.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl93.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl94.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl95.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl96.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl97.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl98.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl99.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslaa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslab.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslac.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslad.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslae.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslaf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslba.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslca.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslce.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslda.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslde.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslea.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssleb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslec.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssled.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslee.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslef.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslff.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei00.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei01.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei02.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei03.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei04.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei05.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei06.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei07.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei08.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei09.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei10.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei11.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei12.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei13.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei14.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei15.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei16.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei17.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei18.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei19.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei20.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei21.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei22.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei23.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei24.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei25.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei26.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei27.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei28.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei29.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei30.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei31.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei32.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei33.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei34.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei35.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei36.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei37.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei38.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei39.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei40.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei41.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei42.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei43.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei44.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei45.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei46.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei47.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei48.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei49.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei50.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei51.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei52.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei53.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei54.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei55.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei56.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei57.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei58.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei59.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei60.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei61.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei62.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei63.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei64.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei65.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei66.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei67.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei68.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei69.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei70.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei71.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei72.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei73.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei74.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei75.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei76.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei77.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei78.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei79.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei80.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei81.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei82.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei83.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei84.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei85.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei86.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei87.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei88.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei89.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei90.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei91.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei92.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei93.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei94.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei95.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei96.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei97.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei98.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei99.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiaa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiab.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiac.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiad.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiae.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiaf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiba.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibe.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheica.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheice.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheida.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheide.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiea.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheieb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiec.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheied.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiee.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheief.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheife.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiff.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl00.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl01.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl02.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl03.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl04.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl05.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl06.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl07.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl08.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl09.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl10.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl11.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl12.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl13.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl14.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl15.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl16.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl17.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl18.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl19.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl20.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl21.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl22.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl23.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl24.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl25.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl26.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl27.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl28.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl29.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl30.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl31.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl32.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl33.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl34.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl35.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl36.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl37.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl38.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl39.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl40.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl41.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl42.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl43.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl44.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl45.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl46.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl47.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl48.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl49.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl50.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl51.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl52.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl53.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl54.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl55.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl56.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl57.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl58.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl59.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl60.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl61.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl62.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl63.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl64.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl65.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl66.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl67.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl68.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl69.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl70.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl71.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl72.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl73.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl74.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl75.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl76.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl77.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl78.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl79.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl80.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl81.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl82.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl83.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl84.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl85.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl86.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl87.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl88.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl89.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl90.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl91.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl92.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl93.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl94.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl95.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl96.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl97.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl98.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl99.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislaa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislab.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislac.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislad.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislae.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislaf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislba.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbe.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislca.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislce.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislda.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislde.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislea.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisleb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislec.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisled.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislee.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislef.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfe.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislff.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai00.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai01.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai02.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai03.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai04.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai05.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai06.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai07.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai08.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai09.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai10.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai11.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai12.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai13.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai14.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai15.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai16.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai17.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai18.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai19.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai20.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai21.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai22.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai23.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai24.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai25.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai26.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai27.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai28.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai29.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai30.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai31.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai32.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai33.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai34.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai35.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai36.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai37.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai38.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai39.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai40.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai41.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai42.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai43.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai44.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai45.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai46.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai47.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai48.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai49.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai50.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai51.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai52.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai53.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai54.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai55.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai56.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai57.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai58.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai59.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai60.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai61.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai62.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai63.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai64.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai65.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai66.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai67.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai68.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai69.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai70.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai71.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai72.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai73.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai74.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai75.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai76.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai77.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai78.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai79.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai80.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai81.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai82.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai83.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai84.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai85.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai86.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai87.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai88.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai89.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai90.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai91.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai92.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai93.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai94.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai95.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai96.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai97.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai98.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai99.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiaa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiab.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiac.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiad.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiae.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiaf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiba.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibe.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaica.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaice.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaida.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaide.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiea.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaieb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiec.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaied.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiee.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaief.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaife.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiff.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl00.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl01.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl02.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl03.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl04.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl05.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl06.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl07.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl08.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl09.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl10.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl11.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl12.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl13.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl14.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl15.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl16.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl17.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl18.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl19.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl20.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl21.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl22.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl23.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl24.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl25.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl26.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl27.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl28.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl29.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl30.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl31.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl32.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl33.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl34.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl35.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl36.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl37.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl38.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl39.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl40.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl41.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl42.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl43.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl44.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl45.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl46.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl47.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl48.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl49.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl50.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl51.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl52.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl53.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl54.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl55.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl56.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl57.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl58.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl59.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl60.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl61.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl62.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl63.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl64.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl65.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl66.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl67.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl68.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl69.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl70.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl71.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl72.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl73.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl74.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl75.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl76.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl77.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl78.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl79.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl80.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl81.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl82.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl83.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl84.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl85.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl86.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl87.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl88.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl89.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl90.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl91.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl92.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl93.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl94.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl95.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl96.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl97.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl98.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl99.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislaa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislab.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislac.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislad.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislae.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislaf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislba.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbe.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislca.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislce.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislda.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislde.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislea.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisleb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislec.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisled.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislee.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislef.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfe.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislff.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili00.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili01.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili02.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili03.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili04.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili05.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili06.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili07.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili08.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili09.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili10.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili11.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili12.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili13.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili14.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili15.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili16.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili17.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili18.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili19.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili20.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili21.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili22.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili23.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili24.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili25.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili26.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili27.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili28.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili29.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili30.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili31.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili32.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili33.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili34.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili35.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili36.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili37.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili38.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili39.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili40.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili41.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili42.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili43.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili44.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili45.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili46.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili47.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili48.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili49.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili50.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili51.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili52.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili53.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili54.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili55.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili56.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili57.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili58.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili59.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili60.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili61.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili62.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili63.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili64.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili65.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili66.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili67.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili68.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili69.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili70.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili71.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili72.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili73.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili74.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili75.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili76.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili77.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili78.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili79.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili80.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili81.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili82.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili83.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili84.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili85.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili86.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili87.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili88.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili89.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili90.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili91.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili92.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili93.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili94.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili95.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili96.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili97.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili98.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili99.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia9.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliaa.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliab.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliac.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliad.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliae.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliaf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib9.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliba.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibe.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilica.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilice.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilida.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilide.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie9.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliea.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilieb.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliec.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilied.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliee.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilief.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifa.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilife.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliff.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl00.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl01.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl02.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl03.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl04.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl05.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl06.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl07.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl08.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl09.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl10.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl11.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl12.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl13.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl14.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl15.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl16.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl17.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl18.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl19.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl20.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl21.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl22.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl23.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl24.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl25.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl26.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl27.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl28.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl29.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl30.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl31.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl32.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl33.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl34.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl35.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl36.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl37.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl38.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl39.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl40.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl41.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl42.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl43.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl44.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl45.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl46.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl47.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl48.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl49.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl50.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl51.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl52.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl53.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl54.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl55.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl56.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl57.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl58.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl59.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl60.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl61.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl62.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl63.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl64.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl65.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl66.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl67.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl68.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl69.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl70.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl71.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl72.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl73.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl74.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl75.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl76.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl77.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl78.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl79.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl80.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl81.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl82.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl83.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl84.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl85.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl86.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl87.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl88.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl89.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl90.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl91.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl92.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl93.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl94.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl95.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl96.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl97.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl98.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl99.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislaa.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislab.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislac.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislad.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislae.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislaf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislba.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbe.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislca.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislce.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislda.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislde.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislea.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisleb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislec.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisled.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislee.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislef.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfa.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfe.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislff.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong00.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong01.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong02.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong03.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong04.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong05.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong06.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong07.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong08.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong09.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong10.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong11.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong12.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong13.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong14.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong15.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong16.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong17.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong18.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong19.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong20.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong21.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong22.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong23.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong24.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong25.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong26.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong27.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong28.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong29.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong30.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong31.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong32.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong33.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong34.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong35.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong36.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong37.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong38.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong39.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong40.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong41.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong42.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong43.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong44.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong45.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong46.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong47.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong48.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong49.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong50.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong51.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong52.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong53.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong54.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong55.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong56.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong57.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong58.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong59.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong60.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong61.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong62.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong63.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong64.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong65.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong66.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong67.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong68.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong69.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong70.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong71.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong72.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong73.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong74.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong75.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong76.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong77.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong78.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong79.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong80.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong81.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong82.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong83.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong84.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong85.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong86.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong87.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong88.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong89.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong90.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong91.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong92.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong93.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong94.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong95.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong96.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong97.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong98.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong99.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongaa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongab.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongac.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongad.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongae.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongaf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongba.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongca.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongce.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongda.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongde.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongea.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongeb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongec.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonged.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongee.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongef.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongff.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl00.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl01.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl02.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl03.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl04.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl05.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl06.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl07.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl08.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl09.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl10.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl11.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl12.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl13.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl14.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl15.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl16.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl17.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl18.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl19.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl20.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl21.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl22.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl23.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl24.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl25.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl26.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl27.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl28.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl29.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl30.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl31.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl32.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl33.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl34.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl35.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl36.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl37.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl38.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl39.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl40.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl41.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl42.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl43.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl44.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl45.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl46.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl47.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl48.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl49.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl50.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl51.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl52.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl53.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl54.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl55.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl56.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl57.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl58.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl59.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl60.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl61.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl62.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl63.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl64.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl65.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl66.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl67.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl68.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl69.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl70.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl71.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl72.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl73.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl74.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl75.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl76.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl77.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl78.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl79.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl80.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl81.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl82.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl83.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl84.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl85.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl86.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl87.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl88.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl89.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl90.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl91.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl92.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl93.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl94.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl95.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl96.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl97.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl98.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl99.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslaa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslab.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslac.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslad.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslae.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslaf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslba.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslca.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslce.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslda.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslde.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslea.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsleb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslec.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsled.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslee.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslef.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslff.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou00.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou01.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou02.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou03.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou04.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou05.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou06.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou07.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou08.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou09.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou10.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou11.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou12.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou13.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou14.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou15.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou16.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou17.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou18.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou19.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou20.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou21.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou22.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou23.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou24.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou25.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou26.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou27.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou28.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou29.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou30.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou31.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou32.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou33.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou34.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou35.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou36.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou37.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou38.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou39.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou40.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou41.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou42.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou43.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou44.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou45.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou46.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou47.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou48.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou49.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou50.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou51.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou52.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou53.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou54.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou55.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou56.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou57.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou58.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou59.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou60.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou61.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou62.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou63.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou64.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou65.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou66.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou67.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou68.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou69.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou70.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou71.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou72.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou73.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou74.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou75.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou76.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou77.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou78.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou79.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou80.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou81.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou82.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou83.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou84.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou85.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou86.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou87.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou88.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou89.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou90.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou91.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou92.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou93.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou94.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou95.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou96.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou97.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou98.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou99.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouaa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouab.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouac.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouad.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouae.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouaf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouba.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoube.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouca.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouce.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouda.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoude.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouea.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoueb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouec.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoued.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouee.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouef.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufe.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouff.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl00.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl01.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl02.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl03.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl04.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl05.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl06.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl07.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl08.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl09.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl10.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl11.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl12.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl13.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl14.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl15.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl16.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl17.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl18.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl19.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl20.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl21.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl22.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl23.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl24.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl25.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl26.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl27.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl28.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl29.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl30.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl31.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl32.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl33.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl34.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl35.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl36.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl37.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl38.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl39.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl40.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl41.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl42.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl43.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl44.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl45.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl46.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl47.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl48.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl49.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl50.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl51.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl52.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl53.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl54.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl55.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl56.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl57.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl58.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl59.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl60.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl61.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl62.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl63.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl64.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl65.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl66.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl67.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl68.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl69.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl70.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl71.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl72.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl73.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl74.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl75.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl76.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl77.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl78.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl79.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl80.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl81.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl82.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl83.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl84.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl85.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl86.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl87.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl88.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl89.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl90.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl91.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl92.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl93.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl94.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl95.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl96.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl97.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl98.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl99.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslaa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslab.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslac.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslad.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslae.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslaf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslba.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbe.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslca.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslce.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslda.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslde.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslea.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousleb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslec.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousled.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslee.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslef.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfe.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslff.tfm + RELOC/tex/generic/zhmetrics/zhwinfonts.tex + RELOC/tex/latex/zhmetrics/c19fs.fd + RELOC/tex/latex/zhmetrics/c19hei.fd + RELOC/tex/latex/zhmetrics/c19kai.fd + RELOC/tex/latex/zhmetrics/c19li.fd + RELOC/tex/latex/zhmetrics/c19you.fd + RELOC/tex/latex/zhmetrics/c19zhfs.fd + RELOC/tex/latex/zhmetrics/c19zhhei.fd + RELOC/tex/latex/zhmetrics/c19zhkai.fd + RELOC/tex/latex/zhmetrics/c19zhli.fd + RELOC/tex/latex/zhmetrics/c19zhsong.fd + RELOC/tex/latex/zhmetrics/c19zhyou.fd + RELOC/tex/latex/zhmetrics/c70fs.fd + RELOC/tex/latex/zhmetrics/c70hei.fd + RELOC/tex/latex/zhmetrics/c70kai.fd + RELOC/tex/latex/zhmetrics/c70li.fd + RELOC/tex/latex/zhmetrics/c70you.fd + RELOC/tex/latex/zhmetrics/c70zhfs.fd + RELOC/tex/latex/zhmetrics/c70zhhei.fd + RELOC/tex/latex/zhmetrics/c70zhkai.fd + RELOC/tex/latex/zhmetrics/c70zhli.fd + RELOC/tex/latex/zhmetrics/c70zhsong.fd + RELOC/tex/latex/zhmetrics/c70zhyou.fd +catalogue-ctan /fonts/psfonts/zhmetrics +catalogue-license lppl +catalogue-topics font-use font-cjk chinese +catalogue-version r206 + +name zhmetrics-uptex +category Package +revision 40728 +shortdesc Chinese font metrics for upTeX +relocated 1 +longdesc The package contains some Chinese font metrics (JFM, VF, etc) +longdesc for upTeX engine, together with a simple DVIPDFMx font mapping +longdesc of Fandol fonts for DVIPDFMx. +containersize 31628 +containerchecksum 1e068a0b402a5c69b44a86d797cb24266b2883c698decd8b8464c99b131d292cc5ac44249ba8e89dc0a414d6f12d73d4c069ffc3081cfa4b9926ca412bfc3dd6 +doccontainersize 89156 +doccontainerchecksum f9ac2953877cd830e1cf3402f3f2bac1f8159d05a4a74e89047c494ae04dc8930f1c09701f83871b4361976572ae7d1c5fbdaf3af3d9e6db12347a207f1b82cb +docfiles size=29 + RELOC/doc/fonts/zhmetrics-uptex/README.md details="Readme" + RELOC/doc/fonts/zhmetrics-uptex/doc/README.md details="Readme" + RELOC/doc/fonts/zhmetrics-uptex/makemetrics.lua + RELOC/doc/fonts/zhmetrics-uptex/upzhfandolfonts-test.pdf + RELOC/doc/fonts/zhmetrics-uptex/upzhfandolfonts-test.tex + RELOC/doc/fonts/zhmetrics-uptex/upzhfandolfonts.tex + RELOC/doc/fonts/zhmetrics-uptex/upzhm-h.pl + RELOC/doc/fonts/zhmetrics-uptex/upzhm-v.pl +runfiles size=1920 + RELOC/fonts/tfm/public/zhmetrics-uptex/upmono-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upmono-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsans-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsans-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsansb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsansb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserif-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserif-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifit-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifit-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhmono-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhmono-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsans-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsans-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsansb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsansb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserif-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserif-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifit-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifit-v.tfm + RELOC/fonts/vf/public/zhmetrics-uptex/upzhmono-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhmono-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsans-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsans-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsansb-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsansb-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserif-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserif-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifb-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifb-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifit-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifit-v.vf +catalogue-ctan /fonts/zhmetrics-uptex +catalogue-license lppl1.3 +catalogue-topics font-supp-misc font-cjk chinese +catalogue-version 1.0 + +name zhnumber +category Package +revision 54960 +shortdesc Typeset Chinese representations of numbers +relocated 1 +longdesc The package provides commands to typeset Chinese +longdesc representations of numbers. The main difference between this +longdesc package and CJKnumb is that the commands provided are +longdesc expandable in the 'proper' way. +containersize 7872 +containerchecksum f9548c3e89e837f8967122de1b2ed45c083a741be3862824ef2bfb5b60bd0758e3f4360b2c1a1a886fb68da4947a77c6431c10339676db0b7518bc93db6c411f +doccontainersize 267108 +doccontainerchecksum 36de5c397a5966d5da5b71ee1a05b0e3d597782122e86dd184e146699fd5ecf08b6c2ed014bcaa86db8c9b2146d3863d8aa46078b94b33fb3fcf4a7a5a14f271 +docfiles size=68 + RELOC/doc/latex/zhnumber/README.md details="Readme" + RELOC/doc/latex/zhnumber/zhnumber.pdf details="Package documentation" language="zh" +srccontainersize 13368 +srccontainerchecksum 043029751abb4630fd1486dabea05f01a97557682cd00c7640e2c1fdf053b0bc5a99ba52debbdc6a98232cb5d8aef49cb68f17c1376f802c900c49f18e07c1f4 +srcfiles size=17 + RELOC/source/latex/zhnumber/zhnumber.dtx + RELOC/source/latex/zhnumber/zhnumber.ins +runfiles size=14 + RELOC/tex/latex/zhnumber/zhnumber-big5.cfg + RELOC/tex/latex/zhnumber/zhnumber-gbk.cfg + RELOC/tex/latex/zhnumber/zhnumber-utf8.cfg + RELOC/tex/latex/zhnumber/zhnumber.sty +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +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-license lppl1.3c +catalogue-topics chinese numbers +catalogue-version 2.8 + +name zhspacing +category Package +revision 41145 +shortdesc Spacing for mixed CJK-English documents in XeTeX +relocated 1 +longdesc The package manages spacing in a CJK document; between +longdesc consecutive Chinese letters, spaces are ignored, but a +longdesc consistent space is inserted between Chinese text and English +longdesc (or mathematics). The package may be used by any document +longdesc format under XeTeX. +containersize 12276 +containerchecksum 52d1d3523ae4c0d2dba5258b06cf9920f8a9005df7e03fd1407dd8ae2e4dc90768aab10127319ef9025765820b3ebb8a946ea0373114c9148a303517b563bfe0 +doccontainersize 169376 +doccontainerchecksum 7fd15e4f29671081670e881e9366ba627f5bed6d981fa0ef1c670d0744e1286c04e785e28b92279d66af851803d84949c2f463370f23c64987fea78531172128 +docfiles size=50 + RELOC/doc/generic/zhspacing/README.md details="Readme" + RELOC/doc/generic/zhspacing/zhs-man.pdf details="Package documentation" + RELOC/doc/generic/zhspacing/zhs-man.tex + RELOC/doc/generic/zhspacing/zhspacing-context-test.tex +runfiles size=18 + RELOC/tex/context/third/zhspacing/t-zhspacing.tex + RELOC/tex/generic/zhspacing/zhmath.sty + RELOC/tex/generic/zhspacing/zhsmyclass.sty + RELOC/tex/generic/zhspacing/zhspacing.sty + RELOC/tex/generic/zhspacing/zhsusefulmacros.sty + RELOC/tex/xelatex/zhspacing/zhfont.sty + RELOC/tex/xelatex/zhspacing/zhulem.sty +catalogue-contact-repository https://github.com/ctex-org/ctex-kit +catalogue-ctan /macros/xetex/generic/zhspacing +catalogue-license lppl1.3 +catalogue-topics multilingual-addon chinese + +name ziffer +category Package +revision 32279 +shortdesc Conversion of punctuation in maths mode +relocated 1 +longdesc The package modifies the behaviour of characters in maths mode +longdesc so that: '.' is used as a one-thousand separator (as is common +longdesc in Germany) ',' is used as a decimal separator (as is common in +longdesc Germany) '--' is represented with spacing as appropriate to +longdesc such constructs as '1.000,--'. These conversions may be +longdesc switched on and off. +containersize 1924 +containerchecksum 3d29074642d8a4c63046347a36f47548557de92a64ab4d6b7d1cad87f97a9e25a09fe84cf699a3bf2129c4de00dd3ef3593f85056e8f38a9a2d1ca27c549cf96 +doccontainersize 652 +doccontainerchecksum 8eb75b54a6711ba0d0ad30343f253eabf88b3752de3112b13b96e4182119ef5f789916c413a5ca35ba7bf6619eb25bf64e7717844e4b9a49d33781d91f5b14af +docfiles size=1 + RELOC/doc/latex/ziffer/README details="Readme" +runfiles size=1 + RELOC/tex/latex/ziffer/ziffer.sty +catalogue-also icomma +catalogue-ctan /macros/latex/contrib/ziffer +catalogue-license lppl +catalogue-topics numbers +catalogue-version 2.1 + +name zlmtt +category Package +revision 51368 +shortdesc Use Latin Modern Typewriter fonts +relocated 1 +longdesc The package allows selection of Latin Modern Typewriter fonts +longdesc with scaling and access to all its features. The package +longdesc requires the mweights package. +containersize 3072 +containerchecksum b60e880508e08fc0a3f265b7d85c7ae8667c0a16264148a2944184a598f690f337149348157dc7b7b11f1cac59d44117425b50a26bbdaa0fbf1dcebb023093e6 +doccontainersize 45412 +doccontainerchecksum 22e301f72e0b62078d7b6fe7d7740e0477d9b18beb59ab55b81dd65c50cb250ae711886f01944cdfd25f82d0dd2089c41e662cb2f16eaa0252d70c1006eed8d8 +docfiles size=16 + RELOC/doc/fonts/zlmtt/README details="Readme" + RELOC/doc/fonts/zlmtt/zlmtt-doc.pdf details="Package documentation" + RELOC/doc/fonts/zlmtt/zlmtt-doc.tex +runfiles size=19 + RELOC/tex/latex/zlmtt/il2zlmtt.fd + RELOC/tex/latex/zlmtt/il2zlmvtt.fd + RELOC/tex/latex/zlmtt/l7xzlmtt.fd + RELOC/tex/latex/zlmtt/l7xzlmvtt.fd + RELOC/tex/latex/zlmtt/ly1zlmtt.fd + RELOC/tex/latex/zlmtt/ly1zlmvtt.fd + RELOC/tex/latex/zlmtt/ot1zlmtt.fd + RELOC/tex/latex/zlmtt/ot1zlmvtt.fd + RELOC/tex/latex/zlmtt/ot4zlmtt.fd + RELOC/tex/latex/zlmtt/ot4zlmvtt.fd + RELOC/tex/latex/zlmtt/qxzlmtt.fd + RELOC/tex/latex/zlmtt/qxzlmvtt.fd + RELOC/tex/latex/zlmtt/t1zlmtt.fd + RELOC/tex/latex/zlmtt/t1zlmvtt.fd + RELOC/tex/latex/zlmtt/t5zlmtt.fd + RELOC/tex/latex/zlmtt/t5zlmvtt.fd + RELOC/tex/latex/zlmtt/ts1zlmtt.fd + RELOC/tex/latex/zlmtt/ts1zlmvtt.fd + RELOC/tex/latex/zlmtt/zlmtt.sty +catalogue-ctan /fonts/zlmtt +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 1.02 + +name zootaxa-bst +category Package +revision 50619 +shortdesc A BibTeX style for the journal Zootaxa +relocated 1 +longdesc This package provides a .bst reference style file for the +longdesc journal Zootaxa that publishes contributions in zoology and +longdesc classification. This is a fork of apa.bst as provided by TeX +longdesc Live since this style file resembled the most Zootaxa's own +longdesc style. Further modifications were made to the code in order to +longdesc generate in-text citations and bibliography sections +longdesc appropriately. +containersize 6228 +containerchecksum 80816556a2e23cfd8345b7d22224142a5448105ccc5c1143f33c4560a4e4ab432115c2fc47c5d4c6ba599031f4c36b481465a5fa7b32afde888beac69a6e6c62 +doccontainersize 135268 +doccontainerchecksum f843aa27ab0c2139e1051aefaa9b667f2de489cc13578200ce7db2bdfc2397888856c6cbe68b6fa201e0cb269bb95818cb31f1b03622c49ebdced23fa5960d65 +docfiles size=47 + RELOC/doc/bibtex/zootaxa-bst/CHANGES.md + RELOC/doc/bibtex/zootaxa-bst/LICENSE + RELOC/doc/bibtex/zootaxa-bst/README.md details="Readme" + RELOC/doc/bibtex/zootaxa-bst/example-refs.bib + RELOC/doc/bibtex/zootaxa-bst/example.pdf details="Example of use" + RELOC/doc/bibtex/zootaxa-bst/example.tex +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-license lppl1.3c +catalogue-topics bibtex-sty journalpub biology +catalogue-version 1.0 + +name zref +category Package +revision 56611 +shortdesc A new reference scheme for LaTeX +relocated 1 +longdesc This package offers a means to remove the limitation, of only +longdesc two properties, that is inherent in the way LaTeX's reference +longdesc system works. The package implements an extensible referencing +longdesc system, where properties may be defined and used in the course +longdesc of a document. It provides an interface for macro programmers +longdesc to access the new reference scheme and some modules that use +longdesc it. Modules available are: zref-user, use zref for +longdesc "traditional" labels and references; zref-abspage, retrieve +longdesc absolute page numbers (physical pages, as opposed to the +longdesc 'logical' page number that is normally typeset when a page +longdesc number is requested; zref-lastpage, provide a zref-label for +longdesc the last page of the document; zref-nextpage, provide the page +longdesc number of the next page of the document; zref-totpages, provide +longdesc the total number of pages in the document; zref-pagelayout, +longdesc provide the page layout parameters of a each page (which may +longdesc then be printed at the end of the document); zref-perpage, make +longdesc a counter reset for each new page; zref-titleref, make section +longdesc title or caption text available through the reference system; +longdesc zref-savepos, make positions on a page available; zref-dotfill, +longdesc controlled dot-filling; zref-env, record the latest +longdesc environment's name and the line it started on; and zref-xr, +longdesc provide the facilities of the xr and xr-hyper packages. +containersize 14364 +containerchecksum f64604e9308278b34347bcbcaed39b500371c575082311c1fb28bf6bd7db26fc2d2e3d3e8843e3a195fd22050450bffb18c3e8b64a54f0787c1122ac3901ad2f +doccontainersize 651440 +doccontainerchecksum 928c54696572694b1fc7712a0f8357851c18d83bf723c6f03a9f784dfbd123b2c886593bc95de0d3b7f8109e1d0b3a52cc6ef1a877c0506130e7c5d96b046a67 +docfiles size=166 + RELOC/doc/latex/zref/README.md details="Readme" + RELOC/doc/latex/zref/zref.pdf details="Package documentation" +srccontainersize 36852 +srccontainerchecksum 82e6c4210453e9f7adfd93673aa2e7dfbf2c39e938b9ad0d2309ea59b53259d1d1d9b05924f2f6f9f64ba29ecdbda8e074527923fdfd1551a42b1057450b2fc5 +srcfiles size=48 + RELOC/source/latex/zref/zref.dtx +runfiles size=37 + RELOC/tex/latex/zref/zref-abspage.sty + RELOC/tex/latex/zref/zref-abspos.sty + RELOC/tex/latex/zref/zref-base.sty + RELOC/tex/latex/zref/zref-counter.sty + RELOC/tex/latex/zref/zref-dotfill.sty + RELOC/tex/latex/zref/zref-env.sty + RELOC/tex/latex/zref/zref-hyperref.sty + RELOC/tex/latex/zref/zref-lastpage.sty + RELOC/tex/latex/zref/zref-marks.sty + RELOC/tex/latex/zref/zref-nextpage.sty + RELOC/tex/latex/zref/zref-pageattr.sty + RELOC/tex/latex/zref/zref-pagelayout.sty + RELOC/tex/latex/zref/zref-perpage.sty + RELOC/tex/latex/zref/zref-runs.sty + RELOC/tex/latex/zref/zref-savepos.sty + RELOC/tex/latex/zref/zref-thepage.sty + RELOC/tex/latex/zref/zref-titleref.sty + RELOC/tex/latex/zref/zref-totpages.sty + RELOC/tex/latex/zref/zref-user.sty + RELOC/tex/latex/zref/zref-xr.sty + RELOC/tex/latex/zref/zref.sty +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-license lppl1.3c +catalogue-topics label-ref +catalogue-version 2.32 + +name zwgetfdate +category Package +revision 15878 +shortdesc Get package or file date +relocated 1 +longdesc The package can fetch the date declaration of packages and +longdesc files used by a document, and then provide the information in +longdesc macros. The facilities provide a means of obtaining the date of +longdesc a package being documented; this is mainly of use when +longdesc doc/docstrip. +containersize 1384 +containerchecksum fe52555cc46a9e8340d8c9c37f88b372bf72efbd48a097b2d319592dc49a8cf55c87e80ea7d94ba6730742e9883215703749895008ba38838750efb9fb2334e9 +doccontainersize 246032 +doccontainerchecksum 7ab61dc4252ef7f60d1d5be8d4415bcaeaed194384a1da14a3400617b36c6efae3679dbbd6c8d64b8cc9f9947babe88c064d637379f663408cbe63ca42334bfb +docfiles size=68 + RELOC/doc/latex/zwgetfdate/License.txt + RELOC/doc/latex/zwgetfdate/README + RELOC/doc/latex/zwgetfdate/zwgetfdate.pdf details="Package documentation" + RELOC/doc/latex/zwgetfdate/zwgetfdate.tex +runfiles size=1 + RELOC/tex/latex/zwgetfdate/zwgetfdate.sty +catalogue-contact-home http://icebearsoft.euweb.cz/tex/ +catalogue-ctan /macros/latex/contrib/zwgetfdate +catalogue-license lppl1.3 +catalogue-topics file-mgmt + +name zwpagelayout +category Package +revision 53965 +shortdesc Page layout and crop-marks +relocated 1 +longdesc This package was developed as a typographers' toolbox offering +longdesc important basic features for everyday work. It allows setting +longdesc the paper size and the page layout; it can print crop marks; +longdesc and it can reflect pages both horizontally and vertically. The +longdesc package facilities work with TeX (output via dvips or +longdesc (x)dvipdfm(x)), and with pdfTeX. +containersize 8880 +containerchecksum b960d63e610cf28ff74d7ade9c297d1c6d23a801eaea2b4f9fde71a3b77defe43ea5625c098ded915b8c011cc0041177d3e4c3fb28359b522af63214accd362f +doccontainersize 635808 +doccontainerchecksum 16bf8b249fbc857bfef787862b1d8e0e0ff60d11e2b80377ad85d7db014ece77ecdbca91829b4dd8f92c811712be39e9ba30058b8c7e61805552f7f6b13fc817 +docfiles size=205 + RELOC/doc/latex/zwpagelayout/License.txt + RELOC/doc/latex/zwpagelayout/LoremIpsumDolor.tex + RELOC/doc/latex/zwpagelayout/README details="Readme" + RELOC/doc/latex/zwpagelayout/adjustfoot.pdf + RELOC/doc/latex/zwpagelayout/adjustfoot.tex + RELOC/doc/latex/zwpagelayout/adjusthead.pdf + RELOC/doc/latex/zwpagelayout/adjusthead.tex + RELOC/doc/latex/zwpagelayout/coversample.pdf + RELOC/doc/latex/zwpagelayout/coversample.tex + RELOC/doc/latex/zwpagelayout/zwpagelayout.pdf details="Package documentation" + RELOC/doc/latex/zwpagelayout/zwpagelayout.tex +runfiles size=9 + RELOC/tex/latex/zwpagelayout/zwpagelayout.sty +catalogue-also geometry crop +catalogue-contact-home http://icebearsoft.euweb.cz/tex/ +catalogue-ctan /macros/latex/contrib/zwpagelayout +catalogue-license lppl +catalogue-topics geometry production +catalogue-version 1.4d + +name zxjafbfont +category Package +revision 28539 +shortdesc Fallback CJK font support for xeCJK +relocated 1 +containersize 1052 +containerchecksum 357b100dac7061a5e6fe91e3a708f32e99a134158393581bc717ae3e90afa5dbbff7aa1bae8c092638bca2d5c3ab65d8a8cbc39c20c3ec1ff85c967fb3849513 +doccontainersize 1708 +doccontainerchecksum 215079eeb772dc4ea55d5e00945a757c877acf9ea56aebe5a8969564a3836f54ca406d502d73e93d92b131600fc77bd2342d36fa78300adc0b4d1dd7f5d0f423 +docfiles size=2 + RELOC/doc/latex/zxjafbfont/LICENSE + RELOC/doc/latex/zxjafbfont/README details="Readme" +runfiles size=1 + RELOC/tex/latex/zxjafbfont/zxjafbfont.sty +catalogue-ctan /language/japanese/zxjafbfont +catalogue-license mit +catalogue-topics font-supp chinese japanese korean xetex +catalogue-version 0.2 + +name zxjafont +category Package +revision 53884 +shortdesc Set up Japanese font families for XeLaTeX +relocated 1 +containersize 5124 +containerchecksum bb6047e07b1d3c326cdee875809053b90b7e753078ae1e6c0b3cad19cb645e7e46321b07509f86b8d8dc2eb331be8e50588a2f9c926afd413aed20c99f4f6a40 +doccontainersize 179452 +doccontainerchecksum c1cc759857b60c123ae798e1a9168f85e7fa663b875f241a8d5160b14cf366bcc282d09b9e527469986ee268b160cadc89a906facf8f38bd76ffb9d07e0a7ffa +docfiles size=51 + RELOC/doc/latex/zxjafont/LICENSE + RELOC/doc/latex/zxjafont/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/zxjafont/README.md details="Readme" language="en" + RELOC/doc/latex/zxjafont/zxjafont.pdf details="Package documentation" + RELOC/doc/latex/zxjafont/zxjafont.tex +runfiles size=6 + RELOC/tex/latex/zxjafont/zxjafont.sty +catalogue-ctan /language/japanese/zxjafont +catalogue-license mit +catalogue-topics japanese font-supp xetex +catalogue-version 1.2 + +name zxjatype +category Package +revision 53500 +shortdesc Standard conforming typesetting of Japanese, for XeLaTeX +relocated 1 +containersize 8760 +containerchecksum 21eaace7188c9e61f5dd65f34e26b1ca16358e7396d44188ae17e8e01a58f38ac3be9f09f8f41923c257d089210d1fb7d841eada5c9a345cec42b934d257ef94 +doccontainersize 138180 +doccontainerchecksum 0fccc73af66a05231cf8283920d65717600be4673329ed1f46b93a494d766aa9542deb1a56b5d23d6c0d6b93be98aa778234ddc2dcd9c0936542a45d057b6dc2 +docfiles size=50 + RELOC/doc/latex/zxjatype/LICENSE + RELOC/doc/latex/zxjatype/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/zxjatype/README.md details="Readme" + RELOC/doc/latex/zxjatype/example/example.pdf + RELOC/doc/latex/zxjatype/example/example.tex + RELOC/doc/latex/zxjatype/example/xetexsamp01.pdf +runfiles size=8 + RELOC/tex/latex/zxjatype/zxjatype.sty +catalogue-ctan /language/japanese/zxjatype +catalogue-license mit +catalogue-topics std-conform japanese xetex +catalogue-version 0.7 + +name zztex +category Package +revision 55862 +shortdesc A full-featured TeX macro package for producing books, journals, and manuals +relocated 1 +longdesc The ZzTeX macro package is a full-featured TeX macro package +longdesc specially designed for producing books, journals, and manuals. +longdesc Development of the package began in 1989. Since then, about 500 +longdesc textbooks and journals have been produced with it for a variety +longdesc of publishers. Numerous authors have used the package to +longdesc produce subsequent editions of their books. ZzTeX runs under +longdesc Plain TeX. The only documentation available for the package is +longdesc contained in the zz*.dat files that accompany the TeX files. +containersize 101724 +containerchecksum eb325564ee9e001e0e5ff79b6e3cc9f22f5b9b100ef021552f54953802edbce1e4b1295ff4590832f959386db7a63aaf8e31dc2d61b38e5c8a140082ca423e83 +doccontainersize 47816 +doccontainerchecksum bd2a3a42b62da61db572058b4731161425545374584a575607f11bb2302aa2ce900b694aaf06562f4c9eb9046c80c4fbf5b50233f6d0526fac787c213070d542 +docfiles size=49 + RELOC/doc/plain/zztex/README details="Readme" + RELOC/doc/plain/zztex/zzbuiltin.dat + RELOC/doc/plain/zztex/zzdetails.dat + RELOC/doc/plain/zztex/zzphrase.dat + RELOC/doc/plain/zztex/zzplain.dat +runfiles size=169 + RELOC/tex/plain/zztex/zzart.tex + RELOC/tex/plain/zztex/zzbiblio.tex + RELOC/tex/plain/zztex/zzbibtex.tex + RELOC/tex/plain/zztex/zzblock.tex + RELOC/tex/plain/zztex/zzcmmath.tex + RELOC/tex/plain/zztex/zzcomenc.tex + RELOC/tex/plain/zztex/zzdiv.tex + RELOC/tex/plain/zztex/zzdoc.tex + RELOC/tex/plain/zztex/zzerror.tex + RELOC/tex/plain/zztex/zzfloat.tex + RELOC/tex/plain/zztex/zzfont.tex + RELOC/tex/plain/zztex/zzfront.tex + RELOC/tex/plain/zztex/zzhelp.tex + RELOC/tex/plain/zztex/zzhmode.tex + RELOC/tex/plain/zztex/zzhmodeb.tex + RELOC/tex/plain/zztex/zzhyper.tex + RELOC/tex/plain/zztex/zzhyph.tex + RELOC/tex/plain/zztex/zzindexv1.tex + RELOC/tex/plain/zztex/zzindexv2.tex + RELOC/tex/plain/zztex/zzio.tex + RELOC/tex/plain/zztex/zzlist.tex + RELOC/tex/plain/zztex/zzltrspc.tex + RELOC/tex/plain/zztex/zzlucida.tex + RELOC/tex/plain/zztex/zzmath.tex + RELOC/tex/plain/zztex/zzmathv3.tex + RELOC/tex/plain/zztex/zzmathv4.tex + RELOC/tex/plain/zztex/zzmathv5.tex + RELOC/tex/plain/zztex/zzmathv6.tex + RELOC/tex/plain/zztex/zzmerge.tex + RELOC/tex/plain/zztex/zzmisc.tex + RELOC/tex/plain/zztex/zzmtime.tex + RELOC/tex/plain/zztex/zznewmath.tex + RELOC/tex/plain/zztex/zznote.tex + RELOC/tex/plain/zztex/zzoverlay.tex + RELOC/tex/plain/zztex/zzpage.tex + RELOC/tex/plain/zztex/zzplain.tex + RELOC/tex/plain/zztex/zzprog.tex + RELOC/tex/plain/zztex/zzps.tex + RELOC/tex/plain/zztex/zzreg.tex + RELOC/tex/plain/zztex/zzrunner.tex + RELOC/tex/plain/zztex/zzsect.tex + RELOC/tex/plain/zztex/zztabbing.tex + RELOC/tex/plain/zztex/zztabularv1.tex + RELOC/tex/plain/zztex/zztabularv2.tex + RELOC/tex/plain/zztex/zztabularv3.tex + RELOC/tex/plain/zztex/zztag.tex + RELOC/tex/plain/zztex/zztex.tex + RELOC/tex/plain/zztex/zztext.tex + RELOC/tex/plain/zztex/zzttladj.tex + RELOC/tex/plain/zztex/zztures.tex + RELOC/tex/plain/zztex/zzver.tex + RELOC/tex/plain/zztex/zzvmode.tex + RELOC/tex/plain/zztex/zzxref.tex +catalogue-contact-home http://www.windfall.com +catalogue-ctan /macros/plain/contrib/zztex +catalogue-license mit +catalogue-topics book-pub journalpub +catalogue-version 17.7 + diff --git a/SOURCES/tl-format.patch b/SOURCES/tl-format.patch new file mode 100644 index 0000000..6d89572 --- /dev/null +++ b/SOURCES/tl-format.patch @@ -0,0 +1,51 @@ +diff -up texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI.format texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI +diff -up texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format texlive-base-20180414/source/texk/dvidvi/dvidvi.c +--- texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format 2017-06-23 10:55:46.000000000 -0400 ++++ texlive-base-20180414/source/texk/dvidvi/dvidvi.c 2018-04-30 13:07:17.910020544 -0400 +@@ -349,7 +349,7 @@ static void stringdvibuf(integer p, inte + * Print a usage error messsage, and quit. + */ + static void usage(void) { +- (void)fprintf(stderr,banner); ++ (void)fprintf(stderr,"%s",banner); + (void)fprintf(stderr,"Usage: dvidvi [options] input[.dvi] [output]\n"); + (void)fprintf(stderr,"where options are:\n"); + (void)fprintf(stderr," [-f n] first page printed [-l n] last page printed\n"); +@@ -828,7 +828,7 @@ default: + } /* else argument with '-' */ + } /* for */ + if (*iname == 0) { +- (void)fprintf(stderr, banner) ; ++ (void)fprintf(stderr, "%s", banner) ; + error("! no input file specified"); + } + /* Inserted by djc@dsmail.hmi.de 3.8.1994 */ +@@ -839,7 +839,7 @@ default: + } + + if (*oname != 0 && !quiet) { +- (void)fprintf(stderr, banner) ; ++ (void)fprintf(stderr, "%s", banner) ; + (void)fprintf(stderr, "%s -> %s\n",iname,oname); + temp = nextstring ; + } +diff -up texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format texlive-base-20180414/source/texk/web2c/tiedir/tie.c +--- texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format 2016-11-25 13:24:38.000000000 -0500 ++++ texlive-base-20180414/source/texk/web2c/tiedir/tie.c 2018-04-30 13:07:27.792787747 -0400 +@@ -27,14 +27,14 @@ + \ + + #define term_out stdout +-#define print(a)fprintf(term_out,a) ++#define print(a)fprintf(term_out,"%s",a) + #define print2(a,b)fprintf(term_out,a,b) + #define print3(a,b,c)fprintf(term_out,a,b,c) + #define print_c(v)fputc(v,term_out); + #define new_line(v)fputc('\n',v) + #define term_new_line new_line(term_out) \ + +-#define print_ln(v){fprintf(term_out,v);term_new_line;} \ ++#define print_ln(v){fprintf(term_out,"%s",v);term_new_line;} \ + + #define print2_ln(a,b){print2(a,b);term_new_line;} + #define print3_ln(a,b,c){print3(a,b,c);term_new_line;} \ diff --git a/SOURCES/tl-kpfix.patch b/SOURCES/tl-kpfix.patch new file mode 100644 index 0000000..afcd92b --- /dev/null +++ b/SOURCES/tl-kpfix.patch @@ -0,0 +1,12 @@ +diff -up texlive-2013/source/texk/kpathsea/progname.c.kpfix texlive-2013/source/texk/kpathsea/progname.c +--- source/texk/kpathsea/progname.c.kpfix 2013-08-12 09:28:14.422522624 +0200 ++++ source/texk/kpathsea/progname.c 2013-08-12 12:16:02.958132658 +0200 +@@ -668,7 +668,7 @@ kpathsea_set_program_name (kpathsea kpse + kpathsea_xputenv (kpse, "SELFAUTOLOC", fix_selfdir (sdir)); + sdir_parent = xdirname (sdir); + kpathsea_xputenv (kpse, "SELFAUTODIR", fix_selfdir (sdir_parent)); +- sdir_grandparent = xdirname (sdir_parent); ++ sdir_grandparent = strdup("/usr/share/texlive"); + kpathsea_xputenv (kpse, "SELFAUTOPARENT", fix_selfdir (sdir_grandparent)); + sdir_greatgrandparent = xdirname (sdir_grandparent); + kpathsea_xputenv (kpse, "SELFAUTOGRANDPARENT", fix_selfdir (sdir_greatgrandparent)); diff --git a/SPECS/texlive-base.spec b/SPECS/texlive-base.spec new file mode 100644 index 0000000..cf70a0f --- /dev/null +++ b/SPECS/texlive-base.spec @@ -0,0 +1,9845 @@ +%global shortname texlive +%global source_date 20210325 +%global source_name texlive-%{source_date}-source +%{!?_texdir: %global _texdir %{_datadir}/%{shortname}} +%{!?_texmf_var: %global _texmf_var %{_var}/lib/texmf} + +%global etc_fmtutil_cnf %{_sysconfdir}/texlive/web2c/fmtutil.cnf +%global usr_fmtutil_cnf %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%global fmtutil_cnf_d %{_texdir}/fmtutil.cnf.d + +# don't export private perl modules +%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\( +%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((LatexIndent.*|PDF::Reuse.*|Pedigree.*|TeXLive.*|Tk::path_tre)\\) + +# We do not want exec perms changing. +%global __brp_mangle_shebangs_exclude ^$ + +# We have a circular dep on latex due to xindy +%bcond_with bootstrap + +Name: %{shortname}-base +Version: %{source_date} +Release: 47%{?dist} +Epoch: 9 +Summary: TeX formatting system +# The only files in the base package are directories, cache, and license texts +# So we'll just list the license texts. This is also a bit of a lie, since most of these license texts do not apply to themselves. +License: ASL 2.0 and Artistic 2.0 and BSD and GFDL and GPL+ and GPLv2 and GPLv3 and Knuth and LGPLv2+ and LGPLv3+ and LPPL and OFL and Public Domain +URL: http://tug.org/texlive/ +Source0: https://ctan.math.illinois.edu/systems/texlive/Source/%{source_name}.tar.xz +Source1: macros.texlive +Source2: http://tug.ctan.org/systems/texlive/tlnet/tlpkg/texlive.tlpdb +Source3: texlive-licenses.tar.xz +Source4: generate-fmtutilcnf +# These noarch components are packed wrong upstream (do not unpack into texmf-dist) +Source5: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic.tar.xz +Source6: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic.doc.tar.xz +Source7: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glyphlist.tar.xz +Source8: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex.tar.xz +Source9: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex.doc.tar.xz +Source10: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lyluatex.tar.xz +Source11: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lyluatex.doc.tar.xz +Source12: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oberdiek.tar.xz +Source13: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oberdiek.doc.tar.xz +Source14: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-en.doc.tar.xz +# These are the noarch components for the built binaries. +Source15: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a2ping.doc.tar.xz +Source16: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a2ping.tar.xz +Source17: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accfonts.doc.tar.xz +Source18: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accfonts.tar.xz +Source19: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adhocfilelist.doc.tar.xz +Source20: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adhocfilelist.tar.xz +Source21: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/afm2pl.tar.xz +Source22: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aleph.doc.tar.xz +Source23: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aleph.tar.xz +Source24: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amstex.doc.tar.xz +Source25: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amstex.tar.xz +Source26: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arara.doc.tar.xz +Source27: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arara.tar.xz +Source28: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/attachfile2.doc.tar.xz +Source29: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/attachfile2.tar.xz +Source30: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authorindex.doc.tar.xz +Source31: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authorindex.tar.xz +Source32: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autosp.doc.tar.xz +Source33: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/axodraw2.doc.tar.xz +Source34: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/axodraw2.tar.xz +Source35: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bib2gls.doc.tar.xz +Source36: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bib2gls.tar.xz +Source37: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibexport.doc.tar.xz +Source38: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibexport.tar.xz +Source39: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex8.doc.tar.xz +Source40: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex8.tar.xz +Source41: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex.doc.tar.xz +Source42: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex.tar.xz +Source43: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtexu.doc.tar.xz +Source44: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bundledoc.doc.tar.xz +Source45: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bundledoc.tar.xz +Source46: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cachepic.doc.tar.xz +Source47: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cachepic.tar.xz +Source48: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checkcites.doc.tar.xz +Source49: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checkcites.tar.xz +Source50: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checklistings.doc.tar.xz +Source51: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checklistings.tar.xz +Source52: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chklref.doc.tar.xz +Source53: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chklref.tar.xz +Source54: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chktex.doc.tar.xz +Source55: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chktex.tar.xz +Source56: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk-gs-integrate.doc.tar.xz +Source57: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk-gs-integrate.tar.xz +Source58: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjkutils.tar.xz +Source59: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clojure-pamphlet.doc.tar.xz +Source60: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clojure-pamphlet.tar.xz +Source61: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cluttex.doc.tar.xz +Source62: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cluttex.tar.xz +Source63: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context.doc.tar.xz +Source64: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context.tar.xz +Source65: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/convbkmk.doc.tar.xz +Source66: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/convbkmk.tar.xz +Source67: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossrefware.doc.tar.xz +Source68: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossrefware.tar.xz +Source69: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cslatex.tar.xz +Source70: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csplain.tar.xz +Source71: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanbib.doc.tar.xz +Source72: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanbib.tar.xz +Source73: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanify.doc.tar.xz +Source74: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanify.tar.xz +Source75: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctan-o-mat.doc.tar.xz +Source76: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctan-o-mat.tar.xz +Source77: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanupload.doc.tar.xz +Source78: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanupload.tar.xz +Source79: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctie.doc.tar.xz +Source80: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cweb.doc.tar.xz +Source81: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cweb.tar.xz +Source82: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic-bin.doc.tar.xz +Source83: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic-bin.tar.xz +Source84: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/de-macro.doc.tar.xz +Source85: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/de-macro.tar.xz +Source86: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/detex.doc.tar.xz +Source87: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/detex.tar.xz +Source88: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diadia.doc.tar.xz +Source89: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diadia.tar.xz +Source90: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dosepsbin.doc.tar.xz +Source91: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dosepsbin.tar.xz +Source92: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtl.doc.tar.xz +Source93: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtl.tar.xz +Source94: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxgen.doc.tar.xz +Source95: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxgen.tar.xz +Source96: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvi2tty.doc.tar.xz +Source97: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvi2tty.tar.xz +Source98: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviasm.doc.tar.xz +Source99: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviasm.tar.xz +Source100: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvicopy.doc.tar.xz +Source101: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvicopy.tar.xz +Source102: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvidvi.doc.tar.xz +Source103: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvidvi.tar.xz +Source104: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviinfox.doc.tar.xz +Source105: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviinfox.tar.xz +Source106: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviljk.doc.tar.xz +Source107: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviljk.tar.xz +Source108: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviout-util.doc.tar.xz +Source109: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipdfmx.doc.tar.xz +Source110: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipdfmx.tar.xz +Source111: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipng.doc.tar.xz +Source112: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipng.tar.xz +Source113: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipos.doc.tar.xz +Source114: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipos.tar.xz +Source115: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvips.doc.tar.xz +Source116: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvips.tar.xz +Source117: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvisvgm.doc.tar.xz +Source118: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvisvgm.tar.xz +Source119: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebong.doc.tar.xz +Source120: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebong.tar.xz +Source121: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eplain.doc.tar.xz +Source122: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eplain.tar.xz +Source123: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epspdf.doc.tar.xz +Source124: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epspdf.tar.xz +Source125: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epstopdf.doc.tar.xz +Source126: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epstopdf.tar.xz +Source127: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exceltex.doc.tar.xz +Source128: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exceltex.tar.xz +Source129: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fig4latex.doc.tar.xz +Source130: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fig4latex.tar.xz +Source131: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/findhyph.doc.tar.xz +Source132: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/findhyph.tar.xz +Source133: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontinst.doc.tar.xz +Source134: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontinst.tar.xz +Source135: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontools.doc.tar.xz +Source136: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontools.tar.xz +Source137: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontware.doc.tar.xz +Source138: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fragmaster.doc.tar.xz +Source139: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fragmaster.tar.xz +Source140: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getmap.doc.tar.xz +Source141: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getmap.tar.xz +Source142: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries.doc.tar.xz +Source143: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries.tar.xz +Source144: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gregoriotex.doc.tar.xz +Source145: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gregoriotex.tar.xz +Source146: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gsftopk.doc.tar.xz +Source147: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gsftopk.tar.xz +Source148: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/installfont.doc.tar.xz +Source149: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/installfont.tar.xz +Source150: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jadetex.doc.tar.xz +Source151: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jadetex.tar.xz +Source152: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jfmutil.doc.tar.xz +Source153: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jfmutil.tar.xz +Source154: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ketcindy.doc.tar.xz +Source155: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ketcindy.tar.xz +Source156: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-utils.doc.tar.xz +Source157: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-utils.tar.xz +Source158: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kpathsea.doc.tar.xz +Source159: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kpathsea.tar.xz +Source160: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3build.tar.xz +Source161: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3build.doc.tar.xz +Source162: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lacheck.doc.tar.xz +Source163: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2man.doc.tar.xz +Source164: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2man.tar.xz +Source165: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2nemeth.doc.tar.xz +Source166: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2nemeth.tar.xz +Source167: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexdiff.doc.tar.xz +Source168: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexdiff.tar.xz +Source169: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexfileversion.doc.tar.xz +Source170: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexfileversion.tar.xz +Source171: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-git-log.doc.tar.xz +Source172: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-git-log.tar.xz +Source173: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexindent.doc.tar.xz +Source174: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexindent.tar.xz +Source175: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexpand.doc.tar.xz +Source176: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexpand.tar.xz +Source177: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-papersize.doc.tar.xz +Source178: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-papersize.tar.xz +Source179: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcdftypetools.doc.tar.xz +Source180: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lilyglyphs.doc.tar.xz +Source181: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lilyglyphs.tar.xz +Source182: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listbib.doc.tar.xz +Source183: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listbib.tar.xz +Source184: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listings-ext.doc.tar.xz +Source185: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listings-ext.tar.xz +Source186: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lollipop.doc.tar.xz +Source187: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lollipop.tar.xz +Source188: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxfileinfo.doc.tar.xz +Source189: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxfileinfo.tar.xz +Source190: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltximg.doc.tar.xz +Source191: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltximg.tar.xz +Source192: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaotfload.doc.tar.xz +Source193: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaotfload.tar.xz +Source194: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luahbtex.doc.tar.xz +Source195: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luahbtex.tar.xz +Source196: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatex.doc.tar.xz +Source197: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatex.tar.xz +Source198: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lwarp.doc.tar.xz +Source199: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lwarp.tar.xz +Source200: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/make4ht.doc.tar.xz +Source201: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/make4ht.tar.xz +Source202: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makedtx.doc.tar.xz +Source203: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makedtx.tar.xz +Source204: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeindex.doc.tar.xz +Source205: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeindex.tar.xz +Source206: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/match_parens.doc.tar.xz +Source207: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/match_parens.tar.xz +Source208: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathspic.doc.tar.xz +Source209: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathspic.tar.xz +Source210: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metafont.doc.tar.xz +Source211: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metafont.tar.xz +Source212: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metapost.doc.tar.xz +Source213: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metapost.tar.xz +Source214: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mex.doc.tar.xz +Source215: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mex.tar.xz +Source216: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mf2pt1.doc.tar.xz +Source217: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mf2pt1.tar.xz +Source218: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mflua.tar.xz +Source219: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfware.doc.tar.xz +Source220: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfware.tar.xz +Source221: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkgrkindex.doc.tar.xz +Source222: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkgrkindex.tar.xz +Source223: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkjobtexmf.doc.tar.xz +Source224: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkjobtexmf.tar.xz +Source225: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkpic.doc.tar.xz +Source226: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkpic.tar.xz +Source227: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mltex.doc.tar.xz +Source228: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mltex.tar.xz +Source229: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mptopdf.doc.tar.xz +Source230: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mptopdf.tar.xz +Source231: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/m-tx.doc.tar.xz +Source232: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/m-tx.tar.xz +Source233: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibibliography.doc.tar.xz +Source234: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibibliography.tar.xz +Source235: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtex.doc.tar.xz +Source236: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtex.tar.xz +Source237: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtnt.doc.tar.xz +Source238: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtnt.tar.xz +Source239: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/omegaware.doc.tar.xz +Source240: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/patgen.doc.tar.xz +Source241: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/patgen.tar.xz +Source242: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pax.doc.tar.xz +Source243: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pax.tar.xz +Source244: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfbook2.doc.tar.xz +Source245: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfbook2.tar.xz +Source246: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcrop.doc.tar.xz +Source247: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcrop.tar.xz +Source248: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfjam.doc.tar.xz +Source249: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfjam.tar.xz +Source250: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdflatexpicscale.doc.tar.xz +Source251: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdflatexpicscale.tar.xz +Source252: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex.doc.tar.xz +Source253: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex.tar.xz +Source254: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex-quiet.doc.tar.xz +Source255: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex-quiet.tar.xz +Source256: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfxup.doc.tar.xz +Source257: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfxup.tar.xz +Source258: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pedigree-perl.doc.tar.xz +Source259: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pedigree-perl.tar.xz +Source260: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perltex.doc.tar.xz +Source261: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perltex.tar.xz +Source262: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/petri-nets.doc.tar.xz +Source263: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/petri-nets.tar.xz +Source264: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pfarrei.doc.tar.xz +Source265: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pfarrei.tar.xz +Source266: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix.doc.tar.xz +Source267: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix-helper.doc.tar.xz +Source268: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix-helper.tar.xz +Source269: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix.tar.xz +Source270: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmxchords.doc.tar.xz +Source271: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmxchords.tar.xz +Source272: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmx.doc.tar.xz +Source273: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmx.tar.xz +Source274: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ps2eps.doc.tar.xz +Source275: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ps2eps.tar.xz +Source276: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ps2pk.doc.tar.xz +Source277: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ps2pk.tar.xz +Source278: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst2pdf.doc.tar.xz +Source279: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst2pdf.tar.xz +Source280: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pdf.doc.tar.xz +Source281: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pdf.tar.xz +Source282: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psutils.doc.tar.xz +Source283: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psutils.tar.xz +Source284: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex2pdf.doc.tar.xz +Source285: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex2pdf.tar.xz +Source286: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex.doc.tar.xz +Source287: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-fontmaps.doc.tar.xz +Source288: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-fontmaps.tar.xz +Source289: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex.tar.xz +Source290: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/purifyeps.doc.tar.xz +Source291: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/purifyeps.tar.xz +Source292: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pygmentex.doc.tar.xz +Source293: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pygmentex.tar.xz +Source294: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pythontex.doc.tar.xz +Source295: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pythontex.tar.xz +Source296: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rubik.doc.tar.xz +Source297: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rubik.tar.xz +Source298: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seetexk.doc.tar.xz +Source299: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seetexk.tar.xz +Source300: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splitindex.doc.tar.xz +Source301: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splitindex.tar.xz +Source302: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srcredact.doc.tar.xz +Source303: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srcredact.tar.xz +Source304: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sty2dtx.doc.tar.xz +Source305: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sty2dtx.tar.xz +Source306: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn-multi.doc.tar.xz +Source307: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn-multi.tar.xz +Source308: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synctex.doc.tar.xz +Source309: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synctex.tar.xz +Source310: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ebook.doc.tar.xz +Source311: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ebook.tar.xz +Source312: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ht.doc.tar.xz +Source313: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ht.tar.xz +Source314: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texcount.doc.tar.xz +Source315: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texcount.tar.xz +Source316: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdef.doc.tar.xz +Source317: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdef.tar.xz +Source318: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdiff.doc.tar.xz +Source319: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdiff.tar.xz +Source320: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdirflatten.doc.tar.xz +Source321: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdirflatten.tar.xz +Source322: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoc.doc.tar.xz +Source323: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex.doc.tar.xz +Source324: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoc.tar.xz +Source325: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoctk.tar.xz +Source326: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoctk.doc.tar.xz +Source327: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texfot.doc.tar.xz +Source328: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texfot.tar.xz +Source329: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive.infra.doc.tar.xz +Source330: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive.infra.tar.xz +Source331: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texliveonfly.doc.tar.xz +Source332: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texliveonfly.tar.xz +Source333: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-scripts.doc.tar.xz +Source334: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-scripts.tar.xz +Source335: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-scripts-extra.doc.tar.xz +Source336: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-scripts-extra.tar.xz +Source337: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texloganalyser.doc.tar.xz +Source338: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texloganalyser.tar.xz +Source339: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texosquery.doc.tar.xz +Source340: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texosquery.tar.xz +Source341: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texplate.doc.tar.xz +Source342: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texplate.tar.xz +Source343: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texsis.doc.tar.xz +Source344: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texsis.tar.xz +Source345: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex.tar.xz +Source346: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texware.doc.tar.xz +Source347: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texware.tar.xz +Source348: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumbpdf.doc.tar.xz +Source349: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumbpdf.tar.xz +Source350: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tie.doc.tar.xz +Source351: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tie.tar.xz +Source352: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tpic2pdftex.doc.tar.xz +Source353: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tpic2pdftex.tar.xz +Source354: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ttfutils.doc.tar.xz +Source355: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ttfutils.tar.xz +Source356: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typeoutfileinfo.doc.tar.xz +Source357: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typeoutfileinfo.tar.xz +Source358: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulqda.doc.tar.xz +Source359: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulqda.tar.xz +Source360: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uplatex.doc.tar.xz +Source361: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uptex.doc.tar.xz +Source362: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urlbst.doc.tar.xz +Source363: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urlbst.tar.xz +Source364: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/velthuis.doc.tar.xz +Source365: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/velthuis.tar.xz +Source366: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vlna.doc.tar.xz +Source367: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vpe.doc.tar.xz +Source368: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vpe.tar.xz +Source369: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/web.doc.tar.xz +Source370: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/web.tar.xz +Source371: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/webquiz.doc.tar.xz +Source372: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/webquiz.tar.xz +Source373: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wordcount.doc.tar.xz +Source374: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wordcount.tar.xz +Source375: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xdvi.doc.tar.xz +Source376: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xdvi.tar.xz +Source377: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex.doc.tar.xz +Source378: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex.tar.xz +Source379: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindex.doc.tar.xz +Source380: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindex.tar.xz +%if ! 0%{?eln} +Source381: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindy.doc.tar.xz +Source382: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindy.tar.xz +%endif +Source383: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xmltex.doc.tar.xz +Source384: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xmltex.tar.xz +Source385: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpdfopen.doc.tar.xz +Source386: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yplan.doc.tar.xz +Source387: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yplan.tar.xz +Source388: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/optex.tar.xz +Source389: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/optex.doc.tar.xz +# 2021 +Source390: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/albatross.tar.xz +Source391: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/albatross.doc.tar.xz +Source392: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/git-latexdiff.tar.xz +Source393: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/git-latexdiff.doc.tar.xz +Source394: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperxmp.tar.xz +Source395: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperxmp.doc.tar.xz +Source396: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/light-latex-make.tar.xz +Source397: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/light-latex-make.doc.tar.xz +Source398: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spix.tar.xz +Source399: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spix.doc.tar.xz +Source400: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikztosvg.tar.xz +Source401: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikztosvg.doc.tar.xz +Source402: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xml2pmx.tar.xz +Source403: https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xml2pmx.doc.tar.xz + +Patch1: tl-kpfix.patch +Patch2: tl-format.patch +Patch5: texlive-2016-kpathsea-texlive-path.patch +# fixes from arch and upstream texlive +Patch7: texlive-20210325-new-poppler.patch +# fix texmf.cnf so that it finds texinfo bits in Fedora +Patch8: texlive-20210325-texinfo-path-fix.patch +# These tests only fail on 32 bit arches with gcc8 +Patch11: texlive-20200327-disable-more-failing-tests.patch +# Another test which fails on 32 bit arches (in F30+) +# probably because of stricter malloc checks in glibc. +# https://bugzilla.redhat.com/show_bug.cgi?id=1631847 +# Filed issue upstream, no resolution yet. +Patch15: texlive-base-20180414-disable-omegafonts-check-test.patch +# fix annocheck issue detected by rpmdiff +Patch17: texlive-20180414-annocheck.patch +Patch18: texlive-20210325-poppler-0.73.patch +# Fix libgs detection in configure/configure.ac in dvisvgm +Patch20: texlive-20190410-dvisvgm-fix-libgs-detection.patch +# Since we need to include tlmgr.pl for texconfig +# lets try to keep people from shooting themselves with it +Patch21: texlive-20190410-tlmgr-ignore-warning.patch +Patch23: texlive-20210325-poppler-0.84.patch +# Fixes for poppler 0.90 (f33+) +Patch29: texlive-20200327-poppler-0.90.patch +# Fix pdflatex run out of memory +Patch30: texlive-base-20200327-out-of-memory.patch +# Fix configure to properly detect poppler +Patch31: texlive-base-20210325-configure-poppler-xpdf-fix.patch + +# Apply upstream fixes that fix the bug that makes mendekx and upmendex fail on aarch64, ppc64, s390x +# http://tug.org/svn/texlive?view=revision&revision=59151 +# http://tug.org/svn/texlive?view=revision&revision=59169 +Patch32: texlive-base-20210325-mendex-weird-arch-fixes.patch + +# Remove deprecated setpdfwrite ghostscript call +Patch33: texlive-base-20210325-no-setpdfwrite.patch + +# Poppler 22 +Patch34: texlive-base-20210325-poppler-22.01.0.patch +# Fix crash in handling Group +Patch35: texlive-base-20210325-pdftoepdf-fix-crash.patch + +# Can't do this because it causes everything else to be noarch +# BuildArch: noarch +BuildRequires: make +BuildRequires: gcc gcc-c++ +BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ +BuildRequires: gd-devel +BuildRequires: teckit-devel >= 2.5.7 +BuildRequires: freetype-devel libpng-devel t1lib-devel zlib-devel poppler-devel t1utils +BuildRequires: zziplib-devel libicu-devel cairo-devel harfbuzz-devel perl-generators pixman-devel graphite2-devel +%if 0%{?fedora} || 0%{?rhel} >= 8 +BuildRequires: libgs-devel +%else +BuildRequires: ghostscript-devel +%endif +BuildRequires: libpaper-devel potrace-devel autoconf automake libtool +BuildRequires: gmp-devel mpfr-devel +# This is really for macros. +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%if %{without bootstrap} +# This is for xindy +%if ! 0%{?eln} +BuildRequires: clisp-devel +BuildRequires: texlive-cyrillic, texlive-latex, texlive-metafont, texlive-cm-super, texlive-ec +%endif +%endif +# This is temporary to fix build while missing kpathsea dep is active +BuildRequires: texlive-texlive-scripts +# This is needed for a test +BuildRequires: texlive-amsfonts +# RPATH DIE DIE DIE +BuildRequires: chrpath +# Break an ugly dep loop +BuildRequires: tex(expl3.sty) + + +# Cleanup Provides/Obsoletes +# texlive-cjk-gs-integrate (depackaged 2018-03-09) +Provides: texlive-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate <= 7:20170520 +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: tex-cjk-gs-integrate <= 7:20170520 +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin <= 7:20170520 +Obsoletes: tex-cjk-gs-integrate-bin <= 7:20170520 +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc <= 7:20170520 + +%description +The TeX Live software distribution offers a complete TeX system for a +variety of Unix, Macintosh, Windows and other platforms. It +encompasses programs for editing, typesetting, previewing and printing +of TeX documents in many different languages, and a large collection +of TeX macros and font libraries. + +The distribution includes extensive general documentation about TeX, +as well as the documentation for the included software packages. + +%package -n %{shortname}-a2ping +Provides: tex-a2ping = %{epoch}:%{source_date}-%{release} +Provides: texlive-a2ping-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-a2ping-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-a2ping-bin < 7:20170520 +License: GPL+ +Summary: Advanced PS, PDF, EPS converter +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-a2ping +a2ping is a Perl script command line utility written for Unix +that converts many raster image and vector graphics formats to +EPS or PDF and other page description formats. Accepted input +file formats are: PS (PostScript), EPS, PDF, PNG, JPEG, TIFF, +PNM, BMP, GIF, LBM, XPM, PCX, TGA. Accepted output formats are: +EPS, PCL5, PDF, PDF1, PBM, PGM, PPM, PS, markedEPS, markedPS, +PNG, XWD, BMP, TIFF, JPEG, GIF, XPM. a2ping delegates the low- +level work to Ghostscript (GS), pdftops and sam2p. a2ping fixes +many glitches during the EPS to EPS conversion, so its output +is often more compatible and better embeddable than its input. + +%package -n %{shortname}-accfonts +Provides: tex-accfonts = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-accfonts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-bin < 7:20170520 +Provides: tex-accfonts-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-doc < 7:20170520 +License: GPL+ +Summary: Utilities to derive new fonts from existing ones +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(CSX.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(IndUni_Omega.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(Norman.def) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-accfonts +The accfonts package contains three utilities to permit easy +manipulation of fonts, in particular the creation of unusual +accented characters. Mkt1font works on Adobe Type 1 fonts, +vpl2vpl works on TeX virtual fonts and vpl2ovp transforms a TeX +font to an Omega one. All three programs read in a font (either +the font itself or a property list), together with a simple +definition file containing lines such as '128 z acute'; they +then write out a new version of the font with the requested new +characters in the numerical slots specified. Great care is +taken over the positioning of accents, and over the provision +of kerning information for new characters; mkt1font also +generates suitable "hints" to enhance quality at small sizes or +poor resolutions. The programs are written in Perl. + +%package -n %{shortname}-adhocfilelist +Provides: tex-adhocfilelist = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-bin < 7:20170520 +Provides: tex-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-doc < 7:20170520 +License: LPPL +Summary: '\listfiles' entries from the command line +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-adhocfilelist +The package provides a Unix shell script to display a list of +LaTeX \Provides...-command contexts on screen. Provision is +made for controlling the searches that the package does. The +package was developed on a Unix-like system, using (among other +things) the gnu variant of the find command. + +%package -n %{shortname}-afm2pl +Provides: tex-afm2pl = %{epoch}:%{source_date}-%{release} +Provides: texlive-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-afm2pl-bin < 7:20170520 +License: LPPL +Summary: afm2pl package +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(afm2pl-ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1ital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1tt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanlc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanuc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(makesc8y.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-afm2pl +afm2pl package. + +%package -n %{shortname}-albatross +Summary: Find fonts that contain a given glyph +License: BSD +Requires: texlive-base texlive-kpathsea + +%description -n %{shortname}-albatross +This is a command line tool for finding fonts that contain a +given (Unicode) glyph. It relies on Fontconfig. + +%package -n %{shortname}-aleph +Provides: tex-aleph = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-aleph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-bin < 7:20170520 +Provides: tex-aleph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-doc < 7:20170520 +Summary: Extended TeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires(post,postun): coreutils +Requires: texlive-latex +Requires: texlive-plain +Requires: texlive-lambda +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-antomega +Requires: texlive-latex-fonts +Requires: texlive-omega +Requires: texlive-l3kernel + +%description -n %{shortname}-aleph +An development of omega, using most of the extensions of TeX +itself developed for e-TeX. + +%package -n %{shortname}-amstex +Provides: tex-amstex = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-amstex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-bin < 7:20170520 +Provides: tex-amstex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-doc < 7:20170520 +License: LPPL +Summary: American Mathematical Society plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea +Requires(post,postun): coreutils +Requires: texlive-tex +Requires: texlive-amsfonts +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Provides: tex(amsppt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(amsppt1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.bug) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.ini) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-amstex +AMSTeX is a TeX macro package, originally written by Michael +Spivak for the American Mathematical Society (AMS) during 1983- +1985 and is described in the book 'The Joy of TeX'. It is based +on Plain TeX, and provides many features for producing more +professional-looking maths formulas with less burden on +authors. More recently, the focus of attention has switched to +amslatex, but AMSTeX remains as a working system. + +%package -n %{shortname}-arara +Provides: tex-arara = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-arara-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-bin < 7:20170520 +Provides: tex-arara-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-doc < 7:20170520 +License: BSD +Summary: Automation of LaTeX compilation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: bundled(slf4j) = 1.6.4 +Provides: bundled(apache-commons-collections) = 3.2.1 +Provides: bundled(apache-commons-exec) = 1.1 +Provides: bundled(apache-commons-lang3) = 3.1 +Provides: bundled(apache-commons-cli) = 1.2 +Provides: bundled(mvel2) = 2.0.19 +Provides: bundled(snakeyaml) = 1.11 +Provides: bundled(logback) = 1.0.1 +# shell +BuildArch: noarch + +%description -n %{shortname}-arara +Arara is comparable with other well-known compilation tools +like latexmk and rubber. The key difference is that that arara +determines its actions from metadata in the source code, rather +than relying on indirect resources, such as log file analysis. + +%package -n %{shortname}-attachfile2 +Provides: tex-attachfile2 = %{epoch}:%{source_date}-%{release} +Provides: tex-attachfile2-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-attachfile2-bin = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: Attach files into PDF +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(attachfile2.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-attachfile2 +This package can be used to attach files to a PDF document. It +is a further development of Scott Pakin's package attachfile +for pdfTeX. Apart from bug fixes, this package adds support for +dvips, some new options, and gets and writes meta information +data about the attached files. + +%package -n %{shortname}-authorindex +Provides: tex-authorindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-authorindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-bin < 7:20170520 +Provides: tex-authorindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-doc < 7:20170520 +License: LPPL +Summary: Index citations by author names +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(authorindex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-authorindex +This package allows the user to create an index of all authors +cited in a LaTeX document. Each author entry in the index +contains the pages where these citations occur. Alternatively, +the package can list the labels of the citations that appear in +the references rather than the text pages. The package relies +on BibTeX being used to handle citations. Additionally, it +requires Perl (version 5 or higher). + +%package -n %{shortname}-autosp +Provides: tex-autosp = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-autosp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-bin < 7:20170520 +Provides: tex-autosp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-doc < 7:20170520 +License: GPLv2 +Summary: A Preprocessor that generates note-spacing commands for MusiXTeX scores +Requires: texlive-base + +%description -n %{shortname}-autosp +This program simplifies the creation of MusiXTeX scores by +converting (non-standard) commands of the form \anotes ... \en +into one or more conventional note-spacing commands, as +determined by the note values themselves, with \sk spacing +commands inserted as necessary. The coding for an entire +measure can be entered one part at a time, without concern for +note-spacing changes within the part or spacing requirements of +other parts. For example, \anotes\qa J\qa K&\ca l\qa m\ca n\en +generates \Notes\qa J\sk\qa K\sk&\ca l\qa m\sk\ca n\en . + +%package -n %{shortname}-axodraw2 +Provides: tex-axodraw2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-axodraw2-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3 +Summary: Feynman diagrams in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(axodraw2.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-axodraw2 +This package defines macros for drawing Feynman graphs in LaTeX +documents. It is an important update of the axodraw package, +but since it is not completely backwards compatible, we have +given the style file a changed name. Many new features have +been added, with new types of line, and much more flexibility +in their properties. In addition, it is now possible to use +axodraw2 with pdfLaTeX, as well as with the LaTeX-dvips method. +However with pdfLaTeX (and also LuaLaTeX and XeLaTeX), an +external program, axohelp, is used to perform the geometrical +calculations needed for the pdf code inserted in the output +file. The processing involves a run of pdfLaTeX, a run of +axohelp, and then another run of pdfLaTeX. + +%package -n %{shortname}-bib2gls +Provides: tex-bib2gls = %{epoch}:%{source_date}-%{release} +Provides: texlive-bib2gls-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3+ +Summary: Convert .bib files to glossaries-extra.sty resource files +Requires: texlive-base +# Java and shell +BuildArch: noarch + +%description -n %{shortname}-bib2gls +This Java command line application may be used to extract +glossary information stored in a .bib file and convert it into +glossary entry definition commands. This application should be +used with glossaries-extra.sty's 'record' package option. It +performs two functions in one: selects entries according to +records found in the .aux file (similar to bibtex), +hierarchically sorts entries and collates location lists +(similar to makeindex or xindy). The glossary entries can then +be managed in a system such as JabRef, and only the entries +that are actually required will be defined, reducing the +resources required by TeX. The supplementary application +convertgls2bib can be used to convert existing .tex files +containing definitions (\newglossaryentry etc.) to the .bib +format required by bib2gls. + +%package -n %{shortname}-bibexport +Provides: tex-bibexport = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibexport-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-bin < 7:20170520 +Provides: tex-bibexport-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-doc < 7:20170520 +License: LPPL 1.3 +Summary: Extract a BibTeX file based on a .aux file +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch + +%description -n %{shortname}-bibexport +A Bourne shell script that uses BibTeX to extract bibliography +entries that are \cite'd in a document. It can also expand a +BibTeX file, expanding the abbreviations (other than the built- +in ones like month names) and followig the cross-references. + +%package -n %{shortname}-bibtex +Provides: tex-bibtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-bin < 7:20170520 +Provides: tex-bibtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-doc < 7:20170520 +License: Knuth +Summary: Process bibliographies for LaTeX, etc +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(apalike.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(apalike.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-bibtex +BibTeX allows the user to store his citation data in generic +form, while printing citations in a document in the form +specified by a BibTeX style, to be specified in the document +itself (one often needs a LaTeX citation-style package, such as +natbib as well). BibTeX itself is an ASCII-only program; there +is, however, a version that copes with 8-bit character sets. +However, BibTeX's facilities rapidly run out as one moves away +from simple ASCII (for example, in the various national sorting +rules for languages expressed in different parts of ISO-8859 -- +the "ISO Latin" series). For more flexibility, the user is +urged to consider using biber with biblatex to typeset its +output. In fact, it is best to avoid BibTeX in favour of biber +and biblatex, if at all possible. + +%package -n %{shortname}-bibtexu +Provides: tex-bibtexu = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-bin < 7:20170520 +Provides: tex-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-doc < 7:20170520 +License: LPPL +Summary: bibtexu package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtexu +bibtexu package. + +%package -n %{shortname}-bibtex8 +Provides: tex-bibtex8 = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-bin < 7:20170520 +Provides: tex-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-doc < 7:20170520 +License: GPL+ +Summary: A fully 8-bit adaptation of BibTeX 0.99 +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtex8 +An enhanced, portable C version of BibTeX. Enhanced by +conversion to "big" (32-bit) capacity, addition of run-time +selectable capacity and 8-bit support extensions. National +character set and sorting order are controlled by an external +configuration file. Various examples are included. + +%package -n %{shortname}-bundledoc +Provides: tex-bundledoc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-bin < 7:20170520 +Provides: tex-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-doc < 7:20170520 +License: LPPL +Summary: Bundle together all the files needed to build a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(miktex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix-arlatex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-bundledoc +The bundledoc package is a post-processor for the snapshot +package that bundles together all the classes, packages and +files needed to build a given LaTeX document. It reads the .dep +file that snapshot produces, finds each of the files mentioned +therein, and archives them into a single .tar.gz (or .zip, or +whatever) file, suitable for moving across systems, +transmitting to a colleague, etc. A script, arlatex, provides +an alternative "archiving" mechanism, creating a single LaTeX +file that contains all of the ancillary files of a LaTeX +document, together with the document itself, using the +filecontents* environment. + +%package -n %{shortname}-cachepic +Provides: tex-cachepic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cachepic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-bin < 7:20170520 +Provides: tex-cachepic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-doc < 7:20170520 +License: LPPL 1.3 +Summary: Convert document fragments into graphics +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(verbatim.sty) +Provides: tex(cachepic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(prcachepic.def) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-cachepic +The bundle simplifies and automates conversion of document +fragments into external EPS or PDF files. The bundle consists +of two parts: a LaTeX package that implements a document level +interface, and a command line tool (written in lua) that +generates the external graphics. + +%package -n %{shortname}-checkcites +Provides: tex-checkcites = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checkcites-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-bin < 7:20170520 +Provides: tex-checkcites-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-doc < 7:20170520 +License: LPPL 1.3 +Summary: Check citation commands in a document +Requires: texlive-base +Requires: texlive-kpathsea +# lua script +BuildArch: noarch + +%description -n %{shortname}-checkcites +The package provides a lua script written for the sole purpose +of detecting undefined and unused references from LaTeX +auxiliary or bibliography files. + +%package -n %{shortname}-checklistings +Provides: tex-checklistings = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checklistings-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-bin < 7:20170520 +Provides: tex-checklistings-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-doc < 7:20170520 +License: LPPL 1.2 +Summary: Pass verbatim contents through a compiler and reincorporate the resulting output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(kvoptions.sty) +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(listings.sty) +Provides: tex(checklistings.sty) = %{epoch}:%{source_date}-%{release} +# shell script +BuildArch: noarch + +%description -n %{shortname}-checklistings +This package augments the fancyvrb and listings packages to +allow the source code they contain to be checked by an external +tool (like a compiler). The external tool's messages can be +automatically reincorporated into the original document. The +package does not focus on a specific programming language, but +it is designed to work well with languages and compilers in the +ML family. + +%package -n %{shortname}-chklref +Provides: tex-chklref = %{epoch}:%{source_date}-%{release} +License: GPLv3 +Summary: Check for problems with labels in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(chklref.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-chklref +It is quite common that after modifying a TeX file, many unused +labels remain in it. The purpose of chklref is to automatically +find these useless labels. It also looks for "non starred" +mathematical environments with no labels and advises the user +to use a starred version instead. + +%package -n %{shortname}-chktex +Provides: tex-chktex = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-chktex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-bin < 7:20170520 +Provides: tex-chktex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-doc < 7:20170520 +License: GPL+ +Summary: Check for errors in LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-chktex +The program reports typographic and other errors in LaTeX +documents. Filters are also provided for checking the LaTeX +parts of CWEB documents. + +%if 0 +%package -n %{shortname}-cjk-gs-integrate +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin < 7:20170520 +Provides: tex-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc < 7:20170520 +License: GPLv3+ +Summary: Tools to integrate CJK fonts into Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-cjk-gs-integrate +This script searches a list of directories for CJK fonts, and +makes them available to an installed GhostScript. In the +simplest case with sufficient privileges, a run without +arguments should effect in a complete setup of GhostScript. +%endif + +%package -n %{shortname}-cjkutils +Provides: tex-cjkutils = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjkutils-bin < 7:20170520 +License: LPPL +Summary: cjkutils package +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(b5ka12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5kr12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c1so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c3so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c4so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c6so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c7so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(csso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsfs14.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(j2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(jsso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ksso17.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cjkutils +cjkutils package. + +%package -n %{shortname}-clojure-pamphlet +Provides: tex-clojure-pamphlet = %{epoch}:%{source_date}-%{release} +Provides: texlive-clojure-pamphlet-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-clojure-pamphlet-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3+ +Summary: A simple literate programming tool based on clojure's pamphlet system +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(clojure-pamphlet.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-clojure-pamphlet +The Clojure pamphlet system is a system based on the Clojure +literate system. In the Clojure's pamphlet system you have your +main LaTeX file, which can be compiled regularly. This file +contains documentation and source code (just like in other +forms of literate programming). These code snippets are wrapped +in the chunk environment, hence they can be recognized by the +tangler in order to extract them. Chunks can be included inside +each other by the getchunk command (which will be typesetted +accordingly). Finally, the LaTeX file will be run through the +tangler to get the desired chunk of code. + +%package -n %{shortname}-cluttex +Provides: tex-cluttex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cluttex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cluttex-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3 +Summary: An automation tool for running LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-cluttex +This is another tool for the automation of LaTeX document +processing, like latexmk or arara. The main feature of this +tool is that it does not clutter your working directory with +.aux or .log or other auxiliary files. It has of course the +usual features of automation tools: It automatically re-runs +(La)TeX for cross-references. MakeIndex, BibTeX, Biber, or +makeglossaries will be executed if a corresponding option is +set. Furthermore, cluttex can watch input files for changes +(using an external program). + +%package -n %{shortname}-context +Provides: tex-context = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-context-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-bin < 7:20170520 +Provides: tex-context-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-doc < 7:20170520 +License: GPL+ or LPPL +Summary: The ConTeXt macro package +Requires: texlive-base +Requires: texlive-kpathsea +# for /usr/bin/realpath +Requires: coreutils +Requires(post,postun): coreutils +Requires: texlive-metapost +%if %{without bootstrap} +Requires: texlive-pdftex +Requires: texlive-xetex +%endif +Requires: texlive-luatex +Requires: texlive-lm +Requires: texlive-lm-math +Requires: texlive-amsfonts +Requires: texlive-manfnt-font +Requires: texlive-mflogo-font +Requires: texlive-stmaryrd +Requires: texlive-mptopdf +Requires: ruby +Requires: tex(pstricks.sty) +Requires: tex(pst-plot.sty) +Provides: tex(notepad++.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(texworks-setup.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(tools.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(TeXworks.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(scite-context-readme.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-buy.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-fsf.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-ghz.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-tmf.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmin.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmit.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmitt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmrm.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmsc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmtt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec-2004.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-8r.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(teff-trinite.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(8r-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mkiv-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mkiv-px.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mkiv-tx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-adobe-euro.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-ams-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-ams-cmr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-ams-euler.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-context-symbol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-dummy.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-empty.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-micropress-informal.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-csr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-plr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-vnr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-vogel-symbol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-wasy.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-youngryu-px.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-youngryu-tx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(t5-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(t5-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansi-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansi-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tlig.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(bidi-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(export-example.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-cweb.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-datastrc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-educat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-format.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-layout.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-narrowtt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-newmat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-pictex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-streams.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-subsub.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(metatex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-arrange.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-combine.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-common.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-copy.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-ideas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-listing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-markdown.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-precache.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-select.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-sql.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-timing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-04.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-cdr-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-mag-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-04.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-05.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-06.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-07.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-08.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-09.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-10.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-11.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-12.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-13.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-14.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-15.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-16.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-18.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-19.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-22.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-23.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-26.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-27.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-50.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-61.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-62.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-63.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-64.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-66.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-67.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-68.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-93.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-96.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-ptj-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(status-mkiv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(supp-mis.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(supp-mpe.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(supp-pdf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-dir-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-ams.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa-fr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa-it.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-aps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-num-fr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-num.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-ssa.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mag-0000.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(setup-qr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(aesop-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bryson.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cervantes-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(darwin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(davis.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dawkins.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-mps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-tex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(douglas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hawking.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-ar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(knuth.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(linden.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lorem.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(materie.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(montgomery.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(quevedo-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(reich.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(samples.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(thuan.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tufte.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ward.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(weisman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(zapf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-basics.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-languages.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-mplib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-nl.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-de.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-en.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-nl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-pictex.sty) = %{epoch}:%{source_date}-%{release} +# shell and lua +BuildArch: noarch + +%description -n %{shortname}-context +A full featured, parameter driven macro package, which fully +supports advanced interactive documents. See the ConTeXt garden +for a wealth of support information. + +%package -n %{shortname}-context-doc +Requires: texlive-context +Provides: tex-context-doc = %{epoch}:%{source_date}-%{release} +Summary: Documentation for context +License: GPL+ or LPPL + +%description -n %{shortname}-context-doc +Documentation for context. + +%package -n %{shortname}-convbkmk +Provides: tex-convbkmk = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-bin < 7:20170520 +Provides: tex-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-doc < 7:20170520 +License: MIT +Summary: Correct platex/uplatex bookmarks in PDF created with hyperref +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby script +BuildArch: noarch + +%description -n %{shortname}-convbkmk +The package provides a small Ruby script that corrects +bookmarks in PDF files created by platex/uplatex, using +hyperref. + +%package -n %{shortname}-crossrefware +Provides: tex-crossrefware = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-bin < 7:20170520 +Provides: tex-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-doc < 7:20170520 +License: GPL+ +Summary: Scripts for working with crossref.org +# Just perl. +BuildArch: noarch + +%description -n %{shortname}-crossrefware +This bundle contains the following scripts: bibdoiadd.pl: add +DOI numbers to papers in a given bib file, bibzbladd.pl: add +Zbl numbers to papers in a given bib file, ltx2crossrefxml.pl: +a tool for the creation of XML files for submitting to the +parent site + +%package -n %{shortname}-cslatex +Provides: tex-cslatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cslatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cslatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cslatex-bin < 7:20170520 +License: GPL+ +Summary: LaTeX support for Czech/Slovak typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-cm +Requires: texlive-csplain +Requires: texlive-hyphen-base +Requires: texlive-latex-fonts +Requires: texlive-tex-ini-files +Requires(post,postun): coreutils +Requires: tex(czech.ldf) +Requires: tex(slovak.ldf) +Provides: tex(czech.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphen.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(slovak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cspsfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pzc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(nhelvet.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntimes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pzc.fd) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-cslatex +LaTeX support for Czech/Slovak typesetting + +%package -n %{shortname}-csplain +Provides: tex-csplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-csplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-csplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-csplain-bin < 7:20170520 +License: GPLv2+ +Summary: Plain TeX multilanguage support +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tex +Requires: texlive-cm +Requires(post,postun): coreutils +Requires: texlive-cs +Requires: texlive-hyphen-base +Requires: texlive-plain +Requires: texlive-enctex +Requires: texlive-tex-ini-files +Requires: texlive-luatex +Requires: texlive-luatex85 +Provides: tex(csenc-k.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-p.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-w.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfontsm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(czhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(extcode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttabs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(plaina4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(skhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(uni-lcuc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ams-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cavantga.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cbookman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chars-8z.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chelvet.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cncent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cpalatin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-adventor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-all.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-antt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-arev.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bera.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bonum.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-charter.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-cursor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-heros.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-pagella.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-polta.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-schola.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-termes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctimes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cyrchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ecfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lmfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luafonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(unifam.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-iso690.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-simple.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-xetex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfuni.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-csplain +CSplain is a small extension of basic Plain TeX macros, the +formats csplain and pdfcsplain can be generated. It supports: +hyphenation of words for 50+ languages, simple and powerfull +font loading system (various sizes of fonts), tex, pdftex, +xetex and luatex engines, math fonts simply loaded with full +amstex-like features, three internal encodings (IL2 for +Czech/Slovak languages, T1 for many languages with latin +alphabet and Unicode in new TeX engines), natural UTF-8 input +in pdfTeX using encTeX without any active characters, Czech and +Slovak special typesetting features. An important part of the +package is OPmac, which implements most of LaTeX's features +(sectioning, font selection, color, hyper reference and urls, +bibliography, index, toc, tables,etc.) by Plain TeX macros. The +OPmac macros can generate and bibliography without any external +program. + +%package -n %{shortname}-ctan-o-mat +Provides: tex-ctan-o-mat = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctan-o-mat-bin = %{epoch}:%{source_date}-%{release} +License: BSD +Summary: Upload or validate a package for CTAN +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter +#perl +BuildArch: noarch + +%description -n %{shortname}-ctan-o-mat +This program can be used to automate the upload of a package to +CTAN. The description of the package is contained in a +configuration file. The provided information is validated in +any case. If the validation succeeds and not only the +validation is requested, then the provided archive file will be +placed in the incoming area of the CTAN for further processing +by the CTAN team. In any case any finding during the validation +is reported at the end of the processing. Note that the +validation is the default and an official submission has to be +requested by an appropriate command line option. ctan-o-mat +requires an Internet connection to the CTAN server. Even the +validation retrieves the known attributes and the basic +constraints from the server. + +%package -n %{shortname}-ctanbib +Provides: tex-ctanbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanbib-bin = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: Export ctan entries to bib format +Requires: texlive-base +Requires: texlive-kpathsea +#lua +BuildArch: noarch + +%description -n %{shortname}-ctanbib +This script can generate BibTeX records for LaTeX packages hosted on CTAN. + +%package -n %{shortname}-ctanify +Provides: tex-ctanify = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanify-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-bin < 7:20170520 +Provides: tex-ctanify-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-doc < 7:20170520 +License: LPPL 1.3 +Summary: Prepare a package for upload to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanify +Given a list of filenames, ctanify creates a tarball (a .tar.gz +file) with the files laid out in CTAN's preferred structure. +The tarball additionally contains a ZIP (.zip) file with copies +of all files laid out in the standard TeX Directory Structure +(TDS), which may be used by those intending to install the +package, or by those who need to incorporate it in a +distribution. (The TDS ZIP file will be installed in the CTAN +install/ tree.) + +%package -n %{shortname}-ctanupload +Provides: tex-ctanupload = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-bin < 7:20170520 +Provides: tex-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-doc < 7:20170520 +License: GPLv3+ +Summary: Support for users uploading to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanupload +The package provides a Perl script that allows the uploads of a +contribution to CTAN from the command line. The aim is to +simplify the release process for LaTeX package authors. + +%package -n %{shortname}-ctie +Provides: tex-ctie = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctie-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctie-bin < 7:20170520 +License: GPL+ +Summary: C version of tie (merging Web change files) +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ctie +This is a version of tie converted for use with cweb. + +%package -n %{shortname}-cweb +Provides: tex-cweb = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cweb-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-bin < 7:20170520 +Provides: tex-cweb-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-doc < 7:20170520 +License: Knuth +Summary: A Web system in C +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(cwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfXcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfdcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdffcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdficwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfwebmac.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cweb +The Cweb system is a system for Structured Software +Documentation (also known as Literate Programming) in the +programming language C. + +%package -n %{shortname}-cyrillic +Provides: tex-cyrillic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin < 7:20170520 +Provides: tex-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-doc < 7:20170520 +Provides: texlive-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin-bin < 7:20170520 +License: LPPL 1.3 +Summary: Support for Cyrillic fonts in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fontenc.sty) +Provides: tex(cp1251.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp855.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866av.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866mav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866nav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866tat.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctt.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(dbk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(iso88595.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(isoir111.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-r.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-ru.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-u.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcydefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(maccyr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(macukr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mik.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mls.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mnk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mos.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ncc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt154.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt254.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2accr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2aenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2benc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-cyrillic +This bundle of macros files provides macro support (including +font encoding macros) for the use of Cyrillic characters in +fonts encoded under the T2* and X2 encodings. These encodings +cover (between them) pretty much every language that is written +in a Cyrillic alphabet. + +%package -n %{shortname}-de-macro +Provides: tex-de-macro = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-de-macro-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-bin < 7:20170520 +Provides: tex-de-macro-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-doc < 7:20170520 +License: AFL +Summary: Expand private macros in a document +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-de-macro +De-macro is a Python script that helps authors who like to use +private LaTeX macros (for example, as abbreviations). A +technical editor or a cooperating author may balk at such a +manuscript; you can avoid manuscript rejection misery by +running de-macro on it. De-macro will expand macros defined in +\(re)newcommand or \(re)newenvironment commands, within the +document, or in the document's "private" package file. + +%package -n %{shortname}-detex +Provides: tex-detex = %{epoch}:%{source_date}-%{release} +Provides: texlive-detex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-detex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-detex-bin < 7:20170520 +License: NCSA +Summary: Strip TeX from a source file +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-detex +Detex is a program to remove TeX constructs from a text file. +It recognizes the \input command. The program assumes it is +dealing with LaTeX input if it sees the string \begin{document} +in the text. In this case, it also recognizes the \include and +\includeonly commands. + +%package -n %{shortname}-diadia +Provides: tex-diadia = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-diadia-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-bin < 7:20170520 +Provides: tex-diadia-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-doc < 7:20170520 +License: LPPL +Summary: Package to keep a diabetes diary +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(pgfplots.sty) +Requires: tex(pgfplotstable.sty) +Requires: tex(pgfcalendar.sty) +Requires: tex(tabularx.sty) +Requires: tex(booktabs.sty) +Requires: tex(colortbl.sty) +Requires: tex(ifthen.sty) +Requires: tex(calc.sty) +Requires: tex(translations.sty) +Requires: tex(amsmath.sty) +Requires: tex(tcolorbox.sty) +Requires: tex(environ.sty) +Requires: tex(multicol.sty) +Requires: tex(amssymb.sty) +Provides: tex(diadia.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(diadia.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-diadia +The diadia package allows you to keep a diabetes diary. +Usually, this means keeping record of certain medical values +like blood sugar, blood pressure, pulse or weight. It might +also include other medical, pharmaceutical or nutritional data +(HbA1c, insulin doses, carbohydrate units). The diadia package +supports all of this plus more - simply by adding more columns +to the data file! It is able to evaluate the data file and +typesets formatted tables and derived plots. Furthermore, it +supports medication charts and info boxes. Supported languages: +English, German. Feel free to provide other translation files! + +%package -n %{shortname}-dosepsbin +Provides: tex-dosepsbin = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-bin < 7:20170520 +Provides: tex-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-doc < 7:20170520 +License: GPLv2 or Artistic +Summary: Deal with DOS binary EPS files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-dosepsbin +A Encapsulated PostScript (EPS) file may given in a special +binary format to support the inclusion of a thumbnail. This +file format, commonly known as DOS EPS format starts with a +binary header that contains the positions of the possible +sections: Postscript (PS); Windows Metafile Format (WMF); and +Tag Image File Format (TIFF). The PS section must be present +and either the WMF file or the TIFF file should be given. The +package provides a Perl program that will extract any of the +sections of such a file, in particular providing a 'text'-form +EPS file for use with (La)TeX. + +%package -n %{shortname}-dtl +Provides: tex-dtl = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtl-bin < 7:20170520 +License: Public Domain +Summary: Tools to dis-assemble and re-assemble DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dtl +DTL (DVI Text Language) is a means of expressing the content of +a DVI file, which is readily readable by humans. The DTL bundle +contains an assembler dt2dv (which produces DVI files from DTL +files) and a disassembler dv2dt (which produces DTL files from +DVI files). The DTL bundle was developed so as to avoid some +infelicities of dvitype (among other pressing reasons). + +%package -n %{shortname}-dtxgen +Provides: tex-dtxgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-bin < 7:20170520 +Provides: tex-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-doc < 7:20170520 +License: GPL+ +Summary: Creates a template for a self-extracting .dtx file +Requires: texlive-base +Requires: texlive-kpathsea +# bash +BuildArch: noarch + +%description -n %{shortname}-dtxgen +The bash script dtxgen creates a template for a self-extracting +.dtx file. It is useful for those who plan to create a new +Documented LaTeX Source (.dtx) file. + +%package -n %{shortname}-dvi2tty +Provides: tex-dvi2tty = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvi2tty-bin < 7:20170520 +License: GPL+ +Summary: Produce ASCII from DVI +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvi2tty +A DVI driver to produce an ASCII representation of the +document. The original version was written in Pascal, and the +present author translated the program to C. + +%package -n %{shortname}-dviasm +Provides: tex-dviasm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviasm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-bin < 7:20170520 +Provides: tex-dviasm-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-doc < 7:20170520 +License: GPLv3+ +Summary: A utility for editing DVI files +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-dviasm +A Python script to support changing or creating DVI files via +disassembling into text, editing, and then reassembling into +binary format. It supports advanced features such as adding a +preprint number or watermarks. + +%package -n %{shortname}-dvicopy +Provides: tex-dvicopy = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvicopy-bin < 7:20170520 +License: GPL+ +Summary: Copy DVI files, flattening VFs +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvicopy +DVICOPY is a utility program that allows one to take a DVI file +that references composite fonts (VF) and convert it into a DVI +file that does not contain such references. It also serves as a +basis for writing DVI drivers (much like DVItype). + +%package -n %{shortname}-dvidvi +Provides: tex-dvidvi = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvidvi-bin < 7:20170520 +License: Copyright only +Summary: Convert one DVI file into another +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvidvi +The output DVI file's contents are specified by page selection +commands; series of pages and page number ranges may be +specified, as well as inclusions and exclusions. + +%package -n %{shortname}-dviinfox +Provides: tex-dviinfox = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviinfox-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Perl script to print DVI meta information +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter + +%description -n %{shortname}-dviinfox +The package provides a perl script which prints information +about a DVI file. It also supports XeTeX XDV format. + +%package -n %{shortname}-dviljk +Provides: tex-dviljk = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviljk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviljk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviljk-bin < 7:20170520 +License: GPL+ +Summary: DVI to Laserjet output +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviljk +A dvi driver for the LaserJet printers, using kpathsea +recursive file searching. + +%package -n %{shortname}-dviout-util +Provides: tex-dviout-util = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviout-util-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviout-util-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: DVI output utilities +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviout-util +This is a partial repackaging of elements of the DVIOUT package +by Toshio OSHIMA, Yoshiki OTOBE, and Kazunori ASAYAMA. +Here we don't include the main DVI previewer, but just want small utility +programs. + +%package -n %{shortname}-dvipdfmx +Provides: tex-dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-bin < 7:20170520 +Provides: tex-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-doc < 7:20170520 +Provides: dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: dvipdfm = %{epoch}:%{source_date}-%{release} +License: GPL+ +Summary: An extended version of dvipdfm +Requires: texlive-base +Requires: texlive-glyphlist +Requires: texlive-kpathsea +Requires: texlive-xetex +Provides: tex(dvipdfmx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cid-x.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ckx.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-dvipdfmx +Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm +created to support multi-byte character encodings and large +character sets for East Asian languages. Dvipdfmx, if "called" +with the name dvipdfm, operates in a "dvipdfm compatibility" +mode, so that users of the both packages need only keep one +executable. A secondary design goal is to support as many "PDF" +features as does pdfTeX. There being no documentation as such, +users are advised to consult the documentation of dvipdfm (as +well, of course, as the package Readme. + +%package -n %{shortname}-dvipng +Provides: tex-dvipng = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipng-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-bin < 7:20170520 +Provides: tex-dvipng-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-doc < 7:20170520 +Provides: dvipng = %{epoch}:%{source_date}-%{release} +License: LGPLv2+ +Summary: A fast DVI to PNG/GIF converter +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipng +This program makes PNG and/or GIF graphics from DVI files as +obtained from TeX and its relatives. Its benefits include: +Speed. It offers very fast rendering of DVI as bitmap files, +which makes it suitable for generating large amounts of images +on-the-fly, as needed in preview-latex, WeBWorK and others; It +does not read the postamble, so it can be started before TeX +finishes. There is a --follow switch that makes dvipng wait at +end-of-file for further output, unless it finds the POST marker +that indicates the end of the DVI; Interactive query of +options. dvipng can read options interactively through stdin, +and all options are usable. It is even possible to change the +input file through this interface. Support for PK, VF, +PostScript Type1, and TrueType fonts, colour specials, and +inclusion of PostScript, PNG, JPEG or GIF images. + +%package -n %{shortname}-dvipos +Provides: tex-dvipos = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipos-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipos-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipos-bin < 7:20170520 +License: LPPL +Summary: dvipos package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipos +dvipos package. + +%package -n %{shortname}-dvips +Provides: tetex-dvips = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-bin < 7:20170520 +Provides: tex-dvips-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-doc < 7:20170520 +License: GPL+ +Summary: A DVI to PostScript driver +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(canonex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(deskjet.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dfaxhigh.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvired.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(epson.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ibmvga.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ljfour.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(qms.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(toshiba.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(6w.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(7t.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8a.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8r.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ad.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asexp.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(extex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(funky.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(odvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-cs-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ec-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-l7x-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-qx-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-rm-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2a-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2b-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2c-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t5-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-texnansi-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ts1-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(stormex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex256.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmext.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmsym.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips) = %{epoch}:%{source_date}-%{release} +Requires: texlive-latex-fonts + +%description -n %{shortname}-dvips +This package has been withdrawn from CTAN, and bundled into the +distributions' package sets. The current sources of dvips may +be found in the distribution of dvipsk which forms part of the +TeX Live sources. + +%package -n %{shortname}-dvisvgm +Provides: tex-dvisvgm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvisvgm-bin < 7:20170520 +License: GPL+ +Summary: Convert DVI files to Scalable Vector Graphics format (SVG) +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvisvgm +Dvisvgm is a command line utility that converts TeX DVI files +to the XML-based Scalable Vector Graphics (SVG) format. It +provides full font support including virtual fonts, font maps, +and sub-fonts. If necessary, dvisvgm vectorizes Metafont's +bitmap output in order to always create lossless scalable +output. The embedded SVG fonts can optionally be replaced with +graphics paths so that applications that don't support SVG +fonts are enabled to render the graphics properly. Besides many +other features, dvisvgm also supports color, emTeX, tpic, PDF +mapfile and PostScript specials. + +%package -n %{shortname}-ebong +Provides: tex-ebong = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ebong-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-bin < 7:20170520 +Provides: tex-ebong-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-doc < 7:20170520 +License: Public Domain +Summary: Utility for writing Bengali in Rapid Roman Format +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-ebong +A tool (preprocessor) for writing your pRaa-ne-r ka-thaa in the +bengali langauage. It allows one to write the text in Rapid +Roman Bangla and convert it to the bangtex format by a python +program. All LaTeX markups are preserved in the target file. + +%package -n %{shortname}-eplain +Provides: tex-eplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-eplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-bin < 7:20170520 +Provides: tex-eplain-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-doc < 7:20170520 +License: GPLv2+ +Summary: Extended plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-latex-fonts +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-knuth-lib +Requires(post,postun): coreutils +Provides: tex(arrow.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(btxmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(eplain.tex) = %{epoch}:%{source_date}-%{release} +# No actual binaries in here +BuildArch: noarch + +%description -n %{shortname}-eplain +An extended version of the plain TeX format, adding support for +bibliographies, tables of contents, enumerated lists, verbatim +input of files, numbered equations, tables, two-column output, +footnotes, hyperlinks in PDF output and commutative diagrams. +Eplain can also load some of the more useful LaTeX packages, +notably graphics, graphicx (an extended of version of +graphics), color, autopict (a package instance of the LaTeX +picture code), psfrag, and url. + +%package -n %{shortname}-epspdf +Provides: tex-epspdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epspdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-bin < 7:20170520 +Provides: tex-epspdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-doc < 7:20170520 +License: GPL+ +Summary: Converter for PostScript, EPS and PDF +Requires: texlive-base +Requires: texlive-kpathsea +# tcl and lua +BuildArch: noarch + +%description -n %{shortname}-epspdf +Epspdftk.tcl is a GUI ps/eps/pdf converter. Epspdf.tlu, its +command-line backend, can be used by itself. Options include +grayscaling, cropping margins and single-page selection. Some +conversion options are made possible by converting in multiple +steps. + +%package -n %{shortname}-epstopdf +Provides: tex-epstopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-bin < 7:20170520 +Provides: tex-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-doc < 7:20170520 +License: BSD +Summary: Convert EPS to 'encapsulated' PDF using Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-epstopdf +Epstopdf is a Perl script that converts an EPS file to an +'encapsulated' PDF file (a single page file whose media box is +the same as the original EPS's bounding box). The resulting +file suitable for inclusion by PDFTeX as an image. The script +is adapted to run both on Windows and on Unix-alike systems. +The script makes use of Ghostscript for the actual conversion +to PDF. It assumes Ghostscript version 6.51 or later, and (by +default) suppresses its automatic rotation of pages where most +of the text is not horizontal. LaTeX users may make use of the +epstopdf package, which will run the epstopdf script "on the +fly", thus giving the illusion that PDFLaTeX is accepting EPS +graphic files. + +%package -n %{shortname}-exceltex +Provides: tex-exceltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-exceltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-bin < 7:20170520 +Provides: tex-exceltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-doc < 7:20170520 +License: GPL+ +Summary: Get data from Excel files into LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ulem.sty) +Requires: tex(color.sty) +Provides: tex(exceltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-exceltex +Exceltex is a LaTeX package combined with a helper program +written in Perl. It provides an easy to use yet powerfull and +flexible way to get data from Spreadsheets into LaTeX. In +contrast to other solutions, exceltex does not seek to make the +creation of tables in LaTeX easier, but to get data from +Spreadsheets into LaTeX as easily as possible. The Excel (TM) +file format only acts as an interface between the spreadsheet +application and exceltex beacause it is easily accessible (via +the Spreadsheet::ParseExcel Perl module) and because most +spreadsheet applications are able to read and write Excel +files. + +%package -n %{shortname}-fig4latex +Provides: tex-fig4latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-bin < 7:20170520 +Provides: tex-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-doc < 7:20170520 +License: GPLv3+ +Summary: Management of figures for large LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fig4latex +Fig4LaTeX simplifies management of the figures in a large LaTeX +document. Fig4LaTeX is appropriate for projects that include +figures with graphics created by XFig -- in particular, +graphics which use the combined PS/LaTeX (or PDF/LaTeX) export +method. An example document (with its output) is provided. + +%package -n %{shortname}-findhyph +Provides: tex-findhyph = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-findhyph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-bin < 7:20170520 +Provides: tex-findhyph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-doc < 7:20170520 +License: GPL+ +Summary: Find hyphenated words in a document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-findhyph +Findhyph is a Perl script that will analyse the log file from +running your document with \tracingparagraphs=1 set. The output +contains enough context to enable you to find the hyphenated +word that's being referenced. + +%package -n %{shortname}-fontinst +Provides: tex-fontinst = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontinst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-bin < 7:20170520 +Provides: tex-fontinst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-doc < 7:20170520 +License: LPPL +Summary: Help with installing fonts for TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(amstext.sty) +Provides: tex(bbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(finstmsc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(multislot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(csc2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csckrn2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(osf2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontdoc.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-fontinst +TeX macros for converting Adobe Font Metric files to TeX metric +and virtual font format. Fontinst helps mainly with the number +crunching and shovelling parts of font installation. This means +in practice that it creates a number of files which give the +TeX metrics (and related information) for a font family that +(La)TeX needs to do any typesetting in these fonts. Fontinst +furthermore makes it easy to create fonts containing glyphs +from more than one base font, taking advantage of (e.g.) +"expert" font sets. Fontinst cannot examine files to see if +they contain any useful information, nor automatically search +for files or work with binary file formats; those tasks must +normally be done manually or with the help of some other tool, +such as the pltotf and vptovf programs. + +%package -n %{shortname}-fontools +Provides: tex-fontools = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-bin < 7:20170520 +Provides: tex-fontools-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-doc < 7:20170520 +License: GPLv2+ +Summary: Tools to simplify using fonts (especially TT/OTF ones) +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(fontools_ly1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ts1.enc) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-fontools +This package provides a few tools to ease using fonts +(especially Truetype/Opentype ones) with Latex and fontinst: +afm2afm - reencode .afm files; designed to replace fontinst's +\reencodefont for big .afm files; autoinst - simplify the use +of the LCDF TypeTools by creating a command file for otftotfm, +plus .fd and .sty files; and ot2kpx - extract all kerning pairs +from an OpenType font. + +%package -n %{shortname}-fontware +Provides: tex-fontware = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontware-bin < 7:20170520 +License: LPPL +Summary: fontware package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-fontware +fontware package. + +%package -n %{shortname}-fragmaster +Provides: tex-fragmaster = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-bin < 7:20170520 +Provides: tex-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-doc < 7:20170520 +License: GPL+ +Summary: Using psfrag with PDFLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fragmaster +Fragmaster enables you to use psfrag with PDFLaTeX. It takes +EPS files and psfrag substitution definition files, and +produces PDF and EPS files with the substitutions included. + +%package -n %{shortname}-getmap +Provides: tex-getmap = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-getmap-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-bin < 7:20170520 +Provides: tex-getmap-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-doc < 7:20170520 +License: LPPL +Summary: Download OpenStreetMap maps for use in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(stringenc.sty) +Requires: tex(ifthen.sty) +Provides: tex(getmap.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(getmap.sty) = %{epoch}:%{source_date}-%{release} +# lua and shell +BuildArch: noarch + +%description -n %{shortname}-getmap +The package provides a simple interface to OpenStreetMap, and +to Google Maps "map images". In the simplest case, it is +sufficient to specify the address you need (if you don't, the +package will use its own default). The package loads the map +image using an external lua script (invoked via \write 18: +LaTeX must be running with \write 18 enabled). The ("external") +lua script may be used from the command line; a bash version is +provided. + +%package -n %{shortname}-git-latexdiff +Summary: Call latexdiff on two Git revisions of a file +License: BSD +Requires: texlive-base texlive-kpathsea +Requires: git, texlive-latexdiff + +%description -n %{shortname}-git-latexdiff +git-latexdiff is a tool to graphically visualize differences +between different versions of a LaTeX file. Technically, it is +a wrapper around git and latexdiff. + +%package -n %{shortname}-glossaries +Provides: tex-glossaries = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-glossaries-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-bin < 7:20170520 +Provides: tex-glossaries-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-doc < 7:20170520 +License: LPPL 1.3 +Summary: Create glossaries and lists of acronyms +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(tracklang.sty) +Requires: tex(ifthen.sty) +Requires: tex(xkeyval.sty) +Requires: tex(mfirstuc.sty) +Requires: tex(textcase.sty) +Requires: tex(xfor.sty) +Requires: tex(datatool-base.sty) +Requires: tex(amsgen.sty) +Requires: tex(etoolbox.sty) +Requires: tex(glossary-super.sty) +Requires: tex(glossary-tree.sty) +Requires: tex(translator.sty) +Requires: tex(accsupp.sty) +Requires: tex(longtable.sty) +Requires: tex(array.sty) +Requires: tex(multicol.sty) +Requires: tex(supertabular.sty) +Provides: tex(glossaries-babel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronym-desc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronym.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronyms-lang.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-brief.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-childnoname.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-cite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-images.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-long.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-multipar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-parent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-url.tex) = %{epoch}:%{source_date}-%{release} +# perl and lua +BuildArch: noarch + +%description -n %{shortname}-glossaries +The glossaries package supports acronyms and multiple +glossaries, and has provision for operation in several +languages (using the facilities of either babel or +polyglossia). New entries are defined to have a name and +description (and optionally an associated symbol). Support for +multiple languages is offered, and plural forms of terms may be +specified. An additional package, glossaries-accsupp, can make +use of the accsupp package mechanisms for accessibility support +for PDF files containing glossaries. The user may define new +glossary styles, and preambles and postambles can be specified. +There is provision for loading a database of terms, but only +terms used in the text will be added to the relevant glossary. +The package uses an indexing program to provide the actual +glossary; either makeindex or xindy may serve this purpose, and +a Perl script is provided to serve as interface. The package +distribution also provides the mfirstuc package, for changing +the first letter of a word to upper case. The package +supersedes the author's glossary package (which is now +obsolete), and a conversion tool is provided. + +%package -n %{shortname}-glyphlist +Provides: tex-glyphlist = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: glyphlist package +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-glyphlist +glyphlist package. + +%package -n %{shortname}-gregoriotex +Provides: tex-gregoriotex = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-bin < 7:20170520 +Provides: tex-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-doc < 7:20170520 +License: GPLv3 +Summary: Engraving Gregorian Chant scores +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(gregoriosyms.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-signs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-syllable.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-main.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsp-default.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-nabc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-chars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-spaces.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-gregoriotex +Gregorio is a software application for engraving Gregorian +Chant scores on a computer. Gregorio's main job is to convert a +gabc file (simple text representation of a score) into a +GregorioTeX file, which makes TeX able to create a PDF of your +score. + +%package -n %{shortname}-gsftopk +Provides: tex-gsftopk = %{epoch}:%{source_date}-%{release} +Provides: texlive-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gsftopk-bin < 7:20170520 +License: GPL+ +Summary: Convert "ghostscript fonts" to PK files +Requires: texlive-base +Requires: texlive-kpathsea +# Does not exist in a package anymore +# Requires: tex(psfonts.map) + +%description -n %{shortname}-gsftopk +Designed for use with xdvi and dvips this utility converts +Adobe Type 1 fonts to PK bitmap format. It should not +ordinarily be much used nowadays, since both its target +applications are now capable of dealing with Type 1 fonts, +direct. + +%package -n %{shortname}-hyperxmp +Summary: Embed XMP metadata within a LaTeX document +License: LPPL 1.3 +Requires: texlive-base texlive-kpathsea +Requires: tex(atenddvi.sty) +Requires: tex(kvoptions.sty) +Requires: tex(pdfescape.sty) +Requires: tex(stringenc.sty) +Requires: tex(intcalc.sty) +Requires: tex(ifxetex.sty) +Provides: tex(hyperxmp.sty) = %{epoch}:%{source_date}-%{release} +Provides: texlive-hyperxmp-doc = %{epoch}:%{source_date}-%{release} +Provides: tex-hyperxmp-doc = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-hyperxmp +XMP (eXtensible Metadata Platform) is a mechanism proposed by +Adobe for embedding document metadata within the document +itself. The metadata is designed to be easy to extract, even by +programs that are oblivious to the document's file format. Most +of Adobe's applications store XMP metadata when saving files. +Now, with the hyperxmp package, it is trivial for LaTeX +document authors to store XMP metadata in their documents as +well. The package integrates seamlessly with hyperref and +requires virtually no modifications to documents that already +exploit hyperref's mechanisms for specifying PDF metadata. The +current version of hyperxmp can embed the following metadata as +XMP: title, authors, primary author's title or position, +metadata writer, subject/summary, keywords, copyright, license +URL, document base URL, document identifier and instance +identifier, language, source file name, PDF generating tool, +PDF version, and contact telephone number/postal address/email +address/URL. Hyperxmp currently embeds XMP only within PDF +documents; it is compatible with pdfLaTeX, XeLaTeX, +LaTeX+dvipdfm, and LaTeX+dvips+ps2pdf. + +%package -n %{shortname}-installfont +Provides: tex-installfont = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-installfont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-bin < 7:20170520 +Provides: tex-installfont-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-doc < 7:20170520 +License: LPPL +Summary: A bash script for installing a LaTeX font family +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-installfont +With this script you can install a LaTeX font family +(PostScript Type 1, TrueType and OpenType formats are +supported). Font series from light to ultra bold, and (faked) +small caps and (faked) slanted shapes are supported, but not +expert fonts. The script will rename the fonts automatically +(optional) or will otherwise expect the *.afm files and the +font files (in PostScript Type1 format) named in the Karl Berry +scheme (e.g. 5bbr8a.pfb). After running the script, you should +have a working font installation in your local TeX tree. + +%package -n %{shortname}-jadetex +Provides: tex-jadetex = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-jadetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-bin < 7:20170520 +Provides: tex-jadetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-doc < 7:20170520 +Provides: jadetex = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Macros supporting Jade DSSSL output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-passivetex +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-amsfonts +Requires: texlive-atbegshi +Requires: texlive-atveryend +Requires: texlive-auxhook +Requires: texlive-babel +Requires: texlive-bigintcalc +Requires: texlive-bitset +Requires: texlive-cm +Requires: texlive-colortbl +Requires: texlive-cyrillic +Requires: texlive-dehyph +Requires: texlive-ec +Requires: texlive-etexcmds +Requires: texlive-fancyhdr +Requires: texlive-graphics +Requires: texlive-graphics-cfg +Requires: texlive-graphics-def +Requires: texlive-hycolor +Requires: texlive-hyperref +Requires: texlive-hyph-utf8 +Requires: texlive-iftex +Requires: texlive-infwarerr +Requires: texlive-intcalc +Requires: texlive-kvdefinekeys +Requires: texlive-kvoptions +Requires: texlive-kvsetkeys +Requires: texlive-l3kernel +Requires: texlive-latex-fonts +Requires: texlive-latexconfig +Requires: texlive-letltxmacro +Requires: texlive-ltxcmds +Requires: texlive-marvosym +Requires: texlive-pdfescape +Requires: texlive-pdftexcmds +Requires: texlive-psnfss +Requires: texlive-rerunfilecheck +Requires: texlive-stmaryrd +Requires: texlive-symbol +Requires: texlive-tex-ini-files +Requires: texlive-tipa +Requires: texlive-tools +Requires: texlive-ulem +Requires: texlive-uniquecounter +Requires: texlive-unicode-data +Requires: texlive-url +Requires: texlive-wasysym +Requires: texlive-zapfding +Requires(post,postun): coreutils +Provides: tex(dsssl.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(uentities.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ut1omlgc.fd) = %{epoch}:%{source_date}-%{release} +# no binaries +BuildArch: noarch + +%description -n %{shortname}-jadetex +Macro package on top of LaTeX to typeset TeX output of the Jade +DSSSL implementation. + +%package -n %{shortname}-jfmutil +Provides: tex-jfmutil = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfmutil-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Utility to process pTeX-extended TFM and VF +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-jfmutil +This program provides functionality to process data files (JFM +and VF) that form logical fonts used in (u)pTeX. The functions +currently available include: The mutual conversion between +Japanese virtual fonts (pairs of VF and JFM) and files in the +"ZVP format", which is an original text format representing +data in virtual fonts. This function can be seen as a +counterpart to the vftovp/vptovf programs. The mutual +conversion between VF files alone and files in the "ZVP0 +format", which is a subset of the ZVP format. + +%package -n %{shortname}-ketcindy +Provides: tex-ketcindy = %{epoch}:%{source_date}-%{release} +Provides: tex-ketcindy-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3+ +Summary: Macros for graphic generation and Cinderella plugin +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(ketlayer.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketlayer2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketmedia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketpic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketpic2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketslide.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketslide2.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-ketcindy +KETpic is a macro package designed for computer algebra systems +(CAS) to generate LaTeX source codes for high-quality +mathematical artwork. KETcindy is a plugin for Cinderella that +allows to generate graphics using KETpic. The generated code +can be included in any LaTeX document. + +%package -n %{shortname}-kotex-utils +Provides: tex-kotex-utils = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-bin < 7:20170520 +Provides: tex-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-doc < 7:20170520 +License: LPPL +Summary: Utility scripts and support files for typesetting Korean +Requires: texlive-base +Requires: texlive-kotex-utf +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-kotex-utils +The bundle provides scripts and support files for index +generation in Korean language typesetting. The files belong to +the ko.TeX bundle. + +%package -n %{shortname}-kpathsea +License: LGPLv2+ +Summary: Path searching library for TeX-related files +Provides: kpathsea = %{epoch}:%{source_date}-%{release} +Obsoletes: kpathsea < %{source_date} +Provides: tex-kpathsea = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-bin < 7:20170520 +Provides: tex-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-doc < 7:20170520 +Requires: coreutils, grep +Requires: texlive-base +# We absolutely need this to go in first, since the trigger needs it +Requires(post): texlive-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: tex(fmtutil.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mktex.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmf.cnf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-kpathsea +Kpathsea is a library and utility programs which provide path +searching facilities for TeX file types, including the self- +locating feature required for movable installations, layered on +top of a general search mechanism. + +%package -n %{shortname}-l3build +Provides: tex-l3build = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-l3build-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-l3build-doc < 7:20180414 +License: LPPL +Summary: A testing and building system for (La)TeX +Provides: tex(regression-test.tex) = %{epoch}:%{source_date}-%{release} +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-l3build +The build system supports testing and building LaTeX3 code, on +Linux, Mac OS X and Windows systems. The package offers: A unit +testing system for (La)TeX code (whether kernel code or +contributed packages); A system for typesetting package +documentation; and An automated process for creating CTAN +releases. + +%package -n %{shortname}-lacheck +Provides: tex-lacheck = %{epoch}:%{source_date}-%{release} +Provides: texlive-lacheck-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lacheck-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lacheck-bin < 7:20170520 +License: GPL+ +Summary: LaTeX checker +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-lacheck +Lacheck is a tool for finding common mistakes in LaTeX +documents. The distribution includes sources, and executables +for OS/2 and Win32 environments. + +%package -n %{shortname}-latex +Provides: tex-latex = %{epoch}:%{source_date}-%{release} +Provides: tetex-latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin < 7:20170520 +Provides: texlive-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin-bin < 7:20170520 +Provides: tex-latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-doc < 7:20170520 +License: LPPL 1.3 +Summary: A TeX macro package that defines LaTeX +Requires: texlive-base +Requires: tex(expl3.sty) +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-pdftex +Requires: texlive-latexconfig +Requires: texlive-latex-fonts +# As a result of changes in textcomp, it requests TS1 fonts for some things +# most notably, \textbullet. Since people probably want a working itemize +# even on rather minimal installs, we add an explicit Requires on texlive-cm-super +# here. (bz1867927) +Requires: texlive-cm-super +# Another font dependency +Requires: texlive-psnfss +Requires(post,postun): coreutils +Requires: tex(multicol.sty) +Requires: tex(url.sty) +Requires: tex(hyperref.sty) +Provides: tex(alltt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(applemac.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ascii.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bezier.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1250.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1252.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1257.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437de.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp850.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp852.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp858.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp865.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(decmulti.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(docstrip.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exscale.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fix-cm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fixltx2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flafter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fltrace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontmath.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(graphpap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(idx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifthen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(inputenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lablst.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex209.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexbug.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexrelease.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexsym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin10.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin3.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin4.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin5.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin9.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lppl.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltnews.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxcheck.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxdoc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxguide.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(macce.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(makeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(minimal.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(newlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(next.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(nfssfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(oldlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omllcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omsenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omslcmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxlcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(openbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot4enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(preload.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sfonts.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(shortvrb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(showidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(size10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(small2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(source2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(syntonly.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(testpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsys.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(textcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tracefnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tuenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmssq.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmssq.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ulasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ullasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8test.tex) = %{epoch}:%{source_date}-%{release} +Provides: texlive-texmf-latex = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texmf-latex < %{source_date} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-latex +LaTeX is a widely-used macro package for TeX, providing many +basic document formating commands extended by a wide range of +packages. It is a development of Leslie Lamport's LaTeX 2.09, +and superseded the older system in June 1994. The basic +distribution is catalogued separately, at latex-base; apart +from a large set of contributed packages and third-party +documentation (elsewhere on the archive), the distribution +includes: - a bunch of required packages, which LaTeX authors +are "entitled to assume" will be present on any system running +LaTeX; and - a minimal set of documentation detailing +differences from the 'old' version of LaTeX in the areas of +user commands, font selection and control, class and package +writing, font encodings, configuration options and modification +of LaTeX. + +%package -n %{shortname}-latex-git-log +Provides: tex-latex-git-log = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-bin < 7:20170520 +Provides: tex-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-doc < 7:20170520 +License: GPLv3+ +Summary: Typeset git log information +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latex-git-log +The program is run within a git repository, and outputs the +entire version history, as a LaTeX table. That output will +typically be redirected to a file; the author recommends +typesetting in landscape orientation. + +%package -n %{shortname}-latex-papersize +Provides: tex-latex-papersize = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-bin < 7:20170520 +Provides: tex-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-doc < 7:20170520 +License: ASL 2.0 +Summary: Calculate LaTeX settings for any font and paper size +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-latex-papersize +The package is a Python script, whose typical use is when +preparing printed material for users with low vision. The most +effective way of doing this is to print on (notional) small +paper, and then to magnify the result; the script calculates +the settings for various font and paper sizes. More details are +to be read in the script itself. + +%package -n %{shortname}-latex2man +Provides: tex-latex2man = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2man-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-bin < 7:20170520 +Provides: tex-latex2man-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-doc < 7:20170520 +License: LPPL +Summary: Translate LaTeX-based manual pages into Unix man format +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyheadings.sty) +Requires: tex(fancyhdr.sty) +Provides: tex(latex2man.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex2man.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-latex2man +A tool to translate UNIX manual pages written with LaTeX into a +man-page format understood by the Unix man(1) command. +Alternatively HTML or TexInfo code can be produced. Output of +parts of the text may be supressed using the conditional text +feature. + +%package -n %{shortname}-latex2nemeth +Provides: tex-latex2nemeth = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-bin < 7:20170520 +Provides: tex-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-doc < 7:20170520 +License: GPLv3 +Summary: Convert LaTeX source to Braille with math in Nemeth +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latex2nemeth +After many failed attempts to transcribe real math notes and +books to Braille/Nemeth in order to deal with a real situation +(blind student in Math Dept.), we decided to develop a new +program that follows a direct, from LaTeX to Braille/Nemeth, +approach. Other attempts (such as tex4ht) failed because they +all needed an extra step to go from xml to Braille, and this +step (say, with liblouis) produced incomprehensible output +(liblouis focuses in Office apps). Our main target was the +Greek language which is only Braille level 1, but English at +level 1 is supported as well. Simple pictures in PSTricks are +also supported in order to produce tactile graphics with +specialized equipment. Note that embossing will need +LibreOffice and odt2braille as this project does not deal with +embossers' drivers. + +%package -n %{shortname}-latexdiff +Provides: tex-latexdiff = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-bin < 7:20170520 +Provides: tex-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-doc < 7:20170520 +License: GPLv3+ +Summary: Determine and mark up significant differences between LaTeX files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexdiff +Latexdiff is a Perl script for visual mark up and revision of +significant differences between two LaTeX files. Various +options are available for visual markup using standard LaTeX +packages such as color. Changes not directly affecting visible +text, for example in formatting commands, are still marked in +the LaTeX source. A rudimentary revision facilility is provided +by another Perl script, latexrevise, which accepts or rejects +all changes. Manual editing of the difference file can be used +to override this default behaviour and accept or reject +selected changes only. + +%package -n %{shortname}-latexfileversion +Provides: tex-latexfileversion = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-bin < 7:20170520 +Provides: tex-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-doc < 7:20170520 +License: LPPL +Summary: Prints the version and date of a LaTeX class or style file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latexfileversion +This simple shell script prints the version and date of a LaTeX +class or style file. Syntax: latexfileversion <file> This +programme handles style files (extension .sty), class files +(extension .cls), and other TeX input files. The file extension +must be given. + +%package -n %{shortname}-latexindent +Provides: tex-latexindent = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexindent-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-bin < 7:20170520 +Provides: tex-latexindent-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-doc < 7:20170520 +License: GPLv3+ +Summary: Indent a LaTeX document, highlighting the programming structure +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexindent +The Perl script processes a LaTeX file, indenting parts so as to +highlight the structure for the reader. + +%package -n %{shortname}-latexpand +Provides: tex-latexpand = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexpand-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-bin < 7:20170520 +Provides: tex-latexpand-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-doc < 7:20170520 +License: BSD +Summary: Expand \input and \include in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexpand +Latexpand is a Perl script that simply replaces \input and +\include commands with the content of the file input/included. +The script does not deal with \includeonly commands. + +%package -n %{shortname}-lcdftypetools +Provides: tex-lcdftypetools = %{epoch}:%{source_date}-%{release} +# This is a mistake in the texlive package. Will be fixed in next major TL update. +Provides: lcdf-typetools = %{epoch}:%{source_date}-%{release} +Provides: texlive-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lcdftypetools-bin < 7:20170520 +License: GPL+ +Summary: A bundle of outline font manipulation tools +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-glyphlist + +%description -n %{shortname}-lcdftypetools +This bundle of tools comprises: Cfftot1, which translates a +Compact Font Format (CFF) font, or a PostScript-flavored +OpenType font, into PostScript Type 1 format. It correctly +handles subroutines and hints; Mmafm and mmpfb, which create +instances of multiple-master fonts (mmafm and mmpfb were +previously distributed in their own package, mminstance); +Otfinfo, which reports information about OpenType fonts, such +as the features they support and the contents of their 'size' +optical size features; Otftotfm, which creates TeX font metrics +and encodings that correspond to a PostScript-flavored OpenType +font. It will interpret glyph positionings, substitutions, and +ligatures as far as it is able. You can say which OpenType +features should be activated; T1dotlessj, creates a Type 1 font +whose only character is a dotless j matching the input font's +design; T1lint, which checks a Type 1 font for correctness; +T1reencode, which replaces a font's internal encoding with one +you specify; and T1testpage, which creates a PostScript proof +for a Type 1 font. + +%package -n %{shortname}-lib +Summary: Shared libraries for TeX-related files +Provides: texlive-kpathsea-lib = %{epoch}:%{source_date}-%{release} +# We have to straight up lie about this to ensure the upgrade. +Provides: texlive-kpathsea-lib(%{__isa}) = 6:2016 +Obsoletes: texlive-kpathsea-lib < 2015 +Provides: bundled(lua) = 5.2.4 + +%description -n %{shortname}-lib +TeX specific shared libraries. + +%package -n %{shortname}-lib-devel +Summary: Development files for TeX specific shared libraries +Requires: %{shortname}-lib%{?_isa} +Provides: texlive-kpathsea-lib-devel = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-lib-devel < 2015 + +%description -n %{shortname}-lib-devel +Development files for TeX specific shared libraries. + +%package -n %{shortname}-lilyglyphs +Provides: tex-lilyglyphs = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-bin < 7:20170520 +Provides: tex-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-doc < 7:20170520 +License: LPPL 1.3 +Summary: Access lilypond fragments and glyphs, in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(pgf.sty) +Requires: tex(adjustbox.sty) +Provides: tex(emmentaler-11.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-13.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-14.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-16.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-18.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-20.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-23.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-26.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-brace.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(lilyglyphs.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-lilyglyphs +The package provides the means to include arbitrary elements of +Lilypond notation, including symbols from Lilypond's Emmentaler +font, in a LaTeX document. The package uses OpenType fonts, and +as a result must be compiled with LuaLaTeX or XeLaTeX. + +%package -n %{shortname}-listbib +Provides: tex-listbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listbib-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-bin < 7:20170520 +Provides: tex-listbib-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-doc < 7:20170520 +License: GPL+ +Summary: Lists contents of BibTeX files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(listbib.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.tex) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listbib +Generates listings of bibliographic data bases in BibTeX format +-- for example for archival purposes. Included is a listbib.bst +which is better suited for this purpose than the standard +styles. + +%package -n %{shortname}-listings-ext +Provides: tex-listings-ext = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-bin < 7:20170520 +Provides: tex-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-doc < 7:20170520 +License: LPPL 1.2 +Summary: Automated input of source +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(listings.sty) +Requires: tex(xkeyval.sty) +Provides: tex(listings-ext.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listings-ext +The package provides a means of marking a source, so that +samples of it may be included in a document (by means of the +listings package) in a stable fashion, regardless of any change +to the source. The markup in the source text defines tags for +blocks of source. These tags are processed by a shell script to +make a steering file that is used by the package when LaTeX is +being run. + +%package -n %{shortname}-light-latex-make +Summary: llmk: A build tool for LaTeX documents +License: MIT +Requires: texlive-base texlive-kpathsea + +%description -n %{shortname}-light-latex-make +This program is yet another build tool specific for LaTeX +documents. Its aim is to provide a simple way to specify a +workflow of processing LaTeX documents and encourage people to +always explicitly show the right workflow for each document. +The main features of the executable llmk are all about the +above purpose. First, you can describe the workflows either in +an external file llmk.toml or in a LaTeX document source in the +form of magic comments. Further, multiple magic comment formats +can be used. Second, it is fully cross-platform. The only +requirement of the program is the texlua command; llmk provides +a uniform way to describe the workflows available for nearly +all TeX environments. Third, it behaves exactly the same in any +environment. At this point, llmk intentionally does not provide +any method for user configuration. Therefore one can guarantee +that for a LaTeX document with an llmk setup, the process of +typesetting the document will be reproduced in any TeX +environment with the program. + +%package -n %{shortname}-lollipop +Provides: tex-lollipop = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lollipop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-bin < 7:20170520 +Provides: tex-lollipop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-doc < 7:20170520 +License: GPLv3+ +Summary: TeX made easy +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-tex +Requires(post,postun): coreutils +Provides: tex(lollipop-define.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-document.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-float.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fontdefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-heading.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-lists.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-output.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-text.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-tools.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop.tex) = %{epoch}:%{source_date}-%{release} +# no actual binaries here +BuildArch: noarch + +%description -n %{shortname}-lollipop +Lollipop is "TeX made easy" -- it is a macro package that +functions as a toolbox for writing TeX macros. Its main aim is +to make macro writing so easy that implementing a fully new +layout in TeX would become a matter of less than an hour for an +average document. The aim is that such a task could be +accomplished by someone with only a very basic training in TeX +programming. Thus, Lollipop aims to make structured text +formatting available in environments where typical users would +switch to WYSIWYG packages for the freedom that such a +mechanism offers. In addition, development of support for +Lollipop documents written in RTL languages (such as Persian) +is underway. + +%package -n %{shortname}-ltxfileinfo +Provides: tex-ltxfileinfo = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-bin < 7:20170520 +Provides: tex-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-doc < 7:20170520 +License: GPL+ +Summary: Print version information for a LaTeX file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-ltxfileinfo +ltxfileinfo displays version information for LaTeX files. If no +path information is given, the file is searched using +kpsewhich. As an extra, for developers, the script will (use +the --star or --color options) check the valididity of the +\Provides... statements in the files. The script uses code from +Uwe Luck's readprov.sty. + +%package -n %{shortname}-ltximg +Provides: tex-ltximg = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltximg-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-bin < 7:20170520 +Provides: tex-ltximg-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-doc < 7:20170520 +License: GPLv2+ +Summary: Split LaTeX files to sanitise a conversion process +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ltximg +The package provides a Perl script that extracts all TikZ and +PStricks environments for separate processing to produce images +(in eps, pdf, png or jpg format) for use by a converter or the +preview bundle. + +%package -n %{shortname}-luaotfload +Provides: tex-luaotfload = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-bin < 7:20170520 +Provides: tex-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-doc < 7:20170520 +License: GPLv2+ +Summary: OpenType 'loader' for Plain TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-lualibs +Requires: texlive-lua-alt-getopt +Requires: tex(luatexbase.sty) +Provides: tex(luaotfload-blacklist.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(luaotfload.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-luaotfload +The package adopts the TrueType/OpenType Font loader code +provided in ConTeXt, and adapts it to use in Plain TeX and +LaTeX. It works under LuaLaTeX only. + +%package -n %{shortname}-luahbtex +Provides: tex-luahbtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-luahbtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luahbtex-bin = %{epoch}:%{source_date}-%{release} +License: GPLv2+ +Summary: LuaTeX with HarfBuzz library for glyph shaping +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 + +%description -n %{shortname}-luahbtex +LuaTeX with HarfBuzz library for glyph shaping. + +%package -n %{shortname}-luajittex +Provides: tex-luajittex = %{epoch}:%{source_date}-%{release} +Provides: tex-luajittex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-luajittex-bin = %{epoch}:%{source_date}-%{release} +License: GPLv2+ +Summary: LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 + +%description -n %{shortname}-luajittex +LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz. + +%package -n %{shortname}-luatex +Provides: tex-luatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-bin < 7:20170520 +Provides: tex-luatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-doc < 7:20170520 +License: GPLv2+ +Summary: The LuaTeX engine +Requires: texlive-base +Requires: texlive-kpathsea +Requires(post,postun): coreutils +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 +Requires: tex(luatex.def) +Provides: tex(luatex-unicode-letters.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatexiniconfig.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-luatex +LuaTeX is an extended version of pdfTeX using Lua as an +embedded scripting language. The LuaTeX project's main +objective is to provide an open and configurable variant of TeX +while at the same time offering downward compatibility. LuaTeX +uses Unicode (as UTF-8) as its default input encoding, and is +able to use modern (OpenType) fonts (for both text and +mathematics). It should be noted that LuaTeX is still under +development; its specification has been declared stable, but +absolute stability may not in practice be assumed. + +%package -n %{shortname}-lwarp +Provides: tex-lwarp = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lwarp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-bin < 7:20170520 +Provides: tex-lwarp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-doc < 7:20170520 +License: LPPL +Summary: Converts LaTeX to HTML +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-lwarp +The package causes LaTeX to directly produce HTML5 output, +using external utility programs only for the final conversion +of text and images. Math may be represented by SVG files or +MathJax. Documents may be produced by LaTeX, LuaLaTeX, or +XeLaTeX. A texlua script removes the need for system utilities +such as make and gawk, and also supports xindy and latexmk. +Configuration is automatic at the first manual compile. Print +and HTML versions of each document may coexist, each with its +own set of auxiliary files. Support files are self-generated on +request. Assistance is provided for HTML import into EPUB +conversion software and word processors. + +%package -n %{shortname}-lyluatex +Summary: Commands to include lilypond scores within a (Lua)LaTeX document +License: MIT +Requires: texlive-base texlive-kpathsea +Provides: tex(lyluatex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(lyluatex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch +Requires: tex(currfile.sty) +Requires: tex(environ.sty) +Requires: tex(graphicx.sty) +Requires: tex(luaotfload.sty) +Requires: tex(luatexbase.sty) +Requires: tex(metalogo.sty) +Requires: tex(minibox.sty) +Requires: tex(pdfpages.sty) +Requires: tex(xkeyval.sty) + +%description -n %{shortname}-lyluatex +This package provides macros for the inclusion of LilyPond +scores within LuaLaTeX. It calls LilyPond to compile scores, +then includes the produced files. + +%package -n %{shortname}-make4ht +Provides: tex-make4ht = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-make4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-bin < 7:20170520 +Provides: tex-make4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-doc < 7:20170520 +License: LPPL 1.3 +Summary: A build system for tex4ht +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-make4ht +make4ht is a simple build system for tex4ht. It is both +executable, which simplifies tex4ht execution, and a library +which can be used to create customized conversion programs. + +%package -n %{shortname}-makedtx +Provides: tex-makedtx = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makedtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-bin < 7:20170520 +Provides: tex-makedtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-doc < 7:20170520 +License: LPPL +Summary: Perl script to help generate dtx and ins files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(creatdtx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-makedtx +The makedtx bundle is provided to help LaTeX2e developers to +write the code and documentation in separate files, and then +combine them into a single .dtx file for distribution. It +automatically generates the character table, and also writes +the associated installation (.ins) script. + +%package -n %{shortname}-makeindex +Provides: tex-makeindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makeindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-bin < 7:20170520 +Provides: tex-makeindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-doc < 7:20170520 +License: MakeIndex +Summary: Provides sorted index from unsorted raw data +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-makeindex +Provides: tex(idxmac.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-makeindex +MakeIndex is a computer program which provides a sorted index +from unsorted raw data. MakeIndex can process raw data output +by various programs, however, it is generally used with LaTeX +and troff. + +%package -n %{shortname}-match_parens +Provides: tex-match_parens = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-match_parens-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-bin < 7:20170520 +Provides: tex-match_parens-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-doc < 7:20170520 +License: GPL+ +Summary: Find mismatches of parentheses, braces, (angle) brackets, in texts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby +BuildArch: noarch + +%description -n %{shortname}-match_parens +Mismatches of parentheses, braces, (angle) brackets, especially +in TeX sources which may be rich in those, may be difficult to +trace. This little script helps you by writing your text to +standard output, after adding a left margin to your text, which +will normally be almost empty, but will clearly show any +mismatches. + +%package -n %{shortname}-mathspic +Provides: tex-mathspic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mathspic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-bin < 7:20170520 +Provides: tex-mathspic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-doc < 7:20170520 +License: LPPL +Summary: A Perl filter program for use with PiCTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(prepictex.tex) +Requires: tex(pictexwd.tex) +Requires: tex(postpictex.tex) +Provides: tex(mathspic.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-mathspic +MathsPIC(Perl) is a development of the earlier MathsPIC(DOS) +program, now implemented as a Perl script, being much more +portable than the earlier program. MathsPIC parses a plain text +input file and generates a plain text output-file containing +commands for drawing a diagram. Version 1.0 produces output +containing PiCTeX and (La)TeX commands, which may then be +processed by plain TeX or LaTeX in the usual way. MathsPIC also +outputs a comprehensive log-file. MathsPIC facilitates creating +figures using PiCTeX by providing an environment for +manipulating named points and also allows the use of variables +and maths (advance, multiply, and divide)--in short--it takes +the pain out of PiCTeX. + +%package -n %{shortname}-metafont +Provides: tex-metafont = %{epoch}:%{source_date}-%{release} +Provides: texlive-metafont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metafont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metafont-bin < 7:20170520 +License: Knuth +Summary: A system for specifying fonts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-modes +Requires(post,postun): coreutils +Provides: tex(mf.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(plain.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmmf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpi.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpixy.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modename.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modes.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(ps2mfbas.mf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metafont +The program takes a semi-algorithmic specification of a font, +and produces a bitmap font (whose properties are defined by a +set of parameters of the target device), and a set metrics for +use by TeX. The bitmap output may be converted into a format +directly usable by a device driver, etc., by the tools provided +in the parallel mfware distribution. + +%package -n %{shortname}-metapost +Provides: tex-metapost = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metapost-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-bin < 7:20170520 +Provides: tex-metapost-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-doc < 7:20170520 +License: LGPLv2+ +Summary: A development of Metafont for creating graphics +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(freeeuro.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(psyrgo.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(zpzdr-reversed.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(groff.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff-updmap.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(freeeuro.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagd8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagdo8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagk8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagko8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkd8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkdi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkl8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkli8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrbo8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrro8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvb8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvbo8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvbo8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvr8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvro8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvro8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncbi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncri8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplbi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplri8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(psyrgo.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmbi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmri8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pzcmi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(zpzdr-reversed.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(freeeuro.pfa) = %{epoch}:%{source_date}-%{release} +Provides: tex(mfplain.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(trfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mproof.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mpsproof.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metapost +MetaPost uses a language based on that of Metafont to produce +precise technical illustrations. Its output is scalable +PostScript or SVG, rather than the bitmaps Metafont creates. + +%package -n %{shortname}-mex +Provides: tex-mex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-bin < 7:20170520 +Provides: tex-mex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-doc < 7:20170520 +License: Public Domain +Summary: Polish formats for TeX +Requires: texlive-base +Requires: texlive-enctex +Requires: texlive-hyph-utf8 +Requires: texlive-hyphen-base +Requires: texlive-hyphen-polish +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-pl +Requires: texlive-plain +Requires: texlive-tex +Requires: texlive-tex-ini-files +Requires: texlive-utf8mex +Requires(post,postun): coreutils +Provides: tex(lamex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex2.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mexconf.tex) = %{epoch}:%{source_date}-%{release} +# just symlinks +BuildArch: noarch + +%description -n %{shortname}-mex +MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX) +formats to the Polish language and to Polish printing customs. +It contains a complete set of Metafont sources of Polish fonts, +hyphenation rules for the Polish language and sources of +formats. + +%package -n %{shortname}-mflua +Provides: tex-mflua = %{epoch}:%{source_date}-%{release} +Provides: texlive-mflua-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mflua-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mflua-bin < 7:20170520 +License: GPL+ +Summary: A METAFONT compliant program with a Lua interpreter embedded +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mflua +A METAFONT compliant program with a Lua interpreter embedded. + +%package -n %{shortname}-mfware +Provides: tex-mfware = %{epoch}:%{source_date}-%{release} +Provides: texlive-mfware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mfware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mfware-bin < 7:20170520 +License: Knuth +Summary: Supporting tools for use with Metafont +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mfware +A collection of programs (as web source) for processing the +output of Metafont. + +%package -n %{shortname}-mf2pt1 +Provides: tex-mf2pt1 = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-bin < 7:20170520 +Provides: tex-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-doc < 7:20170520 +License: LPPL +Summary: Produce PostScript Type 1 fonts from Metafont source +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mf2pt1 +mf2pt1 facilitates producing PostScript Type 1 fonts from a +Metafont source file. It is not, as the name may imply, an +automatic converter of arbitrary Metafont fonts to Type 1 +format. mf2pt1 imposes a number of restrictions on the Metafont +input. If these restrictions are met, mf2pt1 will produce valid +Type 1 output with more accurate control points than can be +reverse-engineered by TeXtrace, mftrace, and other programs +which convert bitmaps to outline fonts. + +%package -n %{shortname}-mkgrkindex +Provides: tex-mkgrkindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-bin < 7:20170520 +Provides: tex-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-doc < 7:20170520 +License: LPPL +Summary: Makeindex working with Greek +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkgrkindex +Makeindex is resolutely stuck with Latin-based alphabets, so +will not deal with Greek indexes, unaided. This package +provides a Perl script that will transmute the index of a Greek +document in such a way that makeindex will sort the entries +according to the rules of the Greek alphabet. + +%package -n %{shortname}-mkjobtexmf +Provides: tex-mkjobtexmf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-bin < 7:20170520 +Provides: tex-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-doc < 7:20170520 +License: GPLv2 or Artistic +Summary: Generate a texmf tree for a particular job +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkjobtexmf +The package provides a Perl script, which runs a program and +tries to find the names of file used. Two methods are +available, option -recorder of (Web2C) TeX and the program +strace. Then it generates a directory with a texmf tree. It +checks the found files and tries sort them in this texmf tree. +The script may be used for archiving purposes or to speed up +later TeX runs. + +%package -n %{shortname}-mkpic +Provides: tex-mkpic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkpic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-bin < 7:20170520 +Provides: tex-mkpic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-doc < 7:20170520 +License: GPL+ +Summary: Perl interface to mfpic +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkpic +mkpic provides an easy interface for making small pictures with +mfpic. To this end you create an input file consisting of +commands, one per line, with space separated parameters (or you +modify the DATA section of the mkpic script, which is used if +you run it without an input file). For an extensive description +see the file mkpicdoc.pdf, which is part of the distribution. + +%package -n %{shortname}-mltex +Provides: tex-mltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-bin < 7:20170520 +Provides: tex-mltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-doc < 7:20170520 +License: Knuth +Summary: The MLTeX system +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-babel +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-l3kernel +Requires: texlive-latexconfig +Requires: texlive-latex-fonts +Requires: texlive-unicode-data +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires(post,postun): coreutils +Provides: tex(lo1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mlltxchg.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mltex.sty) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-mltex +MLTeX is a modification of TeX version >=3.0 that allows the +hyphenation of words with accented letters using ordinary +Computer Modern (CM) fonts. The system is distributed as a TeX +change file. + +%package -n %{shortname}-mptopdf +Provides: tex-mptopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-bin < 7:20170520 +Provides: tex-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-doc < 7:20170520 +License: LPPL +Summary: mpost to PDF, native MetaPost graphics inclusion +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-plain +Requires(post,postun): coreutils +Provides: tex(mptopdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-mptopdf +The mptopdf script does standalone conversion from mpost to +PDF, using the supp-* and syst-* files. They also allow native +MetaPost graphics inclusion in LaTeX (via pdftex.def) and +ConTeXt. They can be used independently of the rest of +ConTeXt, yet are maintained as part of it. So in TeX Live we +pull them out to this separate package for the benefit of LaTeX +users who do not install the rest of ConTeXt. This can be +found on CTAN in macros/pdftex/graphics. + +%package -n %{shortname}-multibibliography +Provides: tex-multibibliography = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-bin < 7:20170520 +Provides: tex-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-doc < 7:20170520 +License: LPPL 1.3 +Summary: Multiple versions of a bibliography, with different sort orders +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(multibibliography.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-multibibliography +Conventional standards for bibliography styles impose a forced +choice between index and name/year citations, and corresponding +references. The package avoids this choice, by providing +alphabetic, sequenced, and even chronological orderings of +references. Inline citations, that integrate these +heterogeneous styles, are also supported (and work with other +bibliography packages). + +%package -n %{shortname}-musixtex +Provides: tex-musixtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-bin < 7:20170520 +Provides: tex-musixtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-doc < 7:20170520 +License: GPLv2+ +Summary: Sophisticated music typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(musixadd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixadf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixblx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcho.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdbr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdia.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixec.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixeng.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixesf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixevo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgre.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgui.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhou.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixinv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlyr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixmad.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixper.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixplt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixpoi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixppff.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixref.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixslu.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsqr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixste.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsty.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtmr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtri.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixltx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-musixtex +MusiXTeX provides a set of macros, based on the earlier +MusicTeX, for typesetting music with TeX. To produce optimal +spacing, MusixTeX is a three-pass system: etex, musixflx, and +etex again. (Musixflx is a lua script that is provided in the +bundle.) The three-pass process, optionally followed by +processing for printed output, is automated by the musixtex +wrapper script. The package uses its own specialised fonts, +which must be available on the system for musixtex to run. This +version of MusixTeX builds upon work by Andreas Egler, whose +own version is no longer being developed. The MusiXTeX macros +are universally acknowledged to be challenging to use directly: +the pmx preprocessor compiles a simpler input language to +MusixTeX macros. + +%package -n %{shortname}-musixtnt +Provides: tex-musixtnt = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-bin < 7:20170520 +Provides: tex-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-doc < 7:20170520 +License: GPLv2+ +Summary: A MusiXTeX extension library that enables transformations of the effect of notes commands +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-musixtex +Provides: tex(musixtnt.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-musixtnt +The package includes an archive containing a MusiXTeX extension +library musixtnt, and documentation for a program: +msxlint. musixtnt.tex provides a macro \TransformNotes that +enables transformations of the effect of notes commands such +as \notes. In general, the effect of +\TransformNotes{input}{output} is that notes commands in the +source will expect their arguments to match the input pattern, +but the notes will be typeset according to the output pattern. +An example is extracting single-instrument parts from a multi- +instrument score. msxlint detects incorrectly formatted notes +lines in a MusiXTeX source file. This should be used before +using \TransformNotes. + +%package -n %{shortname}-m-tx +Provides: tex-m-tx = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-m-tx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-bin < 7:20170520 +Provides: tex-m-tx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-doc < 7:20170520 +License: GPL+ +Summary: A preprocessor for pmx +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(mtx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtxlatex.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-m-tx +M-Tx is a preprocessor to pmx, which is itself a preprocessor +to musixtex, a music typesetting system. The prime motivation +to the development of M-Tx was to provide lyrics for music to +be typeset. In fact, pmx now provides a lyrics interface, but M- +Tx continues in use by those who prefer its language. + +%package -n %{shortname}-oberdiek +Provides: tex-oberdiek = %{epoch}:%{source_date}-%{release} +Provides: tex-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-oberdiek-doc < 7:20170520 +License: LPPL +Summary: A bundle of packages submitted by Heiko Oberdiek +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-auxhook +Requires: texlive-grfext +Requires: texlive-grffile +Requires: texlive-iftex +Requires: texlive-kvoptions +Requires: texlive-infwarerr +Requires: texlive-pdftexcmds +# To complete the bundle +Requires: tex(ifluatex.sty) +Requires: tex(intcalc.sty) +Requires: tex(ifpdf.sty) +Requires: tex(etexcmds.sty) +Requires: tex(kvoptions.sty) +Requires: tex(ifxetex.sty) +Requires: tex(etex.sty) +Requires: tex(color.sty) +Requires: tex(keyval.sty) +Requires: tex(soul.sty) +Requires: tex(remreset.sty) +Requires: tex(makematch.sty) +Requires: tex(zref-lastpage.sty) +Requires: tex(hyperref.sty) +Requires: tex(fp-basic.sty) +Requires: tex(fp-snap.sty) +Requires: tex(graphics.sty) +Requires: tex(amsmath.sty) +Requires: tex(grfext.sty) +Requires: tex(hypdoc.sty) +Requires: tex(array.sty) +Requires: tex(fontspec.sty) +Requires: tex(unicode-math.sty) +Requires: tex(doc.sty) +Requires: tex(calc.sty) +Requires: tex(thumbpdf.sty) +Requires: tex(inputenc.sty) +Requires: tex(listings.sty) +Requires: tex(tikz.sty) +Requires: tex(everyshi.sty) +Requires: tex(parallel.sty) +Requires: tex(parcolumns.sty) +Requires: tex(lscape.sty) +Requires: tex(index.sty) +Requires: tex(zref-pagelayout.sty) +Provides: tex(aliascnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfm.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfmx.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvips.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(centernot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(chemarr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(classlist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colonequals.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvipscol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(engord.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(enparen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(eolgrab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fibnum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flags.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(holtxdoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hopatch.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypbmsec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypdestopt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypdoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypgotoe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphsubst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifdraft.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(iflang.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagegrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagesel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcrypt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfrender.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(protecteddef.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(resizegather.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotchiffre.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(scrindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(setouterhbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(settobox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stackrel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stampinclude.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularht.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularkv.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(telprint.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thepdfnumber.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(twoopt.sty) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-oberdiek +The bundle comprises packages to provide: aliascnt: 'alias +counters'; bmpsize: get bitmap size and resolution data; +centernot: a horizontally-centred \not symbol; chemarr: +extensible chemists' reaction arrows; classlist: record +information about document class(es) used; colonequals: poor +man's mathematical relation symbols; dvipscol: dvips colour +stack management; engord: define counter-printing operations +producing English ordinals; eolgrab: collect arguments +delimited by end of line; flags: setting and clearing flags in +bit fields and converting the bit field into a decimal number; +holtxdoc: extra documentation macros; hopatch: safely apply +package patches; hypbmsec: bookmarks in sectioning commands; +hypcap: anjusting anchors of captions; hypdestopt: optimising +hyperref's pdfTeX driver destinations; hypdoc: hyper-references +in the LaTeX standard doc package; hypgotoe: experimental +package for links to embedded files; hyphsubst: substitute +hyphenation patterns; ifdraft: switch for option draft; iflang: +provides expandable checks for the current language; pagegrid: +prints a page grid in the background; pagesel: select pages of +a document for output; pdfcolfoot: using pdfTeX's color stack +for footnotes; pdfcol: macros for setting and maintaining new +color stacks; pdfcolparallel: fixes colour problems in package +parallel; pdfcolparcolumns: fixes colour problems in package +parcolumns; pdfcrypt: setting PDF encryption; pdfrender: +control PDF rendering modes; protecteddef: define a command +that protected against expansion; resizegather: automatically +resize overly large equations; rotchiffre: performs simple +rotation cyphers; scrindex: redefines environment 'theindex' of +package 'index', if a class from KOMA-Script is loaded; +setouterhbox: set \hbox in outer horizontal mode; settobox: +getting box sizes; soul and adds some support for UTF-8; +stackrel: extensions of the \stackrel command; stampinclude: +selects the files for \include by inspecting the timestamp of +the .aux file(s); tabularht: tabulars with height +specification; tabularkv: key value interface for tabular +parameters; telprint: print German telephone numbers; +thepdfnumber: canonical numbers for use in PDF files and +elsewhere; twoopt: commands with two optional arguments; Each +of the packages is represented by two files, a .dtx (documented +source) and a PDF file; the .ins file necessary for +installation is extracted by running the .dtx file with Plain +TeX. + +%package -n %{shortname}-omegaware +Provides: tex-omegaware = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-omegaware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-bin < 7:20170520 +Provides: tex-omegaware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-doc < 7:20170520 +License: LPPL +Summary: Omegaware package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-omegaware +Omegaware package. + +%package -n %{shortname}-optex +License: Public Domain +Summary: LuaTeX format based on Plain TeX and OPmac +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-amsfonts +Requires: texlive-cm +Requires: texlive-ec +Requires: texlive-hyphen-base +Requires: texlive-lm +Requires: texlive-luatex +Requires: texlive-rsfs + +%description -n %{shortname}-optex +OpTeX is a LuaTeX format based on Plain TeX macros with power +from OPmac (fonts selection system, colors, external graphics, +references, hyperlinks, ...) with unicode fonts. + +%package -n %{shortname}-patgen +Provides: tex-patgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-patgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-patgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-patgen-bin < 7:20170520 +License: Knuth +Summary: Generate hyphenation patterns +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-patgen +This is the last version of the program distributed by Knuth; +it advertises itself as a pattern generator for "the algorithm +used in TeX", but, of course, the patterns used in modern +distributions are Unicode-based. + +%package -n %{shortname}-pax +Provides: tex-pax = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pax-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-bin < 7:20170520 +Provides: tex-pax-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-doc < 7:20170520 +License: GPLv2+ +Summary: Extract and reinsert PDF annotations with pdfTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(graphicx.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(kvsetkeys.sty) +Requires: tex(kvoptions.sty) +Requires: tex(auxhook.sty) +Requires: tex(etexcmds.sty) +Provides: tex(pax.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-pax +If PDF files are included using pdfTeX, PDF annotations are +stripped. The pax project offers a solution without altering +pdfTeX. A Java program (pax.jar) parses the PDF file that will +later be included. The program then writes the data of the +annotations into a file that can be read by TeX. The LaTeX +package pax extends the graphics package to support the scheme: +if a PDF file is included, the package looks for the file with +the annotation data, reads them and puts the annotations in the +right place. + +%package -n %{shortname}-pdfbook2 +Provides: tex-pdfbook2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-bin < 7:20170520 +Provides: tex-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-doc < 7:20170520 +License: GPLv3+ +Summary: Create booklets from PDF files +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdfcrop +Requires: texlive-pdfjam +# python +BuildArch: noarch + +%description -n %{shortname}-pdfbook2 +This python program creates print-ready PDF files from some +input PDF files for booklet printing. The resulting files need +to be printed in landscape/long edge double sided printing. The +default paper format depends on the locale and is chosen by +pdfjam. It can be chosen using the --paper option. Before the +pdf is composed, the input file is cropped to the relevant area +in order to discard unnecessary white spaces. In this process, +all pages are cropped to the same dimensions. Extra margins can +be defined at the edges of the booklet and in the middle where +the binding occurs. The output is written to INPUT-book.pdf. +Existing files will be overwritten. All input files are +processed seperately. + +%package -n %{shortname}-pdfcrop +Provides: tex-pdfcrop = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-bin < 7:20170520 +Provides: tex-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-doc < 7:20170520 +License: LPPL +Summary: Crop PDF graphics +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pdfcrop +A Perl script that can either trim pages of any whitespace +border, or trim them of a fixed border. + +%package -n %{shortname}-pdfjam +Provides: tex-pdfjam = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-bin < 7:20170520 +Provides: tex-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-doc < 7:20170520 +License: GPLv2+ +Summary: Shell scripts interfacing to pdfpages +Requires: texlive-base +Requires: texlive-collection-latex +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: tex(pdfpages.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfjam +This is a collection of shell scripts which provide an +interface to the pdfpages LaTeX package. They do such jobs as +selecting pages, concatenating files, doing n-up formatting, +and so on. + +%package -n %{shortname}-pdflatexpicscale +Provides: tex-pdflatexpicscale = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-bin < 7:20170520 +Provides: tex-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-doc < 7:20170520 +License: LPPL +Summary: Support software for downscaling graphics to be included by pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pdflatexpicscale +The package provides a script to scale pictures down to a +target resolution before creating a PDF document with pdfLaTeX. + +%package -n %{shortname}-pdftex +Provides: tex-pdftex = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-bin < 7:20170520 +Provides: tex-pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-doc < 7:20170520 +License: GPL+ +Summary: A TeX extension for direct creation of PDF +Requires: texlive-base +Requires: texlive-kpathsea +Requires(post,postun): coreutils +Requires: tex-graphics-def +Requires: texlive-cm +Requires: texlive-dehyph +Requires: texlive-etex +Requires: texlive-hyph-utf8 +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: tex-tex-ini-files +Provides: tex(dummy-space.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dummy-space.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dummy-space.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftex-dvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(glyphtounicode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolor.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pdftex +An extension of TeX which can be configured to directly +generate PDF documents instead of DVI. All current free TeX +distributions including TeX live, MacTeX and MiKTeX include +pdfTeX (Plain TeX) and pdfLaTeX (LaTeX). ConTeXt was designed +around use of pdfTeX (though it is now migrating towards +LuaTeX). + +%package -n %{shortname}-pdftex-quiet +Provides: tex-pdftex-quiet = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3 +Summary: Bash utility to reduce the output of the pdftex command +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +#bash +BuildArch: noarch + +%description -n %{shortname}-pdftex-quiet +This is a tool in BASH serving to reduce the output of `pdftex` command and see +only relevant errors in red bold font to fight them ASAP. + +%package -n %{shortname}-pdftosrc +Provides: tex-pdftosrc = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftosrc-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftosrc-bin = %{epoch}:%{source_date}-%{release} +License: GPLv2+ +Summary: Extract source file or stream from PDF file +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-pdftosrc +Extracts an embedded source file, or extracts and uncompresses +a PDF stream given by object number. Developed as part of the +pdfTeX source tree. + +%package -n %{shortname}-pdfxup +Provides: tex-pdfxup = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-bin < 7:20170520 +Provides: tex-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-doc < 7:20170520 +License: LPPL +Summary: Create n-up PDF pages with minimal margins +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfxup +pdfxup is a unix/linux shell script that creates a PDF document +where each page is obtained by combining several pages of a PDF +file given as output. + +%package -n %{shortname}-pedigree-perl +Provides: tex-pedigree-perl = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-bin < 7:20170520 +Provides: tex-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-doc < 7:20170520 +License: GPLv2+ +Summary: Generate TeX pedigree files from CSV files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pedigree-perl +This program generates TeX commands to typeset pedigrees -- +either TeX fragments or full LaTeX files, to be processed by +the authors' pst-pdgr package. The program has support for +multilanguage pedigrees (at the present moment the English and +Russian languages are supported). + +%package -n %{shortname}-perltex +Provides: tex-perltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-perltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-bin < 7:20170520 +Provides: tex-perltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-doc < 7:20170520 +License: LPPL +Summary: Define LaTeX macros in terms of Perl code +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(perltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-perltex +PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e +package (perltex.sty) that, together, give the user the ability +to define LaTeX macros in terms of Perl code. Once defined, a +Perl macro becomes indistinguishable from any other LaTeX +macro. PerlTeX thereby combines LaTeX's typesetting power with +Perl's programmability. PerlTeX will make use of persistent +named pipes, and thereby run more efficiently, on operating +systems that offer them (mostly Unix-like systems). Also +provided is a switch to generate a PerlTeX-free, document- +specific, noperltex.sty that is useful when distributing a +document to places where PerlTeX is not available. + +%package -n %{shortname}-petri-nets +Provides: tex-petri-nets = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-bin < 7:20170520 +Provides: tex-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-doc < 7:20170520 +License: GPL+ +Summary: A set of TeX/LaTeX packages for drawing Petri nets +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pndraw.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pndraw.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnversion.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-petri-nets +Petri-nets offers a set of TeX/LaTeX packages about Petri nets +and related models. Three packages are available: the first +allows the user to draw Petri-nets in PostScript documents; the +second defines macros related to PBC, M-nets and B(PN) models; +and a third that combines the other two. + +%package -n %{shortname}-pfarrei +Provides: tex-pfarrei = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-bin < 7:20170520 +Provides: tex-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-doc < 7:20170520 +License: LPPL 1.3 +Summary: LaTeX support of pastors' and priests' work +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(pdfpages.sty) +Requires: tex(keyval.sty) +Provides: tex(a5toa4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pfarrei.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pfarrei +In "Die TeXnische Komodie" (issue 1/2013) Christian Justen +described his use of LaTeX in his work as priest (similar +requirements may be encountered in the work of pastors and +other ministers of religion). One point was to arrange A5 pages +onto A4 landscape paper, either side-by-side or as a booklet. +Justen made two bash scripts for this job; the package provides +one texlua script for both requirements. + +%package -n %{shortname}-pkfix +Provides: tex-pkfix = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-bin < 7:20170520 +Provides: tex-pkfix-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-doc < 7:20170520 +License: LPPL 1.3 +Summary: Replace pk fonts in PostScript with Type 1 fonts +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix +The perl script pkfix looks for DVIPSBitmapFont comments in +PostScript files, generated by 'not too old' dvips, and +replaces them by type 1 versions of the fonts, if possible. + +%package -n %{shortname}-pkfix-helper +Provides: tex-pkfix-helper = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-bin < 7:20170520 +Provides: tex-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-doc < 7:20170520 +License: LPPL +Summary: Make PostScript files accessible to pkfix +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix-helper +Pkfix is a useful utility for replacing resolution-dependent +bitmapped fonts in a dvips-produced PostScript file with the +corresponding resolution-independent vector fonts. +Unfortunately, pkfix needs to parse certain PostScript comments +that appear only in files produced by dvips versions later than +5.58 (ca. 1996); it fails to work on PostScript files produced +by older versions of dvips. Pkfix-helper is a program that +attempts to insert newer-dvips comments into an older-dvips +PostScript file, thereby making the file suitable for +processing by pkfix. pkfix-helper can sometimes process +documents fully autonomously but does require the user to +verify and, if needed, correct its decisions. + +%package -n %{shortname}-pmx +Provides: tex-pmx = %{epoch}:%{source_date}-%{release} +Provides: tex-pmx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-bin < 7:20170520 +Provides: tex-pmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-doc < 7:20170520 +License: GPLv2+ +Summary: Preprocessor for MusiXTeX +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pmx.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pmx +PMX is a preprocessor for MusiXTeX. It builds the TeX input +file from a file in a much simpler language, making most of the +layout decisions by itself. An auxiliary program makes single- +player parts from a multi-player score. For proof-listening, +PMX can make a MIDI file of your score. The present version +requires at least version 1.15 of MusiXTeX, running on an e-tex- +enhanced TeX system. + +%package -n %{shortname}-pmxchords +Provides: tex-pmxchords = %{epoch}:%{source_date}-%{release} +Provides: tex-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-bin < 7:20170520 +Provides: tex-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-doc < 7:20170520 +License: GPLv2+ +Summary: Produce chord information to go with pmx output +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(chords.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chordsCZ.tex) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pmxchords +The bundle supplements pmx, providing the means of typesetting +chords above the notes of a score. The bundle contains: macros +for typing the chords; a Lua script to transpose chord macros +to the required key signature; and support scripts for common +requirements. + +%package -n %{shortname}-psutils +Provides: tex-psutils = %{epoch}:%{source_date}-%{release} +Provides: tex-psutils-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-psutils-bin = %{epoch}:%{source_date}-%{release} +License: psutils +Summary: The TeXLive fork of the PS Utilities +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-psutils +Utilities for manipulating PostScript documents. +Page selection and rearrangement are supported, including arrangement into +signatures for booklet printing, and page merging for n-up printing. + +This package contains a fork of the psutils binaries adjusted for TexLive. +All of the standard binaries have been namespaced with a "tl-" prefix. + +%package -n %{shortname}-pst2pdf +Provides: tex-pst2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-bin < 7:20170520 +Provides: tex-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-doc < 7:20170520 +License: GPLv2+ +Summary: A script to compile pstricks documents via pdftex +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pst2pdf +The script extracts the preamble of the document and runs all +\begin{postscript}...\end{postscript} +\begin{pspicture}...\end{pspicture} and +\pspicture...\endpspicture separately through LaTeX with the +same preamble as the original document; thus it creates EPS, +PNG and PDF files of these snippets. In a final PDFLaTeX run +the script replaces the environments with \includegraphics to +include the processed snippets. + +%package -n %{shortname}-pst-pdf +Provides: tex-pst-pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-bin < 7:20170520 +Provides: tex-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-doc < 7:20170520 +License: LPPL +Summary: Make PDF versions of graphics by processing between runs +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(pstricks.sty) +Requires: tex(environ.sty) +Provides: tex(pst-pdf.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-pst-pdf +The package pst-pdf simplifies the use of graphics from +PSTricks and other PostScript code in PDF documents. As in +building a bibliography with BibTEX, additional external +programmes are invoked. In this case they are used to create a +PDF file (\PDFcontainer) that will contain all the graphics +material. In the final document these contents will be inserted +instead of the original PostScript code. The package works with +pstricks and requires a recent version of the preview package. + +%package -n %{shortname}-ps2eps +Provides: tex-ps2eps = %{epoch}:%{source_date}-%{release} +License: GPL+ +Summary: Produce Encapsulated PostScript from PostScript +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ps2eps +Produce Encapsulated PostScript Files (EPS/EPSF) from a +one-page PostScript document, or any PostScript document. A +correct Bounding Box is calculated for the EPS files and some +PostScript command sequences that can produce erroneous +results on printers are filtered. The input is cropped to +include just the image contained in the PostScript file. The +EPS files can then be included into TeX documents. Other +programs like ps2epsi (a script distributed with ghostscript) +don't always calculate the correct bounding box (because the +values are put on the PostScript stack which may get corrupted +by bad PostScript code) or they round it off, resulting in +clipping the image. Therefore ps2eps uses a resolution of 144 +dpi to get the correct bounding box. Included in the distribution +is the bbox program, an application to produce Bounding Box values +for rawppm or rawpbm format files. + +%package -n %{shortname}-ps2pk +Provides: tex-ps2pk = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pk-bin < 7:20170520 +Provides: texlive-ps2pkm = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm < 7:20170520 +Provides: texlive-ps2pkm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm-bin < 7:20170520 +License: MIT +Summary: Generate a PK font from an Adobe Type 1 font +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ps2pk +Generates a PK file from an Adobe Type 1 font. PK fonts are (or +used to be) valuable in enabling previewers to view documents +generated that use Type 1 fonts. The program makes use of code +donated to the X consortium by IBM. + +%package -n %{shortname}-ptex +Provides: tex-ptex = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-bin < 7:20170520 +Provides: tex-ptex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-doc < 7:20170520 +Provides: texlive-platex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-platex-bin < 7:20170520 +License: BSD +Summary: A TeX system for publishing in Japanese +Requires: texlive-adobemapping +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese-otf +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-plain +Requires: texlive-ptex-base +Requires: texlive-ptex-fonts +Requires: texlive-tex +Requires: tex(oldlfont.sty) +Requires: tex(shortvrb.sty) +Requires(post,postun): coreutils +Provides: tex(morisawa.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-ptex +PTeX adds features related to vertical writing, and deals with +other problems in typesetting Japanese. A set of additions to a +TEXMF tree, for use with PTeX, may be found in package PTeX- +texmf. PTeX is distributed as WEB change files. + +%package -n %{shortname}-ptex-fontmaps +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-bin < 7:20170520 +Provides: tex-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-doc < 7:20170520 +Provides: tex-jfontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps <= 6:svn40613 +Provides: tex-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-bin <= 6:svn29848.0 +Provides: tex-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-doc <= 6:svn40613 +License: GPLv3 +Summary: Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex +Requires: texlive-arphic-ttf +Requires: texlive-baekmuk +Requires: texlive-base +Requires: texlive-ipaex +Requires: texlive-kpathsea +# shell and perl +BuildArch: noarch + +%description -n %{shortname}-ptex-fontmaps +This package provides font maps and setup tools for Japanese, +Korean, Traditional Chinese, and Simplified Chinese. It is the +successor of the jfontmaps package. The files in this package +contain font maps for dvipdfmx to make various +Japanese/Chinese/Korean fonts available for (u)ptex and related +programs and formats. + +%package -n %{shortname}-ptex2pdf +Provides: tex-ptex2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-bin < 7:20170520 +Provides: tex-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-doc < 7:20170520 +License: GPLv2+ +Summary: Convert Japanese TeX documents to PDF +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-ptex2pdf +The Lua script provides system-independent support of Japanese +typesetting engines in TeXworks. As TeXworks typesetting setup +does not allow for multistep processing, this script runs one +of the ptex-based programs (ptex, uptex, eptex, platex, +uplatex) followed by dvipdfmx. + +%package -n %{shortname}-purifyeps +Provides: tex-purifyeps = %{epoch}:%{source_date}-%{release} +Provides: tex-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-bin < 7:20170520 +Provides: tex-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-doc < 7:20170520 +License: LPPL +Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-purifyeps +While pdfLaTeX has a number of nice features, its primary +shortcoming relative to standard LaTeX+dvips is that it is +unable to read ordinary Encapsulated PostScript (EPS) files, +the most common graphics format in the LaTeX world. Purifyeps +converts EPS files into a 'purified' form that can be read by +both LaTeX+dvips and pdfLaTeX. The trick is that the standard +LaTeX2e graphics packages can parse MetaPost-produced EPS +directly. Hence, purifyeps need only convert an arbitrary EPS +file into the same stylized format that MetaPost outputs. + +%package -n %{shortname}-pygmentex +Provides: tex-pygmentex = %{epoch}:%{source_date}-%{release} +Provides: tex-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pygmentex-bin < 7:20170520 +Provides: tex-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL 1.3 +Summary: Use Pygments to format code listings in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(ifthen.sty) +Requires: tex(caption.sty) +Requires: tex(pgfkeys.sty) +Requires: tex(efbox.sty) +Requires: tex(mdframed.sty) +Requires: tex(fvextra.sty) +Provides: tex(pygmentex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pygmentex +PygmenTeX is a Python-based LaTeX package that can be used for +typesetting code listings in a LaTeX document using Pygments. +Pygments is a generic syntax highlighter for general use in all +kinds of software such as forum systems, wikis or other +applications that need to prettify source code. + +%package -n %{shortname}-pythontex +Provides: tex-pythontex = %{epoch}:%{source_date}-%{release} +Provides: tex-pythontex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-bin < 7:20170520 +Provides: tex-pythontex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL 1.3 +Summary: Run Python from within a document, typesetting the results +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(etex.sty) +Requires: tex(etoolbox.sty) +Requires: tex(xstring.sty) +Requires: tex(pgfopts.sty) +Requires: tex(newfloat.sty) +Requires: tex(currfile.sty) +Requires: tex(xcolor.sty) +Requires: tex(upquote.sty) +Provides: tex(pythontex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pythontex +The package allows you to enter Python code within a LaTeX +document, execute the code, and access its output in the +original document. Python code is only executed when it has +been modified, or when it meets user-specified criteria. Code +may be divided into user-defined sessions, which automatically +run in parallel. Errors and warnings are synchronized with the +LaTeX document, so that they refer to the document's line +numbers. External dependencies can be tracked, so that code is +re-executed when the data it depends on is modified. PythonTeX +also provides syntax highlighting for code in LaTeX documents +via the Pygments syntax highlighter. The package provides a +depythontex utility, that creates a copy of the document in +which all Python code has been replaced by its output. This is +useful for journal submissions, sharing documents, and +conversion to other formats. + +%package -n %{shortname}-rubik +Provides: tex-rubik = %{epoch}:%{source_date}-%{release} +Provides: tex-rubik-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-bin < 7:20170520 +Provides: tex-rubik-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-doc < 7:20170520 +License: LPPL 1.3 +Summary: Document Rubik cube configurations and rotation sequences +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(tikz.sty) +Requires: tex(fancyvrb.sty) +Provides: tex(rubikcube.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rubikrotation.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-rubik +The bundle provides two packages: rubikcube provides commands +for typesetting Rubik cubes and their transformations; and +rubikrotation which can process a sequence of Rubik rotation +moves, with the help of a Perl package executed via \write18 +(shell escape) commands. + +%package -n %{shortname}-seetexk +Provides: tex-seetexk = %{epoch}:%{source_date}-%{release} +Provides: tex-seetexk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-seetexk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-seetexk-bin < 7:20170520 +License: MIT +Summary: Utilities for manipulating DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-seetexk +The collection comprises: dvibook, which will rearrange the +pages of a DVI file into 'signatures' as used when printing a +book; dviconcat, for concatenating pages of DVI file(s); +dviselect, which will select pages from one DVI file to create +a new DVI file; dvitodvi, which will rearrange the pages of a +DVI file to create a new file; and libtex, a library for +manipulating the files, from the old SeeTeX project. The +utilities are provided as C source with Imakefiles, and an MS- +DOS version of dvibook is also provided. + +%package -n %{shortname}-spix +Summary: Yet another TeX compilation tool: simple, human readable, no option, no magic +License: GPLv3+ +Requires: texlive-base texlive-kpathsea + +%description -n %{shortname}-spix +SpiX offers a way to store information about the compilation +process for a tex file inside the tex file itself. Just write +the commands as comments in the tex files, and SpiX will +extract and run those commands. Everything is stored in the tex +file (so that you are not missing some piece of information +that is located somewhere else), in a human-readable format (no +need to know SpiX to understand it). + +%package -n %{shortname}-splitindex +Provides: tex-splitindex = %{epoch}:%{source_date}-%{release} +Provides: tex-splitindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-bin < 7:20170520 +Provides: tex-splitindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-doc < 7:20170520 +License: LPPL +Summary: Unlimited number of indexes +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(splitindex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(splitidx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-splitindex +SplitIndex consists of a LaTeX package, splitidx, and a small +program, splitindex. The package may be used to produce one +index or several indexes. Without splitindex (for example, +using the index package), the number of indexes is limited by +the number of TeX's output streams. But using the program you +may use even more than 16 indexes: splitidx outputs only a +single file \jobname.idx and the program splits that file into +several raw index files and calls your favorite index processor +for each of the files. + +%package -n %{shortname}-srcredact +Provides: tex-srcredact = %{epoch}:%{source_date}-%{release} +Provides: tex-srcredact-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-bin < 7:20170520 +Provides: tex-srcredact-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-doc < 7:20170520 +License: GPLv2+ +Summary: A tool for redacting sources +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-srcredact +This package provides a tool to keep a master source, +consisting of different "chunks" intended for different +audiences. The tool allows to extract the versions intended for +different audiences and to incorporate the changes made in any +of these versions into the master document. This work was +commissioned by the Consumer Financial Protection Bureau, +United States Treasury. + +%package -n %{shortname}-sty2dtx +Provides: tex-sty2dtx = %{epoch}:%{source_date}-%{release} +Provides: tex-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-bin < 7:20170520 +Provides: tex-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-doc < 7:20170520 +License: GPLv3+ +Summary: Create a .dtx file from a .sty file +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-sty2dtx +The package provides a Perl script that converts a .sty file +(LaTeX package) to .dtx format (documented LaTeX source), by +surrounding macro definitions with macro and macrocode +environments. The macro name is automatically inserted as an +argument to the macro environemnt. Code lines outside macro +definitions are wrapped only in macrocode environments. Empty +lines are removed. The script should not be thought to be fool +proof and 100% accurate but rather as a good start to the +business of making a .dtx file from an undocumented style file. +Full .dtx files are generated. A template based on the skeleton +file from 'dtxtut' is used. User level macros are added +automatically to the 'Usage' section of the .dtx file. A +corresponding .ins file can be generated as well. + +%package -n %{shortname}-svn-multi +Provides: tex-svn-multi = %{epoch}:%{source_date}-%{release} +Provides: tex-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-bin < 7:20170520 +Provides: tex-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-doc < 7:20170520 +License: LPPL +Summary: Subversion keywords in multi-file LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(kvoptions.sty) +Requires: tex(filehook.sty) +Requires: tex(currfile.sty) +Requires: tex(graphics.sty) +Requires: tex(pgf.sty) +Provides: tex(svn-multi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(svnkw.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-svn-multi +This package lets you typeset keywords of the version control +system Subversion inside your LaTeX files anywhere you like. +Unlike the otherwise similar package svn the use of multiple +files for one LaTeX document is well supported. The package +uses the author's filehook and currfile packages. The package +interacts with an external Perl script, to retrieve information +necessary for the required output. + +%package -n %{shortname}-synctex +Provides: tex-synctex = %{epoch}:%{source_date}-%{release} +Provides: tex-synctex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-synctex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-synctex-bin < 7:20170520 +License: LPPL +Summary: synctex package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-synctex +synctex package. + +%package -n %{shortname}-tex +Provides: tex-tex = %{epoch}:%{source_date}-%{release} +Provides: tex-tex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex-bin < 7:20170520 +License: Knuth +Summary: A sophisticated typesetting engine +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-plain +Requires(post,postun): coreutils + +%description -n %{shortname}-tex +TeX is a typesetting system that incorporates a macro +processor. A TeX source document specifies or incorporates a +number of macro definitions that instruct the TeX engine how to +typeset the document. The TeX engine also uses font metrics +generated by Metafont, or by any of several other mechanisms +that incorporate fonts from other sources into an environment +suitable for TeX. TeX has been, and continues, a basis and an +inspiration for several other programs, including e-TeX and +PDFTeX. + +%package -n %{shortname}-tex4ebook +Provides: tex-tex4ebook = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-bin < 7:20170520 +Provides: tex-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-doc < 7:20170520 +License: LPPL 1.3 +Summary: Convertor from LaTeX to ebook formats +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(etoolbox.sty) +Requires: tex(kvoptions.sty) +Requires: tex(graphicx.sty) +Provides: tex(tex4ebook.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-tex4ebook +This is a bundle of lua scripts and LaTeX packages for +conversion of LaTeX files to ebook formats such as epub, mobi +and epub3. tex4ht is used as conversion engine. + +%package -n %{shortname}-tex4ht +Provides: tex-tex4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-bin < 7:20170520 +Provides: tex-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-doc < 7:20170520 +License: LPPL +Summary: Convert (La)TeX to HTML/XML +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(m-tex4ht.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex4ht.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-tex4ht +A converter from TeX and LaTeX to SGML-based formats such as +(X)HTML, MathML, OpenDocument, and DocBook, providing a +configurable (La)TeX-based authoring system for hypertext. +Tex4ht does not parse (La)TeX source (so that it avoids the +difficulties encountered by many other converters, arising from +the irregularity of (La)TeX syntax). Instead, Tex4ht uses +(La)TeX itself (with an extra macro package) to produce a non- +standard DVI file that it can then process. This technique +allows TeX4ht to approach the robustness characteristic of +restricted-syntax systems such as hyperlatex and gellmu. + +%package -n %{shortname}-texcount +Provides: tex-texcount = %{epoch}:%{source_date}-%{release} +Provides: tex-texcount-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-bin < 7:20170520 +Provides: tex-texcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-doc < 7:20170520 +License: LPPL +Summary: Count words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texcount +TeXcount is a Perl script that counts words in the text of +LaTeX files. It has rules for handling most of the common +macros, and can provide colour-coded output showing which parts +of the text have been counted. The package script is available +as a Web service via its home page. + +%package -n %{shortname}-texdef +Provides: tex-texdef = %{epoch}:%{source_date}-%{release} +Provides: tex-texdef-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-bin < 7:20170520 +Provides: tex-texdef-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-doc < 7:20170520 +License: GPLv3+ +Summary: Display the definitions of TeX commands +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdef +The (Perl) script displays the definition of (La)TeX command +sequences/macros. Various options allow the selection of the +used class and package files and other things which can have +influence on the definition (before/after the preamble, inside +an environment, ...). The script creates a temporary TeX file +which is then compiled using (La)TeX to find the '\meaning' of +the command sequence. The result is formatted and presented to +the user. Length or number command sequences (dimensions, +\char..., count registers, ...) are recognized and the +contained value is also shown (using \the). Special definitions +like protected macros are also recognized and the underlying +macros are shown as well. The script will show plain TeX +definitions by default. LaTeX and ConTeXt are supported, +including flavours (pdf(la)tex, lua(la)tex, xe(la)tex, ...). +The flavour can be selected using an command line option or +over the script name: latexdef will use LaTeX as default, etc. + +%package -n %{shortname}-texdiff +Provides: tex-texdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-texdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-bin < 7:20170520 +Provides: tex-texdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-doc < 7:20170520 +License: GPL+ or Artistic +Summary: Compares two (La)TeX documents to create a merged version showing changes +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdiff +Texdiff compares two (La)TeX documents to create a merged version showing +changes, similar to that of 'Change Tracking' in some word processors. + +%package -n %{shortname}-texdirflatten +Provides: tex-texdirflatten = %{epoch}:%{source_date}-%{release} +Provides: tex-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdirflatten-bin < 7:20170520 +License: GPL+ or Artistic +Summary: Collect files related to a LaTeX job in a single directory +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdirflatten +The Perl script parses a LaTeX file recursively, scanning all +child files, and collects details of any included and other +data files. These component files, are then all put into a +single directory (thus "flattening" the document's directory +tree). + +%package -n %{shortname}-texdoc +Provides: tex-texdoc = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoc-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-bin < 7:20170520 +Provides: tex-texdoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-doc < 7:20170520 +License: GPL+ +Summary: Documentation access for TeX distributions +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoc.cnf) = %{epoch}:%{source_date}-%{release} +# lua and perl +BuildArch: noarch + +%description -n %{shortname}-texdoc +TeXdoc is an application for easy access to the package +documentation of a TeX distributions (i.e., .dvi, .pdf or .ps +files on the $TEXDOCS tree). It is distributed with TeX-Live +and a derivative is distributed with miktex. + +%package -n %{shortname}-texdoctk +Provides: tex-texdoctk = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-doc = %{epoch}:%{source_date}-%{release} +License: GPL+ +Summary: Easy access to package documentation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoctk.dat) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texdoctk +A Perl/Tk-based GUI for easy access to package documentation +for TeX on Unix platforms; the databases it uses are based on +the texmf/doc subtrees of teTeX, but database files for local +configurations with modified/extended directories can be +derived from them. Note that texdoctk is not a viewer itself, +but an interface for finding documentation files and opening +them with the appropriate viewer; so it relies on appropriate +programs to be installed on the system. However, the choice of +these programs can be configured by the sysadmin or user. Now +only distributed as part of TeX Live, which includes a Windows +executable. + +%package -n %{shortname}-texfot +Provides: tex-texfot = %{epoch}:%{source_date}-%{release} +Provides: tex-texfot-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-bin < 7:20170520 +Provides: tex-texfot-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-doc < 7:20170520 +License: Public Domain +Summary: Filter clutter from the output of a TeX run +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texfot +The package provides a small Perl script to filter the online +output from a TeX run, attempting to show only those messages +which probably deserve some change in the source. The TeX +invocation itself need not change. + +%package -n %{shortname}-texliveonfly +Provides: tex-texliveonfly = %{epoch}:%{source_date}-%{release} +Provides: tex-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-bin < 7:20170520 +Provides: tex-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-doc < 7:20170520 +License: GPLv3+ +Summary: On-the-fly download of missing TeX live packages +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-texliveonfly +The package provides a script that performs 'on the fly' +downloads of missing packages, while a document is being +compiled. (This feature is already available in the MikTeX +distribution for Windows machines.) To use the script, replace +your (LaTeX) compilation command with texliveonfly.py file.tex +(default options are --engine=lualatex and --arguments="- +synctex=1 -interaction=nonstopmode", which may all be changed). +The script is designed to work on Linux distributions. + +%package -n %{shortname}-texlive-en +Provides: tex-texlive-en = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-en-doc < 7:20170520 +License: LPPL +Summary: TeX Live manual (English) +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch + +%description -n %{shortname}-texlive-en +TeX Live manual (English). + +%package -n %{shortname}-texlive-scripts +Provides: tex-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-scripts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-scripts-bin < 7:20170520 +License: LPPL +Summary: TeX Live infrastructure programs +Requires: texlive-base +Requires: texlive-kpathsea = %{epoch}:%{source_date}-%{release} +Requires: texlive-texlive.infra +Requires: texlive-gsftopk +Provides: texlive-tetex = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tetex < 7:20200327 +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive-scripts +Includes install-tl, tl-portable, rungs, etc.; not needed for +tlmgr to run but still ours. Not included in tlcritical. + +%package -n %{shortname}-texlive-scripts-extra +Provides: tex-texlive-scripts-extra = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-scripts-extra-bin = %{epoch}:%{source_date}-%{release} +License: GPL+ and LPPL and Public Domain +Summary: TeX Live scripts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-texlive.infra +Obsoletes: texlive-texconfig < 7:20200327 +Obsoletes: texlive-pstools < 7:20200327 +Obsoletes: texlive-pdftools < 7:20200327 +# perl and shell +BuildArch: noarch + +%description -n %{shortname}-texlive-scripts-extra +Miscellaneous scripts maintained as part of TeX Live, but not important for +the infrastructure. Thus, this is not part of scheme-infraonly or tlcritical, +just a normal package. + +%package -n %{shortname}-texlive.infra +Provides: tex-texlive.infra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-bin < 7:20170520 +Provides: tex-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-doc < 7:20170520 +License: LPPL +Summary: Basic TeX Live infrastructure +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(fmtutil-hdr.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(updmap-hdr.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive.infra +This package contains the files needed to get the TeX Live +tools (notably tlmgr) running: perl modules, xz binaries, plus +(sometimes) tar and wget. These files end up in the standalone +install packages, and in the tlcritical repository. + +%package -n %{shortname}-texloganalyser +Provides: tex-texloganalyser = %{epoch}:%{source_date}-%{release} +Provides: tex-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-bin < 7:20170520 +Provides: tex-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-doc < 7:20170520 +License: BSD +Summary: Analyse TeX logs +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texloganalyser +The perl script allows the user to extract (and display) +elements of the log file. + +%package -n %{shortname}-texosquery +Provides: tex-texosquery = %{epoch}:%{source_date}-%{release} +Provides: tex-texosquery-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-bin < 7:20170520 +Provides: tex-texosquery-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-doc < 7:20170520 +License: LPPL +Summary: Cross-platform Java application to query OS information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: java-headless +# shell +BuildArch: noarch + +%description -n %{shortname}-texosquery +This package provides a cross-platform Java application to +query OS information designed for use in TeX's shell escape +mechanism. The application can query the following: locale and +codeset current working directory user home directory temporary +directory OS name, arch and version Current date and time in +PDF format (for TeX formats that don't provide +\pdfcreationdate) Date-time stamp of a file in PDF format (for +TeX formats that don't provide \pdffilemoddate) Size of a file +in bytes (for TeX formats that don't provide \pdffilesize) +Contents of a directory (captured as a list) Directory contents +filtered by regular expression (captured as a list) URI of a +file Canonical path of a file All paths use a forward slash as +directory divider so results can be used, for example, in +commands like \includegraphics. There are files provided for +easy access in TeX documents: texosquery.tex: generic TeX code +texosquery.sty: LaTeX package This provides commands to run +texosquery using TeX's shell escape mechanism and capture the +result in a control sequence. The category code of most of +TeX's default special characters (and some other potentially +problematic characters) is temporarily changed to 12 while +reading the result. + +%package -n %{shortname}-texplate +Provides: tex-texplate = %{epoch}:%{source_date}-%{release} +Provides: tex-texplate-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texplate-bin = %{epoch}:%{source_date}-%{release} +License: BSD +Summary: A tool for creating document structures based on templates +Requires: texlive-base +Requires: texlive-kpathsea +# So much java +BuildArch: noarch + +%description -n %{shortname}-texplate +TeXplate is a tool for creating document structures based on +templates. The application name is a word play on TeX and +template, so the purpose seems quite obvious: we want to +provide an easy and straightforward framework for reducing the +typical code boilerplate when writing TeX documents. Also note +that one can easily extrapolate the use beyond articles and +theses: the application is powerful enough to generate any +text-based structure, given that a corresponding template +exists. + +%package -n %{shortname}-texsis +Provides: tex-texsis = %{epoch}:%{source_date}-%{release} +Provides: tex-texsis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-bin < 7:20170520 +Provides: tex-texsis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-doc < 7:20170520 +License: LPPL +Summary: Plain TeX macros for Physicists +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires(post,postun): coreutils +Provides: tex(TXSconts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSdcol.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSenvmt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSeqns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfigs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfmts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXShead.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSinit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSletr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmemo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSprns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSrefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSruled.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsects.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsymb.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStags.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStitle.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsis.tex) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-texsis +TeXsis is a TeX macro package which provides useful features +for typesetting research papers and related documents. For +example, it includes support specifically for: Automatic +numbering of equations, figures, tables and references; +Simplified control of type sizes, line spacing, footnotes, +running headlines and footlines, and tables of contents, +figures and tables; Specialized document formats for research +papers, preprints and ``e-prints,'' conference proceedings, +theses, books, referee reports, letters, and memoranda; +Simplified means of constructing an index for a book or thesis; +Easy to use double column formatting; Specialized environments +for lists, theorems and proofs, centered or non-justified text, +and listing computer code; Specialized macros for easily +constructing ruled tables. TeXsis was originally developed for +physicists, but others may also find it useful. It is +completely compatible with Plain TeX. + +%package -n %{shortname}-texware +Provides: tex-texware = %{epoch}:%{source_date}-%{release} +Provides: tex-texware-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texware-bin < 7:20170520 +License: Knuth +Summary: Utility programs for use with TeX +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-texware +Basic utitility programs, comprising: - dvitype, which converts +a TeX output (DVI) file to a plain text file (see also the DVI +Text Language suite); - pooltype, which converts a TeX-suite +program's "pool" (string) file into human-readable form; and - +tftopl and pltotf, which convert TeX Font Metric (TFM) file to +human readable Property List (PL) files and vice versa. + +%package -n %{shortname}-thumbpdf +Provides: tex-thumbpdf = %{epoch}:%{source_date}-%{release} +Provides: tex-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-bin < 7:20170520 +Provides: tex-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-doc < 7:20170520 +License: LPPL +Summary: Thumbnails for pdfTeX and dvips/ps2pdf +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifluatex.sty) +Requires: ghostscript +Provides: tex(thumbpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thumbpdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-thumbpdf +A Perl script that provides support for thumbnails in pdfTeX +and dvips/ps2pdf. The script uses ghostscript to generate the +thumbnails which get represented in a TeX readable file that is +read by the package thumbpdf.sty to automatically include the +thumbnails. This arrangement works with both plain TeX and +LaTeX. + +%package -n %{shortname}-tie +Provides: tex-tie = %{epoch}:%{source_date}-%{release} +Provides: tex-tie-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tie-bin < 7:20170520 +License: Latex2e +Summary: Allow multiple web change files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-tie +Tie was originally developed to allow web programmers to apply +more than one change file to their source. The program may also +be used to create a new version of a .web file that +incorporates existing changes. + +%package -n %{shortname}-tikztosvg +Summary: A utility for rendering TikZ diagrams to SVG +License: GPLv3 +Requires: texlive-base texlive-kpathsea + +%description -n %{shortname}-tikztosvg +This package provides a shell script that calls XeTeX and +pdf2svg to convert TikZ environments to SVG files. + +%package -n %{shortname}-tpic2pdftex +Provides: tex-tpic2pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-bin < 7:20170520 +Provides: tex-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-doc < 7:20170520 +License: GPL+ +Summary: Use tpic commands in PDFTeX +Requires: texlive-base +Requires: texlive-kpathsea +# awk +BuildArch: noarch + +%description -n %{shortname}-tpic2pdftex +The AWK script converts pic language, embedded inline +(delimited by .PS and .PE markers), to \pdfliteral commands. + +%package -n %{shortname}-ttfutils +Provides: tex-ttfutils = %{epoch}:%{source_date}-%{release} +Provides: tex-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-bin < 7:20170520 +Provides: tex-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-doc < 7:20170520 +License: LPPL +Summary: Linux TrueType utilities +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(T1-WGL4.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ttf2pk.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-ttfutils +Linux TrueType utilities. + +%package -n %{shortname}-typeoutfileinfo +Provides: tex-typeoutfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-bin < 7:20170520 +Provides: tex-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-doc < 7:20170520 +License: LPPL 1.3 +Summary: Display class/package/file information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(readprov.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-typeoutfileinfo +The package provides a minimalist shell script, for Unix +systems, that displays the information content in a +\ProvidesFile, \ProvidesPackage or \ProvidesClass command in a +LaTeX source file. The package requires that the readprov +package is available. + +%package -n %{shortname}-ulqda +Provides: tex-ulqda = %{epoch}:%{source_date}-%{release} +Provides: tex-ulqda-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-bin < 7:20170520 +Provides: tex-ulqda-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-doc < 7:20170520 +License: LPPL +Summary: Support of Qualitative Data Analysis +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(multicol.sty) +Requires: tex(tikz.sty) +Requires: tex(dot2texi.sty) +Requires: tex(soul.sty) +Provides: tex(ulqda.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-ulqda +The package is for use in Qualitative Data Analysis research. +It supports the integration of Qualitative Data Analysis (QDA) +research tasks, specifically for Grounded Theory, into the +LaTeX work flow. It assists in the analysis of textual data +such as interview transcripts and field notes by providing the +LaTeX user with macros which are used to markup textual +information -- for example, in-depth interviews. + +%package -n %{shortname}-uptex +Provides: tex-uptex = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-doc = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-uptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-bin < 7:20170520 +Provides: texlive-uplatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-bin < 7:20170520 +Provides: texlive-uplatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-doc < 7:20170520 +Provides: texlive-uptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-doc < 7:20170520 +License: BSD +Summary: Binaries for uptex +Requires: texlive-base +Requires: texlive-convbkmk +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese-otf +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-plain +Requires: texlive-ptex-base +Requires: texlive-uptex-base +Requires: texlive-uptex-fonts + +%description -n %{shortname}-uptex +upTeX is an extension of pTeX, using UTF-8 input and producing UTF-8 +output. It was originally designed to improve support for Japanese, +but is also useful for documents in Chinese and Korean. It can +process Chinese simplified, Chinese traditional, Japanese, and Korean +simultaneously, and can also produce original LaTeX with \inputenc{utf8} +and Babel (Latin/Cyrillic/Greek etc.) by switching its \kcatcode +tables. + +%package -n %{shortname}-urlbst +Provides: tex-urlbst = %{epoch}:%{source_date}-%{release} +Provides: tex-urlbst-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-bin < 7:20170520 +Provides: tex-urlbst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-doc < 7:20170520 +License: GPL+ +Summary: Web support for BibTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-urlbst +Supports a new BibTeX 'webpage' entry type and 'url', +'lastchecked', and 'eprint' and 'DOI' fields. The Perl script +urlbst can be used to add this support to an arbitrary .bst +file which has a reasonably conventional structure. The result +is meant to be robust rather than pretty. + +%package -n %{shortname}-velthuis +Provides: tex-velthuis = %{epoch}:%{source_date}-%{release} +Provides: tex-velthuis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-bin < 7:20170520 +Provides: tex-velthuis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-doc < 7:20170520 +Provides: texlive-devnag = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag < 7:20170520 +Provides: texlive-devnag-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag-bin < 7:20170520 +License: GPL+ +Summary: Typeset Devanagari +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex-xetex-devanagari +Requires: tex(hindicaptions.sty) +Requires: tex(cite.sty) +Requires: tex(ifxetex.sty) +Provides: tex(dvng.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindi.ldf) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dev.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dev209.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(devanagari.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngcite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(udn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnp.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(dnmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindicaptions.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-velthuis +Frans Velthuis' preprocessor for Devanagari text, and fonts and +macros to use when typesetting the processed text. The macros +provide features that support Sanskrit, Hindi, Marathi, Nepali, +and other languages typically printed in the Devanagari script. +The package provides fonts, in both Metafont and Type 1 +formats. Users of modern TeX distributions may care to try the +XeTeX based package, which is far preferable for users who can +type Unicode text. + +%package -n %{shortname}-vlna +Provides: tex-vlna = %{epoch}:%{source_date}-%{release} +Provides: tex-vlna-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-bin < 7:20170520 +Provides: tex-vlna-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-doc < 7:20170520 +License: LPPL +Summary: Adds tilde after each non-syllabic preposition +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-vlna +There exists a special Czech and Slovak typographical rule: +you cannot leave the non-syllabic preposition on the end of one +line and continue writting text on next line. For example, you +cannot write down the text "v lese" (in a forest) like +"v<new-line>lese". The program vlna adds the asciitilde between +such preposition and the next word and removes the space(s) in +this place. It means, the program converts "v lese" to +"v~lese". You can use this program as a preporcessor before +TeXing. Moreower, you can set another sequence to store instead +asciitilte (see the -x option). + +%package -n %{shortname}-vpe +Provides: tex-vpe = %{epoch}:%{source_date}-%{release} +Provides: tex-vpe-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-bin < 7:20170520 +Provides: tex-vpe-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-doc < 7:20170520 +License: LPPL +Summary: Source specials for PDF output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(color.sty) +Requires: tex(pifont.sty) +Provides: tex(vpe.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-vpe +VPE is a system to make the equivalent of "source special" +marks in a PDF file. Clicking on a mark will activate an +editor, pointing at the source line that produced the text that +was marked. The system comprises a perl file (vpe.pl) and a +LaTeX package (vpe.sty); it will work with PDF files generated +via LaTeX/dvips, pdfTeX (version 0.14 or better), and +LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the +(pdf)TeX processor should be run with shell escapes enabled. + +%package -n %{shortname}-web +Provides: tex-web = %{epoch}:%{source_date}-%{release} +Provides: tex-web-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-web-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-web-bin < 7:20170520 +License: Knuth +Summary: Original web programs tangle and weave +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-web +The system processes 'web' files in two ways: firstly to +rearrange them to produce compilable code (using the program +tangle), and secondly to produce a TeX source (using the +program weave) that may be typeset for comfortable reading. + +%package -n %{shortname}-webquiz +Provides: tex-webquiz = %{epoch}:%{source_date}-%{release} +Provides: tex-webquiz-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-webquiz-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3+ +Summary: A LaTeX package for writing online quizzes +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tex4ht +Requires: texlive-make4ht +Requires: tex(tikz.sty) +Requires: tex(pstricks.sty) +Requires: texlive-dvisvgm +Requires: ghostscript +Requires: python3 +# python3 +BuildArch: noarch + +%description -n %{shortname}-webquiz +WebQuiz makes it possible to use LaTeX to write interactive online quizzes. +The quizzes are first written in LaTeX and then converted into HTML using +WebQuiz, which is written in python. The conversion from LaTeX to HTML is +done behind the scenes using TeX4ht. The idea is that you should be able to +produce nice online quizzes using WebQuiz and basic knowledge of LaTeX. + +%package -n %{shortname}-wordcount +Provides: tex-wordcount = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-wordcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-wordcount-doc < 7:20180414 +Provides: tex(wordcount.tex) = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: Estimate the number of words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-wordcount +The package provides a relatively easy way of estimating the +number of words in a LaTeX document that does not require +dvitty or other DVI converters. It does however require +something like Unix grep -c that can search a file for a +particular string and report the number of matching lines. An +accompanying shell script wordcount.sh contains more +information in its comments. + +%package -n %{shortname}-xdvi +License: MIT +Summary: A DVI previewer for the X Window System +Provides: tex-xdvi = %{epoch}:%{source_date}-%{release} +Provides: tex-xdvi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xdvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xdvi-bin < 7:20170520 +Provides: xdvi = %{epoch}:%{source_date}-%{release} +Provides: xdvik = %{epoch}:%{source_date}-%{release} +Requires: texlive-kpathsea +Requires: texlive-base + +%description -n %{shortname}-xdvi +The canonical previewer for use on Unix and other X-windows +based systems. + +%package -n %{shortname}-xetex +Provides: tex-xetex = %{epoch}:%{source_date}-%{release} +Provides: tex-xetex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-bin < 7:20170520 +Provides: tex-xetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-doc < 7:20170520 +License: MIT +Summary: Unicode and OpenType-enabled TeX engine +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-xetexconfig +Requires: texlive-latex +Requires: texlive-dvipdfmx +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-etex +Requires: texlive-plain +Requires: texlive-babel +Requires: texlive-l3kernel +Requires: texlive-latex-fonts +Requires: texlive-lm +Requires: teckit +Requires(post,postun): coreutils +Requires: tex(xetex.def) +Provides: tex(qx-unicode.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex-text.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-xetex +XeTeX is an extension of TeX that integrates TeX's typesetting capabilities +with (a) the Unicode text encoding standard (supporting most of the world’s +scripts) and (b) modern font technologies (TrueType and OpenType) and text +layout services (AAT, OpenType layout, SIL Graphite) provided by the host +operating system and available libraries. + +With XeTeX, the advanced typographic features provided by OpenType fonts become +available for all TeX users, as well as support for complex non-roman scripts. +XeTeX also eliminates the complex task of managing a TeX font installation. +XeTeX is now part of the standard TeX distribution TeXLive and works well with +TeX macro packages like LaTeX and ConTeXt. + +%package -n %{shortname}-xindex +Provides: tex-xindex = %{epoch}:%{source_date}-%{release} +Provides: tex-xindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindex-bin = %{epoch}:%{source_date}-%{release} +License: LPPL 1.3 +Summary: Unicode compatible index program for LaTeX +Requires: lua >= 5.3 +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Provides: tex(xindex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(xindex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-xindex +Unicode compatible index program for LaTeX. + +%if ! 0%{?eln} +%package -n %{shortname}-xindy +Provides: tex-xindy = %{epoch}:%{source_date}-%{release} +%if %{without bootstrap} +Provides: tex-xindy-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-bin = %{epoch}:%{source_date}-%{release} +%endif +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-bin <= 6:svn41316 +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-doc <= 6:svn41316 +License: GPLv2+ +Summary: A general-purpose index processor +# There are some arch specific binaries in here. +# BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: clisp + +%description -n %{shortname}-xindy +Xindy was deceloped after an impasse had been encountered in +the attempt to complete internationalisation of makeindex. +Xindy can be used to process indexes for documents marked up +using (La)TeX, Nroff family and SGML-based languages. Xindy is +highly configurable, both in markup terms and in terms of the +collating order of the text being processed. +%endif + +%package -n %{shortname}-xml2pmx +Summary: Convert MusicXML to PMX and MusiXTeX +License: GPLv3+ +Requires: texlive-base texlive-kpathsea + +%description -n %{shortname}-xml2pmx +This program translates MusicXML files to input suitable for +PMX and MusiXTeX processing. This package supports Windows, +MacOS and Linux systems. + +%package -n %{shortname}-xmltex +Provides: tex-xmltex = %{epoch}:%{source_date}-%{release} +Provides: tex-xmltex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-bin < 7:20170520 +Provides: tex-xmltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-doc < 7:20170520 +Provides: xmltex = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: Support for parsing XML documents +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-xmltexconfig +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-latex-fonts +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-latexconfig +Provides: tex(xmltex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(xmltex.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-xmltex +The package provides an implementation of a parser for +documents matching the XML 1.0 and XML Namespace +Recommendations. In addition to parsing commands are provided +to attatch TeX typesetting instructions to the various markup +elemenets as they are encounted. Sample files for typesetting a +subset of TEI, MathML, are included. Element and Attribute +names, as well as character data, may use any characters +allowed in XML, using UTF-8 or a suitable 8-bit encoding. + +%package -n %{shortname}-xpdfopen +Provides: tex-xpdfopen = %{epoch}:%{source_date}-%{release} +Provides: tex-xpdfopen-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xpdfopen-bin = %{epoch}:%{source_date}-%{release} +License: Public Domain +Summary: Commands to control PDF readers, under X11 +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-xpdfopen +The command-line programs pdfopen and pdfclose allow you to +control the X Window System version of Adobe's Acrobat Reader +from the command line or from within a (shell) script. The +programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf +and evince. This version derives from one written by Fabrice +Popineau for Microsoft operating systems. + +%package -n %{shortname}-yplan +Provides: tex-yplan = %{epoch}:%{source_date}-%{release} +Provides: tex-yplan-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-bin < 7:20170520 +Provides: tex-yplan-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-doc < 7:20170520 +License: LPPL +Summary: Daily planner type calendar +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifthen.sty) +Provides: tex(yplan.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-yplan +Prints two six-monthly vertical-type daily planner (i.e., +months along the top, days downwards), with each 6-month period +fitting onto a single A4 (or US letter) sheet. The package +offers support for English, French, German, Spanish and +Portuguese. The previous scheme of annual updates has now been +abandoned, in favour of a Perl script yplan that generates a +year's planner automatically. (The last manually-generated +LaTeX file remains on the archive.) + +%prep +%setup -q -c -T +xz -dc %{SOURCE0} | tar x +[ -e %{source_name} ] && mv %{source_name} source +%patch1 -p0 +%patch2 -p1 -b .format +%patch5 -p0 +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch7 -p1 -b .newpoppler +%endif +%patch8 -p1 -b .texinfo-fix +%patch11 -p1 -b .dt +%patch15 -p1 -b .disabletest +%patch17 -p1 -b .annocheck +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch18 -p1 -b .poppler-0.73 +%endif +%patch20 -p1 -b .fix-libgs-detection +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch23 -p1 -b .poppler-0.84 +%endif +%if 0%{?fedora} >= 33 || 0%{?rhel} >= 9 +%patch29 -p1 -b .poppler090 +%endif +%patch30 -p1 -b .out_of_memory +%patch31 -p1 -b .poppler-xpdf-fix +%patch32 -p1 -b .archfix +%patch33 -p1 -b .no-setpdfwrite + +%if 0%{?fedora} >= 36 +%patch34 -p1 -b .poppler22 +%patch35 -p1 -b .poppler-crash-fix +%endif + +# Setup copies of the licenses +for l in `unxz -c %{SOURCE3} | tar t`; do +ln -s %{_texdir}/licenses/$l $l +done + +# Value here is "16" not "15" because we have a source0 at index 1. +# Source15 at index 16 is our first "normal" noarch source file. +# Also, this macro has to be here, not at the top, or it will not evaluate properly. :P +%global mysources %{lua: for index,value in ipairs(sources) do if index >= 16 then print(value.." ") end end} + +%build + +%if %{without bootstrap} && ! 0%{?eln} +cat /usr/share/texlive/kpathsea.log || : +# DEBUG +# Okay. Lets look at things. +# 1. /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf should exist and be valid. +ls -l /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf || : +# cat /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf + +# Check for ls-R files +ls -l /usr/share/texlive/texmf-config/ls-R || : +ls -l /usr/share/texlive/texmf-dist/ls-R || : +ls -l /usr/share/texlive/texmf-local/ls-R || : +ls -l /usr/share/texlive/texmf-var/ls-R || : + +# 2. kpsewhich -all fmtutil.cnf +# We should see /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf +kpsewhich -version || : + +kpsewhich --debug -1 -all fmtutil.cnf || : + +# 3. fmtutil-sys --all +# This should recreate all format files, may not be able to do that here (non-root) +fmtutil-sys --all || : + +# 4. mktexfmt latex should succeed +mktexfmt latex || : + +# Make texlive generate latex.fmt, so that multiple threads do not race to +# make it during the xindy build. +cat > dummy.tex << EOF +\documentclass{article} +\begin{document} +This is a document. +\end{document} +EOF +latex dummy.tex +rm -f dummy.* +%endif + +export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Werror=format-security" +%if 0%{?fedora} >= 36 +export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Werror=format-security" +%else +export CXXFLAGS="$RPM_OPT_FLAGS -std=c++11 -fno-strict-aliasing -Werror=format-security" +%endif + +cd source +PREF=`pwd`/inst +mkdir -p work +%global _configure ../configure +cd work +%configure \ +--prefix=$PREF --datadir=$PREF --libdir=$PREF/lib --includedir=$PREF/include --datarootdir=$PREF/share --mandir=$PREF/share/man \ +--infodir=$PREF/share/info --exec_prefix=$PREF --bindir=$PREF/bin --with-system-zlib --with-system-libpng --with-system-xpdf \ +--with-system-gd --with-system-t1lib --with-system-teckit --with-system-freetype2 --with-system-poppler --with-system-zziplib \ +--with-system-cairo --with-system-icu --with-system-harfbuzz --with-system-graphite2 --with-system-libgs --with-system-pixman \ +--with-system-libpaper --with-system-potrace --with-pic --with-xdvi-x-toolkit=xaw --with-system-mpfr --with-system-gmp \ +--enable-shared --enable-compiler-warnings=max --without-cxx-runtime-hack \ +--disable-native-texlive-build --disable-t1utils --enable-psutils --disable-biber --disable-ptexenc --disable-largefile \ +%ifarch %{power64} s390 s390x +--disable-luajittex --disable-mfluajit --disable-luajithbtex --disable-mfluajit-nowin \ +%endif +%if %{without bootstrap} && ! 0%{?eln} +--enable-xindy \ +%else +--disable-xindy \ +%endif +--disable-xindy-docs --disable-xindy-rules \ +--disable-rpath + +# disable rpath +for i in `find . -name libtool`; do +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' $i +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' $i +done + +%make_build world STRIPPROG=/bin/true STRIP=/bin/true + +%install +# make directories +mkdir -p %{buildroot}%{_texdir}/texmf-config/web2c +mkdir -p %{buildroot}%{_texmf_var} + +# make symlinks +pushd %{buildroot}%{_texdir}/texmf-config/web2c +ln -s ../../texmf-dist/web2c/updmap.cfg updmap.cfg +popd + +# make compatibility symlink +pushd %{buildroot}%{_datadir} +mkdir -p texlive/texmf-local/texmf-compat +ln -s texlive/texmf-local/texmf-compat texmf +popd + +# make opentype fontdir symlinks +# NOTE: fontawesome, stix, oldstandard are a conflict, so we just add Requires for the +# corresponding system font packages for them. +# NOTE: We might have to handle this differently if there are lots of conflicts later. +# DO NOT MAKE A SYMLINK FOR public/ebgaramond +# The EB Garamond upstream font decided to map some historical flags (i.e., flags +# obsolete for centuries) to the Unicode flag emoji code points. +# Since most other fonts do not include the relevant code points, Fontconfig decides to +# pick up the EB Garamond flags through the fallback font mechanism for almost all +# fonts on the system, including DejaVu Sans, Liberation Sans, etc. +mkdir -p %{buildroot}%{_datadir}/fonts +pushd %{buildroot}%{_datadir}/fonts +for i in public/lilyglyphs ; do + j=`echo $i | cut -d / -f 2` + ln -s %{_texdir}/texmf-dist/fonts/opentype/$i $j +done +popd + +# install binaries +mkdir -p %{buildroot}%{_bindir} +rm -f source/inst/bin/man +cp -a source/inst/bin/* %{buildroot}%{_bindir} + +# install libs +mkdir -p %{buildroot}%{_libdir} +cp -d source/inst/lib/*.so* %{buildroot}%{_libdir} +cp -a source/inst/lib/pkgconfig %{buildroot}%{_libdir} + +# install includes +mkdir -p %{buildroot}%{_includedir} +cp -r source/inst/include/* %{buildroot}%{_includedir} + +# install shared files +mkdir -p %{buildroot}%{_datadir} +mkdir -p %{buildroot}%{_texdir} +pushd source/inst/share +cp -a info %{buildroot}%{_datadir}/ +cp -a man %{buildroot}%{_datadir}/ +cp -a texmf-dist %{buildroot}%{_texdir}/ +popd + +# relocate binaries to %%{_bindir} and fix relative symlinks +pushd %{buildroot}%{_bindir} +for i in `find . -type l`; do +if [ "`readlink $i | grep '..' | wc -l`" == "1" ]; then +l=`readlink $i | sed s,.*texmf,/usr/share/texlive/texmf,` +rm -f $i +ln -s $l $i +fi +done +popd + +# install noarch bits +pushd %{buildroot}%{_texdir} +echo %{mysources} +for noarchsrc in %{mysources}; do + xz -dc $noarchsrc | tar x +done +popd +# Do the weird noarch bits +pushd %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5} | tar x +xz -dc %{SOURCE6} | tar x +xz -dc %{SOURCE7} | tar x +xz -dc %{SOURCE8} | tar x +xz -dc %{SOURCE9} | tar x +xz -dc %{SOURCE10} | tar x +xz -dc %{SOURCE11} | tar x +xz -dc %{SOURCE12} | tar x +xz -dc %{SOURCE13} | tar x +xz -dc %{SOURCE14} | tar x +popd + +# We want the texmf.cnf we patched, not the vanilla one from the kpathsea.tar.xz +cp -a source/texk/kpathsea/texmf.cnf %{buildroot}%{_texdir}/texmf-dist/web2c/texmf.cnf + +# Apply fixes +# We do it here because this is the first time we have the complete tree. +# bz1384067 +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst + +# Patches to component tarballs +pushd %{buildroot}%{_texdir}/texmf-dist + +# neuter tlmgr a bit +patch -p1 < %{_sourcedir}/texlive-20190410-tlmgr-ignore-warning.patch +popd + +# config files in /etc symlinked +mkdir -p %{buildroot}%{_sysconfdir}/texlive/web2c +mkdir -p %{buildroot}%{_sysconfdir}/texlive/dvips/config +mkdir -p %{buildroot}%{_sysconfdir}/texlive/tex/generic/config + +for i in mktex.cnf texmf.cnf updmap.cfg; do + mv %{buildroot}%{_texdir}/texmf-dist/web2c/$i %{buildroot}%{_sysconfdir}/texlive/web2c/ + ln -s %{_sysconfdir}/texlive/web2c/$i %{buildroot}%{_texdir}/texmf-dist/web2c/$i +done + +# configure texmf-local - make it visible to kpathsea +sed -i -e 's|^TEXMFLOCAL.*|TEXMFLOCAL = $TEXMFROOT/texmf-local//|' %{buildroot}%{_sysconfdir}/texlive/web2c/texmf.cnf + +mv %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps %{buildroot}%{_sysconfdir}/texlive/dvips/config/ +ln -s %{_sysconfdir}/texlive/dvips/config/config.ps %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps + +# Move the stock fmtutil.cnf under /etc and make sure everything is commented out +mv %{buildroot}%{usr_fmtutil_cnf} %{buildroot}%{etc_fmtutil_cnf} +sed -i '/^[a-z].*$/s/^/\#\!\ /' %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf + +# Split the stock texmf.cnf file: +# * Look for lines like "# from foo:" and use those as the names of the files +# we generate. +# * Take the text starting at "# from foo:" and ending just before the next +# line containing just '#' (or EOF). +# * remove '#!' +# * Add a single line containing '#' to the beginning +# * Stuff that into a file named "foo" in %%_texdir/fmtutil.cnf.d +# +# This is a bit fragile as the precise format of the stock fmtutil.cnf file +# could change. +# The leading '#' and the "# from foo:" line are added to the output only to +# match the existing format of the file, just in case some tool cares. +mkdir %{buildroot}%{_texdir}/fmtutil.cnf.d +for i in $(grep '^# from .*:$' %{buildroot}%{etc_fmtutil_cnf}|sed 's/^# from //; s/:$//'); do + echo "#" > %{buildroot}%{fmtutil_cnf_d}/$i + sed -n "s/^#! //; /^# from $i:\$/,/^#\$/{/^#\$/!p}" %{buildroot}%{etc_fmtutil_cnf} >> %{buildroot}%{fmtutil_cnf_d}/$i +done + +# Install the fmtutil.cnf generation script +install -D -p -m 755 -t %{buildroot}%{_sbindir} %{SOURCE4} + +# create macro file for building texlive +mkdir -p %{buildroot}%{_rpmmacrodir} +cp -a %{SOURCE1} %{buildroot}%{_rpmmacrodir}/macros.texlive + +# install texlive.tlpdb +cp %{SOURCE2} %{buildroot}%{_texdir} +# make a symlink so texdoc is happy +pushd %{buildroot}%{_texdir}/tlpkg +ln -s ../texlive.tlpdb . +popd + +# install licenses +mkdir -p %{buildroot}%{_texdir}/licenses +pushd %{buildroot}%{_texdir}/licenses +xz -dc %{SOURCE3} | tar x +popd + +# nuke useless tlmgr packaging stuff and doc droppings +rm -f %{buildroot}/%{_texdir}/install-tl +rm -rf %{buildroot}%{_texdir}/tlpkg/gpg/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tltcl/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tlpobj/ +rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg/tlpobj/ +# texconfig needs tlmgr.pl +# We're only including what it needs, no more. +# rm -f %{buildroot}%{_texdir}/texmf-dist/doc/man/man1/tlmgr.1 +# rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +# rm -f %{buildroot}%{_bindir}/tlmgr +# rm -f %{buildroot}%{_texdir}/tlpkg/installer/config.guess +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl.orig +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tl-errmess.vbs +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgrgui.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstall-win32.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstq.vbs +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlcockpit/tlcockpit.sh +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlshell/tlshell.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/COPYING.MinGW-runtime.txt +rm -f %{buildroot}%{_texdir}/tlpkg/installer/ctan-mirrors.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-extl.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-perltk.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-text.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-wizard.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-tl-gui.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/texlive.png +rm -f %{buildroot}%{_bindir}/tlcockpit +rm -f %{buildroot}%{_bindir}/tlshell +rm -rf %{buildroot}%{_datadir}/info/dir +rm -rf %{buildroot}%{_texdir}/readme-txt.dir/README.* +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/info/dir +# nuke unwanted ptexenc devel files +rm -rf %{buildroot}%{_includedir}/ptexenc +# nuke context windows files +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/mswin/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/win64/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/source/* + +# Make this perl module show up in @INC +mkdir -p %{buildroot}%{_datadir}/perl5 +ln -s %{_texdir}/tlpkg/TeXLive %{buildroot}%{_datadir}/perl5/TeXLive + +# not sure why this is here +rm -rf %{buildroot}%{_texdir}/texmf-dist/source/fonts/zhmetrics/ttfonts.map + +pushd %{buildroot}%{_texdir} +# ALWAYS NUKE THIS IF IT IS HERE. +rm -rf texmf-var +# AND NOW WE MAKE THE SYMLINK. +ln -s %{_texmf_var} texmf-var +popd + +# sync built/distro binaries +pushd %{buildroot}%{_bindir} +[ ! -e mfplain ] && ln -s mpost mfplain +[ ! -e texlua ] && ln -s luatex texlua +[ ! -e texluac ] && ln -s luatex texluac + +# remove latexmk +# This lives in the "latexmk" package in Fedora. +rm -f latexmk +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/latexmk +rm -f %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man/man1/latexmk.* + +# Fix symlinks for helper scripts +rm -f bibexport.sh +ln -s /usr/share/texlive/texmf-dist/scripts/bibexport/bibexport.sh bibexport.sh +rm -f texmfstart +ln -s /usr/share/texlive/texmf-dist/scripts/context/ruby/texmfstart.rb texmfstart +rm -rf mktexmf +ln -s /usr/share/texlive/texmf-dist/scripts/texlive/mktexmf mktexmf +rm -rf mkjobtexmf +ln -s /usr/share/texlive/texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl mkjobtexmf + +# fix context +rm -f context +cat > context << EOF +#!/bin/sh +export TEXMF=/usr/share/texlive/texmf-dist; +export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; +export TEXMFCACHE=\$(realpath \$HOME/.cache/texlive); +%{_bindir}/mtxrun --script context "\$@" +EOF +chmod 0755 context +popd + +# Move docs +mkdir -p %{buildroot}%{_datadir}/ +mkdir -p %{buildroot}%{_infodir}/ +cp -R %{buildroot}%{_texdir}/texmf-dist/doc/man %{buildroot}%{_datadir}/ +find %{buildroot}%{_texdir}/texmf-dist/doc/man -type f | xargs rm -f +mv %{buildroot}%{_texdir}/texmf-dist/doc/info/* %{buildroot}%{_infodir}/ + +# Remove cjk-gs-integrate files +# Yes, we probably should remove the source, but there is a possibility that we will +# re-add this subpackage at some point. +rm -rf %{buildroot}%{_bindir}/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate + +# Fix pkgconfig files +for file in $(find %{buildroot}%{_libdir}/pkgconfig/ -type f -name '*.pc') +do sed -i 's|%{_builddir}/%{name}-%{source_date}/source/inst|/usr|g' $file + sed -i 's|/usr/lib|%{_libdir}|g' $file +done + +# Python fixup +# Change shebang in all relevant files in this directory and all subdirectories +# See `man find` for how the `-exec command {} +` syntax works +pushd %{buildroot} +find -type f -exec sed -i '1s|^#!/usr/bin/python$|#!%{__python3}|' {} + +find -type f -exec sed -i '1s|^#!/usr/bin/env python$|#!%{__python3}|' {} + +sed -i '1s|^#!/usr/bin/python |#!%{__python3} |' ./%{_texdir}/texmf-dist/scripts/de-macro/de-macro + +# Get rid of the python2 variant bits from pythontex (we need them to generate the py3 bits, but not in the package) +rm -rf ./%{_texdir}/texmf-dist/scripts/pythontex/pythontex2.py +rm -rf ./%{_texdir}/texmf-dist/scripts/pythontex/depythontex2.py +popd + +# One dir to own +mkdir -p %{buildroot}%{_texdir}/texmf-dist/tex/generic/context/third + +# TeXLive has a fork of psutils +# we namespace those binaries to avoid conflicts with the upstream psutils +pushd %{buildroot}%{_bindir} +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops +do mv $i tl-$i +done +popd +# we also rename the manpages +pushd %{buildroot}%{_mandir}/man1/ +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops psutils +do mv $i.1 tl-$i.1 +done +popd +# and move the config file +mkdir -p %{buildroot}%{_sysconfdir}/texlive/psutils +mv %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg %{buildroot}%{_sysconfdir}/texlive/psutils/paper.cfg +ln -s %{_sysconfdir}/texlive/psutils/paper.cfg %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg + +# Some (most) of the binaries are ending up with RPATH despite our best efforts. +for i in afm2pl afm2tfm aleph bibtex bibtex8 bibtexu chkdvifont chktex ctie ctangle ctwill ctwill-refsort ctwill-twinx cweave detex disdvi dt2dv dv2dt dvi2tty dvibook dviconcat dvicopy dvilj dvilj2p dvilj4 dvilj4l dvipng \ + dvipos dvips dviselect dvispc dvisvgm dvitodvi dvitype eptex euptex gftodvi gftopk gftype gregorio gsftopk hbf2gf kpsewhich luahbtex luatex mag makeindex makejvf mendex mf mflua mft mf-nowin mpost otftotfm msxlint \ + odvicopy odvitype omfonts otangle otp2ocp outocp patgen pbibtex pdftex pdftosrc pktogf pdvitype pfb2pfa pk2bm pktype pltotf pmpost pooltype ppltotf ps2pk ptex ptftopl synctex t4ht tangle tex tex4ht tftopl tie tl-epsffit tl-psbook tl-psnup tl-psresize tl-psselect tl-pstops \ + ttf2afm ttf2pk ttf2tfm ttfdump upbibtex updvitype upmendex upmpost uppltotf uptex uptftopl vftovp vptovf weave wofm2opl wopl2ofm wovf2ovp wovp2ovf xdvi-xaw xdvipdfmx xetex; do +chrpath --delete %{buildroot}%{_bindir}/$i +done + +%ifnarch %{power64} s390 s390x +chrpath --delete %{buildroot}%{_bindir}/luajithbtex +chrpath --delete %{buildroot}%{_bindir}/luajittex +chrpath --delete %{buildroot}%{_bindir}/mfluajit +%endif + +# And remove the rpath from this library. +chrpath --delete %{buildroot}%{_libdir}/libptexenc.so.* + +# This map file provided by texlive-scripts is not useful and confuses lots of things when it ends up in pdftex.map +# Renaming it should prevent it from being included +mv %{buildroot}%{_texdir}/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map %{buildroot}%{_texdir}/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.oldmap + +# SCRIPTLETS + +%pretrans -p <lua> +path = "/usr/share/texmf" +st = posix.stat(path) +if st and st.type == "directory" then + status = os.rename(path, path .. ".rpmmoved") + if not status then + suffix = 0 + while not status do + suffix = suffix + 1 + status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix) + end + os.rename(path, path .. ".rpmmoved") + end +end + +%pre +rm -rf %{_texdir}/texmf-var +rm -rf %{_texmf_var}/* +: + +%posttrans +if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then +[ -x /sbin/restorecon ] && /sbin/restorecon -R %{_texmf_var}/ +fi +: + +%transfiletriggerin -n %{shortname}-context -- %{_texdir} +export TEXMFLOCAL=/usr/share/texlive/texmf-local +%{_bindir}/mtxrun --generate &> /dev/null || : + +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir} +# Commented lines are DEBUG mode +# touch /usr/share/texlive/kpathsea.log +# /usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr --version 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +# /usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr --verbose 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +# /usr/bin/sh -x %{_bindir}/texhash 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +/usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr 2> /dev/null || : +export TEXMF=/usr/share/texlive/texmf-dist +export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c +export TEXMFCACHE=/var/lib/texmf +# %{_bindir}/fmtutil-sys --all 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +%{_bindir}/fmtutil-sys --all &> /dev/null || : + +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir} +/usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr 2> /dev/null || : + +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +# MixedMap list, from directory with _EVERY_ tex subpackage unpacked: for i in `grep -r "addMixedMap" tlpkg/ |cut -d ":" -f 2- | sort -n | uniq | cut -d " " -f 3`; do printf "$i|"; done +# Map list, from directory with _EVERY_ tex subpackage unpacked: for i in `grep -r "addMap" tlpkg/ |cut -d ":" -f 2- | sort -n | uniq | cut -d " " -f 3`; do printf "$i|"; done +# NO OTHER MAPS SHOULD BE ADDED. That road leads to madness. +list=`grep "\.map" | sort -n | uniq` +while read -r line; do + [ -z "$line" ] && continue + shortfile=`basename "$line"` + if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cmupint.map|cyrillic.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then + %{_bindir}/updmap-sys --nomkmap --enable MixedMap=$shortfile >/dev/null 2>&1 || : + else + if `echo $shortfile | grep -Eq 'accanthis.map|Acorn.map|aesupp.map|Alegreya.map|AlgolRevived.map|almendra.map|AnnSton.map|AnonymousPro.map|antt.map|ap.map|arabi.map|archaicprw.map|arev.map|arevvn.map|arimo.map|ArrowsADF.map|ArtNouvc.map|ArtNouv.map|ascii.map|ascmac.map|aspectratio.map|atkinson.map|augie.map|auncial.map|aurical.map|Baskervaldx.map|BaskervilleF.map|belleek.map|bera.map|beuron.map|bguq.map|bitter.map|bkaiu.map|boondox.map|bsmiu.map|BulletsADF.map|burmese.map|cabin.map|caladea.map|calligra.map|cantarell.map|carlito.map|Carrickc.map|CascadiaCodThree.map|ccicons.map|charter.map|chartervn.map|chemarrow.map|cherokee.map|Chivo.map|cinzel.map|cjhebrew.map|Clara.map|ClearSans.map|clm.map|cmathbb.map|cmbrightvn.map|cmcyr.map|cmexb.map|cmin.map|cm-lgc.map|cmsrb.map|Cochineal.map|Coelacanth.map|comfortaa.map|ComicNeueAngular.map|ComicNeue.map|concretevn.map|CormorantGaramond.map|countriesofeurope.map|CourierOneZeroPitch.map|crimson.map|CrimsonPro.map|cs-charter.map|csfonts.map|cuprum.map|cyklop.map|dad.map|dante.map|dejavu-type1.map|dgj.map|dictsym.map|dmj.map|Domitian.map|droidsans.map|droidsansmono.map|droidserif.map|DSSerif.map|dstroke.map|dutchcal.map|EBGaramond.map|EBGaramond-Maths.map|Eichenla.map|EileenBl.map|Eileen.map|Elzevier.map|epigrafica.map|epiolmec.map|erewhon.map|esrelation.map|ESSTIX.map|esvect.map|ETbb.map|fbb.map|fdsymbol.map|fetamont.map|fge.map|fira.map|foekfont.map|fonetika.map|fontawesome5.map|fontawesome.map|forum.map|fourier.map|fourier-utopia-expert.map|fpls.map|frcursive.map|GaramondLibre.map|garuda-c90.map|gbsnu.map|gentium-type1.map|gfsartemisia.map|gfsbaskerville.map|gfsbodoni.map|gfscomplutum.map|gfsdidot.map|gfsneohellenic.map|gfsporson.map|gfssolomos.map|gillius.map|gkaiu.map|go.map|GotIn.map|GoudyIn.map|gptimes.map|grotesqvn.map|Gudea.map|hacm.map|Heuristica.map|HindMadurai.map|ibarra.map|icelandic.map|imfellEnglish.map|InriaSans.map|InriaSerif.map|Inter.map|ipaex-type1.map|iwona.map|josefin.map|Junicode.map|kerkis.map|Kinigcap.map|knitfont.map|Konanur.map|kpfonts.map|Kramer.map|kurier.map|l7x-urwvn.map|lato.map|libertinegc.map|libertine.map|libertinus.map|libertinust1math.map|LibreBaskerville.map|LibreBodoni.map|LibreCaslon.map|LibreFranklin.map|linearA.map|LinguisticsPro.map|lm.map|LobsterTwo.map|Magra.map|marcellus.map|marvosym.map|mathabx.map|mc2j.map|mcj.map|mdbch.map|mdgreek.map|mdici.map|mdpgd.map|mdpus.map|mdput.map|mdsymbol.map|mdugm.map|merriweather.map|miama.map|mintspirit.map|mlm.map|MnSymbol.map|Montserrat.map|MorrisIn.map|mr2j.map|mrj.map|mxedruli.map|nanumfonts.map|nectec.map|newpx.map|newtx.map|newtxsf.map|newtxtt.map|nf.map|niceframe.map|nimbus15.map|norasi-c90.map|noto.map|NotoMath.map|Nouveaud.map|oasy.map|ocrb.map|oinuit.map|OldStandard.map|omega.map|opensans.map|OrnementsADF.map|overlock.map|paratype-type1.map|pazo.map|pbsi.map|phaistos.map|PlayfairDisplay.map|plex.map|plimsoll.map|PoiretOne.map|prodint.map|pxfonts.map|pxtx.map|qag.map|qbk.map|qcr.map|qcs.map|qhv.map|qpl.map|qtm.map|quattrocento.map|qzc.map|Raleway.map|recycle.map|roboto.map|rojud.map|Romantik.map|Rosario.map|Rothdn.map|RoyalIn.map|rsfso.map|Sanremo.map|sansmathaccent.map|sansmathfonts.map|scanpages.map|ScholaX.map|sipa.map|SkakNew.map|skt.map|SourceCodePro.map|SourceSansPro.map|SourceSerifPro.map|spectral.map|sqrcaps.map|Starburst.map|starfont.map|STEPGreekTest.map|STEP.map|SticksTooText.map|stix2.map|stix.map|superiors.map|svrsymbols.map|syriac.map|tabvar.map|tempora.map|tfrupee.map|TheanoDidot.map|TheanoModern.map|TheanoOldStyle.map|tinos.map|tlwg.map|txfonts.map|txttvn.map|TXUprCal.map|Typocaps.map|uag.map|uaq.map|ubk.map|ucr.map|ugq.map|uhv.map|umj.map|unc.map|universalis.map|upl.map|urwvn.map|usy.map|utm.map|utopia.map|uzc.map|uzd.map|vntopia.map|XCharter.map|ybd.map|ybv.map|yes.map|yfrak.map|yly.map|yrd.map|yv1.map|yv2.map|yv3.map|yvo.map|yvt.map|Zallman.map|Zeroswald.map|zi4.map'`; then + %{_bindir}/updmap-sys --nomkmap --enable Map=$shortfile >/dev/null 2>&1 || : + fi + fi +done <<< "$list" +# With the demise of updmap-map, we need to make system maps here. +# %{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : +yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : +%{_bindir}/updmap-sys --quiet --force 2>&1 || : + +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +# I am not sure we need to do this, but it is not harmful. +# TODO: see if we can safely remove everything above the updmap-sys calls +list=`grep "\.map" | sort -n | uniq` +while read -r line; do + [ -z "$line" ] && continue + shortfile=`basename "$line"` + if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cmupint.map|cyrillic.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then + %{_bindir}/updmap-sys --nomkmap --disable MixedMap=$shortfile >/dev/null 2>&1 || : + else + if `echo $shortfile | grep -Eq 'accanthis.map|Acorn.map|aesupp.map|Alegreya.map|AlgolRevived.map|almendra.map|AnnSton.map|AnonymousPro.map|antt.map|ap.map|arabi.map|archaicprw.map|arev.map|arevvn.map|arimo.map|ArrowsADF.map|ArtNouvc.map|ArtNouv.map|ascii.map|ascmac.map|aspectratio.map|atkinson.map|augie.map|auncial.map|aurical.map|Baskervaldx.map|BaskervilleF.map|belleek.map|bera.map|beuron.map|bguq.map|bitter.map|bkaiu.map|boondox.map|bsmiu.map|BulletsADF.map|burmese.map|cabin.map|caladea.map|calligra.map|cantarell.map|carlito.map|Carrickc.map|CascadiaCodThree.map|ccicons.map|charter.map|chartervn.map|chemarrow.map|cherokee.map|Chivo.map|cinzel.map|cjhebrew.map|Clara.map|ClearSans.map|clm.map|cmathbb.map|cmbrightvn.map|cmcyr.map|cmexb.map|cmin.map|cm-lgc.map|cmsrb.map|Cochineal.map|Coelacanth.map|comfortaa.map|ComicNeueAngular.map|ComicNeue.map|concretevn.map|CormorantGaramond.map|countriesofeurope.map|CourierOneZeroPitch.map|crimson.map|CrimsonPro.map|cs-charter.map|csfonts.map|cuprum.map|cyklop.map|dad.map|dante.map|dejavu-type1.map|dgj.map|dictsym.map|dmj.map|Domitian.map|droidsans.map|droidsansmono.map|droidserif.map|DSSerif.map|dstroke.map|dutchcal.map|EBGaramond.map|EBGaramond-Maths.map|Eichenla.map|EileenBl.map|Eileen.map|Elzevier.map|epigrafica.map|epiolmec.map|erewhon.map|esrelation.map|ESSTIX.map|esvect.map|ETbb.map|fbb.map|fdsymbol.map|fetamont.map|fge.map|fira.map|foekfont.map|fonetika.map|fontawesome5.map|fontawesome.map|forum.map|fourier.map|fourier-utopia-expert.map|fpls.map|frcursive.map|GaramondLibre.map|garuda-c90.map|gbsnu.map|gentium-type1.map|gfsartemisia.map|gfsbaskerville.map|gfsbodoni.map|gfscomplutum.map|gfsdidot.map|gfsneohellenic.map|gfsporson.map|gfssolomos.map|gillius.map|gkaiu.map|go.map|GotIn.map|GoudyIn.map|gptimes.map|grotesqvn.map|Gudea.map|hacm.map|Heuristica.map|HindMadurai.map|ibarra.map|icelandic.map|imfellEnglish.map|InriaSans.map|InriaSerif.map|Inter.map|ipaex-type1.map|iwona.map|josefin.map|Junicode.map|kerkis.map|Kinigcap.map|knitfont.map|Konanur.map|kpfonts.map|Kramer.map|kurier.map|l7x-urwvn.map|lato.map|libertinegc.map|libertine.map|libertinus.map|libertinust1math.map|LibreBaskerville.map|LibreBodoni.map|LibreCaslon.map|LibreFranklin.map|linearA.map|LinguisticsPro.map|lm.map|LobsterTwo.map|Magra.map|marcellus.map|marvosym.map|mathabx.map|mc2j.map|mcj.map|mdbch.map|mdgreek.map|mdici.map|mdpgd.map|mdpus.map|mdput.map|mdsymbol.map|mdugm.map|merriweather.map|miama.map|mintspirit.map|mlm.map|MnSymbol.map|Montserrat.map|MorrisIn.map|mr2j.map|mrj.map|mxedruli.map|nanumfonts.map|nectec.map|newpx.map|newtx.map|newtxsf.map|newtxtt.map|nf.map|niceframe.map|nimbus15.map|norasi-c90.map|noto.map|NotoMath.map|Nouveaud.map|oasy.map|ocrb.map|oinuit.map|OldStandard.map|omega.map|opensans.map|OrnementsADF.map|overlock.map|paratype-type1.map|pazo.map|pbsi.map|phaistos.map|PlayfairDisplay.map|plex.map|plimsoll.map|PoiretOne.map|prodint.map|pxfonts.map|pxtx.map|qag.map|qbk.map|qcr.map|qcs.map|qhv.map|qpl.map|qtm.map|quattrocento.map|qzc.map|Raleway.map|recycle.map|roboto.map|rojud.map|Romantik.map|Rosario.map|Rothdn.map|RoyalIn.map|rsfso.map|Sanremo.map|sansmathaccent.map|sansmathfonts.map|scanpages.map|ScholaX.map|sipa.map|SkakNew.map|skt.map|SourceCodePro.map|SourceSansPro.map|SourceSerifPro.map|spectral.map|sqrcaps.map|Starburst.map|starfont.map|STEPGreekTest.map|STEP.map|SticksTooText.map|stix2.map|stix.map|superiors.map|svrsymbols.map|syriac.map|tabvar.map|tempora.map|tfrupee.map|TheanoDidot.map|TheanoModern.map|TheanoOldStyle.map|tinos.map|tlwg.map|txfonts.map|txttvn.map|TXUprCal.map|Typocaps.map|uag.map|uaq.map|ubk.map|ucr.map|ugq.map|uhv.map|umj.map|unc.map|universalis.map|upl.map|urwvn.map|usy.map|utm.map|utopia.map|uzc.map|uzd.map|vntopia.map|XCharter.map|ybd.map|ybv.map|yes.map|yfrak.map|yly.map|yrd.map|yv1.map|yv2.map|yv3.map|yvo.map|yvt.map|Zallman.map|Zeroswald.map|zi4.map'`; then + %{_bindir}/updmap-sys --nomkmap --disable Map=$shortfile >/dev/null 2>&1 || : + fi + fi +done <<< "$list" +# With the demise of updmap-map, we need to make system maps here. +# %{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : +yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : +%{_bindir}/updmap-sys --quiet --force 2>&1 || : + +%transfiletriggerin -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} + +%transfiletriggerpostun -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} + +%files +%{_texdir}/licenses/ +%{_texdir}/texlive.tlpdb +%{_texdir}/tlpkg/texlive.tlpdb +%{_rpmmacrodir}/macros.texlive +# Mostly we own directories. +%dir %{_sysconfdir}/%{shortname} +%dir %{_sysconfdir}/%{shortname}/dvips +%dir %{_sysconfdir}/%{shortname}/dvips/config +%dir %{_sysconfdir}/%{shortname}/tex +%dir %{_sysconfdir}/%{shortname}/tex/generic +%dir %{_sysconfdir}/%{shortname}/tex/generic/config +%dir %{_sysconfdir}/%{shortname}/web2c +%dir %{_texdir} +%dir %{_texdir}/texmf-dist +%dir %{_texdir}/texmf-dist/bibtex/ +%dir %{_texdir}/texmf-dist/bibtex/csf +%dir %{_texdir}/texmf-dist/bibtex/csf/base +%dir %{_texdir}/texmf-dist/doc +%dir %{_texdir}/texmf-dist/doc/info +%dir %{_texdir}/texmf-dist/doc/man +%dir %{_texdir}/texmf-dist/doc/man/man1 +%dir %{_texdir}/texmf-dist/doc/man/man5 +%dir %{_texdir}/texmf-dist/dvips +%dir %{_texdir}/texmf-dist/dvips/config +%dir %{_texdir}/texmf-dist/fonts +%dir %{_texdir}/texmf-dist/fonts/cmap +%dir %{_texdir}/texmf-dist/fonts/enc +%dir %{_texdir}/texmf-dist/fonts/enc/dvips +%dir %{_texdir}/texmf-dist/fonts/map +%dir %{_texdir}/texmf-dist/fonts/map/dvips +%dir %{_texdir}/texmf-dist/fonts/map/glyphlist +%dir %{_texdir}/texmf-dist/fonts/sfd +%dir %{_texdir}/texmf-dist/scripts +%dir %{_texdir}/texmf-dist/scripts/texlive +%dir %{_texdir}/texmf-dist/source +%dir %{_texdir}/texmf-dist/source/fonts +%dir %{_texdir}/texmf-dist/source/fonts/zhmetrics +%dir %{_texdir}/texmf-dist/tex +%dir %{_texdir}/texmf-dist/tex/generic +%dir %{_texdir}/texmf-dist/tex/generic/bibtex +%dir %{_texdir}/texmf-dist/tex/generic/config +%dir %{_texdir}/texmf-dist/tex/latex +%dir %{_texdir}/texmf-dist/tex/lualatex +%dir %{_texdir}/texmf-dist/tex/luatex +%dir %{_texdir}/texmf-dist/tex/xelatex +%dir %{_texdir}/texmf-dist/web2c +%dir %{_texmf_var} +%{_texdir}/texmf-var +%{_texdir}/texmf-local/ +%{_datadir}/texmf +%ghost %{_datadir}/texmf.rpmmoved + +%files -n %{shortname}-a2ping +%license gpl.txt +%{_bindir}/a2ping +%{_texdir}/texmf-dist/scripts/a2ping/ +%{_mandir}/man1/a2ping.1* +%doc %{_texdir}/texmf-dist/doc/support/a2ping/ + +%files -n %{shortname}-accfonts +%license gpl.txt +%{_bindir}/mkt1font +%{_bindir}/vpl2ovp +%{_bindir}/vpl2vpl +%{_texdir}/texmf-dist/scripts/accfonts/ +%{_texdir}/texmf-dist/tex/latex/accfonts/ +%doc %{_texdir}/texmf-dist/doc/fonts/accfonts/ + +%files -n %{shortname}-adhocfilelist +%license lppl1.txt +%{_bindir}/adhocfilelist +%{_texdir}/texmf-dist/scripts/adhocfilelist/ +%{_texdir}/texmf-dist/tex/support/adhocfilelist/ +%doc %{_texdir}/texmf-dist/doc/support/adhocfilelist/ + +%files -n %{shortname}-afm2pl +%license lppl1.txt +%{_bindir}/afm2pl +%{_mandir}/man1/afm2pl.1* +%{_texdir}/texmf-dist/fonts/enc/dvips/afm2pl/ +%{_texdir}/texmf-dist/fonts/lig/afm2pl/ +%{_texdir}/texmf-dist/tex/fontinst/afm2pl/ + +%files -n %{shortname}-albatross +%license bsd.txt +%{_bindir}/albatross +%{_mandir}/man1/albatross.* +%doc %{_texdir}/texmf-dist/doc/support/albatross +%{_texdir}/texmf-dist/scripts/albatross + +%files -n %{shortname}-aleph +%license gpl.txt +%{_bindir}/aleph +# symlink to aleph, not created in 2021 +# %%{_bindir}/lamed +%{_mandir}/man1/aleph.1* +%{_mandir}/man1/lamed.1* +%{fmtutil_cnf_d}/aleph +%doc %{_texdir}/texmf-dist/doc/aleph/ + +%files -n %{shortname}-amstex +%license lppl1.txt +%{_bindir}/amstex +%{_mandir}/man1/amstex.1* +%{_texdir}/texmf-dist/tex/amstex/base/ +%{_texdir}/texmf-dist/tex/amstex/config/ +%{fmtutil_cnf_d}/amstex +%doc %{_texdir}/texmf-dist/doc/amstex/base/ + +%files -n %{shortname}-arara +%license bsd.txt +%{_bindir}/arara +%{_mandir}/man1/arara.* +%{_texdir}/texmf-dist/scripts/arara/ +%doc %{_texdir}/texmf-dist/doc/support/arara/ + +%files -n %{shortname}-attachfile2 +%license lppl1.3.txt +%{_bindir}/pdfatfi +%{_mandir}/man1/pdfatfi.1* +%{_texdir}/texmf-dist/scripts/attachfile2/ +%{_texdir}/texmf-dist/tex/latex/attachfile2/ +%doc %{_texdir}/texmf-dist/doc/latex/attachfile2/ + +%files -n %{shortname}-authorindex +%license lppl1.txt +%{_bindir}/authorindex +%{_texdir}/texmf-dist/scripts/authorindex/ +%{_texdir}/texmf-dist/tex/latex/authorindex/ +%doc %{_texdir}/texmf-dist/doc/latex/authorindex/ + +%files -n %{shortname}-autosp +%license gpl2.txt +%{_bindir}/autosp +%{_bindir}/tex2aspc +%{_mandir}/man1/autosp.1* +%{_mandir}/man1/tex2aspc.1* +%doc %{_texdir}/texmf-dist/doc/generic/autosp/ + +%files -n %{shortname}-axodraw2 +%license gpl3.txt +%{_bindir}/axohelp +%{_mandir}/man1/axohelp.1* +%{_texdir}/texmf-dist/tex/latex/axodraw2/ +%doc %{_texdir}/texmf-dist/doc/latex/axodraw2/ + +%files -n %{shortname}-bib2gls +%license gpl3.txt +%{_bindir}/bib2gls +%{_bindir}/convertgls2bib +%{_texdir}/texmf-dist/scripts/bib2gls/ +%doc %{_texdir}/texmf-dist/doc/support/bib2gls/ + +%files -n %{shortname}-bibexport +%license lppl1.3.txt +%{_bindir}/bibexport +%{_bindir}/bibexport.sh +%{_texdir}/texmf-dist/bibtex/bst/bibexport/ +%{_texdir}/texmf-dist/scripts/bibexport/ +%doc %{_texdir}/texmf-dist/doc/bibtex/bibexport/ + +%files -n %{shortname}-bibtex +%license knuth.txt +%{_bindir}/bibtex +%{_mandir}/man1/bibtex.1* +%{_texdir}/texmf-dist/bibtex/bib/base/xampl.bib +%{_texdir}/texmf-dist/bibtex/bst/base/abbrv.bst +%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +%{_texdir}/texmf-dist/bibtex/bst/base/alpha.bst +%{_texdir}/texmf-dist/bibtex/bst/base/apalike.bst +%{_texdir}/texmf-dist/bibtex/bst/base/ieeetr.bst +%{_texdir}/texmf-dist/bibtex/bst/base/plain.bst +%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst +%{_texdir}/texmf-dist/bibtex/bst/base/unsrt.bst +%doc %{_texdir}/texmf-dist/doc/bibtex/base/README +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxbst.doc +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.bib +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.tex +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.tex +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.sty +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.tex + +%files -n %{shortname}-bibtexu +%license lppl1.txt +%{_bindir}/bibtexu +%doc %{_texdir}/texmf-dist/doc/bibtexu/ +%{_mandir}/man1/bibtexu.1* + +%files -n %{shortname}-bibtex8 +%license gpl.txt +%{_bindir}/bibtex8 +%{_texdir}/texmf-dist/bibtex/csf/base/88591lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/88591sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/README.TEXLIVE +%{_texdir}/texmf-dist/bibtex/csf/base/ascii.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp437lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp866rus.csf +%{_texdir}/texmf-dist/bibtex/csf/base/csfile.txt +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/88592pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp852pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf +%doc %{_texdir}/texmf-dist/doc/bibtex8/ +%{_mandir}/man1/bibtex8.1* + +%files -n %{shortname}-bundledoc +%license lppl1.txt +%{_bindir}/arlatex +%{_bindir}/bundledoc +%{_mandir}/man1/arlatex.1* +%{_mandir}/man1/bundledoc.1* +%{_texdir}/texmf-dist/scripts/bundledoc/ +%{_texdir}/texmf-dist/tex/latex/bundledoc/ +%doc %{_texdir}/texmf-dist/doc/support/bundledoc/ + +%files -n %{shortname}-cachepic +%license lppl1.3.txt +%{_bindir}/cachepic +%{_texdir}/texmf-dist/scripts/cachepic/ +%{_texdir}/texmf-dist/tex/latex/cachepic/ +%doc %{_texdir}/texmf-dist/doc/latex/cachepic/ + +%files -n %{shortname}-checkcites +%license lppl1.3.txt +%{_bindir}/checkcites +%{_texdir}/texmf-dist/scripts/checkcites/ +%doc %{_texdir}/texmf-dist/doc/support/checkcites/ + +%files -n %{shortname}-checklistings +%license lppl1.2.txt +%{_bindir}/checklistings +%{_texdir}/texmf-dist/scripts/checklistings/ +%{_texdir}/texmf-dist/tex/latex/checklistings/ +%doc %{_texdir}/texmf-dist/doc/latex/checklistings/ + +%files -n %{shortname}-chklref +%license gpl3.txt +%{_bindir}/chklref +%{_mandir}/man1/chklref.1* +%{_texdir}/texmf-dist/scripts/chklref/ +%{_texdir}/texmf-dist/tex/latex/chklref/ +%doc %{_texdir}/texmf-dist/doc/support/chklref/ + +%files -n %{shortname}-chktex +%license gpl.txt +%{_bindir}/chktex +%{_bindir}/chkweb +%{_bindir}/deweb +%{_mandir}/man1/chktex.1* +%{_mandir}/man1/chkweb.1* +%{_mandir}/man1/deweb.1* +%{_texdir}/texmf-dist/chktex/ +%{_texdir}/texmf-dist/scripts/chktex/ +%doc %{_texdir}/texmf-dist/doc/chktex/ + +%if 0 +%files -n %{shortname}-cjk-gs-integrate +%license gpl3.txt +%{_bindir}/cjk-gs-integrate +%{_texdir}/texmf-dist/scripts/cjk-gs-integrate/ +%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate/ +%doc %{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate/ +%endif + +%files -n %{shortname}-cjkutils +%license lppl1.txt +%{_bindir}/bg5+latex +%{_bindir}/bg5+pdflatex +%{_bindir}/bg5conv +%{_bindir}/bg5latex +%{_bindir}/bg5pdflatex +%{_bindir}/cef5conv +%{_bindir}/cef5latex +%{_bindir}/cef5pdflatex +%{_bindir}/cefconv +%{_bindir}/ceflatex +%{_bindir}/cefpdflatex +%{_bindir}/cefsconv +%{_bindir}/cefslatex +%{_bindir}/cefspdflatex +%{_bindir}/extconv +%{_bindir}/gbklatex +%{_bindir}/gbkpdflatex +%{_bindir}/hbf2gf +%{_bindir}/sjisconv +%{_bindir}/sjislatex +%{_bindir}/sjispdflatex +%{_mandir}/man1/bg5conv.1* +%{_mandir}/man1/cef5conv.1* +%{_mandir}/man1/cefconv.1* +%{_mandir}/man1/cefsconv.1* +%{_mandir}/man1/extconv.1* +%{_mandir}/man1/hbf2gf.1* +%{_mandir}/man1/sjisconv.1* +%{_texdir}/texmf-dist/hbf2gf/ + +%files -n %{shortname}-clojure-pamphlet +%license gpl3.txt +%{_bindir}/pamphletangler +%{_texdir}/texmf-dist/scripts/clojure-pamphlet/ +%{_texdir}/texmf-dist/tex/latex/clojure-pamphlet/ +%doc %{_texdir}/texmf-dist/doc/support/clojure-pamphlet/ + +%files -n %{shortname}-cluttex +%license gpl3.txt +%{_bindir}/cllualatex +%{_bindir}/cluttex +%{_bindir}/clxelatex +%{_texdir}/texmf-dist/scripts/cluttex/ +%doc %{_texdir}/texmf-dist/doc/support/cluttex/ + +%files -n %{shortname}-context +%{_bindir}/context +%{_bindir}/contextjit +%{_bindir}/luatools +%{_bindir}/mtxrun +%{_bindir}/mtxrunjit +%{_bindir}/texexec +%{_bindir}/texmfstart +%{_mandir}/man1/context.1* +%{_mandir}/man1/luatools.1* +%{_mandir}/man1/mtx-babel.1* +%{_mandir}/man1/mtx-base.1* +%{_mandir}/man1/mtx-bibtex.1* +%{_mandir}/man1/mtx-cache.1* +%{_mandir}/man1/mtx-chars.1* +%{_mandir}/man1/mtx-check.1* +%{_mandir}/man1/mtx-colors.1* +%{_mandir}/man1/mtx-context.1* +%{_mandir}/man1/mtx-dvi.1* +%{_mandir}/man1/mtx-epub.1* +%{_mandir}/man1/mtx-evohome.1* +%{_mandir}/man1/mtx-fcd.1* +%{_mandir}/man1/mtx-flac.1* +%{_mandir}/man1/mtx-fonts.1* +%{_mandir}/man1/mtx-grep.1* +%{_mandir}/man1/mtx-interface.1* +%{_mandir}/man1/mtx-metapost.1* +# %%{_mandir}/man1/mtx-metatex.1* +%{_mandir}/man1/mtx-modules.1* +%{_mandir}/man1/mtx-package.1* +%{_mandir}/man1/mtx-patterns.1* +%{_mandir}/man1/mtx-pdf.1* +%{_mandir}/man1/mtx-plain.1* +%{_mandir}/man1/mtx-profile.1* +%{_mandir}/man1/mtx-rsync.1* +%{_mandir}/man1/mtx-scite.1* +%{_mandir}/man1/mtx-server.1* +%{_mandir}/man1/mtx-texworks.1* +%{_mandir}/man1/mtx-timing.1* +%{_mandir}/man1/mtx-tools.1* +%{_mandir}/man1/mtx-unicode.1* +%{_mandir}/man1/mtx-unzip.1* +%{_mandir}/man1/mtx-update.1* +%{_mandir}/man1/mtx-vscode.1* +%{_mandir}/man1/mtx-watch.1* +%{_mandir}/man1/mtx-youless.1* +%{_mandir}/man1/mtxrun.1* +%{_mandir}/man1/texexec.1* +%{_mandir}/man1/texmfstart.1* +%{_texdir}/texmf-dist/bibtex/bst/context/ +%{_texdir}/texmf-dist/context/ +%{_texdir}/texmf-dist/fonts/afm/hoekwater/context/contnav.afm +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap +%{_texdir}/texmf-dist/fonts/enc/dvips/context/ +# %%{_texdir}/texmf-dist/fonts/fea/context/ +%{_texdir}/texmf-dist/fonts/map/dvips/context/ +%{_texdir}/texmf-dist/fonts/map/luatex/context/ +%{_texdir}/texmf-dist/fonts/map/pdftex/context/ +%{_texdir}/texmf-dist/fonts/misc/xetex/fontmapping/context/ +%{_texdir}/texmf-dist/fonts/tfm/hoekwater/context/ +%{_texdir}/texmf-dist/fonts/type1/hoekwater/context/ +%{_texdir}/texmf-dist/metapost/context/ +%exclude %{_texdir}/texmf-dist/scripts/context/perl/mptopdf.pl +%{_texdir}/texmf-dist/scripts/context/ +%{_texdir}/texmf-dist/tex/context/ +%exclude %{_texdir}/texmf-dist/tex/generic/context/mptopdf +%{_texdir}/texmf-dist/tex/generic/context/ +%{_texdir}/texmf-dist/tex/latex/context/ +%{fmtutil_cnf_d}/context + +%files -n %{shortname}-context-doc +%doc %{_texdir}/texmf-dist/doc/context/ + +%files -n %{shortname}-convbkmk +%{_bindir}/convbkmk +%{_texdir}/texmf-dist/scripts/convbkmk/ +%doc %{_texdir}/texmf-dist/doc/support/convbkmk/ + +%files -n %{shortname}-crossrefware +%license gpl.txt +%{_bindir}/bbl2bib +%{_bindir}/bibdoiadd +%{_bindir}/bibmradd +%{_bindir}/biburl2doi +%{_bindir}/bibzbladd +%{_bindir}/ltx2crossrefxml +%{_mandir}/man1/bbl2bib.1* +%{_mandir}/man1/bibdoiadd.1* +%{_mandir}/man1/bibmradd.1* +%{_mandir}/man1/biburl2doi.1* +%{_mandir}/man1/bibzbladd.1* +%{_mandir}/man1/ltx2crossrefxml.1* +%{_texdir}/texmf-dist/scripts/crossrefware/ +%{_texdir}/texmf-dist/tex/latex/crossrefware/ +%doc %{_texdir}/texmf-dist/doc/support/crossrefware/ + +%files -n %{shortname}-cslatex +%license gpl.txt +%{_bindir}/cslatex +%{_bindir}/pdfcslatex +%{_texdir}/texmf-dist/tex/cslatex/ +%{fmtutil_cnf_d}/cslatex + +%files -n %{shortname}-csplain +%{_bindir}/csplain +%{_bindir}/pdfcsplain +%{_texdir}/texmf-dist/tex/csplain/ +%{fmtutil_cnf_d}/csplain + +%files -n %{shortname}-ctan-o-mat +%license bsd.txt +%{_bindir}/ctan-o-mat +%{_mandir}/man1/ctan-o-mat.1* +%{_texdir}/texmf-dist/scripts/ctan-o-mat/ +%doc %{_texdir}/texmf-dist/doc/support/ctan-o-mat/ + +%files -n %{shortname}-ctanbib +%license lppl1.3.txt +%{_bindir}/ctanbib +%{_mandir}/man1/ctanbib.1* +%{_texdir}/texmf-dist/scripts/ctanbib/ +%doc %{_texdir}/texmf-dist/doc/support/ctanbib/ + +%files -n %{shortname}-ctanify +%license lppl1.3.txt +%{_bindir}/ctanify +%{_mandir}/man1/ctanify.1* +%{_texdir}/texmf-dist/scripts/ctanify/ +%doc %{_texdir}/texmf-dist/doc/latex/ctanify/ + +%files -n %{shortname}-ctanupload +%license gpl3.txt +%{_bindir}/ctanupload +%{_texdir}/texmf-dist/scripts/ctanupload/ +%doc %{_texdir}/texmf-dist/doc/support/ctanupload/ + +%files -n %{shortname}-ctie +%license gpl.txt +%{_bindir}/ctie +%{_mandir}/man1/ctie.1* + +%files -n %{shortname}-cweb +%license knuth.txt +%{_bindir}/ctangle +%{_bindir}/ctwill +%{_bindir}/ctwill-refsort +%{_bindir}/ctwill-twinx +%{_bindir}/cweave +%{_mandir}/man1/ctangle.1* +%{_mandir}/man1/ctwill.1* +%{_mandir}/man1/ctwill-refsort.1* +%{_mandir}/man1/ctwill-twinx.1* +%{_mandir}/man1/cweave.1* +%{_mandir}/man1/cweb.1* +%{_texdir}/texmf-dist/tex/plain/cweb/ +%doc %{_texdir}/texmf-dist/doc/plain/cweb/ + +%files -n %{shortname}-cyrillic +%license lppl1.3.txt +%{_bindir}/rubibtex +%{_bindir}/rumakeindex +%{_mandir}/man1/rubibtex.1* +%{_mandir}/man1/rumakeindex.1* +%{_texdir}/texmf-dist/tex/latex/cyrillic/ +%{_texdir}/texmf-dist/scripts/texlive-extra/rubibtex.sh +%{_texdir}/texmf-dist/scripts/texlive-extra/rumakeindex.sh +%doc %{_texdir}/texmf-dist/doc/latex/cyrillic/ + +%files -n %{shortname}-de-macro +%{_bindir}/de-macro +%{_texdir}/texmf-dist/scripts/de-macro/ +%doc %{_texdir}/texmf-dist/doc/support/de-macro/ + +%files -n %{shortname}-detex +%{_bindir}/detex +%{_mandir}/man1/detex.1* + +%files -n %{shortname}-diadia +%license lppl1.txt +%{_bindir}/diadia +%{_texdir}/texmf-dist/scripts/diadia/ +%{_texdir}/texmf-dist/tex/latex/diadia/ +%doc %{_texdir}/texmf-dist/doc/latex/diadia/ + +%files -n %{shortname}-dosepsbin +%{_bindir}/dosepsbin +%{_mandir}/man1/dosepsbin.1* +%{_texdir}/texmf-dist/scripts/dosepsbin/ +%doc %{_texdir}/texmf-dist/doc/support/dosepsbin/ + +%files -n %{shortname}-dtl +%license pd.txt +%{_bindir}/dt2dv +%{_bindir}/dv2dt +%{_mandir}/man1/dt2dv.1* +%{_mandir}/man1/dv2dt.1* + +%files -n %{shortname}-dtxgen +%license gpl.txt +%{_bindir}/dtxgen +%{_texdir}/texmf-dist/scripts/dtxgen/ +%doc %{_texdir}/texmf-dist/doc/support/dtxgen/ + +%files -n %{shortname}-dvi2tty +%license gpl.txt +%{_bindir}/disdvi +%{_bindir}/dvi2tty +%{_mandir}/man1/disdvi.1* +%{_mandir}/man1/dvi2tty.1* + +%files -n %{shortname}-dviasm +%license gpl3.txt +%{_bindir}/dviasm +%{_mandir}/man1/dviasm.1* +%{_texdir}/texmf-dist/scripts/dviasm/ +%doc %{_texdir}/texmf-dist/doc/latex/dviasm/ + +%files -n %{shortname}-dvicopy +%license gpl.txt +%{_bindir}/dvicopy +%{_mandir}/man1/dvicopy.1* + +%files -n %{shortname}-dvidvi +%{_bindir}/dvidvi +%{_mandir}/man1/dvidvi.1* + +%files -n %{shortname}-dviinfox +%{_bindir}/dviinfox +%{_texdir}/texmf-dist/scripts/dviinfox/ +%doc %{_texdir}/texmf-dist/doc/latex/dviinfox/ + +%files -n %{shortname}-dviljk +%license gpl.txt +%{_bindir}/dvihp +%{_bindir}/dvilj +%{_bindir}/dvilj2p +%{_bindir}/dvilj4 +%{_bindir}/dvilj4l +%{_bindir}/dvilj6 +%{_mandir}/man1/dvihp.1* +%{_mandir}/man1/dvilj.1* +%{_mandir}/man1/dvilj2p.1* +%{_mandir}/man1/dvilj4.1* +%{_mandir}/man1/dvilj4l.1* +%{_mandir}/man1/dvilj6.1* + +%files -n %{shortname}-dviout-util +%{_bindir}/chkdvifont +%{_bindir}/dvispc +%{_mandir}/man1/chkdvifont.1* +%{_mandir}/man1/dvispc.1* + +%files -n %{shortname}-dvipdfmx +%license gpl.txt +%{_bindir}/dvipdfm +%{_bindir}/dvipdfmx +%{_bindir}/dvipdft +%{_bindir}/ebb +%{_bindir}/extractbb +%{_mandir}/man1/dvipdfm.1* +%{_mandir}/man1/dvipdfmx.1* +%{_mandir}/man1/dvipdft.1* +%{_mandir}/man1/ebb.1* +%{_mandir}/man1/extractbb.1* +%{_mandir}/man1/xdvipdfmx.1* +%{_texdir}/texmf-dist/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/cmap/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ +%exclude %{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ +%{_texdir}/tlpkg/tlpostcode/dvipdfmx.pl +%doc %{_texdir}/texmf-dist/doc/dvipdfm/ +%doc %{_texdir}/texmf-dist/doc/dvipdfmx/ + +%files -n %{shortname}-dvipng +%license lgpl2.1.txt +%{_bindir}/dvigif +%{_bindir}/dvipng +%{_mandir}/man1/dvigif.1* +%{_mandir}/man1/dvipng.1* +%{_infodir}/dvipng.info* +%doc %{_texdir}/texmf-dist/doc/dvipng/ + +%files -n %{shortname}-dvipos +%license lppl1.txt +%{_bindir}/dvipos +%{_mandir}/man1/dvipos.1* + +%files -n %{shortname}-dvips +%license gpl.txt +%{_bindir}/afm2tfm +%{_bindir}/dvips +%{_mandir}/man1/afm2tfm.1* +%{_mandir}/man1/dvips.1* +%{_infodir}/dvips.info* +%{_texdir}/texmf-dist/dvips/base/ +%{_texdir}/texmf-dist/dvips/config/alt-rule.pro +%{_texdir}/texmf-dist/dvips/config/canonex.cfg +%{_texdir}/texmf-dist/dvips/config/config.bakoma +%{_texdir}/texmf-dist/dvips/config/config.canonex +%{_texdir}/texmf-dist/dvips/config/config.cx +%{_texdir}/texmf-dist/dvips/config/config.deskjet +%{_texdir}/texmf-dist/dvips/config/config.dvired +%{_texdir}/texmf-dist/dvips/config/config.epson +%{_texdir}/texmf-dist/dvips/config/config.ibmvga +%{_texdir}/texmf-dist/dvips/config/config.ljfour +%{_texdir}/texmf-dist/dvips/config/config.luc +%{_texdir}/texmf-dist/dvips/config/config.mbn +%{_texdir}/texmf-dist/dvips/config/config.mga +%{_texdir}/texmf-dist/dvips/config/config.mirrorprint +%{_texdir}/texmf-dist/dvips/config/config.ot2 +%config(noreplace) %{_sysconfdir}/texlive/dvips/config/config.ps +%{_texdir}/texmf-dist/dvips/config/config.ps +%{_texdir}/texmf-dist/dvips/config/config.qms +%{_texdir}/texmf-dist/dvips/config/config.toshiba +%{_texdir}/texmf-dist/dvips/config/config.unms +%{_texdir}/texmf-dist/dvips/config/config.xyp +%{_texdir}/texmf-dist/dvips/config/cx.cfg +%{_texdir}/texmf-dist/dvips/config/deskjet.cfg +%{_texdir}/texmf-dist/dvips/config/dfaxhigh.cfg +%{_texdir}/texmf-dist/dvips/config/dvired.cfg +%{_texdir}/texmf-dist/dvips/config/epson.cfg +%{_texdir}/texmf-dist/dvips/config/ibmvga.cfg +%{_texdir}/texmf-dist/dvips/config/ljfour.cfg +%{_texdir}/texmf-dist/dvips/config/qms.cfg +%{_texdir}/texmf-dist/dvips/config/toshiba.cfg +%{_texdir}/texmf-dist/fonts/enc/dvips/base/ +%dir %{_texdir}/texmf-dist/fonts/map/dvips/ +%{_texdir}/texmf-dist/tex/generic/dvips/ +%doc %{_texdir}/texmf-dist/doc/dvips/ + +%files -n %{shortname}-dvisvgm +%license gpl.txt +%{_bindir}/dvisvgm +%{_mandir}/man1/dvisvgm.1* + +%files -n %{shortname}-ebong +%license pd.txt +%{_bindir}/ebong +%{_texdir}/texmf-dist/scripts/ebong/ +%doc %{_texdir}/texmf-dist/doc/latex/ebong/ + +%files -n %{shortname}-eplain +%license gpl2.txt +%{_bindir}/eplain +%{_mandir}/man1/eplain.1* +%{_infodir}/eplain.info* +%{_texdir}/texmf-dist/tex/eplain/ +%{fmtutil_cnf_d}/eplain +%doc %{_texdir}/texmf-dist/doc/eplain/ + +%files -n %{shortname}-epspdf +%license gpl.txt +%{_bindir}/epspdf +%{_bindir}/epspdftk +%{_infodir}/epspdf.info* +%{_texdir}/texmf-dist/scripts/epspdf/ +%doc %{_texdir}/texmf-dist/doc/support/epspdf/ + +%files -n %{shortname}-epstopdf +%{_bindir}/epstopdf +%{_bindir}/repstopdf +%{_mandir}/man1/epstopdf.1* +%{_mandir}/man1/repstopdf.1* +%{_texdir}/texmf-dist/scripts/epstopdf/ +%doc %{_texdir}/texmf-dist/doc/support/epstopdf/ + +%files -n %{shortname}-exceltex +%license gpl.txt +%{_bindir}/exceltex +%{_texdir}/texmf-dist/scripts/exceltex/ +%{_texdir}/texmf-dist/tex/latex/exceltex/ +%doc %{_texdir}/texmf-dist/doc/latex/exceltex/ + +%files -n %{shortname}-fig4latex +%license gpl3.txt +%{_bindir}/fig4latex +%{_texdir}/texmf-dist/scripts/fig4latex/ +%doc %{_texdir}/texmf-dist/doc/support/fig4latex/ + +%files -n %{shortname}-findhyph +%license gpl.txt +%{_bindir}/findhyph +%{_mandir}/man1/findhyph.1* +%{_texdir}/texmf-dist/scripts/findhyph/ +%doc %{_texdir}/texmf-dist/doc/support/findhyph/ + +%files -n %{shortname}-fontinst +%license lppl1.txt +%{_bindir}/fontinst +%{_mandir}/man1/fontinst.1* +%{_texdir}/texmf-dist/scripts/texlive-extra/fontinst.sh +%{_texdir}/texmf-dist/tex/fontinst/ +%{_texdir}/texmf-dist/tex/latex/fontinst/ +%doc %{_texdir}/texmf-dist/doc/fonts/fontinst/ + +%files -n %{shortname}-fontools +%license gpl2.txt +%{_bindir}/afm2afm +%{_bindir}/autoinst +%{_bindir}/ot2kpx +%{_mandir}/man1/afm2afm.1* +%{_mandir}/man1/autoinst.1* +%{_mandir}/man1/ot2kpx.1* +%{_texdir}/texmf-dist/fonts/enc/dvips/fontools/ +%{_texdir}/texmf-dist/scripts/fontools/ +%doc %{_texdir}/texmf-dist/doc/support/fontools/ + +%files -n %{shortname}-fontware +%license lppl1.txt +%{_bindir}/pltotf +%{_bindir}/tftopl +%{_bindir}/vftovp +%{_bindir}/vptovf +%{_mandir}/man1/pltotf.1* +%{_mandir}/man1/tftopl.1* +%{_mandir}/man1/vftovp.1* +%{_mandir}/man1/vptovf.1* + +%files -n %{shortname}-fragmaster +%license gpl.txt +%{_bindir}/fragmaster +%{_texdir}/texmf-dist/scripts/fragmaster/ +%doc %{_texdir}/texmf-dist/doc/support/fragmaster/ + +%files -n %{shortname}-getmap +%license lppl1.txt +%{_bindir}/getmapdl +%{_texdir}/texmf-dist/scripts/getmap/ +%{_texdir}/texmf-dist/tex/latex/getmap/ +%doc %{_texdir}/texmf-dist/doc/latex/getmap/ + +%files -n %{shortname}-git-latexdiff +%{_bindir}/git-latexdiff +%{_mandir}/man1/git-latexdiff.* +%doc %{_texdir}/texmf-dist/doc/support/git-latexdiff +%{_texdir}/texmf-dist/scripts/git-latexdiff + +%files -n %{shortname}-glossaries +%license lppl1.3.txt +%{_bindir}/makeglossaries +%{_bindir}/makeglossaries-lite +%{_mandir}/man1/makeglossaries.1* +%{_mandir}/man1/makeglossaries-lite.1* +%{_texdir}/texmf-dist/scripts/glossaries/ +%{_texdir}/texmf-dist/tex/latex/glossaries/ +%doc %{_texdir}/texmf-dist/doc/latex/glossaries/ + +%files -n %{shortname}-glyphlist +%{_texdir}/texmf-dist/fonts/map/glyphlist/ + +%files -n %{shortname}-gregoriotex +%license gpl3.txt +%{_bindir}/gregorio +%{_texdir}/texmf-dist/scripts/gregoriotex/ +%{_texdir}/texmf-dist/tex/lualatex/gregoriotex/ +%{_texdir}/texmf-dist/tex/luatex/gregoriotex/ +%{_texdir}/texmf-dist/fonts/source/gregoriotex/ +%{_texdir}/texmf-dist/fonts/truetype/public/gregoriotex/ +%doc %{_texdir}/texmf-dist/doc/luatex/gregoriotex/ + +%files -n %{shortname}-gsftopk +%license gpl.txt +%{_bindir}/gsftopk +%{_mandir}/man1/gsftopk.1* +%{_texdir}/texmf-dist/dvips/gsftopk/ + +%files -n %{shortname}-hyperxmp +%license lppl1.3c.txt +%{_bindir}/hyperxmp-add-bytecount +%{_mandir}/man1/hyperxmp* +%doc %{_texdir}/texmf-dist/doc/latex/hyperxmp +%{_texdir}/texmf-dist/scripts/hyperxmp +%{_texdir}/texmf-dist/tex/latex/hyperxmp + +%files -n %{shortname}-installfont +%license lppl1.txt +%{_bindir}/installfont-tl +%{_texdir}/texmf-dist/scripts/installfont/ +%doc %{_texdir}/texmf-dist/doc/support/installfont/ + +%files -n %{shortname}-jadetex +%{_bindir}/jadetex +%{_bindir}/pdfjadetex +%{_mandir}/man1/jadetex.1* +%{_mandir}/man1/pdfjadetex.1* +%{_texdir}/texmf-dist/tex/jadetex/ +%{fmtutil_cnf_d}/jadetex +%doc %{_texdir}/texmf-dist/doc/otherformats/jadetex/ + +%files -n %{shortname}-jfmutil +%{_bindir}/jfmutil +%{_texdir}/texmf-dist/scripts/jfmutil/ +%doc %{_texdir}/texmf-dist/doc/fonts/jfmutil/ + +%files -n %{shortname}-ketcindy +%license gpl3.txt +%{_bindir}/ketcindy +%{_texdir}/texmf-dist/scripts/ketcindy/ +%{_texdir}/texmf-dist/tex/latex/ketcindy/ +%doc %{_texdir}/texmf-dist/doc/support/ketcindy/ + +%files -n %{shortname}-kotex-utils +%license lppl1.txt +%{_bindir}/jamo-normalize +%{_bindir}/komkindex +%{_bindir}/ttf2kotexfont +%{_texdir}/texmf-dist/makeindex/kotex-utils/ +%{_texdir}/texmf-dist/scripts/kotex-utils/ +%doc %{_texdir}/texmf-dist/doc/latex/kotex-utils/ + +%files -n %{shortname}-kpathsea +%license lgpl2.1.txt +%{_bindir}/kpseaccess +%{_bindir}/kpsereadlink +%{_bindir}/kpsestat +%{_bindir}/kpsewhich +%{_bindir}/mkocp +%{_bindir}/mkofm +%{_bindir}/mktexfmt +%{_bindir}/texhash +%{_sbindir}/generate-fmtutilcnf +%{_mandir}/man1/kpseaccess.1* +%{_mandir}/man1/kpsereadlink.1* +%{_mandir}/man1/kpsestat.1* +%{_mandir}/man1/kpsewhich.1* +%{_mandir}/man1/mkocp.1* +%{_mandir}/man1/mkofm.1* +%{_mandir}/man1/mktexfmt.1* +%{_mandir}/man1/texhash.1* +%{_mandir}/man5/fmtutil.cnf.5* +%{_infodir}/kpathsea.info* +%{_infodir}/tds.info* +%{_infodir}/web2c.info* +%{_texdir}/texmf-dist/web2c/amiga-pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250cs.tcx +%{_texdir}/texmf-dist/web2c/cp1250pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250t1.tcx +%{_texdir}/texmf-dist/web2c/cp227.tcx +%{_texdir}/texmf-dist/web2c/cp852-cs.tcx +%{_texdir}/texmf-dist/web2c/cp852-pl.tcx +%{_texdir}/texmf-dist/web2c/cp8bit.tcx +%{_texdir}/texmf-dist/web2c/empty.tcx +%config(noreplace) %{_sysconfdir}/texlive/web2c/fmtutil.cnf +%ghost %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%{_texdir}/texmf-dist/web2c/il1-t1.tcx +%{_texdir}/texmf-dist/web2c/il2-cs.tcx +%{_texdir}/texmf-dist/web2c/il2-pl.tcx +%{_texdir}/texmf-dist/web2c/il2-t1.tcx +%{_texdir}/texmf-dist/web2c/kam-cs.tcx +%{_texdir}/texmf-dist/web2c/kam-t1.tcx +%{_texdir}/texmf-dist/web2c/macce-pl.tcx +%{_texdir}/texmf-dist/web2c/macce-t1.tcx +%{_texdir}/texmf-dist/web2c/maz-pl.tcx +%config(noreplace) %{_sysconfdir}/texlive/web2c/mktex.cnf +%{_texdir}/texmf-dist/web2c/mktex.cnf +%{_texdir}/texmf-dist/web2c/mktex.opt +%{_texdir}/texmf-dist/web2c/mktexdir +%{_texdir}/texmf-dist/web2c/mktexdir.opt +%{_texdir}/texmf-dist/web2c/mktexnam +%{_texdir}/texmf-dist/web2c/mktexnam.opt +%{_texdir}/texmf-dist/web2c/mktexupd +%{_texdir}/texmf-dist/web2c/natural.tcx +%{_texdir}/texmf-dist/web2c/tcvn-t5.tcx +%config(noreplace) %{_sysconfdir}/texlive/web2c/texmf.cnf +%{_texdir}/texmf-dist/web2c/texmf.cnf +%{_texdir}/texmf-dist/web2c/viscii-t5.tcx +%dir %{fmtutil_cnf_d} +%doc %{_texdir}/texmf-dist/doc/kpathsea/ +%doc %{_texdir}/texmf-dist/doc/web2c/ + +%files -n %{shortname}-l3build +%license lppl1.3.txt +%{_bindir}/l3build +%{_mandir}/man1/l3build.1* +%{_texdir}/texmf-dist/scripts/l3build/ +%{_texdir}/texmf-dist/tex/latex/l3build/ +%doc %{_texdir}/texmf-dist/doc/latex/l3build/ + +%files -n %{shortname}-lacheck +%license gpl.txt +%{_bindir}/lacheck +%{_mandir}/man1/lacheck.1* + +%files -n %{shortname}-latex +%license lppl1.3.txt +%{_bindir}/dvilualatex +%{_bindir}/latex +%{_bindir}/lualatex +%{_bindir}/pdflatex +%{_mandir}/man1/latex.1* +%{_mandir}/man1/pdflatex.1* +%{_texdir}/texmf-dist/makeindex/latex/ +%{_texdir}/texmf-dist/tex/latex/base/ +%{fmtutil_cnf_d}/latex-bin +%doc %{_texdir}/texmf-dist/doc/latex/base/ + +%files -n %{shortname}-latex-git-log +%license gpl3.txt +%{_bindir}/latex-git-log +%{_mandir}/man1/latex-git-log.1* +%{_texdir}/texmf-dist/scripts/latex-git-log/ +%doc %{_texdir}/texmf-dist/doc/support/latex-git-log/ + +%files -n %{shortname}-latex-papersize +%license apache2.txt +%{_bindir}/latex-papersize +%{_texdir}/texmf-dist/scripts/latex-papersize +%doc %{_texdir}/texmf-dist/doc/support/latex-papersize/ + +%files -n %{shortname}-latex2man +%license lppl1.txt +%{_bindir}/latex2man +%{_mandir}/man1/latex2man.1* +%{_infodir}/latex2man.info* +%{_texdir}/texmf-dist/scripts/latex2man/ +%{_texdir}/texmf-dist/tex/latex/latex2man/ +%doc %{_texdir}/texmf-dist/doc/support/latex2man/ + +%files -n %{shortname}-latex2nemeth +%license gpl3.txt +%{_bindir}/latex2nemeth +%{_texdir}/texmf-dist/scripts/latex2nemeth +%doc %{_texdir}/texmf-dist/doc/support/latex2nemeth + +%files -n %{shortname}-latexdiff +%license gpl3.txt +%{_bindir}/latexdiff +%{_bindir}/latexdiff-vc +%{_bindir}/latexrevise +%{_mandir}/man1/latexdiff-vc.1* +%{_mandir}/man1/latexdiff.1* +%{_mandir}/man1/latexrevise.1* +%{_texdir}/texmf-dist/scripts/latexdiff/ +%doc %{_texdir}/texmf-dist/doc/support/latexdiff/ + +%files -n %{shortname}-latexfileversion +%license lppl1.txt +%{_bindir}/latexfileversion +%{_texdir}/texmf-dist/scripts/latexfileversion/ +%doc %{_texdir}/texmf-dist/doc/support/latexfileversion/ + +%files -n %{shortname}-latexpand +%license bsd.txt +%{_bindir}/latexpand +%{_texdir}/texmf-dist/scripts/latexpand/ +%doc %{_texdir}/texmf-dist/doc/support/latexpand/ + +%files -n %{shortname}-latexindent +%license gpl3.txt +%{_bindir}/latexindent +%{_texdir}/texmf-dist/scripts/latexindent/ +%doc %{_texdir}/texmf-dist/doc/support/latexindent/ + +%files -n %{shortname}-lcdftypetools +%license gpl.txt +%{_bindir}/cfftot1 +%{_bindir}/mmafm +%{_bindir}/mmpfb +%{_bindir}/otfinfo +%{_bindir}/otftotfm +%{_bindir}/t1dotlessj +%{_bindir}/t1lint +%{_bindir}/t1rawafm +%{_bindir}/t1reencode +%{_bindir}/t1testpage +%{_bindir}/ttftotype42 +%{_mandir}/man1/cfftot1.1* +%{_mandir}/man1/mmafm.1* +%{_mandir}/man1/mmpfb.1* +%{_mandir}/man1/otfinfo.1* +%{_mandir}/man1/otftotfm.1* +%{_mandir}/man1/t1dotlessj.1* +%{_mandir}/man1/t1lint.1* +%{_mandir}/man1/t1rawafm.1* +%{_mandir}/man1/t1reencode.1* +%{_mandir}/man1/t1testpage.1* +%{_mandir}/man1/ttftotype42.1* + +%files -n %{shortname}-lib +%{_libdir}/*.so.* +%dir %{_texdir}/texmf-config +%dir %{_texdir}/texmf-config/web2c +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-config/ls-R +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-dist/ls-R +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-local/ls-R + +%files -n %{shortname}-lib-devel +%dir %{_includedir}/kpathsea +%{_includedir}/kpathsea/* +%{_includedir}/synctex/ +%{_includedir}/texlua53/ +%ifnarch %{power64} s390 s390x +%{_includedir}/texluajit/ +%endif +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + +%files -n %{shortname}-light-latex-make +%{_bindir}/llmk +%{_mandir}/man1/llmk* +%doc %{_texdir}/texmf-dist/doc/support/light-latex-make +%{_texdir}/texmf-dist/scripts/light-latex-make + +%files -n %{shortname}-lilyglyphs +%license lppl1.3.txt +%{_bindir}/lily-glyph-commands +%{_bindir}/lily-image-commands +%{_bindir}/lily-rebuild-pdfs +%{_datadir}/fonts/lilyglyphs +%{_texdir}/texmf-dist/fonts/opentype/public/lilyglyphs/ +%{_texdir}/texmf-dist/scripts/lilyglyphs/ +%{_texdir}/texmf-dist/tex/latex/lilyglyphs/ +%doc %{_texdir}/texmf-dist/doc/latex/lilyglyphs/ + +%files -n %{shortname}-listbib +%license gpl.txt +%{_bindir}/listbib +%{_texdir}/texmf-dist/bibtex/bst/listbib/ +%{_texdir}/texmf-dist/scripts/listbib/ +%{_texdir}/texmf-dist/tex/latex/listbib/ +%doc %{_texdir}/texmf-dist/doc/latex/listbib/ + +%files -n %{shortname}-listings-ext +%license lppl1.2.txt +%{_bindir}/listings-ext.sh +%{_texdir}/texmf-dist/scripts/listings-ext/ +%{_texdir}/texmf-dist/tex/latex/listings-ext/ +%doc %{_texdir}/texmf-dist/doc/latex/listings-ext/ + +%files -n %{shortname}-lollipop +%license gpl3.txt +%{_bindir}/lollipop +%{_texdir}/texmf-dist/tex/lollipop/ +%{fmtutil_cnf_d}/lollipop +%doc %{_texdir}/texmf-dist/doc/otherformats/lollipop/ + +%files -n %{shortname}-ltxfileinfo +%license gpl.txt +%{_bindir}/ltxfileinfo +%{_texdir}/texmf-dist/scripts/ltxfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/ltxfileinfo/ + +%files -n %{shortname}-ltximg +%license gpl2.txt +%{_bindir}/ltximg +%{_texdir}/texmf-dist/scripts/ltximg/ +%doc %{_texdir}/texmf-dist/doc/support/ltximg/ + +%files -n %{shortname}-luaotfload +%license gpl2.txt +%{_bindir}/luaotfload-tool +%{_mandir}/man1/luaotfload-tool.1* +%{_mandir}/man5/luaotfload.conf.5* +%{_texdir}/texmf-dist/scripts/luaotfload/ +%{_texdir}/texmf-dist/tex/luatex/luaotfload/ +%doc %{_texdir}/texmf-dist/doc/luatex/luaotfload/ + +%files -n %{shortname}-luahbtex +%license gpl2.txt +%{_bindir}/luahbtex +%{_bindir}/lualatex-dev +%{_mandir}/man1/luahbtex.1* +%{_mandir}/man1/lualatex-dev.1* +%{fmtutil_cnf_d}/luahbtex + +%files -n %{shortname}-luajittex +%license gpl2.txt +%ifnarch %{power64} s390 s390x +%{_bindir}/luajittex +%{_bindir}/luajithbtex +%{_bindir}/texluajit +%{_bindir}/texluajitc +%endif +%{_mandir}/man1/luajittex.1* +%{fmtutil_cnf_d}/luajittex + +%files -n %{shortname}-luatex +%license gpl2.txt +%{_bindir}/dviluatex +%{_bindir}/dvilualatex-dev +%{_bindir}/luacsplain +%{_bindir}/luatex +%{_bindir}/texlua +%{_bindir}/texluac +%{_mandir}/man1/dvilualatex-dev.1* +%{_mandir}/man1/dviluatex.1* +%{_mandir}/man1/luatex.1* +%{_mandir}/man1/texlua.1* +%{_mandir}/man1/texluac.1* +%{_texdir}/texmf-dist/tex/generic/config/luatex-unicode-letters.tex +%{_texdir}/texmf-dist/tex/generic/config/luatexiniconfig.tex +%{_texdir}/texmf-dist/web2c/texmfcnf.lua +%{fmtutil_cnf_d}/luatex +%doc %{_texdir}/texmf-dist/doc/luatex/base/ + +%files -n %{shortname}-lwarp +%license lppl1.3.txt +%{_bindir}/lwarpmk +%{_texdir}/texmf-dist/scripts/lwarp +%{_texdir}/texmf-dist/tex/latex/lwarp +%doc %{_texdir}/texmf-dist/doc/latex/lwarp + +%files -n %{shortname}-lyluatex +%{_texdir}/texmf-dist/scripts/lyluatex/ +%{_texdir}/texmf-dist/tex/luatex/lyluatex/ +%doc %{_texdir}/texmf-dist/doc/support/lyluatex/ + +%files -n %{shortname}-make4ht +%license lppl1.3.txt +%{_bindir}/make4ht +%{_texdir}/texmf-dist/scripts/make4ht/ +%doc %{_texdir}/texmf-dist/doc/support/make4ht/ + +%files -n %{shortname}-makedtx +%license lppl1.txt +%{_bindir}/makedtx +%{_texdir}/texmf-dist/scripts/makedtx/ +%{_texdir}/texmf-dist/tex/latex/makedtx/ +%doc %{_texdir}/texmf-dist/doc/support/makedtx/ + +%files -n %{shortname}-makeindex +%{_bindir}/makeindex +%{_bindir}/mkindex +%{_mandir}/man1/makeindex.1* +%{_mandir}/man1/mkindex.1* +%exclude %{_texdir}/texmf-dist/makeindex/latex/ +%{_texdir}/texmf-dist/makeindex/ +%{_texdir}/texmf-dist/tex/plain/makeindex/ +%doc %{_texdir}/texmf-dist/doc/support/makeindex/ + +%files -n %{shortname}-match_parens +%license gpl.txt +%{_bindir}/match_parens +%{_texdir}/texmf-dist/scripts/match_parens/ +%doc %{_texdir}/texmf-dist/doc/support/match_parens/ + +%files -n %{shortname}-mathspic +%license lppl1.txt +%{_bindir}/mathspic +%{_mandir}/man1/mathspic.1* +%{_texdir}/texmf-dist/scripts/mathspic/ +%{_texdir}/texmf-dist/tex/latex/mathspic/ +%doc %{_texdir}/texmf-dist/doc/latex/mathspic/ + +%files -n %{shortname}-metafont +%license knuth.txt +%{_bindir}/inimf +%{_bindir}/mf +%{_bindir}/mf-nowin +%{_mandir}/man1/inimf.1.* +%{_mandir}/man1/mf-nowin.1* +%{_mandir}/man1/mf.1* +%{_texdir}/texmf-dist/metafont/ +%{fmtutil_cnf_d}/metafont + +%files -n %{shortname}-metapost +%license lgpl2.1.txt +%{_bindir}/dvitomp +%{_bindir}/mfplain +%{_bindir}/mpost +%{_bindir}/r-mpost +%{_mandir}/man1/dvitomp.1* +%{_mandir}/man1/mpost.1* +%{_texdir}/texmf-dist/fonts/afm/metapost/ +%{_texdir}/texmf-dist/fonts/enc/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/map/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/tfm/metapost/ +%{_texdir}/texmf-dist/fonts/type1/metapost/ +%exclude %{_texdir}/texmf-dist/metapost/context/ +%{_texdir}/texmf-dist/metapost/ +%{_texdir}/texmf-dist/tex/generic/metapost/ +%doc %{_texdir}/texmf-dist/doc/metapost/ + +%files -n %{shortname}-mex +%license pd.txt +%{_bindir}/mex +%{_bindir}/pdfmex +%{_bindir}/utf8mex +%{_texdir}/texmf-dist/tex/mex/ +%{fmtutil_cnf_d}/mex +%doc %{_texdir}/texmf-dist/doc/mex/ + +%files -n %{shortname}-mflua +%license gpl2.txt +%{_bindir}/mflua +%{_bindir}/mflua-nowin +%ifnarch %{power64} s390 s390x +%{_bindir}/mfluajit +%{_bindir}/mfluajit-nowin +%endif +%{fmtutil_cnf_d}/mflua +%{_texdir}/texmf-dist/scripts/mflua/ + +%files -n %{shortname}-mfware +%license knuth.txt +%{_bindir}/gftodvi +%{_bindir}/gftopk +%{_bindir}/gftype +%{_bindir}/mft +%{_bindir}/pktogf +%{_bindir}/pktype +%{_mandir}/man1/gftodvi.1* +%{_mandir}/man1/gftopk.1* +%{_mandir}/man1/gftype.1* +%{_mandir}/man1/mft.1* +%{_mandir}/man1/pktogf.1* +%{_mandir}/man1/pktype.1* +%{_texdir}/texmf-dist/mft/ + +%files -n %{shortname}-mf2pt1 +%license lppl1.txt +%{_bindir}/mf2pt1 +%{_infodir}/mf2pt1.info* +%{_texdir}/texmf-dist/metapost/mf2pt1/ +%{_texdir}/texmf-dist/scripts/mf2pt1/ +%doc %{_texdir}/texmf-dist/doc/support/mf2pt1/ + +%files -n %{shortname}-mkgrkindex +%{_bindir}/mkgrkindex +%{_texdir}/texmf-dist/makeindex/mkgrkindex/ +%{_texdir}/texmf-dist/scripts/mkgrkindex/ +%doc %{_texdir}/texmf-dist/doc/support/mkgrkindex/ + +%files -n %{shortname}-mkjobtexmf +%{_bindir}/mkjobtexmf +%{_mandir}/man1/mkjobtexmf.1* +%{_texdir}/texmf-dist/scripts/mkjobtexmf/ +%doc %{_texdir}/texmf-dist/doc/generic/mkjobtexmf/ + +%files -n %{shortname}-mkpic +%license gpl.txt +%{_bindir}/mkpic +%{_texdir}/texmf-dist/scripts/mkpic/ +%doc %{_texdir}/texmf-dist/doc/support/mkpic/ + +%files -n %{shortname}-mltex +%license knuth.txt +%{_bindir}/mllatex +%{_bindir}/mltex +%{_texdir}/texmf-dist/tex/latex/mltex/ +%{_texdir}/texmf-dist/tex/mltex/ +%{fmtutil_cnf_d}/mltex +%doc %{_texdir}/texmf-dist/doc/latex/mltex/ + +%files -n %{shortname}-mptopdf +%license lppl1.txt +%{_bindir}/mptopdf +%{_mandir}/man1/mptopdf.1* +%{_texdir}/texmf-dist/scripts/context/perl/mptopdf.pl +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mis.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mpe.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/syst-tex.mkii +%{_texdir}/texmf-dist/tex/generic/context/mptopdf/ +%{fmtutil_cnf_d}/mptopdf +%doc %{_texdir}/texmf-dist/doc/context/scripts/mkii/mptopdf.man + +%files -n %{shortname}-multibibliography +%license lppl1.3.txt +%{_bindir}/multibibliography +%{_texdir}/texmf-dist/bibtex/bst/multibibliography/ +%{_texdir}/texmf-dist/scripts/multibibliography/ +%{_texdir}/texmf-dist/tex/latex/multibibliography/ +%doc %{_texdir}/texmf-dist/doc/latex/multibibliography/ + +%files -n %{shortname}-musixtex +%license gpl2.txt +%{_bindir}/musixflx +%{_bindir}/musixtex +%{_mandir}/man1/musixflx.1* +%{_mandir}/man1/musixtex.1* +%{_texdir}/texmf-dist/dvips/musixtex/ +%{_texdir}/texmf-dist/scripts/musixtex/ +%{_texdir}/texmf-dist/tex/generic/musixtex/ +%{_texdir}/texmf-dist/tex/latex/musixtex/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtex/ + +%files -n %{shortname}-musixtnt +%license gpl2.txt +%{_bindir}/msxlint +%{_mandir}/man1/msxlint.1* +%{_texdir}/texmf-dist/tex/generic/musixtnt/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtnt/ + +%files -n %{shortname}-m-tx +%license gpl.txt +%{_bindir}/m-tx +%{_bindir}/prepmx +%{_mandir}/man1/prepmx.1* +%{_texdir}/texmf-dist/scripts/m-tx/ +%{_texdir}/texmf-dist/tex/generic/m-tx/ +%{_texdir}/texmf-dist/tex/latex/m-tx/ +%doc %{_texdir}/texmf-dist/doc/generic/m-tx/ + +%files -n %{shortname}-oberdiek +%license lppl1.txt +%{_texdir}/texmf-dist/bibtex/bib/oberdiek/ +%{_texdir}/texmf-dist/tex/generic/oberdiek/ +%{_texdir}/texmf-dist/tex/latex/oberdiek/ +%doc %{_texdir}/texmf-dist/doc/latex/oberdiek/ + +%files -n %{shortname}-omegaware +%license lppl1.txt +%{_bindir}/odvicopy +%{_bindir}/odvitype +%{_bindir}/ofm2opl +%{_bindir}/omfonts +%{_bindir}/opl2ofm +%{_bindir}/otangle +%{_bindir}/otp2ocp +%{_bindir}/outocp +%{_bindir}/ovf2ovp +%{_bindir}/ovp2ovf +%{_bindir}/wofm2opl +%{_bindir}/wopl2ofm +%{_bindir}/wovf2ovp +%{_mandir}/man1/odvicopy.1* +%{_mandir}/man1/odvitype.1* +%{_mandir}/man1/ofm2opl.1* +%{_mandir}/man1/opl2ofm.1* +%{_mandir}/man1/otangle.1* +%{_mandir}/man1/otp2ocp.1* +%{_mandir}/man1/outocp.1* +%{_mandir}/man1/ovf2ovp.1* +%{_mandir}/man1/ovp2ovf.1* + +%files -n %{shortname}-optex +%{_bindir}/optex +%{fmtutil_cnf_d}/optex +%{_mandir}/man1/optex.1* +%{_texdir}/texmf-dist/tex/optex/ +%doc %{_texdir}/texmf-dist/doc/optex/ + +%files -n %{shortname}-patgen +%license knuth.txt +%{_bindir}/patgen +%{_mandir}/man1/patgen.1* + +%files -n %{shortname}-pax +%{_bindir}/pdfannotextractor +%{_texdir}/texmf-dist/scripts/pax/ +%{_texdir}/texmf-dist/tex/latex/pax/ +%doc %{_texdir}/texmf-dist/doc/latex/pax/ + +%files -n %{shortname}-pdfbook2 +%license gpl3.txt +%{_bindir}/pdfbook2 +%{_mandir}/man1/pdfbook2.1* +%{_texdir}/texmf-dist/scripts/pdfbook2/ +%doc %{_texdir}/texmf-dist/doc/support/pdfbook2/ + +%files -n %{shortname}-pdfcrop +%license lppl1.txt +%{_bindir}/pdfcrop +%{_bindir}/rpdfcrop +%{_texdir}/texmf-dist/scripts/pdfcrop/ +%doc %{_texdir}/texmf-dist/doc/support/pdfcrop/ + +%files -n %{shortname}-pdfjam +%license gpl2.txt +%{_bindir}/pdfjam +%{_mandir}/man1/pdfjam.1* +%{_texdir}/texmf-dist/scripts/pdfjam/ +%doc %{_texdir}/texmf-dist/doc/support/pdfjam/ + +%files -n %{shortname}-pdflatexpicscale +%license lppl.txt +%{_bindir}/pdflatexpicscale +%{_texdir}/texmf-dist/scripts/pdflatexpicscale +%doc %{_texdir}/texmf-dist/doc/support/pdflatexpicscale + +%files -n %{shortname}-pdftex +%license gpl.txt +%{_bindir}/etex +%{_bindir}/latex-dev +%{_bindir}/pdfetex +%{_bindir}/pdflatex-dev +%{_bindir}/pdftex +%{_bindir}/simpdftex +%{_mandir}/man1/latex-dev.1* +%{_mandir}/man1/pdfetex.1* +%{_mandir}/man1/pdflatex-dev.1* +%{_mandir}/man1/pdftex.1* +%{_texdir}/texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map +%{_texdir}/texmf-dist/fonts/tfm/public/pdftex/ +%{_texdir}/texmf-dist/fonts/type1/public/pdftex/ +%{_texdir}/texmf-dist/scripts/simpdftex/simpdftex +%{_texdir}/texmf-dist/tex/generic/config/pdftex-dvi.tex +%{_texdir}/texmf-dist/tex/generic/pdftex/ +%{fmtutil_cnf_d}/latex-bin-dev +%{fmtutil_cnf_d}/pdftex +%doc %{_texdir}/texmf-dist/doc/pdftex/ + +%files -n %{shortname}-pdftex-quiet +%license gpl3.txt +%{_bindir}/pdftex-quiet +%{_texdir}/texmf-dist/scripts/pdftex-quiet/ +%doc %{_texdir}/texmf-dist/doc/support/pdftex-quiet/ + +%files -n %{shortname}-pdftosrc +%license gpl2.txt +%{_bindir}/pdftosrc +%{_mandir}/man1/pdftosrc.1* + +%files -n %{shortname}-pdfxup +%license lppl1.3.txt +%{_bindir}/pdfxup +%{_mandir}/man1/pdfxup.1* +%{_texdir}/texmf-dist/tex/latex/pdfxup/ +%{_texdir}/texmf-dist/scripts/pdfxup/ +%doc %{_texdir}/texmf-dist/doc/support/pdfxup/ + +%files -n %{shortname}-pedigree-perl +%license gpl2.txt +%{_bindir}/pedigree +%{_mandir}/man1/pedigree.1* +%{_texdir}/texmf-dist/scripts/pedigree-perl/ +%doc %{_texdir}/texmf-dist/doc/support/pedigree-perl/ + +%files -n %{shortname}-perltex +%license lppl1.txt +%{_bindir}/perltex +%{_mandir}/man1/perltex.1* +%{_texdir}/texmf-dist/scripts/perltex/ +%{_texdir}/texmf-dist/tex/latex/perltex/ +%doc %{_texdir}/texmf-dist/doc/latex/perltex/ + +%files -n %{shortname}-petri-nets +%license gpl.txt +%{_bindir}/pn2pdf +%{_texdir}/texmf-dist/scripts/petri-nets/ +%{_texdir}/texmf-dist/tex/generic/petri-nets/ +%doc %{_texdir}/texmf-dist/doc/generic/petri-nets/ + +%files -n %{shortname}-pfarrei +%license lppl1.3.txt +%{_bindir}/a5toa4 +%{_bindir}/pfarrei +%{_texdir}/texmf-dist/scripts/pfarrei/ +%{_texdir}/texmf-dist/tex/latex/pfarrei/ +%doc %{_texdir}/texmf-dist/doc/latex/pfarrei/ + +%files -n %{shortname}-pkfix +%license lppl1.3.txt +%{_bindir}/pkfix +%{_texdir}/texmf-dist/scripts/pkfix/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix/ + +%files -n %{shortname}-pkfix-helper +%license lppl1.txt +%{_bindir}/pkfix-helper +%{_mandir}/man1/pkfix-helper.1* +%{_texdir}/texmf-dist/scripts/pkfix-helper/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix-helper/ + +%files -n %{shortname}-pmx +%license gpl2.txt +%{_bindir}/pmxab +%{_bindir}/scor2prt +%{_mandir}/man1/pmxab.1* +%{_mandir}/man1/scor2prt.1* +%{_texdir}/texmf-dist/tex/generic/pmx/ +%doc %{_texdir}/texmf-dist/doc/generic/pmx/ + +%files -n %{shortname}-pmxchords +%license gpl2.txt +%{_bindir}/pmxchords +%{_mandir}/man1/pmxchords.1* +%{_texdir}/texmf-dist/scripts/pmxchords/ +%{_texdir}/texmf-dist/tex/generic/pmxchords/ +%doc %{_texdir}/texmf-dist/doc/pmxchords/ + +%files -n %{shortname}-pst2pdf +%license gpl2.txt +%{_bindir}/pst2pdf +%{_texdir}/texmf-dist/scripts/pst2pdf/ +%doc %{_texdir}/texmf-dist/doc/support/pst2pdf/ + +%files -n %{shortname}-pst-pdf +%license lppl1.txt +%{_bindir}/ps4pdf +%{_texdir}/texmf-dist/scripts/pst-pdf/ +%{_texdir}/texmf-dist/tex/latex/pst-pdf/ +%doc %{_texdir}/texmf-dist/doc/latex/pst-pdf/ + +%files -n %{shortname}-psutils +%{_bindir}/tl-epsffit +%{_bindir}/tl-extractres +%{_bindir}/tl-includeres +%{_bindir}/tl-psbook +%{_bindir}/tl-psjoin +%{_bindir}/tl-psnup +%{_bindir}/tl-psresize +%{_bindir}/tl-psselect +%{_bindir}/tl-pstops +%{_mandir}/man1/tl-epsffit.1* +%{_mandir}/man1/tl-extractres.1* +%{_mandir}/man1/tl-includeres.1* +%{_mandir}/man1/tl-psbook.1* +%{_mandir}/man1/tl-psjoin.1* +%{_mandir}/man1/tl-psnup.1* +%{_mandir}/man1/tl-psresize.1* +%{_mandir}/man1/tl-psselect.1* +%{_mandir}/man1/tl-pstops.1* +%{_mandir}/man1/tl-psutils.1* +%{_texdir}/texmf-dist/dvips/getafm/ +%{_texdir}/texmf-dist/psutils/ +%dir %{_sysconfdir}/texlive/psutils +%config(noreplace) %{_sysconfdir}/texlive/psutils/paper.cfg +%{_texdir}/texmf-dist/scripts/psutils + +%files -n %{shortname}-ps2eps +%license gpl.txt +%{_bindir}/bbox +%{_bindir}/ps2eps +%{_mandir}/man1/bbox.1* +%{_mandir}/man1/ps2eps.1* +%{_texdir}/texmf-dist/scripts/ps2eps/ + +%files -n %{shortname}-ps2pk +%license other-free.txt +%{_bindir}/mag +%{_bindir}/pfb2pfa +%{_bindir}/pk2bm +%{_bindir}/ps2pk +%{_mandir}/man1/mag.1* +%{_mandir}/man1/pfb2pfa.1* +%{_mandir}/man1/pk2bm.1* +%{_mandir}/man1/ps2pk.1* + +%files -n %{shortname}-ptex +%{_bindir}/eptex +%{_bindir}/makejvf +%{_bindir}/mendex +%{_bindir}/pbibtex +%{_bindir}/pdvitomp +%{_bindir}/pdvitype +%{_bindir}/platex +%{_bindir}/platex-dev +%{_bindir}/pmpost +%{_bindir}/ppltotf +%{_bindir}/ptex +%{_bindir}/ptftopl +%{_bindir}/r-pmpost +%{_mandir}/man1/eptex.1* +%{_mandir}/man1/makejvf.1* +%{_mandir}/man1/mendex.1* +%{_mandir}/man1/platex-dev.1* +%{_mandir}/man1/ppltotf.1* +%{_mandir}/man1/ptex.1* +%{_mandir}/man1/ptftopl.1* +%{fmtutil_cnf_d}/platex +%{fmtutil_cnf_d}/ptex + +%files -n %{shortname}-ptex-fontmaps +%license gpl3.txt +%license pd.txt +%{_bindir}/kanji-config-updmap +%{_bindir}/kanji-config-updmap-sys +%{_bindir}/kanji-config-updmap-user +%{_bindir}/kanji-fontmap-creator +%{_texdir}/texmf-dist/fonts/cmap/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/misc/ptex-fontmaps/ +%{_texdir}/texmf-dist/scripts/ptex-fontmaps +%{_texdir}/tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl +%doc %{_texdir}/texmf-dist/doc/fonts/ptex-fontmaps + +%files -n %{shortname}-ptex2pdf +%license gpl2.txt +%{_bindir}/ptex2pdf +%{_texdir}/texmf-dist/scripts/ptex2pdf/ +%{_texdir}/tlpkg/tlpostcode/ptex2pdf-tlpost.pl +%doc %{_texdir}/texmf-dist/doc/latex/ptex2pdf/ + +%files -n %{shortname}-purifyeps +%license lppl1.txt +%{_bindir}/purifyeps +%{_mandir}/man1/purifyeps.1* +%{_texdir}/texmf-dist/scripts/purifyeps/ +%doc %{_texdir}/texmf-dist/doc/support/purifyeps/ + +%files -n %{shortname}-pygmentex +%license lppl1.3.txt +%{_bindir}/pygmentex +%{_texdir}/texmf-dist/scripts/pygmentex/ +%{_texdir}/texmf-dist/tex/latex/pygmentex/ +%doc %{_texdir}/texmf-dist/doc/latex/pygmentex/ + +%files -n %{shortname}-pythontex +%license lppl1.3.txt +%{_bindir}/depythontex +%{_bindir}/pythontex +%{_texdir}/texmf-dist/scripts/pythontex/ +%{_texdir}/texmf-dist/tex/latex/pythontex/ +%doc %{_texdir}/texmf-dist/doc/latex/pythontex/ + +%files -n %{shortname}-rubik +%license lppl1.3.txt +%{_bindir}/rubikrotation +%{_mandir}/man1/rubikrotation.1* +%{_texdir}/texmf-dist/scripts/rubik/ +%{_texdir}/texmf-dist/tex/latex/rubik/ +%doc %{_texdir}/texmf-dist/doc/latex/rubik/ + +%files -n %{shortname}-seetexk +%{_bindir}/dvibook +%{_bindir}/dviconcat +%{_bindir}/dviselect +%{_bindir}/dvitodvi +%{_mandir}/man1/dvibook.1* +%{_mandir}/man1/dviconcat.1* +%{_mandir}/man1/dviselect.1* +%{_mandir}/man1/dvitodvi.1* + +%files -n %{shortname}-spix +%license gpl3.txt +%{_bindir}/spix +%{_mandir}/man1/spix* +%doc %{_texdir}/texmf-dist/doc/support/spix +%{_texdir}/texmf-dist/scripts/spix + +%files -n %{shortname}-splitindex +%license lppl1.txt +%{_bindir}/splitindex +%{_mandir}/man1/splitindex.1* +%{_texdir}/texmf-dist/scripts/splitindex/ +%{_texdir}/texmf-dist/tex/generic/splitindex/ +%{_texdir}/texmf-dist/tex/latex/splitindex/ +%doc %{_texdir}/texmf-dist/doc/latex/splitindex/ + +%files -n %{shortname}-srcredact +%license gpl2.txt +%{_bindir}/srcredact +%{_mandir}/man1/srcredact.1* +%{_texdir}/texmf-dist/scripts/srcredact/ +%doc %{_texdir}/texmf-dist/doc/support/srcredact/ + +%files -n %{shortname}-sty2dtx +%license gpl3.txt +%{_bindir}/sty2dtx +%{_mandir}/man1/sty2dtx.1* +%{_texdir}/texmf-dist/scripts/sty2dtx/ +%doc %{_texdir}/texmf-dist/doc/support/sty2dtx/ + +%files -n %{shortname}-svn-multi +%license lppl1.txt +%{_bindir}/svn-multi +%{_texdir}/texmf-dist/scripts/svn-multi/ +%{_texdir}/texmf-dist/tex/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/support/svn-multi/ + +%files -n %{shortname}-synctex +%license lppl1.txt +%{_bindir}/synctex +%{_mandir}/man1/synctex.1* +%{_mandir}/man5/synctex.5* + +%files -n %{shortname}-tex +%license knuth.txt +%{_bindir}/initex +%{_bindir}/tex +%{_mandir}/man1/initex.1* +%{_mandir}/man1/tex.1* +%{fmtutil_cnf_d}/tex + +%files -n %{shortname}-tex4ebook +%license lppl1.3.txt +%{_bindir}/tex4ebook +%{_texdir}/texmf-dist/scripts/tex4ebook/ +%{_texdir}/texmf-dist/tex/latex/tex4ebook/ +%doc %{_texdir}/texmf-dist/doc/support/tex4ebook/ + +%files -n %{shortname}-tex4ht +%license lppl1.txt +%{_bindir}/ht +%{_bindir}/htcontext +%{_bindir}/htlatex +%{_bindir}/htmex +%{_bindir}/httex +%{_bindir}/httexi +%{_bindir}/htxelatex +%{_bindir}/htxetex +%{_bindir}/mk4ht +%{_bindir}/t4ht +%{_bindir}/tex4ht +%{_bindir}/xhlatex +%{_texdir}/texmf-dist/scripts/tex4ht/ +%{_texdir}/texmf-dist/tex/generic/tex4ht/ +%{_texdir}/texmf-dist/tex4ht/ +%doc %{_texdir}/texmf-dist/doc/generic/tex4ht/ + +%files -n %{shortname}-texcount +%license lppl1.txt +%{_bindir}/texcount +%{_texdir}/texmf-dist/scripts/texcount/ +%doc %{_texdir}/texmf-dist/doc/support/texcount/ + +%files -n %{shortname}-texdef +%license gpl3.txt +%{_bindir}/latexdef +%{_bindir}/texdef +%{_texdir}/texmf-dist/scripts/texdef/ +%doc %{_texdir}/texmf-dist/doc/support/texdef/ + +%files -n %{shortname}-texdiff +%license gpl.txt +%{_bindir}/texdiff +%{_texdir}/texmf-dist/scripts/texdiff +%{_mandir}/man1/texdiff.1* +%doc %{_texdir}/texmf-dist/doc/support/texdiff/ + +%files -n %{shortname}-texdirflatten +%{_bindir}/texdirflatten +%{_mandir}/man1/texdirflatten.1* +%{_texdir}/texmf-dist/scripts/texdirflatten/ +%doc %{_texdir}/texmf-dist/doc/support/texdirflatten/ + +%files -n %{shortname}-texdoc +%license gpl.txt +%{_bindir}/texdoc +%{_mandir}/man1/texdoc.1* +%{_texdir}/texmf-dist/scripts/texdoc/ +%{_texdir}/texmf-dist/texdoc/ +%doc %{_texdir}/texmf-dist/doc/support/texdoc/ + +%files -n %{shortname}-texdoctk +%license gpl.txt +%{_bindir}/texdoctk +%{_mandir}/man1/texdoctk.1* +%{_texdir}/texmf-dist/scripts/texdoctk/ +%{_texdir}/texmf-dist/texdoctk/ + +%files -n %{shortname}-texfot +%license pd.txt +%{_bindir}/texfot +%{_mandir}/man1/texfot.1* +%{_texdir}/texmf-dist/scripts/texfot/ +%doc %{_texdir}/texmf-dist/doc/support/texfot/ + +%files -n %{shortname}-texliveonfly +%license gpl3.txt +%{_bindir}/texliveonfly +%{_texdir}/texmf-dist/scripts/texliveonfly/ +%doc %{_texdir}/texmf-dist/doc/support/texliveonfly/ + +%files -n %{shortname}-texlive-en +%{_infodir}/tlbuild.info* +%doc %{_texdir}/texmf-dist/doc/texlive/texlive-en/ +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.html +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.pdf + +%files -n %{shortname}-texlive-scripts +%license lppl1.txt +%{_bindir}/fmtutil +%{_bindir}/fmtutil-sys +%{_bindir}/fmtutil-user +%{_bindir}/mktexlsr +%{_bindir}/mktexmf +%{_bindir}/mktexpk +%{_bindir}/mktextfm +%{_bindir}/updmap +%{_bindir}/updmap-sys +%{_bindir}/updmap-user +%{_bindir}/rungs +%{_mandir}/man1/fmtutil.1* +%{_mandir}/man1/fmtutil-sys.1* +%{_mandir}/man1/fmtutil-user.1* +%{_mandir}/man1/install-tl.1* +%{_mandir}/man1/mktexlsr.1* +%{_mandir}/man1/mktexmf.1* +%{_mandir}/man1/mktexpk.1* +%{_mandir}/man1/mktextfm.1* +%{_mandir}/man1/updmap.1* +%{_mandir}/man1/updmap-sys.1* +%{_mandir}/man1/updmap-user.1* +%{_mandir}/man5/updmap.cfg.5* +%{_texdir}/texmf-config/web2c/updmap.cfg +%config(noreplace) %{_sysconfdir}/texlive/web2c/updmap.cfg +%{_texdir}/texmf-dist/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/enc/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/map/dvips/tetex/ +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-user.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil.pl +%{_texdir}/texmf-dist/scripts/texlive/mktexlsr* +%{_texdir}/texmf-dist/scripts/texlive/mktexmf +%{_texdir}/texmf-dist/scripts/texlive/mktexpk +%{_texdir}/texmf-dist/scripts/texlive/mktextfm +%{_texdir}/texmf-dist/scripts/texlive/rungs.tlu +%{_texdir}/texmf-dist/scripts/texlive/updmap-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap-user.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap.pl +%{_texdir}/texmf-dist/web2c/updmap.cfg + +%files -n %{shortname}-texlive-scripts-extra +%license gpl.txt +%license lppl1.txt +%{_bindir}/allcm +%{_bindir}/allec +%{_bindir}/allneeded +%{_bindir}/dvi2fax +%{_bindir}/dvired +%{_bindir}/e2pall +%{_bindir}/kpsepath +%{_bindir}/kpsetool +%{_bindir}/kpsewhere +%{_bindir}/kpsexpand +%{_bindir}/ps2frag +%{_bindir}/pslatex +%{_bindir}/texconfig-dialog +%{_bindir}/texconfig-sys +%{_bindir}/texconfig +%{_bindir}/texlinks +%{_mandir}/man1/allcm.1* +%{_mandir}/man1/allec.1* +%{_mandir}/man1/allneeded.1* +%{_mandir}/man1/dvi2fax.1* +%{_mandir}/man1/dvired.1* +%{_mandir}/man1/e2pall.1* +%{_mandir}/man1/kpsepath.1* +%{_mandir}/man1/kpsetool.1* +%{_mandir}/man1/kpsewhere.1* +%{_mandir}/man1/kpsexpand.1* +%{_mandir}/man1/ps2frag.1* +%{_mandir}/man1/pslatex.1* +%{_mandir}/man1/texconfig-sys.1* +%{_mandir}/man1/texconfig.1* +%{_mandir}/man1/texlinks.1* +%{_texdir}/texmf-dist/texconfig/ +%{_texdir}/texmf-dist/scripts/texlive-extra/ + + +%files -n %{shortname}-texlive.infra +%license lppl1.txt +%{_bindir}/tlmgr +%{_texdir}/texmf-dist/web2c/fmtutil-hdr.cnf +%{_texdir}/texmf-dist/web2c/updmap-hdr.cfg +%{_texdir}/LICENSE.CTAN +%{_texdir}/LICENSE.TL +%{_texdir}/README +%{_texdir}/README.usergroups +%{_texdir}/index.html +%{_texdir}/readme-html.dir/readme.cs.html +%{_texdir}/readme-html.dir/readme.de.html +%{_texdir}/readme-html.dir/readme.en.html +%{_texdir}/readme-html.dir/readme.es.html +%{_texdir}/readme-html.dir/readme.fr.html +%{_texdir}/readme-html.dir/readme.it.html +%{_texdir}/readme-html.dir/readme.ja.html +%{_texdir}/readme-html.dir/readme.pl.html +%{_texdir}/readme-html.dir/readme.pt-br.html +%{_texdir}/readme-html.dir/readme.ru.html +%{_texdir}/readme-html.dir/readme.sk.html +%{_texdir}/readme-html.dir/readme.sr.html +%{_texdir}/readme-html.dir/readme.vi.html +%{_texdir}/readme-html.dir/readme.zh-cn.html +%{_texdir}/release-texlive.txt +%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +%{_texdir}/tlpkg/installer/config.guess +%{_texdir}/tlpkg/TeXLive/TLConfFile.pm +%{_texdir}/tlpkg/TeXLive/TLConfig.pm +%{_texdir}/tlpkg/TeXLive/TLCrypto.pm +%{_texdir}/tlpkg/TeXLive/TLDownload.pm +%{_texdir}/tlpkg/TeXLive/TLPDB.pm +%{_texdir}/tlpkg/TeXLive/TLPOBJ.pm +%{_texdir}/tlpkg/TeXLive/TLPSRC.pm +%{_texdir}/tlpkg/TeXLive/TLPaper.pm +%{_texdir}/tlpkg/TeXLive/TLTREE.pm +%{_texdir}/tlpkg/TeXLive/TLUtils.pm +%{_texdir}/tlpkg/TeXLive/TLWinGoo.pm +%{_texdir}/tlpkg/TeXLive/TeXCatalogue.pm +%{_texdir}/tlpkg/TeXLive/trans.pl +%{_datadir}/perl5/TeXLive +%{_mandir}/man1/tlmgr.1* +%doc %{_texdir}/texmf-dist/scripts/texlive/NEWS +%doc %{_texdir}/tlpkg/README + +%files -n %{shortname}-texloganalyser +%{_bindir}/texloganalyser +%{_texdir}/texmf-dist/scripts/texloganalyser/ +%doc %{_texdir}/texmf-dist/doc/support/texloganalyser/ + +%files -n %{shortname}-texosquery +%license lppl1.3.txt +%{_bindir}/texosquery* +%{_texdir}/texmf-dist/scripts/texosquery +%{_texdir}/texmf-dist/tex/latex/texosquery +%doc %{_texdir}/texmf-dist/doc/support/texosquery + +%files -n %{shortname}-texplate +%license bsd.txt +%{_bindir}/texplate +%{_texdir}/texmf-dist/scripts/texplate +%doc %{_texdir}/texmf-dist/doc/support/texplate + +%files -n %{shortname}-texsis +%license lppl1.txt +%{_bindir}/texsis +%{_mandir}/man1/texsis.1* +%{_texdir}/texmf-dist/bibtex/bst/texsis/ +%{_texdir}/texmf-dist/tex/texsis/ +%{fmtutil_cnf_d}/texsis +%doc %{_texdir}/texmf-dist/doc/otherformats/texsis/ + +%files -n %{shortname}-texware +%license knuth.txt +%{_bindir}/dvitype +%{_bindir}/pooltype +%{_mandir}/man1/dvitype.1* +%{_mandir}/man1/pooltype.1* + +%files -n %{shortname}-thumbpdf +%license lppl1.txt +%{_bindir}/thumbpdf +%{_mandir}/man1/thumbpdf.1* +%{_texdir}/texmf-dist/scripts/thumbpdf/ +%{_texdir}/texmf-dist/tex/generic/thumbpdf/ +%doc %{_texdir}/texmf-dist/doc/generic/thumbpdf/ + +%files -n %{shortname}-tie +%{_bindir}/tie +%{_mandir}/man1/tie.1* + +%files -n %{shortname}-tikztosvg +%license gpl3.txt +%{_bindir}/tikztosvg +%{_mandir}/man1/tikztosvg* +%doc %{_texdir}/texmf-dist/doc/support/tikztosvg +%{_texdir}/texmf-dist/scripts/tikztosvg + +%files -n %{shortname}-tpic2pdftex +%license gpl.txt +%{_bindir}/tpic2pdftex +%{_mandir}/man1/tpic2pdftex.1* +%doc %{_texdir}/texmf-dist/doc/tpic2pdftex/ + +%files -n %{shortname}-ttfutils +%license lppl1.txt +%{_bindir}/ttf2afm +%{_bindir}/ttf2pk +%{_bindir}/ttf2tfm +%{_bindir}/ttfdump +%{_mandir}/man1/ttf2afm.1* +%{_mandir}/man1/ttf2pk.1* +%{_mandir}/man1/ttf2tfm.1* +%{_mandir}/man1/ttfdump.1* +%{_texdir}/texmf-dist/fonts/enc/ttf2pk/ +%{_texdir}/texmf-dist/fonts/sfd/ttf2pk/ +%{_texdir}/texmf-dist/ttf2pk/ +%doc %{_texdir}/texmf-dist/doc/ttf2pk/ + +%files -n %{shortname}-typeoutfileinfo +%license lppl1.3.txt +%{_bindir}/typeoutfileinfo +%{_texdir}/texmf-dist/scripts/typeoutfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/typeoutfileinfo/ + +%files -n %{shortname}-ulqda +%license lppl1.txt +%{_bindir}/ulqda +%{_texdir}/texmf-dist/scripts/ulqda/ +%{_texdir}/texmf-dist/tex/latex/ulqda/ +%doc %{_texdir}/texmf-dist/doc/latex/ulqda/ + +%files -n %{shortname}-uptex +%{_bindir}/euptex +%{_bindir}/r-upmpost +%{_bindir}/upbibtex +%{_bindir}/updvitomp +%{_bindir}/updvitype +%{_bindir}/uplatex +%{_bindir}/uplatex-dev +%{_bindir}/upmendex +%{_bindir}/upmpost +%{_bindir}/uppltotf +%{_bindir}/uptex +%{_bindir}/uptftopl +%{_bindir}/wovp2ovf +%{_mandir}/man1/euptex.1* +%{_mandir}/man1/uplatex.1* +%{_mandir}/man1/uplatex-dev.1* +%{_mandir}/man1/upmendex.1* +%{_mandir}/man1/uppltotf.1* +%{_mandir}/man1/uptex.1* +%{_mandir}/man1/uptftopl.1* +%{fmtutil_cnf_d}/uplatex +%{fmtutil_cnf_d}/uptex +%doc %{_texdir}/texmf-dist/doc/upmendex/ +%doc %{_texdir}/texmf-dist/doc/uplatex/ + +%files -n %{shortname}-urlbst +%license gpl.txt +%{_bindir}/urlbst +%{_texdir}/texmf-dist/bibtex/bst/urlbst/ +%{_texdir}/texmf-dist/scripts/urlbst/ +%doc %{_texdir}/texmf-dist/doc/bibtex/urlbst/ + +%files -n %{shortname}-velthuis +%license gpl.txt +%{_bindir}/devnag +%{_mandir}/man1/devnag.1* +%{_texdir}/texmf-dist/fonts/afm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/map/dvips/velthuis/ +%{_texdir}/texmf-dist/fonts/source/public/velthuis/ +%{_texdir}/texmf-dist/fonts/tfm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/type1/public/velthuis/ +%{_texdir}/texmf-dist/tex/generic/velthuis/ +%{_texdir}/texmf-dist/tex/latex/velthuis/ +%{_texdir}/texmf-dist/tex/plain/velthuis/ +%{_texdir}/texmf-dist/tex/xelatex/velthuis/ +%doc %{_texdir}/texmf-dist/doc/generic/velthuis/ + +%files -n %{shortname}-vlna +%license lppl1.txt +%{_bindir}/vlna +%{_mandir}/man1/vlna.1* +%doc %{_texdir}/texmf-dist/doc/vlna/ + +%files -n %{shortname}-vpe +%license lppl1.txt +%{_bindir}/vpe +%{_texdir}/texmf-dist/scripts/vpe/ +%{_texdir}/texmf-dist/tex/latex/vpe/ +%doc %{_texdir}/texmf-dist/doc/latex/vpe/ + +%files -n %{shortname}-web +%license knuth.txt +%{_bindir}/tangle +%{_bindir}/weave +%{_mandir}/man1/tangle.1* +%{_mandir}/man1/weave.1* + +%files -n %{shortname}-webquiz +%license gpl.txt +%{_bindir}/webquiz +%{_mandir}/man1/webquiz.1* +%{_texdir}/texmf-dist/scripts/webquiz/ +%{_texdir}/texmf-dist/tex/latex/webquiz/ +%doc %{_texdir}/texmf-dist/doc/latex/webquiz/ + +%files -n %{shortname}-wordcount +%license lppl1.txt +%{_bindir}/wordcount +%{_texdir}/texmf-dist/scripts/wordcount/ +%{_texdir}/texmf-dist/tex/latex/wordcount/ +%doc %{_texdir}/texmf-dist/doc/latex/wordcount/ + +%files -n %{shortname}-xdvi +%{_bindir}/xdvi +%{_bindir}/xdvi-xaw +%{_mandir}/man1/xdvi.1* +%{_texdir}/texmf-dist/dvips/xdvi/ +%{_texdir}/texmf-dist/xdvi/ + +%files -n %{shortname}-xetex +%license other-free.txt +%{_bindir}/xdvipdfmx +%{_bindir}/xelatex +%{_bindir}/xelatex-dev +%{_bindir}/xetex +%{_mandir}/man1/xelatex.1* +%{_mandir}/man1/xelatex-dev.1* +%{_mandir}/man1/xetex.1* +%{_texdir}/tlpkg/tlpostcode/xetex.pl +%{_texdir}/texmf-dist/fonts/misc/xetex/ +%{fmtutil_cnf_d}/xelatex-dev +%{fmtutil_cnf_d}/xetex +%doc %{_texdir}/texmf-dist/doc/xetex/ + +%files -n %{shortname}-xindex +%license lppl1.3.txt +%{_bindir}/xindex +%{_texdir}/texmf-dist/scripts/xindex/ +%{_texdir}/texmf-dist/tex/latex/xindex/ +%{_texdir}/texmf-dist/tex/lualatex/xindex/ +%doc %{_texdir}/texmf-dist/doc/lualatex/xindex/ + +%if ! 0%{?eln} +%files -n %{shortname}-xindy +%license gpl.txt +%if %{without bootstrap} +%{_bindir}/tex2xindy +%{_bindir}/texindy +%{_bindir}/xindy +%{_bindir}/xindy.mem +%endif +%{_mandir}/man1/xindy.1* +%{_mandir}/man1/texindy.1* +%{_mandir}/man1/tex2xindy.1* +%{_texdir}/texmf-dist/scripts/xindy/ +%{_texdir}/texmf-dist/xindy/ +%doc %{_texdir}/texmf-dist/doc/xindy/ +%endif + +%files -n %{shortname}-xml2pmx +%license gpl3.txt +%{_bindir}/xml2pmx +%{_mandir}/man1/xml2pmx* + +%files -n %{shortname}-xmltex +%license lppl1.txt +%{_bindir}/pdfxmltex +%{_bindir}/xmltex +%{_texdir}/texmf-dist/tex/xmltex/ +%{fmtutil_cnf_d}/xmltex +%doc %{_texdir}/texmf-dist/doc/otherformats/xmltex/ + +%files -n %{shortname}-xpdfopen +%{_bindir}/pdfclose +%{_bindir}/pdfopen +%{_mandir}/man1/pdfclose.1* +%{_mandir}/man1/pdfopen.1* + +%files -n %{shortname}-yplan +%license lppl1.txt +%{_bindir}/yplan +%{_texdir}/texmf-dist/scripts/yplan/ +%{_texdir}/texmf-dist/tex/latex/yplan/ +%doc %{_texdir}/texmf-dist/doc/latex/yplan/ + +%changelog +* Thu Jan 20 2022 Tom Callaway <spot@fedoraproject.org> - 9:20210325-47 +- replace group handling code in pdftoepdf.cc with code that is simpler (and does not crash) + +* Sat Jan 15 2022 Tom Callaway <spot@fedoraproject.org> - 9:20210325-46 +- bootstrap off (conditionalize poppler changes) + +* Thu Jan 13 2022 Tom Callaway <spot@fedoraproject.org> - 9:20210325-45 +- rebuild for new poppler, bootstrap on + +* Tue Jan 11 2022 Tom Callaway <spot@fedoraproject.org> - 9:20210325-44 +- update arara to address log4j CVEs + +* Wed Dec 15 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-43 +- rework the font map trigger logic + +* Wed Sep 08 2021 Than Ngo <than@redhat.com> - 9:20210325-42 +- Re-enable LTO + +* Mon Aug 16 2021 Stephen Gallagher <sgallagh@redhat.com> - 9:20210325-41 +- Rebuild for libpoppler soname bump + +* Mon Aug 2 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-40 +- bootstrap off + +* Mon Aug 2 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-39 +- rebuild for poppler + +* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 9:20210325-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jun 23 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-37 +- fix fonts/map/dvips ownership +- rename dvipdfm35.map to dvipdfm35.oldmap to prevent it from being included in pdftex.map +- fix lyluatex versioning + +* Mon Jun 21 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-36 +- remove deprecated .setpdfwrite ghostscript call + +* Fri May 28 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-35 +- force system font maps to be sync'd with trees and regenerated in the triggers + +* Fri May 28 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-34 +- add texlive-gsftopk as a dependency on texlive-texlive-scripts for mktexpk +- add texlive-psnfss as a dependency on texlive-latex +- drop Requires: tex(psfonts.map), died with updmap-map +- conditionalize removing rpath from binaries which aren't always built + +* Thu May 27 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-33 +- scrape rpath off everything + +* Thu May 27 2021 Tom Callaway <spot@fedoraproject.org> - 9:20210325-32 +- 20210325 + +* Thu May 20 2021 Pete Walter <pwalter@fedoraproject.org> - 7:20200327-31 +- Rebuild for ICU 69 + +* Thu Apr 1 2021 Tom Callaway <spot@fedoraproject.org> - 7:20200327-30 +- update source urls (except tug urls) to https + +* Thu Mar 18 2021 Tom Callaway <spot@fedoraproject.org> - 7:20200327-29 +- force builtin copy of pygmentex to 0.10 (supports python3) + +* Tue Feb 2 2021 Tom Callaway <spot@fedoraproject.org> - 7:20200327-28 +- set TEXMFLOCAL during the context scriptlet to minimize the scope of where it looks during mtxrun --generate + +* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 9:20200327-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Jan 26 2021 Tomas Popela <tpopela@redhat.com> - 9:20200327-26 +- Don't build texlive-xindy on ELN because of its requirements (clisp) + +* Fri Jan 15 2021 Tom Callaway <spot@fedoraproject.org> - 9:20200327-25 +- debootstrap + +* Fri Jan 15 2021 Tom Callaway <spot@fedoraproject.org> - 9:20200327-24 +- fix context shell binary to handle /home dirs that are symlinks (bz1913245) + +* Wed Dec 30 2020 Tom Callaway <spot@fedoraproject.org> - 9:20200327-23 +- update pygmentex (supports python3) +- update dviasm (supports python3) + +* Mon Nov 16 2020 Tom Callaway <spot@fedoraproject.org> - 9:20200327-22 +- make proper texlive-optex subpackage by moving it here +- bump epoch to 9 so this texlive-optex package replaces the one that used to live in texlive + +* Thu Nov 12 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-21 +- obsolete texlive-texconfig, texlive-pdftools, texlive-pstools (in texlive-texlive-scripts-extra) + +* Tue Nov 10 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-20 +- fix issues with file ownership duplication +- fix issue with obsoleting texlive-tetex +- turn LTO back off, as it was assuming code needed libcrypto for some unknown reason + +* Thu Oct 29 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-19 +- fix dependencies of texlive-ptex and texlive-uptex + +* Sun Oct 11 2020 Jeff Law <law@redhat.com> - 7:20200327-18 +- Re-enable LTO + +* Wed Sep 23 2020 Than Ngo <than@redhat.com> - 7:20200327-17 +- Fix pdflatex run out of memory + +* Mon Sep 21 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-16 +- move "mtxrun --generate" call from -kpathsea transfiletriggerin to -context +- drop Requires(post): texlive-context from -kpathsea +- add an explicit versioning on the dependency of texlive-texlive-scripts in -kpathsea (and vice versa) + +* Thu Aug 13 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-15 +- make texlive-latex have an explicit Requires on texlive-cm-super (bz1867927) + +* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7:20200327-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jul 22 2020 Tom Stellard <tstellar@redhat.com> - 7:20200327-13 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + +* Tue Jul 21 2020 Marek Kasik <mkasik@redhat.com> - 7:20200327-12 +- rebuild for poppler 0.90.0 +- bodhi needs latest build + +* Tue Jul 14 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-11 +- disable bootstrap + +* Tue Jul 14 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-10.1 +- unbootstrapped build (TEMPORARY, when -11 comes out of the side tag, it will replace this) + +* Tue Jul 14 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-10 +- bootstrap again again + +* Tue Jul 14 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-9 +- bootstrap again + +* Tue Jul 14 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-8 +- rebuild for poppler 0.90.0 +- bootstrap on + +* Wed Jul 01 2020 Jeff Law <law@redhat.com> - 7:20200327-7 +- Disable LTO + +* Wed May 27 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-6 +- split off context-doc (bz1839593) +- add Requires: tex(psfonts.map) to gsftopk (bz1840379) +- update component sources to match main tree tarball (not doing this before was an epic fail on my part) + +* Wed May 20 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-5 +- rebuild with bootstrap off and triggers with debugging off + +* Sun May 17 2020 Orion Poplawski <orion@nwra.com> - 7:20200327-4 +- Add bootstrap flag to disable circular dep on latex due to xindy +- Fix --disable-xindy-rules configure parameter + +* Sat May 16 2020 Orion Poplawski <orion@nwra.com> - 7:20200327-3 +- Make texlive-kpathsea require texlive-texlive-scripts (bz#1836464) +- Update fedora/rhel conditionals +- Add (temporary) BR on texlive-texlive-scripts to fix latex dummy.tex + +* Wed May 13 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-2 +- fix symlink issues + +* Mon Apr 20 2020 Tom Callaway <spot@fedoraproject.org> - 7:20200327-1 +- update to 20200327 + +* Wed Feb 05 2020 Than Ngo <than@redhat.com> - 7:20190410-12 +- fix bz#1798119 - buffer overflow in TexOpen() function, CVE-2019-19601 + +* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7:20190410-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 23 2020 Tom Callaway <spot@fedoraproject.org> - 7:20190410-10 +- fix gcc10 issues + +* Fri Jan 17 2020 Marek Kasik <mkasik@redhat.com> - 7:20190410-9 +- Bring back xindy and the circular dependency on texlive-latex + +* Fri Jan 17 2020 Marek Kasik <mkasik@redhat.com> - 7:20190410-8 +- Rebuild for poppler-0.84.0 +- Don't include C++ headers in C sources +- Temporarily break circular dependency on texlive-latex (will be reverted) + +* Fri Jan 10 2020 Tom Callaway <spot@fedoraproject.org> - 7:20190410-7 +- fix python3 issue with pdfbook2 (thanks to "Mildred", bz1733794) +- fix python3 issue with latex-papersize (thanks to Silas S. Brown, bz1783964) + +* Fri Nov 15 2019 Tom Callaway <spot@fedoraproject.org> - 7:20190410-6 +- package up the TL fork of psutils to help tlmgr find all the configs it expects + +* Fri Nov 01 2019 Pete Walter <pwalter@fedoraproject.org> - 7:20190410-5 +- Rebuild for ICU 65 + +* Fri Oct 18 2019 Tom Callaway <spot@fedoraproject.org> - 7:20190410-4 +- fix dir ownership + +* Wed Oct 9 2019 Jerry James <loganjerry@gmail.com> - 7:20190410-3 +- Rebuild for mpfr 4 + +* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7:20190410-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu May 23 2019 Tom Callaway <spot@fedoraproject.org> - 7:20190410-1 +- update to 20190410 +- update all component tarballs to latest available +- new subpackages: cluttex, ctanbib, dviout-util, pdftex-quiet, webquiz, xindex +- add a slightly neutered tlmgr back into texlive.infra because texconfig paper needs it + IF YOU ARE READING THIS PLEASE DO NOT USE tlmgr install/update. IF YOU IGNORE ME + PLEASE DO NOT FILE BUGS. PLEASE DO NOT REQUEST THE tlmgrgui BITS. + +* Wed May 15 2019 Jerry James <loganjerry@gmail.com> - 7:20180414-36 +- Fix xindy build by eliminating race to create latex.fmt +- Build xindy on all supported arches + +* Tue Mar 19 2019 Tom Callaway <spot@fedoraproject.org> - 7:20180414-35 +- do not throw no file error in synctex + +* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7:20180414-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jan 25 2019 Marek Kasik <mkasik@redhat.com> - 7:20180414-33 +- Rebuild for poppler-0.73.0 + +* Wed Jan 23 2019 Pete Walter <pwalter@fedoraproject.org> - 7:20180414-32 +- Rebuild for ICU 63 + +* Wed Jan 16 2019 Than Ngo <than@redhat.com> - 7:20180414-31 +- fixed annocheck distro flag failure detected by rpmdiff + +* Wed Dec 12 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-30 +- add explicit Requires: texlive-xetex to texlive-dvipdfmx (bz1657755) + +* Fri Dec 7 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-29 +- use python3 properly in pdfbook2 + +* Mon Nov 26 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-28 +- do not try to ls /usr/share/texlive/fmtutil.cnf.d, it can be empty, + and that makes for noisy errors in scripts (bz1650935) + Thanks to Villy Kruse. +- fix pkgconfig cleanup sed to use %%{source_date} instead of %%{version} + which is overridden with subpackage specific data at that point. (bz1426622) + +* Mon Nov 12 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-27 +- make texlive-kpathsea Requires: texlive-tetex so scriptlets don't fail noisily + +* Thu Nov 8 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-26 +- make a symlink so texdoc can find texlive.tlpdb + +* Thu Nov 1 2018 Adam Williamson <awilliam@redhat.com> - 7:20180414-25 +- Add missing dep from -tetex to -texconfig (bz1555931) + +* Thu Oct 4 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-24 +- disable test that fails on 32 bit arches in rawhide + +* Mon Oct 1 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-23 +- apply upstream fix for CVE-2018-17407 + +* Wed Sep 19 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-22 +- fix lyluatex provides + +* Tue Sep 18 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-21 +- add lyluatex + +* Fri Aug 24 2018 Marek Kasik <mkasik@redhat.com> - 7:20180414-20 +- Install synctex_version.h to be able to build evince + +* Tue Aug 14 2018 Marek Kasik <mkasik@redhat.com> - 7:20180414-19 +- Rebuild for poppler-0.67.0 +- Disable xindy temporarily (there is a cyclic dependency which +- prevents me from building texlive-base with new poppler) + +* Mon Aug 6 2018 Marek Kasik <mkasik@redhat.com> - 7:20180414-18 +- Fix paths in pkgconfig files +- Resolves: #1426622 + +* Wed Jul 11 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-17 +- update latex2man to resolve perl issues +- use different ctan mirror, old one was out of date +- update pretty much everything since we're updating latex2man and we know the old mirror was outdated +- l3build and axodraw2 are now packaged properly in the tarball +- texdoctk is now its own package (reflecting upstream split) + +* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 7:20180414-16 +- Rebuild for ICU 62 + +* Sat Jul 7 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-15 +- revert trigger changes from -14 + +* Mon Jul 2 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-14 +- fix triggers to force enable of new maps and run syncwithtrees before doing map operations +- add old "tex-foo-doc" provides for every package with doc provides (bz1593860, 1593863) + +* Tue Jun 26 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-13 +- apply tibbs's fix (PR#4) for fmtutil cnf handling without tons of ugly scriptlets +- explicitly run updmap-sys in the kpathsea triggers, bug reports imply this is needed + +* Tue Jun 19 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-12 +- add Requires: tex(fvextra.sty) to pythontex (bz1590621) + +* Mon Jun 11 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-11 +- add tex-jfontmaps(bin/doc) provides + +* Fri Jun 8 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-10 +- add tex-uplatex(bin/doc) provides + +* Thu Jun 7 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-9 +- add pretrans to handle /usr/share/texmf + +* Mon Jun 4 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-8 +- add Provides: tetex-dvips +- add symlink to /usr/share/texmf for legacy packages + +* Fri Jun 1 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-7 +- add Provides: xmltex + +* Tue May 29 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-6 +- add BR: texlive-metafont, texlive-cm-super, texlive-ec for xindy +- disable xindy for arm + +* Tue May 29 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-5 +- fix xindy and jfontmaps obsoletes +- fix typo preventing xindy subpackage + +* Tue May 29 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-4 +- add Provides: jadetex and Provides: tex-uptex-doc + +* Mon May 21 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-3 +- add posttrans to force latex scriptlets to work right + +* Mon May 14 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-2 +- fix arara-doc obsoletes (bz1576693) + +* Tue May 1 2018 Tom Callaway <spot@fedoraproject.org> - 7:20180414-1 +- update to 20180414 +- fix synctex.pc (bz1426622) +- new subpackages: axodraw2, bib2gls, ctan-o-mat, dviinfox, jfmutil, l3build, wordcount + +* Mon Apr 30 2018 Pete Walter <pwalter@fedoraproject.org> - 7:20170520-28 +- Rebuild for ICU 61.1 + +* Fri Mar 30 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-27 +- actually use the texmf.cnf we patch (not the vanilla one from the kpathsea.tar.xz) + +* Tue Mar 27 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-26 +- add lcdf-typetools provide to fix broken collection-fontutils (fixing that in texlive later) (bz1560379) +- add LatexIndent* to filtered Requires to prevent dep issues there (bz1560381) + +* Sun Mar 25 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-25 +- fix aleph obsoletes (bz1560355) + +* Fri Mar 23 2018 Kevin Fenzi <kevin@scrye.com> - 7:20170520-24 +- Rebuild for poppler soname bump. + +* Thu Mar 15 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-23 +- add Requires: tex(pdfpages.sty) to texlive-pdfjam (bz1164237) + +* Sun Mar 11 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-22 +- fix a2ping to work with gs 9.22 + +* Sat Mar 10 2018 Kevin Fenzi <kevin@scrye.com> - 7:20170520-21 +- Make kpathsea scriptlets not fail in the installer env. + +* Fri Mar 9 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-20 +- disable cjk-gs-integrate + +* Fri Mar 9 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-19 +- configure TEXMFLOCAL to point to /usr/share/texlive/texmf-local/ (bz1553462) + +* Wed Mar 7 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-18 +- switch to shebang mangling that does not change exec perms + most/all of the mangling is correct, but we do not want to risk breaking + ancient texlive scripts that are suddently -x +- add versions for arara bundled provides +- use spaces instead of tabs + +* Mon Mar 5 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-17 +- add Provides: tetex-latex to the latex subpackage +- fix obviously incorrect license tag on -base package +- use %%_rpmmacrodir instead of our local %%macrosdir +- add BuildRequires: gcc gcc-c++ + +* Mon Feb 26 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-16 +- include uplatex docs in uptex +- conditionalize xindy because clisp doesn't have ppc64/aarch64 packages + +* Sat Feb 24 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-15 +- turn on xindy +- disable shebang mangling +- disable tests that fail on 32bit arches with gcc8 + +* Fri Feb 23 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-14 +- pass LDFLAGS +- update lcdf-typetools to git current to fix test failures +- turn on xindy + +* Thu Feb 22 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-13 +- rebuild again for new poppler in rawhide/f28 + +* Sun Feb 4 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-12 +- fix pathing so that texinfo files are found + +* Thu Jan 18 2018 Tom Callaway <spot@fedoraproject.org> - 7:20170520-11 +- add missing deps for texlive-pdfbook2 +- fix ghostscript BR + +* Wed Nov 29 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-10 +- kpathsea trigger uses mtxrun, which is in the context subpackage ... + ... but the kpathsea subpackage did not have a Requires on it. + It does now. How long was this broken?!? +- force texdir/texmf-var to be a symlink to /var/lib/texmf + +* Tue Nov 14 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-9 +- var handling & perl cleanups & extra scriptlets + +* Fri Nov 10 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-8 +- add additional provides for texlive-dvipng, texlive-dvipdfmx, and texlive-xdvi + +* Fri Nov 10 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-7 +- add epoch to Obsolete versioning + +* Thu Nov 9 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-6 +- try removing a version from the kpathsea-bin/kpathsea-doc Obsoletes + to see if that will work with DNF. I miss yum. + +* Thu Nov 9 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-5 +- lie about what texlive-kpathsea-lib(__isa) version we provide + because rpm needs this to get over the dependency hurdle + +* Thu Nov 9 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-4 +- add explicit provide for texlive-kpathsea-lib(__isa) to facilitate update + +* Thu Nov 9 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-3 +- use more accurate provides + +* Sun Oct 29 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-2 +- use new files from upstream that work with current poppler in rawhide + +* Tue Sep 12 2017 Tom Callaway <spot@fedoraproject.org> - 7:20170520-1 +- new package